ampere,smpro.yaml 819 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
  2. %YAML 1.2
  3. ---
  4. $id: http://devicetree.org/schemas/mfd/ampere,smpro.yaml#
  5. $schema: http://devicetree.org/meta-schemas/core.yaml#
  6. title: Ampere Altra SMPro firmware driver
  7. maintainers:
  8. - Quan Nguyen <quan@os.amperecomputing.com>
  9. description: |
  10. Ampere Altra SMPro firmware may contain different blocks like hardware
  11. monitoring, error monitoring and other miscellaneous features.
  12. properties:
  13. compatible:
  14. enum:
  15. - ampere,smpro
  16. reg:
  17. description:
  18. I2C device address.
  19. maxItems: 1
  20. required:
  21. - compatible
  22. - reg
  23. additionalProperties: false
  24. examples:
  25. - |
  26. i2c {
  27. #address-cells = <1>;
  28. #size-cells = <0>;
  29. smpro@4f {
  30. compatible = "ampere,smpro";
  31. reg = <0x4f>;
  32. };
  33. };