davinci-wdt.txt 675 B

12345678910111213141516171819202122232425
  1. Texas Instruments DaVinci/Keystone Watchdog Timer (WDT) Controller
  2. Required properties:
  3. - compatible : Should be "ti,davinci-wdt", "ti,keystone-wdt"
  4. - reg : Should contain WDT registers location and length
  5. Optional properties:
  6. - timeout-sec : Contains the watchdog timeout in seconds
  7. - clocks : the clock feeding the watchdog timer.
  8. Needed if platform uses clocks.
  9. See clock-bindings.txt
  10. Documentation:
  11. Davinci DM646x - http://www.ti.com/lit/ug/spruer5b/spruer5b.pdf
  12. Keystone - http://www.ti.com/lit/ug/sprugv5a/sprugv5a.pdf
  13. Examples:
  14. wdt: wdt@2320000 {
  15. compatible = "ti,davinci-wdt";
  16. reg = <0x02320000 0x80>;
  17. timeout-sec = <30>;
  18. clocks = <&clkwdtimer0>;
  19. };