dw_wdt.txt 496 B

12345678910111213141516171819202122
  1. Synopsys Designware Watchdog Timer
  2. Required Properties:
  3. - compatible : Should contain "snps,dw-wdt"
  4. - reg : Base address and size of the watchdog timer registers.
  5. - clocks : phandle + clock-specifier for the clock that drives the
  6. watchdog timer.
  7. Optional Properties:
  8. - interrupts : The interrupt used for the watchdog timeout warning.
  9. Example:
  10. watchdog0: wd@ffd02000 {
  11. compatible = "snps,dw-wdt";
  12. reg = <0xffd02000 0x1000>;
  13. interrupts = <0 171 4>;
  14. clocks = <&per_base_clk>;
  15. };