lpc18xx-wdt.txt 598 B

1234567891011121314151617181920
  1. * NXP LPC18xx Watchdog Timer (WDT)
  2. Required properties:
  3. - compatible: Should be "nxp,lpc1850-wwdt"
  4. - reg: Should contain WDT registers location and length
  5. - clocks: Must contain an entry for each entry in clock-names.
  6. - clock-names: Should contain "wdtclk" and "reg"; the watchdog counter
  7. clock and register interface clock respectively.
  8. - interrupts: Should contain WDT interrupt
  9. Examples:
  10. watchdog@40080000 {
  11. compatible = "nxp,lpc1850-wwdt";
  12. reg = <0x40080000 0x24>;
  13. clocks = <&cgu BASE_SAFE_CLK>, <&ccu1 CLK_CPU_WWDT>;
  14. clock-names = "wdtclk", "reg";
  15. interrupts = <49>;
  16. };