orion_wdt.c 8.4 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
#include <linux/of_device.h>
28

29 30 31 32 33 34
/* 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)

35 36 37
/*
 * Watchdog timer block registers.
 */
38
#define TIMER_CTRL		0x0000
39

40
#define WDT_MAX_CYCLE_COUNT	0xffffffff
41

W
Wim Van Sebroeck 已提交
42
static bool nowayout = WATCHDOG_NOWAYOUT;
43
static int heartbeat = -1;		/* module parameter (seconds) */
44

45 46 47 48 49 50
struct orion_watchdog_data {
	int wdt_counter_offset;
	int wdt_enable_bit;
	int rstout_enable_bit;
};

51 52 53 54 55 56
struct orion_watchdog {
	struct watchdog_device wdt;
	void __iomem *reg;
	void __iomem *rstout;
	unsigned long clk_rate;
	struct clk *clk;
57
	const struct orion_watchdog_data *data;
58
};
59

60
static int orion_wdt_ping(struct watchdog_device *wdt_dev)
61
{
62
	struct orion_watchdog *dev = watchdog_get_drvdata(wdt_dev);
63
	/* Reload watchdog duration */
64 65
	writel(dev->clk_rate * wdt_dev->timeout,
	       dev->reg + dev->data->wdt_counter_offset);
66
	return 0;
67 68
}

69
static int orion_wdt_start(struct watchdog_device *wdt_dev)
70
{
71 72
	struct orion_watchdog *dev = watchdog_get_drvdata(wdt_dev);

73
	/* Set watchdog duration */
74 75
	writel(dev->clk_rate * wdt_dev->timeout,
	       dev->reg + dev->data->wdt_counter_offset);
76 77

	/* Enable watchdog timer */
78 79
	atomic_io_modify(dev->reg + TIMER_CTRL, dev->data->wdt_enable_bit,
						dev->data->wdt_enable_bit);
80 81

	/* Enable reset on watchdog */
82 83
	atomic_io_modify(dev->rstout, dev->data->rstout_enable_bit,
				      dev->data->rstout_enable_bit);
84

85
	return 0;
86 87
}

88
static int orion_wdt_stop(struct watchdog_device *wdt_dev)
89
{
90 91
	struct orion_watchdog *dev = watchdog_get_drvdata(wdt_dev);

92
	/* Disable reset on watchdog */
93
	atomic_io_modify(dev->rstout, dev->data->rstout_enable_bit, 0);
94 95

	/* Disable watchdog timer */
96
	atomic_io_modify(dev->reg + TIMER_CTRL, dev->data->wdt_enable_bit, 0);
97

98
	return 0;
99 100
}

101
static int orion_wdt_enabled(struct orion_watchdog *dev)
102 103 104
{
	bool enabled, running;

105 106
	enabled = readl(dev->rstout) & dev->data->rstout_enable_bit;
	running = readl(dev->reg + TIMER_CTRL) & dev->data->wdt_enable_bit;
107 108 109 110

	return enabled && running;
}

111
static unsigned int orion_wdt_get_timeleft(struct watchdog_device *wdt_dev)
112
{
113
	struct orion_watchdog *dev = watchdog_get_drvdata(wdt_dev);
114
	return readl(dev->reg + dev->data->wdt_counter_offset) / dev->clk_rate;
115 116
}

117 118
static int orion_wdt_set_timeout(struct watchdog_device *wdt_dev,
				 unsigned int timeout)
119
{
120
	wdt_dev->timeout = timeout;
121 122 123
	return 0;
}

124 125 126
static const struct watchdog_info orion_wdt_info = {
	.options = WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING | WDIOF_MAGICCLOSE,
	.identity = "Orion Watchdog",
127 128
};

129 130 131 132 133 134 135
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,
136 137
};

138 139 140 141 142 143
static irqreturn_t orion_wdt_irq(int irq, void *devid)
{
	panic("Watchdog Timeout");
	return IRQ_HANDLED;
}

144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
/*
 * 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);
}

171 172 173 174 175 176 177 178 179 180 181 182 183 184 185
static const struct orion_watchdog_data orion_data = {
	.rstout_enable_bit = BIT(1),
	.wdt_enable_bit = BIT(4),
	.wdt_counter_offset = 0x24,
};

static const struct of_device_id orion_wdt_of_match_table[] = {
	{
		.compatible = "marvell,orion-wdt",
		.data = &orion_data,
	},
	{},
};
MODULE_DEVICE_TABLE(of, orion_wdt_of_match_table);

B
Bill Pemberton 已提交
186
static int orion_wdt_probe(struct platform_device *pdev)
187
{
188
	struct orion_watchdog *dev;
189
	const struct of_device_id *match;
190
	unsigned int wdt_max_duration;	/* (seconds) */
