fsl-imx-wdt.txt 591 B

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