Path: blob/master/Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
26309 views
Drivers for the second video output of the GE B850v3:1STDP4028-ge-b850v3-fw bridges (LVDS-DP)2STDP2690-ge-b850v3-fw bridges (DP-DP++)34The video processing pipeline on the second output on the GE B850v3:56Host -> LVDS|--(STDP4028)--|DP -> DP|--(STDP2690)--|DP++ -> Video output78Each bridge has a dedicated flash containing firmware for supporting the custom9design. The result is that, in this design, neither the STDP4028 nor the10STDP2690 behave as the stock bridges would. The compatible strings include the11suffix "-ge-b850v3-fw" to make it clear that the driver is for the bridges with12the firmware specific for the GE B850v3.1314The hardware do not provide control over the video processing pipeline, as the15two bridges behaves as a single one. The only interfaces exposed by the16hardware are EDID, HPD, and interrupts.1718stdp4028-ge-b850v3-fw required properties:19- compatible : "megachips,stdp4028-ge-b850v3-fw"20- reg : I2C bus address21- interrupts : one interrupt should be described here, as in22<0 IRQ_TYPE_LEVEL_HIGH>23- ports : One input port(reg = <0>) and one output port(reg = <1>)2425stdp2690-ge-b850v3-fw required properties:26compatible : "megachips,stdp2690-ge-b850v3-fw"27- reg : I2C bus address28- ports : One input port(reg = <0>) and one output port(reg = <1>)2930Example:3132&mux2_i2c2 {33clock-frequency = <100000>;3435stdp4028@73 {36compatible = "megachips,stdp4028-ge-b850v3-fw";37#address-cells = <1>;38#size-cells = <0>;3940reg = <0x73>;4142interrupt-parent = <&gpio2>;43interrupts = <0 IRQ_TYPE_LEVEL_HIGH>;4445ports {46#address-cells = <1>;47#size-cells = <0>;4849port@0 {50reg = <0>;51stdp4028_in: endpoint {52remote-endpoint = <&lvds0_out>;53};54};55port@1 {56reg = <1>;57stdp4028_out: endpoint {58remote-endpoint = <&stdp2690_in>;59};60};61};62};6364stdp2690@72 {65compatible = "megachips,stdp2690-ge-b850v3-fw";66#address-cells = <1>;67#size-cells = <0>;6869reg = <0x72>;7071ports {72#address-cells = <1>;73#size-cells = <0>;7475port@0 {76reg = <0>;77stdp2690_in: endpoint {78remote-endpoint = <&stdp4028_out>;79};80};8182port@1 {83reg = <1>;84stdp2690_out: endpoint {85/* Connector for external display */86};87};88};89};90};919293