megachips-stdpxxxx-ge-b850v3-fw.txt 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. Drivers for the second video output of the GE B850v3:
  2. STDP4028-ge-b850v3-fw bridges (LVDS-DP)
  3. STDP2690-ge-b850v3-fw bridges (DP-DP++)
  4. The video processing pipeline on the second output on the GE B850v3:
  5. Host -> LVDS|--(STDP4028)--|DP -> DP|--(STDP2690)--|DP++ -> Video output
  6. Each bridge has a dedicated flash containing firmware for supporting the custom
  7. design. The result is that, in this design, neither the STDP4028 nor the
  8. STDP2690 behave as the stock bridges would. The compatible strings include the
  9. suffix "-ge-b850v3-fw" to make it clear that the driver is for the bridges with
  10. the firmware specific for the GE B850v3.
  11. The hardware do not provide control over the video processing pipeline, as the
  12. two bridges behaves as a single one. The only interfaces exposed by the
  13. hardware are EDID, HPD, and interrupts.
  14. stdp4028-ge-b850v3-fw required properties:
  15. - compatible : "megachips,stdp4028-ge-b850v3-fw"
  16. - reg : I2C bus address
  17. - interrupts : one interrupt should be described here, as in
  18. <0 IRQ_TYPE_LEVEL_HIGH>
  19. - ports : One input port(reg = <0>) and one output port(reg = <1>)
  20. stdp2690-ge-b850v3-fw required properties:
  21. compatible : "megachips,stdp2690-ge-b850v3-fw"
  22. - reg : I2C bus address
  23. - ports : One input port(reg = <0>) and one output port(reg = <1>)
  24. Example:
  25. &mux2_i2c2 {
  26. clock-frequency = <100000>;
  27. stdp4028@73 {
  28. compatible = "megachips,stdp4028-ge-b850v3-fw";
  29. #address-cells = <1>;
  30. #size-cells = <0>;
  31. reg = <0x73>;
  32. interrupt-parent = <&gpio2>;
  33. interrupts = <0 IRQ_TYPE_LEVEL_HIGH>;
  34. ports {
  35. #address-cells = <1>;
  36. #size-cells = <0>;
  37. port@0 {
  38. reg = <0>;
  39. stdp4028_in: endpoint {
  40. remote-endpoint = <&lvds0_out>;
  41. };
  42. };
  43. port@1 {
  44. reg = <1>;
  45. stdp4028_out: endpoint {
  46. remote-endpoint = <&stdp2690_in>;
  47. };
  48. };
  49. };
  50. };
  51. stdp2690@72 {
  52. compatible = "megachips,stdp2690-ge-b850v3-fw";
  53. #address-cells = <1>;
  54. #size-cells = <0>;
  55. reg = <0x72>;
  56. ports {
  57. #address-cells = <1>;
  58. #size-cells = <0>;
  59. port@0 {
  60. reg = <0>;
  61. stdp2690_in: endpoint {
  62. remote-endpoint = <&stdp4028_out>;
  63. };
  64. };
  65. port@1 {
  66. reg = <1>;
  67. stdp2690_out: endpoint {
  68. /* Connector for external display */
  69. };
  70. };
  71. };
  72. };
  73. };