Path: blob/master/Documentation/devicetree/bindings/display/bridge/ti,dlpc3433.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/ti,dlpc3433.yaml#4$schema: http://devicetree.org/meta-schemas/core.yaml#56title: TI DLPC3433 MIPI DSI to DMD bridge78maintainers:9- Jagan Teki <jagan@amarulasolutions.com>10- Christopher Vollo <chris@renewoutreach.org>1112description: |13TI DLPC3433 is a MIPI DSI based display controller bridge14for processing high resolution DMD based projectors.1516It has a flexible configuration of MIPI DSI and DPI signal17input that produces a DMD output in RGB565, RGB666, RGB88818formats.1920It supports upto 720p resolution with 60 and 120 Hz refresh21rates.2223properties:24compatible:25const: ti,dlpc34332627reg:28enum:29- 0x1b30- 0x1d3132enable-gpios:33description: PROJ_ON pin, chip powers up PROJ_ON is high.3435vcc_intf-supply:36description: A 1.8V/3.3V supply that power the Host I/O.3738vcc_flsh-supply:39description: A 1.8V/3.3V supply that power the Flash I/O.4041ports:42$ref: /schemas/graph.yaml#/properties/ports4344properties:45port@0:46$ref: /schemas/graph.yaml#/$defs/port-base47unevaluatedProperties: false48description: Video port for MIPI DSI input.4950properties:51endpoint:52$ref: /schemas/media/video-interfaces.yaml#53unevaluatedProperties: false5455properties:56data-lanes:57description: array of physical DSI data lane indexes.58minItems: 159items:60- const: 161- const: 262- const: 363- const: 46465port@1:66$ref: /schemas/graph.yaml#/properties/port67description: Video port for DMD output.6869required:70- port@071- port@17273required:74- compatible75- reg76- enable-gpios77- ports7879additionalProperties: false8081examples:82- |83#include <dt-bindings/gpio/gpio.h>8485i2c {86#address-cells = <1>;87#size-cells = <0>;8889bridge@1b {90compatible = "ti,dlpc3433";91reg = <0x1b>;92enable-gpios = <&gpio2 1 GPIO_ACTIVE_HIGH>;9394ports {95#address-cells = <1>;96#size-cells = <0>;9798port@0 {99reg = <0>;100101bridge_in_dsi: endpoint {102remote-endpoint = <&dsi_out_bridge>;103data-lanes = <1 2 3 4>;104};105};106107port@1 {108reg = <1>;109110bridge_out_panel: endpoint {111remote-endpoint = <&panel_out_bridge>;112};113};114};115};116};117118119