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
b3a9f29b
Commit
b3a9f29b
authored
Feb 17, 2003
by
Alan Cox
Committed by
Linus Torvalds
Feb 17, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] add ide_execute_command but do not use it yet
parent
cf953c1b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
44 additions
and
1 deletion
+44
-1
drivers/ide/ide-iops.c
drivers/ide/ide-iops.c
+44
-1
No files found.
drivers/ide/ide-iops.c
View file @
b3a9f29b
...
@@ -983,6 +983,8 @@ EXPORT_SYMBOL(ide_config_drive_speed);
...
@@ -983,6 +983,8 @@ EXPORT_SYMBOL(ide_config_drive_speed);
* at the appropriate code to handle the next interrupt, and a
* at the appropriate code to handle the next interrupt, and a
* timer is started to prevent us from waiting forever in case
* timer is started to prevent us from waiting forever in case
* something goes wrong (see the ide_timer_expiry() handler later on).
* something goes wrong (see the ide_timer_expiry() handler later on).
*
* See also ide_execute_command
*/
*/
void
ide_set_handler
(
ide_drive_t
*
drive
,
ide_handler_t
*
handler
,
void
ide_set_handler
(
ide_drive_t
*
drive
,
ide_handler_t
*
handler
,
unsigned
int
timeout
,
ide_expiry_t
*
expiry
)
unsigned
int
timeout
,
ide_expiry_t
*
expiry
)
...
@@ -992,7 +994,7 @@ void ide_set_handler (ide_drive_t *drive, ide_handler_t *handler,
...
@@ -992,7 +994,7 @@ void ide_set_handler (ide_drive_t *drive, ide_handler_t *handler,
spin_lock_irqsave
(
&
ide_lock
,
flags
);
spin_lock_irqsave
(
&
ide_lock
,
flags
);
if
(
hwgroup
->
handler
!=
NULL
)
{
if
(
hwgroup
->
handler
!=
NULL
)
{
printk
(
"%s: ide_set_handler: handler not null; "
printk
(
KERN_CRIT
"%s: ide_set_handler: handler not null; "
"old=%p, new=%p
\n
"
,
"old=%p, new=%p
\n
"
,
drive
->
name
,
hwgroup
->
handler
,
handler
);
drive
->
name
,
hwgroup
->
handler
,
handler
);
}
}
...
@@ -1005,6 +1007,47 @@ void ide_set_handler (ide_drive_t *drive, ide_handler_t *handler,
...
@@ -1005,6 +1007,47 @@ void ide_set_handler (ide_drive_t *drive, ide_handler_t *handler,
EXPORT_SYMBOL
(
ide_set_handler
);
EXPORT_SYMBOL
(
ide_set_handler
);
/**
* ide_execute_command - execute an IDE command
* @drive: IDE drive to issue the command against
* @command: command byte to write
* @handler: handler for next phase
* @timeout: timeout for command
* @expiry: handler to run on timeout
*
* Helper function to issue an IDE command. This handles the
* atomicity requirements, command timing and ensures that the
* handler and IRQ setup do not race. All IDE command kick off
* should go via this function or do equivalent locking.
*/
void
ide_execute_command
(
ide_drive_t
*
drive
,
task_ioreg_t
cmd
,
ide_handler_t
*
handler
,
unsigned
timeout
,
ide_expiry_t
*
expiry
)
{
unsigned
long
flags
;
ide_hwgroup_t
*
hwgroup
=
HWGROUP
(
drive
);
ide_hwif_t
*
hwif
=
HWIF
(
drive
);
spin_lock_irqsave
(
&
ide_lock
,
flags
);
if
(
hwgroup
->
handler
)
BUG
();
hwgroup
->
handler
=
handler
;
hwgroup
->
expiry
=
expiry
;
hwgroup
->
timer
.
expires
=
jiffies
+
timeout
;
add_timer
(
&
hwgroup
->
timer
);
hwif
->
OUTBSYNC
(
cmd
,
IDE_COMMAND_REG
);
/* Drive takes 400nS to respond, we must avoid the IRQ being
serviced before that.
FIXME: we could skip this delay with care on non shared
devices
*/
ndelay
(
400
);
spin_unlock_irqrestore
(
&
ide_lock
,
flags
);
}
EXPORT_SYMBOL
(
ide_execute_command
);
/* needed below */
/* needed below */
ide_startstop_t
do_reset1
(
ide_drive_t
*
,
int
);
ide_startstop_t
do_reset1
(
ide_drive_t
*
,
int
);
...
...
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