sp805_wdt.c 7.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
/*
 * drivers/char/watchdog/sp805-wdt.c
 *
 * Watchdog driver for ARM SP805 watchdog module
 *
 * Copyright (C) 2010 ST Microelectronics
 * Viresh Kumar<viresh.kumar@st.com>
 *
 * This file is licensed under the terms of the GNU General Public
 * License version 2 or later. This program is licensed "as is" without any
 * warranty of any kind, whether express or implied.
 */

#include <linux/device.h>
#include <linux/resource.h>
#include <linux/amba/bus.h>
#include <linux/bitops.h>
#include <linux/clk.h>
#include <linux/init.h>
#include <linux/io.h>
#include <linux/ioport.h>
#include <linux/kernel.h>
#include <linux/math64.h>
#include <linux/module.h>
#include <linux/moduleparam.h>
26
#include <linux/pm.h>
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
#include <linux/slab.h>
#include <linux/spinlock.h>
#include <linux/types.h>
#include <linux/watchdog.h>

/* default timeout in seconds */
#define DEFAULT_TIMEOUT		60

#define MODULE_NAME		"sp805-wdt"

/* watchdog register offsets and masks */
#define WDTLOAD			0x000
	#define LOAD_MIN	0x00000001
	#define LOAD_MAX	0xFFFFFFFF
#define WDTVALUE		0x004
#define WDTCONTROL		0x008
	/* control register masks */
	#define	INT_ENABLE	(1 << 0)
	#define	RESET_ENABLE	(1 << 1)
#define WDTINTCLR		0x00C
#define WDTRIS			0x010
#define WDTMIS			0x014
	#define INT_MASK	(1 << 0)
#define WDTLOCK			0xC00
	#define	UNLOCK		0x1ACCE551
	#define	LOCK		0x00000001

/**
 * struct sp805_wdt: sp805 wdt device structure
56
 * @wdd: instance of struct watchdog_device
57 58 59 60 61 62 63
 * @lock: spin lock protecting dev structure and io access
 * @base: base address of wdt
 * @clk: clock structure of wdt
 * @adev: amba device structure of wdt
 * @status: current status of wdt
 * @load_val: load value to be set for current timeout
 * @timeout: current programmed timeout
64 65
 */
struct sp805_wdt {
66
	struct watchdog_device		wdd;
67 68 69 70 71 72 73 74
	spinlock_t			lock;
	void __iomem			*base;
	struct clk			*clk;
	struct amba_device		*adev;
	unsigned int			load_val;
	unsigned int			timeout;
};

W
Wim Van Sebroeck 已提交
75
static bool nowayout = WATCHDOG_NOWAYOUT;
76 77 78
module_param(nowayout, bool, 0);
MODULE_PARM_DESC(nowayout,
		"Set to 1 to keep watchdog running after device release");
79 80

/* This routine finds load value that will reset system in required timout */
81
static int wdt_setload(struct watchdog_device *wdd, unsigned int timeout)
82
{
83
	struct sp805_wdt *wdt = watchdog_get_drvdata(wdd);
84 85 86 87 88 89 90
	u64 load, rate;

	rate = clk_get_rate(wdt->clk);

	/*
	 * sp805 runs counter with given value twice, after the end of first
	 * counter it gives an interrupt and then starts counter again. If
L
Lucas De Marchi 已提交
91
	 * interrupt already occurred then it resets the system. This is why
92 93 94 95 96 97 98 99 100 101 102 103
	 * load is half of what should be required.
	 */
	load = div_u64(rate, 2) * timeout - 1;

	load = (load > LOAD_MAX) ? LOAD_MAX : load;
	load = (load < LOAD_MIN) ? LOAD_MIN : load;

	spin_lock(&wdt->lock);
	wdt->load_val = load;
	/* roundup timeout to closest positive integer value */
	wdt->timeout = div_u64((load + 1) * 2 + (rate / 2), rate);
	spin_unlock(&wdt->lock);
104 105

	return 0;
106 107 108
}

/* returns number of seconds left for reset to occur */
109
static unsigned int wdt_timeleft(struct watchdog_device *wdd)
110
{
111
	struct sp805_wdt *wdt = watchdog_get_drvdata(wdd);
112 113 114 115 116
	u64 load, rate;

	rate = clk_get_rate(wdt->clk);

	spin_lock(&wdt->lock);
117
	load = readl_relaxed(wdt->base + WDTVALUE);
118 119

	/*If the interrupt is inactive then time left is WDTValue + WDTLoad. */
120
	if (!(readl_relaxed(wdt->base + WDTRIS) & INT_MASK))
121 122 123 124 125 126
		load += wdt->load_val + 1;
	spin_unlock(&wdt->lock);

	return div_u64(load, rate);
}

127
static int wdt_config(struct watchdog_device *wdd, bool ping)
128
{
129 130 131 132
	struct sp805_wdt *wdt = watchdog_get_drvdata(wdd);
	int ret;

	if (!ping) {
133 134 135 136 137 138
		ret = clk_prepare(wdt->clk);
		if (ret) {
			dev_err(&wdt->adev->dev, "clock prepare fail");
			return ret;
		}

139 140 141
		ret = clk_enable(wdt->clk);
		if (ret) {
			dev_err(&wdt->adev->dev, "clock enable fail");
142
			clk_unprepare(wdt->clk);
143 144 145 146
			return ret;
		}
	}

147 148
	spin_lock(&wdt->lock);

149 150
	writel_relaxed(UNLOCK, wdt->base + WDTLOCK);
	writel_relaxed(wdt->load_val, wdt->base + WDTLOAD);
151

152 153 154 155 156
	if (!ping) {
		writel_relaxed(INT_MASK, wdt->base + WDTINTCLR);
		writel_relaxed(INT_ENABLE | RESET_ENABLE, wdt->base +
				WDTCONTROL);
	}
157

158
	writel_relaxed(LOCK, wdt->base + WDTLOCK);
159

160
	/* Flush posted writes. */
161
	readl_relaxed(wdt->base + WDTLOCK);
162
	spin_unlock(&wdt->lock);
163 164

	return 0;
165 166
}

167
static int wdt_ping(struct watchdog_device *wdd)
168
{
169
	return wdt_config(wdd, true);
170 171
}

172 173
/* enables watchdog timers reset */
static int wdt_enable(struct watchdog_device *wdd)
174
{
175
	return wdt_config(wdd, false);
176 177
}

178 179
/* disables watchdog timers reset */
static int wdt_disable(struct watchdog_device *wdd)
180
{
181
	struct sp805_wdt *wdt = watchdog_get_drvdata(wdd);
182

183
	spin_lock(&wdt->lock);
184

185 186 187
	writel_relaxed(UNLOCK, wdt->base + WDTLOCK);
	writel_relaxed(0, wdt->base + WDTCONTROL);
	writel_relaxed(LOCK, wdt->base + WDTLOCK);
188

189 190 191
	/* Flush posted writes. */
	readl_relaxed(wdt->base + WDTLOCK);
	spin_unlock(&wdt->lock);
192 193

	clk_disable(wdt->clk);
194
	clk_unprepare(wdt->clk);
195 196 197 198

	return 0;
}

199 200 201
static const struct watchdog_info wdt_info = {
	.options = WDIOF_MAGICCLOSE | WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING,
	.identity = MODULE_NAME,
202 203
};

204 205 206 207 208 209 210
static const struct watchdog_ops wdt_ops = {
	.owner		= THIS_MODULE,
	.start		= wdt_enable,
	.stop		= wdt_disable,
	.ping		= wdt_ping,
	.set_timeout	= wdt_setload,
	.get_timeleft	= wdt_timeleft,
211 212 213
};

