Path: blob/master/Documentation/devicetree/bindings/display/bridge/lontium,lt9611.yaml
29286 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- ports7071allOf:72- $ref: /schemas/sound/dai-common.yaml#7374unevaluatedProperties: false7576examples:77- |78#include <dt-bindings/gpio/gpio.h>79#include <dt-bindings/interrupt-controller/irq.h>8081i2c10 {82#address-cells = <1>;83#size-cells = <0>;8485hdmi-bridge@3b {86compatible = "lontium,lt9611";87reg = <0x3b>;8889reset-gpios = <&tlmm 128 GPIO_ACTIVE_HIGH>;90interrupts-extended = <&tlmm 84 IRQ_TYPE_EDGE_FALLING>;9192vdd-supply = <<9611_1v8>;93vcc-supply = <<9611_3v3>;9495ports {96#address-cells = <1>;97#size-cells = <0>;9899port@0 {100reg = <0>;101lt9611_a: endpoint {102remote-endpoint = <&dsi0_out>;103};104};105106port@1 {107reg = <1>;108lt9611_b: endpoint {109remote-endpoint = <&dsi1_out>;110};111};112113port@2 {114reg = <2>;115lt9611_out: endpoint {116remote-endpoint = <&hdmi_con>;117};118};119};120};121};122123...124125126