pd-samsung.txt 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. * samsung,exynos5433-pd - for exynos5433 type power domain.
  8. - reg: physical base address of the controller and length of memory mapped
  9. region.
  10. - #power-domain-cells: number of cells in power domain specifier;
  11. must be 0.
  12. Optional Properties:
  13. - label: Human readable string with domain name. Will be visible in userspace
  14. to let user to distinguish between multiple domains in SoC.
  15. - power-domains: phandle pointing to the parent power domain, for more details
  16. see Documentation/devicetree/bindings/power/power_domain.txt
  17. Deprecated Properties:
  18. - clocks
  19. - clock-names
  20. Node of a device using power domains must have a power-domains property
  21. defined with a phandle to respective power domain.
  22. Example:
  23. lcd0: power-domain-lcd0 {
  24. compatible = "samsung,exynos4210-pd";
  25. reg = <0x10023C00 0x10>;
  26. #power-domain-cells = <0>;
  27. label = "LCD0";
  28. };
  29. mfc_pd: power-domain@10044060 {
  30. compatible = "samsung,exynos4210-pd";
  31. reg = <0x10044060 0x20>;
  32. #power-domain-cells = <0>;
  33. label = "MFC";
  34. };
  35. See Documentation/devicetree/bindings/power/power_domain.txt for description
  36. of consumer-side bindings.