1 /*
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
24 #include <linux/scatterlist.h>
25 #include <linux/slab.h>
26 #include <linux/async.h>
27 #include <linux/export.h>
28
29 #include <scsi/sas_ata.h>
30 #include "sas_internal.h"
31 #include <scsi/scsi_host.h>
32 #include <scsi/scsi_device.h>
33 #include <scsi/scsi_tcq.h>
34 #include <scsi/scsi.h>
35 #include <scsi/scsi_transport.h>
36 #include <scsi/scsi_transport_sas.h>
37 #include "../scsi_sas_internal.h"
38 #include "../scsi_transport_api.h"
39 #include <scsi/scsi_eh.h>
40
sas_to_ata_err(struct task_status_struct * ts)41 static enum ata_completion_errors sas_to_ata_err(struct task_status_struct *ts)
42 {
43 /* Cheesy attempt to translate SAS errors into ATA. Hah! */
44
45 /* transport error */
46 if (ts->resp == SAS_TASK_UNDELIVERED)
47 return AC_ERR_ATA_BUS;
48
49 /* ts->resp == SAS_TASK_COMPLETE */
50 /* task delivered, what happened afterwards? */
51 switch (ts->stat) {
52 case SAS_DEV_NO_RESPONSE:
53 return AC_ERR_TIMEOUT;
54
55 case SAS_INTERRUPTED:
56 case SAS_PHY_DOWN:
57 case SAS_NAK_R_ERR:
58 return AC_ERR_ATA_BUS;
59
60
61 case SAS_DATA_UNDERRUN:
62 /*
63 * Some programs that use the taskfile interface
64 * (smartctl in particular) can cause underrun
65 * problems. Ignore these errors, perhaps at our
66 * peril.
67 */
68 return 0;
69
70 case SAS_DATA_OVERRUN:
71 case SAS_QUEUE_FULL:
72 case SAS_DEVICE_UNKNOWN:
73 case SAS_SG_ERR:
74 return AC_ERR_INVALID;
75
76 case SAS_OPEN_TO:
77 case SAS_OPEN_REJECT:
78 SAS_DPRINTK("%s: Saw error %d. What to do?\n",
79 __func__, ts->stat);
80 return AC_ERR_OTHER;
81
82 case SAM_STAT_CHECK_CONDITION:
83 case SAS_ABORTED_TASK:
84 return AC_ERR_DEV;
85
86 case SAS_PROTO_RESPONSE:
87 /* This means the ending_fis has the error
88 * value; return 0 here to collect it */
89 return 0;
90 default:
91 return 0;
92 }
93 }
94
sas_ata_task_done(struct sas_task * task)95 static void sas_ata_task_done(struct sas_task *task)
96 {
97 struct ata_queued_cmd *qc = task->uldd_task;
98 struct domain_device *dev = task->dev;
99 struct task_status_struct *stat = &task->task_status;
100 struct ata_task_resp *resp = (struct ata_task_resp *)stat->buf;
101 struct sas_ha_struct *sas_ha = dev->port->ha;
102 enum ata_completion_errors ac;
103 unsigned long flags;
104 struct ata_link *link;
105 struct ata_port *ap;
106
107 spin_lock_irqsave(&dev->done_lock, flags);
108 if (test_bit(SAS_HA_FROZEN, &sas_ha->state))
109 task = NULL;
110 else if (qc && qc->scsicmd)
111 ASSIGN_SAS_TASK(qc->scsicmd, NULL);
112 spin_unlock_irqrestore(&dev->done_lock, flags);
113
114 /* check if libsas-eh got to the task before us */
115 if (unlikely(!task))
116 return;
117
118 if (!qc)
119 goto qc_already_gone;
120
121 ap = qc->ap;
122 link = &ap->link;
123
124 spin_lock_irqsave(ap->lock, flags);
125 /* check if we lost the race with libata/sas_ata_post_internal() */
126 if (unlikely(ap->pflags & ATA_PFLAG_FROZEN)) {
127 spin_unlock_irqrestore(ap->lock, flags);
128 if (qc->scsicmd)
129 goto qc_already_gone;
130 else {
131 /* if eh is not involved and the port is frozen then the
132 * ata internal abort process has taken responsibility
133 * for this sas_task
134 */
135 return;
136 }
137 }
138
139 if (stat->stat == SAS_PROTO_RESPONSE || stat->stat == SAM_STAT_GOOD ||
140 ((stat->stat == SAM_STAT_CHECK_CONDITION &&
141 dev->sata_dev.class == ATA_DEV_ATAPI))) {
142 memcpy(dev->sata_dev.fis, resp->ending_fis, ATA_RESP_FIS_SIZE);
143
144 if (!link->sactive) {
145 qc->err_mask |= ac_err_mask(dev->sata_dev.fis[2]);
146 } else {
147 link->eh_info.err_mask |= ac_err_mask(dev->sata_dev.fis[2]);
148 if (unlikely(link->eh_info.err_mask))
149 qc->flags |= ATA_QCFLAG_FAILED;
150 }
151 } else {
152 ac = sas_to_ata_err(stat);
153 if (ac) {
154 SAS_DPRINTK("%s: SAS error %x\n", __func__,
155 stat->stat);
156 /* We saw a SAS error. Send a vague error. */
157 if (!link->sactive) {
158 qc->err_mask = ac;
159 } else {
160 link->eh_info.err_mask |= AC_ERR_DEV;
161 qc->flags |= ATA_QCFLAG_FAILED;
162 }
163
164 dev->sata_dev.fis[3] = 0x04; /* status err */
165 dev->sata_dev.fis[2] = ATA_ERR;
166 }
167 }
168
169 qc->lldd_task = NULL;
170 ata_qc_complete(qc);
171 spin_unlock_irqrestore(ap->lock, flags);
172
173 qc_already_gone:
174 sas_free_task(task);
175 }
176
sas_ata_qc_issue(struct ata_queued_cmd * qc)177 static unsigned int sas_ata_qc_issue(struct ata_queued_cmd *qc)
178 {
179 struct sas_task *task;
180 struct scatterlist *sg;
181 int ret = AC_ERR_SYSTEM;
182 unsigned int si, xfer = 0;
183 struct ata_port *ap = qc->ap;
184 struct domain_device *dev = ap->private_data;
185 struct sas_ha_struct *sas_ha = dev->port->ha;
186 struct Scsi_Host *host = sas_ha->core.shost;
187 struct sas_internal *i = to_sas_internal(host->transportt);
188
189 /* TODO: we should try to remove that unlock */
190 spin_unlock(ap->lock);
191
192 /* If the device fell off, no sense in issuing commands */
193 if (test_bit(SAS_DEV_GONE, &dev->state))
194 goto out;
195
196 task = sas_alloc_task(GFP_ATOMIC);
197 if (!task)
198 goto out;
199 task->dev = dev;
200 task->task_proto = SAS_PROTOCOL_STP;
201 task->task_done = sas_ata_task_done;
202
203 if (qc->tf.command == ATA_CMD_FPDMA_WRITE ||
204 qc->tf.command == ATA_CMD_FPDMA_READ ||
205 qc->tf.command == ATA_CMD_FPDMA_RECV ||
206 qc->tf.command == ATA_CMD_FPDMA_SEND ||
207 qc->tf.command == ATA_CMD_NCQ_NON_DATA) {
208 /* Need to zero out the tag libata assigned us */
209 qc->tf.nsect = 0;
210 }
211
212 ata_tf_to_fis(&qc->tf, qc->dev->link->pmp, 1, (u8 *)&task->ata_task.fis);
213 task->uldd_task = qc;
214 if (ata_is_atapi(qc->tf.protocol)) {
215 memcpy(task->ata_task.atapi_packet, qc->cdb, qc->dev->cdb_len);
216 task->total_xfer_len = qc->nbytes;
217 task->num_scatter = qc->n_elem;
218 } else {
219 for_each_sg(qc->sg, sg, qc->n_elem, si)
220 xfer += sg_dma_len(sg);
221
222 task->total_xfer_len = xfer;
223 task->num_scatter = si;
224 }
225
226 if (qc->tf.protocol == ATA_PROT_NODATA)
227 task->data_dir = DMA_NONE;
228 else
229 task->data_dir = qc->dma_dir;
230 task->scatter = qc->sg;
231 task->ata_task.retry_count = 1;
232 task->task_state_flags = SAS_TASK_STATE_PENDING;
233 qc->lldd_task = task;
234
235 task->ata_task.use_ncq = ata_is_ncq(qc->tf.protocol);
236 task->ata_task.dma_xfer = ata_is_dma(qc->tf.protocol);
237
238 if (qc->scsicmd)
239 ASSIGN_SAS_TASK(qc->scsicmd, task);
240
241 ret = i->dft->lldd_execute_task(task, GFP_ATOMIC);
242 if (ret) {
243 SAS_DPRINTK("lldd_execute_task returned: %d\n", ret);
244
245 if (qc->scsicmd)
246 ASSIGN_SAS_TASK(qc->scsicmd, NULL);
247 sas_free_task(task);
248 qc->lldd_task = NULL;
249 ret = AC_ERR_SYSTEM;
250 }
251
252 out:
253 spin_lock(ap->lock);
254 return ret;
255 }
256
sas_ata_qc_fill_rtf(struct ata_queued_cmd * qc)257 static bool sas_ata_qc_fill_rtf(struct ata_queued_cmd *qc)
258 {
259 struct domain_device *dev = qc->ap->private_data;
260
261 ata_tf_from_fis(dev->sata_dev.fis, &qc->result_tf);
262 return true;
263 }
264
dev_to_sas_internal(struct domain_device * dev)265 static struct sas_internal *dev_to_sas_internal(struct domain_device *dev)
266 {
267 return to_sas_internal(dev->port->ha->core.shost->transportt);
268 }
269
270 static int sas_get_ata_command_set(struct domain_device *dev);
271
sas_get_ata_info(struct domain_device * dev,struct ex_phy * phy)272 int sas_get_ata_info(struct domain_device *dev, struct ex_phy *phy)
273 {
274 if (phy->attached_tproto & SAS_PROTOCOL_STP)
275 dev->tproto = phy->attached_tproto;
276 if (phy->attached_sata_dev)
277 dev->tproto |= SAS_SATA_DEV;
278
279 if (phy->attached_dev_type == SAS_SATA_PENDING)
280 dev->dev_type = SAS_SATA_PENDING;
281 else {
282 int res;
283
284 dev->dev_type = SAS_SATA_DEV;
285 res = sas_get_report_phy_sata(dev->parent, phy->phy_id,
286 &dev->sata_dev.rps_resp);
287 if (res) {
288 SAS_DPRINTK("report phy sata to %016llx:0x%x returned "
289 "0x%x\n", SAS_ADDR(dev->parent->sas_addr),
290 phy->phy_id, res);
291 return res;
292 }
293 memcpy(dev->frame_rcvd, &dev->sata_dev.rps_resp.rps.fis,
294 sizeof(struct dev_to_host_fis));
295 dev->sata_dev.class = sas_get_ata_command_set(dev);
296 }
297 return 0;
298 }
299
sas_ata_clear_pending(struct domain_device * dev,struct ex_phy * phy)300 static int sas_ata_clear_pending(struct domain_device *dev, struct ex_phy *phy)
301 {
302 int res;
303
304 /* we weren't pending, so successfully end the reset sequence now */
305 if (dev->dev_type != SAS_SATA_PENDING)
306 return 1;
307
308 /* hmmm, if this succeeds do we need to repost the domain_device to the
309 * lldd so it can pick up new parameters?
310 */
311 res = sas_get_ata_info(dev, phy);
312 if (res)
313 return 0; /* retry */
314 else
315 return 1;
316 }
317
smp_ata_check_ready(struct ata_link * link)318 static int smp_ata_check_ready(struct ata_link *link)
319 {
320 int res;
321 struct ata_port *ap = link->ap;
322 struct domain_device *dev = ap->private_data;
323 struct domain_device *ex_dev = dev->parent;
324 struct sas_phy *phy = sas_get_local_phy(dev);
325 struct ex_phy *ex_phy = &ex_dev->ex_dev.ex_phy[phy->number];
326
327 res = sas_ex_phy_discover(ex_dev, phy->number);
328 sas_put_local_phy(phy);
329
330 /* break the wait early if the expander is unreachable,
331 * otherwise keep polling
332 */
333 if (res == -ECOMM)
334 return res;
335 if (res != SMP_RESP_FUNC_ACC)
336 return 0;
337
338 switch (ex_phy->attached_dev_type) {
339 case SAS_SATA_PENDING:
340 return 0;
341 case SAS_END_DEVICE:
342 if (ex_phy->attached_sata_dev)
343 return sas_ata_clear_pending(dev, ex_phy);
344 /* fall through */
345 default:
346 return -ENODEV;
347 }
348 }
349
local_ata_check_ready(struct ata_link * link)350 static int local_ata_check_ready(struct ata_link *link)
351 {
352 struct ata_port *ap = link->ap;
353 struct domain_device *dev = ap->private_data;
354 struct sas_internal *i = dev_to_sas_internal(dev);
355
356 if (i->dft->lldd_ata_check_ready)
357 return i->dft->lldd_ata_check_ready(dev);
358 else {
359 /* lldd's that don't implement 'ready' checking get the
360 * old default behavior of not coordinating reset
361 * recovery with libata
362 */
363 return 1;
364 }
365 }
366
sas_ata_printk(const char * level,const struct domain_device * ddev,const char * fmt,...)367 static int sas_ata_printk(const char *level, const struct domain_device *ddev,
368 const char *fmt, ...)
369 {
370 struct ata_port *ap = ddev->sata_dev.ap;
371 struct device *dev = &ddev->rphy->dev;
372 struct va_format vaf;
373 va_list args;
374 int r;
375
376 va_start(args, fmt);
377
378 vaf.fmt = fmt;
379 vaf.va = &args;
380
381 r = printk("%ssas: ata%u: %s: %pV",
382 level, ap->print_id, dev_name(dev), &vaf);
383
384 va_end(args);
385
386 return r;
387 }
388
sas_ata_hard_reset(struct ata_link * link,unsigned int * class,unsigned long deadline)389 static int sas_ata_hard_reset(struct ata_link *link, unsigned int *class,
390 unsigned long deadline)
391 {
392 int ret = 0, res;
393 struct sas_phy *phy;
394 struct ata_port *ap = link->ap;
395 int (*check_ready)(struct ata_link *link);
396 struct domain_device *dev = ap->private_data;
397 struct sas_internal *i = dev_to_sas_internal(dev);
398
399 res = i->dft->lldd_I_T_nexus_reset(dev);
400 if (res == -ENODEV)
401 return res;
402
403 if (res != TMF_RESP_FUNC_COMPLETE)
404 sas_ata_printk(KERN_DEBUG, dev, "Unable to reset ata device?\n");
405
406 phy = sas_get_local_phy(dev);
407 if (scsi_is_sas_phy_local(phy))
408 check_ready = local_ata_check_ready;
409 else
410 check_ready = smp_ata_check_ready;
411 sas_put_local_phy(phy);
412
413 ret = ata_wait_after_reset(link, deadline, check_ready);
414 if (ret && ret != -EAGAIN)
415 sas_ata_printk(KERN_ERR, dev, "reset failed (errno=%d)\n", ret);
416
417 *class = dev->sata_dev.class;
418
419 ap->cbl = ATA_CBL_SATA;
420 return ret;
421 }
422
423 /*
424 * notify the lldd to forget the sas_task for this internal ata command
425 * that bypasses scsi-eh
426 */
sas_ata_internal_abort(struct sas_task * task)427 static void sas_ata_internal_abort(struct sas_task *task)
428 {
429 struct sas_internal *si = dev_to_sas_internal(task->dev);
430 unsigned long flags;
431 int res;
432
433 spin_lock_irqsave(&task->task_state_lock, flags);
434 if (task->task_state_flags & SAS_TASK_STATE_ABORTED ||
435 task->task_state_flags & SAS_TASK_STATE_DONE) {
436 spin_unlock_irqrestore(&task->task_state_lock, flags);
437 SAS_DPRINTK("%s: Task %p already finished.\n", __func__,
438 task);
439 goto out;
440 }
441 task->task_state_flags |= SAS_TASK_STATE_ABORTED;
442 spin_unlock_irqrestore(&task->task_state_lock, flags);
443
444 res = si->dft->lldd_abort_task(task);
445
446 spin_lock_irqsave(&task->task_state_lock, flags);
447 if (task->task_state_flags & SAS_TASK_STATE_DONE ||
448 res == TMF_RESP_FUNC_COMPLETE) {
449 spin_unlock_irqrestore(&task->task_state_lock, flags);
450 goto out;
451 }
452
453 /* XXX we are not prepared to deal with ->lldd_abort_task()
454 * failures. TODO: lldds need to unconditionally forget about
455 * aborted ata tasks, otherwise we (likely) leak the sas task
456 * here
457 */
458 SAS_DPRINTK("%s: Task %p leaked.\n", __func__, task);
459
460 if (!(task->task_state_flags & SAS_TASK_STATE_DONE))
461 task->task_state_flags &= ~SAS_TASK_STATE_ABORTED;
462 spin_unlock_irqrestore(&task->task_state_lock, flags);
463
464 return;
465 out:
466 sas_free_task(task);
467 }
468
sas_ata_post_internal(struct ata_queued_cmd * qc)469 static void sas_ata_post_internal(struct ata_queued_cmd *qc)
470 {
471 if (qc->flags & ATA_QCFLAG_FAILED)
472 qc->err_mask |= AC_ERR_OTHER;
473
474 if (qc->err_mask) {
475 /*
476 * Find the sas_task and kill it. By this point, libata
477 * has decided to kill the qc and has frozen the port.
478 * In this state sas_ata_task_done() will no longer free
479 * the sas_task, so we need to notify the lldd (via
480 * ->lldd_abort_task) that the task is dead and free it
481 * ourselves.
482 */
483 struct sas_task *task = qc->lldd_task;
484
485 qc->lldd_task = NULL;
486 if (!task)
487 return;
488 task->uldd_task = NULL;
489 sas_ata_internal_abort(task);
490 }
491 }
492
493
sas_ata_set_dmamode(struct ata_port * ap,struct ata_device * ata_dev)494 static void sas_ata_set_dmamode(struct ata_port *ap, struct ata_device *ata_dev)
495 {
496 struct domain_device *dev = ap->private_data;
497 struct sas_internal *i = dev_to_sas_internal(dev);
498
499 if (i->dft->lldd_ata_set_dmamode)
500 i->dft->lldd_ata_set_dmamode(dev);
501 }
502
sas_ata_sched_eh(struct ata_port * ap)503 static void sas_ata_sched_eh(struct ata_port *ap)
504 {
505 struct domain_device *dev = ap->private_data;
506 struct sas_ha_struct *ha = dev->port->ha;
507 unsigned long flags;
508
509 spin_lock_irqsave(&ha->lock, flags);
510 if (!test_and_set_bit(SAS_DEV_EH_PENDING, &dev->state))
511 ha->eh_active++;
512 ata_std_sched_eh(ap);
513 spin_unlock_irqrestore(&ha->lock, flags);
514 }
515
sas_ata_end_eh(struct ata_port * ap)516 void sas_ata_end_eh(struct ata_port *ap)
517 {
518 struct domain_device *dev = ap->private_data;
519 struct sas_ha_struct *ha = dev->port->ha;
520 unsigned long flags;
521
522 spin_lock_irqsave(&ha->lock, flags);
523 if (test_and_clear_bit(SAS_DEV_EH_PENDING, &dev->state))
524 ha->eh_active--;
525 spin_unlock_irqrestore(&ha->lock, flags);
526 }
527
528 static struct ata_port_operations sas_sata_ops = {
529 .prereset = ata_std_prereset,
530 .hardreset = sas_ata_hard_reset,
531 .postreset = ata_std_postreset,
532 .error_handler = ata_std_error_handler,
533 .post_internal_cmd = sas_ata_post_internal,
534 .qc_defer = ata_std_qc_defer,
535 .qc_prep = ata_noop_qc_prep,
536 .qc_issue = sas_ata_qc_issue,
537 .qc_fill_rtf = sas_ata_qc_fill_rtf,
538 .port_start = ata_sas_port_start,
539 .port_stop = ata_sas_port_stop,
540 .set_dmamode = sas_ata_set_dmamode,
541 .sched_eh = sas_ata_sched_eh,
542 .end_eh = sas_ata_end_eh,
543 };
544
545 static struct ata_port_info sata_port_info = {
546 .flags = ATA_FLAG_SATA | ATA_FLAG_PIO_DMA | ATA_FLAG_NCQ |
547 ATA_FLAG_SAS_HOST | ATA_FLAG_FPDMA_AUX,
548 .pio_mask = ATA_PIO4,
549 .mwdma_mask = ATA_MWDMA2,
550 .udma_mask = ATA_UDMA6,
551 .port_ops = &sas_sata_ops
552 };
553
sas_ata_init(struct domain_device * found_dev)554 int sas_ata_init(struct domain_device *found_dev)
555 {
556 struct sas_ha_struct *ha = found_dev->port->ha;
557 struct Scsi_Host *shost = ha->core.shost;
558 struct ata_host *ata_host;
559 struct ata_port *ap;
560 int rc;
561
562 ata_host = kzalloc(sizeof(*ata_host), GFP_KERNEL);
563 if (!ata_host) {
564 SAS_DPRINTK("ata host alloc failed.\n");
565 return -ENOMEM;
566 }
567
568 ata_host_init(ata_host, ha->dev, &sas_sata_ops);
569
570 ap = ata_sas_port_alloc(ata_host, &sata_port_info, shost);
571 if (!ap) {
572 SAS_DPRINTK("ata_sas_port_alloc failed.\n");
573 rc = -ENODEV;
574 goto free_host;
575 }
576
577 ap->private_data = found_dev;
578 ap->cbl = ATA_CBL_SATA;
579 ap->scsi_host = shost;
580 rc = ata_sas_port_init(ap);
581 if (rc)
582 goto destroy_port;
583
584 rc = ata_sas_tport_add(ata_host->dev, ap);
585 if (rc)
586 goto destroy_port;
587
588 found_dev->sata_dev.ata_host = ata_host;
589 found_dev->sata_dev.ap = ap;
590
591 return 0;
592
593 destroy_port:
594 ata_sas_port_destroy(ap);
595 free_host:
596 ata_host_put(ata_host);
597 return rc;
598 }
599
sas_ata_task_abort(struct sas_task * task)600 void sas_ata_task_abort(struct sas_task *task)
601 {
602 struct ata_queued_cmd *qc = task->uldd_task;
603 struct completion *waiting;
604
605 /* Bounce SCSI-initiated commands to the SCSI EH */
606 if (qc->scsicmd) {
607 struct request_queue *q = qc->scsicmd->device->request_queue;
608 unsigned long flags;
609
610 spin_lock_irqsave(q->queue_lock, flags);
611 blk_abort_request(qc->scsicmd->request);
612 spin_unlock_irqrestore(q->queue_lock, flags);
613 return;
614 }
615
616 /* Internal command, fake a timeout and complete. */
617 qc->flags &= ~ATA_QCFLAG_ACTIVE;
618 qc->flags |= ATA_QCFLAG_FAILED;
619 qc->err_mask |= AC_ERR_TIMEOUT;
620 waiting = qc->private_data;
621 complete(waiting);
622 }
623
sas_get_ata_command_set(struct domain_device * dev)624 static int sas_get_ata_command_set(struct domain_device *dev)
625 {
626 struct dev_to_host_fis *fis =
627 (struct dev_to_host_fis *) dev->frame_rcvd;
628 struct ata_taskfile tf;
629
630 if (dev->dev_type == SAS_SATA_PENDING)
631 return ATA_DEV_UNKNOWN;
632
633 ata_tf_from_fis((const u8 *)fis, &tf);
634
635 return ata_dev_classify(&tf);
636 }
637
sas_probe_sata(struct asd_sas_port * port)638 void sas_probe_sata(struct asd_sas_port *port)
639 {
640 struct domain_device *dev, *n;
641
642 mutex_lock(&port->ha->disco_mutex);
643 list_for_each_entry(dev, &port->disco_list, disco_list_node) {
644 if (!dev_is_sata(dev))
645 continue;
646
647 ata_sas_async_probe(dev->sata_dev.ap);
648 }
649 mutex_unlock(&port->ha->disco_mutex);
650
651 list_for_each_entry_safe(dev, n, &port->disco_list, disco_list_node) {
652 if (!dev_is_sata(dev))
653 continue;
654
655 sas_ata_wait_eh(dev);
656
657 /* if libata could not bring the link up, don't surface
658 * the device
659 */
660 if (ata_dev_disabled(sas_to_ata_dev(dev)))
661 sas_fail_probe(dev, __func__, -ENODEV);
662 }
663
664 }
665
sas_ata_flush_pm_eh(struct asd_sas_port * port,const char * func)666 static void sas_ata_flush_pm_eh(struct asd_sas_port *port, const char *func)
667 {
668 struct domain_device *dev, *n;
669
670 list_for_each_entry_safe(dev, n, &port->dev_list, dev_list_node) {
671 if (!dev_is_sata(dev))
672 continue;
673
674 sas_ata_wait_eh(dev);
675
676 /* if libata failed to power manage the device, tear it down */
677 if (ata_dev_disabled(sas_to_ata_dev(dev)))
678 sas_fail_probe(dev, func, -ENODEV);
679 }
680 }
681
sas_suspend_sata(struct asd_sas_port * port)682 void sas_suspend_sata(struct asd_sas_port *port)
683 {
684 struct domain_device *dev;
685
686 mutex_lock(&port->ha->disco_mutex);
687 list_for_each_entry(dev, &port->dev_list, dev_list_node) {
688 struct sata_device *sata;
689
690 if (!dev_is_sata(dev))
691 continue;
692
693 sata = &dev->sata_dev;
694 if (sata->ap->pm_mesg.event == PM_EVENT_SUSPEND)
695 continue;
696
697 ata_sas_port_suspend(sata->ap);
698 }
699 mutex_unlock(&port->ha->disco_mutex);
700
701 sas_ata_flush_pm_eh(port, __func__);
702 }
703
sas_resume_sata(struct asd_sas_port * port)704 void sas_resume_sata(struct asd_sas_port *port)
705 {
706 struct domain_device *dev;
707
708 mutex_lock(&port->ha->disco_mutex);
709 list_for_each_entry(dev, &port->dev_list, dev_list_node) {
710 struct sata_device *sata;
711
712 if (!dev_is_sata(dev))
713 continue;
714
715 sata = &dev->sata_dev;
716 if (sata->ap->pm_mesg.event == PM_EVENT_ON)
717 continue;
718
719 ata_sas_port_resume(sata->ap);
720 }
721 mutex_unlock(&port->ha->disco_mutex);
722
723 sas_ata_flush_pm_eh(port, __func__);
724 }
725
726 /**
727 * sas_discover_sata - discover an STP/SATA domain device
728 * @dev: pointer to struct domain_device of interest
729 *
730 * Devices directly attached to a HA port, have no parents. All other
731 * devices do, and should have their "parent" pointer set appropriately
732 * before calling this function.
733 */
sas_discover_sata(struct domain_device * dev)734 int sas_discover_sata(struct domain_device *dev)
735 {
736 int res;
737
738 if (dev->dev_type == SAS_SATA_PM)
739 return -ENODEV;
740
741 dev->sata_dev.class = sas_get_ata_command_set(dev);
742 sas_fill_in_rphy(dev, dev->rphy);
743
744 res = sas_notify_lldd_dev_found(dev);
745 if (res)
746 return res;
747
748 return 0;
749 }
750
async_sas_ata_eh(void * data,async_cookie_t cookie)751 static void async_sas_ata_eh(void *data, async_cookie_t cookie)
752 {
753 struct domain_device *dev = data;
754 struct ata_port *ap = dev->sata_dev.ap;
755 struct sas_ha_struct *ha = dev->port->ha;
756
757 sas_ata_printk(KERN_DEBUG, dev, "dev error handler\n");
758 ata_scsi_port_error_handler(ha->core.shost, ap);
759 sas_put_device(dev);
760 }
761
sas_ata_strategy_handler(struct Scsi_Host * shost)762 void sas_ata_strategy_handler(struct Scsi_Host *shost)
763 {
764 struct sas_ha_struct *sas_ha = SHOST_TO_SAS_HA(shost);
765 ASYNC_DOMAIN_EXCLUSIVE(async);
766 int i;
767
768 /* it's ok to defer revalidation events during ata eh, these
769 * disks are in one of three states:
770 * 1/ present for initial domain discovery, and these
771 * resets will cause bcn flutters
772 * 2/ hot removed, we'll discover that after eh fails
773 * 3/ hot added after initial discovery, lost the race, and need
774 * to catch the next train.
775 */
776 sas_disable_revalidation(sas_ha);
777
778 spin_lock_irq(&sas_ha->phy_port_lock);
779 for (i = 0; i < sas_ha->num_phys; i++) {
780 struct asd_sas_port *port = sas_ha->sas_port[i];
781 struct domain_device *dev;
782
783 spin_lock(&port->dev_list_lock);
784 list_for_each_entry(dev, &port->dev_list, dev_list_node) {
785 if (!dev_is_sata(dev))
786 continue;
787
788 /* hold a reference over eh since we may be
789 * racing with final remove once all commands
790 * are completed
791 */
792 kref_get(&dev->kref);
793
794 async_schedule_domain(async_sas_ata_eh, dev, &async);
795 }
796 spin_unlock(&port->dev_list_lock);
797 }
798 spin_unlock_irq(&sas_ha->phy_port_lock);
799
800 async_synchronize_full_domain(&async);
801
802 sas_enable_revalidation(sas_ha);
803 }
804
sas_ata_eh(struct Scsi_Host * shost,struct list_head * work_q,struct list_head * done_q)805 void sas_ata_eh(struct Scsi_Host *shost, struct list_head *work_q,
806 struct list_head *done_q)
807 {
808 struct scsi_cmnd *cmd, *n;
809 struct domain_device *eh_dev;
810
811 do {
812 LIST_HEAD(sata_q);
813 eh_dev = NULL;
814
815 list_for_each_entry_safe(cmd, n, work_q, eh_entry) {
816 struct domain_device *ddev = cmd_to_domain_dev(cmd);
817
818 if (!dev_is_sata(ddev) || TO_SAS_TASK(cmd))
819 continue;
820 if (eh_dev && eh_dev != ddev)
821 continue;
822 eh_dev = ddev;
823 list_move(&cmd->eh_entry, &sata_q);
824 }
825
826 if (!list_empty(&sata_q)) {
827 struct ata_port *ap = eh_dev->sata_dev.ap;
828
829 sas_ata_printk(KERN_DEBUG, eh_dev, "cmd error handler\n");
830 ata_scsi_cmd_error_handler(shost, ap, &sata_q);
831 /*
832 * ata's error handler may leave the cmd on the list
833 * so make sure they don't remain on a stack list
834 * about to go out of scope.
835 *
836 * This looks strange, since the commands are
837 * now part of no list, but the next error
838 * action will be ata_port_error_handler()
839 * which takes no list and sweeps them up
840 * anyway from the ata tag array.
841 */
842 while (!list_empty(&sata_q))
843 list_del_init(sata_q.next);
844 }
845 } while (eh_dev);
846 }
847
sas_ata_schedule_reset(struct domain_device * dev)848 void sas_ata_schedule_reset(struct domain_device *dev)
849 {
850 struct ata_eh_info *ehi;
851 struct ata_port *ap;
852 unsigned long flags;
853
854 if (!dev_is_sata(dev))
855 return;
856
857 ap = dev->sata_dev.ap;
858 ehi = &ap->link.eh_info;
859
860 spin_lock_irqsave(ap->lock, flags);
861 ehi->err_mask |= AC_ERR_TIMEOUT;
862 ehi->action |= ATA_EH_RESET;
863 ata_port_schedule_eh(ap);
864 spin_unlock_irqrestore(ap->lock, flags);
865 }
866 EXPORT_SYMBOL_GPL(sas_ata_schedule_reset);
867
sas_ata_wait_eh(struct domain_device * dev)868 void sas_ata_wait_eh(struct domain_device *dev)
869 {
870 struct ata_port *ap;
871
872 if (!dev_is_sata(dev))
873 return;
874
875 ap = dev->sata_dev.ap;
876 ata_port_wait_eh(ap);
877 }
878