1 // SPDX-License-Identifier: GPL-2.0-only
3 * Aic94xx Task Management Functions
5 * Copyright (C) 2005 Adaptec, Inc. All rights reserved.
6 * Copyright (C) 2005 Luben Tuikov <luben_tuikov@adaptec.com>
9 #include <linux/spinlock.h>
10 #include <linux/gfp.h>
12 #include "aic94xx_sas.h"
13 #include "aic94xx_hwi.h"
15 /* ---------- Internal enqueue ---------- */
17 static int asd_enqueue_internal(struct asd_ascb
*ascb
,
18 void (*tasklet_complete
)(struct asd_ascb
*,
19 struct done_list_struct
*),
20 void (*timed_out
)(struct timer_list
*t
))
24 ascb
->tasklet_complete
= tasklet_complete
;
27 ascb
->timer
.function
= timed_out
;
28 ascb
->timer
.expires
= jiffies
+ AIC94XX_SCB_TIMEOUT
;
30 add_timer(&ascb
->timer
);
32 res
= asd_post_ascb_list(ascb
->ha
, ascb
, 1);
34 del_timer(&ascb
->timer
);
38 /* ---------- CLEAR NEXUS ---------- */
40 struct tasklet_completion_status
{
47 #define DECLARE_TCS(tcs) \
48 struct tasklet_completion_status tcs = { \
56 static void asd_clear_nexus_tasklet_complete(struct asd_ascb
*ascb
,
57 struct done_list_struct
*dl
)
59 struct tasklet_completion_status
*tcs
= ascb
->uldd_task
;
60 ASD_DPRINTK("%s: here\n", __func__
);
61 if (!del_timer(&ascb
->timer
)) {
62 ASD_DPRINTK("%s: couldn't delete timer\n", __func__
);
65 ASD_DPRINTK("%s: opcode: 0x%x\n", __func__
, dl
->opcode
);
66 tcs
->dl_opcode
= dl
->opcode
;
67 complete(ascb
->completion
);
71 static void asd_clear_nexus_timedout(struct timer_list
*t
)
73 struct asd_ascb
*ascb
= from_timer(ascb
, t
, timer
);
74 struct tasklet_completion_status
*tcs
= ascb
->uldd_task
;
76 ASD_DPRINTK("%s: here\n", __func__
);
77 tcs
->dl_opcode
= TMF_RESP_FUNC_FAILED
;
78 complete(ascb
->completion
);
81 #define CLEAR_NEXUS_PRE \
82 struct asd_ascb *ascb; \
85 DECLARE_COMPLETION_ONSTACK(completion); \
88 ASD_DPRINTK("%s: PRE\n", __func__); \
90 ascb = asd_ascb_alloc_list(asd_ha, &res, GFP_KERNEL); \
94 ascb->completion = &completion; \
95 ascb->uldd_task = &tcs; \
97 scb->header.opcode = CLEAR_NEXUS
99 #define CLEAR_NEXUS_POST \
100 ASD_DPRINTK("%s: POST\n", __func__); \
101 res = asd_enqueue_internal(ascb, asd_clear_nexus_tasklet_complete, \
102 asd_clear_nexus_timedout); \
105 ASD_DPRINTK("%s: clear nexus posted, waiting...\n", __func__); \
106 wait_for_completion(&completion); \
107 res = tcs.dl_opcode; \
108 if (res == TC_NO_ERROR) \
109 res = TMF_RESP_FUNC_COMPLETE; \
112 asd_ascb_free(ascb); \
115 int asd_clear_nexus_ha(struct sas_ha_struct
*sas_ha
)
117 struct asd_ha_struct
*asd_ha
= sas_ha
->lldd_ha
;
120 scb
->clear_nexus
.nexus
= NEXUS_ADAPTER
;
124 int asd_clear_nexus_port(struct asd_sas_port
*port
)
126 struct asd_ha_struct
*asd_ha
= port
->ha
->lldd_ha
;
129 scb
->clear_nexus
.nexus
= NEXUS_PORT
;
130 scb
->clear_nexus
.conn_mask
= port
->phy_mask
;
134 enum clear_nexus_phase
{
140 static int asd_clear_nexus_I_T(struct domain_device
*dev
,
141 enum clear_nexus_phase phase
)
143 struct asd_ha_struct
*asd_ha
= dev
->port
->ha
->lldd_ha
;
146 scb
->clear_nexus
.nexus
= NEXUS_I_T
;
148 case NEXUS_PHASE_PRE
:
149 scb
->clear_nexus
.flags
= EXEC_Q
| SUSPEND_TX
;
151 case NEXUS_PHASE_POST
:
152 scb
->clear_nexus
.flags
= SEND_Q
| NOTINQ
;
154 case NEXUS_PHASE_RESUME
:
155 scb
->clear_nexus
.flags
= RESUME_TX
;
157 scb
->clear_nexus
.conn_handle
= cpu_to_le16((u16
)(unsigned long)
162 int asd_I_T_nexus_reset(struct domain_device
*dev
)
165 struct sas_phy
*phy
= sas_get_local_phy(dev
);
166 /* Standard mandates link reset for ATA (type 0) and
167 * hard reset for SSP (type 1) */
168 int reset_type
= (dev
->dev_type
== SAS_SATA_DEV
||
169 (dev
->tproto
& SAS_PROTOCOL_STP
)) ? 0 : 1;
171 asd_clear_nexus_I_T(dev
, NEXUS_PHASE_PRE
);
172 /* send a hard reset */
173 ASD_DPRINTK("sending %s reset to %s\n",
174 reset_type
? "hard" : "soft", dev_name(&phy
->dev
));
175 res
= sas_phy_reset(phy
, reset_type
);
176 if (res
== TMF_RESP_FUNC_COMPLETE
|| res
== -ENODEV
) {
177 /* wait for the maximum settle time */
179 /* clear all outstanding commands (keep nexus suspended) */
180 asd_clear_nexus_I_T(dev
, NEXUS_PHASE_POST
);
182 for (i
= 0 ; i
< 3; i
++) {
183 tmp_res
= asd_clear_nexus_I_T(dev
, NEXUS_PHASE_RESUME
);
184 if (tmp_res
== TC_RESUME
)
189 /* This is a bit of a problem: the sequencer is still suspended
190 * and is refusing to resume. Hope it will resume on a bigger hammer
191 * or the disk is lost */
192 dev_printk(KERN_ERR
, &phy
->dev
,
193 "Failed to resume nexus after reset 0x%x\n", tmp_res
);
195 res
= TMF_RESP_FUNC_FAILED
;
197 sas_put_local_phy(phy
);
201 static int asd_clear_nexus_I_T_L(struct domain_device
*dev
, u8
*lun
)
203 struct asd_ha_struct
*asd_ha
= dev
->port
->ha
->lldd_ha
;
206 scb
->clear_nexus
.nexus
= NEXUS_I_T_L
;
207 scb
->clear_nexus
.flags
= SEND_Q
| EXEC_Q
| NOTINQ
;
208 memcpy(scb
->clear_nexus
.ssp_task
.lun
, lun
, 8);
209 scb
->clear_nexus
.conn_handle
= cpu_to_le16((u16
)(unsigned long)
214 static int asd_clear_nexus_tag(struct sas_task
*task
)
216 struct asd_ha_struct
*asd_ha
= task
->dev
->port
->ha
->lldd_ha
;
217 struct asd_ascb
*tascb
= task
->lldd_task
;
220 scb
->clear_nexus
.nexus
= NEXUS_TAG
;
221 memcpy(scb
->clear_nexus
.ssp_task
.lun
, task
->ssp_task
.LUN
, 8);
222 scb
->clear_nexus
.ssp_task
.tag
= tascb
->tag
;
223 if (task
->dev
->tproto
)
224 scb
->clear_nexus
.conn_handle
= cpu_to_le16((u16
)(unsigned long)
225 task
->dev
->lldd_dev
);
229 static int asd_clear_nexus_index(struct sas_task
*task
)
231 struct asd_ha_struct
*asd_ha
= task
->dev
->port
->ha
->lldd_ha
;
232 struct asd_ascb
*tascb
= task
->lldd_task
;
235 scb
->clear_nexus
.nexus
= NEXUS_TRANS_CX
;
236 if (task
->dev
->tproto
)
237 scb
->clear_nexus
.conn_handle
= cpu_to_le16((u16
)(unsigned long)
238 task
->dev
->lldd_dev
);
239 scb
->clear_nexus
.index
= cpu_to_le16(tascb
->tc_index
);
243 /* ---------- TMFs ---------- */
245 static void asd_tmf_timedout(struct timer_list
*t
)
247 struct asd_ascb
*ascb
= from_timer(ascb
, t
, timer
);
248 struct tasklet_completion_status
*tcs
= ascb
->uldd_task
;
250 ASD_DPRINTK("tmf timed out\n");
251 tcs
->tmf_state
= TMF_RESP_FUNC_FAILED
;
252 complete(ascb
->completion
);
255 static int asd_get_tmf_resp_tasklet(struct asd_ascb
*ascb
,
256 struct done_list_struct
*dl
)
258 struct asd_ha_struct
*asd_ha
= ascb
->ha
;
260 struct tc_resp_sb_struct
{
264 } __attribute__ ((packed
)) *resp_sb
= (void *) dl
->status_block
;
266 int edb_id
= ((resp_sb
->flags
& 0x70) >> 4)-1;
267 struct asd_ascb
*escb
;
268 struct asd_dma_tok
*edb
;
269 struct ssp_frame_hdr
*fh
;
270 struct ssp_response_iu
*ru
;
271 int res
= TMF_RESP_FUNC_FAILED
;
273 ASD_DPRINTK("tmf resp tasklet\n");
275 spin_lock_irqsave(&asd_ha
->seq
.tc_index_lock
, flags
);
276 escb
= asd_tc_index_find(&asd_ha
->seq
,
277 (int)le16_to_cpu(resp_sb
->index_escb
));
278 spin_unlock_irqrestore(&asd_ha
->seq
.tc_index_lock
, flags
);
281 ASD_DPRINTK("Uh-oh! No escb for this dl?!\n");
285 edb
= asd_ha
->seq
.edb_arr
[edb_id
+ escb
->edb_index
];
286 ascb
->tag
= *(__be16
*)(edb
->vaddr
+4);
287 fh
= edb
->vaddr
+ 16;
288 ru
= edb
->vaddr
+ 16 + sizeof(*fh
);
290 if (ru
->datapres
== 1) /* Response data present */
291 res
= ru
->resp_data
[3];
297 asd_invalidate_edb(escb
, edb_id
);
301 static void asd_tmf_tasklet_complete(struct asd_ascb
*ascb
,
302 struct done_list_struct
*dl
)
304 struct tasklet_completion_status
*tcs
;
306 if (!del_timer(&ascb
->timer
))
309 tcs
= ascb
->uldd_task
;
310 ASD_DPRINTK("tmf tasklet complete\n");
312 tcs
->dl_opcode
= dl
->opcode
;
314 if (dl
->opcode
== TC_SSP_RESP
) {
315 tcs
->tmf_state
= asd_get_tmf_resp_tasklet(ascb
, dl
);
316 tcs
->tag_valid
= ascb
->tag_valid
;
317 tcs
->tag
= ascb
->tag
;
320 complete(ascb
->completion
);
324 static int asd_clear_nexus(struct sas_task
*task
)
326 int res
= TMF_RESP_FUNC_FAILED
;
328 struct asd_ascb
*tascb
= task
->lldd_task
;
329 DECLARE_COMPLETION_ONSTACK(completion
);
332 tascb
->completion
= &completion
;
334 ASD_DPRINTK("task not done, clearing nexus\n");
335 if (tascb
->tag_valid
)
336 res
= asd_clear_nexus_tag(task
);
338 res
= asd_clear_nexus_index(task
);
339 leftover
= wait_for_completion_timeout(&completion
,
340 AIC94XX_SCB_TIMEOUT
);
341 tascb
->completion
= NULL
;
342 ASD_DPRINTK("came back from clear nexus\n");
343 spin_lock_irqsave(&task
->task_state_lock
, flags
);
345 res
= TMF_RESP_FUNC_FAILED
;
346 if (task
->task_state_flags
& SAS_TASK_STATE_DONE
)
347 res
= TMF_RESP_FUNC_COMPLETE
;
348 spin_unlock_irqrestore(&task
->task_state_lock
, flags
);
354 * asd_abort_task -- ABORT TASK TMF
355 * @task: the task to be aborted
357 * Before calling ABORT TASK the task state flags should be ORed with
358 * SAS_TASK_STATE_ABORTED (unless SAS_TASK_STATE_DONE is set) under
359 * the task_state_lock IRQ spinlock, then ABORT TASK *must* be called.
361 * Implements the ABORT TASK TMF, I_T_L_Q nexus.
362 * Returns: SAS TMF responses (see sas_task.h),
366 * When ABORT TASK returns, the caller of ABORT TASK checks first the
367 * task->task_state_flags, and then the return value of ABORT TASK.
369 * If the task has task state bit SAS_TASK_STATE_DONE set, then the
370 * task was completed successfully prior to it being aborted. The
371 * caller of ABORT TASK has responsibility to call task->task_done()
372 * xor free the task, depending on their framework. The return code
373 * is TMF_RESP_FUNC_FAILED in this case.
375 * Else the SAS_TASK_STATE_DONE bit is not set,
376 * If the return code is TMF_RESP_FUNC_COMPLETE, then
377 * the task was aborted successfully. The caller of
378 * ABORT TASK has responsibility to call task->task_done()
379 * to finish the task, xor free the task depending on their
382 * the ABORT TASK returned some kind of error. The task
383 * was _not_ cancelled. Nothing can be assumed.
384 * The caller of ABORT TASK may wish to retry.
386 int asd_abort_task(struct sas_task
*task
)
388 struct asd_ascb
*tascb
= task
->lldd_task
;
389 struct asd_ha_struct
*asd_ha
= tascb
->ha
;
392 struct asd_ascb
*ascb
= NULL
;
396 DECLARE_COMPLETION_ONSTACK(completion
);
397 DECLARE_COMPLETION_ONSTACK(tascb_completion
);
399 tascb
->completion
= &tascb_completion
;
401 spin_lock_irqsave(&task
->task_state_lock
, flags
);
402 if (task
->task_state_flags
& SAS_TASK_STATE_DONE
) {
403 spin_unlock_irqrestore(&task
->task_state_lock
, flags
);
404 res
= TMF_RESP_FUNC_COMPLETE
;
405 ASD_DPRINTK("%s: task 0x%p done\n", __func__
, task
);
408 spin_unlock_irqrestore(&task
->task_state_lock
, flags
);
410 ascb
= asd_ascb_alloc_list(asd_ha
, &res
, GFP_KERNEL
);
414 ascb
->uldd_task
= &tcs
;
415 ascb
->completion
= &completion
;
417 scb
->header
.opcode
= SCB_ABORT_TASK
;
419 switch (task
->task_proto
) {
420 case SAS_PROTOCOL_SATA
:
421 case SAS_PROTOCOL_STP
:
422 scb
->abort_task
.proto_conn_rate
= (1 << 5); /* STP */
424 case SAS_PROTOCOL_SSP
:
425 scb
->abort_task
.proto_conn_rate
= (1 << 4); /* SSP */
426 scb
->abort_task
.proto_conn_rate
|= task
->dev
->linkrate
;
428 case SAS_PROTOCOL_SMP
:
434 if (task
->task_proto
== SAS_PROTOCOL_SSP
) {
435 scb
->abort_task
.ssp_frame
.frame_type
= SSP_TASK
;
436 memcpy(scb
->abort_task
.ssp_frame
.hashed_dest_addr
,
437 task
->dev
->hashed_sas_addr
, HASHED_SAS_ADDR_SIZE
);
438 memcpy(scb
->abort_task
.ssp_frame
.hashed_src_addr
,
439 task
->dev
->port
->ha
->hashed_sas_addr
,
440 HASHED_SAS_ADDR_SIZE
);
441 scb
->abort_task
.ssp_frame
.tptt
= cpu_to_be16(0xFFFF);
443 memcpy(scb
->abort_task
.ssp_task
.lun
, task
->ssp_task
.LUN
, 8);
444 scb
->abort_task
.ssp_task
.tmf
= TMF_ABORT_TASK
;
445 scb
->abort_task
.ssp_task
.tag
= cpu_to_be16(0xFFFF);
448 scb
->abort_task
.sister_scb
= cpu_to_le16(0xFFFF);
449 scb
->abort_task
.conn_handle
= cpu_to_le16(
450 (u16
)(unsigned long)task
->dev
->lldd_dev
);
451 scb
->abort_task
.retry_count
= 1;
452 scb
->abort_task
.index
= cpu_to_le16((u16
)tascb
->tc_index
);
453 scb
->abort_task
.itnl_to
= cpu_to_le16(ITNL_TIMEOUT_CONST
);
455 res
= asd_enqueue_internal(ascb
, asd_tmf_tasklet_complete
,
459 wait_for_completion(&completion
);
460 ASD_DPRINTK("tmf came back\n");
462 tascb
->tag
= tcs
.tag
;
463 tascb
->tag_valid
= tcs
.tag_valid
;
465 spin_lock_irqsave(&task
->task_state_lock
, flags
);
466 if (task
->task_state_flags
& SAS_TASK_STATE_DONE
) {
467 spin_unlock_irqrestore(&task
->task_state_lock
, flags
);
468 res
= TMF_RESP_FUNC_COMPLETE
;
469 ASD_DPRINTK("%s: task 0x%p done\n", __func__
, task
);
472 spin_unlock_irqrestore(&task
->task_state_lock
, flags
);
474 if (tcs
.dl_opcode
== TC_SSP_RESP
) {
475 /* The task to be aborted has been sent to the device.
476 * We got a Response IU for the ABORT TASK TMF. */
477 if (tcs
.tmf_state
== TMF_RESP_FUNC_COMPLETE
)
478 res
= asd_clear_nexus(task
);
481 } else if (tcs
.dl_opcode
== TC_NO_ERROR
&&
482 tcs
.tmf_state
== TMF_RESP_FUNC_FAILED
) {
484 res
= TMF_RESP_FUNC_FAILED
;
486 /* In the following we assume that the managing layer
487 * will _never_ make a mistake, when issuing ABORT
490 switch (tcs
.dl_opcode
) {
492 res
= asd_clear_nexus(task
);
496 /* The task hasn't been sent to the device xor
497 * we never got a (sane) Response IU for the
501 res
= TMF_RESP_INVALID_FRAME
;
503 case TF_TMF_TASK_DONE
: /* done but not reported yet */
504 res
= TMF_RESP_FUNC_FAILED
;
506 wait_for_completion_timeout(&tascb_completion
,
507 AIC94XX_SCB_TIMEOUT
);
508 spin_lock_irqsave(&task
->task_state_lock
, flags
);
510 res
= TMF_RESP_FUNC_FAILED
;
511 if (task
->task_state_flags
& SAS_TASK_STATE_DONE
)
512 res
= TMF_RESP_FUNC_COMPLETE
;
513 spin_unlock_irqrestore(&task
->task_state_lock
, flags
);
516 case TF_TMF_TAG_FREE
: /* the tag is in the free list */
517 case TF_TMF_NO_CONN_HANDLE
: /* no such device */
518 res
= TMF_RESP_FUNC_COMPLETE
;
520 case TF_TMF_NO_CTX
: /* not in seq, or proto != SSP */
521 res
= TMF_RESP_FUNC_ESUPP
;
526 tascb
->completion
= NULL
;
527 if (res
== TMF_RESP_FUNC_COMPLETE
) {
528 task
->lldd_task
= NULL
;
530 asd_ascb_free(tascb
);
532 ASD_DPRINTK("task 0x%p aborted, res: 0x%x\n", task
, res
);
537 ASD_DPRINTK("task 0x%p aborted, res: 0x%x\n", task
, res
);
542 * asd_initiate_ssp_tmf -- send a TMF to an I_T_L or I_T_L_Q nexus
543 * @dev: pointer to struct domain_device of interest
544 * @lun: pointer to u8[8] which is the LUN
545 * @tmf: the TMF to be performed (see sas_task.h or the SAS spec)
546 * @index: the transaction context of the task to be queried if QT TMF
548 * This function is used to send ABORT TASK SET, CLEAR ACA,
549 * CLEAR TASK SET, LU RESET and QUERY TASK TMFs.
551 * No SCBs should be queued to the I_T_L nexus when this SCB is
554 * Returns: TMF response code (see sas_task.h or the SAS spec)
556 static int asd_initiate_ssp_tmf(struct domain_device
*dev
, u8
*lun
,
559 struct asd_ha_struct
*asd_ha
= dev
->port
->ha
->lldd_ha
;
560 struct asd_ascb
*ascb
;
563 DECLARE_COMPLETION_ONSTACK(completion
);
566 if (!(dev
->tproto
& SAS_PROTOCOL_SSP
))
567 return TMF_RESP_FUNC_ESUPP
;
569 ascb
= asd_ascb_alloc_list(asd_ha
, &res
, GFP_KERNEL
);
573 ascb
->completion
= &completion
;
574 ascb
->uldd_task
= &tcs
;
577 if (tmf
== TMF_QUERY_TASK
)
578 scb
->header
.opcode
= QUERY_SSP_TASK
;
580 scb
->header
.opcode
= INITIATE_SSP_TMF
;
582 scb
->ssp_tmf
.proto_conn_rate
= (1 << 4); /* SSP */
583 scb
->ssp_tmf
.proto_conn_rate
|= dev
->linkrate
;
584 /* SSP frame header */
585 scb
->ssp_tmf
.ssp_frame
.frame_type
= SSP_TASK
;
586 memcpy(scb
->ssp_tmf
.ssp_frame
.hashed_dest_addr
,
587 dev
->hashed_sas_addr
, HASHED_SAS_ADDR_SIZE
);
588 memcpy(scb
->ssp_tmf
.ssp_frame
.hashed_src_addr
,
589 dev
->port
->ha
->hashed_sas_addr
, HASHED_SAS_ADDR_SIZE
);
590 scb
->ssp_tmf
.ssp_frame
.tptt
= cpu_to_be16(0xFFFF);
592 memcpy(scb
->ssp_tmf
.ssp_task
.lun
, lun
, 8);
593 scb
->ssp_tmf
.ssp_task
.tmf
= tmf
;
595 scb
->ssp_tmf
.sister_scb
= cpu_to_le16(0xFFFF);
596 scb
->ssp_tmf
.conn_handle
= cpu_to_le16((u16
)(unsigned long)
598 scb
->ssp_tmf
.retry_count
= 1;
599 scb
->ssp_tmf
.itnl_to
= cpu_to_le16(ITNL_TIMEOUT_CONST
);
600 if (tmf
== TMF_QUERY_TASK
)
601 scb
->ssp_tmf
.index
= cpu_to_le16(index
);
603 res
= asd_enqueue_internal(ascb
, asd_tmf_tasklet_complete
,
607 wait_for_completion(&completion
);
609 switch (tcs
.dl_opcode
) {
611 res
= TMF_RESP_FUNC_COMPLETE
;
614 res
= TMF_RESP_INVALID_FRAME
;
616 case TF_TMF_TASK_DONE
:
617 res
= TMF_RESP_FUNC_FAILED
;
620 case TF_TMF_TAG_FREE
: /* the tag is in the free list */
621 case TF_TMF_NO_CONN_HANDLE
: /* no such device */
622 res
= TMF_RESP_FUNC_COMPLETE
;
624 case TF_TMF_NO_CTX
: /* not in seq, or proto != SSP */
625 res
= TMF_RESP_FUNC_ESUPP
;
628 /* Allow TMF response codes to propagate upwards */
638 int asd_abort_task_set(struct domain_device
*dev
, u8
*lun
)
640 int res
= asd_initiate_ssp_tmf(dev
, lun
, TMF_ABORT_TASK_SET
, 0);
642 if (res
== TMF_RESP_FUNC_COMPLETE
)
643 asd_clear_nexus_I_T_L(dev
, lun
);
647 int asd_clear_aca(struct domain_device
*dev
, u8
*lun
)
649 int res
= asd_initiate_ssp_tmf(dev
, lun
, TMF_CLEAR_ACA
, 0);
651 if (res
== TMF_RESP_FUNC_COMPLETE
)
652 asd_clear_nexus_I_T_L(dev
, lun
);
656 int asd_clear_task_set(struct domain_device
*dev
, u8
*lun
)
658 int res
= asd_initiate_ssp_tmf(dev
, lun
, TMF_CLEAR_TASK_SET
, 0);
660 if (res
== TMF_RESP_FUNC_COMPLETE
)
661 asd_clear_nexus_I_T_L(dev
, lun
);
665 int asd_lu_reset(struct domain_device
*dev
, u8
*lun
)
667 int res
= asd_initiate_ssp_tmf(dev
, lun
, TMF_LU_RESET
, 0);
669 if (res
== TMF_RESP_FUNC_COMPLETE
)
670 asd_clear_nexus_I_T_L(dev
, lun
);
675 * asd_query_task -- send a QUERY TASK TMF to an I_T_L_Q nexus
676 * task: pointer to sas_task struct of interest
678 * Returns: TMF_RESP_FUNC_COMPLETE if the task is not in the task set,
679 * or TMF_RESP_FUNC_SUCC if the task is in the task set.
681 * Normally the management layer sets the task to aborted state,
682 * and then calls query task and then abort task.
684 int asd_query_task(struct sas_task
*task
)
686 struct asd_ascb
*ascb
= task
->lldd_task
;
690 index
= ascb
->tc_index
;
691 return asd_initiate_ssp_tmf(task
->dev
, task
->ssp_task
.LUN
,
692 TMF_QUERY_TASK
, index
);
694 return TMF_RESP_FUNC_COMPLETE
;