191
	struct resource *res;
192
	int ret, irq;
193

194 195 196 197 198
	dev = devm_kzalloc(&pdev->dev, sizeof(struct orion_watchdog),
			   GFP_KERNEL);
	if (!dev)
		return -ENOMEM;

199 200 201 202 203
	match = of_match_device(orion_wdt_of_match_table, &pdev->dev);
	if (!match)
		/* Default legacy match */
		match = &orion_wdt_of_match_table[0];

204 205 206
	dev->wdt.info = &orion_wdt_info;
	dev->wdt.ops = &orion_wdt_ops;
	dev->wdt.min_timeout = 1;
207
	dev->data = match->data;
208 209 210

	dev->clk = devm_clk_get(&pdev->dev, NULL);
	if (IS_ERR(dev->clk)) {
211
		dev_err(&pdev->dev, "Orion Watchdog missing clock\n");
212
		return PTR_ERR(dev->clk);
213
	}
214
	ret = clk_prepare_enable(dev->clk);
215 216
	if (ret)
		return ret;
217
	dev->clk_rate = clk_get_rate(dev->clk);
218

219
	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
220 221 222 223 224
	if (!res) {
		ret = -ENODEV;
		goto disable_clk;
	}

225 226 227
	dev->reg = devm_ioremap(&pdev->dev, res->start,
			       resource_size(res));
	if (!dev->reg) {
228 229 230
		ret = -ENOMEM;
		goto disable_clk;
	}
231

232 233 234
	dev->rstout = orion_wdt_ioremap_rstout(pdev, res->start &
						     INTERNAL_REGS_MASK);
	if (!dev->rstout) {
235 236 237 238
		ret = -ENODEV;
		goto disable_clk;
	}

239 240 241 242 243
	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);
244

245 246
	platform_set_drvdata(pdev, &dev->wdt);
	watchdog_set_drvdata(&dev->wdt, dev);
247

248 249 250 251 252 253
	/*
	 * 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.
	 */
254 255
	if (!orion_wdt_enabled(dev))
		orion_wdt_stop(&dev->wdt);
256

257 258 259 260 261 262 263 264
	/* 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,
265
				       pdev->name, dev);
266 267 268 269 270 271
		if (ret < 0) {
			dev_err(&pdev->dev, "failed to request IRQ\n");
			goto disable_clk;
		}
	}

272 273
	watchdog_set_nowayout(&dev->wdt, nowayout);
	ret = watchdog_register_device(&dev->wdt);
274 275
	if (ret)
		goto disable_clk;
276

277
	pr_info("Initial timeout %d sec%s\n",
278
		dev->wdt.timeout, nowayout ? ", nowayout" : "");
279
	return 0;
280 281

disable_clk:
282
	clk_disable_unprepare(dev->clk);
283
	return ret;
284 285
}

B
Bill Pemberton 已提交
286
static int orion_wdt_remove(struct platform_device *pdev)
287
{
288 289 290 291 292
	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);
293
	return 0;
294 295
}

296
static void orion_wdt_shutdown(struct platform_device *pdev)
297
{
298 299
	struct watchdog_device *wdt_dev = platform_get_drvdata(pdev);
	orion_wdt_stop(wdt_dev);
300 301
}

302 303
static struct platform_driver orion_wdt_driver = {
	.probe		= orion_wdt_probe,
304
	.remove		= orion_wdt_remove,
305
	.shutdown	= orion_wdt_shutdown,
306 307
	.driver		= {
		.owner	= THIS_MODULE,
308
		.name	= "orion_wdt",
309
		.of_match_table = orion_wdt_of_match_table,
310 311 312
	},
};

313
module_platform_driver(orion_wdt_driver);
314 315

MODULE_AUTHOR("Sylver Bruneau <sylver.bruneau@googlemail.com>");
316
MODULE_DESCRIPTION("Orion Processor Watchdog");
317 318

module_param(heartbeat, int, 0);
319
MODULE_PARM_DESC(heartbeat, "Initial watchdog heartbeat in seconds");
320

W
Wim Van Sebroeck 已提交
321
module_param(nowayout, bool, 0);
322 323
MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default="
				__MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
324 325

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