power_domain.txt 738 B

12345678910111213141516171819202122232425262728
  1. * Samsung Exynos Power Domains
  2. Exynos processors include support for multiple power domains which are used
  3. to gate power to one or more peripherals on the processor.
  4. Required Properties:
  5. - compatible: should be one of the following.
  6. * samsung,exynos4210-pd - for exynos4210 type power domain.
  7. - reg: physical base address of the controller and length of memory mapped
  8. region.
  9. Node of a device using power domains must have a samsung,power-domain property
  10. defined with a phandle to respective power domain.
  11. Example:
  12. lcd0: power-domain-lcd0 {
  13. compatible = "samsung,exynos4210-pd";
  14. reg = <0x10023C00 0x10>;
  15. };
  16. Example of the node using power domain:
  17. node {
  18. /* ... */
  19. samsung,power-domain = <&lcd0>;
  20. /* ... */
  21. };