ti,tps62870.yaml 1000 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
  2. %YAML 1.2
  3. ---
  4. $id: http://devicetree.org/schemas/regulator/ti,tps62870.yaml#
  5. $schema: http://devicetree.org/meta-schemas/core.yaml#
  6. title: TI TPS62870/TPS62871/TPS62872/TPS62873 voltage regulator
  7. maintainers:
  8. - Mårten Lindahl <marten.lindahl@axis.com>
  9. allOf:
  10. - $ref: regulator.yaml#
  11. properties:
  12. compatible:
  13. enum:
  14. - ti,tps62870
  15. - ti,tps62871
  16. - ti,tps62872
  17. - ti,tps62873
  18. reg:
  19. maxItems: 1
  20. regulator-initial-mode:
  21. enum: [ 1, 2 ]
  22. description: 1 - Forced PWM mode, 2 - Low power mode
  23. required:
  24. - compatible
  25. - reg
  26. unevaluatedProperties: false
  27. examples:
  28. - |
  29. i2c {
  30. #address-cells = <1>;
  31. #size-cells = <0>;
  32. regulator@41 {
  33. compatible = "ti,tps62873";
  34. reg = <0x41>;
  35. regulator-name = "+0.75V";
  36. regulator-min-microvolt = <400000>;
  37. regulator-max-microvolt = <1675000>;
  38. regulator-initial-mode = <1>;
  39. };
  40. };
  41. ...