diff options
author | Samuel Tardieu <sam@rfc1149.net> | 2006-09-07 05:57:00 -0400 |
---|---|---|
committer | Wim Van Sebroeck <wim@iguana.be> | 2006-10-04 16:45:42 -0400 |
commit | 089d8139f4c19c2f4d6984323e9d8a6e77cc92f7 (patch) | |
tree | 295268713f0da29a1bba5361a466042398abca51 /drivers/char/watchdog/w83697hf_wdt.c | |
parent | d46ab596e251e35a7e27c95e4e4d01921f3e579e (diff) |
[WATCHDOG] w83697hf/hg WDT driver - patch 13
This is patch 13 in the series of patches that converts
Marcus Junker's w83697hf watchdog driver to Samuel Tardieau's
w83697hf/hg watchdog driver.
This patch contains following changes:
- Remove wdt_ctrl (it has been replaced with the
w83697hf_write_timeout() function) and redo/clean-up
the start/stop/ping code.
- Make sure that the watchdog is enabled or disabled
When starting or stoping the device (with a call
to w83697hf_set_reg(0x30, ?); ).
Signed-off-by: Samuel Tardieu <sam@rfc1149.net>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to 'drivers/char/watchdog/w83697hf_wdt.c')
-rw-r--r-- | drivers/char/watchdog/w83697hf_wdt.c | 31 |
1 files changed, 22 insertions, 9 deletions
diff --git a/drivers/char/watchdog/w83697hf_wdt.c b/drivers/char/watchdog/w83697hf_wdt.c index b3dcc81abbbc..2b3ce434c196 100644 --- a/drivers/char/watchdog/w83697hf_wdt.c +++ b/drivers/char/watchdog/w83697hf_wdt.c | |||
@@ -156,31 +156,44 @@ w83697hf_init(void) | |||
156 | w83697hf_unselect_wd_register(); | 156 | w83697hf_unselect_wd_register(); |
157 | } | 157 | } |
158 | 158 | ||
159 | static void | 159 | static int |
160 | wdt_ctrl(int timeout) | 160 | wdt_ping(void) |
161 | { | 161 | { |
162 | spin_lock(&io_lock); | 162 | spin_lock(&io_lock); |
163 | |||
164 | w83697hf_select_wdt(); | 163 | w83697hf_select_wdt(); |
165 | 164 | ||
166 | w83697hf_write_timeout(timeout); | 165 | w83697hf_write_timeout(timeout); |
167 | 166 | ||
168 | w83697hf_deselect_wdt(); | 167 | w83697hf_deselect_wdt(); |
169 | |||
170 | spin_unlock(&io_lock); | 168 | spin_unlock(&io_lock); |
169 | return 0; | ||
171 | } | 170 | } |
172 | 171 | ||
173 | static int | 172 | static int |
174 | wdt_ping(void) | 173 | wdt_enable(void) |
175 | { | 174 | { |
176 | wdt_ctrl(timeout); | 175 | spin_lock(&io_lock); |
176 | w83697hf_select_wdt(); | ||
177 | |||
178 | w83697hf_write_timeout(timeout); | ||
179 | w83697hf_set_reg(0x30, 1); /* Enable timer */ | ||
180 | |||
181 | w83697hf_deselect_wdt(); | ||
182 | spin_unlock(&io_lock); | ||
177 | return 0; | 183 | return 0; |
178 | } | 184 | } |
179 | 185 | ||
180 | static int | 186 | static int |
181 | wdt_disable(void) | 187 | wdt_disable(void) |
182 | { | 188 | { |
183 | wdt_ctrl(0); | 189 | spin_lock(&io_lock); |
190 | w83697hf_select_wdt(); | ||
191 | |||
192 | w83697hf_set_reg(0x30, 0); /* Disable timer */ | ||
193 | w83697hf_write_timeout(0); | ||
194 | |||
195 | w83697hf_deselect_wdt(); | ||
196 | spin_unlock(&io_lock); | ||
184 | return 0; | 197 | return 0; |
185 | } | 198 | } |
186 | 199 | ||
@@ -267,7 +280,7 @@ wdt_ioctl(struct inode *inode, struct file *file, unsigned int cmd, | |||
267 | } | 280 | } |
268 | 281 | ||
269 | if (options & WDIOS_ENABLECARD) { | 282 | if (options & WDIOS_ENABLECARD) { |
270 | wdt_ping(); | 283 | wdt_enable(); |
271 | retval = 0; | 284 | retval = 0; |
272 | } | 285 | } |
273 | 286 | ||
@@ -289,7 +302,7 @@ wdt_open(struct inode *inode, struct file *file) | |||
289 | * Activate | 302 | * Activate |
290 | */ | 303 | */ |
291 | 304 | ||
292 | wdt_ping(); | 305 | wdt_enable(); |
293 | return nonseekable_open(inode, file); | 306 | return nonseekable_open(inode, file); |
294 | } | 307 | } |
295 | 308 | ||