cadence-wdt.txt 630 B

1234567891011121314151617181920212223
  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. Optional properties
  8. - reset-on-timeout : If this property exists, then a reset is done
  9. when watchdog times out.
  10. - timeout-sec : Watchdog timeout value (in seconds).
  11. Example:
  12. watchdog@f8005000 {
  13. compatible = "cdns,wdt-r1p2";
  14. clocks = <&clkc 45>;
  15. interrupt-parent = <&intc>;
  16. interrupts = <0 9 1>;
  17. reg = <0xf8005000 0x1000>;
  18. reset-on-timeout;
  19. timeout-sec = <10>;
  20. };