blob: 91e45ca589e61f47e07fb43ce533f65fe2c33ee6 [file] [log] [blame]
Paul Cercueilf865c352010-12-05 21:08:22 +01001/*
2 * Copyright (C) 2010, Paul Cercueil <paul@crapouillou.net>
3 * JZ4740 Watchdog driver
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version.
9 *
10 * You should have received a copy of the GNU General Public License along
11 * with this program; if not, write to the Free Software Foundation, Inc.,
12 * 675 Mass Ave, Cambridge, MA 02139, USA.
13 *
14 */
15
16#include <linux/module.h>
17#include <linux/moduleparam.h>
18#include <linux/types.h>
19#include <linux/kernel.h>
Paul Cercueilf865c352010-12-05 21:08:22 +010020#include <linux/watchdog.h>
Paul Cercueilf865c352010-12-05 21:08:22 +010021#include <linux/platform_device.h>
Paul Cercueilf865c352010-12-05 21:08:22 +010022#include <linux/io.h>
23#include <linux/device.h>
24#include <linux/clk.h>
25#include <linux/slab.h>
Axel Lin85f6df12012-01-26 18:10:45 +080026#include <linux/err.h>
Paul Cercueilf865c352010-12-05 21:08:22 +010027
28#include <asm/mach-jz4740/timer.h>
29
30#define JZ_REG_WDT_TIMER_DATA 0x0
31#define JZ_REG_WDT_COUNTER_ENABLE 0x4
32#define JZ_REG_WDT_TIMER_COUNTER 0x8
33#define JZ_REG_WDT_TIMER_CONTROL 0xC
34
35#define JZ_WDT_CLOCK_PCLK 0x1
36#define JZ_WDT_CLOCK_RTC 0x2
37#define JZ_WDT_CLOCK_EXT 0x4
38
Paul Cercueilf865c352010-12-05 21:08:22 +010039#define JZ_WDT_CLOCK_DIV_SHIFT 3
40
41#define JZ_WDT_CLOCK_DIV_1 (0 << JZ_WDT_CLOCK_DIV_SHIFT)
42#define JZ_WDT_CLOCK_DIV_4 (1 << JZ_WDT_CLOCK_DIV_SHIFT)
43#define JZ_WDT_CLOCK_DIV_16 (2 << JZ_WDT_CLOCK_DIV_SHIFT)
44#define JZ_WDT_CLOCK_DIV_64 (3 << JZ_WDT_CLOCK_DIV_SHIFT)
45#define JZ_WDT_CLOCK_DIV_256 (4 << JZ_WDT_CLOCK_DIV_SHIFT)
46#define JZ_WDT_CLOCK_DIV_1024 (5 << JZ_WDT_CLOCK_DIV_SHIFT)
47
48#define DEFAULT_HEARTBEAT 5
49#define MAX_HEARTBEAT 2048
50
Axel Lin85f6df12012-01-26 18:10:45 +080051static bool nowayout = WATCHDOG_NOWAYOUT;
52module_param(nowayout, bool, 0);
53MODULE_PARM_DESC(nowayout,
54 "Watchdog cannot be stopped once started (default="
55 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
56
57static unsigned int heartbeat = DEFAULT_HEARTBEAT;
58module_param(heartbeat, uint, 0);
59MODULE_PARM_DESC(heartbeat,
60 "Watchdog heartbeat period in seconds from 1 to "
61 __MODULE_STRING(MAX_HEARTBEAT) ", default "
62 __MODULE_STRING(DEFAULT_HEARTBEAT));
63
64struct jz4740_wdt_drvdata {
65 struct watchdog_device wdt;
Paul Cercueilf865c352010-12-05 21:08:22 +010066 void __iomem *base;
Paul Cercueilf865c352010-12-05 21:08:22 +010067 struct clk *rtc_clk;
Axel Lin85f6df12012-01-26 18:10:45 +080068};
Paul Cercueilf865c352010-12-05 21:08:22 +010069
Axel Lin85f6df12012-01-26 18:10:45 +080070static int jz4740_wdt_ping(struct watchdog_device *wdt_dev)
Paul Cercueilf865c352010-12-05 21:08:22 +010071{
Axel Lin85f6df12012-01-26 18:10:45 +080072 struct jz4740_wdt_drvdata *drvdata = watchdog_get_drvdata(wdt_dev);
73
74 writew(0x0, drvdata->base + JZ_REG_WDT_TIMER_COUNTER);
75 return 0;
Paul Cercueilf865c352010-12-05 21:08:22 +010076}
77
Axel Lin85f6df12012-01-26 18:10:45 +080078static int jz4740_wdt_set_timeout(struct watchdog_device *wdt_dev,
79 unsigned int new_timeout)
Paul Cercueilf865c352010-12-05 21:08:22 +010080{
Axel Lin85f6df12012-01-26 18:10:45 +080081 struct jz4740_wdt_drvdata *drvdata = watchdog_get_drvdata(wdt_dev);
Paul Cercueilf865c352010-12-05 21:08:22 +010082 unsigned int rtc_clk_rate;
83 unsigned int timeout_value;
84 unsigned short clock_div = JZ_WDT_CLOCK_DIV_1;
85
Axel Lin85f6df12012-01-26 18:10:45 +080086 rtc_clk_rate = clk_get_rate(drvdata->rtc_clk);
Paul Cercueilf865c352010-12-05 21:08:22 +010087
Axel Lin85f6df12012-01-26 18:10:45 +080088 timeout_value = rtc_clk_rate * new_timeout;
Paul Cercueilf865c352010-12-05 21:08:22 +010089 while (timeout_value > 0xffff) {
90 if (clock_div == JZ_WDT_CLOCK_DIV_1024) {
91 /* Requested timeout too high;
92 * use highest possible value. */
93 timeout_value = 0xffff;
94 break;
95 }
96 timeout_value >>= 2;
97 clock_div += (1 << JZ_WDT_CLOCK_DIV_SHIFT);
98 }
99
Axel Lin85f6df12012-01-26 18:10:45 +0800100 writeb(0x0, drvdata->base + JZ_REG_WDT_COUNTER_ENABLE);
101 writew(clock_div, drvdata->base + JZ_REG_WDT_TIMER_CONTROL);
Paul Cercueilf865c352010-12-05 21:08:22 +0100102
Axel Lin85f6df12012-01-26 18:10:45 +0800103 writew((u16)timeout_value, drvdata->base + JZ_REG_WDT_TIMER_DATA);
104 writew(0x0, drvdata->base + JZ_REG_WDT_TIMER_COUNTER);
Paul Cercueilf865c352010-12-05 21:08:22 +0100105 writew(clock_div | JZ_WDT_CLOCK_RTC,
Axel Lin85f6df12012-01-26 18:10:45 +0800106 drvdata->base + JZ_REG_WDT_TIMER_CONTROL);
Paul Cercueilf865c352010-12-05 21:08:22 +0100107
Axel Lin85f6df12012-01-26 18:10:45 +0800108 writeb(0x1, drvdata->base + JZ_REG_WDT_COUNTER_ENABLE);
Paul Cercueilf865c352010-12-05 21:08:22 +0100109
Wim Van Sebroeck0197c1c2012-02-29 20:20:58 +0100110 wdt_dev->timeout = new_timeout;
Paul Cercueilf865c352010-12-05 21:08:22 +0100111 return 0;
112}
113
Axel Lin85f6df12012-01-26 18:10:45 +0800114static int jz4740_wdt_start(struct watchdog_device *wdt_dev)
115{
116 jz4740_timer_enable_watchdog();
117 jz4740_wdt_set_timeout(wdt_dev, wdt_dev->timeout);
118
119 return 0;
120}
121
122static int jz4740_wdt_stop(struct watchdog_device *wdt_dev)
123{
124 struct jz4740_wdt_drvdata *drvdata = watchdog_get_drvdata(wdt_dev);
125
126 jz4740_timer_disable_watchdog();
127 writeb(0x0, drvdata->base + JZ_REG_WDT_COUNTER_ENABLE);
128
129 return 0;
130}
131
132static const struct watchdog_info jz4740_wdt_info = {
133 .options = WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING | WDIOF_MAGICCLOSE,
134 .identity = "jz4740 Watchdog",
Paul Cercueilf865c352010-12-05 21:08:22 +0100135};
136
Axel Lin85f6df12012-01-26 18:10:45 +0800137static const struct watchdog_ops jz4740_wdt_ops = {
138 .owner = THIS_MODULE,
139 .start = jz4740_wdt_start,
140 .stop = jz4740_wdt_stop,
141 .ping = jz4740_wdt_ping,
142 .set_timeout = jz4740_wdt_set_timeout,
Paul Cercueilf865c352010-12-05 21:08:22 +0100143};
144
Bill Pemberton2d991a12012-11-19 13:21:41 -0500145static int jz4740_wdt_probe(struct platform_device *pdev)
Paul Cercueilf865c352010-12-05 21:08:22 +0100146{
Axel Lin85f6df12012-01-26 18:10:45 +0800147 struct jz4740_wdt_drvdata *drvdata;
148 struct watchdog_device *jz4740_wdt;
149 struct resource *res;
150 int ret;
151
152 drvdata = devm_kzalloc(&pdev->dev, sizeof(struct jz4740_wdt_drvdata),
153 GFP_KERNEL);
154 if (!drvdata) {
155 dev_err(&pdev->dev, "Unable to alloacate watchdog device\n");
156 return -ENOMEM;
157 }
158
159 if (heartbeat < 1 || heartbeat > MAX_HEARTBEAT)
160 heartbeat = DEFAULT_HEARTBEAT;
161
162 jz4740_wdt = &drvdata->wdt;
163 jz4740_wdt->info = &jz4740_wdt_info;
164 jz4740_wdt->ops = &jz4740_wdt_ops;
165 jz4740_wdt->timeout = heartbeat;
166 jz4740_wdt->min_timeout = 1;
167 jz4740_wdt->max_timeout = MAX_HEARTBEAT;
168 watchdog_set_nowayout(jz4740_wdt, nowayout);
169 watchdog_set_drvdata(jz4740_wdt, drvdata);
Paul Cercueilf865c352010-12-05 21:08:22 +0100170
171 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Thierry Reding4c271bb2013-01-21 11:09:25 +0100172 drvdata->base = devm_ioremap_resource(&pdev->dev, res);
173 if (IS_ERR(drvdata->base)) {
174 ret = PTR_ERR(drvdata->base);
Axel Lin85f6df12012-01-26 18:10:45 +0800175 goto err_out;
Paul Cercueilf865c352010-12-05 21:08:22 +0100176 }
177
Lars-Peter Clausen5f314972013-05-12 20:04:03 +0200178 drvdata->rtc_clk = clk_get(&pdev->dev, "rtc");
Axel Lin85f6df12012-01-26 18:10:45 +0800179 if (IS_ERR(drvdata->rtc_clk)) {
180 dev_err(&pdev->dev, "cannot find RTC clock\n");
181 ret = PTR_ERR(drvdata->rtc_clk);
182 goto err_out;
Paul Cercueilf865c352010-12-05 21:08:22 +0100183 }
184
Axel Lin85f6df12012-01-26 18:10:45 +0800185 ret = watchdog_register_device(&drvdata->wdt);
186 if (ret < 0)
Paul Cercueilf865c352010-12-05 21:08:22 +0100187 goto err_disable_clk;
Paul Cercueilf865c352010-12-05 21:08:22 +0100188
Axel Lin85f6df12012-01-26 18:10:45 +0800189 platform_set_drvdata(pdev, drvdata);
Paul Cercueilf865c352010-12-05 21:08:22 +0100190 return 0;
191
192err_disable_clk:
Axel Lin85f6df12012-01-26 18:10:45 +0800193 clk_put(drvdata->rtc_clk);
194err_out:
Paul Cercueilf865c352010-12-05 21:08:22 +0100195 return ret;
196}
197
Bill Pemberton4b12b892012-11-19 13:26:24 -0500198static int jz4740_wdt_remove(struct platform_device *pdev)
Paul Cercueilf865c352010-12-05 21:08:22 +0100199{
Axel Lin85f6df12012-01-26 18:10:45 +0800200 struct jz4740_wdt_drvdata *drvdata = platform_get_drvdata(pdev);
Paul Cercueilf865c352010-12-05 21:08:22 +0100201
Axel Lin85f6df12012-01-26 18:10:45 +0800202 jz4740_wdt_stop(&drvdata->wdt);
203 watchdog_unregister_device(&drvdata->wdt);
204 clk_put(drvdata->rtc_clk);
Paul Cercueilf865c352010-12-05 21:08:22 +0100205
206 return 0;
207}
208
Paul Cercueilf865c352010-12-05 21:08:22 +0100209static struct platform_driver jz4740_wdt_driver = {
210 .probe = jz4740_wdt_probe,
Bill Pemberton82268712012-11-19 13:21:12 -0500211 .remove = jz4740_wdt_remove,
Paul Cercueilf865c352010-12-05 21:08:22 +0100212 .driver = {
213 .name = "jz4740-wdt",
214 .owner = THIS_MODULE,
215 },
216};
217
Axel Linb8ec6112011-11-29 13:56:27 +0800218module_platform_driver(jz4740_wdt_driver);
Paul Cercueilf865c352010-12-05 21:08:22 +0100219
220MODULE_AUTHOR("Paul Cercueil <paul@crapouillou.net>");
221MODULE_DESCRIPTION("jz4740 Watchdog Driver");
Paul Cercueilf865c352010-12-05 21:08:22 +0100222MODULE_LICENSE("GPL");
Paul Cercueilf865c352010-12-05 21:08:22 +0100223MODULE_ALIAS("platform:jz4740-wdt");