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