1 // SPDX-License-Identifier: GPL-2.0+
3 * Watchdog device driver for DA9062 and DA9061 PMICs
4 * Copyright (C) 2015 Dialog Semiconductor Ltd.
8 #include <linux/kernel.h>
9 #include <linux/module.h>
10 #include <linux/watchdog.h>
11 #include <linux/platform_device.h>
12 #include <linux/uaccess.h>
13 #include <linux/slab.h>
14 #include <linux/i2c.h>
15 #include <linux/delay.h>
16 #include <linux/jiffies.h>
17 #include <linux/mfd/da9062/registers.h>
18 #include <linux/mfd/da9062/core.h>
19 #include <linux/property.h>
20 #include <linux/regmap.h>
23 static const unsigned int wdt_timeout[] = { 0, 2, 4, 8, 16, 32, 65, 131 };
24 #define DA9062_TWDSCALE_DISABLE 0
25 #define DA9062_TWDSCALE_MIN 1
26 #define DA9062_TWDSCALE_MAX (ARRAY_SIZE(wdt_timeout) - 1)
27 #define DA9062_WDT_MIN_TIMEOUT wdt_timeout[DA9062_TWDSCALE_MIN]
28 #define DA9062_WDT_MAX_TIMEOUT wdt_timeout[DA9062_TWDSCALE_MAX]
29 #define DA9062_WDG_DEFAULT_TIMEOUT wdt_timeout[DA9062_TWDSCALE_MAX-1]
30 #define DA9062_RESET_PROTECTION_MS 300
32 struct da9062_watchdog {
34 struct watchdog_device wdtdev;
38 static unsigned int da9062_wdt_read_timeout(struct da9062_watchdog *wdt)
42 regmap_read(wdt->hw->regmap, DA9062AA_CONTROL_D, &val);
44 return wdt_timeout[val & DA9062AA_TWDSCALE_MASK];
47 static unsigned int da9062_wdt_timeout_to_sel(unsigned int secs)
51 for (i = DA9062_TWDSCALE_MIN; i <= DA9062_TWDSCALE_MAX; i++) {
52 if (wdt_timeout[i] >= secs)
56 return DA9062_TWDSCALE_MAX;
59 static int da9062_reset_watchdog_timer(struct da9062_watchdog *wdt)
61 return regmap_update_bits(wdt->hw->regmap, DA9062AA_CONTROL_F,
62 DA9062AA_WATCHDOG_MASK,
63 DA9062AA_WATCHDOG_MASK);
66 static int da9062_wdt_update_timeout_register(struct da9062_watchdog *wdt,
69 struct da9062 *chip = wdt->hw;
71 regmap_update_bits(chip->regmap,
73 DA9062AA_TWDSCALE_MASK,
74 DA9062_TWDSCALE_DISABLE);
76 usleep_range(150, 300);
78 return regmap_update_bits(chip->regmap,
80 DA9062AA_TWDSCALE_MASK,
84 static int da9062_wdt_start(struct watchdog_device *wdd)
86 struct da9062_watchdog *wdt = watchdog_get_drvdata(wdd);
87 unsigned int selector;
90 selector = da9062_wdt_timeout_to_sel(wdt->wdtdev.timeout);
91 ret = da9062_wdt_update_timeout_register(wdt, selector);
93 dev_err(wdt->hw->dev, "Watchdog failed to start (err = %d)\n",
99 static int da9062_wdt_stop(struct watchdog_device *wdd)
101 struct da9062_watchdog *wdt = watchdog_get_drvdata(wdd);
104 ret = regmap_update_bits(wdt->hw->regmap,
106 DA9062AA_TWDSCALE_MASK,
107 DA9062_TWDSCALE_DISABLE);
109 dev_err(wdt->hw->dev, "Watchdog failed to stop (err = %d)\n",
115 static int da9062_wdt_ping(struct watchdog_device *wdd)
117 struct da9062_watchdog *wdt = watchdog_get_drvdata(wdd);
121 * Prevent pings from occurring late in system poweroff/reboot sequence
122 * and possibly locking out restart handler from accessing i2c bus.
124 if (system_state > SYSTEM_RUNNING)
127 ret = da9062_reset_watchdog_timer(wdt);
129 dev_err(wdt->hw->dev, "Failed to ping the watchdog (err = %d)\n",
135 static int da9062_wdt_set_timeout(struct watchdog_device *wdd,
136 unsigned int timeout)
138 struct da9062_watchdog *wdt = watchdog_get_drvdata(wdd);
139 unsigned int selector;
142 selector = da9062_wdt_timeout_to_sel(timeout);
143 ret = da9062_wdt_update_timeout_register(wdt, selector);
145 dev_err(wdt->hw->dev, "Failed to set watchdog timeout (err = %d)\n",
148 wdd->timeout = wdt_timeout[selector];
153 static int da9062_wdt_restart(struct watchdog_device *wdd, unsigned long action,
156 struct da9062_watchdog *wdt = watchdog_get_drvdata(wdd);
157 struct i2c_client *client = to_i2c_client(wdt->hw->dev);
160 /* Don't use regmap because it is not atomic safe */
161 ret = i2c_smbus_write_byte_data(client, DA9062AA_CONTROL_F,
162 DA9062AA_SHUTDOWN_MASK);
164 dev_alert(wdt->hw->dev, "Failed to shutdown (err = %d)\n",
167 /* wait for reset to assert... */
173 static const struct watchdog_info da9062_watchdog_info = {
174 .options = WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING,
175 .identity = "DA9062 WDT",
178 static const struct watchdog_ops da9062_watchdog_ops = {
179 .owner = THIS_MODULE,
180 .start = da9062_wdt_start,
181 .stop = da9062_wdt_stop,
182 .ping = da9062_wdt_ping,
183 .set_timeout = da9062_wdt_set_timeout,
184 .restart = da9062_wdt_restart,
187 static const struct of_device_id da9062_compatible_id_table[] = {
188 { .compatible = "dlg,da9062-watchdog", },
192 MODULE_DEVICE_TABLE(of, da9062_compatible_id_table);
194 static int da9062_wdt_probe(struct platform_device *pdev)
196 struct device *dev = &pdev->dev;
197 unsigned int timeout;
199 struct da9062_watchdog *wdt;
201 chip = dev_get_drvdata(dev->parent);
205 wdt = devm_kzalloc(dev, sizeof(*wdt), GFP_KERNEL);
209 wdt->use_sw_pm = device_property_present(dev, "dlg,use-sw-pm");
213 wdt->wdtdev.info = &da9062_watchdog_info;
214 wdt->wdtdev.ops = &da9062_watchdog_ops;
215 wdt->wdtdev.min_timeout = DA9062_WDT_MIN_TIMEOUT;
216 wdt->wdtdev.max_timeout = DA9062_WDT_MAX_TIMEOUT;
217 wdt->wdtdev.min_hw_heartbeat_ms = DA9062_RESET_PROTECTION_MS;
218 wdt->wdtdev.timeout = DA9062_WDG_DEFAULT_TIMEOUT;
219 wdt->wdtdev.status = WATCHDOG_NOWAYOUT_INIT_STATUS;
220 wdt->wdtdev.parent = dev;
222 watchdog_set_restart_priority(&wdt->wdtdev, 128);
224 watchdog_set_drvdata(&wdt->wdtdev, wdt);
225 dev_set_drvdata(dev, &wdt->wdtdev);
227 timeout = da9062_wdt_read_timeout(wdt);
229 wdt->wdtdev.timeout = timeout;
231 /* Set timeout from DT value if available */
232 watchdog_init_timeout(&wdt->wdtdev, 0, dev);
235 da9062_wdt_set_timeout(&wdt->wdtdev, wdt->wdtdev.timeout);
236 set_bit(WDOG_HW_RUNNING, &wdt->wdtdev.status);
239 return devm_watchdog_register_device(dev, &wdt->wdtdev);
242 static int __maybe_unused da9062_wdt_suspend(struct device *dev)
244 struct watchdog_device *wdd = dev_get_drvdata(dev);
245 struct da9062_watchdog *wdt = watchdog_get_drvdata(wdd);
250 if (watchdog_active(wdd))
251 return da9062_wdt_stop(wdd);
256 static int __maybe_unused da9062_wdt_resume(struct device *dev)
258 struct watchdog_device *wdd = dev_get_drvdata(dev);
259 struct da9062_watchdog *wdt = watchdog_get_drvdata(wdd);
264 if (watchdog_active(wdd))
265 return da9062_wdt_start(wdd);
270 static SIMPLE_DEV_PM_OPS(da9062_wdt_pm_ops,
271 da9062_wdt_suspend, da9062_wdt_resume);
273 static struct platform_driver da9062_wdt_driver = {
274 .probe = da9062_wdt_probe,
276 .name = "da9062-watchdog",
277 .pm = &da9062_wdt_pm_ops,
278 .of_match_table = da9062_compatible_id_table,
281 module_platform_driver(da9062_wdt_driver);
283 MODULE_AUTHOR("S Twiss <stwiss.opensource@diasemi.com>");
284 MODULE_DESCRIPTION("WDT device driver for Dialog DA9062 and DA9061");
285 MODULE_LICENSE("GPL");
286 MODULE_ALIAS("platform:da9062-watchdog");