The added lvds driver and a change in the dsi driver resulted in failed builds when COMMON_CLK is disabled: x86_64-linux-ld: drivers/gpu/drm/stm/dw_mipi_dsi-stm.o: in function `dw_mipi_dsi_stm_remove': dw_mipi_dsi-stm.c:(.text+0x51e): undefined reference to `clk_hw_unregister' x86_64-linux-ld: drivers/gpu/drm/stm/lvds.o: in function `lvds_remove': lvds.c:(.text+0xe3): undefined reference to `of_clk_del_provider' x86_64-linux-ld: lvds.c:(.text+0xec): undefined reference to `clk_hw_unregister' x86_64-linux-ld: drivers/gpu/drm/stm/lvds.o: in function `lvds_pll_config': lvds.c:(.text+0xb5d): undefined reference to `clk_hw_get_rate' x86_64-linux-ld: drivers/gpu/drm/stm/lvds.o: in function `lvds_probe': lvds.c:(.text+0x1476): undefined reference to `clk_hw_register' x86_64-linux-ld: lvds.c:(.text+0x148b): undefined reference to `of_clk_hw_simple_get' x86_64-linux-ld: lvds.c:(.text+0x1493): undefined reference to `of_clk_add_hw_provider' x86_64-linux-ld: lvds.c:(.text+0x1535): undefined reference to `clk_hw_unregister' Add this as a dependency for the stm driver itself, since it will be required in practice anyway. Fixes:185f99b614
("drm/stm: dsi: expose DSI PHY internal clock") Fixes:aca1cbc1c9
("drm/stm: lvds: add new STM32 LVDS Display Interface Transmitter driver") Signed-off-by: Arnd Bergmann <arnd@arndb.de> Link: https://patchwork.freedesktop.org/patch/msgid/20240719075454.3595358-1-arnd@kernel.org Signed-off-by: Raphael Gallais-Pou <raphael.gallais-pou@foss.st.com>
34 lines
1.1 KiB
Text
34 lines
1.1 KiB
Text
# 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_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.
|