GNU Linux-libre 4.14.254-gnu1
[releases.git] / Documentation / devicetree / bindings / display / bridge / ti,ths8135.txt
1 THS8135 Video DAC
2 -----------------
3
4 This is the binding for Texas Instruments THS8135 Video DAC bridge.
5
6 Required properties:
7
8 - compatible: Must be "ti,ths8135"
9
10 Required nodes:
11
12 This device has two video ports. Their connections are modelled using the OF
13 graph bindings specified in Documentation/devicetree/bindings/graph.txt.
14
15 - Video port 0 for RGB input
16 - Video port 1 for VGA output
17
18 Example
19 -------
20
21 vga-bridge {
22         compatible = "ti,ths8135";
23         #address-cells = <1>;
24         #size-cells = <0>;
25
26         ports {
27                 #address-cells = <1>;
28                 #size-cells = <0>;
29
30                 port@0 {
31                         reg = <0>;
32
33                         vga_bridge_in: endpoint {
34                                 remote-endpoint = <&lcdc_out_vga>;
35                         };
36                 };
37
38                 port@1 {
39                         reg = <1>;
40
41                         vga_bridge_out: endpoint {
42                                 remote-endpoint = <&vga_con_in>;
43                         };
44                 };
45         };
46 };