orion_wdt.c 7.7 KB
Newer Older
1
/*
2
 * drivers/watchdog/orion_wdt.c
3
 *
4
 * Watchdog driver for Orion/Kirkwood processors
5 6 7 8 9 10 11 12
 *
 * Author: Sylver Bruneau <sylver.bruneau@googlemail.com>
 *
 * This file is licensed under  the terms of the GNU General Public
 * License version 2. This program is licensed "as is" without any
 * warranty of any kind, whether express or implied.
 */

13 14
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

15 16 17 18
#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/types.h>
#include <linux/kernel.h>
19
#include <linux/platform_device.h>
20 21
#include <linux/watchdog.h>
#include <linux/init.h>
22
#include <linux/interrupt.h>
23
#include <linux/io.h>
24
#include <linux/clk.h>
25
#include <linux/err.h>
26
#include <linux/of.h>
27

28 29 30 31 32 33
/* RSTOUT mask register physical address for Orion5x, Kirkwood and Dove */
#define ORION_RSTOUT_MASK_OFFSET	0x20108

/* Internal registers can be configured at any 1 MiB aligned address */
#define INTERNAL_REGS_MASK		~(SZ_1M - 1)

34 35 36
/*
 * Watchdog timer block registers.
 */
37
#define TIMER_CTRL		0x0000
38
#define WDT_EN			0x0010
39
#define WDT_VAL			0x0024
40

41
#define WDT_MAX_CYCLE_COUNT	0xffffffff
42

43 44
#define WDT_RESET_OUT_EN	BIT(1)

W
Wim Van Sebroeck 已提交
45
static bool nowayout = WATCHDOG_NOWAYOUT;
46
static int heartbeat = -1;		/* module parameter (seconds) */
47 48 49 50 51 52 53 54

struct orion_watchdog {
	struct watchdog_device wdt;
	void __iomem *reg;
	void __iomem *rstout;
	unsigned long clk_rate;
	struct clk *clk;
};
55

56
static int orion_wdt_ping(struct watchdog_device *wdt_dev)
57
{
58
	struct orion_watchdog *dev = watchdog_get_drvdata(wdt_dev);
59
	/* Reload watchdog duration */
60
	writel(dev->clk_rate * wdt_dev->timeout, dev->reg + WDT_VAL);
61
	return 0;
62 63
}

64
static int orion_wdt_start(struct watchdog_device *wdt_dev)
65
{
66 67
	struct orion_watchdog *dev = watchdog_get_drvdata(wdt_dev);

68
	/* Set watchdog duration */
69
	writel(dev->clk_rate * wdt_dev->timeout, dev->reg + WDT_VAL);
70 71

	/* Enable watchdog timer */
72
	atomic_io_modify(dev->reg + TIMER_CTRL, WDT_EN, WDT_EN);
73 74

	/* Enable reset on watchdog */
75 76
	atomic_io_modify(dev->rstout, WDT_RESET_OUT_EN, WDT_RESET_OUT_EN);

77
	return 0;
78 79
}

80
static int orion_wdt_stop(struct watchdog_device *wdt_dev)
81
{
82 83
	struct orion_watchdog *dev = watchdog_get_drvdata(wdt_dev);

84
	/* Disable reset on watchdog */
85
	atomic_io_modify(dev->rstout, WDT_RESET_OUT_EN, 0);
86 87

	/* Disable watchdog timer */
88 89
	atomic_io_modify(dev->reg + TIMER_CTRL, WDT_EN, 0);

90
	return 0;
91 92
}

93
static int orion_wdt_enabled(struct orion_watchdog *dev)
94 95 96
{
	bool enabled, running;

97 98
	enabled = readl(dev->rstout) & WDT_RESET_OUT_EN;
	running = readl(dev->reg + TIMER_CTRL) & WDT_EN;
99 100 101 102

	return enabled && running;
}

