fsl-imx-wdt.txt 817 B

123456789101112131415161718192021222324
  1. * Freescale i.MX Watchdog Timer (WDT) Controller
  2. Required properties:
  3. - compatible : Should be "fsl,<soc>-wdt"
  4. - reg : Should contain WDT registers location and length
  5. - interrupts : Should contain WDT interrupt
  6. Optional properties:
  7. - big-endian: If present the watchdog device's registers are implemented
  8. in big endian mode, otherwise in native mode(same with CPU), for more
  9. detail please see: Documentation/devicetree/bindings/regmap/regmap.txt.
  10. - fsl,ext-reset-output: If present the watchdog device is configured to
  11. assert its external reset (WDOG_B) instead of issuing a software reset.
  12. - timeout-sec : Contains the watchdog timeout in seconds
  13. Examples:
  14. wdt@73f98000 {
  15. compatible = "fsl,imx51-wdt", "fsl,imx21-wdt";
  16. reg = <0x73f98000 0x4000>;
  17. interrupts = <58>;
  18. big-endian;
  19. timeout-sec = <20>;
  20. };