mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-19 05:49:40 +07:00
c6a27fa41f
The LVDS encoders used to be described in DT as part of the DU. They now have their own DT node, linked to the DU using the OF graph bindings. This allows moving internal LVDS encoder support to a separate driver modelled as a DRM bridge. Backward compatibility is retained as legacy DT is patched live to move to the new bindings. Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
20 lines
614 B
Makefile
20 lines
614 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
rcar-du-drm-y := rcar_du_crtc.o \
|
|
rcar_du_drv.o \
|
|
rcar_du_encoder.o \
|
|
rcar_du_group.o \
|
|
rcar_du_kms.o \
|
|
rcar_du_plane.o
|
|
|
|
rcar-du-drm-$(CONFIG_DRM_RCAR_LVDS) += rcar_du_of.o \
|
|
rcar_du_of_lvds_r8a7790.dtb.o \
|
|
rcar_du_of_lvds_r8a7791.dtb.o \
|
|
rcar_du_of_lvds_r8a7793.dtb.o \
|
|
rcar_du_of_lvds_r8a7795.dtb.o \
|
|
rcar_du_of_lvds_r8a7796.dtb.o
|
|
rcar-du-drm-$(CONFIG_DRM_RCAR_VSP) += rcar_du_vsp.o
|
|
|
|
obj-$(CONFIG_DRM_RCAR_DU) += rcar-du-drm.o
|
|
obj-$(CONFIG_DRM_RCAR_DW_HDMI) += rcar_dw_hdmi.o
|
|
obj-$(CONFIG_DRM_RCAR_LVDS) += rcar_lvds.o
|