mediatek,mt7621-wdt.yaml 805 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
  2. %YAML 1.2
  3. ---
  4. $id: http://devicetree.org/schemas/watchdog/mediatek,mt7621-wdt.yaml#
  5. $schema: http://devicetree.org/meta-schemas/core.yaml#
  6. title: Ralink Watchdog Timers
  7. maintainers:
  8. - Sergio Paracuellos <sergio.paracuellos@gmail.com>
  9. allOf:
  10. - $ref: watchdog.yaml#
  11. properties:
  12. compatible:
  13. const: mediatek,mt7621-wdt
  14. reg:
  15. maxItems: 1
  16. mediatek,sysctl:
  17. $ref: /schemas/types.yaml#/definitions/phandle
  18. description:
  19. phandle to system controller 'sysc' syscon node which
  20. controls system registers
  21. required:
  22. - compatible
  23. - reg
  24. additionalProperties: false
  25. examples:
  26. - |
  27. watchdog@100 {
  28. compatible = "mediatek,mt7621-wdt";
  29. reg = <0x100 0x100>;
  30. mediatek,sysctl = <&sysc>;
  31. };