of-xilinx-wdt.txt 755 B

1234567891011121314151617181920212223
  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. - clock-frequency : Frequency of clock in Hz
  9. - xlnx,wdt-enable-once : 0 - Watchdog can be restarted
  10. 1 - Watchdog can be enabled just once
  11. - xlnx,wdt-interval : Watchdog timeout interval in 2^<val> clock cycles,
  12. <val> is integer from 8 to 31.
  13. Example:
  14. axi-timebase-wdt@40100000 {
  15. clock-frequency = <50000000>;
  16. compatible = "xlnx,xps-timebase-wdt-1.00.a";
  17. reg = <0x40100000 0x10000>;
  18. xlnx,wdt-enable-once = <0x0>;
  19. xlnx,wdt-interval = <0x1b>;
  20. } ;