microchip,pic32-wdt.txt 512 B

123456789101112131415161718
  1. * Microchip PIC32 Watchdog Timer
  2. When enabled, the watchdog peripheral can be used to reset the device if the
  3. WDT is not cleared periodically in software.
  4. Required properties:
  5. - compatible: must be "microchip,pic32mzda-wdt".
  6. - reg: physical base address of the controller and length of memory mapped
  7. region.
  8. - clocks: phandle of source clk. Should be <&rootclk LPRCCLK>.
  9. Example:
  10. watchdog@1f800800 {
  11. compatible = "microchip,pic32mzda-wdt";
  12. reg = <0x1f800800 0x200>;
  13. clocks = <&rootclk LPRCCLK>;
  14. };