Commit 325ba852 authored by Dmitry Baryshkov's avatar Dmitry Baryshkov
Browse files

drm/i2c: move TDA998x driver under drivers/gpu/drm/bridge



TDA998x is the HDMI bridge driver, incorporating drm_connector and
optional drm_encoder (created via the component bind API by the TICLDC
and HDLCD drivers). Thus it should be residing together with the other
DRM bridge drivers under drivers/gpu/drm/bridge/.

Acked-by: default avatarNeil Armstrong <neil.armstrong@linaro.org>
Acked-by: default avatarLiviu Dudau <liviu.dudau@arm.com>
Reviewed-by: default avatarLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20250113-drm-move-tda998x-v3-3-214e0682a5e4@linaro.org


Signed-off-by: default avatarDmitry Baryshkov <dmitry.baryshkov@linaro.org>
parent caa6f4a7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -17080,7 +17080,7 @@ M: Russell King <linux@armlinux.org.uk>
S:	Maintained
T:	git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
T:	git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
F:	drivers/gpu/drm/i2c/tda998x_drv.c
F:	drivers/gpu/drm/bridge/tda998x_drv.c
F:	include/dt-bindings/display/tda998x.h
K:	"nxp,tda998x"
+0 −2
Original line number Diff line number Diff line
@@ -326,8 +326,6 @@ config DRM_SCHED
	tristate
	depends on DRM

source "drivers/gpu/drm/i2c/Kconfig"

source "drivers/gpu/drm/arm/Kconfig"

source "drivers/gpu/drm/radeon/Kconfig"
+1 −0
Original line number Diff line number Diff line
@@ -9,6 +9,7 @@ config DRM_HDLCD
	select DRM_CLIENT_SELECTION
	select DRM_KMS_HELPER
	select DRM_GEM_DMA_HELPER
	select DRM_BRIDGE # for TDA998x
	help
	  Choose this option if you have an ARM High Definition Colour LCD
	  controller.
+8 −0
Original line number Diff line number Diff line
@@ -90,6 +90,14 @@ config DRM_FSL_LDB
	help
	  Support for i.MX8MP DPI-to-LVDS on-SoC encoder.

config DRM_I2C_NXP_TDA998X
       tristate "NXP Semiconductors TDA998X HDMI encoder"
       default m if DRM_TILCDC
       select CEC_CORE if CEC_NOTIFIER
       select SND_SOC_HDMI_CODEC if SND_SOC
       help
         Support for NXP Semiconductors TDA998X HDMI encoders.

config DRM_ITE_IT6263
	tristate "ITE IT6263 LVDS/HDMI bridge"
	depends on OF
+4 −0
Original line number Diff line number Diff line
@@ -6,6 +6,10 @@ obj-$(CONFIG_DRM_CHRONTEL_CH7033) += chrontel-ch7033.o
obj-$(CONFIG_DRM_CROS_EC_ANX7688) += cros-ec-anx7688.o
obj-$(CONFIG_DRM_DISPLAY_CONNECTOR) += display-connector.o
obj-$(CONFIG_DRM_FSL_LDB) += fsl-ldb.o

tda998x-y := tda998x_drv.o
obj-$(CONFIG_DRM_I2C_NXP_TDA998X) += tda998x.o

obj-$(CONFIG_DRM_ITE_IT6263) += ite-it6263.o
obj-$(CONFIG_DRM_ITE_IT6505) += ite-it6505.o
obj-$(CONFIG_DRM_LONTIUM_LT8912B) += lontium-lt8912b.o
Loading