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. (a) "samsung,s3c2410-wdt" for Exynos4 and previous SoCs
  8. (b) "samsung,exynos5250-wdt" for Exynos5250
  9. (c) "samsung,exynos5420-wdt" for Exynos5420
  10. (c) "samsung,exynos7-wdt" for Exynos7
  11. - reg : base physical address of the controller and length of memory mapped
  12. region.
  13. - interrupts : interrupt number to the cpu.
  14. - samsung,syscon-phandle : reference to syscon node (This property required only
  15. in case of compatible being "samsung,exynos5250-wdt" or "samsung,exynos5420-wdt".
  16. In case of Exynos5250 and 5420 this property points to syscon node holding the PMU
  17. base address)
  18. Optional properties:
  19. - timeout-sec : contains the watchdog timeout in seconds.
  20. Example:
  21. watchdog@101D0000 {
  22. compatible = "samsung,exynos5250-wdt";
  23. reg = <0x101D0000 0x100>;
  24. interrupts = <0 42 0>;
  25. clocks = <&clock 336>;
  26. clock-names = "watchdog";
  27. samsung,syscon-phandle = <&pmu_syscon>;
  28. };