Skip to content

Commit 42b966f

Browse files
hreineckehtejun
authored andcommitted
libata: Implement NCQ autosense
Some newer devices support NCQ autosense (cf ACS-4), so we should be using it to retrieve the sense code and speed up recovery. Signed-off-by: Hannes Reinecke <hare@suse.de> Signed-off-by: Tejun Heo <tj@kernel.org>
1 parent 1308d7f commit 42b966f

File tree

4 files changed

+28
-2
lines changed

4 files changed

+28
-2
lines changed

drivers/ata/libata-eh.c

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1580,6 +1580,8 @@ static int ata_eh_read_log_10h(struct ata_device *dev,
15801580
tf->hob_lbah = buf[10];
15811581
tf->nsect = buf[12];
15821582
tf->hob_nsect = buf[13];
1583+
if (ata_id_has_ncq_autosense(dev->id))
1584+
tf->auxiliary = buf[14] << 16 | buf[15] << 8 | buf[16];
15831585

15841586
return 0;
15851587
}
@@ -1777,6 +1779,18 @@ void ata_eh_analyze_ncq_error(struct ata_link *link)
17771779
memcpy(&qc->result_tf, &tf, sizeof(tf));
17781780
qc->result_tf.flags = ATA_TFLAG_ISADDR | ATA_TFLAG_LBA | ATA_TFLAG_LBA48;
17791781
qc->err_mask |= AC_ERR_DEV | AC_ERR_NCQ;
1782+
if (qc->result_tf.auxiliary) {
1783+
char sense_key, asc, ascq;
1784+
1785+
sense_key = (qc->result_tf.auxiliary >> 16) & 0xff;
1786+
asc = (qc->result_tf.auxiliary >> 8) & 0xff;
1787+
ascq = qc->result_tf.auxiliary & 0xff;
1788+
ata_dev_dbg(dev, "NCQ Autosense %02x/%02x/%02x\n",
1789+
sense_key, asc, ascq);
1790+
ata_scsi_set_sense(qc->scsicmd, sense_key, asc, ascq);
1791+
qc->flags |= ATA_QCFLAG_SENSE_VALID;
1792+
}
1793+
17801794
ehc->i.err_mask &= ~AC_ERR_DEV;
17811795
}
17821796

@@ -1806,6 +1820,10 @@ static unsigned int ata_eh_analyze_tf(struct ata_queued_cmd *qc,
18061820
return ATA_EH_RESET;
18071821
}
18081822

1823+
/* Set by NCQ autosense */
1824+
if (qc->flags & ATA_QCFLAG_SENSE_VALID)
1825+
return 0;
1826+
18091827
if (stat & (ATA_ERR | ATA_DF))
18101828
qc->err_mask |= AC_ERR_DEV;
18111829
else

drivers/ata/libata-scsi.c

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -270,8 +270,11 @@ DEVICE_ATTR(unload_heads, S_IRUGO | S_IWUSR,
270270
ata_scsi_park_show, ata_scsi_park_store);
271271
EXPORT_SYMBOL_GPL(dev_attr_unload_heads);
272272

273-
static void ata_scsi_set_sense(struct scsi_cmnd *cmd, u8 sk, u8 asc, u8 ascq)
273+
void ata_scsi_set_sense(struct scsi_cmnd *cmd, u8 sk, u8 asc, u8 ascq)
274274
{
275+
if (!cmd)
276+
return;
277+
275278
cmd->result = (DRIVER_SENSE << 24) | SAM_STAT_CHECK_CONDITION;
276279

277280
scsi_build_sense_buffer(0, cmd->sense_buffer, sk, asc, ascq);
@@ -1777,7 +1780,9 @@ static void ata_scsi_qc_complete(struct ata_queued_cmd *qc)
17771780
((cdb[2] & 0x20) || need_sense)) {
17781781
ata_gen_passthru_sense(qc);
17791782
} else {
1780-
if (!need_sense) {
1783+
if (qc->flags & ATA_QCFLAG_SENSE_VALID) {
1784+
cmd->result = SAM_STAT_CHECK_CONDITION;
1785+
} else if (!need_sense) {
17811786
cmd->result = SAM_STAT_GOOD;
17821787
} else {
17831788
/* TODO: decide which descriptor format to use

drivers/ata/libata.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@ extern int ata_scsi_add_hosts(struct ata_host *host,
137137
struct scsi_host_template *sht);
138138
extern void ata_scsi_scan_host(struct ata_port *ap, int sync);
139139
extern int ata_scsi_offline_dev(struct ata_device *dev);
140+
extern void ata_scsi_set_sense(struct scsi_cmnd *cmd, u8 sk, u8 asc, u8 ascq);
140141
extern void ata_scsi_media_change_notify(struct ata_device *dev);
141142
extern void ata_scsi_hotplug(struct work_struct *work);
142143
extern void ata_schedule_scsi_eh(struct Scsi_Host *shost);

include/linux/ata.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -525,6 +525,8 @@ struct ata_bmdma_prd {
525525
#define ata_id_cdb_intr(id) (((id)[ATA_ID_CONFIG] & 0x60) == 0x20)
526526
#define ata_id_has_da(id) ((id)[ATA_ID_SATA_CAPABILITY_2] & (1 << 4))
527527
#define ata_id_has_devslp(id) ((id)[ATA_ID_FEATURE_SUPP] & (1 << 8))
528+
#define ata_id_has_ncq_autosense(id) \
529+
((id)[ATA_ID_FEATURE_SUPP] & (1 << 7))
528530

529531
static inline bool ata_id_has_hipm(const u16 *id)
530532
{

0 commit comments

Comments
 (0)