* [PATCH 01/28] drm/amdgpu: Use video aperture helpers
2024-09-30 13:02 [PATCH 00/28] drm: Remove DRM aperture helpers Thomas Zimmermann
@ 2024-09-30 13:02 ` Thomas Zimmermann
2024-09-30 13:03 ` [PATCH 02/28] drm/arm/hdlcd: " Thomas Zimmermann
` (31 subsequent siblings)
32 siblings, 0 replies; 41+ messages in thread
From: Thomas Zimmermann @ 2024-09-30 13:02 UTC (permalink / raw)
To: javierm, airlied, simona, maarten.lankhorst, mripard
Cc: dri-devel, amd-gfx, intel-gfx, intel-xe, Thomas Zimmermann,
Alex Deucher, Christian König, Xinhui Pan
DRM's aperture functions have long been implemented as helpers
under drivers/video/ for use with fbdev. Avoid the DRM wrappers by
calling the video functions directly.
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>
---
drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
index fd853dc843e9..128e086b4251 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
@@ -25,6 +25,8 @@
* Alex Deucher
* Jerome Glisse
*/
+
+#include <linux/aperture.h>
#include <linux/power_supply.h>
#include <linux/kthread.h>
#include <linux/module.h>
@@ -35,7 +37,6 @@
#include <linux/pci-p2pdma.h>
#include <linux/apple-gmux.h>
-#include <drm/drm_aperture.h>
#include <drm/drm_atomic_helper.h>
#include <drm/drm_crtc_helper.h>
#include <drm/drm_fb_helper.h>
@@ -4199,7 +4200,7 @@ int amdgpu_device_init(struct amdgpu_device *adev,
return r;
/* Get rid of things like offb */
- r = drm_aperture_remove_conflicting_pci_framebuffers(adev->pdev, &amdgpu_kms_driver);
+ r = aperture_remove_conflicting_pci_devices(adev->pdev, amdgpu_kms_driver.name);
if (r)
return r;
--
2.46.0
^ permalink raw reply related [flat|nested] 41+ messages in thread* [PATCH 02/28] drm/arm/hdlcd: Use video aperture helpers
2024-09-30 13:02 [PATCH 00/28] drm: Remove DRM aperture helpers Thomas Zimmermann
2024-09-30 13:02 ` [PATCH 01/28] drm/amdgpu: Use video " Thomas Zimmermann
@ 2024-09-30 13:03 ` Thomas Zimmermann
2024-10-02 13:48 ` Liviu Dudau
2024-09-30 13:03 ` [PATCH 03/28] drm/armada: " Thomas Zimmermann
` (30 subsequent siblings)
32 siblings, 1 reply; 41+ messages in thread
From: Thomas Zimmermann @ 2024-09-30 13:03 UTC (permalink / raw)
To: javierm, airlied, simona, maarten.lankhorst, mripard
Cc: dri-devel, amd-gfx, intel-gfx, intel-xe, Thomas Zimmermann,
Liviu Dudau
DRM's aperture functions have long been implemented as helpers
under drivers/video/ for use with fbdev. Avoid the DRM wrappers by
calling the video functions directly.
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Cc: Liviu Dudau <liviu.dudau@arm.com>
---
drivers/gpu/drm/arm/hdlcd_drv.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/arm/hdlcd_drv.c b/drivers/gpu/drm/arm/hdlcd_drv.c
index f5d358f3893b..cd4389809d42 100644
--- a/drivers/gpu/drm/arm/hdlcd_drv.c
+++ b/drivers/gpu/drm/arm/hdlcd_drv.c
@@ -9,6 +9,7 @@
* ARM HDLCD Driver
*/
+#include <linux/aperture.h>
#include <linux/module.h>
#include <linux/spinlock.h>
#include <linux/clk.h>
@@ -21,7 +22,6 @@
#include <linux/platform_device.h>
#include <linux/pm_runtime.h>
-#include <drm/drm_aperture.h>
#include <drm/drm_atomic_helper.h>
#include <drm/drm_client_setup.h>
#include <drm/drm_crtc.h>
@@ -287,7 +287,7 @@ static int hdlcd_drm_bind(struct device *dev)
*/
if (hdlcd_read(hdlcd, HDLCD_REG_COMMAND)) {
hdlcd_write(hdlcd, HDLCD_REG_COMMAND, 0);
- drm_aperture_remove_framebuffers(&hdlcd_driver);
+ aperture_remove_all_conflicting_devices(hdlcd_driver.name);
}
drm_mode_config_reset(drm);
--
2.46.0
^ permalink raw reply related [flat|nested] 41+ messages in thread* Re: [PATCH 02/28] drm/arm/hdlcd: Use video aperture helpers
2024-09-30 13:03 ` [PATCH 02/28] drm/arm/hdlcd: " Thomas Zimmermann
@ 2024-10-02 13:48 ` Liviu Dudau
0 siblings, 0 replies; 41+ messages in thread
From: Liviu Dudau @ 2024-10-02 13:48 UTC (permalink / raw)
To: Thomas Zimmermann
Cc: javierm, airlied, simona, maarten.lankhorst, mripard, dri-devel,
amd-gfx, intel-gfx, intel-xe
On Mon, Sep 30, 2024 at 03:03:00PM +0200, Thomas Zimmermann wrote:
> DRM's aperture functions have long been implemented as helpers
> under drivers/video/ for use with fbdev. Avoid the DRM wrappers by
> calling the video functions directly.
>
> Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
> Cc: Liviu Dudau <liviu.dudau@arm.com>
Acked-by: Liviu Dudau <liviu.dudau@arm.com>
Best regards,
Liviu
> ---
> drivers/gpu/drm/arm/hdlcd_drv.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/arm/hdlcd_drv.c b/drivers/gpu/drm/arm/hdlcd_drv.c
> index f5d358f3893b..cd4389809d42 100644
> --- a/drivers/gpu/drm/arm/hdlcd_drv.c
> +++ b/drivers/gpu/drm/arm/hdlcd_drv.c
> @@ -9,6 +9,7 @@
> * ARM HDLCD Driver
> */
>
> +#include <linux/aperture.h>
> #include <linux/module.h>
> #include <linux/spinlock.h>
> #include <linux/clk.h>
> @@ -21,7 +22,6 @@
> #include <linux/platform_device.h>
> #include <linux/pm_runtime.h>
>
> -#include <drm/drm_aperture.h>
> #include <drm/drm_atomic_helper.h>
> #include <drm/drm_client_setup.h>
> #include <drm/drm_crtc.h>
> @@ -287,7 +287,7 @@ static int hdlcd_drm_bind(struct device *dev)
> */
> if (hdlcd_read(hdlcd, HDLCD_REG_COMMAND)) {
> hdlcd_write(hdlcd, HDLCD_REG_COMMAND, 0);
> - drm_aperture_remove_framebuffers(&hdlcd_driver);
> + aperture_remove_all_conflicting_devices(hdlcd_driver.name);
> }
>
> drm_mode_config_reset(drm);
> --
> 2.46.0
>
--
====================
| I would like to |
| fix the world, |
| but they're not |
| giving me the |
\ source code! /
---------------
¯\_(ツ)_/¯
^ permalink raw reply [flat|nested] 41+ messages in thread
* [PATCH 03/28] drm/armada: Use video aperture helpers
2024-09-30 13:02 [PATCH 00/28] drm: Remove DRM aperture helpers Thomas Zimmermann
2024-09-30 13:02 ` [PATCH 01/28] drm/amdgpu: Use video " Thomas Zimmermann
2024-09-30 13:03 ` [PATCH 02/28] drm/arm/hdlcd: " Thomas Zimmermann
@ 2024-09-30 13:03 ` Thomas Zimmermann
2024-09-30 13:03 ` [PATCH 04/28] drm/ast: " Thomas Zimmermann
` (29 subsequent siblings)
32 siblings, 0 replies; 41+ messages in thread
From: Thomas Zimmermann @ 2024-09-30 13:03 UTC (permalink / raw)
To: javierm, airlied, simona, maarten.lankhorst, mripard
Cc: dri-devel, amd-gfx, intel-gfx, intel-xe, Thomas Zimmermann,
Russell King
DRM's aperture functions have long been implemented as helpers
under drivers/video/ for use with fbdev. Avoid the DRM wrappers by
calling the video functions directly.
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Cc: Russell King <linux@armlinux.org.uk>
---
drivers/gpu/drm/armada/armada_drv.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/armada/armada_drv.c b/drivers/gpu/drm/armada/armada_drv.c
index 3dc5f0499e4c..5c26f0409478 100644
--- a/drivers/gpu/drm/armada/armada_drv.c
+++ b/drivers/gpu/drm/armada/armada_drv.c
@@ -3,6 +3,7 @@
* Copyright (C) 2012 Russell King
*/
+#include <linux/aperture.h>
#include <linux/clk.h>
#include <linux/component.h>
#include <linux/module.h>
@@ -10,7 +11,6 @@
#include <linux/of_graph.h>
#include <linux/platform_device.h>
-#include <drm/drm_aperture.h>
#include <drm/drm_atomic_helper.h>
#include <drm/drm_client_setup.h>
#include <drm/drm_drv.h>
@@ -93,7 +93,7 @@ static int armada_drm_bind(struct device *dev)
}
/* Remove early framebuffers */
- ret = drm_aperture_remove_framebuffers(&armada_drm_driver);
+ ret = aperture_remove_all_conflicting_devices(armada_drm_driver.name);
if (ret) {
dev_err(dev, "[" DRM_NAME ":%s] can't kick out simple-fb: %d\n",
__func__, ret);
--
2.46.0
^ permalink raw reply related [flat|nested] 41+ messages in thread* [PATCH 04/28] drm/ast: Use video aperture helpers
2024-09-30 13:02 [PATCH 00/28] drm: Remove DRM aperture helpers Thomas Zimmermann
` (2 preceding siblings ...)
2024-09-30 13:03 ` [PATCH 03/28] drm/armada: " Thomas Zimmermann
@ 2024-09-30 13:03 ` Thomas Zimmermann
2024-09-30 13:03 ` [PATCH 05/28] drm/hisilicon/hibmc: " Thomas Zimmermann
` (28 subsequent siblings)
32 siblings, 0 replies; 41+ messages in thread
From: Thomas Zimmermann @ 2024-09-30 13:03 UTC (permalink / raw)
To: javierm, airlied, simona, maarten.lankhorst, mripard
Cc: dri-devel, amd-gfx, intel-gfx, intel-xe, Thomas Zimmermann,
Dave Airlie, Jocelyn Falempe
DRM's aperture functions have long been implemented as helpers
under drivers/video/ for use with fbdev. Avoid the DRM wrappers by
calling the video functions directly.
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Cc: Dave Airlie <airlied@redhat.com>
Cc: Jocelyn Falempe <jfalempe@redhat.com>
---
drivers/gpu/drm/ast/ast_drv.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/ast/ast_drv.c b/drivers/gpu/drm/ast/ast_drv.c
index 898c8b93c0b1..4afe4be072ef 100644
--- a/drivers/gpu/drm/ast/ast_drv.c
+++ b/drivers/gpu/drm/ast/ast_drv.c
@@ -26,11 +26,11 @@
* Authors: Dave Airlie <airlied@redhat.com>
*/
+#include <linux/aperture.h>
#include <linux/module.h>
#include <linux/of.h>
#include <linux/pci.h>
-#include <drm/drm_aperture.h>
#include <drm/drm_atomic_helper.h>
#include <drm/drm_client_setup.h>
#include <drm/drm_drv.h>
@@ -281,7 +281,7 @@ static int ast_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
struct drm_device *drm;
bool need_post = false;
- ret = drm_aperture_remove_conflicting_pci_framebuffers(pdev, &ast_driver);
+ ret = aperture_remove_conflicting_pci_devices(pdev, ast_driver.name);
if (ret)
return ret;
--
2.46.0
^ permalink raw reply related [flat|nested] 41+ messages in thread* [PATCH 05/28] drm/hisilicon/hibmc: Use video aperture helpers
2024-09-30 13:02 [PATCH 00/28] drm: Remove DRM aperture helpers Thomas Zimmermann
` (3 preceding siblings ...)
2024-09-30 13:03 ` [PATCH 04/28] drm/ast: " Thomas Zimmermann
@ 2024-09-30 13:03 ` Thomas Zimmermann
2024-09-30 13:03 ` [PATCH 06/28] drm/hyperv-drm: " Thomas Zimmermann
` (27 subsequent siblings)
32 siblings, 0 replies; 41+ messages in thread
From: Thomas Zimmermann @ 2024-09-30 13:03 UTC (permalink / raw)
To: javierm, airlied, simona, maarten.lankhorst, mripard
Cc: dri-devel, amd-gfx, intel-gfx, intel-xe, Thomas Zimmermann,
Xinliang Liu, Tian Tao, Xinwei Kong, Sumit Semwal, Yongqin Liu,
John Stultz
DRM's aperture functions have long been implemented as helpers
under drivers/video/ for use with fbdev. Avoid the DRM wrappers by
calling the video functions directly.
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Cc: Xinliang Liu <xinliang.liu@linaro.org>
Cc: Tian Tao <tiantao6@hisilicon.com>
Cc: Xinwei Kong <kong.kongxinwei@hisilicon.com>
Cc: Sumit Semwal <sumit.semwal@linaro.org>
Cc: Yongqin Liu <yongqin.liu@linaro.org>
Cc: John Stultz <jstultz@google.com>
---
drivers/gpu/drm/hisilicon/hibmc/hibmc_drm_drv.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/hisilicon/hibmc/hibmc_drm_drv.c b/drivers/gpu/drm/hisilicon/hibmc/hibmc_drm_drv.c
index 866a9ecaf8b9..8c488c98ac97 100644
--- a/drivers/gpu/drm/hisilicon/hibmc/hibmc_drm_drv.c
+++ b/drivers/gpu/drm/hisilicon/hibmc/hibmc_drm_drv.c
@@ -11,10 +11,10 @@
* Jianhua Li <lijianhua@huawei.com>
*/
+#include <linux/aperture.h>
#include <linux/module.h>
#include <linux/pci.h>
-#include <drm/drm_aperture.h>
#include <drm/drm_atomic_helper.h>
#include <drm/drm_client_setup.h>
#include <drm/drm_drv.h>
@@ -308,7 +308,7 @@ static int hibmc_pci_probe(struct pci_dev *pdev,
struct drm_device *dev;
int ret;
- ret = drm_aperture_remove_conflicting_pci_framebuffers(pdev, &hibmc_driver);
+ ret = aperture_remove_conflicting_pci_devices(pdev, hibmc_driver.name);
if (ret)
return ret;
--
2.46.0
^ permalink raw reply related [flat|nested] 41+ messages in thread* [PATCH 06/28] drm/hyperv-drm: Use video aperture helpers
2024-09-30 13:02 [PATCH 00/28] drm: Remove DRM aperture helpers Thomas Zimmermann
` (4 preceding siblings ...)
2024-09-30 13:03 ` [PATCH 05/28] drm/hisilicon/hibmc: " Thomas Zimmermann
@ 2024-09-30 13:03 ` Thomas Zimmermann
2024-09-30 16:22 ` Deepak Rawat
2024-09-30 13:03 ` [PATCH 07/28] drm/i915: " Thomas Zimmermann
` (26 subsequent siblings)
32 siblings, 1 reply; 41+ messages in thread
From: Thomas Zimmermann @ 2024-09-30 13:03 UTC (permalink / raw)
To: javierm, airlied, simona, maarten.lankhorst, mripard
Cc: dri-devel, amd-gfx, intel-gfx, intel-xe, Thomas Zimmermann,
Deepak Rawat
DRM's aperture functions have long been implemented as helpers
under drivers/video/ for use with fbdev. Avoid the DRM wrappers by
calling the video functions directly.
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Cc: Deepak Rawat <drawat.floss@gmail.com>
---
drivers/gpu/drm/hyperv/hyperv_drm_drv.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/hyperv/hyperv_drm_drv.c b/drivers/gpu/drm/hyperv/hyperv_drm_drv.c
index 3077ce5470f6..e0953777a206 100644
--- a/drivers/gpu/drm/hyperv/hyperv_drm_drv.c
+++ b/drivers/gpu/drm/hyperv/hyperv_drm_drv.c
@@ -3,12 +3,12 @@
* Copyright 2021 Microsoft
*/
+#include <linux/aperture.h>
#include <linux/efi.h>
#include <linux/hyperv.h>
#include <linux/module.h>
#include <linux/pci.h>
-#include <drm/drm_aperture.h>
#include <drm/drm_atomic_helper.h>
#include <drm/drm_client_setup.h>
#include <drm/drm_drv.h>
@@ -126,7 +126,7 @@ static int hyperv_vmbus_probe(struct hv_device *hdev,
goto err_hv_set_drv_data;
}
- drm_aperture_remove_framebuffers(&hyperv_driver);
+ aperture_remove_all_conflicting_devices(hyperv_driver.name);
ret = hyperv_setup_vram(hv, hdev);
if (ret)
--
2.46.0
^ permalink raw reply related [flat|nested] 41+ messages in thread* Re: [PATCH 06/28] drm/hyperv-drm: Use video aperture helpers
2024-09-30 13:03 ` [PATCH 06/28] drm/hyperv-drm: " Thomas Zimmermann
@ 2024-09-30 16:22 ` Deepak Rawat
0 siblings, 0 replies; 41+ messages in thread
From: Deepak Rawat @ 2024-09-30 16:22 UTC (permalink / raw)
To: Thomas Zimmermann
Cc: javierm, airlied, simona, maarten.lankhorst, mripard, dri-devel,
amd-gfx, intel-gfx, intel-xe
On Mon, Sep 30, 2024 at 6:09 AM Thomas Zimmermann <tzimmermann@suse.de> wrote:
>
> DRM's aperture functions have long been implemented as helpers
> under drivers/video/ for use with fbdev. Avoid the DRM wrappers by
> calling the video functions directly.
>
> Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
> Cc: Deepak Rawat <drawat.floss@gmail.com>
> ---
> drivers/gpu/drm/hyperv/hyperv_drm_drv.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/hyperv/hyperv_drm_drv.c b/drivers/gpu/drm/hyperv/hyperv_drm_drv.c
> index 3077ce5470f6..e0953777a206 100644
> --- a/drivers/gpu/drm/hyperv/hyperv_drm_drv.c
> +++ b/drivers/gpu/drm/hyperv/hyperv_drm_drv.c
> @@ -3,12 +3,12 @@
> * Copyright 2021 Microsoft
> */
>
> +#include <linux/aperture.h>
> #include <linux/efi.h>
> #include <linux/hyperv.h>
> #include <linux/module.h>
> #include <linux/pci.h>
>
> -#include <drm/drm_aperture.h>
> #include <drm/drm_atomic_helper.h>
> #include <drm/drm_client_setup.h>
> #include <drm/drm_drv.h>
> @@ -126,7 +126,7 @@ static int hyperv_vmbus_probe(struct hv_device *hdev,
> goto err_hv_set_drv_data;
> }
>
> - drm_aperture_remove_framebuffers(&hyperv_driver);
> + aperture_remove_all_conflicting_devices(hyperv_driver.name);
>
> ret = hyperv_setup_vram(hv, hdev);
> if (ret)
> --
> 2.46.0
>
Reviewed-by: Deepak Rawat <drawat.floss@gmail.com>
^ permalink raw reply [flat|nested] 41+ messages in thread
* [PATCH 07/28] drm/i915: Use video aperture helpers
2024-09-30 13:02 [PATCH 00/28] drm: Remove DRM aperture helpers Thomas Zimmermann
` (5 preceding siblings ...)
2024-09-30 13:03 ` [PATCH 06/28] drm/hyperv-drm: " Thomas Zimmermann
@ 2024-09-30 13:03 ` Thomas Zimmermann
2024-10-02 11:54 ` Jani Nikula
2024-09-30 13:03 ` [PATCH 08/28] drm/loongson: " Thomas Zimmermann
` (25 subsequent siblings)
32 siblings, 1 reply; 41+ messages in thread
From: Thomas Zimmermann @ 2024-09-30 13:03 UTC (permalink / raw)
To: javierm, airlied, simona, maarten.lankhorst, mripard
Cc: dri-devel, amd-gfx, intel-gfx, intel-xe, Thomas Zimmermann,
Jani Nikula, Joonas Lahtinen, Rodrigo Vivi, Tvrtko Ursulin
DRM's aperture functions have long been implemented as helpers
under drivers/video/ for use with fbdev. Avoid the DRM wrappers by
calling the video functions directly.
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>
---
drivers/gpu/drm/i915/i915_driver.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/i915/i915_driver.c b/drivers/gpu/drm/i915/i915_driver.c
index b3eb35fa5ff8..365329ff8a07 100644
--- a/drivers/gpu/drm/i915/i915_driver.c
+++ b/drivers/gpu/drm/i915/i915_driver.c
@@ -27,6 +27,7 @@
*
*/
+#include <linux/aperture.h>
#include <linux/acpi.h>
#include <linux/device.h>
#include <linux/module.h>
@@ -39,7 +40,6 @@
#include <linux/vga_switcheroo.h>
#include <linux/vt.h>
-#include <drm/drm_aperture.h>
#include <drm/drm_atomic_helper.h>
#include <drm/drm_ioctl.h>
#include <drm/drm_managed.h>
@@ -485,7 +485,7 @@ static int i915_driver_hw_probe(struct drm_i915_private *dev_priv)
if (ret)
goto err_perf;
- ret = drm_aperture_remove_conflicting_pci_framebuffers(pdev, dev_priv->drm.driver);
+ ret = aperture_remove_conflicting_pci_devices(pdev, dev_priv->drm.driver->name);
if (ret)
goto err_ggtt;
--
2.46.0
^ permalink raw reply related [flat|nested] 41+ messages in thread* Re: [PATCH 07/28] drm/i915: Use video aperture helpers
2024-09-30 13:03 ` [PATCH 07/28] drm/i915: " Thomas Zimmermann
@ 2024-10-02 11:54 ` Jani Nikula
0 siblings, 0 replies; 41+ messages in thread
From: Jani Nikula @ 2024-10-02 11:54 UTC (permalink / raw)
To: Thomas Zimmermann, javierm, airlied, simona, maarten.lankhorst,
mripard
Cc: dri-devel, amd-gfx, intel-gfx, intel-xe, Thomas Zimmermann,
Joonas Lahtinen, Rodrigo Vivi, Tvrtko Ursulin
On Mon, 30 Sep 2024, Thomas Zimmermann <tzimmermann@suse.de> wrote:
> DRM's aperture functions have long been implemented as helpers
> under drivers/video/ for use with fbdev. Avoid the DRM wrappers by
> calling the video functions directly.
>
> 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>
Acked-by: Jani Nikula <jani.nikula@intel.com>
> ---
> drivers/gpu/drm/i915/i915_driver.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/i915_driver.c b/drivers/gpu/drm/i915/i915_driver.c
> index b3eb35fa5ff8..365329ff8a07 100644
> --- a/drivers/gpu/drm/i915/i915_driver.c
> +++ b/drivers/gpu/drm/i915/i915_driver.c
> @@ -27,6 +27,7 @@
> *
> */
>
> +#include <linux/aperture.h>
> #include <linux/acpi.h>
> #include <linux/device.h>
> #include <linux/module.h>
> @@ -39,7 +40,6 @@
> #include <linux/vga_switcheroo.h>
> #include <linux/vt.h>
>
> -#include <drm/drm_aperture.h>
> #include <drm/drm_atomic_helper.h>
> #include <drm/drm_ioctl.h>
> #include <drm/drm_managed.h>
> @@ -485,7 +485,7 @@ static int i915_driver_hw_probe(struct drm_i915_private *dev_priv)
> if (ret)
> goto err_perf;
>
> - ret = drm_aperture_remove_conflicting_pci_framebuffers(pdev, dev_priv->drm.driver);
> + ret = aperture_remove_conflicting_pci_devices(pdev, dev_priv->drm.driver->name);
> if (ret)
> goto err_ggtt;
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 41+ messages in thread
* [PATCH 08/28] drm/loongson: Use video aperture helpers
2024-09-30 13:02 [PATCH 00/28] drm: Remove DRM aperture helpers Thomas Zimmermann
` (6 preceding siblings ...)
2024-09-30 13:03 ` [PATCH 07/28] drm/i915: " Thomas Zimmermann
@ 2024-09-30 13:03 ` Thomas Zimmermann
2024-10-04 9:01 ` Sui Jingfeng
2024-09-30 13:03 ` [PATCH 09/28] drm/meson: " Thomas Zimmermann
` (24 subsequent siblings)
32 siblings, 1 reply; 41+ messages in thread
From: Thomas Zimmermann @ 2024-09-30 13:03 UTC (permalink / raw)
To: javierm, airlied, simona, maarten.lankhorst, mripard
Cc: dri-devel, amd-gfx, intel-gfx, intel-xe, Thomas Zimmermann,
Sui Jingfeng
DRM's aperture functions have long been implemented as helpers
under drivers/video/ for use with fbdev. Avoid the DRM wrappers by
calling the video functions directly.
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Cc: Sui Jingfeng <suijingfeng@loongson.cn>
---
drivers/gpu/drm/loongson/lsdc_drv.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/gpu/drm/loongson/lsdc_drv.c b/drivers/gpu/drm/loongson/lsdc_drv.c
index a19dce35c839..b350bdcf1645 100644
--- a/drivers/gpu/drm/loongson/lsdc_drv.c
+++ b/drivers/gpu/drm/loongson/lsdc_drv.c
@@ -3,10 +3,10 @@
* Copyright (C) 2023 Loongson Technology Corporation Limited
*/
+#include <linux/aperture.h>
#include <linux/pci.h>
#include <linux/vgaarb.h>
-#include <drm/drm_aperture.h>
#include <drm/drm_atomic.h>
#include <drm/drm_atomic_helper.h>
#include <drm/drm_client_setup.h>
@@ -215,9 +215,9 @@ lsdc_create_device(struct pci_dev *pdev,
return ERR_PTR(ret);
}
- ret = drm_aperture_remove_conflicting_framebuffers(ldev->vram_base,
- ldev->vram_size,
- driver);
+ ret = aperture_remove_conflicting_devices(ldev->vram_base,
+ ldev->vram_size,
+ driver->name);
if (ret) {
drm_err(ddev, "Remove firmware framebuffers failed: %d\n", ret);
return ERR_PTR(ret);
--
2.46.0
^ permalink raw reply related [flat|nested] 41+ messages in thread* Re: [PATCH 08/28] drm/loongson: Use video aperture helpers
2024-09-30 13:03 ` [PATCH 08/28] drm/loongson: " Thomas Zimmermann
@ 2024-10-04 9:01 ` Sui Jingfeng
0 siblings, 0 replies; 41+ messages in thread
From: Sui Jingfeng @ 2024-10-04 9:01 UTC (permalink / raw)
To: Thomas Zimmermann, javierm, airlied, simona, maarten.lankhorst,
mripard
Cc: dri-devel, amd-gfx, intel-gfx, intel-xe
Hi,
On 2024/9/30 21:03, Thomas Zimmermann wrote:
> DRM's aperture functions have long been implemented as helpers
> under drivers/video/ for use with fbdev. Avoid the DRM wrappers by
> calling the video functions directly.
Okay!
Sometimes the aperture_remove_conflicting_devices() is more easier
to use, as it doesn't need direct reference to the struct drm_driver.
The third argument of aperture_remove_conflicting_devices() does not
get used, so we can actually pass a casual string.
> Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
> Cc: Sui Jingfeng <suijingfeng@loongson.cn>
Acked-by: Sui Jingfeng <sui.jingfeng@linux.dev>
> ---
> drivers/gpu/drm/loongson/lsdc_drv.c | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/gpu/drm/loongson/lsdc_drv.c b/drivers/gpu/drm/loongson/lsdc_drv.c
> index a19dce35c839..b350bdcf1645 100644
> --- a/drivers/gpu/drm/loongson/lsdc_drv.c
> +++ b/drivers/gpu/drm/loongson/lsdc_drv.c
> @@ -3,10 +3,10 @@
> * Copyright (C) 2023 Loongson Technology Corporation Limited
> */
>
> +#include <linux/aperture.h>
> #include <linux/pci.h>
> #include <linux/vgaarb.h>
>
> -#include <drm/drm_aperture.h>
> #include <drm/drm_atomic.h>
> #include <drm/drm_atomic_helper.h>
> #include <drm/drm_client_setup.h>
> @@ -215,9 +215,9 @@ lsdc_create_device(struct pci_dev *pdev,
> return ERR_PTR(ret);
> }
>
> - ret = drm_aperture_remove_conflicting_framebuffers(ldev->vram_base,
> - ldev->vram_size,
> - driver);
> + ret = aperture_remove_conflicting_devices(ldev->vram_base,
> + ldev->vram_size,
> + driver->name);
> if (ret) {
> drm_err(ddev, "Remove firmware framebuffers failed: %d\n", ret);
> return ERR_PTR(ret);
--
Best regards,
Sui
^ permalink raw reply [flat|nested] 41+ messages in thread
* [PATCH 09/28] drm/meson: Use video aperture helpers
2024-09-30 13:02 [PATCH 00/28] drm: Remove DRM aperture helpers Thomas Zimmermann
` (7 preceding siblings ...)
2024-09-30 13:03 ` [PATCH 08/28] drm/loongson: " Thomas Zimmermann
@ 2024-09-30 13:03 ` Thomas Zimmermann
2024-09-30 13:16 ` Neil Armstrong
2024-09-30 13:03 ` [PATCH 10/28] drm/mgag200: " Thomas Zimmermann
` (23 subsequent siblings)
32 siblings, 1 reply; 41+ messages in thread
From: Thomas Zimmermann @ 2024-09-30 13:03 UTC (permalink / raw)
To: javierm, airlied, simona, maarten.lankhorst, mripard
Cc: dri-devel, amd-gfx, intel-gfx, intel-xe, Thomas Zimmermann,
Neil Armstrong, Kevin Hilman, Jerome Brunet, Martin Blumenstingl
DRM's aperture functions have long been implemented as helpers
under drivers/video/ for use with fbdev. Avoid the DRM wrappers by
calling the video functions directly.
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Cc: Neil Armstrong <neil.armstrong@linaro.org>
Cc: Kevin Hilman <khilman@baylibre.com>
Cc: Jerome Brunet <jbrunet@baylibre.com>
Cc: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
---
drivers/gpu/drm/meson/meson_drv.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/meson/meson_drv.c b/drivers/gpu/drm/meson/meson_drv.c
index 2f76f48da38d..bbb662d2f184 100644
--- a/drivers/gpu/drm/meson/meson_drv.c
+++ b/drivers/gpu/drm/meson/meson_drv.c
@@ -8,6 +8,7 @@
* Jasper St. Pierre <jstpierre@mecheye.net>
*/
+#include <linux/aperture.h>
#include <linux/component.h>
#include <linux/module.h>
#include <linux/of_graph.h>
@@ -15,7 +16,6 @@
#include <linux/platform_device.h>
#include <linux/soc/amlogic/meson-canvas.h>
-#include <drm/drm_aperture.h>
#include <drm/drm_atomic_helper.h>
#include <drm/drm_client_setup.h>
#include <drm/drm_drv.h>
@@ -279,7 +279,7 @@ static int meson_drv_bind_master(struct device *dev, bool has_components)
* Remove early framebuffers (ie. simplefb). The framebuffer can be
* located anywhere in RAM
*/
- ret = drm_aperture_remove_framebuffers(&meson_driver);
+ ret = aperture_remove_all_conflicting_devices(meson_driver.name);
if (ret)
goto free_canvas_vd1_2;
--
2.46.0
^ permalink raw reply related [flat|nested] 41+ messages in thread* Re: [PATCH 09/28] drm/meson: Use video aperture helpers
2024-09-30 13:03 ` [PATCH 09/28] drm/meson: " Thomas Zimmermann
@ 2024-09-30 13:16 ` Neil Armstrong
0 siblings, 0 replies; 41+ messages in thread
From: Neil Armstrong @ 2024-09-30 13:16 UTC (permalink / raw)
To: Thomas Zimmermann, javierm, airlied, simona, maarten.lankhorst,
mripard
Cc: dri-devel, amd-gfx, intel-gfx, intel-xe, Kevin Hilman,
Jerome Brunet, Martin Blumenstingl
On 30/09/2024 15:03, Thomas Zimmermann wrote:
> DRM's aperture functions have long been implemented as helpers
> under drivers/video/ for use with fbdev. Avoid the DRM wrappers by
> calling the video functions directly.
>
> Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
> Cc: Neil Armstrong <neil.armstrong@linaro.org>
> Cc: Kevin Hilman <khilman@baylibre.com>
> Cc: Jerome Brunet <jbrunet@baylibre.com>
> Cc: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
> ---
> drivers/gpu/drm/meson/meson_drv.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/meson/meson_drv.c b/drivers/gpu/drm/meson/meson_drv.c
> index 2f76f48da38d..bbb662d2f184 100644
> --- a/drivers/gpu/drm/meson/meson_drv.c
> +++ b/drivers/gpu/drm/meson/meson_drv.c
> @@ -8,6 +8,7 @@
> * Jasper St. Pierre <jstpierre@mecheye.net>
> */
>
> +#include <linux/aperture.h>
> #include <linux/component.h>
> #include <linux/module.h>
> #include <linux/of_graph.h>
> @@ -15,7 +16,6 @@
> #include <linux/platform_device.h>
> #include <linux/soc/amlogic/meson-canvas.h>
>
> -#include <drm/drm_aperture.h>
> #include <drm/drm_atomic_helper.h>
> #include <drm/drm_client_setup.h>
> #include <drm/drm_drv.h>
> @@ -279,7 +279,7 @@ static int meson_drv_bind_master(struct device *dev, bool has_components)
> * Remove early framebuffers (ie. simplefb). The framebuffer can be
> * located anywhere in RAM
> */
> - ret = drm_aperture_remove_framebuffers(&meson_driver);
> + ret = aperture_remove_all_conflicting_devices(meson_driver.name);
> if (ret)
> goto free_canvas_vd1_2;
>
Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
^ permalink raw reply [flat|nested] 41+ messages in thread
* [PATCH 10/28] drm/mgag200: Use video aperture helpers
2024-09-30 13:02 [PATCH 00/28] drm: Remove DRM aperture helpers Thomas Zimmermann
` (8 preceding siblings ...)
2024-09-30 13:03 ` [PATCH 09/28] drm/meson: " Thomas Zimmermann
@ 2024-09-30 13:03 ` Thomas Zimmermann
2024-09-30 13:03 ` [PATCH 11/28] drm/msm: " Thomas Zimmermann
` (22 subsequent siblings)
32 siblings, 0 replies; 41+ messages in thread
From: Thomas Zimmermann @ 2024-09-30 13:03 UTC (permalink / raw)
To: javierm, airlied, simona, maarten.lankhorst, mripard
Cc: dri-devel, amd-gfx, intel-gfx, intel-xe, Thomas Zimmermann,
Dave Airlie, Jocelyn Falempe
DRM's aperture functions have long been implemented as helpers
under drivers/video/ for use with fbdev. Avoid the DRM wrappers by
calling the video functions directly.
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Cc: Dave Airlie <airlied@redhat.com>
Cc: Jocelyn Falempe <jfalempe@redhat.com>
---
drivers/gpu/drm/mgag200/mgag200_drv.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/mgag200/mgag200_drv.c b/drivers/gpu/drm/mgag200/mgag200_drv.c
index 29087e2398df..42fabe817e21 100644
--- a/drivers/gpu/drm/mgag200/mgag200_drv.c
+++ b/drivers/gpu/drm/mgag200/mgag200_drv.c
@@ -6,10 +6,10 @@
* Dave Airlie
*/
+#include <linux/aperture.h>
#include <linux/module.h>
#include <linux/pci.h>
-#include <drm/drm_aperture.h>
#include <drm/drm_atomic_helper.h>
#include <drm/drm_client_setup.h>
#include <drm/drm_drv.h>
@@ -266,7 +266,7 @@ mgag200_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
struct drm_device *dev;
int ret;
- ret = drm_aperture_remove_conflicting_pci_framebuffers(pdev, &mgag200_driver);
+ ret = aperture_remove_conflicting_pci_devices(pdev, mgag200_driver.name);
if (ret)
return ret;
--
2.46.0
^ permalink raw reply related [flat|nested] 41+ messages in thread* [PATCH 11/28] drm/msm: Use video aperture helpers
2024-09-30 13:02 [PATCH 00/28] drm: Remove DRM aperture helpers Thomas Zimmermann
` (9 preceding siblings ...)
2024-09-30 13:03 ` [PATCH 10/28] drm/mgag200: " Thomas Zimmermann
@ 2024-09-30 13:03 ` Thomas Zimmermann
2024-10-19 13:52 ` Dmitry Baryshkov
2024-09-30 13:03 ` [PATCH 12/28] drm/nouveau: " Thomas Zimmermann
` (21 subsequent siblings)
32 siblings, 1 reply; 41+ messages in thread
From: Thomas Zimmermann @ 2024-09-30 13:03 UTC (permalink / raw)
To: javierm, airlied, simona, maarten.lankhorst, mripard
Cc: dri-devel, amd-gfx, intel-gfx, intel-xe, Thomas Zimmermann,
Rob Clark, Abhinav Kumar, Dmitry Baryshkov, Sean Paul,
Marijn Suijten
DRM's aperture functions have long been implemented as helpers
under drivers/video/ for use with fbdev. Avoid the DRM wrappers by
calling the video functions directly.
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Cc: Rob Clark <robdclark@gmail.com>
Cc: Abhinav Kumar <quic_abhinavk@quicinc.com>
Cc: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Cc: Sean Paul <sean@poorly.run>
Cc: Marijn Suijten <marijn.suijten@somainline.org>
---
drivers/gpu/drm/msm/msm_kms.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/msm/msm_kms.c b/drivers/gpu/drm/msm/msm_kms.c
index af6a6fcb1173..f3326d09bdbc 100644
--- a/drivers/gpu/drm/msm/msm_kms.c
+++ b/drivers/gpu/drm/msm/msm_kms.c
@@ -5,11 +5,11 @@
* Author: Rob Clark <robdclark@gmail.com>
*/
+#include <linux/aperture.h>
#include <linux/kthread.h>
#include <linux/sched/mm.h>
#include <uapi/linux/sched/types.h>
-#include <drm/drm_aperture.h>
#include <drm/drm_drv.h>
#include <drm/drm_mode_config.h>
#include <drm/drm_vblank.h>
@@ -237,7 +237,7 @@ int msm_drm_kms_init(struct device *dev, const struct drm_driver *drv)
int ret;
/* the fw fb could be anywhere in memory */
- ret = drm_aperture_remove_framebuffers(drv);
+ ret = aperture_remove_all_conflicting_devices(drv->name);
if (ret)
return ret;
--
2.46.0
^ permalink raw reply related [flat|nested] 41+ messages in thread* Re: [PATCH 11/28] drm/msm: Use video aperture helpers
2024-09-30 13:03 ` [PATCH 11/28] drm/msm: " Thomas Zimmermann
@ 2024-10-19 13:52 ` Dmitry Baryshkov
0 siblings, 0 replies; 41+ messages in thread
From: Dmitry Baryshkov @ 2024-10-19 13:52 UTC (permalink / raw)
To: Thomas Zimmermann
Cc: javierm, airlied, simona, maarten.lankhorst, mripard, dri-devel,
amd-gfx, intel-gfx, intel-xe, Rob Clark, Abhinav Kumar, Sean Paul,
Marijn Suijten
On Mon, Sep 30, 2024 at 03:03:09PM +0200, Thomas Zimmermann wrote:
> DRM's aperture functions have long been implemented as helpers
> under drivers/video/ for use with fbdev. Avoid the DRM wrappers by
> calling the video functions directly.
>
> Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
> Cc: Rob Clark <robdclark@gmail.com>
> Cc: Abhinav Kumar <quic_abhinavk@quicinc.com>
> Cc: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
> Cc: Sean Paul <sean@poorly.run>
> Cc: Marijn Suijten <marijn.suijten@somainline.org>
> ---
> drivers/gpu/drm/msm/msm_kms.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
--
With best wishes
Dmitry
^ permalink raw reply [flat|nested] 41+ messages in thread
* [PATCH 12/28] drm/nouveau: Use video aperture helpers
2024-09-30 13:02 [PATCH 00/28] drm: Remove DRM aperture helpers Thomas Zimmermann
` (10 preceding siblings ...)
2024-09-30 13:03 ` [PATCH 11/28] drm/msm: " Thomas Zimmermann
@ 2024-09-30 13:03 ` Thomas Zimmermann
2024-09-30 13:03 ` [PATCH 13/28] drm/ofdrm: " Thomas Zimmermann
` (20 subsequent siblings)
32 siblings, 0 replies; 41+ messages in thread
From: Thomas Zimmermann @ 2024-09-30 13:03 UTC (permalink / raw)
To: javierm, airlied, simona, maarten.lankhorst, mripard
Cc: dri-devel, amd-gfx, intel-gfx, intel-xe, Thomas Zimmermann,
Karol Herbst, Lyude Paul, Danilo Krummrich
DRM's aperture functions have long been implemented as helpers
under drivers/video/ for use with fbdev. Avoid the DRM wrappers by
calling the video functions directly.
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>
---
drivers/gpu/drm/nouveau/nouveau_drm.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/nouveau/nouveau_drm.c b/drivers/gpu/drm/nouveau/nouveau_drm.c
index 84d692d68817..02dd179a2f31 100644
--- a/drivers/gpu/drm/nouveau/nouveau_drm.c
+++ b/drivers/gpu/drm/nouveau/nouveau_drm.c
@@ -22,6 +22,7 @@
* Authors: Ben Skeggs
*/
+#include <linux/aperture.h>
#include <linux/delay.h>
#include <linux/module.h>
#include <linux/pci.h>
@@ -30,7 +31,6 @@
#include <linux/mmu_notifier.h>
#include <linux/dynamic_debug.h>
-#include <drm/drm_aperture.h>
#include <drm/drm_client_setup.h>
#include <drm/drm_drv.h>
#include <drm/drm_fbdev_ttm.h>
@@ -851,7 +851,7 @@ static int nouveau_drm_probe(struct pci_dev *pdev,
return ret;
/* Remove conflicting drivers (vesafb, efifb etc). */
- ret = drm_aperture_remove_conflicting_pci_framebuffers(pdev, &driver_pci);
+ ret = aperture_remove_conflicting_pci_devices(pdev, driver_pci.name);
if (ret)
return ret;
--
2.46.0
^ permalink raw reply related [flat|nested] 41+ messages in thread* [PATCH 13/28] drm/ofdrm: Use video aperture helpers
2024-09-30 13:02 [PATCH 00/28] drm: Remove DRM aperture helpers Thomas Zimmermann
` (11 preceding siblings ...)
2024-09-30 13:03 ` [PATCH 12/28] drm/nouveau: " Thomas Zimmermann
@ 2024-09-30 13:03 ` Thomas Zimmermann
2024-09-30 13:03 ` [PATCH 14/28] drm/qxl: " Thomas Zimmermann
` (19 subsequent siblings)
32 siblings, 0 replies; 41+ messages in thread
From: Thomas Zimmermann @ 2024-09-30 13:03 UTC (permalink / raw)
To: javierm, airlied, simona, maarten.lankhorst, mripard
Cc: dri-devel, amd-gfx, intel-gfx, intel-xe, Thomas Zimmermann
DRM's aperture functions have long been implemented as helpers
under drivers/video/ for use with fbdev. Avoid the DRM wrappers by
calling the video functions directly.
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Cc: Javier Martinez Canillas <javierm@redhat.com>
---
drivers/gpu/drm/tiny/ofdrm.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/tiny/ofdrm.c b/drivers/gpu/drm/tiny/ofdrm.c
index 04ffa93de44a..220c1244b3c0 100644
--- a/drivers/gpu/drm/tiny/ofdrm.c
+++ b/drivers/gpu/drm/tiny/ofdrm.c
@@ -1,10 +1,10 @@
// SPDX-License-Identifier: GPL-2.0-only
+#include <linux/aperture.h>
#include <linux/of_address.h>
#include <linux/pci.h>
#include <linux/platform_device.h>
-#include <drm/drm_aperture.h>
#include <drm/drm_atomic.h>
#include <drm/drm_atomic_state_helper.h>
#include <drm/drm_client_setup.h>
@@ -1220,7 +1220,7 @@ static struct ofdrm_device *ofdrm_device_create(struct drm_driver *drv,
fb_pgbase = round_down(fb_base, PAGE_SIZE);
fb_pgsize = fb_base - fb_pgbase + round_up(fb_size, PAGE_SIZE);
- ret = devm_aperture_acquire_from_firmware(dev, fb_pgbase, fb_pgsize);
+ ret = devm_aperture_acquire_for_platform_device(pdev, fb_pgbase, fb_pgsize);
if (ret) {
drm_err(dev, "could not acquire memory range %pr: error %d\n", &res, ret);
return ERR_PTR(ret);
--
2.46.0
^ permalink raw reply related [flat|nested] 41+ messages in thread* [PATCH 14/28] drm/qxl: Use video aperture helpers
2024-09-30 13:02 [PATCH 00/28] drm: Remove DRM aperture helpers Thomas Zimmermann
` (12 preceding siblings ...)
2024-09-30 13:03 ` [PATCH 13/28] drm/ofdrm: " Thomas Zimmermann
@ 2024-09-30 13:03 ` Thomas Zimmermann
2024-09-30 13:03 ` [PATCH 15/28] drm/radeon: " Thomas Zimmermann
` (18 subsequent siblings)
32 siblings, 0 replies; 41+ messages in thread
From: Thomas Zimmermann @ 2024-09-30 13:03 UTC (permalink / raw)
To: javierm, airlied, simona, maarten.lankhorst, mripard
Cc: dri-devel, amd-gfx, intel-gfx, intel-xe, Thomas Zimmermann,
Dave Airlie, Gerd Hoffmann
DRM's aperture functions have long been implemented as helpers
under drivers/video/ for use with fbdev. Avoid the DRM wrappers by
calling the video functions directly.
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Cc: Dave Airlie <airlied@redhat.com>
Cc: Gerd Hoffmann <kraxel@redhat.com>
---
drivers/gpu/drm/qxl/qxl_drv.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/qxl/qxl_drv.c b/drivers/gpu/drm/qxl/qxl_drv.c
index 4ef1c134d6dd..21f752644242 100644
--- a/drivers/gpu/drm/qxl/qxl_drv.c
+++ b/drivers/gpu/drm/qxl/qxl_drv.c
@@ -29,12 +29,12 @@
#include "qxl_drv.h"
+#include <linux/aperture.h>
#include <linux/module.h>
#include <linux/pci.h>
#include <linux/vgaarb.h>
#include <drm/drm.h>
-#include <drm/drm_aperture.h>
#include <drm/drm_atomic_helper.h>
#include <drm/drm_client_setup.h>
#include <drm/drm_drv.h>
@@ -92,7 +92,7 @@ qxl_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
if (ret)
return ret;
- ret = drm_aperture_remove_conflicting_pci_framebuffers(pdev, &qxl_driver);
+ ret = aperture_remove_conflicting_pci_devices(pdev, qxl_driver.name);
if (ret)
goto disable_pci;
--
2.46.0
^ permalink raw reply related [flat|nested] 41+ messages in thread* [PATCH 15/28] drm/radeon: Use video aperture helpers
2024-09-30 13:02 [PATCH 00/28] drm: Remove DRM aperture helpers Thomas Zimmermann
` (13 preceding siblings ...)
2024-09-30 13:03 ` [PATCH 14/28] drm/qxl: " Thomas Zimmermann
@ 2024-09-30 13:03 ` Thomas Zimmermann
2024-09-30 13:03 ` [PATCH 16/28] drm/rockchip: " Thomas Zimmermann
` (17 subsequent siblings)
32 siblings, 0 replies; 41+ messages in thread
From: Thomas Zimmermann @ 2024-09-30 13:03 UTC (permalink / raw)
To: javierm, airlied, simona, maarten.lankhorst, mripard
Cc: dri-devel, amd-gfx, intel-gfx, intel-xe, Thomas Zimmermann,
Alex Deucher, Christian König, Xinhui Pan
DRM's aperture functions have long been implemented as helpers
under drivers/video/ for use with fbdev. Avoid the DRM wrappers by
calling the video functions directly.
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>
---
drivers/gpu/drm/radeon/radeon_drv.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/radeon/radeon_drv.c b/drivers/gpu/drm/radeon/radeon_drv.c
index 900b05d8aa5c..23d6d1a2586d 100644
--- a/drivers/gpu/drm/radeon/radeon_drv.c
+++ b/drivers/gpu/drm/radeon/radeon_drv.c
@@ -29,7 +29,7 @@
* OTHER DEALINGS IN THE SOFTWARE.
*/
-
+#include <linux/aperture.h>
#include <linux/compat.h>
#include <linux/module.h>
#include <linux/pm_runtime.h>
@@ -37,7 +37,6 @@
#include <linux/mmu_notifier.h>
#include <linux/pci.h>
-#include <drm/drm_aperture.h>
#include <drm/drm_client_setup.h>
#include <drm/drm_drv.h>
#include <drm/drm_file.h>
@@ -300,7 +299,7 @@ static int radeon_pci_probe(struct pci_dev *pdev,
return -EPROBE_DEFER;
/* Get rid of things like offb */
- ret = drm_aperture_remove_conflicting_pci_framebuffers(pdev, &kms_driver);
+ ret = aperture_remove_conflicting_pci_devices(pdev, kms_driver.name);
if (ret)
return ret;
--
2.46.0
^ permalink raw reply related [flat|nested] 41+ messages in thread* [PATCH 16/28] drm/rockchip: Use video aperture helpers
2024-09-30 13:02 [PATCH 00/28] drm: Remove DRM aperture helpers Thomas Zimmermann
` (14 preceding siblings ...)
2024-09-30 13:03 ` [PATCH 15/28] drm/radeon: " Thomas Zimmermann
@ 2024-09-30 13:03 ` Thomas Zimmermann
2024-09-30 13:03 ` [PATCH 17/28] drm/simpledrm: " Thomas Zimmermann
` (16 subsequent siblings)
32 siblings, 0 replies; 41+ messages in thread
From: Thomas Zimmermann @ 2024-09-30 13:03 UTC (permalink / raw)
To: javierm, airlied, simona, maarten.lankhorst, mripard
Cc: dri-devel, amd-gfx, intel-gfx, intel-xe, Thomas Zimmermann,
Sandy Huang, Heiko Stübner, Andy Yan
DRM's aperture functions have long been implemented as helpers
under drivers/video/ for use with fbdev. Avoid the DRM wrappers by
calling the video functions directly.
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Cc: Sandy Huang <hjc@rock-chips.com>
Cc: "Heiko Stübner" <heiko@sntech.de>
Cc: Andy Yan <andy.yan@rock-chips.com>
---
drivers/gpu/drm/rockchip/rockchip_drm_drv.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/rockchip/rockchip_drm_drv.c b/drivers/gpu/drm/rockchip/rockchip_drm_drv.c
index 4e080040ba01..2560b0eec9db 100644
--- a/drivers/gpu/drm/rockchip/rockchip_drm_drv.c
+++ b/drivers/gpu/drm/rockchip/rockchip_drm_drv.c
@@ -6,6 +6,7 @@
* based on exynos_drm_drv.c
*/
+#include <linux/aperture.h>
#include <linux/dma-mapping.h>
#include <linux/platform_device.h>
#include <linux/pm_runtime.h>
@@ -16,7 +17,6 @@
#include <linux/console.h>
#include <linux/iommu.h>
-#include <drm/drm_aperture.h>
#include <drm/drm_client_setup.h>
#include <drm/drm_drv.h>
#include <drm/drm_fbdev_dma.h>
@@ -146,7 +146,7 @@ static int rockchip_drm_bind(struct device *dev)
int ret;
/* Remove existing drivers that may own the framebuffer memory. */
- ret = drm_aperture_remove_framebuffers(&rockchip_drm_driver);
+ ret = aperture_remove_all_conflicting_devices(rockchip_drm_driver.name);
if (ret) {
DRM_DEV_ERROR(dev,
"Failed to remove existing framebuffers - %d.\n",
--
2.46.0
^ permalink raw reply related [flat|nested] 41+ messages in thread* [PATCH 17/28] drm/simpledrm: Use video aperture helpers
2024-09-30 13:02 [PATCH 00/28] drm: Remove DRM aperture helpers Thomas Zimmermann
` (15 preceding siblings ...)
2024-09-30 13:03 ` [PATCH 16/28] drm/rockchip: " Thomas Zimmermann
@ 2024-09-30 13:03 ` Thomas Zimmermann
2024-09-30 13:03 ` [PATCH 18/28] drm/stm: " Thomas Zimmermann
` (15 subsequent siblings)
32 siblings, 0 replies; 41+ messages in thread
From: Thomas Zimmermann @ 2024-09-30 13:03 UTC (permalink / raw)
To: javierm, airlied, simona, maarten.lankhorst, mripard
Cc: dri-devel, amd-gfx, intel-gfx, intel-xe, Thomas Zimmermann
DRM's aperture functions have long been implemented as helpers
under drivers/video/ for use with fbdev. Avoid the DRM wrappers by
calling the video functions directly.
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Cc: Javier Martinez Canillas <javierm@redhat.com>
---
drivers/gpu/drm/tiny/simpledrm.c | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/tiny/simpledrm.c b/drivers/gpu/drm/tiny/simpledrm.c
index 484901e5e2f4..3182d32f1b8f 100644
--- a/drivers/gpu/drm/tiny/simpledrm.c
+++ b/drivers/gpu/drm/tiny/simpledrm.c
@@ -1,5 +1,6 @@
// SPDX-License-Identifier: GPL-2.0-only
+#include <linux/aperture.h>
#include <linux/clk.h>
#include <linux/of_clk.h>
#include <linux/minmax.h>
@@ -9,7 +10,6 @@
#include <linux/pm_domain.h>
#include <linux/regulator/consumer.h>
-#include <drm/drm_aperture.h>
#include <drm/drm_atomic.h>
#include <drm/drm_atomic_state_helper.h>
#include <drm/drm_client_setup.h>
@@ -883,7 +883,8 @@ static struct simpledrm_device *simpledrm_device_create(struct drm_driver *drv,
if (mem) {
void *screen_base;
- ret = devm_aperture_acquire_from_firmware(dev, mem->start, resource_size(mem));
+ ret = devm_aperture_acquire_for_platform_device(pdev, mem->start,
+ resource_size(mem));
if (ret) {
drm_err(dev, "could not acquire memory range %pr: %d\n", mem, ret);
return ERR_PTR(ret);
@@ -903,7 +904,8 @@ static struct simpledrm_device *simpledrm_device_create(struct drm_driver *drv,
if (!res)
return ERR_PTR(-EINVAL);
- ret = devm_aperture_acquire_from_firmware(dev, res->start, resource_size(res));
+ ret = devm_aperture_acquire_for_platform_device(pdev, res->start,
+ resource_size(res));
if (ret) {
drm_err(dev, "could not acquire memory range %pr: %d\n", res, ret);
return ERR_PTR(ret);
--
2.46.0
^ permalink raw reply related [flat|nested] 41+ messages in thread* [PATCH 18/28] drm/stm: Use video aperture helpers
2024-09-30 13:02 [PATCH 00/28] drm: Remove DRM aperture helpers Thomas Zimmermann
` (16 preceding siblings ...)
2024-09-30 13:03 ` [PATCH 17/28] drm/simpledrm: " Thomas Zimmermann
@ 2024-09-30 13:03 ` Thomas Zimmermann
2024-09-30 13:03 ` [PATCH 19/28] drm/sun4i: " Thomas Zimmermann
` (14 subsequent siblings)
32 siblings, 0 replies; 41+ messages in thread
From: Thomas Zimmermann @ 2024-09-30 13:03 UTC (permalink / raw)
To: javierm, airlied, simona, maarten.lankhorst, mripard
Cc: dri-devel, amd-gfx, intel-gfx, intel-xe, Thomas Zimmermann,
Yannick Fertre, Raphael Gallais-Pou, Philippe Cornu,
Maxime Coquelin, Alexandre Torgue
DRM's aperture functions have long been implemented as helpers
under drivers/video/ for use with fbdev. Avoid the DRM wrappers by
calling the video functions directly.
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Cc: Yannick Fertre <yannick.fertre@foss.st.com>
Cc: Raphael Gallais-Pou <raphael.gallais-pou@foss.st.com>
Cc: Philippe Cornu <philippe.cornu@foss.st.com>
Cc: Maxime Coquelin <mcoquelin.stm32@gmail.com>
Cc: Alexandre Torgue <alexandre.torgue@foss.st.com>
---
drivers/gpu/drm/stm/drv.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/stm/drv.c b/drivers/gpu/drm/stm/drv.c
index fee274a60623..478dc129d5c2 100644
--- a/drivers/gpu/drm/stm/drv.c
+++ b/drivers/gpu/drm/stm/drv.c
@@ -8,6 +8,7 @@
* Mickael Reulier <mickael.reulier@st.com>
*/
+#include <linux/aperture.h>
#include <linux/component.h>
#include <linux/dma-mapping.h>
#include <linux/mod_devicetable.h>
@@ -15,7 +16,6 @@
#include <linux/platform_device.h>
#include <linux/pm_runtime.h>
-#include <drm/drm_aperture.h>
#include <drm/drm_atomic.h>
#include <drm/drm_atomic_helper.h>
#include <drm/drm_client_setup.h>
@@ -191,7 +191,7 @@ static int stm_drm_platform_probe(struct platform_device *pdev)
DRM_DEBUG("%s\n", __func__);
- ret = drm_aperture_remove_framebuffers(&drv_driver);
+ ret = aperture_remove_all_conflicting_devices(drv_driver.name);
if (ret)
return ret;
--
2.46.0
^ permalink raw reply related [flat|nested] 41+ messages in thread* [PATCH 19/28] drm/sun4i: Use video aperture helpers
2024-09-30 13:02 [PATCH 00/28] drm: Remove DRM aperture helpers Thomas Zimmermann
` (17 preceding siblings ...)
2024-09-30 13:03 ` [PATCH 18/28] drm/stm: " Thomas Zimmermann
@ 2024-09-30 13:03 ` Thomas Zimmermann
2024-09-30 13:03 ` [PATCH 20/28] drm/tegra: " Thomas Zimmermann
` (13 subsequent siblings)
32 siblings, 0 replies; 41+ messages in thread
From: Thomas Zimmermann @ 2024-09-30 13:03 UTC (permalink / raw)
To: javierm, airlied, simona, maarten.lankhorst, mripard
Cc: dri-devel, amd-gfx, intel-gfx, intel-xe, Thomas Zimmermann,
Chen-Yu Tsai, Jernej Skrabec, Samuel Holland
DRM's aperture functions have long been implemented as helpers
under drivers/video/ for use with fbdev. Avoid the DRM wrappers by
calling the video functions directly.
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Cc: Maxime Ripard <mripard@kernel.org>
Cc: Chen-Yu Tsai <wens@csie.org>
Cc: Jernej Skrabec <jernej.skrabec@gmail.com>
Cc: Samuel Holland <samuel@sholland.org>
---
drivers/gpu/drm/sun4i/sun4i_drv.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/sun4i/sun4i_drv.c b/drivers/gpu/drm/sun4i/sun4i_drv.c
index c3342789e3b0..3f880d8a5666 100644
--- a/drivers/gpu/drm/sun4i/sun4i_drv.c
+++ b/drivers/gpu/drm/sun4i/sun4i_drv.c
@@ -6,6 +6,7 @@
* Maxime Ripard <maxime.ripard@free-electrons.com>
*/
+#include <linux/aperture.h>
#include <linux/component.h>
#include <linux/dma-mapping.h>
#include <linux/kfifo.h>
@@ -14,7 +15,6 @@
#include <linux/of_reserved_mem.h>
#include <linux/platform_device.h>
-#include <drm/drm_aperture.h>
#include <drm/drm_atomic_helper.h>
#include <drm/drm_client_setup.h>
#include <drm/drm_drv.h>
@@ -100,7 +100,7 @@ static int sun4i_drv_bind(struct device *dev)
goto unbind_all;
/* Remove early framebuffers (ie. simplefb) */
- ret = drm_aperture_remove_framebuffers(&sun4i_drv_driver);
+ ret = aperture_remove_all_conflicting_devices(sun4i_drv_driver.name);
if (ret)
goto unbind_all;
--
2.46.0
^ permalink raw reply related [flat|nested] 41+ messages in thread* [PATCH 20/28] drm/tegra: Use video aperture helpers
2024-09-30 13:02 [PATCH 00/28] drm: Remove DRM aperture helpers Thomas Zimmermann
` (18 preceding siblings ...)
2024-09-30 13:03 ` [PATCH 19/28] drm/sun4i: " Thomas Zimmermann
@ 2024-09-30 13:03 ` Thomas Zimmermann
2024-09-30 13:03 ` [PATCH 21/28] drm/bochs: " Thomas Zimmermann
` (12 subsequent siblings)
32 siblings, 0 replies; 41+ messages in thread
From: Thomas Zimmermann @ 2024-09-30 13:03 UTC (permalink / raw)
To: javierm, airlied, simona, maarten.lankhorst, mripard
Cc: dri-devel, amd-gfx, intel-gfx, intel-xe, Thomas Zimmermann,
Thierry Reding, Mikko Perttunen, Jonathan Hunter
DRM's aperture functions have long been implemented as helpers
under drivers/video/ for use with fbdev. Avoid the DRM wrappers by
calling the video functions directly.
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Cc: Thierry Reding <thierry.reding@gmail.com>
Cc: Mikko Perttunen <mperttunen@nvidia.com>
Cc: Jonathan Hunter <jonathanh@nvidia.com>
---
drivers/gpu/drm/tegra/drm.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/tegra/drm.c b/drivers/gpu/drm/tegra/drm.c
index dd82ab71d4a9..babcb3958f86 100644
--- a/drivers/gpu/drm/tegra/drm.c
+++ b/drivers/gpu/drm/tegra/drm.c
@@ -4,6 +4,7 @@
* Copyright (C) 2012-2016 NVIDIA CORPORATION. All rights reserved.
*/
+#include <linux/aperture.h>
#include <linux/bitops.h>
#include <linux/host1x.h>
#include <linux/idr.h>
@@ -12,7 +13,6 @@
#include <linux/platform_device.h>
#include <linux/pm_runtime.h>
-#include <drm/drm_aperture.h>
#include <drm/drm_atomic.h>
#include <drm/drm_atomic_helper.h>
#include <drm/drm_client_setup.h>
@@ -1258,7 +1258,7 @@ static int host1x_drm_probe(struct host1x_device *dev)
* will not expose any modesetting features.
*/
if (drm->mode_config.num_crtc > 0) {
- err = drm_aperture_remove_framebuffers(&tegra_drm_driver);
+ err = aperture_remove_all_conflicting_devices(tegra_drm_driver.name);
if (err < 0)
goto hub;
} else {
--
2.46.0
^ permalink raw reply related [flat|nested] 41+ messages in thread* [PATCH 21/28] drm/bochs: Use video aperture helpers
2024-09-30 13:02 [PATCH 00/28] drm: Remove DRM aperture helpers Thomas Zimmermann
` (19 preceding siblings ...)
2024-09-30 13:03 ` [PATCH 20/28] drm/tegra: " Thomas Zimmermann
@ 2024-09-30 13:03 ` Thomas Zimmermann
2024-09-30 13:03 ` [PATCH 22/28] drm/cirrus: " Thomas Zimmermann
` (11 subsequent siblings)
32 siblings, 0 replies; 41+ messages in thread
From: Thomas Zimmermann @ 2024-09-30 13:03 UTC (permalink / raw)
To: javierm, airlied, simona, maarten.lankhorst, mripard
Cc: dri-devel, amd-gfx, intel-gfx, intel-xe, Thomas Zimmermann,
Gerd Hoffmann
DRM's aperture functions have long been implemented as helpers
under drivers/video/ for use with fbdev. Avoid the DRM wrappers by
calling the video functions directly.
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Cc: Gerd Hoffmann <kraxel@redhat.com>
---
drivers/gpu/drm/tiny/bochs.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/tiny/bochs.c b/drivers/gpu/drm/tiny/bochs.c
index 5d2d34976d4b..dd90003b8fd9 100644
--- a/drivers/gpu/drm/tiny/bochs.c
+++ b/drivers/gpu/drm/tiny/bochs.c
@@ -1,9 +1,9 @@
// SPDX-License-Identifier: GPL-2.0-or-later
+#include <linux/aperture.h>
#include <linux/module.h>
#include <linux/pci.h>
-#include <drm/drm_aperture.h>
#include <drm/drm_atomic.h>
#include <drm/drm_atomic_helper.h>
#include <drm/drm_client_setup.h>
@@ -711,7 +711,7 @@ static int bochs_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent
struct drm_device *dev;
int ret;
- ret = drm_aperture_remove_conflicting_pci_framebuffers(pdev, &bochs_driver);
+ ret = aperture_remove_conflicting_pci_devices(pdev, bochs_driver.name);
if (ret)
return ret;
--
2.46.0
^ permalink raw reply related [flat|nested] 41+ messages in thread* [PATCH 22/28] drm/cirrus: Use video aperture helpers
2024-09-30 13:02 [PATCH 00/28] drm: Remove DRM aperture helpers Thomas Zimmermann
` (20 preceding siblings ...)
2024-09-30 13:03 ` [PATCH 21/28] drm/bochs: " Thomas Zimmermann
@ 2024-09-30 13:03 ` Thomas Zimmermann
2024-09-30 13:03 ` [PATCH 23/28] drm/vboxvideo: " Thomas Zimmermann
` (10 subsequent siblings)
32 siblings, 0 replies; 41+ messages in thread
From: Thomas Zimmermann @ 2024-09-30 13:03 UTC (permalink / raw)
To: javierm, airlied, simona, maarten.lankhorst, mripard
Cc: dri-devel, amd-gfx, intel-gfx, intel-xe, Thomas Zimmermann,
Dave Airlie, Gerd Hoffmann
DRM's aperture functions have long been implemented as helpers
under drivers/video/ for use with fbdev. Avoid the DRM wrappers by
calling the video functions directly.
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Cc: Dave Airlie <airlied@redhat.com>
Cc: Gerd Hoffmann <kraxel@redhat.com>
---
drivers/gpu/drm/tiny/cirrus.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/tiny/cirrus.c b/drivers/gpu/drm/tiny/cirrus.c
index 20c4479ed4c3..f06a2be71f60 100644
--- a/drivers/gpu/drm/tiny/cirrus.c
+++ b/drivers/gpu/drm/tiny/cirrus.c
@@ -16,6 +16,7 @@
* Copyright 1999-2001 Jeff Garzik <jgarzik@pobox.com>
*/
+#include <linux/aperture.h>
#include <linux/iosys-map.h>
#include <linux/module.h>
#include <linux/pci.h>
@@ -23,7 +24,6 @@
#include <video/cirrus.h>
#include <video/vga.h>
-#include <drm/drm_aperture.h>
#include <drm/drm_atomic.h>
#include <drm/drm_atomic_helper.h>
#include <drm/drm_atomic_state_helper.h>
@@ -673,7 +673,7 @@ static int cirrus_pci_probe(struct pci_dev *pdev,
struct cirrus_device *cirrus;
int ret;
- ret = drm_aperture_remove_conflicting_pci_framebuffers(pdev, &cirrus_driver);
+ ret = aperture_remove_conflicting_pci_devices(pdev, cirrus_driver.name);
if (ret)
return ret;
--
2.46.0
^ permalink raw reply related [flat|nested] 41+ messages in thread* [PATCH 23/28] drm/vboxvideo: Use video aperture helpers
2024-09-30 13:02 [PATCH 00/28] drm: Remove DRM aperture helpers Thomas Zimmermann
` (21 preceding siblings ...)
2024-09-30 13:03 ` [PATCH 22/28] drm/cirrus: " Thomas Zimmermann
@ 2024-09-30 13:03 ` Thomas Zimmermann
2024-09-30 13:03 ` [PATCH 24/28] drm/vc4: " Thomas Zimmermann
` (9 subsequent siblings)
32 siblings, 0 replies; 41+ messages in thread
From: Thomas Zimmermann @ 2024-09-30 13:03 UTC (permalink / raw)
To: javierm, airlied, simona, maarten.lankhorst, mripard
Cc: dri-devel, amd-gfx, intel-gfx, intel-xe, Thomas Zimmermann,
Hans de Goede
DRM's aperture functions have long been implemented as helpers
under drivers/video/ for use with fbdev. Avoid the DRM wrappers by
calling the video functions directly.
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Cc: Hans de Goede <hdegoede@redhat.com>
---
drivers/gpu/drm/vboxvideo/vbox_drv.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/vboxvideo/vbox_drv.c b/drivers/gpu/drm/vboxvideo/vbox_drv.c
index 49dc337b3e01..a536c467e2b2 100644
--- a/drivers/gpu/drm/vboxvideo/vbox_drv.c
+++ b/drivers/gpu/drm/vboxvideo/vbox_drv.c
@@ -7,11 +7,12 @@
* Michael Thayer <michael.thayer@oracle.com,
* Hans de Goede <hdegoede@redhat.com>
*/
+
+#include <linux/aperture.h>
#include <linux/module.h>
#include <linux/pci.h>
#include <linux/vt_kern.h>
-#include <drm/drm_aperture.h>
#include <drm/drm_atomic_helper.h>
#include <drm/drm_client_setup.h>
#include <drm/drm_drv.h>
@@ -45,7 +46,7 @@ static int vbox_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
if (!vbox_check_supported(VBE_DISPI_ID_HGSMI))
return -ENODEV;
- ret = drm_aperture_remove_conflicting_pci_framebuffers(pdev, &driver);
+ ret = aperture_remove_conflicting_pci_devices(pdev, driver.name);
if (ret)
return ret;
--
2.46.0
^ permalink raw reply related [flat|nested] 41+ messages in thread* [PATCH 24/28] drm/vc4: Use video aperture helpers
2024-09-30 13:02 [PATCH 00/28] drm: Remove DRM aperture helpers Thomas Zimmermann
` (22 preceding siblings ...)
2024-09-30 13:03 ` [PATCH 23/28] drm/vboxvideo: " Thomas Zimmermann
@ 2024-09-30 13:03 ` Thomas Zimmermann
2024-09-30 13:03 ` [PATCH 25/28] drm/virtgpu: " Thomas Zimmermann
` (8 subsequent siblings)
32 siblings, 0 replies; 41+ messages in thread
From: Thomas Zimmermann @ 2024-09-30 13:03 UTC (permalink / raw)
To: javierm, airlied, simona, maarten.lankhorst, mripard
Cc: dri-devel, amd-gfx, intel-gfx, intel-xe, Thomas Zimmermann,
Dave Stevenson, Raspberry Pi Kernel Maintenance
DRM's aperture functions have long been implemented as helpers
under drivers/video/ for use with fbdev. Avoid the DRM wrappers by
calling the video functions directly.
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Cc: Maxime Ripard <mripard@kernel.org>
Cc: Dave Stevenson <dave.stevenson@raspberrypi.com>
Cc: Raspberry Pi Kernel Maintenance <kernel-list@raspberrypi.com>
---
drivers/gpu/drm/vc4/vc4_drv.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/vc4/vc4_drv.c b/drivers/gpu/drm/vc4/vc4_drv.c
index 13a1ecddbca3..9fe7cc7b9ccd 100644
--- a/drivers/gpu/drm/vc4/vc4_drv.c
+++ b/drivers/gpu/drm/vc4/vc4_drv.c
@@ -20,6 +20,7 @@
* driver.
*/
+#include <linux/aperture.h>
#include <linux/clk.h>
#include <linux/component.h>
#include <linux/device.h>
@@ -30,7 +31,6 @@
#include <linux/platform_device.h>
#include <linux/pm_runtime.h>
-#include <drm/drm_aperture.h>
#include <drm/drm_atomic_helper.h>
#include <drm/drm_client_setup.h>
#include <drm/drm_drv.h>
@@ -359,7 +359,7 @@ static int vc4_drm_bind(struct device *dev)
}
}
- ret = drm_aperture_remove_framebuffers(driver);
+ ret = aperture_remove_all_conflicting_devices(driver->name);
if (ret)
goto err;
--
2.46.0
^ permalink raw reply related [flat|nested] 41+ messages in thread* [PATCH 25/28] drm/virtgpu: Use video aperture helpers
2024-09-30 13:02 [PATCH 00/28] drm: Remove DRM aperture helpers Thomas Zimmermann
` (23 preceding siblings ...)
2024-09-30 13:03 ` [PATCH 24/28] drm/vc4: " Thomas Zimmermann
@ 2024-09-30 13:03 ` Thomas Zimmermann
2024-09-30 13:03 ` [PATCH 26/28] drm/vmwgfx: " Thomas Zimmermann
` (7 subsequent siblings)
32 siblings, 0 replies; 41+ messages in thread
From: Thomas Zimmermann @ 2024-09-30 13:03 UTC (permalink / raw)
To: javierm, airlied, simona, maarten.lankhorst, mripard
Cc: dri-devel, amd-gfx, intel-gfx, intel-xe, Thomas Zimmermann,
David Airlie, Gerd Hoffmann, Gurchetan Singh, Chia-I Wu
DRM's aperture functions have long been implemented as helpers
under drivers/video/ for use with fbdev. Avoid the DRM wrappers by
calling the video functions directly.
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Cc: David Airlie <airlied@redhat.com>
Cc: Gerd Hoffmann <kraxel@redhat.com>
Cc: Gurchetan Singh <gurchetansingh@chromium.org>
Cc: Chia-I Wu <olvaffe@gmail.com>
---
drivers/gpu/drm/virtio/virtgpu_drv.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/virtio/virtgpu_drv.c b/drivers/gpu/drm/virtio/virtgpu_drv.c
index 1e08d91a4d17..ffca6e2e1c9a 100644
--- a/drivers/gpu/drm/virtio/virtgpu_drv.c
+++ b/drivers/gpu/drm/virtio/virtgpu_drv.c
@@ -26,13 +26,13 @@
* OTHER DEALINGS IN THE SOFTWARE.
*/
+#include <linux/aperture.h>
#include <linux/module.h>
#include <linux/pci.h>
#include <linux/poll.h>
#include <linux/wait.h>
#include <drm/drm.h>
-#include <drm/drm_aperture.h>
#include <drm/drm_atomic_helper.h>
#include <drm/drm_client_setup.h>
#include <drm/drm_drv.h>
@@ -59,7 +59,7 @@ static int virtio_gpu_pci_quirk(struct drm_device *dev)
vga ? "virtio-vga" : "virtio-gpu-pci",
pname);
if (vga) {
- ret = drm_aperture_remove_conflicting_pci_framebuffers(pdev, &driver);
+ ret = aperture_remove_conflicting_pci_devices(pdev, driver.name);
if (ret)
return ret;
}
--
2.46.0
^ permalink raw reply related [flat|nested] 41+ messages in thread* [PATCH 26/28] drm/vmwgfx: Use video aperture helpers
2024-09-30 13:02 [PATCH 00/28] drm: Remove DRM aperture helpers Thomas Zimmermann
` (24 preceding siblings ...)
2024-09-30 13:03 ` [PATCH 25/28] drm/virtgpu: " Thomas Zimmermann
@ 2024-09-30 13:03 ` Thomas Zimmermann
2024-09-30 13:03 ` [PATCH 27/28] drm/xe: " Thomas Zimmermann
` (6 subsequent siblings)
32 siblings, 0 replies; 41+ messages in thread
From: Thomas Zimmermann @ 2024-09-30 13:03 UTC (permalink / raw)
To: javierm, airlied, simona, maarten.lankhorst, mripard
Cc: dri-devel, amd-gfx, intel-gfx, intel-xe, Thomas Zimmermann,
Zack Rusin, Broadcom internal kernel review list
DRM's aperture functions have long been implemented as helpers
under drivers/video/ for use with fbdev. Avoid the DRM wrappers by
calling the video functions directly.
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Cc: Zack Rusin <zack.rusin@broadcom.com>
Cc: Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
---
drivers/gpu/drm/vmwgfx/vmwgfx_drv.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_drv.c b/drivers/gpu/drm/vmwgfx/vmwgfx_drv.c
index cf7a89d002e4..36f6ce022a73 100644
--- a/drivers/gpu/drm/vmwgfx/vmwgfx_drv.c
+++ b/drivers/gpu/drm/vmwgfx/vmwgfx_drv.c
@@ -35,7 +35,6 @@
#include "vmwgfx_vkms.h"
#include "ttm_object.h"
-#include <drm/drm_aperture.h>
#include <drm/drm_client_setup.h>
#include <drm/drm_drv.h>
#include <drm/drm_fbdev_ttm.h>
@@ -50,6 +49,8 @@
#ifdef CONFIG_X86
#include <asm/hypervisor.h>
#endif
+
+#include <linux/aperture.h>
#include <linux/cc_platform.h>
#include <linux/dma-mapping.h>
#include <linux/module.h>
@@ -1656,7 +1657,7 @@ static int vmw_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
struct vmw_private *vmw;
int ret;
- ret = drm_aperture_remove_conflicting_pci_framebuffers(pdev, &driver);
+ ret = aperture_remove_conflicting_pci_devices(pdev, driver.name);
if (ret)
goto out_error;
--
2.46.0
^ permalink raw reply related [flat|nested] 41+ messages in thread* [PATCH 27/28] drm/xe: Use video aperture helpers
2024-09-30 13:02 [PATCH 00/28] drm: Remove DRM aperture helpers Thomas Zimmermann
` (25 preceding siblings ...)
2024-09-30 13:03 ` [PATCH 26/28] drm/vmwgfx: " Thomas Zimmermann
@ 2024-09-30 13:03 ` Thomas Zimmermann
2024-09-30 13:03 ` [PATCH 28/28] drm: Remove DRM " Thomas Zimmermann
` (5 subsequent siblings)
32 siblings, 0 replies; 41+ messages in thread
From: Thomas Zimmermann @ 2024-09-30 13:03 UTC (permalink / raw)
To: javierm, airlied, simona, maarten.lankhorst, mripard
Cc: dri-devel, amd-gfx, intel-gfx, intel-xe, Thomas Zimmermann,
Lucas De Marchi, Thomas Hellström, Rodrigo Vivi
DRM's aperture functions have long been implemented as helpers
under drivers/video/ for use with fbdev. Avoid the DRM wrappers by
calling the video functions directly.
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>
---
drivers/gpu/drm/xe/xe_device.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_device.c b/drivers/gpu/drm/xe/xe_device.c
index 09a7ad830e69..bedd909ab9f6 100644
--- a/drivers/gpu/drm/xe/xe_device.c
+++ b/drivers/gpu/drm/xe/xe_device.c
@@ -5,10 +5,10 @@
#include "xe_device.h"
+#include <linux/aperture.h>
#include <linux/delay.h>
#include <linux/units.h>
-#include <drm/drm_aperture.h>
#include <drm/drm_atomic_helper.h>
#include <drm/drm_client.h>
#include <drm/drm_gem_ttm_helper.h>
@@ -310,7 +310,7 @@ struct xe_device *xe_device_create(struct pci_dev *pdev,
xe_display_driver_set_hooks(&driver);
- err = drm_aperture_remove_conflicting_pci_framebuffers(pdev, &driver);
+ err = aperture_remove_conflicting_pci_devices(pdev, driver.name);
if (err)
return ERR_PTR(err);
--
2.46.0
^ permalink raw reply related [flat|nested] 41+ messages in thread* [PATCH 28/28] drm: Remove DRM aperture helpers
2024-09-30 13:02 [PATCH 00/28] drm: Remove DRM aperture helpers Thomas Zimmermann
` (26 preceding siblings ...)
2024-09-30 13:03 ` [PATCH 27/28] drm/xe: " Thomas Zimmermann
@ 2024-09-30 13:03 ` Thomas Zimmermann
2024-09-30 14:06 ` Deucher, Alexander
2024-09-30 13:26 ` [PATCH 00/28] " Javier Martinez Canillas
` (4 subsequent siblings)
32 siblings, 1 reply; 41+ messages in thread
From: Thomas Zimmermann @ 2024-09-30 13:03 UTC (permalink / raw)
To: javierm, airlied, simona, maarten.lankhorst, mripard
Cc: dri-devel, amd-gfx, intel-gfx, intel-xe, Thomas Zimmermann,
Jonathan Corbet
The DRM aperture helpers are wrappers around video helpers from
<linux/aperture.h>. There are no callers of these functions. Remove
them entirely.
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Cc: Jonathan Corbet <corbet@lwn.net>
---
Documentation/gpu/drm-internals.rst | 12 --
MAINTAINERS | 2 -
drivers/gpu/drm/Makefile | 1 -
drivers/gpu/drm/drm_aperture.c | 192 ----------------------------
include/drm/drm_aperture.h | 38 ------
5 files changed, 245 deletions(-)
delete mode 100644 drivers/gpu/drm/drm_aperture.c
delete mode 100644 include/drm/drm_aperture.h
diff --git a/Documentation/gpu/drm-internals.rst b/Documentation/gpu/drm-internals.rst
index 11d9a5730fb2..cb9ae282771c 100644
--- a/Documentation/gpu/drm-internals.rst
+++ b/Documentation/gpu/drm-internals.rst
@@ -75,18 +75,6 @@ Module Initialization
.. kernel-doc:: include/drm/drm_module.h
:doc: overview
-Managing Ownership of the Framebuffer Aperture
-----------------------------------------------
-
-.. kernel-doc:: drivers/gpu/drm/drm_aperture.c
- :doc: overview
-
-.. kernel-doc:: include/drm/drm_aperture.h
- :internal:
-
-.. kernel-doc:: drivers/gpu/drm/drm_aperture.c
- :export:
-
Device Instance and Driver Handling
-----------------------------------
diff --git a/MAINTAINERS b/MAINTAINERS
index 5a0b7bfb6315..e71e12085a9f 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -7097,12 +7097,10 @@ M: Javier Martinez Canillas <javierm@redhat.com>
L: dri-devel@lists.freedesktop.org
S: Maintained
T: git https://gitlab.freedesktop.org/drm/misc/kernel.git
-F: drivers/gpu/drm/drm_aperture.c
F: drivers/gpu/drm/tiny/ofdrm.c
F: drivers/gpu/drm/tiny/simpledrm.c
F: drivers/video/aperture.c
F: drivers/video/nomodeset.c
-F: include/drm/drm_aperture.h
F: include/linux/aperture.h
F: include/video/nomodeset.h
diff --git a/drivers/gpu/drm/Makefile b/drivers/gpu/drm/Makefile
index 3894f43f6d47..31d8bf60a2fd 100644
--- a/drivers/gpu/drm/Makefile
+++ b/drivers/gpu/drm/Makefile
@@ -34,7 +34,6 @@ endif
subdir-ccflags-$(CONFIG_DRM_WERROR) += -Werror
drm-y := \
- drm_aperture.o \
drm_atomic.o \
drm_atomic_uapi.o \
drm_auth.o \
diff --git a/drivers/gpu/drm/drm_aperture.c b/drivers/gpu/drm/drm_aperture.c
deleted file mode 100644
index 5729f3bb4398..000000000000
--- a/drivers/gpu/drm/drm_aperture.c
+++ /dev/null
@@ -1,192 +0,0 @@
-// SPDX-License-Identifier: MIT
-
-#include <linux/aperture.h>
-#include <linux/platform_device.h>
-
-#include <drm/drm_aperture.h>
-#include <drm/drm_drv.h>
-#include <drm/drm_print.h>
-
-/**
- * DOC: overview
- *
- * A graphics device might be supported by different drivers, but only one
- * driver can be active at any given time. Many systems load a generic
- * graphics drivers, such as EFI-GOP or VESA, early during the boot process.
- * During later boot stages, they replace the generic driver with a dedicated,
- * hardware-specific driver. To take over the device the dedicated driver
- * first has to remove the generic driver. DRM aperture functions manage
- * ownership of DRM framebuffer memory and hand-over between drivers.
- *
- * DRM drivers should call drm_aperture_remove_conflicting_framebuffers()
- * at the top of their probe function. The function removes any generic
- * driver that is currently associated with the given framebuffer memory.
- * If the framebuffer is located at PCI BAR 0, the rsp code looks as in the
- * example given below.
- *
- * .. code-block:: c
- *
- * static const struct drm_driver example_driver = {
- * ...
- * };
- *
- * static int remove_conflicting_framebuffers(struct pci_dev *pdev)
- * {
- * resource_size_t base, size;
- * int ret;
- *
- * base = pci_resource_start(pdev, 0);
- * size = pci_resource_len(pdev, 0);
- *
- * return drm_aperture_remove_conflicting_framebuffers(base, size,
- * &example_driver);
- * }
- *
- * static int probe(struct pci_dev *pdev)
- * {
- * int ret;
- *
- * // Remove any generic drivers...
- * ret = remove_conflicting_framebuffers(pdev);
- * if (ret)
- * return ret;
- *
- * // ... and initialize the hardware.
- * ...
- *
- * drm_dev_register();
- *
- * return 0;
- * }
- *
- * PCI device drivers should call
- * drm_aperture_remove_conflicting_pci_framebuffers() and let it detect the
- * framebuffer apertures automatically. Device drivers without knowledge of
- * the framebuffer's location shall call drm_aperture_remove_framebuffers(),
- * which removes all drivers for known framebuffer.
- *
- * Drivers that are susceptible to being removed by other drivers, such as
- * generic EFI or VESA drivers, have to register themselves as owners of their
- * given framebuffer memory. Ownership of the framebuffer memory is achieved
- * by calling devm_aperture_acquire_from_firmware(). On success, the driver
- * is the owner of the framebuffer range. The function fails if the
- * framebuffer is already owned by another driver. See below for an example.
- *
- * .. code-block:: c
- *
- * static int acquire_framebuffers(struct drm_device *dev, struct platform_device *pdev)
- * {
- * resource_size_t base, size;
- *
- * mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
- * if (!mem)
- * return -EINVAL;
- * base = mem->start;
- * size = resource_size(mem);
- *
- * return devm_acquire_aperture_from_firmware(dev, base, size);
- * }
- *
- * static int probe(struct platform_device *pdev)
- * {
- * struct drm_device *dev;
- * int ret;
- *
- * // ... Initialize the device...
- * dev = devm_drm_dev_alloc();
- * ...
- *
- * // ... and acquire ownership of the framebuffer.
- * ret = acquire_framebuffers(dev, pdev);
- * if (ret)
- * return ret;
- *
- * drm_dev_register(dev, 0);
- *
- * return 0;
- * }
- *
- * The generic driver is now subject to forced removal by other drivers. This
- * only works for platform drivers that support hot unplug.
- * When a driver calls drm_aperture_remove_conflicting_framebuffers() et al.
- * for the registered framebuffer range, the aperture helpers call
- * platform_device_unregister() and the generic driver unloads itself. It
- * may not access the device's registers, framebuffer memory, ROM, etc
- * afterwards.
- */
-
-/**
- * devm_aperture_acquire_from_firmware - Acquires ownership of a firmware framebuffer
- * on behalf of a DRM driver.
- * @dev: the DRM device to own the framebuffer memory
- * @base: the framebuffer's byte offset in physical memory
- * @size: the framebuffer size in bytes
- *
- * Installs the given device as the new owner of the framebuffer. The function
- * expects the framebuffer to be provided by a platform device that has been
- * set up by firmware. Firmware can be any generic interface, such as EFI,
- * VESA, VGA, etc. If the native hardware driver takes over ownership of the
- * framebuffer range, the firmware state gets lost. Aperture helpers will then
- * unregister the platform device automatically. Acquired apertures are
- * released automatically if the underlying device goes away.
- *
- * The function fails if the framebuffer range, or parts of it, is currently
- * owned by another driver. To evict current owners, callers should use
- * drm_aperture_remove_conflicting_framebuffers() et al. before calling this
- * function. The function also fails if the given device is not a platform
- * device.
- *
- * Returns:
- * 0 on success, or a negative errno value otherwise.
- */
-int devm_aperture_acquire_from_firmware(struct drm_device *dev, resource_size_t base,
- resource_size_t size)
-{
- struct platform_device *pdev;
-
- if (drm_WARN_ON(dev, !dev_is_platform(dev->dev)))
- return -EINVAL;
-
- pdev = to_platform_device(dev->dev);
-
- return devm_aperture_acquire_for_platform_device(pdev, base, size);
-}
-EXPORT_SYMBOL(devm_aperture_acquire_from_firmware);
-
-/**
- * drm_aperture_remove_conflicting_framebuffers - remove existing framebuffers in the given range
- * @base: the aperture's base address in physical memory
- * @size: aperture size in bytes
- * @req_driver: requesting DRM driver
- *
- * This function removes graphics device drivers which use the memory range described by
- * @base and @size.
- *
- * Returns:
- * 0 on success, or a negative errno code otherwise
- */
-int drm_aperture_remove_conflicting_framebuffers(resource_size_t base, resource_size_t size,
- const struct drm_driver *req_driver)
-{
- return aperture_remove_conflicting_devices(base, size, req_driver->name);
-}
-EXPORT_SYMBOL(drm_aperture_remove_conflicting_framebuffers);
-
-/**
- * drm_aperture_remove_conflicting_pci_framebuffers - remove existing framebuffers for PCI devices
- * @pdev: PCI device
- * @req_driver: requesting DRM driver
- *
- * This function removes graphics device drivers using the memory range configured
- * for any of @pdev's memory bars. The function assumes that a PCI device with
- * shadowed ROM drives a primary display and so kicks out vga16fb.
- *
- * Returns:
- * 0 on success, or a negative errno code otherwise
- */
-int drm_aperture_remove_conflicting_pci_framebuffers(struct pci_dev *pdev,
- const struct drm_driver *req_driver)
-{
- return aperture_remove_conflicting_pci_devices(pdev, req_driver->name);
-}
-EXPORT_SYMBOL(drm_aperture_remove_conflicting_pci_framebuffers);
diff --git a/include/drm/drm_aperture.h b/include/drm/drm_aperture.h
deleted file mode 100644
index cbe33b49fd5d..000000000000
--- a/include/drm/drm_aperture.h
+++ /dev/null
@@ -1,38 +0,0 @@
-/* SPDX-License-Identifier: MIT */
-
-#ifndef _DRM_APERTURE_H_
-#define _DRM_APERTURE_H_
-
-#include <linux/types.h>
-
-struct drm_device;
-struct drm_driver;
-struct pci_dev;
-
-int devm_aperture_acquire_from_firmware(struct drm_device *dev, resource_size_t base,
- resource_size_t size);
-
-int drm_aperture_remove_conflicting_framebuffers(resource_size_t base, resource_size_t size,
- const struct drm_driver *req_driver);
-
-int drm_aperture_remove_conflicting_pci_framebuffers(struct pci_dev *pdev,
- const struct drm_driver *req_driver);
-
-/**
- * drm_aperture_remove_framebuffers - remove all existing framebuffers
- * @req_driver: requesting DRM driver
- *
- * This function removes all graphics device drivers. Use this function on systems
- * that can have their framebuffer located anywhere in memory.
- *
- * Returns:
- * 0 on success, or a negative errno code otherwise
- */
-static inline int
-drm_aperture_remove_framebuffers(const struct drm_driver *req_driver)
-{
- return drm_aperture_remove_conflicting_framebuffers(0, (resource_size_t)-1,
- req_driver);
-}
-
-#endif
--
2.46.0
^ permalink raw reply related [flat|nested] 41+ messages in thread* RE: [PATCH 28/28] drm: Remove DRM aperture helpers
2024-09-30 13:03 ` [PATCH 28/28] drm: Remove DRM " Thomas Zimmermann
@ 2024-09-30 14:06 ` Deucher, Alexander
0 siblings, 0 replies; 41+ messages in thread
From: Deucher, Alexander @ 2024-09-30 14:06 UTC (permalink / raw)
To: Thomas Zimmermann, javierm@redhat.com, airlied@gmail.com,
simona@ffwll.ch, maarten.lankhorst@linux.intel.com,
mripard@kernel.org
Cc: dri-devel@lists.freedesktop.org, amd-gfx@lists.freedesktop.org,
intel-gfx@lists.freedesktop.org, intel-xe@lists.freedesktop.org,
Jonathan Corbet
[Public]
> -----Original Message-----
> From: amd-gfx <amd-gfx-bounces@lists.freedesktop.org> On Behalf Of Thomas
> Zimmermann
> Sent: Monday, September 30, 2024 9:03 AM
> To: javierm@redhat.com; airlied@gmail.com; simona@ffwll.ch;
> maarten.lankhorst@linux.intel.com; mripard@kernel.org
> Cc: dri-devel@lists.freedesktop.org; amd-gfx@lists.freedesktop.org; intel-
> gfx@lists.freedesktop.org; intel-xe@lists.freedesktop.org; Thomas Zimmermann
> <tzimmermann@suse.de>; Jonathan Corbet <corbet@lwn.net>
> Subject: [PATCH 28/28] drm: Remove DRM aperture helpers
>
> The DRM aperture helpers are wrappers around video helpers from
> <linux/aperture.h>. There are no callers of these functions. Remove them entirely.
>
> Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
> Cc: Jonathan Corbet <corbet@lwn.net>
Series is:
Acked-by: Alex Deucher <alexander.deucher@amd.com>
> ---
> Documentation/gpu/drm-internals.rst | 12 --
> MAINTAINERS | 2 -
> drivers/gpu/drm/Makefile | 1 -
> drivers/gpu/drm/drm_aperture.c | 192 ----------------------------
> include/drm/drm_aperture.h | 38 ------
> 5 files changed, 245 deletions(-)
> delete mode 100644 drivers/gpu/drm/drm_aperture.c delete mode 100644
> include/drm/drm_aperture.h
>
> diff --git a/Documentation/gpu/drm-internals.rst b/Documentation/gpu/drm-
> internals.rst
> index 11d9a5730fb2..cb9ae282771c 100644
> --- a/Documentation/gpu/drm-internals.rst
> +++ b/Documentation/gpu/drm-internals.rst
> @@ -75,18 +75,6 @@ Module Initialization .. kernel-doc::
> include/drm/drm_module.h
> :doc: overview
>
> -Managing Ownership of the Framebuffer Aperture
> -----------------------------------------------
> -
> -.. kernel-doc:: drivers/gpu/drm/drm_aperture.c
> - :doc: overview
> -
> -.. kernel-doc:: include/drm/drm_aperture.h
> - :internal:
> -
> -.. kernel-doc:: drivers/gpu/drm/drm_aperture.c
> - :export:
> -
> Device Instance and Driver Handling
> -----------------------------------
>
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 5a0b7bfb6315..e71e12085a9f 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -7097,12 +7097,10 @@ M: Javier Martinez Canillas <javierm@redhat.com>
> L: dri-devel@lists.freedesktop.org
> S: Maintained
> T: git https://gitlab.freedesktop.org/drm/misc/kernel.git
> -F: drivers/gpu/drm/drm_aperture.c
> F: drivers/gpu/drm/tiny/ofdrm.c
> F: drivers/gpu/drm/tiny/simpledrm.c
> F: drivers/video/aperture.c
> F: drivers/video/nomodeset.c
> -F: include/drm/drm_aperture.h
> F: include/linux/aperture.h
> F: include/video/nomodeset.h
>
> diff --git a/drivers/gpu/drm/Makefile b/drivers/gpu/drm/Makefile index
> 3894f43f6d47..31d8bf60a2fd 100644
> --- a/drivers/gpu/drm/Makefile
> +++ b/drivers/gpu/drm/Makefile
> @@ -34,7 +34,6 @@ endif
> subdir-ccflags-$(CONFIG_DRM_WERROR) += -Werror
>
> drm-y := \
> - drm_aperture.o \
> drm_atomic.o \
> drm_atomic_uapi.o \
> drm_auth.o \
> diff --git a/drivers/gpu/drm/drm_aperture.c b/drivers/gpu/drm/drm_aperture.c deleted
> file mode 100644 index 5729f3bb4398..000000000000
> --- a/drivers/gpu/drm/drm_aperture.c
> +++ /dev/null
> @@ -1,192 +0,0 @@
> -// SPDX-License-Identifier: MIT
> -
> -#include <linux/aperture.h>
> -#include <linux/platform_device.h>
> -
> -#include <drm/drm_aperture.h>
> -#include <drm/drm_drv.h>
> -#include <drm/drm_print.h>
> -
> -/**
> - * DOC: overview
> - *
> - * A graphics device might be supported by different drivers, but only one
> - * driver can be active at any given time. Many systems load a generic
> - * graphics drivers, such as EFI-GOP or VESA, early during the boot process.
> - * During later boot stages, they replace the generic driver with a dedicated,
> - * hardware-specific driver. To take over the device the dedicated driver
> - * first has to remove the generic driver. DRM aperture functions manage
> - * ownership of DRM framebuffer memory and hand-over between drivers.
> - *
> - * DRM drivers should call drm_aperture_remove_conflicting_framebuffers()
> - * at the top of their probe function. The function removes any generic
> - * driver that is currently associated with the given framebuffer memory.
> - * If the framebuffer is located at PCI BAR 0, the rsp code looks as in the
> - * example given below.
> - *
> - * .. code-block:: c
> - *
> - * static const struct drm_driver example_driver = {
> - * ...
> - * };
> - *
> - * static int remove_conflicting_framebuffers(struct pci_dev *pdev)
> - * {
> - * resource_size_t base, size;
> - * int ret;
> - *
> - * base = pci_resource_start(pdev, 0);
> - * size = pci_resource_len(pdev, 0);
> - *
> - * return drm_aperture_remove_conflicting_framebuffers(base, size,
> - * &example_driver);
> - * }
> - *
> - * static int probe(struct pci_dev *pdev)
> - * {
> - * int ret;
> - *
> - * // Remove any generic drivers...
> - * ret = remove_conflicting_framebuffers(pdev);
> - * if (ret)
> - * return ret;
> - *
> - * // ... and initialize the hardware.
> - * ...
> - *
> - * drm_dev_register();
> - *
> - * return 0;
> - * }
> - *
> - * PCI device drivers should call
> - * drm_aperture_remove_conflicting_pci_framebuffers() and let it detect the
> - * framebuffer apertures automatically. Device drivers without knowledge of
> - * the framebuffer's location shall call drm_aperture_remove_framebuffers(),
> - * which removes all drivers for known framebuffer.
> - *
> - * Drivers that are susceptible to being removed by other drivers, such as
> - * generic EFI or VESA drivers, have to register themselves as owners of their
> - * given framebuffer memory. Ownership of the framebuffer memory is achieved
> - * by calling devm_aperture_acquire_from_firmware(). On success, the driver
> - * is the owner of the framebuffer range. The function fails if the
> - * framebuffer is already owned by another driver. See below for an example.
> - *
> - * .. code-block:: c
> - *
> - * static int acquire_framebuffers(struct drm_device *dev, struct platform_device
> *pdev)
> - * {
> - * resource_size_t base, size;
> - *
> - * mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> - * if (!mem)
> - * return -EINVAL;
> - * base = mem->start;
> - * size = resource_size(mem);
> - *
> - * return devm_acquire_aperture_from_firmware(dev, base, size);
> - * }
> - *
> - * static int probe(struct platform_device *pdev)
> - * {
> - * struct drm_device *dev;
> - * int ret;
> - *
> - * // ... Initialize the device...
> - * dev = devm_drm_dev_alloc();
> - * ...
> - *
> - * // ... and acquire ownership of the framebuffer.
> - * ret = acquire_framebuffers(dev, pdev);
> - * if (ret)
> - * return ret;
> - *
> - * drm_dev_register(dev, 0);
> - *
> - * return 0;
> - * }
> - *
> - * The generic driver is now subject to forced removal by other drivers. This
> - * only works for platform drivers that support hot unplug.
> - * When a driver calls drm_aperture_remove_conflicting_framebuffers() et al.
> - * for the registered framebuffer range, the aperture helpers call
> - * platform_device_unregister() and the generic driver unloads itself. It
> - * may not access the device's registers, framebuffer memory, ROM, etc
> - * afterwards.
> - */
> -
> -/**
> - * devm_aperture_acquire_from_firmware - Acquires ownership of a firmware
> framebuffer
> - * on behalf of a DRM driver.
> - * @dev: the DRM device to own the framebuffer memory
> - * @base: the framebuffer's byte offset in physical memory
> - * @size: the framebuffer size in bytes
> - *
> - * Installs the given device as the new owner of the framebuffer. The function
> - * expects the framebuffer to be provided by a platform device that has been
> - * set up by firmware. Firmware can be any generic interface, such as EFI,
> - * VESA, VGA, etc. If the native hardware driver takes over ownership of the
> - * framebuffer range, the firmware state gets lost. Aperture helpers will then
> - * unregister the platform device automatically. Acquired apertures are
> - * released automatically if the underlying device goes away.
> - *
> - * The function fails if the framebuffer range, or parts of it, is currently
> - * owned by another driver. To evict current owners, callers should use
> - * drm_aperture_remove_conflicting_framebuffers() et al. before calling this
> - * function. The function also fails if the given device is not a platform
> - * device.
> - *
> - * Returns:
> - * 0 on success, or a negative errno value otherwise.
> - */
> -int devm_aperture_acquire_from_firmware(struct drm_device *dev, resource_size_t
> base,
> - resource_size_t size)
> -{
> - struct platform_device *pdev;
> -
> - if (drm_WARN_ON(dev, !dev_is_platform(dev->dev)))
> - return -EINVAL;
> -
> - pdev = to_platform_device(dev->dev);
> -
> - return devm_aperture_acquire_for_platform_device(pdev, base, size);
> -}
> -EXPORT_SYMBOL(devm_aperture_acquire_from_firmware);
> -
> -/**
> - * drm_aperture_remove_conflicting_framebuffers - remove existing framebuffers in
> the given range
> - * @base: the aperture's base address in physical memory
> - * @size: aperture size in bytes
> - * @req_driver: requesting DRM driver
> - *
> - * This function removes graphics device drivers which use the memory range
> described by
> - * @base and @size.
> - *
> - * Returns:
> - * 0 on success, or a negative errno code otherwise
> - */
> -int drm_aperture_remove_conflicting_framebuffers(resource_size_t base,
> resource_size_t size,
> - const struct drm_driver *req_driver)
> -{
> - return aperture_remove_conflicting_devices(base, size, req_driver->name);
> -}
> -EXPORT_SYMBOL(drm_aperture_remove_conflicting_framebuffers);
> -
> -/**
> - * drm_aperture_remove_conflicting_pci_framebuffers - remove existing
> framebuffers for PCI devices
> - * @pdev: PCI device
> - * @req_driver: requesting DRM driver
> - *
> - * This function removes graphics device drivers using the memory range
> configured
> - * for any of @pdev's memory bars. The function assumes that a PCI device with
> - * shadowed ROM drives a primary display and so kicks out vga16fb.
> - *
> - * Returns:
> - * 0 on success, or a negative errno code otherwise
> - */
> -int drm_aperture_remove_conflicting_pci_framebuffers(struct pci_dev *pdev,
> - const struct drm_driver *req_driver)
> -{
> - return aperture_remove_conflicting_pci_devices(pdev, req_driver->name);
> -}
> -EXPORT_SYMBOL(drm_aperture_remove_conflicting_pci_framebuffers);
> diff --git a/include/drm/drm_aperture.h b/include/drm/drm_aperture.h deleted file
> mode 100644 index cbe33b49fd5d..000000000000
> --- a/include/drm/drm_aperture.h
> +++ /dev/null
> @@ -1,38 +0,0 @@
> -/* SPDX-License-Identifier: MIT */
> -
> -#ifndef _DRM_APERTURE_H_
> -#define _DRM_APERTURE_H_
> -
> -#include <linux/types.h>
> -
> -struct drm_device;
> -struct drm_driver;
> -struct pci_dev;
> -
> -int devm_aperture_acquire_from_firmware(struct drm_device *dev, resource_size_t
> base,
> - resource_size_t size);
> -
> -int drm_aperture_remove_conflicting_framebuffers(resource_size_t base,
> resource_size_t size,
> - const struct drm_driver *req_driver);
> -
> -int drm_aperture_remove_conflicting_pci_framebuffers(struct pci_dev *pdev,
> - const struct drm_driver *req_driver);
> -
> -/**
> - * drm_aperture_remove_framebuffers - remove all existing framebuffers
> - * @req_driver: requesting DRM driver
> - *
> - * This function removes all graphics device drivers. Use this function on systems
> - * that can have their framebuffer located anywhere in memory.
> - *
> - * Returns:
> - * 0 on success, or a negative errno code otherwise
> - */
> -static inline int
> -drm_aperture_remove_framebuffers(const struct drm_driver *req_driver) -{
> - return drm_aperture_remove_conflicting_framebuffers(0, (resource_size_t)-1,
> - req_driver);
> -}
> -
> -#endif
> --
> 2.46.0
^ permalink raw reply [flat|nested] 41+ messages in thread
* Re: [PATCH 00/28] drm: Remove DRM aperture helpers
2024-09-30 13:02 [PATCH 00/28] drm: Remove DRM aperture helpers Thomas Zimmermann
` (27 preceding siblings ...)
2024-09-30 13:03 ` [PATCH 28/28] drm: Remove DRM " Thomas Zimmermann
@ 2024-09-30 13:26 ` Javier Martinez Canillas
2024-10-01 3:14 ` ✗ Fi.CI.CHECKPATCH: warning for " Patchwork
` (3 subsequent siblings)
32 siblings, 0 replies; 41+ messages in thread
From: Javier Martinez Canillas @ 2024-09-30 13:26 UTC (permalink / raw)
To: Thomas Zimmermann, airlied, simona, maarten.lankhorst, mripard
Cc: dri-devel, amd-gfx, intel-gfx, intel-xe, Thomas Zimmermann
Thomas Zimmermann <tzimmermann@suse.de> writes:
Hello Thomas,
> DRM's aperture helpers are merely wrappers around the respective
> helpers in drivers/video/. The DRM interface existed first, but was
> later generalized for use with fbdev and a few other graphics-related
> places in the kernel. It is time to remove the DRM wrappers and call
> the video helpers directly.
>
> No functional changes intended. This series should replace one interface
> with another. Individual patches could go into the various trees and the
> DRM wrappers can be removed when all driver changes have been merged.
>
Thanks for doing this cleanup. Makes a lot of sense for me to drop it.
For the whole series:
Acked-by: Javier Martinez Canillas <javierm@redhat.com>
--
Best regards,
Javier Martinez Canillas
Core Platforms
Red Hat
^ permalink raw reply [flat|nested] 41+ messages in thread* ✗ Fi.CI.CHECKPATCH: warning for drm: Remove DRM aperture helpers
2024-09-30 13:02 [PATCH 00/28] drm: Remove DRM aperture helpers Thomas Zimmermann
` (28 preceding siblings ...)
2024-09-30 13:26 ` [PATCH 00/28] " Javier Martinez Canillas
@ 2024-10-01 3:14 ` Patchwork
2024-10-01 3:29 ` ✓ Fi.CI.BAT: success " Patchwork
` (2 subsequent siblings)
32 siblings, 0 replies; 41+ messages in thread
From: Patchwork @ 2024-10-01 3:14 UTC (permalink / raw)
To: Thomas Zimmermann; +Cc: intel-gfx
== Series Details ==
Series: drm: Remove DRM aperture helpers
URL : https://patchwork.freedesktop.org/series/139307/
State : warning
== Summary ==
Error: dim checkpatch failed
626bcab951ea drm/amdgpu: Use video aperture helpers
af1cd7064fe6 drm/arm/hdlcd: Use video aperture helpers
9a70c2328511 drm/armada: Use video aperture helpers
ba403d18168b drm/ast: Use video aperture helpers
11a7b92f4db0 drm/hisilicon/hibmc: Use video aperture helpers
7c3019f50f0e drm/hyperv-drm: Use video aperture helpers
b543c1deabec drm/i915: Use video aperture helpers
b7ef12d4e8c2 drm/loongson: Use video aperture helpers
8fad2439063c drm/meson: Use video aperture helpers
074919b8664e drm/mgag200: Use video aperture helpers
0828ec3bdb24 drm/msm: Use video aperture helpers
bdc6638aeffa drm/nouveau: Use video aperture helpers
224a2dd31179 drm/ofdrm: Use video aperture helpers
0d57c80efa1b drm/qxl: Use video aperture helpers
99ccf9702771 drm/radeon: Use video aperture helpers
bba39a82f270 drm/rockchip: Use video aperture helpers
dce20c172069 drm/simpledrm: Use video aperture helpers
39a2e6a93f78 drm/stm: Use video aperture helpers
ec884a002d0d drm/sun4i: Use video aperture helpers
b50b50bc070a drm/tegra: Use video aperture helpers
31190b33aa52 drm/bochs: Use video aperture helpers
d9fc0c294ae5 drm/cirrus: Use video aperture helpers
-:14: WARNING:OBSOLETE: drivers/gpu/drm/tiny/cirrus.c is marked as 'obsolete' in the MAINTAINERS hierarchy. No unnecessary modifications please.
-:17: WARNING:OBSOLETE: drivers/gpu/drm/tiny/cirrus.c is marked as 'obsolete' in the MAINTAINERS hierarchy. No unnecessary modifications please.
total: 0 errors, 2 warnings, 0 checks, 22 lines checked
cdebc6119f0a drm/vboxvideo: Use video aperture helpers
86c0272e09ea drm/vc4: Use video aperture helpers
b069ca390605 drm/virtgpu: Use video aperture helpers
b94cb4e30845 drm/vmwgfx: Use video aperture helpers
495e7ad8d03f drm/xe: Use video aperture helpers
345ea11832f1 drm: Remove DRM aperture helpers
-:67: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#67:
deleted file mode 100644
total: 0 errors, 1 warnings, 0 checks, 37 lines checked
^ permalink raw reply [flat|nested] 41+ messages in thread* ✓ Fi.CI.BAT: success for drm: Remove DRM aperture helpers
2024-09-30 13:02 [PATCH 00/28] drm: Remove DRM aperture helpers Thomas Zimmermann
` (29 preceding siblings ...)
2024-10-01 3:14 ` ✗ Fi.CI.CHECKPATCH: warning for " Patchwork
@ 2024-10-01 3:29 ` Patchwork
2024-10-01 17:18 ` ✗ Fi.CI.IGT: failure " Patchwork
2024-10-21 12:17 ` (subset) [PATCH 00/28] " Dmitry Baryshkov
32 siblings, 0 replies; 41+ messages in thread
From: Patchwork @ 2024-10-01 3:29 UTC (permalink / raw)
To: Thomas Zimmermann; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 4347 bytes --]
== Series Details ==
Series: drm: Remove DRM aperture helpers
URL : https://patchwork.freedesktop.org/series/139307/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_15461 -> Patchwork_139307v1
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/index.html
Participating hosts (42 -> 40)
------------------------------
Missing (2): bat-kbl-2 fi-snb-2520m
Known issues
------------
Here are the changes found in Patchwork_139307v1 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live@gt_heartbeat:
- bat-arls-5: NOTRUN -> [DMESG-WARN][1] ([i915#11637] / [i915#12133]) +8 other tests dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/bat-arls-5/igt@i915_selftest@live@gt_heartbeat.html
* igt@i915_selftest@live@gt_tlb:
- bat-arls-5: NOTRUN -> [DMESG-WARN][2] ([i915#11637]) +21 other tests dmesg-warn
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/bat-arls-5/igt@i915_selftest@live@gt_tlb.html
* igt@i915_selftest@live@objects:
- bat-arls-5: NOTRUN -> [DMESG-WARN][3] ([i915#10341] / [i915#11637]) +2 other tests dmesg-warn
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/bat-arls-5/igt@i915_selftest@live@objects.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- bat-arls-5: [PASS][4] -> [DMESG-WARN][5] ([i915#12253])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/bat-arls-5/igt@kms_pm_rpm@basic-pci-d3-state.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/bat-arls-5/igt@kms_pm_rpm@basic-pci-d3-state.html
#### Warnings ####
* igt@i915_module_load@reload:
- bat-arls-5: [DMESG-WARN][6] ([i915#11637] / [i915#1982]) -> [DMESG-WARN][7] ([i915#11637])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/bat-arls-5/igt@i915_module_load@reload.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/bat-arls-5/igt@i915_module_load@reload.html
* igt@i915_pm_rpm@module-reload:
- fi-kbl-7567u: [DMESG-WARN][8] ([i915#11621] / [i915#180] / [i915#1982]) -> [DMESG-WARN][9] ([i915#11621] / [i915#180])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/fi-kbl-7567u/igt@i915_pm_rpm@module-reload.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/fi-kbl-7567u/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live:
- bat-arls-5: [ABORT][10] ([i915#12061] / [i915#12133]) -> [DMESG-WARN][11] ([i915#10341] / [i915#12133])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/bat-arls-5/igt@i915_selftest@live.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/bat-arls-5/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-arls-5: [ABORT][12] ([i915#12061]) -> [DMESG-WARN][13] ([i915#10341] / [i915#11637])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/bat-arls-5/igt@i915_selftest@live@workarounds.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/bat-arls-5/igt@i915_selftest@live@workarounds.html
[i915#10341]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10341
[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#12253]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12253
[i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
Build changes
-------------
* Linux: CI_DRM_15461 -> Patchwork_139307v1
CI-20190529: 20190529
CI_DRM_15461: 4e4d7873ac763aa0bd9207ea9ec2b89bb52a6fe1 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8043: 8043
Patchwork_139307v1: 4e4d7873ac763aa0bd9207ea9ec2b89bb52a6fe1 @ git://anongit.freedesktop.org/gfx-ci/linux
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/index.html
[-- Attachment #2: Type: text/html, Size: 6094 bytes --]
^ permalink raw reply [flat|nested] 41+ messages in thread* ✗ Fi.CI.IGT: failure for drm: Remove DRM aperture helpers
2024-09-30 13:02 [PATCH 00/28] drm: Remove DRM aperture helpers Thomas Zimmermann
` (30 preceding siblings ...)
2024-10-01 3:29 ` ✓ Fi.CI.BAT: success " Patchwork
@ 2024-10-01 17:18 ` Patchwork
2024-10-21 12:17 ` (subset) [PATCH 00/28] " Dmitry Baryshkov
32 siblings, 0 replies; 41+ messages in thread
From: Patchwork @ 2024-10-01 17:18 UTC (permalink / raw)
To: Thomas Zimmermann; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 100259 bytes --]
== Series Details ==
Series: drm: Remove DRM aperture helpers
URL : https://patchwork.freedesktop.org/series/139307/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15461_full -> Patchwork_139307v1_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_139307v1_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_139307v1_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 (9 -> 8)
------------------------------
Missing (1): shard-glk-0
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_139307v1_full:
### IGT changes ###
#### Possible regressions ####
* igt@drm_read@short-buffer-wakeup:
- shard-glk: NOTRUN -> [INCOMPLETE][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-glk1/igt@drm_read@short-buffer-wakeup.html
* igt@gem_ctx_isolation@preservation-s3@vcs0:
- shard-dg1: [PASS][2] -> [INCOMPLETE][3]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg1-16/igt@gem_ctx_isolation@preservation-s3@vcs0.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-13/igt@gem_ctx_isolation@preservation-s3@vcs0.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-mtlp: NOTRUN -> [SKIP][4]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-mtlp-6/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_joiner@basic-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][5] +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-7/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][6]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-3/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
#### Warnings ####
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a1:
- shard-tglu: [FAIL][7] ([i915#2122]) -> [FAIL][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-tglu-3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a1.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a1.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@b-edp1:
- shard-mtlp: [FAIL][9] ([i915#2122]) -> [FAIL][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-mtlp-8/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-edp1.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-mtlp-6/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-edp1.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-dg1: [SKIP][11] ([i915#4423]) -> [SKIP][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg1-14/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-16/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_joiner@basic-force-ultra-joiner:
- {shard-tglu-1}: NOTRUN -> [SKIP][13]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-1/igt@kms_joiner@basic-force-ultra-joiner.html
Known issues
------------
Here are the changes found in Patchwork_139307v1_full that come from known issues:
### CI changes ###
#### Possible fixes ####
* boot:
- shard-dg1: ([PASS][14], [PASS][15], [PASS][16], [PASS][17], [PASS][18], [PASS][19], [PASS][20], [PASS][21], [PASS][22], [FAIL][23], [PASS][24], [PASS][25], [PASS][26], [PASS][27], [PASS][28], [PASS][29], [PASS][30], [PASS][31], [PASS][32], [PASS][33], [PASS][34], [PASS][35], [PASS][36], [PASS][37]) -> ([PASS][38], [PASS][39], [PASS][40], [PASS][41], [PASS][42], [PASS][43], [PASS][44], [PASS][45], [PASS][46], [PASS][47], [PASS][48], [PASS][49], [PASS][50], [PASS][51], [PASS][52], [PASS][53], [PASS][54], [PASS][55], [PASS][56], [PASS][57], [PASS][58], [PASS][59], [PASS][60], [PASS][61], [PASS][62])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg1-15/boot.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg1-12/boot.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg1-12/boot.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg1-12/boot.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg1-13/boot.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg1-13/boot.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg1-14/boot.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg1-14/boot.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg1-14/boot.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg1-15/boot.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg1-15/boot.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg1-16/boot.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg1-16/boot.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg1-16/boot.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg1-16/boot.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg1-17/boot.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg1-17/boot.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg1-17/boot.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg1-18/boot.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg1-18/boot.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg1-18/boot.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg1-19/boot.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg1-19/boot.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg1-19/boot.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-12/boot.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-12/boot.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-12/boot.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-13/boot.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-13/boot.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-13/boot.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-13/boot.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-14/boot.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-14/boot.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-15/boot.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-15/boot.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-15/boot.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-16/boot.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-16/boot.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-16/boot.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-17/boot.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-17/boot.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-17/boot.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-17/boot.html
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-18/boot.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-18/boot.html
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-18/boot.html
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-19/boot.html
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-19/boot.html
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-19/boot.html
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- shard-tglu: NOTRUN -> [SKIP][63] ([i915#9318])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-3/igt@debugfs_test@basic-hwmon.html
* igt@device_reset@cold-reset-bound:
- shard-tglu: NOTRUN -> [SKIP][64] ([i915#11078])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-2/igt@device_reset@cold-reset-bound.html
* igt@drm_fdinfo@busy@vcs1:
- shard-dg1: NOTRUN -> [SKIP][65] ([i915#8414]) +11 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-18/igt@drm_fdinfo@busy@vcs1.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-tglu: NOTRUN -> [SKIP][66] ([i915#9323])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-9/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-dg1: NOTRUN -> [SKIP][67] ([i915#3555] / [i915#9323])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-18/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][68] ([i915#9323]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-4/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0:
- shard-dg2: NOTRUN -> [INCOMPLETE][69] ([i915#7297])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-10/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html
* igt@gem_close_race@multigpu-basic-process:
- shard-tglu: NOTRUN -> [SKIP][70] ([i915#7697])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-2/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-rkl: NOTRUN -> [SKIP][71] ([i915#7697])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-4/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-tglu: NOTRUN -> [SKIP][72] ([i915#6335]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-3/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_engines@invalid-engines:
- shard-tglu: NOTRUN -> [FAIL][73] ([i915#12027])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-3/igt@gem_ctx_engines@invalid-engines.html
* igt@gem_ctx_persistence@engines-queued:
- shard-snb: NOTRUN -> [SKIP][74] ([i915#1099])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-snb2/igt@gem_ctx_persistence@engines-queued.html
* igt@gem_ctx_sseu@invalid-args:
- shard-rkl: NOTRUN -> [SKIP][75] ([i915#280])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-4/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_eio@reset-stress:
- shard-snb: NOTRUN -> [FAIL][76] ([i915#8898])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-snb2/igt@gem_eio@reset-stress.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-rkl: NOTRUN -> [SKIP][77] ([i915#4525]) +2 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-3/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-tglu: NOTRUN -> [FAIL][78] ([i915#6117])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-3/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: NOTRUN -> [SKIP][79] ([i915#6344])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-3/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_fair@basic-none-rrul:
- shard-mtlp: NOTRUN -> [SKIP][80] ([i915#4473] / [i915#4771])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-mtlp-1/igt@gem_exec_fair@basic-none-rrul.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-tglu: NOTRUN -> [FAIL][81] ([i915#2842]) +5 other tests fail
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-9/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-none@bcs0:
- shard-rkl: NOTRUN -> [FAIL][82] ([i915#2842]) +4 other tests fail
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-7/igt@gem_exec_fair@basic-none@bcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-rkl: [PASS][83] -> [FAIL][84] ([i915#2842]) +1 other test fail
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-rkl-7/igt@gem_exec_fair@basic-pace-share@rcs0.html
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-5/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace-solo:
- shard-glk: NOTRUN -> [FAIL][85] ([i915#2842]) +1 other test fail
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-glk6/igt@gem_exec_fair@basic-pace-solo.html
* igt@gem_exec_flush@basic-uc-pro-default:
- shard-dg1: NOTRUN -> [SKIP][86] ([i915#3539] / [i915#4852]) +2 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-18/igt@gem_exec_flush@basic-uc-pro-default.html
* igt@gem_exec_reloc@basic-cpu-gtt:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#3281])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-4/igt@gem_exec_reloc@basic-cpu-gtt.html
- shard-dg1: NOTRUN -> [SKIP][88] ([i915#3281]) +4 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-18/igt@gem_exec_reloc@basic-cpu-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][89] ([i915#3281])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-mtlp-1/igt@gem_exec_reloc@basic-cpu-gtt.html
* igt@gem_exec_reloc@basic-gtt-wc-noreloc:
- shard-rkl: NOTRUN -> [SKIP][90] ([i915#3281]) +12 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
* igt@gem_exec_schedule@smoketest-all:
- shard-snb: NOTRUN -> [SKIP][91] +24 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-snb2/igt@gem_exec_schedule@smoketest-all.html
* igt@gem_exec_suspend@basic-s0:
- shard-dg2: [PASS][92] -> [INCOMPLETE][93] ([i915#11441]) +1 other test incomplete
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-8/igt@gem_exec_suspend@basic-s0.html
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-3/igt@gem_exec_suspend@basic-s0.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-dg1: [PASS][94] -> [ABORT][95] ([i915#7975] / [i915#8213]) +1 other test abort
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg1-17/igt@gem_exec_suspend@basic-s4-devices.html
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-14/igt@gem_exec_suspend@basic-s4-devices.html
* igt@gem_fence_thrash@bo-copy:
- shard-dg1: NOTRUN -> [SKIP][96] ([i915#4860])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-18/igt@gem_fence_thrash@bo-copy.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-tglu: NOTRUN -> [SKIP][97] ([i915#4613] / [i915#7582])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-2/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-rkl: NOTRUN -> [SKIP][98] ([i915#4613]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-4/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-dg1: NOTRUN -> [SKIP][99] ([i915#12193])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-18/igt@gem_lmem_swapping@verify-random-ccs.html
- shard-tglu: NOTRUN -> [SKIP][100] ([i915#4613]) +5 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-3/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_lmem_swapping@verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][101] ([i915#4565])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-18/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html
* igt@gem_media_fill@media-fill:
- shard-mtlp: NOTRUN -> [SKIP][102] ([i915#8289])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-mtlp-5/igt@gem_media_fill@media-fill.html
* igt@gem_mmap_gtt@basic-small-copy-odd:
- shard-dg1: NOTRUN -> [SKIP][103] ([i915#4077]) +2 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-18/igt@gem_mmap_gtt@basic-small-copy-odd.html
* igt@gem_mmap_gtt@big-bo:
- shard-dg2: NOTRUN -> [SKIP][104] ([i915#4077]) +2 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-11/igt@gem_mmap_gtt@big-bo.html
* igt@gem_mmap_wc@set-cache-level:
- shard-dg1: NOTRUN -> [SKIP][105] ([i915#4083])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-18/igt@gem_mmap_wc@set-cache-level.html
* igt@gem_partial_pwrite_pread@reads-snoop:
- shard-dg2: NOTRUN -> [SKIP][106] ([i915#3282])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-11/igt@gem_partial_pwrite_pread@reads-snoop.html
* igt@gem_partial_pwrite_pread@writes-after-reads-snoop:
- shard-dg1: NOTRUN -> [SKIP][107] ([i915#3282]) +3 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-18/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html
* igt@gem_pxp@create-protected-buffer:
- shard-dg2: NOTRUN -> [SKIP][108] ([i915#4270])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-11/igt@gem_pxp@create-protected-buffer.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-rkl: NOTRUN -> [SKIP][109] ([i915#4270]) +3 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-4/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_pxp@verify-pxp-stale-ctx-execution:
- shard-tglu: NOTRUN -> [SKIP][110] ([i915#4270]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-9/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
* igt@gem_readwrite@beyond-eob:
- shard-rkl: NOTRUN -> [SKIP][111] ([i915#3282]) +6 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-3/igt@gem_readwrite@beyond-eob.html
* igt@gem_render_tiled_blits@basic:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#4079])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-11/igt@gem_render_tiled_blits@basic.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-rkl: NOTRUN -> [SKIP][113] ([i915#8411])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-4/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-tglu: NOTRUN -> [SKIP][114] ([i915#3297]) +2 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-2/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#3297])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-11/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg1: NOTRUN -> [SKIP][116] ([i915#3297] / [i915#4880])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-18/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@relocations:
- shard-dg1: NOTRUN -> [SKIP][117] ([i915#3281] / [i915#3297])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-18/igt@gem_userptr_blits@relocations.html
* igt@gen9_exec_parse@shadow-peek:
- shard-rkl: NOTRUN -> [SKIP][118] ([i915#2527]) +4 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-4/igt@gen9_exec_parse@shadow-peek.html
* igt@gen9_exec_parse@unaligned-jump:
- shard-tglu: NOTRUN -> [SKIP][119] ([i915#2527] / [i915#2856]) +4 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-3/igt@gen9_exec_parse@unaligned-jump.html
- shard-mtlp: NOTRUN -> [SKIP][120] ([i915#2856])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-mtlp-1/igt@gen9_exec_parse@unaligned-jump.html
- shard-dg2: NOTRUN -> [SKIP][121] ([i915#2856])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-4/igt@gen9_exec_parse@unaligned-jump.html
- shard-dg1: NOTRUN -> [SKIP][122] ([i915#2527])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-18/igt@gen9_exec_parse@unaligned-jump.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: [PASS][123] -> [ABORT][124] ([i915#9820])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-rkl-2/igt@i915_module_load@reload-with-fault-injection.html
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-6/igt@i915_module_load@reload-with-fault-injection.html
- shard-snb: [PASS][125] -> [ABORT][126] ([i915#9820])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: [PASS][127] -> [ABORT][128] ([i915#10131] / [i915#10887] / [i915#9820])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-tglu: NOTRUN -> [SKIP][129] ([i915#8399])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-3/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_rps@reset:
- shard-tglu: NOTRUN -> [ABORT][130] ([i915#12309])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-3/igt@i915_pm_rps@reset.html
* igt@i915_pm_sseu@full-enable:
- shard-tglu: NOTRUN -> [SKIP][131] ([i915#4387])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-2/igt@i915_pm_sseu@full-enable.html
* igt@i915_selftest@mock:
- shard-tglu: NOTRUN -> [DMESG-WARN][132] ([i915#9311]) +1 other test dmesg-warn
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-3/igt@i915_selftest@mock.html
* igt@i915_selftest@mock@memory_region:
- shard-dg1: NOTRUN -> [DMESG-WARN][133] ([i915#9311]) +1 other test dmesg-warn
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-18/igt@i915_selftest@mock@memory_region.html
* igt@intel_hwmon@hwmon-read:
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#7707])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-4/igt@intel_hwmon@hwmon-read.html
* igt@intel_hwmon@hwmon-write:
- shard-tglu: NOTRUN -> [SKIP][135] ([i915#7707])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-9/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@bad-pitch-65536:
- shard-dg1: [PASS][136] -> [DMESG-WARN][137] ([i915#4423]) +3 other tests dmesg-warn
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg1-13/igt@kms_addfb_basic@bad-pitch-65536.html
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-18/igt@kms_addfb_basic@bad-pitch-65536.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-glk: NOTRUN -> [SKIP][138] ([i915#1769])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-glk6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1:
- shard-mtlp: [PASS][139] -> [FAIL][140] ([i915#11808] / [i915#5956]) +1 other test fail
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-mtlp-8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-mtlp-8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: NOTRUN -> [SKIP][141] ([i915#5286]) +7 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][142] ([i915#5286]) +4 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-dg1: NOTRUN -> [SKIP][143] ([i915#4538] / [i915#5286]) +4 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#4538] / [i915#5190]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-8/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
- shard-dg1: NOTRUN -> [SKIP][145] ([i915#3638]) +2 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-17/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
- shard-mtlp: NOTRUN -> [SKIP][146] +1 other test skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-mtlp-6/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][147] ([i915#3638]) +3 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-4/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][148] ([i915#4538]) +2 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-18/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][149] ([i915#6095]) +95 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-16/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][150] ([i915#12313]) +4 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-3/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#12313])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][152] ([i915#6095]) +4 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-mtlp-8/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-a-edp-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][153] ([i915#6095]) +54 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#12313])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-8/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
- shard-dg1: NOTRUN -> [SKIP][155] ([i915#12313])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-17/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-mtlp: NOTRUN -> [SKIP][156] ([i915#12313]) +1 other test skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-mtlp-1/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][157] ([i915#6095]) +60 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-4/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#10307] / [i915#6095]) +110 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-8/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-8/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-rkl: NOTRUN -> [SKIP][160] ([i915#3742])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-4/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#11616] / [i915#7213]) +3 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-8/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-tglu: NOTRUN -> [SKIP][162] ([i915#7828]) +10 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-3/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_color@degamma:
- shard-dg2: NOTRUN -> [SKIP][163] +3 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-11/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-dg1: NOTRUN -> [SKIP][164] ([i915#7828]) +5 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-18/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-mtlp: NOTRUN -> [SKIP][165] ([i915#7828])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-mtlp-1/igt@kms_chamelium_hpd@vga-hpd.html
- shard-dg2: NOTRUN -> [SKIP][166] ([i915#7828])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-4/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: NOTRUN -> [SKIP][167] ([i915#7828]) +6 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-1/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_content_protection@atomic:
- shard-tglu: NOTRUN -> [SKIP][168] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +1 other test skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-3/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][169] ([i915#3116] / [i915#3299]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-3/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#3116])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-4/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg1: NOTRUN -> [SKIP][171] ([i915#3299]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-18/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@mei-interface:
- shard-rkl: NOTRUN -> [SKIP][172] ([i915#9424]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-7/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@type1:
- shard-rkl: NOTRUN -> [SKIP][173] ([i915#7118] / [i915#9424])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-3/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-dg1: NOTRUN -> [SKIP][174] ([i915#3555]) +1 other test skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-18/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-tglu: NOTRUN -> [SKIP][175] ([i915#11453]) +1 other test skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-rkl: NOTRUN -> [SKIP][176] ([i915#11453])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-4/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-rkl: NOTRUN -> [SKIP][177] ([i915#3555]) +6 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-3/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-tglu: NOTRUN -> [SKIP][178] ([i915#3555]) +7 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-9/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-dg2: NOTRUN -> [SKIP][179] ([i915#11453])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-8/igt@kms_cursor_crc@cursor-sliding-512x512.html
- shard-dg1: NOTRUN -> [SKIP][180] ([i915#11453]) +1 other test skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-17/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_edge_walk@256x256-top-edge:
- shard-dg2: [PASS][181] -> [SKIP][182] ([i915#9197]) +27 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-3/igt@kms_cursor_edge_walk@256x256-top-edge.html
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-2/igt@kms_cursor_edge_walk@256x256-top-edge.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
- shard-glk: ([PASS][183], [PASS][184]) -> [FAIL][185] ([i915#72])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-glk5/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-glk4/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-glk3/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-rkl: NOTRUN -> [SKIP][186] ([i915#4103]) +1 other test skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-tglu: NOTRUN -> [SKIP][187] ([i915#4103])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-rkl: NOTRUN -> [SKIP][188] ([i915#8588])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-7/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-rkl: NOTRUN -> [SKIP][189] ([i915#3555] / [i915#3804])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#3804])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_aux_dev:
- shard-dg1: NOTRUN -> [SKIP][191] ([i915#1257])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-18/igt@kms_dp_aux_dev.html
- shard-tglu: NOTRUN -> [SKIP][192] ([i915#1257])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-3/igt@kms_dp_aux_dev.html
* igt@kms_dsc@dsc-basic:
- shard-rkl: NOTRUN -> [SKIP][193] ([i915#3555] / [i915#3840])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-3/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-tglu: NOTRUN -> [SKIP][194] ([i915#3840])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-3/igt@kms_dsc@dsc-fractional-bpp.html
- shard-mtlp: NOTRUN -> [SKIP][195] ([i915#3840] / [i915#9688])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-mtlp-1/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-rkl: NOTRUN -> [INCOMPLETE][196] ([i915#9878])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-7/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: NOTRUN -> [SKIP][197] ([i915#3955])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-tglu: NOTRUN -> [SKIP][198] ([i915#2065] / [i915#4854])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-3/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-dg1: NOTRUN -> [SKIP][199] ([i915#1839])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-18/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-3x:
- shard-rkl: NOTRUN -> [SKIP][200] ([i915#1839]) +1 other test skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-4/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@dp-mst:
- shard-tglu: NOTRUN -> [SKIP][201] ([i915#9337])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-9/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][202] ([i915#3637]) +6 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-3/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-mtlp: NOTRUN -> [SKIP][203] ([i915#3637])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-mtlp-6/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: NOTRUN -> [SKIP][204] +22 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-3/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@blocking-wf_vblank@a-hdmi-a2:
- shard-rkl: NOTRUN -> [FAIL][205] ([i915#11961])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-6/igt@kms_flip@blocking-wf_vblank@a-hdmi-a2.html
* igt@kms_flip@blocking-wf_vblank@b-hdmi-a1:
- shard-dg2: NOTRUN -> [FAIL][206] ([i915#2122]) +1 other test fail
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-4/igt@kms_flip@blocking-wf_vblank@b-hdmi-a1.html
* igt@kms_flip@blocking-wf_vblank@b-hdmi-a2:
- shard-rkl: NOTRUN -> [FAIL][207] ([i915#12053])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-6/igt@kms_flip@blocking-wf_vblank@b-hdmi-a2.html
* igt@kms_flip@dpms-off-confusion-interruptible:
- shard-dg1: [PASS][208] -> [DMESG-WARN][209] ([i915#1982] / [i915#4423])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg1-12/igt@kms_flip@dpms-off-confusion-interruptible.html
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-16/igt@kms_flip@dpms-off-confusion-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-dg1: [PASS][210] -> [FAIL][211] ([i915#2122])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg1-12/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-16/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a4:
- shard-dg1: NOTRUN -> [FAIL][212] ([i915#2122]) +1 other test fail
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-16/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a4.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-hdmi-a1:
- shard-glk: ([PASS][213], [PASS][214]) -> [FAIL][215] ([i915#2122])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-glk4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-hdmi-a1.html
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-glk3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-hdmi-a1.html
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-glk5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-hdmi-a1.html
- shard-tglu: [PASS][216] -> [FAIL][217] ([i915#2122]) +1 other test fail
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-tglu-3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-hdmi-a1.html
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-hdmi-a1.html
* igt@kms_flip@flip-vs-blocking-wf-vblank:
- shard-rkl: [PASS][218] -> [FAIL][219] ([i915#11989] / [i915#2122])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-rkl-7/igt@kms_flip@flip-vs-blocking-wf-vblank.html
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-5/igt@kms_flip@flip-vs-blocking-wf-vblank.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a2:
- shard-rkl: NOTRUN -> [FAIL][220] ([i915#12034])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-5/igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a2.html
* igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a2:
- shard-glk: NOTRUN -> [INCOMPLETE][221] ([i915#9878])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-glk1/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a2.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible:
- shard-tglu: NOTRUN -> [FAIL][222] ([i915#2122]) +2 other tests fail
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-9/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@d-edp1:
- shard-mtlp: [PASS][223] -> [FAIL][224] ([i915#2122])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-mtlp-8/igt@kms_flip@plain-flip-fb-recreate-interruptible@d-edp1.html
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-mtlp-6/igt@kms_flip@plain-flip-fb-recreate-interruptible@d-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-dg1: NOTRUN -> [SKIP][225] ([i915#2672] / [i915#3555]) +2 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-tglu: NOTRUN -> [SKIP][226] ([i915#2672] / [i915#3555]) +2 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][227] ([i915#2672] / [i915#3555] / [i915#8813])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
- shard-dg2: NOTRUN -> [SKIP][228] ([i915#2672] / [i915#3555])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][229] ([i915#2672])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][230] ([i915#2672]) +4 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
- shard-dg1: NOTRUN -> [SKIP][231] ([i915#2587] / [i915#2672]) +2 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling:
- shard-dg2: NOTRUN -> [SKIP][232] ([i915#2672] / [i915#3555] / [i915#5190])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-tglu: NOTRUN -> [SKIP][233] ([i915#2587] / [i915#2672] / [i915#3555])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][234] ([i915#2587] / [i915#2672]) +3 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][235] ([i915#2672]) +3 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-dg2: [PASS][236] -> [SKIP][237] ([i915#3555]) +2 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
- shard-rkl: NOTRUN -> [SKIP][238] ([i915#2672] / [i915#3555]) +3 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu:
- shard-dg2: [PASS][239] -> [SKIP][240] ([i915#5354]) +7 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu.html
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][241] ([i915#8708]) +1 other test skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][242] +17 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html
- shard-mtlp: NOTRUN -> [SKIP][243] ([i915#1825]) +2 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][244] ([i915#8708]) +10 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][245] ([i915#3458]) +1 other test skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#5354]) +3 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][247] ([i915#8708])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen:
- shard-tglu: NOTRUN -> [SKIP][248] +93 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt:
- shard-dg1: NOTRUN -> [SKIP][249] ([i915#3458]) +5 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][250] ([i915#3023]) +22 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][251] ([i915#5439])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][252] ([i915#1825]) +33 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-tglu: NOTRUN -> [SKIP][253] ([i915#3555] / [i915#8228]) +2 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-3/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@invalid-hdr:
- shard-dg1: NOTRUN -> [SKIP][254] ([i915#3555] / [i915#8228])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-18/igt@kms_hdr@invalid-hdr.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-rkl: NOTRUN -> [SKIP][255] ([i915#6301])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-4/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane@plane-position-hole:
- shard-dg2: [PASS][256] -> [SKIP][257] ([i915#8825]) +1 other test skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-7/igt@kms_plane@plane-position-hole.html
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-2/igt@kms_plane@plane-position-hole.html
* igt@kms_plane_alpha_blend@alpha-basic:
- shard-glk: NOTRUN -> [FAIL][258] ([i915#12178])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-glk6/igt@kms_plane_alpha_blend@alpha-basic.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][259] ([i915#7862]) +1 other test fail
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-glk6/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][260] ([i915#8292]) +1 other test fail
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-7/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- shard-rkl: NOTRUN -> [SKIP][261] ([i915#12247]) +8 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b:
- shard-mtlp: NOTRUN -> [SKIP][262] ([i915#12247]) +1 other test skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-mtlp-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20:
- shard-dg2: [PASS][263] -> [SKIP][264] ([i915#12247] / [i915#3558] / [i915#8152] / [i915#9423])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-d:
- shard-dg2: [PASS][265] -> [SKIP][266] ([i915#12247] / [i915#8152])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-d.html
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5:
- shard-tglu: NOTRUN -> [SKIP][267] ([i915#12247] / [i915#3555] / [i915#6953])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-9/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
- shard-tglu: NOTRUN -> [SKIP][268] ([i915#12247]) +13 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-9/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25:
- shard-dg2: [PASS][269] -> [SKIP][270] ([i915#3555] / [i915#6953] / [i915#8152] / [i915#9423])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-7/igt@kms_plane_scaling@planes-upscale-factor-0-25.html
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25:
- shard-dg1: NOTRUN -> [SKIP][271] ([i915#12247] / [i915#6953])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-18/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-b:
- shard-dg1: NOTRUN -> [SKIP][272] ([i915#12247]) +3 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-18/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-b:
- shard-dg2: [PASS][273] -> [SKIP][274] ([i915#12247]) +5 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-7/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-b.html
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-b.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-d:
- shard-dg2: [PASS][275] -> [SKIP][276] ([i915#8152])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-7/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-d.html
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-d.html
* igt@kms_pm_backlight@basic-brightness:
- shard-tglu: NOTRUN -> [SKIP][277] ([i915#9812])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-3/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-rkl: NOTRUN -> [SKIP][278] ([i915#5354])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-7/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-tglu: NOTRUN -> [SKIP][279] ([i915#9685])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-3/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc6-psr:
- shard-rkl: NOTRUN -> [SKIP][280] ([i915#9685]) +1 other test skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-4/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-tglu: NOTRUN -> [SKIP][281] ([i915#8430])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-2/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: [PASS][282] -> [SKIP][283] ([i915#9519]) +1 other test skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-8/igt@kms_pm_rpm@dpms-lpsp.html
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-7/igt@kms_pm_rpm@dpms-lpsp.html
- shard-rkl: [PASS][284] -> [SKIP][285] ([i915#9519]) +1 other test skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-rkl-7/igt@kms_pm_rpm@dpms-lpsp.html
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-5/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-rkl: NOTRUN -> [SKIP][286] ([i915#9519])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-3/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg1: NOTRUN -> [SKIP][287] ([i915#9519])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-18/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-tglu: NOTRUN -> [SKIP][288] ([i915#9519])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
- shard-mtlp: NOTRUN -> [SKIP][289] ([i915#9519])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-mtlp-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_prime@basic-crc-hybrid:
- shard-tglu: NOTRUN -> [SKIP][290] ([i915#6524])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-9/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-dg2: NOTRUN -> [SKIP][291] ([i915#6524] / [i915#6805])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-11/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_prime@d3hot:
- shard-rkl: NOTRUN -> [SKIP][292] ([i915#6524])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-7/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-glk: NOTRUN -> [SKIP][293] ([i915#11520]) +1 other test skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-glk6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf:
- shard-dg2: NOTRUN -> [SKIP][294] ([i915#11520])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-11/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-snb: NOTRUN -> [SKIP][295] ([i915#11520])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-snb2/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-tglu: NOTRUN -> [SKIP][296] ([i915#11520]) +6 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-3/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][297] ([i915#11520]) +8 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-4/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
- shard-dg1: NOTRUN -> [SKIP][298] ([i915#11520]) +3 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-18/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg1: NOTRUN -> [SKIP][299] ([i915#9683])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-18/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-tglu: NOTRUN -> [SKIP][300] ([i915#9683]) +2 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-3/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr-no-drrs:
- shard-tglu: NOTRUN -> [SKIP][301] ([i915#9732]) +19 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-2/igt@kms_psr@fbc-psr-no-drrs.html
* igt@kms_psr@fbc-psr2-dpms:
- shard-mtlp: NOTRUN -> [SKIP][302] ([i915#9688]) +1 other test skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-mtlp-1/igt@kms_psr@fbc-psr2-dpms.html
* igt@kms_psr@psr-cursor-plane-onoff:
- shard-dg1: NOTRUN -> [SKIP][303] ([i915#1072] / [i915#9732]) +8 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-18/igt@kms_psr@psr-cursor-plane-onoff.html
* igt@kms_psr@psr-no-drrs:
- shard-glk: NOTRUN -> [SKIP][304] +45 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-glk6/igt@kms_psr@psr-no-drrs.html
* igt@kms_psr@psr-sprite-plane-move:
- shard-rkl: NOTRUN -> [SKIP][305] ([i915#1072] / [i915#9732]) +20 other tests skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-3/igt@kms_psr@psr-sprite-plane-move.html
* igt@kms_psr@psr2-dpms:
- shard-dg2: NOTRUN -> [SKIP][306] ([i915#1072] / [i915#9732]) +1 other test skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-8/igt@kms_psr@psr2-dpms.html
* igt@kms_selftest@drm_framebuffer:
- shard-rkl: NOTRUN -> [ABORT][307] ([i915#12231]) +1 other test abort
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-1/igt@kms_selftest@drm_framebuffer.html
* igt@kms_sysfs_edid_timing:
- shard-dg2: [PASS][308] -> [FAIL][309] ([IGT#2])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-2/igt@kms_sysfs_edid_timing.html
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-6/igt@kms_sysfs_edid_timing.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-tglu: NOTRUN -> [SKIP][310] ([i915#8623])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-9/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@flip-basic-fastset:
- shard-tglu: NOTRUN -> [SKIP][311] ([i915#9906])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-9/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@negative-basic:
- shard-dg1: NOTRUN -> [SKIP][312] ([i915#3555] / [i915#9906])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-18/igt@kms_vrr@negative-basic.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-rkl: NOTRUN -> [SKIP][313] ([i915#2437] / [i915#9412])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-4/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg1: NOTRUN -> [SKIP][314] ([i915#2437])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-18/igt@kms_writeback@writeback-fb-id.html
- shard-tglu: NOTRUN -> [SKIP][315] ([i915#2437])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-3/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-dg1: NOTRUN -> [SKIP][316] ([i915#2437] / [i915#9412])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-18/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@per-context-mode-unprivileged:
- shard-dg1: NOTRUN -> [SKIP][317] ([i915#2433])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-18/igt@perf@per-context-mode-unprivileged.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][318] ([i915#2433])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-7/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: [PASS][319] -> [FAIL][320] ([i915#4349]) +4 other tests fail
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-1/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@cpu-hotplug:
- shard-tglu: NOTRUN -> [SKIP][321] ([i915#8850])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-9/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-tglu: NOTRUN -> [SKIP][322] ([i915#8516])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-9/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_vgem@basic-write:
- shard-rkl: NOTRUN -> [SKIP][323] ([i915#3291] / [i915#3708])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-4/igt@prime_vgem@basic-write.html
* igt@prime_vgem@fence-flip-hang:
- shard-rkl: NOTRUN -> [SKIP][324] ([i915#3708])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-7/igt@prime_vgem@fence-flip-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-tglu: NOTRUN -> [SKIP][325] ([i915#9917])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-3/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-rkl: NOTRUN -> [SKIP][326] ([i915#9917])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-4/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
#### Possible fixes ####
* igt@fbdev@pan:
- shard-dg2: [SKIP][327] ([i915#2582]) -> [PASS][328]
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-2/igt@fbdev@pan.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-6/igt@fbdev@pan.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:
- shard-dg2: [INCOMPLETE][329] ([i915#7297]) -> [PASS][330]
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-5/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-10/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-dg2: [ABORT][331] ([i915#7975] / [i915#8213]) -> [PASS][332] +1 other test pass
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-10/igt@gem_exec_suspend@basic-s4-devices.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices.html
* igt@gen9_exec_parse@allowed-all:
- shard-glk: ([PASS][333], [ABORT][334]) ([i915#5566]) -> [PASS][335]
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-glk1/igt@gen9_exec_parse@allowed-all.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-glk4/igt@gen9_exec_parse@allowed-all.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-glk9/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@allowed-single:
- shard-glk: [ABORT][336] ([i915#5566]) -> [PASS][337]
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-glk8/igt@gen9_exec_parse@allowed-single.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-glk6/igt@gen9_exec_parse@allowed-single.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-tglu: [ABORT][338] ([i915#9820]) -> [PASS][339]
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-tglu-7/igt@i915_module_load@reload-with-fault-injection.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-tglu-3/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rc6_residency@rc6-accuracy:
- shard-mtlp: [INCOMPLETE][340] -> [PASS][341] +1 other test pass
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-mtlp-1/igt@i915_pm_rc6_residency@rc6-accuracy.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-mtlp-1/igt@i915_pm_rc6_residency@rc6-accuracy.html
* igt@i915_selftest@live@active:
- shard-dg2: [ABORT][342] ([i915#12305]) -> [PASS][343]
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-4/igt@i915_selftest@live@active.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-11/igt@i915_selftest@live@active.html
* igt@i915_selftest@live@workarounds:
- shard-dg2: [DMESG-FAIL][344] ([i915#12304]) -> [PASS][345]
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-4/igt@i915_selftest@live@workarounds.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-11/igt@i915_selftest@live@workarounds.html
* igt@kms_atomic_interruptible@atomic-setmode:
- shard-dg2: [SKIP][346] ([i915#9197]) -> [PASS][347] +11 other tests pass
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-2/igt@kms_atomic_interruptible@atomic-setmode.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-6/igt@kms_atomic_interruptible@atomic-setmode.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [FAIL][348] ([i915#5138]) -> [PASS][349] +1 other test pass
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-64bpp-rotate-0:
- shard-dg1: [FAIL][350] ([i915#5138]) -> [PASS][351] +1 other test pass
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg1-12/igt@kms_big_fb@linear-64bpp-rotate-0.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-16/igt@kms_big_fb@linear-64bpp-rotate-0.html
* igt@kms_color@ctm-0-50:
- shard-dg2: [SKIP][352] ([i915#5354]) -> [PASS][353] +3 other tests pass
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-2/igt@kms_color@ctm-0-50.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-8/igt@kms_color@ctm-0-50.html
* igt@kms_cursor_crc@cursor-onscreen-128x128:
- shard-dg1: [DMESG-WARN][354] ([i915#4423]) -> [PASS][355] +1 other test pass
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg1-14/igt@kms_cursor_crc@cursor-onscreen-128x128.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-16/igt@kms_cursor_crc@cursor-onscreen-128x128.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: ([FAIL][356], [PASS][357]) ([i915#2346]) -> [PASS][358]
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-snb: [FAIL][359] -> [PASS][360]
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-snb6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-snb6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_fb_coherency@memset-crc:
- shard-dg2: [SKIP][361] -> [PASS][362]
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-2/igt@kms_fb_coherency@memset-crc.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-8/igt@kms_fb_coherency@memset-crc.html
* igt@kms_flip@2x-flip-vs-wf_vblank@ab-hdmi-a1-hdmi-a2:
- shard-glk: ([FAIL][363], [PASS][364]) -> [PASS][365] +3 other tests pass
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-glk3/igt@kms_flip@2x-flip-vs-wf_vblank@ab-hdmi-a1-hdmi-a2.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-glk4/igt@kms_flip@2x-flip-vs-wf_vblank@ab-hdmi-a1-hdmi-a2.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-glk5/igt@kms_flip@2x-flip-vs-wf_vblank@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-plain-flip-ts-check@ac-hdmi-a1-hdmi-a2:
- shard-glk: ([PASS][366], [FAIL][367]) ([i915#2122]) -> [PASS][368]
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-glk6/igt@kms_flip@2x-plain-flip-ts-check@ac-hdmi-a1-hdmi-a2.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-glk9/igt@kms_flip@2x-plain-flip-ts-check@ac-hdmi-a1-hdmi-a2.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-glk6/igt@kms_flip@2x-plain-flip-ts-check@ac-hdmi-a1-hdmi-a2.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-dg2: [FAIL][369] ([i915#2122]) -> [PASS][370] +4 other tests pass
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-vga1:
- shard-snb: [FAIL][371] ([i915#2122]) -> [PASS][372] +4 other tests pass
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-snb7/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-vga1.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-snb1/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-vga1.html
* igt@kms_flip@flip-vs-suspend@b-hdmi-a2:
- shard-glk: [INCOMPLETE][373] ([i915#4839]) -> [PASS][374] +2 other tests pass
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-glk4/igt@kms_flip@flip-vs-suspend@b-hdmi-a2.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-glk1/igt@kms_flip@flip-vs-suspend@b-hdmi-a2.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@c-hdmi-a4:
- shard-dg1: [FAIL][375] ([i915#2122]) -> [PASS][376] +3 other tests pass
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg1-14/igt@kms_flip@plain-flip-fb-recreate-interruptible@c-hdmi-a4.html
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-17/igt@kms_flip@plain-flip-fb-recreate-interruptible@c-hdmi-a4.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt:
- shard-dg2: [FAIL][377] ([i915#6880]) -> [PASS][378]
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_invalid_mode@bad-vtotal:
- shard-dg2: [SKIP][379] ([i915#3555]) -> [PASS][380]
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-2/igt@kms_invalid_mode@bad-vtotal.html
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-6/igt@kms_invalid_mode@bad-vtotal.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb:
- shard-dg2: [SKIP][381] ([i915#7294]) -> [PASS][382]
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-2/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-6/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-dg2: [SKIP][383] ([i915#3555] / [i915#8152] / [i915#9423]) -> [PASS][384]
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75:
- shard-dg2: [SKIP][385] ([i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][386]
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-c:
- shard-dg2: [SKIP][387] ([i915#12247]) -> [PASS][388] +5 other tests pass
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-c.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-c.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-d:
- shard-dg2: [SKIP][389] ([i915#12247] / [i915#8152]) -> [PASS][390] +1 other test pass
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-d.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-d.html
* igt@kms_pm_dc@dc9-dpms:
- shard-dg2: [FAIL][391] ([i915#7330]) -> [PASS][392]
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-2/igt@kms_pm_dc@dc9-dpms.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-6/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: [SKIP][393] ([i915#9340]) -> [PASS][394]
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-3/igt@kms_pm_lpsp@kms-lpsp.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-8/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@i2c:
- shard-glk: ([FAIL][395], [FAIL][396]) ([i915#8717]) -> [PASS][397]
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-glk5/igt@kms_pm_rpm@i2c.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-glk9/igt@kms_pm_rpm@i2c.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-glk8/igt@kms_pm_rpm@i2c.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [SKIP][398] ([i915#9519]) -> [PASS][399]
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_properties@plane-properties-legacy:
- shard-dg2: [SKIP][400] ([i915#11521]) -> [PASS][401]
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-2/igt@kms_properties@plane-properties-legacy.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-6/igt@kms_properties@plane-properties-legacy.html
* igt@kms_vrr@negative-basic:
- shard-mtlp: [FAIL][402] ([i915#10393]) -> [PASS][403] +1 other test pass
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-mtlp-8/igt@kms_vrr@negative-basic.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-mtlp-3/igt@kms_vrr@negative-basic.html
#### Warnings ####
* igt@gem_ctx_engines@invalid-engines:
- shard-glk: ([PASS][404], [FAIL][405]) ([i915#12027]) -> [FAIL][406] ([i915#12027])
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-glk5/igt@gem_ctx_engines@invalid-engines.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-glk4/igt@gem_ctx_engines@invalid-engines.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-glk3/igt@gem_ctx_engines@invalid-engines.html
* igt@i915_selftest@mock:
- shard-dg2: [DMESG-WARN][407] ([i915#9311]) -> [DMESG-WARN][408] ([i915#1982] / [i915#9311])
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-6/igt@i915_selftest@mock.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-4/igt@i915_selftest@mock.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2: [SKIP][409] ([i915#6228]) -> [SKIP][410] ([i915#9197])
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-3/igt@kms_async_flips@invalid-async-flip.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-2/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-dg2: [SKIP][411] -> [SKIP][412] ([i915#9197])
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-7/igt@kms_big_fb@linear-16bpp-rotate-270.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-2/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-dg2: [SKIP][413] ([i915#9197]) -> [SKIP][414]
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-2/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-6/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2: [SKIP][415] ([i915#5190]) -> [SKIP][416] ([i915#5190] / [i915#9197])
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-7/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-2/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-dg2: [SKIP][417] ([i915#5190] / [i915#9197]) -> [SKIP][418] ([i915#4538] / [i915#5190]) +3 other tests skip
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
- shard-dg2: [SKIP][419] ([i915#4538] / [i915#5190]) -> [SKIP][420] ([i915#5190] / [i915#9197]) +5 other tests skip
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-7/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-2/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
* igt@kms_ccs@bad-rotation-90-yf-tiled-ccs:
- shard-dg2: [SKIP][421] ([i915#9197]) -> [SKIP][422] ([i915#10307] / [i915#6095]) +2 other tests skip
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-2/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-6/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc:
- shard-dg2: [SKIP][423] ([i915#10307] / [i915#6095]) -> [SKIP][424] ([i915#9197]) +3 other tests skip
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_chamelium_hpd@hdmi-hpd-after-suspend:
- shard-mtlp: [INCOMPLETE][425] ([i915#2295]) -> [SKIP][426] ([i915#7828])
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-mtlp-2/igt@kms_chamelium_hpd@hdmi-hpd-after-suspend.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-mtlp-5/igt@kms_chamelium_hpd@hdmi-hpd-after-suspend.html
* igt@kms_content_protection@content-type-change:
- shard-dg1: [SKIP][427] ([i915#9424]) -> [SKIP][428] ([i915#4423] / [i915#9424])
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg1-13/igt@kms_content_protection@content-type-change.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg1-18/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@type1:
- shard-dg2: [SKIP][429] ([i915#7118] / [i915#9424]) -> [SKIP][430] ([i915#9197])
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-7/igt@kms_content_protection@type1.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-2/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-dg2: [SKIP][431] ([i915#3555]) -> [SKIP][432] ([i915#9197]) +3 other tests skip
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-3/igt@kms_cursor_crc@cursor-random-32x32.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-2/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-dg2: [SKIP][433] ([i915#9197]) -> [SKIP][434] ([i915#11453])
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-2/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-6/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-dg2: [SKIP][435] ([i915#5354]) -> [SKIP][436] ([i915#9197])
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-3/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-2/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
- shard-dg2: [SKIP][437] ([i915#9197]) -> [SKIP][438] ([i915#5354])
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-8/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg2: [SKIP][439] ([i915#4103] / [i915#4213]) -> [SKIP][440] ([i915#9197])
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dsc@dsc-basic:
- shard-dg2: [SKIP][441] ([i915#3555] / [i915#3840]) -> [SKIP][442] ([i915#9197])
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-7/igt@kms_dsc@dsc-basic.html
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-2/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-with-formats:
- shard-dg2: [SKIP][443] ([i915#9197]) -> [SKIP][444] ([i915#3555] / [i915#3840])
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-2/igt@kms_dsc@dsc-with-formats.html
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-6/igt@kms_dsc@dsc-with-formats.html
* igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2:
- shard-glk: ([FAIL][445], [PASS][446]) ([i915#2122]) -> [FAIL][447] ([i915#2122]) +6 other tests fail
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-glk9/igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2.html
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-glk6/igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-glk6/igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@blocking-wf_vblank:
- shard-rkl: [FAIL][448] ([i915#10826]) -> [FAIL][449] ([i915#11961] / [i915#2122])
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-rkl-2/igt@kms_flip@blocking-wf_vblank.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-rkl-6/igt@kms_flip@blocking-wf_vblank.html
- shard-snb: [FAIL][450] ([i915#10826] / [i915#2122]) -> [FAIL][451] ([i915#2122])
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-snb2/igt@kms_flip@blocking-wf_vblank.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-snb7/igt@kms_flip@blocking-wf_vblank.html
* igt@kms_flip@blocking-wf_vblank@a-hdmi-a1:
- shard-glk: ([FAIL][452], [PASS][453]) -> [FAIL][454] ([i915#2122])
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-glk5/igt@kms_flip@blocking-wf_vblank@a-hdmi-a1.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-glk4/igt@kms_flip@blocking-wf_vblank@a-hdmi-a1.html
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-glk3/igt@kms_flip@blocking-wf_vblank@a-hdmi-a1.html
* igt@kms_flip@blocking-wf_vblank@a-vga1:
- shard-snb: [FAIL][455] ([i915#10826]) -> [FAIL][456] ([i915#2122])
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-snb2/igt@kms_flip@blocking-wf_vblank@a-vga1.html
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-snb7/igt@kms_flip@blocking-wf_vblank@a-vga1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-dg2: [SKIP][457] ([i915#3555]) -> [SKIP][458] ([i915#2672] / [i915#3555]) +1 other test skip
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-dg2: [SKIP][459] ([i915#2672] / [i915#3555] / [i915#5190]) -> [SKIP][460] ([i915#3555] / [i915#5190]) +2 other tests skip
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-dg2: [SKIP][461] ([i915#3555] / [i915#5190]) -> [SKIP][462] ([i915#2672] / [i915#3555] / [i915#5190])
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt:
- shard-dg2: [SKIP][463] ([i915#8708]) -> [SKIP][464] ([i915#5354]) +5 other tests skip
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt.html
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite:
- shard-dg2: [SKIP][465] ([i915#5354]) -> [SKIP][466] ([i915#3458]) +5 other tests skip
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt:
- shard-dg1: [SKIP][467] ([i915#3458]) -> [SKIP][468] ([i915#3458] / [i915#4423])
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-1p-prim
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139307v1/index.html
[-- Attachment #2: Type: text/html, Size: 110205 bytes --]
^ permalink raw reply [flat|nested] 41+ messages in thread* Re: (subset) [PATCH 00/28] drm: Remove DRM aperture helpers
2024-09-30 13:02 [PATCH 00/28] drm: Remove DRM aperture helpers Thomas Zimmermann
` (31 preceding siblings ...)
2024-10-01 17:18 ` ✗ Fi.CI.IGT: failure " Patchwork
@ 2024-10-21 12:17 ` Dmitry Baryshkov
32 siblings, 0 replies; 41+ messages in thread
From: Dmitry Baryshkov @ 2024-10-21 12:17 UTC (permalink / raw)
To: javierm, airlied, simona, maarten.lankhorst, mripard,
Thomas Zimmermann
Cc: dri-devel, amd-gfx, intel-gfx, intel-xe
On Mon, 30 Sep 2024 15:02:58 +0200, Thomas Zimmermann wrote:
> DRM's aperture helpers are merely wrappers around the respective
> helpers in drivers/video/. The DRM interface existed first, but was
> later generalized for use with fbdev and a few other graphics-related
> places in the kernel. It is time to remove the DRM wrappers and call
> the video helpers directly.
>
> No functional changes intended. This series should replace one interface
> with another. Individual patches could go into the various trees and the
> DRM wrappers can be removed when all driver changes have been merged.
>
> [...]
Applied, thanks!
[11/28] drm/msm: Use video aperture helpers
https://gitlab.freedesktop.org/lumag/msm/-/commit/42170670ee76
Best regards,
--
Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
^ permalink raw reply [flat|nested] 41+ messages in thread