pwm-regulator.txt 727 B

123456789101112131415161718192021222324252627
  1. pwm regulator bindings
  2. Required properties:
  3. - compatible: Should be "pwm-regulator"
  4. - pwms: OF device-tree PWM specification (see PWM binding pwm.txt)
  5. - voltage-table: voltage and duty table, include 2 members in each set of
  6. brackets, first one is voltage(unit: uv), the next is duty(unit: percent)
  7. Any property defined as part of the core regulator binding defined in
  8. regulator.txt can also be used.
  9. Example:
  10. pwm_regulator {
  11. compatible = "pwm-regulator;
  12. pwms = <&pwm1 0 8448 0>;
  13. voltage-table = <1114000 0>,
  14. <1095000 10>,
  15. <1076000 20>,
  16. <1056000 30>,
  17. <1036000 40>,
  18. <1016000 50>;
  19. regulator-min-microvolt = <1016000>;
  20. regulator-max-microvolt = <1114000>;
  21. regulator-name = "vdd_logic";
  22. };