msm-cpp.txt 976 B

12345678910111213141516171819202122232425262728293031
  1. * Qualcomm MSM CPP
  2. Required properties:
  3. - cell-index: cpp hardware core index
  4. - compatible :
  5. - "qcom,cpp"
  6. - reg : offset and length of the register set for the device
  7. for the cpp operating in compatible mode.
  8. - reg-names : should specify relevant names to each reg property defined.
  9. - cpp - has CPP MICRO register set.
  10. - cpp_vbif - has VBIF core register set used by CPP.
  11. - cpp_hw - has CPP hardware register set.
  12. - interrupts : should contain the cpp interrupt.
  13. - interrupt-names : should specify relevant names to each interrupts
  14. property defined.
  15. - vdd-supply: phandle to GDSC regulator controlling VFE & CPP core.
  16. Example:
  17. qcom,cpp@0xfda04000 {
  18. cell-index = <0>;
  19. compatible = "qcom,cpp";
  20. reg = <0xfda04000 0x100>;
  21. <0xfda40000 0x200>;
  22. <0xfd180000 0x008>;
  23. reg-names = "cpp", "cpp_vbif", "cpp_hw";
  24. interrupts = <0 49 0>;
  25. interrupt-names = "cpp";
  26. vdd-supply = <&gdsc_vfe>;
  27. };