fsl,scu-wdt.yaml 802 B

123456789101112131415161718192021222324252627282930313233343536
  1. # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
  2. %YAML 1.2
  3. ---
  4. $id: http://devicetree.org/schemas/watchdog/fsl,scu-wdt.yaml#
  5. $schema: http://devicetree.org/meta-schemas/core.yaml#
  6. title: i.MX SCU Client Device Node - Watchdog Based on SCU Message Protocol
  7. maintainers:
  8. - Dong Aisheng <aisheng.dong@nxp.com>
  9. description: i.MX SCU Client Device Node
  10. Client nodes are maintained as children of the relevant IMX-SCU device node.
  11. allOf:
  12. - $ref: watchdog.yaml#
  13. properties:
  14. compatible:
  15. items:
  16. - enum:
  17. - fsl,imx8dxl-sc-wdt
  18. - fsl,imx8qxp-sc-wdt
  19. - const: fsl,imx-sc-wdt
  20. required:
  21. - compatible
  22. unevaluatedProperties: false
  23. examples:
  24. - |
  25. watchdog {
  26. compatible = "fsl,imx8qxp-sc-wdt", "fsl,imx-sc-wdt";
  27. timeout-sec = <60>;
  28. };