of-xilinx-wdt.txt 849 B

123456789101112131415161718192021222324252627
  1. Xilinx AXI/PLB soft-core watchdog Device Tree Bindings
  2. ---------------------------------------------------------
  3. Required properties:
  4. - compatible : Should be "xlnx,xps-timebase-wdt-1.00.a" or
  5. "xlnx,xps-timebase-wdt-1.01.a".
  6. - reg : Physical base address and size
  7. Optional properties:
  8. - clocks : Input clock specifier. Refer to common clock
  9. bindings.
  10. - clock-frequency : Frequency of clock in Hz
  11. - xlnx,wdt-enable-once : 0 - Watchdog can be restarted
  12. 1 - Watchdog can be enabled just once
  13. - xlnx,wdt-interval : Watchdog timeout interval in 2^<val> clock cycles,
  14. <val> is integer from 8 to 31.
  15. Example:
  16. axi-timebase-wdt@40100000 {
  17. clock-frequency = <50000000>;
  18. compatible = "xlnx,xps-timebase-wdt-1.00.a";
  19. clocks = <&clkc 15>;
  20. reg = <0x40100000 0x10000>;
  21. xlnx,wdt-enable-once = <0x0>;
  22. xlnx,wdt-interval = <0x1b>;
  23. } ;