Path: blob/master/Documentation/devicetree/bindings/display/bridge/anx6345.yaml
26309 views
# SPDX-License-Identifier: GPL-2.01%YAML 1.22---3$id: http://devicetree.org/schemas/display/bridge/anx6345.yaml#4$schema: http://devicetree.org/meta-schemas/core.yaml#56title: Analogix ANX6345 eDP Transmitter78maintainers:9- Torsten Duwe <duwe@lst.de>1011description: |12The ANX6345 is an ultra-low power Full-HD eDP transmitter designed for13portable devices.1415properties:16compatible:17const: analogix,anx63451819reg:20maxItems: 121description: base I2C address of the device2223reset-gpios:24maxItems: 125description: GPIO connected to active low reset2627dvdd12-supply:28description: Regulator for 1.2V digital core power.2930dvdd25-supply:31description: Regulator for 2.5V digital core power.3233ports:34$ref: /schemas/graph.yaml#/properties/ports3536properties:37port@0:38$ref: /schemas/graph.yaml#/properties/port39description:40Video port for LVTTL input4142port@1:43$ref: /schemas/graph.yaml#/properties/port44description:45Video port for eDP output (panel or connector).46May be omitted if EDID works reliably.4748required:49- port@05051required:52- compatible53- reg54- reset-gpios55- dvdd12-supply56- dvdd25-supply57- ports5859additionalProperties: false6061examples:62- |63i2c {64#address-cells = <1>;65#size-cells = <0>;6667anx6345: anx6345@38 {68compatible = "analogix,anx6345";69reg = <0x38>;70reset-gpios = <&pio42 1 /* GPIO_ACTIVE_LOW */>;71dvdd25-supply = <®_dldo2>;72dvdd12-supply = <®_fldo1>;7374ports {75#address-cells = <1>;76#size-cells = <0>;7778anx6345_in: port@0 {79reg = <0>;80anx6345_in_tcon0: endpoint {81remote-endpoint = <&tcon0_out_anx6345>;82};83};8485anx6345_out: port@1 {86reg = <1>;87anx6345_out_panel: endpoint {88remote-endpoint = <&panel_in_edp>;89};90};91};92};93};949596