Linux Audio

Check our new training course

Loading...
v5.9
  1// SPDX-License-Identifier: GPL-2.0-only
  2/*
 
 
 
  3 *
  4 *  Copyright (C) 2010 John Crispin <john@phrozen.org>
  5 *  Copyright (C) 2017 Hauke Mehrtens <hauke@hauke-m.de>
  6 *  Based on EP93xx wdt driver
  7 */
  8
 
 
  9#include <linux/module.h>
 10#include <linux/bitops.h>
 
 11#include <linux/watchdog.h>
 12#include <linux/of_platform.h>
 13#include <linux/uaccess.h>
 14#include <linux/clk.h>
 15#include <linux/io.h>
 16#include <linux/regmap.h>
 17#include <linux/mfd/syscon.h>
 18
 19#include <lantiq_soc.h>
 20
 21#define LTQ_XRX_RCU_RST_STAT		0x0014
 22#define LTQ_XRX_RCU_RST_STAT_WDT	BIT(31)
 23
 24/* CPU0 Reset Source Register */
 25#define LTQ_FALCON_SYS1_CPU0RS		0x0060
 26/* reset cause mask */
 27#define LTQ_FALCON_SYS1_CPU0RS_MASK	0x0007
 28#define LTQ_FALCON_SYS1_CPU0RS_WDT	0x02
 29
 30/*
 31 * Section 3.4 of the datasheet
 32 * The password sequence protects the WDT control register from unintended
 33 * write actions, which might cause malfunction of the WDT.
 34 *
 35 * essentially the following two magic passwords need to be written to allow
 36 * IO access to the WDT core
 37 */
 38#define LTQ_WDT_CR_PW1		0x00BE0000
 39#define LTQ_WDT_CR_PW2		0x00DC0000
 40
 41#define LTQ_WDT_CR		0x0		/* watchdog control register */
 42#define  LTQ_WDT_CR_GEN		BIT(31)		/* enable bit */
 43/* Pre-warning limit set to 1/16 of max WDT period */
 44#define  LTQ_WDT_CR_PWL		(0x3 << 26)
 45/* set clock divider to 0x40000 */
 46#define  LTQ_WDT_CR_CLKDIV	(0x3 << 24)
 47#define  LTQ_WDT_CR_PW_MASK	GENMASK(23, 16)	/* Password field */
 48#define  LTQ_WDT_CR_MAX_TIMEOUT	((1 << 16) - 1)	/* The reload field is 16 bit */
 49#define LTQ_WDT_SR		0x8		/* watchdog status register */
 50#define  LTQ_WDT_SR_EN		BIT(31)		/* Enable */
 51#define  LTQ_WDT_SR_VALUE_MASK	GENMASK(15, 0)	/* Timer value */
 52
 
 
 
 
 53#define LTQ_WDT_DIVIDER		0x40000
 
 54
 55static bool nowayout = WATCHDOG_NOWAYOUT;
 56
 57struct ltq_wdt_hw {
 58	int (*bootstatus_get)(struct device *dev);
 59};
 60
 61struct ltq_wdt_priv {
 62	struct watchdog_device wdt;
 63	void __iomem *membase;
 64	unsigned long clk_rate;
 65};
 66
 67static u32 ltq_wdt_r32(struct ltq_wdt_priv *priv, u32 offset)
 68{
 69	return __raw_readl(priv->membase + offset);
 70}
 
 
 
 
 
 
 
 
 71
 72static void ltq_wdt_w32(struct ltq_wdt_priv *priv, u32 val, u32 offset)
 73{
 74	__raw_writel(val, priv->membase + offset);
 
 
 75}
 76
 77static void ltq_wdt_mask(struct ltq_wdt_priv *priv, u32 clear, u32 set,
 78			 u32 offset)
 79{
 80	u32 val = ltq_wdt_r32(priv, offset);
 81
 82	val &= ~(clear);
 83	val |= set;
 84	ltq_wdt_w32(priv, val, offset);
 85}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 86
 87static struct ltq_wdt_priv *ltq_wdt_get_priv(struct watchdog_device *wdt)
 88{
 89	return container_of(wdt, struct ltq_wdt_priv, wdt);
 90}
 91
 92static struct watchdog_info ltq_wdt_info = {
 93	.options = WDIOF_MAGICCLOSE | WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING |
 94		   WDIOF_CARDRESET,
 95	.identity = "ltq_wdt",
 96};
 97
 98static int ltq_wdt_start(struct watchdog_device *wdt)
 99{
100	struct ltq_wdt_priv *priv = ltq_wdt_get_priv(wdt);
101	u32 timeout;
102
103	timeout = wdt->timeout * priv->clk_rate;
104
105	ltq_wdt_mask(priv, LTQ_WDT_CR_PW_MASK, LTQ_WDT_CR_PW1, LTQ_WDT_CR);
106	/* write the second magic plus the configuration and new timeout */
107	ltq_wdt_mask(priv, LTQ_WDT_CR_PW_MASK | LTQ_WDT_CR_MAX_TIMEOUT,
108		     LTQ_WDT_CR_GEN | LTQ_WDT_CR_PWL | LTQ_WDT_CR_CLKDIV |
109		     LTQ_WDT_CR_PW2 | timeout,
110		     LTQ_WDT_CR);
111
112	return 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
113}
114
115static int ltq_wdt_stop(struct watchdog_device *wdt)
 
