mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-12-29 09:16:33 +00:00
drm/pl111: Run DRM default client setup
Call drm_client_setup_with_color_mode() 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. v5: - select DRM_CLIENT_SELECTION Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de> Acked-by: Javier Martinez Canillas <javierm@redhat.com> Link: https://patchwork.freedesktop.org/patch/msgid/20240924071734.98201-33-tzimmermann@suse.de
This commit is contained in:
parent
1b0caa5f5a
commit
d8c7ca410b
@ -5,6 +5,7 @@ config DRM_PL111
|
||||
depends on ARM || ARM64 || COMPILE_TEST
|
||||
depends on VEXPRESS_CONFIG || VEXPRESS_CONFIG=n
|
||||
depends on COMMON_CLK
|
||||
select DRM_CLIENT_SELECTION
|
||||
select DRM_KMS_HELPER
|
||||
select DRM_GEM_DMA_HELPER
|
||||
select DRM_BRIDGE
|
||||
|
@ -47,6 +47,7 @@
|
||||
|
||||
#include <drm/drm_atomic_helper.h>
|
||||
#include <drm/drm_bridge.h>
|
||||
#include <drm/drm_client_setup.h>
|
||||
#include <drm/drm_drv.h>
|
||||
#include <drm/drm_fbdev_dma.h>
|
||||
#include <drm/drm_fourcc.h>
|
||||
@ -225,6 +226,7 @@ static const struct drm_driver pl111_drm_driver = {
|
||||
.patchlevel = 0,
|
||||
.dumb_create = drm_gem_dma_dumb_create,
|
||||
.gem_prime_import_sg_table = pl111_gem_import_sg_table,
|
||||
DRM_FBDEV_DMA_DRIVER_OPS,
|
||||
|
||||
#if defined(CONFIG_DEBUG_FS)
|
||||
.debugfs_init = pl111_debugfs_init,
|
||||
@ -305,7 +307,7 @@ static int pl111_amba_probe(struct amba_device *amba_dev,
|
||||
if (ret < 0)
|
||||
goto dev_put;
|
||||
|
||||
drm_fbdev_dma_setup(drm, priv->variant->fb_depth);
|
||||
drm_client_setup_with_color_mode(drm, priv->variant->fb_depth);
|
||||
|
||||
return 0;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user