1 // SPDX-License-Identifier: GPL-2.0-only
3 * qla_target.c SCSI LLD infrastructure for QLogic 22xx/23xx/24xx/25xx
5 * based on qla2x00t.c code:
7 * Copyright (C) 2004 - 2010 Vladislav Bolkhovitin <vst@vlnb.net>
8 * Copyright (C) 2004 - 2005 Leonid Stoljar
9 * Copyright (C) 2006 Nathaniel Clark <nate@misrule.us>
10 * Copyright (C) 2006 - 2010 ID7 Ltd.
12 * Forward port and refactoring to modern qla2xxx and target/configfs
14 * Copyright (C) 2010-2013 Nicholas A. Bellinger <nab@kernel.org>
17 #include <linux/module.h>
18 #include <linux/init.h>
19 #include <linux/types.h>
20 #include <linux/blkdev.h>
21 #include <linux/interrupt.h>
22 #include <linux/pci.h>
23 #include <linux/delay.h>
24 #include <linux/list.h>
25 #include <linux/workqueue.h>
26 #include <asm/unaligned.h>
27 #include <scsi/scsi.h>
28 #include <scsi/scsi_host.h>
29 #include <scsi/scsi_tcq.h>
30 #include <target/target_core_base.h>
31 #include <target/target_core_fabric.h>
34 #include "qla_target.h"
36 static int ql2xtgt_tape_enable
;
37 module_param(ql2xtgt_tape_enable
, int, S_IRUGO
|S_IWUSR
);
38 MODULE_PARM_DESC(ql2xtgt_tape_enable
,
39 "Enables Sequence level error recovery (aka FC Tape). Default is 0 - no SLER. 1 - Enable SLER.");
41 static char *qlini_mode
= QLA2XXX_INI_MODE_STR_ENABLED
;
42 module_param(qlini_mode
, charp
, S_IRUGO
);
43 MODULE_PARM_DESC(qlini_mode
,
44 "Determines when initiator mode will be enabled. Possible values: "
45 "\"exclusive\" - initiator mode will be enabled on load, "
46 "disabled on enabling target mode and then on disabling target mode "
48 "\"disabled\" - initiator mode will never be enabled; "
49 "\"dual\" - Initiator Modes will be enabled. Target Mode can be activated "
51 "\"enabled\" (default) - initiator mode will always stay enabled.");
53 static int ql_dm_tgt_ex_pct
= 0;
54 module_param(ql_dm_tgt_ex_pct
, int, S_IRUGO
|S_IWUSR
);
55 MODULE_PARM_DESC(ql_dm_tgt_ex_pct
,
56 "For Dual Mode (qlini_mode=dual), this parameter determines "
57 "the percentage of exchanges/cmds FW will allocate resources "
61 module_param(ql2xuctrlirq
, int, 0644);
62 MODULE_PARM_DESC(ql2xuctrlirq
,
63 "User to control IRQ placement via smp_affinity."
64 "Valid with qlini_mode=disabled."
65 "1(default): enable");
67 int ql2x_ini_mode
= QLA2XXX_INI_MODE_EXCLUSIVE
;
69 static int qla_sam_status
= SAM_STAT_BUSY
;
70 static int tc_sam_status
= SAM_STAT_TASK_SET_FULL
; /* target core */
73 * From scsi/fc/fc_fcp.h
75 enum fcp_resp_rsp_codes
{
77 FCP_DATA_LEN_INVALID
= 1,
78 FCP_CMND_FIELDS_INVALID
= 2,
79 FCP_DATA_PARAM_MISMATCH
= 3,
82 FCP_TMF_INVALID_LUN
= 9,
86 * fc_pri_ta from scsi/fc/fc_fcp.h
88 #define FCP_PTA_SIMPLE 0 /* simple task attribute */
89 #define FCP_PTA_HEADQ 1 /* head of queue task attribute */
90 #define FCP_PTA_ORDERED 2 /* ordered task attribute */
91 #define FCP_PTA_ACA 4 /* auto. contingent allegiance */
92 #define FCP_PTA_MASK 7 /* mask for task attribute field */
93 #define FCP_PRI_SHIFT 3 /* priority field starts in bit 3 */
94 #define FCP_PRI_RESVD_MASK 0x80 /* reserved bits in priority field */
97 * This driver calls qla2x00_alloc_iocbs() and qla2x00_issue_marker(), which
98 * must be called under HW lock and could unlock/lock it inside.
99 * It isn't an issue, since in the current implementation on the time when
100 * those functions are called:
102 * - Either context is IRQ and only IRQ handler can modify HW data,
103 * including rings related fields,
105 * - Or access to target mode variables from struct qla_tgt doesn't
106 * cross those functions boundaries, except tgt_stop, which
107 * additionally protected by irq_cmd_count.
109 /* Predefs for callbacks handed to qla2xxx LLD */
110 static void qlt_24xx_atio_pkt(struct scsi_qla_host
*ha
,
111 struct atio_from_isp
*pkt
, uint8_t);
112 static void qlt_response_pkt(struct scsi_qla_host
*ha
, struct rsp_que
*rsp
,
114 static int qlt_issue_task_mgmt(struct fc_port
*sess
, u64 lun
,
115 int fn
, void *iocb
, int flags
);
116 static void qlt_send_term_exchange(struct qla_qpair
*, struct qla_tgt_cmd
117 *cmd
, struct atio_from_isp
*atio
, int ha_locked
, int ul_abort
);
118 static void qlt_alloc_qfull_cmd(struct scsi_qla_host
*vha
,
119 struct atio_from_isp
*atio
, uint16_t status
, int qfull
);
120 static void qlt_disable_vha(struct scsi_qla_host
*vha
);
121 static void qlt_clear_tgt_db(struct qla_tgt
*tgt
);
122 static void qlt_send_notify_ack(struct qla_qpair
*qpair
,
123 struct imm_ntfy_from_isp
*ntfy
,
124 uint32_t add_flags
, uint16_t resp_code
, int resp_code_valid
,
125 uint16_t srr_flags
, uint16_t srr_reject_code
, uint8_t srr_explan
);
126 static void qlt_send_term_imm_notif(struct scsi_qla_host
*vha
,
127 struct imm_ntfy_from_isp
*imm
, int ha_locked
);
128 static struct fc_port
*qlt_create_sess(struct scsi_qla_host
*vha
,
129 fc_port_t
*fcport
, bool local
);
130 void qlt_unreg_sess(struct fc_port
*sess
);
131 static void qlt_24xx_handle_abts(struct scsi_qla_host
*,
132 struct abts_recv_from_24xx
*);
133 static void qlt_send_busy(struct qla_qpair
*, struct atio_from_isp
*,
135 static int qlt_check_reserve_free_req(struct qla_qpair
*qpair
, uint32_t);
136 static inline uint32_t qlt_make_handle(struct qla_qpair
*);
141 static struct kmem_cache
*qla_tgt_mgmt_cmd_cachep
;
142 struct kmem_cache
*qla_tgt_plogi_cachep
;
143 static mempool_t
*qla_tgt_mgmt_cmd_mempool
;
144 static struct workqueue_struct
*qla_tgt_wq
;
145 static DEFINE_MUTEX(qla_tgt_mutex
);
146 static LIST_HEAD(qla_tgt_glist
);
148 static const char *prot_op_str(u32 prot_op
)
151 case TARGET_PROT_NORMAL
: return "NORMAL";
152 case TARGET_PROT_DIN_INSERT
: return "DIN_INSERT";
153 case TARGET_PROT_DOUT_INSERT
: return "DOUT_INSERT";
154 case TARGET_PROT_DIN_STRIP
: return "DIN_STRIP";
155 case TARGET_PROT_DOUT_STRIP
: return "DOUT_STRIP";
156 case TARGET_PROT_DIN_PASS
: return "DIN_PASS";
157 case TARGET_PROT_DOUT_PASS
: return "DOUT_PASS";
158 default: return "UNKNOWN";
162 /* This API intentionally takes dest as a parameter, rather than returning
163 * int value to avoid caller forgetting to issue wmb() after the store */
164 void qlt_do_generation_tick(struct scsi_qla_host
*vha
, int *dest
)
166 scsi_qla_host_t
*base_vha
= pci_get_drvdata(vha
->hw
->pdev
);
167 *dest
= atomic_inc_return(&base_vha
->generation_tick
);
172 /* Might release hw lock, then reaquire!! */
173 static inline int qlt_issue_marker(struct scsi_qla_host
*vha
, int vha_locked
)
175 /* Send marker if required */
176 if (unlikely(vha
->marker_needed
!= 0)) {
177 int rc
= qla2x00_issue_marker(vha
, vha_locked
);
179 if (rc
!= QLA_SUCCESS
) {
180 ql_dbg(ql_dbg_tgt
, vha
, 0xe03d,
181 "qla_target(%d): issue_marker() failed\n",
190 struct scsi_qla_host
*qlt_find_host_by_d_id(struct scsi_qla_host
*vha
,
193 struct scsi_qla_host
*host
;
196 if (vha
->d_id
.b
.area
== d_id
.area
&&
197 vha
->d_id
.b
.domain
== d_id
.domain
&&
198 vha
->d_id
.b
.al_pa
== d_id
.al_pa
)
201 key
= be_to_port_id(d_id
).b24
;
203 host
= btree_lookup32(&vha
->hw
->tgt
.host_map
, key
);
205 ql_dbg(ql_dbg_tgt_mgt
+ ql_dbg_verbose
, vha
, 0xf005,
206 "Unable to find host %06x\n", key
);
212 struct scsi_qla_host
*qlt_find_host_by_vp_idx(struct scsi_qla_host
*vha
,
215 struct qla_hw_data
*ha
= vha
->hw
;
217 if (vha
->vp_idx
== vp_idx
)
220 BUG_ON(ha
->tgt
.tgt_vp_map
== NULL
);
221 if (likely(test_bit(vp_idx
, ha
->vp_idx_map
)))
222 return ha
->tgt
.tgt_vp_map
[vp_idx
].vha
;
227 static inline void qlt_incr_num_pend_cmds(struct scsi_qla_host
*vha
)
231 spin_lock_irqsave(&vha
->hw
->tgt
.q_full_lock
, flags
);
233 vha
->hw
->tgt
.num_pend_cmds
++;
234 if (vha
->hw
->tgt
.num_pend_cmds
> vha
->qla_stats
.stat_max_pend_cmds
)
235 vha
->qla_stats
.stat_max_pend_cmds
=
236 vha
->hw
->tgt
.num_pend_cmds
;
237 spin_unlock_irqrestore(&vha
->hw
->tgt
.q_full_lock
, flags
);
239 static inline void qlt_decr_num_pend_cmds(struct scsi_qla_host
*vha
)
243 spin_lock_irqsave(&vha
->hw
->tgt
.q_full_lock
, flags
);
244 vha
->hw
->tgt
.num_pend_cmds
--;
245 spin_unlock_irqrestore(&vha
->hw
->tgt
.q_full_lock
, flags
);
249 static void qlt_queue_unknown_atio(scsi_qla_host_t
*vha
,
250 struct atio_from_isp
*atio
, uint8_t ha_locked
)
252 struct qla_tgt_sess_op
*u
;
253 struct qla_tgt
*tgt
= vha
->vha_tgt
.qla_tgt
;
257 ql_dbg(ql_dbg_async
, vha
, 0x502c,
258 "qla_target(%d): dropping unknown ATIO_TYPE7, because tgt is being stopped",
263 u
= kzalloc(sizeof(*u
), GFP_ATOMIC
);
268 memcpy(&u
->atio
, atio
, sizeof(*atio
));
269 INIT_LIST_HEAD(&u
->cmd_list
);
271 spin_lock_irqsave(&vha
->cmd_list_lock
, flags
);
272 list_add_tail(&u
->cmd_list
, &vha
->unknown_atio_list
);
273 spin_unlock_irqrestore(&vha
->cmd_list_lock
, flags
);
275 schedule_delayed_work(&vha
->unknown_atio_work
, 1);
281 qlt_send_term_exchange(vha
->hw
->base_qpair
, NULL
, atio
, ha_locked
, 0);
285 static void qlt_try_to_dequeue_unknown_atios(struct scsi_qla_host
*vha
,
288 struct qla_tgt_sess_op
*u
, *t
;
289 scsi_qla_host_t
*host
;
290 struct qla_tgt
*tgt
= vha
->vha_tgt
.qla_tgt
;
294 list_for_each_entry_safe(u
, t
, &vha
->unknown_atio_list
, cmd_list
) {
296 ql_dbg(ql_dbg_async
, vha
, 0x502e,
297 "Freeing unknown %s %p, because of Abort\n",
299 qlt_send_term_exchange(vha
->hw
->base_qpair
, NULL
,
300 &u
->atio
, ha_locked
, 0);
304 host
= qlt_find_host_by_d_id(vha
, u
->atio
.u
.isp24
.fcp_hdr
.d_id
);
306 ql_dbg(ql_dbg_async
+ ql_dbg_verbose
, vha
, 0x502f,
307 "Requeuing unknown ATIO_TYPE7 %p\n", u
);
308 qlt_24xx_atio_pkt(host
, &u
->atio
, ha_locked
);
309 } else if (tgt
->tgt_stop
) {
310 ql_dbg(ql_dbg_async
+ ql_dbg_verbose
, vha
, 0x503a,
311 "Freeing unknown %s %p, because tgt is being stopped\n",
313 qlt_send_term_exchange(vha
->hw
->base_qpair
, NULL
,
314 &u
->atio
, ha_locked
, 0);
316 ql_dbg(ql_dbg_async
+ ql_dbg_verbose
, vha
, 0x503d,
317 "Reschedule u %p, vha %p, host %p\n", u
, vha
, host
);
320 schedule_delayed_work(&vha
->unknown_atio_work
,
327 spin_lock_irqsave(&vha
->cmd_list_lock
, flags
);
328 list_del(&u
->cmd_list
);
329 spin_unlock_irqrestore(&vha
->cmd_list_lock
, flags
);
334 void qlt_unknown_atio_work_fn(struct work_struct
*work
)
336 struct scsi_qla_host
*vha
= container_of(to_delayed_work(work
),
337 struct scsi_qla_host
, unknown_atio_work
);
339 qlt_try_to_dequeue_unknown_atios(vha
, 0);
342 static bool qlt_24xx_atio_pkt_all_vps(struct scsi_qla_host
*vha
,
343 struct atio_from_isp
*atio
, uint8_t ha_locked
)
345 ql_dbg(ql_dbg_tgt
, vha
, 0xe072,
346 "%s: qla_target(%d): type %x ox_id %04x\n",
347 __func__
, vha
->vp_idx
, atio
->u
.raw
.entry_type
,
348 be16_to_cpu(atio
->u
.isp24
.fcp_hdr
.ox_id
));
350 switch (atio
->u
.raw
.entry_type
) {
353 struct scsi_qla_host
*host
= qlt_find_host_by_d_id(vha
,
354 atio
->u
.isp24
.fcp_hdr
.d_id
);
355 if (unlikely(NULL
== host
)) {
356 ql_dbg(ql_dbg_tgt
, vha
, 0xe03e,
357 "qla_target(%d): Received ATIO_TYPE7 "
358 "with unknown d_id %x:%x:%x\n", vha
->vp_idx
,
359 atio
->u
.isp24
.fcp_hdr
.d_id
.domain
,
360 atio
->u
.isp24
.fcp_hdr
.d_id
.area
,
361 atio
->u
.isp24
.fcp_hdr
.d_id
.al_pa
);
364 qlt_queue_unknown_atio(vha
, atio
, ha_locked
);
367 if (unlikely(!list_empty(&vha
->unknown_atio_list
)))
368 qlt_try_to_dequeue_unknown_atios(vha
, ha_locked
);
370 qlt_24xx_atio_pkt(host
, atio
, ha_locked
);
374 case IMMED_NOTIFY_TYPE
:
376 struct scsi_qla_host
*host
= vha
;
377 struct imm_ntfy_from_isp
*entry
=
378 (struct imm_ntfy_from_isp
*)atio
;
380 qlt_issue_marker(vha
, ha_locked
);
382 if ((entry
->u
.isp24
.vp_index
!= 0xFF) &&
383 (entry
->u
.isp24
.nport_handle
!= 0xFFFF)) {
384 host
= qlt_find_host_by_vp_idx(vha
,
385 entry
->u
.isp24
.vp_index
);
386 if (unlikely(!host
)) {
387 ql_dbg(ql_dbg_tgt
, vha
, 0xe03f,
388 "qla_target(%d): Received "
389 "ATIO (IMMED_NOTIFY_TYPE) "
390 "with unknown vp_index %d\n",
391 vha
->vp_idx
, entry
->u
.isp24
.vp_index
);
395 qlt_24xx_atio_pkt(host
, atio
, ha_locked
);
399 case VP_RPT_ID_IOCB_TYPE
:
400 qla24xx_report_id_acquisition(vha
,
401 (struct vp_rpt_id_entry_24xx
*)atio
);
406 struct abts_recv_from_24xx
*entry
=
407 (struct abts_recv_from_24xx
*)atio
;
408 struct scsi_qla_host
*host
= qlt_find_host_by_vp_idx(vha
,
412 if (unlikely(!host
)) {
413 ql_dbg(ql_dbg_tgt
, vha
, 0xe00a,
414 "qla_target(%d): Response pkt (ABTS_RECV_24XX) "
415 "received, with unknown vp_index %d\n",
416 vha
->vp_idx
, entry
->vp_index
);
420 spin_lock_irqsave(&host
->hw
->hardware_lock
, flags
);
421 qlt_24xx_handle_abts(host
, (struct abts_recv_from_24xx
*)atio
);
423 spin_unlock_irqrestore(&host
->hw
->hardware_lock
, flags
);
427 /* case PUREX_IOCB_TYPE: ql2xmvasynctoatio */
430 ql_dbg(ql_dbg_tgt
, vha
, 0xe040,
431 "qla_target(%d): Received unknown ATIO atio "
432 "type %x\n", vha
->vp_idx
, atio
->u
.raw
.entry_type
);
439 void qlt_response_pkt_all_vps(struct scsi_qla_host
*vha
,
440 struct rsp_que
*rsp
, response_t
*pkt
)
442 switch (pkt
->entry_type
) {
444 ql_dbg(ql_dbg_tgt
, vha
, 0xe073,
445 "qla_target(%d):%s: CRC2 Response pkt\n",
446 vha
->vp_idx
, __func__
);
450 struct ctio7_from_24xx
*entry
= (struct ctio7_from_24xx
*)pkt
;
451 struct scsi_qla_host
*host
= qlt_find_host_by_vp_idx(vha
,
453 if (unlikely(!host
)) {
454 ql_dbg(ql_dbg_tgt
, vha
, 0xe041,
455 "qla_target(%d): Response pkt (CTIO_TYPE7) "
456 "received, with unknown vp_index %d\n",
457 vha
->vp_idx
, entry
->vp_index
);
460 qlt_response_pkt(host
, rsp
, pkt
);
464 case IMMED_NOTIFY_TYPE
:
466 struct scsi_qla_host
*host
;
467 struct imm_ntfy_from_isp
*entry
=
468 (struct imm_ntfy_from_isp
*)pkt
;
470 host
= qlt_find_host_by_vp_idx(vha
, entry
->u
.isp24
.vp_index
);
471 if (unlikely(!host
)) {
472 ql_dbg(ql_dbg_tgt
, vha
, 0xe042,
473 "qla_target(%d): Response pkt (IMMED_NOTIFY_TYPE) "
474 "received, with unknown vp_index %d\n",
475 vha
->vp_idx
, entry
->u
.isp24
.vp_index
);
478 qlt_response_pkt(host
, rsp
, pkt
);
482 case NOTIFY_ACK_TYPE
:
484 struct scsi_qla_host
*host
= vha
;
485 struct nack_to_isp
*entry
= (struct nack_to_isp
*)pkt
;
487 if (0xFF != entry
->u
.isp24
.vp_index
) {
488 host
= qlt_find_host_by_vp_idx(vha
,
489 entry
->u
.isp24
.vp_index
);
490 if (unlikely(!host
)) {
491 ql_dbg(ql_dbg_tgt
, vha
, 0xe043,
492 "qla_target(%d): Response "
493 "pkt (NOTIFY_ACK_TYPE) "
494 "received, with unknown "
495 "vp_index %d\n", vha
->vp_idx
,
496 entry
->u
.isp24
.vp_index
);
500 qlt_response_pkt(host
, rsp
, pkt
);
506 struct abts_recv_from_24xx
*entry
=
507 (struct abts_recv_from_24xx
*)pkt
;
508 struct scsi_qla_host
*host
= qlt_find_host_by_vp_idx(vha
,
510 if (unlikely(!host
)) {
511 ql_dbg(ql_dbg_tgt
, vha
, 0xe044,
512 "qla_target(%d): Response pkt "
513 "(ABTS_RECV_24XX) received, with unknown "
514 "vp_index %d\n", vha
->vp_idx
, entry
->vp_index
);
517 qlt_response_pkt(host
, rsp
, pkt
);
523 struct abts_resp_to_24xx
*entry
=
524 (struct abts_resp_to_24xx
*)pkt
;
525 struct scsi_qla_host
*host
= qlt_find_host_by_vp_idx(vha
,
527 if (unlikely(!host
)) {
528 ql_dbg(ql_dbg_tgt
, vha
, 0xe045,
529 "qla_target(%d): Response pkt "
530 "(ABTS_RECV_24XX) received, with unknown "
531 "vp_index %d\n", vha
->vp_idx
, entry
->vp_index
);
534 qlt_response_pkt(host
, rsp
, pkt
);
538 qlt_response_pkt(vha
, rsp
, pkt
);
545 * All qlt_plogi_ack_t operations are protected by hardware_lock
547 static int qla24xx_post_nack_work(struct scsi_qla_host
*vha
, fc_port_t
*fcport
,
548 struct imm_ntfy_from_isp
*ntfy
, int type
)
550 struct qla_work_evt
*e
;
552 e
= qla2x00_alloc_work(vha
, QLA_EVT_NACK
);
554 return QLA_FUNCTION_FAILED
;
556 e
->u
.nack
.fcport
= fcport
;
557 e
->u
.nack
.type
= type
;
558 memcpy(e
->u
.nack
.iocb
, ntfy
, sizeof(struct imm_ntfy_from_isp
));
559 return qla2x00_post_work(vha
, e
);
562 static void qla2x00_async_nack_sp_done(srb_t
*sp
, int res
)
564 struct scsi_qla_host
*vha
= sp
->vha
;
567 ql_dbg(ql_dbg_disc
, vha
, 0x20f2,
568 "Async done-%s res %x %8phC type %d\n",
569 sp
->name
, res
, sp
->fcport
->port_name
, sp
->type
);
571 spin_lock_irqsave(&vha
->hw
->tgt
.sess_lock
, flags
);
572 sp
->fcport
->flags
&= ~FCF_ASYNC_SENT
;
573 sp
->fcport
->chip_reset
= vha
->hw
->base_qpair
->chip_reset
;
577 sp
->fcport
->login_gen
++;
578 sp
->fcport
->fw_login_state
= DSC_LS_PLOGI_COMP
;
579 sp
->fcport
->logout_on_delete
= 1;
580 sp
->fcport
->plogi_nack_done_deadline
= jiffies
+ HZ
;
581 sp
->fcport
->send_els_logo
= 0;
585 sp
->fcport
->fw_login_state
= DSC_LS_PRLI_COMP
;
586 sp
->fcport
->deleted
= 0;
587 sp
->fcport
->send_els_logo
= 0;
589 if (!sp
->fcport
->login_succ
&&
590 !IS_SW_RESV_ADDR(sp
->fcport
->d_id
)) {
591 sp
->fcport
->login_succ
= 1;
594 spin_unlock_irqrestore(&vha
->hw
->tgt
.sess_lock
, flags
);
595 qla24xx_sched_upd_fcport(sp
->fcport
);
596 spin_lock_irqsave(&vha
->hw
->tgt
.sess_lock
, flags
);
598 sp
->fcport
->login_retry
= 0;
599 sp
->fcport
->disc_state
= DSC_LOGIN_COMPLETE
;
600 sp
->fcport
->deleted
= 0;
601 sp
->fcport
->logout_on_delete
= 1;
606 sp
->fcport
->login_gen
++;
607 sp
->fcport
->fw_login_state
= DSC_LS_PORT_UNAVAIL
;
608 qlt_logo_completion_handler(sp
->fcport
, MBS_COMMAND_COMPLETE
);
611 spin_unlock_irqrestore(&vha
->hw
->tgt
.sess_lock
, flags
);
616 int qla24xx_async_notify_ack(scsi_qla_host_t
*vha
, fc_port_t
*fcport
,
617 struct imm_ntfy_from_isp
*ntfy
, int type
)
619 int rval
= QLA_FUNCTION_FAILED
;
623 fcport
->flags
|= FCF_ASYNC_SENT
;
626 fcport
->fw_login_state
= DSC_LS_PLOGI_PEND
;
630 fcport
->fw_login_state
= DSC_LS_PRLI_PEND
;
635 fcport
->fw_login_state
= DSC_LS_LOGO_PEND
;
640 sp
= qla2x00_get_sp(vha
, fcport
, GFP_ATOMIC
);
647 sp
->u
.iocb_cmd
.timeout
= qla2x00_async_iocb_timeout
;
648 qla2x00_init_timer(sp
, qla2x00_get_async_timeout(vha
)+2);
650 sp
->u
.iocb_cmd
.u
.nack
.ntfy
= ntfy
;
651 sp
->done
= qla2x00_async_nack_sp_done
;
653 ql_dbg(ql_dbg_disc
, vha
, 0x20f4,
654 "Async-%s %8phC hndl %x %s\n",
655 sp
->name
, fcport
->port_name
, sp
->handle
, c
);
657 rval
= qla2x00_start_sp(sp
);
658 if (rval
!= QLA_SUCCESS
)
666 fcport
->flags
&= ~FCF_ASYNC_SENT
;
670 void qla24xx_do_nack_work(struct scsi_qla_host
*vha
, struct qla_work_evt
*e
)
674 switch (e
->u
.nack
.type
) {
676 t
= e
->u
.nack
.fcport
;
677 flush_work(&t
->del_work
);
678 flush_work(&t
->free_work
);
679 mutex_lock(&vha
->vha_tgt
.tgt_mutex
);
680 t
= qlt_create_sess(vha
, e
->u
.nack
.fcport
, 0);
681 mutex_unlock(&vha
->vha_tgt
.tgt_mutex
);
683 ql_log(ql_log_info
, vha
, 0xd034,
684 "%s create sess success %p", __func__
, t
);
685 /* create sess has an extra kref */
686 vha
->hw
->tgt
.tgt_ops
->put_sess(e
->u
.nack
.fcport
);
690 qla24xx_async_notify_ack(vha
, e
->u
.nack
.fcport
,
691 (struct imm_ntfy_from_isp
*)e
->u
.nack
.iocb
, e
->u
.nack
.type
);
694 void qla24xx_delete_sess_fn(struct work_struct
*work
)
696 fc_port_t
*fcport
= container_of(work
, struct fc_port
, del_work
);
697 struct qla_hw_data
*ha
= fcport
->vha
->hw
;
699 if (fcport
->se_sess
) {
700 ha
->tgt
.tgt_ops
->shutdown_sess(fcport
);
701 ha
->tgt
.tgt_ops
->put_sess(fcport
);
703 qlt_unreg_sess(fcport
);
708 * Called from qla2x00_reg_remote_port()
710 void qlt_fc_port_added(struct scsi_qla_host
*vha
, fc_port_t
*fcport
)
712 struct qla_hw_data
*ha
= vha
->hw
;
713 struct qla_tgt
*tgt
= vha
->vha_tgt
.qla_tgt
;
714 struct fc_port
*sess
= fcport
;
717 if (!vha
->hw
->tgt
.tgt_ops
)
720 spin_lock_irqsave(&ha
->tgt
.sess_lock
, flags
);
722 spin_unlock_irqrestore(&ha
->tgt
.sess_lock
, flags
);
726 if (fcport
->disc_state
== DSC_DELETE_PEND
) {
727 spin_unlock_irqrestore(&ha
->tgt
.sess_lock
, flags
);
731 if (!sess
->se_sess
) {
732 spin_unlock_irqrestore(&ha
->tgt
.sess_lock
, flags
);
734 mutex_lock(&vha
->vha_tgt
.tgt_mutex
);
735 sess
= qlt_create_sess(vha
, fcport
, false);
736 mutex_unlock(&vha
->vha_tgt
.tgt_mutex
);
738 spin_lock_irqsave(&ha
->tgt
.sess_lock
, flags
);
740 if (fcport
->fw_login_state
== DSC_LS_PRLI_COMP
) {
741 spin_unlock_irqrestore(&ha
->tgt
.sess_lock
, flags
);
745 if (!kref_get_unless_zero(&sess
->sess_kref
)) {
746 ql_dbg(ql_dbg_disc
, vha
, 0x2107,
747 "%s: kref_get fail sess %8phC \n",
748 __func__
, sess
->port_name
);
749 spin_unlock_irqrestore(&ha
->tgt
.sess_lock
, flags
);
753 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf04c,
754 "qla_target(%u): %ssession for port %8phC "
755 "(loop ID %d) reappeared\n", vha
->vp_idx
,
756 sess
->local
? "local " : "", sess
->port_name
, sess
->loop_id
);
758 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf007,
759 "Reappeared sess %p\n", sess
);
761 ha
->tgt
.tgt_ops
->update_sess(sess
, fcport
->d_id
,
763 (fcport
->flags
& FCF_CONF_COMP_SUPPORTED
));
766 if (sess
&& sess
->local
) {
767 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf04d,
768 "qla_target(%u): local session for "
769 "port %8phC (loop ID %d) became global\n", vha
->vp_idx
,
770 fcport
->port_name
, sess
->loop_id
);
773 spin_unlock_irqrestore(&ha
->tgt
.sess_lock
, flags
);
775 ha
->tgt
.tgt_ops
->put_sess(sess
);
779 * This is a zero-base ref-counting solution, since hardware_lock
780 * guarantees that ref_count is not modified concurrently.
781 * Upon successful return content of iocb is undefined
783 static struct qlt_plogi_ack_t
*
784 qlt_plogi_ack_find_add(struct scsi_qla_host
*vha
, port_id_t
*id
,
785 struct imm_ntfy_from_isp
*iocb
)
787 struct qlt_plogi_ack_t
*pla
;
789 lockdep_assert_held(&vha
->hw
->hardware_lock
);
791 list_for_each_entry(pla
, &vha
->plogi_ack_list
, list
) {
792 if (pla
->id
.b24
== id
->b24
) {
793 ql_dbg(ql_dbg_disc
+ ql_dbg_verbose
, vha
, 0x210d,
794 "%s %d %8phC Term INOT due to new INOT",
796 pla
->iocb
.u
.isp24
.port_name
);
797 qlt_send_term_imm_notif(vha
, &pla
->iocb
, 1);
798 memcpy(&pla
->iocb
, iocb
, sizeof(pla
->iocb
));
803 pla
= kmem_cache_zalloc(qla_tgt_plogi_cachep
, GFP_ATOMIC
);
805 ql_dbg(ql_dbg_async
, vha
, 0x5088,
806 "qla_target(%d): Allocation of plogi_ack failed\n",
811 memcpy(&pla
->iocb
, iocb
, sizeof(pla
->iocb
));
813 list_add_tail(&pla
->list
, &vha
->plogi_ack_list
);
818 void qlt_plogi_ack_unref(struct scsi_qla_host
*vha
,
819 struct qlt_plogi_ack_t
*pla
)
821 struct imm_ntfy_from_isp
*iocb
= &pla
->iocb
;
824 fc_port_t
*fcport
= pla
->fcport
;
826 BUG_ON(!pla
->ref_count
);
832 ql_dbg(ql_dbg_disc
, vha
, 0x5089,
833 "Sending PLOGI ACK to wwn %8phC s_id %02x:%02x:%02x loop_id %#04x"
834 " exch %#x ox_id %#x\n", iocb
->u
.isp24
.port_name
,
835 iocb
->u
.isp24
.port_id
[2], iocb
->u
.isp24
.port_id
[1],
836 iocb
->u
.isp24
.port_id
[0],
837 le16_to_cpu(iocb
->u
.isp24
.nport_handle
),
838 iocb
->u
.isp24
.exchange_address
, iocb
->ox_id
);
840 port_id
.b
.domain
= iocb
->u
.isp24
.port_id
[2];
841 port_id
.b
.area
= iocb
->u
.isp24
.port_id
[1];
842 port_id
.b
.al_pa
= iocb
->u
.isp24
.port_id
[0];
843 port_id
.b
.rsvd_1
= 0;
845 loop_id
= le16_to_cpu(iocb
->u
.isp24
.nport_handle
);
847 fcport
->loop_id
= loop_id
;
848 fcport
->d_id
= port_id
;
849 if (iocb
->u
.isp24
.status_subcode
== ELS_PLOGI
)
850 qla24xx_post_nack_work(vha
, fcport
, iocb
, SRB_NACK_PLOGI
);
852 qla24xx_post_nack_work(vha
, fcport
, iocb
, SRB_NACK_PRLI
);
854 list_for_each_entry(fcport
, &vha
->vp_fcports
, list
) {
855 if (fcport
->plogi_link
[QLT_PLOGI_LINK_SAME_WWN
] == pla
)
856 fcport
->plogi_link
[QLT_PLOGI_LINK_SAME_WWN
] = NULL
;
857 if (fcport
->plogi_link
[QLT_PLOGI_LINK_CONFLICT
] == pla
)
858 fcport
->plogi_link
[QLT_PLOGI_LINK_CONFLICT
] = NULL
;
861 list_del(&pla
->list
);
862 kmem_cache_free(qla_tgt_plogi_cachep
, pla
);
866 qlt_plogi_ack_link(struct scsi_qla_host
*vha
, struct qlt_plogi_ack_t
*pla
,
867 struct fc_port
*sess
, enum qlt_plogi_link_t link
)
869 struct imm_ntfy_from_isp
*iocb
= &pla
->iocb
;
870 /* Inc ref_count first because link might already be pointing at pla */
873 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf097,
874 "Linking sess %p [%d] wwn %8phC with PLOGI ACK to wwn %8phC"
875 " s_id %02x:%02x:%02x, ref=%d pla %p link %d\n",
876 sess
, link
, sess
->port_name
,
877 iocb
->u
.isp24
.port_name
, iocb
->u
.isp24
.port_id
[2],
878 iocb
->u
.isp24
.port_id
[1], iocb
->u
.isp24
.port_id
[0],
879 pla
->ref_count
, pla
, link
);
881 if (link
== QLT_PLOGI_LINK_CONFLICT
) {
882 switch (sess
->disc_state
) {
884 case DSC_DELETE_PEND
:
892 if (sess
->plogi_link
[link
])
893 qlt_plogi_ack_unref(vha
, sess
->plogi_link
[link
]);
895 if (link
== QLT_PLOGI_LINK_SAME_WWN
)
898 sess
->plogi_link
[link
] = pla
;
902 /* These fields must be initialized by the caller */
905 * number of cmds dropped while we were waiting for
906 * initiator to ack LOGO initialize to 1 if LOGO is
907 * triggered by a command, otherwise, to 0
911 /* These fields are used by callee */
912 struct list_head list
;
916 qlt_send_first_logo(struct scsi_qla_host
*vha
, qlt_port_logo_t
*logo
)
918 qlt_port_logo_t
*tmp
;
921 mutex_lock(&vha
->vha_tgt
.tgt_mutex
);
923 list_for_each_entry(tmp
, &vha
->logo_list
, list
) {
924 if (tmp
->id
.b24
== logo
->id
.b24
) {
925 tmp
->cmd_count
+= logo
->cmd_count
;
926 mutex_unlock(&vha
->vha_tgt
.tgt_mutex
);
931 list_add_tail(&logo
->list
, &vha
->logo_list
);
933 mutex_unlock(&vha
->vha_tgt
.tgt_mutex
);
935 res
= qla24xx_els_dcmd_iocb(vha
, ELS_DCMD_LOGO
, logo
->id
);
937 mutex_lock(&vha
->vha_tgt
.tgt_mutex
);
938 list_del(&logo
->list
);
939 mutex_unlock(&vha
->vha_tgt
.tgt_mutex
);
941 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf098,
942 "Finished LOGO to %02x:%02x:%02x, dropped %d cmds, res = %#x\n",
943 logo
->id
.b
.domain
, logo
->id
.b
.area
, logo
->id
.b
.al_pa
,
944 logo
->cmd_count
, res
);
947 void qlt_free_session_done(struct work_struct
*work
)
949 struct fc_port
*sess
= container_of(work
, struct fc_port
,
951 struct qla_tgt
*tgt
= sess
->tgt
;
952 struct scsi_qla_host
*vha
= sess
->vha
;
953 struct qla_hw_data
*ha
= vha
->hw
;
955 bool logout_started
= false;
956 scsi_qla_host_t
*base_vha
= pci_get_drvdata(ha
->pdev
);
957 struct qlt_plogi_ack_t
*own
=
958 sess
->plogi_link
[QLT_PLOGI_LINK_SAME_WWN
];
960 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf084,
961 "%s: se_sess %p / sess %p from port %8phC loop_id %#04x"
962 " s_id %02x:%02x:%02x logout %d keep %d els_logo %d\n",
963 __func__
, sess
->se_sess
, sess
, sess
->port_name
, sess
->loop_id
,
964 sess
->d_id
.b
.domain
, sess
->d_id
.b
.area
, sess
->d_id
.b
.al_pa
,
965 sess
->logout_on_delete
, sess
->keep_nport_handle
,
966 sess
->send_els_logo
);
968 if (!IS_SW_RESV_ADDR(sess
->d_id
)) {
969 qla2x00_mark_device_lost(vha
, sess
, 0, 0);
971 if (sess
->send_els_logo
) {
972 qlt_port_logo_t logo
;
974 logo
.id
= sess
->d_id
;
977 qlt_send_first_logo(vha
, &logo
);
978 sess
->send_els_logo
= 0;
981 if (sess
->logout_on_delete
&& sess
->loop_id
!= FC_NO_LOOP_ID
) {
986 (own
->iocb
.u
.isp24
.status_subcode
== ELS_PLOGI
))) {
987 rc
= qla2x00_post_async_logout_work(vha
, sess
,
989 if (rc
!= QLA_SUCCESS
)
990 ql_log(ql_log_warn
, vha
, 0xf085,
991 "Schedule logo failed sess %p rc %d\n",
994 logout_started
= true;
995 } else if (own
&& (own
->iocb
.u
.isp24
.status_subcode
==
996 ELS_PRLI
) && ha
->flags
.rida_fmt2
) {
997 rc
= qla2x00_post_async_prlo_work(vha
, sess
,
999 if (rc
!= QLA_SUCCESS
)
1000 ql_log(ql_log_warn
, vha
, 0xf085,
1001 "Schedule PRLO failed sess %p rc %d\n",
1004 logout_started
= true;
1006 } /* if sess->logout_on_delete */
1008 if (sess
->nvme_flag
& NVME_FLAG_REGISTERED
&&
1009 !(sess
->nvme_flag
& NVME_FLAG_DELETING
)) {
1010 sess
->nvme_flag
|= NVME_FLAG_DELETING
;
1011 qla_nvme_unregister_remote_port(sess
);
1016 * Release the target session for FC Nexus from fabric module code.
1018 if (sess
->se_sess
!= NULL
)
1019 ha
->tgt
.tgt_ops
->free_session(sess
);
1021 if (logout_started
) {
1022 bool traced
= false;
1025 while (!READ_ONCE(sess
->logout_completed
)) {
1027 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf086,
1028 "%s: waiting for sess %p logout\n",
1038 ql_dbg(ql_dbg_disc
, vha
, 0xf087,
1039 "%s: sess %p logout completed\n", __func__
, sess
);
1042 if (sess
->logo_ack_needed
) {
1043 sess
->logo_ack_needed
= 0;
1044 qla24xx_async_notify_ack(vha
, sess
,
1045 (struct imm_ntfy_from_isp
*)sess
->iocb
, SRB_NACK_LOGO
);
1048 spin_lock_irqsave(&ha
->tgt
.sess_lock
, flags
);
1049 if (sess
->se_sess
) {
1050 sess
->se_sess
= NULL
;
1051 if (tgt
&& !IS_SW_RESV_ADDR(sess
->d_id
))
1055 sess
->disc_state
= DSC_DELETED
;
1056 sess
->fw_login_state
= DSC_LS_PORT_UNAVAIL
;
1057 sess
->deleted
= QLA_SESS_DELETED
;
1059 if (sess
->login_succ
&& !IS_SW_RESV_ADDR(sess
->d_id
)) {
1060 vha
->fcport_count
--;
1061 sess
->login_succ
= 0;
1064 qla2x00_clear_loop_id(sess
);
1066 if (sess
->conflict
) {
1067 sess
->conflict
->login_pause
= 0;
1068 sess
->conflict
= NULL
;
1069 if (!test_bit(UNLOADING
, &vha
->dpc_flags
))
1070 set_bit(RELOGIN_NEEDED
, &vha
->dpc_flags
);
1074 struct qlt_plogi_ack_t
*con
=
1075 sess
->plogi_link
[QLT_PLOGI_LINK_CONFLICT
];
1076 struct imm_ntfy_from_isp
*iocb
;
1078 own
= sess
->plogi_link
[QLT_PLOGI_LINK_SAME_WWN
];
1082 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf099,
1083 "se_sess %p / sess %p port %8phC is gone,"
1084 " %s (ref=%d), releasing PLOGI for %8phC (ref=%d)\n",
1085 sess
->se_sess
, sess
, sess
->port_name
,
1086 own
? "releasing own PLOGI" : "no own PLOGI pending",
1087 own
? own
->ref_count
: -1,
1088 iocb
->u
.isp24
.port_name
, con
->ref_count
);
1089 qlt_plogi_ack_unref(vha
, con
);
1090 sess
->plogi_link
[QLT_PLOGI_LINK_CONFLICT
] = NULL
;
1092 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf09a,
1093 "se_sess %p / sess %p port %8phC is gone, %s (ref=%d)\n",
1094 sess
->se_sess
, sess
, sess
->port_name
,
1095 own
? "releasing own PLOGI" :
1096 "no own PLOGI pending",
1097 own
? own
->ref_count
: -1);
1101 sess
->fw_login_state
= DSC_LS_PLOGI_PEND
;
1102 qlt_plogi_ack_unref(vha
, own
);
1103 sess
->plogi_link
[QLT_PLOGI_LINK_SAME_WWN
] = NULL
;
1107 sess
->explicit_logout
= 0;
1108 spin_unlock_irqrestore(&ha
->tgt
.sess_lock
, flags
);
1109 sess
->free_pending
= 0;
1111 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf001,
1112 "Unregistration of sess %p %8phC finished fcp_cnt %d\n",
1113 sess
, sess
->port_name
, vha
->fcport_count
);
1115 if (tgt
&& (tgt
->sess_count
== 0))
1116 wake_up_all(&tgt
->waitQ
);
1118 if (!test_bit(PFLG_DRIVER_REMOVING
, &base_vha
->pci_flags
) &&
1119 !(vha
->vp_idx
&& test_bit(VPORT_DELETE
, &vha
->dpc_flags
)) &&
1120 (!tgt
|| !tgt
->tgt_stop
) && !LOOP_TRANSITION(vha
)) {
1121 switch (vha
->host
->active_mode
) {
1122 case MODE_INITIATOR
:
1124 set_bit(RELOGIN_NEEDED
, &vha
->dpc_flags
);
1125 qla2xxx_wake_dpc(vha
);
1134 if (vha
->fcport_count
== 0)
1135 wake_up_all(&vha
->fcport_waitQ
);
1138 /* ha->tgt.sess_lock supposed to be held on entry */
1139 void qlt_unreg_sess(struct fc_port
*sess
)
1141 struct scsi_qla_host
*vha
= sess
->vha
;
1142 unsigned long flags
;
1144 ql_dbg(ql_dbg_disc
, sess
->vha
, 0x210a,
1145 "%s sess %p for deletion %8phC\n",
1146 __func__
, sess
, sess
->port_name
);
1148 spin_lock_irqsave(&sess
->vha
->work_lock
, flags
);
1149 if (sess
->free_pending
) {
1150 spin_unlock_irqrestore(&sess
->vha
->work_lock
, flags
);
1153 sess
->free_pending
= 1;
1154 spin_unlock_irqrestore(&sess
->vha
->work_lock
, flags
);
1157 vha
->hw
->tgt
.tgt_ops
->clear_nacl_from_fcport_map(sess
);
1159 sess
->deleted
= QLA_SESS_DELETION_IN_PROGRESS
;
1160 sess
->disc_state
= DSC_DELETE_PEND
;
1161 sess
->last_rscn_gen
= sess
->rscn_gen
;
1162 sess
->last_login_gen
= sess
->login_gen
;
1164 queue_work(sess
->vha
->hw
->wq
, &sess
->free_work
);
1166 EXPORT_SYMBOL(qlt_unreg_sess
);
1168 static int qlt_reset(struct scsi_qla_host
*vha
, void *iocb
, int mcmd
)
1170 struct qla_hw_data
*ha
= vha
->hw
;
1171 struct fc_port
*sess
= NULL
;
1174 struct imm_ntfy_from_isp
*n
= (struct imm_ntfy_from_isp
*)iocb
;
1175 unsigned long flags
;
1177 loop_id
= le16_to_cpu(n
->u
.isp24
.nport_handle
);
1178 if (loop_id
== 0xFFFF) {
1180 atomic_inc(&vha
->vha_tgt
.qla_tgt
->tgt_global_resets_count
);
1181 spin_lock_irqsave(&ha
->tgt
.sess_lock
, flags
);
1182 qlt_clear_tgt_db(vha
->vha_tgt
.qla_tgt
);
1183 spin_unlock_irqrestore(&ha
->tgt
.sess_lock
, flags
);
1185 spin_lock_irqsave(&ha
->tgt
.sess_lock
, flags
);
1186 sess
= ha
->tgt
.tgt_ops
->find_sess_by_loop_id(vha
, loop_id
);
1187 spin_unlock_irqrestore(&ha
->tgt
.sess_lock
, flags
);
1190 ql_dbg(ql_dbg_tgt
, vha
, 0xe000,
1191 "Using sess for qla_tgt_reset: %p\n", sess
);
1197 ql_dbg(ql_dbg_tgt
, vha
, 0xe047,
1198 "scsi(%ld): resetting (session %p from port %8phC mcmd %x, "
1199 "loop_id %d)\n", vha
->host_no
, sess
, sess
->port_name
,
1202 return qlt_issue_task_mgmt(sess
, 0, mcmd
, iocb
, QLA24XX_MGMT_SEND_NACK
);
1205 static void qla24xx_chk_fcp_state(struct fc_port
*sess
)
1207 if (sess
->chip_reset
!= sess
->vha
->hw
->base_qpair
->chip_reset
) {
1208 sess
->logout_on_delete
= 0;
1209 sess
->logo_ack_needed
= 0;
1210 sess
->fw_login_state
= DSC_LS_PORT_UNAVAIL
;
1214 void qlt_schedule_sess_for_deletion(struct fc_port
*sess
)
1216 struct qla_tgt
*tgt
= sess
->tgt
;
1217 unsigned long flags
;
1220 switch (sess
->disc_state
) {
1221 case DSC_DELETE_PEND
:
1224 if (tgt
&& tgt
->tgt_stop
&& (tgt
->sess_count
== 0))
1225 wake_up_all(&tgt
->waitQ
);
1226 if (sess
->vha
->fcport_count
== 0)
1227 wake_up_all(&sess
->vha
->fcport_waitQ
);
1229 if (!sess
->plogi_link
[QLT_PLOGI_LINK_SAME_WWN
] &&
1230 !sess
->plogi_link
[QLT_PLOGI_LINK_CONFLICT
])
1233 case DSC_UPD_FCPORT
:
1235 * This port is not done reporting to upper layer.
1238 sess
->next_disc_state
= DSC_DELETE_PEND
;
1239 sec
= jiffies_to_msecs(jiffies
-
1240 sess
->jiffies_at_registration
)/1000;
1241 if (sess
->sec_since_registration
< sec
&& sec
&& !(sec
% 5)) {
1242 sess
->sec_since_registration
= sec
;
1243 ql_dbg(ql_dbg_disc
, sess
->vha
, 0xffff,
1244 "%s %8phC : Slow Rport registration(%d Sec)\n",
1245 __func__
, sess
->port_name
, sec
);
1252 spin_lock_irqsave(&sess
->vha
->work_lock
, flags
);
1253 if (sess
->deleted
== QLA_SESS_DELETION_IN_PROGRESS
) {
1254 spin_unlock_irqrestore(&sess
->vha
->work_lock
, flags
);
1257 sess
->deleted
= QLA_SESS_DELETION_IN_PROGRESS
;
1258 spin_unlock_irqrestore(&sess
->vha
->work_lock
, flags
);
1260 sess
->prli_pend_timer
= 0;
1261 sess
->disc_state
= DSC_DELETE_PEND
;
1263 qla24xx_chk_fcp_state(sess
);
1265 ql_dbg(ql_dbg_tgt
, sess
->vha
, 0xe001,
1266 "Scheduling sess %p for deletion %8phC\n",
1267 sess
, sess
->port_name
);
1269 WARN_ON(!queue_work(sess
->vha
->hw
->wq
, &sess
->del_work
));
1272 static void qlt_clear_tgt_db(struct qla_tgt
*tgt
)
1274 struct fc_port
*sess
;
1275 scsi_qla_host_t
*vha
= tgt
->vha
;
1277 list_for_each_entry(sess
, &vha
->vp_fcports
, list
) {
1279 qlt_schedule_sess_for_deletion(sess
);
1282 /* At this point tgt could be already dead */
1285 static int qla24xx_get_loop_id(struct scsi_qla_host
*vha
, be_id_t s_id
,
1288 struct qla_hw_data
*ha
= vha
->hw
;
1289 dma_addr_t gid_list_dma
;
1290 struct gid_list_info
*gid_list
, *gid
;
1294 gid_list
= dma_alloc_coherent(&ha
->pdev
->dev
, qla2x00_gid_list_size(ha
),
1295 &gid_list_dma
, GFP_KERNEL
);
1297 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf044,
1298 "qla_target(%d): DMA Alloc failed of %u\n",
1299 vha
->vp_idx
, qla2x00_gid_list_size(ha
));
1303 /* Get list of logged in devices */
1304 rc
= qla24xx_gidlist_wait(vha
, gid_list
, gid_list_dma
, &entries
);
1305 if (rc
!= QLA_SUCCESS
) {
1306 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf045,
1307 "qla_target(%d): get_id_list() failed: %x\n",
1310 goto out_free_id_list
;
1315 for (i
= 0; i
< entries
; i
++) {
1316 if (gid
->al_pa
== s_id
.al_pa
&&
1317 gid
->area
== s_id
.area
&&
1318 gid
->domain
== s_id
.domain
) {
1319 *loop_id
= le16_to_cpu(gid
->loop_id
);
1323 gid
= (void *)gid
+ ha
->gid_list_info_size
;
1327 dma_free_coherent(&ha
->pdev
->dev
, qla2x00_gid_list_size(ha
),
1328 gid_list
, gid_list_dma
);
1333 * Adds an extra ref to allow to drop hw lock after adding sess to the list.
1334 * Caller must put it.
1336 static struct fc_port
*qlt_create_sess(
1337 struct scsi_qla_host
*vha
,
1341 struct qla_hw_data
*ha
= vha
->hw
;
1342 struct fc_port
*sess
= fcport
;
1343 unsigned long flags
;
1345 if (vha
->vha_tgt
.qla_tgt
->tgt_stop
)
1348 if (fcport
->se_sess
) {
1349 if (!kref_get_unless_zero(&sess
->sess_kref
)) {
1350 ql_dbg(ql_dbg_disc
, vha
, 0x20f6,
1351 "%s: kref_get_unless_zero failed for %8phC\n",
1352 __func__
, sess
->port_name
);
1357 sess
->tgt
= vha
->vha_tgt
.qla_tgt
;
1358 sess
->local
= local
;
1361 * Under normal circumstances we want to logout from firmware when
1362 * session eventually ends and release corresponding nport handle.
1363 * In the exception cases (e.g. when new PLOGI is waiting) corresponding
1364 * code will adjust these flags as necessary.
1366 sess
->logout_on_delete
= 1;
1367 sess
->keep_nport_handle
= 0;
1368 sess
->logout_completed
= 0;
1370 if (ha
->tgt
.tgt_ops
->check_initiator_node_acl(vha
,
1371 &fcport
->port_name
[0], sess
) < 0) {
1372 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf015,
1373 "(%d) %8phC check_initiator_node_acl failed\n",
1374 vha
->vp_idx
, fcport
->port_name
);
1377 kref_init(&fcport
->sess_kref
);
1379 * Take an extra reference to ->sess_kref here to handle
1380 * fc_port access across ->tgt.sess_lock reaquire.
1382 if (!kref_get_unless_zero(&sess
->sess_kref
)) {
1383 ql_dbg(ql_dbg_disc
, vha
, 0x20f7,
1384 "%s: kref_get_unless_zero failed for %8phC\n",
1385 __func__
, sess
->port_name
);
1389 spin_lock_irqsave(&ha
->tgt
.sess_lock
, flags
);
1390 if (!IS_SW_RESV_ADDR(sess
->d_id
))
1391 vha
->vha_tgt
.qla_tgt
->sess_count
++;
1393 qlt_do_generation_tick(vha
, &sess
->generation
);
1394 spin_unlock_irqrestore(&ha
->tgt
.sess_lock
, flags
);
1397 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf006,
1398 "Adding sess %p se_sess %p to tgt %p sess_count %d\n",
1399 sess
, sess
->se_sess
, vha
->vha_tgt
.qla_tgt
,
1400 vha
->vha_tgt
.qla_tgt
->sess_count
);
1402 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf04b,
1403 "qla_target(%d): %ssession for wwn %8phC (loop_id %d, "
1404 "s_id %x:%x:%x, confirmed completion %ssupported) added\n",
1405 vha
->vp_idx
, local
? "local " : "", fcport
->port_name
,
1406 fcport
->loop_id
, sess
->d_id
.b
.domain
, sess
->d_id
.b
.area
,
1407 sess
->d_id
.b
.al_pa
, sess
->conf_compl_supported
? "" : "not ");
1413 * max_gen - specifies maximum session generation
1414 * at which this deletion requestion is still valid
1417 qlt_fc_port_deleted(struct scsi_qla_host
*vha
, fc_port_t
*fcport
, int max_gen
)
1419 struct qla_tgt
*tgt
= vha
->vha_tgt
.qla_tgt
;
1420 struct fc_port
*sess
= fcport
;
1421 unsigned long flags
;
1423 if (!vha
->hw
->tgt
.tgt_ops
)
1429 spin_lock_irqsave(&vha
->hw
->tgt
.sess_lock
, flags
);
1430 if (tgt
->tgt_stop
) {
1431 spin_unlock_irqrestore(&vha
->hw
->tgt
.sess_lock
, flags
);
1434 if (!sess
->se_sess
) {
1435 spin_unlock_irqrestore(&vha
->hw
->tgt
.sess_lock
, flags
);
1439 if (max_gen
- sess
->generation
< 0) {
1440 spin_unlock_irqrestore(&vha
->hw
->tgt
.sess_lock
, flags
);
1441 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf092,
1442 "Ignoring stale deletion request for se_sess %p / sess %p"
1443 " for port %8phC, req_gen %d, sess_gen %d\n",
1444 sess
->se_sess
, sess
, sess
->port_name
, max_gen
,
1449 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf008, "qla_tgt_fc_port_deleted %p", sess
);
1452 spin_unlock_irqrestore(&vha
->hw
->tgt
.sess_lock
, flags
);
1453 qlt_schedule_sess_for_deletion(sess
);
1456 static inline int test_tgt_sess_count(struct qla_tgt
*tgt
)
1458 struct qla_hw_data
*ha
= tgt
->ha
;
1459 unsigned long flags
;
1462 * We need to protect against race, when tgt is freed before or
1465 spin_lock_irqsave(&ha
->tgt
.sess_lock
, flags
);
1466 ql_dbg(ql_dbg_tgt
, tgt
->vha
, 0xe002,
1467 "tgt %p, sess_count=%d\n",
1468 tgt
, tgt
->sess_count
);
1469 res
= (tgt
->sess_count
== 0);
1470 spin_unlock_irqrestore(&ha
->tgt
.sess_lock
, flags
);
1475 /* Called by tcm_qla2xxx configfs code */
1476 int qlt_stop_phase1(struct qla_tgt
*tgt
)
1478 struct scsi_qla_host
*vha
= tgt
->vha
;
1479 struct qla_hw_data
*ha
= tgt
->ha
;
1480 unsigned long flags
;
1482 mutex_lock(&ha
->optrom_mutex
);
1483 mutex_lock(&qla_tgt_mutex
);
1485 if (tgt
->tgt_stop
|| tgt
->tgt_stopped
) {
1486 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf04e,
1487 "Already in tgt->tgt_stop or tgt_stopped state\n");
1488 mutex_unlock(&qla_tgt_mutex
);
1489 mutex_unlock(&ha
->optrom_mutex
);
1493 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xe003, "Stopping target for host %ld(%p)\n",
1496 * Mutex needed to sync with qla_tgt_fc_port_[added,deleted].
1497 * Lock is needed, because we still can get an incoming packet.
1499 mutex_lock(&vha
->vha_tgt
.tgt_mutex
);
1501 qlt_clear_tgt_db(tgt
);
1502 mutex_unlock(&vha
->vha_tgt
.tgt_mutex
);
1503 mutex_unlock(&qla_tgt_mutex
);
1505 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf009,
1506 "Waiting for sess works (tgt %p)", tgt
);
1507 spin_lock_irqsave(&tgt
->sess_work_lock
, flags
);
1508 while (!list_empty(&tgt
->sess_works_list
)) {
1509 spin_unlock_irqrestore(&tgt
->sess_work_lock
, flags
);
1510 flush_scheduled_work();
1511 spin_lock_irqsave(&tgt
->sess_work_lock
, flags
);
1513 spin_unlock_irqrestore(&tgt
->sess_work_lock
, flags
);
1515 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf00a,
1516 "Waiting for tgt %p: sess_count=%d\n", tgt
, tgt
->sess_count
);
1518 wait_event_timeout(tgt
->waitQ
, test_tgt_sess_count(tgt
), 10*HZ
);
1521 if (!ha
->flags
.host_shutting_down
&&
1522 (qla_tgt_mode_enabled(vha
) || qla_dual_mode_enabled(vha
)))
1523 qlt_disable_vha(vha
);
1525 /* Wait for sessions to clear out (just in case) */
1526 wait_event_timeout(tgt
->waitQ
, test_tgt_sess_count(tgt
), 10*HZ
);
1527 mutex_unlock(&ha
->optrom_mutex
);
1531 EXPORT_SYMBOL(qlt_stop_phase1
);
1533 /* Called by tcm_qla2xxx configfs code */
1534 void qlt_stop_phase2(struct qla_tgt
*tgt
)
1536 scsi_qla_host_t
*vha
= tgt
->vha
;
1538 if (tgt
->tgt_stopped
) {
1539 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf04f,
1540 "Already in tgt->tgt_stopped state\n");
1544 if (!tgt
->tgt_stop
) {
1545 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf00b,
1546 "%s: phase1 stop is not completed\n", __func__
);
1551 mutex_lock(&vha
->vha_tgt
.tgt_mutex
);
1553 tgt
->tgt_stopped
= 1;
1554 mutex_unlock(&vha
->vha_tgt
.tgt_mutex
);
1556 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf00c, "Stop of tgt %p finished\n",
1559 switch (vha
->qlini_mode
) {
1560 case QLA2XXX_INI_MODE_EXCLUSIVE
:
1561 vha
->flags
.online
= 1;
1562 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
1568 EXPORT_SYMBOL(qlt_stop_phase2
);
1570 /* Called from qlt_remove_target() -> qla2x00_remove_one() */
1571 static void qlt_release(struct qla_tgt
*tgt
)
1573 scsi_qla_host_t
*vha
= tgt
->vha
;
1577 struct qla_qpair_hint
*h
;
1578 struct qla_hw_data
*ha
= vha
->hw
;
1580 if (!tgt
->tgt_stop
&& !tgt
->tgt_stopped
)
1581 qlt_stop_phase1(tgt
);
1583 if (!tgt
->tgt_stopped
)
1584 qlt_stop_phase2(tgt
);
1586 for (i
= 0; i
< vha
->hw
->max_qpairs
+ 1; i
++) {
1587 unsigned long flags
;
1589 h
= &tgt
->qphints
[i
];
1591 spin_lock_irqsave(h
->qpair
->qp_lock_ptr
, flags
);
1592 list_del(&h
->hint_elem
);
1593 spin_unlock_irqrestore(h
->qpair
->qp_lock_ptr
, flags
);
1597 kfree(tgt
->qphints
);
1598 mutex_lock(&qla_tgt_mutex
);
1599 list_del(&vha
->vha_tgt
.qla_tgt
->tgt_list_entry
);
1600 mutex_unlock(&qla_tgt_mutex
);
1602 btree_for_each_safe64(&tgt
->lun_qpair_map
, key
, node
)
1603 btree_remove64(&tgt
->lun_qpair_map
, key
);
1605 btree_destroy64(&tgt
->lun_qpair_map
);
1608 if (ha
->tgt
.tgt_ops
&&
1609 ha
->tgt
.tgt_ops
->remove_target
&&
1610 vha
->vha_tgt
.target_lport_ptr
)
1611 ha
->tgt
.tgt_ops
->remove_target(vha
);
1613 vha
->vha_tgt
.qla_tgt
= NULL
;
1615 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf00d,
1616 "Release of tgt %p finished\n", tgt
);
1621 /* ha->hardware_lock supposed to be held on entry */
1622 static int qlt_sched_sess_work(struct qla_tgt
*tgt
, int type
,
1623 const void *param
, unsigned int param_size
)
1625 struct qla_tgt_sess_work_param
*prm
;
1626 unsigned long flags
;
1628 prm
= kzalloc(sizeof(*prm
), GFP_ATOMIC
);
1630 ql_dbg(ql_dbg_tgt_mgt
, tgt
->vha
, 0xf050,
1631 "qla_target(%d): Unable to create session "
1632 "work, command will be refused", 0);
1636 ql_dbg(ql_dbg_tgt_mgt
, tgt
->vha
, 0xf00e,
1637 "Scheduling work (type %d, prm %p)"
1638 " to find session for param %p (size %d, tgt %p)\n",
1639 type
, prm
, param
, param_size
, tgt
);
1642 memcpy(&prm
->tm_iocb
, param
, param_size
);
1644 spin_lock_irqsave(&tgt
->sess_work_lock
, flags
);
1645 list_add_tail(&prm
->sess_works_list_entry
, &tgt
->sess_works_list
);
1646 spin_unlock_irqrestore(&tgt
->sess_work_lock
, flags
);
1648 schedule_work(&tgt
->sess_work
);
1654 * ha->hardware_lock supposed to be held on entry. Might drop it, then reaquire
1656 static void qlt_send_notify_ack(struct qla_qpair
*qpair
,
1657 struct imm_ntfy_from_isp
*ntfy
,
1658 uint32_t add_flags
, uint16_t resp_code
, int resp_code_valid
,
1659 uint16_t srr_flags
, uint16_t srr_reject_code
, uint8_t srr_explan
)
1661 struct scsi_qla_host
*vha
= qpair
->vha
;
1662 struct qla_hw_data
*ha
= vha
->hw
;
1664 struct nack_to_isp
*nack
;
1666 if (!ha
->flags
.fw_started
)
1669 ql_dbg(ql_dbg_tgt
, vha
, 0xe004, "Sending NOTIFY_ACK (ha=%p)\n", ha
);
1671 pkt
= (request_t
*)__qla2x00_alloc_iocbs(qpair
, NULL
);
1673 ql_dbg(ql_dbg_tgt
, vha
, 0xe049,
1674 "qla_target(%d): %s failed: unable to allocate "
1675 "request packet\n", vha
->vp_idx
, __func__
);
1679 if (vha
->vha_tgt
.qla_tgt
!= NULL
)
1680 vha
->vha_tgt
.qla_tgt
->notify_ack_expected
++;
1682 pkt
->entry_type
= NOTIFY_ACK_TYPE
;
1683 pkt
->entry_count
= 1;
1685 nack
= (struct nack_to_isp
*)pkt
;
1686 nack
->ox_id
= ntfy
->ox_id
;
1688 nack
->u
.isp24
.handle
= QLA_TGT_SKIP_HANDLE
;
1689 nack
->u
.isp24
.nport_handle
= ntfy
->u
.isp24
.nport_handle
;
1690 if (le16_to_cpu(ntfy
->u
.isp24
.status
) == IMM_NTFY_ELS
) {
1691 nack
->u
.isp24
.flags
= ntfy
->u
.isp24
.flags
&
1692 cpu_to_le32(NOTIFY24XX_FLAGS_PUREX_IOCB
);
1694 nack
->u
.isp24
.srr_rx_id
= ntfy
->u
.isp24
.srr_rx_id
;
1695 nack
->u
.isp24
.status
= ntfy
->u
.isp24
.status
;
1696 nack
->u
.isp24
.status_subcode
= ntfy
->u
.isp24
.status_subcode
;
1697 nack
->u
.isp24
.fw_handle
= ntfy
->u
.isp24
.fw_handle
;
1698 nack
->u
.isp24
.exchange_address
= ntfy
->u
.isp24
.exchange_address
;
1699 nack
->u
.isp24
.srr_rel_offs
= ntfy
->u
.isp24
.srr_rel_offs
;
1700 nack
->u
.isp24
.srr_ui
= ntfy
->u
.isp24
.srr_ui
;
1701 nack
->u
.isp24
.srr_flags
= cpu_to_le16(srr_flags
);
1702 nack
->u
.isp24
.srr_reject_code
= srr_reject_code
;
1703 nack
->u
.isp24
.srr_reject_code_expl
= srr_explan
;
1704 nack
->u
.isp24
.vp_index
= ntfy
->u
.isp24
.vp_index
;
1706 ql_dbg(ql_dbg_tgt
, vha
, 0xe005,
1707 "qla_target(%d): Sending 24xx Notify Ack %d\n",
1708 vha
->vp_idx
, nack
->u
.isp24
.status
);
1710 /* Memory Barrier */
1712 qla2x00_start_iocbs(vha
, qpair
->req
);
1715 static int qlt_build_abts_resp_iocb(struct qla_tgt_mgmt_cmd
*mcmd
)
1717 struct scsi_qla_host
*vha
= mcmd
->vha
;
1718 struct qla_hw_data
*ha
= vha
->hw
;
1719 struct abts_resp_to_24xx
*resp
;
1723 struct abts_recv_from_24xx
*abts
= &mcmd
->orig_iocb
.abts
;
1724 struct qla_qpair
*qpair
= mcmd
->qpair
;
1726 ql_dbg(ql_dbg_tgt
, vha
, 0xe006,
1727 "Sending task mgmt ABTS response (ha=%p, status=%x)\n",
1728 ha
, mcmd
->fc_tm_rsp
);
1730 rc
= qlt_check_reserve_free_req(qpair
, 1);
1732 ql_dbg(ql_dbg_tgt
, vha
, 0xe04a,
1733 "qla_target(%d): %s failed: unable to allocate request packet\n",
1734 vha
->vp_idx
, __func__
);
1738 resp
= (struct abts_resp_to_24xx
*)qpair
->req
->ring_ptr
;
1739 memset(resp
, 0, sizeof(*resp
));
1741 h
= qlt_make_handle(qpair
);
1742 if (unlikely(h
== QLA_TGT_NULL_HANDLE
)) {
1744 * CTIO type 7 from the firmware doesn't provide a way to
1745 * know the initiator's LOOP ID, hence we can't find
1746 * the session and, so, the command.
1750 qpair
->req
->outstanding_cmds
[h
] = (srb_t
*)mcmd
;
1753 resp
->handle
= MAKE_HANDLE(qpair
->req
->id
, h
);
1754 resp
->entry_type
= ABTS_RESP_24XX
;
1755 resp
->entry_count
= 1;
1756 resp
->nport_handle
= abts
->nport_handle
;
1757 resp
->vp_index
= vha
->vp_idx
;
1758 resp
->sof_type
= abts
->sof_type
;
1759 resp
->exchange_address
= abts
->exchange_address
;
1760 resp
->fcp_hdr_le
= abts
->fcp_hdr_le
;
1761 f_ctl
= cpu_to_le32(F_CTL_EXCH_CONTEXT_RESP
|
1762 F_CTL_LAST_SEQ
| F_CTL_END_SEQ
|
1763 F_CTL_SEQ_INITIATIVE
);
1764 p
= (uint8_t *)&f_ctl
;
1765 resp
->fcp_hdr_le
.f_ctl
[0] = *p
++;
1766 resp
->fcp_hdr_le
.f_ctl
[1] = *p
++;
1767 resp
->fcp_hdr_le
.f_ctl
[2] = *p
;
1769 resp
->fcp_hdr_le
.d_id
= abts
->fcp_hdr_le
.s_id
;
1770 resp
->fcp_hdr_le
.s_id
= abts
->fcp_hdr_le
.d_id
;
1772 resp
->exchange_addr_to_abort
= abts
->exchange_addr_to_abort
;
1773 if (mcmd
->fc_tm_rsp
== FCP_TMF_CMPL
) {
1774 resp
->fcp_hdr_le
.r_ctl
= R_CTL_BASIC_LINK_SERV
| R_CTL_B_ACC
;
1775 resp
->payload
.ba_acct
.seq_id_valid
= SEQ_ID_INVALID
;
1776 resp
->payload
.ba_acct
.low_seq_cnt
= 0x0000;
1777 resp
->payload
.ba_acct
.high_seq_cnt
= 0xFFFF;
1778 resp
->payload
.ba_acct
.ox_id
= abts
->fcp_hdr_le
.ox_id
;
1779 resp
->payload
.ba_acct
.rx_id
= abts
->fcp_hdr_le
.rx_id
;
1781 resp
->fcp_hdr_le
.r_ctl
= R_CTL_BASIC_LINK_SERV
| R_CTL_B_RJT
;
1782 resp
->payload
.ba_rjt
.reason_code
=
1783 BA_RJT_REASON_CODE_UNABLE_TO_PERFORM
;
1784 /* Other bytes are zero */
1787 vha
->vha_tgt
.qla_tgt
->abts_resp_expected
++;
1789 /* Memory Barrier */
1791 if (qpair
->reqq_start_iocbs
)
1792 qpair
->reqq_start_iocbs(qpair
);
1794 qla2x00_start_iocbs(vha
, qpair
->req
);
1800 * ha->hardware_lock supposed to be held on entry. Might drop it, then reaquire
1802 static void qlt_24xx_send_abts_resp(struct qla_qpair
*qpair
,
1803 struct abts_recv_from_24xx
*abts
, uint32_t status
,
1806 struct scsi_qla_host
*vha
= qpair
->vha
;
1807 struct qla_hw_data
*ha
= vha
->hw
;
1808 struct abts_resp_to_24xx
*resp
;
1812 ql_dbg(ql_dbg_tgt
, vha
, 0xe006,
1813 "Sending task mgmt ABTS response (ha=%p, atio=%p, status=%x\n",
1816 resp
= (struct abts_resp_to_24xx
*)qla2x00_alloc_iocbs_ready(qpair
,
1819 ql_dbg(ql_dbg_tgt
, vha
, 0xe04a,
1820 "qla_target(%d): %s failed: unable to allocate "
1821 "request packet", vha
->vp_idx
, __func__
);
1825 resp
->entry_type
= ABTS_RESP_24XX
;
1826 resp
->handle
= QLA_TGT_SKIP_HANDLE
;
1827 resp
->entry_count
= 1;
1828 resp
->nport_handle
= abts
->nport_handle
;
1829 resp
->vp_index
= vha
->vp_idx
;
1830 resp
->sof_type
= abts
->sof_type
;
1831 resp
->exchange_address
= abts
->exchange_address
;
1832 resp
->fcp_hdr_le
= abts
->fcp_hdr_le
;
1833 f_ctl
= cpu_to_le32(F_CTL_EXCH_CONTEXT_RESP
|
1834 F_CTL_LAST_SEQ
| F_CTL_END_SEQ
|
1835 F_CTL_SEQ_INITIATIVE
);
1836 p
= (uint8_t *)&f_ctl
;
1837 resp
->fcp_hdr_le
.f_ctl
[0] = *p
++;
1838 resp
->fcp_hdr_le
.f_ctl
[1] = *p
++;
1839 resp
->fcp_hdr_le
.f_ctl
[2] = *p
;
1841 resp
->fcp_hdr_le
.d_id
= abts
->fcp_hdr_le
.d_id
;
1842 resp
->fcp_hdr_le
.s_id
= abts
->fcp_hdr_le
.s_id
;
1844 resp
->fcp_hdr_le
.d_id
= abts
->fcp_hdr_le
.s_id
;
1845 resp
->fcp_hdr_le
.s_id
= abts
->fcp_hdr_le
.d_id
;
1847 resp
->exchange_addr_to_abort
= abts
->exchange_addr_to_abort
;
1848 if (status
== FCP_TMF_CMPL
) {
1849 resp
->fcp_hdr_le
.r_ctl
= R_CTL_BASIC_LINK_SERV
| R_CTL_B_ACC
;
1850 resp
->payload
.ba_acct
.seq_id_valid
= SEQ_ID_INVALID
;
1851 resp
->payload
.ba_acct
.low_seq_cnt
= 0x0000;
1852 resp
->payload
.ba_acct
.high_seq_cnt
= 0xFFFF;
1853 resp
->payload
.ba_acct
.ox_id
= abts
->fcp_hdr_le
.ox_id
;
1854 resp
->payload
.ba_acct
.rx_id
= abts
->fcp_hdr_le
.rx_id
;
1856 resp
->fcp_hdr_le
.r_ctl
= R_CTL_BASIC_LINK_SERV
| R_CTL_B_RJT
;
1857 resp
->payload
.ba_rjt
.reason_code
=
1858 BA_RJT_REASON_CODE_UNABLE_TO_PERFORM
;
1859 /* Other bytes are zero */
1862 vha
->vha_tgt
.qla_tgt
->abts_resp_expected
++;
1864 /* Memory Barrier */
1866 if (qpair
->reqq_start_iocbs
)
1867 qpair
->reqq_start_iocbs(qpair
);
1869 qla2x00_start_iocbs(vha
, qpair
->req
);
1873 * ha->hardware_lock supposed to be held on entry. Might drop it, then reaquire
1875 static void qlt_24xx_retry_term_exchange(struct scsi_qla_host
*vha
,
1876 struct qla_qpair
*qpair
, response_t
*pkt
, struct qla_tgt_mgmt_cmd
*mcmd
)
1878 struct ctio7_to_24xx
*ctio
;
1880 struct abts_recv_from_24xx
*entry
;
1882 ctio
= (struct ctio7_to_24xx
*)qla2x00_alloc_iocbs_ready(qpair
, NULL
);
1884 ql_dbg(ql_dbg_tgt
, vha
, 0xe04b,
1885 "qla_target(%d): %s failed: unable to allocate "
1886 "request packet\n", vha
->vp_idx
, __func__
);
1891 /* abts from remote port */
1892 entry
= &mcmd
->orig_iocb
.abts
;
1894 /* abts from this driver. */
1895 entry
= (struct abts_recv_from_24xx
*)pkt
;
1898 * We've got on entrance firmware's response on by us generated
1899 * ABTS response. So, in it ID fields are reversed.
1902 ctio
->entry_type
= CTIO_TYPE7
;
1903 ctio
->entry_count
= 1;
1904 ctio
->nport_handle
= entry
->nport_handle
;
1905 ctio
->handle
= QLA_TGT_SKIP_HANDLE
| CTIO_COMPLETION_HANDLE_MARK
;
1906 ctio
->timeout
= cpu_to_le16(QLA_TGT_TIMEOUT
);
1907 ctio
->vp_index
= vha
->vp_idx
;
1908 ctio
->exchange_addr
= entry
->exchange_addr_to_abort
;
1909 tmp
= (CTIO7_FLAGS_STATUS_MODE_1
| CTIO7_FLAGS_TERMINATE
);
1912 ctio
->initiator_id
= entry
->fcp_hdr_le
.s_id
;
1914 if (mcmd
->flags
& QLA24XX_MGMT_ABORT_IO_ATTR_VALID
)
1915 tmp
|= (mcmd
->abort_io_attr
<< 9);
1916 else if (qpair
->retry_term_cnt
& 1)
1919 ctio
->initiator_id
= entry
->fcp_hdr_le
.d_id
;
1921 if (qpair
->retry_term_cnt
& 1)
1924 ctio
->u
.status1
.flags
= cpu_to_le16(tmp
);
1925 ctio
->u
.status1
.ox_id
= entry
->fcp_hdr_le
.ox_id
;
1927 ql_dbg(ql_dbg_tgt
, vha
, 0xe007,
1928 "Sending retry TERM EXCH CTIO7 flags %04xh oxid %04xh attr valid %x\n",
1929 le16_to_cpu(ctio
->u
.status1
.flags
),
1930 le16_to_cpu(ctio
->u
.status1
.ox_id
),
1931 (mcmd
&& mcmd
->flags
& QLA24XX_MGMT_ABORT_IO_ATTR_VALID
) ? 1 : 0);
1933 /* Memory Barrier */
1935 if (qpair
->reqq_start_iocbs
)
1936 qpair
->reqq_start_iocbs(qpair
);
1938 qla2x00_start_iocbs(vha
, qpair
->req
);
1941 qlt_build_abts_resp_iocb(mcmd
);
1943 qlt_24xx_send_abts_resp(qpair
,
1944 (struct abts_recv_from_24xx
*)entry
, FCP_TMF_CMPL
, true);
1948 /* drop cmds for the given lun
1949 * XXX only looks for cmds on the port through which lun reset was recieved
1950 * XXX does not go through the list of other port (which may have cmds
1953 static void abort_cmds_for_lun(struct scsi_qla_host
*vha
, u64 lun
, be_id_t s_id
)
1955 struct qla_tgt_sess_op
*op
;
1956 struct qla_tgt_cmd
*cmd
;
1958 unsigned long flags
;
1960 key
= sid_to_key(s_id
);
1961 spin_lock_irqsave(&vha
->cmd_list_lock
, flags
);
1962 list_for_each_entry(op
, &vha
->qla_sess_op_cmd_list
, cmd_list
) {
1966 op_key
= sid_to_key(op
->atio
.u
.isp24
.fcp_hdr
.s_id
);
1967 op_lun
= scsilun_to_int(
1968 (struct scsi_lun
*)&op
->atio
.u
.isp24
.fcp_cmnd
.lun
);
1969 if (op_key
== key
&& op_lun
== lun
)
1973 list_for_each_entry(op
, &vha
->unknown_atio_list
, cmd_list
) {
1977 op_key
= sid_to_key(op
->atio
.u
.isp24
.fcp_hdr
.s_id
);
1978 op_lun
= scsilun_to_int(
1979 (struct scsi_lun
*)&op
->atio
.u
.isp24
.fcp_cmnd
.lun
);
1980 if (op_key
== key
&& op_lun
== lun
)
1984 list_for_each_entry(cmd
, &vha
->qla_cmd_list
, cmd_list
) {
1988 cmd_key
= sid_to_key(cmd
->atio
.u
.isp24
.fcp_hdr
.s_id
);
1989 cmd_lun
= scsilun_to_int(
1990 (struct scsi_lun
*)&cmd
->atio
.u
.isp24
.fcp_cmnd
.lun
);
1991 if (cmd_key
== key
&& cmd_lun
== lun
)
1994 spin_unlock_irqrestore(&vha
->cmd_list_lock
, flags
);
1997 static struct qla_qpair_hint
*qlt_find_qphint(struct scsi_qla_host
*vha
,
1998 uint64_t unpacked_lun
)
2000 struct qla_tgt
*tgt
= vha
->vha_tgt
.qla_tgt
;
2001 struct qla_qpair_hint
*h
= NULL
;
2003 if (vha
->flags
.qpairs_available
) {
2004 h
= btree_lookup64(&tgt
->lun_qpair_map
, unpacked_lun
);
2006 h
= &tgt
->qphints
[0];
2008 h
= &tgt
->qphints
[0];
2014 static void qlt_do_tmr_work(struct work_struct
*work
)
2016 struct qla_tgt_mgmt_cmd
*mcmd
=
2017 container_of(work
, struct qla_tgt_mgmt_cmd
, work
);
2018 struct qla_hw_data
*ha
= mcmd
->vha
->hw
;
2021 unsigned long flags
;
2023 switch (mcmd
->tmr_func
) {
2025 tag
= mcmd
->orig_iocb
.abts
.exchange_addr_to_abort
;
2032 rc
= ha
->tgt
.tgt_ops
->handle_tmr(mcmd
, mcmd
->unpacked_lun
,
2033 mcmd
->tmr_func
, tag
);
2036 spin_lock_irqsave(mcmd
->qpair
->qp_lock_ptr
, flags
);
2037 switch (mcmd
->tmr_func
) {
2039 mcmd
->fc_tm_rsp
= FCP_TMF_REJECTED
;
2040 qlt_build_abts_resp_iocb(mcmd
);
2042 case QLA_TGT_LUN_RESET
:
2043 case QLA_TGT_CLEAR_TS
:
2044 case QLA_TGT_ABORT_TS
:
2045 case QLA_TGT_CLEAR_ACA
:
2046 case QLA_TGT_TARGET_RESET
:
2047 qlt_send_busy(mcmd
->qpair
, &mcmd
->orig_iocb
.atio
,
2051 case QLA_TGT_ABORT_ALL
:
2052 case QLA_TGT_NEXUS_LOSS_SESS
:
2053 case QLA_TGT_NEXUS_LOSS
:
2054 qlt_send_notify_ack(mcmd
->qpair
,
2055 &mcmd
->orig_iocb
.imm_ntfy
, 0, 0, 0, 0, 0, 0);
2058 spin_unlock_irqrestore(mcmd
->qpair
->qp_lock_ptr
, flags
);
2060 ql_dbg(ql_dbg_tgt_mgt
, mcmd
->vha
, 0xf052,
2061 "qla_target(%d): tgt_ops->handle_tmr() failed: %d\n",
2062 mcmd
->vha
->vp_idx
, rc
);
2063 mempool_free(mcmd
, qla_tgt_mgmt_cmd_mempool
);
2067 /* ha->hardware_lock supposed to be held on entry */
2068 static int __qlt_24xx_handle_abts(struct scsi_qla_host
*vha
,
2069 struct abts_recv_from_24xx
*abts
, struct fc_port
*sess
)
2071 struct qla_hw_data
*ha
= vha
->hw
;
2072 struct qla_tgt_mgmt_cmd
*mcmd
;
2073 struct qla_qpair_hint
*h
= &vha
->vha_tgt
.qla_tgt
->qphints
[0];
2075 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf00f,
2076 "qla_target(%d): task abort (tag=%d)\n",
2077 vha
->vp_idx
, abts
->exchange_addr_to_abort
);
2079 mcmd
= mempool_alloc(qla_tgt_mgmt_cmd_mempool
, GFP_ATOMIC
);
2081 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf051,
2082 "qla_target(%d): %s: Allocation of ABORT cmd failed",
2083 vha
->vp_idx
, __func__
);
2086 memset(mcmd
, 0, sizeof(*mcmd
));
2087 mcmd
->cmd_type
= TYPE_TGT_TMCMD
;
2089 memcpy(&mcmd
->orig_iocb
.abts
, abts
, sizeof(mcmd
->orig_iocb
.abts
));
2090 mcmd
->reset_count
= ha
->base_qpair
->chip_reset
;
2091 mcmd
->tmr_func
= QLA_TGT_ABTS
;
2092 mcmd
->qpair
= h
->qpair
;
2096 * LUN is looked up by target-core internally based on the passed
2097 * abts->exchange_addr_to_abort tag.
2099 mcmd
->se_cmd
.cpuid
= h
->cpuid
;
2101 if (ha
->tgt
.tgt_ops
->find_cmd_by_tag
) {
2102 struct qla_tgt_cmd
*abort_cmd
;
2104 abort_cmd
= ha
->tgt
.tgt_ops
->find_cmd_by_tag(sess
,
2105 abts
->exchange_addr_to_abort
);
2106 if (abort_cmd
&& abort_cmd
->qpair
) {
2107 mcmd
->qpair
= abort_cmd
->qpair
;
2108 mcmd
->se_cmd
.cpuid
= abort_cmd
->se_cmd
.cpuid
;
2109 mcmd
->abort_io_attr
= abort_cmd
->atio
.u
.isp24
.attr
;
2110 mcmd
->flags
= QLA24XX_MGMT_ABORT_IO_ATTR_VALID
;
2114 INIT_WORK(&mcmd
->work
, qlt_do_tmr_work
);
2115 queue_work_on(mcmd
->se_cmd
.cpuid
, qla_tgt_wq
, &mcmd
->work
);
2121 * ha->hardware_lock supposed to be held on entry. Might drop it, then reaquire
2123 static void qlt_24xx_handle_abts(struct scsi_qla_host
*vha
,
2124 struct abts_recv_from_24xx
*abts
)
2126 struct qla_hw_data
*ha
= vha
->hw
;
2127 struct fc_port
*sess
;
2128 uint32_t tag
= abts
->exchange_addr_to_abort
;
2131 unsigned long flags
;
2133 if (le32_to_cpu(abts
->fcp_hdr_le
.parameter
) & ABTS_PARAM_ABORT_SEQ
) {
2134 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf053,
2135 "qla_target(%d): ABTS: Abort Sequence not "
2136 "supported\n", vha
->vp_idx
);
2137 qlt_24xx_send_abts_resp(ha
->base_qpair
, abts
, FCP_TMF_REJECTED
,
2142 if (tag
== ATIO_EXCHANGE_ADDRESS_UNKNOWN
) {
2143 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf010,
2144 "qla_target(%d): ABTS: Unknown Exchange "
2145 "Address received\n", vha
->vp_idx
);
2146 qlt_24xx_send_abts_resp(ha
->base_qpair
, abts
, FCP_TMF_REJECTED
,
2151 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf011,
2152 "qla_target(%d): task abort (s_id=%x:%x:%x, "
2153 "tag=%d, param=%x)\n", vha
->vp_idx
, abts
->fcp_hdr_le
.s_id
.domain
,
2154 abts
->fcp_hdr_le
.s_id
.area
, abts
->fcp_hdr_le
.s_id
.al_pa
, tag
,
2155 le32_to_cpu(abts
->fcp_hdr_le
.parameter
));
2157 s_id
= le_id_to_be(abts
->fcp_hdr_le
.s_id
);
2159 spin_lock_irqsave(&ha
->tgt
.sess_lock
, flags
);
2160 sess
= ha
->tgt
.tgt_ops
->find_sess_by_s_id(vha
, s_id
);
2162 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf012,
2163 "qla_target(%d): task abort for non-existent session\n",
2165 spin_unlock_irqrestore(&ha
->tgt
.sess_lock
, flags
);
2167 qlt_24xx_send_abts_resp(ha
->base_qpair
, abts
, FCP_TMF_REJECTED
,
2171 spin_unlock_irqrestore(&ha
->tgt
.sess_lock
, flags
);
2174 if (sess
->deleted
) {
2175 qlt_24xx_send_abts_resp(ha
->base_qpair
, abts
, FCP_TMF_REJECTED
,
2180 rc
= __qlt_24xx_handle_abts(vha
, abts
, sess
);
2182 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf054,
2183 "qla_target(%d): __qlt_24xx_handle_abts() failed: %d\n",
2185 qlt_24xx_send_abts_resp(ha
->base_qpair
, abts
, FCP_TMF_REJECTED
,
2192 * ha->hardware_lock supposed to be held on entry. Might drop it, then reaquire
2194 static void qlt_24xx_send_task_mgmt_ctio(struct qla_qpair
*qpair
,
2195 struct qla_tgt_mgmt_cmd
*mcmd
, uint32_t resp_code
)
2197 struct scsi_qla_host
*ha
= mcmd
->vha
;
2198 struct atio_from_isp
*atio
= &mcmd
->orig_iocb
.atio
;
2199 struct ctio7_to_24xx
*ctio
;
2202 ql_dbg(ql_dbg_tgt
, ha
, 0xe008,
2203 "Sending task mgmt CTIO7 (ha=%p, atio=%p, resp_code=%x\n",
2204 ha
, atio
, resp_code
);
2207 ctio
= (struct ctio7_to_24xx
*)__qla2x00_alloc_iocbs(qpair
, NULL
);
2209 ql_dbg(ql_dbg_tgt
, ha
, 0xe04c,
2210 "qla_target(%d): %s failed: unable to allocate "
2211 "request packet\n", ha
->vp_idx
, __func__
);
2215 ctio
->entry_type
= CTIO_TYPE7
;
2216 ctio
->entry_count
= 1;
2217 ctio
->handle
= QLA_TGT_SKIP_HANDLE
| CTIO_COMPLETION_HANDLE_MARK
;
2218 ctio
->nport_handle
= mcmd
->sess
->loop_id
;
2219 ctio
->timeout
= cpu_to_le16(QLA_TGT_TIMEOUT
);
2220 ctio
->vp_index
= ha
->vp_idx
;
2221 ctio
->initiator_id
= be_id_to_le(atio
->u
.isp24
.fcp_hdr
.s_id
);
2222 ctio
->exchange_addr
= atio
->u
.isp24
.exchange_addr
;
2223 temp
= (atio
->u
.isp24
.attr
<< 9)|
2224 CTIO7_FLAGS_STATUS_MODE_1
| CTIO7_FLAGS_SEND_STATUS
;
2225 ctio
->u
.status1
.flags
= cpu_to_le16(temp
);
2226 temp
= be16_to_cpu(atio
->u
.isp24
.fcp_hdr
.ox_id
);
2227 ctio
->u
.status1
.ox_id
= cpu_to_le16(temp
);
2228 ctio
->u
.status1
.scsi_status
=
2229 cpu_to_le16(SS_RESPONSE_INFO_LEN_VALID
);
2230 ctio
->u
.status1
.response_len
= cpu_to_le16(8);
2231 ctio
->u
.status1
.sense_data
[0] = resp_code
;
2233 /* Memory Barrier */
2235 if (qpair
->reqq_start_iocbs
)
2236 qpair
->reqq_start_iocbs(qpair
);
2238 qla2x00_start_iocbs(ha
, qpair
->req
);
2241 void qlt_free_mcmd(struct qla_tgt_mgmt_cmd
*mcmd
)
2243 mempool_free(mcmd
, qla_tgt_mgmt_cmd_mempool
);
2245 EXPORT_SYMBOL(qlt_free_mcmd
);
2248 * ha->hardware_lock supposed to be held on entry. Might drop it, then
2251 void qlt_send_resp_ctio(struct qla_qpair
*qpair
, struct qla_tgt_cmd
*cmd
,
2252 uint8_t scsi_status
, uint8_t sense_key
, uint8_t asc
, uint8_t ascq
)
2254 struct atio_from_isp
*atio
= &cmd
->atio
;
2255 struct ctio7_to_24xx
*ctio
;
2257 struct scsi_qla_host
*vha
= cmd
->vha
;
2259 ql_dbg(ql_dbg_tgt_dif
, vha
, 0x3066,
2260 "Sending response CTIO7 (vha=%p, atio=%p, scsi_status=%02x, "
2261 "sense_key=%02x, asc=%02x, ascq=%02x",
2262 vha
, atio
, scsi_status
, sense_key
, asc
, ascq
);
2264 ctio
= (struct ctio7_to_24xx
*)qla2x00_alloc_iocbs(vha
, NULL
);
2266 ql_dbg(ql_dbg_async
, vha
, 0x3067,
2267 "qla2x00t(%ld): %s failed: unable to allocate request packet",
2268 vha
->host_no
, __func__
);
2272 ctio
->entry_type
= CTIO_TYPE7
;
2273 ctio
->entry_count
= 1;
2274 ctio
->handle
= QLA_TGT_SKIP_HANDLE
;
2275 ctio
->nport_handle
= cmd
->sess
->loop_id
;
2276 ctio
->timeout
= cpu_to_le16(QLA_TGT_TIMEOUT
);
2277 ctio
->vp_index
= vha
->vp_idx
;
2278 ctio
->initiator_id
= be_id_to_le(atio
->u
.isp24
.fcp_hdr
.s_id
);
2279 ctio
->exchange_addr
= atio
->u
.isp24
.exchange_addr
;
2280 temp
= (atio
->u
.isp24
.attr
<< 9) |
2281 CTIO7_FLAGS_STATUS_MODE_1
| CTIO7_FLAGS_SEND_STATUS
;
2282 ctio
->u
.status1
.flags
= cpu_to_le16(temp
);
2283 temp
= be16_to_cpu(atio
->u
.isp24
.fcp_hdr
.ox_id
);
2284 ctio
->u
.status1
.ox_id
= cpu_to_le16(temp
);
2285 ctio
->u
.status1
.scsi_status
=
2286 cpu_to_le16(SS_RESPONSE_INFO_LEN_VALID
| scsi_status
);
2287 ctio
->u
.status1
.response_len
= cpu_to_le16(18);
2288 ctio
->u
.status1
.residual
= cpu_to_le32(get_datalen_for_atio(atio
));
2290 if (ctio
->u
.status1
.residual
!= 0)
2291 ctio
->u
.status1
.scsi_status
|=
2292 cpu_to_le16(SS_RESIDUAL_UNDER
);
2294 /* Fixed format sense data. */
2295 ctio
->u
.status1
.sense_data
[0] = 0x70;
2296 ctio
->u
.status1
.sense_data
[2] = sense_key
;
2297 /* Additional sense length */
2298 ctio
->u
.status1
.sense_data
[7] = 0xa;
2300 ctio
->u
.status1
.sense_data
[12] = asc
;
2301 ctio
->u
.status1
.sense_data
[13] = ascq
;
2303 /* Memory Barrier */
2306 if (qpair
->reqq_start_iocbs
)
2307 qpair
->reqq_start_iocbs(qpair
);
2309 qla2x00_start_iocbs(vha
, qpair
->req
);
2315 /* callback from target fabric module code */
2316 void qlt_xmit_tm_rsp(struct qla_tgt_mgmt_cmd
*mcmd
)
2318 struct scsi_qla_host
*vha
= mcmd
->sess
->vha
;
2319 struct qla_hw_data
*ha
= vha
->hw
;
2320 unsigned long flags
;
2321 struct qla_qpair
*qpair
= mcmd
->qpair
;
2322 bool free_mcmd
= true;
2324 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf013,
2325 "TM response mcmd (%p) status %#x state %#x",
2326 mcmd
, mcmd
->fc_tm_rsp
, mcmd
->flags
);
2328 spin_lock_irqsave(qpair
->qp_lock_ptr
, flags
);
2330 if (!vha
->flags
.online
|| mcmd
->reset_count
!= qpair
->chip_reset
) {
2332 * Either the port is not online or this request was from
2333 * previous life, just abort the processing.
2335 ql_dbg(ql_dbg_async
, vha
, 0xe100,
2336 "RESET-TMR online/active/old-count/new-count = %d/%d/%d/%d.\n",
2337 vha
->flags
.online
, qla2x00_reset_active(vha
),
2338 mcmd
->reset_count
, qpair
->chip_reset
);
2339 ha
->tgt
.tgt_ops
->free_mcmd(mcmd
);
2340 spin_unlock_irqrestore(qpair
->qp_lock_ptr
, flags
);
2344 if (mcmd
->flags
== QLA24XX_MGMT_SEND_NACK
) {
2345 switch (mcmd
->orig_iocb
.imm_ntfy
.u
.isp24
.status_subcode
) {
2349 ql_dbg(ql_dbg_disc
, vha
, 0x2106,
2350 "TM response logo %8phC status %#x state %#x",
2351 mcmd
->sess
->port_name
, mcmd
->fc_tm_rsp
,
2353 qlt_schedule_sess_for_deletion(mcmd
->sess
);
2356 qlt_send_notify_ack(vha
->hw
->base_qpair
,
2357 &mcmd
->orig_iocb
.imm_ntfy
, 0, 0, 0, 0, 0, 0);
2361 if (mcmd
->orig_iocb
.atio
.u
.raw
.entry_type
== ABTS_RECV_24XX
) {
2362 qlt_build_abts_resp_iocb(mcmd
);
2365 qlt_24xx_send_task_mgmt_ctio(qpair
, mcmd
,
2369 * Make the callback for ->free_mcmd() to queue_work() and invoke
2370 * target_put_sess_cmd() to drop cmd_kref to 1. The final
2371 * target_put_sess_cmd() call will be made from TFO->check_stop_free()
2372 * -> tcm_qla2xxx_check_stop_free() to release the TMR associated se_cmd
2373 * descriptor after TFO->queue_tm_rsp() -> tcm_qla2xxx_queue_tm_rsp() ->
2374 * qlt_xmit_tm_rsp() returns here..
2377 ha
->tgt
.tgt_ops
->free_mcmd(mcmd
);
2379 spin_unlock_irqrestore(qpair
->qp_lock_ptr
, flags
);
2381 EXPORT_SYMBOL(qlt_xmit_tm_rsp
);
2384 static int qlt_pci_map_calc_cnt(struct qla_tgt_prm
*prm
)
2386 struct qla_tgt_cmd
*cmd
= prm
->cmd
;
2388 BUG_ON(cmd
->sg_cnt
== 0);
2390 prm
->sg
= (struct scatterlist
*)cmd
->sg
;
2391 prm
->seg_cnt
= dma_map_sg(&cmd
->qpair
->pdev
->dev
, cmd
->sg
,
2392 cmd
->sg_cnt
, cmd
->dma_data_direction
);
2393 if (unlikely(prm
->seg_cnt
== 0))
2396 prm
->cmd
->sg_mapped
= 1;
2398 if (cmd
->se_cmd
.prot_op
== TARGET_PROT_NORMAL
) {
2400 * If greater than four sg entries then we need to allocate
2401 * the continuation entries
2403 if (prm
->seg_cnt
> QLA_TGT_DATASEGS_PER_CMD_24XX
)
2404 prm
->req_cnt
+= DIV_ROUND_UP(prm
->seg_cnt
-
2405 QLA_TGT_DATASEGS_PER_CMD_24XX
,
2406 QLA_TGT_DATASEGS_PER_CONT_24XX
);
2409 if ((cmd
->se_cmd
.prot_op
== TARGET_PROT_DIN_INSERT
) ||
2410 (cmd
->se_cmd
.prot_op
== TARGET_PROT_DOUT_STRIP
)) {
2411 prm
->seg_cnt
= DIV_ROUND_UP(cmd
->bufflen
, cmd
->blk_sz
);
2412 prm
->tot_dsds
= prm
->seg_cnt
;
2414 prm
->tot_dsds
= prm
->seg_cnt
;
2416 if (cmd
->prot_sg_cnt
) {
2417 prm
->prot_sg
= cmd
->prot_sg
;
2418 prm
->prot_seg_cnt
= dma_map_sg(&cmd
->qpair
->pdev
->dev
,
2419 cmd
->prot_sg
, cmd
->prot_sg_cnt
,
2420 cmd
->dma_data_direction
);
2421 if (unlikely(prm
->prot_seg_cnt
== 0))
2424 if ((cmd
->se_cmd
.prot_op
== TARGET_PROT_DIN_INSERT
) ||
2425 (cmd
->se_cmd
.prot_op
== TARGET_PROT_DOUT_STRIP
)) {
2426 /* Dif Bundling not support here */
2427 prm
->prot_seg_cnt
= DIV_ROUND_UP(cmd
->bufflen
,
2429 prm
->tot_dsds
+= prm
->prot_seg_cnt
;
2431 prm
->tot_dsds
+= prm
->prot_seg_cnt
;
2438 ql_dbg_qp(ql_dbg_tgt
, prm
->cmd
->qpair
, 0xe04d,
2439 "qla_target(%d): PCI mapping failed: sg_cnt=%d",
2440 0, prm
->cmd
->sg_cnt
);
2444 static void qlt_unmap_sg(struct scsi_qla_host
*vha
, struct qla_tgt_cmd
*cmd
)
2446 struct qla_hw_data
*ha
;
2447 struct qla_qpair
*qpair
;
2449 if (!cmd
->sg_mapped
)
2454 dma_unmap_sg(&qpair
->pdev
->dev
, cmd
->sg
, cmd
->sg_cnt
,
2455 cmd
->dma_data_direction
);
2458 if (cmd
->prot_sg_cnt
)
2459 dma_unmap_sg(&qpair
->pdev
->dev
, cmd
->prot_sg
, cmd
->prot_sg_cnt
,
2460 cmd
->dma_data_direction
);
2465 if (cmd
->ctx_dsd_alloced
)
2466 qla2x00_clean_dsd_pool(ha
, cmd
->ctx
);
2468 dma_pool_free(ha
->dl_dma_pool
, cmd
->ctx
, cmd
->ctx
->crc_ctx_dma
);
2471 static int qlt_check_reserve_free_req(struct qla_qpair
*qpair
,
2475 struct req_que
*req
= qpair
->req
;
2477 if (req
->cnt
< (req_cnt
+ 2)) {
2478 cnt
= (uint16_t)(qpair
->use_shadow_reg
? *req
->out_ptr
:
2479 RD_REG_DWORD_RELAXED(req
->req_q_out
));
2481 if (req
->ring_index
< cnt
)
2482 req
->cnt
= cnt
- req
->ring_index
;
2484 req
->cnt
= req
->length
- (req
->ring_index
- cnt
);
2486 if (unlikely(req
->cnt
< (req_cnt
+ 2)))
2490 req
->cnt
-= req_cnt
;
2496 * ha->hardware_lock supposed to be held on entry. Might drop it, then reaquire
2498 static inline void *qlt_get_req_pkt(struct req_que
*req
)
2500 /* Adjust ring index. */
2502 if (req
->ring_index
== req
->length
) {
2503 req
->ring_index
= 0;
2504 req
->ring_ptr
= req
->ring
;
2508 return (cont_entry_t
*)req
->ring_ptr
;
2511 /* ha->hardware_lock supposed to be held on entry */
2512 static inline uint32_t qlt_make_handle(struct qla_qpair
*qpair
)
2517 struct req_que
*req
= qpair
->req
;
2519 h
= req
->current_outstanding_cmd
;
2521 for (index
= 1; index
< req
->num_outstanding_cmds
; index
++) {
2523 if (h
== req
->num_outstanding_cmds
)
2526 if (h
== QLA_TGT_SKIP_HANDLE
)
2529 if (!req
->outstanding_cmds
[h
]) {
2536 req
->current_outstanding_cmd
= h
;
2538 ql_dbg(ql_dbg_io
, qpair
->vha
, 0x305b,
2539 "qla_target(%d): Ran out of empty cmd slots\n",
2540 qpair
->vha
->vp_idx
);
2541 h
= QLA_TGT_NULL_HANDLE
;
2547 /* ha->hardware_lock supposed to be held on entry */
2548 static int qlt_24xx_build_ctio_pkt(struct qla_qpair
*qpair
,
2549 struct qla_tgt_prm
*prm
)
2552 struct ctio7_to_24xx
*pkt
;
2553 struct atio_from_isp
*atio
= &prm
->cmd
->atio
;
2556 pkt
= (struct ctio7_to_24xx
*)qpair
->req
->ring_ptr
;
2558 memset(pkt
, 0, sizeof(*pkt
));
2560 pkt
->entry_type
= CTIO_TYPE7
;
2561 pkt
->entry_count
= (uint8_t)prm
->req_cnt
;
2562 pkt
->vp_index
= prm
->cmd
->vp_idx
;
2564 h
= qlt_make_handle(qpair
);
2565 if (unlikely(h
== QLA_TGT_NULL_HANDLE
)) {
2567 * CTIO type 7 from the firmware doesn't provide a way to
2568 * know the initiator's LOOP ID, hence we can't find
2569 * the session and, so, the command.
2573 qpair
->req
->outstanding_cmds
[h
] = (srb_t
*)prm
->cmd
;
2575 pkt
->handle
= MAKE_HANDLE(qpair
->req
->id
, h
);
2576 pkt
->handle
|= CTIO_COMPLETION_HANDLE_MARK
;
2577 pkt
->nport_handle
= cpu_to_le16(prm
->cmd
->loop_id
);
2578 pkt
->timeout
= cpu_to_le16(QLA_TGT_TIMEOUT
);
2579 pkt
->initiator_id
= be_id_to_le(atio
->u
.isp24
.fcp_hdr
.s_id
);
2580 pkt
->exchange_addr
= atio
->u
.isp24
.exchange_addr
;
2581 temp
= atio
->u
.isp24
.attr
<< 9;
2582 pkt
->u
.status0
.flags
|= cpu_to_le16(temp
);
2583 temp
= be16_to_cpu(atio
->u
.isp24
.fcp_hdr
.ox_id
);
2584 pkt
->u
.status0
.ox_id
= cpu_to_le16(temp
);
2585 pkt
->u
.status0
.relative_offset
= cpu_to_le32(prm
->cmd
->offset
);
2591 * ha->hardware_lock supposed to be held on entry. We have already made sure
2592 * that there is sufficient amount of request entries to not drop it.
2594 static void qlt_load_cont_data_segments(struct qla_tgt_prm
*prm
)
2597 struct dsd64
*cur_dsd
;
2599 /* Build continuation packets */
2600 while (prm
->seg_cnt
> 0) {
2601 cont_a64_entry_t
*cont_pkt64
=
2602 (cont_a64_entry_t
*)qlt_get_req_pkt(
2603 prm
->cmd
->qpair
->req
);
2606 * Make sure that from cont_pkt64 none of
2607 * 64-bit specific fields used for 32-bit
2608 * addressing. Cast to (cont_entry_t *) for
2612 memset(cont_pkt64
, 0, sizeof(*cont_pkt64
));
2614 cont_pkt64
->entry_count
= 1;
2615 cont_pkt64
->sys_define
= 0;
2617 cont_pkt64
->entry_type
= CONTINUE_A64_TYPE
;
2618 cur_dsd
= cont_pkt64
->dsd
;
2620 /* Load continuation entry data segments */
2622 cnt
< QLA_TGT_DATASEGS_PER_CONT_24XX
&& prm
->seg_cnt
;
2623 cnt
++, prm
->seg_cnt
--) {
2624 append_dsd64(&cur_dsd
, prm
->sg
);
2625 prm
->sg
= sg_next(prm
->sg
);
2631 * ha->hardware_lock supposed to be held on entry. We have already made sure
2632 * that there is sufficient amount of request entries to not drop it.
2634 static void qlt_load_data_segments(struct qla_tgt_prm
*prm
)
2637 struct dsd64
*cur_dsd
;
2638 struct ctio7_to_24xx
*pkt24
= (struct ctio7_to_24xx
*)prm
->pkt
;
2640 pkt24
->u
.status0
.transfer_length
= cpu_to_le32(prm
->cmd
->bufflen
);
2642 /* Setup packet address segment pointer */
2643 cur_dsd
= &pkt24
->u
.status0
.dsd
;
2645 /* Set total data segment count */
2647 pkt24
->dseg_count
= cpu_to_le16(prm
->seg_cnt
);
2649 if (prm
->seg_cnt
== 0) {
2650 /* No data transfer */
2651 cur_dsd
->address
= 0;
2652 cur_dsd
->length
= 0;
2656 /* If scatter gather */
2658 /* Load command entry data segments */
2660 (cnt
< QLA_TGT_DATASEGS_PER_CMD_24XX
) && prm
->seg_cnt
;
2661 cnt
++, prm
->seg_cnt
--) {
2662 append_dsd64(&cur_dsd
, prm
->sg
);
2663 prm
->sg
= sg_next(prm
->sg
);
2666 qlt_load_cont_data_segments(prm
);
2669 static inline int qlt_has_data(struct qla_tgt_cmd
*cmd
)
2671 return cmd
->bufflen
> 0;
2674 static void qlt_print_dif_err(struct qla_tgt_prm
*prm
)
2676 struct qla_tgt_cmd
*cmd
;
2677 struct scsi_qla_host
*vha
;
2679 /* asc 0x10=dif error */
2680 if (prm
->sense_buffer
&& (prm
->sense_buffer
[12] == 0x10)) {
2684 switch (prm
->sense_buffer
[13]) {
2686 ql_dbg(ql_dbg_tgt_dif
, vha
, 0xe00b,
2687 "BE detected Guard TAG ERR: lba[0x%llx|%lld] len[0x%x] "
2688 "se_cmd=%p tag[%x]",
2689 cmd
->lba
, cmd
->lba
, cmd
->num_blks
, &cmd
->se_cmd
,
2690 cmd
->atio
.u
.isp24
.exchange_addr
);
2693 ql_dbg(ql_dbg_tgt_dif
, vha
, 0xe00c,
2694 "BE detected APP TAG ERR: lba[0x%llx|%lld] len[0x%x] "
2695 "se_cmd=%p tag[%x]",
2696 cmd
->lba
, cmd
->lba
, cmd
->num_blks
, &cmd
->se_cmd
,
2697 cmd
->atio
.u
.isp24
.exchange_addr
);
2700 ql_dbg(ql_dbg_tgt_dif
, vha
, 0xe00f,
2701 "BE detected REF TAG ERR: lba[0x%llx|%lld] len[0x%x] "
2702 "se_cmd=%p tag[%x]",
2703 cmd
->lba
, cmd
->lba
, cmd
->num_blks
, &cmd
->se_cmd
,
2704 cmd
->atio
.u
.isp24
.exchange_addr
);
2707 ql_dbg(ql_dbg_tgt_dif
, vha
, 0xe010,
2708 "BE detected Dif ERR: lba[%llx|%lld] len[%x] "
2709 "se_cmd=%p tag[%x]",
2710 cmd
->lba
, cmd
->lba
, cmd
->num_blks
, &cmd
->se_cmd
,
2711 cmd
->atio
.u
.isp24
.exchange_addr
);
2714 ql_dump_buffer(ql_dbg_tgt_dif
, vha
, 0xe011, cmd
->cdb
, 16);
2719 * Called without ha->hardware_lock held
2721 static int qlt_pre_xmit_response(struct qla_tgt_cmd
*cmd
,
2722 struct qla_tgt_prm
*prm
, int xmit_type
, uint8_t scsi_status
,
2723 uint32_t *full_req_cnt
)
2725 struct se_cmd
*se_cmd
= &cmd
->se_cmd
;
2726 struct qla_qpair
*qpair
= cmd
->qpair
;
2729 prm
->tgt
= cmd
->tgt
;
2731 prm
->rq_result
= scsi_status
;
2732 prm
->sense_buffer
= &cmd
->sense_buffer
[0];
2733 prm
->sense_buffer_len
= TRANSPORT_SENSE_BUFFER
;
2738 prm
->add_status_pkt
= 0;
2739 prm
->prot_sg
= NULL
;
2740 prm
->prot_seg_cnt
= 0;
2743 if ((xmit_type
& QLA_TGT_XMIT_DATA
) && qlt_has_data(cmd
)) {
2744 if (qlt_pci_map_calc_cnt(prm
) != 0)
2748 *full_req_cnt
= prm
->req_cnt
;
2750 if (se_cmd
->se_cmd_flags
& SCF_UNDERFLOW_BIT
) {
2751 prm
->residual
= se_cmd
->residual_count
;
2752 ql_dbg_qp(ql_dbg_io
+ ql_dbg_verbose
, qpair
, 0x305c,
2753 "Residual underflow: %d (tag %lld, op %x, bufflen %d, rq_result %x)\n",
2754 prm
->residual
, se_cmd
->tag
,
2755 se_cmd
->t_task_cdb
? se_cmd
->t_task_cdb
[0] : 0,
2756 cmd
->bufflen
, prm
->rq_result
);
2757 prm
->rq_result
|= SS_RESIDUAL_UNDER
;
2758 } else if (se_cmd
->se_cmd_flags
& SCF_OVERFLOW_BIT
) {
2759 prm
->residual
= se_cmd
->residual_count
;
2760 ql_dbg_qp(ql_dbg_io
, qpair
, 0x305d,
2761 "Residual overflow: %d (tag %lld, op %x, bufflen %d, rq_result %x)\n",
2762 prm
->residual
, se_cmd
->tag
, se_cmd
->t_task_cdb
?
2763 se_cmd
->t_task_cdb
[0] : 0, cmd
->bufflen
, prm
->rq_result
);
2764 prm
->rq_result
|= SS_RESIDUAL_OVER
;
2767 if (xmit_type
& QLA_TGT_XMIT_STATUS
) {
2769 * If QLA_TGT_XMIT_DATA is not set, add_status_pkt will be
2770 * ignored in *xmit_response() below
2772 if (qlt_has_data(cmd
)) {
2773 if (QLA_TGT_SENSE_VALID(prm
->sense_buffer
) ||
2774 (IS_FWI2_CAPABLE(cmd
->vha
->hw
) &&
2775 (prm
->rq_result
!= 0))) {
2776 prm
->add_status_pkt
= 1;
2785 static inline int qlt_need_explicit_conf(struct qla_tgt_cmd
*cmd
,
2788 if (cmd
->qpair
->enable_class_2
)
2792 return cmd
->conf_compl_supported
;
2794 return cmd
->qpair
->enable_explicit_conf
&&
2795 cmd
->conf_compl_supported
;
2798 static void qlt_24xx_init_ctio_to_isp(struct ctio7_to_24xx
*ctio
,
2799 struct qla_tgt_prm
*prm
)
2801 prm
->sense_buffer_len
= min_t(uint32_t, prm
->sense_buffer_len
,
2802 (uint32_t)sizeof(ctio
->u
.status1
.sense_data
));
2803 ctio
->u
.status0
.flags
|= cpu_to_le16(CTIO7_FLAGS_SEND_STATUS
);
2804 if (qlt_need_explicit_conf(prm
->cmd
, 0)) {
2805 ctio
->u
.status0
.flags
|= cpu_to_le16(
2806 CTIO7_FLAGS_EXPLICIT_CONFORM
|
2807 CTIO7_FLAGS_CONFORM_REQ
);
2809 ctio
->u
.status0
.residual
= cpu_to_le32(prm
->residual
);
2810 ctio
->u
.status0
.scsi_status
= cpu_to_le16(prm
->rq_result
);
2811 if (QLA_TGT_SENSE_VALID(prm
->sense_buffer
)) {
2814 if (qlt_need_explicit_conf(prm
->cmd
, 1)) {
2815 if ((prm
->rq_result
& SS_SCSI_STATUS_BYTE
) != 0) {
2816 ql_dbg_qp(ql_dbg_tgt
, prm
->cmd
->qpair
, 0xe017,
2817 "Skipping EXPLICIT_CONFORM and "
2818 "CTIO7_FLAGS_CONFORM_REQ for FCP READ w/ "
2819 "non GOOD status\n");
2820 goto skip_explict_conf
;
2822 ctio
->u
.status1
.flags
|= cpu_to_le16(
2823 CTIO7_FLAGS_EXPLICIT_CONFORM
|
2824 CTIO7_FLAGS_CONFORM_REQ
);
2827 ctio
->u
.status1
.flags
&=
2828 ~cpu_to_le16(CTIO7_FLAGS_STATUS_MODE_0
);
2829 ctio
->u
.status1
.flags
|=
2830 cpu_to_le16(CTIO7_FLAGS_STATUS_MODE_1
);
2831 ctio
->u
.status1
.scsi_status
|=
2832 cpu_to_le16(SS_SENSE_LEN_VALID
);
2833 ctio
->u
.status1
.sense_length
=
2834 cpu_to_le16(prm
->sense_buffer_len
);
2835 for (i
= 0; i
< prm
->sense_buffer_len
/4; i
++)
2836 ((uint32_t *)ctio
->u
.status1
.sense_data
)[i
] =
2837 cpu_to_be32(((uint32_t *)prm
->sense_buffer
)[i
]);
2839 qlt_print_dif_err(prm
);
2842 ctio
->u
.status1
.flags
&=
2843 ~cpu_to_le16(CTIO7_FLAGS_STATUS_MODE_0
);
2844 ctio
->u
.status1
.flags
|=
2845 cpu_to_le16(CTIO7_FLAGS_STATUS_MODE_1
);
2846 ctio
->u
.status1
.sense_length
= 0;
2847 memset(ctio
->u
.status1
.sense_data
, 0,
2848 sizeof(ctio
->u
.status1
.sense_data
));
2851 /* Sense with len > 24, is it possible ??? */
2855 qlt_hba_err_chk_enabled(struct se_cmd
*se_cmd
)
2857 switch (se_cmd
->prot_op
) {
2858 case TARGET_PROT_DOUT_INSERT
:
2859 case TARGET_PROT_DIN_STRIP
:
2860 if (ql2xenablehba_err_chk
>= 1)
2863 case TARGET_PROT_DOUT_PASS
:
2864 case TARGET_PROT_DIN_PASS
:
2865 if (ql2xenablehba_err_chk
>= 2)
2868 case TARGET_PROT_DIN_INSERT
:
2869 case TARGET_PROT_DOUT_STRIP
:
2878 qla_tgt_ref_mask_check(struct se_cmd
*se_cmd
)
2880 switch (se_cmd
->prot_op
) {
2881 case TARGET_PROT_DIN_INSERT
:
2882 case TARGET_PROT_DOUT_INSERT
:
2883 case TARGET_PROT_DIN_STRIP
:
2884 case TARGET_PROT_DOUT_STRIP
:
2885 case TARGET_PROT_DIN_PASS
:
2886 case TARGET_PROT_DOUT_PASS
:
2895 * qla_tgt_set_dif_tags - Extract Ref and App tags from SCSI command
2898 qla_tgt_set_dif_tags(struct qla_tgt_cmd
*cmd
, struct crc_context
*ctx
,
2899 uint16_t *pfw_prot_opts
)
2901 struct se_cmd
*se_cmd
= &cmd
->se_cmd
;
2902 uint32_t lba
= 0xffffffff & se_cmd
->t_task_lba
;
2903 scsi_qla_host_t
*vha
= cmd
->tgt
->vha
;
2904 struct qla_hw_data
*ha
= vha
->hw
;
2908 * wait till Mode Sense/Select cmd, modepage Ah, subpage 2
2909 * have been immplemented by TCM, before AppTag is avail.
2910 * Look for modesense_handlers[]
2913 ctx
->app_tag_mask
[0] = 0x0;
2914 ctx
->app_tag_mask
[1] = 0x0;
2916 if (IS_PI_UNINIT_CAPABLE(ha
)) {
2917 if ((se_cmd
->prot_type
== TARGET_DIF_TYPE1_PROT
) ||
2918 (se_cmd
->prot_type
== TARGET_DIF_TYPE2_PROT
))
2919 *pfw_prot_opts
|= PO_DIS_VALD_APP_ESC
;
2920 else if (se_cmd
->prot_type
== TARGET_DIF_TYPE3_PROT
)
2921 *pfw_prot_opts
|= PO_DIS_VALD_APP_REF_ESC
;
2924 t32
= ha
->tgt
.tgt_ops
->get_dif_tags(cmd
, pfw_prot_opts
);
2926 switch (se_cmd
->prot_type
) {
2927 case TARGET_DIF_TYPE0_PROT
:
2929 * No check for ql2xenablehba_err_chk, as it
2930 * would be an I/O error if hba tag generation
2933 ctx
->ref_tag
= cpu_to_le32(lba
);
2934 /* enable ALL bytes of the ref tag */
2935 ctx
->ref_tag_mask
[0] = 0xff;
2936 ctx
->ref_tag_mask
[1] = 0xff;
2937 ctx
->ref_tag_mask
[2] = 0xff;
2938 ctx
->ref_tag_mask
[3] = 0xff;
2940 case TARGET_DIF_TYPE1_PROT
:
2942 * For TYPE 1 protection: 16 bit GUARD tag, 32 bit
2943 * REF tag, and 16 bit app tag.
2945 ctx
->ref_tag
= cpu_to_le32(lba
);
2946 if (!qla_tgt_ref_mask_check(se_cmd
) ||
2947 !(ha
->tgt
.tgt_ops
->chk_dif_tags(t32
))) {
2948 *pfw_prot_opts
|= PO_DIS_REF_TAG_VALD
;
2951 /* enable ALL bytes of the ref tag */
2952 ctx
->ref_tag_mask
[0] = 0xff;
2953 ctx
->ref_tag_mask
[1] = 0xff;
2954 ctx
->ref_tag_mask
[2] = 0xff;
2955 ctx
->ref_tag_mask
[3] = 0xff;
2957 case TARGET_DIF_TYPE2_PROT
:
2959 * For TYPE 2 protection: 16 bit GUARD + 32 bit REF
2960 * tag has to match LBA in CDB + N
2962 ctx
->ref_tag
= cpu_to_le32(lba
);
2963 if (!qla_tgt_ref_mask_check(se_cmd
) ||
2964 !(ha
->tgt
.tgt_ops
->chk_dif_tags(t32
))) {
2965 *pfw_prot_opts
|= PO_DIS_REF_TAG_VALD
;
2968 /* enable ALL bytes of the ref tag */
2969 ctx
->ref_tag_mask
[0] = 0xff;
2970 ctx
->ref_tag_mask
[1] = 0xff;
2971 ctx
->ref_tag_mask
[2] = 0xff;
2972 ctx
->ref_tag_mask
[3] = 0xff;
2974 case TARGET_DIF_TYPE3_PROT
:
2975 /* For TYPE 3 protection: 16 bit GUARD only */
2976 *pfw_prot_opts
|= PO_DIS_REF_TAG_VALD
;
2977 ctx
->ref_tag_mask
[0] = ctx
->ref_tag_mask
[1] =
2978 ctx
->ref_tag_mask
[2] = ctx
->ref_tag_mask
[3] = 0x00;
2984 qlt_build_ctio_crc2_pkt(struct qla_qpair
*qpair
, struct qla_tgt_prm
*prm
)
2986 struct dsd64
*cur_dsd
;
2987 uint32_t transfer_length
= 0;
2988 uint32_t data_bytes
;
2990 uint8_t bundling
= 1;
2991 struct crc_context
*crc_ctx_pkt
= NULL
;
2992 struct qla_hw_data
*ha
;
2993 struct ctio_crc2_to_fw
*pkt
;
2994 dma_addr_t crc_ctx_dma
;
2995 uint16_t fw_prot_opts
= 0;
2996 struct qla_tgt_cmd
*cmd
= prm
->cmd
;
2997 struct se_cmd
*se_cmd
= &cmd
->se_cmd
;
2999 struct atio_from_isp
*atio
= &prm
->cmd
->atio
;
3000 struct qla_tc_param tc
;
3002 scsi_qla_host_t
*vha
= cmd
->vha
;
3006 pkt
= (struct ctio_crc2_to_fw
*)qpair
->req
->ring_ptr
;
3008 memset(pkt
, 0, sizeof(*pkt
));
3010 ql_dbg_qp(ql_dbg_tgt
, cmd
->qpair
, 0xe071,
3011 "qla_target(%d):%s: se_cmd[%p] CRC2 prot_op[0x%x] cmd prot sg:cnt[%p:%x] lba[%llu]\n",
3012 cmd
->vp_idx
, __func__
, se_cmd
, se_cmd
->prot_op
,
3013 prm
->prot_sg
, prm
->prot_seg_cnt
, se_cmd
->t_task_lba
);
3015 if ((se_cmd
->prot_op
== TARGET_PROT_DIN_INSERT
) ||
3016 (se_cmd
->prot_op
== TARGET_PROT_DOUT_STRIP
))
3019 /* Compute dif len and adjust data len to incude protection */
3020 data_bytes
= cmd
->bufflen
;
3021 dif_bytes
= (data_bytes
/ cmd
->blk_sz
) * 8;
3023 switch (se_cmd
->prot_op
) {
3024 case TARGET_PROT_DIN_INSERT
:
3025 case TARGET_PROT_DOUT_STRIP
:
3026 transfer_length
= data_bytes
;
3027 if (cmd
->prot_sg_cnt
)
3028 data_bytes
+= dif_bytes
;
3030 case TARGET_PROT_DIN_STRIP
:
3031 case TARGET_PROT_DOUT_INSERT
:
3032 case TARGET_PROT_DIN_PASS
:
3033 case TARGET_PROT_DOUT_PASS
:
3034 transfer_length
= data_bytes
+ dif_bytes
;
3041 if (!qlt_hba_err_chk_enabled(se_cmd
))
3042 fw_prot_opts
|= 0x10; /* Disable Guard tag checking */
3043 /* HBA error checking enabled */
3044 else if (IS_PI_UNINIT_CAPABLE(ha
)) {
3045 if ((se_cmd
->prot_type
== TARGET_DIF_TYPE1_PROT
) ||
3046 (se_cmd
->prot_type
== TARGET_DIF_TYPE2_PROT
))
3047 fw_prot_opts
|= PO_DIS_VALD_APP_ESC
;
3048 else if (se_cmd
->prot_type
== TARGET_DIF_TYPE3_PROT
)
3049 fw_prot_opts
|= PO_DIS_VALD_APP_REF_ESC
;
3052 switch (se_cmd
->prot_op
) {
3053 case TARGET_PROT_DIN_INSERT
:
3054 case TARGET_PROT_DOUT_INSERT
:
3055 fw_prot_opts
|= PO_MODE_DIF_INSERT
;
3057 case TARGET_PROT_DIN_STRIP
:
3058 case TARGET_PROT_DOUT_STRIP
:
3059 fw_prot_opts
|= PO_MODE_DIF_REMOVE
;
3061 case TARGET_PROT_DIN_PASS
:
3062 case TARGET_PROT_DOUT_PASS
:
3063 fw_prot_opts
|= PO_MODE_DIF_PASS
;
3064 /* FUTURE: does tcm require T10CRC<->IPCKSUM conversion? */
3066 default:/* Normal Request */
3067 fw_prot_opts
|= PO_MODE_DIF_PASS
;
3072 /* Update entry type to indicate Command Type CRC_2 IOCB */
3073 pkt
->entry_type
= CTIO_CRC2
;
3074 pkt
->entry_count
= 1;
3075 pkt
->vp_index
= cmd
->vp_idx
;
3077 h
= qlt_make_handle(qpair
);
3078 if (unlikely(h
== QLA_TGT_NULL_HANDLE
)) {
3080 * CTIO type 7 from the firmware doesn't provide a way to
3081 * know the initiator's LOOP ID, hence we can't find
3082 * the session and, so, the command.
3086 qpair
->req
->outstanding_cmds
[h
] = (srb_t
*)prm
->cmd
;
3088 pkt
->handle
= MAKE_HANDLE(qpair
->req
->id
, h
);
3089 pkt
->handle
|= CTIO_COMPLETION_HANDLE_MARK
;
3090 pkt
->nport_handle
= cpu_to_le16(prm
->cmd
->loop_id
);
3091 pkt
->timeout
= cpu_to_le16(QLA_TGT_TIMEOUT
);
3092 pkt
->initiator_id
= be_id_to_le(atio
->u
.isp24
.fcp_hdr
.s_id
);
3093 pkt
->exchange_addr
= atio
->u
.isp24
.exchange_addr
;
3095 /* silence compile warning */
3096 t16
= be16_to_cpu(atio
->u
.isp24
.fcp_hdr
.ox_id
);
3097 pkt
->ox_id
= cpu_to_le16(t16
);
3099 t16
= (atio
->u
.isp24
.attr
<< 9);
3100 pkt
->flags
|= cpu_to_le16(t16
);
3101 pkt
->relative_offset
= cpu_to_le32(prm
->cmd
->offset
);
3103 /* Set transfer direction */
3104 if (cmd
->dma_data_direction
== DMA_TO_DEVICE
)
3105 pkt
->flags
= cpu_to_le16(CTIO7_FLAGS_DATA_IN
);
3106 else if (cmd
->dma_data_direction
== DMA_FROM_DEVICE
)
3107 pkt
->flags
= cpu_to_le16(CTIO7_FLAGS_DATA_OUT
);
3109 pkt
->dseg_count
= prm
->tot_dsds
;
3110 /* Fibre channel byte count */
3111 pkt
->transfer_length
= cpu_to_le32(transfer_length
);
3113 /* ----- CRC context -------- */
3115 /* Allocate CRC context from global pool */
3116 crc_ctx_pkt
= cmd
->ctx
=
3117 dma_pool_zalloc(ha
->dl_dma_pool
, GFP_ATOMIC
, &crc_ctx_dma
);
3120 goto crc_queuing_error
;
3122 crc_ctx_pkt
->crc_ctx_dma
= crc_ctx_dma
;
3123 INIT_LIST_HEAD(&crc_ctx_pkt
->dsd_list
);
3126 crc_ctx_pkt
->handle
= pkt
->handle
;
3128 qla_tgt_set_dif_tags(cmd
, crc_ctx_pkt
, &fw_prot_opts
);
3130 put_unaligned_le64(crc_ctx_dma
, &pkt
->crc_context_address
);
3131 pkt
->crc_context_len
= CRC_CONTEXT_LEN_FW
;
3134 cur_dsd
= &crc_ctx_pkt
->u
.nobundling
.data_dsd
[0];
3137 * Configure Bundling if we need to fetch interlaving
3138 * protection PCI accesses
3140 fw_prot_opts
|= PO_ENABLE_DIF_BUNDLING
;
3141 crc_ctx_pkt
->u
.bundling
.dif_byte_count
= cpu_to_le32(dif_bytes
);
3142 crc_ctx_pkt
->u
.bundling
.dseg_count
=
3143 cpu_to_le16(prm
->tot_dsds
- prm
->prot_seg_cnt
);
3144 cur_dsd
= &crc_ctx_pkt
->u
.bundling
.data_dsd
[0];
3147 /* Finish the common fields of CRC pkt */
3148 crc_ctx_pkt
->blk_size
= cpu_to_le16(cmd
->blk_sz
);
3149 crc_ctx_pkt
->prot_opts
= cpu_to_le16(fw_prot_opts
);
3150 crc_ctx_pkt
->byte_count
= cpu_to_le32(data_bytes
);
3151 crc_ctx_pkt
->guard_seed
= cpu_to_le16(0);
3153 memset((uint8_t *)&tc
, 0 , sizeof(tc
));
3155 tc
.blk_sz
= cmd
->blk_sz
;
3156 tc
.bufflen
= cmd
->bufflen
;
3158 tc
.prot_sg
= cmd
->prot_sg
;
3159 tc
.ctx
= crc_ctx_pkt
;
3160 tc
.ctx_dsd_alloced
= &cmd
->ctx_dsd_alloced
;
3162 /* Walks data segments */
3163 pkt
->flags
|= cpu_to_le16(CTIO7_FLAGS_DSD_PTR
);
3165 if (!bundling
&& prm
->prot_seg_cnt
) {
3166 if (qla24xx_walk_and_build_sglist_no_difb(ha
, NULL
, cur_dsd
,
3167 prm
->tot_dsds
, &tc
))
3168 goto crc_queuing_error
;
3169 } else if (qla24xx_walk_and_build_sglist(ha
, NULL
, cur_dsd
,
3170 (prm
->tot_dsds
- prm
->prot_seg_cnt
), &tc
))
3171 goto crc_queuing_error
;
3173 if (bundling
&& prm
->prot_seg_cnt
) {
3174 /* Walks dif segments */
3175 pkt
->add_flags
|= CTIO_CRC2_AF_DIF_DSD_ENA
;
3177 cur_dsd
= &crc_ctx_pkt
->u
.bundling
.dif_dsd
;
3178 if (qla24xx_walk_and_build_prot_sglist(ha
, NULL
, cur_dsd
,
3179 prm
->prot_seg_cnt
, cmd
))
3180 goto crc_queuing_error
;
3185 /* Cleanup will be performed by the caller */
3186 qpair
->req
->outstanding_cmds
[h
] = NULL
;
3188 return QLA_FUNCTION_FAILED
;
3192 * Callback to setup response of xmit_type of QLA_TGT_XMIT_DATA and *
3193 * QLA_TGT_XMIT_STATUS for >= 24xx silicon
3195 int qlt_xmit_response(struct qla_tgt_cmd
*cmd
, int xmit_type
,
3196 uint8_t scsi_status
)
3198 struct scsi_qla_host
*vha
= cmd
->vha
;
3199 struct qla_qpair
*qpair
= cmd
->qpair
;
3200 struct ctio7_to_24xx
*pkt
;
3201 struct qla_tgt_prm prm
;
3202 uint32_t full_req_cnt
= 0;
3203 unsigned long flags
= 0;
3206 if (!qpair
->fw_started
|| (cmd
->reset_count
!= qpair
->chip_reset
) ||
3207 (cmd
->sess
&& cmd
->sess
->deleted
)) {
3208 cmd
->state
= QLA_TGT_STATE_PROCESSED
;
3213 ql_dbg_qp(ql_dbg_tgt
, qpair
, 0xe018,
3214 "is_send_status=%d, cmd->bufflen=%d, cmd->sg_cnt=%d, cmd->dma_data_direction=%d se_cmd[%p] qp %d\n",
3215 (xmit_type
& QLA_TGT_XMIT_STATUS
) ?
3216 1 : 0, cmd
->bufflen
, cmd
->sg_cnt
, cmd
->dma_data_direction
,
3217 &cmd
->se_cmd
, qpair
->id
);
3219 res
= qlt_pre_xmit_response(cmd
, &prm
, xmit_type
, scsi_status
,
3221 if (unlikely(res
!= 0))
3224 spin_lock_irqsave(qpair
->qp_lock_ptr
, flags
);
3226 if (xmit_type
== QLA_TGT_XMIT_STATUS
)
3227 qpair
->tgt_counters
.core_qla_snd_status
++;
3229 qpair
->tgt_counters
.core_qla_que_buf
++;
3231 if (!qpair
->fw_started
|| cmd
->reset_count
!= qpair
->chip_reset
) {
3233 * Either the port is not online or this request was from
3234 * previous life, just abort the processing.
3236 cmd
->state
= QLA_TGT_STATE_PROCESSED
;
3237 ql_dbg_qp(ql_dbg_async
, qpair
, 0xe101,
3238 "RESET-RSP online/active/old-count/new-count = %d/%d/%d/%d.\n",
3239 vha
->flags
.online
, qla2x00_reset_active(vha
),
3240 cmd
->reset_count
, qpair
->chip_reset
);
3241 spin_unlock_irqrestore(qpair
->qp_lock_ptr
, flags
);
3246 /* Does F/W have an IOCBs for this request */
3247 res
= qlt_check_reserve_free_req(qpair
, full_req_cnt
);
3249 goto out_unmap_unlock
;
3251 if (cmd
->se_cmd
.prot_op
&& (xmit_type
& QLA_TGT_XMIT_DATA
))
3252 res
= qlt_build_ctio_crc2_pkt(qpair
, &prm
);
3254 res
= qlt_24xx_build_ctio_pkt(qpair
, &prm
);
3255 if (unlikely(res
!= 0)) {
3256 qpair
->req
->cnt
+= full_req_cnt
;
3257 goto out_unmap_unlock
;
3260 pkt
= (struct ctio7_to_24xx
*)prm
.pkt
;
3262 if (qlt_has_data(cmd
) && (xmit_type
& QLA_TGT_XMIT_DATA
)) {
3263 pkt
->u
.status0
.flags
|=
3264 cpu_to_le16(CTIO7_FLAGS_DATA_IN
|
3265 CTIO7_FLAGS_STATUS_MODE_0
);
3267 if (cmd
->se_cmd
.prot_op
== TARGET_PROT_NORMAL
)
3268 qlt_load_data_segments(&prm
);
3270 if (prm
.add_status_pkt
== 0) {
3271 if (xmit_type
& QLA_TGT_XMIT_STATUS
) {
3272 pkt
->u
.status0
.scsi_status
=
3273 cpu_to_le16(prm
.rq_result
);
3274 pkt
->u
.status0
.residual
=
3275 cpu_to_le32(prm
.residual
);
3276 pkt
->u
.status0
.flags
|= cpu_to_le16(
3277 CTIO7_FLAGS_SEND_STATUS
);
3278 if (qlt_need_explicit_conf(cmd
, 0)) {
3279 pkt
->u
.status0
.flags
|=
3281 CTIO7_FLAGS_EXPLICIT_CONFORM
|
3282 CTIO7_FLAGS_CONFORM_REQ
);
3288 * We have already made sure that there is sufficient
3289 * amount of request entries to not drop HW lock in
3292 struct ctio7_to_24xx
*ctio
=
3293 (struct ctio7_to_24xx
*)qlt_get_req_pkt(
3296 ql_dbg_qp(ql_dbg_tgt
, qpair
, 0x305e,
3297 "Building additional status packet 0x%p.\n",
3301 * T10Dif: ctio_crc2_to_fw overlay ontop of
3304 memcpy(ctio
, pkt
, sizeof(*ctio
));
3305 /* reset back to CTIO7 */
3306 ctio
->entry_count
= 1;
3307 ctio
->entry_type
= CTIO_TYPE7
;
3308 ctio
->dseg_count
= 0;
3309 ctio
->u
.status1
.flags
&= ~cpu_to_le16(
3310 CTIO7_FLAGS_DATA_IN
);
3312 /* Real finish is ctio_m1's finish */
3313 pkt
->handle
|= CTIO_INTERMEDIATE_HANDLE_MARK
;
3314 pkt
->u
.status0
.flags
|= cpu_to_le16(
3315 CTIO7_FLAGS_DONT_RET_CTIO
);
3317 /* qlt_24xx_init_ctio_to_isp will correct
3318 * all neccessary fields that's part of CTIO7.
3319 * There should be no residual of CTIO-CRC2 data.
3321 qlt_24xx_init_ctio_to_isp((struct ctio7_to_24xx
*)ctio
,
3325 qlt_24xx_init_ctio_to_isp(pkt
, &prm
);
3328 cmd
->state
= QLA_TGT_STATE_PROCESSED
; /* Mid-level is done processing */
3329 cmd
->cmd_sent_to_fw
= 1;
3330 cmd
->ctio_flags
= le16_to_cpu(pkt
->u
.status0
.flags
);
3332 /* Memory Barrier */
3334 if (qpair
->reqq_start_iocbs
)
3335 qpair
->reqq_start_iocbs(qpair
);
3337 qla2x00_start_iocbs(vha
, qpair
->req
);
3338 spin_unlock_irqrestore(qpair
->qp_lock_ptr
, flags
);
3343 qlt_unmap_sg(vha
, cmd
);
3344 spin_unlock_irqrestore(qpair
->qp_lock_ptr
, flags
);
3347 vha
->hw
->tgt
.tgt_ops
->free_cmd(cmd
);
3350 EXPORT_SYMBOL(qlt_xmit_response
);
3352 int qlt_rdy_to_xfer(struct qla_tgt_cmd
*cmd
)
3354 struct ctio7_to_24xx
*pkt
;
3355 struct scsi_qla_host
*vha
= cmd
->vha
;
3356 struct qla_tgt
*tgt
= cmd
->tgt
;
3357 struct qla_tgt_prm prm
;
3358 unsigned long flags
= 0;
3360 struct qla_qpair
*qpair
= cmd
->qpair
;
3362 memset(&prm
, 0, sizeof(prm
));
3368 /* Calculate number of entries and segments required */
3369 if (qlt_pci_map_calc_cnt(&prm
) != 0)
3372 if (!qpair
->fw_started
|| (cmd
->reset_count
!= qpair
->chip_reset
) ||
3373 (cmd
->sess
&& cmd
->sess
->deleted
)) {
3375 * Either the port is not online or this request was from
3376 * previous life, just abort the processing.
3379 cmd
->write_data_transferred
= 0;
3380 cmd
->state
= QLA_TGT_STATE_DATA_IN
;
3381 vha
->hw
->tgt
.tgt_ops
->handle_data(cmd
);
3382 ql_dbg_qp(ql_dbg_async
, qpair
, 0xe102,
3383 "RESET-XFR online/active/old-count/new-count = %d/%d/%d/%d.\n",
3384 vha
->flags
.online
, qla2x00_reset_active(vha
),
3385 cmd
->reset_count
, qpair
->chip_reset
);
3389 spin_lock_irqsave(qpair
->qp_lock_ptr
, flags
);
3390 /* Does F/W have an IOCBs for this request */
3391 res
= qlt_check_reserve_free_req(qpair
, prm
.req_cnt
);
3393 goto out_unlock_free_unmap
;
3394 if (cmd
->se_cmd
.prot_op
)
3395 res
= qlt_build_ctio_crc2_pkt(qpair
, &prm
);
3397 res
= qlt_24xx_build_ctio_pkt(qpair
, &prm
);
3399 if (unlikely(res
!= 0)) {
3400 qpair
->req
->cnt
+= prm
.req_cnt
;
3401 goto out_unlock_free_unmap
;
3404 pkt
= (struct ctio7_to_24xx
*)prm
.pkt
;
3405 pkt
->u
.status0
.flags
|= cpu_to_le16(CTIO7_FLAGS_DATA_OUT
|
3406 CTIO7_FLAGS_STATUS_MODE_0
);
3408 if (cmd
->se_cmd
.prot_op
== TARGET_PROT_NORMAL
)
3409 qlt_load_data_segments(&prm
);
3411 cmd
->state
= QLA_TGT_STATE_NEED_DATA
;
3412 cmd
->cmd_sent_to_fw
= 1;
3413 cmd
->ctio_flags
= le16_to_cpu(pkt
->u
.status0
.flags
);
3415 /* Memory Barrier */
3417 if (qpair
->reqq_start_iocbs
)
3418 qpair
->reqq_start_iocbs(qpair
);
3420 qla2x00_start_iocbs(vha
, qpair
->req
);
3421 spin_unlock_irqrestore(qpair
->qp_lock_ptr
, flags
);
3425 out_unlock_free_unmap
:
3426 qlt_unmap_sg(vha
, cmd
);
3427 spin_unlock_irqrestore(qpair
->qp_lock_ptr
, flags
);
3431 EXPORT_SYMBOL(qlt_rdy_to_xfer
);
3435 * it is assumed either hardware_lock or qpair lock is held.
3438 qlt_handle_dif_error(struct qla_qpair
*qpair
, struct qla_tgt_cmd
*cmd
,
3439 struct ctio_crc_from_fw
*sts
)
3441 uint8_t *ap
= &sts
->actual_dif
[0];
3442 uint8_t *ep
= &sts
->expected_dif
[0];
3443 uint64_t lba
= cmd
->se_cmd
.t_task_lba
;
3444 uint8_t scsi_status
, sense_key
, asc
, ascq
;
3445 unsigned long flags
;
3446 struct scsi_qla_host
*vha
= cmd
->vha
;
3448 cmd
->trc_flags
|= TRC_DIF_ERR
;
3450 cmd
->a_guard
= be16_to_cpu(*(uint16_t *)(ap
+ 0));
3451 cmd
->a_app_tag
= be16_to_cpu(*(uint16_t *)(ap
+ 2));
3452 cmd
->a_ref_tag
= be32_to_cpu(*(uint32_t *)(ap
+ 4));
3454 cmd
->e_guard
= be16_to_cpu(*(uint16_t *)(ep
+ 0));
3455 cmd
->e_app_tag
= be16_to_cpu(*(uint16_t *)(ep
+ 2));
3456 cmd
->e_ref_tag
= be32_to_cpu(*(uint32_t *)(ep
+ 4));
3458 ql_dbg(ql_dbg_tgt_dif
, vha
, 0xf075,
3459 "%s: aborted %d state %d\n", __func__
, cmd
->aborted
, cmd
->state
);
3461 scsi_status
= sense_key
= asc
= ascq
= 0;
3463 /* check appl tag */
3464 if (cmd
->e_app_tag
!= cmd
->a_app_tag
) {
3465 ql_dbg(ql_dbg_tgt_dif
, vha
, 0xe00d,
3466 "App Tag ERR: cdb[%x] lba[%llx %llx] blks[%x] [Actual|Expected] Ref[%x|%x], App[%x|%x], Guard [%x|%x] cmd=%p ox_id[%04x]",
3467 cmd
->cdb
[0], lba
, (lba
+cmd
->num_blks
), cmd
->num_blks
,
3468 cmd
->a_ref_tag
, cmd
->e_ref_tag
, cmd
->a_app_tag
,
3469 cmd
->e_app_tag
, cmd
->a_guard
, cmd
->e_guard
, cmd
,
3470 cmd
->atio
.u
.isp24
.fcp_hdr
.ox_id
);
3472 cmd
->dif_err_code
= DIF_ERR_APP
;
3473 scsi_status
= SAM_STAT_CHECK_CONDITION
;
3474 sense_key
= ABORTED_COMMAND
;
3480 if (cmd
->e_ref_tag
!= cmd
->a_ref_tag
) {
3481 ql_dbg(ql_dbg_tgt_dif
, vha
, 0xe00e,
3482 "Ref Tag ERR: cdb[%x] lba[%llx %llx] blks[%x] [Actual|Expected] Ref[%x|%x], App[%x|%x], Guard[%x|%x] cmd=%p ox_id[%04x] ",
3483 cmd
->cdb
[0], lba
, (lba
+cmd
->num_blks
), cmd
->num_blks
,
3484 cmd
->a_ref_tag
, cmd
->e_ref_tag
, cmd
->a_app_tag
,
3485 cmd
->e_app_tag
, cmd
->a_guard
, cmd
->e_guard
, cmd
,
3486 cmd
->atio
.u
.isp24
.fcp_hdr
.ox_id
);
3488 cmd
->dif_err_code
= DIF_ERR_REF
;
3489 scsi_status
= SAM_STAT_CHECK_CONDITION
;
3490 sense_key
= ABORTED_COMMAND
;
3497 if (cmd
->e_guard
!= cmd
->a_guard
) {
3498 ql_dbg(ql_dbg_tgt_dif
, vha
, 0xe012,
3499 "Guard ERR: cdb[%x] lba[%llx %llx] blks[%x] [Actual|Expected] Ref[%x|%x], App[%x|%x], Guard [%x|%x] cmd=%p ox_id[%04x]",
3500 cmd
->cdb
[0], lba
, (lba
+cmd
->num_blks
), cmd
->num_blks
,
3501 cmd
->a_ref_tag
, cmd
->e_ref_tag
, cmd
->a_app_tag
,
3502 cmd
->e_app_tag
, cmd
->a_guard
, cmd
->e_guard
, cmd
,
3503 cmd
->atio
.u
.isp24
.fcp_hdr
.ox_id
);
3505 cmd
->dif_err_code
= DIF_ERR_GRD
;
3506 scsi_status
= SAM_STAT_CHECK_CONDITION
;
3507 sense_key
= ABORTED_COMMAND
;
3512 switch (cmd
->state
) {
3513 case QLA_TGT_STATE_NEED_DATA
:
3514 /* handle_data will load DIF error code */
3515 cmd
->state
= QLA_TGT_STATE_DATA_IN
;
3516 vha
->hw
->tgt
.tgt_ops
->handle_data(cmd
);
3519 spin_lock_irqsave(&cmd
->cmd_lock
, flags
);
3521 spin_unlock_irqrestore(&cmd
->cmd_lock
, flags
);
3522 vha
->hw
->tgt
.tgt_ops
->free_cmd(cmd
);
3525 spin_unlock_irqrestore(&cmd
->cmd_lock
, flags
);
3527 qlt_send_resp_ctio(qpair
, cmd
, scsi_status
, sense_key
, asc
,
3529 /* assume scsi status gets out on the wire.
3530 * Will not wait for completion.
3532 vha
->hw
->tgt
.tgt_ops
->free_cmd(cmd
);
3537 /* If hardware_lock held on entry, might drop it, then reaquire */
3538 /* This function sends the appropriate CTIO to ISP 2xxx or 24xx */
3539 static int __qlt_send_term_imm_notif(struct scsi_qla_host
*vha
,
3540 struct imm_ntfy_from_isp
*ntfy
)
3542 struct nack_to_isp
*nack
;
3543 struct qla_hw_data
*ha
= vha
->hw
;
3547 ql_dbg(ql_dbg_tgt_tmr
, vha
, 0xe01c,
3548 "Sending TERM ELS CTIO (ha=%p)\n", ha
);
3550 pkt
= (request_t
*)qla2x00_alloc_iocbs(vha
, NULL
);
3552 ql_dbg(ql_dbg_tgt
, vha
, 0xe080,
3553 "qla_target(%d): %s failed: unable to allocate "
3554 "request packet\n", vha
->vp_idx
, __func__
);
3558 pkt
->entry_type
= NOTIFY_ACK_TYPE
;
3559 pkt
->entry_count
= 1;
3560 pkt
->handle
= QLA_TGT_SKIP_HANDLE
;
3562 nack
= (struct nack_to_isp
*)pkt
;
3563 nack
->ox_id
= ntfy
->ox_id
;
3565 nack
->u
.isp24
.nport_handle
= ntfy
->u
.isp24
.nport_handle
;
3566 if (le16_to_cpu(ntfy
->u
.isp24
.status
) == IMM_NTFY_ELS
) {
3567 nack
->u
.isp24
.flags
= ntfy
->u
.isp24
.flags
&
3568 __constant_cpu_to_le32(NOTIFY24XX_FLAGS_PUREX_IOCB
);
3572 nack
->u
.isp24
.flags
|=
3573 __constant_cpu_to_le16(NOTIFY_ACK_FLAGS_TERMINATE
);
3575 nack
->u
.isp24
.srr_rx_id
= ntfy
->u
.isp24
.srr_rx_id
;
3576 nack
->u
.isp24
.status
= ntfy
->u
.isp24
.status
;
3577 nack
->u
.isp24
.status_subcode
= ntfy
->u
.isp24
.status_subcode
;
3578 nack
->u
.isp24
.fw_handle
= ntfy
->u
.isp24
.fw_handle
;
3579 nack
->u
.isp24
.exchange_address
= ntfy
->u
.isp24
.exchange_address
;
3580 nack
->u
.isp24
.srr_rel_offs
= ntfy
->u
.isp24
.srr_rel_offs
;
3581 nack
->u
.isp24
.srr_ui
= ntfy
->u
.isp24
.srr_ui
;
3582 nack
->u
.isp24
.vp_index
= ntfy
->u
.isp24
.vp_index
;
3584 qla2x00_start_iocbs(vha
, vha
->req
);
3588 static void qlt_send_term_imm_notif(struct scsi_qla_host
*vha
,
3589 struct imm_ntfy_from_isp
*imm
, int ha_locked
)
3593 WARN_ON_ONCE(!ha_locked
);
3594 rc
= __qlt_send_term_imm_notif(vha
, imm
);
3595 pr_debug("rc = %d\n", rc
);
3599 * If hardware_lock held on entry, might drop it, then reaquire
3600 * This function sends the appropriate CTIO to ISP 2xxx or 24xx
3602 static int __qlt_send_term_exchange(struct qla_qpair
*qpair
,
3603 struct qla_tgt_cmd
*cmd
,
3604 struct atio_from_isp
*atio
)
3606 struct scsi_qla_host
*vha
= qpair
->vha
;
3607 struct ctio7_to_24xx
*ctio24
;
3608 struct qla_hw_data
*ha
= vha
->hw
;
3613 ql_dbg(ql_dbg_tgt
, vha
, 0xe009, "Sending TERM EXCH CTIO (ha=%p)\n", ha
);
3618 pkt
= (request_t
*)qla2x00_alloc_iocbs_ready(qpair
, NULL
);
3620 ql_dbg(ql_dbg_tgt
, vha
, 0xe050,
3621 "qla_target(%d): %s failed: unable to allocate "
3622 "request packet\n", vha
->vp_idx
, __func__
);
3627 if (cmd
->state
< QLA_TGT_STATE_PROCESSED
) {
3628 ql_dbg(ql_dbg_tgt
, vha
, 0xe051,
3629 "qla_target(%d): Terminating cmd %p with "
3630 "incorrect state %d\n", vha
->vp_idx
, cmd
,
3636 qpair
->tgt_counters
.num_term_xchg_sent
++;
3637 pkt
->entry_count
= 1;
3638 pkt
->handle
= QLA_TGT_SKIP_HANDLE
| CTIO_COMPLETION_HANDLE_MARK
;
3640 ctio24
= (struct ctio7_to_24xx
*)pkt
;
3641 ctio24
->entry_type
= CTIO_TYPE7
;
3642 ctio24
->nport_handle
= CTIO7_NHANDLE_UNRECOGNIZED
;
3643 ctio24
->timeout
= cpu_to_le16(QLA_TGT_TIMEOUT
);
3644 ctio24
->vp_index
= vha
->vp_idx
;
3645 ctio24
->initiator_id
= be_id_to_le(atio
->u
.isp24
.fcp_hdr
.s_id
);
3646 ctio24
->exchange_addr
= atio
->u
.isp24
.exchange_addr
;
3647 temp
= (atio
->u
.isp24
.attr
<< 9) | CTIO7_FLAGS_STATUS_MODE_1
|
3648 CTIO7_FLAGS_TERMINATE
;
3649 ctio24
->u
.status1
.flags
= cpu_to_le16(temp
);
3650 temp
= be16_to_cpu(atio
->u
.isp24
.fcp_hdr
.ox_id
);
3651 ctio24
->u
.status1
.ox_id
= cpu_to_le16(temp
);
3653 /* Memory Barrier */
3655 if (qpair
->reqq_start_iocbs
)
3656 qpair
->reqq_start_iocbs(qpair
);
3658 qla2x00_start_iocbs(vha
, qpair
->req
);
3662 static void qlt_send_term_exchange(struct qla_qpair
*qpair
,
3663 struct qla_tgt_cmd
*cmd
, struct atio_from_isp
*atio
, int ha_locked
,
3666 struct scsi_qla_host
*vha
;
3667 unsigned long flags
= 0;
3670 /* why use different vha? NPIV */
3677 rc
= __qlt_send_term_exchange(qpair
, cmd
, atio
);
3679 qlt_alloc_qfull_cmd(vha
, atio
, 0, 0);
3682 spin_lock_irqsave(qpair
->qp_lock_ptr
, flags
);
3683 rc
= __qlt_send_term_exchange(qpair
, cmd
, atio
);
3685 qlt_alloc_qfull_cmd(vha
, atio
, 0, 0);
3688 if (cmd
&& !ul_abort
&& !cmd
->aborted
) {
3690 qlt_unmap_sg(vha
, cmd
);
3691 vha
->hw
->tgt
.tgt_ops
->free_cmd(cmd
);
3695 spin_unlock_irqrestore(qpair
->qp_lock_ptr
, flags
);
3700 static void qlt_init_term_exchange(struct scsi_qla_host
*vha
)
3702 struct list_head free_list
;
3703 struct qla_tgt_cmd
*cmd
, *tcmd
;
3705 vha
->hw
->tgt
.leak_exchg_thresh_hold
=
3706 (vha
->hw
->cur_fw_xcb_count
/100) * LEAK_EXCHG_THRESH_HOLD_PERCENT
;
3709 if (!list_empty(&vha
->hw
->tgt
.q_full_list
)) {
3710 INIT_LIST_HEAD(&free_list
);
3711 list_splice_init(&vha
->hw
->tgt
.q_full_list
, &free_list
);
3713 list_for_each_entry_safe(cmd
, tcmd
, &free_list
, cmd_list
) {
3714 list_del(&cmd
->cmd_list
);
3715 /* This cmd was never sent to TCM. There is no need
3716 * to schedule free or call free_cmd
3719 vha
->hw
->tgt
.num_qfull_cmds_alloc
--;
3722 vha
->hw
->tgt
.num_qfull_cmds_dropped
= 0;
3725 static void qlt_chk_exch_leak_thresh_hold(struct scsi_qla_host
*vha
)
3727 uint32_t total_leaked
;
3729 total_leaked
= vha
->hw
->tgt
.num_qfull_cmds_dropped
;
3731 if (vha
->hw
->tgt
.leak_exchg_thresh_hold
&&
3732 (total_leaked
> vha
->hw
->tgt
.leak_exchg_thresh_hold
)) {
3734 ql_dbg(ql_dbg_tgt
, vha
, 0xe079,
3735 "Chip reset due to exchange starvation: %d/%d.\n",
3736 total_leaked
, vha
->hw
->cur_fw_xcb_count
);
3738 if (IS_P3P_TYPE(vha
->hw
))
3739 set_bit(FCOE_CTX_RESET_NEEDED
, &vha
->dpc_flags
);
3741 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
3742 qla2xxx_wake_dpc(vha
);
3747 int qlt_abort_cmd(struct qla_tgt_cmd
*cmd
)
3749 struct qla_tgt
*tgt
= cmd
->tgt
;
3750 struct scsi_qla_host
*vha
= tgt
->vha
;
3751 struct se_cmd
*se_cmd
= &cmd
->se_cmd
;
3752 unsigned long flags
;
3754 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf014,
3755 "qla_target(%d): terminating exchange for aborted cmd=%p "
3756 "(se_cmd=%p, tag=%llu)", vha
->vp_idx
, cmd
, &cmd
->se_cmd
,
3759 spin_lock_irqsave(&cmd
->cmd_lock
, flags
);
3761 spin_unlock_irqrestore(&cmd
->cmd_lock
, flags
);
3763 * It's normal to see 2 calls in this path:
3764 * 1) XFER Rdy completion + CMD_T_ABORT
3765 * 2) TCM TMR - drain_state_list
3767 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf016,
3768 "multiple abort. %p transport_state %x, t_state %x, "
3769 "se_cmd_flags %x\n", cmd
, cmd
->se_cmd
.transport_state
,
3770 cmd
->se_cmd
.t_state
, cmd
->se_cmd
.se_cmd_flags
);
3774 cmd
->trc_flags
|= TRC_ABORT
;
3775 spin_unlock_irqrestore(&cmd
->cmd_lock
, flags
);
3777 qlt_send_term_exchange(cmd
->qpair
, cmd
, &cmd
->atio
, 0, 1);
3780 EXPORT_SYMBOL(qlt_abort_cmd
);
3782 void qlt_free_cmd(struct qla_tgt_cmd
*cmd
)
3784 struct fc_port
*sess
= cmd
->sess
;
3786 ql_dbg(ql_dbg_tgt
, cmd
->vha
, 0xe074,
3787 "%s: se_cmd[%p] ox_id %04x\n",
3788 __func__
, &cmd
->se_cmd
,
3789 be16_to_cpu(cmd
->atio
.u
.isp24
.fcp_hdr
.ox_id
));
3791 BUG_ON(cmd
->cmd_in_wq
);
3794 qlt_unmap_sg(cmd
->vha
, cmd
);
3797 qlt_decr_num_pend_cmds(cmd
->vha
);
3799 BUG_ON(cmd
->sg_mapped
);
3800 cmd
->jiffies_at_free
= get_jiffies_64();
3801 if (unlikely(cmd
->free_sg
))
3804 if (!sess
|| !sess
->se_sess
) {
3808 cmd
->jiffies_at_free
= get_jiffies_64();
3809 target_free_tag(sess
->se_sess
, &cmd
->se_cmd
);
3811 EXPORT_SYMBOL(qlt_free_cmd
);
3814 * ha->hardware_lock supposed to be held on entry. Might drop it, then reaquire
3816 static int qlt_term_ctio_exchange(struct qla_qpair
*qpair
, void *ctio
,
3817 struct qla_tgt_cmd
*cmd
, uint32_t status
)
3820 struct scsi_qla_host
*vha
= qpair
->vha
;
3822 if (cmd
->se_cmd
.prot_op
)
3823 ql_dbg(ql_dbg_tgt_dif
, vha
, 0xe013,
3824 "Term DIF cmd: lba[0x%llx|%lld] len[0x%x] "
3825 "se_cmd=%p tag[%x] op %#x/%s",
3827 cmd
->num_blks
, &cmd
->se_cmd
,
3828 cmd
->atio
.u
.isp24
.exchange_addr
,
3829 cmd
->se_cmd
.prot_op
,
3830 prot_op_str(cmd
->se_cmd
.prot_op
));
3833 struct ctio7_from_24xx
*c
= (struct ctio7_from_24xx
*)ctio
;
3836 cpu_to_le16(OF_TERM_EXCH
));
3841 qlt_send_term_exchange(qpair
, cmd
, &cmd
->atio
, 1, 0);
3847 /* ha->hardware_lock supposed to be held on entry */
3848 static void *qlt_ctio_to_cmd(struct scsi_qla_host
*vha
,
3849 struct rsp_que
*rsp
, uint32_t handle
, void *ctio
)
3852 struct req_que
*req
;
3853 int qid
= GET_QID(handle
);
3854 uint32_t h
= handle
& ~QLA_TGT_HANDLE_MASK
;
3856 if (unlikely(h
== QLA_TGT_SKIP_HANDLE
))
3859 if (qid
== rsp
->req
->id
) {
3861 } else if (vha
->hw
->req_q_map
[qid
]) {
3862 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0x1000a,
3863 "qla_target(%d): CTIO completion with different QID %d handle %x\n",
3864 vha
->vp_idx
, rsp
->id
, handle
);
3865 req
= vha
->hw
->req_q_map
[qid
];
3870 h
&= QLA_CMD_HANDLE_MASK
;
3872 if (h
!= QLA_TGT_NULL_HANDLE
) {
3873 if (unlikely(h
>= req
->num_outstanding_cmds
)) {
3874 ql_dbg(ql_dbg_tgt
, vha
, 0xe052,
3875 "qla_target(%d): Wrong handle %x received\n",
3876 vha
->vp_idx
, handle
);
3880 cmd
= (void *) req
->outstanding_cmds
[h
];
3881 if (unlikely(cmd
== NULL
)) {
3882 ql_dbg(ql_dbg_async
, vha
, 0xe053,
3883 "qla_target(%d): Suspicious: unable to find the command with handle %x req->id %d rsp->id %d\n",
3884 vha
->vp_idx
, handle
, req
->id
, rsp
->id
);
3887 req
->outstanding_cmds
[h
] = NULL
;
3888 } else if (ctio
!= NULL
) {
3889 /* We can't get loop ID from CTIO7 */
3890 ql_dbg(ql_dbg_tgt
, vha
, 0xe054,
3891 "qla_target(%d): Wrong CTIO received: QLA24xx doesn't "
3892 "support NULL handles\n", vha
->vp_idx
);
3900 * ha->hardware_lock supposed to be held on entry. Might drop it, then reaquire
3902 static void qlt_do_ctio_completion(struct scsi_qla_host
*vha
,
3903 struct rsp_que
*rsp
, uint32_t handle
, uint32_t status
, void *ctio
)
3905 struct qla_hw_data
*ha
= vha
->hw
;
3906 struct se_cmd
*se_cmd
;
3907 struct qla_tgt_cmd
*cmd
;
3908 struct qla_qpair
*qpair
= rsp
->qpair
;
3910 if (handle
& CTIO_INTERMEDIATE_HANDLE_MARK
) {
3911 /* That could happen only in case of an error/reset/abort */
3912 if (status
!= CTIO_SUCCESS
) {
3913 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf01d,
3914 "Intermediate CTIO received"
3915 " (status %x)\n", status
);
3920 cmd
= qlt_ctio_to_cmd(vha
, rsp
, handle
, ctio
);
3924 se_cmd
= &cmd
->se_cmd
;
3925 cmd
->cmd_sent_to_fw
= 0;
3927 qlt_unmap_sg(vha
, cmd
);
3929 if (unlikely(status
!= CTIO_SUCCESS
)) {
3930 switch (status
& 0xFFFF) {
3931 case CTIO_INVALID_RX_ID
:
3932 if (printk_ratelimit())
3933 dev_info(&vha
->hw
->pdev
->dev
,
3934 "qla_target(%d): CTIO with INVALID_RX_ID ATIO attr %x CTIO Flags %x|%x\n",
3935 vha
->vp_idx
, cmd
->atio
.u
.isp24
.attr
,
3936 ((cmd
->ctio_flags
>> 9) & 0xf),
3940 case CTIO_LIP_RESET
:
3941 case CTIO_TARGET_RESET
:
3943 /* driver request abort via Terminate exchange */
3946 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf058,
3947 "qla_target(%d): CTIO with "
3948 "status %#x received, state %x, se_cmd %p, "
3949 "(LIP_RESET=e, ABORTED=2, TARGET_RESET=17, "
3950 "TIMEOUT=b, INVALID_RX_ID=8)\n", vha
->vp_idx
,
3951 status
, cmd
->state
, se_cmd
);
3954 case CTIO_PORT_LOGGED_OUT
:
3955 case CTIO_PORT_UNAVAILABLE
:
3958 (status
& 0xFFFF) == CTIO_PORT_LOGGED_OUT
;
3960 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf059,
3961 "qla_target(%d): CTIO with %s status %x "
3962 "received (state %x, se_cmd %p)\n", vha
->vp_idx
,
3963 logged_out
? "PORT LOGGED OUT" : "PORT UNAVAILABLE",
3964 status
, cmd
->state
, se_cmd
);
3966 if (logged_out
&& cmd
->sess
) {
3968 * Session is already logged out, but we need
3969 * to notify initiator, who's not aware of this
3971 cmd
->sess
->send_els_logo
= 1;
3972 ql_dbg(ql_dbg_disc
, vha
, 0x20f8,
3973 "%s %d %8phC post del sess\n",
3974 __func__
, __LINE__
, cmd
->sess
->port_name
);
3976 qlt_schedule_sess_for_deletion(cmd
->sess
);
3980 case CTIO_DIF_ERROR
: {
3981 struct ctio_crc_from_fw
*crc
=
3982 (struct ctio_crc_from_fw
*)ctio
;
3983 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf073,
3984 "qla_target(%d): CTIO with DIF_ERROR status %x "
3985 "received (state %x, ulp_cmd %p) actual_dif[0x%llx] "
3986 "expect_dif[0x%llx]\n",
3987 vha
->vp_idx
, status
, cmd
->state
, se_cmd
,
3988 *((u64
*)&crc
->actual_dif
[0]),
3989 *((u64
*)&crc
->expected_dif
[0]));
3991 qlt_handle_dif_error(qpair
, cmd
, ctio
);
3995 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf05b,
3996 "qla_target(%d): CTIO with error status 0x%x received (state %x, se_cmd %p\n",
3997 vha
->vp_idx
, status
, cmd
->state
, se_cmd
);
4002 /* "cmd->aborted" means
4003 * cmd is already aborted/terminated, we don't
4004 * need to terminate again. The exchange is already
4005 * cleaned up/freed at FW level. Just cleanup at driver
4008 if ((cmd
->state
!= QLA_TGT_STATE_NEED_DATA
) &&
4010 cmd
->trc_flags
|= TRC_CTIO_ERR
;
4011 if (qlt_term_ctio_exchange(qpair
, ctio
, cmd
, status
))
4016 if (cmd
->state
== QLA_TGT_STATE_PROCESSED
) {
4017 cmd
->trc_flags
|= TRC_CTIO_DONE
;
4018 } else if (cmd
->state
== QLA_TGT_STATE_NEED_DATA
) {
4019 cmd
->state
= QLA_TGT_STATE_DATA_IN
;
4021 if (status
== CTIO_SUCCESS
)
4022 cmd
->write_data_transferred
= 1;
4024 ha
->tgt
.tgt_ops
->handle_data(cmd
);
4026 } else if (cmd
->aborted
) {
4027 cmd
->trc_flags
|= TRC_CTIO_ABORTED
;
4028 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf01e,
4029 "Aborted command %p (tag %lld) finished\n", cmd
, se_cmd
->tag
);
4031 cmd
->trc_flags
|= TRC_CTIO_STRANGE
;
4032 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf05c,
4033 "qla_target(%d): A command in state (%d) should "
4034 "not return a CTIO complete\n", vha
->vp_idx
, cmd
->state
);
4037 if (unlikely(status
!= CTIO_SUCCESS
) &&
4039 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf01f, "Finishing failed CTIO\n");
4043 ha
->tgt
.tgt_ops
->free_cmd(cmd
);
4046 static inline int qlt_get_fcp_task_attr(struct scsi_qla_host
*vha
,
4051 switch (task_codes
) {
4052 case ATIO_SIMPLE_QUEUE
:
4053 fcp_task_attr
= TCM_SIMPLE_TAG
;
4055 case ATIO_HEAD_OF_QUEUE
:
4056 fcp_task_attr
= TCM_HEAD_TAG
;
4058 case ATIO_ORDERED_QUEUE
:
4059 fcp_task_attr
= TCM_ORDERED_TAG
;
4061 case ATIO_ACA_QUEUE
:
4062 fcp_task_attr
= TCM_ACA_TAG
;
4065 fcp_task_attr
= TCM_SIMPLE_TAG
;
4068 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf05d,
4069 "qla_target: unknown task code %x, use ORDERED instead\n",
4071 fcp_task_attr
= TCM_ORDERED_TAG
;
4075 return fcp_task_attr
;
4079 * Process context for I/O path into tcm_qla2xxx code
4081 static void __qlt_do_work(struct qla_tgt_cmd
*cmd
)
4083 scsi_qla_host_t
*vha
= cmd
->vha
;
4084 struct qla_hw_data
*ha
= vha
->hw
;
4085 struct fc_port
*sess
= cmd
->sess
;
4086 struct atio_from_isp
*atio
= &cmd
->atio
;
4088 unsigned long flags
;
4089 uint32_t data_length
;
4090 int ret
, fcp_task_attr
, data_dir
, bidi
= 0;
4091 struct qla_qpair
*qpair
= cmd
->qpair
;
4094 cmd
->trc_flags
|= TRC_DO_WORK
;
4097 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf082,
4098 "cmd with tag %u is aborted\n",
4099 cmd
->atio
.u
.isp24
.exchange_addr
);
4103 spin_lock_init(&cmd
->cmd_lock
);
4104 cdb
= &atio
->u
.isp24
.fcp_cmnd
.cdb
[0];
4105 cmd
->se_cmd
.tag
= atio
->u
.isp24
.exchange_addr
;
4107 if (atio
->u
.isp24
.fcp_cmnd
.rddata
&&
4108 atio
->u
.isp24
.fcp_cmnd
.wrdata
) {
4110 data_dir
= DMA_TO_DEVICE
;
4111 } else if (atio
->u
.isp24
.fcp_cmnd
.rddata
)
4112 data_dir
= DMA_FROM_DEVICE
;
4113 else if (atio
->u
.isp24
.fcp_cmnd
.wrdata
)
4114 data_dir
= DMA_TO_DEVICE
;
4116 data_dir
= DMA_NONE
;
4118 fcp_task_attr
= qlt_get_fcp_task_attr(vha
,
4119 atio
->u
.isp24
.fcp_cmnd
.task_attr
);
4120 data_length
= get_datalen_for_atio(atio
);
4122 ret
= ha
->tgt
.tgt_ops
->handle_cmd(vha
, cmd
, cdb
, data_length
,
4123 fcp_task_attr
, data_dir
, bidi
);
4127 * Drop extra session reference from qlt_handle_cmd_for_atio().
4129 ha
->tgt
.tgt_ops
->put_sess(sess
);
4133 ql_dbg(ql_dbg_io
, vha
, 0x3060, "Terminating work cmd %p", cmd
);
4135 * cmd has not sent to target yet, so pass NULL as the second
4136 * argument to qlt_send_term_exchange() and free the memory here.
4138 cmd
->trc_flags
|= TRC_DO_WORK_ERR
;
4139 spin_lock_irqsave(qpair
->qp_lock_ptr
, flags
);
4140 qlt_send_term_exchange(qpair
, NULL
, &cmd
->atio
, 1, 0);
4142 qlt_decr_num_pend_cmds(vha
);
4143 target_free_tag(sess
->se_sess
, &cmd
->se_cmd
);
4144 spin_unlock_irqrestore(qpair
->qp_lock_ptr
, flags
);
4146 ha
->tgt
.tgt_ops
->put_sess(sess
);
4149 static void qlt_do_work(struct work_struct
*work
)
4151 struct qla_tgt_cmd
*cmd
= container_of(work
, struct qla_tgt_cmd
, work
);
4152 scsi_qla_host_t
*vha
= cmd
->vha
;
4153 unsigned long flags
;
4155 spin_lock_irqsave(&vha
->cmd_list_lock
, flags
);
4156 list_del(&cmd
->cmd_list
);
4157 spin_unlock_irqrestore(&vha
->cmd_list_lock
, flags
);
4162 void qlt_clr_qp_table(struct scsi_qla_host
*vha
)
4164 unsigned long flags
;
4165 struct qla_hw_data
*ha
= vha
->hw
;
4166 struct qla_tgt
*tgt
= vha
->vha_tgt
.qla_tgt
;
4170 ql_log(ql_log_info
, vha
, 0x706c,
4171 "User update Number of Active Qpairs %d\n",
4172 ha
->tgt
.num_act_qpairs
);
4174 spin_lock_irqsave(&ha
->tgt
.atio_lock
, flags
);
4176 btree_for_each_safe64(&tgt
->lun_qpair_map
, key
, node
)
4177 btree_remove64(&tgt
->lun_qpair_map
, key
);
4179 ha
->base_qpair
->lun_cnt
= 0;
4180 for (key
= 0; key
< ha
->max_qpairs
; key
++)
4181 if (ha
->queue_pair_map
[key
])
4182 ha
->queue_pair_map
[key
]->lun_cnt
= 0;
4184 spin_unlock_irqrestore(&ha
->tgt
.atio_lock
, flags
);
4187 static void qlt_assign_qpair(struct scsi_qla_host
*vha
,
4188 struct qla_tgt_cmd
*cmd
)
4190 struct qla_qpair
*qpair
, *qp
;
4191 struct qla_tgt
*tgt
= vha
->vha_tgt
.qla_tgt
;
4192 struct qla_qpair_hint
*h
;
4194 if (vha
->flags
.qpairs_available
) {
4195 h
= btree_lookup64(&tgt
->lun_qpair_map
, cmd
->unpacked_lun
);
4197 /* spread lun to qpair ratio evently */
4199 struct scsi_qla_host
*base_vha
=
4200 pci_get_drvdata(vha
->hw
->pdev
);
4202 qpair
= vha
->hw
->base_qpair
;
4203 if (qpair
->lun_cnt
== 0) {
4205 h
= qla_qpair_to_hint(tgt
, qpair
);
4207 rc
= btree_insert64(&tgt
->lun_qpair_map
,
4208 cmd
->unpacked_lun
, h
, GFP_ATOMIC
);
4211 ql_log(ql_log_info
, vha
, 0xd037,
4212 "Unable to insert lun %llx into lun_qpair_map\n",
4217 lcnt
= qpair
->lun_cnt
;
4221 list_for_each_entry(qp
, &base_vha
->qp_list
,
4223 if (qp
->lun_cnt
== 0) {
4225 h
= qla_qpair_to_hint(tgt
, qp
);
4227 rc
= btree_insert64(&tgt
->lun_qpair_map
,
4228 cmd
->unpacked_lun
, h
, GFP_ATOMIC
);
4231 ql_log(ql_log_info
, vha
, 0xd038,
4232 "Unable to insert lun %llx into lun_qpair_map\n",
4238 if (qp
->lun_cnt
< lcnt
) {
4247 h
= qla_qpair_to_hint(tgt
, qpair
);
4249 rc
= btree_insert64(&tgt
->lun_qpair_map
,
4250 cmd
->unpacked_lun
, h
, GFP_ATOMIC
);
4253 ql_log(ql_log_info
, vha
, 0xd039,
4254 "Unable to insert lun %llx into lun_qpair_map\n",
4259 h
= &tgt
->qphints
[0];
4262 cmd
->qpair
= h
->qpair
;
4263 cmd
->se_cmd
.cpuid
= h
->cpuid
;
4266 static struct qla_tgt_cmd
*qlt_get_tag(scsi_qla_host_t
*vha
,
4267 struct fc_port
*sess
,
4268 struct atio_from_isp
*atio
)
4270 struct se_session
*se_sess
= sess
->se_sess
;
4271 struct qla_tgt_cmd
*cmd
;
4274 tag
= sbitmap_queue_get(&se_sess
->sess_tag_pool
, &cpu
);
4278 cmd
= &((struct qla_tgt_cmd
*)se_sess
->sess_cmd_map
)[tag
];
4279 memset(cmd
, 0, sizeof(struct qla_tgt_cmd
));
4280 cmd
->cmd_type
= TYPE_TGT_CMD
;
4281 memcpy(&cmd
->atio
, atio
, sizeof(*atio
));
4282 cmd
->state
= QLA_TGT_STATE_NEW
;
4283 cmd
->tgt
= vha
->vha_tgt
.qla_tgt
;
4284 qlt_incr_num_pend_cmds(vha
);
4286 cmd
->se_cmd
.map_tag
= tag
;
4287 cmd
->se_cmd
.map_cpu
= cpu
;
4289 cmd
->loop_id
= sess
->loop_id
;
4290 cmd
->conf_compl_supported
= sess
->conf_compl_supported
;
4293 cmd
->jiffies_at_alloc
= get_jiffies_64();
4295 cmd
->unpacked_lun
= scsilun_to_int(
4296 (struct scsi_lun
*)&atio
->u
.isp24
.fcp_cmnd
.lun
);
4297 qlt_assign_qpair(vha
, cmd
);
4298 cmd
->reset_count
= vha
->hw
->base_qpair
->chip_reset
;
4299 cmd
->vp_idx
= vha
->vp_idx
;
4304 /* ha->hardware_lock supposed to be held on entry */
4305 static int qlt_handle_cmd_for_atio(struct scsi_qla_host
*vha
,
4306 struct atio_from_isp
*atio
)
4308 struct qla_hw_data
*ha
= vha
->hw
;
4309 struct qla_tgt
*tgt
= vha
->vha_tgt
.qla_tgt
;
4310 struct fc_port
*sess
;
4311 struct qla_tgt_cmd
*cmd
;
4312 unsigned long flags
;
4315 if (unlikely(tgt
->tgt_stop
)) {
4316 ql_dbg(ql_dbg_io
, vha
, 0x3061,
4317 "New command while device %p is shutting down\n", tgt
);
4321 id
= be_to_port_id(atio
->u
.isp24
.fcp_hdr
.s_id
);
4322 if (IS_SW_RESV_ADDR(id
))
4325 sess
= ha
->tgt
.tgt_ops
->find_sess_by_s_id(vha
, atio
->u
.isp24
.fcp_hdr
.s_id
);
4326 if (unlikely(!sess
))
4329 /* Another WWN used to have our s_id. Our PLOGI scheduled its
4330 * session deletion, but it's still in sess_del_work wq */
4331 if (sess
->deleted
) {
4332 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf002,
4333 "New command while old session %p is being deleted\n",
4339 * Do kref_get() before returning + dropping qla_hw_data->hardware_lock.
4341 if (!kref_get_unless_zero(&sess
->sess_kref
)) {
4342 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf004,
4343 "%s: kref_get fail, %8phC oxid %x \n",
4344 __func__
, sess
->port_name
,
4345 be16_to_cpu(atio
->u
.isp24
.fcp_hdr
.ox_id
));
4349 cmd
= qlt_get_tag(vha
, sess
, atio
);
4351 ql_dbg(ql_dbg_io
, vha
, 0x3062,
4352 "qla_target(%d): Allocation of cmd failed\n", vha
->vp_idx
);
4353 ha
->tgt
.tgt_ops
->put_sess(sess
);
4358 cmd
->trc_flags
|= TRC_NEW_CMD
;
4360 spin_lock_irqsave(&vha
->cmd_list_lock
, flags
);
4361 list_add_tail(&cmd
->cmd_list
, &vha
->qla_cmd_list
);
4362 spin_unlock_irqrestore(&vha
->cmd_list_lock
, flags
);
4364 INIT_WORK(&cmd
->work
, qlt_do_work
);
4365 if (vha
->flags
.qpairs_available
) {
4366 queue_work_on(cmd
->se_cmd
.cpuid
, qla_tgt_wq
, &cmd
->work
);
4367 } else if (ha
->msix_count
) {
4368 if (cmd
->atio
.u
.isp24
.fcp_cmnd
.rddata
)
4369 queue_work_on(smp_processor_id(), qla_tgt_wq
,
4372 queue_work_on(cmd
->se_cmd
.cpuid
, qla_tgt_wq
,
4375 queue_work(qla_tgt_wq
, &cmd
->work
);
4381 /* ha->hardware_lock supposed to be held on entry */
4382 static int qlt_issue_task_mgmt(struct fc_port
*sess
, u64 lun
,
4383 int fn
, void *iocb
, int flags
)
4385 struct scsi_qla_host
*vha
= sess
->vha
;
4386 struct qla_hw_data
*ha
= vha
->hw
;
4387 struct qla_tgt_mgmt_cmd
*mcmd
;
4388 struct atio_from_isp
*a
= (struct atio_from_isp
*)iocb
;
4389 struct qla_qpair_hint
*h
= &vha
->vha_tgt
.qla_tgt
->qphints
[0];
4391 mcmd
= mempool_alloc(qla_tgt_mgmt_cmd_mempool
, GFP_ATOMIC
);
4393 ql_dbg(ql_dbg_tgt_tmr
, vha
, 0x10009,
4394 "qla_target(%d): Allocation of management "
4395 "command failed, some commands and their data could "
4396 "leak\n", vha
->vp_idx
);
4399 memset(mcmd
, 0, sizeof(*mcmd
));
4403 memcpy(&mcmd
->orig_iocb
.imm_ntfy
, iocb
,
4404 sizeof(mcmd
->orig_iocb
.imm_ntfy
));
4406 mcmd
->tmr_func
= fn
;
4407 mcmd
->flags
= flags
;
4408 mcmd
->reset_count
= ha
->base_qpair
->chip_reset
;
4409 mcmd
->qpair
= h
->qpair
;
4411 mcmd
->se_cmd
.cpuid
= h
->cpuid
;
4412 mcmd
->unpacked_lun
= lun
;
4415 case QLA_TGT_LUN_RESET
:
4416 case QLA_TGT_CLEAR_TS
:
4417 case QLA_TGT_ABORT_TS
:
4418 abort_cmds_for_lun(vha
, lun
, a
->u
.isp24
.fcp_hdr
.s_id
);
4420 case QLA_TGT_CLEAR_ACA
:
4421 h
= qlt_find_qphint(vha
, mcmd
->unpacked_lun
);
4422 mcmd
->qpair
= h
->qpair
;
4423 mcmd
->se_cmd
.cpuid
= h
->cpuid
;
4426 case QLA_TGT_TARGET_RESET
:
4427 case QLA_TGT_NEXUS_LOSS_SESS
:
4428 case QLA_TGT_NEXUS_LOSS
:
4429 case QLA_TGT_ABORT_ALL
:
4435 INIT_WORK(&mcmd
->work
, qlt_do_tmr_work
);
4436 queue_work_on(mcmd
->se_cmd
.cpuid
, qla_tgt_wq
,
4442 /* ha->hardware_lock supposed to be held on entry */
4443 static int qlt_handle_task_mgmt(struct scsi_qla_host
*vha
, void *iocb
)
4445 struct atio_from_isp
*a
= (struct atio_from_isp
*)iocb
;
4446 struct qla_hw_data
*ha
= vha
->hw
;
4447 struct fc_port
*sess
;
4450 unsigned long flags
;
4452 fn
= a
->u
.isp24
.fcp_cmnd
.task_mgmt_flags
;
4454 spin_lock_irqsave(&ha
->tgt
.sess_lock
, flags
);
4455 sess
= ha
->tgt
.tgt_ops
->find_sess_by_s_id(vha
,
4456 a
->u
.isp24
.fcp_hdr
.s_id
);
4457 spin_unlock_irqrestore(&ha
->tgt
.sess_lock
, flags
);
4460 scsilun_to_int((struct scsi_lun
*)&a
->u
.isp24
.fcp_cmnd
.lun
);
4462 if (sess
== NULL
|| sess
->deleted
)
4465 return qlt_issue_task_mgmt(sess
, unpacked_lun
, fn
, iocb
, 0);
4468 /* ha->hardware_lock supposed to be held on entry */
4469 static int __qlt_abort_task(struct scsi_qla_host
*vha
,
4470 struct imm_ntfy_from_isp
*iocb
, struct fc_port
*sess
)
4472 struct atio_from_isp
*a
= (struct atio_from_isp
*)iocb
;
4473 struct qla_hw_data
*ha
= vha
->hw
;
4474 struct qla_tgt_mgmt_cmd
*mcmd
;
4478 mcmd
= mempool_alloc(qla_tgt_mgmt_cmd_mempool
, GFP_ATOMIC
);
4480 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf05f,
4481 "qla_target(%d): %s: Allocation of ABORT cmd failed\n",
4482 vha
->vp_idx
, __func__
);
4485 memset(mcmd
, 0, sizeof(*mcmd
));
4488 memcpy(&mcmd
->orig_iocb
.imm_ntfy
, iocb
,
4489 sizeof(mcmd
->orig_iocb
.imm_ntfy
));
4492 scsilun_to_int((struct scsi_lun
*)&a
->u
.isp24
.fcp_cmnd
.lun
);
4493 mcmd
->reset_count
= ha
->base_qpair
->chip_reset
;
4494 mcmd
->tmr_func
= QLA_TGT_2G_ABORT_TASK
;
4495 mcmd
->qpair
= ha
->base_qpair
;
4497 rc
= ha
->tgt
.tgt_ops
->handle_tmr(mcmd
, unpacked_lun
, mcmd
->tmr_func
,
4498 le16_to_cpu(iocb
->u
.isp2x
.seq_id
));
4500 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf060,
4501 "qla_target(%d): tgt_ops->handle_tmr() failed: %d\n",
4503 mempool_free(mcmd
, qla_tgt_mgmt_cmd_mempool
);
4510 /* ha->hardware_lock supposed to be held on entry */
4511 static int qlt_abort_task(struct scsi_qla_host
*vha
,
4512 struct imm_ntfy_from_isp
*iocb
)
4514 struct qla_hw_data
*ha
= vha
->hw
;
4515 struct fc_port
*sess
;
4517 unsigned long flags
;
4519 loop_id
= GET_TARGET_ID(ha
, (struct atio_from_isp
*)iocb
);
4521 spin_lock_irqsave(&ha
->tgt
.sess_lock
, flags
);
4522 sess
= ha
->tgt
.tgt_ops
->find_sess_by_loop_id(vha
, loop_id
);
4523 spin_unlock_irqrestore(&ha
->tgt
.sess_lock
, flags
);
4526 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf025,
4527 "qla_target(%d): task abort for unexisting "
4528 "session\n", vha
->vp_idx
);
4529 return qlt_sched_sess_work(vha
->vha_tgt
.qla_tgt
,
4530 QLA_TGT_SESS_WORK_ABORT
, iocb
, sizeof(*iocb
));
4533 return __qlt_abort_task(vha
, iocb
, sess
);
4536 void qlt_logo_completion_handler(fc_port_t
*fcport
, int rc
)
4538 if (rc
!= MBS_COMMAND_COMPLETE
) {
4539 ql_dbg(ql_dbg_tgt_mgt
, fcport
->vha
, 0xf093,
4540 "%s: se_sess %p / sess %p from"
4541 " port %8phC loop_id %#04x s_id %02x:%02x:%02x"
4542 " LOGO failed: %#x\n",
4546 fcport
->port_name
, fcport
->loop_id
,
4547 fcport
->d_id
.b
.domain
, fcport
->d_id
.b
.area
,
4548 fcport
->d_id
.b
.al_pa
, rc
);
4551 fcport
->logout_completed
= 1;
4555 * ha->hardware_lock supposed to be held on entry (to protect tgt->sess_list)
4557 * Schedules sessions with matching port_id/loop_id but different wwn for
4558 * deletion. Returns existing session with matching wwn if present.
4562 qlt_find_sess_invalidate_other(scsi_qla_host_t
*vha
, uint64_t wwn
,
4563 port_id_t port_id
, uint16_t loop_id
, struct fc_port
**conflict_sess
)
4565 struct fc_port
*sess
= NULL
, *other_sess
;
4568 *conflict_sess
= NULL
;
4570 list_for_each_entry(other_sess
, &vha
->vp_fcports
, list
) {
4572 other_wwn
= wwn_to_u64(other_sess
->port_name
);
4574 if (wwn
== other_wwn
) {
4580 /* find other sess with nport_id collision */
4581 if (port_id
.b24
== other_sess
->d_id
.b24
) {
4582 if (loop_id
!= other_sess
->loop_id
) {
4583 ql_dbg(ql_dbg_tgt_tmr
, vha
, 0x1000c,
4584 "Invalidating sess %p loop_id %d wwn %llx.\n",
4585 other_sess
, other_sess
->loop_id
, other_wwn
);
4588 * logout_on_delete is set by default, but another
4589 * session that has the same s_id/loop_id combo
4590 * might have cleared it when requested this session
4591 * deletion, so don't touch it
4593 qlt_schedule_sess_for_deletion(other_sess
);
4596 * Another wwn used to have our s_id/loop_id
4597 * kill the session, but don't free the loop_id
4599 ql_dbg(ql_dbg_tgt_tmr
, vha
, 0xf01b,
4600 "Invalidating sess %p loop_id %d wwn %llx.\n",
4601 other_sess
, other_sess
->loop_id
, other_wwn
);
4603 other_sess
->keep_nport_handle
= 1;
4604 if (other_sess
->disc_state
!= DSC_DELETED
)
4605 *conflict_sess
= other_sess
;
4606 qlt_schedule_sess_for_deletion(other_sess
);
4611 /* find other sess with nport handle collision */
4612 if ((loop_id
== other_sess
->loop_id
) &&
4613 (loop_id
!= FC_NO_LOOP_ID
)) {
4614 ql_dbg(ql_dbg_tgt_tmr
, vha
, 0x1000d,
4615 "Invalidating sess %p loop_id %d wwn %llx.\n",
4616 other_sess
, other_sess
->loop_id
, other_wwn
);
4618 /* Same loop_id but different s_id
4619 * Ok to kill and logout */
4620 qlt_schedule_sess_for_deletion(other_sess
);
4627 /* Abort any commands for this s_id waiting on qla_tgt_wq workqueue */
4628 static int abort_cmds_for_s_id(struct scsi_qla_host
*vha
, port_id_t
*s_id
)
4630 struct qla_tgt_sess_op
*op
;
4631 struct qla_tgt_cmd
*cmd
;
4634 unsigned long flags
;
4636 key
= (((u32
)s_id
->b
.domain
<< 16) |
4637 ((u32
)s_id
->b
.area
<< 8) |
4638 ((u32
)s_id
->b
.al_pa
));
4640 spin_lock_irqsave(&vha
->cmd_list_lock
, flags
);
4641 list_for_each_entry(op
, &vha
->qla_sess_op_cmd_list
, cmd_list
) {
4642 uint32_t op_key
= sid_to_key(op
->atio
.u
.isp24
.fcp_hdr
.s_id
);
4644 if (op_key
== key
) {
4650 list_for_each_entry(op
, &vha
->unknown_atio_list
, cmd_list
) {
4651 uint32_t op_key
= sid_to_key(op
->atio
.u
.isp24
.fcp_hdr
.s_id
);
4653 if (op_key
== key
) {
4659 list_for_each_entry(cmd
, &vha
->qla_cmd_list
, cmd_list
) {
4660 uint32_t cmd_key
= sid_to_key(cmd
->atio
.u
.isp24
.fcp_hdr
.s_id
);
4662 if (cmd_key
== key
) {
4667 spin_unlock_irqrestore(&vha
->cmd_list_lock
, flags
);
4672 static int qlt_handle_login(struct scsi_qla_host
*vha
,
4673 struct imm_ntfy_from_isp
*iocb
)
4675 struct fc_port
*sess
= NULL
, *conflict_sess
= NULL
;
4678 uint16_t loop_id
, wd3_lo
;
4680 struct qlt_plogi_ack_t
*pla
;
4681 unsigned long flags
;
4683 lockdep_assert_held(&vha
->hw
->hardware_lock
);
4685 wwn
= wwn_to_u64(iocb
->u
.isp24
.port_name
);
4687 port_id
.b
.domain
= iocb
->u
.isp24
.port_id
[2];
4688 port_id
.b
.area
= iocb
->u
.isp24
.port_id
[1];
4689 port_id
.b
.al_pa
= iocb
->u
.isp24
.port_id
[0];
4690 port_id
.b
.rsvd_1
= 0;
4692 loop_id
= le16_to_cpu(iocb
->u
.isp24
.nport_handle
);
4694 /* Mark all stale commands sitting in qla_tgt_wq for deletion */
4695 abort_cmds_for_s_id(vha
, &port_id
);
4698 spin_lock_irqsave(&vha
->hw
->tgt
.sess_lock
, flags
);
4699 sess
= qlt_find_sess_invalidate_other(vha
, wwn
,
4700 port_id
, loop_id
, &conflict_sess
);
4701 spin_unlock_irqrestore(&vha
->hw
->tgt
.sess_lock
, flags
);
4703 ql_dbg(ql_dbg_disc
, vha
, 0xffff,
4704 "%s %d Term INOT due to WWN=0 lid=%d, NportID %06X ",
4705 __func__
, __LINE__
, loop_id
, port_id
.b24
);
4706 qlt_send_term_imm_notif(vha
, iocb
, 1);
4710 if (IS_SW_RESV_ADDR(port_id
)) {
4715 pla
= qlt_plogi_ack_find_add(vha
, &port_id
, iocb
);
4717 ql_dbg(ql_dbg_disc
+ ql_dbg_verbose
, vha
, 0xffff,
4718 "%s %d %8phC Term INOT due to mem alloc fail",
4720 iocb
->u
.isp24
.port_name
);
4721 qlt_send_term_imm_notif(vha
, iocb
, 1);
4725 if (conflict_sess
) {
4726 conflict_sess
->login_gen
++;
4727 qlt_plogi_ack_link(vha
, pla
, conflict_sess
,
4728 QLT_PLOGI_LINK_CONFLICT
);
4733 ql_dbg(ql_dbg_disc
, vha
, 0xffff,
4734 "%s %d %8phC post new sess\n",
4735 __func__
, __LINE__
, iocb
->u
.isp24
.port_name
);
4736 if (iocb
->u
.isp24
.status_subcode
== ELS_PLOGI
)
4737 qla24xx_post_newsess_work(vha
, &port_id
,
4738 iocb
->u
.isp24
.port_name
,
4739 iocb
->u
.isp24
.u
.plogi
.node_name
,
4740 pla
, FC4_TYPE_UNKNOWN
);
4742 qla24xx_post_newsess_work(vha
, &port_id
,
4743 iocb
->u
.isp24
.port_name
, NULL
,
4744 pla
, FC4_TYPE_UNKNOWN
);
4749 if (sess
->disc_state
== DSC_UPD_FCPORT
) {
4753 * Remote port registration is still going on from
4754 * previous login. Allow it to finish before we
4755 * accept the new login.
4757 sess
->next_disc_state
= DSC_DELETE_PEND
;
4758 sec
= jiffies_to_msecs(jiffies
-
4759 sess
->jiffies_at_registration
) / 1000;
4760 if (sess
->sec_since_registration
< sec
&& sec
&&
4762 sess
->sec_since_registration
= sec
;
4763 ql_dbg(ql_dbg_disc
, vha
, 0xffff,
4764 "%s %8phC - Slow Rport registration (%d Sec)\n",
4765 __func__
, sess
->port_name
, sec
);
4768 if (!conflict_sess
) {
4769 list_del(&pla
->list
);
4770 kmem_cache_free(qla_tgt_plogi_cachep
, pla
);
4773 qlt_send_term_imm_notif(vha
, iocb
, 1);
4777 qlt_plogi_ack_link(vha
, pla
, sess
, QLT_PLOGI_LINK_SAME_WWN
);
4778 sess
->d_id
= port_id
;
4781 if (iocb
->u
.isp24
.status_subcode
== ELS_PRLI
) {
4782 sess
->fw_login_state
= DSC_LS_PRLI_PEND
;
4784 sess
->loop_id
= loop_id
;
4785 sess
->d_id
= port_id
;
4786 sess
->fw_login_state
= DSC_LS_PRLI_PEND
;
4787 wd3_lo
= le16_to_cpu(iocb
->u
.isp24
.u
.prli
.wd3_lo
);
4790 sess
->conf_compl_supported
= 1;
4792 if ((wd3_lo
& BIT_4
) == 0)
4793 sess
->port_type
= FCT_INITIATOR
;
4795 sess
->port_type
= FCT_TARGET
;
4798 sess
->fw_login_state
= DSC_LS_PLOGI_PEND
;
4801 ql_dbg(ql_dbg_disc
, vha
, 0x20f9,
4802 "%s %d %8phC DS %d\n",
4803 __func__
, __LINE__
, sess
->port_name
, sess
->disc_state
);
4805 switch (sess
->disc_state
) {
4807 case DSC_LOGIN_PEND
:
4808 qlt_plogi_ack_unref(vha
, pla
);
4813 * Under normal circumstances we want to release nport handle
4814 * during LOGO process to avoid nport handle leaks inside FW.
4815 * The exception is when LOGO is done while another PLOGI with
4816 * the same nport handle is waiting as might be the case here.
4817 * Note: there is always a possibily of a race where session
4818 * deletion has already started for other reasons (e.g. ACL
4819 * removal) and now PLOGI arrives:
4820 * 1. if PLOGI arrived in FW after nport handle has been freed,
4821 * FW must have assigned this PLOGI a new/same handle and we
4822 * can proceed ACK'ing it as usual when session deletion
4824 * 2. if PLOGI arrived in FW before LOGO with LCF_FREE_NPORT
4825 * bit reached it, the handle has now been released. We'll
4826 * get an error when we ACK this PLOGI. Nothing will be sent
4827 * back to initiator. Initiator should eventually retry
4828 * PLOGI and situation will correct itself.
4830 sess
->keep_nport_handle
= ((sess
->loop_id
== loop_id
) &&
4831 (sess
->d_id
.b24
== port_id
.b24
));
4833 ql_dbg(ql_dbg_disc
, vha
, 0x20f9,
4834 "%s %d %8phC post del sess\n",
4835 __func__
, __LINE__
, sess
->port_name
);
4838 qlt_schedule_sess_for_deletion(sess
);
4846 * ha->hardware_lock supposed to be held on entry. Might drop it, then reaquire
4848 static int qlt_24xx_handle_els(struct scsi_qla_host
*vha
,
4849 struct imm_ntfy_from_isp
*iocb
)
4851 struct qla_tgt
*tgt
= vha
->vha_tgt
.qla_tgt
;
4852 struct qla_hw_data
*ha
= vha
->hw
;
4853 struct fc_port
*sess
= NULL
, *conflict_sess
= NULL
;
4859 unsigned long flags
;
4861 lockdep_assert_held(&ha
->hardware_lock
);
4863 wwn
= wwn_to_u64(iocb
->u
.isp24
.port_name
);
4865 port_id
.b
.domain
= iocb
->u
.isp24
.port_id
[2];
4866 port_id
.b
.area
= iocb
->u
.isp24
.port_id
[1];
4867 port_id
.b
.al_pa
= iocb
->u
.isp24
.port_id
[0];
4868 port_id
.b
.rsvd_1
= 0;
4870 loop_id
= le16_to_cpu(iocb
->u
.isp24
.nport_handle
);
4872 ql_dbg(ql_dbg_disc
, vha
, 0xf026,
4873 "qla_target(%d): Port ID: %02x:%02x:%02x ELS opcode: 0x%02x lid %d %8phC\n",
4874 vha
->vp_idx
, iocb
->u
.isp24
.port_id
[2],
4875 iocb
->u
.isp24
.port_id
[1], iocb
->u
.isp24
.port_id
[0],
4876 iocb
->u
.isp24
.status_subcode
, loop_id
,
4877 iocb
->u
.isp24
.port_name
);
4879 /* res = 1 means ack at the end of thread
4880 * res = 0 means ack async/later.
4882 switch (iocb
->u
.isp24
.status_subcode
) {
4884 res
= qlt_handle_login(vha
, iocb
);
4889 sess
= qla2x00_find_fcport_by_wwpn(vha
,
4890 iocb
->u
.isp24
.port_name
, 1);
4892 if (sess
&& sess
->plogi_link
[QLT_PLOGI_LINK_SAME_WWN
]) {
4893 ql_dbg(ql_dbg_disc
, vha
, 0xffff,
4894 "%s %d %8phC Term PRLI due to PLOGI ACK not completed\n",
4896 iocb
->u
.isp24
.port_name
);
4897 qlt_send_term_imm_notif(vha
, iocb
, 1);
4901 res
= qlt_handle_login(vha
, iocb
);
4905 if (IS_SW_RESV_ADDR(port_id
)) {
4910 wd3_lo
= le16_to_cpu(iocb
->u
.isp24
.u
.prli
.wd3_lo
);
4913 spin_lock_irqsave(&tgt
->ha
->tgt
.sess_lock
, flags
);
4914 sess
= qlt_find_sess_invalidate_other(vha
, wwn
, port_id
,
4915 loop_id
, &conflict_sess
);
4916 spin_unlock_irqrestore(&tgt
->ha
->tgt
.sess_lock
, flags
);
4919 if (conflict_sess
) {
4920 switch (conflict_sess
->disc_state
) {
4922 case DSC_DELETE_PEND
:
4925 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf09b,
4926 "PRLI with conflicting sess %p port %8phC\n",
4927 conflict_sess
, conflict_sess
->port_name
);
4928 conflict_sess
->fw_login_state
=
4929 DSC_LS_PORT_UNAVAIL
;
4930 qlt_send_term_imm_notif(vha
, iocb
, 1);
4937 bool delete = false;
4940 spin_lock_irqsave(&tgt
->ha
->tgt
.sess_lock
, flags
);
4941 switch (sess
->fw_login_state
) {
4942 case DSC_LS_PLOGI_PEND
:
4943 case DSC_LS_PLOGI_COMP
:
4944 case DSC_LS_PRLI_COMP
:
4951 switch (sess
->disc_state
) {
4952 case DSC_UPD_FCPORT
:
4953 spin_unlock_irqrestore(&tgt
->ha
->tgt
.sess_lock
,
4956 sec
= jiffies_to_msecs(jiffies
-
4957 sess
->jiffies_at_registration
)/1000;
4958 if (sess
->sec_since_registration
< sec
&& sec
&&
4960 sess
->sec_since_registration
= sec
;
4961 ql_dbg(ql_dbg_disc
, sess
->vha
, 0xffff,
4962 "%s %8phC : Slow Rport registration(%d Sec)\n",
4963 __func__
, sess
->port_name
, sec
);
4965 qlt_send_term_imm_notif(vha
, iocb
, 1);
4968 case DSC_LOGIN_PEND
:
4970 case DSC_LOGIN_COMPLETE
:
4979 spin_unlock_irqrestore(&tgt
->ha
->tgt
.sess_lock
,
4982 * Impatient initiator sent PRLI before last
4983 * PLOGI could finish. Will force him to re-try,
4984 * while last one finishes.
4986 ql_log(ql_log_warn
, sess
->vha
, 0xf095,
4987 "sess %p PRLI received, before plogi ack.\n",
4989 qlt_send_term_imm_notif(vha
, iocb
, 1);
4995 * This shouldn't happen under normal circumstances,
4996 * since we have deleted the old session during PLOGI
4998 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf096,
4999 "PRLI (loop_id %#04x) for existing sess %p (loop_id %#04x)\n",
5000 sess
->loop_id
, sess
, iocb
->u
.isp24
.nport_handle
);
5003 sess
->loop_id
= loop_id
;
5004 sess
->d_id
= port_id
;
5005 sess
->fw_login_state
= DSC_LS_PRLI_PEND
;
5008 sess
->conf_compl_supported
= 1;
5010 if ((wd3_lo
& BIT_4
) == 0)
5011 sess
->port_type
= FCT_INITIATOR
;
5013 sess
->port_type
= FCT_TARGET
;
5015 spin_unlock_irqrestore(&tgt
->ha
->tgt
.sess_lock
, flags
);
5017 res
= 1; /* send notify ack */
5019 /* Make session global (not used in fabric mode) */
5020 if (ha
->current_topology
!= ISP_CFG_F
) {
5022 ql_dbg(ql_dbg_disc
, vha
, 0x20fa,
5023 "%s %d %8phC post nack\n",
5024 __func__
, __LINE__
, sess
->port_name
);
5025 qla24xx_post_nack_work(vha
, sess
, iocb
,
5029 set_bit(LOOP_RESYNC_NEEDED
, &vha
->dpc_flags
);
5030 set_bit(LOCAL_LOOP_UPDATE
, &vha
->dpc_flags
);
5031 qla2xxx_wake_dpc(vha
);
5035 ql_dbg(ql_dbg_disc
, vha
, 0x20fb,
5036 "%s %d %8phC post nack\n",
5037 __func__
, __LINE__
, sess
->port_name
);
5038 qla24xx_post_nack_work(vha
, sess
, iocb
,
5046 if (le16_to_cpu(iocb
->u
.isp24
.flags
) &
5047 NOTIFY24XX_FLAGS_GLOBAL_TPRLO
) {
5049 qlt_reset(vha
, iocb
, QLA_TGT_NEXUS_LOSS
);
5056 spin_lock_irqsave(&ha
->tgt
.sess_lock
, flags
);
5057 sess
= qla2x00_find_fcport_by_loopid(vha
, loop_id
);
5058 spin_unlock_irqrestore(&ha
->tgt
.sess_lock
, flags
);
5062 sess
->fw_login_state
= DSC_LS_LOGO_PEND
;
5063 sess
->logo_ack_needed
= 1;
5064 memcpy(sess
->iocb
, iocb
, IOCB_SIZE
);
5067 res
= qlt_reset(vha
, iocb
, QLA_TGT_NEXUS_LOSS_SESS
);
5069 ql_dbg(ql_dbg_disc
, vha
, 0x20fc,
5070 "%s: logo %llx res %d sess %p ",
5071 __func__
, wwn
, res
, sess
);
5074 * cmd went upper layer, look for qlt_xmit_tm_rsp()
5075 * for LOGO_ACK & sess delete
5080 /* cmd did not go to upper layer. */
5082 qlt_schedule_sess_for_deletion(sess
);
5085 /* else logo will be ack */
5091 struct qla_tgt
*tgt
= vha
->vha_tgt
.qla_tgt
;
5093 if (tgt
->link_reinit_iocb_pending
) {
5094 qlt_send_notify_ack(ha
->base_qpair
,
5095 &tgt
->link_reinit_iocb
, 0, 0, 0, 0, 0, 0);
5096 tgt
->link_reinit_iocb_pending
= 0;
5099 sess
= qla2x00_find_fcport_by_wwpn(vha
,
5100 iocb
->u
.isp24
.port_name
, 1);
5102 ql_dbg(ql_dbg_disc
, vha
, 0x20fd,
5103 "sess %p lid %d|%d DS %d LS %d\n",
5104 sess
, sess
->loop_id
, loop_id
,
5105 sess
->disc_state
, sess
->fw_login_state
);
5108 res
= 1; /* send notify ack */
5112 case ELS_FLOGI
: /* should never happen */
5114 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf061,
5115 "qla_target(%d): Unsupported ELS command %x "
5116 "received\n", vha
->vp_idx
, iocb
->u
.isp24
.status_subcode
);
5117 res
= qlt_reset(vha
, iocb
, QLA_TGT_NEXUS_LOSS_SESS
);
5121 ql_dbg(ql_dbg_disc
, vha
, 0xf026,
5122 "qla_target(%d): Exit ELS opcode: 0x%02x res %d\n",
5123 vha
->vp_idx
, iocb
->u
.isp24
.status_subcode
, res
);
5129 * ha->hardware_lock supposed to be held on entry. Might drop it, then reaquire
5131 static void qlt_handle_imm_notify(struct scsi_qla_host
*vha
,
5132 struct imm_ntfy_from_isp
*iocb
)
5134 struct qla_hw_data
*ha
= vha
->hw
;
5135 uint32_t add_flags
= 0;
5136 int send_notify_ack
= 1;
5139 lockdep_assert_held(&ha
->hardware_lock
);
5141 status
= le16_to_cpu(iocb
->u
.isp2x
.status
);
5143 case IMM_NTFY_LIP_RESET
:
5145 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf032,
5146 "qla_target(%d): LIP reset (loop %#x), subcode %x\n",
5147 vha
->vp_idx
, le16_to_cpu(iocb
->u
.isp24
.nport_handle
),
5148 iocb
->u
.isp24
.status_subcode
);
5150 if (qlt_reset(vha
, iocb
, QLA_TGT_ABORT_ALL
) == 0)
5151 send_notify_ack
= 0;
5155 case IMM_NTFY_LIP_LINK_REINIT
:
5157 struct qla_tgt
*tgt
= vha
->vha_tgt
.qla_tgt
;
5159 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf033,
5160 "qla_target(%d): LINK REINIT (loop %#x, "
5161 "subcode %x)\n", vha
->vp_idx
,
5162 le16_to_cpu(iocb
->u
.isp24
.nport_handle
),
5163 iocb
->u
.isp24
.status_subcode
);
5164 if (tgt
->link_reinit_iocb_pending
) {
5165 qlt_send_notify_ack(ha
->base_qpair
,
5166 &tgt
->link_reinit_iocb
, 0, 0, 0, 0, 0, 0);
5168 memcpy(&tgt
->link_reinit_iocb
, iocb
, sizeof(*iocb
));
5169 tgt
->link_reinit_iocb_pending
= 1;
5171 * QLogic requires to wait after LINK REINIT for possible
5172 * PDISC or ADISC ELS commands
5174 send_notify_ack
= 0;
5178 case IMM_NTFY_PORT_LOGOUT
:
5179 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf034,
5180 "qla_target(%d): Port logout (loop "
5181 "%#x, subcode %x)\n", vha
->vp_idx
,
5182 le16_to_cpu(iocb
->u
.isp24
.nport_handle
),
5183 iocb
->u
.isp24
.status_subcode
);
5185 if (qlt_reset(vha
, iocb
, QLA_TGT_NEXUS_LOSS_SESS
) == 0)
5186 send_notify_ack
= 0;
5187 /* The sessions will be cleared in the callback, if needed */
5190 case IMM_NTFY_GLBL_TPRLO
:
5191 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf035,
5192 "qla_target(%d): Global TPRLO (%x)\n", vha
->vp_idx
, status
);
5193 if (qlt_reset(vha
, iocb
, QLA_TGT_NEXUS_LOSS
) == 0)
5194 send_notify_ack
= 0;
5195 /* The sessions will be cleared in the callback, if needed */
5198 case IMM_NTFY_PORT_CONFIG
:
5199 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf036,
5200 "qla_target(%d): Port config changed (%x)\n", vha
->vp_idx
,
5202 if (qlt_reset(vha
, iocb
, QLA_TGT_ABORT_ALL
) == 0)
5203 send_notify_ack
= 0;
5204 /* The sessions will be cleared in the callback, if needed */
5207 case IMM_NTFY_GLBL_LOGO
:
5208 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf06a,
5209 "qla_target(%d): Link failure detected\n",
5211 /* I_T nexus loss */
5212 if (qlt_reset(vha
, iocb
, QLA_TGT_NEXUS_LOSS
) == 0)
5213 send_notify_ack
= 0;
5216 case IMM_NTFY_IOCB_OVERFLOW
:
5217 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf06b,
5218 "qla_target(%d): Cannot provide requested "
5219 "capability (IOCB overflowed the immediate notify "
5220 "resource count)\n", vha
->vp_idx
);
5223 case IMM_NTFY_ABORT_TASK
:
5224 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf037,
5225 "qla_target(%d): Abort Task (S %08x I %#x -> "
5226 "L %#x)\n", vha
->vp_idx
,
5227 le16_to_cpu(iocb
->u
.isp2x
.seq_id
),
5228 GET_TARGET_ID(ha
, (struct atio_from_isp
*)iocb
),
5229 le16_to_cpu(iocb
->u
.isp2x
.lun
));
5230 if (qlt_abort_task(vha
, iocb
) == 0)
5231 send_notify_ack
= 0;
5234 case IMM_NTFY_RESOURCE
:
5235 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf06c,
5236 "qla_target(%d): Out of resources, host %ld\n",
5237 vha
->vp_idx
, vha
->host_no
);
5240 case IMM_NTFY_MSG_RX
:
5241 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf038,
5242 "qla_target(%d): Immediate notify task %x\n",
5243 vha
->vp_idx
, iocb
->u
.isp2x
.task_flags
);
5247 if (qlt_24xx_handle_els(vha
, iocb
) == 0)
5248 send_notify_ack
= 0;
5251 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf06d,
5252 "qla_target(%d): Received unknown immediate "
5253 "notify status %x\n", vha
->vp_idx
, status
);
5257 if (send_notify_ack
)
5258 qlt_send_notify_ack(ha
->base_qpair
, iocb
, add_flags
, 0, 0, 0,
5263 * ha->hardware_lock supposed to be held on entry. Might drop it, then reaquire
5264 * This function sends busy to ISP 2xxx or 24xx.
5266 static int __qlt_send_busy(struct qla_qpair
*qpair
,
5267 struct atio_from_isp
*atio
, uint16_t status
)
5269 struct scsi_qla_host
*vha
= qpair
->vha
;
5270 struct ctio7_to_24xx
*ctio24
;
5271 struct qla_hw_data
*ha
= vha
->hw
;
5273 struct fc_port
*sess
= NULL
;
5274 unsigned long flags
;
5278 id
= be_to_port_id(atio
->u
.isp24
.fcp_hdr
.s_id
);
5280 spin_lock_irqsave(&ha
->tgt
.sess_lock
, flags
);
5281 sess
= qla2x00_find_fcport_by_nportid(vha
, &id
, 1);
5282 spin_unlock_irqrestore(&ha
->tgt
.sess_lock
, flags
);
5284 qlt_send_term_exchange(qpair
, NULL
, atio
, 1, 0);
5287 /* Sending marker isn't necessary, since we called from ISR */
5289 pkt
= (request_t
*)__qla2x00_alloc_iocbs(qpair
, NULL
);
5291 ql_dbg(ql_dbg_io
, vha
, 0x3063,
5292 "qla_target(%d): %s failed: unable to allocate "
5293 "request packet", vha
->vp_idx
, __func__
);
5297 qpair
->tgt_counters
.num_q_full_sent
++;
5298 pkt
->entry_count
= 1;
5299 pkt
->handle
= QLA_TGT_SKIP_HANDLE
| CTIO_COMPLETION_HANDLE_MARK
;
5301 ctio24
= (struct ctio7_to_24xx
*)pkt
;
5302 ctio24
->entry_type
= CTIO_TYPE7
;
5303 ctio24
->nport_handle
= sess
->loop_id
;
5304 ctio24
->timeout
= cpu_to_le16(QLA_TGT_TIMEOUT
);
5305 ctio24
->vp_index
= vha
->vp_idx
;
5306 ctio24
->initiator_id
= be_id_to_le(atio
->u
.isp24
.fcp_hdr
.s_id
);
5307 ctio24
->exchange_addr
= atio
->u
.isp24
.exchange_addr
;
5308 temp
= (atio
->u
.isp24
.attr
<< 9) |
5309 CTIO7_FLAGS_STATUS_MODE_1
| CTIO7_FLAGS_SEND_STATUS
|
5310 CTIO7_FLAGS_DONT_RET_CTIO
;
5311 ctio24
->u
.status1
.flags
= cpu_to_le16(temp
);
5313 * CTIO from fw w/o se_cmd doesn't provide enough info to retry it,
5314 * if the explicit conformation is used.
5316 ctio24
->u
.status1
.ox_id
= swab16(atio
->u
.isp24
.fcp_hdr
.ox_id
);
5317 ctio24
->u
.status1
.scsi_status
= cpu_to_le16(status
);
5319 ctio24
->u
.status1
.residual
= get_datalen_for_atio(atio
);
5321 if (ctio24
->u
.status1
.residual
!= 0)
5322 ctio24
->u
.status1
.scsi_status
|= SS_RESIDUAL_UNDER
;
5324 /* Memory Barrier */
5326 if (qpair
->reqq_start_iocbs
)
5327 qpair
->reqq_start_iocbs(qpair
);
5329 qla2x00_start_iocbs(vha
, qpair
->req
);
5334 * This routine is used to allocate a command for either a QFull condition
5335 * (ie reply SAM_STAT_BUSY) or to terminate an exchange that did not go
5339 qlt_alloc_qfull_cmd(struct scsi_qla_host
*vha
,
5340 struct atio_from_isp
*atio
, uint16_t status
, int qfull
)
5342 struct qla_tgt
*tgt
= vha
->vha_tgt
.qla_tgt
;
5343 struct qla_hw_data
*ha
= vha
->hw
;
5344 struct fc_port
*sess
;
5345 struct se_session
*se_sess
;
5346 struct qla_tgt_cmd
*cmd
;
5348 unsigned long flags
;
5350 if (unlikely(tgt
->tgt_stop
)) {
5351 ql_dbg(ql_dbg_io
, vha
, 0x300a,
5352 "New command while device %p is shutting down\n", tgt
);
5356 if ((vha
->hw
->tgt
.num_qfull_cmds_alloc
+ 1) > MAX_QFULL_CMDS_ALLOC
) {
5357 vha
->hw
->tgt
.num_qfull_cmds_dropped
++;
5358 if (vha
->hw
->tgt
.num_qfull_cmds_dropped
>
5359 vha
->qla_stats
.stat_max_qfull_cmds_dropped
)
5360 vha
->qla_stats
.stat_max_qfull_cmds_dropped
=
5361 vha
->hw
->tgt
.num_qfull_cmds_dropped
;
5363 ql_dbg(ql_dbg_io
, vha
, 0x3068,
5364 "qla_target(%d): %s: QFull CMD dropped[%d]\n",
5365 vha
->vp_idx
, __func__
,
5366 vha
->hw
->tgt
.num_qfull_cmds_dropped
);
5368 qlt_chk_exch_leak_thresh_hold(vha
);
5372 sess
= ha
->tgt
.tgt_ops
->find_sess_by_s_id
5373 (vha
, atio
->u
.isp24
.fcp_hdr
.s_id
);
5377 se_sess
= sess
->se_sess
;
5379 tag
= sbitmap_queue_get(&se_sess
->sess_tag_pool
, &cpu
);
5381 ql_dbg(ql_dbg_io
, vha
, 0x3009,
5382 "qla_target(%d): %s: Allocation of cmd failed\n",
5383 vha
->vp_idx
, __func__
);
5385 vha
->hw
->tgt
.num_qfull_cmds_dropped
++;
5386 if (vha
->hw
->tgt
.num_qfull_cmds_dropped
>
5387 vha
->qla_stats
.stat_max_qfull_cmds_dropped
)
5388 vha
->qla_stats
.stat_max_qfull_cmds_dropped
=
5389 vha
->hw
->tgt
.num_qfull_cmds_dropped
;
5391 qlt_chk_exch_leak_thresh_hold(vha
);
5395 cmd
= &((struct qla_tgt_cmd
*)se_sess
->sess_cmd_map
)[tag
];
5396 memset(cmd
, 0, sizeof(struct qla_tgt_cmd
));
5398 qlt_incr_num_pend_cmds(vha
);
5399 INIT_LIST_HEAD(&cmd
->cmd_list
);
5400 memcpy(&cmd
->atio
, atio
, sizeof(*atio
));
5402 cmd
->tgt
= vha
->vha_tgt
.qla_tgt
;
5404 cmd
->reset_count
= ha
->base_qpair
->chip_reset
;
5406 cmd
->qpair
= ha
->base_qpair
;
5407 cmd
->se_cmd
.map_cpu
= cpu
;
5411 /* NOTE: borrowing the state field to carry the status */
5412 cmd
->state
= status
;
5414 cmd
->term_exchg
= 1;
5416 spin_lock_irqsave(&vha
->hw
->tgt
.q_full_lock
, flags
);
5417 list_add_tail(&cmd
->cmd_list
, &vha
->hw
->tgt
.q_full_list
);
5419 vha
->hw
->tgt
.num_qfull_cmds_alloc
++;
5420 if (vha
->hw
->tgt
.num_qfull_cmds_alloc
>
5421 vha
->qla_stats
.stat_max_qfull_cmds_alloc
)
5422 vha
->qla_stats
.stat_max_qfull_cmds_alloc
=
5423 vha
->hw
->tgt
.num_qfull_cmds_alloc
;
5424 spin_unlock_irqrestore(&vha
->hw
->tgt
.q_full_lock
, flags
);
5428 qlt_free_qfull_cmds(struct qla_qpair
*qpair
)
5430 struct scsi_qla_host
*vha
= qpair
->vha
;
5431 struct qla_hw_data
*ha
= vha
->hw
;
5432 unsigned long flags
;
5433 struct qla_tgt_cmd
*cmd
, *tcmd
;
5434 struct list_head free_list
, q_full_list
;
5437 if (list_empty(&ha
->tgt
.q_full_list
))
5440 INIT_LIST_HEAD(&free_list
);
5441 INIT_LIST_HEAD(&q_full_list
);
5443 spin_lock_irqsave(&vha
->hw
->tgt
.q_full_lock
, flags
);
5444 if (list_empty(&ha
->tgt
.q_full_list
)) {
5445 spin_unlock_irqrestore(&vha
->hw
->tgt
.q_full_lock
, flags
);
5449 list_splice_init(&vha
->hw
->tgt
.q_full_list
, &q_full_list
);
5450 spin_unlock_irqrestore(&vha
->hw
->tgt
.q_full_lock
, flags
);
5452 spin_lock_irqsave(qpair
->qp_lock_ptr
, flags
);
5453 list_for_each_entry_safe(cmd
, tcmd
, &q_full_list
, cmd_list
) {
5455 /* cmd->state is a borrowed field to hold status */
5456 rc
= __qlt_send_busy(qpair
, &cmd
->atio
, cmd
->state
);
5457 else if (cmd
->term_exchg
)
5458 rc
= __qlt_send_term_exchange(qpair
, NULL
, &cmd
->atio
);
5464 ql_dbg(ql_dbg_io
, vha
, 0x3006,
5465 "%s: busy sent for ox_id[%04x]\n", __func__
,
5466 be16_to_cpu(cmd
->atio
.u
.isp24
.fcp_hdr
.ox_id
));
5467 else if (cmd
->term_exchg
)
5468 ql_dbg(ql_dbg_io
, vha
, 0x3007,
5469 "%s: Term exchg sent for ox_id[%04x]\n", __func__
,
5470 be16_to_cpu(cmd
->atio
.u
.isp24
.fcp_hdr
.ox_id
));
5472 ql_dbg(ql_dbg_io
, vha
, 0x3008,
5473 "%s: Unexpected cmd in QFull list %p\n", __func__
,
5476 list_del(&cmd
->cmd_list
);
5477 list_add_tail(&cmd
->cmd_list
, &free_list
);
5479 /* piggy back on hardware_lock for protection */
5480 vha
->hw
->tgt
.num_qfull_cmds_alloc
--;
5482 spin_unlock_irqrestore(qpair
->qp_lock_ptr
, flags
);
5486 list_for_each_entry_safe(cmd
, tcmd
, &free_list
, cmd_list
) {
5487 list_del(&cmd
->cmd_list
);
5488 /* This cmd was never sent to TCM. There is no need
5489 * to schedule free or call free_cmd
5494 if (!list_empty(&q_full_list
)) {
5495 spin_lock_irqsave(&vha
->hw
->tgt
.q_full_lock
, flags
);
5496 list_splice(&q_full_list
, &vha
->hw
->tgt
.q_full_list
);
5497 spin_unlock_irqrestore(&vha
->hw
->tgt
.q_full_lock
, flags
);
5504 qlt_send_busy(struct qla_qpair
*qpair
, struct atio_from_isp
*atio
,
5508 struct scsi_qla_host
*vha
= qpair
->vha
;
5510 rc
= __qlt_send_busy(qpair
, atio
, status
);
5512 qlt_alloc_qfull_cmd(vha
, atio
, status
, 1);
5516 qlt_chk_qfull_thresh_hold(struct scsi_qla_host
*vha
, struct qla_qpair
*qpair
,
5517 struct atio_from_isp
*atio
, uint8_t ha_locked
)
5519 struct qla_hw_data
*ha
= vha
->hw
;
5520 unsigned long flags
;
5522 if (ha
->tgt
.num_pend_cmds
< Q_FULL_THRESH_HOLD(ha
))
5526 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
5527 qlt_send_busy(qpair
, atio
, qla_sam_status
);
5529 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
5534 /* ha->hardware_lock supposed to be held on entry */
5535 /* called via callback from qla2xxx */
5536 static void qlt_24xx_atio_pkt(struct scsi_qla_host
*vha
,
5537 struct atio_from_isp
*atio
, uint8_t ha_locked
)
5539 struct qla_hw_data
*ha
= vha
->hw
;
5540 struct qla_tgt
*tgt
= vha
->vha_tgt
.qla_tgt
;
5542 unsigned long flags
= 0;
5544 if (unlikely(tgt
== NULL
)) {
5545 ql_dbg(ql_dbg_tgt
, vha
, 0x3064,
5546 "ATIO pkt, but no tgt (ha %p)", ha
);
5550 * In tgt_stop mode we also should allow all requests to pass.
5551 * Otherwise, some commands can stuck.
5554 tgt
->atio_irq_cmd_count
++;
5556 switch (atio
->u
.raw
.entry_type
) {
5558 if (unlikely(atio
->u
.isp24
.exchange_addr
==
5559 ATIO_EXCHANGE_ADDRESS_UNKNOWN
)) {
5560 ql_dbg(ql_dbg_io
, vha
, 0x3065,
5561 "qla_target(%d): ATIO_TYPE7 "
5562 "received with UNKNOWN exchange address, "
5563 "sending QUEUE_FULL\n", vha
->vp_idx
);
5565 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
5566 qlt_send_busy(ha
->base_qpair
, atio
, qla_sam_status
);
5568 spin_unlock_irqrestore(&ha
->hardware_lock
,
5573 if (likely(atio
->u
.isp24
.fcp_cmnd
.task_mgmt_flags
== 0)) {
5574 rc
= qlt_chk_qfull_thresh_hold(vha
, ha
->base_qpair
,
5577 tgt
->atio_irq_cmd_count
--;
5580 rc
= qlt_handle_cmd_for_atio(vha
, atio
);
5582 rc
= qlt_handle_task_mgmt(vha
, atio
);
5584 if (unlikely(rc
!= 0)) {
5586 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
5589 ql_dbg(ql_dbg_tgt
, vha
, 0xe05f,
5590 "qla_target: Unable to send command to target\n");
5593 ql_dbg(ql_dbg_tgt
, vha
, 0xe05f,
5594 "qla_target: Unable to send command to target, sending TERM EXCHANGE for rsp\n");
5595 qlt_send_term_exchange(ha
->base_qpair
, NULL
,
5599 ql_dbg(ql_dbg_tgt
, vha
, 0xe060,
5600 "qla_target(%d): Unable to send command to target, sending BUSY status\n",
5602 qlt_send_busy(ha
->base_qpair
, atio
,
5606 ql_dbg(ql_dbg_tgt
, vha
, 0xe060,
5607 "qla_target(%d): Unable to send command to target, sending BUSY status\n",
5609 qlt_send_busy(ha
->base_qpair
, atio
,
5614 spin_unlock_irqrestore(&ha
->hardware_lock
,
5619 case IMMED_NOTIFY_TYPE
:
5621 if (unlikely(atio
->u
.isp2x
.entry_status
!= 0)) {
5622 ql_dbg(ql_dbg_tgt
, vha
, 0xe05b,
5623 "qla_target(%d): Received ATIO packet %x "
5624 "with error status %x\n", vha
->vp_idx
,
5625 atio
->u
.raw
.entry_type
,
5626 atio
->u
.isp2x
.entry_status
);
5629 ql_dbg(ql_dbg_tgt
, vha
, 0xe02e, "%s", "IMMED_NOTIFY ATIO");
5632 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
5633 qlt_handle_imm_notify(vha
, (struct imm_ntfy_from_isp
*)atio
);
5635 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
5640 ql_dbg(ql_dbg_tgt
, vha
, 0xe05c,
5641 "qla_target(%d): Received unknown ATIO atio "
5642 "type %x\n", vha
->vp_idx
, atio
->u
.raw
.entry_type
);
5646 tgt
->atio_irq_cmd_count
--;
5650 * qpair lock is assume to be held
5651 * rc = 0 : send terminate & abts respond
5652 * rc != 0: do not send term & abts respond
5654 static int qlt_chk_unresolv_exchg(struct scsi_qla_host
*vha
,
5655 struct qla_qpair
*qpair
, struct abts_resp_from_24xx_fw
*entry
)
5657 struct qla_hw_data
*ha
= vha
->hw
;
5661 * Detect unresolved exchange. If the same ABTS is unable
5662 * to terminate an existing command and the same ABTS loops
5663 * between FW & Driver, then force FW dump. Under 1 jiff,
5664 * we should see multiple loops.
5666 if (qpair
->retry_term_exchg_addr
== entry
->exchange_addr_to_abort
&&
5667 qpair
->retry_term_jiff
== jiffies
) {
5668 /* found existing exchange */
5669 qpair
->retry_term_cnt
++;
5670 if (qpair
->retry_term_cnt
>= 5) {
5672 qpair
->retry_term_cnt
= 0;
5673 ql_log(ql_log_warn
, vha
, 0xffff,
5674 "Unable to send ABTS Respond. Dumping firmware.\n");
5675 ql_dump_buffer(ql_dbg_tgt_mgt
+ ql_dbg_buffer
,
5676 vha
, 0xffff, (uint8_t *)entry
, sizeof(*entry
));
5678 if (qpair
== ha
->base_qpair
)
5679 ha
->isp_ops
->fw_dump(vha
, 1);
5681 ha
->isp_ops
->fw_dump(vha
, 0);
5683 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
5684 qla2xxx_wake_dpc(vha
);
5686 } else if (qpair
->retry_term_jiff
!= jiffies
) {
5687 qpair
->retry_term_exchg_addr
= entry
->exchange_addr_to_abort
;
5688 qpair
->retry_term_cnt
= 0;
5689 qpair
->retry_term_jiff
= jiffies
;
5696 static void qlt_handle_abts_completion(struct scsi_qla_host
*vha
,
5697 struct rsp_que
*rsp
, response_t
*pkt
)
5699 struct abts_resp_from_24xx_fw
*entry
=
5700 (struct abts_resp_from_24xx_fw
*)pkt
;
5701 u32 h
= pkt
->handle
& ~QLA_TGT_HANDLE_MASK
;
5702 struct qla_tgt_mgmt_cmd
*mcmd
;
5703 struct qla_hw_data
*ha
= vha
->hw
;
5705 mcmd
= qlt_ctio_to_cmd(vha
, rsp
, pkt
->handle
, pkt
);
5706 if (mcmd
== NULL
&& h
!= QLA_TGT_SKIP_HANDLE
) {
5707 ql_dbg(ql_dbg_async
, vha
, 0xe064,
5708 "qla_target(%d): ABTS Comp without mcmd\n",
5715 vha
->vha_tgt
.qla_tgt
->abts_resp_expected
--;
5717 ql_dbg(ql_dbg_tgt
, vha
, 0xe038,
5718 "ABTS_RESP_24XX: compl_status %x\n",
5719 entry
->compl_status
);
5721 if (le16_to_cpu(entry
->compl_status
) != ABTS_RESP_COMPL_SUCCESS
) {
5722 if ((entry
->error_subcode1
== 0x1E) &&
5723 (entry
->error_subcode2
== 0)) {
5724 if (qlt_chk_unresolv_exchg(vha
, rsp
->qpair
, entry
)) {
5725 ha
->tgt
.tgt_ops
->free_mcmd(mcmd
);
5728 qlt_24xx_retry_term_exchange(vha
, rsp
->qpair
,
5731 ql_dbg(ql_dbg_tgt
, vha
, 0xe063,
5732 "qla_target(%d): ABTS_RESP_24XX failed %x (subcode %x:%x)",
5733 vha
->vp_idx
, entry
->compl_status
,
5734 entry
->error_subcode1
,
5735 entry
->error_subcode2
);
5736 ha
->tgt
.tgt_ops
->free_mcmd(mcmd
);
5739 ha
->tgt
.tgt_ops
->free_mcmd(mcmd
);
5743 /* ha->hardware_lock supposed to be held on entry */
5744 /* called via callback from qla2xxx */
5745 static void qlt_response_pkt(struct scsi_qla_host
*vha
,
5746 struct rsp_que
*rsp
, response_t
*pkt
)
5748 struct qla_tgt
*tgt
= vha
->vha_tgt
.qla_tgt
;
5750 if (unlikely(tgt
== NULL
)) {
5751 ql_dbg(ql_dbg_tgt
, vha
, 0xe05d,
5752 "qla_target(%d): Response pkt %x received, but no tgt (ha %p)\n",
5753 vha
->vp_idx
, pkt
->entry_type
, vha
->hw
);
5758 * In tgt_stop mode we also should allow all requests to pass.
5759 * Otherwise, some commands can stuck.
5762 switch (pkt
->entry_type
) {
5766 struct ctio7_from_24xx
*entry
= (struct ctio7_from_24xx
*)pkt
;
5768 qlt_do_ctio_completion(vha
, rsp
, entry
->handle
,
5769 le16_to_cpu(entry
->status
)|(pkt
->entry_status
<< 16),
5774 case ACCEPT_TGT_IO_TYPE
:
5776 struct atio_from_isp
*atio
= (struct atio_from_isp
*)pkt
;
5779 if (atio
->u
.isp2x
.status
!=
5780 cpu_to_le16(ATIO_CDB_VALID
)) {
5781 ql_dbg(ql_dbg_tgt
, vha
, 0xe05e,
5782 "qla_target(%d): ATIO with error "
5783 "status %x received\n", vha
->vp_idx
,
5784 le16_to_cpu(atio
->u
.isp2x
.status
));
5788 rc
= qlt_chk_qfull_thresh_hold(vha
, rsp
->qpair
, atio
, 1);
5792 rc
= qlt_handle_cmd_for_atio(vha
, atio
);
5793 if (unlikely(rc
!= 0)) {
5796 ql_dbg(ql_dbg_tgt
, vha
, 0xe05f,
5797 "qla_target: Unable to send command to target\n");
5800 ql_dbg(ql_dbg_tgt
, vha
, 0xe05f,
5801 "qla_target: Unable to send command to target, sending TERM EXCHANGE for rsp\n");
5802 qlt_send_term_exchange(rsp
->qpair
, NULL
,
5806 ql_dbg(ql_dbg_tgt
, vha
, 0xe060,
5807 "qla_target(%d): Unable to send command to target, sending BUSY status\n",
5809 qlt_send_busy(rsp
->qpair
, atio
,
5813 ql_dbg(ql_dbg_tgt
, vha
, 0xe060,
5814 "qla_target(%d): Unable to send command to target, sending BUSY status\n",
5816 qlt_send_busy(rsp
->qpair
, atio
,
5824 case CONTINUE_TGT_IO_TYPE
:
5826 struct ctio_to_2xxx
*entry
= (struct ctio_to_2xxx
*)pkt
;
5828 qlt_do_ctio_completion(vha
, rsp
, entry
->handle
,
5829 le16_to_cpu(entry
->status
)|(pkt
->entry_status
<< 16),
5836 struct ctio_to_2xxx
*entry
= (struct ctio_to_2xxx
*)pkt
;
5838 qlt_do_ctio_completion(vha
, rsp
, entry
->handle
,
5839 le16_to_cpu(entry
->status
)|(pkt
->entry_status
<< 16),
5844 case IMMED_NOTIFY_TYPE
:
5845 ql_dbg(ql_dbg_tgt
, vha
, 0xe035, "%s", "IMMED_NOTIFY\n");
5846 qlt_handle_imm_notify(vha
, (struct imm_ntfy_from_isp
*)pkt
);
5849 case NOTIFY_ACK_TYPE
:
5850 if (tgt
->notify_ack_expected
> 0) {
5851 struct nack_to_isp
*entry
= (struct nack_to_isp
*)pkt
;
5853 ql_dbg(ql_dbg_tgt
, vha
, 0xe036,
5854 "NOTIFY_ACK seq %08x status %x\n",
5855 le16_to_cpu(entry
->u
.isp2x
.seq_id
),
5856 le16_to_cpu(entry
->u
.isp2x
.status
));
5857 tgt
->notify_ack_expected
--;
5858 if (entry
->u
.isp2x
.status
!=
5859 cpu_to_le16(NOTIFY_ACK_SUCCESS
)) {
5860 ql_dbg(ql_dbg_tgt
, vha
, 0xe061,
5861 "qla_target(%d): NOTIFY_ACK "
5862 "failed %x\n", vha
->vp_idx
,
5863 le16_to_cpu(entry
->u
.isp2x
.status
));
5866 ql_dbg(ql_dbg_tgt
, vha
, 0xe062,
5867 "qla_target(%d): Unexpected NOTIFY_ACK received\n",
5872 case ABTS_RECV_24XX
:
5873 ql_dbg(ql_dbg_tgt
, vha
, 0xe037,
5874 "ABTS_RECV_24XX: instance %d\n", vha
->vp_idx
);
5875 qlt_24xx_handle_abts(vha
, (struct abts_recv_from_24xx
*)pkt
);
5878 case ABTS_RESP_24XX
:
5879 if (tgt
->abts_resp_expected
> 0) {
5880 qlt_handle_abts_completion(vha
, rsp
, pkt
);
5882 ql_dbg(ql_dbg_tgt
, vha
, 0xe064,
5883 "qla_target(%d): Unexpected ABTS_RESP_24XX "
5884 "received\n", vha
->vp_idx
);
5889 ql_dbg(ql_dbg_tgt
, vha
, 0xe065,
5890 "qla_target(%d): Received unknown response pkt "
5891 "type %x\n", vha
->vp_idx
, pkt
->entry_type
);
5898 * ha->hardware_lock supposed to be held on entry. Might drop it, then reaquire
5900 void qlt_async_event(uint16_t code
, struct scsi_qla_host
*vha
,
5903 struct qla_hw_data
*ha
= vha
->hw
;
5904 struct qla_tgt
*tgt
= vha
->vha_tgt
.qla_tgt
;
5907 if (!tgt
|| tgt
->tgt_stop
|| tgt
->tgt_stopped
)
5910 if (((code
== MBA_POINT_TO_POINT
) || (code
== MBA_CHG_IN_CONNECTION
)) &&
5914 * In tgt_stop mode we also should allow all requests to pass.
5915 * Otherwise, some commands can stuck.
5920 case MBA_RESET
: /* Reset */
5921 case MBA_SYSTEM_ERR
: /* System Error */
5922 case MBA_REQ_TRANSFER_ERR
: /* Request Transfer Error */
5923 case MBA_RSP_TRANSFER_ERR
: /* Response Transfer Error */
5924 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf03a,
5925 "qla_target(%d): System error async event %#x "
5926 "occurred", vha
->vp_idx
, code
);
5928 case MBA_WAKEUP_THRES
: /* Request Queue Wake-up. */
5929 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
5934 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf03b,
5935 "qla_target(%d): Async LOOP_UP occurred "
5936 "(m[0]=%x, m[1]=%x, m[2]=%x, m[3]=%x)", vha
->vp_idx
,
5937 le16_to_cpu(mailbox
[0]), le16_to_cpu(mailbox
[1]),
5938 le16_to_cpu(mailbox
[2]), le16_to_cpu(mailbox
[3]));
5939 if (tgt
->link_reinit_iocb_pending
) {
5940 qlt_send_notify_ack(ha
->base_qpair
,
5941 (void *)&tgt
->link_reinit_iocb
,
5943 tgt
->link_reinit_iocb_pending
= 0;
5948 case MBA_LIP_OCCURRED
:
5951 case MBA_RSCN_UPDATE
:
5952 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf03c,
5953 "qla_target(%d): Async event %#x occurred "
5954 "(m[0]=%x, m[1]=%x, m[2]=%x, m[3]=%x)", vha
->vp_idx
, code
,
5955 le16_to_cpu(mailbox
[0]), le16_to_cpu(mailbox
[1]),
5956 le16_to_cpu(mailbox
[2]), le16_to_cpu(mailbox
[3]));
5959 case MBA_REJECTED_FCP_CMD
:
5960 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf017,
5961 "qla_target(%d): Async event LS_REJECT occurred (m[0]=%x, m[1]=%x, m[2]=%x, m[3]=%x)",
5963 le16_to_cpu(mailbox
[0]), le16_to_cpu(mailbox
[1]),
5964 le16_to_cpu(mailbox
[2]), le16_to_cpu(mailbox
[3]));
5966 if (le16_to_cpu(mailbox
[3]) == 1) {
5967 /* exchange starvation. */
5968 vha
->hw
->exch_starvation
++;
5969 if (vha
->hw
->exch_starvation
> 5) {
5970 ql_log(ql_log_warn
, vha
, 0xd03a,
5971 "Exchange starvation-. Resetting RISC\n");
5973 vha
->hw
->exch_starvation
= 0;
5974 if (IS_P3P_TYPE(vha
->hw
))
5975 set_bit(FCOE_CTX_RESET_NEEDED
,
5978 set_bit(ISP_ABORT_NEEDED
,
5980 qla2xxx_wake_dpc(vha
);
5985 case MBA_PORT_UPDATE
:
5986 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf03d,
5987 "qla_target(%d): Port update async event %#x "
5988 "occurred: updating the ports database (m[0]=%x, m[1]=%x, "
5989 "m[2]=%x, m[3]=%x)", vha
->vp_idx
, code
,
5990 le16_to_cpu(mailbox
[0]), le16_to_cpu(mailbox
[1]),
5991 le16_to_cpu(mailbox
[2]), le16_to_cpu(mailbox
[3]));
5993 login_code
= le16_to_cpu(mailbox
[2]);
5994 if (login_code
== 0x4) {
5995 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf03e,
5996 "Async MB 2: Got PLOGI Complete\n");
5997 vha
->hw
->exch_starvation
= 0;
5998 } else if (login_code
== 0x7)
5999 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf03f,
6000 "Async MB 2: Port Logged Out\n");
6008 static fc_port_t
*qlt_get_port_database(struct scsi_qla_host
*vha
,
6011 fc_port_t
*fcport
, *tfcp
, *del
;
6013 unsigned long flags
;
6016 fcport
= qla2x00_alloc_fcport(vha
, GFP_KERNEL
);
6018 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf06f,
6019 "qla_target(%d): Allocation of tmp FC port failed",
6024 fcport
->loop_id
= loop_id
;
6026 rc
= qla24xx_gpdb_wait(vha
, fcport
, 0);
6027 if (rc
!= QLA_SUCCESS
) {
6028 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf070,
6029 "qla_target(%d): Failed to retrieve fcport "
6030 "information -- get_port_database() returned %x "
6031 "(loop_id=0x%04x)", vha
->vp_idx
, rc
, loop_id
);
6037 spin_lock_irqsave(&vha
->hw
->tgt
.sess_lock
, flags
);
6038 tfcp
= qla2x00_find_fcport_by_wwpn(vha
, fcport
->port_name
, 1);
6041 tfcp
->d_id
= fcport
->d_id
;
6042 tfcp
->port_type
= fcport
->port_type
;
6043 tfcp
->supported_classes
= fcport
->supported_classes
;
6044 tfcp
->flags
|= fcport
->flags
;
6045 tfcp
->scan_state
= QLA_FCPORT_FOUND
;
6050 if (vha
->hw
->current_topology
== ISP_CFG_F
)
6051 fcport
->flags
|= FCF_FABRIC_DEVICE
;
6053 list_add_tail(&fcport
->list
, &vha
->vp_fcports
);
6054 if (!IS_SW_RESV_ADDR(fcport
->d_id
))
6055 vha
->fcport_count
++;
6056 fcport
->login_gen
++;
6057 fcport
->disc_state
= DSC_LOGIN_COMPLETE
;
6058 fcport
->login_succ
= 1;
6062 fcport
->deleted
= 0;
6063 spin_unlock_irqrestore(&vha
->hw
->tgt
.sess_lock
, flags
);
6065 switch (vha
->host
->active_mode
) {
6066 case MODE_INITIATOR
:
6069 if (!IS_IIDMA_CAPABLE(vha
->hw
) || !vha
->hw
->flags
.gpsc_supported
) {
6070 qla24xx_sched_upd_fcport(fcport
);
6072 ql_dbg(ql_dbg_disc
, vha
, 0x20ff,
6073 "%s %d %8phC post gpsc fcp_cnt %d\n",
6074 __func__
, __LINE__
, fcport
->port_name
, vha
->fcport_count
);
6075 qla24xx_post_gpsc_work(vha
, fcport
);
6085 qla2x00_free_fcport(del
);
6090 /* Must be called under tgt_mutex */
6091 static struct fc_port
*qlt_make_local_sess(struct scsi_qla_host
*vha
,
6094 struct fc_port
*sess
= NULL
;
6095 fc_port_t
*fcport
= NULL
;
6096 int rc
, global_resets
;
6097 uint16_t loop_id
= 0;
6099 if (s_id
.domain
== 0xFF && s_id
.area
== 0xFC) {
6101 * This is Domain Controller, so it should be
6102 * OK to drop SCSI commands from it.
6104 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf042,
6105 "Unable to find initiator with S_ID %x:%x:%x",
6106 s_id
.domain
, s_id
.area
, s_id
.al_pa
);
6110 mutex_lock(&vha
->vha_tgt
.tgt_mutex
);
6114 atomic_read(&vha
->vha_tgt
.qla_tgt
->tgt_global_resets_count
);
6116 rc
= qla24xx_get_loop_id(vha
, s_id
, &loop_id
);
6118 mutex_unlock(&vha
->vha_tgt
.tgt_mutex
);
6120 ql_log(ql_log_info
, vha
, 0xf071,
6121 "qla_target(%d): Unable to find "
6122 "initiator with S_ID %x:%x:%x",
6123 vha
->vp_idx
, s_id
.domain
, s_id
.area
, s_id
.al_pa
);
6125 if (rc
== -ENOENT
) {
6126 qlt_port_logo_t logo
;
6128 logo
.id
= be_to_port_id(s_id
);
6130 qlt_send_first_logo(vha
, &logo
);
6136 fcport
= qlt_get_port_database(vha
, loop_id
);
6138 mutex_unlock(&vha
->vha_tgt
.tgt_mutex
);
6142 if (global_resets
!=
6143 atomic_read(&vha
->vha_tgt
.qla_tgt
->tgt_global_resets_count
)) {
6144 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf043,
6145 "qla_target(%d): global reset during session discovery "
6146 "(counter was %d, new %d), retrying", vha
->vp_idx
,
6148 atomic_read(&vha
->vha_tgt
.
6149 qla_tgt
->tgt_global_resets_count
));
6153 sess
= qlt_create_sess(vha
, fcport
, true);
6155 mutex_unlock(&vha
->vha_tgt
.tgt_mutex
);
6160 static void qlt_abort_work(struct qla_tgt
*tgt
,
6161 struct qla_tgt_sess_work_param
*prm
)
6163 struct scsi_qla_host
*vha
= tgt
->vha
;
6164 struct qla_hw_data
*ha
= vha
->hw
;
6165 struct fc_port
*sess
= NULL
;
6166 unsigned long flags
= 0, flags2
= 0;
6170 spin_lock_irqsave(&ha
->tgt
.sess_lock
, flags2
);
6175 s_id
= le_id_to_be(prm
->abts
.fcp_hdr_le
.s_id
);
6177 sess
= ha
->tgt
.tgt_ops
->find_sess_by_s_id(vha
, s_id
);
6179 spin_unlock_irqrestore(&ha
->tgt
.sess_lock
, flags2
);
6181 sess
= qlt_make_local_sess(vha
, s_id
);
6182 /* sess has got an extra creation ref */
6184 spin_lock_irqsave(&ha
->tgt
.sess_lock
, flags2
);
6188 if (sess
->deleted
) {
6193 if (!kref_get_unless_zero(&sess
->sess_kref
)) {
6194 ql_dbg(ql_dbg_tgt_tmr
, vha
, 0xf01c,
6195 "%s: kref_get fail %8phC \n",
6196 __func__
, sess
->port_name
);
6202 rc
= __qlt_24xx_handle_abts(vha
, &prm
->abts
, sess
);
6203 spin_unlock_irqrestore(&ha
->tgt
.sess_lock
, flags2
);
6205 ha
->tgt
.tgt_ops
->put_sess(sess
);
6212 spin_unlock_irqrestore(&ha
->tgt
.sess_lock
, flags2
);
6215 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
6216 qlt_24xx_send_abts_resp(ha
->base_qpair
, &prm
->abts
,
6217 FCP_TMF_REJECTED
, false);
6218 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
6221 static void qlt_tmr_work(struct qla_tgt
*tgt
,
6222 struct qla_tgt_sess_work_param
*prm
)
6224 struct atio_from_isp
*a
= &prm
->tm_iocb2
;
6225 struct scsi_qla_host
*vha
= tgt
->vha
;
6226 struct qla_hw_data
*ha
= vha
->hw
;
6227 struct fc_port
*sess
;
6228 unsigned long flags
;
6235 spin_lock_irqsave(&ha
->tgt
.sess_lock
, flags
);
6240 s_id
= prm
->tm_iocb2
.u
.isp24
.fcp_hdr
.s_id
;
6241 sess
= ha
->tgt
.tgt_ops
->find_sess_by_s_id(vha
, s_id
);
6243 spin_unlock_irqrestore(&ha
->tgt
.sess_lock
, flags
);
6245 sess
= qlt_make_local_sess(vha
, s_id
);
6246 /* sess has got an extra creation ref */
6248 spin_lock_irqsave(&ha
->tgt
.sess_lock
, flags
);
6252 if (sess
->deleted
) {
6256 if (!kref_get_unless_zero(&sess
->sess_kref
)) {
6257 ql_dbg(ql_dbg_tgt_tmr
, vha
, 0xf020,
6258 "%s: kref_get fail %8phC\n",
6259 __func__
, sess
->port_name
);
6265 fn
= a
->u
.isp24
.fcp_cmnd
.task_mgmt_flags
;
6267 scsilun_to_int((struct scsi_lun
*)&a
->u
.isp24
.fcp_cmnd
.lun
);
6269 rc
= qlt_issue_task_mgmt(sess
, unpacked_lun
, fn
, iocb
, 0);
6270 spin_unlock_irqrestore(&ha
->tgt
.sess_lock
, flags
);
6272 ha
->tgt
.tgt_ops
->put_sess(sess
);
6279 spin_unlock_irqrestore(&ha
->tgt
.sess_lock
, flags
);
6281 qlt_send_term_exchange(ha
->base_qpair
, NULL
, &prm
->tm_iocb2
, 1, 0);
6284 static void qlt_sess_work_fn(struct work_struct
*work
)
6286 struct qla_tgt
*tgt
= container_of(work
, struct qla_tgt
, sess_work
);
6287 struct scsi_qla_host
*vha
= tgt
->vha
;
6288 unsigned long flags
;
6290 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf000, "Sess work (tgt %p)", tgt
);
6292 spin_lock_irqsave(&tgt
->sess_work_lock
, flags
);
6293 while (!list_empty(&tgt
->sess_works_list
)) {
6294 struct qla_tgt_sess_work_param
*prm
= list_entry(
6295 tgt
->sess_works_list
.next
, typeof(*prm
),
6296 sess_works_list_entry
);
6299 * This work can be scheduled on several CPUs at time, so we
6300 * must delete the entry to eliminate double processing
6302 list_del(&prm
->sess_works_list_entry
);
6304 spin_unlock_irqrestore(&tgt
->sess_work_lock
, flags
);
6306 switch (prm
->type
) {
6307 case QLA_TGT_SESS_WORK_ABORT
:
6308 qlt_abort_work(tgt
, prm
);
6310 case QLA_TGT_SESS_WORK_TM
:
6311 qlt_tmr_work(tgt
, prm
);
6318 spin_lock_irqsave(&tgt
->sess_work_lock
, flags
);
6322 spin_unlock_irqrestore(&tgt
->sess_work_lock
, flags
);
6325 /* Must be called under tgt_host_action_mutex */
6326 int qlt_add_target(struct qla_hw_data
*ha
, struct scsi_qla_host
*base_vha
)
6328 struct qla_tgt
*tgt
;
6330 struct qla_qpair_hint
*h
;
6332 if (!QLA_TGT_MODE_ENABLED())
6335 if (!IS_TGT_MODE_CAPABLE(ha
)) {
6336 ql_log(ql_log_warn
, base_vha
, 0xe070,
6337 "This adapter does not support target mode.\n");
6341 ql_dbg(ql_dbg_tgt
, base_vha
, 0xe03b,
6342 "Registering target for host %ld(%p).\n", base_vha
->host_no
, ha
);
6344 BUG_ON(base_vha
->vha_tgt
.qla_tgt
!= NULL
);
6346 tgt
= kzalloc(sizeof(struct qla_tgt
), GFP_KERNEL
);
6348 ql_dbg(ql_dbg_tgt
, base_vha
, 0xe066,
6349 "Unable to allocate struct qla_tgt\n");
6353 tgt
->qphints
= kcalloc(ha
->max_qpairs
+ 1,
6354 sizeof(struct qla_qpair_hint
),
6356 if (!tgt
->qphints
) {
6358 ql_log(ql_log_warn
, base_vha
, 0x0197,
6359 "Unable to allocate qpair hints.\n");
6363 if (!(base_vha
->host
->hostt
->supported_mode
& MODE_TARGET
))
6364 base_vha
->host
->hostt
->supported_mode
|= MODE_TARGET
;
6366 rc
= btree_init64(&tgt
->lun_qpair_map
);
6368 kfree(tgt
->qphints
);
6370 ql_log(ql_log_info
, base_vha
, 0x0198,
6371 "Unable to initialize lun_qpair_map btree\n");
6374 h
= &tgt
->qphints
[0];
6375 h
->qpair
= ha
->base_qpair
;
6376 INIT_LIST_HEAD(&h
->hint_elem
);
6377 h
->cpuid
= ha
->base_qpair
->cpuid
;
6378 list_add_tail(&h
->hint_elem
, &ha
->base_qpair
->hints_list
);
6380 for (i
= 0; i
< ha
->max_qpairs
; i
++) {
6381 unsigned long flags
;
6383 struct qla_qpair
*qpair
= ha
->queue_pair_map
[i
];
6385 h
= &tgt
->qphints
[i
+ 1];
6386 INIT_LIST_HEAD(&h
->hint_elem
);
6389 spin_lock_irqsave(qpair
->qp_lock_ptr
, flags
);
6390 list_add_tail(&h
->hint_elem
, &qpair
->hints_list
);
6391 spin_unlock_irqrestore(qpair
->qp_lock_ptr
, flags
);
6392 h
->cpuid
= qpair
->cpuid
;
6397 tgt
->vha
= base_vha
;
6398 init_waitqueue_head(&tgt
->waitQ
);
6399 INIT_LIST_HEAD(&tgt
->del_sess_list
);
6400 spin_lock_init(&tgt
->sess_work_lock
);
6401 INIT_WORK(&tgt
->sess_work
, qlt_sess_work_fn
);
6402 INIT_LIST_HEAD(&tgt
->sess_works_list
);
6403 atomic_set(&tgt
->tgt_global_resets_count
, 0);
6405 base_vha
->vha_tgt
.qla_tgt
= tgt
;
6407 ql_dbg(ql_dbg_tgt
, base_vha
, 0xe067,
6408 "qla_target(%d): using 64 Bit PCI addressing",
6411 tgt
->sg_tablesize
= QLA_TGT_MAX_SG_24XX(base_vha
->req
->length
- 3);
6413 mutex_lock(&qla_tgt_mutex
);
6414 list_add_tail(&tgt
->tgt_list_entry
, &qla_tgt_glist
);
6415 mutex_unlock(&qla_tgt_mutex
);
6417 if (ha
->tgt
.tgt_ops
&& ha
->tgt
.tgt_ops
->add_target
)
6418 ha
->tgt
.tgt_ops
->add_target(base_vha
);
6423 /* Must be called under tgt_host_action_mutex */
6424 int qlt_remove_target(struct qla_hw_data
*ha
, struct scsi_qla_host
*vha
)
6426 if (!vha
->vha_tgt
.qla_tgt
)
6429 if (vha
->fc_vport
) {
6430 qlt_release(vha
->vha_tgt
.qla_tgt
);
6434 /* free left over qfull cmds */
6435 qlt_init_term_exchange(vha
);
6437 ql_dbg(ql_dbg_tgt
, vha
, 0xe03c, "Unregistering target for host %ld(%p)",
6439 qlt_release(vha
->vha_tgt
.qla_tgt
);
6444 void qlt_remove_target_resources(struct qla_hw_data
*ha
)
6446 struct scsi_qla_host
*node
;
6449 btree_for_each_safe32(&ha
->tgt
.host_map
, key
, node
)
6450 btree_remove32(&ha
->tgt
.host_map
, key
);
6452 btree_destroy32(&ha
->tgt
.host_map
);
6455 static void qlt_lport_dump(struct scsi_qla_host
*vha
, u64 wwpn
,
6458 pr_debug("qla2xxx HW vha->node_name: %8phC\n", vha
->node_name
);
6459 pr_debug("qla2xxx HW vha->port_name: %8phC\n", vha
->port_name
);
6460 put_unaligned_be64(wwpn
, b
);
6461 pr_debug("qla2xxx passed configfs WWPN: %8phC\n", b
);
6465 * qla_tgt_lport_register - register lport with external module
6467 * @target_lport_ptr: pointer for tcm_qla2xxx specific lport data
6468 * @phys_wwpn: physical port WWPN
6469 * @npiv_wwpn: NPIV WWPN
6470 * @npiv_wwnn: NPIV WWNN
6471 * @callback: lport initialization callback for tcm_qla2xxx code
6473 int qlt_lport_register(void *target_lport_ptr
, u64 phys_wwpn
,
6474 u64 npiv_wwpn
, u64 npiv_wwnn
,
6475 int (*callback
)(struct scsi_qla_host
*, void *, u64
, u64
))
6477 struct qla_tgt
*tgt
;
6478 struct scsi_qla_host
*vha
;
6479 struct qla_hw_data
*ha
;
6480 struct Scsi_Host
*host
;
6481 unsigned long flags
;
6485 mutex_lock(&qla_tgt_mutex
);
6486 list_for_each_entry(tgt
, &qla_tgt_glist
, tgt_list_entry
) {
6494 if (!(host
->hostt
->supported_mode
& MODE_TARGET
))
6497 if (vha
->qlini_mode
== QLA2XXX_INI_MODE_ENABLED
)
6500 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
6501 if ((!npiv_wwpn
|| !npiv_wwnn
) && host
->active_mode
& MODE_TARGET
) {
6502 pr_debug("MODE_TARGET already active on qla2xxx(%d)\n",
6504 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
6507 if (tgt
->tgt_stop
) {
6508 pr_debug("MODE_TARGET in shutdown on qla2xxx(%d)\n",
6510 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
6513 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
6515 if (!scsi_host_get(host
)) {
6516 ql_dbg(ql_dbg_tgt
, vha
, 0xe068,
6517 "Unable to scsi_host_get() for"
6518 " qla2xxx scsi_host\n");
6521 qlt_lport_dump(vha
, phys_wwpn
, b
);
6523 if (memcmp(vha
->port_name
, b
, WWN_SIZE
)) {
6524 scsi_host_put(host
);
6527 rc
= (*callback
)(vha
, target_lport_ptr
, npiv_wwpn
, npiv_wwnn
);
6529 scsi_host_put(host
);
6531 mutex_unlock(&qla_tgt_mutex
);
6534 mutex_unlock(&qla_tgt_mutex
);
6538 EXPORT_SYMBOL(qlt_lport_register
);
6541 * qla_tgt_lport_deregister - Degister lport
6543 * @vha: Registered scsi_qla_host pointer
6545 void qlt_lport_deregister(struct scsi_qla_host
*vha
)
6547 struct qla_hw_data
*ha
= vha
->hw
;
6548 struct Scsi_Host
*sh
= vha
->host
;
6550 * Clear the target_lport_ptr qla_target_template pointer in qla_hw_data
6552 vha
->vha_tgt
.target_lport_ptr
= NULL
;
6553 ha
->tgt
.tgt_ops
= NULL
;
6555 * Release the Scsi_Host reference for the underlying qla2xxx host
6559 EXPORT_SYMBOL(qlt_lport_deregister
);
6561 /* Must be called under HW lock */
6562 void qlt_set_mode(struct scsi_qla_host
*vha
)
6564 switch (vha
->qlini_mode
) {
6565 case QLA2XXX_INI_MODE_DISABLED
:
6566 case QLA2XXX_INI_MODE_EXCLUSIVE
:
6567 vha
->host
->active_mode
= MODE_TARGET
;
6569 case QLA2XXX_INI_MODE_ENABLED
:
6570 vha
->host
->active_mode
= MODE_INITIATOR
;
6572 case QLA2XXX_INI_MODE_DUAL
:
6573 vha
->host
->active_mode
= MODE_DUAL
;
6580 /* Must be called under HW lock */
6581 static void qlt_clear_mode(struct scsi_qla_host
*vha
)
6583 switch (vha
->qlini_mode
) {
6584 case QLA2XXX_INI_MODE_DISABLED
:
6585 vha
->host
->active_mode
= MODE_UNKNOWN
;
6587 case QLA2XXX_INI_MODE_EXCLUSIVE
:
6588 vha
->host
->active_mode
= MODE_INITIATOR
;
6590 case QLA2XXX_INI_MODE_ENABLED
:
6591 case QLA2XXX_INI_MODE_DUAL
:
6592 vha
->host
->active_mode
= MODE_INITIATOR
;
6600 * qla_tgt_enable_vha - NO LOCK HELD
6602 * host_reset, bring up w/ Target Mode Enabled
6605 qlt_enable_vha(struct scsi_qla_host
*vha
)
6607 struct qla_hw_data
*ha
= vha
->hw
;
6608 struct qla_tgt
*tgt
= vha
->vha_tgt
.qla_tgt
;
6609 unsigned long flags
;
6610 scsi_qla_host_t
*base_vha
= pci_get_drvdata(ha
->pdev
);
6613 ql_dbg(ql_dbg_tgt
, vha
, 0xe069,
6614 "Unable to locate qla_tgt pointer from"
6615 " struct qla_hw_data\n");
6619 if (vha
->qlini_mode
== QLA2XXX_INI_MODE_ENABLED
)
6622 if (ha
->tgt
.num_act_qpairs
> ha
->max_qpairs
)
6623 ha
->tgt
.num_act_qpairs
= ha
->max_qpairs
;
6624 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
6625 tgt
->tgt_stopped
= 0;
6627 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
6629 mutex_lock(&ha
->optrom_mutex
);
6630 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf021,
6633 qla24xx_disable_vp(vha
);
6634 qla24xx_enable_vp(vha
);
6636 set_bit(ISP_ABORT_NEEDED
, &base_vha
->dpc_flags
);
6637 qla2xxx_wake_dpc(base_vha
);
6638 WARN_ON_ONCE(qla2x00_wait_for_hba_online(base_vha
) !=
6641 mutex_unlock(&ha
->optrom_mutex
);
6643 EXPORT_SYMBOL(qlt_enable_vha
);
6646 * qla_tgt_disable_vha - NO LOCK HELD
6648 * Disable Target Mode and reset the adapter
6650 static void qlt_disable_vha(struct scsi_qla_host
*vha
)
6652 struct qla_hw_data
*ha
= vha
->hw
;
6653 struct qla_tgt
*tgt
= vha
->vha_tgt
.qla_tgt
;
6654 unsigned long flags
;
6657 ql_dbg(ql_dbg_tgt
, vha
, 0xe06a,
6658 "Unable to locate qla_tgt pointer from"
6659 " struct qla_hw_data\n");
6664 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
6665 qlt_clear_mode(vha
);
6666 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
6668 set_bit(ISP_ABORT_NEEDED
, &vha
->dpc_flags
);
6669 qla2xxx_wake_dpc(vha
);
6670 if (qla2x00_wait_for_hba_online(vha
) != QLA_SUCCESS
)
6671 ql_dbg(ql_dbg_tgt
, vha
, 0xe081,
6672 "qla2x00_wait_for_hba_online() failed\n");
6676 * Called from qla_init.c:qla24xx_vport_create() contex to setup
6677 * the target mode specific struct scsi_qla_host and struct qla_hw_data
6681 qlt_vport_create(struct scsi_qla_host
*vha
, struct qla_hw_data
*ha
)
6683 vha
->vha_tgt
.qla_tgt
= NULL
;
6685 mutex_init(&vha
->vha_tgt
.tgt_mutex
);
6686 mutex_init(&vha
->vha_tgt
.tgt_host_action_mutex
);
6688 qlt_clear_mode(vha
);
6691 * NOTE: Currently the value is kept the same for <24xx and
6692 * >=24xx ISPs. If it is necessary to change it,
6693 * the check should be added for specific ISPs,
6694 * assigning the value appropriately.
6696 ha
->tgt
.atio_q_length
= ATIO_ENTRY_CNT_24XX
;
6698 qlt_add_target(ha
, vha
);
6702 qlt_rff_id(struct scsi_qla_host
*vha
)
6706 * FC-4 Feature bit 0 indicates target functionality to the name server.
6708 if (qla_tgt_mode_enabled(vha
)) {
6709 fc4_feature
= BIT_0
;
6710 } else if (qla_ini_mode_enabled(vha
)) {
6711 fc4_feature
= BIT_1
;
6712 } else if (qla_dual_mode_enabled(vha
))
6713 fc4_feature
= BIT_0
| BIT_1
;
6719 * qlt_init_atio_q_entries() - Initializes ATIO queue entries.
6722 * Beginning of ATIO ring has initialization control block already built
6723 * by nvram config routine.
6725 * Returns 0 on success.
6728 qlt_init_atio_q_entries(struct scsi_qla_host
*vha
)
6730 struct qla_hw_data
*ha
= vha
->hw
;
6732 struct atio_from_isp
*pkt
= (struct atio_from_isp
*)ha
->tgt
.atio_ring
;
6734 if (qla_ini_mode_enabled(vha
))
6737 for (cnt
= 0; cnt
< ha
->tgt
.atio_q_length
; cnt
++) {
6738 pkt
->u
.raw
.signature
= ATIO_PROCESSED
;
6745 * qlt_24xx_process_atio_queue() - Process ATIO queue entries.
6746 * @ha: SCSI driver HA context
6749 qlt_24xx_process_atio_queue(struct scsi_qla_host
*vha
, uint8_t ha_locked
)
6751 struct qla_hw_data
*ha
= vha
->hw
;
6752 struct atio_from_isp
*pkt
;
6755 if (!ha
->flags
.fw_started
)
6758 while ((ha
->tgt
.atio_ring_ptr
->signature
!= ATIO_PROCESSED
) ||
6759 fcpcmd_is_corrupted(ha
->tgt
.atio_ring_ptr
)) {
6760 pkt
= (struct atio_from_isp
*)ha
->tgt
.atio_ring_ptr
;
6761 cnt
= pkt
->u
.raw
.entry_count
;
6763 if (unlikely(fcpcmd_is_corrupted(ha
->tgt
.atio_ring_ptr
))) {
6765 * This packet is corrupted. The header + payload
6766 * can not be trusted. There is no point in passing
6769 ql_log(ql_log_warn
, vha
, 0xd03c,
6770 "corrupted fcp frame SID[%3phN] OXID[%04x] EXCG[%x] %64phN\n",
6771 &pkt
->u
.isp24
.fcp_hdr
.s_id
,
6772 be16_to_cpu(pkt
->u
.isp24
.fcp_hdr
.ox_id
),
6773 le32_to_cpu(pkt
->u
.isp24
.exchange_addr
), pkt
);
6775 adjust_corrupted_atio(pkt
);
6776 qlt_send_term_exchange(ha
->base_qpair
, NULL
, pkt
,
6779 qlt_24xx_atio_pkt_all_vps(vha
,
6780 (struct atio_from_isp
*)pkt
, ha_locked
);
6783 for (i
= 0; i
< cnt
; i
++) {
6784 ha
->tgt
.atio_ring_index
++;
6785 if (ha
->tgt
.atio_ring_index
== ha
->tgt
.atio_q_length
) {
6786 ha
->tgt
.atio_ring_index
= 0;
6787 ha
->tgt
.atio_ring_ptr
= ha
->tgt
.atio_ring
;
6789 ha
->tgt
.atio_ring_ptr
++;
6791 pkt
->u
.raw
.signature
= ATIO_PROCESSED
;
6792 pkt
= (struct atio_from_isp
*)ha
->tgt
.atio_ring_ptr
;
6797 /* Adjust ring index */
6798 WRT_REG_DWORD(ISP_ATIO_Q_OUT(vha
), ha
->tgt
.atio_ring_index
);
6802 qlt_24xx_config_rings(struct scsi_qla_host
*vha
)
6804 struct qla_hw_data
*ha
= vha
->hw
;
6805 struct qla_msix_entry
*msix
= &ha
->msix_entries
[2];
6806 struct init_cb_24xx
*icb
= (struct init_cb_24xx
*)ha
->init_cb
;
6808 if (!QLA_TGT_MODE_ENABLED())
6811 WRT_REG_DWORD(ISP_ATIO_Q_IN(vha
), 0);
6812 WRT_REG_DWORD(ISP_ATIO_Q_OUT(vha
), 0);
6813 RD_REG_DWORD(ISP_ATIO_Q_OUT(vha
));
6815 if (ha
->flags
.msix_enabled
) {
6816 if (IS_QLA83XX(ha
) || IS_QLA27XX(ha
) || IS_QLA28XX(ha
)) {
6817 if (IS_QLA2071(ha
)) {
6818 /* 4 ports Baker: Enable Interrupt Handshake */
6820 icb
->firmware_options_2
|= BIT_26
;
6822 icb
->msix_atio
= cpu_to_le16(msix
->entry
);
6823 icb
->firmware_options_2
&= ~BIT_26
;
6825 ql_dbg(ql_dbg_init
, vha
, 0xf072,
6826 "Registering ICB vector 0x%x for atio que.\n",
6831 if (IS_QLA83XX(ha
) || IS_QLA27XX(ha
) || IS_QLA28XX(ha
)) {
6833 icb
->firmware_options_2
|= BIT_26
;
6834 ql_dbg(ql_dbg_init
, vha
, 0xf072,
6835 "%s: Use INTx for ATIOQ.\n", __func__
);
6841 qlt_24xx_config_nvram_stage1(struct scsi_qla_host
*vha
, struct nvram_24xx
*nv
)
6843 struct qla_hw_data
*ha
= vha
->hw
;
6846 if (!QLA_TGT_MODE_ENABLED())
6849 if (qla_tgt_mode_enabled(vha
) || qla_dual_mode_enabled(vha
)) {
6850 if (!ha
->tgt
.saved_set
) {
6851 /* We save only once */
6852 ha
->tgt
.saved_exchange_count
= nv
->exchange_count
;
6853 ha
->tgt
.saved_firmware_options_1
=
6854 nv
->firmware_options_1
;
6855 ha
->tgt
.saved_firmware_options_2
=
6856 nv
->firmware_options_2
;
6857 ha
->tgt
.saved_firmware_options_3
=
6858 nv
->firmware_options_3
;
6859 ha
->tgt
.saved_set
= 1;
6862 if (qla_tgt_mode_enabled(vha
))
6863 nv
->exchange_count
= cpu_to_le16(0xFFFF);
6865 nv
->exchange_count
= cpu_to_le16(vha
->ql2xexchoffld
);
6867 /* Enable target mode */
6868 nv
->firmware_options_1
|= cpu_to_le32(BIT_4
);
6870 /* Disable ini mode, if requested */
6871 if (qla_tgt_mode_enabled(vha
))
6872 nv
->firmware_options_1
|= cpu_to_le32(BIT_5
);
6874 /* Disable Full Login after LIP */
6875 nv
->firmware_options_1
&= cpu_to_le32(~BIT_13
);
6876 /* Enable initial LIP */
6877 nv
->firmware_options_1
&= cpu_to_le32(~BIT_9
);
6878 if (ql2xtgt_tape_enable
)
6879 /* Enable FC Tape support */
6880 nv
->firmware_options_2
|= cpu_to_le32(BIT_12
);
6882 /* Disable FC Tape support */
6883 nv
->firmware_options_2
&= cpu_to_le32(~BIT_12
);
6885 /* Disable Full Login after LIP */
6886 nv
->host_p
&= cpu_to_le32(~BIT_10
);
6889 * clear BIT 15 explicitly as we have seen at least
6890 * a couple of instances where this was set and this
6891 * was causing the firmware to not be initialized.
6893 nv
->firmware_options_1
&= cpu_to_le32(~BIT_15
);
6894 /* Enable target PRLI control */
6895 nv
->firmware_options_2
|= cpu_to_le32(BIT_14
);
6897 if (IS_QLA25XX(ha
)) {
6898 /* Change Loop-prefer to Pt-Pt */
6899 tmp
= ~(BIT_4
|BIT_5
|BIT_6
);
6900 nv
->firmware_options_2
&= cpu_to_le32(tmp
);
6902 nv
->firmware_options_2
|= cpu_to_le32(tmp
);
6905 if (ha
->tgt
.saved_set
) {
6906 nv
->exchange_count
= ha
->tgt
.saved_exchange_count
;
6907 nv
->firmware_options_1
=
6908 ha
->tgt
.saved_firmware_options_1
;
6909 nv
->firmware_options_2
=
6910 ha
->tgt
.saved_firmware_options_2
;
6911 nv
->firmware_options_3
=
6912 ha
->tgt
.saved_firmware_options_3
;
6917 if (ha
->base_qpair
->enable_class_2
) {
6918 if (vha
->flags
.init_done
)
6919 fc_host_supported_classes(vha
->host
) =
6920 FC_COS_CLASS2
| FC_COS_CLASS3
;
6922 nv
->firmware_options_2
|= cpu_to_le32(BIT_8
);
6924 if (vha
->flags
.init_done
)
6925 fc_host_supported_classes(vha
->host
) = FC_COS_CLASS3
;
6927 nv
->firmware_options_2
&= ~cpu_to_le32(BIT_8
);
6932 qlt_24xx_config_nvram_stage2(struct scsi_qla_host
*vha
,
6933 struct init_cb_24xx
*icb
)
6935 struct qla_hw_data
*ha
= vha
->hw
;
6937 if (!QLA_TGT_MODE_ENABLED())
6940 if (ha
->tgt
.node_name_set
) {
6941 memcpy(icb
->node_name
, ha
->tgt
.tgt_node_name
, WWN_SIZE
);
6942 icb
->firmware_options_1
|= cpu_to_le32(BIT_14
);
6947 qlt_81xx_config_nvram_stage1(struct scsi_qla_host
*vha
, struct nvram_81xx
*nv
)
6949 struct qla_hw_data
*ha
= vha
->hw
;
6952 if (!QLA_TGT_MODE_ENABLED())
6955 if (qla_tgt_mode_enabled(vha
) || qla_dual_mode_enabled(vha
)) {
6956 if (!ha
->tgt
.saved_set
) {
6957 /* We save only once */
6958 ha
->tgt
.saved_exchange_count
= nv
->exchange_count
;
6959 ha
->tgt
.saved_firmware_options_1
=
6960 nv
->firmware_options_1
;
6961 ha
->tgt
.saved_firmware_options_2
=
6962 nv
->firmware_options_2
;
6963 ha
->tgt
.saved_firmware_options_3
=
6964 nv
->firmware_options_3
;
6965 ha
->tgt
.saved_set
= 1;
6968 if (qla_tgt_mode_enabled(vha
))
6969 nv
->exchange_count
= cpu_to_le16(0xFFFF);
6971 nv
->exchange_count
= cpu_to_le16(vha
->ql2xexchoffld
);
6973 /* Enable target mode */
6974 nv
->firmware_options_1
|= cpu_to_le32(BIT_4
);
6976 /* Disable ini mode, if requested */
6977 if (qla_tgt_mode_enabled(vha
))
6978 nv
->firmware_options_1
|= cpu_to_le32(BIT_5
);
6979 /* Disable Full Login after LIP */
6980 nv
->firmware_options_1
&= cpu_to_le32(~BIT_13
);
6981 /* Enable initial LIP */
6982 nv
->firmware_options_1
&= cpu_to_le32(~BIT_9
);
6984 * clear BIT 15 explicitly as we have seen at
6985 * least a couple of instances where this was set
6986 * and this was causing the firmware to not be
6989 nv
->firmware_options_1
&= cpu_to_le32(~BIT_15
);
6990 if (ql2xtgt_tape_enable
)
6991 /* Enable FC tape support */
6992 nv
->firmware_options_2
|= cpu_to_le32(BIT_12
);
6994 /* Disable FC tape support */
6995 nv
->firmware_options_2
&= cpu_to_le32(~BIT_12
);
6997 /* Disable Full Login after LIP */
6998 nv
->host_p
&= cpu_to_le32(~BIT_10
);
6999 /* Enable target PRLI control */
7000 nv
->firmware_options_2
|= cpu_to_le32(BIT_14
);
7002 /* Change Loop-prefer to Pt-Pt */
7003 tmp
= ~(BIT_4
|BIT_5
|BIT_6
);
7004 nv
->firmware_options_2
&= cpu_to_le32(tmp
);
7006 nv
->firmware_options_2
|= cpu_to_le32(tmp
);
7008 if (ha
->tgt
.saved_set
) {
7009 nv
->exchange_count
= ha
->tgt
.saved_exchange_count
;
7010 nv
->firmware_options_1
=
7011 ha
->tgt
.saved_firmware_options_1
;
7012 nv
->firmware_options_2
=
7013 ha
->tgt
.saved_firmware_options_2
;
7014 nv
->firmware_options_3
=
7015 ha
->tgt
.saved_firmware_options_3
;
7020 if (ha
->base_qpair
->enable_class_2
) {
7021 if (vha
->flags
.init_done
)
7022 fc_host_supported_classes(vha
->host
) =
7023 FC_COS_CLASS2
| FC_COS_CLASS3
;
7025 nv
->firmware_options_2
|= cpu_to_le32(BIT_8
);
7027 if (vha
->flags
.init_done
)
7028 fc_host_supported_classes(vha
->host
) = FC_COS_CLASS3
;
7030 nv
->firmware_options_2
&= ~cpu_to_le32(BIT_8
);
7035 qlt_81xx_config_nvram_stage2(struct scsi_qla_host
*vha
,
7036 struct init_cb_81xx
*icb
)
7038 struct qla_hw_data
*ha
= vha
->hw
;
7040 if (!QLA_TGT_MODE_ENABLED())
7043 if (ha
->tgt
.node_name_set
) {
7044 memcpy(icb
->node_name
, ha
->tgt
.tgt_node_name
, WWN_SIZE
);
7045 icb
->firmware_options_1
|= cpu_to_le32(BIT_14
);
7050 qlt_83xx_iospace_config(struct qla_hw_data
*ha
)
7052 if (!QLA_TGT_MODE_ENABLED())
7055 ha
->msix_count
+= 1; /* For ATIO Q */
7060 qlt_modify_vp_config(struct scsi_qla_host
*vha
,
7061 struct vp_config_entry_24xx
*vpmod
)
7063 /* enable target mode. Bit5 = 1 => disable */
7064 if (qla_tgt_mode_enabled(vha
) || qla_dual_mode_enabled(vha
))
7065 vpmod
->options_idx1
&= ~BIT_5
;
7067 /* Disable ini mode, if requested. bit4 = 1 => disable */
7068 if (qla_tgt_mode_enabled(vha
))
7069 vpmod
->options_idx1
&= ~BIT_4
;
7073 qlt_probe_one_stage1(struct scsi_qla_host
*base_vha
, struct qla_hw_data
*ha
)
7077 if (!QLA_TGT_MODE_ENABLED())
7080 if ((ql2xenablemsix
== 0) || IS_QLA83XX(ha
) || IS_QLA27XX(ha
) ||
7082 ISP_ATIO_Q_IN(base_vha
) = &ha
->mqiobase
->isp25mq
.atio_q_in
;
7083 ISP_ATIO_Q_OUT(base_vha
) = &ha
->mqiobase
->isp25mq
.atio_q_out
;
7085 ISP_ATIO_Q_IN(base_vha
) = &ha
->iobase
->isp24
.atio_q_in
;
7086 ISP_ATIO_Q_OUT(base_vha
) = &ha
->iobase
->isp24
.atio_q_out
;
7089 mutex_init(&base_vha
->vha_tgt
.tgt_mutex
);
7090 mutex_init(&base_vha
->vha_tgt
.tgt_host_action_mutex
);
7092 INIT_LIST_HEAD(&base_vha
->unknown_atio_list
);
7093 INIT_DELAYED_WORK(&base_vha
->unknown_atio_work
,
7094 qlt_unknown_atio_work_fn
);
7096 qlt_clear_mode(base_vha
);
7098 rc
= btree_init32(&ha
->tgt
.host_map
);
7100 ql_log(ql_log_info
, base_vha
, 0xd03d,
7101 "Unable to initialize ha->host_map btree\n");
7103 qlt_update_vp_map(base_vha
, SET_VP_IDX
);
7107 qla83xx_msix_atio_q(int irq
, void *dev_id
)
7109 struct rsp_que
*rsp
;
7110 scsi_qla_host_t
*vha
;
7111 struct qla_hw_data
*ha
;
7112 unsigned long flags
;
7114 rsp
= (struct rsp_que
*) dev_id
;
7116 vha
= pci_get_drvdata(ha
->pdev
);
7118 spin_lock_irqsave(&ha
->tgt
.atio_lock
, flags
);
7120 qlt_24xx_process_atio_queue(vha
, 0);
7122 spin_unlock_irqrestore(&ha
->tgt
.atio_lock
, flags
);
7128 qlt_handle_abts_recv_work(struct work_struct
*work
)
7130 struct qla_tgt_sess_op
*op
= container_of(work
,
7131 struct qla_tgt_sess_op
, work
);
7132 scsi_qla_host_t
*vha
= op
->vha
;
7133 struct qla_hw_data
*ha
= vha
->hw
;
7134 unsigned long flags
;
7136 if (qla2x00_reset_active(vha
) ||
7137 (op
->chip_reset
!= ha
->base_qpair
->chip_reset
))
7140 spin_lock_irqsave(&ha
->tgt
.atio_lock
, flags
);
7141 qlt_24xx_process_atio_queue(vha
, 0);
7142 spin_unlock_irqrestore(&ha
->tgt
.atio_lock
, flags
);
7144 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
7145 qlt_response_pkt_all_vps(vha
, op
->rsp
, (response_t
*)&op
->atio
);
7146 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
7152 qlt_handle_abts_recv(struct scsi_qla_host
*vha
, struct rsp_que
*rsp
,
7155 struct qla_tgt_sess_op
*op
;
7157 op
= kzalloc(sizeof(*op
), GFP_ATOMIC
);
7160 /* do not reach for ATIO queue here. This is best effort err
7161 * recovery at this point.
7163 qlt_response_pkt_all_vps(vha
, rsp
, pkt
);
7167 memcpy(&op
->atio
, pkt
, sizeof(*pkt
));
7169 op
->chip_reset
= vha
->hw
->base_qpair
->chip_reset
;
7171 INIT_WORK(&op
->work
, qlt_handle_abts_recv_work
);
7172 queue_work(qla_tgt_wq
, &op
->work
);
7177 qlt_mem_alloc(struct qla_hw_data
*ha
)
7179 if (!QLA_TGT_MODE_ENABLED())
7182 ha
->tgt
.tgt_vp_map
= kcalloc(MAX_MULTI_ID_FABRIC
,
7183 sizeof(struct qla_tgt_vp_map
),
7185 if (!ha
->tgt
.tgt_vp_map
)
7188 ha
->tgt
.atio_ring
= dma_alloc_coherent(&ha
->pdev
->dev
,
7189 (ha
->tgt
.atio_q_length
+ 1) * sizeof(struct atio_from_isp
),
7190 &ha
->tgt
.atio_dma
, GFP_KERNEL
);
7191 if (!ha
->tgt
.atio_ring
) {
7192 kfree(ha
->tgt
.tgt_vp_map
);
7199 qlt_mem_free(struct qla_hw_data
*ha
)
7201 if (!QLA_TGT_MODE_ENABLED())
7204 if (ha
->tgt
.atio_ring
) {
7205 dma_free_coherent(&ha
->pdev
->dev
, (ha
->tgt
.atio_q_length
+ 1) *
7206 sizeof(struct atio_from_isp
), ha
->tgt
.atio_ring
,
7209 ha
->tgt
.atio_ring
= NULL
;
7210 ha
->tgt
.atio_dma
= 0;
7211 kfree(ha
->tgt
.tgt_vp_map
);
7212 ha
->tgt
.tgt_vp_map
= NULL
;
7215 /* vport_slock to be held by the caller */
7217 qlt_update_vp_map(struct scsi_qla_host
*vha
, int cmd
)
7223 if (!QLA_TGT_MODE_ENABLED())
7226 key
= vha
->d_id
.b24
;
7230 vha
->hw
->tgt
.tgt_vp_map
[vha
->vp_idx
].vha
= vha
;
7233 slot
= btree_lookup32(&vha
->hw
->tgt
.host_map
, key
);
7235 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf018,
7236 "Save vha in host_map %p %06x\n", vha
, key
);
7237 rc
= btree_insert32(&vha
->hw
->tgt
.host_map
,
7238 key
, vha
, GFP_ATOMIC
);
7240 ql_log(ql_log_info
, vha
, 0xd03e,
7241 "Unable to insert s_id into host_map: %06x\n",
7245 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf019,
7246 "replace existing vha in host_map %p %06x\n", vha
, key
);
7247 btree_update32(&vha
->hw
->tgt
.host_map
, key
, vha
);
7250 vha
->hw
->tgt
.tgt_vp_map
[vha
->vp_idx
].vha
= NULL
;
7253 ql_dbg(ql_dbg_tgt_mgt
, vha
, 0xf01a,
7254 "clear vha in host_map %p %06x\n", vha
, key
);
7255 slot
= btree_lookup32(&vha
->hw
->tgt
.host_map
, key
);
7257 btree_remove32(&vha
->hw
->tgt
.host_map
, key
);
7263 void qlt_update_host_map(struct scsi_qla_host
*vha
, port_id_t id
)
7266 if (!vha
->d_id
.b24
) {
7268 qlt_update_vp_map(vha
, SET_AL_PA
);
7269 } else if (vha
->d_id
.b24
!= id
.b24
) {
7270 qlt_update_vp_map(vha
, RESET_AL_PA
);
7272 qlt_update_vp_map(vha
, SET_AL_PA
);
7276 static int __init
qlt_parse_ini_mode(void)
7278 if (strcasecmp(qlini_mode
, QLA2XXX_INI_MODE_STR_EXCLUSIVE
) == 0)
7279 ql2x_ini_mode
= QLA2XXX_INI_MODE_EXCLUSIVE
;
7280 else if (strcasecmp(qlini_mode
, QLA2XXX_INI_MODE_STR_DISABLED
) == 0)
7281 ql2x_ini_mode
= QLA2XXX_INI_MODE_DISABLED
;
7282 else if (strcasecmp(qlini_mode
, QLA2XXX_INI_MODE_STR_ENABLED
) == 0)
7283 ql2x_ini_mode
= QLA2XXX_INI_MODE_ENABLED
;
7284 else if (strcasecmp(qlini_mode
, QLA2XXX_INI_MODE_STR_DUAL
) == 0)
7285 ql2x_ini_mode
= QLA2XXX_INI_MODE_DUAL
;
7292 int __init
qlt_init(void)
7296 BUILD_BUG_ON(sizeof(struct ctio7_to_24xx
) != 64);
7297 BUILD_BUG_ON(sizeof(struct ctio_to_2xxx
) != 64);
7299 if (!qlt_parse_ini_mode()) {
7300 ql_log(ql_log_fatal
, NULL
, 0xe06b,
7301 "qlt_parse_ini_mode() failed\n");
7305 if (!QLA_TGT_MODE_ENABLED())
7308 qla_tgt_mgmt_cmd_cachep
= kmem_cache_create("qla_tgt_mgmt_cmd_cachep",
7309 sizeof(struct qla_tgt_mgmt_cmd
), __alignof__(struct
7310 qla_tgt_mgmt_cmd
), 0, NULL
);
7311 if (!qla_tgt_mgmt_cmd_cachep
) {
7312 ql_log(ql_log_fatal
, NULL
, 0xd04b,
7313 "kmem_cache_create for qla_tgt_mgmt_cmd_cachep failed\n");
7317 qla_tgt_plogi_cachep
= kmem_cache_create("qla_tgt_plogi_cachep",
7318 sizeof(struct qlt_plogi_ack_t
), __alignof__(struct qlt_plogi_ack_t
),
7321 if (!qla_tgt_plogi_cachep
) {
7322 ql_log(ql_log_fatal
, NULL
, 0xe06d,
7323 "kmem_cache_create for qla_tgt_plogi_cachep failed\n");
7325 goto out_mgmt_cmd_cachep
;
7328 qla_tgt_mgmt_cmd_mempool
= mempool_create(25, mempool_alloc_slab
,
7329 mempool_free_slab
, qla_tgt_mgmt_cmd_cachep
);
7330 if (!qla_tgt_mgmt_cmd_mempool
) {
7331 ql_log(ql_log_fatal
, NULL
, 0xe06e,
7332 "mempool_create for qla_tgt_mgmt_cmd_mempool failed\n");
7334 goto out_plogi_cachep
;
7337 qla_tgt_wq
= alloc_workqueue("qla_tgt_wq", 0, 0);
7339 ql_log(ql_log_fatal
, NULL
, 0xe06f,
7340 "alloc_workqueue for qla_tgt_wq failed\n");
7342 goto out_cmd_mempool
;
7345 * Return 1 to signal that initiator-mode is being disabled
7347 return (ql2x_ini_mode
== QLA2XXX_INI_MODE_DISABLED
) ? 1 : 0;
7350 mempool_destroy(qla_tgt_mgmt_cmd_mempool
);
7352 kmem_cache_destroy(qla_tgt_plogi_cachep
);
7353 out_mgmt_cmd_cachep
:
7354 kmem_cache_destroy(qla_tgt_mgmt_cmd_cachep
);
7360 if (!QLA_TGT_MODE_ENABLED())
7363 destroy_workqueue(qla_tgt_wq
);
7364 mempool_destroy(qla_tgt_mgmt_cmd_mempool
);
7365 kmem_cache_destroy(qla_tgt_plogi_cachep
);
7366 kmem_cache_destroy(qla_tgt_mgmt_cmd_cachep
);