power_domain.txt 873 B

1234567891011121314151617181920212223242526272829303132333435
  1. * ST-Ericsson UX500 PM Domains
  2. UX500 supports multiple PM domains which are used to gate power to one or
  3. more peripherals on the SOC.
  4. The implementation of PM domains for UX500 are based upon the generic PM domain
  5. and use the corresponding DT bindings.
  6. ==PM domain providers==
  7. Required properties:
  8. - compatible: Must be "stericsson,ux500-pm-domains".
  9. - #power-domain-cells : Number of cells in a power domain specifier, must be 1.
  10. Example:
  11. pm_domains: pm_domains0 {
  12. compatible = "stericsson,ux500-pm-domains";
  13. #power-domain-cells = <1>;
  14. };
  15. ==PM domain consumers==
  16. Required properties:
  17. - power-domains: A phandle and PM domain specifier. Below are the list of
  18. valid specifiers:
  19. Index Specifier
  20. ----- ---------
  21. 0 DOMAIN_VAPE
  22. Example:
  23. sdi0_per1@80126000 {
  24. compatible = "arm,pl18x", "arm,primecell";
  25. power-domains = <&pm_domains DOMAIN_VAPE>
  26. };