2 * System monitoring driver for DA9052 PMICs.
4 * Copyright(c) 2012 Dialog Semiconductor Ltd.
6 * Author: Anthony Olech <Anthony.Olech@diasemi.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
15 #include <linux/module.h>
16 #include <linux/delay.h>
17 #include <linux/uaccess.h>
18 #include <linux/platform_device.h>
19 #include <linux/time.h>
20 #include <linux/watchdog.h>
21 #include <linux/types.h>
22 #include <linux/kernel.h>
23 #include <linux/jiffies.h>
25 #include <linux/mfd/da9052/reg.h>
26 #include <linux/mfd/da9052/da9052.h>
28 #define DA9052_DEF_TIMEOUT 4
29 #define DA9052_TWDMIN 256
31 struct da9052_wdt_data
{
32 struct watchdog_device wdt
;
33 struct da9052
*da9052
;
39 int time
; /* Seconds */
40 } da9052_wdt_maps
[] = {
46 { 5, 33 }, /* Actual time 32.768s so included both 32s and 33s */
48 { 6, 66 }, /* Actual time 65.536s so include both, 65s and 66s */
53 static int da9052_wdt_set_timeout(struct watchdog_device
*wdt_dev
,
56 struct da9052_wdt_data
*driver_data
= watchdog_get_drvdata(wdt_dev
);
57 struct da9052
*da9052
= driver_data
->da9052
;
61 * Disable the Watchdog timer before setting
64 ret
= da9052_reg_update(da9052
, DA9052_CONTROL_D_REG
,
65 DA9052_CONTROLD_TWDSCALE
, 0);
67 dev_err(da9052
->dev
, "Failed to disable watchdog bit, %d\n",
73 * To change the timeout, da9052 needs to
74 * be disabled for at least 150 us.
78 /* Set the desired timeout */
79 for (i
= 0; i
< ARRAY_SIZE(da9052_wdt_maps
); i
++)
80 if (da9052_wdt_maps
[i
].time
== timeout
)
83 if (i
== ARRAY_SIZE(da9052_wdt_maps
))
86 ret
= da9052_reg_update(da9052
, DA9052_CONTROL_D_REG
,
87 DA9052_CONTROLD_TWDSCALE
,
88 da9052_wdt_maps
[i
].reg_val
);
91 "Failed to update timescale bit, %d\n", ret
);
95 wdt_dev
->timeout
= timeout
;
96 driver_data
->jpast
= jiffies
;
102 static int da9052_wdt_start(struct watchdog_device
*wdt_dev
)
104 return da9052_wdt_set_timeout(wdt_dev
, wdt_dev
->timeout
);
107 static int da9052_wdt_stop(struct watchdog_device
*wdt_dev
)
109 return da9052_wdt_set_timeout(wdt_dev
, 0);
112 static int da9052_wdt_ping(struct watchdog_device
*wdt_dev
)
114 struct da9052_wdt_data
*driver_data
= watchdog_get_drvdata(wdt_dev
);
115 struct da9052
*da9052
= driver_data
->da9052
;
116 unsigned long msec
, jnow
= jiffies
;
120 * We have a minimum time for watchdog window called TWDMIN. A write
121 * to the watchdog before this elapsed time should cause an error.
123 msec
= (jnow
- driver_data
->jpast
) * 1000/HZ
;
124 if (msec
< DA9052_TWDMIN
)
127 /* Reset the watchdog timer */
128 ret
= da9052_reg_update(da9052
, DA9052_CONTROL_D_REG
,
129 DA9052_CONTROLD_WATCHDOG
, 1 << 7);
134 * FIXME: Reset the watchdog core, in general PMIC
135 * is supposed to do this
137 ret
= da9052_reg_update(da9052
, DA9052_CONTROL_D_REG
,
138 DA9052_CONTROLD_WATCHDOG
, 0 << 7);
143 static struct watchdog_info da9052_wdt_info
= {
144 .options
= WDIOF_SETTIMEOUT
| WDIOF_KEEPALIVEPING
,
145 .identity
= "DA9052 Watchdog",
148 static const struct watchdog_ops da9052_wdt_ops
= {
149 .owner
= THIS_MODULE
,
150 .start
= da9052_wdt_start
,
151 .stop
= da9052_wdt_stop
,
152 .ping
= da9052_wdt_ping
,
153 .set_timeout
= da9052_wdt_set_timeout
,
157 static int da9052_wdt_probe(struct platform_device
*pdev
)
159 struct da9052
*da9052
= dev_get_drvdata(pdev
->dev
.parent
);
160 struct da9052_wdt_data
*driver_data
;
161 struct watchdog_device
*da9052_wdt
;
164 driver_data
= devm_kzalloc(&pdev
->dev
, sizeof(*driver_data
),
170 driver_data
->da9052
= da9052
;
172 da9052_wdt
= &driver_data
->wdt
;
174 da9052_wdt
->timeout
= DA9052_DEF_TIMEOUT
;
175 da9052_wdt
->info
= &da9052_wdt_info
;
176 da9052_wdt
->ops
= &da9052_wdt_ops
;
177 da9052_wdt
->parent
= &pdev
->dev
;
178 watchdog_set_drvdata(da9052_wdt
, driver_data
);
180 ret
= da9052_reg_update(da9052
, DA9052_CONTROL_D_REG
,
181 DA9052_CONTROLD_TWDSCALE
, 0);
183 dev_err(&pdev
->dev
, "Failed to disable watchdog bits, %d\n",
188 ret
= watchdog_register_device(&driver_data
->wdt
);
190 dev_err(da9052
->dev
, "watchdog_register_device() failed: %d\n",
195 platform_set_drvdata(pdev
, driver_data
);
200 static int da9052_wdt_remove(struct platform_device
*pdev
)
202 struct da9052_wdt_data
*driver_data
= platform_get_drvdata(pdev
);
204 watchdog_unregister_device(&driver_data
->wdt
);
209 static struct platform_driver da9052_wdt_driver
= {
210 .probe
= da9052_wdt_probe
,
211 .remove
= da9052_wdt_remove
,
213 .name
= "da9052-watchdog",
217 module_platform_driver(da9052_wdt_driver
);
219 MODULE_AUTHOR("Anthony Olech <Anthony.Olech@diasemi.com>");
220 MODULE_DESCRIPTION("DA9052 SM Device Driver");
221 MODULE_LICENSE("GPL");
222 MODULE_ALIAS("platform:da9052-watchdog");