matthieu castet | 90074dc | 2009-06-05 18:57:18 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Watchdog driver for Broadcom BCM47XX |
| 3 | * |
| 4 | * Copyright (C) 2008 Aleksandar Radovanovic <biblbroks@sezampro.rs> |
| 5 | * Copyright (C) 2009 Matthieu CASTET <castet.matthieu@free.fr> |
Hauke Mehrtens | f82dedf | 2013-01-24 18:13:34 +0100 | [diff] [blame] | 6 | * Copyright (C) 2012-2013 Hauke Mehrtens <hauke@hauke-m.de> |
matthieu castet | 90074dc | 2009-06-05 18:57:18 +0200 | [diff] [blame] | 7 | * |
| 8 | * This program is free software; you can redistribute it and/or |
| 9 | * modify it under the terms of the GNU General Public License |
| 10 | * as published by the Free Software Foundation; either version |
| 11 | * 2 of the License, or (at your option) any later version. |
| 12 | */ |
| 13 | |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 14 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 15 | |
Hauke Mehrtens | f82dedf | 2013-01-24 18:13:34 +0100 | [diff] [blame] | 16 | #include <linux/bcm47xx_wdt.h> |
matthieu castet | 90074dc | 2009-06-05 18:57:18 +0200 | [diff] [blame] | 17 | #include <linux/bitops.h> |
| 18 | #include <linux/errno.h> |
matthieu castet | 90074dc | 2009-06-05 18:57:18 +0200 | [diff] [blame] | 19 | #include <linux/init.h> |
| 20 | #include <linux/kernel.h> |
matthieu castet | 90074dc | 2009-06-05 18:57:18 +0200 | [diff] [blame] | 21 | #include <linux/module.h> |
| 22 | #include <linux/moduleparam.h> |
Hauke Mehrtens | f82dedf | 2013-01-24 18:13:34 +0100 | [diff] [blame] | 23 | #include <linux/platform_device.h> |
matthieu castet | 90074dc | 2009-06-05 18:57:18 +0200 | [diff] [blame] | 24 | #include <linux/reboot.h> |
| 25 | #include <linux/types.h> |
matthieu castet | 90074dc | 2009-06-05 18:57:18 +0200 | [diff] [blame] | 26 | #include <linux/watchdog.h> |
| 27 | #include <linux/timer.h> |
| 28 | #include <linux/jiffies.h> |
matthieu castet | 90074dc | 2009-06-05 18:57:18 +0200 | [diff] [blame] | 29 | |
| 30 | #define DRV_NAME "bcm47xx_wdt" |
| 31 | |
| 32 | #define WDT_DEFAULT_TIME 30 /* seconds */ |
Hauke Mehrtens | a390689 | 2013-01-12 18:14:09 +0100 | [diff] [blame^] | 33 | #define WDT_SOFTTIMER_MAX 255 /* seconds */ |
matthieu castet | 90074dc | 2009-06-05 18:57:18 +0200 | [diff] [blame] | 34 | |
| 35 | static int wdt_time = WDT_DEFAULT_TIME; |
Wim Van Sebroeck | 86a1e18 | 2012-03-05 16:51:11 +0100 | [diff] [blame] | 36 | static bool nowayout = WATCHDOG_NOWAYOUT; |
matthieu castet | 90074dc | 2009-06-05 18:57:18 +0200 | [diff] [blame] | 37 | |
| 38 | module_param(wdt_time, int, 0); |
| 39 | MODULE_PARM_DESC(wdt_time, "Watchdog time in seconds. (default=" |
| 40 | __MODULE_STRING(WDT_DEFAULT_TIME) ")"); |
| 41 | |
Wim Van Sebroeck | 86a1e18 | 2012-03-05 16:51:11 +0100 | [diff] [blame] | 42 | module_param(nowayout, bool, 0); |
matthieu castet | 90074dc | 2009-06-05 18:57:18 +0200 | [diff] [blame] | 43 | MODULE_PARM_DESC(nowayout, |
| 44 | "Watchdog cannot be stopped once started (default=" |
| 45 | __MODULE_STRING(WATCHDOG_NOWAYOUT) ")"); |
matthieu castet | 90074dc | 2009-06-05 18:57:18 +0200 | [diff] [blame] | 46 | |
Hauke Mehrtens | f82dedf | 2013-01-24 18:13:34 +0100 | [diff] [blame] | 47 | static inline struct bcm47xx_wdt *bcm47xx_wdt_get(struct watchdog_device *wdd) |
matthieu castet | 90074dc | 2009-06-05 18:57:18 +0200 | [diff] [blame] | 48 | { |
Hauke Mehrtens | f82dedf | 2013-01-24 18:13:34 +0100 | [diff] [blame] | 49 | return container_of(wdd, struct bcm47xx_wdt, wdd); |
matthieu castet | 90074dc | 2009-06-05 18:57:18 +0200 | [diff] [blame] | 50 | } |
| 51 | |
Hauke Mehrtens | a390689 | 2013-01-12 18:14:09 +0100 | [diff] [blame^] | 52 | static void bcm47xx_wdt_soft_timer_tick(unsigned long data) |
matthieu castet | 90074dc | 2009-06-05 18:57:18 +0200 | [diff] [blame] | 53 | { |
Hauke Mehrtens | f82dedf | 2013-01-24 18:13:34 +0100 | [diff] [blame] | 54 | struct bcm47xx_wdt *wdt = (struct bcm47xx_wdt *)data; |
| 55 | u32 next_tick = min(wdt->wdd.timeout * 1000, wdt->max_timer_ms); |
matthieu castet | 90074dc | 2009-06-05 18:57:18 +0200 | [diff] [blame] | 56 | |
Hauke Mehrtens | f82dedf | 2013-01-24 18:13:34 +0100 | [diff] [blame] | 57 | if (!atomic_dec_and_test(&wdt->soft_ticks)) { |
| 58 | wdt->timer_set_ms(wdt, next_tick); |
| 59 | mod_timer(&wdt->soft_timer, jiffies + HZ); |
matthieu castet | 90074dc | 2009-06-05 18:57:18 +0200 | [diff] [blame] | 60 | } else { |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 61 | pr_crit("Watchdog will fire soon!!!\n"); |
matthieu castet | 90074dc | 2009-06-05 18:57:18 +0200 | [diff] [blame] | 62 | } |
| 63 | } |
| 64 | |
Hauke Mehrtens | a390689 | 2013-01-12 18:14:09 +0100 | [diff] [blame^] | 65 | static int bcm47xx_wdt_soft_keepalive(struct watchdog_device *wdd) |
matthieu castet | 90074dc | 2009-06-05 18:57:18 +0200 | [diff] [blame] | 66 | { |
Hauke Mehrtens | f82dedf | 2013-01-24 18:13:34 +0100 | [diff] [blame] | 67 | struct bcm47xx_wdt *wdt = bcm47xx_wdt_get(wdd); |
| 68 | |
| 69 | atomic_set(&wdt->soft_ticks, wdd->timeout); |
Hauke Mehrtens | 5434a04 | 2013-01-12 18:14:07 +0100 | [diff] [blame] | 70 | |
| 71 | return 0; |
matthieu castet | 90074dc | 2009-06-05 18:57:18 +0200 | [diff] [blame] | 72 | } |
| 73 | |
Hauke Mehrtens | a390689 | 2013-01-12 18:14:09 +0100 | [diff] [blame^] | 74 | static int bcm47xx_wdt_soft_start(struct watchdog_device *wdd) |
matthieu castet | 90074dc | 2009-06-05 18:57:18 +0200 | [diff] [blame] | 75 | { |
Hauke Mehrtens | f82dedf | 2013-01-24 18:13:34 +0100 | [diff] [blame] | 76 | struct bcm47xx_wdt *wdt = bcm47xx_wdt_get(wdd); |
| 77 | |
Hauke Mehrtens | a390689 | 2013-01-12 18:14:09 +0100 | [diff] [blame^] | 78 | bcm47xx_wdt_soft_keepalive(wdd); |
| 79 | bcm47xx_wdt_soft_timer_tick((unsigned long)wdt); |
Hauke Mehrtens | 5434a04 | 2013-01-12 18:14:07 +0100 | [diff] [blame] | 80 | |
| 81 | return 0; |
matthieu castet | 90074dc | 2009-06-05 18:57:18 +0200 | [diff] [blame] | 82 | } |
| 83 | |
Hauke Mehrtens | a390689 | 2013-01-12 18:14:09 +0100 | [diff] [blame^] | 84 | static int bcm47xx_wdt_soft_stop(struct watchdog_device *wdd) |
matthieu castet | 90074dc | 2009-06-05 18:57:18 +0200 | [diff] [blame] | 85 | { |
Hauke Mehrtens | f82dedf | 2013-01-24 18:13:34 +0100 | [diff] [blame] | 86 | struct bcm47xx_wdt *wdt = bcm47xx_wdt_get(wdd); |
| 87 | |
| 88 | del_timer_sync(&wdt->soft_timer); |
| 89 | wdt->timer_set(wdt, 0); |
Hauke Mehrtens | 5434a04 | 2013-01-12 18:14:07 +0100 | [diff] [blame] | 90 | |
| 91 | return 0; |
matthieu castet | 90074dc | 2009-06-05 18:57:18 +0200 | [diff] [blame] | 92 | } |
| 93 | |
Hauke Mehrtens | a390689 | 2013-01-12 18:14:09 +0100 | [diff] [blame^] | 94 | static int bcm47xx_wdt_soft_set_timeout(struct watchdog_device *wdd, |
| 95 | unsigned int new_time) |
matthieu castet | 90074dc | 2009-06-05 18:57:18 +0200 | [diff] [blame] | 96 | { |
Hauke Mehrtens | a390689 | 2013-01-12 18:14:09 +0100 | [diff] [blame^] | 97 | if (new_time < 1 || new_time > WDT_SOFTTIMER_MAX) { |
Hauke Mehrtens | f82dedf | 2013-01-24 18:13:34 +0100 | [diff] [blame] | 98 | pr_warn("timeout value must be 1<=x<=%d, using %d\n", |
Hauke Mehrtens | a390689 | 2013-01-12 18:14:09 +0100 | [diff] [blame^] | 99 | WDT_SOFTTIMER_MAX, new_time); |
matthieu castet | 90074dc | 2009-06-05 18:57:18 +0200 | [diff] [blame] | 100 | return -EINVAL; |
Hauke Mehrtens | f82dedf | 2013-01-24 18:13:34 +0100 | [diff] [blame] | 101 | } |
matthieu castet | 90074dc | 2009-06-05 18:57:18 +0200 | [diff] [blame] | 102 | |
Hauke Mehrtens | f82dedf | 2013-01-24 18:13:34 +0100 | [diff] [blame] | 103 | wdd->timeout = new_time; |
matthieu castet | 90074dc | 2009-06-05 18:57:18 +0200 | [diff] [blame] | 104 | return 0; |
| 105 | } |
| 106 | |
Wim Van Sebroeck | 42747d7 | 2009-12-26 18:55:22 +0000 | [diff] [blame] | 107 | static const struct watchdog_info bcm47xx_wdt_info = { |
Wim Van Sebroeck | 5f3b275 | 2011-02-23 20:04:38 +0000 | [diff] [blame] | 108 | .identity = DRV_NAME, |
| 109 | .options = WDIOF_SETTIMEOUT | |
matthieu castet | 90074dc | 2009-06-05 18:57:18 +0200 | [diff] [blame] | 110 | WDIOF_KEEPALIVEPING | |
| 111 | WDIOF_MAGICCLOSE, |
| 112 | }; |
| 113 | |
matthieu castet | 90074dc | 2009-06-05 18:57:18 +0200 | [diff] [blame] | 114 | static int bcm47xx_wdt_notify_sys(struct notifier_block *this, |
Hauke Mehrtens | 5434a04 | 2013-01-12 18:14:07 +0100 | [diff] [blame] | 115 | unsigned long code, void *unused) |
matthieu castet | 90074dc | 2009-06-05 18:57:18 +0200 | [diff] [blame] | 116 | { |
Hauke Mehrtens | f82dedf | 2013-01-24 18:13:34 +0100 | [diff] [blame] | 117 | struct bcm47xx_wdt *wdt; |
| 118 | |
| 119 | wdt = container_of(this, struct bcm47xx_wdt, notifier); |
matthieu castet | 90074dc | 2009-06-05 18:57:18 +0200 | [diff] [blame] | 120 | if (code == SYS_DOWN || code == SYS_HALT) |
Hauke Mehrtens | f82dedf | 2013-01-24 18:13:34 +0100 | [diff] [blame] | 121 | wdt->wdd.ops->stop(&wdt->wdd); |
matthieu castet | 90074dc | 2009-06-05 18:57:18 +0200 | [diff] [blame] | 122 | return NOTIFY_DONE; |
| 123 | } |
| 124 | |
Hauke Mehrtens | a390689 | 2013-01-12 18:14:09 +0100 | [diff] [blame^] | 125 | static struct watchdog_ops bcm47xx_wdt_soft_ops = { |
matthieu castet | 90074dc | 2009-06-05 18:57:18 +0200 | [diff] [blame] | 126 | .owner = THIS_MODULE, |
Hauke Mehrtens | a390689 | 2013-01-12 18:14:09 +0100 | [diff] [blame^] | 127 | .start = bcm47xx_wdt_soft_start, |
| 128 | .stop = bcm47xx_wdt_soft_stop, |
| 129 | .ping = bcm47xx_wdt_soft_keepalive, |
| 130 | .set_timeout = bcm47xx_wdt_soft_set_timeout, |
matthieu castet | 90074dc | 2009-06-05 18:57:18 +0200 | [diff] [blame] | 131 | }; |
| 132 | |
Hauke Mehrtens | f82dedf | 2013-01-24 18:13:34 +0100 | [diff] [blame] | 133 | static int bcm47xx_wdt_probe(struct platform_device *pdev) |
matthieu castet | 90074dc | 2009-06-05 18:57:18 +0200 | [diff] [blame] | 134 | { |
| 135 | int ret; |
Hauke Mehrtens | f82dedf | 2013-01-24 18:13:34 +0100 | [diff] [blame] | 136 | struct bcm47xx_wdt *wdt = dev_get_platdata(&pdev->dev); |
matthieu castet | 90074dc | 2009-06-05 18:57:18 +0200 | [diff] [blame] | 137 | |
Hauke Mehrtens | f82dedf | 2013-01-24 18:13:34 +0100 | [diff] [blame] | 138 | if (!wdt) |
| 139 | return -ENXIO; |
matthieu castet | 90074dc | 2009-06-05 18:57:18 +0200 | [diff] [blame] | 140 | |
Hauke Mehrtens | a390689 | 2013-01-12 18:14:09 +0100 | [diff] [blame^] | 141 | setup_timer(&wdt->soft_timer, bcm47xx_wdt_soft_timer_tick, |
Hauke Mehrtens | f82dedf | 2013-01-24 18:13:34 +0100 | [diff] [blame] | 142 | (long unsigned int)wdt); |
matthieu castet | 90074dc | 2009-06-05 18:57:18 +0200 | [diff] [blame] | 143 | |
Hauke Mehrtens | a390689 | 2013-01-12 18:14:09 +0100 | [diff] [blame^] | 144 | wdt->wdd.ops = &bcm47xx_wdt_soft_ops; |
Hauke Mehrtens | f82dedf | 2013-01-24 18:13:34 +0100 | [diff] [blame] | 145 | wdt->wdd.info = &bcm47xx_wdt_info; |
| 146 | wdt->wdd.timeout = WDT_DEFAULT_TIME; |
| 147 | ret = wdt->wdd.ops->set_timeout(&wdt->wdd, timeout); |
matthieu castet | 90074dc | 2009-06-05 18:57:18 +0200 | [diff] [blame] | 148 | if (ret) |
Hauke Mehrtens | f82dedf | 2013-01-24 18:13:34 +0100 | [diff] [blame] | 149 | goto err_timer; |
| 150 | watchdog_set_nowayout(&wdt->wdd, nowayout); |
matthieu castet | 90074dc | 2009-06-05 18:57:18 +0200 | [diff] [blame] | 151 | |
Hauke Mehrtens | f82dedf | 2013-01-24 18:13:34 +0100 | [diff] [blame] | 152 | wdt->notifier.notifier_call = &bcm47xx_wdt_notify_sys; |
| 153 | |
| 154 | ret = register_reboot_notifier(&wdt->notifier); |
| 155 | if (ret) |
| 156 | goto err_timer; |
| 157 | |
| 158 | ret = watchdog_register_device(&wdt->wdd); |
| 159 | if (ret) |
| 160 | goto err_notifier; |
matthieu castet | 90074dc | 2009-06-05 18:57:18 +0200 | [diff] [blame] | 161 | |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 162 | pr_info("BCM47xx Watchdog Timer enabled (%d seconds%s)\n", |
| 163 | wdt_time, nowayout ? ", nowayout" : ""); |
matthieu castet | 90074dc | 2009-06-05 18:57:18 +0200 | [diff] [blame] | 164 | return 0; |
Hauke Mehrtens | f82dedf | 2013-01-24 18:13:34 +0100 | [diff] [blame] | 165 | |
| 166 | err_notifier: |
| 167 | unregister_reboot_notifier(&wdt->notifier); |
| 168 | err_timer: |
| 169 | del_timer_sync(&wdt->soft_timer); |
| 170 | |
| 171 | return ret; |
matthieu castet | 90074dc | 2009-06-05 18:57:18 +0200 | [diff] [blame] | 172 | } |
| 173 | |
Hauke Mehrtens | f82dedf | 2013-01-24 18:13:34 +0100 | [diff] [blame] | 174 | static int bcm47xx_wdt_remove(struct platform_device *pdev) |
matthieu castet | 90074dc | 2009-06-05 18:57:18 +0200 | [diff] [blame] | 175 | { |
Hauke Mehrtens | f82dedf | 2013-01-24 18:13:34 +0100 | [diff] [blame] | 176 | struct bcm47xx_wdt *wdt = dev_get_platdata(&pdev->dev); |
matthieu castet | 90074dc | 2009-06-05 18:57:18 +0200 | [diff] [blame] | 177 | |
Hauke Mehrtens | f82dedf | 2013-01-24 18:13:34 +0100 | [diff] [blame] | 178 | if (!wdt) |
| 179 | return -ENXIO; |
| 180 | |
| 181 | watchdog_unregister_device(&wdt->wdd); |
| 182 | unregister_reboot_notifier(&wdt->notifier); |
| 183 | |
| 184 | return 0; |
matthieu castet | 90074dc | 2009-06-05 18:57:18 +0200 | [diff] [blame] | 185 | } |
| 186 | |
Hauke Mehrtens | f82dedf | 2013-01-24 18:13:34 +0100 | [diff] [blame] | 187 | static struct platform_driver bcm47xx_wdt_driver = { |
| 188 | .driver = { |
| 189 | .owner = THIS_MODULE, |
| 190 | .name = "bcm47xx-wdt", |
| 191 | }, |
| 192 | .probe = bcm47xx_wdt_probe, |
| 193 | .remove = bcm47xx_wdt_remove, |
| 194 | }; |
| 195 | |
| 196 | module_platform_driver(bcm47xx_wdt_driver); |
matthieu castet | 90074dc | 2009-06-05 18:57:18 +0200 | [diff] [blame] | 197 | |
| 198 | MODULE_AUTHOR("Aleksandar Radovanovic"); |
Hauke Mehrtens | f82dedf | 2013-01-24 18:13:34 +0100 | [diff] [blame] | 199 | MODULE_AUTHOR("Hauke Mehrtens <hauke@hauke-m.de>"); |
matthieu castet | 90074dc | 2009-06-05 18:57:18 +0200 | [diff] [blame] | 200 | MODULE_DESCRIPTION("Watchdog driver for Broadcom BCM47xx"); |
| 201 | MODULE_LICENSE("GPL"); |