sde-dp-sim.txt 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. QTI Snapdragon Display Engine (SDE) DP-MST sideband message emulation driver
  2. Required properties:
  3. - compatible: "qcom,dp-mst-sim"
  4. Each child node represents a port at root branch, with properties:
  5. - qcom,mode-h-active: A u32 property defines the horizontal active size.
  6. - qcom,mode-h-front-porch: A u32 property defines the horizontal front porch.
  7. - qcom,mode-h-pulse-width: A u32 property defines the horizontal pulse.
  8. - qcom,mode-h-back-porch: A u32 property defines the horizontal back porch.
  9. - qcom,mode-h-active-high: A boolean property if horizontal polarity is high.
  10. - qcom,mode-v-active: A u32 property defines the vertical active size.
  11. - qcom,mode-v-front-porch: A u32 property defines the vertical front portch.
  12. - qcom,mode-v-pulse-width: A u32 property defines the vertical pulse width.
  13. - qcom,mode-v-back-porch: A u32 property defines the vertical back porch.
  14. - qcom,mode-v-active-high: A boolean property if vertical polarity is high.
  15. - qcom,mode-refresh-rate: A u32 property defines vertial refresh rate.
  16. - qcom,mode-clock-in-khz: A u32 property defines clock in kHz.
  17. Example:
  18. / {
  19. ...
  20. sde_dp_mst_sim: qcom,dp-mst-sim {
  21. compatible = "qcom,dp-mst-sim";
  22. port@0 {
  23. qcom,mode-h-active = <1920>;
  24. qcom,mode-h-front-porch = <88>;
  25. qcom,mode-h-pulse-width = <44>;
  26. qcom,mode-h-back-porch = <148>;
  27. qcom,mode-h-active-high;
  28. qcom,mode-v-active = <1080>;
  29. qcom,mode-v-front-porch = <4>;
  30. qcom,mode-v-pulse-width = <5>;
  31. qcom,mode-v-back-porch = <36>;
  32. qcom,mode-v-active-high;
  33. qcom,mode-refresh-rate = <60>;
  34. qcom,mode-clock-in-khz = <148500>;
  35. };
  36. port@1 {
  37. qcom,mode-h-active = <1920>;
  38. qcom,mode-h-front-porch = <88>;
  39. qcom,mode-h-pulse-width = <44>;
  40. qcom,mode-h-back-porch = <148>;
  41. qcom,mode-h-active-high;
  42. qcom,mode-v-active = <1080>;
  43. qcom,mode-v-front-porch = <4>;
  44. qcom,mode-v-pulse-width = <5>;
  45. qcom,mode-v-back-porch = <36>;
  46. qcom,mode-v-active-high;
  47. qcom,mode-refresh-rate = <60>;
  48. qcom,mode-clock-in-khz = <148500>;
  49. };
  50. };
  51. };