ti,davinci-wdt.yaml 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
  2. %YAML 1.2
  3. ---
  4. $id: http://devicetree.org/schemas/watchdog/ti,davinci-wdt.yaml#
  5. $schema: http://devicetree.org/meta-schemas/core.yaml#
  6. title: TI DaVinci/Keystone Watchdog Timer Controller
  7. maintainers:
  8. - Kousik Sanagavarapu <five231003@gmail.com>
  9. description: |
  10. TI's Watchdog Timer Controller for DaVinci and Keystone Processors.
  11. Datasheets
  12. Davinci DM646x - https://www.ti.com/lit/ug/spruer5b/spruer5b.pdf
  13. Keystone - https://www.ti.com/lit/ug/sprugv5a/sprugv5a.pdf
  14. allOf:
  15. - $ref: watchdog.yaml#
  16. properties:
  17. compatible:
  18. oneOf:
  19. - items:
  20. - const: ti,keystone-wdt
  21. - const: ti,davinci-wdt
  22. - items:
  23. - const: ti,davinci-wdt
  24. reg:
  25. maxItems: 1
  26. power-domains:
  27. maxItems: 1
  28. clocks:
  29. maxItems: 1
  30. required:
  31. - compatible
  32. - reg
  33. unevaluatedProperties: false
  34. examples:
  35. - |
  36. wdt: watchdog@22f0080 {
  37. compatible = "ti,keystone-wdt", "ti,davinci-wdt";
  38. reg = <0x022f0080 0x80>;
  39. clocks = <&clkwdtimer0>;
  40. };
  41. ...