watchdog: davinci: change driver to use WDT core
[deliverable/linux.git] / drivers / watchdog / davinci_wdt.c
CommitLineData
7d831bf5
VB
1/*
2 * drivers/char/watchdog/davinci_wdt.c
3 *
4 * Watchdog driver for DaVinci DM644x/DM646x processors
5 *
f48f3cea 6 * Copyright (C) 2006-2013 Texas Instruments.
7d831bf5
VB
7 *
8 * 2007 (c) MontaVista Software, Inc. This file is licensed under
9 * the terms of the GNU General Public License version 2. This program
10 * is licensed "as is" without any warranty of any kind, whether express
11 * or implied.
12 */
13
14#include <linux/module.h>
15#include <linux/moduleparam.h>
16#include <linux/types.h>
17#include <linux/kernel.h>
7d831bf5
VB
18#include <linux/watchdog.h>
19#include <linux/init.h>
7d831bf5 20#include <linux/platform_device.h>
f78b0a8f 21#include <linux/io.h>
371d3525 22#include <linux/device.h>
9fd868f4 23#include <linux/clk.h>
6330c707 24#include <linux/err.h>
7d831bf5
VB
25
26#define MODULE_NAME "DAVINCI-WDT: "
27
28#define DEFAULT_HEARTBEAT 60
29#define MAX_HEARTBEAT 600 /* really the max margin is 264/27MHz*/
30
31/* Timer register set definition */
32#define PID12 (0x0)
33#define EMUMGT (0x4)
34#define TIM12 (0x10)
35#define TIM34 (0x14)
36#define PRD12 (0x18)
37#define PRD34 (0x1C)
38#define TCR (0x20)
39#define TGCR (0x24)
40#define WDTCR (0x28)
41
42/* TCR bit definitions */
43#define ENAMODE12_DISABLED (0 << 6)
44#define ENAMODE12_ONESHOT (1 << 6)
45#define ENAMODE12_PERIODIC (2 << 6)
46
47/* TGCR bit definitions */
48#define TIM12RS_UNRESET (1 << 0)
49#define TIM34RS_UNRESET (1 << 1)
50#define TIMMODE_64BIT_WDOG (2 << 2)
51
52/* WDTCR bit definitions */
53#define WDEN (1 << 14)
54#define WDFLAG (1 << 15)
55#define WDKEY_SEQ0 (0xa5c6 << 16)
56#define WDKEY_SEQ1 (0xda7e << 16)
57
f48f3cea 58static int heartbeat;
7d831bf5 59static void __iomem *wdt_base;
9fd868f4 60struct clk *wdt_clk;
f48f3cea 61static struct watchdog_device wdt_wdd;
7d831bf5 62
f48f3cea 63static int davinci_wdt_start(struct watchdog_device *wdd)
7d831bf5
VB
64{
65 u32 tgcr;
66 u32 timer_margin;
9fd868f4
KH
67 unsigned long wdt_freq;
68
69 wdt_freq = clk_get_rate(wdt_clk);
7d831bf5 70
7d831bf5 71 /* disable, internal clock source */
371d3525 72 iowrite32(0, wdt_base + TCR);
7d831bf5 73 /* reset timer, set mode to 64-bit watchdog, and unreset */
371d3525 74 iowrite32(0, wdt_base + TGCR);
7d831bf5 75 tgcr = TIMMODE_64BIT_WDOG | TIM12RS_UNRESET | TIM34RS_UNRESET;
371d3525 76 iowrite32(tgcr, wdt_base + TGCR);
7d831bf5 77 /* clear counter regs */
371d3525
KH
78 iowrite32(0, wdt_base + TIM12);
79 iowrite32(0, wdt_base + TIM34);
7d831bf5 80 /* set timeout period */
f48f3cea 81 timer_margin = (((u64)wdd->timeout * wdt_freq) & 0xffffffff);
371d3525 82 iowrite32(timer_margin, wdt_base + PRD12);
f48f3cea 83 timer_margin = (((u64)wdd->timeout * wdt_freq) >> 32);
371d3525 84 iowrite32(timer_margin, wdt_base + PRD34);
7d831bf5 85 /* enable run continuously */
371d3525 86 iowrite32(ENAMODE12_PERIODIC, wdt_base + TCR);
7d831bf5
VB
87 /* Once the WDT is in pre-active state write to
88 * TIM12, TIM34, PRD12, PRD34, TCR, TGCR, WDTCR are
89 * write protected (except for the WDKEY field)
90 */
91 /* put watchdog in pre-active state */
371d3525 92 iowrite32(WDKEY_SEQ0 | WDEN, wdt_base + WDTCR);
7d831bf5 93 /* put watchdog in active state */
371d3525 94 iowrite32(WDKEY_SEQ1 | WDEN, wdt_base + WDTCR);
f48f3cea 95 return 0;
7d831bf5
VB
96}
97
f48f3cea 98static int davinci_wdt_ping(struct watchdog_device *wdd)
7d831bf5 99{
f48f3cea
IK
100 /* put watchdog in service state */
101 iowrite32(WDKEY_SEQ0, wdt_base + WDTCR);
102 /* put watchdog in active state */
103 iowrite32(WDKEY_SEQ1, wdt_base + WDTCR);
104 return 0;
7d831bf5
VB
105}
106
f48f3cea 107static const struct watchdog_info davinci_wdt_info = {
f1a08cc9 108 .options = WDIOF_KEEPALIVEPING,
7d831bf5
VB
109 .identity = "DaVinci Watchdog",
110};
111
f48f3cea
IK
112static const struct watchdog_ops davinci_wdt_ops = {
113 .owner = THIS_MODULE,
114 .start = davinci_wdt_start,
115 .stop = davinci_wdt_ping,
116 .ping = davinci_wdt_ping,
7d831bf5
VB
117};
118
2d991a16 119static int davinci_wdt_probe(struct platform_device *pdev)
7d831bf5 120{
e20880e6 121 int ret = 0;
371d3525 122 struct device *dev = &pdev->dev;
e20880e6 123 struct resource *wdt_mem;
f48f3cea 124 struct watchdog_device *wdd;
7d831bf5 125
362ce5ae 126 wdt_clk = devm_clk_get(dev, NULL);
9fd868f4
KH
127 if (WARN_ON(IS_ERR(wdt_clk)))
128 return PTR_ERR(wdt_clk);
129
5235f57a 130 clk_prepare_enable(wdt_clk);
9fd868f4 131
f48f3cea
IK
132 wdd = &wdt_wdd;
133 wdd->info = &davinci_wdt_info;
134 wdd->ops = &davinci_wdt_ops;
135 wdd->min_timeout = 1;
136 wdd->max_timeout = MAX_HEARTBEAT;
137 wdd->timeout = DEFAULT_HEARTBEAT;
138
139 watchdog_init_timeout(wdd, heartbeat, dev);
140
141 dev_info(dev, "heartbeat %d sec\n", wdd->timeout);
7d831bf5 142
f48f3cea 143 watchdog_set_nowayout(wdd, 1);
7d831bf5 144
f712eacf 145 wdt_mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
6330c707
SK
146 wdt_base = devm_ioremap_resource(dev, wdt_mem);
147 if (IS_ERR(wdt_base))
148 return PTR_ERR(wdt_base);
7d831bf5 149
f48f3cea
IK
150 ret = watchdog_register_device(wdd);
151 if (ret < 0)
152 dev_err(dev, "cannot register watchdog device\n");
7d831bf5
VB
153
154 return ret;
155}
156
4b12b896 157static int davinci_wdt_remove(struct platform_device *pdev)
7d831bf5 158{
f48f3cea 159 watchdog_unregister_device(&wdt_wdd);
5235f57a 160 clk_disable_unprepare(wdt_clk);
9fd868f4 161
7d831bf5
VB
162 return 0;
163}
164
902e2e7d
MK
165static const struct of_device_id davinci_wdt_of_match[] = {
166 { .compatible = "ti,davinci-wdt", },
167 {},
168};
169MODULE_DEVICE_TABLE(of, davinci_wdt_of_match);
170
7d831bf5
VB
171static struct platform_driver platform_wdt_driver = {
172 .driver = {
84374812 173 .name = "davinci-wdt",
f37d193c 174 .owner = THIS_MODULE,
902e2e7d 175 .of_match_table = davinci_wdt_of_match,
7d831bf5
VB
176 },
177 .probe = davinci_wdt_probe,
82268714 178 .remove = davinci_wdt_remove,
7d831bf5
VB
179};
180
b8ec6118 181module_platform_driver(platform_wdt_driver);
7d831bf5
VB
182
183MODULE_AUTHOR("Texas Instruments");
184MODULE_DESCRIPTION("DaVinci Watchdog Driver");
185
186module_param(heartbeat, int, 0);
187MODULE_PARM_DESC(heartbeat,
188 "Watchdog heartbeat period in seconds from 1 to "
189 __MODULE_STRING(MAX_HEARTBEAT) ", default "
190 __MODULE_STRING(DEFAULT_HEARTBEAT));
191
192MODULE_LICENSE("GPL");
84374812 193MODULE_ALIAS("platform:davinci-wdt");
This page took 0.517917 seconds and 5 git commands to generate.