]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blob - Documentation/devicetree/bindings/watchdog/fsl-imx-wdt.txt
Merge tag 'mac80211-for-davem-2016-06-29-v2' of git://git.kernel.org/pub/scm/linux...
[mirror_ubuntu-focal-kernel.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 properties:
9 - big-endian: If present the watchdog device's registers are implemented
10 in big endian mode, otherwise in native mode(same with CPU), for more
11 detail please see: Documentation/devicetree/bindings/regmap/regmap.txt.
12 - fsl,ext-reset-output: If present the watchdog device is configured to
13 assert its external reset (WDOG_B) instead of issuing a software reset.
14
15 Examples:
16
17 wdt@73f98000 {
18 compatible = "fsl,imx51-wdt", "fsl,imx21-wdt";
19 reg = <0x73f98000 0x4000>;
20 interrupts = <58>;
21 big-endian;
22 };