Merge tag 'libnvdimm-fixes-5.2-rc1' of git://git.kernel.org/pub/scm/linux/kernel...
[sfrench/cifs-2.6.git] / Documentation / devicetree / bindings / watchdog / fsl-imx-sc-wdt.txt
1 * Freescale i.MX System Controller Watchdog
2
3 i.MX system controller watchdog is for i.MX SoCs with system controller inside,
4 the watchdog is managed by system controller, users can ONLY communicate with
5 system controller from secure mode for watchdog operations, so Linux i.MX system
6 controller watchdog driver will call ARM SMC API and trap into ARM-Trusted-Firmware
7 for watchdog operations, ARM-Trusted-Firmware is running at secure EL3 mode and
8 it will request system controller to execute the watchdog operation passed from
9 Linux kernel.
10
11 Required properties:
12 - compatible:   Should be :
13                 "fsl,imx8qxp-sc-wdt"
14                 followed by "fsl,imx-sc-wdt";
15
16 Optional properties:
17 - timeout-sec : Contains the watchdog timeout in seconds.
18
19 Examples:
20
21 watchdog {
22         compatible = "fsl,imx8qxp-sc-wdt", "fsl,imx-sc-wdt";
23         timeout-sec = <60>;
24 };