I try to follow as you suggested,use
On 10/25/2017 09:21 AM, Nickey Yang wrote:
Configure dsi slave channel when driving a panelThe example below is how dual DSI bindings could look like. Let me know what
which needs 2 DSI links.
Signed-off-by: Nickey Yang <nickey.yang@xxxxxxxxxxxxxx>
---
.../devicetree/bindings/display/rockchip/dw_mipi_dsi_rockchip.txt | 2 ++
 1 file changed, 2 insertions(+)
diff --git a/Documentation/devicetree/bindings/display/rockchip/dw_mipi_dsi_rockchip.txt b/Documentation/devicetree/bindings/display/rockchip/dw_mipi_dsi_rockchip.txt
index 6bb59ab..a2bea22 100644
--- a/Documentation/devicetree/bindings/display/rockchip/dw_mipi_dsi_rockchip.txt
+++ b/Documentation/devicetree/bindings/display/rockchip/dw_mipi_dsi_rockchip.txt
@@ -19,6 +19,8 @@ Optional properties:
 - power-domains: a phandle to mipi dsi power domain node.
 - resets: list of phandle + reset specifier pairs, as described in [3].
 - reset-names: string reset name, must be "apb".
+- rockchip,dual-channel: phandle to a 2nd DSI channel, useful as a slave
+channel when driving a panel which needs 2 DSI links.
you think of it.
If both DSI outputs drive the same device (i.e, point to the same panel DT
node), then I think it's reasonable enough to assume that the DSIs are
operating in a 'dual-channel' mode. That being said, we still need DT to
describe which of the DSIs generates the clock for both the channels. This
is done with the 'clock-master' DT binding.
Thanks,
Archit
mipi_dsi: mipi@ff960000 {
ÂÂÂÂ...
ÂÂÂÂ...
ÂÂÂÂclock-master;ÂÂÂ /* implies that this DSI instance drivers the clock
ÂÂÂÂÂÂÂÂÂÂÂÂ * for both the DSIs.
ÂÂÂÂÂÂÂÂÂÂÂÂ */
ÂÂÂÂports {
ÂÂÂÂÂÂÂ mipi_in: port {
ÂÂÂÂÂÂÂÂÂÂÂ ...
ÂÂÂÂÂÂÂÂÂÂÂ ...
ÂÂÂÂÂÂÂ };
ÂÂÂÂÂÂÂ /* add extra output ports for both DSIs */
ÂÂÂÂÂÂÂ mipi_out: port {
ÂÂÂÂÂÂÂÂÂÂÂ mipi_panel_out: endpoint {
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ remote-endpoint = <&panel_in_channel0>;
ÂÂÂÂÂÂÂÂÂÂÂ };
ÂÂÂÂÂÂÂ };
ÂÂÂÂ};
ÂÂÂÂpanel {
ÂÂÂÂÂÂÂ ...
ÂÂÂÂÂÂÂ ...
ÂÂÂÂÂÂÂ /*
ÂÂÂÂÂÂÂÂ * panel node can describe its input ports, if both the DSIs output
ÂÂÂÂÂÂÂÂ * ports are connected to the same device (i.e, the same DSI panel),
ÂÂÂÂÂÂÂÂ * we can assume that the DSIs need to operate in dual DSI mode
ÂÂÂÂÂÂÂÂ */
ÂÂÂÂÂÂÂ ports {
ÂÂÂÂÂÂÂÂÂÂÂ ...
ÂÂÂÂÂÂÂÂÂÂÂ port@0 {
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ panel_in_channel0: endpoint {
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ remote-endpoint = <&mipi_panel_out>;
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ };
ÂÂÂÂÂÂÂÂÂÂÂ };
ÂÂÂÂÂÂÂÂÂÂÂ port@1 {
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ panel_in_channel1: endpoint {
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ remote-endpoint = <&mipi1_panel_out>;
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ };
ÂÂÂÂÂÂÂÂÂÂÂ };
ÂÂÂÂÂÂÂ };
ÂÂÂÂ};
};
mipi_dsi1: mipi@ff968000 {
ÂÂÂÂ...
ÂÂÂÂ...
ÂÂÂÂports {
ÂÂÂÂÂÂÂ mipi1_in: port {
ÂÂÂÂÂÂÂÂÂÂÂ ...
ÂÂÂÂÂÂÂÂÂÂÂ ...
ÂÂÂÂÂÂÂ };
ÂÂÂÂÂÂÂ mipi1_out: port {
ÂÂÂÂÂÂÂÂÂÂÂ mipi1_panel_out: endpoint {
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ remote-endpoint = <&panel_in_channel1>;
ÂÂÂÂÂÂÂÂÂÂÂ };
ÂÂÂÂÂÂÂ };
ÂÂÂÂ};
};
  [1] Documentation/devicetree/bindings/clock/clock-bindings.txt
 [2] Documentation/devicetree/bindings/media/video-interfaces.txt