max77650-regulator.yaml 888 B

1234567891011121314151617181920212223242526272829303132333435
  1. # SPDX-License-Identifier: GPL-2.0
  2. %YAML 1.2
  3. ---
  4. $id: http://devicetree.org/schemas/regulator/max77650-regulator.yaml#
  5. $schema: http://devicetree.org/meta-schemas/core.yaml#
  6. title: Regulator driver for MAX77650 PMIC from Maxim Integrated.
  7. maintainers:
  8. - Bartosz Golaszewski <bgolaszewski@baylibre.com>
  9. description: |
  10. This module is part of the MAX77650 MFD device. For more details
  11. see Documentation/devicetree/bindings/mfd/max77650.yaml.
  12. The regulator controller is represented as a sub-node of the PMIC node
  13. on the device tree.
  14. The device has a single LDO regulator and a SIMO buck-boost regulator with
  15. three independent power rails.
  16. properties:
  17. compatible:
  18. const: maxim,max77650-regulator
  19. patternProperties:
  20. "^regulator-(ldo|sbb[0-2])$":
  21. $ref: regulator.yaml#
  22. unevaluatedProperties: false
  23. required:
  24. - compatible
  25. additionalProperties: false
  26. ...