s3c2410_wdt.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507
  1. /* linux/drivers/char/watchdog/s3c2410_wdt.c
  2. *
  3. * Copyright (c) 2004 Simtec Electronics
  4. * Ben Dooks <ben@simtec.co.uk>
  5. *
  6. * S3C2410 Watchdog Timer Support
  7. *
  8. * Based on, softdog.c by Alan Cox,
  9. * (c) Copyright 1996 Alan Cox <alan@lxorguk.ukuu.org.uk>
  10. *
  11. * This program is free software; you can redistribute it and/or modify
  12. * it under the terms of the GNU General Public License as published by
  13. * the Free Software Foundation; either version 2 of the License, or
  14. * (at your option) any later version.
  15. *
  16. * This program is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. * GNU General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU General Public License
  22. * along with this program; if not, write to the Free Software
  23. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  24. */
  25. #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
  26. #include <linux/module.h>
  27. #include <linux/moduleparam.h>
  28. #include <linux/types.h>
  29. #include <linux/timer.h>
  30. #include <linux/miscdevice.h> /* for MODULE_ALIAS_MISCDEV */
  31. #include <linux/watchdog.h>
  32. #include <linux/init.h>
  33. #include <linux/platform_device.h>
  34. #include <linux/interrupt.h>
  35. #include <linux/clk.h>
  36. #include <linux/uaccess.h>
  37. #include <linux/io.h>
  38. #include <linux/cpufreq.h>
  39. #include <linux/slab.h>
  40. #include <linux/err.h>
  41. #include <linux/of.h>
  42. #include <mach/map.h>
  43. #undef S3C_VA_WATCHDOG
  44. #define S3C_VA_WATCHDOG (0)
  45. #include <plat/regs-watchdog.h>
  46. #define CONFIG_S3C2410_WATCHDOG_ATBOOT (0)
  47. #define CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME (15)
  48. static bool nowayout = WATCHDOG_NOWAYOUT;
  49. static int tmr_margin;
  50. static int tmr_atboot = CONFIG_S3C2410_WATCHDOG_ATBOOT;
  51. static int soft_noboot;
  52. static int debug;
  53. module_param(tmr_margin, int, 0);
  54. module_param(tmr_atboot, int, 0);
  55. module_param(nowayout, bool, 0);
  56. module_param(soft_noboot, int, 0);
  57. module_param(debug, int, 0);
  58. MODULE_PARM_DESC(tmr_margin, "Watchdog tmr_margin in seconds. (default="
  59. __MODULE_STRING(CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME) ")");
  60. MODULE_PARM_DESC(tmr_atboot,
  61. "Watchdog is started at boot time if set to 1, default="
  62. __MODULE_STRING(CONFIG_S3C2410_WATCHDOG_ATBOOT));
  63. MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default="
  64. __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
  65. MODULE_PARM_DESC(soft_noboot, "Watchdog action, set to 1 to ignore reboots, "
  66. "0 to reboot (default 0)");
  67. MODULE_PARM_DESC(debug, "Watchdog debug, set to >1 for debug (default 0)");
  68. static struct device *wdt_dev; /* platform device attached to */
  69. static struct resource *wdt_mem;
  70. static struct resource *wdt_irq;
  71. static struct clk *wdt_clock;
  72. static void __iomem *wdt_base;
  73. static unsigned int wdt_count;
  74. static DEFINE_SPINLOCK(wdt_lock);
  75. /* watchdog control routines */
  76. #define DBG(fmt, ...) \
  77. do { \
  78. if (debug) \
  79. pr_info(fmt, ##__VA_ARGS__); \
  80. } while (0)
  81. /* functions */
  82. static int s3c2410wdt_keepalive(struct watchdog_device *wdd)
  83. {
  84. spin_lock(&wdt_lock);
  85. writel(wdt_count, wdt_base + S3C2410_WTCNT);
  86. spin_unlock(&wdt_lock);
  87. return 0;
  88. }
  89. static void __s3c2410wdt_stop(void)
  90. {
  91. unsigned long wtcon;
  92. wtcon = readl(wdt_base + S3C2410_WTCON);
  93. wtcon &= ~(S3C2410_WTCON_ENABLE | S3C2410_WTCON_RSTEN);
  94. writel(wtcon, wdt_base + S3C2410_WTCON);
  95. }
  96. static int s3c2410wdt_stop(struct watchdog_device *wdd)
  97. {
  98. spin_lock(&wdt_lock);
  99. __s3c2410wdt_stop();
  100. spin_unlock(&wdt_lock);
  101. return 0;
  102. }
  103. static int s3c2410wdt_start(struct watchdog_device *wdd)
  104. {
  105. unsigned long wtcon;
  106. spin_lock(&wdt_lock);
  107. __s3c2410wdt_stop();
  108. wtcon = readl(wdt_base + S3C2410_WTCON);
  109. wtcon |= S3C2410_WTCON_ENABLE | S3C2410_WTCON_DIV128;
  110. if (soft_noboot) {
  111. wtcon |= S3C2410_WTCON_INTEN;
  112. wtcon &= ~S3C2410_WTCON_RSTEN;
  113. } else {
  114. wtcon &= ~S3C2410_WTCON_INTEN;
  115. wtcon |= S3C2410_WTCON_RSTEN;
  116. }
  117. DBG("%s: wdt_count=0x%08x, wtcon=%08lx\n",
  118. __func__, wdt_count, wtcon);
  119. writel(wdt_count, wdt_base + S3C2410_WTDAT);
  120. writel(wdt_count, wdt_base + S3C2410_WTCNT);
  121. writel(wtcon, wdt_base + S3C2410_WTCON);
  122. spin_unlock(&wdt_lock);
  123. return 0;
  124. }
  125. static inline int s3c2410wdt_is_running(void)
  126. {
  127. return readl(wdt_base + S3C2410_WTCON) & S3C2410_WTCON_ENABLE;
  128. }
  129. static int s3c2410wdt_set_heartbeat(struct watchdog_device *wdd, unsigned timeout)
  130. {
  131. unsigned long freq = clk_get_rate(wdt_clock);
  132. unsigned int count;
  133. unsigned int divisor = 1;
  134. unsigned long wtcon;
  135. if (timeout < 1)
  136. return -EINVAL;
  137. freq /= 128;
  138. count = timeout * freq;
  139. DBG("%s: count=%d, timeout=%d, freq=%lu\n",
  140. __func__, count, timeout, freq);
  141. /* if the count is bigger than the watchdog register,
  142. then work out what we need to do (and if) we can
  143. actually make this value
  144. */
  145. if (count >= 0x10000) {
  146. for (divisor = 1; divisor <= 0x100; divisor++) {
  147. if ((count / divisor) < 0x10000)
  148. break;
  149. }
  150. if ((count / divisor) >= 0x10000) {
  151. dev_err(wdt_dev, "timeout %d too big\n", timeout);
  152. return -EINVAL;
  153. }
  154. }
  155. DBG("%s: timeout=%d, divisor=%d, count=%d (%08x)\n",
  156. __func__, timeout, divisor, count, count/divisor);
  157. count /= divisor;
  158. wdt_count = count;
  159. /* update the pre-scaler */
  160. wtcon = readl(wdt_base + S3C2410_WTCON);
  161. wtcon &= ~S3C2410_WTCON_PRESCALE_MASK;
  162. wtcon |= S3C2410_WTCON_PRESCALE(divisor-1);
  163. writel(count, wdt_base + S3C2410_WTDAT);
  164. writel(wtcon, wdt_base + S3C2410_WTCON);
  165. wdd->timeout = (count * divisor) / freq;
  166. return 0;
  167. }
  168. #define OPTIONS (WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING | WDIOF_MAGICCLOSE)
  169. static const struct watchdog_info s3c2410_wdt_ident = {
  170. .options = OPTIONS,
  171. .firmware_version = 0,
  172. .identity = "S3C2410 Watchdog",
  173. };
  174. static struct watchdog_ops s3c2410wdt_ops = {
  175. .owner = THIS_MODULE,
  176. .start = s3c2410wdt_start,
  177. .stop = s3c2410wdt_stop,
  178. .ping = s3c2410wdt_keepalive,
  179. .set_timeout = s3c2410wdt_set_heartbeat,
  180. };
  181. static struct watchdog_device s3c2410_wdd = {
  182. .info = &s3c2410_wdt_ident,
  183. .ops = &s3c2410wdt_ops,
  184. .timeout = CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME,
  185. };
  186. /* interrupt handler code */
  187. static irqreturn_t s3c2410wdt_irq(int irqno, void *param)
  188. {
  189. dev_info(wdt_dev, "watchdog timer expired (irq)\n");
  190. s3c2410wdt_keepalive(&s3c2410_wdd);
  191. return IRQ_HANDLED;
  192. }
  193. #ifdef CONFIG_CPU_FREQ
  194. static int s3c2410wdt_cpufreq_transition(struct notifier_block *nb,
  195. unsigned long val, void *data)
  196. {
  197. int ret;
  198. if (!s3c2410wdt_is_running())
  199. goto done;
  200. if (val == CPUFREQ_PRECHANGE) {
  201. /* To ensure that over the change we don't cause the
  202. * watchdog to trigger, we perform an keep-alive if
  203. * the watchdog is running.
  204. */
  205. s3c2410wdt_keepalive(&s3c2410_wdd);
  206. } else if (val == CPUFREQ_POSTCHANGE) {
  207. s3c2410wdt_stop(&s3c2410_wdd);
  208. ret = s3c2410wdt_set_heartbeat(&s3c2410_wdd, s3c2410_wdd.timeout);
  209. if (ret >= 0)
  210. s3c2410wdt_start(&s3c2410_wdd);
  211. else
  212. goto err;
  213. }
  214. done:
  215. return 0;
  216. err:
  217. dev_err(wdt_dev, "cannot set new value for timeout %d\n",
  218. s3c2410_wdd.timeout);
  219. return ret;
  220. }
  221. static struct notifier_block s3c2410wdt_cpufreq_transition_nb = {
  222. .notifier_call = s3c2410wdt_cpufreq_transition,
  223. };
  224. static inline int s3c2410wdt_cpufreq_register(void)
  225. {
  226. return cpufreq_register_notifier(&s3c2410wdt_cpufreq_transition_nb,
  227. CPUFREQ_TRANSITION_NOTIFIER);
  228. }
  229. static inline void s3c2410wdt_cpufreq_deregister(void)
  230. {
  231. cpufreq_unregister_notifier(&s3c2410wdt_cpufreq_transition_nb,
  232. CPUFREQ_TRANSITION_NOTIFIER);
  233. }
  234. #else
  235. static inline int s3c2410wdt_cpufreq_register(void)
  236. {
  237. return 0;
  238. }
  239. static inline void s3c2410wdt_cpufreq_deregister(void)
  240. {
  241. }
  242. #endif
  243. static int s3c2410wdt_probe(struct platform_device *pdev)
  244. {
  245. struct device *dev;
  246. unsigned int wtcon;
  247. int started = 0;
  248. int ret;
  249. DBG("%s: probe=%p\n", __func__, pdev);
  250. dev = &pdev->dev;
  251. wdt_dev = &pdev->dev;
  252. wdt_mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  253. if (wdt_mem == NULL) {
  254. dev_err(dev, "no memory resource specified\n");
  255. return -ENOENT;
  256. }
  257. wdt_irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
  258. if (wdt_irq == NULL) {
  259. dev_err(dev, "no irq resource specified\n");
  260. ret = -ENOENT;
  261. goto err;
  262. }
  263. /* get the memory region for the watchdog timer */
  264. wdt_base = devm_request_and_ioremap(dev, wdt_mem);
  265. if (wdt_base == NULL) {
  266. dev_err(dev, "failed to devm_request_and_ioremap() region\n");
  267. ret = -ENOMEM;
  268. goto err;
  269. }
  270. DBG("probe: mapped wdt_base=%p\n", wdt_base);
  271. wdt_clock = devm_clk_get(dev, "watchdog");
  272. if (IS_ERR(wdt_clock)) {
  273. dev_err(dev, "failed to find watchdog clock source\n");
  274. ret = PTR_ERR(wdt_clock);
  275. goto err;
  276. }
  277. clk_prepare_enable(wdt_clock);
  278. ret = s3c2410wdt_cpufreq_register();
  279. if (ret < 0) {
  280. pr_err("failed to register cpufreq\n");
  281. goto err_clk;
  282. }
  283. /* see if we can actually set the requested timer margin, and if
  284. * not, try the default value */
  285. watchdog_init_timeout(&s3c2410_wdd, tmr_margin, &pdev->dev);
  286. if (s3c2410wdt_set_heartbeat(&s3c2410_wdd, s3c2410_wdd.timeout)) {
  287. started = s3c2410wdt_set_heartbeat(&s3c2410_wdd,
  288. CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME);
  289. if (started == 0)
  290. dev_info(dev,
  291. "tmr_margin value out of range, default %d used\n",
  292. CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME);
  293. else
  294. dev_info(dev, "default timer value is out of range, "
  295. "cannot start\n");
  296. }
  297. ret = devm_request_irq(dev, wdt_irq->start, s3c2410wdt_irq, 0,
  298. pdev->name, pdev);
  299. if (ret != 0) {
  300. dev_err(dev, "failed to install irq (%d)\n", ret);
  301. goto err_cpufreq;
  302. }
  303. watchdog_set_nowayout(&s3c2410_wdd, nowayout);
  304. ret = watchdog_register_device(&s3c2410_wdd);
  305. if (ret) {
  306. dev_err(dev, "cannot register watchdog (%d)\n", ret);
  307. goto err_cpufreq;
  308. }
  309. if (tmr_atboot && started == 0) {
  310. dev_info(dev, "starting watchdog timer\n");
  311. s3c2410wdt_start(&s3c2410_wdd);
  312. } else if (!tmr_atboot) {
  313. /* if we're not enabling the watchdog, then ensure it is
  314. * disabled if it has been left running from the bootloader
  315. * or other source */
  316. s3c2410wdt_stop(&s3c2410_wdd);
  317. }
  318. /* print out a statement of readiness */
  319. wtcon = readl(wdt_base + S3C2410_WTCON);
  320. dev_info(dev, "watchdog %sactive, reset %sabled, irq %sabled\n",
  321. (wtcon & S3C2410_WTCON_ENABLE) ? "" : "in",
  322. (wtcon & S3C2410_WTCON_RSTEN) ? "en" : "dis",
  323. (wtcon & S3C2410_WTCON_INTEN) ? "en" : "dis");
  324. return 0;
  325. err_cpufreq:
  326. s3c2410wdt_cpufreq_deregister();
  327. err_clk:
  328. clk_disable_unprepare(wdt_clock);
  329. wdt_clock = NULL;
  330. err:
  331. wdt_irq = NULL;
  332. wdt_mem = NULL;
  333. return ret;
  334. }
  335. static int s3c2410wdt_remove(struct platform_device *dev)
  336. {
  337. watchdog_unregister_device(&s3c2410_wdd);
  338. s3c2410wdt_cpufreq_deregister();
  339. clk_disable_unprepare(wdt_clock);
  340. wdt_clock = NULL;
  341. wdt_irq = NULL;
  342. wdt_mem = NULL;
  343. return 0;
  344. }
  345. static void s3c2410wdt_shutdown(struct platform_device *dev)
  346. {
  347. s3c2410wdt_stop(&s3c2410_wdd);
  348. }
  349. #ifdef CONFIG_PM
  350. static unsigned long wtcon_save;
  351. static unsigned long wtdat_save;
  352. static int s3c2410wdt_suspend(struct platform_device *dev, pm_message_t state)
  353. {
  354. /* Save watchdog state, and turn it off. */
  355. wtcon_save = readl(wdt_base + S3C2410_WTCON);
  356. wtdat_save = readl(wdt_base + S3C2410_WTDAT);
  357. /* Note that WTCNT doesn't need to be saved. */
  358. s3c2410wdt_stop(&s3c2410_wdd);
  359. return 0;
  360. }
  361. static int s3c2410wdt_resume(struct platform_device *dev)
  362. {
  363. /* Restore watchdog state. */
  364. writel(wtdat_save, wdt_base + S3C2410_WTDAT);
  365. writel(wtdat_save, wdt_base + S3C2410_WTCNT); /* Reset count */
  366. writel(wtcon_save, wdt_base + S3C2410_WTCON);
  367. pr_info("watchdog %sabled\n",
  368. (wtcon_save & S3C2410_WTCON_ENABLE) ? "en" : "dis");
  369. return 0;
  370. }
  371. #else
  372. #define s3c2410wdt_suspend NULL
  373. #define s3c2410wdt_resume NULL
  374. #endif /* CONFIG_PM */
  375. #ifdef CONFIG_OF
  376. static const struct of_device_id s3c2410_wdt_match[] = {
  377. { .compatible = "samsung,s3c2410-wdt" },
  378. {},
  379. };
  380. MODULE_DEVICE_TABLE(of, s3c2410_wdt_match);
  381. #endif
  382. static struct platform_driver s3c2410wdt_driver = {
  383. .probe = s3c2410wdt_probe,
  384. .remove = s3c2410wdt_remove,
  385. .shutdown = s3c2410wdt_shutdown,
  386. .suspend = s3c2410wdt_suspend,
  387. .resume = s3c2410wdt_resume,
  388. .driver = {
  389. .owner = THIS_MODULE,
  390. .name = "s3c2410-wdt",
  391. .of_match_table = of_match_ptr(s3c2410_wdt_match),
  392. },
  393. };
  394. module_platform_driver(s3c2410wdt_driver);
  395. MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>, "
  396. "Dimitry Andric <dimitry.andric@tomtom.com>");
  397. MODULE_DESCRIPTION("S3C2410 Watchdog Device Driver");
  398. MODULE_LICENSE("GPL");
  399. MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);
  400. MODULE_ALIAS("platform:s3c2410-wdt");