mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-21 03:33:07 +07:00
761e52bc70
Update binding example based on new clock binding scheme. [1] Documentation/devicetree/bindings/clock/microchip,pic32.txt Signed-off-by: Purna Chandra Mandal <purna.mandal@microchip.com> Acked-by: Rob Herring <robh@kernel.org> Cc: Kumar Gala <galak@codeaurora.org> Cc: Ian Campbell <ijc+devicetree@hellion.org.uk> Cc: Joshua Henderson <digitalpeer@digitalpeer.com> Cc: Mark Rutland <mark.rutland@arm.com> Cc: linux-kernel@vger.kernel.org Cc: linux-mips@linux-mips.org Cc: devicetree@vger.kernel.org Patchwork: https://patchwork.linux-mips.org/patch/13269/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
19 lines
512 B
Plaintext
19 lines
512 B
Plaintext
* Microchip PIC32 Watchdog Timer
|
|
|
|
When enabled, the watchdog peripheral can be used to reset the device if the
|
|
WDT is not cleared periodically in software.
|
|
|
|
Required properties:
|
|
- compatible: must be "microchip,pic32mzda-wdt".
|
|
- reg: physical base address of the controller and length of memory mapped
|
|
region.
|
|
- clocks: phandle of source clk. Should be <&rootclk LPRCCLK>.
|
|
|
|
Example:
|
|
|
|
watchdog@1f800800 {
|
|
compatible = "microchip,pic32mzda-wdt";
|
|
reg = <0x1f800800 0x200>;
|
|
clocks = <&rootclk LPRCCLK>;
|
|
};
|