Vladimir Barinov | 7d831bf | 2007-06-12 18:09:50 +0400 | [diff] [blame] | 1 | /* |
| 2 | * drivers/char/watchdog/davinci_wdt.c |
| 3 | * |
| 4 | * Watchdog driver for DaVinci DM644x/DM646x processors |
| 5 | * |
Ivan Khoronzhuk | f48f3ce | 2013-12-05 13:26:24 +0200 | [diff] [blame] | 6 | * Copyright (C) 2006-2013 Texas Instruments. |
Vladimir Barinov | 7d831bf | 2007-06-12 18:09:50 +0400 | [diff] [blame] | 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> |
Vladimir Barinov | 7d831bf | 2007-06-12 18:09:50 +0400 | [diff] [blame] | 18 | #include <linux/watchdog.h> |
Vladimir Barinov | 7d831bf | 2007-06-12 18:09:50 +0400 | [diff] [blame] | 19 | #include <linux/platform_device.h> |
Alan Cox | f78b0a8 | 2008-05-19 14:05:30 +0100 | [diff] [blame] | 20 | #include <linux/io.h> |
Kevin Hilman | 371d352 | 2009-01-29 14:14:30 -0800 | [diff] [blame] | 21 | #include <linux/device.h> |
Kevin Hilman | 9fd868f | 2009-02-10 20:30:37 -0800 | [diff] [blame] | 22 | #include <linux/clk.h> |
Sachin Kamat | 6330c70 | 2013-03-04 10:36:41 +0530 | [diff] [blame] | 23 | #include <linux/err.h> |
Vladimir Barinov | 7d831bf | 2007-06-12 18:09:50 +0400 | [diff] [blame] | 24 | |
| 25 | #define MODULE_NAME "DAVINCI-WDT: " |
| 26 | |
| 27 | #define DEFAULT_HEARTBEAT 60 |
| 28 | #define MAX_HEARTBEAT 600 /* really the max margin is 264/27MHz*/ |
| 29 | |
| 30 | /* Timer register set definition */ |
| 31 | #define PID12 (0x0) |
| 32 | #define EMUMGT (0x4) |
| 33 | #define TIM12 (0x10) |
| 34 | #define TIM34 (0x14) |
| 35 | #define PRD12 (0x18) |
| 36 | #define PRD34 (0x1C) |
| 37 | #define TCR (0x20) |
| 38 | #define TGCR (0x24) |
| 39 | #define WDTCR (0x28) |
| 40 | |
| 41 | /* TCR bit definitions */ |
| 42 | #define ENAMODE12_DISABLED (0 << 6) |
| 43 | #define ENAMODE12_ONESHOT (1 << 6) |
| 44 | #define ENAMODE12_PERIODIC (2 << 6) |
| 45 | |
| 46 | /* TGCR bit definitions */ |
| 47 | #define TIM12RS_UNRESET (1 << 0) |
| 48 | #define TIM34RS_UNRESET (1 << 1) |
| 49 | #define TIMMODE_64BIT_WDOG (2 << 2) |
| 50 | |
| 51 | /* WDTCR bit definitions */ |
| 52 | #define WDEN (1 << 14) |
| 53 | #define WDFLAG (1 << 15) |
| 54 | #define WDKEY_SEQ0 (0xa5c6 << 16) |
| 55 | #define WDKEY_SEQ1 (0xda7e << 16) |
| 56 | |
Ivan Khoronzhuk | f48f3ce | 2013-12-05 13:26:24 +0200 | [diff] [blame] | 57 | static int heartbeat; |
Ivan Khoronzhuk | 6d9a6cf | 2013-12-04 21:39:27 +0200 | [diff] [blame] | 58 | |
| 59 | /* |
| 60 | * struct to hold data for each WDT device |
| 61 | * @base - base io address of WD device |
| 62 | * @clk - source clock of WDT |
| 63 | * @wdd - hold watchdog device as is in WDT core |
| 64 | */ |
| 65 | struct davinci_wdt_device { |
| 66 | void __iomem *base; |
| 67 | struct clk *clk; |
| 68 | struct watchdog_device wdd; |
| 69 | }; |
Vladimir Barinov | 7d831bf | 2007-06-12 18:09:50 +0400 | [diff] [blame] | 70 | |
Ivan Khoronzhuk | f48f3ce | 2013-12-05 13:26:24 +0200 | [diff] [blame] | 71 | static int davinci_wdt_start(struct watchdog_device *wdd) |
Vladimir Barinov | 7d831bf | 2007-06-12 18:09:50 +0400 | [diff] [blame] | 72 | { |
| 73 | u32 tgcr; |
| 74 | u32 timer_margin; |
Kevin Hilman | 9fd868f | 2009-02-10 20:30:37 -0800 | [diff] [blame] | 75 | unsigned long wdt_freq; |
Ivan Khoronzhuk | 6d9a6cf | 2013-12-04 21:39:27 +0200 | [diff] [blame] | 76 | struct davinci_wdt_device *davinci_wdt = watchdog_get_drvdata(wdd); |
Kevin Hilman | 9fd868f | 2009-02-10 20:30:37 -0800 | [diff] [blame] | 77 | |
Ivan Khoronzhuk | 6d9a6cf | 2013-12-04 21:39:27 +0200 | [diff] [blame] | 78 | wdt_freq = clk_get_rate(davinci_wdt->clk); |
Vladimir Barinov | 7d831bf | 2007-06-12 18:09:50 +0400 | [diff] [blame] | 79 | |
Vladimir Barinov | 7d831bf | 2007-06-12 18:09:50 +0400 | [diff] [blame] | 80 | /* disable, internal clock source */ |
Ivan Khoronzhuk | 6d9a6cf | 2013-12-04 21:39:27 +0200 | [diff] [blame] | 81 | iowrite32(0, davinci_wdt->base + TCR); |
Vladimir Barinov | 7d831bf | 2007-06-12 18:09:50 +0400 | [diff] [blame] | 82 | /* reset timer, set mode to 64-bit watchdog, and unreset */ |
Ivan Khoronzhuk | 6d9a6cf | 2013-12-04 21:39:27 +0200 | [diff] [blame] | 83 | iowrite32(0, davinci_wdt->base + TGCR); |
Vladimir Barinov | 7d831bf | 2007-06-12 18:09:50 +0400 | [diff] [blame] | 84 | tgcr = TIMMODE_64BIT_WDOG | TIM12RS_UNRESET | TIM34RS_UNRESET; |
Ivan Khoronzhuk | 6d9a6cf | 2013-12-04 21:39:27 +0200 | [diff] [blame] | 85 | iowrite32(tgcr, davinci_wdt->base + TGCR); |
Vladimir Barinov | 7d831bf | 2007-06-12 18:09:50 +0400 | [diff] [blame] | 86 | /* clear counter regs */ |
Ivan Khoronzhuk | 6d9a6cf | 2013-12-04 21:39:27 +0200 | [diff] [blame] | 87 | iowrite32(0, davinci_wdt->base + TIM12); |
| 88 | iowrite32(0, davinci_wdt->base + TIM34); |
Vladimir Barinov | 7d831bf | 2007-06-12 18:09:50 +0400 | [diff] [blame] | 89 | /* set timeout period */ |
Ivan Khoronzhuk | f48f3ce | 2013-12-05 13:26:24 +0200 | [diff] [blame] | 90 | timer_margin = (((u64)wdd->timeout * wdt_freq) & 0xffffffff); |
Ivan Khoronzhuk | 6d9a6cf | 2013-12-04 21:39:27 +0200 | [diff] [blame] | 91 | iowrite32(timer_margin, davinci_wdt->base + PRD12); |
Ivan Khoronzhuk | f48f3ce | 2013-12-05 13:26:24 +0200 | [diff] [blame] | 92 | timer_margin = (((u64)wdd->timeout * wdt_freq) >> 32); |
Ivan Khoronzhuk | 6d9a6cf | 2013-12-04 21:39:27 +0200 | [diff] [blame] | 93 | iowrite32(timer_margin, davinci_wdt->base + PRD34); |
Vladimir Barinov | 7d831bf | 2007-06-12 18:09:50 +0400 | [diff] [blame] | 94 | /* enable run continuously */ |
Ivan Khoronzhuk | 6d9a6cf | 2013-12-04 21:39:27 +0200 | [diff] [blame] | 95 | iowrite32(ENAMODE12_PERIODIC, davinci_wdt->base + TCR); |
Vladimir Barinov | 7d831bf | 2007-06-12 18:09:50 +0400 | [diff] [blame] | 96 | /* Once the WDT is in pre-active state write to |
| 97 | * TIM12, TIM34, PRD12, PRD34, TCR, TGCR, WDTCR are |
| 98 | * write protected (except for the WDKEY field) |
| 99 | */ |
| 100 | /* put watchdog in pre-active state */ |
Ivan Khoronzhuk | 6d9a6cf | 2013-12-04 21:39:27 +0200 | [diff] [blame] | 101 | iowrite32(WDKEY_SEQ0 | WDEN, davinci_wdt->base + WDTCR); |
Vladimir Barinov | 7d831bf | 2007-06-12 18:09:50 +0400 | [diff] [blame] | 102 | /* put watchdog in active state */ |
Ivan Khoronzhuk | 6d9a6cf | 2013-12-04 21:39:27 +0200 | [diff] [blame] | 103 | iowrite32(WDKEY_SEQ1 | WDEN, davinci_wdt->base + WDTCR); |
Ivan Khoronzhuk | f48f3ce | 2013-12-05 13:26:24 +0200 | [diff] [blame] | 104 | return 0; |
Vladimir Barinov | 7d831bf | 2007-06-12 18:09:50 +0400 | [diff] [blame] | 105 | } |
| 106 | |
Ivan Khoronzhuk | f48f3ce | 2013-12-05 13:26:24 +0200 | [diff] [blame] | 107 | static int davinci_wdt_ping(struct watchdog_device *wdd) |
Vladimir Barinov | 7d831bf | 2007-06-12 18:09:50 +0400 | [diff] [blame] | 108 | { |
Ivan Khoronzhuk | 6d9a6cf | 2013-12-04 21:39:27 +0200 | [diff] [blame] | 109 | struct davinci_wdt_device *davinci_wdt = watchdog_get_drvdata(wdd); |
| 110 | |
Ivan Khoronzhuk | f48f3ce | 2013-12-05 13:26:24 +0200 | [diff] [blame] | 111 | /* put watchdog in service state */ |
Ivan Khoronzhuk | 6d9a6cf | 2013-12-04 21:39:27 +0200 | [diff] [blame] | 112 | iowrite32(WDKEY_SEQ0, davinci_wdt->base + WDTCR); |
Ivan Khoronzhuk | f48f3ce | 2013-12-05 13:26:24 +0200 | [diff] [blame] | 113 | /* put watchdog in active state */ |
Ivan Khoronzhuk | 6d9a6cf | 2013-12-04 21:39:27 +0200 | [diff] [blame] | 114 | iowrite32(WDKEY_SEQ1, davinci_wdt->base + WDTCR); |
Ivan Khoronzhuk | f48f3ce | 2013-12-05 13:26:24 +0200 | [diff] [blame] | 115 | return 0; |
Vladimir Barinov | 7d831bf | 2007-06-12 18:09:50 +0400 | [diff] [blame] | 116 | } |
| 117 | |
Ivan Khoronzhuk | a771994 | 2013-12-04 21:39:28 +0200 | [diff] [blame] | 118 | static unsigned int davinci_wdt_get_timeleft(struct watchdog_device *wdd) |
| 119 | { |
| 120 | u64 timer_counter; |
| 121 | unsigned long freq; |
| 122 | u32 val; |
| 123 | struct davinci_wdt_device *davinci_wdt = watchdog_get_drvdata(wdd); |
| 124 | |
| 125 | /* if timeout has occured then return 0 */ |
| 126 | val = ioread32(davinci_wdt->base + WDTCR); |
| 127 | if (val & WDFLAG) |
| 128 | return 0; |
| 129 | |
| 130 | freq = clk_get_rate(davinci_wdt->clk); |
| 131 | |
| 132 | if (!freq) |
| 133 | return 0; |
| 134 | |
| 135 | timer_counter = ioread32(davinci_wdt->base + TIM12); |
| 136 | timer_counter |= ((u64)ioread32(davinci_wdt->base + TIM34) << 32); |
| 137 | |
| 138 | do_div(timer_counter, freq); |
| 139 | |
| 140 | return wdd->timeout - timer_counter; |
| 141 | } |
| 142 | |
Ivan Khoronzhuk | f48f3ce | 2013-12-05 13:26:24 +0200 | [diff] [blame] | 143 | static const struct watchdog_info davinci_wdt_info = { |
Wim Van Sebroeck | f1a08cc | 2007-07-20 21:47:55 +0000 | [diff] [blame] | 144 | .options = WDIOF_KEEPALIVEPING, |
Ivan Khoronzhuk | 8832b20 | 2013-12-04 21:39:30 +0200 | [diff] [blame] | 145 | .identity = "DaVinci/Keystone Watchdog", |
Vladimir Barinov | 7d831bf | 2007-06-12 18:09:50 +0400 | [diff] [blame] | 146 | }; |
| 147 | |
Ivan Khoronzhuk | f48f3ce | 2013-12-05 13:26:24 +0200 | [diff] [blame] | 148 | static const struct watchdog_ops davinci_wdt_ops = { |
| 149 | .owner = THIS_MODULE, |
| 150 | .start = davinci_wdt_start, |
| 151 | .stop = davinci_wdt_ping, |
| 152 | .ping = davinci_wdt_ping, |
Ivan Khoronzhuk | a771994 | 2013-12-04 21:39:28 +0200 | [diff] [blame] | 153 | .get_timeleft = davinci_wdt_get_timeleft, |
Vladimir Barinov | 7d831bf | 2007-06-12 18:09:50 +0400 | [diff] [blame] | 154 | }; |
| 155 | |
Bill Pemberton | 2d991a1 | 2012-11-19 13:21:41 -0500 | [diff] [blame] | 156 | static int davinci_wdt_probe(struct platform_device *pdev) |
Vladimir Barinov | 7d831bf | 2007-06-12 18:09:50 +0400 | [diff] [blame] | 157 | { |
Kumar, Anil | e20880e | 2013-02-08 13:09:30 +0530 | [diff] [blame] | 158 | int ret = 0; |
Kevin Hilman | 371d352 | 2009-01-29 14:14:30 -0800 | [diff] [blame] | 159 | struct device *dev = &pdev->dev; |
Kumar, Anil | e20880e | 2013-02-08 13:09:30 +0530 | [diff] [blame] | 160 | struct resource *wdt_mem; |
Ivan Khoronzhuk | f48f3ce | 2013-12-05 13:26:24 +0200 | [diff] [blame] | 161 | struct watchdog_device *wdd; |
Ivan Khoronzhuk | 6d9a6cf | 2013-12-04 21:39:27 +0200 | [diff] [blame] | 162 | struct davinci_wdt_device *davinci_wdt; |
Vladimir Barinov | 7d831bf | 2007-06-12 18:09:50 +0400 | [diff] [blame] | 163 | |
Ivan Khoronzhuk | 6d9a6cf | 2013-12-04 21:39:27 +0200 | [diff] [blame] | 164 | davinci_wdt = devm_kzalloc(dev, sizeof(*davinci_wdt), GFP_KERNEL); |
| 165 | if (!davinci_wdt) |
| 166 | return -ENOMEM; |
Kevin Hilman | 9fd868f | 2009-02-10 20:30:37 -0800 | [diff] [blame] | 167 | |
Ivan Khoronzhuk | 6d9a6cf | 2013-12-04 21:39:27 +0200 | [diff] [blame] | 168 | davinci_wdt->clk = devm_clk_get(dev, NULL); |
| 169 | if (WARN_ON(IS_ERR(davinci_wdt->clk))) |
| 170 | return PTR_ERR(davinci_wdt->clk); |
Kevin Hilman | 9fd868f | 2009-02-10 20:30:37 -0800 | [diff] [blame] | 171 | |
Ivan Khoronzhuk | 6d9a6cf | 2013-12-04 21:39:27 +0200 | [diff] [blame] | 172 | clk_prepare_enable(davinci_wdt->clk); |
| 173 | |
| 174 | platform_set_drvdata(pdev, davinci_wdt); |
| 175 | |
| 176 | wdd = &davinci_wdt->wdd; |
Ivan Khoronzhuk | f48f3ce | 2013-12-05 13:26:24 +0200 | [diff] [blame] | 177 | wdd->info = &davinci_wdt_info; |
| 178 | wdd->ops = &davinci_wdt_ops; |
| 179 | wdd->min_timeout = 1; |
| 180 | wdd->max_timeout = MAX_HEARTBEAT; |
| 181 | wdd->timeout = DEFAULT_HEARTBEAT; |
Vladimir Barinov | 7d831bf | 2007-06-12 18:09:50 +0400 | [diff] [blame] | 182 | |
Ivan Khoronzhuk | f48f3ce | 2013-12-05 13:26:24 +0200 | [diff] [blame] | 183 | watchdog_init_timeout(wdd, heartbeat, dev); |
| 184 | |
| 185 | dev_info(dev, "heartbeat %d sec\n", wdd->timeout); |
| 186 | |
Ivan Khoronzhuk | 6d9a6cf | 2013-12-04 21:39:27 +0200 | [diff] [blame] | 187 | watchdog_set_drvdata(wdd, davinci_wdt); |
Ivan Khoronzhuk | f48f3ce | 2013-12-05 13:26:24 +0200 | [diff] [blame] | 188 | watchdog_set_nowayout(wdd, 1); |
Vladimir Barinov | 7d831bf | 2007-06-12 18:09:50 +0400 | [diff] [blame] | 189 | |
Julia Lawall | f712eac | 2011-02-26 17:34:39 +0100 | [diff] [blame] | 190 | wdt_mem = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
Ivan Khoronzhuk | 6d9a6cf | 2013-12-04 21:39:27 +0200 | [diff] [blame] | 191 | davinci_wdt->base = devm_ioremap_resource(dev, wdt_mem); |
| 192 | if (IS_ERR(davinci_wdt->base)) |
| 193 | return PTR_ERR(davinci_wdt->base); |
Vladimir Barinov | 7d831bf | 2007-06-12 18:09:50 +0400 | [diff] [blame] | 194 | |
Ivan Khoronzhuk | f48f3ce | 2013-12-05 13:26:24 +0200 | [diff] [blame] | 195 | ret = watchdog_register_device(wdd); |
| 196 | if (ret < 0) |
| 197 | dev_err(dev, "cannot register watchdog device\n"); |
Vladimir Barinov | 7d831bf | 2007-06-12 18:09:50 +0400 | [diff] [blame] | 198 | |
| 199 | return ret; |
| 200 | } |
| 201 | |
Bill Pemberton | 4b12b89 | 2012-11-19 13:26:24 -0500 | [diff] [blame] | 202 | static int davinci_wdt_remove(struct platform_device *pdev) |
Vladimir Barinov | 7d831bf | 2007-06-12 18:09:50 +0400 | [diff] [blame] | 203 | { |
Ivan Khoronzhuk | 6d9a6cf | 2013-12-04 21:39:27 +0200 | [diff] [blame] | 204 | struct davinci_wdt_device *davinci_wdt = platform_get_drvdata(pdev); |
| 205 | |
| 206 | watchdog_unregister_device(&davinci_wdt->wdd); |
| 207 | clk_disable_unprepare(davinci_wdt->clk); |
Kevin Hilman | 9fd868f | 2009-02-10 20:30:37 -0800 | [diff] [blame] | 208 | |
Vladimir Barinov | 7d831bf | 2007-06-12 18:09:50 +0400 | [diff] [blame] | 209 | return 0; |
| 210 | } |
| 211 | |
Murali Karicheri | 902e2e7 | 2012-11-26 16:41:35 -0500 | [diff] [blame] | 212 | static const struct of_device_id davinci_wdt_of_match[] = { |
| 213 | { .compatible = "ti,davinci-wdt", }, |
| 214 | {}, |
| 215 | }; |
| 216 | MODULE_DEVICE_TABLE(of, davinci_wdt_of_match); |
| 217 | |
Vladimir Barinov | 7d831bf | 2007-06-12 18:09:50 +0400 | [diff] [blame] | 218 | static struct platform_driver platform_wdt_driver = { |
| 219 | .driver = { |
Ivan Khoronzhuk | 8437481 | 2013-11-27 15:31:53 +0200 | [diff] [blame] | 220 | .name = "davinci-wdt", |
Murali Karicheri | 902e2e7 | 2012-11-26 16:41:35 -0500 | [diff] [blame] | 221 | .of_match_table = davinci_wdt_of_match, |
Vladimir Barinov | 7d831bf | 2007-06-12 18:09:50 +0400 | [diff] [blame] | 222 | }, |
| 223 | .probe = davinci_wdt_probe, |
Bill Pemberton | 8226871 | 2012-11-19 13:21:12 -0500 | [diff] [blame] | 224 | .remove = davinci_wdt_remove, |
Vladimir Barinov | 7d831bf | 2007-06-12 18:09:50 +0400 | [diff] [blame] | 225 | }; |
| 226 | |
Axel Lin | b8ec611 | 2011-11-29 13:56:27 +0800 | [diff] [blame] | 227 | module_platform_driver(platform_wdt_driver); |
Vladimir Barinov | 7d831bf | 2007-06-12 18:09:50 +0400 | [diff] [blame] | 228 | |
| 229 | MODULE_AUTHOR("Texas Instruments"); |
| 230 | MODULE_DESCRIPTION("DaVinci Watchdog Driver"); |
| 231 | |
| 232 | module_param(heartbeat, int, 0); |
| 233 | MODULE_PARM_DESC(heartbeat, |
| 234 | "Watchdog heartbeat period in seconds from 1 to " |
| 235 | __MODULE_STRING(MAX_HEARTBEAT) ", default " |
| 236 | __MODULE_STRING(DEFAULT_HEARTBEAT)); |
| 237 | |
| 238 | MODULE_LICENSE("GPL"); |
Ivan Khoronzhuk | 8437481 | 2013-11-27 15:31:53 +0200 | [diff] [blame] | 239 | MODULE_ALIAS("platform:davinci-wdt"); |