regulator-haptic.txt 616 B

123456789101112131415161718192021
  1. * Regulator Haptic Device Tree Bindings
  2. Required Properties:
  3. - compatible : Should be "regulator-haptic"
  4. - haptic-supply : Power supply to the haptic motor.
  5. [*] refer Documentation/devicetree/bindings/regulator/regulator.txt
  6. - max-microvolt : The maximum voltage value supplied to the haptic motor.
  7. [The unit of the voltage is a micro]
  8. - min-microvolt : The minimum voltage value supplied to the haptic motor.
  9. [The unit of the voltage is a micro]
  10. Example:
  11. haptics {
  12. compatible = "regulator-haptic";
  13. haptic-supply = <&motor_regulator>;
  14. max-microvolt = <2700000>;
  15. min-microvolt = <1100000>;
  16. };