* [PATCH v4 00/12] drm: Introduce DRM client library
@ 2024-10-14 8:55 Thomas Zimmermann
2024-10-14 8:55 ` [PATCH v4 01/12] drm/i915: Select DRM_CLIENT_SELECTION Thomas Zimmermann
` (13 more replies)
0 siblings, 14 replies; 15+ messages in thread
From: Thomas Zimmermann @ 2024-10-14 8:55 UTC (permalink / raw)
To: simona, airlied, javierm, jfalempe
Cc: dri-devel, amd-gfx, intel-gfx, intel-xe, Thomas Zimmermann
With the next DRM client coming soon (drm_log) and most of DRM's
fbdev emulation consolidated in a few places, it is time to provide
a single place for the clients.
The base client code and client event handling is now optional. It
still remains in the DRM core, which simplifies module dependencies.
The new module drm_client_lib.ko stores most of the in-kernel client
code. Drivers can opt into client support, but the presence of the
client module depends on the user's kernel configuration. Without
selected clients, no client module will be build.
DRM now forwards suspend and resume events to client helpers instead
of calling fbdev emulation directly. This breaks a cyclic dependency
among the involved modules. It also allows any client to process suspend
and resume events.
v4:
- improve commit descriptions (Jonathan)
v3:
- fix more corner Kconfig cases (kernel test robot)
v2:
- rework of the overall design
- keep base client code in DRM core
Thomas Zimmermann (12):
drm/i915: Select DRM_CLIENT_SELECTION
drm/xe: Select DRM_CLIENT_SELECTION
drm/fbdev-dma: Select FB_DEFERRED_IO
drm/fbdev: Select fbdev I/O helpers from modules that require them
drm/fbdev: Store fbdev module parameters in separate file
drm/client: Move client event handlers to drm_client_event.c
drm/client: Move suspend/resume into DRM client callbacks
drm/amdgpu: Suspend and resume internal clients with client helpers
drm/nouveau: Suspend and resume clients with client helpers
drm/radeon: Suspend and resume clients with client helpers
drm/client: Make client support optional
drm/client: Add client-lib module
Documentation/gpu/drm-client.rst | 3 +
drivers/gpu/drm/Kconfig | 41 +++-
drivers/gpu/drm/Makefile | 20 +-
drivers/gpu/drm/amd/amdgpu/Kconfig | 1 +
drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | 22 +-
drivers/gpu/drm/drm_client.c | 121 -----------
drivers/gpu/drm/drm_client_event.c | 197 ++++++++++++++++++
drivers/gpu/drm/drm_client_setup.c | 3 +
drivers/gpu/drm/drm_debugfs.c | 1 -
drivers/gpu/drm/drm_drv.c | 2 +-
drivers/gpu/drm/drm_fb_helper.c | 31 ---
drivers/gpu/drm/drm_fbdev_client.c | 30 ++-
drivers/gpu/drm/drm_file.c | 2 +-
drivers/gpu/drm/drm_internal.h | 15 ++
drivers/gpu/drm/drm_kms_helper_common.c | 38 ++++
drivers/gpu/drm/drm_modeset_helper.c | 14 +-
drivers/gpu/drm/drm_probe_helper.c | 2 +-
drivers/gpu/drm/i915/Kconfig | 1 +
.../drm/i915/display/intel_display_driver.c | 2 +-
drivers/gpu/drm/nouveau/nouveau_display.c | 8 +-
drivers/gpu/drm/nouveau/nouveau_vga.c | 2 +-
drivers/gpu/drm/radeon/radeon_device.c | 19 +-
drivers/gpu/drm/radeon/radeon_fbdev.c | 6 -
drivers/gpu/drm/radeon/radeon_mode.h | 3 -
drivers/gpu/drm/xe/Kconfig | 1 +
include/drm/drm_client.h | 41 +++-
include/drm/drm_client_event.h | 27 +++
27 files changed, 434 insertions(+), 219 deletions(-)
create mode 100644 drivers/gpu/drm/drm_client_event.c
create mode 100644 include/drm/drm_client_event.h
--
2.46.0
^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH v4 01/12] drm/i915: Select DRM_CLIENT_SELECTION
2024-10-14 8:55 [PATCH v4 00/12] drm: Introduce DRM client library Thomas Zimmermann
@ 2024-10-14 8:55 ` Thomas Zimmermann
2024-10-14 8:55 ` [PATCH v4 02/12] drm/xe: " Thomas Zimmermann
` (12 subsequent siblings)
13 siblings, 0 replies; 15+ messages in thread
From: Thomas Zimmermann @ 2024-10-14 8:55 UTC (permalink / raw)
To: simona, airlied, javierm, jfalempe
Cc: dri-devel, amd-gfx, intel-gfx, intel-xe, Thomas Zimmermann,
Jani Nikula, Joonas Lahtinen, Rodrigo Vivi, Tvrtko Ursulin,
Jonathan Cavitt
The Kconfig token DRM_CLIENT_SELECTION will make DRM clients
available to drivers. Select it from i915.
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Cc: Jani Nikula <jani.nikula@linux.intel.com>
Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Cc: Tvrtko Ursulin <tursulin@ursulin.net>
Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
---
drivers/gpu/drm/i915/Kconfig | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/gpu/drm/i915/Kconfig b/drivers/gpu/drm/i915/Kconfig
index db400aad88fa..1158a6b97f9a 100644
--- a/drivers/gpu/drm/i915/Kconfig
+++ b/drivers/gpu/drm/i915/Kconfig
@@ -10,6 +10,7 @@ config DRM_I915
# the shmem_readpage() which depends upon tmpfs
select SHMEM
select TMPFS
+ select DRM_CLIENT_SELECTION
select DRM_DISPLAY_DP_HELPER
select DRM_DISPLAY_DSC_HELPER
select DRM_DISPLAY_HDCP_HELPER
--
2.46.0
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH v4 02/12] drm/xe: Select DRM_CLIENT_SELECTION
2024-10-14 8:55 [PATCH v4 00/12] drm: Introduce DRM client library Thomas Zimmermann
2024-10-14 8:55 ` [PATCH v4 01/12] drm/i915: Select DRM_CLIENT_SELECTION Thomas Zimmermann
@ 2024-10-14 8:55 ` Thomas Zimmermann
2024-10-14 8:55 ` [PATCH v4 03/12] drm/fbdev-dma: Select FB_DEFERRED_IO Thomas Zimmermann
` (11 subsequent siblings)
13 siblings, 0 replies; 15+ messages in thread
From: Thomas Zimmermann @ 2024-10-14 8:55 UTC (permalink / raw)
To: simona, airlied, javierm, jfalempe
Cc: dri-devel, amd-gfx, intel-gfx, intel-xe, Thomas Zimmermann,
Lucas De Marchi, Thomas Hellström, Rodrigo Vivi,
Jonathan Cavitt
The Kconfig token DRM_CLIENT_SELECTION will make DRM clients
available to drivers. Select it from xe.
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Cc: "Thomas Hellström" <thomas.hellstrom@linux.intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
---
drivers/gpu/drm/xe/Kconfig | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/gpu/drm/xe/Kconfig b/drivers/gpu/drm/xe/Kconfig
index ebd0879e04d4..bac96c0dd66e 100644
--- a/drivers/gpu/drm/xe/Kconfig
+++ b/drivers/gpu/drm/xe/Kconfig
@@ -8,6 +8,7 @@ config DRM_XE
select SHMEM
select TMPFS
select DRM_BUDDY
+ select DRM_CLIENT_SELECTION
select DRM_EXEC
select DRM_KMS_HELPER
select DRM_KUNIT_TEST_HELPERS if DRM_XE_KUNIT_TEST != n
--
2.46.0
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH v4 03/12] drm/fbdev-dma: Select FB_DEFERRED_IO
2024-10-14 8:55 [PATCH v4 00/12] drm: Introduce DRM client library Thomas Zimmermann
2024-10-14 8:55 ` [PATCH v4 01/12] drm/i915: Select DRM_CLIENT_SELECTION Thomas Zimmermann
2024-10-14 8:55 ` [PATCH v4 02/12] drm/xe: " Thomas Zimmermann
@ 2024-10-14 8:55 ` Thomas Zimmermann
2024-10-14 8:55 ` [PATCH v4 04/12] drm/fbdev: Select fbdev I/O helpers from modules that require them Thomas Zimmermann
` (10 subsequent siblings)
13 siblings, 0 replies; 15+ messages in thread
From: Thomas Zimmermann @ 2024-10-14 8:55 UTC (permalink / raw)
To: simona, airlied, javierm, jfalempe
Cc: dri-devel, amd-gfx, intel-gfx, intel-xe, Thomas Zimmermann,
kernel test robot, Maarten Lankhorst, Maxime Ripard, stable,
Jonathan Cavitt
Commit 808a40b69468 ("drm/fbdev-dma: Implement damage handling and
deferred I/O") added deferred I/O for fbdev-dma. Also select the
Kconfig symbol FB_DEFERRED_IO (via FB_DMAMEM_HELPERS_DEFERRED). Fixes
build errors about missing fbdefio, such as
drivers/gpu/drm/drm_fbdev_dma.c:218:26: error: 'struct drm_fb_helper' has no member named 'fbdefio'
218 | fb_helper->fbdefio.delay = HZ / 20;
| ^~
drivers/gpu/drm/drm_fbdev_dma.c:219:26: error: 'struct drm_fb_helper' has no member named 'fbdefio'
219 | fb_helper->fbdefio.deferred_io = drm_fb_helper_deferred_io;
| ^~
drivers/gpu/drm/drm_fbdev_dma.c:221:21: error: 'struct fb_info' has no member named 'fbdefio'
221 | info->fbdefio = &fb_helper->fbdefio;
| ^~
drivers/gpu/drm/drm_fbdev_dma.c:221:43: error: 'struct drm_fb_helper' has no member named 'fbdefio'
221 | info->fbdefio = &fb_helper->fbdefio;
| ^~
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202410050241.Mox9QRjP-lkp@intel.com/
Fixes: 808a40b69468 ("drm/fbdev-dma: Implement damage handling and deferred I/O")
Cc: Thomas Zimmermann <tzimmermann@suse.de>
Cc: Javier Martinez Canillas <javierm@redhat.com>
Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Cc: Maxime Ripard <mripard@kernel.org>
Cc: <stable@vger.kernel.org> # v6.11+
Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
---
drivers/gpu/drm/Kconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/Kconfig b/drivers/gpu/drm/Kconfig
index 1df4e627e3d3..db2e206a117c 100644
--- a/drivers/gpu/drm/Kconfig
+++ b/drivers/gpu/drm/Kconfig
@@ -338,7 +338,7 @@ config DRM_TTM_HELPER
config DRM_GEM_DMA_HELPER
tristate
depends on DRM
- select FB_DMAMEM_HELPERS if DRM_FBDEV_EMULATION
+ select FB_DMAMEM_HELPERS_DEFERRED if DRM_FBDEV_EMULATION
help
Choose this if you need the GEM DMA helper functions
--
2.46.0
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH v4 04/12] drm/fbdev: Select fbdev I/O helpers from modules that require them
2024-10-14 8:55 [PATCH v4 00/12] drm: Introduce DRM client library Thomas Zimmermann
` (2 preceding siblings ...)
2024-10-14 8:55 ` [PATCH v4 03/12] drm/fbdev-dma: Select FB_DEFERRED_IO Thomas Zimmermann
@ 2024-10-14 8:55 ` Thomas Zimmermann
2024-10-14 8:55 ` [PATCH v4 05/12] drm/fbdev: Store fbdev module parameters in separate file Thomas Zimmermann
` (9 subsequent siblings)
13 siblings, 0 replies; 15+ messages in thread
From: Thomas Zimmermann @ 2024-10-14 8:55 UTC (permalink / raw)
To: simona, airlied, javierm, jfalempe
Cc: dri-devel, amd-gfx, intel-gfx, intel-xe, Thomas Zimmermann,
Jonathan Cavitt
Fbdev emulation for SHMEM and TTM requires helpers from the fbdev
subsystem. Select them from the modules that use them instead of the
core DRM module.
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
---
drivers/gpu/drm/Kconfig | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/Kconfig b/drivers/gpu/drm/Kconfig
index db2e206a117c..88c4837d070c 100644
--- a/drivers/gpu/drm/Kconfig
+++ b/drivers/gpu/drm/Kconfig
@@ -11,7 +11,6 @@ menuconfig DRM
select DRM_PANEL_ORIENTATION_QUIRKS
select DRM_KMS_HELPER if DRM_FBDEV_EMULATION
select FB_CORE if DRM_FBDEV_EMULATION
- select FB_SYSMEM_HELPERS_DEFERRED if DRM_FBDEV_EMULATION
select HDMI
select I2C
select DMA_SHARED_BUFFER
@@ -332,6 +331,7 @@ config DRM_TTM_HELPER
tristate
depends on DRM
select DRM_TTM
+ select FB_SYSMEM_HELPERS_DEFERRED if DRM_FBDEV_EMULATION
help
Helpers for ttm-based gem objects
@@ -345,6 +345,7 @@ config DRM_GEM_DMA_HELPER
config DRM_GEM_SHMEM_HELPER
tristate
depends on DRM && MMU
+ select FB_SYSMEM_HELPERS_DEFERRED if DRM_FBDEV_EMULATION
help
Choose this if you need the GEM shmem helper functions
--
2.46.0
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH v4 05/12] drm/fbdev: Store fbdev module parameters in separate file
2024-10-14 8:55 [PATCH v4 00/12] drm: Introduce DRM client library Thomas Zimmermann
` (3 preceding siblings ...)
2024-10-14 8:55 ` [PATCH v4 04/12] drm/fbdev: Select fbdev I/O helpers from modules that require them Thomas Zimmermann
@ 2024-10-14 8:55 ` Thomas Zimmermann
2024-10-14 8:55 ` [PATCH v4 06/12] drm/client: Move client event handlers to drm_client_event.c Thomas Zimmermann
` (8 subsequent siblings)
13 siblings, 0 replies; 15+ messages in thread
From: Thomas Zimmermann @ 2024-10-14 8:55 UTC (permalink / raw)
To: simona, airlied, javierm, jfalempe
Cc: dri-devel, amd-gfx, intel-gfx, intel-xe, Thomas Zimmermann,
Jonathan Cavitt
The fbdev code does not really belong into drm_kms_helper.ko. But
there are module parameters that control the behavior of the fbdev
emulation. It is not possible to remove them from the module without
breaking someone's installation.
Therefore move the fbdev module parameters to drm_kms_helper_common.c,
so that the actual fbdev implementaton can later go into a separate
module.
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
---
drivers/gpu/drm/drm_fb_helper.c | 31 ----------------------
drivers/gpu/drm/drm_internal.h | 7 +++++
drivers/gpu/drm/drm_kms_helper_common.c | 35 +++++++++++++++++++++++++
3 files changed, 42 insertions(+), 31 deletions(-)
diff --git a/drivers/gpu/drm/drm_fb_helper.c b/drivers/gpu/drm/drm_fb_helper.c
index d5e8994345bb..004f7c437897 100644
--- a/drivers/gpu/drm/drm_fb_helper.c
+++ b/drivers/gpu/drm/drm_fb_helper.c
@@ -46,37 +46,6 @@
#include "drm_internal.h"
#include "drm_crtc_internal.h"
-static bool drm_fbdev_emulation = true;
-module_param_named(fbdev_emulation, drm_fbdev_emulation, bool, 0600);
-MODULE_PARM_DESC(fbdev_emulation,
- "Enable legacy fbdev emulation [default=true]");
-
-static int drm_fbdev_overalloc = CONFIG_DRM_FBDEV_OVERALLOC;
-module_param(drm_fbdev_overalloc, int, 0444);
-MODULE_PARM_DESC(drm_fbdev_overalloc,
- "Overallocation of the fbdev buffer (%) [default="
- __MODULE_STRING(CONFIG_DRM_FBDEV_OVERALLOC) "]");
-
-/*
- * In order to keep user-space compatibility, we want in certain use-cases
- * to keep leaking the fbdev physical address to the user-space program
- * handling the fbdev buffer.
- *
- * This is a bad habit, essentially kept to support closed-source OpenGL
- * drivers that should really be moved into open-source upstream projects
- * instead of using legacy physical addresses in user space to communicate
- * with other out-of-tree kernel modules.
- *
- * This module_param *should* be removed as soon as possible and be
- * considered as a broken and legacy behaviour from a modern fbdev device.
- */
-static bool drm_leak_fbdev_smem;
-#if IS_ENABLED(CONFIG_DRM_FBDEV_LEAK_PHYS_SMEM)
-module_param_unsafe(drm_leak_fbdev_smem, bool, 0600);
-MODULE_PARM_DESC(drm_leak_fbdev_smem,
- "Allow unsafe leaking fbdev physical smem address [default=false]");
-#endif
-
static LIST_HEAD(kernel_fb_helper_list);
static DEFINE_MUTEX(kernel_fb_helper_lock);
diff --git a/drivers/gpu/drm/drm_internal.h b/drivers/gpu/drm/drm_internal.h
index 1705bfc90b1e..9af72bab86d1 100644
--- a/drivers/gpu/drm/drm_internal.h
+++ b/drivers/gpu/drm/drm_internal.h
@@ -54,6 +54,13 @@ bool drm_dev_needs_global_mutex(struct drm_device *dev);
struct drm_file *drm_file_alloc(struct drm_minor *minor);
void drm_file_free(struct drm_file *file);
+/* drm_kms_helper_common.c */
+#if defined(CONFIG_DRM_FBDEV_EMULATION)
+extern bool drm_fbdev_emulation;
+extern int drm_fbdev_overalloc;
+extern bool drm_leak_fbdev_smem;
+#endif
+
#ifdef CONFIG_PCI
/* drm_pci.c */
diff --git a/drivers/gpu/drm/drm_kms_helper_common.c b/drivers/gpu/drm/drm_kms_helper_common.c
index 0c7550c0462b..cfdbc1ac88dc 100644
--- a/drivers/gpu/drm/drm_kms_helper_common.c
+++ b/drivers/gpu/drm/drm_kms_helper_common.c
@@ -27,6 +27,41 @@
#include <linux/module.h>
+#include "drm_internal.h"
+
+#if defined(CONFIG_DRM_FBDEV_EMULATION)
+bool drm_fbdev_emulation = true;
+module_param_named(fbdev_emulation, drm_fbdev_emulation, bool, 0600);
+MODULE_PARM_DESC(fbdev_emulation,
+ "Enable legacy fbdev emulation [default=true]");
+
+int drm_fbdev_overalloc = CONFIG_DRM_FBDEV_OVERALLOC;
+module_param(drm_fbdev_overalloc, int, 0444);
+MODULE_PARM_DESC(drm_fbdev_overalloc,
+ "Overallocation of the fbdev buffer (%) [default="
+ __MODULE_STRING(CONFIG_DRM_FBDEV_OVERALLOC) "]");
+
+/*
+ * In order to keep user-space compatibility, we want in certain use-cases
+ * to keep leaking the fbdev physical address to the user-space program
+ * handling the fbdev buffer.
+ *
+ * This is a bad habit, essentially kept to support closed-source OpenGL
+ * drivers that should really be moved into open-source upstream projects
+ * instead of using legacy physical addresses in user space to communicate
+ * with other out-of-tree kernel modules.
+ *
+ * This module_param *should* be removed as soon as possible and be
+ * considered as a broken and legacy behaviour from a modern fbdev device.
+ */
+bool drm_leak_fbdev_smem;
+#if IS_ENABLED(CONFIG_DRM_FBDEV_LEAK_PHYS_SMEM)
+module_param_unsafe(drm_leak_fbdev_smem, bool, 0600);
+MODULE_PARM_DESC(drm_leak_fbdev_smem,
+ "Allow unsafe leaking fbdev physical smem address [default=false]");
+#endif
+#endif
+
MODULE_AUTHOR("David Airlie, Jesse Barnes");
MODULE_DESCRIPTION("DRM KMS helper");
MODULE_LICENSE("GPL and additional rights");
--
2.46.0
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH v4 06/12] drm/client: Move client event handlers to drm_client_event.c
2024-10-14 8:55 [PATCH v4 00/12] drm: Introduce DRM client library Thomas Zimmermann
` (4 preceding siblings ...)
2024-10-14 8:55 ` [PATCH v4 05/12] drm/fbdev: Store fbdev module parameters in separate file Thomas Zimmermann
@ 2024-10-14 8:55 ` Thomas Zimmermann
2024-10-14 8:55 ` [PATCH v4 07/12] drm/client: Move suspend/resume into DRM client callbacks Thomas Zimmermann
` (7 subsequent siblings)
13 siblings, 0 replies; 15+ messages in thread
From: Thomas Zimmermann @ 2024-10-14 8:55 UTC (permalink / raw)
To: simona, airlied, javierm, jfalempe
Cc: dri-devel, amd-gfx, intel-gfx, intel-xe, Thomas Zimmermann,
Jani Nikula, Rodrigo Vivi, Joonas Lahtinen, Tvrtko Ursulin,
Karol Herbst, Lyude Paul, Danilo Krummrich, Jonathan Cavitt
A number of DRM-client functions serve as entry points from device
operations to client code. Moving them info a separate file will later
allow for a more fine-grained kernel configuration. For most of the
users it is sufficient to include <drm/drm_client_event.h> instead of
the full driver-side interface in <drm/drm_client.h>
v2:
- rename new files to drm_client_event.{c,h}
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Cc: Jani Nikula <jani.nikula@linux.intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Cc: Tvrtko Ursulin <tursulin@ursulin.net>
Cc: Karol Herbst <kherbst@redhat.com>
Cc: Lyude Paul <lyude@redhat.com>
Cc: Danilo Krummrich <dakr@redhat.com>
Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
---
Documentation/gpu/drm-client.rst | 3 +
drivers/gpu/drm/Makefile | 1 +
drivers/gpu/drm/drm_client.c | 121 ----------------
drivers/gpu/drm/drm_client_event.c | 135 ++++++++++++++++++
drivers/gpu/drm/drm_drv.c | 2 +-
drivers/gpu/drm/drm_file.c | 2 +-
drivers/gpu/drm/drm_probe_helper.c | 2 +-
.../drm/i915/display/intel_display_driver.c | 2 +-
drivers/gpu/drm/nouveau/nouveau_vga.c | 2 +-
include/drm/drm_client.h | 4 -
include/drm/drm_client_event.h | 12 ++
11 files changed, 156 insertions(+), 130 deletions(-)
create mode 100644 drivers/gpu/drm/drm_client_event.c
create mode 100644 include/drm/drm_client_event.h
diff --git a/Documentation/gpu/drm-client.rst b/Documentation/gpu/drm-client.rst
index 58b5a1d1219d..cbcfe30de777 100644
--- a/Documentation/gpu/drm-client.rst
+++ b/Documentation/gpu/drm-client.rst
@@ -13,3 +13,6 @@ Kernel clients
.. kernel-doc:: drivers/gpu/drm/drm_client_modeset.c
:export:
+
+.. kernel-doc:: drivers/gpu/drm/drm_client_event.c
+ :export:
diff --git a/drivers/gpu/drm/Makefile b/drivers/gpu/drm/Makefile
index 3894f43f6d47..6b7d168ca790 100644
--- a/drivers/gpu/drm/Makefile
+++ b/drivers/gpu/drm/Makefile
@@ -42,6 +42,7 @@ drm-y := \
drm_bridge.o \
drm_cache.o \
drm_client.o \
+ drm_client_event.o \
drm_client_modeset.o \
drm_color_mgmt.o \
drm_connector.o \
diff --git a/drivers/gpu/drm/drm_client.c b/drivers/gpu/drm/drm_client.c
index bfedcbf516db..549b28a5918c 100644
--- a/drivers/gpu/drm/drm_client.c
+++ b/drivers/gpu/drm/drm_client.c
@@ -10,7 +10,6 @@
#include <linux/slab.h>
#include <drm/drm_client.h>
-#include <drm/drm_debugfs.h>
#include <drm/drm_device.h>
#include <drm/drm_drv.h>
#include <drm/drm_file.h>
@@ -172,99 +171,6 @@ void drm_client_release(struct drm_client_dev *client)
}
EXPORT_SYMBOL(drm_client_release);
-/**
- * drm_client_dev_unregister - Unregister clients
- * @dev: DRM device
- *
- * This function releases all clients by calling each client's
- * &drm_client_funcs.unregister callback. The callback function
- * is responsibe for releaseing all resources including the client
- * itself.
- *
- * The helper drm_dev_unregister() calls this function. Drivers
- * that use it don't need to call this function themselves.
- */
-void drm_client_dev_unregister(struct drm_device *dev)
-{
- struct drm_client_dev *client, *tmp;
-
- if (!drm_core_check_feature(dev, DRIVER_MODESET))
- return;
-
- mutex_lock(&dev->clientlist_mutex);
- list_for_each_entry_safe(client, tmp, &dev->clientlist, list) {
- list_del(&client->list);
- if (client->funcs && client->funcs->unregister) {
- client->funcs->unregister(client);
- } else {
- drm_client_release(client);
- kfree(client);
- }
- }
- mutex_unlock(&dev->clientlist_mutex);
-}
-EXPORT_SYMBOL(drm_client_dev_unregister);
-
-/**
- * drm_client_dev_hotplug - Send hotplug event to clients
- * @dev: DRM device
- *
- * This function calls the &drm_client_funcs.hotplug callback on the attached clients.
- *
- * drm_kms_helper_hotplug_event() calls this function, so drivers that use it
- * don't need to call this function themselves.
- */
-void drm_client_dev_hotplug(struct drm_device *dev)
-{
- struct drm_client_dev *client;
- int ret;
-
- if (!drm_core_check_feature(dev, DRIVER_MODESET))
- return;
-
- if (!dev->mode_config.num_connector) {
- drm_dbg_kms(dev, "No connectors found, will not send hotplug events!\n");
- return;
- }
-
- mutex_lock(&dev->clientlist_mutex);
- list_for_each_entry(client, &dev->clientlist, list) {
- if (!client->funcs || !client->funcs->hotplug)
- continue;
-
- if (client->hotplug_failed)
- continue;
-
- ret = client->funcs->hotplug(client);
- drm_dbg_kms(dev, "%s: ret=%d\n", client->name, ret);
- if (ret)
- client->hotplug_failed = true;
- }
- mutex_unlock(&dev->clientlist_mutex);
-}
-EXPORT_SYMBOL(drm_client_dev_hotplug);
-
-void drm_client_dev_restore(struct drm_device *dev)
-{
- struct drm_client_dev *client;
- int ret;
-
- if (!drm_core_check_feature(dev, DRIVER_MODESET))
- return;
-
- mutex_lock(&dev->clientlist_mutex);
- list_for_each_entry(client, &dev->clientlist, list) {
- if (!client->funcs || !client->funcs->restore)
- continue;
-
- ret = client->funcs->restore(client);
- drm_dbg_kms(dev, "%s: ret=%d\n", client->name, ret);
- if (!ret) /* The first one to return zero gets the privilege to restore */
- break;
- }
- mutex_unlock(&dev->clientlist_mutex);
-}
-
static void drm_client_buffer_delete(struct drm_client_buffer *buffer)
{
if (buffer->gem) {
@@ -584,30 +490,3 @@ int drm_client_framebuffer_flush(struct drm_client_buffer *buffer, struct drm_re
0, 0, NULL, 0);
}
EXPORT_SYMBOL(drm_client_framebuffer_flush);
-
-#ifdef CONFIG_DEBUG_FS
-static int drm_client_debugfs_internal_clients(struct seq_file *m, void *data)
-{
- struct drm_debugfs_entry *entry = m->private;
- struct drm_device *dev = entry->dev;
- struct drm_printer p = drm_seq_file_printer(m);
- struct drm_client_dev *client;
-
- mutex_lock(&dev->clientlist_mutex);
- list_for_each_entry(client, &dev->clientlist, list)
- drm_printf(&p, "%s\n", client->name);
- mutex_unlock(&dev->clientlist_mutex);
-
- return 0;
-}
-
-static const struct drm_debugfs_info drm_client_debugfs_list[] = {
- { "internal_clients", drm_client_debugfs_internal_clients, 0 },
-};
-
-void drm_client_debugfs_init(struct drm_device *dev)
-{
- drm_debugfs_add_files(dev, drm_client_debugfs_list,
- ARRAY_SIZE(drm_client_debugfs_list));
-}
-#endif
diff --git a/drivers/gpu/drm/drm_client_event.c b/drivers/gpu/drm/drm_client_event.c
new file mode 100644
index 000000000000..d13d44320c5c
--- /dev/null
+++ b/drivers/gpu/drm/drm_client_event.c
@@ -0,0 +1,135 @@
+// SPDX-License-Identifier: GPL-2.0 or MIT
+/*
+ * Copyright 2018 Noralf Trønnes
+ */
+
+#include <linux/list.h>
+#include <linux/mutex.h>
+#include <linux/seq_file.h>
+
+#include <drm/drm_client.h>
+#include <drm/drm_client_event.h>
+#include <drm/drm_debugfs.h>
+#include <drm/drm_device.h>
+#include <drm/drm_drv.h>
+#include <drm/drm_print.h>
+
+/**
+ * drm_client_dev_unregister - Unregister clients
+ * @dev: DRM device
+ *
+ * This function releases all clients by calling each client's
+ * &drm_client_funcs.unregister callback. The callback function
+ * is responsibe for releaseing all resources including the client
+ * itself.
+ *
+ * The helper drm_dev_unregister() calls this function. Drivers
+ * that use it don't need to call this function themselves.
+ */
+void drm_client_dev_unregister(struct drm_device *dev)
+{
+ struct drm_client_dev *client, *tmp;
+
+ if (!drm_core_check_feature(dev, DRIVER_MODESET))
+ return;
+
+ mutex_lock(&dev->clientlist_mutex);
+ list_for_each_entry_safe(client, tmp, &dev->clientlist, list) {
+ list_del(&client->list);
+ if (client->funcs && client->funcs->unregister) {
+ client->funcs->unregister(client);
+ } else {
+ drm_client_release(client);
+ kfree(client);
+ }
+ }
+ mutex_unlock(&dev->clientlist_mutex);
+}
+EXPORT_SYMBOL(drm_client_dev_unregister);
+
+/**
+ * drm_client_dev_hotplug - Send hotplug event to clients
+ * @dev: DRM device
+ *
+ * This function calls the &drm_client_funcs.hotplug callback on the attached clients.
+ *
+ * drm_kms_helper_hotplug_event() calls this function, so drivers that use it
+ * don't need to call this function themselves.
+ */
+void drm_client_dev_hotplug(struct drm_device *dev)
+{
+ struct drm_client_dev *client;
+ int ret;
+
+ if (!drm_core_check_feature(dev, DRIVER_MODESET))
+ return;
+
+ if (!dev->mode_config.num_connector) {
+ drm_dbg_kms(dev, "No connectors found, will not send hotplug events!\n");
+ return;
+ }
+
+ mutex_lock(&dev->clientlist_mutex);
+ list_for_each_entry(client, &dev->clientlist, list) {
+ if (!client->funcs || !client->funcs->hotplug)
+ continue;
+
+ if (client->hotplug_failed)
+ continue;
+
+ ret = client->funcs->hotplug(client);
+ drm_dbg_kms(dev, "%s: ret=%d\n", client->name, ret);
+ if (ret)
+ client->hotplug_failed = true;
+ }
+ mutex_unlock(&dev->clientlist_mutex);
+}
+EXPORT_SYMBOL(drm_client_dev_hotplug);
+
+void drm_client_dev_restore(struct drm_device *dev)
+{
+ struct drm_client_dev *client;
+ int ret;
+
+ if (!drm_core_check_feature(dev, DRIVER_MODESET))
+ return;
+
+ mutex_lock(&dev->clientlist_mutex);
+ list_for_each_entry(client, &dev->clientlist, list) {
+ if (!client->funcs || !client->funcs->restore)
+ continue;
+
+ ret = client->funcs->restore(client);
+ drm_dbg_kms(dev, "%s: ret=%d\n", client->name, ret);
+ if (!ret) /* The first one to return zero gets the privilege to restore */
+ break;
+ }
+ mutex_unlock(&dev->clientlist_mutex);
+}
+
+#ifdef CONFIG_DEBUG_FS
+static int drm_client_debugfs_internal_clients(struct seq_file *m, void *data)
+{
+ struct drm_debugfs_entry *entry = m->private;
+ struct drm_device *dev = entry->dev;
+ struct drm_printer p = drm_seq_file_printer(m);
+ struct drm_client_dev *client;
+
+ mutex_lock(&dev->clientlist_mutex);
+ list_for_each_entry(client, &dev->clientlist, list)
+ drm_printf(&p, "%s\n", client->name);
+ mutex_unlock(&dev->clientlist_mutex);
+
+ return 0;
+}
+
+static const struct drm_debugfs_info drm_client_debugfs_list[] = {
+ { "internal_clients", drm_client_debugfs_internal_clients, 0 },
+};
+
+void drm_client_debugfs_init(struct drm_device *dev)
+{
+ drm_debugfs_add_files(dev, drm_client_debugfs_list,
+ ARRAY_SIZE(drm_client_debugfs_list));
+}
+#endif
diff --git a/drivers/gpu/drm/drm_drv.c b/drivers/gpu/drm/drm_drv.c
index ac30b0ec9d93..c2c172eb25df 100644
--- a/drivers/gpu/drm/drm_drv.c
+++ b/drivers/gpu/drm/drm_drv.c
@@ -38,7 +38,7 @@
#include <drm/drm_accel.h>
#include <drm/drm_cache.h>
-#include <drm/drm_client.h>
+#include <drm/drm_client_event.h>
#include <drm/drm_color_mgmt.h>
#include <drm/drm_drv.h>
#include <drm/drm_file.h>
diff --git a/drivers/gpu/drm/drm_file.c b/drivers/gpu/drm/drm_file.c
index 2ee1c3233b0c..9011f8e16099 100644
--- a/drivers/gpu/drm/drm_file.c
+++ b/drivers/gpu/drm/drm_file.c
@@ -40,7 +40,7 @@
#include <linux/slab.h>
#include <linux/vga_switcheroo.h>
-#include <drm/drm_client.h>
+#include <drm/drm_client_event.h>
#include <drm/drm_drv.h>
#include <drm/drm_file.h>
#include <drm/drm_gem.h>
diff --git a/drivers/gpu/drm/drm_probe_helper.c b/drivers/gpu/drm/drm_probe_helper.c
index 92f21764246f..96b266b37ba4 100644
--- a/drivers/gpu/drm/drm_probe_helper.c
+++ b/drivers/gpu/drm/drm_probe_helper.c
@@ -33,7 +33,7 @@
#include <linux/moduleparam.h>
#include <drm/drm_bridge.h>
-#include <drm/drm_client.h>
+#include <drm/drm_client_event.h>
#include <drm/drm_crtc.h>
#include <drm/drm_edid.h>
#include <drm/drm_fourcc.h>
diff --git a/drivers/gpu/drm/i915/display/intel_display_driver.c b/drivers/gpu/drm/i915/display/intel_display_driver.c
index c106fb2dd20b..673f9b965494 100644
--- a/drivers/gpu/drm/i915/display/intel_display_driver.c
+++ b/drivers/gpu/drm/i915/display/intel_display_driver.c
@@ -11,7 +11,7 @@
#include <acpi/video.h>
#include <drm/display/drm_dp_mst_helper.h>
#include <drm/drm_atomic_helper.h>
-#include <drm/drm_client.h>
+#include <drm/drm_client_event.h>
#include <drm/drm_mode_config.h>
#include <drm/drm_privacy_screen_consumer.h>
#include <drm/drm_probe_helper.h>
diff --git a/drivers/gpu/drm/nouveau/nouveau_vga.c b/drivers/gpu/drm/nouveau/nouveau_vga.c
index ab4e11dc0b8a..a6c375a24154 100644
--- a/drivers/gpu/drm/nouveau/nouveau_vga.c
+++ b/drivers/gpu/drm/nouveau/nouveau_vga.c
@@ -2,7 +2,7 @@
#include <linux/vgaarb.h>
#include <linux/vga_switcheroo.h>
-#include <drm/drm_fb_helper.h>
+#include <drm/drm_client_event.h>
#include "nouveau_drv.h"
#include "nouveau_acpi.h"
diff --git a/include/drm/drm_client.h b/include/drm/drm_client.h
index bc0e66f9c425..dfd5afcc9463 100644
--- a/include/drm/drm_client.h
+++ b/include/drm/drm_client.h
@@ -121,10 +121,6 @@ int drm_client_init(struct drm_device *dev, struct drm_client_dev *client,
void drm_client_release(struct drm_client_dev *client);
void drm_client_register(struct drm_client_dev *client);
-void drm_client_dev_unregister(struct drm_device *dev);
-void drm_client_dev_hotplug(struct drm_device *dev);
-void drm_client_dev_restore(struct drm_device *dev);
-
/**
* struct drm_client_buffer - DRM client buffer
*/
diff --git a/include/drm/drm_client_event.h b/include/drm/drm_client_event.h
new file mode 100644
index 000000000000..2c8915241120
--- /dev/null
+++ b/include/drm/drm_client_event.h
@@ -0,0 +1,12 @@
+/* SPDX-License-Identifier: GPL-2.0 or MIT */
+
+#ifndef _DRM_CLIENT_EVENT_H_
+#define _DRM_CLIENT_EVENT_H_
+
+struct drm_device;
+
+void drm_client_dev_unregister(struct drm_device *dev);
+void drm_client_dev_hotplug(struct drm_device *dev);
+void drm_client_dev_restore(struct drm_device *dev);
+
+#endif
--
2.46.0
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH v4 07/12] drm/client: Move suspend/resume into DRM client callbacks
2024-10-14 8:55 [PATCH v4 00/12] drm: Introduce DRM client library Thomas Zimmermann
` (5 preceding siblings ...)
2024-10-14 8:55 ` [PATCH v4 06/12] drm/client: Move client event handlers to drm_client_event.c Thomas Zimmermann
@ 2024-10-14 8:55 ` Thomas Zimmermann
2024-10-14 8:55 ` [PATCH v4 08/12] drm/amdgpu: Suspend and resume internal clients with client helpers Thomas Zimmermann
` (6 subsequent siblings)
13 siblings, 0 replies; 15+ messages in thread
From: Thomas Zimmermann @ 2024-10-14 8:55 UTC (permalink / raw)
To: simona, airlied, javierm, jfalempe
Cc: dri-devel, amd-gfx, intel-gfx, intel-xe, Thomas Zimmermann,
Jonathan Cavitt
Suspend and resume is still tied to fbdev emulation. Modeset helpers
and several drivers call drm_fb_helper_set_suspend_unlocked() to inform
the fbdev client about suspend/resume events.
To make it work with arbitrary clients, add per-client callback
functions for suspend and resume. Implement them for fbdev emulation
with the existing drm_fb_helper_set_suspend_unlocked(). Then update
DRM's modeset helpers to call the new interface.
Clients that are not fbdev can now implement suspend/resume to their
requirements.
The callback parameter holds_console_lock is a workaround for i915,
radeon and xe, which possibly call the interface while having the
console lock acquired. Even though the commit doesn't modify these
drivers, it already adds the flag to avoid churn later on. New code
should not hold the console lock.
v4:
- clarify holds_console_lock in commit description (Jonathan)
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
---
drivers/gpu/drm/drm_client_event.c | 60 ++++++++++++++++++++++++++++
drivers/gpu/drm/drm_fbdev_client.c | 30 +++++++++++++-
drivers/gpu/drm/drm_modeset_helper.c | 14 ++++---
include/drm/drm_client.h | 35 ++++++++++++++++
include/drm/drm_client_event.h | 2 +
5 files changed, 133 insertions(+), 8 deletions(-)
diff --git a/drivers/gpu/drm/drm_client_event.c b/drivers/gpu/drm/drm_client_event.c
index d13d44320c5c..c52e93643672 100644
--- a/drivers/gpu/drm/drm_client_event.c
+++ b/drivers/gpu/drm/drm_client_event.c
@@ -107,6 +107,66 @@ void drm_client_dev_restore(struct drm_device *dev)
mutex_unlock(&dev->clientlist_mutex);
}
+static int drm_client_suspend(struct drm_client_dev *client, bool holds_console_lock)
+{
+ struct drm_device *dev = client->dev;
+ int ret = 0;
+
+ if (drm_WARN_ON_ONCE(dev, client->suspended))
+ return 0;
+
+ if (client->funcs && client->funcs->suspend)
+ ret = client->funcs->suspend(client, holds_console_lock);
+ drm_dbg_kms(dev, "%s: ret=%d\n", client->name, ret);
+
+ client->suspended = true;
+
+ return ret;
+}
+
+void drm_client_dev_suspend(struct drm_device *dev, bool holds_console_lock)
+{
+ struct drm_client_dev *client;
+
+ mutex_lock(&dev->clientlist_mutex);
+ list_for_each_entry(client, &dev->clientlist, list) {
+ if (!client->suspended)
+ drm_client_suspend(client, holds_console_lock);
+ }
+ mutex_unlock(&dev->clientlist_mutex);
+}
+EXPORT_SYMBOL(drm_client_dev_suspend);
+
+static int drm_client_resume(struct drm_client_dev *client, bool holds_console_lock)
+{
+ struct drm_device *dev = client->dev;
+ int ret = 0;
+
+ if (drm_WARN_ON_ONCE(dev, !client->suspended))
+ return 0;
+
+ if (client->funcs && client->funcs->resume)
+ ret = client->funcs->resume(client, holds_console_lock);
+ drm_dbg_kms(dev, "%s: ret=%d\n", client->name, ret);
+
+ client->suspended = false;
+
+ return ret;
+}
+
+void drm_client_dev_resume(struct drm_device *dev, bool holds_console_lock)
+{
+ struct drm_client_dev *client;
+
+ mutex_lock(&dev->clientlist_mutex);
+ list_for_each_entry(client, &dev->clientlist, list) {
+ if (client->suspended)
+ drm_client_resume(client, holds_console_lock);
+ }
+ mutex_unlock(&dev->clientlist_mutex);
+}
+EXPORT_SYMBOL(drm_client_dev_resume);
+
#ifdef CONFIG_DEBUG_FS
static int drm_client_debugfs_internal_clients(struct seq_file *m, void *data)
{
diff --git a/drivers/gpu/drm/drm_fbdev_client.c b/drivers/gpu/drm/drm_fbdev_client.c
index a09382afe2fb..246fb63ab250 100644
--- a/drivers/gpu/drm/drm_fbdev_client.c
+++ b/drivers/gpu/drm/drm_fbdev_client.c
@@ -61,11 +61,37 @@ static int drm_fbdev_client_hotplug(struct drm_client_dev *client)
return ret;
}
+static int drm_fbdev_client_suspend(struct drm_client_dev *client, bool holds_console_lock)
+{
+ struct drm_fb_helper *fb_helper = drm_fb_helper_from_client(client);
+
+ if (holds_console_lock)
+ drm_fb_helper_set_suspend(fb_helper, true);
+ else
+ drm_fb_helper_set_suspend_unlocked(fb_helper, true);
+
+ return 0;
+}
+
+static int drm_fbdev_client_resume(struct drm_client_dev *client, bool holds_console_lock)
+{
+ struct drm_fb_helper *fb_helper = drm_fb_helper_from_client(client);
+
+ if (holds_console_lock)
+ drm_fb_helper_set_suspend(fb_helper, false);
+ else
+ drm_fb_helper_set_suspend_unlocked(fb_helper, false);
+
+ return 0;
+}
+
static const struct drm_client_funcs drm_fbdev_client_funcs = {
.owner = THIS_MODULE,
.unregister = drm_fbdev_client_unregister,
.restore = drm_fbdev_client_restore,
.hotplug = drm_fbdev_client_hotplug,
+ .suspend = drm_fbdev_client_suspend,
+ .resume = drm_fbdev_client_resume,
};
/**
@@ -76,8 +102,8 @@ static const struct drm_client_funcs drm_fbdev_client_funcs = {
*
* This function sets up fbdev emulation. Restore, hotplug events and
* teardown are all taken care of. Drivers that do suspend/resume need
- * to call drm_fb_helper_set_suspend_unlocked() themselves. Simple
- * drivers might use drm_mode_config_helper_suspend().
+ * to call drm_client_dev_suspend() and drm_client_dev_resume() by
+ * themselves. Simple drivers might use drm_mode_config_helper_suspend().
*
* This function is safe to call even when there are no connectors present.
* Setup will be retried on the next hotplug event.
diff --git a/drivers/gpu/drm/drm_modeset_helper.c b/drivers/gpu/drm/drm_modeset_helper.c
index 2c582020cb42..5565464c1734 100644
--- a/drivers/gpu/drm/drm_modeset_helper.c
+++ b/drivers/gpu/drm/drm_modeset_helper.c
@@ -21,7 +21,7 @@
*/
#include <drm/drm_atomic_helper.h>
-#include <drm/drm_fb_helper.h>
+#include <drm/drm_client_event.h>
#include <drm/drm_fourcc.h>
#include <drm/drm_framebuffer.h>
#include <drm/drm_modeset_helper.h>
@@ -185,7 +185,7 @@ EXPORT_SYMBOL(drm_crtc_init);
* Zero on success, negative error code on error.
*
* See also:
- * drm_kms_helper_poll_disable() and drm_fb_helper_set_suspend_unlocked().
+ * drm_kms_helper_poll_disable() and drm_client_dev_suspend().
*/
int drm_mode_config_helper_suspend(struct drm_device *dev)
{
@@ -199,10 +199,11 @@ int drm_mode_config_helper_suspend(struct drm_device *dev)
if (dev->mode_config.poll_enabled)
drm_kms_helper_poll_disable(dev);
- drm_fb_helper_set_suspend_unlocked(dev->fb_helper, 1);
+ drm_client_dev_suspend(dev, false);
state = drm_atomic_helper_suspend(dev);
if (IS_ERR(state)) {
- drm_fb_helper_set_suspend_unlocked(dev->fb_helper, 0);
+ drm_client_dev_resume(dev, false);
+
/*
* Don't enable polling if it was never initialized
*/
@@ -230,7 +231,7 @@ EXPORT_SYMBOL(drm_mode_config_helper_suspend);
* Zero on success, negative error code on error.
*
* See also:
- * drm_fb_helper_set_suspend_unlocked() and drm_kms_helper_poll_enable().
+ * drm_client_dev_resume() and drm_kms_helper_poll_enable().
*/
int drm_mode_config_helper_resume(struct drm_device *dev)
{
@@ -247,7 +248,8 @@ int drm_mode_config_helper_resume(struct drm_device *dev)
DRM_ERROR("Failed to resume (%d)\n", ret);
dev->mode_config.suspend_state = NULL;
- drm_fb_helper_set_suspend_unlocked(dev->fb_helper, 0);
+ drm_client_dev_resume(dev, false);
+
/*
* Don't enable polling if it is not initialized
*/
diff --git a/include/drm/drm_client.h b/include/drm/drm_client.h
index dfd5afcc9463..c03c4b0f3e94 100644
--- a/include/drm/drm_client.h
+++ b/include/drm/drm_client.h
@@ -63,6 +63,34 @@ struct drm_client_funcs {
* This callback is optional.
*/
int (*hotplug)(struct drm_client_dev *client);
+
+ /**
+ * @suspend:
+ *
+ * Called when suspending the device.
+ *
+ * This callback is optional.
+ *
+ * FIXME: Some callers hold the console lock when invoking this
+ * function. This interferes with fbdev emulation, which
+ * also tries to acquire the lock. Push the console lock
+ * into the callback and remove 'holds_console_lock'.
+ */
+ int (*suspend)(struct drm_client_dev *client, bool holds_console_lock);
+
+ /**
+ * @resume:
+ *
+ * Called when resuming the device from suspend.
+ *
+ * This callback is optional.
+ *
+ * FIXME: Some callers hold the console lock when invoking this
+ * function. This interferes with fbdev emulation, which
+ * also tries to acquire the lock. Push the console lock
+ * into the callback and remove 'holds_console_lock'.
+ */
+ int (*resume)(struct drm_client_dev *client, bool holds_console_lock);
};
/**
@@ -107,6 +135,13 @@ struct drm_client_dev {
*/
struct drm_mode_set *modesets;
+ /**
+ * @suspended:
+ *
+ * The client has been suspended.
+ */
+ bool suspended;
+
/**
* @hotplug_failed:
*
diff --git a/include/drm/drm_client_event.h b/include/drm/drm_client_event.h
index 2c8915241120..72c97d111169 100644
--- a/include/drm/drm_client_event.h
+++ b/include/drm/drm_client_event.h
@@ -8,5 +8,7 @@ struct drm_device;
void drm_client_dev_unregister(struct drm_device *dev);
void drm_client_dev_hotplug(struct drm_device *dev);
void drm_client_dev_restore(struct drm_device *dev);
+void drm_client_dev_suspend(struct drm_device *dev, bool holds_console_lock);
+void drm_client_dev_resume(struct drm_device *dev, bool holds_console_lock);
#endif
--
2.46.0
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH v4 08/12] drm/amdgpu: Suspend and resume internal clients with client helpers
2024-10-14 8:55 [PATCH v4 00/12] drm: Introduce DRM client library Thomas Zimmermann
` (6 preceding siblings ...)
2024-10-14 8:55 ` [PATCH v4 07/12] drm/client: Move suspend/resume into DRM client callbacks Thomas Zimmermann
@ 2024-10-14 8:55 ` Thomas Zimmermann
2024-10-14 8:55 ` [PATCH v4 09/12] drm/nouveau: Suspend and resume " Thomas Zimmermann
` (5 subsequent siblings)
13 siblings, 0 replies; 15+ messages in thread
From: Thomas Zimmermann @ 2024-10-14 8:55 UTC (permalink / raw)
To: simona, airlied, javierm, jfalempe
Cc: dri-devel, amd-gfx, intel-gfx, intel-xe, Thomas Zimmermann,
Alex Deucher, Christian König, Xinhui Pan, Jonathan Cavitt
Replace calls to drm_fb_helper_set_suspend_unlocked() with calls
to the client functions drm_client_dev_suspend() and
drm_client_dev_resume(). Any registered in-kernel client will now
receive suspend and resume events.
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Cc: Alex Deucher <alexander.deucher@amd.com>
Cc: "Christian König" <christian.koenig@amd.com>
Cc: Xinhui Pan <Xinhui.Pan@amd.com>
Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
---
drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | 22 +++++++++++-----------
1 file changed, 11 insertions(+), 11 deletions(-)
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
index fd853dc843e9..9c40d620a658 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
@@ -37,8 +37,8 @@
#include <drm/drm_aperture.h>
#include <drm/drm_atomic_helper.h>
+#include <drm/drm_client_event.h>
#include <drm/drm_crtc_helper.h>
-#include <drm/drm_fb_helper.h>
#include <drm/drm_probe_helper.h>
#include <drm/amdgpu_drm.h>
#include <linux/device.h>
@@ -4711,13 +4711,13 @@ int amdgpu_device_prepare(struct drm_device *dev)
* amdgpu_device_suspend - initiate device suspend
*
* @dev: drm dev pointer
- * @fbcon : notify the fbdev of suspend
+ * @notify_clients: notify in-kernel DRM clients
*
* Puts the hw in the suspend state (all asics).
* Returns 0 for success or an error on failure.
* Called at driver suspend.
*/
-int amdgpu_device_suspend(struct drm_device *dev, bool fbcon)
+int amdgpu_device_suspend(struct drm_device *dev, bool notify_clients)
{
struct amdgpu_device *adev = drm_to_adev(dev);
int r = 0;
@@ -4737,8 +4737,8 @@ int amdgpu_device_suspend(struct drm_device *dev, bool fbcon)
if (amdgpu_acpi_smart_shift_update(dev, AMDGPU_SS_DEV_D3))
DRM_WARN("smart shift update failed\n");
- if (fbcon)
- drm_fb_helper_set_suspend_unlocked(adev_to_drm(adev)->fb_helper, true);
+ if (notify_clients)
+ drm_client_dev_suspend(adev_to_drm(adev), false);
cancel_delayed_work_sync(&adev->delayed_init_work);
@@ -4773,13 +4773,13 @@ int amdgpu_device_suspend(struct drm_device *dev, bool fbcon)
* amdgpu_device_resume - initiate device resume
*
* @dev: drm dev pointer
- * @fbcon : notify the fbdev of resume
+ * @notify_clients: notify in-kernel DRM clients
*
* Bring the hw back to operating state (all asics).
* Returns 0 for success or an error on failure.
* Called at driver resume.
*/
-int amdgpu_device_resume(struct drm_device *dev, bool fbcon)
+int amdgpu_device_resume(struct drm_device *dev, bool notify_clients)
{
struct amdgpu_device *adev = drm_to_adev(dev);
int r = 0;
@@ -4835,8 +4835,8 @@ int amdgpu_device_resume(struct drm_device *dev, bool fbcon)
/* Make sure IB tests flushed */
flush_delayed_work(&adev->delayed_init_work);
- if (fbcon)
- drm_fb_helper_set_suspend_unlocked(adev_to_drm(adev)->fb_helper, false);
+ if (notify_clients)
+ drm_client_dev_resume(adev_to_drm(adev), false);
amdgpu_ras_resume(adev);
@@ -5448,7 +5448,7 @@ int amdgpu_do_asic_reset(struct list_head *device_list_handle,
if (r)
goto out;
- drm_fb_helper_set_suspend_unlocked(adev_to_drm(tmp_adev)->fb_helper, false);
+ drm_client_dev_resume(adev_to_drm(tmp_adev), false);
/*
* The GPU enters bad state once faulty pages
@@ -5734,7 +5734,7 @@ int amdgpu_device_gpu_recover(struct amdgpu_device *adev,
*/
amdgpu_unregister_gpu_instance(tmp_adev);
- drm_fb_helper_set_suspend_unlocked(adev_to_drm(tmp_adev)->fb_helper, true);
+ drm_client_dev_suspend(adev_to_drm(tmp_adev), false);
/* disable ras on ALL IPs */
if (!need_emergency_restart &&
--
2.46.0
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH v4 09/12] drm/nouveau: Suspend and resume clients with client helpers
2024-10-14 8:55 [PATCH v4 00/12] drm: Introduce DRM client library Thomas Zimmermann
` (7 preceding siblings ...)
2024-10-14 8:55 ` [PATCH v4 08/12] drm/amdgpu: Suspend and resume internal clients with client helpers Thomas Zimmermann
@ 2024-10-14 8:55 ` Thomas Zimmermann
2024-10-14 8:55 ` [PATCH v4 10/12] drm/radeon: " Thomas Zimmermann
` (4 subsequent siblings)
13 siblings, 0 replies; 15+ messages in thread
From: Thomas Zimmermann @ 2024-10-14 8:55 UTC (permalink / raw)
To: simona, airlied, javierm, jfalempe
Cc: dri-devel, amd-gfx, intel-gfx, intel-xe, Thomas Zimmermann,
Karol Herbst, Lyude Paul, Danilo Krummrich, Jonathan Cavitt
Replace calls to drm_fb_helper_set_suspend_unlocked() with calls
to the client functions drm_client_dev_suspend() and
drm_client_dev_resume(). Any registered in-kernel client will now
receive suspend and resume events.
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Cc: Karol Herbst <kherbst@redhat.com>
Cc: Lyude Paul <lyude@redhat.com>
Cc: Danilo Krummrich <dakr@redhat.com>
Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
---
drivers/gpu/drm/nouveau/nouveau_display.c | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/drivers/gpu/drm/nouveau/nouveau_display.c b/drivers/gpu/drm/nouveau/nouveau_display.c
index e2fd561cd23f..619a3efbe8c8 100644
--- a/drivers/gpu/drm/nouveau/nouveau_display.c
+++ b/drivers/gpu/drm/nouveau/nouveau_display.c
@@ -28,8 +28,8 @@
#include <drm/drm_atomic.h>
#include <drm/drm_atomic_helper.h>
+#include <drm/drm_client_event.h>
#include <drm/drm_crtc_helper.h>
-#include <drm/drm_fb_helper.h>
#include <drm/drm_fourcc.h>
#include <drm/drm_gem_framebuffer_helper.h>
#include <drm/drm_probe_helper.h>
@@ -804,8 +804,7 @@ nouveau_display_suspend(struct drm_device *dev, bool runtime)
{
struct nouveau_display *disp = nouveau_display(dev);
- /* Disable console. */
- drm_fb_helper_set_suspend_unlocked(dev->fb_helper, true);
+ drm_client_dev_suspend(dev, false);
if (drm_drv_uses_atomic_modeset(dev)) {
if (!runtime) {
@@ -836,8 +835,7 @@ nouveau_display_resume(struct drm_device *dev, bool runtime)
}
}
- /* Enable console. */
- drm_fb_helper_set_suspend_unlocked(dev->fb_helper, false);
+ drm_client_dev_resume(dev, false);
}
int
--
2.46.0
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH v4 10/12] drm/radeon: Suspend and resume clients with client helpers
2024-10-14 8:55 [PATCH v4 00/12] drm: Introduce DRM client library Thomas Zimmermann
` (8 preceding siblings ...)
2024-10-14 8:55 ` [PATCH v4 09/12] drm/nouveau: Suspend and resume " Thomas Zimmermann
@ 2024-10-14 8:55 ` Thomas Zimmermann
2024-10-14 8:55 ` [PATCH v4 11/12] drm/client: Make client support optional Thomas Zimmermann
` (3 subsequent siblings)
13 siblings, 0 replies; 15+ messages in thread
From: Thomas Zimmermann @ 2024-10-14 8:55 UTC (permalink / raw)
To: simona, airlied, javierm, jfalempe
Cc: dri-devel, amd-gfx, intel-gfx, intel-xe, Thomas Zimmermann,
Alex Deucher, Christian König, Xinhui Pan, Jonathan Cavitt
Replace calls to radeon_fbdev_set_suspend() with calls to the client
functions drm_client_dev_suspend() and drm_client_dev_resume(). Any
registered in-kernel client will now receive suspend and resume events.
v4:
- refer to radeon_fbdev_set_suspend() in commit description (Jonathan)
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Cc: Alex Deucher <alexander.deucher@amd.com>
Cc: "Christian König" <christian.koenig@amd.com>
Cc: Xinhui Pan <Xinhui.Pan@amd.com>
Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
---
drivers/gpu/drm/radeon/radeon_device.c | 19 ++++++++++---------
drivers/gpu/drm/radeon/radeon_fbdev.c | 6 ------
drivers/gpu/drm/radeon/radeon_mode.h | 3 ---
3 files changed, 10 insertions(+), 18 deletions(-)
diff --git a/drivers/gpu/drm/radeon/radeon_device.c b/drivers/gpu/drm/radeon/radeon_device.c
index 554b236c2328..6f071e61f764 100644
--- a/drivers/gpu/drm/radeon/radeon_device.c
+++ b/drivers/gpu/drm/radeon/radeon_device.c
@@ -35,6 +35,7 @@
#include <linux/vgaarb.h>
#include <drm/drm_cache.h>
+#include <drm/drm_client_event.h>
#include <drm/drm_crtc_helper.h>
#include <drm/drm_device.h>
#include <drm/drm_file.h>
@@ -1542,7 +1543,7 @@ void radeon_device_fini(struct radeon_device *rdev)
* Called at driver suspend.
*/
int radeon_suspend_kms(struct drm_device *dev, bool suspend,
- bool fbcon, bool freeze)
+ bool notify_clients, bool freeze)
{
struct radeon_device *rdev;
struct pci_dev *pdev;
@@ -1634,9 +1635,9 @@ int radeon_suspend_kms(struct drm_device *dev, bool suspend,
pci_set_power_state(pdev, PCI_D3hot);
}
- if (fbcon) {
+ if (notify_clients) {
console_lock();
- radeon_fbdev_set_suspend(rdev, 1);
+ drm_client_dev_suspend(dev, true);
console_unlock();
}
return 0;
@@ -1649,7 +1650,7 @@ int radeon_suspend_kms(struct drm_device *dev, bool suspend,
* Returns 0 for success or an error on failure.
* Called at driver resume.
*/
-int radeon_resume_kms(struct drm_device *dev, bool resume, bool fbcon)
+int radeon_resume_kms(struct drm_device *dev, bool resume, bool notify_clients)
{
struct drm_connector *connector;
struct radeon_device *rdev = dev->dev_private;
@@ -1660,14 +1661,14 @@ int radeon_resume_kms(struct drm_device *dev, bool resume, bool fbcon)
if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
return 0;
- if (fbcon) {
+ if (notify_clients) {
console_lock();
}
if (resume) {
pci_set_power_state(pdev, PCI_D0);
pci_restore_state(pdev);
if (pci_enable_device(pdev)) {
- if (fbcon)
+ if (notify_clients)
console_unlock();
return -1;
}
@@ -1730,7 +1731,7 @@ int radeon_resume_kms(struct drm_device *dev, bool resume, bool fbcon)
/* reset hpd state */
radeon_hpd_init(rdev);
/* blat the mode back in */
- if (fbcon) {
+ if (notify_clients) {
drm_helper_resume_force_mode(dev);
/* turn on display hw */
drm_modeset_lock_all(dev);
@@ -1746,8 +1747,8 @@ int radeon_resume_kms(struct drm_device *dev, bool resume, bool fbcon)
if ((rdev->pm.pm_method == PM_METHOD_DPM) && rdev->pm.dpm_enabled)
radeon_pm_compute_clocks(rdev);
- if (fbcon) {
- radeon_fbdev_set_suspend(rdev, 0);
+ if (notify_clients) {
+ drm_client_dev_resume(dev, true);
console_unlock();
}
diff --git a/drivers/gpu/drm/radeon/radeon_fbdev.c b/drivers/gpu/drm/radeon/radeon_fbdev.c
index 0aa20c8df546..d4a58bd679db 100644
--- a/drivers/gpu/drm/radeon/radeon_fbdev.c
+++ b/drivers/gpu/drm/radeon/radeon_fbdev.c
@@ -288,12 +288,6 @@ int radeon_fbdev_driver_fbdev_probe(struct drm_fb_helper *fb_helper,
return ret;
}
-void radeon_fbdev_set_suspend(struct radeon_device *rdev, int state)
-{
- if (rdev_to_drm(rdev)->fb_helper)
- drm_fb_helper_set_suspend(rdev_to_drm(rdev)->fb_helper, state);
-}
-
bool radeon_fbdev_robj_is_fb(struct radeon_device *rdev, struct radeon_bo *robj)
{
struct drm_fb_helper *fb_helper = rdev_to_drm(rdev)->fb_helper;
diff --git a/drivers/gpu/drm/radeon/radeon_mode.h b/drivers/gpu/drm/radeon/radeon_mode.h
index 12a1d99a1815..4063d3801e81 100644
--- a/drivers/gpu/drm/radeon/radeon_mode.h
+++ b/drivers/gpu/drm/radeon/radeon_mode.h
@@ -942,13 +942,10 @@ int radeon_fbdev_driver_fbdev_probe(struct drm_fb_helper *fb_helper,
struct drm_fb_helper_surface_size *sizes);
#define RADEON_FBDEV_DRIVER_OPS \
.fbdev_probe = radeon_fbdev_driver_fbdev_probe
-void radeon_fbdev_set_suspend(struct radeon_device *rdev, int state);
bool radeon_fbdev_robj_is_fb(struct radeon_device *rdev, struct radeon_bo *robj);
#else
#define RADEON_FBDEV_DRIVER_OPS \
.fbdev_probe = NULL
-static inline void radeon_fbdev_set_suspend(struct radeon_device *rdev, int state)
-{ }
static inline bool radeon_fbdev_robj_is_fb(struct radeon_device *rdev, struct radeon_bo *robj)
{
return false;
--
2.46.0
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH v4 11/12] drm/client: Make client support optional
2024-10-14 8:55 [PATCH v4 00/12] drm: Introduce DRM client library Thomas Zimmermann
` (9 preceding siblings ...)
2024-10-14 8:55 ` [PATCH v4 10/12] drm/radeon: " Thomas Zimmermann
@ 2024-10-14 8:55 ` Thomas Zimmermann
2024-10-14 8:55 ` [PATCH v4 12/12] drm/client: Add client-lib module Thomas Zimmermann
` (2 subsequent siblings)
13 siblings, 0 replies; 15+ messages in thread
From: Thomas Zimmermann @ 2024-10-14 8:55 UTC (permalink / raw)
To: simona, airlied, javierm, jfalempe
Cc: dri-devel, amd-gfx, intel-gfx, intel-xe, Thomas Zimmermann,
Alex Deucher, Christian König, Xinhui Pan, Jonathan Cavitt
Only build client code if DRM_CLIENT has been selected. Automatially
do so if one of the default clients has been enabled. If client support
has been disabled, the helpers for client-related events are empty and
the regular client functions are not present.
Amdgpu has an internal DRM client, so it has to select DRM_CLIENT by
itself unconditionally.
v3:
- provide empty drm_client_debugfs_init() if DRM_CLIENT=n (kernel
test robot)
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Cc: Alex Deucher <alexander.deucher@amd.com>
Cc: "Christian König" <christian.koenig@amd.com>
Cc: Xinhui Pan <Xinhui.Pan@amd.com>
Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
---
drivers/gpu/drm/Kconfig | 10 ++++++++++
drivers/gpu/drm/Makefile | 7 ++++---
drivers/gpu/drm/amd/amdgpu/Kconfig | 1 +
drivers/gpu/drm/drm_client_event.c | 2 ++
drivers/gpu/drm/drm_debugfs.c | 1 -
drivers/gpu/drm/drm_internal.h | 8 ++++++++
include/drm/drm_client.h | 2 --
include/drm/drm_client_event.h | 13 +++++++++++++
8 files changed, 38 insertions(+), 6 deletions(-)
diff --git a/drivers/gpu/drm/Kconfig b/drivers/gpu/drm/Kconfig
index 88c4837d070c..ea1cc924528c 100644
--- a/drivers/gpu/drm/Kconfig
+++ b/drivers/gpu/drm/Kconfig
@@ -209,6 +209,15 @@ config DRM_DEBUG_MODESET_LOCK
If in doubt, say "N".
+config DRM_CLIENT
+ bool
+ depends on DRM
+ help
+ Enables support for DRM clients. DRM drivers that need
+ struct drm_client_dev and its interfaces should select this
+ option. Drivers that support the default clients should
+ select DRM_CLIENT_SELECTION instead.
+
config DRM_CLIENT_SELECTION
bool
depends on DRM
@@ -224,6 +233,7 @@ config DRM_CLIENT_SETUP
config DRM_FBDEV_EMULATION
bool "Enable legacy fbdev support for your modesetting driver"
depends on DRM
+ select DRM_CLIENT
select FRAMEBUFFER_CONSOLE_DETECT_PRIMARY if FRAMEBUFFER_CONSOLE
default FB
help
diff --git a/drivers/gpu/drm/Makefile b/drivers/gpu/drm/Makefile
index 6b7d168ca790..c3e5d353588e 100644
--- a/drivers/gpu/drm/Makefile
+++ b/drivers/gpu/drm/Makefile
@@ -41,9 +41,6 @@ drm-y := \
drm_blend.o \
drm_bridge.o \
drm_cache.o \
- drm_client.o \
- drm_client_event.o \
- drm_client_modeset.o \
drm_color_mgmt.o \
drm_connector.o \
drm_crtc.o \
@@ -77,6 +74,10 @@ drm-y := \
drm_vblank_work.o \
drm_vma_manager.o \
drm_writeback.o
+drm-$(CONFIG_DRM_CLIENT) += \
+ drm_client.o \
+ drm_client_event.o \
+ drm_client_modeset.o
drm-$(CONFIG_DRM_LIB_RANDOM) += lib/drm_random.o
drm-$(CONFIG_COMPAT) += drm_ioc32.o
drm-$(CONFIG_DRM_PANEL) += drm_panel.o
diff --git a/drivers/gpu/drm/amd/amdgpu/Kconfig b/drivers/gpu/drm/amd/amdgpu/Kconfig
index 680a94c361ba..41fa3377d9cf 100644
--- a/drivers/gpu/drm/amd/amdgpu/Kconfig
+++ b/drivers/gpu/drm/amd/amdgpu/Kconfig
@@ -5,6 +5,7 @@ config DRM_AMDGPU
depends on DRM && PCI && MMU
depends on !UML
select FW_LOADER
+ select DRM_CLIENT
select DRM_CLIENT_SELECTION
select DRM_DISPLAY_DP_HELPER
select DRM_DISPLAY_DSC_HELPER
diff --git a/drivers/gpu/drm/drm_client_event.c b/drivers/gpu/drm/drm_client_event.c
index c52e93643672..e303de564485 100644
--- a/drivers/gpu/drm/drm_client_event.c
+++ b/drivers/gpu/drm/drm_client_event.c
@@ -14,6 +14,8 @@
#include <drm/drm_drv.h>
#include <drm/drm_print.h>
+#include "drm_internal.h"
+
/**
* drm_client_dev_unregister - Unregister clients
* @dev: DRM device
diff --git a/drivers/gpu/drm/drm_debugfs.c b/drivers/gpu/drm/drm_debugfs.c
index 52783eac078e..536409a35df4 100644
--- a/drivers/gpu/drm/drm_debugfs.c
+++ b/drivers/gpu/drm/drm_debugfs.c
@@ -32,7 +32,6 @@
#include <drm/drm_atomic.h>
#include <drm/drm_auth.h>
#include <drm/drm_bridge.h>
-#include <drm/drm_client.h>
#include <drm/drm_debugfs.h>
#include <drm/drm_device.h>
#include <drm/drm_drv.h>
diff --git a/drivers/gpu/drm/drm_internal.h b/drivers/gpu/drm/drm_internal.h
index 9af72bab86d1..0bfcba6949b0 100644
--- a/drivers/gpu/drm/drm_internal.h
+++ b/drivers/gpu/drm/drm_internal.h
@@ -48,6 +48,14 @@ struct drm_prime_file_private;
struct drm_printer;
struct drm_vblank_crtc;
+/* drm_client_event.c */
+#if defined(CONFIG_DRM_CLIENT)
+void drm_client_debugfs_init(struct drm_device *dev);
+#else
+static inline void drm_client_debugfs_init(struct drm_device *dev)
+{ }
+#endif
+
/* drm_file.c */
extern struct mutex drm_global_mutex;
bool drm_dev_needs_global_mutex(struct drm_device *dev);
diff --git a/include/drm/drm_client.h b/include/drm/drm_client.h
index c03c4b0f3e94..3b13cf29ed55 100644
--- a/include/drm/drm_client.h
+++ b/include/drm/drm_client.h
@@ -236,6 +236,4 @@ int drm_client_modeset_dpms(struct drm_client_dev *client, int mode);
drm_for_each_connector_iter(connector, iter) \
if (connector->connector_type != DRM_MODE_CONNECTOR_WRITEBACK)
-void drm_client_debugfs_init(struct drm_device *dev);
-
#endif
diff --git a/include/drm/drm_client_event.h b/include/drm/drm_client_event.h
index 72c97d111169..99863554b055 100644
--- a/include/drm/drm_client_event.h
+++ b/include/drm/drm_client_event.h
@@ -5,10 +5,23 @@
struct drm_device;
+#if defined(CONFIG_DRM_CLIENT)
void drm_client_dev_unregister(struct drm_device *dev);
void drm_client_dev_hotplug(struct drm_device *dev);
void drm_client_dev_restore(struct drm_device *dev);
void drm_client_dev_suspend(struct drm_device *dev, bool holds_console_lock);
void drm_client_dev_resume(struct drm_device *dev, bool holds_console_lock);
+#else
+static inline void drm_client_dev_unregister(struct drm_device *dev)
+{ }
+static inline void drm_client_dev_hotplug(struct drm_device *dev)
+{ }
+static inline void drm_client_dev_restore(struct drm_device *dev)
+{ }
+static inline void drm_client_dev_suspend(struct drm_device *dev, bool holds_console_lock)
+{ }
+static inline void drm_client_dev_resume(struct drm_device *dev, bool holds_console_lock)
+{ }
+#endif
#endif
--
2.46.0
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH v4 12/12] drm/client: Add client-lib module
2024-10-14 8:55 [PATCH v4 00/12] drm: Introduce DRM client library Thomas Zimmermann
` (10 preceding siblings ...)
2024-10-14 8:55 ` [PATCH v4 11/12] drm/client: Make client support optional Thomas Zimmermann
@ 2024-10-14 8:55 ` Thomas Zimmermann
2024-10-14 10:53 ` ✓ Fi.CI.BAT: success for drm: Introduce DRM client library (rev4) Patchwork
2024-10-14 12:43 ` ✗ Fi.CI.IGT: failure " Patchwork
13 siblings, 0 replies; 15+ messages in thread
From: Thomas Zimmermann @ 2024-10-14 8:55 UTC (permalink / raw)
To: simona, airlied, javierm, jfalempe
Cc: dri-devel, amd-gfx, intel-gfx, intel-xe, Thomas Zimmermann,
Jonathan Cavitt
Add drm_client_lib.ko to contain DRM's built-in client. Move the
existing client for fbdev emulation into the new module. Protect the
new module behind CONFIG_DRM_CLIENT_LIB.
The Kconfig rules separate the DRM drivers from the DRM clients. A
driver can opt into the default clients, but the user configures
each client individually. To do so, DRM drivers still select
DRM_CLIENT_SELECTION. The option is now a tristate that further
selects all dependencies of the enabled DRM clients. There's
a menu option for each client. Enabling at least one client also
selects DRM_CLIENT_SETUP, so that drivers call drm_client_setup().
New DRM clients should depend on DRM_CLIENT_SELECTION.
There are existing kernel options in drm_fb_helper.o, so leave this
file in the KMS-helper module for now.
v3:
- fix commit changelog
v2:
- keep client code in core
- protect lib with DRM_CLIENT_LIB
- remove duplicate line from Makefile (Jocelyn)
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
---
drivers/gpu/drm/Kconfig | 26 ++++++++++++++++++++-----
drivers/gpu/drm/Makefile | 14 +++++++++----
drivers/gpu/drm/drm_client_setup.c | 3 +++
drivers/gpu/drm/drm_kms_helper_common.c | 3 +++
4 files changed, 37 insertions(+), 9 deletions(-)
diff --git a/drivers/gpu/drm/Kconfig b/drivers/gpu/drm/Kconfig
index ea1cc924528c..a9055c0b9a1a 100644
--- a/drivers/gpu/drm/Kconfig
+++ b/drivers/gpu/drm/Kconfig
@@ -9,8 +9,6 @@ menuconfig DRM
tristate "Direct Rendering Manager (XFree86 4.1.0 and higher DRI support)"
depends on (AGP || AGP=n) && !EMULATED_CMPXCHG && HAS_DMA
select DRM_PANEL_ORIENTATION_QUIRKS
- select DRM_KMS_HELPER if DRM_FBDEV_EMULATION
- select FB_CORE if DRM_FBDEV_EMULATION
select HDMI
select I2C
select DMA_SHARED_BUFFER
@@ -218,10 +216,19 @@ config DRM_CLIENT
option. Drivers that support the default clients should
select DRM_CLIENT_SELECTION instead.
+config DRM_CLIENT_LIB
+ tristate
+ depends on DRM
+ select DRM_KMS_HELPER if DRM_FBDEV_EMULATION
+ select FB_CORE if DRM_FBDEV_EMULATION
+ help
+ This option enables the DRM client library and selects all
+ modules and components according to the enabled clients.
+
config DRM_CLIENT_SELECTION
- bool
+ tristate
depends on DRM
- select DRM_CLIENT_SETUP if DRM_FBDEV_EMULATION
+ select DRM_CLIENT_LIB if DRM_FBDEV_EMULATION
help
Drivers that support in-kernel DRM clients have to select this
option.
@@ -229,11 +236,18 @@ config DRM_CLIENT_SELECTION
config DRM_CLIENT_SETUP
bool
depends on DRM_CLIENT_SELECTION
+ help
+ Enables the DRM client selection. DRM drivers that support the
+ default clients should select DRM_CLIENT_SELECTION instead.
+
+menu "Supported DRM clients"
+ depends on DRM_CLIENT_SELECTION
config DRM_FBDEV_EMULATION
bool "Enable legacy fbdev support for your modesetting driver"
- depends on DRM
+ depends on DRM_CLIENT_SELECTION
select DRM_CLIENT
+ select DRM_CLIENT_SETUP
select FRAMEBUFFER_CONSOLE_DETECT_PRIMARY if FRAMEBUFFER_CONSOLE
default FB
help
@@ -272,6 +286,8 @@ config DRM_FBDEV_LEAK_PHYS_SMEM
If in doubt, say "N" or spread the word to your closed source
library vendor.
+endmenu
+
config DRM_LOAD_EDID_FIRMWARE
bool "Allow to specify an EDID data set instead of probing for it"
depends on DRM
diff --git a/drivers/gpu/drm/Makefile b/drivers/gpu/drm/Makefile
index c3e5d353588e..edfd2ebaf153 100644
--- a/drivers/gpu/drm/Makefile
+++ b/drivers/gpu/drm/Makefile
@@ -145,13 +145,19 @@ drm_kms_helper-y := \
drm_probe_helper.o \
drm_self_refresh_helper.o \
drm_simple_kms_helper.o
-drm_kms_helper-$(CONFIG_DRM_CLIENT_SETUP) += \
- drm_client_setup.o
drm_kms_helper-$(CONFIG_DRM_PANEL_BRIDGE) += bridge/panel.o
-drm_kms_helper-$(CONFIG_DRM_FBDEV_EMULATION) += \
+obj-$(CONFIG_DRM_KMS_HELPER) += drm_kms_helper.o
+
+#
+# DRM clients
+#
+
+drm_client_lib-y := \
+ drm_client_setup.o
+drm_client_lib-$(CONFIG_DRM_FBDEV_EMULATION) += \
drm_fbdev_client.o \
drm_fb_helper.o
-obj-$(CONFIG_DRM_KMS_HELPER) += drm_kms_helper.o
+obj-$(CONFIG_DRM_CLIENT_LIB) += drm_client_lib.o
#
# Drivers and the rest
diff --git a/drivers/gpu/drm/drm_client_setup.c b/drivers/gpu/drm/drm_client_setup.c
index 5969c4ffe31b..c14221ca5a0d 100644
--- a/drivers/gpu/drm/drm_client_setup.c
+++ b/drivers/gpu/drm/drm_client_setup.c
@@ -64,3 +64,6 @@ void drm_client_setup_with_color_mode(struct drm_device *dev, unsigned int color
drm_client_setup_with_fourcc(dev, fourcc);
}
EXPORT_SYMBOL(drm_client_setup_with_color_mode);
+
+MODULE_DESCRIPTION("In-kernel DRM clients");
+MODULE_LICENSE("GPL and additional rights");
diff --git a/drivers/gpu/drm/drm_kms_helper_common.c b/drivers/gpu/drm/drm_kms_helper_common.c
index cfdbc1ac88dc..ecff0b1414ac 100644
--- a/drivers/gpu/drm/drm_kms_helper_common.c
+++ b/drivers/gpu/drm/drm_kms_helper_common.c
@@ -31,11 +31,13 @@
#if defined(CONFIG_DRM_FBDEV_EMULATION)
bool drm_fbdev_emulation = true;
+EXPORT_SYMBOL(drm_fbdev_emulation);
module_param_named(fbdev_emulation, drm_fbdev_emulation, bool, 0600);
MODULE_PARM_DESC(fbdev_emulation,
"Enable legacy fbdev emulation [default=true]");
int drm_fbdev_overalloc = CONFIG_DRM_FBDEV_OVERALLOC;
+EXPORT_SYMBOL(drm_fbdev_overalloc);
module_param(drm_fbdev_overalloc, int, 0444);
MODULE_PARM_DESC(drm_fbdev_overalloc,
"Overallocation of the fbdev buffer (%) [default="
@@ -55,6 +57,7 @@ MODULE_PARM_DESC(drm_fbdev_overalloc,
* considered as a broken and legacy behaviour from a modern fbdev device.
*/
bool drm_leak_fbdev_smem;
+EXPORT_SYMBOL(drm_leak_fbdev_smem);
#if IS_ENABLED(CONFIG_DRM_FBDEV_LEAK_PHYS_SMEM)
module_param_unsafe(drm_leak_fbdev_smem, bool, 0600);
MODULE_PARM_DESC(drm_leak_fbdev_smem,
--
2.46.0
^ permalink raw reply related [flat|nested] 15+ messages in thread
* ✓ Fi.CI.BAT: success for drm: Introduce DRM client library (rev4)
2024-10-14 8:55 [PATCH v4 00/12] drm: Introduce DRM client library Thomas Zimmermann
` (11 preceding siblings ...)
2024-10-14 8:55 ` [PATCH v4 12/12] drm/client: Add client-lib module Thomas Zimmermann
@ 2024-10-14 10:53 ` Patchwork
2024-10-14 12:43 ` ✗ Fi.CI.IGT: failure " Patchwork
13 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2024-10-14 10:53 UTC (permalink / raw)
To: Thomas Zimmermann; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 9415 bytes --]
== Series Details ==
Series: drm: Introduce DRM client library (rev4)
URL : https://patchwork.freedesktop.org/series/139221/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_15531 -> Patchwork_139221v4
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/index.html
Participating hosts (43 -> 43)
------------------------------
Additional (1): bat-rpls-4
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in Patchwork_139221v4 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-rpls-4: NOTRUN -> [SKIP][1] ([i915#9318])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/bat-rpls-4/igt@debugfs_test@basic-hwmon.html
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-rpls-4: NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/bat-rpls-4/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_tiled_pread_basic:
- bat-rpls-4: NOTRUN -> [SKIP][3] ([i915#3282])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/bat-rpls-4/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rpm@module-reload:
- fi-kbl-7567u: [PASS][4] -> [DMESG-WARN][5] ([i915#11621] / [i915#1982])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/fi-kbl-7567u/igt@i915_pm_rpm@module-reload.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/fi-kbl-7567u/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live@gt_heartbeat:
- bat-arls-5: NOTRUN -> [DMESG-WARN][6] ([i915#11637] / [i915#12133]) +9 other tests dmesg-warn
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/bat-arls-5/igt@i915_selftest@live@gt_heartbeat.html
* igt@i915_selftest@live@gt_tlb:
- bat-arls-5: NOTRUN -> [DMESG-WARN][7] ([i915#11637]) +20 other tests dmesg-warn
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/bat-arls-5/igt@i915_selftest@live@gt_tlb.html
* igt@i915_selftest@live@objects:
- bat-arls-5: NOTRUN -> [DMESG-WARN][8] ([i915#10341] / [i915#11637]) +2 other tests dmesg-warn
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/bat-arls-5/igt@i915_selftest@live@objects.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-rpls-4: NOTRUN -> [SKIP][9] ([i915#4103]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/bat-rpls-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-rpls-4: NOTRUN -> [SKIP][10] ([i915#3555] / [i915#3840] / [i915#9886])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/bat-rpls-4/igt@kms_dsc@dsc-basic.html
* igt@kms_flip@basic-flip-vs-wf_vblank:
- fi-kbl-7567u: [PASS][11] -> [DMESG-FAIL][12] ([i915#1982])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-wf_vblank.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-wf_vblank.html
* igt@kms_flip@basic-flip-vs-wf_vblank@a-dp1:
- fi-kbl-7567u: [PASS][13] -> [DMESG-FAIL][14] ([i915#11621]) +5 other tests dmesg-fail
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-wf_vblank@a-dp1.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-wf_vblank@a-dp1.html
* igt@kms_flip@basic-flip-vs-wf_vblank@c-dp1:
- fi-kbl-7567u: [PASS][15] -> [DMESG-FAIL][16] ([i915#11621] / [i915#1982])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-wf_vblank@c-dp1.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-wf_vblank@c-dp1.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-rpls-4: NOTRUN -> [SKIP][17]
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/bat-rpls-4/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_pm_backlight@basic-brightness:
- bat-rpls-4: NOTRUN -> [SKIP][18] ([i915#5354])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/bat-rpls-4/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- fi-kbl-7567u: [PASS][19] -> [DMESG-WARN][20] ([i915#11621]) +51 other tests dmesg-warn
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html
* igt@kms_psr@psr-primary-page-flip:
- bat-rpls-4: NOTRUN -> [SKIP][21] ([i915#1072] / [i915#9732]) +3 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/bat-rpls-4/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-rpls-4: NOTRUN -> [SKIP][22] ([i915#3555])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/bat-rpls-4/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-read:
- bat-rpls-4: NOTRUN -> [SKIP][23] ([i915#3708]) +2 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/bat-rpls-4/igt@prime_vgem@basic-read.html
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-mtlp-8: [ABORT][24] ([i915#12216]) -> [PASS][25] +1 other test pass
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/bat-mtlp-8/igt@i915_selftest@live.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/bat-mtlp-8/igt@i915_selftest@live.html
- bat-twl-2: [INCOMPLETE][26] ([i915#12133] / [i915#9413]) -> [PASS][27]
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/bat-twl-2/igt@i915_selftest@live.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/bat-twl-2/igt@i915_selftest@live.html
* igt@i915_selftest@live@gt_lrc:
- bat-twl-2: [INCOMPLETE][28] ([i915#12382] / [i915#9413]) -> [PASS][29]
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/bat-twl-2/igt@i915_selftest@live@gt_lrc.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/bat-twl-2/igt@i915_selftest@live@gt_lrc.html
#### Warnings ####
* igt@i915_selftest@live:
- bat-arls-5: [ABORT][30] ([i915#12061] / [i915#12133]) -> [DMESG-WARN][31] ([i915#10341] / [i915#12133])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/bat-arls-5/igt@i915_selftest@live.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/bat-arls-5/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-arls-5: [ABORT][32] ([i915#12061]) -> [DMESG-WARN][33] ([i915#10341] / [i915#11637])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/bat-arls-5/igt@i915_selftest@live@workarounds.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/bat-arls-5/igt@i915_selftest@live@workarounds.html
[i915#10341]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10341
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621
[i915#11637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11637
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133
[i915#12216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12216
[i915#12382]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12382
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
[i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886
Build changes
-------------
* Linux: CI_DRM_15531 -> Patchwork_139221v4
CI-20190529: 20190529
CI_DRM_15531: 55d09c71b082354090e8a11b4854224ef73e0798 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8068: 8068
Patchwork_139221v4: 55d09c71b082354090e8a11b4854224ef73e0798 @ git://anongit.freedesktop.org/gfx-ci/linux
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/index.html
[-- Attachment #2: Type: text/html, Size: 11763 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread
* ✗ Fi.CI.IGT: failure for drm: Introduce DRM client library (rev4)
2024-10-14 8:55 [PATCH v4 00/12] drm: Introduce DRM client library Thomas Zimmermann
` (12 preceding siblings ...)
2024-10-14 10:53 ` ✓ Fi.CI.BAT: success for drm: Introduce DRM client library (rev4) Patchwork
@ 2024-10-14 12:43 ` Patchwork
13 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2024-10-14 12:43 UTC (permalink / raw)
To: Thomas Zimmermann; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 97045 bytes --]
== Series Details ==
Series: drm: Introduce DRM client library (rev4)
URL : https://patchwork.freedesktop.org/series/139221/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15531_full -> Patchwork_139221v4_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_139221v4_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_139221v4_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 (8 -> 8)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_139221v4_full:
### IGT changes ###
#### Possible regressions ####
* igt@i915_pm_freq_api@freq-suspend@gt0:
- shard-dg2: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-2/igt@i915_pm_freq_api@freq-suspend@gt0.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-10/igt@i915_pm_freq_api@freq-suspend@gt0.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-vga-1:
- shard-snb: NOTRUN -> [FAIL][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-snb4/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-vga-1.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area@pipe-a-edp-1:
- shard-mtlp: [PASS][4] -> [FAIL][5] +1 other test fail
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-mtlp-4/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area@pipe-a-edp-1.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-mtlp-8/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area@pipe-a-edp-1.html
#### Warnings ####
* igt@gem_ctx_engines@invalid-engines:
- shard-glk: [FAIL][6] ([i915#12027]) -> [FAIL][7]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-glk3/igt@gem_ctx_engines@invalid-engines.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-glk5/igt@gem_ctx_engines@invalid-engines.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@i915_suspend@debugfs-reader:
- {shard-tglu-1}: NOTRUN -> [ABORT][8]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-tglu-1/igt@i915_suspend@debugfs-reader.html
New tests
---------
New tests have been introduced between CI_DRM_15531_full and Patchwork_139221v4_full:
### New IGT tests (10) ###
* igt@kms_atomic@atomic-plane-damage@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.65] s
* igt@kms_atomic_interruptible@legacy-cursor@pipe-a-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [6.18] s
* igt@kms_invalid_mode@zero-hdisplay@pipe-d-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_sequence@get-busy@pipe-a-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [2.74] s
* igt@kms_sequence@get-busy@pipe-b-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [2.68] s
* igt@kms_vblank@query-busy-hang@pipe-a-dp-3:
- Statuses : 1 pass(s)
- Exec time: [26.74] s
* igt@kms_vblank@query-busy-hang@pipe-d-dp-3:
- Statuses : 1 pass(s)
- Exec time: [24.93] s
* igt@kms_vblank@ts-continuation-dpms-rpm@pipe-a-dp-3:
- Statuses : 1 pass(s)
- Exec time: [1.79] s
* igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-dp-3:
- Statuses : 1 pass(s)
- Exec time: [0.99] s
* igt@kms_vblank@ts-continuation-modeset-rpm@pipe-b-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.40] s
Known issues
------------
Here are the changes found in Patchwork_139221v4_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@device_reset@cold-reset-bound:
- shard-dg2: NOTRUN -> [SKIP][9] ([i915#11078])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@device_reset@cold-reset-bound.html
* igt@drm_fdinfo@busy-check-all@bcs0:
- shard-dg1: NOTRUN -> [SKIP][10] ([i915#8414]) +5 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg1-15/igt@drm_fdinfo@busy-check-all@bcs0.html
* igt@drm_read@short-buffer-block:
- shard-dg2: [PASS][11] -> [SKIP][12] ([i915#9197]) +31 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-3/igt@drm_read@short-buffer-block.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@drm_read@short-buffer-block.html
* igt@fbdev@read:
- shard-dg2: NOTRUN -> [SKIP][13] ([i915#2582])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@fbdev@read.html
* igt@gem_basic@multigpu-create-close:
- shard-rkl: NOTRUN -> [SKIP][14] ([i915#7697])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-rkl-1/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-tglu: NOTRUN -> [SKIP][15] ([i915#3555] / [i915#9323])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-tglu-10/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-mtlp: NOTRUN -> [SKIP][16] ([i915#9323])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-mtlp-5/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:
- shard-dg2: [PASS][17] -> [INCOMPLETE][18] ([i915#7297])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-10/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-6/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-snb: NOTRUN -> [SKIP][19] +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-snb6/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_engines@invalid-engines:
- shard-rkl: [PASS][20] -> [FAIL][21] ([i915#12027])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-rkl-1/igt@gem_ctx_engines@invalid-engines.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-rkl-7/igt@gem_ctx_engines@invalid-engines.html
- shard-tglu: [PASS][22] -> [FAIL][23] ([i915#12027])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-tglu-2/igt@gem_ctx_engines@invalid-engines.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-tglu-5/igt@gem_ctx_engines@invalid-engines.html
* igt@gem_ctx_sseu@mmap-args:
- shard-rkl: NOTRUN -> [SKIP][24] ([i915#280])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-rkl-7/igt@gem_ctx_sseu@mmap-args.html
- shard-tglu: NOTRUN -> [SKIP][25] ([i915#280])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-tglu-5/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@hibernate:
- shard-tglu: NOTRUN -> [ABORT][26] ([i915#10030] / [i915#7975] / [i915#8213])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-tglu-10/igt@gem_eio@hibernate.html
- shard-dg2: [PASS][27] -> [ABORT][28] ([i915#10030] / [i915#7975] / [i915#8213])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-11/igt@gem_eio@hibernate.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-1/igt@gem_eio@hibernate.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: NOTRUN -> [SKIP][29] ([i915#4525]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-rkl-1/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_capture@capture-invisible@lmem0:
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#6334]) +2 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@gem_exec_capture@capture-invisible@lmem0.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-glk: NOTRUN -> [SKIP][31] ([i915#6334]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-glk7/igt@gem_exec_capture@capture-invisible@smem0.html
- shard-mtlp: NOTRUN -> [SKIP][32] ([i915#6334]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-mtlp-3/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_fair@basic-deadline:
- shard-rkl: NOTRUN -> [FAIL][33] ([i915#2846])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-rkl-1/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-pace:
- shard-dg1: NOTRUN -> [SKIP][34] ([i915#3539])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg1-14/igt@gem_exec_fair@basic-pace.html
* igt@gem_exec_flush@basic-wb-ro-before-default:
- shard-dg2: NOTRUN -> [SKIP][35] ([i915#3539] / [i915#4852])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@gem_exec_flush@basic-wb-ro-before-default.html
* igt@gem_exec_reloc@basic-active:
- shard-dg1: NOTRUN -> [SKIP][36] ([i915#3281])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg1-17/igt@gem_exec_reloc@basic-active.html
* igt@gem_exec_reloc@basic-gtt-wc-active:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#3281]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@gem_exec_reloc@basic-gtt-wc-active.html
- shard-mtlp: NOTRUN -> [SKIP][38] ([i915#3281]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-mtlp-3/igt@gem_exec_reloc@basic-gtt-wc-active.html
* igt@gem_exec_reloc@basic-write-wc-noreloc:
- shard-rkl: NOTRUN -> [SKIP][39] ([i915#3281]) +3 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-rkl-7/igt@gem_exec_reloc@basic-write-wc-noreloc.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#4537] / [i915#4812])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-5/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
- shard-mtlp: NOTRUN -> [SKIP][41] ([i915#4537] / [i915#4812])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-mtlp-2/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_lmem_swapping@heavy-verify-multi:
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4613]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-mtlp-2/igt@gem_lmem_swapping@heavy-verify-multi.html
* igt@gem_lmem_swapping@massive:
- shard-tglu: NOTRUN -> [SKIP][43] ([i915#4613])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-tglu-10/igt@gem_lmem_swapping@massive.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-rkl: NOTRUN -> [SKIP][44] ([i915#4613])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-rkl-1/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_mmap_gtt@cpuset-big-copy:
- shard-dg2: NOTRUN -> [SKIP][45] ([i915#4077]) +2 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@gem_mmap_gtt@cpuset-big-copy.html
* igt@gem_mmap_gtt@cpuset-medium-copy-odd:
- shard-dg1: NOTRUN -> [SKIP][46] ([i915#4077])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg1-15/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html
* igt@gem_mmap_gtt@hang-busy:
- shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4077]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-mtlp-2/igt@gem_mmap_gtt@hang-busy.html
* igt@gem_mmap_wc@bad-object:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#4083])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@gem_mmap_wc@bad-object.html
* igt@gem_pwrite@basic-exhaustion:
- shard-tglu: NOTRUN -> [WARN][49] ([i915#2658])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-tglu-10/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@create-protected-buffer:
- shard-rkl: NOTRUN -> [SKIP][50] ([i915#4270]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-rkl-7/igt@gem_pxp@create-protected-buffer.html
- shard-tglu: NOTRUN -> [SKIP][51] ([i915#4270]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-tglu-5/igt@gem_pxp@create-protected-buffer.html
* igt@gem_pxp@display-protected-crc:
- shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4270])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-mtlp-5/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#4270])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@gem_readwrite@beyond-eob:
- shard-rkl: NOTRUN -> [SKIP][54] ([i915#3282]) +2 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-rkl-1/igt@gem_readwrite@beyond-eob.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][55] ([i915#8428])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-mtlp-3/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled.html
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#5190] / [i915#8428])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled.html
* igt@gem_tiled_pread_pwrite:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#4079])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@gem_tiled_pread_pwrite.html
* igt@gem_userptr_blits@access-control:
- shard-rkl: NOTRUN -> [SKIP][58] ([i915#3297])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-rkl-7/igt@gem_userptr_blits@access-control.html
- shard-tglu: NOTRUN -> [SKIP][59] ([i915#3297])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-tglu-5/igt@gem_userptr_blits@access-control.html
* igt@gen7_exec_parse@basic-rejected:
- shard-dg2: NOTRUN -> [SKIP][60] +4 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@gen7_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@bb-large:
- shard-mtlp: NOTRUN -> [SKIP][61] ([i915#2856]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-mtlp-5/igt@gen9_exec_parse@bb-large.html
* igt@gen9_exec_parse@bb-oversize:
- shard-rkl: NOTRUN -> [SKIP][62] ([i915#2527])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-rkl-7/igt@gen9_exec_parse@bb-oversize.html
- shard-tglu: NOTRUN -> [SKIP][63] ([i915#2527] / [i915#2856]) +2 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-tglu-5/igt@gen9_exec_parse@bb-oversize.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-snb: [PASS][64] -> [ABORT][65] ([i915#9820])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-snb6/igt@i915_module_load@reload-with-fault-injection.html
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-snb4/igt@i915_module_load@reload-with-fault-injection.html
- shard-tglu: [PASS][66] -> [ABORT][67] ([i915#9820])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-tglu-9/igt@i915_module_load@reload-with-fault-injection.html
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-tglu-7/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_module_load@resize-bar:
- shard-rkl: NOTRUN -> [SKIP][68] ([i915#6412])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-rkl-7/igt@i915_module_load@resize-bar.html
- shard-tglu: NOTRUN -> [SKIP][69] ([i915#6412])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-tglu-5/igt@i915_module_load@resize-bar.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0:
- shard-dg1: [PASS][70] -> [FAIL][71] ([i915#3591]) +1 other test fail
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
* igt@i915_selftest@live@workarounds:
- shard-mtlp: NOTRUN -> [ABORT][72] ([i915#12216]) +1 other test abort
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-mtlp-3/igt@i915_selftest@live@workarounds.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][73] ([i915#8709]) +3 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-rkl-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs:
- shard-dg1: NOTRUN -> [SKIP][74] ([i915#8709]) +7 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg1-12/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs:
- shard-tglu: NOTRUN -> [SKIP][75] ([i915#8709]) +7 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-tglu-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs.html
* igt@kms_async_flips@test-time-stamp:
- shard-dg1: [PASS][76] -> [DMESG-WARN][77] ([i915#4423])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg1-16/igt@kms_async_flips@test-time-stamp.html
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg1-13/igt@kms_async_flips@test-time-stamp.html
* igt@kms_atomic_transition@modeset-transition-nonblocking:
- shard-glk: [PASS][78] -> [FAIL][79] ([i915#12177])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-glk1/igt@kms_atomic_transition@modeset-transition-nonblocking.html
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-glk8/igt@kms_atomic_transition@modeset-transition-nonblocking.html
* igt@kms_atomic_transition@modeset-transition-nonblocking@2x-outputs:
- shard-glk: [PASS][80] -> [FAIL][81] ([i915#11859])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-glk1/igt@kms_atomic_transition@modeset-transition-nonblocking@2x-outputs.html
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-glk8/igt@kms_atomic_transition@modeset-transition-nonblocking@2x-outputs.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-rkl: NOTRUN -> [SKIP][82] ([i915#1769] / [i915#3555])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-rkl-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-tglu: NOTRUN -> [SKIP][83] ([i915#1769] / [i915#3555])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-tglu-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][84] ([i915#5286]) +2 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
- shard-tglu: NOTRUN -> [SKIP][85] ([i915#5286])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-tglu-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][86] ([i915#3638]) +2 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-rkl-7/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0:
- shard-mtlp: NOTRUN -> [SKIP][87] +2 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-mtlp-5/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180:
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#4538] / [i915#5190])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][89] ([i915#5190] / [i915#9197]) +2 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][90] ([i915#12313])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
- shard-tglu: NOTRUN -> [SKIP][91] ([i915#12313])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-tglu-5/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][92] ([i915#6095]) +91 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg1-17/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][93] ([i915#6095]) +79 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][94] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-8/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][95] ([i915#6095]) +9 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-mtlp-5/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-c-edp-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-glk: NOTRUN -> [SKIP][96] +61 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-glk7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#10307] / [i915#6095]) +155 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs:
- shard-tglu: NOTRUN -> [SKIP][98] ([i915#6095]) +24 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-tglu-5/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][99] ([i915#7213]) +3 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-5/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_cdclk@plane-scaling@pipe-c-dp-3:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#4087]) +3 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-10/igt@kms_cdclk@plane-scaling@pipe-c-dp-3.html
* igt@kms_chamelium_edid@dp-mode-timings:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#7828]) +2 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@kms_chamelium_edid@dp-mode-timings.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-rkl: NOTRUN -> [SKIP][102] ([i915#7828]) +4 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-rkl-7/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
- shard-tglu: NOTRUN -> [SKIP][103] ([i915#7828]) +2 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-tglu-5/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode:
- shard-mtlp: NOTRUN -> [SKIP][104] ([i915#7828]) +3 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-mtlp-3/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-tglu: NOTRUN -> [SKIP][105] ([i915#3116] / [i915#3299])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-tglu-10/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy:
- shard-mtlp: NOTRUN -> [SKIP][106] ([i915#6944] / [i915#9424])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-mtlp-5/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@srm:
- shard-rkl: NOTRUN -> [SKIP][107] ([i915#7118])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-rkl-7/igt@kms_content_protection@srm.html
- shard-tglu: NOTRUN -> [SKIP][108] ([i915#6944] / [i915#7116] / [i915#7118])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-tglu-5/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-tglu: NOTRUN -> [SKIP][109] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-tglu-2/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-rkl: NOTRUN -> [SKIP][110] ([i915#11453])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-rkl-1/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-rkl: NOTRUN -> [SKIP][111] ([i915#3555])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
- shard-tglu: NOTRUN -> [SKIP][112] ([i915#3555])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-tglu-5/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-tglu: NOTRUN -> [SKIP][113] ([i915#4103])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-tglu-10/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#9197]) +26 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic:
- shard-mtlp: NOTRUN -> [SKIP][115] ([i915#9809])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-mtlp-3/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-rkl: NOTRUN -> [SKIP][116] +12 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-rkl-7/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-rkl: NOTRUN -> [SKIP][117] ([i915#4103])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-rkl-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-mtlp: NOTRUN -> [SKIP][118] ([i915#8588])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-mtlp-5/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#3804])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-rkl-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-tglu: NOTRUN -> [SKIP][120] ([i915#3840])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-tglu-10/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-dg1: NOTRUN -> [SKIP][121] ([i915#3840])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg1-15/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_feature_discovery@psr1:
- shard-tglu: NOTRUN -> [SKIP][122] ([i915#658])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-tglu-10/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][123] ([i915#3637]) +1 other test skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-tglu-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][124] ([i915#3637]) +2 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-mtlp-5/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-glk: [PASS][125] -> [FAIL][126] ([i915#2122]) +5 other tests fail
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-glk2/igt@kms_flip@2x-plain-flip-fb-recreate.html
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-glk9/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-tglu: [PASS][127] -> [FAIL][128] ([i915#2122]) +3 other tests fail
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-tglu-2/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-tglu-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a2:
- shard-dg2: NOTRUN -> [INCOMPLETE][129] ([i915#6113])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-3/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a2.html
* igt@kms_flip@plain-flip-ts-check-interruptible:
- shard-snb: [PASS][130] -> [FAIL][131] ([i915#2122]) +5 other tests fail
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-snb4/igt@kms_flip@plain-flip-ts-check-interruptible.html
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-snb6/igt@kms_flip@plain-flip-ts-check-interruptible.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-dg2: [PASS][132] -> [SKIP][133] ([i915#3555]) +2 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling:
- shard-dg2: NOTRUN -> [SKIP][134] ([i915#3555]) +1 other test skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][135] ([i915#2672] / [i915#3555]) +1 other test skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
- shard-tglu: NOTRUN -> [SKIP][136] ([i915#2672] / [i915#3555]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-tglu-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][137] ([i915#2672]) +1 other test skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
- shard-tglu: NOTRUN -> [SKIP][138] ([i915#2587] / [i915#2672]) +1 other test skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-tglu-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][139] ([i915#1825]) +7 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][140] ([i915#8708]) +2 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-dg1: NOTRUN -> [SKIP][141]
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-pwrite:
- shard-dg2: [PASS][142] -> [SKIP][143] ([i915#5354]) +11 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-pwrite.html
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary:
- shard-dg2: [PASS][144] -> [FAIL][145] ([i915#6880])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-dg1: NOTRUN -> [SKIP][146] ([i915#5439])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][147] ([i915#5354]) +25 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][148] ([i915#8708])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt:
- shard-tglu: NOTRUN -> [SKIP][149] +37 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-tglu-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff:
- shard-rkl: NOTRUN -> [SKIP][150] ([i915#1825]) +20 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#3023]) +8 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][152] ([i915#3458]) +1 other test skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-dg2: [PASS][153] -> [SKIP][154] ([i915#3555] / [i915#8228])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-10/igt@kms_hdr@bpc-switch-suspend.html
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-5/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@static-toggle-dpms:
- shard-rkl: NOTRUN -> [SKIP][155] ([i915#3555] / [i915#8228])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-rkl-7/igt@kms_hdr@static-toggle-dpms.html
- shard-tglu: NOTRUN -> [SKIP][156] ([i915#3555] / [i915#8228])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-tglu-5/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_joiner@basic-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][157] ([i915#10656])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-rkl-7/igt@kms_joiner@basic-big-joiner.html
- shard-tglu: NOTRUN -> [SKIP][158] ([i915#10656])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-tglu-5/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][159] ([i915#12394])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-rkl-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg2: NOTRUN -> [SKIP][160] ([i915#12339])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-mtlp: NOTRUN -> [SKIP][161] ([i915#4816])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-mtlp-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#4816])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-rkl: [PASS][163] -> [FAIL][164] ([i915#8292])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-rkl-2/igt@kms_plane_scaling@intel-max-src-size.html
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-rkl-3/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][165] ([i915#8292])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-rkl-3/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][166] ([i915#12247]) +9 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-tglu-10/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b:
- shard-dg2: [PASS][167] -> [SKIP][168] ([i915#12247]) +8 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-4/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b.html
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#8152] / [i915#9423])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][170] ([i915#8152])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-d.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation:
- shard-dg2: [PASS][171] -> [SKIP][172] ([i915#12247] / [i915#8152] / [i915#9423]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-4/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75:
- shard-dg2: [PASS][173] -> [SKIP][174] ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152] / [i915#9423])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-75.html
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d:
- shard-dg2: [PASS][175] -> [SKIP][176] ([i915#12247] / [i915#8152]) +2 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d.html
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d.html
* igt@kms_plane_scaling@planes-scaler-unity-scaling:
- shard-dg2: NOTRUN -> [SKIP][177] ([i915#3555] / [i915#8152] / [i915#9423])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@kms_plane_scaling@planes-scaler-unity-scaling.html
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-a:
- shard-dg2: NOTRUN -> [SKIP][178] ([i915#12247]) +5 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-a.html
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][179] ([i915#12247] / [i915#8152])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][180] ([i915#12247] / [i915#6953])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-rkl-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#12247]) +1 other test skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-rkl-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#5354])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-rkl-7/igt@kms_pm_backlight@fade-with-dpms.html
- shard-tglu: NOTRUN -> [SKIP][183] ([i915#9812])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-tglu-5/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#5978])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@kms_pm_dc@dc6-dpms.html
- shard-mtlp: NOTRUN -> [SKIP][185] ([i915#10139])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-mtlp-3/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: [PASS][186] -> [SKIP][187] ([i915#9519]) +2 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-4/igt@kms_pm_rpm@dpms-lpsp.html
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-rkl: [PASS][188] -> [SKIP][189] ([i915#9519])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-rkl-3/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-rkl-7/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_prime@d3hot:
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#6524])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-rkl-7/igt@kms_prime@d3hot.html
- shard-tglu: NOTRUN -> [SKIP][191] ([i915#6524])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-tglu-5/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][192] ([i915#11520]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-glk7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-dg2: NOTRUN -> [SKIP][193] ([i915#11520]) +2 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-tglu: NOTRUN -> [SKIP][194] ([i915#11520]) +3 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-tglu-10/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][195] ([i915#11520]) +3 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-rkl-1/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-rkl: NOTRUN -> [SKIP][196] ([i915#9683])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-rkl-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][197] ([i915#9683])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr-primary-blt:
- shard-dg2: NOTRUN -> [SKIP][198] ([i915#1072] / [i915#9732]) +3 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@kms_psr@fbc-psr-primary-blt.html
* igt@kms_psr@fbc-psr-primary-page-flip@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][199] ([i915#9688]) +1 other test skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-mtlp-2/igt@kms_psr@fbc-psr-primary-page-flip@edp-1.html
* igt@kms_psr@fbc-psr2-primary-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][200] ([i915#9732]) +9 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-tglu-5/igt@kms_psr@fbc-psr2-primary-mmap-gtt.html
* igt@kms_psr@pr-cursor-plane-onoff:
- shard-rkl: NOTRUN -> [SKIP][201] ([i915#1072] / [i915#9732]) +9 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-rkl-7/igt@kms_psr@pr-cursor-plane-onoff.html
* igt@kms_setmode@basic@pipe-b-hdmi-a-1:
- shard-tglu: [PASS][202] -> [FAIL][203] ([i915#5465])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-tglu-5/igt@kms_setmode@basic@pipe-b-hdmi-a-1.html
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-tglu-9/igt@kms_setmode@basic@pipe-b-hdmi-a-1.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-tglu: NOTRUN -> [SKIP][204] ([i915#8623])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-tglu-10/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@negative-basic:
- shard-tglu: NOTRUN -> [SKIP][205] ([i915#3555] / [i915#9906])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-tglu-10/igt@kms_vrr@negative-basic.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][206] ([i915#2436])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-rkl-7/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf_pmu@frequency@gt0:
- shard-dg2: NOTRUN -> [FAIL][207] ([i915#6806])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-5/igt@perf_pmu@frequency@gt0.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#8516])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-rkl-7/igt@perf_pmu@rc6@other-idle-gt0.html
- shard-tglu: NOTRUN -> [SKIP][209] ([i915#8516])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-tglu-5/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_vgem@basic-write:
- shard-rkl: NOTRUN -> [SKIP][210] ([i915#3291] / [i915#3708])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-rkl-7/igt@prime_vgem@basic-write.html
* igt@prime_vgem@fence-write-hang:
- shard-dg2: NOTRUN -> [SKIP][211] ([i915#3708])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@prime_vgem@fence-write-hang.html
* igt@tools_test@sysfs_l3_parity:
- shard-dg2: NOTRUN -> [SKIP][212] ([i915#4818])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@tools_test@sysfs_l3_parity.html
#### Possible fixes ####
* igt@gem_ctx_isolation@preservation-s3:
- shard-dg2: [INCOMPLETE][213] ([i915#12353]) -> [PASS][214] +1 other test pass
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-5/igt@gem_ctx_isolation@preservation-s3.html
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-4/igt@gem_ctx_isolation@preservation-s3.html
* igt@gem_ctx_persistence@hostile:
- shard-tglu: [FAIL][215] ([i915#11980]) -> [PASS][216]
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-tglu-5/igt@gem_ctx_persistence@hostile.html
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-tglu-9/igt@gem_ctx_persistence@hostile.html
* igt@gem_exec_endless@dispatch@bcs0:
- shard-dg2: [TIMEOUT][217] ([i915#3778] / [i915#7016]) -> [PASS][218] +1 other test pass
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-7/igt@gem_exec_endless@dispatch@bcs0.html
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-1/igt@gem_exec_endless@dispatch@bcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-rkl: [FAIL][219] ([i915#2842]) -> [PASS][220] +2 other tests pass
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-rkl-4/igt@gem_exec_fair@basic-pace-share@rcs0.html
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-rkl-2/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-glk: [ABORT][221] ([i915#9820]) -> [PASS][222]
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-glk4/igt@i915_module_load@reload-with-fault-injection.html
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-glk7/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg2: [ABORT][223] ([i915#9820]) -> [PASS][224]
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-1/igt@i915_module_load@reload-with-fault-injection.html
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: [ABORT][225] ([i915#10131] / [i915#10887] / [i915#9820]) -> [PASS][226]
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-mtlp-3/igt@i915_module_load@reload-with-fault-injection.html
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-mtlp-3/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0:
- shard-dg1: [FAIL][227] ([i915#3591]) -> [PASS][228] +1 other test pass
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-dg2: [INCOMPLETE][229] -> [PASS][230]
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-11/igt@i915_pm_rpm@system-suspend-execbuf.html
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-5/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@kms_atomic_transition@plane-all-transition-fencing:
- shard-dg2: [SKIP][231] ([i915#9197]) -> [PASS][232] +32 other tests pass
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-2/igt@kms_atomic_transition@plane-all-transition-fencing.html
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-3/igt@kms_atomic_transition@plane-all-transition-fencing.html
* igt@kms_cursor_crc@cursor-offscreen-256x85:
- shard-dg1: [DMESG-WARN][233] ([i915#4423]) -> [PASS][234]
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg1-13/igt@kms_cursor_crc@cursor-offscreen-256x85.html
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg1-12/igt@kms_cursor_crc@cursor-offscreen-256x85.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-snb: [SKIP][235] -> [PASS][236] +8 other tests pass
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-snb2/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-snb2/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-snb: [FAIL][237] -> [PASS][238]
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-snb7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-snb7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
- shard-glk: [FAIL][239] ([i915#2346]) -> [PASS][240]
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-glk: [FAIL][241] ([i915#2122]) -> [PASS][242] +3 other tests pass
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-glk2/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-glk6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-mtlp: [FAIL][243] ([i915#2122]) -> [PASS][244] +2 other tests pass
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-mtlp-8/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-mtlp-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1:
- shard-snb: [INCOMPLETE][245] ([i915#4839]) -> [PASS][246] +1 other test pass
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-snb1/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1.html
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-snb6/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend@c-hdmi-a2:
- shard-glk: [INCOMPLETE][247] ([i915#4839]) -> [PASS][248] +1 other test pass
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-glk5/igt@kms_flip@flip-vs-suspend@c-hdmi-a2.html
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-glk1/igt@kms_flip@flip-vs-suspend@c-hdmi-a2.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-dg2: [SKIP][249] ([i915#3555]) -> [PASS][250] +4 other tests pass
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-dg2: [SKIP][251] ([i915#5354]) -> [PASS][252] +10 other tests pass
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-dg1: [INCOMPLETE][253] -> [PASS][254] +2 other tests pass
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg1-16/igt@kms_pipe_crc_basic@suspend-read-crc.html
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg1-13/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_plane@plane-position-covered:
- shard-dg2: [SKIP][255] ([i915#8825]) -> [PASS][256] +1 other test pass
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-2/igt@kms_plane@plane-position-covered.html
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-10/igt@kms_plane@plane-position-covered.html
* igt@kms_plane_alpha_blend@alpha-basic:
- shard-dg2: [SKIP][257] ([i915#7294]) -> [PASS][258] +1 other test pass
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-2/igt@kms_plane_alpha_blend@alpha-basic.html
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-3/igt@kms_plane_alpha_blend@alpha-basic.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format:
- shard-dg2: [SKIP][259] ([i915#8152] / [i915#9423]) -> [PASS][260]
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format.html
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-10/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-b:
- shard-dg2: [SKIP][261] ([i915#12247]) -> [PASS][262] +2 other tests pass
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-b.html
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-10/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-b.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-d:
- shard-dg2: [SKIP][263] ([i915#8152]) -> [PASS][264]
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-d.html
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-10/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-d.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: [SKIP][265] ([i915#4281]) -> [PASS][266]
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-tglu-7/igt@kms_pm_dc@dc9-dpms.html
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-tglu-10/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-rkl: [SKIP][267] ([i915#9519]) -> [PASS][268] +2 other tests pass
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-rkl-5/igt@kms_pm_rpm@dpms-lpsp.html
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-rkl-2/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg2: [SKIP][269] ([i915#9519]) -> [PASS][270] +2 other tests pass
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-2/igt@kms_pm_rpm@modeset-non-lpsp.html
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-3/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_universal_plane@cursor-fb-leak:
- shard-mtlp: [FAIL][271] ([i915#9196]) -> [PASS][272] +1 other test pass
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-mtlp-8/igt@kms_universal_plane@cursor-fb-leak.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-mtlp-6/igt@kms_universal_plane@cursor-fb-leak.html
#### Warnings ####
* igt@gem_ctx_engines@invalid-engines:
- shard-mtlp: [FAIL][273] ([i915#12031]) -> [FAIL][274] ([i915#12027])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-mtlp-8/igt@gem_ctx_engines@invalid-engines.html
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-mtlp-6/igt@gem_ctx_engines@invalid-engines.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-tglu: [FAIL][275] ([i915#2876]) -> [FAIL][276] ([i915#2842])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-tglu-6/igt@gem_exec_fair@basic-pace@rcs0.html
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-tglu-9/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg2: [SKIP][277] ([i915#9197]) -> [SKIP][278] ([i915#1769] / [i915#3555])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-10/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-dg2: [SKIP][279] ([i915#9197]) -> [SKIP][280] +1 other test skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-2/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-10/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-dg2: [SKIP][281] -> [SKIP][282] ([i915#9197])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-4/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-dg1: [SKIP][283] ([i915#5286]) -> [SKIP][284] ([i915#4423] / [i915#5286])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg1-16/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg1-13/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-dg2: [SKIP][285] ([i915#4538] / [i915#5190]) -> [SKIP][286] ([i915#5190] / [i915#9197]) +3 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-3/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2: [SKIP][287] ([i915#5190] / [i915#9197]) -> [SKIP][288] ([i915#5190])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-2/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-3/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
- shard-dg2: [SKIP][289] ([i915#5190] / [i915#9197]) -> [SKIP][290] ([i915#4538] / [i915#5190]) +6 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-10/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc:
- shard-dg2: [SKIP][291] ([i915#10307] / [i915#6095]) -> [SKIP][292] ([i915#9197]) +4 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-4/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-dg2: [SKIP][293] ([i915#9197]) -> [SKIP][294] ([i915#12313])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-10/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc:
- shard-dg2: [SKIP][295] ([i915#9197]) -> [SKIP][296] ([i915#10307] / [i915#6095]) +6 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-10/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg2: [SKIP][297] ([i915#9197]) -> [SKIP][298] ([i915#11616] / [i915#7213])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-2/igt@kms_cdclk@mode-transition-all-outputs.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-3/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@plane-scaling:
- shard-dg2: [SKIP][299] ([i915#9197]) -> [SKIP][300] ([i915#4087])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-2/igt@kms_cdclk@plane-scaling.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-10/igt@kms_cdclk@plane-scaling.html
* igt@kms_content_protection@content-type-change:
- shard-snb: [SKIP][301] -> [INCOMPLETE][302] ([i915#8816])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-snb5/igt@kms_content_protection@content-type-change.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-snb4/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@legacy:
- shard-dg2: [SKIP][303] ([i915#7118] / [i915#9424]) -> [SKIP][304] ([i915#9197])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-4/igt@kms_content_protection@legacy.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@kms_content_protection@legacy.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-dg2: [SKIP][305] ([i915#9197]) -> [SKIP][306] ([i915#3555]) +1 other test skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-2/igt@kms_cursor_crc@cursor-offscreen-32x32.html
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-3/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2: [SKIP][307] ([i915#9197]) -> [SKIP][308] ([i915#11453]) +1 other test skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-2/igt@kms_cursor_crc@cursor-random-512x512.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-10/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-dg2: [SKIP][309] ([i915#11453]) -> [SKIP][310] ([i915#9197])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-3/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-dg2: [SKIP][311] ([i915#5354]) -> [SKIP][312] ([i915#9197])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-3/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2: [SKIP][313] ([i915#9197]) -> [SKIP][314] ([i915#4103] / [i915#4213]) +1 other test skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-10/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-dg2: [SKIP][315] ([i915#9197]) -> [SKIP][316] ([i915#5354]) +3 other tests skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-10/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2: [SKIP][317] ([i915#4103] / [i915#4213]) -> [SKIP][318] ([i915#9197])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2: [SKIP][319] ([i915#8588]) -> [SKIP][320] ([i915#9197])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-4/igt@kms_display_modes@mst-extended-mode-negative.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg2: [SKIP][321] ([i915#8812]) -> [SKIP][322] ([i915#9197])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-3/igt@kms_draw_crc@draw-method-mmap-gtt.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-basic:
- shard-dg2: [SKIP][323] ([i915#9197]) -> [SKIP][324] ([i915#3555] / [i915#3840])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-2/igt@kms_dsc@dsc-basic.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-10/igt@kms_dsc@dsc-basic.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-dg1: [SKIP][325] ([i915#4423] / [i915#9934]) -> [SKIP][326] ([i915#9934])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg1-15/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg1-15/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling:
- shard-dg2: [SKIP][327] ([i915#2672] / [i915#3555] / [i915#5190]) -> [SKIP][328] ([i915#3555] / [i915#5190])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: [SKIP][329] ([i915#5354]) -> [SKIP][330] ([i915#8708]) +10 other tests skip
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt:
- shard-dg1: [SKIP][331] ([i915#8708]) -> [SKIP][332] ([i915#4423] / [i915#8708])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt:
- shard-dg2: [SKIP][333] ([i915#10433] / [i915#3458]) -> [SKIP][334] ([i915#5354]) +1 other test skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2: [SKIP][335] ([i915#5354]) -> [SKIP][336] ([i915#10055])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-render:
- shard-dg2: [SKIP][337] ([i915#3458]) -> [SKIP][338] ([i915#5354]) +1 other test skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-render.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw:
- shard-dg2: [SKIP][339] ([i915#5354]) -> [SKIP][340] ([i915#3458]) +11 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: [SKIP][341] ([i915#10433] / [i915#3458]) -> [SKIP][342] ([i915#3458]) +3 other tests skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:
- shard-dg2: [SKIP][343] ([i915#3458]) -> [SKIP][344] ([i915#10433] / [i915#3458]) +4 other tests skip
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt:
- shard-dg2: [SKIP][345] ([i915#8708]) -> [SKIP][346] ([i915#5354]) +6 other tests skip
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg2: [SKIP][347] ([i915#9197]) -> [SKIP][348] ([i915#3555] / [i915#8228])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-2/igt@kms_hdr@invalid-metadata-sizes.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-3/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_panel_fitting@legacy:
- shard-dg2: [SKIP][349] ([i915#9197]) -> [SKIP][350] ([i915#6301])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-2/igt@kms_panel_fitting@legacy.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-10/igt@kms_panel_fitting@legacy.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-dg2: [SKIP][351] ([i915#5354] / [i915#9423]) -> [SKIP][352] ([i915#5354] / [i915#8152] / [i915#9423])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-4/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
- shard-dg2: [SKIP][353] ([i915#12247] / [i915#8152] / [i915#9423]) -> [SKIP][354] ([i915#12247] / [i915#9423])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d:
- shard-dg2: [SKIP][355] ([i915#12247] / [i915#8152]) -> [SKIP][356] ([i915#12247]) +2 other tests skip
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-dg2: [SKIP][357] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423]) -> [SKIP][358] ([i915#12247] / [i915#6953] / [i915#9423]) +1 other test skip
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-10/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25:
- shard-dg2: [SKIP][359] ([i915#12247] / [i915#6953] / [i915#9423]) -> [SKIP][360] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d:
- shard-dg2: [SKIP][361] ([i915#12247]) -> [SKIP][362] ([i915#12247] / [i915#8152])
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: [SKIP][363] ([i915#4281]) -> [SKIP][364] ([i915#3361])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-rkl-4/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: [SKIP][365] ([i915#9340]) -> [SKIP][366] ([i915#3828])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-rkl-1/igt@kms_pm_lpsp@kms-lpsp.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-rkl-2/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2: [SKIP][367] ([i915#9197]) -> [SKIP][368] ([i915#11131])
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-2/igt@kms_rotation_crc@primary-rotation-270.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-3/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-dg2: [SKIP][369] ([i915#5190]) -> [SKIP][370] ([i915#5190] / [i915#9197])
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_vrr@flip-basic-fastset:
- shard-dg2: [SKIP][371] ([i915#9197]) -> [SKIP][372] ([i915#9906])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15531/shard-dg2-2/igt@kms_vrr@flip-basic-fastset.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/shard-dg2-3/igt@kms_vrr@flip-basic-fastset.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10030
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131
[i915#10139]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10139
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11131
[i915#11453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11616]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11616
[i915#11859]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11859
[i915#11980]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11980
[i915#12027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12027
[i915#12031]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12031
[i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177
[i915#12216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12216
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339
[i915#12353]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12353
[i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
[i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842
[i915#2846]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2846
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#2876]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2876
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3778
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3826
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3966]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3966
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816
[i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465
[i915#5978]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5978
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#6117]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6117
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6806
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7016]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7016
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213
[i915#7294]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7294
[i915#7297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7297
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975
[i915#8152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152
[i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8292
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8588]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8588
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709
[i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
[i915#8816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8816
[i915#8825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825
[i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196
[i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* Linux: CI_DRM_15531 -> Patchwork_139221v4
CI-20190529: 20190529
CI_DRM_15531: 55d09c71b082354090e8a11b4854224ef73e0798 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8068: 8068
Patchwork_139221v4: 55d09c71b082354090e8a11b4854224ef73e0798 @ git://anongit.freedesktop.org/gfx-ci/linux
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139221v4/index.html
[-- Attachment #2: Type: text/html, Size: 121603 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread
end of thread, other threads:[~2024-10-14 12:44 UTC | newest]
Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-14 8:55 [PATCH v4 00/12] drm: Introduce DRM client library Thomas Zimmermann
2024-10-14 8:55 ` [PATCH v4 01/12] drm/i915: Select DRM_CLIENT_SELECTION Thomas Zimmermann
2024-10-14 8:55 ` [PATCH v4 02/12] drm/xe: " Thomas Zimmermann
2024-10-14 8:55 ` [PATCH v4 03/12] drm/fbdev-dma: Select FB_DEFERRED_IO Thomas Zimmermann
2024-10-14 8:55 ` [PATCH v4 04/12] drm/fbdev: Select fbdev I/O helpers from modules that require them Thomas Zimmermann
2024-10-14 8:55 ` [PATCH v4 05/12] drm/fbdev: Store fbdev module parameters in separate file Thomas Zimmermann
2024-10-14 8:55 ` [PATCH v4 06/12] drm/client: Move client event handlers to drm_client_event.c Thomas Zimmermann
2024-10-14 8:55 ` [PATCH v4 07/12] drm/client: Move suspend/resume into DRM client callbacks Thomas Zimmermann
2024-10-14 8:55 ` [PATCH v4 08/12] drm/amdgpu: Suspend and resume internal clients with client helpers Thomas Zimmermann
2024-10-14 8:55 ` [PATCH v4 09/12] drm/nouveau: Suspend and resume " Thomas Zimmermann
2024-10-14 8:55 ` [PATCH v4 10/12] drm/radeon: " Thomas Zimmermann
2024-10-14 8:55 ` [PATCH v4 11/12] drm/client: Make client support optional Thomas Zimmermann
2024-10-14 8:55 ` [PATCH v4 12/12] drm/client: Add client-lib module Thomas Zimmermann
2024-10-14 10:53 ` ✓ Fi.CI.BAT: success for drm: Introduce DRM client library (rev4) Patchwork
2024-10-14 12:43 ` ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox