blob: 64f5470a6a0e2ec1d8fcf2577d987b8c39661cc5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* linux/drivers/char/watchdog/s3c2410_wdt.c
2 *
3 * Copyright (c) 2004 Simtec Electronics
4 * Ben Dooks <ben@simtec.co.uk>
5 *
6 * S3C2410 Watchdog Timer Support
7 *
8 * Based on, softdog.c by Alan Cox,
Alan Cox29fa0582008-10-27 15:17:56 +00009 * (c) Copyright 1996 Alan Cox <alan@lxorguk.ukuu.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070024*/
25
Joe Perches27c766a2012-02-15 15:06:19 -080026#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/module.h>
29#include <linux/moduleparam.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/types.h>
31#include <linux/timer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/watchdog.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/init.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010034#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/interrupt.h>
Russell Kingf8ce2542006-01-07 16:15:52 +000036#include <linux/clk.h>
Alan Cox41dc8b72008-08-04 17:54:46 +010037#include <linux/uaccess.h>
38#include <linux/io.h>
Ben Dookse02f8382009-10-30 00:30:25 +000039#include <linux/cpufreq.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090040#include <linux/slab.h>
Wolfram Sang25dc46e2011-09-26 15:40:14 +020041#include <linux/err.h>
Wim Van Sebroeck3016a552012-05-03 05:24:17 +000042#include <linux/of.h>
Leela Krishna Amudala4f1f6532013-12-06 11:17:47 +053043#include <linux/mfd/syscon.h>
44#include <linux/regmap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Tomasz Figaa8f54012013-06-17 23:45:24 +090046#define S3C2410_WTCON 0x00
47#define S3C2410_WTDAT 0x04
48#define S3C2410_WTCNT 0x08
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Tomasz Figaa8f54012013-06-17 23:45:24 +090050#define S3C2410_WTCON_RSTEN (1 << 0)
51#define S3C2410_WTCON_INTEN (1 << 2)
52#define S3C2410_WTCON_ENABLE (1 << 5)
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Tomasz Figaa8f54012013-06-17 23:45:24 +090054#define S3C2410_WTCON_DIV16 (0 << 3)
55#define S3C2410_WTCON_DIV32 (1 << 3)
56#define S3C2410_WTCON_DIV64 (2 << 3)
57#define S3C2410_WTCON_DIV128 (3 << 3)
58
59#define S3C2410_WTCON_PRESCALE(x) ((x) << 8)
60#define S3C2410_WTCON_PRESCALE_MASK (0xff << 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#define CONFIG_S3C2410_WATCHDOG_ATBOOT (0)
63#define CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME (15)
64
Leela Krishna Amudala4f1f6532013-12-06 11:17:47 +053065#define EXYNOS5_WDT_DISABLE_REG_OFFSET 0x0408
66#define EXYNOS5_WDT_MASK_RESET_REG_OFFSET 0x040c
67#define QUIRK_HAS_PMU_CONFIG (1 << 0)
68
Wim Van Sebroeck86a1e182012-03-05 16:51:11 +010069static bool nowayout = WATCHDOG_NOWAYOUT;
Fabio Porceddac1fd5f62013-02-14 09:14:25 +010070static int tmr_margin;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071static int tmr_atboot = CONFIG_S3C2410_WATCHDOG_ATBOOT;
Alan Cox41dc8b72008-08-04 17:54:46 +010072static int soft_noboot;
73static int debug;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75module_param(tmr_margin, int, 0);
76module_param(tmr_atboot, int, 0);
Wim Van Sebroeck86a1e182012-03-05 16:51:11 +010077module_param(nowayout, bool, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078module_param(soft_noboot, int, 0);
79module_param(debug, int, 0);
80
Randy Dunlap76550d32010-05-01 09:46:15 -070081MODULE_PARM_DESC(tmr_margin, "Watchdog tmr_margin in seconds. (default="
Alan Cox41dc8b72008-08-04 17:54:46 +010082 __MODULE_STRING(CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME) ")");
83MODULE_PARM_DESC(tmr_atboot,
84 "Watchdog is started at boot time if set to 1, default="
85 __MODULE_STRING(CONFIG_S3C2410_WATCHDOG_ATBOOT));
86MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default="
87 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
Wim Van Sebroecka77dba72009-04-14 20:20:07 +000088MODULE_PARM_DESC(soft_noboot, "Watchdog action, set to 1 to ignore reboots, "
Randy Dunlap76550d32010-05-01 09:46:15 -070089 "0 to reboot (default 0)");
90MODULE_PARM_DESC(debug, "Watchdog debug, set to >1 for debug (default 0)");
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Leela Krishna Amudala4f1f6532013-12-06 11:17:47 +053092/**
93 * struct s3c2410_wdt_variant - Per-variant config data
94 *
95 * @disable_reg: Offset in pmureg for the register that disables the watchdog
96 * timer reset functionality.
97 * @mask_reset_reg: Offset in pmureg for the register that masks the watchdog
98 * timer reset functionality.
99 * @mask_bit: Bit number for the watchdog timer in the disable register and the
100 * mask reset register.
101 * @quirks: A bitfield of quirks.
102 */
103
104struct s3c2410_wdt_variant {
105 int disable_reg;
106 int mask_reset_reg;
107 int mask_bit;
108 u32 quirks;
109};
110
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530111struct s3c2410_wdt {
112 struct device *dev;
113 struct clk *clock;
114 void __iomem *reg_base;
115 unsigned int count;
116 spinlock_t lock;
117 unsigned long wtcon_save;
118 unsigned long wtdat_save;
119 struct watchdog_device wdt_device;
120 struct notifier_block freq_transition;
Leela Krishna Amudala4f1f6532013-12-06 11:17:47 +0530121 struct s3c2410_wdt_variant *drv_data;
122 struct regmap *pmureg;
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530123};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Leela Krishna Amudala4f1f6532013-12-06 11:17:47 +0530125static const struct s3c2410_wdt_variant drv_data_s3c2410 = {
126 .quirks = 0
127};
128
129#ifdef CONFIG_OF
130static const struct s3c2410_wdt_variant drv_data_exynos5250 = {
131 .disable_reg = EXYNOS5_WDT_DISABLE_REG_OFFSET,
132 .mask_reset_reg = EXYNOS5_WDT_MASK_RESET_REG_OFFSET,
133 .mask_bit = 20,
134 .quirks = QUIRK_HAS_PMU_CONFIG
135};
136
137static const struct s3c2410_wdt_variant drv_data_exynos5420 = {
138 .disable_reg = EXYNOS5_WDT_DISABLE_REG_OFFSET,
139 .mask_reset_reg = EXYNOS5_WDT_MASK_RESET_REG_OFFSET,
140 .mask_bit = 0,
141 .quirks = QUIRK_HAS_PMU_CONFIG
142};
143
144static const struct of_device_id s3c2410_wdt_match[] = {
145 { .compatible = "samsung,s3c2410-wdt",
146 .data = &drv_data_s3c2410 },
147 { .compatible = "samsung,exynos5250-wdt",
148 .data = &drv_data_exynos5250 },
149 { .compatible = "samsung,exynos5420-wdt",
150 .data = &drv_data_exynos5420 },
151 {},
152};
153MODULE_DEVICE_TABLE(of, s3c2410_wdt_match);
154#endif
155
156static const struct platform_device_id s3c2410_wdt_ids[] = {
157 {
158 .name = "s3c2410-wdt",
159 .driver_data = (unsigned long)&drv_data_s3c2410,
160 },
161 {}
162};
163MODULE_DEVICE_TABLE(platform, s3c2410_wdt_ids);
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165/* watchdog control routines */
166
Joe Perches27c766a2012-02-15 15:06:19 -0800167#define DBG(fmt, ...) \
168do { \
169 if (debug) \
170 pr_info(fmt, ##__VA_ARGS__); \
171} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173/* functions */
174
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530175static inline struct s3c2410_wdt *freq_to_wdt(struct notifier_block *nb)
176{
177 return container_of(nb, struct s3c2410_wdt, freq_transition);
178}
179
Leela Krishna Amudala4f1f6532013-12-06 11:17:47 +0530180static int s3c2410wdt_mask_and_disable_reset(struct s3c2410_wdt *wdt, bool mask)
181{
182 int ret;
183 u32 mask_val = 1 << wdt->drv_data->mask_bit;
184 u32 val = 0;
185
186 /* No need to do anything if no PMU CONFIG needed */
187 if (!(wdt->drv_data->quirks & QUIRK_HAS_PMU_CONFIG))
188 return 0;
189
190 if (mask)
191 val = mask_val;
192
193 ret = regmap_update_bits(wdt->pmureg,
194 wdt->drv_data->disable_reg,
195 mask_val, val);
196 if (ret < 0)
197 goto error;
198
199 ret = regmap_update_bits(wdt->pmureg,
200 wdt->drv_data->mask_reset_reg,
201 mask_val, val);
202 error:
203 if (ret < 0)
204 dev_err(wdt->dev, "failed to update reg(%d)\n", ret);
205
206 return ret;
207}
208
Wolfram Sang25dc46e2011-09-26 15:40:14 +0200209static int s3c2410wdt_keepalive(struct watchdog_device *wdd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530211 struct s3c2410_wdt *wdt = watchdog_get_drvdata(wdd);
212
213 spin_lock(&wdt->lock);
214 writel(wdt->count, wdt->reg_base + S3C2410_WTCNT);
215 spin_unlock(&wdt->lock);
Wolfram Sang25dc46e2011-09-26 15:40:14 +0200216
217 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218}
219
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530220static void __s3c2410wdt_stop(struct s3c2410_wdt *wdt)
Alan Cox41dc8b72008-08-04 17:54:46 +0100221{
222 unsigned long wtcon;
223
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530224 wtcon = readl(wdt->reg_base + S3C2410_WTCON);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 wtcon &= ~(S3C2410_WTCON_ENABLE | S3C2410_WTCON_RSTEN);
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530226 writel(wtcon, wdt->reg_base + S3C2410_WTCON);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227}
228
Wolfram Sang25dc46e2011-09-26 15:40:14 +0200229static int s3c2410wdt_stop(struct watchdog_device *wdd)
Alan Cox41dc8b72008-08-04 17:54:46 +0100230{
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530231 struct s3c2410_wdt *wdt = watchdog_get_drvdata(wdd);
232
233 spin_lock(&wdt->lock);
234 __s3c2410wdt_stop(wdt);
235 spin_unlock(&wdt->lock);
Wolfram Sang25dc46e2011-09-26 15:40:14 +0200236
237 return 0;
Alan Cox41dc8b72008-08-04 17:54:46 +0100238}
239
Wolfram Sang25dc46e2011-09-26 15:40:14 +0200240static int s3c2410wdt_start(struct watchdog_device *wdd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241{
242 unsigned long wtcon;
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530243 struct s3c2410_wdt *wdt = watchdog_get_drvdata(wdd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530245 spin_lock(&wdt->lock);
Alan Cox41dc8b72008-08-04 17:54:46 +0100246
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530247 __s3c2410wdt_stop(wdt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530249 wtcon = readl(wdt->reg_base + S3C2410_WTCON);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 wtcon |= S3C2410_WTCON_ENABLE | S3C2410_WTCON_DIV128;
251
252 if (soft_noboot) {
253 wtcon |= S3C2410_WTCON_INTEN;
254 wtcon &= ~S3C2410_WTCON_RSTEN;
255 } else {
256 wtcon &= ~S3C2410_WTCON_INTEN;
257 wtcon |= S3C2410_WTCON_RSTEN;
258 }
259
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530260 DBG("%s: count=0x%08x, wtcon=%08lx\n",
261 __func__, wdt->count, wtcon);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530263 writel(wdt->count, wdt->reg_base + S3C2410_WTDAT);
264 writel(wdt->count, wdt->reg_base + S3C2410_WTCNT);
265 writel(wtcon, wdt->reg_base + S3C2410_WTCON);
266 spin_unlock(&wdt->lock);
Wolfram Sang25dc46e2011-09-26 15:40:14 +0200267
268 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269}
270
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530271static inline int s3c2410wdt_is_running(struct s3c2410_wdt *wdt)
Ben Dookse02f8382009-10-30 00:30:25 +0000272{
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530273 return readl(wdt->reg_base + S3C2410_WTCON) & S3C2410_WTCON_ENABLE;
Ben Dookse02f8382009-10-30 00:30:25 +0000274}
275
Wolfram Sang25dc46e2011-09-26 15:40:14 +0200276static int s3c2410wdt_set_heartbeat(struct watchdog_device *wdd, unsigned timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277{
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530278 struct s3c2410_wdt *wdt = watchdog_get_drvdata(wdd);
279 unsigned long freq = clk_get_rate(wdt->clock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 unsigned int count;
281 unsigned int divisor = 1;
282 unsigned long wtcon;
283
284 if (timeout < 1)
285 return -EINVAL;
286
Doug Anderson17862442013-11-26 16:57:19 -0800287 freq = DIV_ROUND_UP(freq, 128);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 count = timeout * freq;
289
Ben Dookse02f8382009-10-30 00:30:25 +0000290 DBG("%s: count=%d, timeout=%d, freq=%lu\n",
Harvey Harrisonfa9363c2008-03-05 18:24:58 -0800291 __func__, count, timeout, freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
293 /* if the count is bigger than the watchdog register,
294 then work out what we need to do (and if) we can
295 actually make this value
296 */
297
298 if (count >= 0x10000) {
Doug Anderson17862442013-11-26 16:57:19 -0800299 divisor = DIV_ROUND_UP(count, 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Doug Anderson17862442013-11-26 16:57:19 -0800301 if (divisor > 0x100) {
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530302 dev_err(wdt->dev, "timeout %d too big\n", timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 return -EINVAL;
304 }
305 }
306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 DBG("%s: timeout=%d, divisor=%d, count=%d (%08x)\n",
Doug Anderson17862442013-11-26 16:57:19 -0800308 __func__, timeout, divisor, count, DIV_ROUND_UP(count, divisor));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Doug Anderson17862442013-11-26 16:57:19 -0800310 count = DIV_ROUND_UP(count, divisor);
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530311 wdt->count = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
313 /* update the pre-scaler */
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530314 wtcon = readl(wdt->reg_base + S3C2410_WTCON);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 wtcon &= ~S3C2410_WTCON_PRESCALE_MASK;
316 wtcon |= S3C2410_WTCON_PRESCALE(divisor-1);
317
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530318 writel(count, wdt->reg_base + S3C2410_WTDAT);
319 writel(wtcon, wdt->reg_base + S3C2410_WTCON);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Hans de Goede5f2430f2012-05-11 12:00:27 +0200321 wdd->timeout = (count * divisor) / freq;
Wim Van Sebroeck0197c1c2012-02-29 20:20:58 +0100322
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 return 0;
324}
325
Wim Van Sebroecka77dba72009-04-14 20:20:07 +0000326#define OPTIONS (WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING | WDIOF_MAGICCLOSE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Alan Cox41dc8b72008-08-04 17:54:46 +0100328static const struct watchdog_info s3c2410_wdt_ident = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 .options = OPTIONS,
330 .firmware_version = 0,
331 .identity = "S3C2410 Watchdog",
332};
333
Wolfram Sang25dc46e2011-09-26 15:40:14 +0200334static struct watchdog_ops s3c2410wdt_ops = {
335 .owner = THIS_MODULE,
336 .start = s3c2410wdt_start,
337 .stop = s3c2410wdt_stop,
338 .ping = s3c2410wdt_keepalive,
339 .set_timeout = s3c2410wdt_set_heartbeat,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340};
341
Wolfram Sang25dc46e2011-09-26 15:40:14 +0200342static struct watchdog_device s3c2410_wdd = {
343 .info = &s3c2410_wdt_ident,
344 .ops = &s3c2410wdt_ops,
Fabio Porceddac1fd5f62013-02-14 09:14:25 +0100345 .timeout = CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346};
347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348/* interrupt handler code */
349
David Howells7d12e782006-10-05 14:55:46 +0100350static irqreturn_t s3c2410wdt_irq(int irqno, void *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351{
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530352 struct s3c2410_wdt *wdt = platform_get_drvdata(param);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530354 dev_info(wdt->dev, "watchdog timer expired (irq)\n");
355
356 s3c2410wdt_keepalive(&wdt->wdt_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 return IRQ_HANDLED;
358}
Ben Dookse02f8382009-10-30 00:30:25 +0000359
Doug Anderson0f1dd982013-11-25 15:36:43 -0800360#ifdef CONFIG_ARM_S3C24XX_CPUFREQ
Ben Dookse02f8382009-10-30 00:30:25 +0000361
362static int s3c2410wdt_cpufreq_transition(struct notifier_block *nb,
363 unsigned long val, void *data)
364{
365 int ret;
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530366 struct s3c2410_wdt *wdt = freq_to_wdt(nb);
Ben Dookse02f8382009-10-30 00:30:25 +0000367
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530368 if (!s3c2410wdt_is_running(wdt))
Ben Dookse02f8382009-10-30 00:30:25 +0000369 goto done;
370
371 if (val == CPUFREQ_PRECHANGE) {
372 /* To ensure that over the change we don't cause the
373 * watchdog to trigger, we perform an keep-alive if
374 * the watchdog is running.
375 */
376
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530377 s3c2410wdt_keepalive(&wdt->wdt_device);
Ben Dookse02f8382009-10-30 00:30:25 +0000378 } else if (val == CPUFREQ_POSTCHANGE) {
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530379 s3c2410wdt_stop(&wdt->wdt_device);
Ben Dookse02f8382009-10-30 00:30:25 +0000380
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530381 ret = s3c2410wdt_set_heartbeat(&wdt->wdt_device,
382 wdt->wdt_device.timeout);
Ben Dookse02f8382009-10-30 00:30:25 +0000383
384 if (ret >= 0)
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530385 s3c2410wdt_start(&wdt->wdt_device);
Ben Dookse02f8382009-10-30 00:30:25 +0000386 else
387 goto err;
388 }
389
390done:
391 return 0;
392
393 err:
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530394 dev_err(wdt->dev, "cannot set new value for timeout %d\n",
395 wdt->wdt_device.timeout);
Ben Dookse02f8382009-10-30 00:30:25 +0000396 return ret;
397}
398
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530399static inline int s3c2410wdt_cpufreq_register(struct s3c2410_wdt *wdt)
Ben Dookse02f8382009-10-30 00:30:25 +0000400{
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530401 wdt->freq_transition.notifier_call = s3c2410wdt_cpufreq_transition;
402
403 return cpufreq_register_notifier(&wdt->freq_transition,
Ben Dookse02f8382009-10-30 00:30:25 +0000404 CPUFREQ_TRANSITION_NOTIFIER);
405}
406
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530407static inline void s3c2410wdt_cpufreq_deregister(struct s3c2410_wdt *wdt)
Ben Dookse02f8382009-10-30 00:30:25 +0000408{
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530409 wdt->freq_transition.notifier_call = s3c2410wdt_cpufreq_transition;
410
411 cpufreq_unregister_notifier(&wdt->freq_transition,
Ben Dookse02f8382009-10-30 00:30:25 +0000412 CPUFREQ_TRANSITION_NOTIFIER);
413}
414
415#else
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530416
417static inline int s3c2410wdt_cpufreq_register(struct s3c2410_wdt *wdt)
Ben Dookse02f8382009-10-30 00:30:25 +0000418{
419 return 0;
420}
421
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530422static inline void s3c2410wdt_cpufreq_deregister(struct s3c2410_wdt *wdt)
Ben Dookse02f8382009-10-30 00:30:25 +0000423{
424}
425#endif
426
Leela Krishna Amudala4f1f6532013-12-06 11:17:47 +0530427/* s3c2410_get_wdt_driver_data */
428static inline struct s3c2410_wdt_variant *
429get_wdt_drv_data(struct platform_device *pdev)
430{
431 if (pdev->dev.of_node) {
432 const struct of_device_id *match;
433 match = of_match_node(s3c2410_wdt_match, pdev->dev.of_node);
434 return (struct s3c2410_wdt_variant *)match->data;
435 } else {
436 return (struct s3c2410_wdt_variant *)
437 platform_get_device_id(pdev)->driver_data;
438 }
439}
440
Bill Pemberton2d991a12012-11-19 13:21:41 -0500441static int s3c2410wdt_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442{
Ben Dookse8ef92b2007-06-14 12:08:55 +0100443 struct device *dev;
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530444 struct s3c2410_wdt *wdt;
445 struct resource *wdt_mem;
446 struct resource *wdt_irq;
Ben Dooks46b814d2007-06-14 12:08:54 +0100447 unsigned int wtcon;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 int started = 0;
449 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
Harvey Harrisonfa9363c2008-03-05 18:24:58 -0800451 DBG("%s: probe=%p\n", __func__, pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Ben Dookse8ef92b2007-06-14 12:08:55 +0100453 dev = &pdev->dev;
Ben Dookse8ef92b2007-06-14 12:08:55 +0100454
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530455 wdt = devm_kzalloc(dev, sizeof(*wdt), GFP_KERNEL);
456 if (!wdt)
457 return -ENOMEM;
458
459 wdt->dev = &pdev->dev;
460 spin_lock_init(&wdt->lock);
461 wdt->wdt_device = s3c2410_wdd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
Leela Krishna Amudala4f1f6532013-12-06 11:17:47 +0530463 wdt->drv_data = get_wdt_drv_data(pdev);
464 if (wdt->drv_data->quirks & QUIRK_HAS_PMU_CONFIG) {
465 wdt->pmureg = syscon_regmap_lookup_by_phandle(dev->of_node,
466 "samsung,syscon-phandle");
467 if (IS_ERR(wdt->pmureg)) {
468 dev_err(dev, "syscon regmap lookup failed.\n");
469 return PTR_ERR(wdt->pmureg);
470 }
471 }
472
MyungJoo Ham78d3e002012-01-13 14:14:23 +0900473 wdt_irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
474 if (wdt_irq == NULL) {
475 dev_err(dev, "no irq resource specified\n");
476 ret = -ENOENT;
477 goto err;
478 }
479
480 /* get the memory region for the watchdog timer */
Julia Lawallbd5cc112013-08-14 11:11:24 +0200481 wdt_mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530482 wdt->reg_base = devm_ioremap_resource(dev, wdt_mem);
483 if (IS_ERR(wdt->reg_base)) {
484 ret = PTR_ERR(wdt->reg_base);
Jingoo Han04ecc7d2013-01-10 11:06:33 +0900485 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 }
487
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530488 DBG("probe: mapped reg_base=%p\n", wdt->reg_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530490 wdt->clock = devm_clk_get(dev, "watchdog");
491 if (IS_ERR(wdt->clock)) {
Ben Dookse8ef92b2007-06-14 12:08:55 +0100492 dev_err(dev, "failed to find watchdog clock source\n");
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530493 ret = PTR_ERR(wdt->clock);
Jingoo Han04ecc7d2013-01-10 11:06:33 +0900494 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 }
496
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530497 clk_prepare_enable(wdt->clock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530499 ret = s3c2410wdt_cpufreq_register(wdt);
MyungJoo Ham78d3e002012-01-13 14:14:23 +0900500 if (ret < 0) {
Jingoo Han38289242013-03-14 10:30:21 +0900501 dev_err(dev, "failed to register cpufreq\n");
Ben Dookse02f8382009-10-30 00:30:25 +0000502 goto err_clk;
503 }
504
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530505 watchdog_set_drvdata(&wdt->wdt_device, wdt);
506
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 /* see if we can actually set the requested timer margin, and if
508 * not, try the default value */
509
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530510 watchdog_init_timeout(&wdt->wdt_device, tmr_margin, &pdev->dev);
511 ret = s3c2410wdt_set_heartbeat(&wdt->wdt_device,
512 wdt->wdt_device.timeout);
513 if (ret) {
514 started = s3c2410wdt_set_heartbeat(&wdt->wdt_device,
Alan Cox41dc8b72008-08-04 17:54:46 +0100515 CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
Alan Cox41dc8b72008-08-04 17:54:46 +0100517 if (started == 0)
518 dev_info(dev,
519 "tmr_margin value out of range, default %d used\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME);
Alan Cox41dc8b72008-08-04 17:54:46 +0100521 else
Wim Van Sebroecka77dba72009-04-14 20:20:07 +0000522 dev_info(dev, "default timer value is out of range, "
523 "cannot start\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 }
525
Jingoo Han04ecc7d2013-01-10 11:06:33 +0900526 ret = devm_request_irq(dev, wdt_irq->start, s3c2410wdt_irq, 0,
527 pdev->name, pdev);
MyungJoo Ham78d3e002012-01-13 14:14:23 +0900528 if (ret != 0) {
529 dev_err(dev, "failed to install irq (%d)\n", ret);
530 goto err_cpufreq;
531 }
532
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530533 watchdog_set_nowayout(&wdt->wdt_device, nowayout);
Wim Van Sebroeckff0b3cd2011-11-29 16:24:16 +0100534
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530535 ret = watchdog_register_device(&wdt->wdt_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 if (ret) {
Wolfram Sang25dc46e2011-09-26 15:40:14 +0200537 dev_err(dev, "cannot register watchdog (%d)\n", ret);
Jingoo Han04ecc7d2013-01-10 11:06:33 +0900538 goto err_cpufreq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 }
540
Leela Krishna Amudala4f1f6532013-12-06 11:17:47 +0530541 ret = s3c2410wdt_mask_and_disable_reset(wdt, false);
542 if (ret < 0)
543 goto err_unregister;
544
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 if (tmr_atboot && started == 0) {
Ben Dookse8ef92b2007-06-14 12:08:55 +0100546 dev_info(dev, "starting watchdog timer\n");
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530547 s3c2410wdt_start(&wdt->wdt_device);
Ben Dooks655516c2006-04-19 23:02:56 +0100548 } else if (!tmr_atboot) {
549 /* if we're not enabling the watchdog, then ensure it is
550 * disabled if it has been left running from the bootloader
551 * or other source */
552
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530553 s3c2410wdt_stop(&wdt->wdt_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 }
555
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530556 platform_set_drvdata(pdev, wdt);
557
Ben Dooks46b814d2007-06-14 12:08:54 +0100558 /* print out a statement of readiness */
559
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530560 wtcon = readl(wdt->reg_base + S3C2410_WTCON);
Ben Dooks46b814d2007-06-14 12:08:54 +0100561
Ben Dookse8ef92b2007-06-14 12:08:55 +0100562 dev_info(dev, "watchdog %sactive, reset %sabled, irq %sabled\n",
Ben Dooks46b814d2007-06-14 12:08:54 +0100563 (wtcon & S3C2410_WTCON_ENABLE) ? "" : "in",
Dmitry Artamonow20403e82011-11-16 12:46:13 +0400564 (wtcon & S3C2410_WTCON_RSTEN) ? "en" : "dis",
565 (wtcon & S3C2410_WTCON_INTEN) ? "en" : "dis");
Alan Cox41dc8b72008-08-04 17:54:46 +0100566
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 return 0;
Ben Dooks0b6dd8a2006-12-18 10:31:32 +0000568
Leela Krishna Amudala4f1f6532013-12-06 11:17:47 +0530569 err_unregister:
570 watchdog_unregister_device(&wdt->wdt_device);
571
Ben Dookse02f8382009-10-30 00:30:25 +0000572 err_cpufreq:
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530573 s3c2410wdt_cpufreq_deregister(wdt);
Ben Dookse02f8382009-10-30 00:30:25 +0000574
Ben Dooks0b6dd8a2006-12-18 10:31:32 +0000575 err_clk:
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530576 clk_disable_unprepare(wdt->clock);
577 wdt->clock = NULL;
Ben Dooks0b6dd8a2006-12-18 10:31:32 +0000578
MyungJoo Ham78d3e002012-01-13 14:14:23 +0900579 err:
Ben Dooks0b6dd8a2006-12-18 10:31:32 +0000580 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581}
582
Bill Pemberton4b12b892012-11-19 13:26:24 -0500583static int s3c2410wdt_remove(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584{
Leela Krishna Amudala4f1f6532013-12-06 11:17:47 +0530585 int ret;
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530586 struct s3c2410_wdt *wdt = platform_get_drvdata(dev);
Wim Van Sebroeck9a372562010-05-21 08:11:42 +0000587
Leela Krishna Amudala4f1f6532013-12-06 11:17:47 +0530588 ret = s3c2410wdt_mask_and_disable_reset(wdt, true);
589 if (ret < 0)
590 return ret;
591
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530592 watchdog_unregister_device(&wdt->wdt_device);
Ben Dookse02f8382009-10-30 00:30:25 +0000593
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530594 s3c2410wdt_cpufreq_deregister(wdt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530596 clk_disable_unprepare(wdt->clock);
597 wdt->clock = NULL;
598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 return 0;
600}
601
Russell King3ae5eae2005-11-09 22:32:44 +0000602static void s3c2410wdt_shutdown(struct platform_device *dev)
Ben Dooks94f1e9f2005-08-17 09:04:52 +0200603{
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530604 struct s3c2410_wdt *wdt = platform_get_drvdata(dev);
605
Leela Krishna Amudala4f1f6532013-12-06 11:17:47 +0530606 s3c2410wdt_mask_and_disable_reset(wdt, true);
607
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530608 s3c2410wdt_stop(&wdt->wdt_device);
Ben Dooks94f1e9f2005-08-17 09:04:52 +0200609}
610
Jingoo Han0183984c2013-03-14 10:31:21 +0900611#ifdef CONFIG_PM_SLEEP
Ben Dooksaf4bb822005-08-17 09:03:23 +0200612
Jingoo Han0183984c2013-03-14 10:31:21 +0900613static int s3c2410wdt_suspend(struct device *dev)
Ben Dooksaf4bb822005-08-17 09:03:23 +0200614{
Leela Krishna Amudala4f1f6532013-12-06 11:17:47 +0530615 int ret;
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530616 struct s3c2410_wdt *wdt = dev_get_drvdata(dev);
617
Russell King9480e302005-10-28 09:52:56 -0700618 /* Save watchdog state, and turn it off. */
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530619 wdt->wtcon_save = readl(wdt->reg_base + S3C2410_WTCON);
620 wdt->wtdat_save = readl(wdt->reg_base + S3C2410_WTDAT);
Ben Dooksaf4bb822005-08-17 09:03:23 +0200621
Leela Krishna Amudala4f1f6532013-12-06 11:17:47 +0530622 ret = s3c2410wdt_mask_and_disable_reset(wdt, true);
623 if (ret < 0)
624 return ret;
625
Russell King9480e302005-10-28 09:52:56 -0700626 /* Note that WTCNT doesn't need to be saved. */
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530627 s3c2410wdt_stop(&wdt->wdt_device);
Ben Dooksaf4bb822005-08-17 09:03:23 +0200628
629 return 0;
630}
631
Jingoo Han0183984c2013-03-14 10:31:21 +0900632static int s3c2410wdt_resume(struct device *dev)
Ben Dooksaf4bb822005-08-17 09:03:23 +0200633{
Leela Krishna Amudala4f1f6532013-12-06 11:17:47 +0530634 int ret;
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530635 struct s3c2410_wdt *wdt = dev_get_drvdata(dev);
Ben Dooksaf4bb822005-08-17 09:03:23 +0200636
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530637 /* Restore watchdog state. */
638 writel(wdt->wtdat_save, wdt->reg_base + S3C2410_WTDAT);
639 writel(wdt->wtdat_save, wdt->reg_base + S3C2410_WTCNT);/* Reset count */
640 writel(wdt->wtcon_save, wdt->reg_base + S3C2410_WTCON);
Ben Dooksaf4bb822005-08-17 09:03:23 +0200641
Leela Krishna Amudala4f1f6532013-12-06 11:17:47 +0530642 ret = s3c2410wdt_mask_and_disable_reset(wdt, false);
643 if (ret < 0)
644 return ret;
645
Jingoo Han0183984c2013-03-14 10:31:21 +0900646 dev_info(dev, "watchdog %sabled\n",
Leela Krishna Amudalaaf4ea632013-08-27 15:36:03 +0530647 (wdt->wtcon_save & S3C2410_WTCON_ENABLE) ? "en" : "dis");
Ben Dooksaf4bb822005-08-17 09:03:23 +0200648
649 return 0;
650}
Jingoo Han0183984c2013-03-14 10:31:21 +0900651#endif
Ben Dooksaf4bb822005-08-17 09:03:23 +0200652
Jingoo Han0183984c2013-03-14 10:31:21 +0900653static SIMPLE_DEV_PM_OPS(s3c2410wdt_pm_ops, s3c2410wdt_suspend,
654 s3c2410wdt_resume);
Ben Dooksaf4bb822005-08-17 09:03:23 +0200655
Russell King3ae5eae2005-11-09 22:32:44 +0000656static struct platform_driver s3c2410wdt_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 .probe = s3c2410wdt_probe,
Bill Pemberton82268712012-11-19 13:21:12 -0500658 .remove = s3c2410wdt_remove,
Ben Dooks94f1e9f2005-08-17 09:04:52 +0200659 .shutdown = s3c2410wdt_shutdown,
Leela Krishna Amudala4f1f6532013-12-06 11:17:47 +0530660 .id_table = s3c2410_wdt_ids,
Russell King3ae5eae2005-11-09 22:32:44 +0000661 .driver = {
662 .owner = THIS_MODULE,
663 .name = "s3c2410-wdt",
Jingoo Han0183984c2013-03-14 10:31:21 +0900664 .pm = &s3c2410wdt_pm_ops,
Wim Van Sebroeck3016a552012-05-03 05:24:17 +0000665 .of_match_table = of_match_ptr(s3c2410_wdt_match),
Russell King3ae5eae2005-11-09 22:32:44 +0000666 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667};
668
Sachin Kamat6b761b22012-07-12 17:17:40 +0530669module_platform_driver(s3c2410wdt_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
Ben Dooksaf4bb822005-08-17 09:03:23 +0200671MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>, "
672 "Dimitry Andric <dimitry.andric@tomtom.com>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673MODULE_DESCRIPTION("S3C2410 Watchdog Device Driver");
674MODULE_LICENSE("GPL");