blob: 71af919b856c1a79bbc7d599c527a79064e2c25c [file] [log] [blame]
Darrick J. Wong338ec572006-10-18 14:43:37 -07001/*
2 * Support for SATA devices on Serial Attached SCSI (SAS) controllers
3 *
4 * Copyright (C) 2006 IBM Corporation
5 *
6 * Written by: Darrick J. Wong <djwong@us.ibm.com>, IBM Corporation
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of the
11 * License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
21 * USA
22 */
23
James Bottomleyb9142172007-07-22 13:15:55 -050024#include <linux/scatterlist.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/slab.h>
James Bottomleyb9142172007-07-22 13:15:55 -050026
Darrick J. Wong338ec572006-10-18 14:43:37 -070027#include <scsi/sas_ata.h>
28#include "sas_internal.h"
29#include <scsi/scsi_host.h>
30#include <scsi/scsi_device.h>
31#include <scsi/scsi_tcq.h>
32#include <scsi/scsi.h>
33#include <scsi/scsi_transport.h>
34#include <scsi/scsi_transport_sas.h>
35#include "../scsi_sas_internal.h"
Darrick J. Wong3a2755a2007-01-30 01:18:58 -080036#include "../scsi_transport_api.h"
37#include <scsi/scsi_eh.h>
Darrick J. Wong338ec572006-10-18 14:43:37 -070038
39static enum ata_completion_errors sas_to_ata_err(struct task_status_struct *ts)
40{
41 /* Cheesy attempt to translate SAS errors into ATA. Hah! */
42
43 /* transport error */
44 if (ts->resp == SAS_TASK_UNDELIVERED)
45 return AC_ERR_ATA_BUS;
46
47 /* ts->resp == SAS_TASK_COMPLETE */
48 /* task delivered, what happened afterwards? */
49 switch (ts->stat) {
50 case SAS_DEV_NO_RESPONSE:
51 return AC_ERR_TIMEOUT;
52
53 case SAS_INTERRUPTED:
54 case SAS_PHY_DOWN:
55 case SAS_NAK_R_ERR:
56 return AC_ERR_ATA_BUS;
57
58
59 case SAS_DATA_UNDERRUN:
60 /*
61 * Some programs that use the taskfile interface
62 * (smartctl in particular) can cause underrun
63 * problems. Ignore these errors, perhaps at our
64 * peril.
65 */
66 return 0;
67
68 case SAS_DATA_OVERRUN:
69 case SAS_QUEUE_FULL:
70 case SAS_DEVICE_UNKNOWN:
71 case SAS_SG_ERR:
72 return AC_ERR_INVALID;
73
Darrick J. Wong338ec572006-10-18 14:43:37 -070074 case SAS_OPEN_TO:
75 case SAS_OPEN_REJECT:
76 SAS_DPRINTK("%s: Saw error %d. What to do?\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -070077 __func__, ts->stat);
Darrick J. Wong338ec572006-10-18 14:43:37 -070078 return AC_ERR_OTHER;
79
James Bottomley75c0b382011-01-23 08:16:24 -060080 case SAM_STAT_CHECK_CONDITION:
Darrick J. Wong338ec572006-10-18 14:43:37 -070081 case SAS_ABORTED_TASK:
82 return AC_ERR_DEV;
83
84 case SAS_PROTO_RESPONSE:
85 /* This means the ending_fis has the error
86 * value; return 0 here to collect it */
87 return 0;
88 default:
89 return 0;
90 }
91}
92
93static void sas_ata_task_done(struct sas_task *task)
94{
95 struct ata_queued_cmd *qc = task->uldd_task;
Darrick J. Wong1c50dc82007-01-30 01:18:41 -080096 struct domain_device *dev;
Darrick J. Wong338ec572006-10-18 14:43:37 -070097 struct task_status_struct *stat = &task->task_status;
98 struct ata_task_resp *resp = (struct ata_task_resp *)stat->buf;
Darrick J. Wong3a2755a2007-01-30 01:18:58 -080099 struct sas_ha_struct *sas_ha;
Darrick J. Wong338ec572006-10-18 14:43:37 -0700100 enum ata_completion_errors ac;
Darrick J. Wong3eb7a512007-01-30 01:18:35 -0800101 unsigned long flags;
Xiangliang Yubb650a12011-05-08 19:27:01 +0800102 struct ata_link *link;
Darrick J. Wong338ec572006-10-18 14:43:37 -0700103
Darrick J. Wong1c50dc82007-01-30 01:18:41 -0800104 if (!qc)
105 goto qc_already_gone;
106
107 dev = qc->ap->private_data;
Darrick J. Wong3a2755a2007-01-30 01:18:58 -0800108 sas_ha = dev->port->ha;
Xiangliang Yubb650a12011-05-08 19:27:01 +0800109 link = &dev->sata_dev.ap->link;
Darrick J. Wong1c50dc82007-01-30 01:18:41 -0800110
Darrick J. Wong3eb7a512007-01-30 01:18:35 -0800111 spin_lock_irqsave(dev->sata_dev.ap->lock, flags);
James Bottomley75c0b382011-01-23 08:16:24 -0600112 if (stat->stat == SAS_PROTO_RESPONSE || stat->stat == SAM_STAT_GOOD ||
113 ((stat->stat == SAM_STAT_CHECK_CONDITION &&
114 dev->sata_dev.command_set == ATAPI_COMMAND_SET))) {
Darrick J. Wong338ec572006-10-18 14:43:37 -0700115 ata_tf_from_fis(resp->ending_fis, &dev->sata_dev.tf);
Xiangliang Yubb650a12011-05-08 19:27:01 +0800116
117 if (!link->sactive) {
118 qc->err_mask |= ac_err_mask(dev->sata_dev.tf.command);
119 } else {
120 link->eh_info.err_mask |= ac_err_mask(dev->sata_dev.tf.command);
121 if (unlikely(link->eh_info.err_mask))
122 qc->flags |= ATA_QCFLAG_FAILED;
123 }
James Bottomley75c0b382011-01-23 08:16:24 -0600124 } else {
Darrick J. Wong338ec572006-10-18 14:43:37 -0700125 ac = sas_to_ata_err(stat);
126 if (ac) {
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -0700127 SAS_DPRINTK("%s: SAS error %x\n", __func__,
Darrick J. Wong338ec572006-10-18 14:43:37 -0700128 stat->stat);
129 /* We saw a SAS error. Send a vague error. */
Xiangliang Yubb650a12011-05-08 19:27:01 +0800130 if (!link->sactive) {
131 qc->err_mask = ac;
132 } else {
133 link->eh_info.err_mask |= AC_ERR_DEV;
134 qc->flags |= ATA_QCFLAG_FAILED;
135 }
136
Darrick J. Wong338ec572006-10-18 14:43:37 -0700137 dev->sata_dev.tf.feature = 0x04; /* status err */
138 dev->sata_dev.tf.command = ATA_ERR;
139 }
140 }
141
Darrick J. Wong1c50dc82007-01-30 01:18:41 -0800142 qc->lldd_task = NULL;
Darrick J. Wongfe059f12007-01-30 01:18:55 -0800143 if (qc->scsicmd)
144 ASSIGN_SAS_TASK(qc->scsicmd, NULL);
Darrick J. Wong338ec572006-10-18 14:43:37 -0700145 ata_qc_complete(qc);
Darrick J. Wong3eb7a512007-01-30 01:18:35 -0800146 spin_unlock_irqrestore(dev->sata_dev.ap->lock, flags);
147
Darrick J. Wong3a2755a2007-01-30 01:18:58 -0800148 /*
149 * If the sas_task has an ata qc, a scsi_cmnd and the aborted
150 * flag is set, then we must have come in via the libsas EH
151 * functions. When we exit this function, we need to put the
152 * scsi_cmnd on the list of finished errors. The ata_qc_complete
153 * call cleans up the libata side of things but we're protected
154 * from the scsi_cmnd going away because the scsi_cmnd is owned
155 * by the EH, making libata's call to scsi_done a NOP.
156 */
157 spin_lock_irqsave(&task->task_state_lock, flags);
158 if (qc->scsicmd && task->task_state_flags & SAS_TASK_STATE_ABORTED)
159 scsi_eh_finish_cmd(qc->scsicmd, &sas_ha->eh_done_q);
160 spin_unlock_irqrestore(&task->task_state_lock, flags);
161
Darrick J. Wong1c50dc82007-01-30 01:18:41 -0800162qc_already_gone:
Darrick J. Wong338ec572006-10-18 14:43:37 -0700163 list_del_init(&task->list);
164 sas_free_task(task);
165}
166
167static unsigned int sas_ata_qc_issue(struct ata_queued_cmd *qc)
168{
Dan Williams312d3e52011-11-17 17:59:50 -0800169 unsigned long flags;
Darrick J. Wong338ec572006-10-18 14:43:37 -0700170 struct sas_task *task;
Dan Williams312d3e52011-11-17 17:59:50 -0800171 struct scatterlist *sg;
172 int ret = AC_ERR_SYSTEM;
173 unsigned int si, xfer = 0;
174 struct ata_port *ap = qc->ap;
175 struct domain_device *dev = ap->private_data;
Darrick J. Wong338ec572006-10-18 14:43:37 -0700176 struct sas_ha_struct *sas_ha = dev->port->ha;
177 struct Scsi_Host *host = sas_ha->core.shost;
178 struct sas_internal *i = to_sas_internal(host->transportt);
Dan Williams312d3e52011-11-17 17:59:50 -0800179
180 /* TODO: audit callers to ensure they are ready for qc_issue to
181 * unconditionally re-enable interrupts
182 */
183 local_irq_save(flags);
184 spin_unlock(ap->lock);
Darrick J. Wong338ec572006-10-18 14:43:37 -0700185
Darrick J. Wong56dd2c02010-10-01 13:55:47 -0700186 /* If the device fell off, no sense in issuing commands */
Dan Williamse1399422012-01-07 08:52:39 +0000187 if (test_bit(SAS_DEV_GONE, &dev->state))
Dan Williams312d3e52011-11-17 17:59:50 -0800188 goto out;
Darrick J. Wong56dd2c02010-10-01 13:55:47 -0700189
Darrick J. Wong338ec572006-10-18 14:43:37 -0700190 task = sas_alloc_task(GFP_ATOMIC);
191 if (!task)
Dan Williams312d3e52011-11-17 17:59:50 -0800192 goto out;
Darrick J. Wong338ec572006-10-18 14:43:37 -0700193 task->dev = dev;
194 task->task_proto = SAS_PROTOCOL_STP;
195 task->task_done = sas_ata_task_done;
196
197 if (qc->tf.command == ATA_CMD_FPDMA_WRITE ||
198 qc->tf.command == ATA_CMD_FPDMA_READ) {
199 /* Need to zero out the tag libata assigned us */
200 qc->tf.nsect = 0;
201 }
202
James Bottomley110dd8f2007-07-20 13:11:44 -0500203 ata_tf_to_fis(&qc->tf, 1, 0, (u8*)&task->ata_task.fis);
Darrick J. Wong338ec572006-10-18 14:43:37 -0700204 task->uldd_task = qc;
Tejun Heo405e66b2007-11-27 19:28:53 +0900205 if (ata_is_atapi(qc->tf.protocol)) {
Darrick J. Wong338ec572006-10-18 14:43:37 -0700206 memcpy(task->ata_task.atapi_packet, qc->cdb, qc->dev->cdb_len);
James Bottomleydde20202008-02-19 11:36:56 +0100207 task->total_xfer_len = qc->nbytes;
208 task->num_scatter = qc->n_elem;
Darrick J. Wong338ec572006-10-18 14:43:37 -0700209 } else {
Tejun Heoff2aeb12007-12-05 16:43:11 +0900210 for_each_sg(qc->sg, sg, qc->n_elem, si)
Darrick J. Wong338ec572006-10-18 14:43:37 -0700211 xfer += sg->length;
Darrick J. Wong338ec572006-10-18 14:43:37 -0700212
213 task->total_xfer_len = xfer;
Tejun Heoff2aeb12007-12-05 16:43:11 +0900214 task->num_scatter = si;
Darrick J. Wong338ec572006-10-18 14:43:37 -0700215 }
216
217 task->data_dir = qc->dma_dir;
Tejun Heoff2aeb12007-12-05 16:43:11 +0900218 task->scatter = qc->sg;
Darrick J. Wong338ec572006-10-18 14:43:37 -0700219 task->ata_task.retry_count = 1;
220 task->task_state_flags = SAS_TASK_STATE_PENDING;
Darrick J. Wong1c50dc82007-01-30 01:18:41 -0800221 qc->lldd_task = task;
Darrick J. Wong338ec572006-10-18 14:43:37 -0700222
223 switch (qc->tf.protocol) {
224 case ATA_PROT_NCQ:
225 task->ata_task.use_ncq = 1;
226 /* fall through */
Tejun Heo0dc36882007-12-18 16:34:43 -0500227 case ATAPI_PROT_DMA:
Darrick J. Wong338ec572006-10-18 14:43:37 -0700228 case ATA_PROT_DMA:
229 task->ata_task.dma_xfer = 1;
230 break;
231 }
232
Darrick J. Wongfe059f12007-01-30 01:18:55 -0800233 if (qc->scsicmd)
234 ASSIGN_SAS_TASK(qc->scsicmd, task);
235
Darrick J. Wong338ec572006-10-18 14:43:37 -0700236 if (sas_ha->lldd_max_execute_num < 2)
Dan Williams312d3e52011-11-17 17:59:50 -0800237 ret = i->dft->lldd_execute_task(task, 1, GFP_ATOMIC);
Darrick J. Wong338ec572006-10-18 14:43:37 -0700238 else
Dan Williams312d3e52011-11-17 17:59:50 -0800239 ret = sas_queue_up(task);
Darrick J. Wong338ec572006-10-18 14:43:37 -0700240
241 /* Examine */
Dan Williams312d3e52011-11-17 17:59:50 -0800242 if (ret) {
243 SAS_DPRINTK("lldd_execute_task returned: %d\n", ret);
Darrick J. Wong338ec572006-10-18 14:43:37 -0700244
Darrick J. Wongfe059f12007-01-30 01:18:55 -0800245 if (qc->scsicmd)
246 ASSIGN_SAS_TASK(qc->scsicmd, NULL);
Darrick J. Wong338ec572006-10-18 14:43:37 -0700247 sas_free_task(task);
Dan Williams312d3e52011-11-17 17:59:50 -0800248 ret = AC_ERR_SYSTEM;
Darrick J. Wong338ec572006-10-18 14:43:37 -0700249 }
250
Dan Williams312d3e52011-11-17 17:59:50 -0800251 out:
252 spin_lock(ap->lock);
253 local_irq_restore(flags);
254 return ret;
Darrick J. Wong338ec572006-10-18 14:43:37 -0700255}
256
Tejun Heo4c9bf4e2008-04-07 22:47:20 +0900257static bool sas_ata_qc_fill_rtf(struct ata_queued_cmd *qc)
258{
259 struct domain_device *dev = qc->ap->private_data;
260
261 memcpy(&qc->result_tf, &dev->sata_dev.tf, sizeof(qc->result_tf));
262 return true;
263}
264
James Bottomley00dd4992011-01-23 09:44:12 -0600265static int sas_ata_hard_reset(struct ata_link *link, unsigned int *class,
266 unsigned long deadline)
Darrick J. Wong338ec572006-10-18 14:43:37 -0700267{
James Bottomley00dd4992011-01-23 09:44:12 -0600268 struct ata_port *ap = link->ap;
Darrick J. Wong338ec572006-10-18 14:43:37 -0700269 struct domain_device *dev = ap->private_data;
270 struct sas_internal *i =
271 to_sas_internal(dev->port->ha->core.shost->transportt);
James Bottomleya29c0512008-02-23 23:38:44 -0600272 int res = TMF_RESP_FUNC_FAILED;
James Bottomley00dd4992011-01-23 09:44:12 -0600273 int ret = 0;
Darrick J. Wong338ec572006-10-18 14:43:37 -0700274
275 if (i->dft->lldd_I_T_nexus_reset)
276 res = i->dft->lldd_I_T_nexus_reset(dev);
277
James Bottomley00dd4992011-01-23 09:44:12 -0600278 if (res != TMF_RESP_FUNC_COMPLETE) {
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -0700279 SAS_DPRINTK("%s: Unable to reset I T nexus?\n", __func__);
James Bottomley00dd4992011-01-23 09:44:12 -0600280 ret = -EAGAIN;
281 }
Darrick J. Wong338ec572006-10-18 14:43:37 -0700282
283 switch (dev->sata_dev.command_set) {
284 case ATA_COMMAND_SET:
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -0700285 SAS_DPRINTK("%s: Found ATA device.\n", __func__);
James Bottomley00dd4992011-01-23 09:44:12 -0600286 *class = ATA_DEV_ATA;
Darrick J. Wong338ec572006-10-18 14:43:37 -0700287 break;
288 case ATAPI_COMMAND_SET:
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -0700289 SAS_DPRINTK("%s: Found ATAPI device.\n", __func__);
James Bottomley00dd4992011-01-23 09:44:12 -0600290 *class = ATA_DEV_ATAPI;
Darrick J. Wong338ec572006-10-18 14:43:37 -0700291 break;
292 default:
293 SAS_DPRINTK("%s: Unknown SATA command set: %d.\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -0700294 __func__,
Darrick J. Wong338ec572006-10-18 14:43:37 -0700295 dev->sata_dev.command_set);
James Bottomley00dd4992011-01-23 09:44:12 -0600296 *class = ATA_DEV_UNKNOWN;
Darrick J. Wong338ec572006-10-18 14:43:37 -0700297 break;
298 }
299
300 ap->cbl = ATA_CBL_SATA;
James Bottomley00dd4992011-01-23 09:44:12 -0600301 return ret;
Darrick J. Wong338ec572006-10-18 14:43:37 -0700302}
303
Dave Jiang1ca1e432011-05-24 13:18:04 -0700304static int sas_ata_soft_reset(struct ata_link *link, unsigned int *class,
305 unsigned long deadline)
306{
307 struct ata_port *ap = link->ap;
308 struct domain_device *dev = ap->private_data;
309 struct sas_internal *i =
310 to_sas_internal(dev->port->ha->core.shost->transportt);
311 int res = TMF_RESP_FUNC_FAILED;
312 int ret = 0;
313
314 if (i->dft->lldd_ata_soft_reset)
315 res = i->dft->lldd_ata_soft_reset(dev);
316
317 if (res != TMF_RESP_FUNC_COMPLETE) {
318 SAS_DPRINTK("%s: Unable to soft reset\n", __func__);
319 ret = -EAGAIN;
320 }
321
322 switch (dev->sata_dev.command_set) {
323 case ATA_COMMAND_SET:
324 SAS_DPRINTK("%s: Found ATA device.\n", __func__);
325 *class = ATA_DEV_ATA;
326 break;
327 case ATAPI_COMMAND_SET:
328 SAS_DPRINTK("%s: Found ATAPI device.\n", __func__);
329 *class = ATA_DEV_ATAPI;
330 break;
331 default:
332 SAS_DPRINTK("%s: Unknown SATA command set: %d.\n",
333 __func__, dev->sata_dev.command_set);
334 *class = ATA_DEV_UNKNOWN;
335 break;
336 }
337
338 ap->cbl = ATA_CBL_SATA;
339 return ret;
340}
341
Darrick J. Wong338ec572006-10-18 14:43:37 -0700342static void sas_ata_post_internal(struct ata_queued_cmd *qc)
343{
344 if (qc->flags & ATA_QCFLAG_FAILED)
345 qc->err_mask |= AC_ERR_OTHER;
346
Darrick J. Wong1c50dc82007-01-30 01:18:41 -0800347 if (qc->err_mask) {
348 /*
349 * Find the sas_task and kill it. By this point,
350 * libata has decided to kill the qc, so we needn't
351 * bother with sas_ata_task_done. But we still
352 * ought to abort the task.
353 */
354 struct sas_task *task = qc->lldd_task;
Darrick J. Wong3a2755a2007-01-30 01:18:58 -0800355 unsigned long flags;
Darrick J. Wong1c50dc82007-01-30 01:18:41 -0800356
357 qc->lldd_task = NULL;
358 if (task) {
Darrick J. Wong3a2755a2007-01-30 01:18:58 -0800359 /* Should this be a AT(API) device reset? */
360 spin_lock_irqsave(&task->task_state_lock, flags);
361 task->task_state_flags |= SAS_TASK_NEED_DEV_RESET;
362 spin_unlock_irqrestore(&task->task_state_lock, flags);
363
Darrick J. Wong1c50dc82007-01-30 01:18:41 -0800364 task->uldd_task = NULL;
365 __sas_task_abort(task);
366 }
Darrick J. Wong1c50dc82007-01-30 01:18:41 -0800367 }
Darrick J. Wong338ec572006-10-18 14:43:37 -0700368}
369
Dan Williamsb91bb292011-11-17 17:59:52 -0800370
371static void sas_ata_set_dmamode(struct ata_port *ap, struct ata_device *ata_dev)
372{
373 struct domain_device *dev = ap->private_data;
374 struct sas_internal *i =
375 to_sas_internal(dev->port->ha->core.shost->transportt);
376
377 if (i->dft->lldd_ata_set_dmamode)
378 i->dft->lldd_ata_set_dmamode(dev);
379}
380
Darrick J. Wong338ec572006-10-18 14:43:37 -0700381static struct ata_port_operations sas_sata_ops = {
James Bottomley00dd4992011-01-23 09:44:12 -0600382 .prereset = ata_std_prereset,
Dave Jiang1ca1e432011-05-24 13:18:04 -0700383 .softreset = sas_ata_soft_reset,
James Bottomley00dd4992011-01-23 09:44:12 -0600384 .hardreset = sas_ata_hard_reset,
385 .postreset = ata_std_postreset,
386 .error_handler = ata_std_error_handler,
Darrick J. Wong338ec572006-10-18 14:43:37 -0700387 .post_internal_cmd = sas_ata_post_internal,
David Milburnf0ad30d2010-09-03 17:13:03 -0500388 .qc_defer = ata_std_qc_defer,
Darrick J. Wong338ec572006-10-18 14:43:37 -0700389 .qc_prep = ata_noop_qc_prep,
390 .qc_issue = sas_ata_qc_issue,
Tejun Heo4c9bf4e2008-04-07 22:47:20 +0900391 .qc_fill_rtf = sas_ata_qc_fill_rtf,
Darrick J. Wong338ec572006-10-18 14:43:37 -0700392 .port_start = ata_sas_port_start,
393 .port_stop = ata_sas_port_stop,
Dan Williamsb91bb292011-11-17 17:59:52 -0800394 .set_dmamode = sas_ata_set_dmamode,
Darrick J. Wong338ec572006-10-18 14:43:37 -0700395};
396
397static struct ata_port_info sata_port_info = {
Sergei Shtylyov9cbe0562011-02-04 22:05:48 +0300398 .flags = ATA_FLAG_SATA | ATA_FLAG_PIO_DMA | ATA_FLAG_NCQ,
Sergei Shtylyov0f2e0332011-01-21 20:32:01 +0300399 .pio_mask = ATA_PIO4,
400 .mwdma_mask = ATA_MWDMA2,
Darrick J. Wong338ec572006-10-18 14:43:37 -0700401 .udma_mask = ATA_UDMA6,
402 .port_ops = &sas_sata_ops
403};
404
405int sas_ata_init_host_and_port(struct domain_device *found_dev,
406 struct scsi_target *starget)
407{
408 struct Scsi_Host *shost = dev_to_shost(&starget->dev);
409 struct sas_ha_struct *ha = SHOST_TO_SAS_HA(shost);
410 struct ata_port *ap;
411
412 ata_host_init(&found_dev->sata_dev.ata_host,
Jeff Garzik1d1bbee2007-07-26 09:28:37 -0400413 ha->dev,
Darrick J. Wong338ec572006-10-18 14:43:37 -0700414 sata_port_info.flags,
415 &sas_sata_ops);
416 ap = ata_sas_port_alloc(&found_dev->sata_dev.ata_host,
417 &sata_port_info,
418 shost);
419 if (!ap) {
420 SAS_DPRINTK("ata_sas_port_alloc failed.\n");
421 return -ENODEV;
422 }
423
424 ap->private_data = found_dev;
425 ap->cbl = ATA_CBL_SATA;
426 ap->scsi_host = shost;
427 found_dev->sata_dev.ap = ap;
428
429 return 0;
430}
Darrick J. Wong3a2755a2007-01-30 01:18:58 -0800431
432void sas_ata_task_abort(struct sas_task *task)
433{
434 struct ata_queued_cmd *qc = task->uldd_task;
435 struct completion *waiting;
436
437 /* Bounce SCSI-initiated commands to the SCSI EH */
438 if (qc->scsicmd) {
James Bottomley1b4d0d82010-05-13 09:31:54 -0500439 struct request_queue *q = qc->scsicmd->device->request_queue;
440 unsigned long flags;
441
Tejun Heo70b25f82010-04-15 09:00:08 +0900442 spin_lock_irqsave(q->queue_lock, flags);
Jens Axboe242f9dc2008-09-14 05:55:09 -0700443 blk_abort_request(qc->scsicmd->request);
Tejun Heo70b25f82010-04-15 09:00:08 +0900444 spin_unlock_irqrestore(q->queue_lock, flags);
Darrick J. Wong3a2755a2007-01-30 01:18:58 -0800445 scsi_schedule_eh(qc->scsicmd->device->host);
446 return;
447 }
448
449 /* Internal command, fake a timeout and complete. */
450 qc->flags &= ~ATA_QCFLAG_ACTIVE;
451 qc->flags |= ATA_QCFLAG_FAILED;
452 qc->err_mask |= AC_ERR_TIMEOUT;
453 waiting = qc->private_data;
454 complete(waiting);
455}
James Bottomleyb9142172007-07-22 13:15:55 -0500456
James Bottomleyb9142172007-07-22 13:15:55 -0500457static void sas_get_ata_command_set(struct domain_device *dev)
458{
459 struct dev_to_host_fis *fis =
460 (struct dev_to_host_fis *) dev->frame_rcvd;
461
462 if ((fis->sector_count == 1 && /* ATA */
463 fis->lbal == 1 &&
464 fis->lbam == 0 &&
465 fis->lbah == 0 &&
466 fis->device == 0)
467 ||
468 (fis->sector_count == 0 && /* CE-ATA (mATA) */
469 fis->lbal == 0 &&
470 fis->lbam == 0xCE &&
471 fis->lbah == 0xAA &&
472 (fis->device & ~0x10) == 0))
473
474 dev->sata_dev.command_set = ATA_COMMAND_SET;
475
476 else if ((fis->interrupt_reason == 1 && /* ATAPI */
477 fis->lbal == 1 &&
478 fis->byte_count_low == 0x14 &&
479 fis->byte_count_high == 0xEB &&
480 (fis->device & ~0x10) == 0))
481
482 dev->sata_dev.command_set = ATAPI_COMMAND_SET;
483
484 else if ((fis->sector_count == 1 && /* SEMB */
485 fis->lbal == 1 &&
486 fis->lbam == 0x3C &&
487 fis->lbah == 0xC3 &&
488 fis->device == 0)
489 ||
490 (fis->interrupt_reason == 1 && /* SATA PM */
491 fis->lbal == 1 &&
492 fis->byte_count_low == 0x69 &&
493 fis->byte_count_high == 0x96 &&
494 (fis->device & ~0x10) == 0))
495
496 /* Treat it as a superset? */
497 dev->sata_dev.command_set = ATAPI_COMMAND_SET;
498}
499
Dan Williams87c83312011-11-17 17:59:51 -0800500void sas_probe_sata(struct work_struct *work)
501{
502 struct domain_device *dev, *n;
503 struct sas_discovery_event *ev =
504 container_of(work, struct sas_discovery_event, work);
505 struct asd_sas_port *port = ev->port;
506
507 clear_bit(DISCE_PROBE, &port->disc.pending);
508
509 list_for_each_entry_safe(dev, n, &port->disco_list, disco_list_node) {
510 int err;
511
512 spin_lock_irq(&port->dev_list_lock);
513 list_add_tail(&dev->dev_list_node, &port->dev_list);
514 spin_unlock_irq(&port->dev_list_lock);
515
516 err = sas_rphy_add(dev->rphy);
517
518 if (err) {
519 SAS_DPRINTK("%s: for %s device %16llx returned %d\n",
520 __func__, dev->parent ? "exp-attached" :
521 "direct-attached",
522 SAS_ADDR(dev->sas_addr), err);
523 sas_unregister_dev(port, dev);
524 } else
525 list_del_init(&dev->disco_list_node);
526 }
527}
528
James Bottomleyb9142172007-07-22 13:15:55 -0500529/**
530 * sas_discover_sata -- discover an STP/SATA domain device
531 * @dev: pointer to struct domain_device of interest
532 *
Dan Williamsb91bb292011-11-17 17:59:52 -0800533 * Devices directly attached to a HA port, have no parents. All other
534 * devices do, and should have their "parent" pointer set appropriately
535 * before calling this function.
James Bottomleyb9142172007-07-22 13:15:55 -0500536 */
537int sas_discover_sata(struct domain_device *dev)
538{
539 int res;
540
Dan Williamsb91bb292011-11-17 17:59:52 -0800541 if (dev->dev_type == SATA_PM)
542 return -ENODEV;
543
James Bottomleyb9142172007-07-22 13:15:55 -0500544 sas_get_ata_command_set(dev);
Dan Williamsb91bb292011-11-17 17:59:52 -0800545 sas_fill_in_rphy(dev, dev->rphy);
Dan Williams87c83312011-11-17 17:59:51 -0800546
547 res = sas_notify_lldd_dev_found(dev);
548 if (res)
549 return res;
550
551 sas_discover_event(dev->port, DISCE_PROBE);
Dan Williamsb91bb292011-11-17 17:59:52 -0800552 return 0;
James Bottomleyb9142172007-07-22 13:15:55 -0500553}
James Bottomley00dd4992011-01-23 09:44:12 -0600554
555void sas_ata_strategy_handler(struct Scsi_Host *shost)
556{
557 struct scsi_device *sdev;
Dan Williams87c83312011-11-17 17:59:51 -0800558 struct sas_ha_struct *sas_ha = SHOST_TO_SAS_HA(shost);
559
560 /* it's ok to defer revalidation events during ata eh, these
561 * disks are in one of three states:
562 * 1/ present for initial domain discovery, and these
563 * resets will cause bcn flutters
564 * 2/ hot removed, we'll discover that after eh fails
565 * 3/ hot added after initial discovery, lost the race, and need
566 * to catch the next train.
567 */
568 sas_disable_revalidation(sas_ha);
James Bottomley00dd4992011-01-23 09:44:12 -0600569
570 shost_for_each_device(sdev, shost) {
571 struct domain_device *ddev = sdev_to_domain_dev(sdev);
572 struct ata_port *ap = ddev->sata_dev.ap;
573
574 if (!dev_is_sata(ddev))
575 continue;
James Bottomleyc2991902011-01-23 09:44:12 -0600576
James Bottomley00dd4992011-01-23 09:44:12 -0600577 ata_port_printk(ap, KERN_DEBUG, "sas eh calling libata port error handler");
578 ata_scsi_port_error_handler(shost, ap);
579 }
Dan Williams87c83312011-11-17 17:59:51 -0800580
581 sas_enable_revalidation(sas_ha);
James Bottomley00dd4992011-01-23 09:44:12 -0600582}
583
584int sas_ata_timed_out(struct scsi_cmnd *cmd, struct sas_task *task,
585 enum blk_eh_timer_return *rtn)
586{
587 struct domain_device *ddev = cmd_to_domain_dev(cmd);
588
589 if (!dev_is_sata(ddev) || task)
590 return 0;
591
592 /* we're a sata device with no task, so this must be a libata
593 * eh timeout. Ideally should hook into libata timeout
594 * handling, but there's no point, it just wants to activate
595 * the eh thread */
596 *rtn = BLK_EH_NOT_HANDLED;
597 return 1;
598}
599
600int sas_ata_eh(struct Scsi_Host *shost, struct list_head *work_q,
601 struct list_head *done_q)
602{
603 int rtn = 0;
604 struct scsi_cmnd *cmd, *n;
605 struct ata_port *ap;
606
607 do {
608 LIST_HEAD(sata_q);
609
610 ap = NULL;
James Bottomleyc2991902011-01-23 09:44:12 -0600611
James Bottomley00dd4992011-01-23 09:44:12 -0600612 list_for_each_entry_safe(cmd, n, work_q, eh_entry) {
613 struct domain_device *ddev = cmd_to_domain_dev(cmd);
614
615 if (!dev_is_sata(ddev) || TO_SAS_TASK(cmd))
616 continue;
James Bottomleyc2991902011-01-23 09:44:12 -0600617 if (ap && ap != ddev->sata_dev.ap)
James Bottomley00dd4992011-01-23 09:44:12 -0600618 continue;
619 ap = ddev->sata_dev.ap;
620 rtn = 1;
621 list_move(&cmd->eh_entry, &sata_q);
622 }
623
624 if (!list_empty(&sata_q)) {
James Bottomleyc2991902011-01-23 09:44:12 -0600625 ata_port_printk(ap, KERN_DEBUG, "sas eh calling libata cmd error handler\n");
James Bottomley00dd4992011-01-23 09:44:12 -0600626 ata_scsi_cmd_error_handler(shost, ap, &sata_q);
James Bottomleya82058a2011-03-10 17:13:18 -0600627 /*
628 * ata's error handler may leave the cmd on the list
629 * so make sure they don't remain on a stack list
630 * about to go out of scope.
631 *
632 * This looks strange, since the commands are
633 * now part of no list, but the next error
634 * action will be ata_port_error_handler()
635 * which takes no list and sweeps them up
636 * anyway from the ata tag array.
637 */
638 while (!list_empty(&sata_q))
639 list_del_init(sata_q.next);
James Bottomley00dd4992011-01-23 09:44:12 -0600640 }
641 } while (ap);
642
643 return rtn;
644}