Path: blob/master/Documentation/devicetree/bindings/display/bridge/google,cros-ec-anx7688.yaml
26309 views
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)1%YAML 1.22---3$id: http://devicetree.org/schemas/display/bridge/google,cros-ec-anx7688.yaml#4$schema: http://devicetree.org/meta-schemas/core.yaml#56title: ChromeOS EC ANX7688 HDMI to DP Converter through Type-C Port78maintainers:9- Nicolas Boichat <drinkcat@chromium.org>1011description: |12ChromeOS EC ANX7688 is a display bridge that converts HDMI 2.0 to13DisplayPort 1.3 Ultra-HDi (4096x2160p60). It is an Analogix ANX7688 chip14which is connected to and operated by the ChromeOS Embedded Controller15(See google,cros-ec.yaml). It is accessed using I2C tunneling through16the EC and therefore its node should be a child of an EC I2C tunnel node17(See google,cros-ec-i2c-tunnel.yaml).1819properties:20compatible:21const: google,cros-ec-anx76882223reg:24maxItems: 125description: I2C address of the device.2627ports:28$ref: /schemas/graph.yaml#/properties/ports2930properties:31port@0:32$ref: /schemas/graph.yaml#/properties/port33description: Video port for HDMI input.3435port@1:36$ref: /schemas/graph.yaml#/properties/port37description: USB Type-c connector.3839required:40- port@041- port@14243required:44- compatible45- reg46- ports4748additionalProperties: false4950examples:51- |52i2c_tunnel_b: i2c-tunnel1 {53compatible = "google,cros-ec-i2c-tunnel";54google,remote-bus = <1>;55#address-cells = <1>;56#size-cells = <0>;5758anx7688: anx7688@2c {59compatible = "google,cros-ec-anx7688";60reg = <0x2c>;6162ports {63#address-cells = <1>;64#size-cells = <0>;65port@0 {66reg = <0>;67anx7688_in: endpoint {68remote-endpoint = <&hdmi0_out>;69};70};71port@1 {72reg = <1>;73anx7688_out: endpoint {74remote-endpoint = <&typec_connector>;75};76};77};78};79};808182