mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-08-26 16:51:08 +00:00

Call drm_client_setup_with-fourcc() 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 v4: - remove duplicated S-o-b tag (Gerd) v2: - use drm_client_setup_with_fourcc() 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> Acked-by: Raphael Gallais-Pou <raphael.gallais-pou@foss.st.com> Link: https://patchwork.freedesktop.org/patch/msgid/20240924071734.98201-40-tzimmermann@suse.de
36 lines
1.1 KiB
Plaintext
36 lines
1.1 KiB
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
config DRM_STM
|
|
tristate "DRM Support for STMicroelectronics SoC Series"
|
|
depends on DRM && (ARCH_STM32 || COMPILE_TEST)
|
|
depends on COMMON_CLK
|
|
select DRM_CLIENT_SELECTION
|
|
select DRM_KMS_HELPER
|
|
select DRM_GEM_DMA_HELPER
|
|
select DRM_PANEL_BRIDGE
|
|
select VIDEOMODE_HELPERS
|
|
select FB_PROVIDE_GET_FB_UNMAPPED_AREA if FB
|
|
|
|
help
|
|
Enable support for the on-chip display controller on
|
|
STMicroelectronics STM32 MCUs.
|
|
To compile this driver as a module, choose M here: the module
|
|
will be called stm-drm.
|
|
|
|
config DRM_STM_DSI
|
|
tristate "STMicroelectronics specific extensions for Synopsys MIPI DSI"
|
|
depends on DRM_STM
|
|
select DRM_DW_MIPI_DSI
|
|
help
|
|
Choose this option for MIPI DSI support on STMicroelectronics SoC.
|
|
|
|
config DRM_STM_LVDS
|
|
tristate "STMicroelectronics LVDS Display Interface Transmitter DRM driver"
|
|
depends on DRM_STM
|
|
help
|
|
Enable support for LVDS encoders on STMicroelectronics SoC.
|
|
The STM LVDS is a bridge which serialize pixel stream onto
|
|
a LVDS protocol.
|
|
|
|
To compile this driver as a module, choose M here: the module will be
|
|
called lvds.
|