Path: blob/master/Documentation/devicetree/bindings/display/bridge/ps8640.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/ps8640.yaml#4$schema: http://devicetree.org/meta-schemas/core.yaml#56title: MIPI DSI to eDP Video Format Converter78maintainers:9- Nicolas Boichat <drinkcat@chromium.org>1011description: |12The PS8640 is a low power MIPI-to-eDP video format converter supporting13mobile devices with embedded panel resolutions up to 2048 x 1536. The14device accepts a single channel of MIPI DSI v1.1, with up to four lanes15plus clock, at a transmission rate up to 1.5Gbit/sec per lane. The16device outputs eDP v1.4, one or two lanes, at a link rate of up to173.24Gbit/sec per lane.1819properties:20compatible:21const: parade,ps86402223reg:24maxItems: 125description: Base I2C address of the device.2627powerdown-gpios:28maxItems: 129description: GPIO connected to active low powerdown.3031reset-gpios:32maxItems: 133description: GPIO connected to active low reset.3435vdd12-supply:36description: Regulator for 1.2V digital core power.3738vdd33-supply:39description: Regulator for 3.3V digital core power.4041aux-bus:42$ref: /schemas/display/dp-aux-bus.yaml#4344ports:45$ref: /schemas/graph.yaml#/properties/ports4647properties:48port@0:49$ref: /schemas/graph.yaml#/properties/port50description:51Video port for DSI input5253port@1:54$ref: /schemas/graph.yaml#/properties/port55description:56Video port for eDP output (panel or connector).5758required:59- port@06061required:62- compatible63- reg64- powerdown-gpios65- reset-gpios66- vdd12-supply67- vdd33-supply68- ports6970additionalProperties: false7172examples:73- |74#include <dt-bindings/gpio/gpio.h>75i2c {76#address-cells = <1>;77#size-cells = <0>;7879ps8640: edp-bridge@18 {80compatible = "parade,ps8640";81reg = <0x18>;82powerdown-gpios = <&pio 116 GPIO_ACTIVE_LOW>;83reset-gpios = <&pio 115 GPIO_ACTIVE_LOW>;84vdd12-supply = <&ps8640_fixed_1v2>;85vdd33-supply = <&mt6397_vgp2_reg>;8687ports {88#address-cells = <1>;89#size-cells = <0>;9091port@0 {92reg = <0>;93ps8640_in: endpoint {94remote-endpoint = <&dsi0_out>;95};96};9798port@1 {99reg = <1>;100ps8640_out: endpoint {101remote-endpoint = <&panel_in>;102};103};104};105106aux-bus {107panel {108compatible = "boe,nv133fhm-n62";109power-supply = <&pp3300_dx_edp>;110backlight = <&backlight>;111112port {113panel_in: endpoint {114remote-endpoint = <&ps8640_out>;115};116};117};118};119};120};121122123