Path: blob/master/Documentation/devicetree/bindings/display/bridge/lontium,lt9611.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/lontium,lt9611.yaml#4$schema: http://devicetree.org/meta-schemas/core.yaml#56title: Lontium LT9611(UXC) 2 Port MIPI to HDMI Bridge78maintainers:9- Vinod Koul <vkoul@kernel.org>1011description: |12The LT9611 and LT9611UXC are bridge devices which convert DSI to HDMI1314properties:15compatible:16enum:17- lontium,lt961118- lontium,lt9611uxc1920reg:21maxItems: 12223"#sound-dai-cells":24const: 12526interrupts:27maxItems: 12829reset-gpios:30maxItems: 131description: GPIO connected to active high RESET pin.3233vdd-supply:34description: Regulator for 1.8V MIPI phy power.3536vcc-supply:37description: Regulator for 3.3V IO power.3839ports:40$ref: /schemas/graph.yaml#/properties/ports4142properties:43port@0:44$ref: /schemas/graph.yaml#/properties/port45description:46Primary MIPI port-1 for MIPI input4748port@1:49$ref: /schemas/graph.yaml#/properties/port50description:51Additional MIPI port-2 for MIPI input, used in combination52with primary MIPI port-1 to drive higher resolution displays5354port@2:55$ref: /schemas/graph.yaml#/properties/port56description:57HDMI port for HDMI output5859required:60- port@061- port@26263required:64- compatible65- reg66- interrupts67- vdd-supply68- vcc-supply69- ports7071additionalProperties: false7273examples:74- |75#include <dt-bindings/gpio/gpio.h>76#include <dt-bindings/interrupt-controller/irq.h>7778i2c10 {79#address-cells = <1>;80#size-cells = <0>;8182hdmi-bridge@3b {83compatible = "lontium,lt9611";84reg = <0x3b>;8586reset-gpios = <&tlmm 128 GPIO_ACTIVE_HIGH>;87interrupts-extended = <&tlmm 84 IRQ_TYPE_EDGE_FALLING>;8889vdd-supply = <<9611_1v8>;90vcc-supply = <<9611_3v3>;9192ports {93#address-cells = <1>;94#size-cells = <0>;9596port@0 {97reg = <0>;98lt9611_a: endpoint {99remote-endpoint = <&dsi0_out>;100};101};102103port@1 {104reg = <1>;105lt9611_b: endpoint {106remote-endpoint = <&dsi1_out>;107};108};109110port@2 {111reg = <2>;112lt9611_out: endpoint {113remote-endpoint = <&hdmi_con>;114};115};116};117};118};119120...121122123