1Dumb RGB to VGA DAC bridge
2---------------------------
3
4This binding is aimed for dumb RGB to VGA DAC based bridges that do not require
5any configuration.
6
7Required properties:
8
9- compatible: Must be "dumb-vga-dac"
10
11Required nodes:
12
13This device has two video ports. Their connections are modelled using the OF
14graph bindings specified in Documentation/devicetree/bindings/graph.txt.
15
16- Video port 0 for RGB input
17- Video port 1 for VGA output
18
19Optional properties:
20- vdd-supply: Power supply for DAC
21
22Example
23-------
24
25bridge {
26	compatible = "dumb-vga-dac";
27	#address-cells = <1>;
28	#size-cells = <0>;
29
30	ports {
31		#address-cells = <1>;
32		#size-cells = <0>;
33
34		port@0 {
35			reg = <0>;
36
37			vga_bridge_in: endpoint {
38				remote-endpoint = <&tcon0_out_vga>;
39			};
40		};
41
42		port@1 {
43			reg = <1>;
44
45			vga_bridge_out: endpoint {
46				remote-endpoint = <&vga_con_in>;
47			};
48		};
49	};
50};
51