diff options
author | Ashish Jangam <ashish.jangam@kpitcummins.com> | 2012-10-12 05:30:03 -0400 |
---|---|---|
committer | Wim Van Sebroeck <wim@iguana.be> | 2012-12-19 16:24:58 -0500 |
commit | 312b00e1c31011dd009f51a52e14a500f61f1f31 (patch) | |
tree | 2bc209287397eeb6da979f50ded6e9bbe4a754e7 /drivers/watchdog/da9055_wdt.c | |
parent | 1ba85387f0224dca9f0f9d783b09c9ceeb1c91bd (diff) |
watchdog: DA9055 Watchdog driver
This is the Watchdog patch for the DA9055 PMIC. This patch has got dependency on
the DA9055 MFD core.
This patch is functionally tested on SMDK6410
Signed-off-by: David Dajun Chen <dchen@diasemi.com>
Signed-off-by: Ashish Jangam <ashish.jangam@kpitcummins.com>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to 'drivers/watchdog/da9055_wdt.c')
-rw-r--r-- | drivers/watchdog/da9055_wdt.c | 216 |
1 files changed, 216 insertions, 0 deletions
diff --git a/drivers/watchdog/da9055_wdt.c b/drivers/watchdog/da9055_wdt.c new file mode 100644 index 000000000000..709ea1aefebb --- /dev/null +++ b/drivers/watchdog/da9055_wdt.c | |||
@@ -0,0 +1,216 @@ | |||
1 | /* | ||
2 | * System monitoring driver for DA9055 PMICs. | ||
3 | * | ||
4 | * Copyright(c) 2012 Dialog Semiconductor Ltd. | ||
5 | * | ||
6 | * Author: David Dajun Chen <dchen@diasemi.com> | ||
7 | * | ||
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. | ||
12 | * | ||
13 | */ | ||
14 | |||
15 | #include <linux/module.h> | ||
16 | #include <linux/types.h> | ||
17 | #include <linux/kernel.h> | ||
18 | #include <linux/slab.h> | ||
19 | #include <linux/platform_device.h> | ||
20 | #include <linux/watchdog.h> | ||
21 | #include <linux/delay.h> | ||
22 | |||
23 | #include <linux/mfd/da9055/core.h> | ||
24 | #include <linux/mfd/da9055/reg.h> | ||
25 | |||
26 | static bool nowayout = WATCHDOG_NOWAYOUT; | ||
27 | module_param(nowayout, bool, 0); | ||
28 | MODULE_PARM_DESC(nowayout, | ||
29 | "Watchdog cannot be stopped once started (default=" | ||
30 | __MODULE_STRING(WATCHDOG_NOWAYOUT) ")"); | ||
31 | |||
32 | #define DA9055_DEF_TIMEOUT 4 | ||
33 | #define DA9055_TWDMIN 256 | ||
34 | |||
35 | struct da9055_wdt_data { | ||
36 | struct watchdog_device wdt; | ||
37 | struct da9055 *da9055; | ||
38 | struct kref kref; | ||
39 | }; | ||
40 | |||
41 | static const struct { | ||
42 | u8 reg_val; | ||
43 | int user_time; /* In seconds */ | ||
44 | } da9055_wdt_maps[] = { | ||
45 | { 0, 0 }, | ||
46 | { 1, 2 }, | ||
47 | { 2, 4 }, | ||
48 | { 3, 8 }, | ||
49 | { 4, 16 }, | ||
50 | { 5, 32 }, | ||
51 | { 5, 33 }, /* Actual time 32.768s so included both 32s and 33s */ | ||
52 | { 6, 65 }, | ||
53 | { 6, 66 }, /* Actual time 65.536s so include both, 65s and 66s */ | ||
54 | { 7, 131 }, | ||
55 | }; | ||
56 | |||
57 | static int da9055_wdt_set_timeout(struct watchdog_device *wdt_dev, | ||
58 | unsigned int timeout) | ||
59 | { | ||
60 | struct da9055_wdt_data *driver_data = watchdog_get_drvdata(wdt_dev); | ||
61 | struct da9055 *da9055 = driver_data->da9055; | ||
62 | int ret, i; | ||
63 | |||
64 | for (i = 0; i < ARRAY_SIZE(da9055_wdt_maps); i++) | ||
65 | if (da9055_wdt_maps[i].user_time == timeout) | ||
66 | break; | ||
67 | |||
68 | if (i == ARRAY_SIZE(da9055_wdt_maps)) | ||
69 | ret = -EINVAL; | ||
70 | else | ||
71 | ret = da9055_reg_update(da9055, DA9055_REG_CONTROL_B, | ||
72 | DA9055_TWDSCALE_MASK, | ||
73 | da9055_wdt_maps[i].reg_val << | ||
74 | DA9055_TWDSCALE_SHIFT); | ||
75 | if (ret < 0) | ||
76 | dev_err(da9055->dev, | ||
77 | "Failed to update timescale bit, %d\n", ret); | ||
78 | |||
79 | wdt_dev->timeout = timeout; | ||
80 | |||
81 | return ret; | ||
82 | } | ||
83 | |||
84 | static int da9055_wdt_ping(struct watchdog_device *wdt_dev) | ||
85 | { | ||
86 | struct da9055_wdt_data *driver_data = watchdog_get_drvdata(wdt_dev); | ||
87 | struct da9055 *da9055 = driver_data->da9055; | ||
88 | int ret; | ||
89 | |||
90 | /* | ||
91 | * We have a minimum time for watchdog window called TWDMIN. A write | ||
92 | * to the watchdog before this elapsed time will cause an error. | ||
93 | */ | ||
94 | mdelay(DA9055_TWDMIN); | ||
95 | |||
96 | /* Reset the watchdog timer */ | ||
97 | ret = da9055_reg_update(da9055, DA9055_REG_CONTROL_E, | ||
98 | DA9055_WATCHDOG_MASK, 1); | ||
99 | |||
100 | return ret; | ||
101 | } | ||
102 | |||
103 | static void da9055_wdt_release_resources(struct kref *r) | ||
104 | { | ||
105 | struct da9055_wdt_data *driver_data = | ||
106 | container_of(r, struct da9055_wdt_data, kref); | ||
107 | |||
108 | kfree(driver_data); | ||
109 | } | ||
110 | |||
111 | static void da9055_wdt_ref(struct watchdog_device *wdt_dev) | ||
112 | { | ||
113 | struct da9055_wdt_data *driver_data = watchdog_get_drvdata(wdt_dev); | ||
114 | |||
115 | kref_get(&driver_data->kref); | ||
116 | } | ||
117 | |||
118 | static void da9055_wdt_unref(struct watchdog_device *wdt_dev) | ||
119 | { | ||
120 | struct da9055_wdt_data *driver_data = watchdog_get_drvdata(wdt_dev); | ||
121 | |||
122 | kref_put(&driver_data->kref, da9055_wdt_release_resources); | ||
123 | } | ||
124 | |||
125 | static int da9055_wdt_start(struct watchdog_device *wdt_dev) | ||
126 | { | ||
127 | return da9055_wdt_set_timeout(wdt_dev, wdt_dev->timeout); | ||
128 | } | ||
129 | |||
130 | static int da9055_wdt_stop(struct watchdog_device *wdt_dev) | ||
131 | { | ||
132 | return da9055_wdt_set_timeout(wdt_dev, 0); | ||
133 | } | ||
134 | |||
135 | static struct watchdog_info da9055_wdt_info = { | ||
136 | .options = WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING, | ||
137 | .identity = "DA9055 Watchdog", | ||
138 | }; | ||
139 | |||
140 | static const struct watchdog_ops da9055_wdt_ops = { | ||
141 | .owner = THIS_MODULE, | ||
142 | .start = da9055_wdt_start, | ||
143 | .stop = da9055_wdt_stop, | ||
144 | .ping = da9055_wdt_ping, | ||
145 | .set_timeout = da9055_wdt_set_timeout, | ||
146 | .ref = da9055_wdt_ref, | ||
147 | .unref = da9055_wdt_unref, | ||
148 | }; | ||
149 | |||
150 | static int da9055_wdt_probe(struct platform_device *pdev) | ||
151 | { | ||
152 | struct da9055 *da9055 = dev_get_drvdata(pdev->dev.parent); | ||
153 | struct da9055_wdt_data *driver_data; | ||
154 | struct watchdog_device *da9055_wdt; | ||
155 | int ret; | ||
156 | |||
157 | driver_data = devm_kzalloc(&pdev->dev, sizeof(*driver_data), | ||
158 | GFP_KERNEL); | ||
159 | if (!driver_data) { | ||
160 | dev_err(da9055->dev, "Failed to allocate watchdog device\n"); | ||
161 | return -ENOMEM; | ||
162 | } | ||
163 | |||
164 | driver_data->da9055 = da9055; | ||
165 | |||
166 | da9055_wdt = &driver_data->wdt; | ||
167 | |||
168 | da9055_wdt->timeout = DA9055_DEF_TIMEOUT; | ||
169 | da9055_wdt->info = &da9055_wdt_info; | ||
170 | da9055_wdt->ops = &da9055_wdt_ops; | ||
171 | watchdog_set_nowayout(da9055_wdt, nowayout); | ||
172 | watchdog_set_drvdata(da9055_wdt, driver_data); | ||
173 | |||
174 | kref_init(&driver_data->kref); | ||
175 | |||
176 | ret = da9055_wdt_stop(da9055_wdt); | ||
177 | if (ret < 0) { | ||
178 | dev_err(&pdev->dev, "Failed to stop watchdog, %d\n", ret); | ||
179 | goto err; | ||
180 | } | ||
181 | |||
182 | dev_set_drvdata(&pdev->dev, driver_data); | ||
183 | |||
184 | ret = watchdog_register_device(&driver_data->wdt); | ||
185 | if (ret != 0) | ||
186 | dev_err(da9055->dev, "watchdog_register_device() failed: %d\n", | ||
187 | ret); | ||
188 | |||
189 | err: | ||
190 | return ret; | ||
191 | } | ||
192 | |||
193 | static int da9055_wdt_remove(struct platform_device *pdev) | ||
194 | { | ||
195 | struct da9055_wdt_data *driver_data = dev_get_drvdata(&pdev->dev); | ||
196 | |||
197 | watchdog_unregister_device(&driver_data->wdt); | ||
198 | kref_put(&driver_data->kref, da9055_wdt_release_resources); | ||
199 | |||
200 | return 0; | ||
201 | } | ||
202 | |||
203 | static struct platform_driver da9055_wdt_driver = { | ||
204 | .probe = da9055_wdt_probe, | ||
205 | .remove = da9055_wdt_remove, | ||
206 | .driver = { | ||
207 | .name = "da9055-watchdog", | ||
208 | }, | ||
209 | }; | ||
210 | |||
211 | module_platform_driver(da9055_wdt_driver); | ||
212 | |||
213 | MODULE_AUTHOR("David Dajun Chen <dchen@diasemi.com>"); | ||
214 | MODULE_DESCRIPTION("DA9055 watchdog"); | ||
215 | MODULE_LICENSE("GPL"); | ||
216 | MODULE_ALIAS("platform:da9055-watchdog"); | ||