leds-max77650.yaml 990 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. # SPDX-License-Identifier: GPL-2.0
  2. %YAML 1.2
  3. ---
  4. $id: http://devicetree.org/schemas/leds/leds-max77650.yaml#
  5. $schema: http://devicetree.org/meta-schemas/core.yaml#
  6. title: LED 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 LED controller is represented as a sub-node of the PMIC node on
  13. the device tree.
  14. This device has three current sinks.
  15. properties:
  16. compatible:
  17. const: maxim,max77650-led
  18. "#address-cells":
  19. const: 1
  20. "#size-cells":
  21. const: 0
  22. patternProperties:
  23. "^led@[0-2]$":
  24. $ref: common.yaml#
  25. unevaluatedProperties: false
  26. properties:
  27. reg:
  28. description:
  29. Index of the LED.
  30. minimum: 0
  31. maximum: 2
  32. required:
  33. - compatible
  34. - "#address-cells"
  35. - "#size-cells"
  36. additionalProperties: false
  37. ...