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
Kirill Smelkov
linux
Commits
26b6d438
Commit
26b6d438
authored
Aug 29, 2002
by
Peter Wächtler
Committed by
Linus Torvalds
Aug 29, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] oss/mpu401.c - convert cli to spinlocks
parent
1e963aac
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
35 deletions
+32
-35
sound/oss/mpu401.c
sound/oss/mpu401.c
+32
-35
No files found.
sound/oss/mpu401.c
View file @
26b6d438
...
...
@@ -19,7 +19,7 @@
#include <linux/module.h>
#include <linux/init.h>
#include <linux/spinlock.h>
#define USE_SEQ_MACROS
#define USE_SIMPLE_MACROS
...
...
@@ -68,6 +68,7 @@ struct mpu_config
void
(
*
inputintr
)
(
int
dev
,
unsigned
char
data
);
int
shared_irq
;
int
*
osp
;
spinlock_t
lock
;
};
#define DATAPORT(base) (base)
...
...
@@ -408,11 +409,10 @@ static void mpu401_input_loop(struct mpu_config *devc)
int
busy
;
int
n
;
save_flags
(
flags
);
cli
();
spin_lock_irqsave
(
&
devc
->
lock
,
flags
);
busy
=
devc
->
m_busy
;
devc
->
m_busy
=
1
;
restore_flags
(
flags
);
spin_unlock_irqrestore
(
&
devc
->
lock
,
flags
);
if
(
busy
)
/* Already inside the scanner */
return
;
...
...
@@ -447,7 +447,6 @@ void mpuintr(int irq, void *dev_id, struct pt_regs *dummy)
struct
mpu_config
*
devc
;
int
dev
=
(
int
)
dev_id
;
sti
();
devc
=
&
dev_conf
[
dev
];
if
(
input_avail
(
devc
))
...
...
@@ -559,16 +558,15 @@ static int mpu401_out(int dev, unsigned char midi_byte)
for
(
timeout
=
30000
;
timeout
>
0
&&
!
output_ready
(
devc
);
timeout
--
);
save_flags
(
flags
);
cli
();
spin_lock_irqsave
(
&
devc
->
lock
,
flags
);
if
(
!
output_ready
(
devc
))
{
printk
(
KERN_WARNING
"mpu401: Send data timeout
\n
"
);
restore_flags
(
flags
);
spin_unlock_irqrestore
(
&
devc
->
lock
,
flags
);
return
0
;
}
write_data
(
devc
,
midi_byte
);
restore_flags
(
flags
);
spin_unlock_irqrestore
(
&
devc
->
lock
,
flags
);
return
1
;
}
...
...
@@ -606,13 +604,12 @@ static int mpu401_command(int dev, mpu_command_rec * cmd)
printk
(
KERN_WARNING
"mpu401: Command (0x%x) timeout
\n
"
,
(
int
)
cmd
->
cmd
);
return
-
EIO
;
}
save_flags
(
flags
);
cli
();
spin_lock_irqsave
(
&
devc
->
lock
,
flags
);
if
(
!
output_ready
(
devc
))
{
restore_flags
(
flags
);
goto
retry
;
spin_unlock_irqrestore
(
&
devc
->
lock
,
flags
);
goto
retry
;
}
write_command
(
devc
,
cmd
->
cmd
);
...
...
@@ -636,7 +633,7 @@ static int mpu401_command(int dev, mpu_command_rec * cmd)
}
if
(
!
ok
)
{
restore_flags
(
flags
);
spin_unlock_irqrestore
(
&
devc
->
lock
,
flags
);
return
-
EIO
;
}
if
(
cmd
->
nr_args
)
...
...
@@ -647,7 +644,7 @@ static int mpu401_command(int dev, mpu_command_rec * cmd)
if
(
!
mpu401_out
(
dev
,
cmd
->
data
[
i
]))
{
restore_flags
(
flags
);
spin_unlock_irqrestore
(
&
devc
->
lock
,
flags
);
printk
(
KERN_WARNING
"mpu401: Command (0x%x), parm send failed.
\n
"
,
(
int
)
cmd
->
cmd
);
return
-
EIO
;
}
...
...
@@ -669,12 +666,12 @@ static int mpu401_command(int dev, mpu_command_rec * cmd)
}
if
(
!
ok
)
{
restore_flags
(
flags
);
spin_unlock_irqrestore
(
&
devc
->
lock
,
flags
);
return
-
EIO
;
}
}
}
restore_flags
(
flags
);
spin_unlock_irqrestore
(
&
devc
->
lock
,
flags
);
return
ret
;
}
...
...
@@ -941,16 +938,15 @@ static void mpu401_chk_version(int n, struct mpu_config *devc)
devc
->
version
=
devc
->
revision
=
0
;
save_flags
(
flags
);
cli
();
spin_lock_irqsave
(
&
devc
->
lock
,
flags
);
if
((
tmp
=
mpu_cmd
(
n
,
0xAC
,
0
))
<
0
)
{
restore_flags
(
flags
);
spin_unlock_irqrestore
(
&
devc
->
lock
,
flags
);
return
;
}
if
((
tmp
&
0xf0
)
>
0x20
)
/* Why it's larger than 2.x ??? */
{
restore_flags
(
flags
);
spin_unlock_irqrestore
(
&
devc
->
lock
,
flags
);
return
;
}
devc
->
version
=
tmp
;
...
...
@@ -958,11 +954,11 @@ static void mpu401_chk_version(int n, struct mpu_config *devc)
if
((
tmp
=
mpu_cmd
(
n
,
0xAD
,
0
))
<
0
)
{
devc
->
version
=
0
;
restore_flags
(
flags
);
spin_unlock_irqrestore
(
&
devc
->
lock
,
flags
);
return
;
}
devc
->
revision
=
tmp
;
restore_flags
(
flags
);
spin_unlock_irqrestore
(
&
devc
->
lock
,
flags
);
}
void
attach_mpu401
(
struct
address_info
*
hw_config
,
struct
module
*
owner
)
...
...
@@ -995,6 +991,7 @@ void attach_mpu401(struct address_info *hw_config, struct module *owner)
devc
->
m_state
=
ST_INIT
;
devc
->
shared_irq
=
hw_config
->
always_detect
;
devc
->
irq
=
hw_config
->
irq
;
spin_lock_init
(
&
devc
->
lock
);
if
(
devc
->
irq
<
0
)
{
...
...
@@ -1020,12 +1017,11 @@ void attach_mpu401(struct address_info *hw_config, struct module *owner)
return
;
}
}
save_flags
(
flags
);
cli
();
spin_lock_irqsave
(
&
devc
->
lock
,
flags
);
mpu401_chk_version
(
m
,
devc
);
if
(
devc
->
version
==
0
)
mpu401_chk_version
(
m
,
devc
);
restore_flags
(
flags
);
spin_unlock_irqrestore
(
&
devc
->
lock
,
flags
);
}
request_region
(
hw_config
->
io_base
,
2
,
"mpu401"
);
...
...
@@ -1154,12 +1150,11 @@ static int reset_mpu401(struct mpu_config *devc)
for
(
timeout
=
timeout_limit
*
2
;
timeout
>
0
&&
!
ok
;
timeout
--
)
{
save_flags
(
flags
);
cli
();
spin_lock_irqsave
(
&
devc
->
lock
,
flags
);
if
(
input_avail
(
devc
))
if
(
read_data
(
devc
)
==
MPU_ACK
)
ok
=
1
;
restore_flags
(
flags
);
spin_unlock_irqrestore
(
&
devc
->
lock
,
flags
);
}
}
...
...
@@ -1289,16 +1284,15 @@ static void set_timebase(int midi_dev, int val)
}
static
void
tmr_reset
(
void
)
static
void
tmr_reset
(
struct
mpu_config
*
devc
)
{
unsigned
long
flags
;
save_flags
(
flags
);
cli
();
spin_lock_irqsave
(
&
devc
->
lock
,
flags
);
next_event_time
=
(
unsigned
long
)
-
1
;
prev_event_time
=
0
;
curr_ticks
=
curr_clocks
=
0
;
restore_flags
(
flags
);
spin_unlock_irqrestore
(
&
devc
->
lock
,
flags
);
}
static
void
set_timer_mode
(
int
midi_dev
)
...
...
@@ -1353,7 +1347,9 @@ static void setup_metronome(int midi_dev)
static
int
mpu_start_timer
(
int
midi_dev
)
{
tmr_reset
();
struct
mpu_config
*
devc
=
&
dev_conf
[
midi_dev
];
tmr_reset
(
devc
);
set_timer_mode
(
midi_dev
);
if
(
tmr_running
)
...
...
@@ -1378,11 +1374,12 @@ static int mpu_start_timer(int midi_dev)
static
int
mpu_timer_open
(
int
dev
,
int
mode
)
{
int
midi_dev
=
sound_timer_devs
[
dev
]
->
devlink
;
struct
mpu_config
*
devc
=
&
dev_conf
[
midi_dev
];
if
(
timer_open
)
return
-
EBUSY
;
tmr_reset
();
tmr_reset
(
devc
);
curr_tempo
=
50
;
mpu_cmd
(
midi_dev
,
0xE0
,
50
);
curr_timebase
=
hw_timebase
=
120
;
...
...
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