blob: a73bea4aa1bae640c2ac6c266e4845c37d7bbb8f [file] [log] [blame]
Sylver Bruneau22ac9232008-06-26 10:47:45 +02001/*
Nicolas Pitre3b937a72009-06-01 13:56:02 -04002 * drivers/watchdog/orion_wdt.c
Sylver Bruneau22ac9232008-06-26 10:47:45 +02003 *
Nicolas Pitre3b937a72009-06-01 13:56:02 -04004 * Watchdog driver for Orion/Kirkwood processors
Sylver Bruneau22ac9232008-06-26 10:47:45 +02005 *
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
Joe Perches27c766a2012-02-15 15:06:19 -080013#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14
Sylver Bruneau22ac9232008-06-26 10:47:45 +020015#include <linux/module.h>
16#include <linux/moduleparam.h>
17#include <linux/types.h>
18#include <linux/kernel.h>
Sylver Bruneau22ac9232008-06-26 10:47:45 +020019#include <linux/miscdevice.h>
Thomas Reitmayr9e058d42009-02-24 14:59:22 -080020#include <linux/platform_device.h>
Sylver Bruneau22ac9232008-06-26 10:47:45 +020021#include <linux/watchdog.h>
22#include <linux/init.h>
Sylver Bruneau22ac9232008-06-26 10:47:45 +020023#include <linux/io.h>
Wim Van Sebroeck6d0f0df2008-10-02 09:32:45 +000024#include <linux/spinlock.h>
Andrew Lunn4f04be62012-03-04 16:57:31 +010025#include <linux/clk.h>
Axel Lin0dd6e482012-03-26 11:14:29 +080026#include <linux/err.h>
Nicolas Pitrefdd8b072009-04-22 20:08:17 +010027#include <mach/bridge-regs.h>
Sylver Bruneau22ac9232008-06-26 10:47:45 +020028
29/*
30 * Watchdog timer block registers.
31 */
Jason Coopera855a7c2012-03-15 00:33:26 +000032#define TIMER_CTRL 0x0000
Axel Lin0dd6e482012-03-26 11:14:29 +080033#define WDT_EN 0x0010
Jason Coopera855a7c2012-03-15 00:33:26 +000034#define WDT_VAL 0x0024
Sylver Bruneau22ac9232008-06-26 10:47:45 +020035
Thomas Reitmayr9e058d42009-02-24 14:59:22 -080036#define WDT_MAX_CYCLE_COUNT 0xffffffff
Sylver Bruneau22ac9232008-06-26 10:47:45 +020037#define WDT_IN_USE 0
38#define WDT_OK_TO_CLOSE 1
39
Wim Van Sebroeck86a1e182012-03-05 16:51:11 +010040static bool nowayout = WATCHDOG_NOWAYOUT;
Thomas Reitmayr9e058d42009-02-24 14:59:22 -080041static int heartbeat = -1; /* module parameter (seconds) */
42static unsigned int wdt_max_duration; /* (seconds) */
Andrew Lunn4f04be62012-03-04 16:57:31 +010043static struct clk *clk;
Thomas Reitmayr9e058d42009-02-24 14:59:22 -080044static unsigned int wdt_tclk;
Jason Coopera855a7c2012-03-15 00:33:26 +000045static void __iomem *wdt_reg;
Axel Lin1334f322011-11-29 13:54:01 +080046static DEFINE_SPINLOCK(wdt_lock);
Sylver Bruneau22ac9232008-06-26 10:47:45 +020047
Axel Lin0dd6e482012-03-26 11:14:29 +080048static int orion_wdt_ping(struct watchdog_device *wdt_dev)
Thomas Reitmayrdf6707b2009-02-20 19:44:59 +010049{
50 spin_lock(&wdt_lock);
51
52 /* Reload watchdog duration */
Axel Lin0dd6e482012-03-26 11:14:29 +080053 writel(wdt_tclk * wdt_dev->timeout, wdt_reg + WDT_VAL);
Thomas Reitmayrdf6707b2009-02-20 19:44:59 +010054
55 spin_unlock(&wdt_lock);
Axel Lin0dd6e482012-03-26 11:14:29 +080056 return 0;
Thomas Reitmayrdf6707b2009-02-20 19:44:59 +010057}
58
Axel Lin0dd6e482012-03-26 11:14:29 +080059static int orion_wdt_start(struct watchdog_device *wdt_dev)
Sylver Bruneau22ac9232008-06-26 10:47:45 +020060{
61 u32 reg;
62
Wim Van Sebroeck6d0f0df2008-10-02 09:32:45 +000063 spin_lock(&wdt_lock);
64
Sylver Bruneau22ac9232008-06-26 10:47:45 +020065 /* Set watchdog duration */
Axel Lin0dd6e482012-03-26 11:14:29 +080066 writel(wdt_tclk * wdt_dev->timeout, wdt_reg + WDT_VAL);
Sylver Bruneau22ac9232008-06-26 10:47:45 +020067
68 /* Clear watchdog timer interrupt */
69 reg = readl(BRIDGE_CAUSE);
70 reg &= ~WDT_INT_REQ;
71 writel(reg, BRIDGE_CAUSE);
72
73 /* Enable watchdog timer */
Jason Coopera855a7c2012-03-15 00:33:26 +000074 reg = readl(wdt_reg + TIMER_CTRL);
Sylver Bruneau22ac9232008-06-26 10:47:45 +020075 reg |= WDT_EN;
Jason Coopera855a7c2012-03-15 00:33:26 +000076 writel(reg, wdt_reg + TIMER_CTRL);
Sylver Bruneau22ac9232008-06-26 10:47:45 +020077
78 /* Enable reset on watchdog */
Thomas Reitmayr6462c612009-06-01 13:38:33 +020079 reg = readl(RSTOUTn_MASK);
80 reg |= WDT_RESET_OUT_EN;
81 writel(reg, RSTOUTn_MASK);
Wim Van Sebroeck6d0f0df2008-10-02 09:32:45 +000082
83 spin_unlock(&wdt_lock);
Axel Lin0dd6e482012-03-26 11:14:29 +080084 return 0;
Sylver Bruneau22ac9232008-06-26 10:47:45 +020085}
86
Axel Lin0dd6e482012-03-26 11:14:29 +080087static int orion_wdt_stop(struct watchdog_device *wdt_dev)
Sylver Bruneau22ac9232008-06-26 10:47:45 +020088{
89 u32 reg;
90
Wim Van Sebroeck6d0f0df2008-10-02 09:32:45 +000091 spin_lock(&wdt_lock);
92
Sylver Bruneau22ac9232008-06-26 10:47:45 +020093 /* Disable reset on watchdog */
Thomas Reitmayr6462c612009-06-01 13:38:33 +020094 reg = readl(RSTOUTn_MASK);
95 reg &= ~WDT_RESET_OUT_EN;
96 writel(reg, RSTOUTn_MASK);
Sylver Bruneau22ac9232008-06-26 10:47:45 +020097
98 /* Disable watchdog timer */
Jason Coopera855a7c2012-03-15 00:33:26 +000099 reg = readl(wdt_reg + TIMER_CTRL);
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200100 reg &= ~WDT_EN;
Jason Coopera855a7c2012-03-15 00:33:26 +0000101 writel(reg, wdt_reg + TIMER_CTRL);
Wim Van Sebroeck6d0f0df2008-10-02 09:32:45 +0000102
103 spin_unlock(&wdt_lock);
Axel Lin0dd6e482012-03-26 11:14:29 +0800104 return 0;
Wim Van Sebroeck6d0f0df2008-10-02 09:32:45 +0000105}
106
Axel Lin0dd6e482012-03-26 11:14:29 +0800107static unsigned int orion_wdt_get_timeleft(struct watchdog_device *wdt_dev)
Wim Van Sebroeck6d0f0df2008-10-02 09:32:45 +0000108{
Axel Lin0dd6e482012-03-26 11:14:29 +0800109 unsigned int time_left;
110
Wim Van Sebroeck6d0f0df2008-10-02 09:32:45 +0000111 spin_lock(&wdt_lock);
Axel Lin0dd6e482012-03-26 11:14:29 +0800112 time_left = readl(wdt_reg + WDT_VAL) / wdt_tclk;
Wim Van Sebroeck6d0f0df2008-10-02 09:32:45 +0000113 spin_unlock(&wdt_lock);
Axel Lin0dd6e482012-03-26 11:14:29 +0800114
115 return time_left;
116}
117
118static int orion_wdt_set_timeout(struct watchdog_device *wdt_dev,
119 unsigned int timeout)
120{
121 wdt_dev->timeout = timeout;
Wim Van Sebroeck6d0f0df2008-10-02 09:32:45 +0000122 return 0;
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200123}
124
Axel Lin0dd6e482012-03-26 11:14:29 +0800125static const struct watchdog_info orion_wdt_info = {
126 .options = WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING | WDIOF_MAGICCLOSE,
127 .identity = "Orion Watchdog",
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200128};
129
Axel Lin0dd6e482012-03-26 11:14:29 +0800130static const struct watchdog_ops orion_wdt_ops = {
131 .owner = THIS_MODULE,
132 .start = orion_wdt_start,
133 .stop = orion_wdt_stop,
134 .ping = orion_wdt_ping,
135 .set_timeout = orion_wdt_set_timeout,
136 .get_timeleft = orion_wdt_get_timeleft,
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200137};
138
Axel Lin0dd6e482012-03-26 11:14:29 +0800139static struct watchdog_device orion_wdt = {
140 .info = &orion_wdt_info,
141 .ops = &orion_wdt_ops,
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200142};
143
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400144static int __devinit orion_wdt_probe(struct platform_device *pdev)
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800145{
Jason Coopera855a7c2012-03-15 00:33:26 +0000146 struct resource *res;
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800147 int ret;
148
Axel Lin0dd6e482012-03-26 11:14:29 +0800149 clk = devm_clk_get(&pdev->dev, NULL);
Andrew Lunn4f04be62012-03-04 16:57:31 +0100150 if (IS_ERR(clk)) {
Axel Lin0dd6e482012-03-26 11:14:29 +0800151 dev_err(&pdev->dev, "Orion Watchdog missing clock\n");
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800152 return -ENODEV;
153 }
Andrew Lunn4f04be62012-03-04 16:57:31 +0100154 clk_prepare_enable(clk);
155 wdt_tclk = clk_get_rate(clk);
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800156
Jason Coopera855a7c2012-03-15 00:33:26 +0000157 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Axel Lin0dd6e482012-03-26 11:14:29 +0800158 wdt_reg = devm_ioremap(&pdev->dev, res->start, resource_size(res));
159 if (!wdt_reg)
160 return -ENOMEM;
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800161
162 wdt_max_duration = WDT_MAX_CYCLE_COUNT / wdt_tclk;
Axel Lin0dd6e482012-03-26 11:14:29 +0800163
164 if ((heartbeat < 1) || (heartbeat > wdt_max_duration))
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800165 heartbeat = wdt_max_duration;
166
Axel Lin0dd6e482012-03-26 11:14:29 +0800167 orion_wdt.timeout = heartbeat;
168 orion_wdt.min_timeout = 1;
169 orion_wdt.max_timeout = wdt_max_duration;
170
171 watchdog_set_nowayout(&orion_wdt, nowayout);
172 ret = watchdog_register_device(&orion_wdt);
173 if (ret) {
174 clk_disable_unprepare(clk);
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800175 return ret;
Axel Lin0dd6e482012-03-26 11:14:29 +0800176 }
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800177
Joe Perches27c766a2012-02-15 15:06:19 -0800178 pr_info("Initial timeout %d sec%s\n",
179 heartbeat, nowayout ? ", nowayout" : "");
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800180 return 0;
181}
182
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400183static int __devexit orion_wdt_remove(struct platform_device *pdev)
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200184{
Axel Lin0dd6e482012-03-26 11:14:29 +0800185 watchdog_unregister_device(&orion_wdt);
Andrew Lunn4f04be62012-03-04 16:57:31 +0100186 clk_disable_unprepare(clk);
Axel Lin0dd6e482012-03-26 11:14:29 +0800187 return 0;
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200188}
189
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400190static void orion_wdt_shutdown(struct platform_device *pdev)
Thomas Reitmayrdf6707b2009-02-20 19:44:59 +0100191{
Axel Lin0dd6e482012-03-26 11:14:29 +0800192 orion_wdt_stop(&orion_wdt);
Thomas Reitmayrdf6707b2009-02-20 19:44:59 +0100193}
194
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400195static struct platform_driver orion_wdt_driver = {
196 .probe = orion_wdt_probe,
197 .remove = __devexit_p(orion_wdt_remove),
198 .shutdown = orion_wdt_shutdown,
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800199 .driver = {
200 .owner = THIS_MODULE,
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400201 .name = "orion_wdt",
Thomas Reitmayr9e058d42009-02-24 14:59:22 -0800202 },
203};
204
Axel Linb8ec6112011-11-29 13:56:27 +0800205module_platform_driver(orion_wdt_driver);
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200206
207MODULE_AUTHOR("Sylver Bruneau <sylver.bruneau@googlemail.com>");
Nicolas Pitre3b937a72009-06-01 13:56:02 -0400208MODULE_DESCRIPTION("Orion Processor Watchdog");
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200209
210module_param(heartbeat, int, 0);
Thomas Reitmayrdf6707b2009-02-20 19:44:59 +0100211MODULE_PARM_DESC(heartbeat, "Initial watchdog heartbeat in seconds");
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200212
Wim Van Sebroeck86a1e182012-03-05 16:51:11 +0100213module_param(nowayout, bool, 0);
Thomas Reitmayrdf6707b2009-02-20 19:44:59 +0100214MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default="
215 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
Sylver Bruneau22ac9232008-06-26 10:47:45 +0200216
217MODULE_LICENSE("GPL");
218MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);