Merge branch 'rfc/perf' into perf/core, because it's ready for inclusion
[sfrench/cifs-2.6.git] / Documentation / devicetree / bindings / watchdog / fsl-imx-wdt.txt
1 * Freescale i.MX Watchdog Timer (WDT) Controller
2
3 Required properties:
4 - compatible : Should be "fsl,<soc>-wdt"
5 - reg : Should contain WDT registers location and length
6 - interrupts : Should contain WDT interrupt
7
8 Optional property:
9 - big-endian: If present the watchdog device's registers are implemented
10   in big endian mode, otherwise in little mode.
11
12 Examples:
13
14 wdt@73f98000 {
15         compatible = "fsl,imx51-wdt", "fsl,imx21-wdt";
16         reg = <0x73f98000 0x4000>;
17         interrupts = <58>;
18         big-endian;
19 };