116{
117	struct ltq_wdt_priv *priv = ltq_wdt_get_priv(wdt);
118
119	ltq_wdt_mask(priv, LTQ_WDT_CR_PW_MASK, LTQ_WDT_CR_PW1, LTQ_WDT_CR);
120	ltq_wdt_mask(priv, LTQ_WDT_CR_GEN | LTQ_WDT_CR_PW_MASK,
121		     LTQ_WDT_CR_PW2, LTQ_WDT_CR);
122
123	return 0;
124}
125
126static int ltq_wdt_ping(struct watchdog_device *wdt)
 
127{
128	struct ltq_wdt_priv *priv = ltq_wdt_get_priv(wdt);
129	u32 timeout;
130
131	timeout = wdt->timeout * priv->clk_rate;
132
133	ltq_wdt_mask(priv, LTQ_WDT_CR_PW_MASK, LTQ_WDT_CR_PW1, LTQ_WDT_CR);
134	/* write the second magic plus the configuration and new timeout */
135	ltq_wdt_mask(priv, LTQ_WDT_CR_PW_MASK | LTQ_WDT_CR_MAX_TIMEOUT,
136		     LTQ_WDT_CR_PW2 | timeout, LTQ_WDT_CR);
137
138	return 0;
139}
140
141static unsigned int ltq_wdt_get_timeleft(struct watchdog_device *wdt)
142{
143	struct ltq_wdt_priv *priv = ltq_wdt_get_priv(wdt);
144	u64 timeout;
145
146	timeout = ltq_wdt_r32(priv, LTQ_WDT_SR) & LTQ_WDT_SR_VALUE_MASK;
147	return do_div(timeout, priv->clk_rate);
148}
149
150static const struct watchdog_ops ltq_wdt_ops = {
151	.owner		= THIS_MODULE,
152	.start		= ltq_wdt_start,
153	.stop		= ltq_wdt_stop,
154	.ping		= ltq_wdt_ping,
155	.get_timeleft	= ltq_wdt_get_timeleft,
 
156};
157
158static int ltq_wdt_xrx_bootstatus_get(struct device *dev)
 
 
 
 
 
 
 
 
159{
 
160	struct regmap *rcu_regmap;
161	u32 val;
162	int err;
163
164	rcu_regmap = syscon_regmap_lookup_by_phandle(dev->of_node, "regmap");
165	if (IS_ERR(rcu_regmap))
166		return PTR_ERR(rcu_regmap);
167
168	err = regmap_read(rcu_regmap, LTQ_XRX_RCU_RST_STAT, &val);
169	if (err)
170		return err;
171
172	if (val & LTQ_XRX_RCU_RST_STAT_WDT)
173		return WDIOF_CARDRESET;
174
175	return 0;
176}
177
178static int ltq_wdt_falcon_bootstatus_get(struct device *dev)
179{
 
180	struct regmap *rcu_regmap;
181	u32 val;
182	int err;
183
184	rcu_regmap = syscon_regmap_lookup_by_phandle(dev->of_node,
185						     "lantiq,rcu");
186	if (IS_ERR(rcu_regmap))
187		return PTR_ERR(rcu_regmap);
188
189	err = regmap_read(rcu_regmap, LTQ_FALCON_SYS1_CPU0RS, &val);
190	if (err)
191		return err;
192
193	if ((val & LTQ_FALCON_SYS1_CPU0RS_MASK) == LTQ_FALCON_SYS1_CPU0RS_WDT)
194		return WDIOF_CARDRESET;
195
196	return 0;
197}
198
199static int ltq_wdt_probe(struct platform_device *pdev)
 
