-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
watchdog: imx2_wdt: add device tree probe support
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>
- Loading branch information
Shawn Guo
authored and
Wim Van Sebroeck
committed
Jul 26, 2011
1 parent
9487a9c
commit f5a427e
Showing
2 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
14 changes: 14 additions & 0 deletions
14
Documentation/devicetree/bindings/watchdog/fsl-imx-wdt.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
* 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>; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters