xref: /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/display/bridge/adi,adv7125.txt (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1Analog Device ADV7125 RGB to VGA DAC bridge
2-------------------------------
3
4The ADV7125 is a digital-to-analog converter that outputs VGA signals from a
5RGB input.
6
7Required properties:
8
9- compatible: Should be "adi,adv7125"
10
11Optional properties:
12
13- psave-gpios: Power save control GPIO
14
15Required nodes:
16
17The ADV7125 has two video ports. Their connections are modeled using the OF
18graph 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
24Example
25-------
26
27	adv7125: encoder@0 {
28		compatible = "adi,adv7125";
29		#address-cells = <1>;
30		#size-cells = <0>;
31
32		ports {
33			port@0 {
34				reg = <0>;
35
36				adv7125_in: endpoint@0 {
37					remote-endpoint = <&rgb_out>;
38				};
39			};
40
41			port@1 {
42				reg = <1>;
43
44				adv7125_out: endpoint@0 {
45					remote-endpoint = <&vga_connector_in>;
46				};
47			};
48		};
49	};
50