mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

Rework fbdev probing to support fbdev_probe in struct drm_driver and remove the old fb_probe callback. Provide an initializer macro for struct drm_driver that sets the callback according to the kernel configuration. 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 armada 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 v4: - revert an unrelated cleanup (Javier) Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de> Cc: Russell King <linux@armlinux.org.uk> Acked-by: Javier Martinez Canillas <javierm@redhat.com> Link: https://patchwork.freedesktop.org/patch/msgid/20240924071734.98201-74-tzimmermann@suse.de
15 lines
621 B
Text
15 lines
621 B
Text
# SPDX-License-Identifier: GPL-2.0-only
|
|
config DRM_ARMADA
|
|
tristate "DRM support for Marvell Armada SoCs"
|
|
depends on DRM && HAVE_CLK && ARM && MMU
|
|
select DRM_CLIENT_SELECTION
|
|
select DRM_KMS_HELPER
|
|
select FB_IOMEM_HELPERS if DRM_FBDEV_EMULATION
|
|
help
|
|
Support the "LCD" controllers found on the Marvell Armada 510
|
|
devices. There are two controllers on the device, each controller
|
|
supports graphics and video overlays.
|
|
|
|
This driver provides no built-in acceleration; acceleration is
|
|
performed by other IP found on the SoC. This driver provides
|
|
kernel mode setting and buffer management to userspace.
|