cadence-wdt.txt 686 B

12345678910111213141516171819202122232425
  1. Zynq Watchdog Device Tree Bindings
  2. -------------------------------------------
  3. Required properties:
  4. - compatible : Should be "cdns,wdt-r1p2".
  5. - clocks : This is pclk (APB clock).
  6. - interrupts : This is wd_irq - watchdog timeout interrupt.
  7. - interrupt-parent : Must be core interrupt controller.
  8. Optional properties
  9. - reset-on-timeout : If this property exists, then a reset is done
  10. when watchdog times out.
  11. - timeout-sec : Watchdog timeout value (in seconds).
  12. Example:
  13. watchdog@f8005000 {
  14. compatible = "cdns,wdt-r1p2";
  15. clocks = <&clkc 45>;
  16. interrupt-parent = <&intc>;
  17. interrupts = <0 9 1>;
  18. reg = <0xf8005000 0x1000>;
  19. reset-on-timeout;
  20. timeout-sec = <10>;
  21. };