200{
201	struct device *dev = &pdev->dev;
202	struct ltq_wdt_priv *priv;
203	struct watchdog_device *wdt;
204	struct clk *clk;
205	const struct ltq_wdt_hw *ltq_wdt_hw;
206	int ret;
207	u32 status;
208
209	priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
210	if (!priv)
211		return -ENOMEM;
212
213	priv->membase = devm_platform_ioremap_resource(pdev, 0);
214	if (IS_ERR(priv->membase))
215		return PTR_ERR(priv->membase);
 
 
 
216
217	/* we do not need to enable the clock as it is always running */
218	clk = clk_get_io();
219	priv->clk_rate = clk_get_rate(clk) / LTQ_WDT_DIVIDER;
220	if (!priv->clk_rate) {
221		dev_err(dev, "clock rate less than divider %i\n",
222			LTQ_WDT_DIVIDER);
223		return -EINVAL;
224	}
225
226	wdt = &priv->wdt;
227	wdt->info		= &ltq_wdt_info;
228	wdt->ops		= &ltq_wdt_ops;
229	wdt->min_timeout	= 1;
230	wdt->max_timeout	= LTQ_WDT_CR_MAX_TIMEOUT / priv->clk_rate;
231	wdt->timeout		= wdt->max_timeout;
232	wdt->parent		= dev;
233
234	ltq_wdt_hw = of_device_get_match_data(dev);
235	if (ltq_wdt_hw && ltq_wdt_hw->bootstatus_get) {
236		ret = ltq_wdt_hw->bootstatus_get(dev);
237		if (ret >= 0)
238			wdt->bootstatus = ret;
239	}
240
241	watchdog_set_nowayout(wdt, nowayout);
242	watchdog_init_timeout(wdt, 0, dev);
243
244	status = ltq_wdt_r32(priv, LTQ_WDT_SR);
245	if (status & LTQ_WDT_SR_EN) {
246		/*
247		 * If the watchdog is already running overwrite it with our
248		 * new settings. Stop is not needed as the start call will
249		 * replace all settings anyway.
250		 */
251		ltq_wdt_start(wdt);
252		set_bit(WDOG_HW_RUNNING, &wdt->status);
253	}
 
 
254
255	return devm_watchdog_register_device(dev, wdt);
 
256}
257
258static const struct ltq_wdt_hw ltq_wdt_xrx100 = {
259	.bootstatus_get = ltq_wdt_xrx_bootstatus_get,
260};
 
