Path: blob/master/Documentation/devicetree/bindings/display/bridge/lontium,lt9211.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,lt9211.yaml#4$schema: http://devicetree.org/meta-schemas/core.yaml#56title: Lontium LT9211 DSI/LVDS/DPI to DSI/LVDS/DPI bridge.78maintainers:9- Marek Vasut <marex@denx.de>1011description: |12The LT9211 are bridge devices which convert Single/Dual-Link DSI/LVDS13or Single DPI to Single/Dual-Link DSI/LVDS or Single DPI.1415properties:16compatible:17enum:18- lontium,lt92111920reg:21maxItems: 12223interrupts:24maxItems: 12526reset-gpios:27maxItems: 128description: GPIO connected to active high RESET pin.2930vccio-supply:31description: Regulator for 1.8V IO power.3233ports:34$ref: /schemas/graph.yaml#/properties/ports3536properties:37port@0:38$ref: /schemas/graph.yaml#/properties/port39description:40Primary MIPI DSI port-1 for MIPI input or41LVDS port-1 for LVDS input or DPI input.4243port@1:44$ref: /schemas/graph.yaml#/properties/port45description:46Additional MIPI port-2 for MIPI input or LVDS port-247for LVDS input. Used in combination with primary48port-1 to drive higher resolution displays4950port@2:51$ref: /schemas/graph.yaml#/properties/port52description:53Primary MIPI DSI port-1 for MIPI output or54LVDS port-1 for LVDS output or DPI output.5556port@3:57$ref: /schemas/graph.yaml#/properties/port58description:59Additional MIPI port-2 for MIPI output or LVDS port-260for LVDS output. Used in combination with primary61port-1 to drive higher resolution displays.6263required:64- port@065- port@26667required:68- compatible69- reg70- vccio-supply71- ports7273additionalProperties: false7475examples:76- |77#include <dt-bindings/gpio/gpio.h>78#include <dt-bindings/interrupt-controller/irq.h>7980i2c {81#address-cells = <1>;82#size-cells = <0>;8384hdmi-bridge@3b {85compatible = "lontium,lt9211";86reg = <0x3b>;8788reset-gpios = <&tlmm 128 GPIO_ACTIVE_HIGH>;89interrupts-extended = <&tlmm 84 IRQ_TYPE_EDGE_FALLING>;9091vccio-supply = <<9211_1v8>;9293ports {94#address-cells = <1>;95#size-cells = <0>;9697port@0 {98reg = <0>;99100endpoint {101remote-endpoint = <&dsi0_out>;102};103};104105port@2 {106reg = <2>;107108endpoint {109remote-endpoint = <&panel_in_lvds>;110};111};112};113};114};115116...117118119