Path: blob/master/Documentation/devicetree/bindings/display/bridge/megachips,stdp2690-ge-b850v3-fw.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/megachips,stdp2690-ge-b850v3-fw.yaml#4$schema: http://devicetree.org/meta-schemas/core.yaml#56title: GE B850v3 video bridge78maintainers:9- Frank Li <Frank.Li@nxp.com>1011description: |12STDP4028-ge-b850v3-fw bridges (LVDS-DP)13STDP2690-ge-b850v3-fw bridges (DP-DP++)1415The video processing pipeline on the second output on the GE B850v3:1617Host -> LVDS|--(STDP4028)--|DP -> DP|--(STDP2690)--|DP++ -> Video output1819Each bridge has a dedicated flash containing firmware for supporting the custom20design. The result is that, in this design, neither the STDP4028 nor the21STDP2690 behave as the stock bridges would. The compatible strings include the22suffix "-ge-b850v3-fw" to make it clear that the driver is for the bridges with23the firmware specific for the GE B850v3.2425The hardware do not provide control over the video processing pipeline, as the26two bridges behaves as a single one. The only interfaces exposed by the27hardware are EDID, HPD, and interrupts.2829properties:30compatible:31enum:32- megachips,stdp4028-ge-b850v3-fw33- megachips,stdp2690-ge-b850v3-fw3435reg:36maxItems: 13738interrupts:39maxItems: 14041ports:42$ref: /schemas/graph.yaml#/properties/ports43properties:44port@0:45description: sink port46$ref: /schemas/graph.yaml#/properties/port4748port@1:49description: source port50$ref: /schemas/graph.yaml#/properties/port5152required:53- port@054- port@15556required:57- compatible58- reg59- ports6061allOf:62- if:63properties:64compatible:65contains:66const: megachips,stdp4028-ge-b850v3-fw67then:68required:69- interrupts7071additionalProperties: false7273examples:74- |75#include <dt-bindings/interrupt-controller/irq.h>7677i2c {78#address-cells = <1>;79#size-cells = <0>;8081bridge@73 {82compatible = "megachips,stdp4028-ge-b850v3-fw";83reg = <0x73>;84interrupt-parent = <&gpio2>;85interrupts = <0 IRQ_TYPE_LEVEL_HIGH>;8687ports {88#address-cells = <1>;89#size-cells = <0>;9091port@0 {92reg = <0>;9394endpoint {95remote-endpoint = <&lvds0_out>;96};9798};99100port@1 {101reg = <1>;102103endpoint {104remote-endpoint = <&stdp2690_in>;105};106};107};108};109};110111112113