2019-05-27 14:55:05 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2006-10-19 05:43:37 +08:00
|
|
|
/*
|
|
|
|
* Support for SATA devices on Serial Attached SCSI (SAS) controllers
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 IBM Corporation
|
|
|
|
*
|
|
|
|
* Written by: Darrick J. Wong <djwong@us.ibm.com>, IBM Corporation
|
|
|
|
*/
|
|
|
|
|
2007-07-23 02:15:55 +08:00
|
|
|
#include <linux/scatterlist.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 16:04:11 +08:00
|
|
|
#include <linux/slab.h>
|
2011-12-04 17:06:24 +08:00
|
|
|
#include <linux/async.h>
|
2011-12-09 15:20:44 +08:00
|
|
|
#include <linux/export.h>
|
2007-07-23 02:15:55 +08:00
|
|
|
|
2006-10-19 05:43:37 +08:00
|
|
|
#include <scsi/sas_ata.h>
|
|
|
|
#include "sas_internal.h"
|
|
|
|
#include <scsi/scsi_host.h>
|
|
|
|
#include <scsi/scsi_device.h>
|
|
|
|
#include <scsi/scsi_tcq.h>
|
|
|
|
#include <scsi/scsi.h>
|
|
|
|
#include <scsi/scsi_transport.h>
|
|
|
|
#include <scsi/scsi_transport_sas.h>
|
|
|
|
#include "../scsi_sas_internal.h"
|
2007-01-30 17:18:58 +08:00
|
|
|
#include "../scsi_transport_api.h"
|
|
|
|
#include <scsi/scsi_eh.h>
|
2006-10-19 05:43:37 +08:00
|
|
|
|
|
|
|
static enum ata_completion_errors sas_to_ata_err(struct task_status_struct *ts)
|
|
|
|
{
|
|
|
|
/* Cheesy attempt to translate SAS errors into ATA. Hah! */
|
|
|
|
|
|
|
|
/* transport error */
|
|
|
|
if (ts->resp == SAS_TASK_UNDELIVERED)
|
|
|
|
return AC_ERR_ATA_BUS;
|
|
|
|
|
|
|
|
/* ts->resp == SAS_TASK_COMPLETE */
|
|
|
|
/* task delivered, what happened afterwards? */
|
|
|
|
switch (ts->stat) {
|
|
|
|
case SAS_DEV_NO_RESPONSE:
|
|
|
|
return AC_ERR_TIMEOUT;
|
|
|
|
|
|
|
|
case SAS_INTERRUPTED:
|
|
|
|
case SAS_PHY_DOWN:
|
|
|
|
case SAS_NAK_R_ERR:
|
|
|
|
return AC_ERR_ATA_BUS;
|
|
|
|
|
|
|
|
|
|
|
|
case SAS_DATA_UNDERRUN:
|
|
|
|
/*
|
|
|
|
* Some programs that use the taskfile interface
|
|
|
|
* (smartctl in particular) can cause underrun
|
|
|
|
* problems. Ignore these errors, perhaps at our
|
|
|
|
* peril.
|
|
|
|
*/
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case SAS_DATA_OVERRUN:
|
|
|
|
case SAS_QUEUE_FULL:
|
|
|
|
case SAS_DEVICE_UNKNOWN:
|
|
|
|
case SAS_SG_ERR:
|
|
|
|
return AC_ERR_INVALID;
|
|
|
|
|
|
|
|
case SAS_OPEN_TO:
|
|
|
|
case SAS_OPEN_REJECT:
|
2018-11-15 18:20:31 +08:00
|
|
|
pr_warn("%s: Saw error %d. What to do?\n",
|
|
|
|
__func__, ts->stat);
|
2006-10-19 05:43:37 +08:00
|
|
|
return AC_ERR_OTHER;
|
|
|
|
|
2011-01-23 22:16:24 +08:00
|
|
|
case SAM_STAT_CHECK_CONDITION:
|
2006-10-19 05:43:37 +08:00
|
|
|
case SAS_ABORTED_TASK:
|
|
|
|
return AC_ERR_DEV;
|
|
|
|
|
|
|
|
case SAS_PROTO_RESPONSE:
|
|
|
|
/* This means the ending_fis has the error
|
|
|
|
* value; return 0 here to collect it */
|
|
|
|
return 0;
|
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void sas_ata_task_done(struct sas_task *task)
|
|
|
|
{
|
|
|
|
struct ata_queued_cmd *qc = task->uldd_task;
|
2011-11-29 03:29:20 +08:00
|
|
|
struct domain_device *dev = task->dev;
|
2006-10-19 05:43:37 +08:00
|
|
|
struct task_status_struct *stat = &task->task_status;
|
|
|
|
struct ata_task_resp *resp = (struct ata_task_resp *)stat->buf;
|
2011-11-29 03:29:20 +08:00
|
|
|
struct sas_ha_struct *sas_ha = dev->port->ha;
|
2006-10-19 05:43:37 +08:00
|
|
|
enum ata_completion_errors ac;
|
2007-01-30 17:18:35 +08:00
|
|
|
unsigned long flags;
|
2011-05-08 19:27:01 +08:00
|
|
|
struct ata_link *link;
|
2011-11-29 04:08:22 +08:00
|
|
|
struct ata_port *ap;
|
2006-10-19 05:43:37 +08:00
|
|
|
|
2011-11-29 03:29:20 +08:00
|
|
|
spin_lock_irqsave(&dev->done_lock, flags);
|
|
|
|
if (test_bit(SAS_HA_FROZEN, &sas_ha->state))
|
|
|
|
task = NULL;
|
|
|
|
else if (qc && qc->scsicmd)
|
|
|
|
ASSIGN_SAS_TASK(qc->scsicmd, NULL);
|
|
|
|
spin_unlock_irqrestore(&dev->done_lock, flags);
|
|
|
|
|
|
|
|
/* check if libsas-eh got to the task before us */
|
|
|
|
if (unlikely(!task))
|
|
|
|
return;
|
|
|
|
|
2007-01-30 17:18:41 +08:00
|
|
|
if (!qc)
|
|
|
|
goto qc_already_gone;
|
|
|
|
|
2011-11-29 04:08:22 +08:00
|
|
|
ap = qc->ap;
|
|
|
|
link = &ap->link;
|
|
|
|
|
|
|
|
spin_lock_irqsave(ap->lock, flags);
|
|
|
|
/* check if we lost the race with libata/sas_ata_post_internal() */
|
|
|
|
if (unlikely(ap->pflags & ATA_PFLAG_FROZEN)) {
|
|
|
|
spin_unlock_irqrestore(ap->lock, flags);
|
|
|
|
if (qc->scsicmd)
|
|
|
|
goto qc_already_gone;
|
|
|
|
else {
|
|
|
|
/* if eh is not involved and the port is frozen then the
|
|
|
|
* ata internal abort process has taken responsibility
|
|
|
|
* for this sas_task
|
|
|
|
*/
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2007-01-30 17:18:41 +08:00
|
|
|
|
2011-01-23 22:16:24 +08:00
|
|
|
if (stat->stat == SAS_PROTO_RESPONSE || stat->stat == SAM_STAT_GOOD ||
|
|
|
|
((stat->stat == SAM_STAT_CHECK_CONDITION &&
|
2014-11-05 20:08:20 +08:00
|
|
|
dev->sata_dev.class == ATA_DEV_ATAPI))) {
|
2012-06-23 01:52:34 +08:00
|
|
|
memcpy(dev->sata_dev.fis, resp->ending_fis, ATA_RESP_FIS_SIZE);
|
2011-05-08 19:27:01 +08:00
|
|
|
|
|
|
|
if (!link->sactive) {
|
2012-06-23 01:52:34 +08:00
|
|
|
qc->err_mask |= ac_err_mask(dev->sata_dev.fis[2]);
|
2011-05-08 19:27:01 +08:00
|
|
|
} else {
|
2012-06-23 01:52:34 +08:00
|
|
|
link->eh_info.err_mask |= ac_err_mask(dev->sata_dev.fis[2]);
|
2011-05-08 19:27:01 +08:00
|
|
|
if (unlikely(link->eh_info.err_mask))
|
|
|
|
qc->flags |= ATA_QCFLAG_FAILED;
|
|
|
|
}
|
2011-01-23 22:16:24 +08:00
|
|
|
} else {
|
2006-10-19 05:43:37 +08:00
|
|
|
ac = sas_to_ata_err(stat);
|
|
|
|
if (ac) {
|
2018-11-15 18:20:31 +08:00
|
|
|
pr_warn("%s: SAS error %x\n", __func__, stat->stat);
|
2006-10-19 05:43:37 +08:00
|
|
|
/* We saw a SAS error. Send a vague error. */
|
2011-05-08 19:27:01 +08:00
|
|
|
if (!link->sactive) {
|
|
|
|
qc->err_mask = ac;
|
|
|
|
} else {
|
|
|
|
link->eh_info.err_mask |= AC_ERR_DEV;
|
|
|
|
qc->flags |= ATA_QCFLAG_FAILED;
|
|
|
|
}
|
|
|
|
|
2024-06-12 13:13:20 +08:00
|
|
|
dev->sata_dev.fis[2] = ATA_ERR | ATA_DRDY; /* tf status */
|
|
|
|
dev->sata_dev.fis[3] = ATA_ABORTED; /* tf error */
|
2006-10-19 05:43:37 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-01-30 17:18:41 +08:00
|
|
|
qc->lldd_task = NULL;
|
2006-10-19 05:43:37 +08:00
|
|
|
ata_qc_complete(qc);
|
2011-11-29 04:08:22 +08:00
|
|
|
spin_unlock_irqrestore(ap->lock, flags);
|
2007-01-30 17:18:35 +08:00
|
|
|
|
2007-01-30 17:18:41 +08:00
|
|
|
qc_already_gone:
|
2006-10-19 05:43:37 +08:00
|
|
|
sas_free_task(task);
|
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned int sas_ata_qc_issue(struct ata_queued_cmd *qc)
|
|
|
|
{
|
|
|
|
struct sas_task *task;
|
2011-11-18 09:59:50 +08:00
|
|
|
struct scatterlist *sg;
|
|
|
|
int ret = AC_ERR_SYSTEM;
|
|
|
|
unsigned int si, xfer = 0;
|
|
|
|
struct ata_port *ap = qc->ap;
|
|
|
|
struct domain_device *dev = ap->private_data;
|
2006-10-19 05:43:37 +08:00
|
|
|
struct sas_ha_struct *sas_ha = dev->port->ha;
|
|
|
|
struct Scsi_Host *host = sas_ha->core.shost;
|
|
|
|
struct sas_internal *i = to_sas_internal(host->transportt);
|
2011-11-18 09:59:50 +08:00
|
|
|
|
2018-06-15 00:18:09 +08:00
|
|
|
/* TODO: we should try to remove that unlock */
|
2011-11-18 09:59:50 +08:00
|
|
|
spin_unlock(ap->lock);
|
2006-10-19 05:43:37 +08:00
|
|
|
|
2010-10-02 04:55:47 +08:00
|
|
|
/* If the device fell off, no sense in issuing commands */
|
2012-01-07 16:52:39 +08:00
|
|
|
if (test_bit(SAS_DEV_GONE, &dev->state))
|
2011-11-18 09:59:50 +08:00
|
|
|
goto out;
|
2010-10-02 04:55:47 +08:00
|
|
|
|
2006-10-19 05:43:37 +08:00
|
|
|
task = sas_alloc_task(GFP_ATOMIC);
|
|
|
|
if (!task)
|
2011-11-18 09:59:50 +08:00
|
|
|
goto out;
|
2006-10-19 05:43:37 +08:00
|
|
|
task->dev = dev;
|
|
|
|
task->task_proto = SAS_PROTOCOL_STP;
|
|
|
|
task->task_done = sas_ata_task_done;
|
|
|
|
|
|
|
|
if (qc->tf.command == ATA_CMD_FPDMA_WRITE ||
|
2016-04-25 18:45:44 +08:00
|
|
|
qc->tf.command == ATA_CMD_FPDMA_READ ||
|
|
|
|
qc->tf.command == ATA_CMD_FPDMA_RECV ||
|
2016-04-25 18:45:45 +08:00
|
|
|
qc->tf.command == ATA_CMD_FPDMA_SEND ||
|
|
|
|
qc->tf.command == ATA_CMD_NCQ_NON_DATA) {
|
2006-10-19 05:43:37 +08:00
|
|
|
/* Need to zero out the tag libata assigned us */
|
|
|
|
qc->tf.nsect = 0;
|
|
|
|
}
|
|
|
|
|
2013-10-23 09:35:19 +08:00
|
|
|
ata_tf_to_fis(&qc->tf, qc->dev->link->pmp, 1, (u8 *)&task->ata_task.fis);
|
2006-10-19 05:43:37 +08:00
|
|
|
task->uldd_task = qc;
|
2007-11-27 18:28:53 +08:00
|
|
|
if (ata_is_atapi(qc->tf.protocol)) {
|
2006-10-19 05:43:37 +08:00
|
|
|
memcpy(task->ata_task.atapi_packet, qc->cdb, qc->dev->cdb_len);
|
2008-02-19 18:36:56 +08:00
|
|
|
task->total_xfer_len = qc->nbytes;
|
|
|
|
task->num_scatter = qc->n_elem;
|
2024-06-11 20:26:44 +08:00
|
|
|
task->data_dir = qc->dma_dir;
|
2024-06-12 13:13:20 +08:00
|
|
|
} else if (!ata_is_data(qc->tf.protocol)) {
|
2024-06-11 20:26:44 +08:00
|
|
|
task->data_dir = DMA_NONE;
|
2006-10-19 05:43:37 +08:00
|
|
|
} else {
|
2007-12-05 15:43:11 +08:00
|
|
|
for_each_sg(qc->sg, sg, qc->n_elem, si)
|
2017-03-16 23:07:28 +08:00
|
|
|
xfer += sg_dma_len(sg);
|
2006-10-19 05:43:37 +08:00
|
|
|
|
|
|
|
task->total_xfer_len = xfer;
|
2007-12-05 15:43:11 +08:00
|
|
|
task->num_scatter = si;
|
2024-06-11 20:26:44 +08:00
|
|
|
task->data_dir = qc->dma_dir;
|
2006-10-19 05:43:37 +08:00
|
|
|
}
|
2007-12-05 15:43:11 +08:00
|
|
|
task->scatter = qc->sg;
|
2006-10-19 05:43:37 +08:00
|
|
|
task->ata_task.retry_count = 1;
|
|
|
|
task->task_state_flags = SAS_TASK_STATE_PENDING;
|
2007-01-30 17:18:41 +08:00
|
|
|
qc->lldd_task = task;
|
2006-10-19 05:43:37 +08:00
|
|
|
|
2016-07-14 08:05:44 +08:00
|
|
|
task->ata_task.use_ncq = ata_is_ncq(qc->tf.protocol);
|
|
|
|
task->ata_task.dma_xfer = ata_is_dma(qc->tf.protocol);
|
2006-10-19 05:43:37 +08:00
|
|
|
|
2007-01-30 17:18:55 +08:00
|
|
|
if (qc->scsicmd)
|
|
|
|
ASSIGN_SAS_TASK(qc->scsicmd, task);
|
|
|
|
|
2014-11-05 17:36:28 +08:00
|
|
|
ret = i->dft->lldd_execute_task(task, GFP_ATOMIC);
|
2011-11-18 09:59:50 +08:00
|
|
|
if (ret) {
|
2018-11-15 18:20:31 +08:00
|
|
|
pr_debug("lldd_execute_task returned: %d\n", ret);
|
2006-10-19 05:43:37 +08:00
|
|
|
|
2007-01-30 17:18:55 +08:00
|
|
|
if (qc->scsicmd)
|
|
|
|
ASSIGN_SAS_TASK(qc->scsicmd, NULL);
|
2006-10-19 05:43:37 +08:00
|
|
|
sas_free_task(task);
|
2016-07-06 17:00:25 +08:00
|
|
|
qc->lldd_task = NULL;
|
2011-11-18 09:59:50 +08:00
|
|
|
ret = AC_ERR_SYSTEM;
|
2006-10-19 05:43:37 +08:00
|
|
|
}
|
|
|
|
|
2011-11-18 09:59:50 +08:00
|
|
|
out:
|
|
|
|
spin_lock(ap->lock);
|
|
|
|
return ret;
|
2006-10-19 05:43:37 +08:00
|
|
|
}
|
|
|
|
|
2008-04-07 21:47:20 +08:00
|
|
|
static bool sas_ata_qc_fill_rtf(struct ata_queued_cmd *qc)
|
|
|
|
{
|
|
|
|
struct domain_device *dev = qc->ap->private_data;
|
|
|
|
|
2012-06-23 01:52:34 +08:00
|
|
|
ata_tf_from_fis(dev->sata_dev.fis, &qc->result_tf);
|
2008-04-07 21:47:20 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-11-18 09:59:54 +08:00
|
|
|
static struct sas_internal *dev_to_sas_internal(struct domain_device *dev)
|
|
|
|
{
|
|
|
|
return to_sas_internal(dev->port->ha->core.shost->transportt);
|
|
|
|
}
|
|
|
|
|
2014-11-05 20:08:20 +08:00
|
|
|
static int sas_get_ata_command_set(struct domain_device *dev);
|
2012-01-13 09:57:35 +08:00
|
|
|
|
|
|
|
int sas_get_ata_info(struct domain_device *dev, struct ex_phy *phy)
|
|
|
|
{
|
|
|
|
if (phy->attached_tproto & SAS_PROTOCOL_STP)
|
|
|
|
dev->tproto = phy->attached_tproto;
|
|
|
|
if (phy->attached_sata_dev)
|
2013-05-08 05:44:06 +08:00
|
|
|
dev->tproto |= SAS_SATA_DEV;
|
2012-01-13 09:57:35 +08:00
|
|
|
|
2013-05-08 05:44:06 +08:00
|
|
|
if (phy->attached_dev_type == SAS_SATA_PENDING)
|
|
|
|
dev->dev_type = SAS_SATA_PENDING;
|
2012-01-13 09:57:35 +08:00
|
|
|
else {
|
|
|
|
int res;
|
|
|
|
|
2013-05-08 05:44:06 +08:00
|
|
|
dev->dev_type = SAS_SATA_DEV;
|
2012-01-13 09:57:35 +08:00
|
|
|
res = sas_get_report_phy_sata(dev->parent, phy->phy_id,
|
|
|
|
&dev->sata_dev.rps_resp);
|
|
|
|
if (res) {
|
2019-04-12 16:57:57 +08:00
|
|
|
pr_debug("report phy sata to %016llx:%02d returned 0x%x\n",
|
2018-11-15 18:20:31 +08:00
|
|
|
SAS_ADDR(dev->parent->sas_addr),
|
|
|
|
phy->phy_id, res);
|
2012-01-13 09:57:35 +08:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
memcpy(dev->frame_rcvd, &dev->sata_dev.rps_resp.rps.fis,
|
|
|
|
sizeof(struct dev_to_host_fis));
|
2014-11-05 20:08:20 +08:00
|
|
|
dev->sata_dev.class = sas_get_ata_command_set(dev);
|
2012-01-13 09:57:35 +08:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int sas_ata_clear_pending(struct domain_device *dev, struct ex_phy *phy)
|
|
|
|
{
|
|
|
|
int res;
|
|
|
|
|
|
|
|
/* we weren't pending, so successfully end the reset sequence now */
|
2013-05-08 05:44:06 +08:00
|
|
|
if (dev->dev_type != SAS_SATA_PENDING)
|
2012-01-13 09:57:35 +08:00
|
|
|
return 1;
|
|
|
|
|
|
|
|
/* hmmm, if this succeeds do we need to repost the domain_device to the
|
|
|
|
* lldd so it can pick up new parameters?
|
|
|
|
*/
|
|
|
|
res = sas_get_ata_info(dev, phy);
|
|
|
|
if (res)
|
|
|
|
return 0; /* retry */
|
|
|
|
else
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2024-06-12 13:13:20 +08:00
|
|
|
int smp_ata_check_ready_type(struct ata_link *link)
|
|
|
|
{
|
|
|
|
struct domain_device *dev = link->ap->private_data;
|
|
|
|
struct sas_phy *phy = sas_get_local_phy(dev);
|
|
|
|
struct domain_device *ex_dev = dev->parent;
|
|
|
|
enum sas_device_type type = SAS_PHY_UNUSED;
|
|
|
|
u8 sas_addr[SAS_ADDR_SIZE];
|
|
|
|
int res;
|
|
|
|
|
|
|
|
res = sas_get_phy_attached_dev(ex_dev, phy->number, sas_addr, &type);
|
|
|
|
sas_put_local_phy(phy);
|
|
|
|
if (res)
|
|
|
|
return res;
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case SAS_SATA_PENDING:
|
|
|
|
return 0;
|
|
|
|
case SAS_END_DEVICE:
|
|
|
|
return 1;
|
|
|
|
default:
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(smp_ata_check_ready_type);
|
|
|
|
|
2011-11-18 09:59:54 +08:00
|
|
|
static int smp_ata_check_ready(struct ata_link *link)
|
2006-10-19 05:43:37 +08:00
|
|
|
{
|
2011-11-18 09:59:54 +08:00
|
|
|
int res;
|
2011-01-23 23:44:12 +08:00
|
|
|
struct ata_port *ap = link->ap;
|
2006-10-19 05:43:37 +08:00
|
|
|
struct domain_device *dev = ap->private_data;
|
2011-11-18 09:59:54 +08:00
|
|
|
struct domain_device *ex_dev = dev->parent;
|
2011-12-22 13:33:17 +08:00
|
|
|
struct sas_phy *phy = sas_get_local_phy(dev);
|
2012-01-13 09:57:35 +08:00
|
|
|
struct ex_phy *ex_phy = &ex_dev->ex_dev.ex_phy[phy->number];
|
2006-10-19 05:43:37 +08:00
|
|
|
|
2012-01-13 09:57:35 +08:00
|
|
|
res = sas_ex_phy_discover(ex_dev, phy->number);
|
2011-12-22 13:33:17 +08:00
|
|
|
sas_put_local_phy(phy);
|
2012-01-13 09:57:35 +08:00
|
|
|
|
2011-11-18 09:59:54 +08:00
|
|
|
/* break the wait early if the expander is unreachable,
|
|
|
|
* otherwise keep polling
|
|
|
|
*/
|
|
|
|
if (res == -ECOMM)
|
|
|
|
return res;
|
2012-01-13 09:57:35 +08:00
|
|
|
if (res != SMP_RESP_FUNC_ACC)
|
2011-11-18 09:59:54 +08:00
|
|
|
return 0;
|
2012-01-13 09:57:35 +08:00
|
|
|
|
|
|
|
switch (ex_phy->attached_dev_type) {
|
2013-05-08 05:44:06 +08:00
|
|
|
case SAS_SATA_PENDING:
|
2012-01-13 09:57:35 +08:00
|
|
|
return 0;
|
2013-05-08 05:44:06 +08:00
|
|
|
case SAS_END_DEVICE:
|
2012-01-13 09:57:35 +08:00
|
|
|
if (ex_phy->attached_sata_dev)
|
|
|
|
return sas_ata_clear_pending(dev, ex_phy);
|
2017-08-26 04:46:39 +08:00
|
|
|
/* fall through */
|
2012-01-13 09:57:35 +08:00
|
|
|
default:
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
2011-11-18 09:59:54 +08:00
|
|
|
}
|
2006-10-19 05:43:37 +08:00
|
|
|
|
2011-11-18 09:59:54 +08:00
|
|
|
static int local_ata_check_ready(struct ata_link *link)
|
|
|
|
{
|
|
|
|
struct ata_port *ap = link->ap;
|
|
|
|
struct domain_device *dev = ap->private_data;
|
|
|
|
struct sas_internal *i = dev_to_sas_internal(dev);
|
|
|
|
|
|
|
|
if (i->dft->lldd_ata_check_ready)
|
|
|
|
return i->dft->lldd_ata_check_ready(dev);
|
|
|
|
else {
|
|
|
|
/* lldd's that don't implement 'ready' checking get the
|
|
|
|
* old default behavior of not coordinating reset
|
|
|
|
* recovery with libata
|
|
|
|
*/
|
|
|
|
return 1;
|
2011-01-23 23:44:12 +08:00
|
|
|
}
|
2011-11-18 09:59:54 +08:00
|
|
|
}
|
2006-10-19 05:43:37 +08:00
|
|
|
|
2012-01-17 03:56:50 +08:00
|
|
|
static int sas_ata_printk(const char *level, const struct domain_device *ddev,
|
|
|
|
const char *fmt, ...)
|
|
|
|
{
|
|
|
|
struct ata_port *ap = ddev->sata_dev.ap;
|
|
|
|
struct device *dev = &ddev->rphy->dev;
|
|
|
|
struct va_format vaf;
|
|
|
|
va_list args;
|
|
|
|
int r;
|
|
|
|
|
|
|
|
va_start(args, fmt);
|
|
|
|
|
|
|
|
vaf.fmt = fmt;
|
|
|
|
vaf.va = &args;
|
|
|
|
|
2018-11-15 18:20:29 +08:00
|
|
|
r = printk("%s" SAS_FMT "ata%u: %s: %pV",
|
2012-01-17 03:56:50 +08:00
|
|
|
level, ap->print_id, dev_name(dev), &vaf);
|
|
|
|
|
|
|
|
va_end(args);
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2024-06-12 13:13:20 +08:00
|
|
|
static int sas_ata_wait_after_reset(struct domain_device *dev, unsigned long deadline)
|
2011-11-18 09:59:54 +08:00
|
|
|
{
|
2024-06-12 13:13:20 +08:00
|
|
|
struct sata_device *sata_dev = &dev->sata_dev;
|
2011-11-18 09:59:54 +08:00
|
|
|
int (*check_ready)(struct ata_link *link);
|
2024-06-12 13:13:20 +08:00
|
|
|
struct ata_port *ap = sata_dev->ap;
|
|
|
|
struct ata_link *link = &ap->link;
|
|
|
|
struct sas_phy *phy;
|
|
|
|
int ret;
|
2011-11-18 09:59:54 +08:00
|
|
|
|
2011-12-22 13:33:17 +08:00
|
|
|
phy = sas_get_local_phy(dev);
|
2011-11-18 09:59:54 +08:00
|
|
|
if (scsi_is_sas_phy_local(phy))
|
|
|
|
check_ready = local_ata_check_ready;
|
|
|
|
else
|
|
|
|
check_ready = smp_ata_check_ready;
|
2011-12-22 13:33:17 +08:00
|
|
|
sas_put_local_phy(phy);
|
2011-11-18 09:59:54 +08:00
|
|
|
|
|
|
|
ret = ata_wait_after_reset(link, deadline, check_ready);
|
|
|
|
if (ret && ret != -EAGAIN)
|
2012-01-17 03:56:50 +08:00
|
|
|
sas_ata_printk(KERN_ERR, dev, "reset failed (errno=%d)\n", ret);
|
2011-11-18 09:59:54 +08:00
|
|
|
|
2024-06-12 13:13:20 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int sas_ata_hard_reset(struct ata_link *link, unsigned int *class,
|
|
|
|
unsigned long deadline)
|
|
|
|
{
|
|
|
|
struct ata_port *ap = link->ap;
|
|
|
|
struct domain_device *dev = ap->private_data;
|
|
|
|
struct sas_internal *i = dev_to_sas_internal(dev);
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = i->dft->lldd_I_T_nexus_reset(dev);
|
|
|
|
if (ret == -ENODEV)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
if (ret != TMF_RESP_FUNC_COMPLETE)
|
|
|
|
sas_ata_printk(KERN_DEBUG, dev, "Unable to reset ata device?\n");
|
|
|
|
|
|
|
|
ret = sas_ata_wait_after_reset(dev, deadline);
|
|
|
|
|
2014-11-05 20:08:20 +08:00
|
|
|
*class = dev->sata_dev.class;
|
2006-10-19 05:43:37 +08:00
|
|
|
|
|
|
|
ap->cbl = ATA_CBL_SATA;
|
2011-01-23 23:44:12 +08:00
|
|
|
return ret;
|
2006-10-19 05:43:37 +08:00
|
|
|
}
|
|
|
|
|
2011-11-29 04:08:22 +08:00
|
|
|
/*
|
|
|
|
* notify the lldd to forget the sas_task for this internal ata command
|
|
|
|
* that bypasses scsi-eh
|
|
|
|
*/
|
|
|
|
static void sas_ata_internal_abort(struct sas_task *task)
|
|
|
|
{
|
2011-11-18 09:59:54 +08:00
|
|
|
struct sas_internal *si = dev_to_sas_internal(task->dev);
|
2011-11-29 04:08:22 +08:00
|
|
|
unsigned long flags;
|
|
|
|
int res;
|
|
|
|
|
|
|
|
spin_lock_irqsave(&task->task_state_lock, flags);
|
|
|
|
if (task->task_state_flags & SAS_TASK_STATE_ABORTED ||
|
|
|
|
task->task_state_flags & SAS_TASK_STATE_DONE) {
|
|
|
|
spin_unlock_irqrestore(&task->task_state_lock, flags);
|
2018-11-15 18:20:31 +08:00
|
|
|
pr_debug("%s: Task %p already finished.\n", __func__, task);
|
2011-11-29 04:08:22 +08:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
task->task_state_flags |= SAS_TASK_STATE_ABORTED;
|
|
|
|
spin_unlock_irqrestore(&task->task_state_lock, flags);
|
|
|
|
|
|
|
|
res = si->dft->lldd_abort_task(task);
|
|
|
|
|
|
|
|
spin_lock_irqsave(&task->task_state_lock, flags);
|
|
|
|
if (task->task_state_flags & SAS_TASK_STATE_DONE ||
|
|
|
|
res == TMF_RESP_FUNC_COMPLETE) {
|
|
|
|
spin_unlock_irqrestore(&task->task_state_lock, flags);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* XXX we are not prepared to deal with ->lldd_abort_task()
|
|
|
|
* failures. TODO: lldds need to unconditionally forget about
|
|
|
|
* aborted ata tasks, otherwise we (likely) leak the sas task
|
|
|
|
* here
|
|
|
|
*/
|
2018-11-15 18:20:31 +08:00
|
|
|
pr_warn("%s: Task %p leaked.\n", __func__, task);
|
2011-11-29 04:08:22 +08:00
|
|
|
|
|
|
|
if (!(task->task_state_flags & SAS_TASK_STATE_DONE))
|
|
|
|
task->task_state_flags &= ~SAS_TASK_STATE_ABORTED;
|
|
|
|
spin_unlock_irqrestore(&task->task_state_lock, flags);
|
|
|
|
|
|
|
|
return;
|
|
|
|
out:
|
|
|
|
sas_free_task(task);
|
|
|
|
}
|
|
|
|
|
2006-10-19 05:43:37 +08:00
|
|
|
static void sas_ata_post_internal(struct ata_queued_cmd *qc)
|
|
|
|
{
|
|
|
|
if (qc->flags & ATA_QCFLAG_FAILED)
|
|
|
|
qc->err_mask |= AC_ERR_OTHER;
|
|
|
|
|
2007-01-30 17:18:41 +08:00
|
|
|
if (qc->err_mask) {
|
|
|
|
/*
|
2011-11-29 04:08:22 +08:00
|
|
|
* Find the sas_task and kill it. By this point, libata
|
|
|
|
* has decided to kill the qc and has frozen the port.
|
|
|
|
* In this state sas_ata_task_done() will no longer free
|
|
|
|
* the sas_task, so we need to notify the lldd (via
|
|
|
|
* ->lldd_abort_task) that the task is dead and free it
|
|
|
|
* ourselves.
|
2007-01-30 17:18:41 +08:00
|
|
|
*/
|
|
|
|
struct sas_task *task = qc->lldd_task;
|
|
|
|
|
|
|
|
qc->lldd_task = NULL;
|
2011-11-30 06:54:28 +08:00
|
|
|
if (!task)
|
|
|
|
return;
|
|
|
|
task->uldd_task = NULL;
|
|
|
|
sas_ata_internal_abort(task);
|
2007-01-30 17:18:41 +08:00
|
|
|
}
|
2006-10-19 05:43:37 +08:00
|
|
|
}
|
|
|
|
|
2011-11-18 09:59:52 +08:00
|
|
|
|
|
|
|
static void sas_ata_set_dmamode(struct ata_port *ap, struct ata_device *ata_dev)
|
|
|
|
{
|
|
|
|
struct domain_device *dev = ap->private_data;
|
2011-11-18 09:59:54 +08:00
|
|
|
struct sas_internal *i = dev_to_sas_internal(dev);
|
2011-11-18 09:59:52 +08:00
|
|
|
|
|
|
|
if (i->dft->lldd_ata_set_dmamode)
|
|
|
|
i->dft->lldd_ata_set_dmamode(dev);
|
|
|
|
}
|
|
|
|
|
2012-06-22 14:25:27 +08:00
|
|
|
static void sas_ata_sched_eh(struct ata_port *ap)
|
|
|
|
{
|
|
|
|
struct domain_device *dev = ap->private_data;
|
|
|
|
struct sas_ha_struct *ha = dev->port->ha;
|
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
spin_lock_irqsave(&ha->lock, flags);
|
|
|
|
if (!test_and_set_bit(SAS_DEV_EH_PENDING, &dev->state))
|
|
|
|
ha->eh_active++;
|
|
|
|
ata_std_sched_eh(ap);
|
|
|
|
spin_unlock_irqrestore(&ha->lock, flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
void sas_ata_end_eh(struct ata_port *ap)
|
|
|
|
{
|
|
|
|
struct domain_device *dev = ap->private_data;
|
|
|
|
struct sas_ha_struct *ha = dev->port->ha;
|
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
spin_lock_irqsave(&ha->lock, flags);
|
|
|
|
if (test_and_clear_bit(SAS_DEV_EH_PENDING, &dev->state))
|
|
|
|
ha->eh_active--;
|
|
|
|
spin_unlock_irqrestore(&ha->lock, flags);
|
|
|
|
}
|
|
|
|
|
2006-10-19 05:43:37 +08:00
|
|
|
static struct ata_port_operations sas_sata_ops = {
|
2011-01-23 23:44:12 +08:00
|
|
|
.prereset = ata_std_prereset,
|
|
|
|
.hardreset = sas_ata_hard_reset,
|
|
|
|
.postreset = ata_std_postreset,
|
|
|
|
.error_handler = ata_std_error_handler,
|
2006-10-19 05:43:37 +08:00
|
|
|
.post_internal_cmd = sas_ata_post_internal,
|
2010-09-04 06:13:03 +08:00
|
|
|
.qc_defer = ata_std_qc_defer,
|
2006-10-19 05:43:37 +08:00
|
|
|
.qc_prep = ata_noop_qc_prep,
|
|
|
|
.qc_issue = sas_ata_qc_issue,
|
2008-04-07 21:47:20 +08:00
|
|
|
.qc_fill_rtf = sas_ata_qc_fill_rtf,
|
2006-10-19 05:43:37 +08:00
|
|
|
.port_start = ata_sas_port_start,
|
|
|
|
.port_stop = ata_sas_port_stop,
|
2011-11-18 09:59:52 +08:00
|
|
|
.set_dmamode = sas_ata_set_dmamode,
|
2012-06-22 14:25:27 +08:00
|
|
|
.sched_eh = sas_ata_sched_eh,
|
|
|
|
.end_eh = sas_ata_end_eh,
|
2006-10-19 05:43:37 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static struct ata_port_info sata_port_info = {
|
2015-03-13 01:32:18 +08:00
|
|
|
.flags = ATA_FLAG_SATA | ATA_FLAG_PIO_DMA | ATA_FLAG_NCQ |
|
2016-04-25 18:45:44 +08:00
|
|
|
ATA_FLAG_SAS_HOST | ATA_FLAG_FPDMA_AUX,
|
2011-01-22 01:32:01 +08:00
|
|
|
.pio_mask = ATA_PIO4,
|
|
|
|
.mwdma_mask = ATA_MWDMA2,
|
2006-10-19 05:43:37 +08:00
|
|
|
.udma_mask = ATA_UDMA6,
|
|
|
|
.port_ops = &sas_sata_ops
|
|
|
|
};
|
|
|
|
|
2012-03-22 12:09:07 +08:00
|
|
|
int sas_ata_init(struct domain_device *found_dev)
|
2006-10-19 05:43:37 +08:00
|
|
|
{
|
2012-01-19 12:47:01 +08:00
|
|
|
struct sas_ha_struct *ha = found_dev->port->ha;
|
|
|
|
struct Scsi_Host *shost = ha->core.shost;
|
2018-05-10 11:05:16 +08:00
|
|
|
struct ata_host *ata_host;
|
2006-10-19 05:43:37 +08:00
|
|
|
struct ata_port *ap;
|
2012-03-22 12:09:07 +08:00
|
|
|
int rc;
|
2006-10-19 05:43:37 +08:00
|
|
|
|
2018-05-10 11:05:16 +08:00
|
|
|
ata_host = kzalloc(sizeof(*ata_host), GFP_KERNEL);
|
|
|
|
if (!ata_host) {
|
2018-11-15 18:20:31 +08:00
|
|
|
pr_err("ata host alloc failed.\n");
|
2018-05-10 11:05:16 +08:00
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
ata_host_init(ata_host, ha->dev, &sas_sata_ops);
|
|
|
|
|
|
|
|
ap = ata_sas_port_alloc(ata_host, &sata_port_info, shost);
|
2006-10-19 05:43:37 +08:00
|
|
|
if (!ap) {
|
2018-11-15 18:20:31 +08:00
|
|
|
pr_err("ata_sas_port_alloc failed.\n");
|
2018-05-10 11:05:16 +08:00
|
|
|
rc = -ENODEV;
|
|
|
|
goto free_host;
|
2006-10-19 05:43:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
ap->private_data = found_dev;
|
|
|
|
ap->cbl = ATA_CBL_SATA;
|
|
|
|
ap->scsi_host = shost;
|
2012-03-22 12:09:07 +08:00
|
|
|
rc = ata_sas_port_init(ap);
|
2018-05-10 11:05:16 +08:00
|
|
|
if (rc)
|
|
|
|
goto destroy_port;
|
|
|
|
|
|
|
|
rc = ata_sas_tport_add(ata_host->dev, ap);
|
|
|
|
if (rc)
|
|
|
|
goto destroy_port;
|
|
|
|
|
|
|
|
found_dev->sata_dev.ata_host = ata_host;
|
2006-10-19 05:43:37 +08:00
|
|
|
found_dev->sata_dev.ap = ap;
|
|
|
|
|
|
|
|
return 0;
|
2018-05-10 11:05:16 +08:00
|
|
|
|
|
|
|
destroy_port:
|
|
|
|
ata_sas_port_destroy(ap);
|
|
|
|
free_host:
|
|
|
|
ata_host_put(ata_host);
|
|
|
|
return rc;
|
2006-10-19 05:43:37 +08:00
|
|
|
}
|
2007-01-30 17:18:58 +08:00
|
|
|
|
|
|
|
void sas_ata_task_abort(struct sas_task *task)
|
|
|
|
{
|
|
|
|
struct ata_queued_cmd *qc = task->uldd_task;
|
|
|
|
struct completion *waiting;
|
|
|
|
|
|
|
|
/* Bounce SCSI-initiated commands to the SCSI EH */
|
|
|
|
if (qc->scsicmd) {
|
2008-09-14 20:55:09 +08:00
|
|
|
blk_abort_request(qc->scsicmd->request);
|
2007-01-30 17:18:58 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Internal command, fake a timeout and complete. */
|
|
|
|
qc->flags &= ~ATA_QCFLAG_ACTIVE;
|
|
|
|
qc->flags |= ATA_QCFLAG_FAILED;
|
|
|
|
qc->err_mask |= AC_ERR_TIMEOUT;
|
|
|
|
waiting = qc->private_data;
|
|
|
|
complete(waiting);
|
|
|
|
}
|
2007-07-23 02:15:55 +08:00
|
|
|
|
2014-11-05 20:08:20 +08:00
|
|
|
static int sas_get_ata_command_set(struct domain_device *dev)
|
2007-07-23 02:15:55 +08:00
|
|
|
{
|
|
|
|
struct dev_to_host_fis *fis =
|
|
|
|
(struct dev_to_host_fis *) dev->frame_rcvd;
|
2014-11-05 20:08:20 +08:00
|
|
|
struct ata_taskfile tf;
|
2007-07-23 02:15:55 +08:00
|
|
|
|
2013-05-08 05:44:06 +08:00
|
|
|
if (dev->dev_type == SAS_SATA_PENDING)
|
2014-11-05 20:08:20 +08:00
|
|
|
return ATA_DEV_UNKNOWN;
|
|
|
|
|
|
|
|
ata_tf_from_fis((const u8 *)fis, &tf);
|
2012-01-13 09:57:35 +08:00
|
|
|
|
2014-11-05 20:08:20 +08:00
|
|
|
return ata_dev_classify(&tf);
|
2007-07-23 02:15:55 +08:00
|
|
|
}
|
|
|
|
|
2012-01-19 12:47:01 +08:00
|
|
|
void sas_probe_sata(struct asd_sas_port *port)
|
|
|
|
{
|
|
|
|
struct domain_device *dev, *n;
|
|
|
|
|
|
|
|
mutex_lock(&port->ha->disco_mutex);
|
2012-03-22 12:09:07 +08:00
|
|
|
list_for_each_entry(dev, &port->disco_list, disco_list_node) {
|
2012-01-19 12:47:01 +08:00
|
|
|
if (!dev_is_sata(dev))
|
|
|
|
continue;
|
|
|
|
|
2012-03-22 12:09:07 +08:00
|
|
|
ata_sas_async_probe(dev->sata_dev.ap);
|
2012-01-19 12:47:01 +08:00
|
|
|
}
|
|
|
|
mutex_unlock(&port->ha->disco_mutex);
|
|
|
|
|
|
|
|
list_for_each_entry_safe(dev, n, &port->disco_list, disco_list_node) {
|
|
|
|
if (!dev_is_sata(dev))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
sas_ata_wait_eh(dev);
|
|
|
|
|
|
|
|
/* if libata could not bring the link up, don't surface
|
|
|
|
* the device
|
|
|
|
*/
|
2018-09-25 10:56:53 +08:00
|
|
|
if (!ata_dev_enabled(sas_to_ata_dev(dev)))
|
2012-01-19 12:47:01 +08:00
|
|
|
sas_fail_probe(dev, __func__, -ENODEV);
|
|
|
|
}
|
2012-06-22 14:41:51 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
libata, libsas: kill pm_result and related cleanup
Tejun says:
"At least for libata, worrying about suspend/resume failures don't make
whole lot of sense. If suspend failed, just proceed with suspend. If
the device can't be woken up afterwards, that's that. There isn't
anything we could have done differently anyway. The same for resume, if
spinup fails, the device is dud and the following commands will invoke
EH actions and will eventually fail. Again, there really isn't any
*choice* to make. Just making sure the errors are handled gracefully
(ie. don't crash) and the following commands are handled correctly
should be enough."
The only libata user that actually cares about the result from a suspend
operation is libsas. However, it only cares about whether queuing a new
operation collides with an in-flight one. All libsas does with the
error is retry, but we can just let libata wait for the previous
operation before continuing.
Other cleanups include:
1/ Unifying all ata port pm operations on an ata_port_pm_ prefix
2/ Marking all ata port pm helper routines as returning void, only
ata_port_pm_ entry points need to fake a 0 return value.
3/ Killing ata_port_{suspend|resume}_common() in favor of calling
ata_port_request_pm() directly
4/ Killing the wrappers that just do a to_ata_port() conversion
5/ Clearly marking the entry points that do async operations with an
_async suffix.
Reference: http://marc.info/?l=linux-scsi&m=138995409532286&w=2
Cc: Phillip Susi <psusi@ubuntu.com>
Cc: Alan Stern <stern@rowland.harvard.edu>
Suggested-by: Tejun Heo <tj@kernel.org>
Signed-off-by: Todd Brandt <todd.e.brandt@intel.com>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
2014-03-15 04:52:48 +08:00
|
|
|
static void sas_ata_flush_pm_eh(struct asd_sas_port *port, const char *func)
|
2012-06-22 14:41:51 +08:00
|
|
|
{
|
|
|
|
struct domain_device *dev, *n;
|
|
|
|
|
|
|
|
list_for_each_entry_safe(dev, n, &port->dev_list, dev_list_node) {
|
|
|
|
if (!dev_is_sata(dev))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
sas_ata_wait_eh(dev);
|
|
|
|
|
|
|
|
/* if libata failed to power manage the device, tear it down */
|
|
|
|
if (ata_dev_disabled(sas_to_ata_dev(dev)))
|
|
|
|
sas_fail_probe(dev, func, -ENODEV);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void sas_suspend_sata(struct asd_sas_port *port)
|
|
|
|
{
|
|
|
|
struct domain_device *dev;
|
|
|
|
|
|
|
|
mutex_lock(&port->ha->disco_mutex);
|
|
|
|
list_for_each_entry(dev, &port->dev_list, dev_list_node) {
|
|
|
|
struct sata_device *sata;
|
|
|
|
|
|
|
|
if (!dev_is_sata(dev))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
sata = &dev->sata_dev;
|
|
|
|
if (sata->ap->pm_mesg.event == PM_EVENT_SUSPEND)
|
|
|
|
continue;
|
|
|
|
|
libata, libsas: kill pm_result and related cleanup
Tejun says:
"At least for libata, worrying about suspend/resume failures don't make
whole lot of sense. If suspend failed, just proceed with suspend. If
the device can't be woken up afterwards, that's that. There isn't
anything we could have done differently anyway. The same for resume, if
spinup fails, the device is dud and the following commands will invoke
EH actions and will eventually fail. Again, there really isn't any
*choice* to make. Just making sure the errors are handled gracefully
(ie. don't crash) and the following commands are handled correctly
should be enough."
The only libata user that actually cares about the result from a suspend
operation is libsas. However, it only cares about whether queuing a new
operation collides with an in-flight one. All libsas does with the
error is retry, but we can just let libata wait for the previous
operation before continuing.
Other cleanups include:
1/ Unifying all ata port pm operations on an ata_port_pm_ prefix
2/ Marking all ata port pm helper routines as returning void, only
ata_port_pm_ entry points need to fake a 0 return value.
3/ Killing ata_port_{suspend|resume}_common() in favor of calling
ata_port_request_pm() directly
4/ Killing the wrappers that just do a to_ata_port() conversion
5/ Clearly marking the entry points that do async operations with an
_async suffix.
Reference: http://marc.info/?l=linux-scsi&m=138995409532286&w=2
Cc: Phillip Susi <psusi@ubuntu.com>
Cc: Alan Stern <stern@rowland.harvard.edu>
Suggested-by: Tejun Heo <tj@kernel.org>
Signed-off-by: Todd Brandt <todd.e.brandt@intel.com>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
2014-03-15 04:52:48 +08:00
|
|
|
ata_sas_port_suspend(sata->ap);
|
2012-06-22 14:41:51 +08:00
|
|
|
}
|
|
|
|
mutex_unlock(&port->ha->disco_mutex);
|
|
|
|
|
libata, libsas: kill pm_result and related cleanup
Tejun says:
"At least for libata, worrying about suspend/resume failures don't make
whole lot of sense. If suspend failed, just proceed with suspend. If
the device can't be woken up afterwards, that's that. There isn't
anything we could have done differently anyway. The same for resume, if
spinup fails, the device is dud and the following commands will invoke
EH actions and will eventually fail. Again, there really isn't any
*choice* to make. Just making sure the errors are handled gracefully
(ie. don't crash) and the following commands are handled correctly
should be enough."
The only libata user that actually cares about the result from a suspend
operation is libsas. However, it only cares about whether queuing a new
operation collides with an in-flight one. All libsas does with the
error is retry, but we can just let libata wait for the previous
operation before continuing.
Other cleanups include:
1/ Unifying all ata port pm operations on an ata_port_pm_ prefix
2/ Marking all ata port pm helper routines as returning void, only
ata_port_pm_ entry points need to fake a 0 return value.
3/ Killing ata_port_{suspend|resume}_common() in favor of calling
ata_port_request_pm() directly
4/ Killing the wrappers that just do a to_ata_port() conversion
5/ Clearly marking the entry points that do async operations with an
_async suffix.
Reference: http://marc.info/?l=linux-scsi&m=138995409532286&w=2
Cc: Phillip Susi <psusi@ubuntu.com>
Cc: Alan Stern <stern@rowland.harvard.edu>
Suggested-by: Tejun Heo <tj@kernel.org>
Signed-off-by: Todd Brandt <todd.e.brandt@intel.com>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
2014-03-15 04:52:48 +08:00
|
|
|
sas_ata_flush_pm_eh(port, __func__);
|
2012-06-22 14:41:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void sas_resume_sata(struct asd_sas_port *port)
|
|
|
|
{
|
|
|
|
struct domain_device *dev;
|
|
|
|
|
|
|
|
mutex_lock(&port->ha->disco_mutex);
|
|
|
|
list_for_each_entry(dev, &port->dev_list, dev_list_node) {
|
|
|
|
struct sata_device *sata;
|
|
|
|
|
|
|
|
if (!dev_is_sata(dev))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
sata = &dev->sata_dev;
|
|
|
|
if (sata->ap->pm_mesg.event == PM_EVENT_ON)
|
|
|
|
continue;
|
|
|
|
|
libata, libsas: kill pm_result and related cleanup
Tejun says:
"At least for libata, worrying about suspend/resume failures don't make
whole lot of sense. If suspend failed, just proceed with suspend. If
the device can't be woken up afterwards, that's that. There isn't
anything we could have done differently anyway. The same for resume, if
spinup fails, the device is dud and the following commands will invoke
EH actions and will eventually fail. Again, there really isn't any
*choice* to make. Just making sure the errors are handled gracefully
(ie. don't crash) and the following commands are handled correctly
should be enough."
The only libata user that actually cares about the result from a suspend
operation is libsas. However, it only cares about whether queuing a new
operation collides with an in-flight one. All libsas does with the
error is retry, but we can just let libata wait for the previous
operation before continuing.
Other cleanups include:
1/ Unifying all ata port pm operations on an ata_port_pm_ prefix
2/ Marking all ata port pm helper routines as returning void, only
ata_port_pm_ entry points need to fake a 0 return value.
3/ Killing ata_port_{suspend|resume}_common() in favor of calling
ata_port_request_pm() directly
4/ Killing the wrappers that just do a to_ata_port() conversion
5/ Clearly marking the entry points that do async operations with an
_async suffix.
Reference: http://marc.info/?l=linux-scsi&m=138995409532286&w=2
Cc: Phillip Susi <psusi@ubuntu.com>
Cc: Alan Stern <stern@rowland.harvard.edu>
Suggested-by: Tejun Heo <tj@kernel.org>
Signed-off-by: Todd Brandt <todd.e.brandt@intel.com>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
2014-03-15 04:52:48 +08:00
|
|
|
ata_sas_port_resume(sata->ap);
|
2012-06-22 14:41:51 +08:00
|
|
|
}
|
|
|
|
mutex_unlock(&port->ha->disco_mutex);
|
|
|
|
|
libata, libsas: kill pm_result and related cleanup
Tejun says:
"At least for libata, worrying about suspend/resume failures don't make
whole lot of sense. If suspend failed, just proceed with suspend. If
the device can't be woken up afterwards, that's that. There isn't
anything we could have done differently anyway. The same for resume, if
spinup fails, the device is dud and the following commands will invoke
EH actions and will eventually fail. Again, there really isn't any
*choice* to make. Just making sure the errors are handled gracefully
(ie. don't crash) and the following commands are handled correctly
should be enough."
The only libata user that actually cares about the result from a suspend
operation is libsas. However, it only cares about whether queuing a new
operation collides with an in-flight one. All libsas does with the
error is retry, but we can just let libata wait for the previous
operation before continuing.
Other cleanups include:
1/ Unifying all ata port pm operations on an ata_port_pm_ prefix
2/ Marking all ata port pm helper routines as returning void, only
ata_port_pm_ entry points need to fake a 0 return value.
3/ Killing ata_port_{suspend|resume}_common() in favor of calling
ata_port_request_pm() directly
4/ Killing the wrappers that just do a to_ata_port() conversion
5/ Clearly marking the entry points that do async operations with an
_async suffix.
Reference: http://marc.info/?l=linux-scsi&m=138995409532286&w=2
Cc: Phillip Susi <psusi@ubuntu.com>
Cc: Alan Stern <stern@rowland.harvard.edu>
Suggested-by: Tejun Heo <tj@kernel.org>
Signed-off-by: Todd Brandt <todd.e.brandt@intel.com>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
2014-03-15 04:52:48 +08:00
|
|
|
sas_ata_flush_pm_eh(port, __func__);
|
2012-01-19 12:47:01 +08:00
|
|
|
}
|
|
|
|
|
2007-07-23 02:15:55 +08:00
|
|
|
/**
|
2018-02-23 05:49:59 +08:00
|
|
|
* sas_discover_sata - discover an STP/SATA domain device
|
2007-07-23 02:15:55 +08:00
|
|
|
* @dev: pointer to struct domain_device of interest
|
|
|
|
*
|
2011-11-18 09:59:52 +08:00
|
|
|
* Devices directly attached to a HA port, have no parents. All other
|
|
|
|
* devices do, and should have their "parent" pointer set appropriately
|
|
|
|
* before calling this function.
|
2007-07-23 02:15:55 +08:00
|
|
|
*/
|
|
|
|
int sas_discover_sata(struct domain_device *dev)
|
|
|
|
{
|
|
|
|
int res;
|
|
|
|
|
2013-05-08 05:44:06 +08:00
|
|
|
if (dev->dev_type == SAS_SATA_PM)
|
2011-11-18 09:59:52 +08:00
|
|
|
return -ENODEV;
|
2011-11-18 09:59:51 +08:00
|
|
|
|
2014-11-05 20:08:20 +08:00
|
|
|
dev->sata_dev.class = sas_get_ata_command_set(dev);
|
2011-11-18 09:59:52 +08:00
|
|
|
sas_fill_in_rphy(dev, dev->rphy);
|
2011-11-18 09:59:51 +08:00
|
|
|
|
|
|
|
res = sas_notify_lldd_dev_found(dev);
|
|
|
|
if (res)
|
|
|
|
return res;
|
|
|
|
|
2011-11-18 09:59:52 +08:00
|
|
|
return 0;
|
2007-07-23 02:15:55 +08:00
|
|
|
}
|
2011-01-23 23:44:12 +08:00
|
|
|
|
2011-12-04 17:06:24 +08:00
|
|
|
static void async_sas_ata_eh(void *data, async_cookie_t cookie)
|
|
|
|
{
|
|
|
|
struct domain_device *dev = data;
|
|
|
|
struct ata_port *ap = dev->sata_dev.ap;
|
|
|
|
struct sas_ha_struct *ha = dev->port->ha;
|
|
|
|
|
2012-01-17 03:56:50 +08:00
|
|
|
sas_ata_printk(KERN_DEBUG, dev, "dev error handler\n");
|
2011-12-04 17:06:24 +08:00
|
|
|
ata_scsi_port_error_handler(ha->core.shost, ap);
|
2012-01-11 07:14:09 +08:00
|
|
|
sas_put_device(dev);
|
2011-12-04 17:06:24 +08:00
|
|
|
}
|
|
|
|
|
2011-01-23 23:44:12 +08:00
|
|
|
void sas_ata_strategy_handler(struct Scsi_Host *shost)
|
|
|
|
{
|
2011-11-18 09:59:51 +08:00
|
|
|
struct sas_ha_struct *sas_ha = SHOST_TO_SAS_HA(shost);
|
2012-07-10 10:33:25 +08:00
|
|
|
ASYNC_DOMAIN_EXCLUSIVE(async);
|
2012-01-19 12:47:01 +08:00
|
|
|
int i;
|
2011-11-18 09:59:51 +08:00
|
|
|
|
|
|
|
/* it's ok to defer revalidation events during ata eh, these
|
|
|
|
* disks are in one of three states:
|
|
|
|
* 1/ present for initial domain discovery, and these
|
|
|
|
* resets will cause bcn flutters
|
|
|
|
* 2/ hot removed, we'll discover that after eh fails
|
|
|
|
* 3/ hot added after initial discovery, lost the race, and need
|
|
|
|
* to catch the next train.
|
|
|
|
*/
|
|
|
|
sas_disable_revalidation(sas_ha);
|
2011-01-23 23:44:12 +08:00
|
|
|
|
2012-01-19 12:47:01 +08:00
|
|
|
spin_lock_irq(&sas_ha->phy_port_lock);
|
|
|
|
for (i = 0; i < sas_ha->num_phys; i++) {
|
|
|
|
struct asd_sas_port *port = sas_ha->sas_port[i];
|
|
|
|
struct domain_device *dev;
|
2011-01-23 23:44:12 +08:00
|
|
|
|
2012-01-19 12:47:01 +08:00
|
|
|
spin_lock(&port->dev_list_lock);
|
|
|
|
list_for_each_entry(dev, &port->dev_list, dev_list_node) {
|
2012-03-22 12:09:07 +08:00
|
|
|
if (!dev_is_sata(dev))
|
2012-01-19 12:47:01 +08:00
|
|
|
continue;
|
2012-06-22 14:25:27 +08:00
|
|
|
|
|
|
|
/* hold a reference over eh since we may be
|
|
|
|
* racing with final remove once all commands
|
|
|
|
* are completed
|
|
|
|
*/
|
|
|
|
kref_get(&dev->kref);
|
|
|
|
|
2012-01-19 12:47:01 +08:00
|
|
|
async_schedule_domain(async_sas_ata_eh, dev, &async);
|
|
|
|
}
|
|
|
|
spin_unlock(&port->dev_list_lock);
|
2011-01-23 23:44:12 +08:00
|
|
|
}
|
2012-01-19 12:47:01 +08:00
|
|
|
spin_unlock_irq(&sas_ha->phy_port_lock);
|
|
|
|
|
2011-12-04 17:06:24 +08:00
|
|
|
async_synchronize_full_domain(&async);
|
2011-11-18 09:59:51 +08:00
|
|
|
|
|
|
|
sas_enable_revalidation(sas_ha);
|
2011-01-23 23:44:12 +08:00
|
|
|
}
|
|
|
|
|
2012-01-12 04:08:36 +08:00
|
|
|
void sas_ata_eh(struct Scsi_Host *shost, struct list_head *work_q,
|
|
|
|
struct list_head *done_q)
|
2011-01-23 23:44:12 +08:00
|
|
|
{
|
|
|
|
struct scsi_cmnd *cmd, *n;
|
2012-01-17 03:56:50 +08:00
|
|
|
struct domain_device *eh_dev;
|
2011-01-23 23:44:12 +08:00
|
|
|
|
|
|
|
do {
|
|
|
|
LIST_HEAD(sata_q);
|
2012-01-17 03:56:50 +08:00
|
|
|
eh_dev = NULL;
|
2011-01-23 23:44:12 +08:00
|
|
|
|
2011-01-23 23:44:12 +08:00
|
|
|
list_for_each_entry_safe(cmd, n, work_q, eh_entry) {
|
|
|
|
struct domain_device *ddev = cmd_to_domain_dev(cmd);
|
|
|
|
|
|
|
|
if (!dev_is_sata(ddev) || TO_SAS_TASK(cmd))
|
|
|
|
continue;
|
2012-01-17 03:56:50 +08:00
|
|
|
if (eh_dev && eh_dev != ddev)
|
2011-01-23 23:44:12 +08:00
|
|
|
continue;
|
2012-01-17 03:56:50 +08:00
|
|
|
eh_dev = ddev;
|
2011-01-23 23:44:12 +08:00
|
|
|
list_move(&cmd->eh_entry, &sata_q);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!list_empty(&sata_q)) {
|
2012-01-17 03:56:50 +08:00
|
|
|
struct ata_port *ap = eh_dev->sata_dev.ap;
|
|
|
|
|
|
|
|
sas_ata_printk(KERN_DEBUG, eh_dev, "cmd error handler\n");
|
2011-01-23 23:44:12 +08:00
|
|
|
ata_scsi_cmd_error_handler(shost, ap, &sata_q);
|
2011-03-11 07:13:18 +08:00
|
|
|
/*
|
|
|
|
* ata's error handler may leave the cmd on the list
|
|
|
|
* so make sure they don't remain on a stack list
|
|
|
|
* about to go out of scope.
|
|
|
|
*
|
|
|
|
* This looks strange, since the commands are
|
|
|
|
* now part of no list, but the next error
|
|
|
|
* action will be ata_port_error_handler()
|
|
|
|
* which takes no list and sweeps them up
|
|
|
|
* anyway from the ata tag array.
|
|
|
|
*/
|
|
|
|
while (!list_empty(&sata_q))
|
|
|
|
list_del_init(sata_q.next);
|
2011-01-23 23:44:12 +08:00
|
|
|
}
|
2012-01-17 03:56:50 +08:00
|
|
|
} while (eh_dev);
|
2011-01-23 23:44:12 +08:00
|
|
|
}
|
2011-12-01 15:23:33 +08:00
|
|
|
|
|
|
|
void sas_ata_schedule_reset(struct domain_device *dev)
|
|
|
|
{
|
|
|
|
struct ata_eh_info *ehi;
|
|
|
|
struct ata_port *ap;
|
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
if (!dev_is_sata(dev))
|
|
|
|
return;
|
|
|
|
|
|
|
|
ap = dev->sata_dev.ap;
|
|
|
|
ehi = &ap->link.eh_info;
|
|
|
|
|
|
|
|
spin_lock_irqsave(ap->lock, flags);
|
|
|
|
ehi->err_mask |= AC_ERR_TIMEOUT;
|
|
|
|
ehi->action |= ATA_EH_RESET;
|
|
|
|
ata_port_schedule_eh(ap);
|
|
|
|
spin_unlock_irqrestore(ap->lock, flags);
|
|
|
|
}
|
2011-12-09 15:20:44 +08:00
|
|
|
EXPORT_SYMBOL_GPL(sas_ata_schedule_reset);
|
2011-12-03 08:07:01 +08:00
|
|
|
|
|
|
|
void sas_ata_wait_eh(struct domain_device *dev)
|
|
|
|
{
|
|
|
|
struct ata_port *ap;
|
|
|
|
|
|
|
|
if (!dev_is_sata(dev))
|
|
|
|
return;
|
|
|
|
|
|
|
|
ap = dev->sata_dev.ap;
|
|
|
|
ata_port_wait_eh(ap);
|
|
|
|
}
|
2024-06-12 13:13:20 +08:00
|
|
|
|
|
|
|
void sas_ata_device_link_abort(struct domain_device *device, bool force_reset)
|
|
|
|
{
|
|
|
|
struct ata_port *ap = device->sata_dev.ap;
|
|
|
|
struct ata_link *link = &ap->link;
|
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
spin_lock_irqsave(ap->lock, flags);
|
|
|
|
device->sata_dev.fis[2] = ATA_ERR | ATA_DRDY; /* tf status */
|
|
|
|
device->sata_dev.fis[3] = ATA_ABORTED; /* tf error */
|
|
|
|
|
|
|
|
link->eh_info.err_mask |= AC_ERR_DEV;
|
|
|
|
if (force_reset)
|
|
|
|
link->eh_info.action |= ATA_EH_RESET;
|
|
|
|
ata_link_abort(link);
|
|
|
|
spin_unlock_irqrestore(ap->lock, flags);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(sas_ata_device_link_abort);
|