Blame view

drivers/watchdog/tegra_wdt.c 6.95 KB
2e62c4988   Marcus Folkesson   watchdog: add SPD...
1
  // SPDX-License-Identifier: GPL-2.0
c33a15974   Andrew Chew   watchdog: Add teg...
2
3
  /*
   * Copyright (c) 2014, NVIDIA CORPORATION.  All rights reserved.
c33a15974   Andrew Chew   watchdog: Add teg...
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
   */
  
  #include <linux/kernel.h>
  #include <linux/module.h>
  #include <linux/interrupt.h>
  #include <linux/io.h>
  #include <linux/of.h>
  #include <linux/platform_device.h>
  #include <linux/watchdog.h>
  
  /* minimum and maximum watchdog trigger timeout, in seconds */
  #define MIN_WDT_TIMEOUT			1
  #define MAX_WDT_TIMEOUT			255
  
  /*
   * Base of the WDT registers, from the timer base address.  There are
   * actually 5 watchdogs that can be configured (by pairing with an available
   * timer), at bases 0x100 + (WDT ID) * 0x20, where WDT ID is 0 through 4.
   * This driver only configures the first watchdog (WDT ID 0).
   */
  #define WDT_BASE			0x100
  #define WDT_ID				0
  
  /*
   * Register base of the timer that's selected for pairing with the watchdog.
   * This driver arbitrarily uses timer 5, which is currently unused by
   * other drivers (in particular, the Tegra clocksource driver).  If this
   * needs to change, take care that the new timer is not used by the
   * clocksource driver.
   */
  #define WDT_TIMER_BASE			0x60
  #define WDT_TIMER_ID			5
  
  /* WDT registers */
  #define WDT_CFG				0x0
  #define WDT_CFG_PERIOD_SHIFT		4
  #define WDT_CFG_PERIOD_MASK		0xff
  #define WDT_CFG_INT_EN			(1 << 12)
  #define WDT_CFG_PMC2CAR_RST_EN		(1 << 15)
  #define WDT_STS				0x4
  #define WDT_STS_COUNT_SHIFT		4
  #define WDT_STS_COUNT_MASK		0xff
  #define WDT_STS_EXP_SHIFT		12
  #define WDT_STS_EXP_MASK		0x3
  #define WDT_CMD				0x8
  #define WDT_CMD_START_COUNTER		(1 << 0)
  #define WDT_CMD_DISABLE_COUNTER		(1 << 1)
  #define WDT_UNLOCK			(0xc)
  #define WDT_UNLOCK_PATTERN		(0xc45a << 0)
  
  /* Timer registers */
  #define TIMER_PTV			0x0
  #define TIMER_EN			(1 << 31)
  #define TIMER_PERIODIC			(1 << 30)
  
  struct tegra_wdt {
  	struct watchdog_device	wdd;
  	void __iomem		*wdt_regs;
  	void __iomem		*tmr_regs;
  };
  
  #define WDT_HEARTBEAT 120
  static int heartbeat = WDT_HEARTBEAT;
  module_param(heartbeat, int, 0);
  MODULE_PARM_DESC(heartbeat,
  	"Watchdog heartbeats in seconds. (default = "
  	__MODULE_STRING(WDT_HEARTBEAT) ")");
  
  static bool nowayout = WATCHDOG_NOWAYOUT;
  module_param(nowayout, bool, 0);
  MODULE_PARM_DESC(nowayout,
  	"Watchdog cannot be stopped once started (default="
  	__MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
  
  static int tegra_wdt_start(struct watchdog_device *wdd)
  {
  	struct tegra_wdt *wdt = watchdog_get_drvdata(wdd);
  	u32 val;
  
  	/*
  	 * This thing has a fixed 1MHz clock.  Normally, we would set the
  	 * period to 1 second by writing 1000000ul, but the watchdog system
  	 * reset actually occurs on the 4th expiration of this counter,
  	 * so we set the period to 1/4 of this amount.
  	 */
  	val = 1000000ul / 4;
  	val |= (TIMER_EN | TIMER_PERIODIC);
  	writel(val, wdt->tmr_regs + TIMER_PTV);
  
  	/*
  	 * Set number of periods and start counter.
  	 *
  	 * Interrupt handler is not required for user space
  	 * WDT accesses, since the caller is responsible to ping the
  	 * WDT to reset the counter before expiration, through ioctls.
  	 */
  	val = WDT_TIMER_ID |
  	      (wdd->timeout << WDT_CFG_PERIOD_SHIFT) |
  	      WDT_CFG_PMC2CAR_RST_EN;
  	writel(val, wdt->wdt_regs + WDT_CFG);
  
  	writel(WDT_CMD_START_COUNTER, wdt->wdt_regs + WDT_CMD);
  
  	return 0;
  }
  
  static int tegra_wdt_stop(struct watchdog_device *wdd)
  {
  	struct tegra_wdt *wdt = watchdog_get_drvdata(wdd);
  
  	writel(WDT_UNLOCK_PATTERN, wdt->wdt_regs + WDT_UNLOCK);
  	writel(WDT_CMD_DISABLE_COUNTER, wdt->wdt_regs + WDT_CMD);
  	writel(0, wdt->tmr_regs + TIMER_PTV);
  
  	return 0;
  }
  
  static int tegra_wdt_ping(struct watchdog_device *wdd)
  {
  	struct tegra_wdt *wdt = watchdog_get_drvdata(wdd);
  
  	writel(WDT_CMD_START_COUNTER, wdt->wdt_regs + WDT_CMD);
  
  	return 0;
  }
  
  static int tegra_wdt_set_timeout(struct watchdog_device *wdd,
  				 unsigned int timeout)
  {
  	wdd->timeout = timeout;
0879eee13   Andrew Chew   watchdog: tegra: ...
134
135
  	if (watchdog_active(wdd)) {
  		tegra_wdt_stop(wdd);
c33a15974   Andrew Chew   watchdog: Add teg...
136
  		return tegra_wdt_start(wdd);
0879eee13   Andrew Chew   watchdog: tegra: ...
137
  	}
c33a15974   Andrew Chew   watchdog: Add teg...
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
163
164
165
166
167
168
169
170
  
  	return 0;
  }
  
  static unsigned int tegra_wdt_get_timeleft(struct watchdog_device *wdd)
  {
  	struct tegra_wdt *wdt = watchdog_get_drvdata(wdd);
  	u32 val;
  	int count;
  	int exp;
  
  	val = readl(wdt->wdt_regs + WDT_STS);
  
  	/* Current countdown (from timeout) */
  	count = (val >> WDT_STS_COUNT_SHIFT) & WDT_STS_COUNT_MASK;
  
  	/* Number of expirations (we are waiting for the 4th expiration) */
  	exp = (val >> WDT_STS_EXP_SHIFT) & WDT_STS_EXP_MASK;
  
  	/*
  	 * The entire thing is divided by 4 because we are ticking down 4 times
  	 * faster due to needing to wait for the 4th expiration.
  	 */
  	return (((3 - exp) * wdd->timeout) + count) / 4;
  }
  
  static const struct watchdog_info tegra_wdt_info = {
  	.options	= WDIOF_SETTIMEOUT |
  			  WDIOF_MAGICCLOSE |
  			  WDIOF_KEEPALIVEPING,
  	.firmware_version = 0,
  	.identity	= "Tegra Watchdog",
  };
7123f253f   Julia Lawall   watchdog: tegra: ...
171
  static const struct watchdog_ops tegra_wdt_ops = {
c33a15974   Andrew Chew   watchdog: Add teg...
172
173
174
175
176
177
178
179
180
181
  	.owner = THIS_MODULE,
  	.start = tegra_wdt_start,
  	.stop = tegra_wdt_stop,
  	.ping = tegra_wdt_ping,
  	.set_timeout = tegra_wdt_set_timeout,
  	.get_timeleft = tegra_wdt_get_timeleft,
  };
  
  static int tegra_wdt_probe(struct platform_device *pdev)
  {
edad75280   Guenter Roeck   watchdog: tegra_w...
182
  	struct device *dev = &pdev->dev;
c33a15974   Andrew Chew   watchdog: Add teg...
183
184
  	struct watchdog_device *wdd;
  	struct tegra_wdt *wdt;
c33a15974   Andrew Chew   watchdog: Add teg...
185
186
187
188
  	void __iomem *regs;
  	int ret;
  
  	/* This is the timer base. */
0f0a6a285   Guenter Roeck   watchdog: Convert...
189
  	regs = devm_platform_ioremap_resource(pdev, 0);
c33a15974   Andrew Chew   watchdog: Add teg...
190
191
192
193
194
195
196
  	if (IS_ERR(regs))
  		return PTR_ERR(regs);
  
  	/*
  	 * Allocate our watchdog driver data, which has the
  	 * struct watchdog_device nested within it.
  	 */
edad75280   Guenter Roeck   watchdog: tegra_w...
197
  	wdt = devm_kzalloc(dev, sizeof(*wdt), GFP_KERNEL);
c33a15974   Andrew Chew   watchdog: Add teg...
198
199
200
201
202
203
204
205
206
207
208
209
210
211
  	if (!wdt)
  		return -ENOMEM;
  
  	/* Initialize struct tegra_wdt. */
  	wdt->wdt_regs = regs + WDT_BASE;
  	wdt->tmr_regs = regs + WDT_TIMER_BASE;
  
  	/* Initialize struct watchdog_device. */
  	wdd = &wdt->wdd;
  	wdd->timeout = heartbeat;
  	wdd->info = &tegra_wdt_info;
  	wdd->ops = &tegra_wdt_ops;
  	wdd->min_timeout = MIN_WDT_TIMEOUT;
  	wdd->max_timeout = MAX_WDT_TIMEOUT;
edad75280   Guenter Roeck   watchdog: tegra_w...
212
  	wdd->parent = dev;
c33a15974   Andrew Chew   watchdog: Add teg...
213
214
215
216
  
  	watchdog_set_drvdata(wdd, wdt);
  
  	watchdog_set_nowayout(wdd, nowayout);
edad75280   Guenter Roeck   watchdog: tegra_w...
217
218
  	watchdog_stop_on_unregister(wdd);
  	ret = devm_watchdog_register_device(dev, wdd);
e290eb8c2   Wolfram Sang   watchdog: tegra_w...
219
  	if (ret)
c33a15974   Andrew Chew   watchdog: Add teg...
220
  		return ret;
c33a15974   Andrew Chew   watchdog: Add teg...
221
222
  
  	platform_set_drvdata(pdev, wdt);
edad75280   Guenter Roeck   watchdog: tegra_w...
223
224
  	dev_info(dev, "initialized (heartbeat = %d sec, nowayout = %d)
  ",
c33a15974   Andrew Chew   watchdog: Add teg...
225
226
227
228
  		 heartbeat, nowayout);
  
  	return 0;
  }
c33a15974   Andrew Chew   watchdog: Add teg...
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
  #ifdef CONFIG_PM_SLEEP
  static int tegra_wdt_runtime_suspend(struct device *dev)
  {
  	struct tegra_wdt *wdt = dev_get_drvdata(dev);
  
  	if (watchdog_active(&wdt->wdd))
  		tegra_wdt_stop(&wdt->wdd);
  
  	return 0;
  }
  
  static int tegra_wdt_runtime_resume(struct device *dev)
  {
  	struct tegra_wdt *wdt = dev_get_drvdata(dev);
  
  	if (watchdog_active(&wdt->wdd))
  		tegra_wdt_start(&wdt->wdd);
  
  	return 0;
  }
  #endif
  
  static const struct of_device_id tegra_wdt_of_match[] = {
  	{ .compatible = "nvidia,tegra30-timer", },
  	{ },
  };
  MODULE_DEVICE_TABLE(of, tegra_wdt_of_match);
  
  static const struct dev_pm_ops tegra_wdt_pm_ops = {
  	SET_SYSTEM_SLEEP_PM_OPS(tegra_wdt_runtime_suspend,
  				tegra_wdt_runtime_resume)
  };
  
  static struct platform_driver tegra_wdt_driver = {
  	.probe		= tegra_wdt_probe,
c33a15974   Andrew Chew   watchdog: Add teg...
264
  	.driver		= {
c33a15974   Andrew Chew   watchdog: Add teg...
265
266
267
268
269
270
271
272
273
274
  		.name	= "tegra-wdt",
  		.pm	= &tegra_wdt_pm_ops,
  		.of_match_table = tegra_wdt_of_match,
  	},
  };
  module_platform_driver(tegra_wdt_driver);
  
  MODULE_AUTHOR("NVIDIA Corporation");
  MODULE_DESCRIPTION("Tegra Watchdog Driver");
  MODULE_LICENSE("GPL v2");