103
static unsigned int orion_wdt_get_timeleft(struct watchdog_device *wdt_dev)
104
{
105 106
	struct orion_watchdog *dev = watchdog_get_drvdata(wdt_dev);
	return readl(dev->reg + WDT_VAL) / dev->clk_rate;
107 108
}

109 110
static int orion_wdt_set_timeout(struct watchdog_device *wdt_dev,
				 unsigned int timeout)
111
{
112
	wdt_dev->timeout = timeout;
113 114 115
	return 0;
}

116 117 118
static const struct watchdog_info orion_wdt_info = {
	.options = WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING | WDIOF_MAGICCLOSE,
	.identity = "Orion Watchdog",
119 120
};

121 122 123 124 125 126 127
static const struct watchdog_ops orion_wdt_ops = {
	.owner = THIS_MODULE,
	.start = orion_wdt_start,
	.stop = orion_wdt_stop,
	.ping = orion_wdt_ping,
	.set_timeout = orion_wdt_set_timeout,
	.get_timeleft = orion_wdt_get_timeleft,
128 129
};

130 131 132 133 134 135
static irqreturn_t orion_wdt_irq(int irq, void *devid)
{
	panic("Watchdog Timeout");
	return IRQ_HANDLED;
}

136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
/*
 * The original devicetree binding for this driver specified only
 * one memory resource, so in order to keep DT backwards compatibility
 * we try to fallback to a hardcoded register address, if the resource
 * is missing from the devicetree.
 */
static void __iomem *orion_wdt_ioremap_rstout(struct platform_device *pdev,
					      phys_addr_t internal_regs)
{
	struct resource *res;
	phys_addr_t rstout;

	res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
	if (res)
		return devm_ioremap(&pdev->dev, res->start,
				    resource_size(res));

	/* This workaround works only for "orion-wdt", DT-enabled */
	if (!of_device_is_compatible(pdev->dev.of_node, "marvell,orion-wdt"))
		return NULL;

	rstout = internal_regs + ORION_RSTOUT_MASK_OFFSET;

	WARN(1, FW_BUG "falling back to harcoded RSTOUT reg 0x%x\n", rstout);
	return devm_ioremap(&pdev->dev, rstout, 0x4);
}

