1THine Electronics THC63LVDM83D LVDS serializer 2---------------------------------------------- 3 4The THC63LVDM83D is an LVDS serializer designed to support pixel data 5transmission between a host and a flat panel. 6 7Required properties: 8 9- compatible: Should be "thine,thc63lvdm83d" 10 11Optional properties: 12 13- pwdn-gpios: Power down control GPIO 14 15Required nodes: 16 17The THC63LVDM83D has two video ports. Their connections are modeled using the 18OFgraph bindings specified in Documentation/devicetree/bindings/graph.txt. 19 20- Video port 0 for CMOS/TTL input 21- Video port 1 for LVDS output 22 23 24Example 25------- 26 27 lvds_enc: encoder@0 { 28 compatible = "thine,thc63lvdm83d"; 29 30 ports { 31 #address-cells = <1>; 32 #size-cells = <0>; 33 34 port@0 { 35 reg = <0>; 36 37 lvds_enc_in: endpoint@0 { 38 remote-endpoint = <&rgb_out>; 39 }; 40 }; 41 42 port@1 { 43 reg = <1>; 44 45 lvds_enc_out: endpoint@0 { 46 remote-endpoint = <&panel_in>; 47 }; 48 }; 49 }; 50 }; 51