]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
drm/tidss: Run DRM default client setup
authorThomas Zimmermann <tzimmermann@suse.de>
Tue, 24 Sep 2024 07:12:39 +0000 (09:12 +0200)
committerThomas Zimmermann <tzimmermann@suse.de>
Thu, 26 Sep 2024 07:31:27 +0000 (09:31 +0200)
Call drm_client_setup() to run the kernel's default client setup
for DRM. Set fbdev_probe in struct drm_driver, so that the client
setup can start the common fbdev client.

The tidss driver specifies a preferred color mode of 32. As this
is the default if no format has been given, leave it out entirely.

v5:
- select DRM_CLIENT_SELECTION

Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Cc: Jyri Sarha <jyri.sarha@iki.fi>
Cc: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
Acked-by: Javier Martinez Canillas <javierm@redhat.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20240924071734.98201-42-tzimmermann@suse.de
drivers/gpu/drm/tidss/Kconfig
drivers/gpu/drm/tidss/tidss_drv.c

index 2385c56493b9a6548e4b85085691a41ec0aeaf0d..31ad582b76023892fc32de6a3a4dd9893d79ef63 100644 (file)
@@ -2,6 +2,7 @@ config DRM_TIDSS
        tristate "DRM Support for TI Keystone"
        depends on DRM && OF
        depends on ARM || ARM64 || COMPILE_TEST
+       select DRM_CLIENT_SELECTION
        select DRM_KMS_HELPER
        select DRM_DISPLAY_HELPER
        select DRM_BRIDGE_CONNECTOR
index d15f836dca95c4ed3b391f76aa4c2cdf177fdb5e..2428b9aaa0033468d681da892fb01e13086272a6 100644 (file)
@@ -11,6 +11,7 @@
 
 #include <drm/drm_atomic.h>
 #include <drm/drm_atomic_helper.h>
+#include <drm/drm_client_setup.h>
 #include <drm/drm_crtc.h>
 #include <drm/drm_drv.h>
 #include <drm/drm_fbdev_dma.h>
@@ -109,6 +110,7 @@ static const struct drm_driver tidss_driver = {
        .fops                   = &tidss_fops,
        .release                = tidss_release,
        DRM_GEM_DMA_DRIVER_OPS_VMAP,
+       DRM_FBDEV_DMA_DRIVER_OPS,
        .name                   = "tidss",
        .desc                   = "TI Keystone DSS",
        .date                   = "20180215",
@@ -186,7 +188,7 @@ static int tidss_probe(struct platform_device *pdev)
                goto err_irq_uninstall;
        }
 
-       drm_fbdev_dma_setup(ddev, 32);
+       drm_client_setup(ddev, NULL);
 
        dev_dbg(dev, "%s done\n", __func__);