Create a new dts file 'imx7ulp-evk-hdmi.dts' to enable hdmi
display to avoids conflict with mipi dsi panel display. Use
endpoint to connect dsi controller and adv7535.
Signed-off-by: Fancy Fang <chen.fang@nxp.com>
(cherry picked from commit
86fb9340d01a4583628d465f29fba67df93c453c)
imx7ulp-evk-sd1.dtb \
imx7ulp-evk-lpuart.dtb \
imx7ulp-evk-qspi.dtb \
- imx7ulp-evk-wm8960.dtb
+ imx7ulp-evk-wm8960.dtb \
+ imx7ulp-evk-hdmi.dtb
dtb-$(CONFIG_SOC_LS1021A) += \
ls1021a-qds.dtb \
ls1021a-twr.dtb
--- /dev/null
+/*
+ * Copyright 2017 NXP.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ */
+
+#include "imx7ulp-evk.dts"
+
+&adv7535 {
+ status = "okay";
+ port {
+ dsi_to_hdmi: endpoint {
+ remote-endpoint = <&mipi_dsi_ep>;
+ };
+ };
+};
+
+&mipi_dsi {
+ port {
+ mipi_dsi_ep: endpoint {
+ remote-endpoint = <&dsi_to_hdmi>;
+ };
+ };
+};