B
Bill Pemberton 已提交
163
static int orion_wdt_probe(struct platform_device *pdev)
164
{
165 166
	struct orion_watchdog *dev;
	unsigned int wdt_max_duration;	/* (seconds) */
167
	struct resource *res;
168
	int ret, irq;
169

170 171 172 173 174 175 176 177 178 179 180
	dev = devm_kzalloc(&pdev->dev, sizeof(struct orion_watchdog),
			   GFP_KERNEL);
	if (!dev)
		return -ENOMEM;

	dev->wdt.info = &orion_wdt_info;
	dev->wdt.ops = &orion_wdt_ops;
	dev->wdt.min_timeout = 1;

	dev->clk = devm_clk_get(&pdev->dev, NULL);
	if (IS_ERR(dev->clk)) {
181
		dev_err(&pdev->dev, "Orion Watchdog missing clock\n");
182
		return PTR_ERR(dev->clk);
183
	}
184
	ret = clk_prepare_enable(dev->clk);
185 186
	if (ret)
		return ret;
187
	dev->clk_rate = clk_get_rate(dev->clk);
188

189
	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
190 191 192 193 194
	if (!res) {
		ret = -ENODEV;
		goto disable_clk;
	}

195 196 197
	dev->reg = devm_ioremap(&pdev->dev, res->start,
			       resource_size(res));
	if (!dev->reg) {
198 199 200
		ret = -ENOMEM;
		goto disable_clk;
	}
201

202 203 204
	dev->rstout = orion_wdt_ioremap_rstout(pdev, res->start &
						     INTERNAL_REGS_MASK);
	if (!dev->rstout) {
205 206 207 208
		ret = -ENODEV;
		goto disable_clk;
	}

209 210 211 212 213
	wdt_max_duration = WDT_MAX_CYCLE_COUNT / dev->clk_rate;

	dev->wdt.timeout = wdt_max_duration;
	dev->wdt.max_timeout = wdt_max_duration;
	watchdog_init_timeout(&dev->wdt, heartbeat, &pdev->dev);
214

215 216
	platform_set_drvdata(pdev, &dev->wdt);
	watchdog_set_drvdata(&dev->wdt, dev);
217

218 219 220 221 222 223
	/*
	 * Let's make sure the watchdog is fully stopped, unless it's
	 * explicitly enabled. This may be the case if the module was
	 * removed and re-insterted, or if the bootloader explicitly
	 * set a running watchdog before booting the kernel.
	 */
224 225
	if (!orion_wdt_enabled(dev))
		orion_wdt_stop(&dev->wdt);
226

227 228 229 230 231 232 233 234
	/* Request the IRQ only after the watchdog is disabled */
	irq = platform_get_irq(pdev, 0);
	if (irq > 0) {
		/*
		 * Not all supported platforms specify an interrupt for the
		 * watchdog, so let's make it optional.
		 */
		ret = devm_request_irq(&pdev->dev, irq, orion_wdt_irq, 0,
235
				       pdev->name, dev);
236 237 238 239 240 241
		if (ret < 0) {
			dev_err(&pdev->dev, "failed to request IRQ\n");
			goto disable_clk;
		}
	}

242 243
	watchdog_set_nowayout(&dev->wdt, nowayout);
	ret = watchdog_register_device(&dev->wdt);
244 245
	if (ret)
		goto disable_clk;
246

247
	pr_info("Initial timeout %d sec%s\n",
248
		dev->wdt.timeout, nowayout ? ", nowayout" : "");
249
	return 0;
250 251

disable_clk:
252
	clk_disable_unprepare(dev->clk);
253
	return ret;
254 255
}

B
Bill Pemberton 已提交
256
static int orion_wdt_remove(struct platform_device *pdev)
257
{
258 259 260 261 262
	struct watchdog_device *wdt_dev = platform_get_drvdata(pdev);
	struct orion_watchdog *dev = watchdog_get_drvdata(wdt_dev);

	watchdog_unregister_device(wdt_dev);
	clk_disable_unprepare(dev->clk);
263
	return 0;
264 265
}

266
static void orion_wdt_shutdown(struct platform_device *pdev)
267
{
268 269
	struct watchdog_device *wdt_dev = platform_get_drvdata(pdev);
	orion_wdt_stop(wdt_dev);
270 271
}

272
static const struct of_device_id orion_wdt_of_match_table[] = {
273 274 275 276 277
	{ .compatible = "marvell,orion-wdt", },
	{},
};
MODULE_DEVICE_TABLE(of, orion_wdt_of_match_table);

278 279
static struct platform_driver orion_wdt_driver = {
	.probe		= orion_wdt_probe,
280
	.remove		= orion_wdt_remove,
281
	.shutdown	= orion_wdt_shutdown,
282 283
	.driver		= {
		.owner	= THIS_MODULE,
284
		.name	= "orion_wdt",
285
		.of_match_table = orion_wdt_of_match_table,
286 287 288
	},
};

289
module_platform_driver(orion_wdt_driver);
290 291

MODULE_AUTHOR("Sylver Bruneau <sylver.bruneau@googlemail.com>");
292
MODULE_DESCRIPTION("Orion Processor Watchdog");
293 294

module_param(heartbeat, int, 0);
295
MODULE_PARM_DESC(heartbeat, "Initial watchdog heartbeat in seconds");
296

W
Wim Van Sebroeck 已提交
297
module_param(nowayout, bool, 0);
298 299
MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default="
				__MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
300 301

MODULE_LICENSE("GPL");
302
MODULE_ALIAS("platform:orion_wdt");