Merge tag 'v4.17-rc6' into next
[sfrench/cifs-2.6.git] / Documentation / devicetree / bindings / display / bridge / ti,ths813x.txt
1 THS8134 and THS8135 Video DAC
2 -----------------------------
3
4 This is the binding for Texas Instruments THS8134, THS8134A, THS8134B and
5 THS8135 Video DAC bridges.
6
7 Required properties:
8
9 - compatible: Must be one of
10   "ti,ths8134"
11   "ti,ths8134a," "ti,ths8134"
12   "ti,ths8134b", "ti,ths8134"
13   "ti,ths8135"
14
15 Required nodes:
16
17 This device has two video ports. Their connections are modelled using the OF
18 graph bindings specified in Documentation/devicetree/bindings/graph.txt.
19
20 - Video port 0 for RGB input
21 - Video port 1 for VGA output
22
23 Example
24 -------
25
26 vga-bridge {
27         compatible = "ti,ths8135";
28         #address-cells = <1>;
29         #size-cells = <0>;
30
31         ports {
32                 #address-cells = <1>;
33                 #size-cells = <0>;
34
35                 port@0 {
36                         reg = <0>;
37
38                         vga_bridge_in: endpoint {
39                                 remote-endpoint = <&lcdc_out_vga>;
40                         };
41                 };
42
43                 port@1 {
44                         reg = <1>;
45
46                         vga_bridge_out: endpoint {
47                                 remote-endpoint = <&vga_con_in>;
48                         };
49                 };
50         };
51 };