mps,mpq2286.yaml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
  2. %YAML 1.2
  3. ---
  4. $id: http://devicetree.org/schemas/regulator/mps,mpq2286.yaml#
  5. $schema: http://devicetree.org/meta-schemas/core.yaml#
  6. title: Monolithic Power System MPQ2286 PMIC
  7. maintainers:
  8. - Saravanan Sekar <saravanan@linumiz.com>
  9. properties:
  10. compatible:
  11. enum:
  12. - mps,mpq2286
  13. reg:
  14. maxItems: 1
  15. regulators:
  16. type: object
  17. properties:
  18. buck:
  19. type: object
  20. $ref: regulator.yaml#
  21. unevaluatedProperties: false
  22. additionalProperties: false
  23. required:
  24. - compatible
  25. - reg
  26. - regulators
  27. additionalProperties: false
  28. examples:
  29. - |
  30. i2c {
  31. #address-cells = <1>;
  32. #size-cells = <0>;
  33. pmic@3 {
  34. compatible = "mps,mpq2286";
  35. reg = <0x3>;
  36. regulators {
  37. buck {
  38. regulator-name = "buck";
  39. regulator-min-microvolt = <1600000>;
  40. regulator-max-microvolt = <1800000>;
  41. regulator-boot-on;
  42. };
  43. };
  44. };
  45. };
  46. ...