2 * Serial Attached SCSI (SAS) class SCSI Host glue.
4 * Copyright (C) 2005 Adaptec, Inc. All rights reserved.
5 * Copyright (C) 2005 Luben Tuikov <luben_tuikov@adaptec.com>
7 * This file is licensed under GPLv2.
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of the
12 * License, or (at your option) any later version.
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
26 #include <linux/kthread.h>
28 #include "sas_internal.h"
30 #include <scsi/scsi_host.h>
31 #include <scsi/scsi_device.h>
32 #include <scsi/scsi_tcq.h>
33 #include <scsi/scsi.h>
34 #include <scsi/scsi_eh.h>
35 #include <scsi/scsi_transport.h>
36 #include <scsi/scsi_transport_sas.h>
37 #include <scsi/sas_ata.h>
38 #include "../scsi_sas_internal.h"
39 #include "../scsi_transport_api.h"
40 #include "../scsi_priv.h"
42 #include <linux/err.h>
43 #include <linux/blkdev.h>
44 #include <linux/freezer.h>
45 #include <linux/scatterlist.h>
46 #include <linux/libata.h>
48 /* ---------- SCSI Host glue ---------- */
50 static void sas_scsi_task_done(struct sas_task
*task
)
52 struct task_status_struct
*ts
= &task
->task_status
;
53 struct scsi_cmnd
*sc
= task
->uldd_task
;
56 if (unlikely(task
->task_state_flags
& SAS_TASK_STATE_ABORTED
)) {
57 /* Aborted tasks will be completed by the error handler */
58 SAS_DPRINTK("task done but aborted\n");
63 SAS_DPRINTK("task_done called with non existing SCSI cmnd!\n");
64 list_del_init(&task
->list
);
69 if (ts
->resp
== SAS_TASK_UNDELIVERED
) {
72 } else { /* ts->resp == SAS_TASK_COMPLETE */
73 /* task delivered, what happened afterwards? */
75 case SAS_DEV_NO_RESPONSE
:
82 case SAS_DATA_UNDERRUN
:
83 scsi_set_resid(sc
, ts
->residual
);
84 if (scsi_bufflen(sc
) - scsi_get_resid(sc
) < sc
->underflow
)
87 case SAS_DATA_OVERRUN
:
91 hs
= DID_SOFT_ERROR
; /* retry */
93 case SAS_DEVICE_UNKNOWN
:
100 if (ts
->open_rej_reason
== SAS_OREJ_RSVD_RETRY
)
101 hs
= DID_SOFT_ERROR
; /* retry */
105 case SAS_PROTO_RESPONSE
:
106 SAS_DPRINTK("LLDD:%s sent SAS_PROTO_RESP for an SSP "
107 "task; please report this\n",
108 task
->dev
->port
->ha
->sas_ha_name
);
110 case SAS_ABORTED_TASK
:
114 memcpy(sc
->sense_buffer
, ts
->buf
,
115 min(SCSI_SENSE_BUFFERSIZE
, ts
->buf_valid_size
));
116 stat
= SAM_CHECK_COND
;
123 ASSIGN_SAS_TASK(sc
, NULL
);
124 sc
->result
= (hs
<< 16) | stat
;
125 list_del_init(&task
->list
);
130 static enum task_attribute
sas_scsi_get_task_attr(struct scsi_cmnd
*cmd
)
132 enum task_attribute ta
= TASK_ATTR_SIMPLE
;
133 if (cmd
->request
&& blk_rq_tagged(cmd
->request
)) {
134 if (cmd
->device
->ordered_tags
&&
135 (cmd
->request
->cmd_flags
& REQ_HARDBARRIER
))
136 ta
= TASK_ATTR_ORDERED
;
141 static struct sas_task
*sas_create_task(struct scsi_cmnd
*cmd
,
142 struct domain_device
*dev
,
145 struct sas_task
*task
= sas_alloc_task(gfp_flags
);
151 task
->uldd_task
= cmd
;
152 ASSIGN_SAS_TASK(cmd
, task
);
155 task
->task_proto
= task
->dev
->tproto
; /* BUG_ON(!SSP) */
157 task
->ssp_task
.retry_count
= 1;
158 int_to_scsilun(cmd
->device
->lun
, &lun
);
159 memcpy(task
->ssp_task
.LUN
, &lun
.scsi_lun
, 8);
160 task
->ssp_task
.task_attr
= sas_scsi_get_task_attr(cmd
);
161 memcpy(task
->ssp_task
.cdb
, cmd
->cmnd
, 16);
163 task
->scatter
= scsi_sglist(cmd
);
164 task
->num_scatter
= scsi_sg_count(cmd
);
165 task
->total_xfer_len
= scsi_bufflen(cmd
);
166 task
->data_dir
= cmd
->sc_data_direction
;
168 task
->task_done
= sas_scsi_task_done
;
173 int sas_queue_up(struct sas_task
*task
)
175 struct sas_ha_struct
*sas_ha
= task
->dev
->port
->ha
;
176 struct scsi_core
*core
= &sas_ha
->core
;
180 spin_lock_irqsave(&core
->task_queue_lock
, flags
);
181 if (sas_ha
->lldd_queue_size
< core
->task_queue_size
+ 1) {
182 spin_unlock_irqrestore(&core
->task_queue_lock
, flags
);
183 return -SAS_QUEUE_FULL
;
185 list_add_tail(&task
->list
, &core
->task_queue
);
186 core
->task_queue_size
+= 1;
187 spin_unlock_irqrestore(&core
->task_queue_lock
, flags
);
188 wake_up_process(core
->queue_thread
);
194 * sas_queuecommand -- Enqueue a command for processing
195 * @parameters: See SCSI Core documentation
197 * Note: XXX: Remove the host unlock/lock pair when SCSI Core can
198 * call us without holding an IRQ spinlock...
200 int sas_queuecommand(struct scsi_cmnd
*cmd
,
201 void (*scsi_done
)(struct scsi_cmnd
*))
202 __releases(host
->host_lock
)
203 __acquires(dev
->sata_dev
.ap
->lock
)
204 __releases(dev
->sata_dev
.ap
->lock
)
205 __acquires(host
->host_lock
)
208 struct domain_device
*dev
= cmd_to_domain_dev(cmd
);
209 struct Scsi_Host
*host
= cmd
->device
->host
;
210 struct sas_internal
*i
= to_sas_internal(host
->transportt
);
212 spin_unlock_irq(host
->host_lock
);
215 struct sas_ha_struct
*sas_ha
= dev
->port
->ha
;
216 struct sas_task
*task
;
218 if (dev_is_sata(dev
)) {
221 spin_lock_irqsave(dev
->sata_dev
.ap
->lock
, flags
);
222 res
= ata_sas_queuecmd(cmd
, scsi_done
,
224 spin_unlock_irqrestore(dev
->sata_dev
.ap
->lock
, flags
);
229 task
= sas_create_task(cmd
, dev
, GFP_ATOMIC
);
233 cmd
->scsi_done
= scsi_done
;
234 /* Queue up, Direct Mode or Task Collector Mode. */
235 if (sas_ha
->lldd_max_execute_num
< 2)
236 res
= i
->dft
->lldd_execute_task(task
, 1, GFP_ATOMIC
);
238 res
= sas_queue_up(task
);
242 SAS_DPRINTK("lldd_execute_task returned: %d\n", res
);
243 ASSIGN_SAS_TASK(cmd
, NULL
);
245 if (res
== -SAS_QUEUE_FULL
) {
246 cmd
->result
= DID_SOFT_ERROR
<< 16; /* retry */
254 spin_lock_irq(host
->host_lock
);
258 static void sas_eh_finish_cmd(struct scsi_cmnd
*cmd
)
260 struct sas_task
*task
= TO_SAS_TASK(cmd
);
261 struct sas_ha_struct
*sas_ha
= SHOST_TO_SAS_HA(cmd
->device
->host
);
263 /* remove the aborted task flag to allow the task to be
264 * completed now. At this point, we only get called following
265 * an actual abort of the task, so we should be guaranteed not
266 * to be racing with any completions from the LLD (hence we
267 * don't need the task state lock to clear the flag) */
268 task
->task_state_flags
&= ~SAS_TASK_STATE_ABORTED
;
269 /* Now call task_done. However, task will be free'd after
271 task
->task_done(task
);
272 /* now finish the command and move it on to the error
273 * handler done list, this also takes it off the
274 * error handler pending list */
275 scsi_eh_finish_cmd(cmd
, &sas_ha
->eh_done_q
);
278 static void sas_scsi_clear_queue_lu(struct list_head
*error_q
, struct scsi_cmnd
*my_cmd
)
280 struct scsi_cmnd
*cmd
, *n
;
282 list_for_each_entry_safe(cmd
, n
, error_q
, eh_entry
) {
283 if (cmd
->device
->sdev_target
== my_cmd
->device
->sdev_target
&&
284 cmd
->device
->lun
== my_cmd
->device
->lun
)
285 sas_eh_finish_cmd(cmd
);
289 static void sas_scsi_clear_queue_I_T(struct list_head
*error_q
,
290 struct domain_device
*dev
)
292 struct scsi_cmnd
*cmd
, *n
;
294 list_for_each_entry_safe(cmd
, n
, error_q
, eh_entry
) {
295 struct domain_device
*x
= cmd_to_domain_dev(cmd
);
298 sas_eh_finish_cmd(cmd
);
302 static void sas_scsi_clear_queue_port(struct list_head
*error_q
,
303 struct asd_sas_port
*port
)
305 struct scsi_cmnd
*cmd
, *n
;
307 list_for_each_entry_safe(cmd
, n
, error_q
, eh_entry
) {
308 struct domain_device
*dev
= cmd_to_domain_dev(cmd
);
309 struct asd_sas_port
*x
= dev
->port
;
312 sas_eh_finish_cmd(cmd
);
316 enum task_disposition
{
324 static enum task_disposition
sas_scsi_find_task(struct sas_task
*task
)
326 struct sas_ha_struct
*ha
= task
->dev
->port
->ha
;
329 struct sas_internal
*si
=
330 to_sas_internal(task
->dev
->port
->ha
->core
.shost
->transportt
);
332 if (ha
->lldd_max_execute_num
> 1) {
333 struct scsi_core
*core
= &ha
->core
;
334 struct sas_task
*t
, *n
;
336 spin_lock_irqsave(&core
->task_queue_lock
, flags
);
337 list_for_each_entry_safe(t
, n
, &core
->task_queue
, list
) {
339 list_del_init(&t
->list
);
340 spin_unlock_irqrestore(&core
->task_queue_lock
,
342 SAS_DPRINTK("%s: task 0x%p aborted from "
345 return TASK_IS_ABORTED
;
348 spin_unlock_irqrestore(&core
->task_queue_lock
, flags
);
351 for (i
= 0; i
< 5; i
++) {
352 SAS_DPRINTK("%s: aborting task 0x%p\n", __FUNCTION__
, task
);
353 res
= si
->dft
->lldd_abort_task(task
);
355 spin_lock_irqsave(&task
->task_state_lock
, flags
);
356 if (task
->task_state_flags
& SAS_TASK_STATE_DONE
) {
357 spin_unlock_irqrestore(&task
->task_state_lock
, flags
);
358 SAS_DPRINTK("%s: task 0x%p is done\n", __FUNCTION__
,
362 spin_unlock_irqrestore(&task
->task_state_lock
, flags
);
364 if (res
== TMF_RESP_FUNC_COMPLETE
) {
365 SAS_DPRINTK("%s: task 0x%p is aborted\n",
367 return TASK_IS_ABORTED
;
368 } else if (si
->dft
->lldd_query_task
) {
369 SAS_DPRINTK("%s: querying task 0x%p\n",
371 res
= si
->dft
->lldd_query_task(task
);
373 case TMF_RESP_FUNC_SUCC
:
374 SAS_DPRINTK("%s: task 0x%p at LU\n",
376 return TASK_IS_AT_LU
;
377 case TMF_RESP_FUNC_COMPLETE
:
378 SAS_DPRINTK("%s: task 0x%p not at LU\n",
380 return TASK_IS_NOT_AT_LU
;
381 case TMF_RESP_FUNC_FAILED
:
382 SAS_DPRINTK("%s: task 0x%p failed to abort\n",
384 return TASK_ABORT_FAILED
;
392 static int sas_recover_lu(struct domain_device
*dev
, struct scsi_cmnd
*cmd
)
394 int res
= TMF_RESP_FUNC_FAILED
;
396 struct sas_internal
*i
=
397 to_sas_internal(dev
->port
->ha
->core
.shost
->transportt
);
399 int_to_scsilun(cmd
->device
->lun
, &lun
);
401 SAS_DPRINTK("eh: device %llx LUN %x has the task\n",
402 SAS_ADDR(dev
->sas_addr
),
405 if (i
->dft
->lldd_abort_task_set
)
406 res
= i
->dft
->lldd_abort_task_set(dev
, lun
.scsi_lun
);
408 if (res
== TMF_RESP_FUNC_FAILED
) {
409 if (i
->dft
->lldd_clear_task_set
)
410 res
= i
->dft
->lldd_clear_task_set(dev
, lun
.scsi_lun
);
413 if (res
== TMF_RESP_FUNC_FAILED
) {
414 if (i
->dft
->lldd_lu_reset
)
415 res
= i
->dft
->lldd_lu_reset(dev
, lun
.scsi_lun
);
421 static int sas_recover_I_T(struct domain_device
*dev
)
423 int res
= TMF_RESP_FUNC_FAILED
;
424 struct sas_internal
*i
=
425 to_sas_internal(dev
->port
->ha
->core
.shost
->transportt
);
427 SAS_DPRINTK("I_T nexus reset for dev %016llx\n",
428 SAS_ADDR(dev
->sas_addr
));
430 if (i
->dft
->lldd_I_T_nexus_reset
)
431 res
= i
->dft
->lldd_I_T_nexus_reset(dev
);
436 /* Find the sas_phy that's attached to this device */
437 struct sas_phy
*sas_find_local_phy(struct domain_device
*dev
)
439 struct domain_device
*pdev
= dev
->parent
;
440 struct ex_phy
*exphy
= NULL
;
443 /* Directly attached device */
445 return dev
->port
->phy
;
447 /* Otherwise look in the expander */
448 for (i
= 0; i
< pdev
->ex_dev
.num_phys
; i
++)
449 if (!memcmp(dev
->sas_addr
,
450 pdev
->ex_dev
.ex_phy
[i
].attached_sas_addr
,
452 exphy
= &pdev
->ex_dev
.ex_phy
[i
];
459 EXPORT_SYMBOL_GPL(sas_find_local_phy
);
461 /* Attempt to send a LUN reset message to a device */
462 int sas_eh_device_reset_handler(struct scsi_cmnd
*cmd
)
464 struct domain_device
*dev
= cmd_to_domain_dev(cmd
);
465 struct sas_internal
*i
=
466 to_sas_internal(dev
->port
->ha
->core
.shost
->transportt
);
470 int_to_scsilun(cmd
->device
->lun
, &lun
);
472 if (!i
->dft
->lldd_lu_reset
)
475 res
= i
->dft
->lldd_lu_reset(dev
, lun
.scsi_lun
);
476 if (res
== TMF_RESP_FUNC_SUCC
|| res
== TMF_RESP_FUNC_COMPLETE
)
482 /* Attempt to send a phy (bus) reset */
483 int sas_eh_bus_reset_handler(struct scsi_cmnd
*cmd
)
485 struct domain_device
*dev
= cmd_to_domain_dev(cmd
);
486 struct sas_phy
*phy
= sas_find_local_phy(dev
);
489 res
= sas_phy_reset(phy
, 1);
491 SAS_DPRINTK("Bus reset of %s failed 0x%x\n",
492 kobject_name(&phy
->dev
.kobj
),
494 if (res
== TMF_RESP_FUNC_SUCC
|| res
== TMF_RESP_FUNC_COMPLETE
)
500 /* Try to reset a device */
501 static int try_to_reset_cmd_device(struct scsi_cmnd
*cmd
)
504 struct Scsi_Host
*shost
= cmd
->device
->host
;
506 if (!shost
->hostt
->eh_device_reset_handler
)
509 res
= shost
->hostt
->eh_device_reset_handler(cmd
);
514 if (shost
->hostt
->eh_bus_reset_handler
)
515 return shost
->hostt
->eh_bus_reset_handler(cmd
);
520 static int sas_eh_handle_sas_errors(struct Scsi_Host
*shost
,
521 struct list_head
*work_q
,
522 struct list_head
*done_q
)
524 struct scsi_cmnd
*cmd
, *n
;
525 enum task_disposition res
= TASK_IS_DONE
;
526 int tmf_resp
, need_reset
;
527 struct sas_internal
*i
= to_sas_internal(shost
->transportt
);
529 struct sas_ha_struct
*ha
= SHOST_TO_SAS_HA(shost
);
532 list_for_each_entry_safe(cmd
, n
, work_q
, eh_entry
) {
533 struct sas_task
*task
= TO_SAS_TASK(cmd
);
538 list_del_init(&cmd
->eh_entry
);
540 spin_lock_irqsave(&task
->task_state_lock
, flags
);
541 need_reset
= task
->task_state_flags
& SAS_TASK_NEED_DEV_RESET
;
542 spin_unlock_irqrestore(&task
->task_state_lock
, flags
);
545 SAS_DPRINTK("%s: task 0x%p requests reset\n",
550 SAS_DPRINTK("trying to find task 0x%p\n", task
);
551 res
= sas_scsi_find_task(task
);
557 SAS_DPRINTK("%s: task 0x%p is done\n", __FUNCTION__
,
559 sas_eh_finish_cmd(cmd
);
561 case TASK_IS_ABORTED
:
562 SAS_DPRINTK("%s: task 0x%p is aborted\n",
564 sas_eh_finish_cmd(cmd
);
567 SAS_DPRINTK("task 0x%p is at LU: lu recover\n", task
);
569 tmf_resp
= sas_recover_lu(task
->dev
, cmd
);
570 if (tmf_resp
== TMF_RESP_FUNC_COMPLETE
) {
571 SAS_DPRINTK("dev %016llx LU %x is "
575 sas_eh_finish_cmd(cmd
);
576 sas_scsi_clear_queue_lu(work_q
, cmd
);
580 case TASK_IS_NOT_AT_LU
:
581 case TASK_ABORT_FAILED
:
582 SAS_DPRINTK("task 0x%p is not at LU: I_T recover\n",
584 tmf_resp
= sas_recover_I_T(task
->dev
);
585 if (tmf_resp
== TMF_RESP_FUNC_COMPLETE
) {
586 struct domain_device
*dev
= task
->dev
;
587 SAS_DPRINTK("I_T %016llx recovered\n",
588 SAS_ADDR(task
->dev
->sas_addr
));
589 sas_eh_finish_cmd(cmd
);
590 sas_scsi_clear_queue_I_T(work_q
, dev
);
593 /* Hammer time :-) */
594 try_to_reset_cmd_device(cmd
);
595 if (i
->dft
->lldd_clear_nexus_port
) {
596 struct asd_sas_port
*port
= task
->dev
->port
;
597 SAS_DPRINTK("clearing nexus for port:%d\n",
599 res
= i
->dft
->lldd_clear_nexus_port(port
);
600 if (res
== TMF_RESP_FUNC_COMPLETE
) {
601 SAS_DPRINTK("clear nexus port:%d "
602 "succeeded\n", port
->id
);
603 sas_eh_finish_cmd(cmd
);
604 sas_scsi_clear_queue_port(work_q
,
609 if (i
->dft
->lldd_clear_nexus_ha
) {
610 SAS_DPRINTK("clear nexus ha\n");
611 res
= i
->dft
->lldd_clear_nexus_ha(ha
);
612 if (res
== TMF_RESP_FUNC_COMPLETE
) {
613 SAS_DPRINTK("clear nexus ha "
615 sas_eh_finish_cmd(cmd
);
619 /* If we are here -- this means that no amount
620 * of effort could recover from errors. Quite
621 * possibly the HA just disappeared.
623 SAS_DPRINTK("error from device %llx, LUN %x "
624 "couldn't be recovered in any way\n",
625 SAS_ADDR(task
->dev
->sas_addr
),
628 sas_eh_finish_cmd(cmd
);
632 return list_empty(work_q
);
634 SAS_DPRINTK("--- Exit %s -- clear_q\n", __FUNCTION__
);
635 list_for_each_entry_safe(cmd
, n
, work_q
, eh_entry
)
636 sas_eh_finish_cmd(cmd
);
638 return list_empty(work_q
);
641 void sas_scsi_recover_host(struct Scsi_Host
*shost
)
643 struct sas_ha_struct
*ha
= SHOST_TO_SAS_HA(shost
);
645 LIST_HEAD(eh_work_q
);
647 spin_lock_irqsave(shost
->host_lock
, flags
);
648 list_splice_init(&shost
->eh_cmd_q
, &eh_work_q
);
649 spin_unlock_irqrestore(shost
->host_lock
, flags
);
651 SAS_DPRINTK("Enter %s\n", __FUNCTION__
);
653 * Deal with commands that still have SAS tasks (i.e. they didn't
654 * complete via the normal sas_task completion mechanism)
656 if (sas_eh_handle_sas_errors(shost
, &eh_work_q
, &ha
->eh_done_q
))
660 * Now deal with SCSI commands that completed ok but have a an error
661 * code (and hopefully sense data) attached. This is roughly what
662 * scsi_unjam_host does, but we skip scsi_eh_abort_cmds because any
663 * command we see here has no sas_task and is thus unknown to the HA.
665 if (!scsi_eh_get_sense(&eh_work_q
, &ha
->eh_done_q
))
666 scsi_eh_ready_devs(shost
, &eh_work_q
, &ha
->eh_done_q
);
669 scsi_eh_flush_done_q(&ha
->eh_done_q
);
670 SAS_DPRINTK("--- Exit %s\n", __FUNCTION__
);
674 enum scsi_eh_timer_return
sas_scsi_timed_out(struct scsi_cmnd
*cmd
)
676 struct sas_task
*task
= TO_SAS_TASK(cmd
);
680 cmd
->timeout_per_command
/= 2;
681 SAS_DPRINTK("command 0x%p, task 0x%p, gone: %s\n",
682 cmd
, task
, (cmd
->timeout_per_command
?
683 "EH_RESET_TIMER" : "EH_NOT_HANDLED"));
684 if (!cmd
->timeout_per_command
)
685 return EH_NOT_HANDLED
;
686 return EH_RESET_TIMER
;
689 spin_lock_irqsave(&task
->task_state_lock
, flags
);
690 BUG_ON(task
->task_state_flags
& SAS_TASK_STATE_ABORTED
);
691 if (task
->task_state_flags
& SAS_TASK_STATE_DONE
) {
692 spin_unlock_irqrestore(&task
->task_state_lock
, flags
);
693 SAS_DPRINTK("command 0x%p, task 0x%p, timed out: EH_HANDLED\n",
697 if (!(task
->task_state_flags
& SAS_TASK_AT_INITIATOR
)) {
698 spin_unlock_irqrestore(&task
->task_state_lock
, flags
);
699 SAS_DPRINTK("command 0x%p, task 0x%p, not at initiator: "
702 return EH_RESET_TIMER
;
704 task
->task_state_flags
|= SAS_TASK_STATE_ABORTED
;
705 spin_unlock_irqrestore(&task
->task_state_lock
, flags
);
707 SAS_DPRINTK("command 0x%p, task 0x%p, timed out: EH_NOT_HANDLED\n",
710 return EH_NOT_HANDLED
;
713 int sas_ioctl(struct scsi_device
*sdev
, int cmd
, void __user
*arg
)
715 struct domain_device
*dev
= sdev_to_domain_dev(sdev
);
717 if (dev_is_sata(dev
))
718 return ata_scsi_ioctl(sdev
, cmd
, arg
);
723 struct domain_device
*sas_find_dev_by_rphy(struct sas_rphy
*rphy
)
725 struct Scsi_Host
*shost
= dev_to_shost(rphy
->dev
.parent
);
726 struct sas_ha_struct
*ha
= SHOST_TO_SAS_HA(shost
);
727 struct domain_device
*found_dev
= NULL
;
731 spin_lock_irqsave(&ha
->phy_port_lock
, flags
);
732 for (i
= 0; i
< ha
->num_phys
; i
++) {
733 struct asd_sas_port
*port
= ha
->sas_port
[i
];
734 struct domain_device
*dev
;
736 spin_lock(&port
->dev_list_lock
);
737 list_for_each_entry(dev
, &port
->dev_list
, dev_list_node
) {
738 if (rphy
== dev
->rphy
) {
740 spin_unlock(&port
->dev_list_lock
);
744 spin_unlock(&port
->dev_list_lock
);
747 spin_unlock_irqrestore(&ha
->phy_port_lock
, flags
);
752 static inline struct domain_device
*sas_find_target(struct scsi_target
*starget
)
754 struct sas_rphy
*rphy
= dev_to_rphy(starget
->dev
.parent
);
756 return sas_find_dev_by_rphy(rphy
);
759 int sas_target_alloc(struct scsi_target
*starget
)
761 struct domain_device
*found_dev
= sas_find_target(starget
);
767 if (dev_is_sata(found_dev
)) {
768 res
= sas_ata_init_host_and_port(found_dev
, starget
);
773 starget
->hostdata
= found_dev
;
777 #define SAS_DEF_QD 32
778 #define SAS_MAX_QD 64
780 int sas_slave_configure(struct scsi_device
*scsi_dev
)
782 struct domain_device
*dev
= sdev_to_domain_dev(scsi_dev
);
783 struct sas_ha_struct
*sas_ha
;
785 BUG_ON(dev
->rphy
->identify
.device_type
!= SAS_END_DEVICE
);
787 if (dev_is_sata(dev
)) {
788 ata_sas_slave_configure(scsi_dev
, dev
->sata_dev
.ap
);
792 sas_ha
= dev
->port
->ha
;
794 sas_read_port_mode_page(scsi_dev
);
796 if (scsi_dev
->tagged_supported
) {
797 scsi_set_tag_type(scsi_dev
, MSG_SIMPLE_TAG
);
798 scsi_activate_tcq(scsi_dev
, SAS_DEF_QD
);
800 SAS_DPRINTK("device %llx, LUN %x doesn't support "
801 "TCQ\n", SAS_ADDR(dev
->sas_addr
),
803 scsi_dev
->tagged_supported
= 0;
804 scsi_set_tag_type(scsi_dev
, 0);
805 scsi_deactivate_tcq(scsi_dev
, 1);
808 scsi_dev
->allow_restart
= 1;
813 void sas_slave_destroy(struct scsi_device
*scsi_dev
)
815 struct domain_device
*dev
= sdev_to_domain_dev(scsi_dev
);
817 if (dev_is_sata(dev
))
818 ata_port_disable(dev
->sata_dev
.ap
);
821 int sas_change_queue_depth(struct scsi_device
*scsi_dev
, int new_depth
)
823 int res
= min(new_depth
, SAS_MAX_QD
);
825 if (scsi_dev
->tagged_supported
)
826 scsi_adjust_queue_depth(scsi_dev
, scsi_get_tag_type(scsi_dev
),
829 struct domain_device
*dev
= sdev_to_domain_dev(scsi_dev
);
830 sas_printk("device %llx LUN %x queue depth changed to 1\n",
831 SAS_ADDR(dev
->sas_addr
),
833 scsi_adjust_queue_depth(scsi_dev
, 0, 1);
840 int sas_change_queue_type(struct scsi_device
*scsi_dev
, int qt
)
842 if (!scsi_dev
->tagged_supported
)
845 scsi_deactivate_tcq(scsi_dev
, 1);
847 scsi_set_tag_type(scsi_dev
, qt
);
848 scsi_activate_tcq(scsi_dev
, scsi_dev
->queue_depth
);
853 int sas_bios_param(struct scsi_device
*scsi_dev
,
854 struct block_device
*bdev
,
855 sector_t capacity
, int *hsc
)
859 sector_div(capacity
, 255*63);
865 /* ---------- Task Collector Thread implementation ---------- */
867 static void sas_queue(struct sas_ha_struct
*sas_ha
)
869 struct scsi_core
*core
= &sas_ha
->core
;
874 struct sas_internal
*i
= to_sas_internal(core
->shost
->transportt
);
876 spin_lock_irqsave(&core
->task_queue_lock
, flags
);
877 while (!kthread_should_stop() &&
878 !list_empty(&core
->task_queue
)) {
880 can_queue
= sas_ha
->lldd_queue_size
- core
->task_queue_size
;
881 if (can_queue
>= 0) {
882 can_queue
= core
->task_queue_size
;
883 list_splice_init(&core
->task_queue
, &q
);
885 struct list_head
*a
, *n
;
887 can_queue
= sas_ha
->lldd_queue_size
;
888 list_for_each_safe(a
, n
, &core
->task_queue
) {
889 list_move_tail(a
, &q
);
890 if (--can_queue
== 0)
893 can_queue
= sas_ha
->lldd_queue_size
;
895 core
->task_queue_size
-= can_queue
;
896 spin_unlock_irqrestore(&core
->task_queue_lock
, flags
);
898 struct sas_task
*task
= list_entry(q
.next
,
902 res
= i
->dft
->lldd_execute_task(task
, can_queue
,
905 __list_add(&q
, task
->list
.prev
, &task
->list
);
907 spin_lock_irqsave(&core
->task_queue_lock
, flags
);
909 list_splice_init(&q
, &core
->task_queue
); /*at head*/
910 core
->task_queue_size
+= can_queue
;
913 spin_unlock_irqrestore(&core
->task_queue_lock
, flags
);
917 * sas_queue_thread -- The Task Collector thread
918 * @_sas_ha: pointer to struct sas_ha
920 static int sas_queue_thread(void *_sas_ha
)
922 struct sas_ha_struct
*sas_ha
= _sas_ha
;
925 set_current_state(TASK_INTERRUPTIBLE
);
928 if (kthread_should_stop())
935 int sas_init_queue(struct sas_ha_struct
*sas_ha
)
937 struct scsi_core
*core
= &sas_ha
->core
;
939 spin_lock_init(&core
->task_queue_lock
);
940 core
->task_queue_size
= 0;
941 INIT_LIST_HEAD(&core
->task_queue
);
943 core
->queue_thread
= kthread_run(sas_queue_thread
, sas_ha
,
944 "sas_queue_%d", core
->shost
->host_no
);
945 if (IS_ERR(core
->queue_thread
))
946 return PTR_ERR(core
->queue_thread
);
950 void sas_shutdown_queue(struct sas_ha_struct
*sas_ha
)
953 struct scsi_core
*core
= &sas_ha
->core
;
954 struct sas_task
*task
, *n
;
956 kthread_stop(core
->queue_thread
);
958 if (!list_empty(&core
->task_queue
))
959 SAS_DPRINTK("HA: %llx: scsi core task queue is NOT empty!?\n",
960 SAS_ADDR(sas_ha
->sas_addr
));
962 spin_lock_irqsave(&core
->task_queue_lock
, flags
);
963 list_for_each_entry_safe(task
, n
, &core
->task_queue
, list
) {
964 struct scsi_cmnd
*cmd
= task
->uldd_task
;
966 list_del_init(&task
->list
);
968 ASSIGN_SAS_TASK(cmd
, NULL
);
970 cmd
->result
= DID_ABORT
<< 16;
973 spin_unlock_irqrestore(&core
->task_queue_lock
, flags
);
977 * Call the LLDD task abort routine directly. This function is intended for
978 * use by upper layers that need to tell the LLDD to abort a task.
980 int __sas_task_abort(struct sas_task
*task
)
982 struct sas_internal
*si
=
983 to_sas_internal(task
->dev
->port
->ha
->core
.shost
->transportt
);
987 spin_lock_irqsave(&task
->task_state_lock
, flags
);
988 if (task
->task_state_flags
& SAS_TASK_STATE_ABORTED
||
989 task
->task_state_flags
& SAS_TASK_STATE_DONE
) {
990 spin_unlock_irqrestore(&task
->task_state_lock
, flags
);
991 SAS_DPRINTK("%s: Task %p already finished.\n", __FUNCTION__
,
995 task
->task_state_flags
|= SAS_TASK_STATE_ABORTED
;
996 spin_unlock_irqrestore(&task
->task_state_lock
, flags
);
998 if (!si
->dft
->lldd_abort_task
)
1001 res
= si
->dft
->lldd_abort_task(task
);
1003 spin_lock_irqsave(&task
->task_state_lock
, flags
);
1004 if ((task
->task_state_flags
& SAS_TASK_STATE_DONE
) ||
1005 (res
== TMF_RESP_FUNC_COMPLETE
))
1007 spin_unlock_irqrestore(&task
->task_state_lock
, flags
);
1008 task
->task_done(task
);
1012 if (!(task
->task_state_flags
& SAS_TASK_STATE_DONE
))
1013 task
->task_state_flags
&= ~SAS_TASK_STATE_ABORTED
;
1014 spin_unlock_irqrestore(&task
->task_state_lock
, flags
);
1020 * Tell an upper layer that it needs to initiate an abort for a given task.
1021 * This should only ever be called by an LLDD.
1023 void sas_task_abort(struct sas_task
*task
)
1025 struct scsi_cmnd
*sc
= task
->uldd_task
;
1027 /* Escape for libsas internal commands */
1029 if (!del_timer(&task
->timer
))
1031 task
->timer
.function(task
->timer
.data
);
1035 if (dev_is_sata(task
->dev
)) {
1036 sas_ata_task_abort(task
);
1040 scsi_req_abort_cmd(sc
);
1041 scsi_schedule_eh(sc
->device
->host
);
1044 int sas_slave_alloc(struct scsi_device
*scsi_dev
)
1046 struct domain_device
*dev
= sdev_to_domain_dev(scsi_dev
);
1048 if (dev_is_sata(dev
))
1049 return ata_sas_port_init(dev
->sata_dev
.ap
);
1054 void sas_target_destroy(struct scsi_target
*starget
)
1056 struct domain_device
*found_dev
= sas_find_target(starget
);
1061 if (dev_is_sata(found_dev
))
1062 ata_sas_port_destroy(found_dev
->sata_dev
.ap
);
1067 EXPORT_SYMBOL_GPL(sas_queuecommand
);
1068 EXPORT_SYMBOL_GPL(sas_target_alloc
);
1069 EXPORT_SYMBOL_GPL(sas_slave_configure
);
1070 EXPORT_SYMBOL_GPL(sas_slave_destroy
);
1071 EXPORT_SYMBOL_GPL(sas_change_queue_depth
);
1072 EXPORT_SYMBOL_GPL(sas_change_queue_type
);
1073 EXPORT_SYMBOL_GPL(sas_bios_param
);
1074 EXPORT_SYMBOL_GPL(__sas_task_abort
);
1075 EXPORT_SYMBOL_GPL(sas_task_abort
);
1076 EXPORT_SYMBOL_GPL(sas_phy_reset
);
1077 EXPORT_SYMBOL_GPL(sas_phy_enable
);
1078 EXPORT_SYMBOL_GPL(sas_eh_device_reset_handler
);
1079 EXPORT_SYMBOL_GPL(sas_eh_bus_reset_handler
);
1080 EXPORT_SYMBOL_GPL(sas_slave_alloc
);
1081 EXPORT_SYMBOL_GPL(sas_target_destroy
);
1082 EXPORT_SYMBOL_GPL(sas_ioctl
);