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
21efb895
Commit
21efb895
authored
Dec 23, 2004
by
James Bottomley
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SCSI: update 53c700 to use the change_queue_type API
Signed-off-by:
James Bottomley
<
James.Bottomley@SteelEye.com
>
parent
f5cf1223
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
76 additions
and
24 deletions
+76
-24
drivers/scsi/53c700.c
drivers/scsi/53c700.c
+55
-23
drivers/scsi/53c700.h
drivers/scsi/53c700.h
+21
-1
No files found.
drivers/scsi/53c700.c
View file @
21efb895
...
@@ -177,6 +177,7 @@ STATIC void NCR_700_chip_reset(struct Scsi_Host *host);
...
@@ -177,6 +177,7 @@ STATIC void NCR_700_chip_reset(struct Scsi_Host *host);
STATIC
int
NCR_700_slave_configure
(
struct
scsi_device
*
SDpnt
);
STATIC
int
NCR_700_slave_configure
(
struct
scsi_device
*
SDpnt
);
STATIC
void
NCR_700_slave_destroy
(
struct
scsi_device
*
SDpnt
);
STATIC
void
NCR_700_slave_destroy
(
struct
scsi_device
*
SDpnt
);
static
int
NCR_700_change_queue_depth
(
struct
scsi_device
*
SDpnt
,
int
depth
);
static
int
NCR_700_change_queue_depth
(
struct
scsi_device
*
SDpnt
,
int
depth
);
static
int
NCR_700_change_queue_type
(
struct
scsi_device
*
SDpnt
,
int
depth
);
STATIC
struct
device_attribute
*
NCR_700_dev_attrs
[];
STATIC
struct
device_attribute
*
NCR_700_dev_attrs
[];
...
@@ -340,6 +341,7 @@ NCR_700_detect(struct scsi_host_template *tpnt,
...
@@ -340,6 +341,7 @@ NCR_700_detect(struct scsi_host_template *tpnt,
tpnt
->
slave_configure
=
NCR_700_slave_configure
;
tpnt
->
slave_configure
=
NCR_700_slave_configure
;
tpnt
->
slave_destroy
=
NCR_700_slave_destroy
;
tpnt
->
slave_destroy
=
NCR_700_slave_destroy
;
tpnt
->
change_queue_depth
=
NCR_700_change_queue_depth
;
tpnt
->
change_queue_depth
=
NCR_700_change_queue_depth
;
tpnt
->
change_queue_type
=
NCR_700_change_queue_type
;
if
(
tpnt
->
name
==
NULL
)
if
(
tpnt
->
name
==
NULL
)
tpnt
->
name
=
"53c700"
;
tpnt
->
name
=
"53c700"
;
...
@@ -926,10 +928,11 @@ process_message(struct Scsi_Host *host, struct NCR_700_Host_Parameters *hostdata
...
@@ -926,10 +928,11 @@ process_message(struct Scsi_Host *host, struct NCR_700_Host_Parameters *hostdata
spi_offset
(
SCp
->
device
->
sdev_target
)
=
0
;
spi_offset
(
SCp
->
device
->
sdev_target
)
=
0
;
NCR_700_set_flag
(
SCp
->
device
,
NCR_700_DEV_NEGOTIATED_SYNC
);
NCR_700_set_flag
(
SCp
->
device
,
NCR_700_DEV_NEGOTIATED_SYNC
);
NCR_700_clear_flag
(
SCp
->
device
,
NCR_700_DEV_BEGIN_SYNC_NEGOTIATION
);
NCR_700_clear_flag
(
SCp
->
device
,
NCR_700_DEV_BEGIN_SYNC_NEGOTIATION
);
}
else
if
(
SCp
!=
NULL
&&
NCR_700_
is_flag_set
(
SCp
->
device
,
NCR_700_DEV_BEGIN_TAG_QUEUEING
)
)
{
}
else
if
(
SCp
!=
NULL
&&
NCR_700_
get_tag_neg_state
(
SCp
->
device
)
==
NCR_700_DURING_TAG_NEGOTIATION
)
{
/* rejected our first simple tag message */
/* rejected our first simple tag message */
printk
(
KERN_WARNING
"scsi%d (%d:%d) Rejected first tag queue attempt, turning off tag queueing
\n
"
,
host
->
host_no
,
pun
,
lun
);
printk
(
KERN_WARNING
"scsi%d (%d:%d) Rejected first tag queue attempt, turning off tag queueing
\n
"
,
host
->
host_no
,
pun
,
lun
);
NCR_700_clear_flag
(
SCp
->
device
,
NCR_700_DEV_BEGIN_TAG_QUEUEING
);
/* we're done negotiating */
NCR_700_set_tag_neg_state
(
SCp
->
device
,
NCR_700_FINISHED_TAG_NEGOTIATION
);
hostdata
->
tag_negotiated
&=
~
(
1
<<
SCp
->
device
->
id
);
hostdata
->
tag_negotiated
&=
~
(
1
<<
SCp
->
device
->
id
);
SCp
->
device
->
tagged_supported
=
0
;
SCp
->
device
->
tagged_supported
=
0
;
scsi_deactivate_tcq
(
SCp
->
device
,
host
->
cmd_per_lun
);
scsi_deactivate_tcq
(
SCp
->
device
,
host
->
cmd_per_lun
);
...
@@ -991,8 +994,11 @@ process_script_interrupt(__u32 dsps, __u32 dsp, struct scsi_cmnd *SCp,
...
@@ -991,8 +994,11 @@ process_script_interrupt(__u32 dsps, __u32 dsp, struct scsi_cmnd *SCp,
if
(
dsps
==
A_GOOD_STATUS_AFTER_STATUS
)
{
if
(
dsps
==
A_GOOD_STATUS_AFTER_STATUS
)
{
DEBUG
((
" COMMAND COMPLETE, status=%02x
\n
"
,
DEBUG
((
" COMMAND COMPLETE, status=%02x
\n
"
,
hostdata
->
status
[
0
]));
hostdata
->
status
[
0
]));
/* OK, if TCQ still on, we know it works */
/* OK, if TCQ still under negotiation, we now know it works */
NCR_700_clear_flag
(
SCp
->
device
,
NCR_700_DEV_BEGIN_TAG_QUEUEING
);
if
(
NCR_700_get_tag_neg_state
(
SCp
->
device
)
==
NCR_700_DURING_TAG_NEGOTIATION
)
NCR_700_set_tag_neg_state
(
SCp
->
device
,
NCR_700_FINISHED_TAG_NEGOTIATION
);
/* check for contingent allegiance contitions */
/* check for contingent allegiance contitions */
if
(
status_byte
(
hostdata
->
status
[
0
])
==
CHECK_CONDITION
||
if
(
status_byte
(
hostdata
->
status
[
0
])
==
CHECK_CONDITION
||
status_byte
(
hostdata
->
status
[
0
])
==
COMMAND_TERMINATED
)
{
status_byte
(
hostdata
->
status
[
0
])
==
COMMAND_TERMINATED
)
{
...
@@ -1813,23 +1819,12 @@ NCR_700_queuecommand(struct scsi_cmnd *SCp, void (*done)(struct scsi_cmnd *))
...
@@ -1813,23 +1819,12 @@ NCR_700_queuecommand(struct scsi_cmnd *SCp, void (*done)(struct scsi_cmnd *))
printk
(
"53c700: scsi%d, command "
,
SCp
->
device
->
host
->
host_no
);
printk
(
"53c700: scsi%d, command "
,
SCp
->
device
->
host
->
host_no
);
scsi_print_command
(
SCp
);
scsi_print_command
(
SCp
);
#endif
#endif
if
(
SCp
->
device
->
tagged_supported
&&
!
SCp
->
device
->
simple_tags
&&
(
hostdata
->
tag_negotiated
&
(
1
<<
SCp
->
device
->
id
))
==
0
&&
NCR_700_is_flag_clear
(
SCp
->
device
,
NCR_700_DEV_BEGIN_TAG_QUEUEING
))
{
/* upper layer has indicated tags are supported. We don't
* necessarily believe it yet.
*
* NOTE: There is a danger here: the mid layer supports
* tag queuing per LUN. We only support it per PUN because
* of potential reselection issues */
scsi_activate_tcq
(
SCp
->
device
,
NCR_700_DEFAULT_TAGS
);
}
if
(
blk_rq_tagged
(
SCp
->
request
)
if
(
blk_rq_tagged
(
SCp
->
request
)
&&
(
hostdata
->
tag_negotiated
&
(
1
<<
SCp
->
device
->
id
))
==
0
)
{
&&
(
hostdata
->
tag_negotiated
&
(
1
<<
SCp
->
device
->
id
))
==
0
printk
(
KERN_INFO
"scsi%d: (%d:%d) Enabling Tag Command Queuing
\n
"
,
SCp
->
device
->
host
->
host_no
,
SCp
->
device
->
id
,
SCp
->
device
->
lun
);
&&
NCR_700_get_tag_neg_state
(
SCp
->
device
)
==
NCR_700_START_TAG_NEGOTIATION
)
{
printk
(
KERN_ERR
"scsi%d: (%d:%d) Enabling Tag Command Queuing
\n
"
,
SCp
->
device
->
host
->
host_no
,
SCp
->
device
->
id
,
SCp
->
device
->
lun
);
hostdata
->
tag_negotiated
|=
(
1
<<
SCp
->
device
->
id
);
hostdata
->
tag_negotiated
|=
(
1
<<
SCp
->
device
->
id
);
NCR_700_set_
flag
(
SCp
->
device
,
NCR_700_DEV_BEGIN_TAG_QUEUEING
);
NCR_700_set_
tag_neg_state
(
SCp
->
device
,
NCR_700_DURING_TAG_NEGOTIATION
);
}
}
/* here we may have to process an untagged command. The gate
/* here we may have to process an untagged command. The gate
...
@@ -1844,7 +1839,8 @@ NCR_700_queuecommand(struct scsi_cmnd *SCp, void (*done)(struct scsi_cmnd *))
...
@@ -1844,7 +1839,8 @@ NCR_700_queuecommand(struct scsi_cmnd *SCp, void (*done)(struct scsi_cmnd *))
hostdata
->
tag_negotiated
&=
~
(
1
<<
SCp
->
device
->
id
);
hostdata
->
tag_negotiated
&=
~
(
1
<<
SCp
->
device
->
id
);
}
}
if
((
hostdata
->
tag_negotiated
&
(
1
<<
SCp
->
device
->
id
)))
{
if
((
hostdata
->
tag_negotiated
&
(
1
<<
SCp
->
device
->
id
))
&&
scsi_get_tag_type
(
SCp
->
device
))
{
slot
->
tag
=
SCp
->
request
->
tag
;
slot
->
tag
=
SCp
->
request
->
tag
;
DEBUG
((
"53c700 %d:%d:%d, sending out tag %d, slot %p
\n
"
,
DEBUG
((
"53c700 %d:%d:%d, sending out tag %d, slot %p
\n
"
,
SCp
->
device
->
host
->
host_no
,
SCp
->
device
->
id
,
SCp
->
device
->
lun
,
slot
->
tag
,
SCp
->
device
->
host
->
host_no
,
SCp
->
device
->
id
,
SCp
->
device
->
lun
,
slot
->
tag
,
...
@@ -2082,7 +2078,9 @@ NCR_700_slave_configure(struct scsi_device *SDp)
...
@@ -2082,7 +2078,9 @@ NCR_700_slave_configure(struct scsi_device *SDp)
/* to do here: allocate memory; build a queue_full list */
/* to do here: allocate memory; build a queue_full list */
if
(
SDp
->
tagged_supported
)
{
if
(
SDp
->
tagged_supported
)
{
/* do TCQ stuff here */
scsi_set_tag_type
(
SDp
,
MSG_ORDERED_TAG
);
scsi_activate_tcq
(
SDp
,
NCR_700_DEFAULT_TAGS
);
NCR_700_set_tag_neg_state
(
SDp
,
NCR_700_START_TAG_NEGOTIATION
);
}
else
{
}
else
{
/* initialise to default depth */
/* initialise to default depth */
scsi_adjust_queue_depth
(
SDp
,
0
,
SDp
->
host
->
cmd_per_lun
);
scsi_adjust_queue_depth
(
SDp
,
0
,
SDp
->
host
->
cmd_per_lun
);
...
@@ -2107,13 +2105,47 @@ NCR_700_slave_destroy(struct scsi_device *SDp)
...
@@ -2107,13 +2105,47 @@ NCR_700_slave_destroy(struct scsi_device *SDp)
static
int
static
int
NCR_700_change_queue_depth
(
struct
scsi_device
*
SDp
,
int
depth
)
NCR_700_change_queue_depth
(
struct
scsi_device
*
SDp
,
int
depth
)
{
{
if
(
depth
>
NCR_700_MAX_TAGS
)
if
(
depth
>
NCR_700_MAX_TAGS
)
depth
=
NCR_700_MAX_TAGS
;
depth
=
NCR_700_MAX_TAGS
;
scsi_adjust_queue_depth
(
SDp
,
MSG_ORDERED_TAG
,
depth
);
scsi_adjust_queue_depth
(
SDp
,
scsi_get_tag_type
(
SDp
),
depth
);
return
depth
;
return
depth
;
}
}
static
int
NCR_700_change_queue_type
(
struct
scsi_device
*
SDp
,
int
tag_type
)
{
int
change_tag
=
((
tag_type
==
0
&&
scsi_get_tag_type
(
SDp
)
!=
0
)
||
(
tag_type
!=
0
&&
scsi_get_tag_type
(
SDp
)
==
0
));
struct
NCR_700_Host_Parameters
*
hostdata
=
(
struct
NCR_700_Host_Parameters
*
)
SDp
->
host
->
hostdata
[
0
];
scsi_set_tag_type
(
SDp
,
tag_type
);
/* We have a global (per target) flag to track whether TCQ is
* enabled, so we'll be turning it off for the entire target here.
* our tag algorithm will fail if we mix tagged and untagged commands,
* so quiesce the device before doing this */
if
(
change_tag
)
scsi_target_quiesce
(
SDp
->
sdev_target
);
if
(
!
tag_type
)
{
/* shift back to the default unqueued number of commands
* (the user can still raise this) */
scsi_deactivate_tcq
(
SDp
,
SDp
->
host
->
cmd_per_lun
);
hostdata
->
tag_negotiated
&=
~
(
1
<<
SDp
->
id
);
}
else
{
/* Here, we cleared the negotiation flag above, so this
* will force the driver to renegotiate */
scsi_activate_tcq
(
SDp
,
SDp
->
queue_depth
);
if
(
change_tag
)
NCR_700_set_tag_neg_state
(
SDp
,
NCR_700_START_TAG_NEGOTIATION
);
}
if
(
change_tag
)
scsi_target_resume
(
SDp
->
sdev_target
);
return
tag_type
;
}
static
ssize_t
static
ssize_t
NCR_700_show_active_tags
(
struct
device
*
dev
,
char
*
buf
)
NCR_700_show_active_tags
(
struct
device
*
dev
,
char
*
buf
)
{
{
...
...
drivers/scsi/53c700.h
View file @
21efb895
...
@@ -102,7 +102,6 @@ struct NCR_700_SG_List {
...
@@ -102,7 +102,6 @@ struct NCR_700_SG_List {
* 18 device supports tag queueing */
* 18 device supports tag queueing */
#define NCR_700_DEV_NEGOTIATED_SYNC (1<<16)
#define NCR_700_DEV_NEGOTIATED_SYNC (1<<16)
#define NCR_700_DEV_BEGIN_SYNC_NEGOTIATION (1<<17)
#define NCR_700_DEV_BEGIN_SYNC_NEGOTIATION (1<<17)
#define NCR_700_DEV_BEGIN_TAG_QUEUEING (1<<18)
#define NCR_700_DEV_PRINT_SYNC_NEGOTIATION (1<<19)
#define NCR_700_DEV_PRINT_SYNC_NEGOTIATION (1<<19)
static
inline
void
static
inline
void
...
@@ -140,6 +139,27 @@ NCR_700_clear_flag(struct scsi_device *SDp, __u32 flag)
...
@@ -140,6 +139,27 @@ NCR_700_clear_flag(struct scsi_device *SDp, __u32 flag)
spi_flags
(
SDp
->
sdev_target
)
&=
~
flag
;
spi_flags
(
SDp
->
sdev_target
)
&=
~
flag
;
}
}
enum
NCR_700_tag_neg_state
{
NCR_700_START_TAG_NEGOTIATION
=
0
,
NCR_700_DURING_TAG_NEGOTIATION
=
1
,
NCR_700_FINISHED_TAG_NEGOTIATION
=
2
,
};
static
inline
enum
NCR_700_tag_neg_state
NCR_700_get_tag_neg_state
(
struct
scsi_device
*
SDp
)
{
return
(
enum
NCR_700_tag_neg_state
)((
spi_flags
(
SDp
->
sdev_target
)
>>
20
)
&
0x3
);
}
static
inline
void
NCR_700_set_tag_neg_state
(
struct
scsi_device
*
SDp
,
enum
NCR_700_tag_neg_state
state
)
{
/* clear the slot */
spi_flags
(
SDp
->
sdev_target
)
&=
~
(
0x3
<<
20
);
spi_flags
(
SDp
->
sdev_target
)
|=
((
__u32
)
state
)
<<
20
;
}
struct
NCR_700_command_slot
{
struct
NCR_700_command_slot
{
struct
NCR_700_SG_List
SG
[
NCR_700_SG_SEGMENTS
+
1
];
struct
NCR_700_SG_List
SG
[
NCR_700_SG_SEGMENTS
+
1
];
struct
NCR_700_SG_List
*
pSG
;
struct
NCR_700_SG_List
*
pSG
;
...
...
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