Merge branch 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux...
[linux/fpc-iii.git] / Documentation / devicetree / bindings / display / bridge / adi,adv7123.txt
bloba6b2b2b8f3d9e3a6b770f349d7e2f6dff91c68d6
1 Analog Device ADV7123 Video DAC
2 -------------------------------
4 The ADV7123 is a digital-to-analog converter that outputs VGA signals from a
5 parallel video input.
7 Required properties:
9 - compatible: Should be "adi,adv7123"
11 Optional properties:
13 - psave-gpios: Power save control GPIO
15 Required nodes:
17 The ADV7123 has two video ports. Their connections are modeled using the OF
18 graph bindings specified in Documentation/devicetree/bindings/graph.txt.
20 - Video port 0 for DPI input
21 - Video port 1 for VGA output
24 Example
25 -------
27         adv7123: encoder@0 {
28                 compatible = "adi,adv7123";
30                 ports {
31                         #address-cells = <1>;
32                         #size-cells = <0>;
34                         port@0 {
35                                 reg = <0>;
37                                 adv7123_in: endpoint@0 {
38                                         remote-endpoint = <&dpi_out>;
39                                 };
40                         };
42                         port@1 {
43                                 reg = <1>;
45                                 adv7123_out: endpoint@0 {
46                                         remote-endpoint = <&vga_connector_in>;
47                                 };
48                         };
49                 };
50         };