fsl-imx-wdt.txt 739 B

1234567891011121314151617181920212223
  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. Examples:
  13. wdt@73f98000 {
  14. compatible = "fsl,imx51-wdt", "fsl,imx21-wdt";
  15. reg = <0x73f98000 0x4000>;
  16. interrupts = <58>;
  17. big-endian;
  18. };