Commit 8f7f1155 authored by Geert Uytterhoeven's avatar Geert Uytterhoeven Committed by Maxime Ripard

Revert "drm: Make drivers depends on DRM_DW_HDMI"

This reverts commit c0e0f139, as helper
code should always be selected by the driver that needs it, for the
convenience of the final user configuring a kernel.

The user who configures a kernel should not need to know which helpers
are needed for the driver he is interested in.  Making a driver depend
on helper code means that the user needs to know which helpers to enable
first, which is very user-unfriendly.
Signed-off-by: default avatarGeert Uytterhoeven <geert+renesas@glider.be>
Acked-by: default avatarArnd Bergmann <arnd@arndb.de>
Link: https://patchwork.freedesktop.org/patch/msgid/bd93d43b07f8ed6368119f4a5ddac2ee80debe53.1713780345.git.geert+renesas@glider.beSigned-off-by: default avatarMaxime Ripard <mripard@kernel.org>
parent 05b8b6dd
...@@ -5,9 +5,9 @@ config DRM_IMX_LDB_HELPER ...@@ -5,9 +5,9 @@ config DRM_IMX_LDB_HELPER
config DRM_IMX8MP_DW_HDMI_BRIDGE config DRM_IMX8MP_DW_HDMI_BRIDGE
tristate "Freescale i.MX8MP HDMI-TX bridge support" tristate "Freescale i.MX8MP HDMI-TX bridge support"
depends on COMMON_CLK
depends on DRM_DW_HDMI
depends on OF depends on OF
depends on COMMON_CLK
select DRM_DW_HDMI
imply DRM_IMX8MP_HDMI_PVI imply DRM_IMX8MP_HDMI_PVI
imply PHY_FSL_SAMSUNG_HDMI_PHY imply PHY_FSL_SAMSUNG_HDMI_PHY
help help
......
...@@ -35,8 +35,7 @@ config DRM_IMX_LDB ...@@ -35,8 +35,7 @@ config DRM_IMX_LDB
config DRM_IMX_HDMI config DRM_IMX_HDMI
tristate "Freescale i.MX DRM HDMI" tristate "Freescale i.MX DRM HDMI"
depends on DRM_DW_HDMI select DRM_DW_HDMI
depends on DRM_IMX depends on DRM_IMX && OF
depends on OF
help help
Choose this if you want to use HDMI on i.MX6. Choose this if you want to use HDMI on i.MX6.
...@@ -27,8 +27,8 @@ config DRM_INGENIC_IPU ...@@ -27,8 +27,8 @@ config DRM_INGENIC_IPU
config DRM_INGENIC_DW_HDMI config DRM_INGENIC_DW_HDMI
tristate "Ingenic specific support for Synopsys DW HDMI" tristate "Ingenic specific support for Synopsys DW HDMI"
depends on DRM_DW_HDMI
depends on MACH_JZ4780 depends on MACH_JZ4780
select DRM_DW_HDMI
help help
Choose this option to enable Synopsys DesignWare HDMI based driver. Choose this option to enable Synopsys DesignWare HDMI based driver.
If you want to enable HDMI on Ingenic JZ4780 based SoC, you should If you want to enable HDMI on Ingenic JZ4780 based SoC, you should
......
...@@ -13,9 +13,9 @@ config DRM_MESON ...@@ -13,9 +13,9 @@ config DRM_MESON
config DRM_MESON_DW_HDMI config DRM_MESON_DW_HDMI
tristate "HDMI Synopsys Controller support for Amlogic Meson Display" tristate "HDMI Synopsys Controller support for Amlogic Meson Display"
depends on DRM_DW_HDMI
depends on DRM_MESON depends on DRM_MESON
default y if DRM_MESON default y if DRM_MESON
select DRM_DW_HDMI
imply DRM_DW_HDMI_I2S_AUDIO imply DRM_DW_HDMI_I2S_AUDIO
config DRM_MESON_DW_MIPI_DSI config DRM_MESON_DW_MIPI_DSI
......
...@@ -25,8 +25,8 @@ config DRM_RCAR_CMM ...@@ -25,8 +25,8 @@ config DRM_RCAR_CMM
config DRM_RCAR_DW_HDMI config DRM_RCAR_DW_HDMI
tristate "R-Car Gen3 and RZ/G2 DU HDMI Encoder Support" tristate "R-Car Gen3 and RZ/G2 DU HDMI Encoder Support"
depends on DRM && OF depends on DRM && OF
depends on DRM_DW_HDMI
depends on DRM_RCAR_DU || COMPILE_TEST depends on DRM_RCAR_DU || COMPILE_TEST
select DRM_DW_HDMI
help help
Enable support for R-Car Gen3 or RZ/G2 internal HDMI encoder. Enable support for R-Car Gen3 or RZ/G2 internal HDMI encoder.
......
...@@ -7,6 +7,7 @@ config DRM_ROCKCHIP ...@@ -7,6 +7,7 @@ config DRM_ROCKCHIP
select DRM_PANEL select DRM_PANEL
select VIDEOMODE_HELPERS select VIDEOMODE_HELPERS
select DRM_ANALOGIX_DP if ROCKCHIP_ANALOGIX_DP select DRM_ANALOGIX_DP if ROCKCHIP_ANALOGIX_DP
select DRM_DW_HDMI if ROCKCHIP_DW_HDMI
select DRM_DW_MIPI_DSI if ROCKCHIP_DW_MIPI_DSI select DRM_DW_MIPI_DSI if ROCKCHIP_DW_MIPI_DSI
select GENERIC_PHY if ROCKCHIP_DW_MIPI_DSI select GENERIC_PHY if ROCKCHIP_DW_MIPI_DSI
select GENERIC_PHY_MIPI_DPHY if ROCKCHIP_DW_MIPI_DSI select GENERIC_PHY_MIPI_DPHY if ROCKCHIP_DW_MIPI_DSI
...@@ -56,7 +57,6 @@ config ROCKCHIP_CDN_DP ...@@ -56,7 +57,6 @@ config ROCKCHIP_CDN_DP
config ROCKCHIP_DW_HDMI config ROCKCHIP_DW_HDMI
bool "Rockchip specific extensions for Synopsys DW HDMI" bool "Rockchip specific extensions for Synopsys DW HDMI"
depends on DRM_DW_HDMI
help help
This selects support for Rockchip SoC specific extensions This selects support for Rockchip SoC specific extensions
for the Synopsys DesignWare HDMI driver. If you want to for the Synopsys DesignWare HDMI driver. If you want to
......
...@@ -57,8 +57,8 @@ config DRM_SUN6I_DSI ...@@ -57,8 +57,8 @@ config DRM_SUN6I_DSI
config DRM_SUN8I_DW_HDMI config DRM_SUN8I_DW_HDMI
tristate "Support for Allwinner version of DesignWare HDMI" tristate "Support for Allwinner version of DesignWare HDMI"
depends on DRM_SUN4I depends on DRM_SUN4I
depends on DRM_DW_HDMI
default DRM_SUN4I default DRM_SUN4I
select DRM_DW_HDMI
help help
Choose this option if you have an Allwinner SoC with the Choose this option if you have an Allwinner SoC with the
DesignWare HDMI controller. SoCs that support HDMI and DesignWare HDMI controller. SoCs that support HDMI and
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment