aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilipp Zabel <p.zabel@pengutronix.de>2016-08-11 06:00:00 -0400
committerMatthias Brugger <matthias.bgg@gmail.com>2016-08-22 13:12:08 -0400
commit7475e27b45554d350f6a28edc8d0bfcf13f801c4 (patch)
tree0dc44b69f8283fa6b892791be5b107a14db3caec
parenta10b57f44a659a073b0e4f982ca205bed9e913fc (diff)
arm64: dts: mt8173-evb: enable HDMI output
Add an HDMI connector node and enable the devices that are part of the HDMI display path: cec, dpi0, hdmi_phy, and hdmi0. Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de> Signed-off-by: Matthias Brugger <matthias.bgg@gmail.com>
-rw-r--r--arch/arm64/boot/dts/mediatek/mt8173-evb.dts38
1 files changed, 38 insertions, 0 deletions
diff --git a/arch/arm64/boot/dts/mediatek/mt8173-evb.dts b/arch/arm64/boot/dts/mediatek/mt8173-evb.dts
index 7453a47b3047..2a7f731c7759 100644
--- a/arch/arm64/boot/dts/mediatek/mt8173-evb.dts
+++ b/arch/arm64/boot/dts/mediatek/mt8173-evb.dts
@@ -42,6 +42,44 @@
42 gpio = <&pio 130 GPIO_ACTIVE_HIGH>; 42 gpio = <&pio 130 GPIO_ACTIVE_HIGH>;
43 enable-active-high; 43 enable-active-high;
44 }; 44 };
45
46 connector {
47 compatible = "hdmi-connector";
48 label = "hdmi";
49 type = "d";
50
51 port {
52 hdmi_connector_in: endpoint {
53 remote-endpoint = <&hdmi0_out>;
54 };
55 };
56 };
57};
58
59&cec {
60 status = "okay";
61};
62
63&dpi0 {
64 status = "okay";
65};
66
67&hdmi_phy {
68 status = "okay";
69};
70
71&hdmi0 {
72 status = "okay";
73
74 ports {
75 port@1 {
76 reg = <1>;
77
78 hdmi0_out: endpoint {
79 remote-endpoint = <&hdmi_connector_in>;
80 };
81 };
82 };
45}; 83};
46 84
47&i2c1 { 85&i2c1 {