Commit e07eb1ec authored by Ajay Kumar's avatar Ajay Kumar Committed by Kukjin Kim

ARM: dts: represent bridge and panel connection for exynos5420-peach-pit

Define videoports and use endpoints to describe the connection between
the encoder, bridge and the panel, instead of using phandles.
Signed-off-by: default avatarAjay Kumar <ajaykumar.rs@samsung.com>
Acked-by: default avatarInki Dae <inki.dae@samsung.com>
Tested-by: default avatarRahul Sharma <rahul.sharma@samsung.com>
Tested-by: default avatarJavier Martinez Canillas <javier.martinez@collabora.co.uk>
Tested-by: default avatarGustavo Padovan <gustavo.padovan@collabora.co.uk>
Tested-by: default avatarSjoerd Simons <sjoerd.simons@collabora.co.uk>
Signed-off-by: default avatarKukjin Kim <kgene@kernel.org>
parent b174e79e
...@@ -118,6 +118,12 @@ panel: panel { ...@@ -118,6 +118,12 @@ panel: panel {
compatible = "auo,b116xw03"; compatible = "auo,b116xw03";
power-supply = <&tps65090_fet6>; power-supply = <&tps65090_fet6>;
backlight = <&backlight>; backlight = <&backlight>;
port {
panel_in: endpoint {
remote-endpoint = <&bridge_out>;
};
};
}; };
}; };
...@@ -137,7 +143,14 @@ &dp { ...@@ -137,7 +143,14 @@ &dp {
samsung,link-rate = <0x06>; samsung,link-rate = <0x06>;
samsung,lane-count = <2>; samsung,lane-count = <2>;
samsung,hpd-gpio = <&gpx2 6 0>; samsung,hpd-gpio = <&gpx2 6 0>;
bridge = <&ps8625>;
ports {
port@0 {
dp_out: endpoint {
remote-endpoint = <&bridge_in>;
};
};
};
}; };
&fimd { &fimd {
...@@ -595,8 +608,22 @@ ps8625: lvds-bridge@48 { ...@@ -595,8 +608,22 @@ ps8625: lvds-bridge@48 {
sleep-gpios = <&gpx3 5 GPIO_ACTIVE_HIGH>; sleep-gpios = <&gpx3 5 GPIO_ACTIVE_HIGH>;
reset-gpios = <&gpy7 7 GPIO_ACTIVE_HIGH>; reset-gpios = <&gpy7 7 GPIO_ACTIVE_HIGH>;
lane-count = <2>; lane-count = <2>;
panel = <&panel>;
use-external-pwm; use-external-pwm;
ports {
port@0 {
bridge_out: endpoint {
remote-endpoint = <&panel_in>;
};
};
port@1 {
bridge_in: endpoint {
remote-endpoint = <&dp_out>;
};
};
};
}; };
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment