summaryrefslogtreecommitdiffstats
path: root/dts/Bindings/video/dvi-connector.txt
blob: fc53f7c60bc65ee3b54028af8c8488ecb738b066 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
DVI Connector
==============

Required properties:
- compatible: "dvi-connector"

Optional properties:
- label: a symbolic name for the connector
- ddc-i2c-bus: phandle to the i2c bus that is connected to DVI DDC
- analog: the connector has DVI analog pins
- digital: the connector has DVI digital pins
- dual-link: the connector has pins for DVI dual-link

Required nodes:
- Video port for DVI input

Note: One (or both) of 'analog' or 'digital' must be set.

Example
-------

dvi0: connector@0 {
	compatible = "dvi-connector";
	label = "dvi";

	digital;

	ddc-i2c-bus = <&i2c3>;

	port {
		dvi_connector_in: endpoint {
			remote-endpoint = <&tfp410_out>;
		};
	};
};