Linux Audio

Check our new training course

Loading...
v6.2
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * Watchdog driver for the K3 RTI module
  4 *
  5 * (c) Copyright 2019-2020 Texas Instruments Inc.
  6 * All rights reserved.
  7 */
  8
  9#include <linux/clk.h>
 10#include <linux/device.h>
 11#include <linux/err.h>
 12#include <linux/io.h>
 13#include <linux/kernel.h>
 14#include <linux/mod_devicetable.h>
 15#include <linux/module.h>
 16#include <linux/moduleparam.h>
 
 
 17#include <linux/platform_device.h>
 18#include <linux/pm_runtime.h>
 19#include <linux/types.h>
 20#include <linux/watchdog.h>
 21
 22#define DEFAULT_HEARTBEAT 60
 23
 24/* Max heartbeat is calculated at 32kHz source clock */
 25#define MAX_HEARTBEAT	1000
 26
 27/* Timer register set definition */
 28#define RTIDWDCTRL	0x90
 29#define RTIDWDPRLD	0x94
 30#define RTIWDSTATUS	0x98
 31#define RTIWDKEY	0x9c
 32#define RTIDWDCNTR	0xa0
 33#define RTIWWDRXCTRL	0xa4
 34#define RTIWWDSIZECTRL	0xa8
 35
 36#define RTIWWDRX_NMI	0xa
 37
 38#define RTIWWDSIZE_50P		0x50
 39#define RTIWWDSIZE_25P		0x500
 40#define RTIWWDSIZE_12P5		0x5000
 41#define RTIWWDSIZE_6P25		0x50000
 42#define RTIWWDSIZE_3P125	0x500000
 43
 44#define WDENABLE_KEY	0xa98559da
 45
 46#define WDKEY_SEQ0		0xe51a
 47#define WDKEY_SEQ1		0xa35c
 48
 49#define WDT_PRELOAD_SHIFT	13
 50
 51#define WDT_PRELOAD_MAX		0xfff
 52
 53#define DWDST			BIT(1)
 54
 55static int heartbeat = DEFAULT_HEARTBEAT;
 
 
 
 
 
 
 
 56
 57/*
 58 * struct to hold data for each WDT device
 59 * @base - base io address of WD device
 60 * @freq - source clock frequency of WDT
 61 * @wdd  - hold watchdog device as is in WDT core
 62 */
 63struct rti_wdt_device {
 64	void __iomem		*base;
 65	unsigned long		freq;
 66	struct watchdog_device	wdd;
 67};
 68
 69static int rti_wdt_start(struct watchdog_device *wdd)
 70{
 71	u32 timer_margin;
 72	struct rti_wdt_device *wdt = watchdog_get_drvdata(wdd);
 
 
 
 
 
 73
 74	/* set timeout period */
 75	timer_margin = (u64)wdd->timeout * wdt->freq;
 76	timer_margin >>= WDT_PRELOAD_SHIFT;
 77	if (timer_margin > WDT_PRELOAD_MAX)
 78		timer_margin = WDT_PRELOAD_MAX;
 79	writel_relaxed(timer_margin, wdt->base + RTIDWDPRLD);
 80
 81	/*
 82	 * RTI only supports a windowed mode, where the watchdog can only
 83	 * be petted during the open window; not too early or not too late.
 84	 * The HW configuration options only allow for the open window size
 85	 * to be 50% or less than that; we obviouly want to configure the open
 86	 * window as large as possible so we select the 50% option.
 87	 */
 88	wdd->min_hw_heartbeat_ms = 500 * wdd->timeout;
 89
 90	/* Generate NMI when wdt expires */
 91	writel_relaxed(RTIWWDRX_NMI, wdt->base + RTIWWDRXCTRL);
 92
 93	/* Open window size 50%; this is the largest window size available */
 94	writel_relaxed(RTIWWDSIZE_50P, wdt->base + RTIWWDSIZECTRL);
 95
 96	readl_relaxed(wdt->base + RTIWWDSIZECTRL);
 97
 98	/* enable watchdog */
 99	writel_relaxed(WDENABLE_KEY, wdt->base + RTIDWDCTRL);
100	return 0;
101}
102
103static int rti_wdt_ping(struct watchdog_device *wdd)
104{
105	struct rti_wdt_device *wdt = watchdog_get_drvdata(wdd);
106
107	/* put watchdog in service state */
108	writel_relaxed(WDKEY_SEQ0, wdt->base + RTIWDKEY);
109	/* put watchdog in active state */
110	writel_relaxed(WDKEY_SEQ1, wdt->base + RTIWDKEY);
111
112	return 0;
113}
114
115static int rti_wdt_setup_hw_hb(struct watchdog_device *wdd, u32 wsize)
116{
117	/*
118	 * RTI only supports a windowed mode, where the watchdog can only
119	 * be petted during the open window; not too early or not too late.
120	 * The HW configuration options only allow for the open window size
121	 * to be 50% or less than that.
 
 
122	 */
123	switch (wsize) {
124	case RTIWWDSIZE_50P:
125		/* 50% open window => 50% min heartbeat */
126		wdd->min_hw_heartbeat_ms = 500 * heartbeat;
127		break;
128
129	case RTIWWDSIZE_25P:
130		/* 25% open window => 75% min heartbeat */
131		wdd->min_hw_heartbeat_ms = 750 * heartbeat;
132		break;
133
134	case RTIWWDSIZE_12P5:
135		/* 12.5% open window => 87.5% min heartbeat */
136		wdd->min_hw_heartbeat_ms = 875 * heartbeat;
137		break;
138
139	case RTIWWDSIZE_6P25:
140		/* 6.5% open window => 93.5% min heartbeat */
141		wdd->min_hw_heartbeat_ms = 935 * heartbeat;
142		break;
143
144	case RTIWWDSIZE_3P125:
145		/* 3.125% open window => 96.9% min heartbeat */
146		wdd->min_hw_heartbeat_ms = 969 * heartbeat;
147		break;
148
149	default:
150		return -EINVAL;
151	}
152
153	return 0;
154}
155
156static unsigned int rti_wdt_get_timeleft_ms(struct watchdog_device *wdd)
157{
158	u64 timer_counter;
159	u32 val;
160	struct rti_wdt_device *wdt = watchdog_get_drvdata(wdd);
161
162	/* if timeout has occurred then return 0 */
163	val = readl_relaxed(wdt->base + RTIWDSTATUS);
164	if (val & DWDST)
165		return 0;
166
167	timer_counter = readl_relaxed(wdt->base + RTIDWDCNTR);
168
169	timer_counter *= 1000;
170
171	do_div(timer_counter, wdt->freq);
172
173	return timer_counter;
174}
175
176static unsigned int rti_wdt_get_timeleft(struct watchdog_device *wdd)
177{
178	return rti_wdt_get_timeleft_ms(wdd) / 1000;
179}
180
181static const struct watchdog_info rti_wdt_info = {
182	.options = WDIOF_KEEPALIVEPING,
183	.identity = "K3 RTI Watchdog",
184};
185
186static const struct watchdog_ops rti_wdt_ops = {
187	.owner		= THIS_MODULE,
188	.start		= rti_wdt_start,
189	.ping		= rti_wdt_ping,
190	.get_timeleft	= rti_wdt_get_timeleft,
191};
192
193static int rti_wdt_probe(struct platform_device *pdev)
194{
195	int ret = 0;
196	struct device *dev = &pdev->dev;
197	struct watchdog_device *wdd;
198	struct rti_wdt_device *wdt;
199	struct clk *clk;
200	u32 last_ping = 0;
 
 
 
 
 
201
202	wdt = devm_kzalloc(dev, sizeof(*wdt), GFP_KERNEL);
203	if (!wdt)
204		return -ENOMEM;
205
206	clk = clk_get(dev, NULL);
207	if (IS_ERR(clk))
208		return dev_err_probe(dev, PTR_ERR(clk), "failed to get clock\n");
209
210	wdt->freq = clk_get_rate(clk);
211
212	clk_put(clk);
213
214	if (!wdt->freq) {
215		dev_err(dev, "Failed to get fck rate.\n");
216		return -EINVAL;
217	}
218
219	/*
220	 * If watchdog is running at 32k clock, it is not accurate.
221	 * Adjust frequency down in this case so that we don't pet
222	 * the watchdog too often.
223	 */
224	if (wdt->freq < 32768)
225		wdt->freq = wdt->freq * 9 / 10;
226
227	pm_runtime_enable(dev);
228	ret = pm_runtime_resume_and_get(dev);
229	if (ret < 0) {
230		pm_runtime_disable(&pdev->dev);
231		return dev_err_probe(dev, ret, "runtime pm failed\n");
232	}
233
234	platform_set_drvdata(pdev, wdt);
235
236	wdd = &wdt->wdd;
237	wdd->info = &rti_wdt_info;
238	wdd->ops = &rti_wdt_ops;
239	wdd->min_timeout = 1;
240	wdd->max_hw_heartbeat_ms = (WDT_PRELOAD_MAX << WDT_PRELOAD_SHIFT) /
241		wdt->freq * 1000;
 
242	wdd->parent = dev;
243
244	watchdog_set_drvdata(wdd, wdt);
245	watchdog_set_nowayout(wdd, 1);
246	watchdog_set_restart_priority(wdd, 128);
247
248	wdt->base = devm_platform_ioremap_resource(pdev, 0);
249	if (IS_ERR(wdt->base)) {
250		ret = PTR_ERR(wdt->base);
251		goto err_iomap;
252	}
253
254	if (readl(wdt->base + RTIDWDCTRL) == WDENABLE_KEY) {
255		int preset_heartbeat;
256		u32 time_left_ms;
257		u64 heartbeat_ms;
258		u32 wsize;
259
260		set_bit(WDOG_HW_RUNNING, &wdd->status);
261		time_left_ms = rti_wdt_get_timeleft_ms(wdd);
262		heartbeat_ms = readl(wdt->base + RTIDWDPRLD);
263		heartbeat_ms <<= WDT_PRELOAD_SHIFT;
264		heartbeat_ms *= 1000;
265		do_div(heartbeat_ms, wdt->freq);
266		preset_heartbeat = heartbeat_ms + 500;
267		preset_heartbeat /= 1000;
268		if (preset_heartbeat != heartbeat)
269			dev_warn(dev, "watchdog already running, ignoring heartbeat config!\n");
270
271		heartbeat = preset_heartbeat;
272
273		wsize = readl(wdt->base + RTIWWDSIZECTRL);
274		ret = rti_wdt_setup_hw_hb(wdd, wsize);
275		if (ret) {
276			dev_err(dev, "bad window size.\n");
277			goto err_iomap;
278		}
279
280		last_ping = heartbeat_ms - time_left_ms;
281		if (time_left_ms > heartbeat_ms) {
282			dev_warn(dev, "time_left > heartbeat? Assuming last ping just before now.\n");
283			last_ping = 0;
284		}
285	}
286
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
287	watchdog_init_timeout(wdd, heartbeat, dev);
288
289	ret = watchdog_register_device(wdd);
290	if (ret) {
291		dev_err(dev, "cannot register watchdog device\n");
292		goto err_iomap;
293	}
294
295	if (last_ping)
296		watchdog_set_last_hw_keepalive(wdd, last_ping);
297
 
 
 
298	return 0;
299
300err_iomap:
301	pm_runtime_put_sync(&pdev->dev);
302	pm_runtime_disable(&pdev->dev);
303
304	return ret;
305}
306
307static int rti_wdt_remove(struct platform_device *pdev)
308{
309	struct rti_wdt_device *wdt = platform_get_drvdata(pdev);
310
311	watchdog_unregister_device(&wdt->wdd);
312	pm_runtime_put(&pdev->dev);
313	pm_runtime_disable(&pdev->dev);
314
315	return 0;
 
 
 
316}
317
318static const struct of_device_id rti_wdt_of_match[] = {
319	{ .compatible = "ti,j7-rti-wdt", },
320	{},
321};
322MODULE_DEVICE_TABLE(of, rti_wdt_of_match);
323
324static struct platform_driver rti_wdt_driver = {
325	.driver = {
326		.name = "rti-wdt",
327		.of_match_table = rti_wdt_of_match,
328	},
329	.probe = rti_wdt_probe,
330	.remove = rti_wdt_remove,
331};
332
333module_platform_driver(rti_wdt_driver);
334
335MODULE_AUTHOR("Tero Kristo <t-kristo@ti.com>");
336MODULE_DESCRIPTION("K3 RTI Watchdog Driver");
337
338module_param(heartbeat, int, 0);
339MODULE_PARM_DESC(heartbeat,
340		 "Watchdog heartbeat period in seconds from 1 to "
341		 __MODULE_STRING(MAX_HEARTBEAT) ", default "
342		 __MODULE_STRING(DEFAULT_HEARTBEAT));
343
344MODULE_LICENSE("GPL");
345MODULE_ALIAS("platform:rti-wdt");
v6.13.7
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * Watchdog driver for the K3 RTI module
  4 *
  5 * (c) Copyright 2019-2020 Texas Instruments Inc.
  6 * All rights reserved.
  7 */
  8
  9#include <linux/clk.h>
 10#include <linux/device.h>
 11#include <linux/err.h>
 12#include <linux/io.h>
 13#include <linux/kernel.h>
 14#include <linux/mod_devicetable.h>
 15#include <linux/module.h>
 16#include <linux/moduleparam.h>
 17#include <linux/of.h>
 18#include <linux/of_address.h>
 19#include <linux/platform_device.h>
 20#include <linux/pm_runtime.h>
 21#include <linux/types.h>
 22#include <linux/watchdog.h>
 23
 24#define DEFAULT_HEARTBEAT 60
 25
 26/* Max heartbeat is calculated at 32kHz source clock */
 27#define MAX_HEARTBEAT	1000
 28
 29/* Timer register set definition */
 30#define RTIDWDCTRL	0x90
 31#define RTIDWDPRLD	0x94
 32#define RTIWDSTATUS	0x98
 33#define RTIWDKEY	0x9c
 34#define RTIDWDCNTR	0xa0
 35#define RTIWWDRXCTRL	0xa4
 36#define RTIWWDSIZECTRL	0xa8
 37
 38#define RTIWWDRX_NMI	0xa
 39
 40#define RTIWWDSIZE_50P		0x50
 41#define RTIWWDSIZE_25P		0x500
 42#define RTIWWDSIZE_12P5		0x5000
 43#define RTIWWDSIZE_6P25		0x50000
 44#define RTIWWDSIZE_3P125	0x500000
 45
 46#define WDENABLE_KEY	0xa98559da
 47
 48#define WDKEY_SEQ0		0xe51a
 49#define WDKEY_SEQ1		0xa35c
 50
 51#define WDT_PRELOAD_SHIFT	13
 52
 53#define WDT_PRELOAD_MAX		0xfff
 54
 55#define DWDST			BIT(1)
 56
 57#define PON_REASON_SOF_NUM	0xBBBBCCCC
 58#define PON_REASON_MAGIC_NUM	0xDDDDDDDD
 59#define PON_REASON_EOF_NUM	0xCCCCBBBB
 60#define RESERVED_MEM_MIN_SIZE	12
 61
 62#define MAX_HW_ERROR		250
 63
 64static int heartbeat;
 65
 66/*
 67 * struct to hold data for each WDT device
 68 * @base - base io address of WD device
 69 * @freq - source clock frequency of WDT
 70 * @wdd  - hold watchdog device as is in WDT core
 71 */
 72struct rti_wdt_device {
 73	void __iomem		*base;
 74	unsigned long		freq;
 75	struct watchdog_device	wdd;
 76};
 77
 78static int rti_wdt_start(struct watchdog_device *wdd)
 79{
 80	u32 timer_margin;
 81	struct rti_wdt_device *wdt = watchdog_get_drvdata(wdd);
 82	int ret;
 83
 84	ret = pm_runtime_resume_and_get(wdd->parent);
 85	if (ret)
 86		return ret;
 87
 88	/* set timeout period */
 89	timer_margin = (u64)wdd->timeout * wdt->freq;
 90	timer_margin >>= WDT_PRELOAD_SHIFT;
 91	if (timer_margin > WDT_PRELOAD_MAX)
 92		timer_margin = WDT_PRELOAD_MAX;
 93	writel_relaxed(timer_margin, wdt->base + RTIDWDPRLD);
 94
 95	/*
 96	 * RTI only supports a windowed mode, where the watchdog can only
 97	 * be petted during the open window; not too early or not too late.
 98	 * The HW configuration options only allow for the open window size
 99	 * to be 50% or less than that; we obviouly want to configure the open
100	 * window as large as possible so we select the 50% option.
101	 */
102	wdd->min_hw_heartbeat_ms = 520 * wdd->timeout + MAX_HW_ERROR;
103
104	/* Generate NMI when wdt expires */
105	writel_relaxed(RTIWWDRX_NMI, wdt->base + RTIWWDRXCTRL);
106
107	/* Open window size 50%; this is the largest window size available */
108	writel_relaxed(RTIWWDSIZE_50P, wdt->base + RTIWWDSIZECTRL);
109
110	readl_relaxed(wdt->base + RTIWWDSIZECTRL);
111
112	/* enable watchdog */
113	writel_relaxed(WDENABLE_KEY, wdt->base + RTIDWDCTRL);
114	return 0;
115}
116
117static int rti_wdt_ping(struct watchdog_device *wdd)
118{
119	struct rti_wdt_device *wdt = watchdog_get_drvdata(wdd);
120
121	/* put watchdog in service state */
122	writel_relaxed(WDKEY_SEQ0, wdt->base + RTIWDKEY);
123	/* put watchdog in active state */
124	writel_relaxed(WDKEY_SEQ1, wdt->base + RTIWDKEY);
125
126	return 0;
127}
128
129static int rti_wdt_setup_hw_hb(struct watchdog_device *wdd, u32 wsize)
130{
131	/*
132	 * RTI only supports a windowed mode, where the watchdog can only
133	 * be petted during the open window; not too early or not too late.
134	 * The HW configuration options only allow for the open window size
135	 * to be 50% or less than that.
136	 * To avoid any glitches, we accommodate 2% + max hardware error
137	 * safety margin.
138	 */
139	switch (wsize) {
140	case RTIWWDSIZE_50P:
141		/* 50% open window => 52% min heartbeat */
142		wdd->min_hw_heartbeat_ms = 520 * heartbeat + MAX_HW_ERROR;
143		break;
144
145	case RTIWWDSIZE_25P:
146		/* 25% open window => 77% min heartbeat */
147		wdd->min_hw_heartbeat_ms = 770 * heartbeat + MAX_HW_ERROR;
148		break;
149
150	case RTIWWDSIZE_12P5:
151		/* 12.5% open window => 89.5% min heartbeat */
152		wdd->min_hw_heartbeat_ms = 895 * heartbeat + MAX_HW_ERROR;
153		break;
154
155	case RTIWWDSIZE_6P25:
156		/* 6.5% open window => 95.5% min heartbeat */
157		wdd->min_hw_heartbeat_ms = 955 * heartbeat + MAX_HW_ERROR;
158		break;
159
160	case RTIWWDSIZE_3P125:
161		/* 3.125% open window => 98.9% min heartbeat */
162		wdd->min_hw_heartbeat_ms = 989 * heartbeat + MAX_HW_ERROR;
163		break;
164
165	default:
166		return -EINVAL;
167	}
168
169	return 0;
170}
171
172static unsigned int rti_wdt_get_timeleft_ms(struct watchdog_device *wdd)
173{
174	u64 timer_counter;
175	u32 val;
176	struct rti_wdt_device *wdt = watchdog_get_drvdata(wdd);
177
178	/* if timeout has occurred then return 0 */
179	val = readl_relaxed(wdt->base + RTIWDSTATUS);
180	if (val & DWDST)
181		return 0;
182
183	timer_counter = readl_relaxed(wdt->base + RTIDWDCNTR);
184
185	timer_counter *= 1000;
186
187	do_div(timer_counter, wdt->freq);
188
189	return timer_counter;
190}
191
192static unsigned int rti_wdt_get_timeleft(struct watchdog_device *wdd)
193{
194	return rti_wdt_get_timeleft_ms(wdd) / 1000;
195}
196
197static const struct watchdog_info rti_wdt_info = {
198	.options = WDIOF_KEEPALIVEPING,
199	.identity = "K3 RTI Watchdog",
200};
201
202static const struct watchdog_ops rti_wdt_ops = {
203	.owner		= THIS_MODULE,
204	.start		= rti_wdt_start,
205	.ping		= rti_wdt_ping,
206	.get_timeleft	= rti_wdt_get_timeleft,
207};
208
209static int rti_wdt_probe(struct platform_device *pdev)
210{
211	int ret = 0;
212	struct device *dev = &pdev->dev;
213	struct watchdog_device *wdd;
214	struct rti_wdt_device *wdt;
215	struct clk *clk;
216	u32 last_ping = 0;
217	struct device_node *node;
218	u32 reserved_mem_size;
219	struct resource res;
220	u32 *vaddr;
221	u64 paddr;
222
223	wdt = devm_kzalloc(dev, sizeof(*wdt), GFP_KERNEL);
224	if (!wdt)
225		return -ENOMEM;
226
227	clk = clk_get(dev, NULL);
228	if (IS_ERR(clk))
229		return dev_err_probe(dev, PTR_ERR(clk), "failed to get clock\n");
230
231	wdt->freq = clk_get_rate(clk);
232
233	clk_put(clk);
234
235	if (!wdt->freq) {
236		dev_err(dev, "Failed to get fck rate.\n");
237		return -EINVAL;
238	}
239
 
 
 
 
 
 
 
 
240	pm_runtime_enable(dev);
241	ret = pm_runtime_resume_and_get(dev);
242	if (ret < 0) {
243		pm_runtime_disable(&pdev->dev);
244		return dev_err_probe(dev, ret, "runtime pm failed\n");
245	}
246
247	platform_set_drvdata(pdev, wdt);
248
249	wdd = &wdt->wdd;
250	wdd->info = &rti_wdt_info;
251	wdd->ops = &rti_wdt_ops;
252	wdd->min_timeout = 1;
253	wdd->max_hw_heartbeat_ms = (WDT_PRELOAD_MAX << WDT_PRELOAD_SHIFT) /
254		wdt->freq * 1000;
255	wdd->timeout = DEFAULT_HEARTBEAT;
256	wdd->parent = dev;
257
258	watchdog_set_drvdata(wdd, wdt);
259	watchdog_set_nowayout(wdd, 1);
260	watchdog_set_restart_priority(wdd, 128);
261
262	wdt->base = devm_platform_ioremap_resource(pdev, 0);
263	if (IS_ERR(wdt->base)) {
264		ret = PTR_ERR(wdt->base);
265		goto err_iomap;
266	}
267
268	if (readl(wdt->base + RTIDWDCTRL) == WDENABLE_KEY) {
269		int preset_heartbeat;
270		u32 time_left_ms;
271		u64 heartbeat_ms;
272		u32 wsize;
273
274		set_bit(WDOG_HW_RUNNING, &wdd->status);
275		time_left_ms = rti_wdt_get_timeleft_ms(wdd);
276		heartbeat_ms = readl(wdt->base + RTIDWDPRLD);
277		heartbeat_ms <<= WDT_PRELOAD_SHIFT;
278		heartbeat_ms *= 1000;
279		do_div(heartbeat_ms, wdt->freq);
280		preset_heartbeat = heartbeat_ms + 500;
281		preset_heartbeat /= 1000;
282		if (preset_heartbeat != heartbeat)
283			dev_warn(dev, "watchdog already running, ignoring heartbeat config!\n");
284
285		heartbeat = preset_heartbeat;
286
287		wsize = readl(wdt->base + RTIWWDSIZECTRL);
288		ret = rti_wdt_setup_hw_hb(wdd, wsize);
289		if (ret) {
290			dev_err(dev, "bad window size.\n");
291			goto err_iomap;
292		}
293
294		last_ping = heartbeat_ms - time_left_ms;
295		if (time_left_ms > heartbeat_ms) {
296			dev_warn(dev, "time_left > heartbeat? Assuming last ping just before now.\n");
297			last_ping = 0;
298		}
299	}
300
301	node = of_parse_phandle(pdev->dev.of_node, "memory-region", 0);
302	if (node) {
303		ret = of_address_to_resource(node, 0, &res);
304		of_node_put(node);
305		if (ret) {
306			dev_err(dev, "No memory address assigned to the region.\n");
307			goto err_iomap;
308		}
309
310		/*
311		 * If reserved memory is defined for watchdog reset cause.
312		 * Readout the Power-on(PON) reason and pass to bootstatus.
313		 */
314		paddr = res.start;
315		reserved_mem_size = resource_size(&res);
316		if (reserved_mem_size < RESERVED_MEM_MIN_SIZE) {
317			dev_err(dev, "The size of reserved memory is too small.\n");
318			ret = -EINVAL;
319			goto err_iomap;
320		}
321
322		vaddr = memremap(paddr, reserved_mem_size, MEMREMAP_WB);
323		if (!vaddr) {
324			dev_err(dev, "Failed to map memory-region.\n");
325			ret = -ENOMEM;
326			goto err_iomap;
327		}
328
329		if (vaddr[0] == PON_REASON_SOF_NUM &&
330		    vaddr[1] == PON_REASON_MAGIC_NUM &&
331		    vaddr[2] == PON_REASON_EOF_NUM) {
332			wdd->bootstatus |= WDIOF_CARDRESET;
333		}
334		memset(vaddr, 0, reserved_mem_size);
335		memunmap(vaddr);
336	}
337
338	watchdog_init_timeout(wdd, heartbeat, dev);
339
340	ret = watchdog_register_device(wdd);
341	if (ret)
 
342		goto err_iomap;
 
343
344	if (last_ping)
345		watchdog_set_last_hw_keepalive(wdd, last_ping);
346
347	if (!watchdog_hw_running(wdd))
348		pm_runtime_put_sync(&pdev->dev);
349
350	return 0;
351
352err_iomap:
353	pm_runtime_put_sync(&pdev->dev);
354	pm_runtime_disable(&pdev->dev);
355
356	return ret;
357}
358
359static void rti_wdt_remove(struct platform_device *pdev)
360{
361	struct rti_wdt_device *wdt = platform_get_drvdata(pdev);
362
363	watchdog_unregister_device(&wdt->wdd);
 
 
364
365	if (!pm_runtime_suspended(&pdev->dev))
366		pm_runtime_put(&pdev->dev);
367
368	pm_runtime_disable(&pdev->dev);
369}
370
371static const struct of_device_id rti_wdt_of_match[] = {
372	{ .compatible = "ti,j7-rti-wdt", },
373	{},
374};
375MODULE_DEVICE_TABLE(of, rti_wdt_of_match);
376
377static struct platform_driver rti_wdt_driver = {
378	.driver = {
379		.name = "rti-wdt",
380		.of_match_table = rti_wdt_of_match,
381	},
382	.probe = rti_wdt_probe,
383	.remove = rti_wdt_remove,
384};
385
386module_platform_driver(rti_wdt_driver);
387
388MODULE_AUTHOR("Tero Kristo <t-kristo@ti.com>");
389MODULE_DESCRIPTION("K3 RTI Watchdog Driver");
390
391module_param(heartbeat, int, 0);
392MODULE_PARM_DESC(heartbeat,
393		 "Watchdog heartbeat period in seconds from 1 to "
394		 __MODULE_STRING(MAX_HEARTBEAT) ", default "
395		 __MODULE_STRING(DEFAULT_HEARTBEAT));
396
397MODULE_LICENSE("GPL");
398MODULE_ALIAS("platform:rti-wdt");