Merge tag 'linux-kselftest-kunit-fixes-5.11-rc3' of git://git.kernel.org/pub/scm...
[linux/fpc-iii.git] / Documentation / devicetree / bindings / watchdog / da9062-wdt.txt
blob950e4fba8dbc7c013a5aac5e4c58a4aab05829e4
1 * Dialog Semiconductor DA9062/61 Watchdog Timer
3 Required properties:
5 - compatible: should be one of the following valid compatible string lines:
6         "dlg,da9061-watchdog", "dlg,da9062-watchdog"
7         "dlg,da9062-watchdog"
9 Optional properties:
10 - dlg,use-sw-pm: Add this property to disable the watchdog during suspend.
11         Only use this option if you can't use the watchdog automatic suspend
12         function during a suspend (see register CONTROL_B).
14 Example: DA9062
16         pmic0: da9062@58 {
17                 watchdog {
18                         compatible = "dlg,da9062-watchdog";
19                 };
20         };
22 Example: DA9061 using a fall-back compatible for the DA9062 watchdog driver
24         pmic0: da9061@58 {
25                 watchdog {
26                         compatible = "dlg,da9061-watchdog", "dlg,da9062-watchdog";
27                 };
28         };