peci-controller.yaml 772 B

123456789101112131415161718192021222324252627282930313233
  1. # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
  2. %YAML 1.2
  3. ---
  4. $id: http://devicetree.org/schemas/peci/peci-controller.yaml#
  5. $schema: http://devicetree.org/meta-schemas/core.yaml#
  6. title: Generic for PECI
  7. maintainers:
  8. - Iwona Winiarska <iwona.winiarska@intel.com>
  9. description:
  10. PECI (Platform Environment Control Interface) is an interface that provides a
  11. communication channel from Intel processors and chipset components to external
  12. monitoring or control devices.
  13. properties:
  14. $nodename:
  15. pattern: "^peci-controller(@.*)?$"
  16. cmd-timeout-ms:
  17. description:
  18. Command timeout in units of ms.
  19. additionalProperties: true
  20. examples:
  21. - |
  22. peci-controller@1e78b000 {
  23. reg = <0x1e78b000 0x100>;
  24. cmd-timeout-ms = <500>;
  25. };
  26. ...