xref: /openbmc/linux/drivers/scsi/libsas/sas_ata.c (revision 79855d178557cc3e3ffd179fd26a64cef48dfb30)
1338ec570SDarrick J. Wong /*
2338ec570SDarrick J. Wong  * Support for SATA devices on Serial Attached SCSI (SAS) controllers
3338ec570SDarrick J. Wong  *
4338ec570SDarrick J. Wong  * Copyright (C) 2006 IBM Corporation
5338ec570SDarrick J. Wong  *
6338ec570SDarrick J. Wong  * Written by: Darrick J. Wong <djwong@us.ibm.com>, IBM Corporation
7338ec570SDarrick J. Wong  *
8338ec570SDarrick J. Wong  * This program is free software; you can redistribute it and/or
9338ec570SDarrick J. Wong  * modify it under the terms of the GNU General Public License as
10338ec570SDarrick J. Wong  * published by the Free Software Foundation; either version 2 of the
11338ec570SDarrick J. Wong  * License, or (at your option) any later version.
12338ec570SDarrick J. Wong  *
13338ec570SDarrick J. Wong  * This program is distributed in the hope that it will be useful, but
14338ec570SDarrick J. Wong  * WITHOUT ANY WARRANTY; without even the implied warranty of
15338ec570SDarrick J. Wong  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16338ec570SDarrick J. Wong  * General Public License for more details.
17338ec570SDarrick J. Wong  *
18338ec570SDarrick J. Wong  * You should have received a copy of the GNU General Public License
19338ec570SDarrick J. Wong  * along with this program; if not, write to the Free Software
20338ec570SDarrick J. Wong  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
21338ec570SDarrick J. Wong  * USA
22338ec570SDarrick J. Wong  */
23338ec570SDarrick J. Wong 
24b9142174SJames Bottomley #include <linux/scatterlist.h>
255a0e3ad6STejun Heo #include <linux/slab.h>
2650824d6cSDan Williams #include <linux/async.h>
2743a5ab15SDan Williams #include <linux/export.h>
28b9142174SJames Bottomley 
29338ec570SDarrick J. Wong #include <scsi/sas_ata.h>
30338ec570SDarrick J. Wong #include "sas_internal.h"
31338ec570SDarrick J. Wong #include <scsi/scsi_host.h>
32338ec570SDarrick J. Wong #include <scsi/scsi_device.h>
33338ec570SDarrick J. Wong #include <scsi/scsi_tcq.h>
34338ec570SDarrick J. Wong #include <scsi/scsi.h>
35338ec570SDarrick J. Wong #include <scsi/scsi_transport.h>
36338ec570SDarrick J. Wong #include <scsi/scsi_transport_sas.h>
37338ec570SDarrick J. Wong #include "../scsi_sas_internal.h"
383a2755afSDarrick J. Wong #include "../scsi_transport_api.h"
393a2755afSDarrick J. Wong #include <scsi/scsi_eh.h>
40338ec570SDarrick J. Wong 
41338ec570SDarrick J. Wong static enum ata_completion_errors sas_to_ata_err(struct task_status_struct *ts)
42338ec570SDarrick J. Wong {
43338ec570SDarrick J. Wong 	/* Cheesy attempt to translate SAS errors into ATA.  Hah! */
44338ec570SDarrick J. Wong 
45338ec570SDarrick J. Wong 	/* transport error */
46338ec570SDarrick J. Wong 	if (ts->resp == SAS_TASK_UNDELIVERED)
47338ec570SDarrick J. Wong 		return AC_ERR_ATA_BUS;
48338ec570SDarrick J. Wong 
49338ec570SDarrick J. Wong 	/* ts->resp == SAS_TASK_COMPLETE */
50338ec570SDarrick J. Wong 	/* task delivered, what happened afterwards? */
51338ec570SDarrick J. Wong 	switch (ts->stat) {
52338ec570SDarrick J. Wong 		case SAS_DEV_NO_RESPONSE:
53338ec570SDarrick J. Wong 			return AC_ERR_TIMEOUT;
54338ec570SDarrick J. Wong 
55338ec570SDarrick J. Wong 		case SAS_INTERRUPTED:
56338ec570SDarrick J. Wong 		case SAS_PHY_DOWN:
57338ec570SDarrick J. Wong 		case SAS_NAK_R_ERR:
58338ec570SDarrick J. Wong 			return AC_ERR_ATA_BUS;
59338ec570SDarrick J. Wong 
60338ec570SDarrick J. Wong 
61338ec570SDarrick J. Wong 		case SAS_DATA_UNDERRUN:
62338ec570SDarrick J. Wong 			/*
63338ec570SDarrick J. Wong 			 * Some programs that use the taskfile interface
64338ec570SDarrick J. Wong 			 * (smartctl in particular) can cause underrun
65338ec570SDarrick J. Wong 			 * problems.  Ignore these errors, perhaps at our
66338ec570SDarrick J. Wong 			 * peril.
67338ec570SDarrick J. Wong 			 */
68338ec570SDarrick J. Wong 			return 0;
69338ec570SDarrick J. Wong 
70338ec570SDarrick J. Wong 		case SAS_DATA_OVERRUN:
71338ec570SDarrick J. Wong 		case SAS_QUEUE_FULL:
72338ec570SDarrick J. Wong 		case SAS_DEVICE_UNKNOWN:
73338ec570SDarrick J. Wong 		case SAS_SG_ERR:
74338ec570SDarrick J. Wong 			return AC_ERR_INVALID;
75338ec570SDarrick J. Wong 
76338ec570SDarrick J. Wong 		case SAS_OPEN_TO:
77338ec570SDarrick J. Wong 		case SAS_OPEN_REJECT:
78338ec570SDarrick J. Wong 			SAS_DPRINTK("%s: Saw error %d.  What to do?\n",
79cadbd4a5SHarvey Harrison 				    __func__, ts->stat);
80338ec570SDarrick J. Wong 			return AC_ERR_OTHER;
81338ec570SDarrick J. Wong 
8275c0b386SJames Bottomley 		case SAM_STAT_CHECK_CONDITION:
83338ec570SDarrick J. Wong 		case SAS_ABORTED_TASK:
84338ec570SDarrick J. Wong 			return AC_ERR_DEV;
85338ec570SDarrick J. Wong 
86338ec570SDarrick J. Wong 		case SAS_PROTO_RESPONSE:
87338ec570SDarrick J. Wong 			/* This means the ending_fis has the error
88338ec570SDarrick J. Wong 			 * value; return 0 here to collect it */
89338ec570SDarrick J. Wong 			return 0;
90338ec570SDarrick J. Wong 		default:
91338ec570SDarrick J. Wong 			return 0;
92338ec570SDarrick J. Wong 	}
93338ec570SDarrick J. Wong }
94338ec570SDarrick J. Wong 
95338ec570SDarrick J. Wong static void sas_ata_task_done(struct sas_task *task)
96338ec570SDarrick J. Wong {
97338ec570SDarrick J. Wong 	struct ata_queued_cmd *qc = task->uldd_task;
989095a64aSDan Williams 	struct domain_device *dev = task->dev;
99338ec570SDarrick J. Wong 	struct task_status_struct *stat = &task->task_status;
100338ec570SDarrick J. Wong 	struct ata_task_resp *resp = (struct ata_task_resp *)stat->buf;
1019095a64aSDan Williams 	struct sas_ha_struct *sas_ha = dev->port->ha;
102338ec570SDarrick J. Wong 	enum ata_completion_errors ac;
1033eb7a51aSDarrick J. Wong 	unsigned long flags;
104bb650a1bSXiangliang Yu 	struct ata_link *link;
1053dff5721SDan Williams 	struct ata_port *ap;
106338ec570SDarrick J. Wong 
1079095a64aSDan Williams 	spin_lock_irqsave(&dev->done_lock, flags);
1089095a64aSDan Williams 	if (test_bit(SAS_HA_FROZEN, &sas_ha->state))
1099095a64aSDan Williams 		task = NULL;
1109095a64aSDan Williams 	else if (qc && qc->scsicmd)
1119095a64aSDan Williams 		ASSIGN_SAS_TASK(qc->scsicmd, NULL);
1129095a64aSDan Williams 	spin_unlock_irqrestore(&dev->done_lock, flags);
1139095a64aSDan Williams 
1149095a64aSDan Williams 	/* check if libsas-eh got to the task before us */
1159095a64aSDan Williams 	if (unlikely(!task))
1169095a64aSDan Williams 		return;
1179095a64aSDan Williams 
1181c50dc83SDarrick J. Wong 	if (!qc)
1191c50dc83SDarrick J. Wong 		goto qc_already_gone;
1201c50dc83SDarrick J. Wong 
1213dff5721SDan Williams 	ap = qc->ap;
1223dff5721SDan Williams 	link = &ap->link;
1231c50dc83SDarrick J. Wong 
1243dff5721SDan Williams 	spin_lock_irqsave(ap->lock, flags);
1253dff5721SDan Williams 	/* check if we lost the race with libata/sas_ata_post_internal() */
1263dff5721SDan Williams 	if (unlikely(ap->pflags & ATA_PFLAG_FROZEN)) {
1273dff5721SDan Williams 		spin_unlock_irqrestore(ap->lock, flags);
1283dff5721SDan Williams 		if (qc->scsicmd)
1293dff5721SDan Williams 			goto qc_already_gone;
1303dff5721SDan Williams 		else {
1313dff5721SDan Williams 			/* if eh is not involved and the port is frozen then the
1323dff5721SDan Williams 			 * ata internal abort process has taken responsibility
1333dff5721SDan Williams 			 * for this sas_task
1343dff5721SDan Williams 			 */
1353dff5721SDan Williams 			return;
1363dff5721SDan Williams 		}
1373dff5721SDan Williams 	}
1383dff5721SDan Williams 
13975c0b386SJames Bottomley 	if (stat->stat == SAS_PROTO_RESPONSE || stat->stat == SAM_STAT_GOOD ||
14075c0b386SJames Bottomley 	    ((stat->stat == SAM_STAT_CHECK_CONDITION &&
14175c0b386SJames Bottomley 	      dev->sata_dev.command_set == ATAPI_COMMAND_SET))) {
1426ef1b512SDan Williams 		memcpy(dev->sata_dev.fis, resp->ending_fis, ATA_RESP_FIS_SIZE);
143bb650a1bSXiangliang Yu 
144bb650a1bSXiangliang Yu 		if (!link->sactive) {
1456ef1b512SDan Williams 			qc->err_mask |= ac_err_mask(dev->sata_dev.fis[2]);
146bb650a1bSXiangliang Yu 		} else {
1476ef1b512SDan Williams 			link->eh_info.err_mask |= ac_err_mask(dev->sata_dev.fis[2]);
148bb650a1bSXiangliang Yu 			if (unlikely(link->eh_info.err_mask))
149bb650a1bSXiangliang Yu 				qc->flags |= ATA_QCFLAG_FAILED;
150bb650a1bSXiangliang Yu 		}
15175c0b386SJames Bottomley 	} else {
152338ec570SDarrick J. Wong 		ac = sas_to_ata_err(stat);
153338ec570SDarrick J. Wong 		if (ac) {
154cadbd4a5SHarvey Harrison 			SAS_DPRINTK("%s: SAS error %x\n", __func__,
155338ec570SDarrick J. Wong 				    stat->stat);
156338ec570SDarrick J. Wong 			/* We saw a SAS error. Send a vague error. */
157bb650a1bSXiangliang Yu 			if (!link->sactive) {
158338ec570SDarrick J. Wong 				qc->err_mask = ac;
159bb650a1bSXiangliang Yu 			} else {
160bb650a1bSXiangliang Yu 				link->eh_info.err_mask |= AC_ERR_DEV;
161bb650a1bSXiangliang Yu 				qc->flags |= ATA_QCFLAG_FAILED;
162bb650a1bSXiangliang Yu 			}
163bb650a1bSXiangliang Yu 
1646ef1b512SDan Williams 			dev->sata_dev.fis[3] = 0x04; /* status err */
1656ef1b512SDan Williams 			dev->sata_dev.fis[2] = ATA_ERR;
166338ec570SDarrick J. Wong 		}
167338ec570SDarrick J. Wong 	}
168338ec570SDarrick J. Wong 
1691c50dc83SDarrick J. Wong 	qc->lldd_task = NULL;
170338ec570SDarrick J. Wong 	ata_qc_complete(qc);
1713dff5721SDan Williams 	spin_unlock_irqrestore(ap->lock, flags);
1723eb7a51aSDarrick J. Wong 
1731c50dc83SDarrick J. Wong qc_already_gone:
174338ec570SDarrick J. Wong 	sas_free_task(task);
175338ec570SDarrick J. Wong }
176338ec570SDarrick J. Wong 
177338ec570SDarrick J. Wong static unsigned int sas_ata_qc_issue(struct ata_queued_cmd *qc)
178338ec570SDarrick J. Wong {
179312d3e56SDan Williams 	unsigned long flags;
180338ec570SDarrick J. Wong 	struct sas_task *task;
181312d3e56SDan Williams 	struct scatterlist *sg;
182312d3e56SDan Williams 	int ret = AC_ERR_SYSTEM;
183312d3e56SDan Williams 	unsigned int si, xfer = 0;
184312d3e56SDan Williams 	struct ata_port *ap = qc->ap;
185312d3e56SDan Williams 	struct domain_device *dev = ap->private_data;
186338ec570SDarrick J. Wong 	struct sas_ha_struct *sas_ha = dev->port->ha;
187338ec570SDarrick J. Wong 	struct Scsi_Host *host = sas_ha->core.shost;
188338ec570SDarrick J. Wong 	struct sas_internal *i = to_sas_internal(host->transportt);
189312d3e56SDan Williams 
190312d3e56SDan Williams 	/* TODO: audit callers to ensure they are ready for qc_issue to
191312d3e56SDan Williams 	 * unconditionally re-enable interrupts
192312d3e56SDan Williams 	 */
193312d3e56SDan Williams 	local_irq_save(flags);
194312d3e56SDan Williams 	spin_unlock(ap->lock);
195338ec570SDarrick J. Wong 
19656dd2c06SDarrick J. Wong 	/* If the device fell off, no sense in issuing commands */
197e139942dSDan Williams 	if (test_bit(SAS_DEV_GONE, &dev->state))
198312d3e56SDan Williams 		goto out;
19956dd2c06SDarrick J. Wong 
200338ec570SDarrick J. Wong 	task = sas_alloc_task(GFP_ATOMIC);
201338ec570SDarrick J. Wong 	if (!task)
202312d3e56SDan Williams 		goto out;
203338ec570SDarrick J. Wong 	task->dev = dev;
204338ec570SDarrick J. Wong 	task->task_proto = SAS_PROTOCOL_STP;
205338ec570SDarrick J. Wong 	task->task_done = sas_ata_task_done;
206338ec570SDarrick J. Wong 
207338ec570SDarrick J. Wong 	if (qc->tf.command == ATA_CMD_FPDMA_WRITE ||
208338ec570SDarrick J. Wong 	    qc->tf.command == ATA_CMD_FPDMA_READ) {
209338ec570SDarrick J. Wong 		/* Need to zero out the tag libata assigned us */
210338ec570SDarrick J. Wong 		qc->tf.nsect = 0;
211338ec570SDarrick J. Wong 	}
212338ec570SDarrick J. Wong 
213ae5fbae0SDan Williams 	ata_tf_to_fis(&qc->tf, qc->dev->link->pmp, 1, (u8 *)&task->ata_task.fis);
214338ec570SDarrick J. Wong 	task->uldd_task = qc;
215405e66b3STejun Heo 	if (ata_is_atapi(qc->tf.protocol)) {
216338ec570SDarrick J. Wong 		memcpy(task->ata_task.atapi_packet, qc->cdb, qc->dev->cdb_len);
217dde20207SJames Bottomley 		task->total_xfer_len = qc->nbytes;
218dde20207SJames Bottomley 		task->num_scatter = qc->n_elem;
219338ec570SDarrick J. Wong 	} else {
220ff2aeb1eSTejun Heo 		for_each_sg(qc->sg, sg, qc->n_elem, si)
221338ec570SDarrick J. Wong 			xfer += sg->length;
222338ec570SDarrick J. Wong 
223338ec570SDarrick J. Wong 		task->total_xfer_len = xfer;
224ff2aeb1eSTejun Heo 		task->num_scatter = si;
225338ec570SDarrick J. Wong 	}
226338ec570SDarrick J. Wong 
227338ec570SDarrick J. Wong 	task->data_dir = qc->dma_dir;
228ff2aeb1eSTejun Heo 	task->scatter = qc->sg;
229338ec570SDarrick J. Wong 	task->ata_task.retry_count = 1;
230338ec570SDarrick J. Wong 	task->task_state_flags = SAS_TASK_STATE_PENDING;
2311c50dc83SDarrick J. Wong 	qc->lldd_task = task;
232338ec570SDarrick J. Wong 
233338ec570SDarrick J. Wong 	switch (qc->tf.protocol) {
234338ec570SDarrick J. Wong 	case ATA_PROT_NCQ:
235338ec570SDarrick J. Wong 		task->ata_task.use_ncq = 1;
236338ec570SDarrick J. Wong 		/* fall through */
2370dc36888STejun Heo 	case ATAPI_PROT_DMA:
238338ec570SDarrick J. Wong 	case ATA_PROT_DMA:
239338ec570SDarrick J. Wong 		task->ata_task.dma_xfer = 1;
240338ec570SDarrick J. Wong 		break;
241338ec570SDarrick J. Wong 	}
242338ec570SDarrick J. Wong 
243fe059f12SDarrick J. Wong 	if (qc->scsicmd)
244fe059f12SDarrick J. Wong 		ASSIGN_SAS_TASK(qc->scsicmd, task);
245fe059f12SDarrick J. Wong 
246*79855d17SChristoph Hellwig 	ret = i->dft->lldd_execute_task(task, GFP_ATOMIC);
247312d3e56SDan Williams 	if (ret) {
248312d3e56SDan Williams 		SAS_DPRINTK("lldd_execute_task returned: %d\n", ret);
249338ec570SDarrick J. Wong 
250fe059f12SDarrick J. Wong 		if (qc->scsicmd)
251fe059f12SDarrick J. Wong 			ASSIGN_SAS_TASK(qc->scsicmd, NULL);
252338ec570SDarrick J. Wong 		sas_free_task(task);
253312d3e56SDan Williams 		ret = AC_ERR_SYSTEM;
254338ec570SDarrick J. Wong 	}
255338ec570SDarrick J. Wong 
256312d3e56SDan Williams  out:
257312d3e56SDan Williams 	spin_lock(ap->lock);
258312d3e56SDan Williams 	local_irq_restore(flags);
259312d3e56SDan Williams 	return ret;
260338ec570SDarrick J. Wong }
261338ec570SDarrick J. Wong 
2624c9bf4e7STejun Heo static bool sas_ata_qc_fill_rtf(struct ata_queued_cmd *qc)
2634c9bf4e7STejun Heo {
2644c9bf4e7STejun Heo 	struct domain_device *dev = qc->ap->private_data;
2654c9bf4e7STejun Heo 
2666ef1b512SDan Williams 	ata_tf_from_fis(dev->sata_dev.fis, &qc->result_tf);
2674c9bf4e7STejun Heo 	return true;
2684c9bf4e7STejun Heo }
2694c9bf4e7STejun Heo 
27036a39947SDan Williams static struct sas_internal *dev_to_sas_internal(struct domain_device *dev)
27136a39947SDan Williams {
27236a39947SDan Williams 	return to_sas_internal(dev->port->ha->core.shost->transportt);
27336a39947SDan Williams }
27436a39947SDan Williams 
275354cf829SDan Williams static void sas_get_ata_command_set(struct domain_device *dev);
276354cf829SDan Williams 
277354cf829SDan Williams int sas_get_ata_info(struct domain_device *dev, struct ex_phy *phy)
278354cf829SDan Williams {
279354cf829SDan Williams 	if (phy->attached_tproto & SAS_PROTOCOL_STP)
280354cf829SDan Williams 		dev->tproto = phy->attached_tproto;
281354cf829SDan Williams 	if (phy->attached_sata_dev)
282aa9f8328SJames Bottomley 		dev->tproto |= SAS_SATA_DEV;
283354cf829SDan Williams 
284aa9f8328SJames Bottomley 	if (phy->attached_dev_type == SAS_SATA_PENDING)
285aa9f8328SJames Bottomley 		dev->dev_type = SAS_SATA_PENDING;
286354cf829SDan Williams 	else {
287354cf829SDan Williams 		int res;
288354cf829SDan Williams 
289aa9f8328SJames Bottomley 		dev->dev_type = SAS_SATA_DEV;
290354cf829SDan Williams 		res = sas_get_report_phy_sata(dev->parent, phy->phy_id,
291354cf829SDan Williams 					      &dev->sata_dev.rps_resp);
292354cf829SDan Williams 		if (res) {
293354cf829SDan Williams 			SAS_DPRINTK("report phy sata to %016llx:0x%x returned "
294354cf829SDan Williams 				    "0x%x\n", SAS_ADDR(dev->parent->sas_addr),
295354cf829SDan Williams 				    phy->phy_id, res);
296354cf829SDan Williams 			return res;
297354cf829SDan Williams 		}
298354cf829SDan Williams 		memcpy(dev->frame_rcvd, &dev->sata_dev.rps_resp.rps.fis,
299354cf829SDan Williams 		       sizeof(struct dev_to_host_fis));
300354cf829SDan Williams 		/* TODO switch to ata_dev_classify() */
301354cf829SDan Williams 		sas_get_ata_command_set(dev);
302354cf829SDan Williams 	}
303354cf829SDan Williams 	return 0;
304354cf829SDan Williams }
305354cf829SDan Williams 
306354cf829SDan Williams static int sas_ata_clear_pending(struct domain_device *dev, struct ex_phy *phy)
307354cf829SDan Williams {
308354cf829SDan Williams 	int res;
309354cf829SDan Williams 
310354cf829SDan Williams 	/* we weren't pending, so successfully end the reset sequence now */
311aa9f8328SJames Bottomley 	if (dev->dev_type != SAS_SATA_PENDING)
312354cf829SDan Williams 		return 1;
313354cf829SDan Williams 
314354cf829SDan Williams 	/* hmmm, if this succeeds do we need to repost the domain_device to the
315354cf829SDan Williams 	 * lldd so it can pick up new parameters?
316354cf829SDan Williams 	 */
317354cf829SDan Williams 	res = sas_get_ata_info(dev, phy);
318354cf829SDan Williams 	if (res)
319354cf829SDan Williams 		return 0; /* retry */
320354cf829SDan Williams 	else
321354cf829SDan Williams 		return 1;
322354cf829SDan Williams }
323354cf829SDan Williams 
32436a39947SDan Williams static int smp_ata_check_ready(struct ata_link *link)
32536a39947SDan Williams {
32636a39947SDan Williams 	int res;
32736a39947SDan Williams 	struct ata_port *ap = link->ap;
32836a39947SDan Williams 	struct domain_device *dev = ap->private_data;
32936a39947SDan Williams 	struct domain_device *ex_dev = dev->parent;
330f41a0c44SDan Williams 	struct sas_phy *phy = sas_get_local_phy(dev);
331354cf829SDan Williams 	struct ex_phy *ex_phy = &ex_dev->ex_dev.ex_phy[phy->number];
33236a39947SDan Williams 
333354cf829SDan Williams 	res = sas_ex_phy_discover(ex_dev, phy->number);
334f41a0c44SDan Williams 	sas_put_local_phy(phy);
335354cf829SDan Williams 
33636a39947SDan Williams 	/* break the wait early if the expander is unreachable,
33736a39947SDan Williams 	 * otherwise keep polling
33836a39947SDan Williams 	 */
33936a39947SDan Williams 	if (res == -ECOMM)
34036a39947SDan Williams 		return res;
341354cf829SDan Williams 	if (res != SMP_RESP_FUNC_ACC)
34236a39947SDan Williams 		return 0;
343354cf829SDan Williams 
344354cf829SDan Williams 	switch (ex_phy->attached_dev_type) {
345aa9f8328SJames Bottomley 	case SAS_SATA_PENDING:
346354cf829SDan Williams 		return 0;
347aa9f8328SJames Bottomley 	case SAS_END_DEVICE:
348354cf829SDan Williams 		if (ex_phy->attached_sata_dev)
349354cf829SDan Williams 			return sas_ata_clear_pending(dev, ex_phy);
350354cf829SDan Williams 	default:
351354cf829SDan Williams 		return -ENODEV;
352354cf829SDan Williams 	}
35336a39947SDan Williams }
35436a39947SDan Williams 
35536a39947SDan Williams static int local_ata_check_ready(struct ata_link *link)
356338ec570SDarrick J. Wong {
35700dd4998SJames Bottomley 	struct ata_port *ap = link->ap;
358338ec570SDarrick J. Wong 	struct domain_device *dev = ap->private_data;
35936a39947SDan Williams 	struct sas_internal *i = dev_to_sas_internal(dev);
360338ec570SDarrick J. Wong 
36136a39947SDan Williams 	if (i->dft->lldd_ata_check_ready)
36236a39947SDan Williams 		return i->dft->lldd_ata_check_ready(dev);
36336a39947SDan Williams 	else {
36436a39947SDan Williams 		/* lldd's that don't implement 'ready' checking get the
36536a39947SDan Williams 		 * old default behavior of not coordinating reset
36636a39947SDan Williams 		 * recovery with libata
36736a39947SDan Williams 		 */
36836a39947SDan Williams 		return 1;
36936a39947SDan Williams 	}
37000dd4998SJames Bottomley }
371338ec570SDarrick J. Wong 
372d214d81eSDan Williams static int sas_ata_printk(const char *level, const struct domain_device *ddev,
373d214d81eSDan Williams 			  const char *fmt, ...)
374d214d81eSDan Williams {
375d214d81eSDan Williams 	struct ata_port *ap = ddev->sata_dev.ap;
376d214d81eSDan Williams 	struct device *dev = &ddev->rphy->dev;
377d214d81eSDan Williams 	struct va_format vaf;
378d214d81eSDan Williams 	va_list args;
379d214d81eSDan Williams 	int r;
380d214d81eSDan Williams 
381d214d81eSDan Williams 	va_start(args, fmt);
382d214d81eSDan Williams 
383d214d81eSDan Williams 	vaf.fmt = fmt;
384d214d81eSDan Williams 	vaf.va = &args;
385d214d81eSDan Williams 
386d214d81eSDan Williams 	r = printk("%ssas: ata%u: %s: %pV",
387d214d81eSDan Williams 		   level, ap->print_id, dev_name(dev), &vaf);
388d214d81eSDan Williams 
389d214d81eSDan Williams 	va_end(args);
390d214d81eSDan Williams 
391d214d81eSDan Williams 	return r;
392d214d81eSDan Williams }
393d214d81eSDan Williams 
39436a39947SDan Williams static int sas_ata_hard_reset(struct ata_link *link, unsigned int *class,
39536a39947SDan Williams 			      unsigned long deadline)
39636a39947SDan Williams {
39736a39947SDan Williams 	int ret = 0, res;
398f41a0c44SDan Williams 	struct sas_phy *phy;
39936a39947SDan Williams 	struct ata_port *ap = link->ap;
40036a39947SDan Williams 	int (*check_ready)(struct ata_link *link);
40136a39947SDan Williams 	struct domain_device *dev = ap->private_data;
40236a39947SDan Williams 	struct sas_internal *i = dev_to_sas_internal(dev);
40336a39947SDan Williams 
40436a39947SDan Williams 	res = i->dft->lldd_I_T_nexus_reset(dev);
40526a2e68fSDan Williams 	if (res == -ENODEV)
40626a2e68fSDan Williams 		return res;
40736a39947SDan Williams 
40836a39947SDan Williams 	if (res != TMF_RESP_FUNC_COMPLETE)
409d214d81eSDan Williams 		sas_ata_printk(KERN_DEBUG, dev, "Unable to reset ata device?\n");
41036a39947SDan Williams 
411f41a0c44SDan Williams 	phy = sas_get_local_phy(dev);
41236a39947SDan Williams 	if (scsi_is_sas_phy_local(phy))
41336a39947SDan Williams 		check_ready = local_ata_check_ready;
41436a39947SDan Williams 	else
41536a39947SDan Williams 		check_ready = smp_ata_check_ready;
416f41a0c44SDan Williams 	sas_put_local_phy(phy);
41736a39947SDan Williams 
41836a39947SDan Williams 	ret = ata_wait_after_reset(link, deadline, check_ready);
41936a39947SDan Williams 	if (ret && ret != -EAGAIN)
420d214d81eSDan Williams 		sas_ata_printk(KERN_ERR, dev, "reset failed (errno=%d)\n", ret);
42136a39947SDan Williams 
42236a39947SDan Williams 	/* XXX: if the class changes during the reset the upper layer
42336a39947SDan Williams 	 * should be informed, if the device has gone away we assume
42436a39947SDan Williams 	 * libsas will eventually delete it
42536a39947SDan Williams 	 */
426338ec570SDarrick J. Wong 	switch (dev->sata_dev.command_set) {
427338ec570SDarrick J. Wong 	case ATA_COMMAND_SET:
42800dd4998SJames Bottomley 		*class = ATA_DEV_ATA;
429338ec570SDarrick J. Wong 		break;
430338ec570SDarrick J. Wong 	case ATAPI_COMMAND_SET:
43100dd4998SJames Bottomley 		*class = ATA_DEV_ATAPI;
432338ec570SDarrick J. Wong 		break;
433338ec570SDarrick J. Wong 	}
434338ec570SDarrick J. Wong 
435338ec570SDarrick J. Wong 	ap->cbl = ATA_CBL_SATA;
43600dd4998SJames Bottomley 	return ret;
437338ec570SDarrick J. Wong }
438338ec570SDarrick J. Wong 
4393dff5721SDan Williams /*
4403dff5721SDan Williams  * notify the lldd to forget the sas_task for this internal ata command
4413dff5721SDan Williams  * that bypasses scsi-eh
4423dff5721SDan Williams  */
4433dff5721SDan Williams static void sas_ata_internal_abort(struct sas_task *task)
4443dff5721SDan Williams {
44536a39947SDan Williams 	struct sas_internal *si = dev_to_sas_internal(task->dev);
4463dff5721SDan Williams 	unsigned long flags;
4473dff5721SDan Williams 	int res;
4483dff5721SDan Williams 
4493dff5721SDan Williams 	spin_lock_irqsave(&task->task_state_lock, flags);
4503dff5721SDan Williams 	if (task->task_state_flags & SAS_TASK_STATE_ABORTED ||
4513dff5721SDan Williams 	    task->task_state_flags & SAS_TASK_STATE_DONE) {
4523dff5721SDan Williams 		spin_unlock_irqrestore(&task->task_state_lock, flags);
4533dff5721SDan Williams 		SAS_DPRINTK("%s: Task %p already finished.\n", __func__,
4543dff5721SDan Williams 			    task);
4553dff5721SDan Williams 		goto out;
4563dff5721SDan Williams 	}
4573dff5721SDan Williams 	task->task_state_flags |= SAS_TASK_STATE_ABORTED;
4583dff5721SDan Williams 	spin_unlock_irqrestore(&task->task_state_lock, flags);
4593dff5721SDan Williams 
4603dff5721SDan Williams 	res = si->dft->lldd_abort_task(task);
4613dff5721SDan Williams 
4623dff5721SDan Williams 	spin_lock_irqsave(&task->task_state_lock, flags);
4633dff5721SDan Williams 	if (task->task_state_flags & SAS_TASK_STATE_DONE ||
4643dff5721SDan Williams 	    res == TMF_RESP_FUNC_COMPLETE) {
4653dff5721SDan Williams 		spin_unlock_irqrestore(&task->task_state_lock, flags);
4663dff5721SDan Williams 		goto out;
4673dff5721SDan Williams 	}
4683dff5721SDan Williams 
4693dff5721SDan Williams 	/* XXX we are not prepared to deal with ->lldd_abort_task()
4703dff5721SDan Williams 	 * failures.  TODO: lldds need to unconditionally forget about
4713dff5721SDan Williams 	 * aborted ata tasks, otherwise we (likely) leak the sas task
4723dff5721SDan Williams 	 * here
4733dff5721SDan Williams 	 */
4743dff5721SDan Williams 	SAS_DPRINTK("%s: Task %p leaked.\n", __func__, task);
4753dff5721SDan Williams 
4763dff5721SDan Williams 	if (!(task->task_state_flags & SAS_TASK_STATE_DONE))
4773dff5721SDan Williams 		task->task_state_flags &= ~SAS_TASK_STATE_ABORTED;
4783dff5721SDan Williams 	spin_unlock_irqrestore(&task->task_state_lock, flags);
4793dff5721SDan Williams 
4803dff5721SDan Williams 	return;
4813dff5721SDan Williams  out:
4823dff5721SDan Williams 	sas_free_task(task);
4833dff5721SDan Williams }
4843dff5721SDan Williams 
485338ec570SDarrick J. Wong static void sas_ata_post_internal(struct ata_queued_cmd *qc)
486338ec570SDarrick J. Wong {
487338ec570SDarrick J. Wong 	if (qc->flags & ATA_QCFLAG_FAILED)
488338ec570SDarrick J. Wong 		qc->err_mask |= AC_ERR_OTHER;
489338ec570SDarrick J. Wong 
4901c50dc83SDarrick J. Wong 	if (qc->err_mask) {
4911c50dc83SDarrick J. Wong 		/*
4923dff5721SDan Williams 		 * Find the sas_task and kill it.  By this point, libata
4933dff5721SDan Williams 		 * has decided to kill the qc and has frozen the port.
4943dff5721SDan Williams 		 * In this state sas_ata_task_done() will no longer free
4953dff5721SDan Williams 		 * the sas_task, so we need to notify the lldd (via
4963dff5721SDan Williams 		 * ->lldd_abort_task) that the task is dead and free it
4973dff5721SDan Williams 		 *  ourselves.
4981c50dc83SDarrick J. Wong 		 */
4991c50dc83SDarrick J. Wong 		struct sas_task *task = qc->lldd_task;
5001c50dc83SDarrick J. Wong 
5011c50dc83SDarrick J. Wong 		qc->lldd_task = NULL;
5023a2cdf39SDan Williams 		if (!task)
5033a2cdf39SDan Williams 			return;
5041c50dc83SDarrick J. Wong 		task->uldd_task = NULL;
5053dff5721SDan Williams 		sas_ata_internal_abort(task);
5061c50dc83SDarrick J. Wong 	}
5071c50dc83SDarrick J. Wong }
508338ec570SDarrick J. Wong 
509b91bb296SDan Williams 
510b91bb296SDan Williams static void sas_ata_set_dmamode(struct ata_port *ap, struct ata_device *ata_dev)
511b91bb296SDan Williams {
512b91bb296SDan Williams 	struct domain_device *dev = ap->private_data;
51336a39947SDan Williams 	struct sas_internal *i = dev_to_sas_internal(dev);
514b91bb296SDan Williams 
515b91bb296SDan Williams 	if (i->dft->lldd_ata_set_dmamode)
516b91bb296SDan Williams 		i->dft->lldd_ata_set_dmamode(dev);
517b91bb296SDan Williams }
518b91bb296SDan Williams 
519e4a9c373SDan Williams static void sas_ata_sched_eh(struct ata_port *ap)
520e4a9c373SDan Williams {
521e4a9c373SDan Williams 	struct domain_device *dev = ap->private_data;
522e4a9c373SDan Williams 	struct sas_ha_struct *ha = dev->port->ha;
523e4a9c373SDan Williams 	unsigned long flags;
524e4a9c373SDan Williams 
525e4a9c373SDan Williams 	spin_lock_irqsave(&ha->lock, flags);
526e4a9c373SDan Williams 	if (!test_and_set_bit(SAS_DEV_EH_PENDING, &dev->state))
527e4a9c373SDan Williams 		ha->eh_active++;
528e4a9c373SDan Williams 	ata_std_sched_eh(ap);
529e4a9c373SDan Williams 	spin_unlock_irqrestore(&ha->lock, flags);
530e4a9c373SDan Williams }
531e4a9c373SDan Williams 
532e4a9c373SDan Williams void sas_ata_end_eh(struct ata_port *ap)
533e4a9c373SDan Williams {
534e4a9c373SDan Williams 	struct domain_device *dev = ap->private_data;
535e4a9c373SDan Williams 	struct sas_ha_struct *ha = dev->port->ha;
536e4a9c373SDan Williams 	unsigned long flags;
537e4a9c373SDan Williams 
538e4a9c373SDan Williams 	spin_lock_irqsave(&ha->lock, flags);
539e4a9c373SDan Williams 	if (test_and_clear_bit(SAS_DEV_EH_PENDING, &dev->state))
540e4a9c373SDan Williams 		ha->eh_active--;
541e4a9c373SDan Williams 	spin_unlock_irqrestore(&ha->lock, flags);
542e4a9c373SDan Williams }
543e4a9c373SDan Williams 
544338ec570SDarrick J. Wong static struct ata_port_operations sas_sata_ops = {
54500dd4998SJames Bottomley 	.prereset		= ata_std_prereset,
54600dd4998SJames Bottomley 	.hardreset		= sas_ata_hard_reset,
54700dd4998SJames Bottomley 	.postreset		= ata_std_postreset,
54800dd4998SJames Bottomley 	.error_handler		= ata_std_error_handler,
549338ec570SDarrick J. Wong 	.post_internal_cmd	= sas_ata_post_internal,
550f0ad30d3SDavid Milburn 	.qc_defer               = ata_std_qc_defer,
551338ec570SDarrick J. Wong 	.qc_prep		= ata_noop_qc_prep,
552338ec570SDarrick J. Wong 	.qc_issue		= sas_ata_qc_issue,
5534c9bf4e7STejun Heo 	.qc_fill_rtf		= sas_ata_qc_fill_rtf,
554338ec570SDarrick J. Wong 	.port_start		= ata_sas_port_start,
555338ec570SDarrick J. Wong 	.port_stop		= ata_sas_port_stop,
556b91bb296SDan Williams 	.set_dmamode		= sas_ata_set_dmamode,
557e4a9c373SDan Williams 	.sched_eh		= sas_ata_sched_eh,
558e4a9c373SDan Williams 	.end_eh			= sas_ata_end_eh,
559338ec570SDarrick J. Wong };
560338ec570SDarrick J. Wong 
561338ec570SDarrick J. Wong static struct ata_port_info sata_port_info = {
5629cbe056fSSergei Shtylyov 	.flags = ATA_FLAG_SATA | ATA_FLAG_PIO_DMA | ATA_FLAG_NCQ,
5630f2e0330SSergei Shtylyov 	.pio_mask = ATA_PIO4,
5640f2e0330SSergei Shtylyov 	.mwdma_mask = ATA_MWDMA2,
565338ec570SDarrick J. Wong 	.udma_mask = ATA_UDMA6,
566338ec570SDarrick J. Wong 	.port_ops = &sas_sata_ops
567338ec570SDarrick J. Wong };
568338ec570SDarrick J. Wong 
569b2024459SDan Williams int sas_ata_init(struct domain_device *found_dev)
570338ec570SDarrick J. Wong {
5719508a66fSDan Williams 	struct sas_ha_struct *ha = found_dev->port->ha;
5729508a66fSDan Williams 	struct Scsi_Host *shost = ha->core.shost;
573338ec570SDarrick J. Wong 	struct ata_port *ap;
574b2024459SDan Williams 	int rc;
575338ec570SDarrick J. Wong 
5768d8e7d13SDan Williams 	ata_host_init(&found_dev->sata_dev.ata_host, ha->dev, &sas_sata_ops);
577338ec570SDarrick J. Wong 	ap = ata_sas_port_alloc(&found_dev->sata_dev.ata_host,
578338ec570SDarrick J. Wong 				&sata_port_info,
579338ec570SDarrick J. Wong 				shost);
580338ec570SDarrick J. Wong 	if (!ap) {
581338ec570SDarrick J. Wong 		SAS_DPRINTK("ata_sas_port_alloc failed.\n");
582338ec570SDarrick J. Wong 		return -ENODEV;
583338ec570SDarrick J. Wong 	}
584338ec570SDarrick J. Wong 
585338ec570SDarrick J. Wong 	ap->private_data = found_dev;
586338ec570SDarrick J. Wong 	ap->cbl = ATA_CBL_SATA;
587338ec570SDarrick J. Wong 	ap->scsi_host = shost;
588b2024459SDan Williams 	rc = ata_sas_port_init(ap);
589b2024459SDan Williams 	if (rc) {
590b2024459SDan Williams 		ata_sas_port_destroy(ap);
591b2024459SDan Williams 		return rc;
592b2024459SDan Williams 	}
593338ec570SDarrick J. Wong 	found_dev->sata_dev.ap = ap;
594338ec570SDarrick J. Wong 
595338ec570SDarrick J. Wong 	return 0;
596338ec570SDarrick J. Wong }
5973a2755afSDarrick J. Wong 
5983a2755afSDarrick J. Wong void sas_ata_task_abort(struct sas_task *task)
5993a2755afSDarrick J. Wong {
6003a2755afSDarrick J. Wong 	struct ata_queued_cmd *qc = task->uldd_task;
6013a2755afSDarrick J. Wong 	struct completion *waiting;
6023a2755afSDarrick J. Wong 
6033a2755afSDarrick J. Wong 	/* Bounce SCSI-initiated commands to the SCSI EH */
6043a2755afSDarrick J. Wong 	if (qc->scsicmd) {
6051b4d0d8eSJames Bottomley 		struct request_queue *q = qc->scsicmd->device->request_queue;
6061b4d0d8eSJames Bottomley 		unsigned long flags;
6071b4d0d8eSJames Bottomley 
60870b25f89STejun Heo 		spin_lock_irqsave(q->queue_lock, flags);
609242f9dcbSJens Axboe 		blk_abort_request(qc->scsicmd->request);
61070b25f89STejun Heo 		spin_unlock_irqrestore(q->queue_lock, flags);
6113a2755afSDarrick J. Wong 		return;
6123a2755afSDarrick J. Wong 	}
6133a2755afSDarrick J. Wong 
6143a2755afSDarrick J. Wong 	/* Internal command, fake a timeout and complete. */
6153a2755afSDarrick J. Wong 	qc->flags &= ~ATA_QCFLAG_ACTIVE;
6163a2755afSDarrick J. Wong 	qc->flags |= ATA_QCFLAG_FAILED;
6173a2755afSDarrick J. Wong 	qc->err_mask |= AC_ERR_TIMEOUT;
6183a2755afSDarrick J. Wong 	waiting = qc->private_data;
6193a2755afSDarrick J. Wong 	complete(waiting);
6203a2755afSDarrick J. Wong }
621b9142174SJames Bottomley 
622b9142174SJames Bottomley static void sas_get_ata_command_set(struct domain_device *dev)
623b9142174SJames Bottomley {
624b9142174SJames Bottomley 	struct dev_to_host_fis *fis =
625b9142174SJames Bottomley 		(struct dev_to_host_fis *) dev->frame_rcvd;
626b9142174SJames Bottomley 
627aa9f8328SJames Bottomley 	if (dev->dev_type == SAS_SATA_PENDING)
628354cf829SDan Williams 		return;
629354cf829SDan Williams 
630b9142174SJames Bottomley 	if ((fis->sector_count == 1 && /* ATA */
631b9142174SJames Bottomley 	     fis->lbal         == 1 &&
632b9142174SJames Bottomley 	     fis->lbam         == 0 &&
633b9142174SJames Bottomley 	     fis->lbah         == 0 &&
634b9142174SJames Bottomley 	     fis->device       == 0)
635b9142174SJames Bottomley 	    ||
636b9142174SJames Bottomley 	    (fis->sector_count == 0 && /* CE-ATA (mATA) */
637b9142174SJames Bottomley 	     fis->lbal         == 0 &&
638b9142174SJames Bottomley 	     fis->lbam         == 0xCE &&
639b9142174SJames Bottomley 	     fis->lbah         == 0xAA &&
640b9142174SJames Bottomley 	     (fis->device & ~0x10) == 0))
641b9142174SJames Bottomley 
642b9142174SJames Bottomley 		dev->sata_dev.command_set = ATA_COMMAND_SET;
643b9142174SJames Bottomley 
644b9142174SJames Bottomley 	else if ((fis->interrupt_reason == 1 &&	/* ATAPI */
645b9142174SJames Bottomley 		  fis->lbal             == 1 &&
646b9142174SJames Bottomley 		  fis->byte_count_low   == 0x14 &&
647b9142174SJames Bottomley 		  fis->byte_count_high  == 0xEB &&
648b9142174SJames Bottomley 		  (fis->device & ~0x10) == 0))
649b9142174SJames Bottomley 
650b9142174SJames Bottomley 		dev->sata_dev.command_set = ATAPI_COMMAND_SET;
651b9142174SJames Bottomley 
652b9142174SJames Bottomley 	else if ((fis->sector_count == 1 && /* SEMB */
653b9142174SJames Bottomley 		  fis->lbal         == 1 &&
654b9142174SJames Bottomley 		  fis->lbam         == 0x3C &&
655b9142174SJames Bottomley 		  fis->lbah         == 0xC3 &&
656b9142174SJames Bottomley 		  fis->device       == 0)
657b9142174SJames Bottomley 		||
658b9142174SJames Bottomley 		 (fis->interrupt_reason == 1 &&	/* SATA PM */
659b9142174SJames Bottomley 		  fis->lbal             == 1 &&
660b9142174SJames Bottomley 		  fis->byte_count_low   == 0x69 &&
661b9142174SJames Bottomley 		  fis->byte_count_high  == 0x96 &&
662b9142174SJames Bottomley 		  (fis->device & ~0x10) == 0))
663b9142174SJames Bottomley 
664b9142174SJames Bottomley 		/* Treat it as a superset? */
665b9142174SJames Bottomley 		dev->sata_dev.command_set = ATAPI_COMMAND_SET;
666b9142174SJames Bottomley }
667b9142174SJames Bottomley 
6689508a66fSDan Williams void sas_probe_sata(struct asd_sas_port *port)
6699508a66fSDan Williams {
6709508a66fSDan Williams 	struct domain_device *dev, *n;
6719508a66fSDan Williams 
6729508a66fSDan Williams 	mutex_lock(&port->ha->disco_mutex);
673b2024459SDan Williams 	list_for_each_entry(dev, &port->disco_list, disco_list_node) {
6749508a66fSDan Williams 		if (!dev_is_sata(dev))
6759508a66fSDan Williams 			continue;
6769508a66fSDan Williams 
677b2024459SDan Williams 		ata_sas_async_probe(dev->sata_dev.ap);
6789508a66fSDan Williams 	}
6799508a66fSDan Williams 	mutex_unlock(&port->ha->disco_mutex);
6809508a66fSDan Williams 
6819508a66fSDan Williams 	list_for_each_entry_safe(dev, n, &port->disco_list, disco_list_node) {
6829508a66fSDan Williams 		if (!dev_is_sata(dev))
6839508a66fSDan Williams 			continue;
6849508a66fSDan Williams 
6859508a66fSDan Williams 		sas_ata_wait_eh(dev);
6869508a66fSDan Williams 
6879508a66fSDan Williams 		/* if libata could not bring the link up, don't surface
6889508a66fSDan Williams 		 * the device
6899508a66fSDan Williams 		 */
6909508a66fSDan Williams 		if (ata_dev_disabled(sas_to_ata_dev(dev)))
6919508a66fSDan Williams 			sas_fail_probe(dev, __func__, -ENODEV);
6929508a66fSDan Williams 	}
693303694eeSDan Williams 
694303694eeSDan Williams }
695303694eeSDan Williams 
696bc6e7c4bSDan Williams static void sas_ata_flush_pm_eh(struct asd_sas_port *port, const char *func)
697303694eeSDan Williams {
698303694eeSDan Williams 	struct domain_device *dev, *n;
699303694eeSDan Williams 
700303694eeSDan Williams 	list_for_each_entry_safe(dev, n, &port->dev_list, dev_list_node) {
701303694eeSDan Williams 		if (!dev_is_sata(dev))
702303694eeSDan Williams 			continue;
703303694eeSDan Williams 
704303694eeSDan Williams 		sas_ata_wait_eh(dev);
705303694eeSDan Williams 
706303694eeSDan Williams 		/* if libata failed to power manage the device, tear it down */
707303694eeSDan Williams 		if (ata_dev_disabled(sas_to_ata_dev(dev)))
708303694eeSDan Williams 			sas_fail_probe(dev, func, -ENODEV);
709303694eeSDan Williams 	}
710303694eeSDan Williams }
711303694eeSDan Williams 
712303694eeSDan Williams void sas_suspend_sata(struct asd_sas_port *port)
713303694eeSDan Williams {
714303694eeSDan Williams 	struct domain_device *dev;
715303694eeSDan Williams 
716303694eeSDan Williams 	mutex_lock(&port->ha->disco_mutex);
717303694eeSDan Williams 	list_for_each_entry(dev, &port->dev_list, dev_list_node) {
718303694eeSDan Williams 		struct sata_device *sata;
719303694eeSDan Williams 
720303694eeSDan Williams 		if (!dev_is_sata(dev))
721303694eeSDan Williams 			continue;
722303694eeSDan Williams 
723303694eeSDan Williams 		sata = &dev->sata_dev;
724303694eeSDan Williams 		if (sata->ap->pm_mesg.event == PM_EVENT_SUSPEND)
725303694eeSDan Williams 			continue;
726303694eeSDan Williams 
727bc6e7c4bSDan Williams 		ata_sas_port_suspend(sata->ap);
728303694eeSDan Williams 	}
729303694eeSDan Williams 	mutex_unlock(&port->ha->disco_mutex);
730303694eeSDan Williams 
731bc6e7c4bSDan Williams 	sas_ata_flush_pm_eh(port, __func__);
732303694eeSDan Williams }
733303694eeSDan Williams 
734303694eeSDan Williams void sas_resume_sata(struct asd_sas_port *port)
735303694eeSDan Williams {
736303694eeSDan Williams 	struct domain_device *dev;
737303694eeSDan Williams 
738303694eeSDan Williams 	mutex_lock(&port->ha->disco_mutex);
739303694eeSDan Williams 	list_for_each_entry(dev, &port->dev_list, dev_list_node) {
740303694eeSDan Williams 		struct sata_device *sata;
741303694eeSDan Williams 
742303694eeSDan Williams 		if (!dev_is_sata(dev))
743303694eeSDan Williams 			continue;
744303694eeSDan Williams 
745303694eeSDan Williams 		sata = &dev->sata_dev;
746303694eeSDan Williams 		if (sata->ap->pm_mesg.event == PM_EVENT_ON)
747303694eeSDan Williams 			continue;
748303694eeSDan Williams 
749bc6e7c4bSDan Williams 		ata_sas_port_resume(sata->ap);
750303694eeSDan Williams 	}
751303694eeSDan Williams 	mutex_unlock(&port->ha->disco_mutex);
752303694eeSDan Williams 
753bc6e7c4bSDan Williams 	sas_ata_flush_pm_eh(port, __func__);
7549508a66fSDan Williams }
7559508a66fSDan Williams 
756b9142174SJames Bottomley /**
757b9142174SJames Bottomley  * sas_discover_sata -- discover an STP/SATA domain device
758b9142174SJames Bottomley  * @dev: pointer to struct domain_device of interest
759b9142174SJames Bottomley  *
760b91bb296SDan Williams  * Devices directly attached to a HA port, have no parents.  All other
761b91bb296SDan Williams  * devices do, and should have their "parent" pointer set appropriately
762b91bb296SDan Williams  * before calling this function.
763b9142174SJames Bottomley  */
764b9142174SJames Bottomley int sas_discover_sata(struct domain_device *dev)
765b9142174SJames Bottomley {
766b9142174SJames Bottomley 	int res;
767b9142174SJames Bottomley 
768aa9f8328SJames Bottomley 	if (dev->dev_type == SAS_SATA_PM)
769b91bb296SDan Williams 		return -ENODEV;
770b91bb296SDan Williams 
771b9142174SJames Bottomley 	sas_get_ata_command_set(dev);
772b91bb296SDan Williams 	sas_fill_in_rphy(dev, dev->rphy);
77387c8331fSDan Williams 
77487c8331fSDan Williams 	res = sas_notify_lldd_dev_found(dev);
77587c8331fSDan Williams 	if (res)
77687c8331fSDan Williams 		return res;
77787c8331fSDan Williams 
77887c8331fSDan Williams 	sas_discover_event(dev->port, DISCE_PROBE);
779b91bb296SDan Williams 	return 0;
780b9142174SJames Bottomley }
78100dd4998SJames Bottomley 
78250824d6cSDan Williams static void async_sas_ata_eh(void *data, async_cookie_t cookie)
78350824d6cSDan Williams {
78450824d6cSDan Williams 	struct domain_device *dev = data;
78550824d6cSDan Williams 	struct ata_port *ap = dev->sata_dev.ap;
78650824d6cSDan Williams 	struct sas_ha_struct *ha = dev->port->ha;
78750824d6cSDan Williams 
788d214d81eSDan Williams 	sas_ata_printk(KERN_DEBUG, dev, "dev error handler\n");
78950824d6cSDan Williams 	ata_scsi_port_error_handler(ha->core.shost, ap);
7908abda4d2SDan Williams 	sas_put_device(dev);
79150824d6cSDan Williams }
79250824d6cSDan Williams 
79300dd4998SJames Bottomley void sas_ata_strategy_handler(struct Scsi_Host *shost)
79400dd4998SJames Bottomley {
79587c8331fSDan Williams 	struct sas_ha_struct *sas_ha = SHOST_TO_SAS_HA(shost);
7962955b47dSDan Williams 	ASYNC_DOMAIN_EXCLUSIVE(async);
7979508a66fSDan Williams 	int i;
79887c8331fSDan Williams 
79987c8331fSDan Williams 	/* it's ok to defer revalidation events during ata eh, these
80087c8331fSDan Williams 	 * disks are in one of three states:
80187c8331fSDan Williams 	 * 1/ present for initial domain discovery, and these
80287c8331fSDan Williams 	 *    resets will cause bcn flutters
80387c8331fSDan Williams 	 * 2/ hot removed, we'll discover that after eh fails
80487c8331fSDan Williams 	 * 3/ hot added after initial discovery, lost the race, and need
80587c8331fSDan Williams 	 *    to catch the next train.
80687c8331fSDan Williams 	 */
80787c8331fSDan Williams 	sas_disable_revalidation(sas_ha);
80800dd4998SJames Bottomley 
8099508a66fSDan Williams 	spin_lock_irq(&sas_ha->phy_port_lock);
8109508a66fSDan Williams 	for (i = 0; i < sas_ha->num_phys; i++) {
8119508a66fSDan Williams 		struct asd_sas_port *port = sas_ha->sas_port[i];
8129508a66fSDan Williams 		struct domain_device *dev;
81300dd4998SJames Bottomley 
8149508a66fSDan Williams 		spin_lock(&port->dev_list_lock);
8159508a66fSDan Williams 		list_for_each_entry(dev, &port->dev_list, dev_list_node) {
816b2024459SDan Williams 			if (!dev_is_sata(dev))
81700dd4998SJames Bottomley 				continue;
818e4a9c373SDan Williams 
819e4a9c373SDan Williams 			/* hold a reference over eh since we may be
820e4a9c373SDan Williams 			 * racing with final remove once all commands
821e4a9c373SDan Williams 			 * are completed
822e4a9c373SDan Williams 			 */
823e4a9c373SDan Williams 			kref_get(&dev->kref);
824e4a9c373SDan Williams 
8259508a66fSDan Williams 			async_schedule_domain(async_sas_ata_eh, dev, &async);
82600dd4998SJames Bottomley 		}
8279508a66fSDan Williams 		spin_unlock(&port->dev_list_lock);
8289508a66fSDan Williams 	}
8299508a66fSDan Williams 	spin_unlock_irq(&sas_ha->phy_port_lock);
8309508a66fSDan Williams 
83150824d6cSDan Williams 	async_synchronize_full_domain(&async);
83287c8331fSDan Williams 
83387c8331fSDan Williams 	sas_enable_revalidation(sas_ha);
83400dd4998SJames Bottomley }
83500dd4998SJames Bottomley 
836d230ce69SDan Williams void sas_ata_eh(struct Scsi_Host *shost, struct list_head *work_q,
83700dd4998SJames Bottomley 		struct list_head *done_q)
83800dd4998SJames Bottomley {
83900dd4998SJames Bottomley 	struct scsi_cmnd *cmd, *n;
840d214d81eSDan Williams 	struct domain_device *eh_dev;
84100dd4998SJames Bottomley 
84200dd4998SJames Bottomley 	do {
84300dd4998SJames Bottomley 		LIST_HEAD(sata_q);
844d214d81eSDan Williams 		eh_dev = NULL;
84500dd4998SJames Bottomley 
84600dd4998SJames Bottomley 		list_for_each_entry_safe(cmd, n, work_q, eh_entry) {
84700dd4998SJames Bottomley 			struct domain_device *ddev = cmd_to_domain_dev(cmd);
84800dd4998SJames Bottomley 
84900dd4998SJames Bottomley 			if (!dev_is_sata(ddev) || TO_SAS_TASK(cmd))
85000dd4998SJames Bottomley 				continue;
851d214d81eSDan Williams 			if (eh_dev && eh_dev != ddev)
85200dd4998SJames Bottomley 				continue;
853d214d81eSDan Williams 			eh_dev = ddev;
85400dd4998SJames Bottomley 			list_move(&cmd->eh_entry, &sata_q);
85500dd4998SJames Bottomley 		}
85600dd4998SJames Bottomley 
85700dd4998SJames Bottomley 		if (!list_empty(&sata_q)) {
858d214d81eSDan Williams 			struct ata_port *ap = eh_dev->sata_dev.ap;
859d214d81eSDan Williams 
860d214d81eSDan Williams 			sas_ata_printk(KERN_DEBUG, eh_dev, "cmd error handler\n");
86100dd4998SJames Bottomley 			ata_scsi_cmd_error_handler(shost, ap, &sata_q);
862a82058a7SJames Bottomley 			/*
863a82058a7SJames Bottomley 			 * ata's error handler may leave the cmd on the list
864a82058a7SJames Bottomley 			 * so make sure they don't remain on a stack list
865a82058a7SJames Bottomley 			 * about to go out of scope.
866a82058a7SJames Bottomley 			 *
867a82058a7SJames Bottomley 			 * This looks strange, since the commands are
868a82058a7SJames Bottomley 			 * now part of no list, but the next error
869a82058a7SJames Bottomley 			 * action will be ata_port_error_handler()
870a82058a7SJames Bottomley 			 * which takes no list and sweeps them up
871a82058a7SJames Bottomley 			 * anyway from the ata tag array.
872a82058a7SJames Bottomley 			 */
873a82058a7SJames Bottomley 			while (!list_empty(&sata_q))
874a82058a7SJames Bottomley 				list_del_init(sata_q.next);
87500dd4998SJames Bottomley 		}
876d214d81eSDan Williams 	} while (eh_dev);
87700dd4998SJames Bottomley }
878b52df417SDan Williams 
879b52df417SDan Williams void sas_ata_schedule_reset(struct domain_device *dev)
880b52df417SDan Williams {
881b52df417SDan Williams 	struct ata_eh_info *ehi;
882b52df417SDan Williams 	struct ata_port *ap;
883b52df417SDan Williams 	unsigned long flags;
884b52df417SDan Williams 
885b52df417SDan Williams 	if (!dev_is_sata(dev))
886b52df417SDan Williams 		return;
887b52df417SDan Williams 
888b52df417SDan Williams 	ap = dev->sata_dev.ap;
889b52df417SDan Williams 	ehi = &ap->link.eh_info;
890b52df417SDan Williams 
891b52df417SDan Williams 	spin_lock_irqsave(ap->lock, flags);
892b52df417SDan Williams 	ehi->err_mask |= AC_ERR_TIMEOUT;
893b52df417SDan Williams 	ehi->action |= ATA_EH_RESET;
894b52df417SDan Williams 	ata_port_schedule_eh(ap);
895b52df417SDan Williams 	spin_unlock_irqrestore(ap->lock, flags);
896b52df417SDan Williams }
89743a5ab15SDan Williams EXPORT_SYMBOL_GPL(sas_ata_schedule_reset);
89881c757bcSDan Williams 
89981c757bcSDan Williams void sas_ata_wait_eh(struct domain_device *dev)
90081c757bcSDan Williams {
90181c757bcSDan Williams 	struct ata_port *ap;
90281c757bcSDan Williams 
90381c757bcSDan Williams 	if (!dev_is_sata(dev))
90481c757bcSDan Williams 		return;
90581c757bcSDan Williams 
90681c757bcSDan Williams 	ap = dev->sata_dev.ap;
90781c757bcSDan Williams 	ata_port_wait_eh(ap);
90881c757bcSDan Williams }
909