xref: /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/display/bridge/anx6345.txt (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1Analogix ANX6345 eDP Transmitter
2--------------------------------
3
4The ANX6345 is an ultra-low power Full-HD eDP transmitter designed for
5portable devices.
6
7Required properties:
8
9 - compatible		: "analogix,anx6345"
10 - reg			: I2C address of the device
11 - reset-gpios		: Which GPIO to use for reset
12
13Optional properties:
14
15 - dvdd12-supply	: Regulator for 1.2V digital core power.
16 - dvdd25-supply	: Regulator for 2.5V digital core power.
17 - panel-supply		: Regulator for the power of the panel.
18 - edid			: verbatim EDID data block describing attached
19			  panel, only used when the panel has no EDID info.
20 - Video port for RGB input, using the DT bindings defined in [1].
21
22[1]: Documentation/devicetree/bindings/media/video-interfaces.txt
23
24Example:
25
26anx6345: anx6345@38 {
27	compatible = "analogix,anx6345";
28	reg = <0x38>;
29	reset-gpios = <&pio 3 24 GPIO_ACTIVE_LOW>; /* PD24 */
30	panel-supply = <&reg_dc1sw>;
31	dvdd25-supply = <&reg_dldo2>;
32	dvdd12-supply = <&reg_fldo1>;
33
34	port {
35		anx6345_in: endpoint {
36			remote-endpoint = <&tcon0_out_anx6345>;
37		};
38	};
39};
40