aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/watchdog
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2014-10-10 16:40:14 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2014-10-10 16:40:14 -0400
commit40c43269cf8e88a0bdc306c717d1dd5446a6f3b8 (patch)
tree5db4e262ed088f82e5b84757f238a1a11e5062dd /drivers/watchdog
parent93834c6419bccf102a17971c6b114826597a61c5 (diff)
parent3afb57fa721f94206e642f8fda51f5a89dda3dfb (diff)
Merge tag 'hwmon-for-linus-v3.18' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging
Pull hwmon updates from Guenter Roeck: - new driver for menf21bmc. - convert k10temp, smsc47b397, da9052, da9055 to new hwmon API. - register ntc_thermistor driver with thermal subsystem. - add support for F15h M60h to k10temp driver. - add driver for MEN14F021P00 BMC HWMON driver; this required a merge with tag mfd-hwmon-leds-watchdog-v3.18 * tag 'hwmon-for-linus-v3.18' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging: hwmon: (ab8500) Call kernel_power_off instead of pm_power_off hwmon: (menf21bmc) Introduce MEN14F021P00 BMC HWMON driver leds: leds-menf21bmc: Introduce MEN 14F021P00 BMC LED driver watchdog: menf21bmc_wdt: Introduce MEN 14F021P00 BMC Watchdog driver mfd: menf21bmc: Introduce MEN 14F021P00 BMC MFD Core driver hwmon: (ntc_thermistor) Add ntc thermistor to thermal subsystem as a sensor. hwmon: (smsc47b397) Convert to devm_hwmon_device_register_with_groups MAINTAINERS: add entry for the PWM fan driver hwmon: (k10temp) Convert to devm_hwmon_device_register_with_groups hwmon: (k10temp) Add support for F15h M60h hwmon: (da9052) Convert to devm_hwmon_device_register_with_groups hwmon: (da9055) Convert to devm_hwmon_device_register_with_groups hwmon: (ads1015) Use of_property_read_u32 at appropriate places
Diffstat (limited to 'drivers/watchdog')
-rw-r--r--drivers/watchdog/Kconfig10
-rw-r--r--drivers/watchdog/Makefile1
-rw-r--r--drivers/watchdog/menf21bmc_wdt.c203
3 files changed, 214 insertions, 0 deletions
diff --git a/drivers/watchdog/Kconfig b/drivers/watchdog/Kconfig
index 1d1330a78af3..e3d5bf0a5021 100644
--- a/drivers/watchdog/Kconfig
+++ b/drivers/watchdog/Kconfig
@@ -95,6 +95,16 @@ config GPIO_WATCHDOG
95 If you say yes here you get support for watchdog device 95 If you say yes here you get support for watchdog device
96 controlled through GPIO-line. 96 controlled through GPIO-line.
97 97
98config MENF21BMC_WATCHDOG
99 tristate "MEN 14F021P00 BMC Watchdog"
100 depends on MFD_MENF21BMC
101 select WATCHDOG_CORE
102 help
103 Say Y here to include support for the MEN 14F021P00 BMC Watchdog.
104
105 This driver can also be built as a module. If so the module
106 will be called menf21bmc_wdt.
107
98config WM831X_WATCHDOG 108config WM831X_WATCHDOG
99 tristate "WM831x watchdog" 109 tristate "WM831x watchdog"
100 depends on MFD_WM831X 110 depends on MFD_WM831X
diff --git a/drivers/watchdog/Makefile b/drivers/watchdog/Makefile
index 468c3204c3b1..de1701470c14 100644
--- a/drivers/watchdog/Makefile
+++ b/drivers/watchdog/Makefile
@@ -178,3 +178,4 @@ obj-$(CONFIG_WM831X_WATCHDOG) += wm831x_wdt.o
178obj-$(CONFIG_WM8350_WATCHDOG) += wm8350_wdt.o 178obj-$(CONFIG_WM8350_WATCHDOG) += wm8350_wdt.o
179obj-$(CONFIG_MAX63XX_WATCHDOG) += max63xx_wdt.o 179obj-$(CONFIG_MAX63XX_WATCHDOG) += max63xx_wdt.o
180obj-$(CONFIG_SOFT_WATCHDOG) += softdog.o 180obj-$(CONFIG_SOFT_WATCHDOG) += softdog.o
181obj-$(CONFIG_MENF21BMC_WATCHDOG) += menf21bmc_wdt.o
diff --git a/drivers/watchdog/menf21bmc_wdt.c b/drivers/watchdog/menf21bmc_wdt.c
new file mode 100644
index 000000000000..2042874d5ce3
--- /dev/null
+++ b/drivers/watchdog/menf21bmc_wdt.c
@@ -0,0 +1,203 @@
1/*
2 * MEN 14F021P00 Board Management Controller (BMC) Watchdog Driver.
3 *
4 * Copyright (C) 2014 MEN Mikro Elektronik Nuernberg GmbH
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version.
10 */
11
12#include <linux/kernel.h>
13#include <linux/device.h>
14#include <linux/module.h>
15#include <linux/watchdog.h>
16#include <linux/platform_device.h>
17#include <linux/i2c.h>
18
19#define DEVNAME "menf21bmc_wdt"
20
21#define BMC_CMD_WD_ON 0x11
22#define BMC_CMD_WD_OFF 0x12
23#define BMC_CMD_WD_TRIG 0x13
24#define BMC_CMD_WD_TIME 0x14
25#define BMC_CMD_WD_STATE 0x17
26#define BMC_WD_OFF_VAL 0x69
27#define BMC_CMD_RST_RSN 0x92
28
29#define BMC_WD_TIMEOUT_MIN 1 /* in sec */
30#define BMC_WD_TIMEOUT_MAX 6553 /* in sec */
31
32static bool nowayout = WATCHDOG_NOWAYOUT;
33module_param(nowayout, bool, 0);
34MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default="
35 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
36
37struct menf21bmc_wdt {
38 struct watchdog_device wdt;
39 struct i2c_client *i2c_client;
40};
41
42static int menf21bmc_wdt_set_bootstatus(struct menf21bmc_wdt *data)
43{
44 int rst_rsn;
45
46 rst_rsn = i2c_smbus_read_byte_data(data->i2c_client, BMC_CMD_RST_RSN);
47 if (rst_rsn < 0)
48 return rst_rsn;
49
50 if (rst_rsn == 0x02)
51 data->wdt.bootstatus |= WDIOF_CARDRESET;
52 else if (rst_rsn == 0x05)
53 data->wdt.bootstatus |= WDIOF_EXTERN1;
54 else if (rst_rsn == 0x06)
55 data->wdt.bootstatus |= WDIOF_EXTERN2;
56 else if (rst_rsn == 0x0A)
57 data->wdt.bootstatus |= WDIOF_POWERUNDER;
58
59 return 0;
60}
61
62static int menf21bmc_wdt_start(struct watchdog_device *wdt)
63{
64 struct menf21bmc_wdt *drv_data = watchdog_get_drvdata(wdt);
65
66 return i2c_smbus_write_byte(drv_data->i2c_client, BMC_CMD_WD_ON);
67}
68
69static int menf21bmc_wdt_stop(struct watchdog_device *wdt)
70{
71 struct menf21bmc_wdt *drv_data = watchdog_get_drvdata(wdt);
72
73 return i2c_smbus_write_byte_data(drv_data->i2c_client,
74 BMC_CMD_WD_OFF, BMC_WD_OFF_VAL);
75}
76
77static int
78menf21bmc_wdt_settimeout(struct watchdog_device *wdt, unsigned int timeout)
79{
80 int ret;
81 struct menf21bmc_wdt *drv_data = watchdog_get_drvdata(wdt);
82
83 /*
84 * BMC Watchdog does have a resolution of 100ms.
85 * Watchdog API defines the timeout in seconds, so we have to
86 * multiply the value.
87 */
88 ret = i2c_smbus_write_word_data(drv_data->i2c_client,
89 BMC_CMD_WD_TIME, timeout * 10);
90 if (ret < 0)
91 return ret;
92
93 wdt->timeout = timeout;
94
95 return 0;
96}
97
98static int menf21bmc_wdt_ping(struct watchdog_device *wdt)
99{
100 struct menf21bmc_wdt *drv_data = watchdog_get_drvdata(wdt);
101
102 return i2c_smbus_write_byte(drv_data->i2c_client, BMC_CMD_WD_TRIG);
103}
104
105static const struct watchdog_info menf21bmc_wdt_info = {
106 .options = WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING,
107 .identity = DEVNAME,
108};
109
110static const struct watchdog_ops menf21bmc_wdt_ops = {
111 .owner = THIS_MODULE,
112 .start = menf21bmc_wdt_start,
113 .stop = menf21bmc_wdt_stop,
114 .ping = menf21bmc_wdt_ping,
115 .set_timeout = menf21bmc_wdt_settimeout,
116};
117
118static int menf21bmc_wdt_probe(struct platform_device *pdev)
119{
120 int ret, bmc_timeout;
121 struct menf21bmc_wdt *drv_data;
122 struct i2c_client *i2c_client = to_i2c_client(pdev->dev.parent);
123
124 drv_data = devm_kzalloc(&pdev->dev,
125 sizeof(struct menf21bmc_wdt), GFP_KERNEL);
126 if (!drv_data)
127 return -ENOMEM;
128
129 drv_data->wdt.ops = &menf21bmc_wdt_ops;
130 drv_data->wdt.info = &menf21bmc_wdt_info;
131 drv_data->wdt.min_timeout = BMC_WD_TIMEOUT_MIN;
132 drv_data->wdt.max_timeout = BMC_WD_TIMEOUT_MAX;
133 drv_data->i2c_client = i2c_client;
134
135 /*
136 * Get the current wdt timeout value from the BMC because
137 * the BMC will save the value set before if the system restarts.
138 */
139 bmc_timeout = i2c_smbus_read_word_data(drv_data->i2c_client,
140 BMC_CMD_WD_TIME);
141 if (bmc_timeout < 0) {
142 dev_err(&pdev->dev, "failed to get current WDT timeout\n");
143 return bmc_timeout;
144 }
145
146 watchdog_init_timeout(&drv_data->wdt, bmc_timeout / 10, &pdev->dev);
147 watchdog_set_nowayout(&drv_data->wdt, nowayout);
148 watchdog_set_drvdata(&drv_data->wdt, drv_data);
149 platform_set_drvdata(pdev, drv_data);
150
151 ret = menf21bmc_wdt_set_bootstatus(drv_data);
152 if (ret < 0) {
153 dev_err(&pdev->dev, "failed to set Watchdog bootstatus\n");
154 return ret;
155 }
156
157 ret = watchdog_register_device(&drv_data->wdt);
158 if (ret) {
159 dev_err(&pdev->dev, "failed to register Watchdog device\n");
160 return ret;
161 }
162
163 dev_info(&pdev->dev, "MEN 14F021P00 BMC Watchdog device enabled\n");
164
165 return 0;
166}
167
168static int menf21bmc_wdt_remove(struct platform_device *pdev)
169{
170 struct menf21bmc_wdt *drv_data = platform_get_drvdata(pdev);
171
172 dev_warn(&pdev->dev,
173 "Unregister MEN 14F021P00 BMC Watchdog device, board may reset\n");
174
175 watchdog_unregister_device(&drv_data->wdt);
176
177 return 0;
178}
179
180static void menf21bmc_wdt_shutdown(struct platform_device *pdev)
181{
182 struct menf21bmc_wdt *drv_data = platform_get_drvdata(pdev);
183
184 i2c_smbus_write_word_data(drv_data->i2c_client,
185 BMC_CMD_WD_OFF, BMC_WD_OFF_VAL);
186}
187
188static struct platform_driver menf21bmc_wdt = {
189 .driver = {
190 .owner = THIS_MODULE,
191 .name = DEVNAME,
192 },
193 .probe = menf21bmc_wdt_probe,
194 .remove = menf21bmc_wdt_remove,
195 .shutdown = menf21bmc_wdt_shutdown,
196};
197
198module_platform_driver(menf21bmc_wdt);
199
200MODULE_DESCRIPTION("MEN 14F021P00 BMC Watchdog driver");
201MODULE_AUTHOR("Andreas Werner <andreas.werner@men.de>");
202MODULE_LICENSE("GPL v2");
203MODULE_ALIAS("platform:menf21bmc_wdt");