Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
e948c126
Commit
e948c126
authored
May 30, 2002
by
Dave Jones
Committed by
Linus Torvalds
May 30, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] add spinlocking to w83877f_wdt driver
parent
928098c9
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
10 deletions
+29
-10
drivers/char/w83877f_wdt.c
drivers/char/w83877f_wdt.c
+29
-10
No files found.
drivers/char/w83877f_wdt.c
View file @
e948c126
...
...
@@ -13,9 +13,10 @@
* any of this software. This material is provided "AS-IS" in
* the hope that it may be useful for others.
*
* (c) Copyright 2001 Scott Jennings <
management
@oro.net>
* (c) Copyright 2001 Scott Jennings <
linuxdrivers
@oro.net>
*
* 4/19 - 2001 [Initial revision]
* 9/27 - 2001 Added spinlocking
*
*
* Theory of operation:
...
...
@@ -88,8 +89,9 @@
static
void
wdt_timer_ping
(
unsigned
long
);
static
struct
timer_list
timer
;
static
unsigned
long
next_heartbeat
;
static
int
wdt_is_open
;
static
unsigned
long
wdt_is_open
;
static
int
wdt_expect_close
;
static
spinlock_t
wdt_spinlock
;
/*
* Whack the dog
...
...
@@ -102,11 +104,18 @@ static void wdt_timer_ping(unsigned long data)
*/
if
(
time_before
(
jiffies
,
next_heartbeat
))
{
/* Ping the WDT */
spin_lock
(
&
wdt_spinlock
);
/* Ping the WDT by reading from WDT_PING */
inb_p
(
WDT_PING
);
/* Re-set the timer interval */
timer
.
expires
=
jiffies
+
WDT_INTERVAL
;
add_timer
(
&
timer
);
spin_unlock
(
&
wdt_spinlock
);
}
else
{
printk
(
OUR_NAME
": Heartbeat lost! Will not ping the watchdog
\n
"
);
}
...
...
@@ -118,19 +127,24 @@ static void wdt_timer_ping(unsigned long data)
static
void
wdt_change
(
int
writeval
)
{
unsigned
long
flags
;
spin_lock_irqsave
(
&
wdt_spinlock
,
flags
);
/* buy some time */
inb_p
(
WDT_PING
);
/* make W83877F available */
outb_p
(
ENABLE_W83877F
,
ENABLE_W83877F_PORT
);
outb_p
(
ENABLE_W83877F
,
ENABLE_W83877F_PORT
);
outb_p
(
ENABLE_W83877F
,
ENABLE_W83877F_PORT
);
outb_p
(
ENABLE_W83877F
,
ENABLE_W83877F_PORT
);
/* enable watchdog */
outb_p
(
WDT_REGISTER
,
ENABLE_W83877F_PORT
);
outb_p
(
writeval
,
ENABLE_W83877F_PORT
+
1
);
outb_p
(
WDT_REGISTER
,
ENABLE_W83877F_PORT
);
outb_p
(
writeval
,
ENABLE_W83877F_PORT
+
1
);
/* lock the W8387FF away */
outb_p
(
DISABLE_W83877F
,
ENABLE_W83877F_PORT
);
outb_p
(
DISABLE_W83877F
,
ENABLE_W83877F_PORT
);
spin_unlock_irqrestore
(
&
wdt_spinlock
,
flags
);
}
static
void
wdt_startup
(
void
)
...
...
@@ -200,10 +214,10 @@ static int fop_open(struct inode * inode, struct file * file)
{
case
WATCHDOG_MINOR
:
/* Just in case we're already talking to someone... */
if
(
wdt_is_open
)
if
(
test_and_set_bit
(
0
,
&
wdt_is_open
))
{
return
-
EBUSY
;
}
/* Good, fire up the show */
wdt_is_open
=
1
;
wdt_startup
();
return
0
;
...
...
@@ -305,6 +319,8 @@ static int __init w83877f_wdt_init(void)
{
int
rc
=
-
EBUSY
;
spin_lock_init
(
&
wdt_spinlock
);
if
(
!
request_region
(
ENABLE_W83877F_PORT
,
2
,
"W83877F WDT"
))
goto
err_out
;
if
(
!
request_region
(
WDT_PING
,
1
,
"W8387FF WDT"
))
...
...
@@ -339,4 +355,7 @@ static int __init w83877f_wdt_init(void)
module_init
(
w83877f_wdt_init
);
module_exit
(
w83877f_wdt_unload
);
MODULE_AUTHOR
(
"Scott and Bill Jennings"
);
MODULE_DESCRIPTION
(
"Driver for watchdog timer in w83877f chip"
);
MODULE_LICENSE
(
"GPL"
);
EXPORT_NO_SYMBOLS
;
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment