1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright (C) Nokia Corporation
5 * Written by Timo Kokkonen <timo.t.kokkonen at nokia.com>
8 #include <linux/module.h>
9 #include <linux/types.h>
10 #include <linux/slab.h>
11 #include <linux/kernel.h>
12 #include <linux/watchdog.h>
13 #include <linux/platform_device.h>
14 #include <linux/mfd/twl.h>
16 #define TWL4030_WATCHDOG_CFG_REG_OFFS 0x3
18 static bool nowayout
= WATCHDOG_NOWAYOUT
;
19 module_param(nowayout
, bool, 0);
20 MODULE_PARM_DESC(nowayout
, "Watchdog cannot be stopped once started "
21 "(default=" __MODULE_STRING(WATCHDOG_NOWAYOUT
) ")");
23 static int twl4030_wdt_write(unsigned char val
)
25 return twl_i2c_write_u8(TWL_MODULE_PM_RECEIVER
, val
,
26 TWL4030_WATCHDOG_CFG_REG_OFFS
);
29 static int twl4030_wdt_start(struct watchdog_device
*wdt
)
31 return twl4030_wdt_write(wdt
->timeout
+ 1);
34 static int twl4030_wdt_stop(struct watchdog_device
*wdt
)
36 return twl4030_wdt_write(0);
39 static int twl4030_wdt_set_timeout(struct watchdog_device
*wdt
,
42 wdt
->timeout
= timeout
;
46 static const struct watchdog_info twl4030_wdt_info
= {
47 .options
= WDIOF_SETTIMEOUT
| WDIOF_MAGICCLOSE
| WDIOF_KEEPALIVEPING
,
48 .identity
= "TWL4030 Watchdog",
51 static const struct watchdog_ops twl4030_wdt_ops
= {
53 .start
= twl4030_wdt_start
,
54 .stop
= twl4030_wdt_stop
,
55 .set_timeout
= twl4030_wdt_set_timeout
,
58 static int twl4030_wdt_probe(struct platform_device
*pdev
)
60 struct device
*dev
= &pdev
->dev
;
61 struct watchdog_device
*wdt
;
63 wdt
= devm_kzalloc(dev
, sizeof(*wdt
), GFP_KERNEL
);
67 wdt
->info
= &twl4030_wdt_info
;
68 wdt
->ops
= &twl4030_wdt_ops
;
72 wdt
->max_timeout
= 30;
75 watchdog_set_nowayout(wdt
, nowayout
);
76 platform_set_drvdata(pdev
, wdt
);
78 twl4030_wdt_stop(wdt
);
80 return devm_watchdog_register_device(dev
, wdt
);
84 static int twl4030_wdt_suspend(struct platform_device
*pdev
, pm_message_t state
)
86 struct watchdog_device
*wdt
= platform_get_drvdata(pdev
);
87 if (watchdog_active(wdt
))
88 return twl4030_wdt_stop(wdt
);
93 static int twl4030_wdt_resume(struct platform_device
*pdev
)
95 struct watchdog_device
*wdt
= platform_get_drvdata(pdev
);
96 if (watchdog_active(wdt
))
97 return twl4030_wdt_start(wdt
);
102 #define twl4030_wdt_suspend NULL
103 #define twl4030_wdt_resume NULL
106 static const struct of_device_id twl_wdt_of_match
[] = {
107 { .compatible
= "ti,twl4030-wdt", },
110 MODULE_DEVICE_TABLE(of
, twl_wdt_of_match
);
112 static struct platform_driver twl4030_wdt_driver
= {
113 .probe
= twl4030_wdt_probe
,
114 .suspend
= twl4030_wdt_suspend
,
115 .resume
= twl4030_wdt_resume
,
117 .name
= "twl4030_wdt",
118 .of_match_table
= twl_wdt_of_match
,
122 module_platform_driver(twl4030_wdt_driver
);
124 MODULE_AUTHOR("Nokia Corporation");
125 MODULE_LICENSE("GPL");
126 MODULE_ALIAS("platform:twl4030_wdt");