qcom,saw2.txt 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. SPM AVS Wrapper 2 (SAW2)
  2. The SAW2 is a wrapper around the Subsystem Power Manager (SPM) and the
  3. Adaptive Voltage Scaling (AVS) hardware. The SPM is a programmable
  4. micro-controller that transitions a piece of hardware (like a processor or
  5. subsystem) into and out of low power modes via a direct connection to
  6. the PMIC. It can also be wired up to interact with other processors in the
  7. system, notifying them when a low power state is entered or exited.
  8. PROPERTIES
  9. - compatible:
  10. Usage: required
  11. Value type: <string>
  12. Definition: shall contain "qcom,saw2". A more specific value should be
  13. one of:
  14. "qcom,saw2-v1"
  15. "qcom,saw2-v1.1"
  16. "qcom,saw2-v2"
  17. "qcom,saw2-v2.1"
  18. - reg:
  19. Usage: required
  20. Value type: <prop-encoded-array>
  21. Definition: the first element specifies the base address and size of
  22. the register region. An optional second element specifies
  23. the base address and size of the alias register region.
  24. Example:
  25. regulator@2099000 {
  26. compatible = "qcom,saw2";
  27. reg = <0x02099000 0x1000>, <0x02009000 0x1000>;
  28. };