Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost
[cris-mirror.git] / Documentation / devicetree / bindings / display / bridge / dumb-vga-dac.txt
blob164cbb15f04cccb3b35647b87b41d6e886bdf3c1
1 Dumb RGB to VGA DAC bridge
2 ---------------------------
4 This binding is aimed for dumb RGB to VGA DAC based bridges that do not require
5 any configuration.
7 Required properties:
9 - compatible: Must be "dumb-vga-dac"
11 Required nodes:
13 This device has two video ports. Their connections are modelled using the OF
14 graph bindings specified in Documentation/devicetree/bindings/graph.txt.
16 - Video port 0 for RGB input
17 - Video port 1 for VGA output
19 Optional properties:
20 - vdd-supply: Power supply for DAC
22 Example
23 -------
25 bridge {
26         compatible = "dumb-vga-dac";
27         #address-cells = <1>;
28         #size-cells = <0>;
30         ports {
31                 #address-cells = <1>;
32                 #size-cells = <0>;
34                 port@0 {
35                         reg = <0>;
37                         vga_bridge_in: endpoint {
38                                 remote-endpoint = <&tcon0_out_vga>;
39                         };
40                 };
42                 port@1 {
43                         reg = <1>;
45                         vga_bridge_out: endpoint {
46                                 remote-endpoint = <&vga_con_in>;
47                         };
48                 };
49         };