mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-26 08:30:53 +07:00
f5a427eede
Adds device tree probe support for imx2_wdt driver. Signed-off-by: Shawn Guo <shawn.guo@linaro.org> Cc: Grant Likely <grant.likely@secretlab.ca> Cc: Wolfram Sang <w.sang@pengutronix.de> Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
15 lines
339 B
Plaintext
15 lines
339 B
Plaintext
* Freescale i.MX Watchdog Timer (WDT) Controller
|
|
|
|
Required properties:
|
|
- compatible : Should be "fsl,<soc>-wdt"
|
|
- reg : Should contain WDT registers location and length
|
|
- interrupts : Should contain WDT interrupt
|
|
|
|
Examples:
|
|
|
|
wdt@73f98000 {
|
|
compatible = "fsl,imx51-wdt", "fsl,imx21-wdt";
|
|
reg = <0x73f98000 0x4000>;
|
|
interrupts = <58>;
|
|
};
|