pinctrl: remove use of __devexit
[deliverable/linux.git] / drivers / watchdog / orion_wdt.c
CommitLineData
22ac9232 1/*
3b937a7d 2 * drivers/watchdog/orion_wdt.c
22ac9232 3 *
3b937a7d 4 * Watchdog driver for Orion/Kirkwood processors
22ac9232
SB
5 *
6 * Author: Sylver Bruneau <sylver.bruneau@googlemail.com>
7 *
8 * This file is licensed under the terms of the GNU General Public
9 * License version 2. This program is licensed "as is" without any
10 * warranty of any kind, whether express or implied.
11 */
12
27c766aa
JP
13#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14
22ac9232
SB
15#include <linux/module.h>
16#include <linux/moduleparam.h>
17#include <linux/types.h>
18#include <linux/kernel.h>
22ac9232 19#include <linux/miscdevice.h>
9e058d4f 20#include <linux/platform_device.h>
22ac9232
SB
21#include <linux/watchdog.h>
22#include <linux/init.h>
22ac9232 23#include <linux/io.h>
6d0f0dfd 24#include <linux/spinlock.h>
4f04be62 25#include <linux/clk.h>
0dd6e484 26#include <linux/err.h>
1e7bad0f 27#include <linux/of.h>
fdd8b079 28#include <mach/bridge-regs.h>
22ac9232
SB
29
30/*
31 * Watchdog timer block registers.
32 */
a855a7ce 33#define TIMER_CTRL 0x0000
0dd6e484 34#define WDT_EN 0x0010
a855a7ce 35#define WDT_VAL 0x0024
22ac9232 36
9e058d4f 37#define WDT_MAX_CYCLE_COUNT 0xffffffff
22ac9232
SB
38#define WDT_IN_USE 0
39#define WDT_OK_TO_CLOSE 1
40
86a1e189 41static bool nowayout = WATCHDOG_NOWAYOUT;
9e058d4f
TR
42static int heartbeat = -1; /* module parameter (seconds) */
43static unsigned int wdt_max_duration; /* (seconds) */
4f04be62 44static struct clk *clk;
9e058d4f 45static unsigned int wdt_tclk;
a855a7ce 46static void __iomem *wdt_reg;
1334f329 47static DEFINE_SPINLOCK(wdt_lock);
22ac9232 48
0dd6e484 49static int orion_wdt_ping(struct watchdog_device *wdt_dev)
df6707b2
TR
50{
51 spin_lock(&wdt_lock);
52
53 /* Reload watchdog duration */
0dd6e484 54 writel(wdt_tclk * wdt_dev->timeout, wdt_reg + WDT_VAL);
df6707b2
TR
55
56 spin_unlock(&wdt_lock);
0dd6e484 57 return 0;
df6707b2
TR
58}
59
0dd6e484 60static int orion_wdt_start(struct watchdog_device *wdt_dev)
22ac9232
SB
61{
62 u32 reg;
63
6d0f0dfd
WVS
64 spin_lock(&wdt_lock);
65
22ac9232 66 /* Set watchdog duration */
0dd6e484 67 writel(wdt_tclk * wdt_dev->timeout, wdt_reg + WDT_VAL);
22ac9232
SB
68
69 /* Clear watchdog timer interrupt */
70 reg = readl(BRIDGE_CAUSE);
71 reg &= ~WDT_INT_REQ;
72 writel(reg, BRIDGE_CAUSE);
73
74 /* Enable watchdog timer */
a855a7ce 75 reg = readl(wdt_reg + TIMER_CTRL);
22ac9232 76 reg |= WDT_EN;
a855a7ce 77 writel(reg, wdt_reg + TIMER_CTRL);
22ac9232
SB
78
79 /* Enable reset on watchdog */
6462c616
TR
80 reg = readl(RSTOUTn_MASK);
81 reg |= WDT_RESET_OUT_EN;
82 writel(reg, RSTOUTn_MASK);
6d0f0dfd
WVS
83
84 spin_unlock(&wdt_lock);
0dd6e484 85 return 0;
22ac9232
SB
86}
87
0dd6e484 88static int orion_wdt_stop(struct watchdog_device *wdt_dev)
22ac9232
SB
89{
90 u32 reg;
91
6d0f0dfd
WVS
92 spin_lock(&wdt_lock);
93
22ac9232 94 /* Disable reset on watchdog */
6462c616
TR
95 reg = readl(RSTOUTn_MASK);
96 reg &= ~WDT_RESET_OUT_EN;
97 writel(reg, RSTOUTn_MASK);
22ac9232
SB
98
99 /* Disable watchdog timer */
a855a7ce 100 reg = readl(wdt_reg + TIMER_CTRL);
22ac9232 101 reg &= ~WDT_EN;
a855a7ce 102 writel(reg, wdt_reg + TIMER_CTRL);
6d0f0dfd
WVS
103
104 spin_unlock(&wdt_lock);
0dd6e484 105 return 0;
6d0f0dfd
WVS
106}
107
0dd6e484 108static unsigned int orion_wdt_get_timeleft(struct watchdog_device *wdt_dev)
6d0f0dfd 109{
0dd6e484
AL
110 unsigned int time_left;
111
6d0f0dfd 112 spin_lock(&wdt_lock);
0dd6e484 113 time_left = readl(wdt_reg + WDT_VAL) / wdt_tclk;
6d0f0dfd 114 spin_unlock(&wdt_lock);
22ac9232 115
0dd6e484 116 return time_left;
22ac9232
SB
117}
118
0dd6e484
AL
119static int orion_wdt_set_timeout(struct watchdog_device *wdt_dev,
120 unsigned int timeout)
22ac9232 121{
0dd6e484 122 wdt_dev->timeout = timeout;
df6707b2
TR
123 return 0;
124}
125
0dd6e484
AL
126static const struct watchdog_info orion_wdt_info = {
127 .options = WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING | WDIOF_MAGICCLOSE,
128 .identity = "Orion Watchdog",
22ac9232
SB
129};
130
0dd6e484
AL
131static const struct watchdog_ops orion_wdt_ops = {
132 .owner = THIS_MODULE,
133 .start = orion_wdt_start,
134 .stop = orion_wdt_stop,
135 .ping = orion_wdt_ping,
136 .set_timeout = orion_wdt_set_timeout,
137 .get_timeleft = orion_wdt_get_timeleft,
22ac9232
SB
138};
139
0dd6e484
AL
140static struct watchdog_device orion_wdt = {
141 .info = &orion_wdt_info,
142 .ops = &orion_wdt_ops,
22ac9232
SB
143};
144
3b937a7d 145static int __devinit orion_wdt_probe(struct platform_device *pdev)
22ac9232 146{
a855a7ce 147 struct resource *res;
22ac9232
SB
148 int ret;
149
0dd6e484 150 clk = devm_clk_get(&pdev->dev, NULL);
4f04be62 151 if (IS_ERR(clk)) {
0dd6e484 152 dev_err(&pdev->dev, "Orion Watchdog missing clock\n");
9e058d4f
TR
153 return -ENODEV;
154 }
4f04be62
AL
155 clk_prepare_enable(clk);
156 wdt_tclk = clk_get_rate(clk);
9e058d4f 157
a855a7ce 158 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
0dd6e484
AL
159 wdt_reg = devm_ioremap(&pdev->dev, res->start, resource_size(res));
160 if (!wdt_reg)
161 return -ENOMEM;
9e058d4f
TR
162
163 wdt_max_duration = WDT_MAX_CYCLE_COUNT / wdt_tclk;
0dd6e484
AL
164
165 if ((heartbeat < 1) || (heartbeat > wdt_max_duration))
9e058d4f 166 heartbeat = wdt_max_duration;
6d0f0dfd 167
0dd6e484
AL
168 orion_wdt.timeout = heartbeat;
169 orion_wdt.min_timeout = 1;
170 orion_wdt.max_timeout = wdt_max_duration;
171
172 watchdog_set_nowayout(&orion_wdt, nowayout);
173 ret = watchdog_register_device(&orion_wdt);
174 if (ret) {
175 clk_disable_unprepare(clk);
9e058d4f 176 return ret;
0dd6e484 177 }
9e058d4f 178
27c766aa
JP
179 pr_info("Initial timeout %d sec%s\n",
180 heartbeat, nowayout ? ", nowayout" : "");
9e058d4f
TR
181 return 0;
182}
183
3b937a7d 184static int __devexit orion_wdt_remove(struct platform_device *pdev)
9e058d4f 185{
0dd6e484 186 watchdog_unregister_device(&orion_wdt);
4f04be62 187 clk_disable_unprepare(clk);
0dd6e484 188 return 0;
22ac9232
SB
189}
190
3b937a7d 191static void orion_wdt_shutdown(struct platform_device *pdev)
df6707b2 192{
0dd6e484 193 orion_wdt_stop(&orion_wdt);
df6707b2
TR
194}
195
1e7bad0f
AL
196static const struct of_device_id orion_wdt_of_match_table[] __devinitdata = {
197 { .compatible = "marvell,orion-wdt", },
198 {},
199};
200MODULE_DEVICE_TABLE(of, orion_wdt_of_match_table);
201
3b937a7d
NP
202static struct platform_driver orion_wdt_driver = {
203 .probe = orion_wdt_probe,
204 .remove = __devexit_p(orion_wdt_remove),
205 .shutdown = orion_wdt_shutdown,
9e058d4f
TR
206 .driver = {
207 .owner = THIS_MODULE,
3b937a7d 208 .name = "orion_wdt",
1e7bad0f 209 .of_match_table = of_match_ptr(orion_wdt_of_match_table),
9e058d4f
TR
210 },
211};
212
b8ec6118 213module_platform_driver(orion_wdt_driver);
22ac9232
SB
214
215MODULE_AUTHOR("Sylver Bruneau <sylver.bruneau@googlemail.com>");
3b937a7d 216MODULE_DESCRIPTION("Orion Processor Watchdog");
22ac9232
SB
217
218module_param(heartbeat, int, 0);
df6707b2 219MODULE_PARM_DESC(heartbeat, "Initial watchdog heartbeat in seconds");
22ac9232 220
86a1e189 221module_param(nowayout, bool, 0);
df6707b2
TR
222MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default="
223 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
22ac9232
SB
224
225MODULE_LICENSE("GPL");
226MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);
This page took 0.311514 seconds and 5 git commands to generate.