ArtInChip MIPI-DSI interface ============================== Required properties: - pinctrl-names, pinctrl-0: the pincontrol settings to configure muxing properly for pins that connect to screen - port@[0-1]: Port nodes with endpoint definitions as defined in Documentation/devicetree/bindings/media/video-interfaces.txt. Port 0 is the input port connected to the display engine, port 1 is the output port connected to a panel. Optional properties: - status: Should be "ok" or "disabled" for enabled/disabled. Default is "ok". Example: &dsi0 { pinctrl-names = "default"; pinctrl-0 = <&dsi_pins>; status = "okay"; port@0 { reg = <0>; dsi0_in: endpoint { remote-endpoint = <&dsi0_in>; }; }; port@1 { reg = <1>; dsi0_out: endpoint { remote-endpoint = <&panel_dsi_in>; }; }; };