arm,twd-wdt.yaml 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
  2. %YAML 1.2
  3. ---
  4. $id: http://devicetree.org/schemas/watchdog/arm,twd-wdt.yaml#
  5. $schema: http://devicetree.org/meta-schemas/core.yaml#
  6. title: ARM Timer-Watchdog Watchdog
  7. maintainers:
  8. - Rob Herring <robh@kernel.org>
  9. description:
  10. ARM 11MP, Cortex-A5 and Cortex-A9 are often associated with a per-core
  11. Timer-Watchdog (aka TWD), which provides both a per-cpu local timer
  12. and watchdog.
  13. The TWD is usually attached to a GIC to deliver its two per-processor
  14. interrupts.
  15. properties:
  16. compatible:
  17. enum:
  18. - arm,cortex-a9-twd-wdt
  19. - arm,cortex-a5-twd-wdt
  20. - arm,arm11mp-twd-wdt
  21. reg:
  22. maxItems: 1
  23. interrupts:
  24. maxItems: 1
  25. clocks:
  26. maxItems: 1
  27. required:
  28. - compatible
  29. - reg
  30. additionalProperties: false
  31. examples:
  32. - |
  33. #include <dt-bindings/interrupt-controller/arm-gic.h>
  34. watchdog@2c000620 {
  35. compatible = "arm,arm11mp-twd-wdt";
  36. reg = <0x2c000620 0x20>;
  37. interrupts = <GIC_PPI 14 0xf01>;
  38. };