brcm,bcm7038-wdt.yaml 869 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
  2. %YAML 1.2
  3. ---
  4. $id: http://devicetree.org/schemas/watchdog/brcm,bcm7038-wdt.yaml#
  5. $schema: http://devicetree.org/meta-schemas/core.yaml#
  6. title: BCM63xx and BCM7038 watchdog timer
  7. maintainers:
  8. - Florian Fainelli <f.fainelli@gmail.com>
  9. - Justin Chen <justinpopo6@gmail.com>
  10. - Rafał Miłecki <rafal@milecki.pl>
  11. allOf:
  12. - $ref: watchdog.yaml#
  13. properties:
  14. compatible:
  15. enum:
  16. - brcm,bcm6345-wdt
  17. - brcm,bcm7038-wdt
  18. reg:
  19. maxItems: 1
  20. clocks:
  21. maxItems: 1
  22. description: >
  23. The clock running the watchdog. If no clock is found the driver will
  24. default to 27000000 Hz.
  25. required:
  26. - reg
  27. unevaluatedProperties: false
  28. examples:
  29. - |
  30. watchdog@f040a7e8 {
  31. compatible = "brcm,bcm7038-wdt";
  32. reg = <0xf040a7e8 0x16>;
  33. clocks = <&upg_fixed>;
  34. };