Skip to content

Commit

Permalink
ARM: dts: imx: Add missing LVDS decoder on M53Menlo
Browse files Browse the repository at this point in the history
[ Upstream commit 0c6f711 ]

The M53Menlo display unit uses an LVDS-to-DPI bridge, TI DS90CF364A.
Describe this bridge in DT, otherwise the DT incorrectly describes
DPI panel attached directly to LVDS source.

Fixes: 716be61 ("ARM: dts: imx53: Add Menlosystems M53 board")
Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Shawn Guo <shawnguo@kernel.org>
Cc: Fabio Estevam <festevam@gmail.com>
Cc: NXP Linux Team <linux-imx@nxp.com>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
  • Loading branch information
Marek Vasut authored and gregkh committed Apr 8, 2022
1 parent ecc3080 commit c0ced04
Showing 1 changed file with 27 additions and 2 deletions.
29 changes: 27 additions & 2 deletions arch/arm/boot/dts/imx53-m53menlo.dts
Expand Up @@ -53,6 +53,31 @@
};
};

lvds-decoder {
compatible = "ti,ds90cf364a", "lvds-decoder";

ports {
#address-cells = <1>;
#size-cells = <0>;

port@0 {
reg = <0>;

lvds_decoder_in: endpoint {
remote-endpoint = <&lvds0_out>;
};
};

port@1 {
reg = <1>;

lvds_decoder_out: endpoint {
remote-endpoint = <&panel_in>;
};
};
};
};

panel {
compatible = "edt,etm0700g0dh6";
pinctrl-0 = <&pinctrl_display_gpio>;
Expand All @@ -61,7 +86,7 @@

port {
panel_in: endpoint {
remote-endpoint = <&lvds0_out>;
remote-endpoint = <&lvds_decoder_out>;
};
};
};
Expand Down Expand Up @@ -450,7 +475,7 @@
reg = <2>;

lvds0_out: endpoint {
remote-endpoint = <&panel_in>;
remote-endpoint = <&lvds_decoder_in>;
};
};
};
Expand Down

0 comments on commit c0ced04

Please sign in to comment.