]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - Documentation/devicetree/bindings/display/ti/ti,tfp410.txt
pmem, memremap: convert to numa aware allocations
[karo-tx-linux.git] / Documentation / devicetree / bindings / display / ti / ti,tfp410.txt
1 TFP410 DPI to DVI encoder
2 =========================
3
4 Required properties:
5 - compatible: "ti,tfp410"
6
7 Optional properties:
8 - powerdown-gpios: power-down gpio
9
10 Required nodes:
11 - Video port 0 for DPI input
12 - Video port 1 for DVI output
13
14 Example
15 -------
16
17 tfp410: encoder@0 {
18         compatible = "ti,tfp410";
19         powerdown-gpios = <&twl_gpio 2 GPIO_ACTIVE_LOW>;
20
21         ports {
22                 #address-cells = <1>;
23                 #size-cells = <0>;
24
25                 port@0 {
26                         reg = <0>;
27
28                         tfp410_in: endpoint@0 {
29                                 remote-endpoint = <&dpi_out>;
30                         };
31                 };
32
33                 port@1 {
34                         reg = <1>;
35
36                         tfp410_out: endpoint@0 {
37                                 remote-endpoint = <&dvi_connector_in>;
38                         };
39                 };
40         };
41 };