samsung-wdt.txt 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. * Samsung's Watchdog Timer Controller
  2. The Samsung's Watchdog controller is used for resuming system operation
  3. after a preset amount of time during which the WDT reset event has not
  4. occurred.
  5. Required properties:
  6. - compatible : should be one among the following
  7. - "samsung,s3c2410-wdt" for S3C2410
  8. - "samsung,s3c6410-wdt" for S3C6410, S5PV210 and Exynos4
  9. - "samsung,exynos5250-wdt" for Exynos5250
  10. - "samsung,exynos5420-wdt" for Exynos5420
  11. - "samsung,exynos7-wdt" for Exynos7
  12. - reg : base physical address of the controller and length of memory mapped
  13. region.
  14. - interrupts : interrupt number to the cpu.
  15. - samsung,syscon-phandle : reference to syscon node (This property required only
  16. in case of compatible being "samsung,exynos5250-wdt" or "samsung,exynos5420-wdt".
  17. In case of Exynos5250 and 5420 this property points to syscon node holding the PMU
  18. base address)
  19. Optional properties:
  20. - timeout-sec : contains the watchdog timeout in seconds.
  21. Example:
  22. watchdog@101d0000 {
  23. compatible = "samsung,exynos5250-wdt";
  24. reg = <0x101D0000 0x100>;
  25. interrupts = <0 42 0>;
  26. clocks = <&clock 336>;
  27. clock-names = "watchdog";
  28. samsung,syscon-phandle = <&pmu_syscon>;
  29. };