ts4800-wdt.txt 603 B

1234567891011121314151617181920212223242526
  1. Technologic Systems Watchdog
  2. Required properties:
  3. - compatible: must be "technologic,ts4800-wdt"
  4. - syscon: phandle / integer array that points to the syscon node which
  5. describes the FPGA's syscon registers.
  6. - phandle to FPGA's syscon
  7. - offset to the watchdog register
  8. Optional property:
  9. - timeout-sec: contains the watchdog timeout in seconds.
  10. Example:
  11. syscon: syscon@b0010000 {
  12. compatible = "syscon", "simple-mfd";
  13. reg = <0xb0010000 0x3d>;
  14. reg-io-width = <2>;
  15. wdt@e {
  16. compatible = "technologic,ts4800-wdt";
  17. syscon = <&syscon 0xe>;
  18. timeout-sec = <10>;
  19. };
  20. }