mirror of
https://github.com/torvalds/linux.git
synced 2024-11-20 11:01:38 +00:00
f728f4bfc4
This watchdog driver will be working on IMX2+, Vybrid, LS1, LS2+ platforms, and will be in different endianness mode in those SoCs: SoCs WDT endian mode ------------------------------------ IMX2+ LE Vybird LE LS1 BE LS2 LE Signed-off-by: Xiubo Li <Li.Xiubo@freescale.com> Reviewed-by: Guenter Roeck <linux@roeck-us.net> Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
20 lines
493 B
Plaintext
20 lines
493 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
|
|
|
|
Optional property:
|
|
- big-endian: If present the watchdog device's registers are implemented
|
|
in big endian mode, otherwise in little mode.
|
|
|
|
Examples:
|
|
|
|
wdt@73f98000 {
|
|
compatible = "fsl,imx51-wdt", "fsl,imx21-wdt";
|
|
reg = <0x73f98000 0x4000>;
|
|
interrupts = <58>;
|
|
big-endian;
|
|
};
|