0001 * ST-Ericsson UX500 PM Domains
0002
0003 UX500 supports multiple PM domains which are used to gate power to one or
0004 more peripherals on the SOC.
0005
0006 The implementation of PM domains for UX500 are based upon the generic PM domain
0007 and use the corresponding DT bindings.
0008
0009 ==PM domain providers==
0010
0011 Required properties:
0012 - compatible: Must be "stericsson,ux500-pm-domains".
0013 - #power-domain-cells : Number of cells in a power domain specifier, must be 1.
0014
0015 Example:
0016 pm_domains: pm_domains0 {
0017 compatible = "stericsson,ux500-pm-domains";
0018 #power-domain-cells = <1>;
0019 };
0020
0021 ==PM domain consumers==
0022
0023 Required properties:
0024 - power-domains: A phandle and PM domain specifier. Below are the list of
0025 valid specifiers:
0026
0027 Index Specifier
0028 ----- ---------
0029 0 DOMAIN_VAPE
0030
0031 Example:
0032 sdi0_per1@80126000 {
0033 compatible = "arm,pl18x", "arm,primecell";
0034 power-domains = <&pm_domains DOMAIN_VAPE>
0035 };