261
262static const struct ltq_wdt_hw ltq_wdt_falcon = {
263	.bootstatus_get = ltq_wdt_falcon_bootstatus_get,
264};
265
266static const struct of_device_id ltq_wdt_match[] = {
267	{ .compatible = "lantiq,wdt", .data = NULL },
268	{ .compatible = "lantiq,xrx100-wdt", .data = &ltq_wdt_xrx100 },
269	{ .compatible = "lantiq,falcon-wdt", .data = &ltq_wdt_falcon },
270	{},
271};
272MODULE_DEVICE_TABLE(of, ltq_wdt_match);
273
274static struct platform_driver ltq_wdt_driver = {
275	.probe = ltq_wdt_probe,
 
276	.driver = {
277		.name = "wdt",
278		.of_match_table = ltq_wdt_match,
279	},
280};
281
282module_platform_driver(ltq_wdt_driver);
283
284module_param(nowayout, bool, 0);
285MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started");
286MODULE_AUTHOR("John Crispin <john@phrozen.org>");
287MODULE_DESCRIPTION("Lantiq SoC Watchdog");
288MODULE_LICENSE("GPL");
v4.17
 
  1/*
  2 *  This program is free software; you can redistribute it and/or modify it
  3 *  under the terms of the GNU General Public License version 2 as published
  4 *  by the Free Software Foundation.
  5 *
  6 *  Copyright (C) 2010 John Crispin <john@phrozen.org>
  7 *  Copyright (C) 2017 Hauke Mehrtens <hauke@hauke-m.de>
  8 *  Based on EP93xx wdt driver
  9 */
 10
 11#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
 12
 13#include <linux/module.h>
 14#include <linux/fs.h>
 15#include <linux/miscdevice.h>
 16#include <linux/watchdog.h>
 17#include <linux/of_platform.h>
 18#include <linux/uaccess.h>
 19#include <linux/clk.h>
 20#include <linux/io.h>
 21#include <linux/regmap.h>
 22#include <linux/mfd/syscon.h>
 23
 24#include <lantiq_soc.h>
 25
 26#define LTQ_XRX_RCU_RST_STAT		0x0014
 27#define LTQ_XRX_RCU_RST_STAT_WDT	BIT(31)
 28
 29/* CPU0 Reset Source Register */
 30#define LTQ_FALCON_SYS1_CPU0RS		0x0060
 31/* reset cause mask */
 32#define LTQ_FALCON_SYS1_CPU0RS_MASK	0x0007
 33#define LTQ_FALCON_SYS1_CPU0RS_WDT	0x02
 34
 35/*
 36 * Section 3.4 of the datasheet
 37 * The password sequence protects the WDT control register from unintended
 38 * write actions, which might cause malfunction of the WDT.
 39 *
 40 * essentially the following two magic passwords need to be written to allow
 41 * IO access to the WDT core
 42 */
 43#define LTQ_WDT_PW1		0x00BE0000
 44#define LTQ_WDT_PW2		0x00DC0000
 45
 46#define LTQ_WDT_CR		0x0	/* watchdog control register */
 47#define LTQ_WDT_SR		0x8	/* watchdog status register */
 
 
 
 
 
 
 
 
 
 48
 49#define LTQ_WDT_SR_EN		(0x1 << 31)	/* enable bit */
 50#define LTQ_WDT_SR_PWD		(0x3 << 26)	/* turn on power */
 51#define LTQ_WDT_SR_CLKDIV	(0x3 << 24)	/* turn on clock and set */
 52						/* divider to 0x40000 */
 53#define LTQ_WDT_DIVIDER		0x40000
 54#define LTQ_MAX_TIMEOUT		((1 << 16) - 1)	/* the reload field is 16 bit */
 55
 56static bool nowayout = WATCHDOG_NOWAYOUT;
 57
 58static void __iomem *ltq_wdt_membase;
 59static unsigned long ltq_io_region_clk_rate;
 
 
 
 
 
 
 
 60
 61static unsigned long ltq_wdt_bootstatus;
 62static unsigned long ltq_wdt_in_use;
 63static int ltq_wdt_timeout = 30;
 64static int ltq_wdt_ok_to_close;
 65
 66static void
 67ltq_wdt_enable(void)
 68{
 69	unsigned long int timeout = ltq_wdt_timeout *
 70			(ltq_io_region_clk_rate / LTQ_WDT_DIVIDER) + 0x1000;
 71	if (timeout > LTQ_MAX_TIMEOUT)
 72		timeout = LTQ_MAX_TIMEOUT;
 73
 74	/* write the first password magic */
 75	ltq_w32(LTQ_WDT_PW1, ltq_wdt_membase + LTQ_WDT_CR);
 76	/* write the second magic plus the configuration and new timeout */
 77	ltq_w32(LTQ_WDT_SR_EN | LTQ_WDT_SR_PWD | LTQ_WDT_SR_CLKDIV |
 78		LTQ_WDT_PW2 | timeout, ltq_wdt_membase + LTQ_WDT_CR);
 79}
 80
 81static void
 82ltq_wdt_disable(void)
 83{
 84	/* write the first password magic */
 85	ltq_w32(LTQ_WDT_PW1, ltq_wdt_membase + LTQ_WDT_CR);
 86	/*
 87	 * write the second password magic with no config
 88	 * this turns the watchdog off
 89	 */
 90	ltq_w32(LTQ_WDT_PW2, ltq_wdt_membase + LTQ_WDT_CR);
 91}
 92
 93static ssize_t
 94ltq_wdt_write(struct file *file, const char __user *data,
 95		size_t len, loff_t *ppos)
 96{
 97	if (len) {
 98		if (!nowayout) {
 99			size_t i;
100
101			ltq_wdt_ok_to_close = 0;
102			for (i = 0; i != len; i++) {
103				char c;
104
105				if (get_user(c, data + i))
106					return -EFAULT;
107				if (c == 'V')
108					ltq_wdt_ok_to_close = 1;
109				else
110					ltq_wdt_ok_to_close = 0;
111			}
112		}
113		ltq_wdt_enable();
114	}
115
116	return len;
 
 
117}
118
119static struct watchdog_info ident = {
120	.options = WDIOF_MAGICCLOSE | WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING |
121			WDIOF_CARDRESET,
122	.identity = "ltq_wdt",
123};
124
125static long
126ltq_wdt_ioctl(struct file *file,
127		unsigned int cmd, unsigned long arg)
128{
129	int ret = -ENOTTY;
130
131	switch (cmd) {
132	case WDIOC_GETSUPPORT:
133		ret = copy_to_user((struct watchdog_info __user *)arg, &ident,
134				sizeof(ident)) ? -EFAULT : 0;
135		break;
136
137	case WDIOC_GETBOOTSTATUS:
138		ret = put_user(ltq_wdt_bootstatus, (int __user *)arg);
139		break;
140
141	case WDIOC_GETSTATUS:
142		ret = put_user(0, (int __user *)arg);
143		break;
144
145	case WDIOC_SETTIMEOUT:
146		ret = get_user(ltq_wdt_timeout, (int __user *)arg);
147		if (!ret)
148			ltq_wdt_enable();
149		/* intentional drop through */
150	case WDIOC_GETTIMEOUT:
151		ret = put_user(ltq_wdt_timeout, (int __user *)arg);
152		break;
153
154	case WDIOC_KEEPALIVE:
155		ltq_wdt_enable();
156		ret = 0;
157		break;
158	}
159	return ret;
160}
161
162static int
163ltq_wdt_open(struct inode *inode, struct file *file)
164{
165	if (test_and_set_bit(0, &ltq_wdt_in_use))
166		return -EBUSY;
167	ltq_wdt_in_use = 1;
168	ltq_wdt_enable();
 
169
170	return nonseekable_open(inode, file);
171}
172
173static int
174ltq_wdt_release(struct inode *inode, struct file *file)
175{
176	if (ltq_wdt_ok_to_close)
177		ltq_wdt_disable();
178	else
179		pr_err("watchdog closed without warning\n");
180	ltq_wdt_ok_to_close = 0;
181	clear_bit(0, &ltq_wdt_in_use);
 
 
 
182
183	return 0;
184}
185
186static const struct file_operations ltq_wdt_fops = {
 
 
 
 
 
 
 
 
 
187	.owner		= THIS_MODULE,
188	.write		= ltq_wdt_write,
189	.unlocked_ioctl	= ltq_wdt_ioctl,
190	.open		= ltq_wdt_open,
191	.release	= ltq_wdt_release,
192	.llseek		= no_llseek,
193};
194
195static struct miscdevice ltq_wdt_miscdev = {
196	.minor	= WATCHDOG_MINOR,
197	.name	= "watchdog",
198	.fops	= &ltq_wdt_fops,
199};
200
201typedef int (*ltq_wdt_bootstatus_set)(struct platform_device *pdev);
202
203static int ltq_wdt_bootstatus_xrx(struct platform_device *pdev)
204{
205	struct device *dev = &pdev->dev;
206	struct regmap *rcu_regmap;
207	u32 val;
208	int err;
209
210	rcu_regmap = syscon_regmap_lookup_by_phandle(dev->of_node, "regmap");
211	if (IS_ERR(rcu_regmap))
212		return PTR_ERR(rcu_regmap);
213
214	err = regmap_read(rcu_regmap, LTQ_XRX_RCU_RST_STAT, &val);
215	if (err)
216		return err;
217
218	if (val & LTQ_XRX_RCU_RST_STAT_WDT)
219		ltq_wdt_bootstatus = WDIOF_CARDRESET;
220
221	return 0;
222}
223
224static int ltq_wdt_bootstatus_falcon(struct platform_device *pdev)
225{
226	struct device *dev = &pdev->dev;
227	struct regmap *rcu_regmap;
228	u32 val;
229	int err;
230
231	rcu_regmap = syscon_regmap_lookup_by_phandle(dev->of_node,
232						     "lantiq,rcu");
233	if (IS_ERR(rcu_regmap))
234		return PTR_ERR(rcu_regmap);
235
236	err = regmap_read(rcu_regmap, LTQ_FALCON_SYS1_CPU0RS, &val);
237	if (err)
238		return err;
239
240	if ((val & LTQ_FALCON_SYS1_CPU0RS_MASK) == LTQ_FALCON_SYS1_CPU0RS_WDT)
241		ltq_wdt_bootstatus = WDIOF_CARDRESET;
242
243	return 0;
244}
245
246static int
247ltq_wdt_probe(struct platform_device *pdev)
248{
249	struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
 
 
250	struct clk *clk;
251	ltq_wdt_bootstatus_set ltq_wdt_bootstatus_set;
252	int ret;
 
253
254	ltq_wdt_membase = devm_ioremap_resource(&pdev->dev, res);
255	if (IS_ERR(ltq_wdt_membase))
256		return PTR_ERR(ltq_wdt_membase);
257
258	ltq_wdt_bootstatus_set = of_device_get_match_data(&pdev->dev);
259	if (ltq_wdt_bootstatus_set) {
260		ret = ltq_wdt_bootstatus_set(pdev);
261		if (ret)
262			return ret;
263	}
264
265	/* we do not need to enable the clock as it is always running */
266	clk = clk_get_io();
267	if (IS_ERR(clk)) {
268		dev_err(&pdev->dev, "Failed to get clock\n");
269		return -ENOENT;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
270	}
271	ltq_io_region_clk_rate = clk_get_rate(clk);
272	clk_put(clk);
273
274	dev_info(&pdev->dev, "Init done\n");
275	return misc_register(&ltq_wdt_miscdev);
276}
277
278static int
279ltq_wdt_remove(struct platform_device *pdev)
280{
281	misc_deregister(&ltq_wdt_miscdev);
282
283	return 0;
284}
 
285
286static const struct of_device_id ltq_wdt_match[] = {
287	{ .compatible = "lantiq,wdt", .data = NULL},
288	{ .compatible = "lantiq,xrx100-wdt", .data = ltq_wdt_bootstatus_xrx },
289	{ .compatible = "lantiq,falcon-wdt", .data = ltq_wdt_bootstatus_falcon },
290	{},
291};
292MODULE_DEVICE_TABLE(of, ltq_wdt_match);
293
294static struct platform_driver ltq_wdt_driver = {
295	.probe = ltq_wdt_probe,
296	.remove = ltq_wdt_remove,
297	.driver = {
298		.name = "wdt",
299		.of_match_table = ltq_wdt_match,
300	},
301};
302
303module_platform_driver(ltq_wdt_driver);
304
305module_param(nowayout, bool, 0);
306MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started");
307MODULE_AUTHOR("John Crispin <john@phrozen.org>");
308MODULE_DESCRIPTION("Lantiq SoC Watchdog");
309MODULE_LICENSE("GPL");