static int __devinit
214
sp805_wdt_probe(struct amba_device *adev, const struct amba_id *id)
215
{
216
	struct sp805_wdt *wdt;
217 218
	int ret = 0;

219 220
	if (!devm_request_mem_region(&adev->dev, adev->res.start,
				resource_size(&adev->res), "sp805_wdt")) {
221 222 223 224 225
		dev_warn(&adev->dev, "Failed to get memory region resource\n");
		ret = -ENOENT;
		goto err;
	}

226
	wdt = devm_kzalloc(&adev->dev, sizeof(*wdt), GFP_KERNEL);
227 228 229
	if (!wdt) {
		dev_warn(&adev->dev, "Kzalloc failed\n");
		ret = -ENOMEM;
230 231 232 233 234 235 236 237 238
		goto err;
	}

	wdt->base = devm_ioremap(&adev->dev, adev->res.start,
			resource_size(&adev->res));
	if (!wdt->base) {
		ret = -ENOMEM;
		dev_warn(&adev->dev, "ioremap fail\n");
		goto err;
239 240 241 242 243 244
	}

	wdt->clk = clk_get(&adev->dev, NULL);
	if (IS_ERR(wdt->clk)) {
		dev_warn(&adev->dev, "Clock not found\n");
		ret = PTR_ERR(wdt->clk);
245
		goto err;
246 247 248
	}

	wdt->adev = adev;
249 250 251
	wdt->wdd.info = &wdt_info;
	wdt->wdd.ops = &wdt_ops;

252
	spin_lock_init(&wdt->lock);
253 254 255
	watchdog_set_nowayout(&wdt->wdd, nowayout);
	watchdog_set_drvdata(&wdt->wdd, wdt);
	wdt_setload(&wdt->wdd, DEFAULT_TIMEOUT);
256

257 258 259 260 261
	ret = watchdog_register_device(&wdt->wdd);
	if (ret) {
		dev_err(&adev->dev, "watchdog_register_device() failed: %d\n",
				ret);
		goto err_register;
262
	}
263
	amba_set_drvdata(adev, wdt);
264 265 266 267

	dev_info(&adev->dev, "registration successful\n");
	return 0;

268
err_register:
269 270 271 272 273 274 275 276
	clk_put(wdt->clk);
err:
	dev_err(&adev->dev, "Probe Failed!!!\n");
	return ret;
}

static int __devexit sp805_wdt_remove(struct amba_device *adev)
{
277 278 279 280 281
	struct sp805_wdt *wdt = amba_get_drvdata(adev);

	watchdog_unregister_device(&wdt->wdd);
	amba_set_drvdata(adev, NULL);
	watchdog_set_drvdata(&wdt->wdd, NULL);
282 283 284 285 286
	clk_put(wdt->clk);

	return 0;
}

287 288 289
#ifdef CONFIG_PM
static int sp805_wdt_suspend(struct device *dev)
{
290 291 292 293
	struct sp805_wdt *wdt = dev_get_drvdata(dev);

	if (watchdog_active(&wdt->wdd))
		return wdt_disable(&wdt->wdd);
294 295 296 297 298 299

	return 0;
}

static int sp805_wdt_resume(struct device *dev)
{
300
	struct sp805_wdt *wdt = dev_get_drvdata(dev);
301

302 303
	if (watchdog_active(&wdt->wdd))
		return wdt_enable(&wdt->wdd);
304

305
	return 0;
306 307 308 309 310 311
}
#endif /* CONFIG_PM */

static SIMPLE_DEV_PM_OPS(sp805_wdt_dev_pm_ops, sp805_wdt_suspend,
		sp805_wdt_resume);

312
static struct amba_id sp805_wdt_ids[] = {
313 314 315 316 317 318 319
	{
		.id	= 0x00141805,
		.mask	= 0x00ffffff,
	},
	{ 0, 0 },
};

320 321
MODULE_DEVICE_TABLE(amba, sp805_wdt_ids);

322 323 324
static struct amba_driver sp805_wdt_driver = {
	.drv = {
		.name	= MODULE_NAME,
325
		.pm	= &sp805_wdt_dev_pm_ops,
326 327 328 329 330 331
	},
	.id_table	= sp805_wdt_ids,
	.probe		= sp805_wdt_probe,
	.remove = __devexit_p(sp805_wdt_remove),
};

332
module_amba_driver(sp805_wdt_driver);
333 334 335 336

MODULE_AUTHOR("Viresh Kumar <viresh.kumar@st.com>");
MODULE_DESCRIPTION("ARM SP805 Watchdog Driver");
MODULE_LICENSE("GPL");