Commit bb83520d authored by Anson Huang's avatar Anson Huang Committed by Wim Van Sebroeck
Browse files

dt-bindings: watchdog: add i.MX system controller watchdog



Add i.MX system controller watchdog binding doc.

Signed-off-by: default avatarAnson Huang <Anson.Huang@nxp.com>
Acked-by: default avatarRob Herring <robh@kernel.org>
Signed-off-by: default avatarGuenter Roeck <linux@roeck-us.net>
Signed-off-by: default avatarWim Van Sebroeck <wim@linux-watchdog.org>
parent bbc88a0e
Loading
Loading
Loading
Loading
+24 −0
Original line number Diff line number Diff line
* Freescale i.MX System Controller Watchdog

i.MX system controller watchdog is for i.MX SoCs with system controller inside,
the watchdog is managed by system controller, users can ONLY communicate with
system controller from secure mode for watchdog operations, so Linux i.MX system
controller watchdog driver will call ARM SMC API and trap into ARM-Trusted-Firmware
for watchdog operations, ARM-Trusted-Firmware is running at secure EL3 mode and
it will request system controller to execute the watchdog operation passed from
Linux kernel.

Required properties:
- compatible:	Should be :
		"fsl,imx8qxp-sc-wdt"
		followed by "fsl,imx-sc-wdt";

Optional properties:
- timeout-sec : Contains the watchdog timeout in seconds.

Examples:

watchdog {
	compatible = "fsl,imx8qxp-sc-wdt", "fsl,imx-sc-wdt";
	timeout-sec = <60>;
};