/Documentation/devicetree/bindings/fb/mdss-mdp.txt

https://github.com/ChangYeoun/OptimusG · Plain Text · 23 lines · 19 code · 4 blank · 0 comment · 0 complexity · 2c926b3d7e370666e82e2b63e02c27f8 MD5 · raw file

  1. Qualcomm MDSS MDP
  2. MDSS is Mobile Display SubSystem which implements Linux framebuffer APIs to
  3. drive user interface to different panel interfaces. MDP driver is the core of
  4. MDSS which manage all data paths to different panel interfaces.
  5. Required properties
  6. - compatible : Must be "qcom,mdss_mdp"
  7. - reg : offset and length of the register set for the device.
  8. - reg-names : names to refer to register sets related to this device
  9. - interrupts : Interrupt associated with MDSS.
  10. - vdd-supply : Phandle for vdd regulator device node.
  11. Example:
  12. qcom,mdss_mdp@fd900000 {
  13. compatible = "qcom,mdss_mdp";
  14. reg = <0xfd900000 0x22100>,
  15. <0xfd924000 0x1000>;
  16. reg-names = "mdp_phys", "vbif_phys";
  17. interrupts = <0 72 0>;
  18. vdd-supply = <&gdsc_mdss>;
  19. };