blob: 97af678ed9e0d62cff3695b8a6cb0944771b7b60 [file] [log] [blame]
Thomas Gleixner8e8e69d2019-05-29 07:17:59 -07001// SPDX-License-Identifier: GPL-2.0-only
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002/*
3 * qla_target.c SCSI LLD infrastructure for QLogic 22xx/23xx/24xx/25xx
4 *
5 * based on qla2x00t.c code:
6 *
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.
11 *
12 * Forward port and refactoring to modern qla2xxx and target/configfs
13 *
Nicholas Bellinger4c762512013-09-05 15:29:12 -070014 * Copyright (C) 2010-2013 Nicholas A. Bellinger <nab@kernel.org>
Nicholas Bellinger2d70c102012-05-15 14:34:28 -040015 */
16
17#include <linux/module.h>
18#include <linux/init.h>
19#include <linux/types.h>
Nicholas Bellinger2d70c102012-05-15 14:34:28 -040020#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>
32
33#include "qla_def.h"
34#include "qla_target.h"
35
Arun Easid154f352014-09-25 06:14:48 -040036static int ql2xtgt_tape_enable;
37module_param(ql2xtgt_tape_enable, int, S_IRUGO|S_IWUSR);
38MODULE_PARM_DESC(ql2xtgt_tape_enable,
39 "Enables Sequence level error recovery (aka FC Tape). Default is 0 - no SLER. 1 - Enable SLER.");
40
Nicholas Bellinger2d70c102012-05-15 14:34:28 -040041static char *qlini_mode = QLA2XXX_INI_MODE_STR_ENABLED;
42module_param(qlini_mode, charp, S_IRUGO);
43MODULE_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 "
47 "enabled back; "
48 "\"disabled\" - initiator mode will never be enabled; "
Quinn Tranead03852017-01-19 22:28:01 -080049 "\"dual\" - Initiator Modes will be enabled. Target Mode can be activated "
50 "when ready "
Nicholas Bellinger2d70c102012-05-15 14:34:28 -040051 "\"enabled\" (default) - initiator mode will always stay enabled.");
52
Quinn Tran99e1b682017-06-02 09:12:03 -070053static int ql_dm_tgt_ex_pct = 0;
Quinn Tranead03852017-01-19 22:28:01 -080054module_param(ql_dm_tgt_ex_pct, int, S_IRUGO|S_IWUSR);
55MODULE_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 "
58 "for Target mode.");
59
Quinn Tran09620ee2017-06-13 20:47:20 -070060int ql2xuctrlirq = 1;
61module_param(ql2xuctrlirq, int, 0644);
62MODULE_PARM_DESC(ql2xuctrlirq,
63 "User to control IRQ placement via smp_affinity."
64 "Valid with qlini_mode=disabled."
65 "1(default): enable");
66
Arun Easiaa230bc2013-01-30 03:34:39 -050067int ql2x_ini_mode = QLA2XXX_INI_MODE_EXCLUSIVE;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -040068
Quinn Tran7cf95f72017-12-28 12:33:28 -080069static int qla_sam_status = SAM_STAT_BUSY;
70static int tc_sam_status = SAM_STAT_TASK_SET_FULL; /* target core */
Quinn Tran33e79972014-09-25 06:14:55 -040071
Nicholas Bellinger2d70c102012-05-15 14:34:28 -040072/*
73 * From scsi/fc/fc_fcp.h
74 */
75enum fcp_resp_rsp_codes {
76 FCP_TMF_CMPL = 0,
77 FCP_DATA_LEN_INVALID = 1,
78 FCP_CMND_FIELDS_INVALID = 2,
79 FCP_DATA_PARAM_MISMATCH = 3,
80 FCP_TMF_REJECTED = 4,
81 FCP_TMF_FAILED = 5,
82 FCP_TMF_INVALID_LUN = 9,
83};
84
85/*
86 * fc_pri_ta from scsi/fc/fc_fcp.h
87 */
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 */
Masanari Iida6efb3c0a2012-10-26 22:10:54 +090091#define FCP_PTA_ACA 4 /* auto. contingent allegiance */
Nicholas Bellinger2d70c102012-05-15 14:34:28 -040092#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 */
95
96/*
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:
101 *
102 * - Either context is IRQ and only IRQ handler can modify HW data,
103 * including rings related fields,
104 *
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.
108 */
109/* Predefs for callbacks handed to qla2xxx LLD */
110static void qlt_24xx_atio_pkt(struct scsi_qla_host *ha,
Quinn Tran2f424b92015-12-17 14:57:07 -0500111 struct atio_from_isp *pkt, uint8_t);
Quinn Tran82de8022017-06-13 20:47:17 -0700112static void qlt_response_pkt(struct scsi_qla_host *ha, struct rsp_que *rsp,
113 response_t *pkt);
Quinn Tran5d964832017-01-19 22:27:59 -0800114static int qlt_issue_task_mgmt(struct fc_port *sess, u64 lun,
Nicholas Bellinger2d70c102012-05-15 14:34:28 -0400115 int fn, void *iocb, int flags);
Quinn Tran82de8022017-06-13 20:47:17 -0700116static void qlt_send_term_exchange(struct qla_qpair *, struct qla_tgt_cmd
Quinn Trana07100e2015-12-07 19:48:57 -0500117 *cmd, struct atio_from_isp *atio, int ha_locked, int ul_abort);
Quinn Tran33e79972014-09-25 06:14:55 -0400118static void qlt_alloc_qfull_cmd(struct scsi_qla_host *vha,
119 struct atio_from_isp *atio, uint16_t status, int qfull);
Joern Engel55a90662014-09-16 16:23:15 -0400120static void qlt_disable_vha(struct scsi_qla_host *vha);
Roland Dreierb2032fd2015-07-14 16:00:42 -0400121static void qlt_clear_tgt_db(struct qla_tgt *tgt);
Quinn Tran82de8022017-06-13 20:47:17 -0700122static void qlt_send_notify_ack(struct qla_qpair *qpair,
Alexei Potashnika6ca8872015-07-14 16:00:44 -0400123 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);
Alexei Potashnikb7bd1042015-12-17 14:57:02 -0500126static void qlt_send_term_imm_notif(struct scsi_qla_host *vha,
127 struct imm_ntfy_from_isp *imm, int ha_locked);
Quinn Tran726b8542017-01-19 22:28:00 -0800128static struct fc_port *qlt_create_sess(struct scsi_qla_host *vha,
129 fc_port_t *fcport, bool local);
130void qlt_unreg_sess(struct fc_port *sess);
Quinn Tran8f6fc8d2017-03-15 09:48:46 -0700131static void qlt_24xx_handle_abts(struct scsi_qla_host *,
132 struct abts_recv_from_24xx *);
Quinn Tran82de8022017-06-13 20:47:17 -0700133static void qlt_send_busy(struct qla_qpair *, struct atio_from_isp *,
134 uint16_t);
Quinn Tran6b0431d2018-09-04 14:19:13 -0700135static int qlt_check_reserve_free_req(struct qla_qpair *qpair, uint32_t);
136static inline uint32_t qlt_make_handle(struct qla_qpair *);
Quinn Tran8f6fc8d2017-03-15 09:48:46 -0700137
Nicholas Bellinger2d70c102012-05-15 14:34:28 -0400138/*
139 * Global Variables
140 */
Nicholas Bellinger2d70c102012-05-15 14:34:28 -0400141static struct kmem_cache *qla_tgt_mgmt_cmd_cachep;
Quinn Tranb5d15312017-08-30 10:16:49 -0700142struct kmem_cache *qla_tgt_plogi_cachep;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -0400143static mempool_t *qla_tgt_mgmt_cmd_mempool;
144static struct workqueue_struct *qla_tgt_wq;
145static DEFINE_MUTEX(qla_tgt_mutex);
146static LIST_HEAD(qla_tgt_glist);
147
Quinn Tranbe251522017-03-15 09:48:49 -0700148static const char *prot_op_str(u32 prot_op)
149{
150 switch (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";
159 }
160}
161
Alexei Potashnikdf673272015-07-14 16:00:46 -0400162/* This API intentionally takes dest as a parameter, rather than returning
163 * int value to avoid caller forgetting to issue wmb() after the store */
164void qlt_do_generation_tick(struct scsi_qla_host *vha, int *dest)
165{
166 scsi_qla_host_t *base_vha = pci_get_drvdata(vha->hw->pdev);
167 *dest = atomic_inc_return(&base_vha->generation_tick);
168 /* memory barrier */
169 wmb();
170}
171
Nicholas Bellinger2d70c102012-05-15 14:34:28 -0400172/* Might release hw lock, then reaquire!! */
173static inline int qlt_issue_marker(struct scsi_qla_host *vha, int vha_locked)
174{
175 /* Send marker if required */
176 if (unlikely(vha->marker_needed != 0)) {
177 int rc = qla2x00_issue_marker(vha, vha_locked);
Bart Van Asschebd432bb2019-04-11 14:53:17 -0700178
Nicholas Bellinger2d70c102012-05-15 14:34:28 -0400179 if (rc != QLA_SUCCESS) {
180 ql_dbg(ql_dbg_tgt, vha, 0xe03d,
181 "qla_target(%d): issue_marker() failed\n",
182 vha->vp_idx);
183 }
184 return rc;
185 }
186 return QLA_SUCCESS;
187}
188
189static inline
190struct scsi_qla_host *qlt_find_host_by_d_id(struct scsi_qla_host *vha,
Bart Van Asschedf95f392019-08-08 20:01:58 -0700191 be_id_t d_id)
Nicholas Bellinger2d70c102012-05-15 14:34:28 -0400192{
Quinn Tran482c9dc2017-03-15 09:48:54 -0700193 struct scsi_qla_host *host;
Bart Van Asscheaa20e382019-08-08 20:02:03 -0700194 uint32_t key;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -0400195
Bart Van Asschedf95f392019-08-08 20:01:58 -0700196 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)
Nicholas Bellinger2d70c102012-05-15 14:34:28 -0400199 return vha;
200
Bart Van Asscheaa20e382019-08-08 20:02:03 -0700201 key = be_to_port_id(d_id).b24;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -0400202
Quinn Tran482c9dc2017-03-15 09:48:54 -0700203 host = btree_lookup32(&vha->hw->tgt.host_map, key);
204 if (!host)
Quinn Tran604e2e52017-12-28 12:33:37 -0800205 ql_dbg(ql_dbg_tgt_mgt + ql_dbg_verbose, vha, 0xf005,
Quinn Tran83548fe2017-06-02 09:12:01 -0700206 "Unable to find host %06x\n", key);
Quinn Tran482c9dc2017-03-15 09:48:54 -0700207
208 return host;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -0400209}
210
211static inline
212struct scsi_qla_host *qlt_find_host_by_vp_idx(struct scsi_qla_host *vha,
213 uint16_t vp_idx)
214{
215 struct qla_hw_data *ha = vha->hw;
216
217 if (vha->vp_idx == vp_idx)
218 return vha;
219
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;
223
224 return NULL;
225}
226
Quinn Tran33e79972014-09-25 06:14:55 -0400227static inline void qlt_incr_num_pend_cmds(struct scsi_qla_host *vha)
228{
229 unsigned long flags;
230
231 spin_lock_irqsave(&vha->hw->tgt.q_full_lock, flags);
232
233 vha->hw->tgt.num_pend_cmds++;
Joe Carnucciofc90ada2016-07-06 11:14:23 -0400234 if (vha->hw->tgt.num_pend_cmds > vha->qla_stats.stat_max_pend_cmds)
235 vha->qla_stats.stat_max_pend_cmds =
Quinn Tran33e79972014-09-25 06:14:55 -0400236 vha->hw->tgt.num_pend_cmds;
237 spin_unlock_irqrestore(&vha->hw->tgt.q_full_lock, flags);
238}
239static inline void qlt_decr_num_pend_cmds(struct scsi_qla_host *vha)
240{
241 unsigned long flags;
242
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);
246}
247
Quinn Tran41dc5292017-01-19 22:28:03 -0800248
249static void qlt_queue_unknown_atio(scsi_qla_host_t *vha,
Quinn Tran82de8022017-06-13 20:47:17 -0700250 struct atio_from_isp *atio, uint8_t ha_locked)
Quinn Tran41dc5292017-01-19 22:28:03 -0800251{
252 struct qla_tgt_sess_op *u;
253 struct qla_tgt *tgt = vha->vha_tgt.qla_tgt;
254 unsigned long flags;
255
256 if (tgt->tgt_stop) {
Quinn Tran83548fe2017-06-02 09:12:01 -0700257 ql_dbg(ql_dbg_async, vha, 0x502c,
258 "qla_target(%d): dropping unknown ATIO_TYPE7, because tgt is being stopped",
259 vha->vp_idx);
Quinn Tran41dc5292017-01-19 22:28:03 -0800260 goto out_term;
261 }
262
263 u = kzalloc(sizeof(*u), GFP_ATOMIC);
Quinn Tran83548fe2017-06-02 09:12:01 -0700264 if (u == NULL)
Quinn Tran41dc5292017-01-19 22:28:03 -0800265 goto out_term;
Quinn Tran41dc5292017-01-19 22:28:03 -0800266
267 u->vha = vha;
268 memcpy(&u->atio, atio, sizeof(*atio));
269 INIT_LIST_HEAD(&u->cmd_list);
270
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);
274
275 schedule_delayed_work(&vha->unknown_atio_work, 1);
276
277out:
278 return;
279
280out_term:
Quinn Tran82de8022017-06-13 20:47:17 -0700281 qlt_send_term_exchange(vha->hw->base_qpair, NULL, atio, ha_locked, 0);
Quinn Tran41dc5292017-01-19 22:28:03 -0800282 goto out;
283}
284
285static void qlt_try_to_dequeue_unknown_atios(struct scsi_qla_host *vha,
286 uint8_t ha_locked)
287{
288 struct qla_tgt_sess_op *u, *t;
289 scsi_qla_host_t *host;
290 struct qla_tgt *tgt = vha->vha_tgt.qla_tgt;
291 unsigned long flags;
292 uint8_t queued = 0;
293
294 list_for_each_entry_safe(u, t, &vha->unknown_atio_list, cmd_list) {
295 if (u->aborted) {
Quinn Tran83548fe2017-06-02 09:12:01 -0700296 ql_dbg(ql_dbg_async, vha, 0x502e,
297 "Freeing unknown %s %p, because of Abort\n",
Quinn Tran41dc5292017-01-19 22:28:03 -0800298 "ATIO_TYPE7", u);
Quinn Tran82de8022017-06-13 20:47:17 -0700299 qlt_send_term_exchange(vha->hw->base_qpair, NULL,
300 &u->atio, ha_locked, 0);
Quinn Tran41dc5292017-01-19 22:28:03 -0800301 goto abort;
302 }
303
304 host = qlt_find_host_by_d_id(vha, u->atio.u.isp24.fcp_hdr.d_id);
305 if (host != NULL) {
Quinn Tran604e2e52017-12-28 12:33:37 -0800306 ql_dbg(ql_dbg_async + ql_dbg_verbose, vha, 0x502f,
Quinn Tran83548fe2017-06-02 09:12:01 -0700307 "Requeuing unknown ATIO_TYPE7 %p\n", u);
Quinn Tran41dc5292017-01-19 22:28:03 -0800308 qlt_24xx_atio_pkt(host, &u->atio, ha_locked);
309 } else if (tgt->tgt_stop) {
Quinn Tran604e2e52017-12-28 12:33:37 -0800310 ql_dbg(ql_dbg_async + ql_dbg_verbose, vha, 0x503a,
Quinn Tran83548fe2017-06-02 09:12:01 -0700311 "Freeing unknown %s %p, because tgt is being stopped\n",
312 "ATIO_TYPE7", u);
Quinn Tran82de8022017-06-13 20:47:17 -0700313 qlt_send_term_exchange(vha->hw->base_qpair, NULL,
314 &u->atio, ha_locked, 0);
Quinn Tran41dc5292017-01-19 22:28:03 -0800315 } else {
Quinn Tran604e2e52017-12-28 12:33:37 -0800316 ql_dbg(ql_dbg_async + ql_dbg_verbose, vha, 0x503d,
Quinn Tran83548fe2017-06-02 09:12:01 -0700317 "Reschedule u %p, vha %p, host %p\n", u, vha, host);
Quinn Tran41dc5292017-01-19 22:28:03 -0800318 if (!queued) {
319 queued = 1;
320 schedule_delayed_work(&vha->unknown_atio_work,
321 1);
322 }
323 continue;
324 }
325
326abort:
327 spin_lock_irqsave(&vha->cmd_list_lock, flags);
328 list_del(&u->cmd_list);
329 spin_unlock_irqrestore(&vha->cmd_list_lock, flags);
330 kfree(u);
331 }
332}
333
334void qlt_unknown_atio_work_fn(struct work_struct *work)
335{
336 struct scsi_qla_host *vha = container_of(to_delayed_work(work),
337 struct scsi_qla_host, unknown_atio_work);
338
339 qlt_try_to_dequeue_unknown_atios(vha, 0);
340}
341
Dilip Kumar Uppugandla3bb67df2015-12-17 14:57:11 -0500342static bool qlt_24xx_atio_pkt_all_vps(struct scsi_qla_host *vha,
Quinn Tran2f424b92015-12-17 14:57:07 -0500343 struct atio_from_isp *atio, uint8_t ha_locked)
Nicholas Bellinger2d70c102012-05-15 14:34:28 -0400344{
Quinn Tranf83adb62014-04-11 16:54:43 -0400345 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));
349
Nicholas Bellinger2d70c102012-05-15 14:34:28 -0400350 switch (atio->u.raw.entry_type) {
351 case ATIO_TYPE7:
352 {
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,
Bart Van Asschedf95f392019-08-08 20:01:58 -0700359 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);
Quinn Tran41dc5292017-01-19 22:28:03 -0800362
363
364 qlt_queue_unknown_atio(vha, atio, ha_locked);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -0400365 break;
366 }
Quinn Tran41dc5292017-01-19 22:28:03 -0800367 if (unlikely(!list_empty(&vha->unknown_atio_list)))
368 qlt_try_to_dequeue_unknown_atios(vha, ha_locked);
369
Quinn Tran2f424b92015-12-17 14:57:07 -0500370 qlt_24xx_atio_pkt(host, atio, ha_locked);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -0400371 break;
372 }
373
374 case IMMED_NOTIFY_TYPE:
375 {
376 struct scsi_qla_host *host = vha;
377 struct imm_ntfy_from_isp *entry =
378 (struct imm_ntfy_from_isp *)atio;
379
Quinn Tran82de8022017-06-13 20:47:17 -0700380 qlt_issue_marker(vha, ha_locked);
381
Nicholas Bellinger2d70c102012-05-15 14:34:28 -0400382 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);
392 break;
393 }
394 }
Quinn Tran2f424b92015-12-17 14:57:07 -0500395 qlt_24xx_atio_pkt(host, atio, ha_locked);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -0400396 break;
397 }
398
Quinn Tran41dc5292017-01-19 22:28:03 -0800399 case VP_RPT_ID_IOCB_TYPE:
400 qla24xx_report_id_acquisition(vha,
401 (struct vp_rpt_id_entry_24xx *)atio);
402 break;
403
404 case ABTS_RECV_24XX:
405 {
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,
409 entry->vp_index);
Quinn Tran8f6fc8d2017-03-15 09:48:46 -0700410 unsigned long flags;
411
Quinn Tran41dc5292017-01-19 22:28:03 -0800412 if (unlikely(!host)) {
Quinn Tran83548fe2017-06-02 09:12:01 -0700413 ql_dbg(ql_dbg_tgt, vha, 0xe00a,
Quinn Tran41dc5292017-01-19 22:28:03 -0800414 "qla_target(%d): Response pkt (ABTS_RECV_24XX) "
415 "received, with unknown vp_index %d\n",
416 vha->vp_idx, entry->vp_index);
417 break;
418 }
Quinn Tran8f6fc8d2017-03-15 09:48:46 -0700419 if (!ha_locked)
420 spin_lock_irqsave(&host->hw->hardware_lock, flags);
421 qlt_24xx_handle_abts(host, (struct abts_recv_from_24xx *)atio);
422 if (!ha_locked)
423 spin_unlock_irqrestore(&host->hw->hardware_lock, flags);
Quinn Tran41dc5292017-01-19 22:28:03 -0800424 break;
Quinn Tran41dc5292017-01-19 22:28:03 -0800425 }
426
427 /* case PUREX_IOCB_TYPE: ql2xmvasynctoatio */
428
Nicholas Bellinger2d70c102012-05-15 14:34:28 -0400429 default:
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);
433 break;
434 }
435
Dilip Kumar Uppugandla3bb67df2015-12-17 14:57:11 -0500436 return false;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -0400437}
438
Quinn Tran82de8022017-06-13 20:47:17 -0700439void qlt_response_pkt_all_vps(struct scsi_qla_host *vha,
440 struct rsp_que *rsp, response_t *pkt)
Nicholas Bellinger2d70c102012-05-15 14:34:28 -0400441{
442 switch (pkt->entry_type) {
Quinn Tranf83adb62014-04-11 16:54:43 -0400443 case CTIO_CRC2:
444 ql_dbg(ql_dbg_tgt, vha, 0xe073,
445 "qla_target(%d):%s: CRC2 Response pkt\n",
446 vha->vp_idx, __func__);
Bart Van Assche81881862017-12-07 16:02:46 -0800447 /* fall through */
Nicholas Bellinger2d70c102012-05-15 14:34:28 -0400448 case CTIO_TYPE7:
449 {
450 struct ctio7_from_24xx *entry = (struct ctio7_from_24xx *)pkt;
451 struct scsi_qla_host *host = qlt_find_host_by_vp_idx(vha,
452 entry->vp_index);
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);
458 break;
459 }
Quinn Tran82de8022017-06-13 20:47:17 -0700460 qlt_response_pkt(host, rsp, pkt);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -0400461 break;
462 }
463
464 case IMMED_NOTIFY_TYPE:
465 {
Colin Ian Kingda6d2962019-09-05 14:42:29 +0100466 struct scsi_qla_host *host;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -0400467 struct imm_ntfy_from_isp *entry =
468 (struct imm_ntfy_from_isp *)pkt;
469
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);
476 break;
477 }
Quinn Tran82de8022017-06-13 20:47:17 -0700478 qlt_response_pkt(host, rsp, pkt);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -0400479 break;
480 }
481
482 case NOTIFY_ACK_TYPE:
483 {
484 struct scsi_qla_host *host = vha;
485 struct nack_to_isp *entry = (struct nack_to_isp *)pkt;
486
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);
497 break;
498 }
499 }
Quinn Tran82de8022017-06-13 20:47:17 -0700500 qlt_response_pkt(host, rsp, pkt);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -0400501 break;
502 }
503
504 case ABTS_RECV_24XX:
505 {
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,
509 entry->vp_index);
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);
515 break;
516 }
Quinn Tran82de8022017-06-13 20:47:17 -0700517 qlt_response_pkt(host, rsp, pkt);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -0400518 break;
519 }
520
521 case ABTS_RESP_24XX:
522 {
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,
526 entry->vp_index);
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);
532 break;
533 }
Quinn Tran82de8022017-06-13 20:47:17 -0700534 qlt_response_pkt(host, rsp, pkt);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -0400535 break;
536 }
Nicholas Bellinger2d70c102012-05-15 14:34:28 -0400537 default:
Quinn Tran82de8022017-06-13 20:47:17 -0700538 qlt_response_pkt(vha, rsp, pkt);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -0400539 break;
540 }
541
542}
543
Alexei Potashnikb7bd1042015-12-17 14:57:02 -0500544/*
545 * All qlt_plogi_ack_t operations are protected by hardware_lock
546 */
Quinn Tran726b8542017-01-19 22:28:00 -0800547static int qla24xx_post_nack_work(struct scsi_qla_host *vha, fc_port_t *fcport,
548 struct imm_ntfy_from_isp *ntfy, int type)
549{
550 struct qla_work_evt *e;
Bart Van Asschebd432bb2019-04-11 14:53:17 -0700551
Quinn Tran726b8542017-01-19 22:28:00 -0800552 e = qla2x00_alloc_work(vha, QLA_EVT_NACK);
553 if (!e)
554 return QLA_FUNCTION_FAILED;
555
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);
560}
561
Bart Van Assche6c18a432019-08-08 20:02:04 -0700562static void qla2x00_async_nack_sp_done(srb_t *sp, int res)
Quinn Tran726b8542017-01-19 22:28:00 -0800563{
Joe Carnuccio25ff6af2017-01-19 22:28:04 -0800564 struct scsi_qla_host *vha = sp->vha;
Quinn Tran726b8542017-01-19 22:28:00 -0800565 unsigned long flags;
566
Quinn Tran83548fe2017-06-02 09:12:01 -0700567 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);
Quinn Tran726b8542017-01-19 22:28:00 -0800570
571 spin_lock_irqsave(&vha->hw->tgt.sess_lock, flags);
572 sp->fcport->flags &= ~FCF_ASYNC_SENT;
Quinn Tran7c3f8fd2017-06-13 20:47:22 -0700573 sp->fcport->chip_reset = vha->hw->base_qpair->chip_reset;
Quinn Tran726b8542017-01-19 22:28:00 -0800574
575 switch (sp->type) {
576 case SRB_NACK_PLOGI:
577 sp->fcport->login_gen++;
578 sp->fcport->fw_login_state = DSC_LS_PLOGI_COMP;
579 sp->fcport->logout_on_delete = 1;
Quinn Tran5b334692017-03-15 09:48:48 -0700580 sp->fcport->plogi_nack_done_deadline = jiffies + HZ;
Quinn Tran35158322017-08-30 10:16:50 -0700581 sp->fcport->send_els_logo = 0;
Quinn Tran726b8542017-01-19 22:28:00 -0800582 break;
583
584 case SRB_NACK_PRLI:
585 sp->fcport->fw_login_state = DSC_LS_PRLI_COMP;
586 sp->fcport->deleted = 0;
Quinn Tran35158322017-08-30 10:16:50 -0700587 sp->fcport->send_els_logo = 0;
Quinn Tran726b8542017-01-19 22:28:00 -0800588
589 if (!sp->fcport->login_succ &&
590 !IS_SW_RESV_ADDR(sp->fcport->d_id)) {
591 sp->fcport->login_succ = 1;
592
593 vha->fcport_count++;
Quinn Tran0aca7782018-09-04 14:19:16 -0700594 spin_unlock_irqrestore(&vha->hw->tgt.sess_lock, flags);
Quinn Trancd4ed6b2018-08-31 11:24:31 -0700595 qla24xx_sched_upd_fcport(sp->fcport);
Quinn Tran0aca7782018-09-04 14:19:16 -0700596 spin_lock_irqsave(&vha->hw->tgt.sess_lock, flags);
Quinn Tran29528492018-05-01 09:01:45 -0700597 } else {
598 sp->fcport->login_retry = 0;
Shyam Sundar27258a52019-12-17 14:06:06 -0800599 qla2x00_set_fcport_disc_state(sp->fcport,
600 DSC_LOGIN_COMPLETE);
Quinn Tran29528492018-05-01 09:01:45 -0700601 sp->fcport->deleted = 0;
602 sp->fcport->logout_on_delete = 1;
Quinn Tran726b8542017-01-19 22:28:00 -0800603 }
604 break;
605
606 case SRB_NACK_LOGO:
607 sp->fcport->login_gen++;
608 sp->fcport->fw_login_state = DSC_LS_PORT_UNAVAIL;
609 qlt_logo_completion_handler(sp->fcport, MBS_COMMAND_COMPLETE);
610 break;
611 }
612 spin_unlock_irqrestore(&vha->hw->tgt.sess_lock, flags);
613
Joe Carnuccio25ff6af2017-01-19 22:28:04 -0800614 sp->free(sp);
Quinn Tran726b8542017-01-19 22:28:00 -0800615}
616
617int qla24xx_async_notify_ack(scsi_qla_host_t *vha, fc_port_t *fcport,
618 struct imm_ntfy_from_isp *ntfy, int type)
619{
620 int rval = QLA_FUNCTION_FAILED;
621 srb_t *sp;
622 char *c = NULL;
623
624 fcport->flags |= FCF_ASYNC_SENT;
625 switch (type) {
626 case SRB_NACK_PLOGI:
627 fcport->fw_login_state = DSC_LS_PLOGI_PEND;
628 c = "PLOGI";
629 break;
630 case SRB_NACK_PRLI:
631 fcport->fw_login_state = DSC_LS_PRLI_PEND;
Quinn Tranec7193e2017-03-15 09:48:55 -0700632 fcport->deleted = 0;
Quinn Tran726b8542017-01-19 22:28:00 -0800633 c = "PRLI";
634 break;
635 case SRB_NACK_LOGO:
636 fcport->fw_login_state = DSC_LS_LOGO_PEND;
637 c = "LOGO";
638 break;
639 }
640
641 sp = qla2x00_get_sp(vha, fcport, GFP_ATOMIC);
642 if (!sp)
643 goto done;
644
645 sp->type = type;
646 sp->name = "nack";
647
Ben Hutchingse74e7d92018-03-20 21:36:14 +0000648 sp->u.iocb_cmd.timeout = qla2x00_async_iocb_timeout;
Quinn Tran726b8542017-01-19 22:28:00 -0800649 qla2x00_init_timer(sp, qla2x00_get_async_timeout(vha)+2);
650
651 sp->u.iocb_cmd.u.nack.ntfy = ntfy;
Quinn Tran726b8542017-01-19 22:28:00 -0800652 sp->done = qla2x00_async_nack_sp_done;
653
Quinn Tran83548fe2017-06-02 09:12:01 -0700654 ql_dbg(ql_dbg_disc, vha, 0x20f4,
655 "Async-%s %8phC hndl %x %s\n",
656 sp->name, fcport->port_name, sp->handle, c);
Quinn Tran726b8542017-01-19 22:28:00 -0800657
Bill Kuzejaf233e8c2019-02-14 10:52:29 -0500658 rval = qla2x00_start_sp(sp);
659 if (rval != QLA_SUCCESS)
660 goto done_free_sp;
661
Quinn Tran726b8542017-01-19 22:28:00 -0800662 return rval;
663
664done_free_sp:
Joe Carnuccio25ff6af2017-01-19 22:28:04 -0800665 sp->free(sp);
Quinn Tran726b8542017-01-19 22:28:00 -0800666done:
667 fcport->flags &= ~FCF_ASYNC_SENT;
668 return rval;
669}
670
671void qla24xx_do_nack_work(struct scsi_qla_host *vha, struct qla_work_evt *e)
672{
673 fc_port_t *t;
Quinn Tran726b8542017-01-19 22:28:00 -0800674
675 switch (e->u.nack.type) {
676 case SRB_NACK_PRLI:
Quinn Tran1021f0b2019-01-24 23:23:45 -0800677 t = e->u.nack.fcport;
678 flush_work(&t->del_work);
679 flush_work(&t->free_work);
Quinn Tran726b8542017-01-19 22:28:00 -0800680 mutex_lock(&vha->vha_tgt.tgt_mutex);
681 t = qlt_create_sess(vha, e->u.nack.fcport, 0);
682 mutex_unlock(&vha->vha_tgt.tgt_mutex);
683 if (t) {
Quinn Tran83548fe2017-06-02 09:12:01 -0700684 ql_log(ql_log_info, vha, 0xd034,
Quinn Tran726b8542017-01-19 22:28:00 -0800685 "%s create sess success %p", __func__, t);
Quinn Tran726b8542017-01-19 22:28:00 -0800686 /* create sess has an extra kref */
687 vha->hw->tgt.tgt_ops->put_sess(e->u.nack.fcport);
Quinn Tran726b8542017-01-19 22:28:00 -0800688 }
689 break;
690 }
691 qla24xx_async_notify_ack(vha, e->u.nack.fcport,
Bart Van Assche845bbb02019-04-11 14:53:18 -0700692 (struct imm_ntfy_from_isp *)e->u.nack.iocb, e->u.nack.type);
Quinn Tran726b8542017-01-19 22:28:00 -0800693}
694
695void qla24xx_delete_sess_fn(struct work_struct *work)
696{
697 fc_port_t *fcport = container_of(work, struct fc_port, del_work);
698 struct qla_hw_data *ha = fcport->vha->hw;
Quinn Tran726b8542017-01-19 22:28:00 -0800699
700 if (fcport->se_sess) {
701 ha->tgt.tgt_ops->shutdown_sess(fcport);
702 ha->tgt.tgt_ops->put_sess(fcport);
703 } else {
704 qlt_unreg_sess(fcport);
705 }
Quinn Tran726b8542017-01-19 22:28:00 -0800706}
707
708/*
709 * Called from qla2x00_reg_remote_port()
710 */
711void qlt_fc_port_added(struct scsi_qla_host *vha, fc_port_t *fcport)
712{
713 struct qla_hw_data *ha = vha->hw;
714 struct qla_tgt *tgt = vha->vha_tgt.qla_tgt;
715 struct fc_port *sess = fcport;
716 unsigned long flags;
717
718 if (!vha->hw->tgt.tgt_ops)
719 return;
720
721 spin_lock_irqsave(&ha->tgt.sess_lock, flags);
722 if (tgt->tgt_stop) {
723 spin_unlock_irqrestore(&ha->tgt.sess_lock, flags);
724 return;
725 }
726
727 if (fcport->disc_state == DSC_DELETE_PEND) {
728 spin_unlock_irqrestore(&ha->tgt.sess_lock, flags);
729 return;
730 }
731
732 if (!sess->se_sess) {
733 spin_unlock_irqrestore(&ha->tgt.sess_lock, flags);
734
735 mutex_lock(&vha->vha_tgt.tgt_mutex);
736 sess = qlt_create_sess(vha, fcport, false);
737 mutex_unlock(&vha->vha_tgt.tgt_mutex);
738
739 spin_lock_irqsave(&ha->tgt.sess_lock, flags);
740 } else {
741 if (fcport->fw_login_state == DSC_LS_PRLI_COMP) {
742 spin_unlock_irqrestore(&ha->tgt.sess_lock, flags);
743 return;
744 }
745
746 if (!kref_get_unless_zero(&sess->sess_kref)) {
Quinn Tran83548fe2017-06-02 09:12:01 -0700747 ql_dbg(ql_dbg_disc, vha, 0x2107,
Quinn Tran726b8542017-01-19 22:28:00 -0800748 "%s: kref_get fail sess %8phC \n",
749 __func__, sess->port_name);
750 spin_unlock_irqrestore(&ha->tgt.sess_lock, flags);
751 return;
752 }
753
754 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf04c,
755 "qla_target(%u): %ssession for port %8phC "
756 "(loop ID %d) reappeared\n", vha->vp_idx,
757 sess->local ? "local " : "", sess->port_name, sess->loop_id);
758
759 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf007,
760 "Reappeared sess %p\n", sess);
761
762 ha->tgt.tgt_ops->update_sess(sess, fcport->d_id,
763 fcport->loop_id,
764 (fcport->flags & FCF_CONF_COMP_SUPPORTED));
765 }
766
767 if (sess && sess->local) {
768 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf04d,
769 "qla_target(%u): local session for "
770 "port %8phC (loop ID %d) became global\n", vha->vp_idx,
771 fcport->port_name, sess->loop_id);
772 sess->local = 0;
773 }
Quinn Tran726b8542017-01-19 22:28:00 -0800774 spin_unlock_irqrestore(&ha->tgt.sess_lock, flags);
Bart Van Assche300ec742019-04-17 14:44:41 -0700775
776 ha->tgt.tgt_ops->put_sess(sess);
Quinn Tran726b8542017-01-19 22:28:00 -0800777}
Alexei Potashnikb7bd1042015-12-17 14:57:02 -0500778
779/*
780 * This is a zero-base ref-counting solution, since hardware_lock
781 * guarantees that ref_count is not modified concurrently.
782 * Upon successful return content of iocb is undefined
783 */
Quinn Tran5d964832017-01-19 22:27:59 -0800784static struct qlt_plogi_ack_t *
Alexei Potashnikb7bd1042015-12-17 14:57:02 -0500785qlt_plogi_ack_find_add(struct scsi_qla_host *vha, port_id_t *id,
786 struct imm_ntfy_from_isp *iocb)
787{
Quinn Tran5d964832017-01-19 22:27:59 -0800788 struct qlt_plogi_ack_t *pla;
Alexei Potashnikb7bd1042015-12-17 14:57:02 -0500789
Bart Van Assche57bf5952019-08-08 20:01:34 -0700790 lockdep_assert_held(&vha->hw->hardware_lock);
791
Alexei Potashnikb7bd1042015-12-17 14:57:02 -0500792 list_for_each_entry(pla, &vha->plogi_ack_list, list) {
793 if (pla->id.b24 == id->b24) {
Quinn Tran48acad02018-08-02 13:16:44 -0700794 ql_dbg(ql_dbg_disc + ql_dbg_verbose, vha, 0x210d,
795 "%s %d %8phC Term INOT due to new INOT",
796 __func__, __LINE__,
797 pla->iocb.u.isp24.port_name);
Alexei Potashnikb7bd1042015-12-17 14:57:02 -0500798 qlt_send_term_imm_notif(vha, &pla->iocb, 1);
Quinn Tran5d964832017-01-19 22:27:59 -0800799 memcpy(&pla->iocb, iocb, sizeof(pla->iocb));
Alexei Potashnikb7bd1042015-12-17 14:57:02 -0500800 return pla;
801 }
802 }
803
804 pla = kmem_cache_zalloc(qla_tgt_plogi_cachep, GFP_ATOMIC);
805 if (!pla) {
806 ql_dbg(ql_dbg_async, vha, 0x5088,
807 "qla_target(%d): Allocation of plogi_ack failed\n",
808 vha->vp_idx);
809 return NULL;
810 }
811
Quinn Tran5d964832017-01-19 22:27:59 -0800812 memcpy(&pla->iocb, iocb, sizeof(pla->iocb));
Alexei Potashnikb7bd1042015-12-17 14:57:02 -0500813 pla->id = *id;
814 list_add_tail(&pla->list, &vha->plogi_ack_list);
815
816 return pla;
817}
818
Quinn Tran726b8542017-01-19 22:28:00 -0800819void qlt_plogi_ack_unref(struct scsi_qla_host *vha,
Quinn Tran5d964832017-01-19 22:27:59 -0800820 struct qlt_plogi_ack_t *pla)
Alexei Potashnikb7bd1042015-12-17 14:57:02 -0500821{
Quinn Tran5d964832017-01-19 22:27:59 -0800822 struct imm_ntfy_from_isp *iocb = &pla->iocb;
Quinn Tran726b8542017-01-19 22:28:00 -0800823 port_id_t port_id;
824 uint16_t loop_id;
825 fc_port_t *fcport = pla->fcport;
826
Alexei Potashnikb7bd1042015-12-17 14:57:02 -0500827 BUG_ON(!pla->ref_count);
828 pla->ref_count--;
829
830 if (pla->ref_count)
831 return;
832
Quinn Tran726b8542017-01-19 22:28:00 -0800833 ql_dbg(ql_dbg_disc, vha, 0x5089,
Alexei Potashnikb7bd1042015-12-17 14:57:02 -0500834 "Sending PLOGI ACK to wwn %8phC s_id %02x:%02x:%02x loop_id %#04x"
Quinn Tran5d964832017-01-19 22:27:59 -0800835 " exch %#x ox_id %#x\n", iocb->u.isp24.port_name,
836 iocb->u.isp24.port_id[2], iocb->u.isp24.port_id[1],
837 iocb->u.isp24.port_id[0],
838 le16_to_cpu(iocb->u.isp24.nport_handle),
839 iocb->u.isp24.exchange_address, iocb->ox_id);
Quinn Tran726b8542017-01-19 22:28:00 -0800840
841 port_id.b.domain = iocb->u.isp24.port_id[2];
842 port_id.b.area = iocb->u.isp24.port_id[1];
843 port_id.b.al_pa = iocb->u.isp24.port_id[0];
844 port_id.b.rsvd_1 = 0;
845
846 loop_id = le16_to_cpu(iocb->u.isp24.nport_handle);
847
848 fcport->loop_id = loop_id;
849 fcport->d_id = port_id;
Quinn Tran9cd883f2017-12-28 12:33:24 -0800850 if (iocb->u.isp24.status_subcode == ELS_PLOGI)
851 qla24xx_post_nack_work(vha, fcport, iocb, SRB_NACK_PLOGI);
852 else
853 qla24xx_post_nack_work(vha, fcport, iocb, SRB_NACK_PRLI);
Quinn Tran726b8542017-01-19 22:28:00 -0800854
855 list_for_each_entry(fcport, &vha->vp_fcports, list) {
856 if (fcport->plogi_link[QLT_PLOGI_LINK_SAME_WWN] == pla)
857 fcport->plogi_link[QLT_PLOGI_LINK_SAME_WWN] = NULL;
858 if (fcport->plogi_link[QLT_PLOGI_LINK_CONFLICT] == pla)
859 fcport->plogi_link[QLT_PLOGI_LINK_CONFLICT] = NULL;
860 }
Alexei Potashnikb7bd1042015-12-17 14:57:02 -0500861
862 list_del(&pla->list);
863 kmem_cache_free(qla_tgt_plogi_cachep, pla);
864}
865
Quinn Tran726b8542017-01-19 22:28:00 -0800866void
Quinn Tran5d964832017-01-19 22:27:59 -0800867qlt_plogi_ack_link(struct scsi_qla_host *vha, struct qlt_plogi_ack_t *pla,
868 struct fc_port *sess, enum qlt_plogi_link_t link)
Alexei Potashnikb7bd1042015-12-17 14:57:02 -0500869{
Quinn Tran5d964832017-01-19 22:27:59 -0800870 struct imm_ntfy_from_isp *iocb = &pla->iocb;
Alexei Potashnikb7bd1042015-12-17 14:57:02 -0500871 /* Inc ref_count first because link might already be pointing at pla */
872 pla->ref_count++;
873
Quinn Tran726b8542017-01-19 22:28:00 -0800874 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf097,
875 "Linking sess %p [%d] wwn %8phC with PLOGI ACK to wwn %8phC"
876 " s_id %02x:%02x:%02x, ref=%d pla %p link %d\n",
877 sess, link, sess->port_name,
878 iocb->u.isp24.port_name, iocb->u.isp24.port_id[2],
879 iocb->u.isp24.port_id[1], iocb->u.isp24.port_id[0],
880 pla->ref_count, pla, link);
881
Quinn Tran5ef696a2017-12-04 14:45:05 -0800882 if (link == QLT_PLOGI_LINK_CONFLICT) {
883 switch (sess->disc_state) {
884 case DSC_DELETED:
885 case DSC_DELETE_PEND:
886 pla->ref_count--;
887 return;
888 default:
889 break;
890 }
891 }
892
Alexei Potashnikb7bd1042015-12-17 14:57:02 -0500893 if (sess->plogi_link[link])
894 qlt_plogi_ack_unref(vha, sess->plogi_link[link]);
895
Quinn Tran726b8542017-01-19 22:28:00 -0800896 if (link == QLT_PLOGI_LINK_SAME_WWN)
897 pla->fcport = sess;
Alexei Potashnikb7bd1042015-12-17 14:57:02 -0500898
899 sess->plogi_link[link] = pla;
900}
901
Alexei Potashnik71cdc072015-12-17 14:57:01 -0500902typedef struct {
903 /* These fields must be initialized by the caller */
904 port_id_t id;
905 /*
906 * number of cmds dropped while we were waiting for
907 * initiator to ack LOGO initialize to 1 if LOGO is
908 * triggered by a command, otherwise, to 0
909 */
910 int cmd_count;
911
912 /* These fields are used by callee */
913 struct list_head list;
914} qlt_port_logo_t;
915
916static void
917qlt_send_first_logo(struct scsi_qla_host *vha, qlt_port_logo_t *logo)
918{
919 qlt_port_logo_t *tmp;
920 int res;
921
922 mutex_lock(&vha->vha_tgt.tgt_mutex);
923
924 list_for_each_entry(tmp, &vha->logo_list, list) {
925 if (tmp->id.b24 == logo->id.b24) {
926 tmp->cmd_count += logo->cmd_count;
927 mutex_unlock(&vha->vha_tgt.tgt_mutex);
928 return;
929 }
930 }
931
932 list_add_tail(&logo->list, &vha->logo_list);
933
934 mutex_unlock(&vha->vha_tgt.tgt_mutex);
935
936 res = qla24xx_els_dcmd_iocb(vha, ELS_DCMD_LOGO, logo->id);
937
938 mutex_lock(&vha->vha_tgt.tgt_mutex);
939 list_del(&logo->list);
940 mutex_unlock(&vha->vha_tgt.tgt_mutex);
941
Alexei Potashnikb7bd1042015-12-17 14:57:02 -0500942 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf098,
943 "Finished LOGO to %02x:%02x:%02x, dropped %d cmds, res = %#x\n",
944 logo->id.b.domain, logo->id.b.area, logo->id.b.al_pa,
945 logo->cmd_count, res);
Alexei Potashnik71cdc072015-12-17 14:57:01 -0500946}
947
Darren Trapp9dd96862018-03-20 23:09:32 -0700948void qlt_free_session_done(struct work_struct *work)
Nicholas Bellinger2d70c102012-05-15 14:34:28 -0400949{
Quinn Tran5d964832017-01-19 22:27:59 -0800950 struct fc_port *sess = container_of(work, struct fc_port,
Nicholas Bellinger2d70c102012-05-15 14:34:28 -0400951 free_work);
952 struct qla_tgt *tgt = sess->tgt;
953 struct scsi_qla_host *vha = sess->vha;
954 struct qla_hw_data *ha = vha->hw;
Alexei Potashnika6ca8872015-07-14 16:00:44 -0400955 unsigned long flags;
956 bool logout_started = false;
Quinn Tranfd5564b2019-09-12 11:09:07 -0700957 scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
Quinn Tran9cd883f2017-12-28 12:33:24 -0800958 struct qlt_plogi_ack_t *own =
959 sess->plogi_link[QLT_PLOGI_LINK_SAME_WWN];
Alexei Potashnika6ca8872015-07-14 16:00:44 -0400960
Quinn Trane1217dc2019-12-17 14:06:15 -0800961 ql_dbg(ql_dbg_disc, vha, 0xf084,
Alexei Potashnika6ca8872015-07-14 16:00:44 -0400962 "%s: se_sess %p / sess %p from port %8phC loop_id %#04x"
Alexei Potashnikb7bd1042015-12-17 14:57:02 -0500963 " s_id %02x:%02x:%02x logout %d keep %d els_logo %d\n",
Alexei Potashnika6ca8872015-07-14 16:00:44 -0400964 __func__, sess->se_sess, sess, sess->port_name, sess->loop_id,
Quinn Tran37cacc02017-01-19 22:27:58 -0800965 sess->d_id.b.domain, sess->d_id.b.area, sess->d_id.b.al_pa,
Alexei Potashnika6ca8872015-07-14 16:00:44 -0400966 sess->logout_on_delete, sess->keep_nport_handle,
Alexei Potashnikb7bd1042015-12-17 14:57:02 -0500967 sess->send_els_logo);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -0400968
Quinn Tran726b8542017-01-19 22:28:00 -0800969 if (!IS_SW_RESV_ADDR(sess->d_id)) {
Himanshu Madhani3c75ad12019-12-17 14:06:04 -0800970 qla2x00_mark_device_lost(vha, sess, 0);
Quinn Tran21374902019-04-23 14:52:35 -0700971
Quinn Tran41dc5292017-01-19 22:28:03 -0800972 if (sess->send_els_logo) {
973 qlt_port_logo_t logo;
Alexei Potashnik71cdc072015-12-17 14:57:01 -0500974
Quinn Tran41dc5292017-01-19 22:28:03 -0800975 logo.id = sess->d_id;
976 logo.cmd_count = 0;
Quinn Trancb97f2c2018-08-02 13:16:51 -0700977 if (!own)
978 qlt_send_first_logo(vha, &logo);
Himanshu Madhania2390342018-01-22 12:04:20 -0800979 sess->send_els_logo = 0;
Quinn Tran41dc5292017-01-19 22:28:03 -0800980 }
981
Quinn Tranba743f92017-12-04 14:45:12 -0800982 if (sess->logout_on_delete && sess->loop_id != FC_NO_LOOP_ID) {
Quinn Tran41dc5292017-01-19 22:28:03 -0800983 int rc;
984
Quinn Tran9cd883f2017-12-28 12:33:24 -0800985 if (!own ||
986 (own &&
987 (own->iocb.u.isp24.status_subcode == ELS_PLOGI))) {
988 rc = qla2x00_post_async_logout_work(vha, sess,
989 NULL);
990 if (rc != QLA_SUCCESS)
991 ql_log(ql_log_warn, vha, 0xf085,
992 "Schedule logo failed sess %p rc %d\n",
993 sess, rc);
994 else
995 logout_started = true;
996 } else if (own && (own->iocb.u.isp24.status_subcode ==
997 ELS_PRLI) && ha->flags.rida_fmt2) {
998 rc = qla2x00_post_async_prlo_work(vha, sess,
999 NULL);
1000 if (rc != QLA_SUCCESS)
1001 ql_log(ql_log_warn, vha, 0xf085,
1002 "Schedule PRLO failed sess %p rc %d\n",
1003 sess, rc);
1004 else
1005 logout_started = true;
1006 }
Quinn Tranbaf23ed2019-06-16 08:05:53 -07001007 } /* if sess->logout_on_delete */
1008
1009 if (sess->nvme_flag & NVME_FLAG_REGISTERED &&
1010 !(sess->nvme_flag & NVME_FLAG_DELETING)) {
1011 sess->nvme_flag |= NVME_FLAG_DELETING;
1012 qla_nvme_unregister_remote_port(sess);
Quinn Tran41dc5292017-01-19 22:28:03 -08001013 }
Quinn Tran726b8542017-01-19 22:28:00 -08001014 }
Alexei Potashnika6ca8872015-07-14 16:00:44 -04001015
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001016 /*
1017 * Release the target session for FC Nexus from fabric module code.
1018 */
1019 if (sess->se_sess != NULL)
1020 ha->tgt.tgt_ops->free_session(sess);
1021
Alexei Potashnika6ca8872015-07-14 16:00:44 -04001022 if (logout_started) {
1023 bool traced = false;
Quinn Tranc3b6a1d2019-09-12 11:09:06 -07001024 u16 cnt = 0;
Alexei Potashnika6ca8872015-07-14 16:00:44 -04001025
Mark Rutland6aa7de02017-10-23 14:07:29 -07001026 while (!READ_ONCE(sess->logout_completed)) {
Alexei Potashnika6ca8872015-07-14 16:00:44 -04001027 if (!traced) {
Quinn Trane1217dc2019-12-17 14:06:15 -08001028 ql_dbg(ql_dbg_disc, vha, 0xf086,
Alexei Potashnika6ca8872015-07-14 16:00:44 -04001029 "%s: waiting for sess %p logout\n",
1030 __func__, sess);
1031 traced = true;
1032 }
1033 msleep(100);
Quinn Tranc3b6a1d2019-09-12 11:09:06 -07001034 cnt++;
1035 if (cnt > 200)
1036 break;
Alexei Potashnika6ca8872015-07-14 16:00:44 -04001037 }
1038
Quinn Tran726b8542017-01-19 22:28:00 -08001039 ql_dbg(ql_dbg_disc, vha, 0xf087,
Quinn Tran9cd883f2017-12-28 12:33:24 -08001040 "%s: sess %p logout completed\n", __func__, sess);
Quinn Tran41dc5292017-01-19 22:28:03 -08001041 }
1042
1043 if (sess->logo_ack_needed) {
1044 sess->logo_ack_needed = 0;
1045 qla24xx_async_notify_ack(vha, sess,
1046 (struct imm_ntfy_from_isp *)sess->iocb, SRB_NACK_LOGO);
Alexei Potashnika6ca8872015-07-14 16:00:44 -04001047 }
1048
Quinn Trane1217dc2019-12-17 14:06:15 -08001049 spin_lock_irqsave(&vha->work_lock, flags);
1050 sess->flags &= ~FCF_ASYNC_SENT;
1051 spin_unlock_irqrestore(&vha->work_lock, flags);
1052
Quinn Tran726b8542017-01-19 22:28:00 -08001053 spin_lock_irqsave(&ha->tgt.sess_lock, flags);
1054 if (sess->se_sess) {
1055 sess->se_sess = NULL;
1056 if (tgt && !IS_SW_RESV_ADDR(sess->d_id))
1057 tgt->sess_count--;
1058 }
1059
Shyam Sundar27258a52019-12-17 14:06:06 -08001060 qla2x00_set_fcport_disc_state(sess, DSC_DELETED);
Quinn Tran726b8542017-01-19 22:28:00 -08001061 sess->fw_login_state = DSC_LS_PORT_UNAVAIL;
1062 sess->deleted = QLA_SESS_DELETED;
Quinn Tran726b8542017-01-19 22:28:00 -08001063
1064 if (sess->login_succ && !IS_SW_RESV_ADDR(sess->d_id)) {
1065 vha->fcport_count--;
1066 sess->login_succ = 0;
1067 }
1068
Quinn Tranba743f92017-12-04 14:45:12 -08001069 qla2x00_clear_loop_id(sess);
Quinn Tran726b8542017-01-19 22:28:00 -08001070
1071 if (sess->conflict) {
1072 sess->conflict->login_pause = 0;
1073 sess->conflict = NULL;
1074 if (!test_bit(UNLOADING, &vha->dpc_flags))
1075 set_bit(RELOGIN_NEEDED, &vha->dpc_flags);
1076 }
1077
Alexei Potashnikb7bd1042015-12-17 14:57:02 -05001078 {
Quinn Tran5d964832017-01-19 22:27:59 -08001079 struct qlt_plogi_ack_t *con =
Alexei Potashnikb7bd1042015-12-17 14:57:02 -05001080 sess->plogi_link[QLT_PLOGI_LINK_CONFLICT];
Quinn Tran5d964832017-01-19 22:27:59 -08001081 struct imm_ntfy_from_isp *iocb;
Bart Van Asschebd432bb2019-04-11 14:53:17 -07001082
Quinn Tran48acad02018-08-02 13:16:44 -07001083 own = sess->plogi_link[QLT_PLOGI_LINK_SAME_WWN];
Alexei Potashnikb7bd1042015-12-17 14:57:02 -05001084
1085 if (con) {
Quinn Tran5d964832017-01-19 22:27:59 -08001086 iocb = &con->iocb;
Alexei Potashnikb7bd1042015-12-17 14:57:02 -05001087 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf099,
Quinn Tran5d964832017-01-19 22:27:59 -08001088 "se_sess %p / sess %p port %8phC is gone,"
1089 " %s (ref=%d), releasing PLOGI for %8phC (ref=%d)\n",
1090 sess->se_sess, sess, sess->port_name,
1091 own ? "releasing own PLOGI" : "no own PLOGI pending",
1092 own ? own->ref_count : -1,
1093 iocb->u.isp24.port_name, con->ref_count);
Alexei Potashnikb7bd1042015-12-17 14:57:02 -05001094 qlt_plogi_ack_unref(vha, con);
Quinn Tran726b8542017-01-19 22:28:00 -08001095 sess->plogi_link[QLT_PLOGI_LINK_CONFLICT] = NULL;
Alexei Potashnikb7bd1042015-12-17 14:57:02 -05001096 } else {
1097 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf09a,
1098 "se_sess %p / sess %p port %8phC is gone, %s (ref=%d)\n",
1099 sess->se_sess, sess, sess->port_name,
1100 own ? "releasing own PLOGI" :
1101 "no own PLOGI pending",
1102 own ? own->ref_count : -1);
1103 }
1104
Quinn Tran726b8542017-01-19 22:28:00 -08001105 if (own) {
1106 sess->fw_login_state = DSC_LS_PLOGI_PEND;
Alexei Potashnikb7bd1042015-12-17 14:57:02 -05001107 qlt_plogi_ack_unref(vha, own);
Quinn Tran726b8542017-01-19 22:28:00 -08001108 sess->plogi_link[QLT_PLOGI_LINK_SAME_WWN] = NULL;
1109 }
Alexei Potashnikb7bd1042015-12-17 14:57:02 -05001110 }
Quinn Tran1ae634e2017-12-28 12:33:44 -08001111
Quinn Tran86196a82019-11-25 19:56:51 +03001112 sess->explicit_logout = 0;
Quinn Tran5d964832017-01-19 22:27:59 -08001113 spin_unlock_irqrestore(&ha->tgt.sess_lock, flags);
Quinn Tranfd5564b2019-09-12 11:09:07 -07001114 sess->free_pending = 0;
Quinn Tran5d964832017-01-19 22:27:59 -08001115
Quinn Trane1217dc2019-12-17 14:06:15 -08001116 ql_dbg(ql_dbg_disc, vha, 0xf001,
Quinn Tran726b8542017-01-19 22:28:00 -08001117 "Unregistration of sess %p %8phC finished fcp_cnt %d\n",
1118 sess, sess->port_name, vha->fcport_count);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001119
Quinn Tran726b8542017-01-19 22:28:00 -08001120 if (tgt && (tgt->sess_count == 0))
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001121 wake_up_all(&tgt->waitQ);
Quinn Tran726b8542017-01-19 22:28:00 -08001122
Quinn Tranfd5564b2019-09-12 11:09:07 -07001123 if (!test_bit(PFLG_DRIVER_REMOVING, &base_vha->pci_flags) &&
Quinn Tranf5187b72019-09-12 11:09:08 -07001124 !(vha->vp_idx && test_bit(VPORT_DELETE, &vha->dpc_flags)) &&
Quinn Tranfd5564b2019-09-12 11:09:07 -07001125 (!tgt || !tgt->tgt_stop) && !LOOP_TRANSITION(vha)) {
Quinn Trana4239942017-12-28 12:33:26 -08001126 switch (vha->host->active_mode) {
1127 case MODE_INITIATOR:
1128 case MODE_DUAL:
1129 set_bit(RELOGIN_NEEDED, &vha->dpc_flags);
1130 qla2xxx_wake_dpc(vha);
1131 break;
1132 case MODE_TARGET:
1133 default:
1134 /* no-op */
1135 break;
1136 }
Quinn Tran726b8542017-01-19 22:28:00 -08001137 }
Quinn Tranfd5564b2019-09-12 11:09:07 -07001138
1139 if (vha->fcport_count == 0)
1140 wake_up_all(&vha->fcport_waitQ);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001141}
1142
Quinn Tran75601512015-12-17 14:57:04 -05001143/* ha->tgt.sess_lock supposed to be held on entry */
Quinn Tran5d964832017-01-19 22:27:59 -08001144void qlt_unreg_sess(struct fc_port *sess)
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001145{
1146 struct scsi_qla_host *vha = sess->vha;
Quinn Tran1ae634e2017-12-28 12:33:44 -08001147 unsigned long flags;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001148
Quinn Tran83548fe2017-06-02 09:12:01 -07001149 ql_dbg(ql_dbg_disc, sess->vha, 0x210a,
Quinn Tran5d964832017-01-19 22:27:59 -08001150 "%s sess %p for deletion %8phC\n",
1151 __func__, sess, sess->port_name);
1152
Quinn Tran1ae634e2017-12-28 12:33:44 -08001153 spin_lock_irqsave(&sess->vha->work_lock, flags);
1154 if (sess->free_pending) {
1155 spin_unlock_irqrestore(&sess->vha->work_lock, flags);
1156 return;
1157 }
1158 sess->free_pending = 1;
Quinn Trane1217dc2019-12-17 14:06:15 -08001159 /*
1160 * Use FCF_ASYNC_SENT flag to block other cmds used in sess
1161 * management from being sent.
1162 */
1163 sess->flags |= FCF_ASYNC_SENT;
Quinn Tran1ae634e2017-12-28 12:33:44 -08001164 spin_unlock_irqrestore(&sess->vha->work_lock, flags);
1165
Quinn Tran36c78452016-02-04 11:45:18 -05001166 if (sess->se_sess)
1167 vha->hw->tgt.tgt_ops->clear_nacl_from_fcport_map(sess);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001168
Alexei Potashnika6ca8872015-07-14 16:00:44 -04001169 sess->deleted = QLA_SESS_DELETION_IN_PROGRESS;
Shyam Sundar27258a52019-12-17 14:06:06 -08001170 qla2x00_set_fcport_disc_state(sess, DSC_DELETE_PEND);
Quinn Tran726b8542017-01-19 22:28:00 -08001171 sess->last_rscn_gen = sess->rscn_gen;
1172 sess->last_login_gen = sess->login_gen;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001173
Quinn Tranfd5564b2019-09-12 11:09:07 -07001174 queue_work(sess->vha->hw->wq, &sess->free_work);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001175}
Quinn Tran5d964832017-01-19 22:27:59 -08001176EXPORT_SYMBOL(qlt_unreg_sess);
Quinn Tran75601512015-12-17 14:57:04 -05001177
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001178static int qlt_reset(struct scsi_qla_host *vha, void *iocb, int mcmd)
1179{
1180 struct qla_hw_data *ha = vha->hw;
Quinn Tran5d964832017-01-19 22:27:59 -08001181 struct fc_port *sess = NULL;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001182 uint16_t loop_id;
1183 int res = 0;
1184 struct imm_ntfy_from_isp *n = (struct imm_ntfy_from_isp *)iocb;
Quinn Tran75601512015-12-17 14:57:04 -05001185 unsigned long flags;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001186
1187 loop_id = le16_to_cpu(n->u.isp24.nport_handle);
1188 if (loop_id == 0xFFFF) {
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001189 /* Global event */
Roland Dreierb2032fd2015-07-14 16:00:42 -04001190 atomic_inc(&vha->vha_tgt.qla_tgt->tgt_global_resets_count);
Quinn Tran75601512015-12-17 14:57:04 -05001191 spin_lock_irqsave(&ha->tgt.sess_lock, flags);
Roland Dreierb2032fd2015-07-14 16:00:42 -04001192 qlt_clear_tgt_db(vha->vha_tgt.qla_tgt);
Quinn Tran75601512015-12-17 14:57:04 -05001193 spin_unlock_irqrestore(&ha->tgt.sess_lock, flags);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001194 } else {
Quinn Tran75601512015-12-17 14:57:04 -05001195 spin_lock_irqsave(&ha->tgt.sess_lock, flags);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001196 sess = ha->tgt.tgt_ops->find_sess_by_loop_id(vha, loop_id);
Quinn Tran75601512015-12-17 14:57:04 -05001197 spin_unlock_irqrestore(&ha->tgt.sess_lock, flags);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001198 }
1199
1200 ql_dbg(ql_dbg_tgt, vha, 0xe000,
1201 "Using sess for qla_tgt_reset: %p\n", sess);
1202 if (!sess) {
1203 res = -ESRCH;
1204 return res;
1205 }
1206
1207 ql_dbg(ql_dbg_tgt, vha, 0xe047,
Oleksandr Khoshaba7b8335582013-08-27 01:37:27 -04001208 "scsi(%ld): resetting (session %p from port %8phC mcmd %x, "
1209 "loop_id %d)\n", vha->host_no, sess, sess->port_name,
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001210 mcmd, loop_id);
1211
Quinn Tranbb1181c2016-12-23 18:06:05 -08001212 return qlt_issue_task_mgmt(sess, 0, mcmd, iocb, QLA24XX_MGMT_SEND_NACK);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001213}
1214
Quinn Tran726b8542017-01-19 22:28:00 -08001215static void qla24xx_chk_fcp_state(struct fc_port *sess)
1216{
Quinn Tran7c3f8fd2017-06-13 20:47:22 -07001217 if (sess->chip_reset != sess->vha->hw->base_qpair->chip_reset) {
Quinn Tran726b8542017-01-19 22:28:00 -08001218 sess->logout_on_delete = 0;
1219 sess->logo_ack_needed = 0;
1220 sess->fw_login_state = DSC_LS_PORT_UNAVAIL;
Quinn Tran726b8542017-01-19 22:28:00 -08001221 }
1222}
1223
Quinn Tran94cff6e2017-12-28 12:33:42 -08001224void qlt_schedule_sess_for_deletion(struct fc_port *sess)
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001225{
1226 struct qla_tgt *tgt = sess->tgt;
Quinn Trand8630bb2017-12-28 12:33:43 -08001227 unsigned long flags;
Quinn Trancd4ed6b2018-08-31 11:24:31 -07001228 u16 sec;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001229
Quinn Trancd4ed6b2018-08-31 11:24:31 -07001230 switch (sess->disc_state) {
1231 case DSC_DELETE_PEND:
Quinn Tran726b8542017-01-19 22:28:00 -08001232 return;
Quinn Trancd4ed6b2018-08-31 11:24:31 -07001233 case DSC_DELETED:
Quinn Tran726b8542017-01-19 22:28:00 -08001234 if (tgt && tgt->tgt_stop && (tgt->sess_count == 0))
1235 wake_up_all(&tgt->waitQ);
1236 if (sess->vha->fcport_count == 0)
1237 wake_up_all(&sess->vha->fcport_waitQ);
1238
1239 if (!sess->plogi_link[QLT_PLOGI_LINK_SAME_WWN] &&
1240 !sess->plogi_link[QLT_PLOGI_LINK_CONFLICT])
Alexei Potashnika6ca8872015-07-14 16:00:44 -04001241 return;
Quinn Trancd4ed6b2018-08-31 11:24:31 -07001242 break;
1243 case DSC_UPD_FCPORT:
1244 /*
1245 * This port is not done reporting to upper layer.
1246 * let it finish
1247 */
1248 sess->next_disc_state = DSC_DELETE_PEND;
1249 sec = jiffies_to_msecs(jiffies -
1250 sess->jiffies_at_registration)/1000;
1251 if (sess->sec_since_registration < sec && sec && !(sec % 5)) {
1252 sess->sec_since_registration = sec;
1253 ql_dbg(ql_dbg_disc, sess->vha, 0xffff,
1254 "%s %8phC : Slow Rport registration(%d Sec)\n",
1255 __func__, sess->port_name, sec);
1256 }
1257 return;
1258 default:
1259 break;
Alexei Potashnika6ca8872015-07-14 16:00:44 -04001260 }
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001261
Mikhail Malygin49d7bd32018-06-13 13:05:57 +00001262 spin_lock_irqsave(&sess->vha->work_lock, flags);
Quinn Trand8630bb2017-12-28 12:33:43 -08001263 if (sess->deleted == QLA_SESS_DELETION_IN_PROGRESS) {
Mikhail Malygin49d7bd32018-06-13 13:05:57 +00001264 spin_unlock_irqrestore(&sess->vha->work_lock, flags);
Quinn Trand8630bb2017-12-28 12:33:43 -08001265 return;
1266 }
Quinn Tran726b8542017-01-19 22:28:00 -08001267 sess->deleted = QLA_SESS_DELETION_IN_PROGRESS;
Mikhail Malygin49d7bd32018-06-13 13:05:57 +00001268 spin_unlock_irqrestore(&sess->vha->work_lock, flags);
Quinn Trand8630bb2017-12-28 12:33:43 -08001269
Quinn Tran8aaac2d2019-12-17 14:06:11 -08001270 sess->prli_pend_timer = 0;
Shyam Sundar27258a52019-12-17 14:06:06 -08001271 qla2x00_set_fcport_disc_state(sess, DSC_DELETE_PEND);
Quinn Trand8630bb2017-12-28 12:33:43 -08001272
Quinn Tran726b8542017-01-19 22:28:00 -08001273 qla24xx_chk_fcp_state(sess);
1274
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001275 ql_dbg(ql_dbg_tgt, sess->vha, 0xe001,
Quinn Tran5c640052018-09-26 22:05:14 -07001276 "Scheduling sess %p for deletion %8phC\n",
1277 sess, sess->port_name);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001278
Hannes Reinecke1c6cacf2018-02-22 09:49:35 +01001279 WARN_ON(!queue_work(sess->vha->hw->wq, &sess->del_work));
Quinn Tran726b8542017-01-19 22:28:00 -08001280}
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001281
Joern Engelc5701042014-09-16 16:23:14 -04001282static void qlt_clear_tgt_db(struct qla_tgt *tgt)
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001283{
Quinn Tran5d964832017-01-19 22:27:59 -08001284 struct fc_port *sess;
1285 scsi_qla_host_t *vha = tgt->vha;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001286
Quinn Tran5d964832017-01-19 22:27:59 -08001287 list_for_each_entry(sess, &vha->vp_fcports, list) {
1288 if (sess->se_sess)
Quinn Tran94cff6e2017-12-28 12:33:42 -08001289 qlt_schedule_sess_for_deletion(sess);
Quinn Tran5d964832017-01-19 22:27:59 -08001290 }
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001291
1292 /* At this point tgt could be already dead */
1293}
1294
Bart Van Asschedf95f392019-08-08 20:01:58 -07001295static int qla24xx_get_loop_id(struct scsi_qla_host *vha, be_id_t s_id,
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001296 uint16_t *loop_id)
1297{
1298 struct qla_hw_data *ha = vha->hw;
1299 dma_addr_t gid_list_dma;
Bart Van Assche9c17c3b2019-08-08 20:01:35 -07001300 struct gid_list_info *gid_list, *gid;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001301 int res, rc, i;
1302 uint16_t entries;
1303
1304 gid_list = dma_alloc_coherent(&ha->pdev->dev, qla2x00_gid_list_size(ha),
1305 &gid_list_dma, GFP_KERNEL);
1306 if (!gid_list) {
1307 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf044,
1308 "qla_target(%d): DMA Alloc failed of %u\n",
1309 vha->vp_idx, qla2x00_gid_list_size(ha));
1310 return -ENOMEM;
1311 }
1312
1313 /* Get list of logged in devices */
Quinn Tran15f30a52017-03-15 09:48:52 -07001314 rc = qla24xx_gidlist_wait(vha, gid_list, gid_list_dma, &entries);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001315 if (rc != QLA_SUCCESS) {
1316 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf045,
1317 "qla_target(%d): get_id_list() failed: %x\n",
1318 vha->vp_idx, rc);
Alexei Potashnik71cdc072015-12-17 14:57:01 -05001319 res = -EBUSY;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001320 goto out_free_id_list;
1321 }
1322
Bart Van Assche9c17c3b2019-08-08 20:01:35 -07001323 gid = gid_list;
Alexei Potashnik71cdc072015-12-17 14:57:01 -05001324 res = -ENOENT;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001325 for (i = 0; i < entries; i++) {
Bart Van Asschedf95f392019-08-08 20:01:58 -07001326 if (gid->al_pa == s_id.al_pa &&
1327 gid->area == s_id.area &&
1328 gid->domain == s_id.domain) {
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001329 *loop_id = le16_to_cpu(gid->loop_id);
1330 res = 0;
1331 break;
1332 }
Bart Van Assche9c17c3b2019-08-08 20:01:35 -07001333 gid = (void *)gid + ha->gid_list_info_size;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001334 }
1335
1336out_free_id_list:
1337 dma_free_coherent(&ha->pdev->dev, qla2x00_gid_list_size(ha),
1338 gid_list, gid_list_dma);
1339 return res;
1340}
1341
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001342/*
1343 * Adds an extra ref to allow to drop hw lock after adding sess to the list.
1344 * Caller must put it.
1345 */
Quinn Tran5d964832017-01-19 22:27:59 -08001346static struct fc_port *qlt_create_sess(
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001347 struct scsi_qla_host *vha,
1348 fc_port_t *fcport,
1349 bool local)
1350{
1351 struct qla_hw_data *ha = vha->hw;
Quinn Tran726b8542017-01-19 22:28:00 -08001352 struct fc_port *sess = fcport;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001353 unsigned long flags;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001354
Quinn Tran726b8542017-01-19 22:28:00 -08001355 if (vha->vha_tgt.qla_tgt->tgt_stop)
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001356 return NULL;
Quinn Tran726b8542017-01-19 22:28:00 -08001357
1358 if (fcport->se_sess) {
1359 if (!kref_get_unless_zero(&sess->sess_kref)) {
Quinn Tran83548fe2017-06-02 09:12:01 -07001360 ql_dbg(ql_dbg_disc, vha, 0x20f6,
Quinn Tran726b8542017-01-19 22:28:00 -08001361 "%s: kref_get_unless_zero failed for %8phC\n",
1362 __func__, sess->port_name);
1363 return NULL;
1364 }
1365 return fcport;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001366 }
Saurav Kashyap0e8cd712014-01-14 20:40:38 -08001367 sess->tgt = vha->vha_tgt.qla_tgt;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001368 sess->local = local;
Alexei Potashnika6ca8872015-07-14 16:00:44 -04001369
Quinn Tran726b8542017-01-19 22:28:00 -08001370 /*
1371 * Under normal circumstances we want to logout from firmware when
Alexei Potashnika6ca8872015-07-14 16:00:44 -04001372 * session eventually ends and release corresponding nport handle.
1373 * In the exception cases (e.g. when new PLOGI is waiting) corresponding
Quinn Tran726b8542017-01-19 22:28:00 -08001374 * code will adjust these flags as necessary.
1375 */
Alexei Potashnika6ca8872015-07-14 16:00:44 -04001376 sess->logout_on_delete = 1;
1377 sess->keep_nport_handle = 0;
Quinn Tran726b8542017-01-19 22:28:00 -08001378 sess->logout_completed = 0;
1379
1380 if (ha->tgt.tgt_ops->check_initiator_node_acl(vha,
1381 &fcport->port_name[0], sess) < 0) {
Quinn Tran83548fe2017-06-02 09:12:01 -07001382 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf015,
Quinn Tran726b8542017-01-19 22:28:00 -08001383 "(%d) %8phC check_initiator_node_acl failed\n",
1384 vha->vp_idx, fcport->port_name);
1385 return NULL;
1386 } else {
1387 kref_init(&fcport->sess_kref);
1388 /*
1389 * Take an extra reference to ->sess_kref here to handle
1390 * fc_port access across ->tgt.sess_lock reaquire.
1391 */
1392 if (!kref_get_unless_zero(&sess->sess_kref)) {
Quinn Tran83548fe2017-06-02 09:12:01 -07001393 ql_dbg(ql_dbg_disc, vha, 0x20f7,
Quinn Tran726b8542017-01-19 22:28:00 -08001394 "%s: kref_get_unless_zero failed for %8phC\n",
1395 __func__, sess->port_name);
1396 return NULL;
1397 }
1398
1399 spin_lock_irqsave(&ha->tgt.sess_lock, flags);
1400 if (!IS_SW_RESV_ADDR(sess->d_id))
1401 vha->vha_tgt.qla_tgt->sess_count++;
1402
1403 qlt_do_generation_tick(vha, &sess->generation);
1404 spin_unlock_irqrestore(&ha->tgt.sess_lock, flags);
1405 }
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001406
1407 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf006,
Quinn Tran726b8542017-01-19 22:28:00 -08001408 "Adding sess %p se_sess %p to tgt %p sess_count %d\n",
1409 sess, sess->se_sess, vha->vha_tgt.qla_tgt,
1410 vha->vha_tgt.qla_tgt->sess_count);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001411
1412 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf04b,
Oleksandr Khoshaba7b8335582013-08-27 01:37:27 -04001413 "qla_target(%d): %ssession for wwn %8phC (loop_id %d, "
1414 "s_id %x:%x:%x, confirmed completion %ssupported) added\n",
1415 vha->vp_idx, local ? "local " : "", fcport->port_name,
Quinn Tran37cacc02017-01-19 22:27:58 -08001416 fcport->loop_id, sess->d_id.b.domain, sess->d_id.b.area,
1417 sess->d_id.b.al_pa, sess->conf_compl_supported ? "" : "not ");
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001418
1419 return sess;
1420}
1421
1422/*
Alexei Potashnikdf673272015-07-14 16:00:46 -04001423 * max_gen - specifies maximum session generation
1424 * at which this deletion requestion is still valid
1425 */
1426void
1427qlt_fc_port_deleted(struct scsi_qla_host *vha, fc_port_t *fcport, int max_gen)
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001428{
Saurav Kashyap0e8cd712014-01-14 20:40:38 -08001429 struct qla_tgt *tgt = vha->vha_tgt.qla_tgt;
Quinn Tran5d964832017-01-19 22:27:59 -08001430 struct fc_port *sess = fcport;
Quinn Tran75601512015-12-17 14:57:04 -05001431 unsigned long flags;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001432
1433 if (!vha->hw->tgt.tgt_ops)
1434 return;
1435
Roland Dreierb2032fd2015-07-14 16:00:42 -04001436 if (!tgt)
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001437 return;
1438
Quinn Tran75601512015-12-17 14:57:04 -05001439 spin_lock_irqsave(&vha->hw->tgt.sess_lock, flags);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001440 if (tgt->tgt_stop) {
Quinn Tran75601512015-12-17 14:57:04 -05001441 spin_unlock_irqrestore(&vha->hw->tgt.sess_lock, flags);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001442 return;
1443 }
Quinn Tran5d964832017-01-19 22:27:59 -08001444 if (!sess->se_sess) {
Quinn Tran75601512015-12-17 14:57:04 -05001445 spin_unlock_irqrestore(&vha->hw->tgt.sess_lock, flags);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001446 return;
1447 }
1448
Alexei Potashnikdf673272015-07-14 16:00:46 -04001449 if (max_gen - sess->generation < 0) {
Quinn Tran75601512015-12-17 14:57:04 -05001450 spin_unlock_irqrestore(&vha->hw->tgt.sess_lock, flags);
Alexei Potashnikdf673272015-07-14 16:00:46 -04001451 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf092,
1452 "Ignoring stale deletion request for se_sess %p / sess %p"
1453 " for port %8phC, req_gen %d, sess_gen %d\n",
1454 sess->se_sess, sess, sess->port_name, max_gen,
1455 sess->generation);
1456 return;
1457 }
1458
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001459 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf008, "qla_tgt_fc_port_deleted %p", sess);
1460
1461 sess->local = 1;
Quinn Tran75601512015-12-17 14:57:04 -05001462 spin_unlock_irqrestore(&vha->hw->tgt.sess_lock, flags);
Hannes Reinecke1c6cacf2018-02-22 09:49:35 +01001463 qlt_schedule_sess_for_deletion(sess);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001464}
1465
1466static inline int test_tgt_sess_count(struct qla_tgt *tgt)
1467{
1468 struct qla_hw_data *ha = tgt->ha;
1469 unsigned long flags;
1470 int res;
1471 /*
1472 * We need to protect against race, when tgt is freed before or
1473 * inside wake_up()
1474 */
Quinn Tran726b8542017-01-19 22:28:00 -08001475 spin_lock_irqsave(&ha->tgt.sess_lock, flags);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001476 ql_dbg(ql_dbg_tgt, tgt->vha, 0xe002,
Quinn Tran5d964832017-01-19 22:27:59 -08001477 "tgt %p, sess_count=%d\n",
1478 tgt, tgt->sess_count);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001479 res = (tgt->sess_count == 0);
Quinn Tran726b8542017-01-19 22:28:00 -08001480 spin_unlock_irqrestore(&ha->tgt.sess_lock, flags);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001481
1482 return res;
1483}
1484
1485/* Called by tcm_qla2xxx configfs code */
Nicholas Bellinger3c231bd2014-02-19 17:50:22 -08001486int qlt_stop_phase1(struct qla_tgt *tgt)
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001487{
1488 struct scsi_qla_host *vha = tgt->vha;
1489 struct qla_hw_data *ha = tgt->ha;
1490 unsigned long flags;
1491
Quinn Tranb6faaaf2018-09-04 14:19:09 -07001492 mutex_lock(&ha->optrom_mutex);
Nicholas Bellinger3c231bd2014-02-19 17:50:22 -08001493 mutex_lock(&qla_tgt_mutex);
Nicholas Bellinger3c231bd2014-02-19 17:50:22 -08001494
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001495 if (tgt->tgt_stop || tgt->tgt_stopped) {
1496 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf04e,
1497 "Already in tgt->tgt_stop or tgt_stopped state\n");
Nicholas Bellinger3c231bd2014-02-19 17:50:22 -08001498 mutex_unlock(&qla_tgt_mutex);
Quinn Tranb6faaaf2018-09-04 14:19:09 -07001499 mutex_unlock(&ha->optrom_mutex);
Nicholas Bellinger3c231bd2014-02-19 17:50:22 -08001500 return -EPERM;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001501 }
1502
Quinn Tran3a33dc92017-06-02 09:12:04 -07001503 ql_dbg(ql_dbg_tgt_mgt, vha, 0xe003, "Stopping target for host %ld(%p)\n",
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001504 vha->host_no, vha);
1505 /*
1506 * Mutex needed to sync with qla_tgt_fc_port_[added,deleted].
1507 * Lock is needed, because we still can get an incoming packet.
1508 */
Saurav Kashyap0e8cd712014-01-14 20:40:38 -08001509 mutex_lock(&vha->vha_tgt.tgt_mutex);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001510 tgt->tgt_stop = 1;
Joern Engelc5701042014-09-16 16:23:14 -04001511 qlt_clear_tgt_db(tgt);
Saurav Kashyap0e8cd712014-01-14 20:40:38 -08001512 mutex_unlock(&vha->vha_tgt.tgt_mutex);
Nicholas Bellinger3c231bd2014-02-19 17:50:22 -08001513 mutex_unlock(&qla_tgt_mutex);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001514
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001515 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf009,
1516 "Waiting for sess works (tgt %p)", tgt);
1517 spin_lock_irqsave(&tgt->sess_work_lock, flags);
1518 while (!list_empty(&tgt->sess_works_list)) {
1519 spin_unlock_irqrestore(&tgt->sess_work_lock, flags);
1520 flush_scheduled_work();
1521 spin_lock_irqsave(&tgt->sess_work_lock, flags);
1522 }
1523 spin_unlock_irqrestore(&tgt->sess_work_lock, flags);
1524
1525 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf00a,
Quinn Tran5d964832017-01-19 22:27:59 -08001526 "Waiting for tgt %p: sess_count=%d\n", tgt, tgt->sess_count);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001527
Joe Carnucciob85e0952017-08-23 15:05:11 -07001528 wait_event_timeout(tgt->waitQ, test_tgt_sess_count(tgt), 10*HZ);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001529
1530 /* Big hammer */
Quinn Tranead03852017-01-19 22:28:01 -08001531 if (!ha->flags.host_shutting_down &&
1532 (qla_tgt_mode_enabled(vha) || qla_dual_mode_enabled(vha)))
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001533 qlt_disable_vha(vha);
1534
1535 /* Wait for sessions to clear out (just in case) */
Joe Carnucciob85e0952017-08-23 15:05:11 -07001536 wait_event_timeout(tgt->waitQ, test_tgt_sess_count(tgt), 10*HZ);
Quinn Tranb6faaaf2018-09-04 14:19:09 -07001537 mutex_unlock(&ha->optrom_mutex);
1538
Nicholas Bellinger3c231bd2014-02-19 17:50:22 -08001539 return 0;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001540}
1541EXPORT_SYMBOL(qlt_stop_phase1);
1542
1543/* Called by tcm_qla2xxx configfs code */
1544void qlt_stop_phase2(struct qla_tgt *tgt)
1545{
Quinn Tran3a33dc92017-06-02 09:12:04 -07001546 scsi_qla_host_t *vha = tgt->vha;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001547
1548 if (tgt->tgt_stopped) {
Saurav Kashyap0e8cd712014-01-14 20:40:38 -08001549 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf04f,
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001550 "Already in tgt->tgt_stopped state\n");
1551 dump_stack();
1552 return;
1553 }
Quinn Tran3a33dc92017-06-02 09:12:04 -07001554 if (!tgt->tgt_stop) {
1555 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf00b,
1556 "%s: phase1 stop is not completed\n", __func__);
1557 dump_stack();
1558 return;
1559 }
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001560
Saurav Kashyap0e8cd712014-01-14 20:40:38 -08001561 mutex_lock(&vha->vha_tgt.tgt_mutex);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001562 tgt->tgt_stop = 0;
1563 tgt->tgt_stopped = 1;
Saurav Kashyap0e8cd712014-01-14 20:40:38 -08001564 mutex_unlock(&vha->vha_tgt.tgt_mutex);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001565
Quinn Tran3a33dc92017-06-02 09:12:04 -07001566 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf00c, "Stop of tgt %p finished\n",
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001567 tgt);
Quinn Tran0645cb82018-09-11 10:18:18 -07001568
1569 switch (vha->qlini_mode) {
1570 case QLA2XXX_INI_MODE_EXCLUSIVE:
1571 vha->flags.online = 1;
1572 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
1573 break;
1574 default:
1575 break;
1576 }
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001577}
1578EXPORT_SYMBOL(qlt_stop_phase2);
1579
1580/* Called from qlt_remove_target() -> qla2x00_remove_one() */
Saurav Kashyapfa492632012-11-21 02:40:29 -05001581static void qlt_release(struct qla_tgt *tgt)
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001582{
Saurav Kashyap0e8cd712014-01-14 20:40:38 -08001583 scsi_qla_host_t *vha = tgt->vha;
Quinn Trane326d222017-06-13 20:47:18 -07001584 void *node;
1585 u64 key = 0;
1586 u16 i;
1587 struct qla_qpair_hint *h;
Quinn Tranbdbe24d2017-08-23 15:05:18 -07001588 struct qla_hw_data *ha = vha->hw;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001589
Bart Van Assche8b219002019-08-08 20:01:38 -07001590 if (!tgt->tgt_stop && !tgt->tgt_stopped)
Quinn Tran3a33dc92017-06-02 09:12:04 -07001591 qlt_stop_phase1(tgt);
1592
Bart Van Assche8b219002019-08-08 20:01:38 -07001593 if (!tgt->tgt_stopped)
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001594 qlt_stop_phase2(tgt);
1595
Quinn Trane326d222017-06-13 20:47:18 -07001596 for (i = 0; i < vha->hw->max_qpairs + 1; i++) {
1597 unsigned long flags;
1598
1599 h = &tgt->qphints[i];
1600 if (h->qpair) {
1601 spin_lock_irqsave(h->qpair->qp_lock_ptr, flags);
1602 list_del(&h->hint_elem);
1603 spin_unlock_irqrestore(h->qpair->qp_lock_ptr, flags);
1604 h->qpair = NULL;
1605 }
1606 }
1607 kfree(tgt->qphints);
Quinn Tranbdbe24d2017-08-23 15:05:18 -07001608 mutex_lock(&qla_tgt_mutex);
1609 list_del(&vha->vha_tgt.qla_tgt->tgt_list_entry);
1610 mutex_unlock(&qla_tgt_mutex);
Quinn Trane326d222017-06-13 20:47:18 -07001611
1612 btree_for_each_safe64(&tgt->lun_qpair_map, key, node)
1613 btree_remove64(&tgt->lun_qpair_map, key);
1614
1615 btree_destroy64(&tgt->lun_qpair_map);
1616
Sawan Chandak3be63b1e2017-12-04 14:45:04 -08001617 if (vha->vp_idx)
1618 if (ha->tgt.tgt_ops &&
1619 ha->tgt.tgt_ops->remove_target &&
1620 vha->vha_tgt.target_lport_ptr)
1621 ha->tgt.tgt_ops->remove_target(vha);
Quinn Tranbdbe24d2017-08-23 15:05:18 -07001622
Saurav Kashyap0e8cd712014-01-14 20:40:38 -08001623 vha->vha_tgt.qla_tgt = NULL;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001624
Saurav Kashyap0e8cd712014-01-14 20:40:38 -08001625 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf00d,
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001626 "Release of tgt %p finished\n", tgt);
1627
1628 kfree(tgt);
1629}
1630
1631/* ha->hardware_lock supposed to be held on entry */
1632static int qlt_sched_sess_work(struct qla_tgt *tgt, int type,
1633 const void *param, unsigned int param_size)
1634{
1635 struct qla_tgt_sess_work_param *prm;
1636 unsigned long flags;
1637
1638 prm = kzalloc(sizeof(*prm), GFP_ATOMIC);
1639 if (!prm) {
1640 ql_dbg(ql_dbg_tgt_mgt, tgt->vha, 0xf050,
1641 "qla_target(%d): Unable to create session "
1642 "work, command will be refused", 0);
1643 return -ENOMEM;
1644 }
1645
1646 ql_dbg(ql_dbg_tgt_mgt, tgt->vha, 0xf00e,
1647 "Scheduling work (type %d, prm %p)"
1648 " to find session for param %p (size %d, tgt %p)\n",
1649 type, prm, param, param_size, tgt);
1650
1651 prm->type = type;
1652 memcpy(&prm->tm_iocb, param, param_size);
1653
1654 spin_lock_irqsave(&tgt->sess_work_lock, flags);
1655 list_add_tail(&prm->sess_works_list_entry, &tgt->sess_works_list);
1656 spin_unlock_irqrestore(&tgt->sess_work_lock, flags);
1657
1658 schedule_work(&tgt->sess_work);
1659
1660 return 0;
1661}
1662
1663/*
1664 * ha->hardware_lock supposed to be held on entry. Might drop it, then reaquire
1665 */
Quinn Tran82de8022017-06-13 20:47:17 -07001666static void qlt_send_notify_ack(struct qla_qpair *qpair,
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001667 struct imm_ntfy_from_isp *ntfy,
1668 uint32_t add_flags, uint16_t resp_code, int resp_code_valid,
1669 uint16_t srr_flags, uint16_t srr_reject_code, uint8_t srr_explan)
1670{
Quinn Tran82de8022017-06-13 20:47:17 -07001671 struct scsi_qla_host *vha = qpair->vha;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001672 struct qla_hw_data *ha = vha->hw;
1673 request_t *pkt;
1674 struct nack_to_isp *nack;
1675
Quinn Tranec7193e2017-03-15 09:48:55 -07001676 if (!ha->flags.fw_started)
1677 return;
1678
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001679 ql_dbg(ql_dbg_tgt, vha, 0xe004, "Sending NOTIFY_ACK (ha=%p)\n", ha);
1680
Quinn Tran82de8022017-06-13 20:47:17 -07001681 pkt = (request_t *)__qla2x00_alloc_iocbs(qpair, NULL);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001682 if (!pkt) {
1683 ql_dbg(ql_dbg_tgt, vha, 0xe049,
1684 "qla_target(%d): %s failed: unable to allocate "
1685 "request packet\n", vha->vp_idx, __func__);
1686 return;
1687 }
1688
Saurav Kashyap0e8cd712014-01-14 20:40:38 -08001689 if (vha->vha_tgt.qla_tgt != NULL)
1690 vha->vha_tgt.qla_tgt->notify_ack_expected++;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001691
1692 pkt->entry_type = NOTIFY_ACK_TYPE;
1693 pkt->entry_count = 1;
1694
1695 nack = (struct nack_to_isp *)pkt;
1696 nack->ox_id = ntfy->ox_id;
1697
Quinn Tran726b8542017-01-19 22:28:00 -08001698 nack->u.isp24.handle = QLA_TGT_SKIP_HANDLE;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001699 nack->u.isp24.nport_handle = ntfy->u.isp24.nport_handle;
1700 if (le16_to_cpu(ntfy->u.isp24.status) == IMM_NTFY_ELS) {
1701 nack->u.isp24.flags = ntfy->u.isp24.flags &
Bart Van Asschead950362015-07-09 07:24:08 -07001702 cpu_to_le32(NOTIFY24XX_FLAGS_PUREX_IOCB);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001703 }
1704 nack->u.isp24.srr_rx_id = ntfy->u.isp24.srr_rx_id;
1705 nack->u.isp24.status = ntfy->u.isp24.status;
1706 nack->u.isp24.status_subcode = ntfy->u.isp24.status_subcode;
Arun Easiaa230bc2013-01-30 03:34:39 -05001707 nack->u.isp24.fw_handle = ntfy->u.isp24.fw_handle;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001708 nack->u.isp24.exchange_address = ntfy->u.isp24.exchange_address;
1709 nack->u.isp24.srr_rel_offs = ntfy->u.isp24.srr_rel_offs;
1710 nack->u.isp24.srr_ui = ntfy->u.isp24.srr_ui;
1711 nack->u.isp24.srr_flags = cpu_to_le16(srr_flags);
1712 nack->u.isp24.srr_reject_code = srr_reject_code;
1713 nack->u.isp24.srr_reject_code_expl = srr_explan;
1714 nack->u.isp24.vp_index = ntfy->u.isp24.vp_index;
1715
1716 ql_dbg(ql_dbg_tgt, vha, 0xe005,
1717 "qla_target(%d): Sending 24xx Notify Ack %d\n",
1718 vha->vp_idx, nack->u.isp24.status);
1719
Himanshu Madhani63163e02014-09-25 06:14:59 -04001720 /* Memory Barrier */
1721 wmb();
Quinn Tran82de8022017-06-13 20:47:17 -07001722 qla2x00_start_iocbs(vha, qpair->req);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001723}
1724
Quinn Tran6b0431d2018-09-04 14:19:13 -07001725static int qlt_build_abts_resp_iocb(struct qla_tgt_mgmt_cmd *mcmd)
1726{
1727 struct scsi_qla_host *vha = mcmd->vha;
1728 struct qla_hw_data *ha = vha->hw;
1729 struct abts_resp_to_24xx *resp;
1730 uint32_t f_ctl, h;
1731 uint8_t *p;
1732 int rc;
1733 struct abts_recv_from_24xx *abts = &mcmd->orig_iocb.abts;
1734 struct qla_qpair *qpair = mcmd->qpair;
1735
1736 ql_dbg(ql_dbg_tgt, vha, 0xe006,
1737 "Sending task mgmt ABTS response (ha=%p, status=%x)\n",
1738 ha, mcmd->fc_tm_rsp);
1739
1740 rc = qlt_check_reserve_free_req(qpair, 1);
1741 if (rc) {
1742 ql_dbg(ql_dbg_tgt, vha, 0xe04a,
1743 "qla_target(%d): %s failed: unable to allocate request packet\n",
1744 vha->vp_idx, __func__);
1745 return -EAGAIN;
1746 }
1747
1748 resp = (struct abts_resp_to_24xx *)qpair->req->ring_ptr;
1749 memset(resp, 0, sizeof(*resp));
1750
1751 h = qlt_make_handle(qpair);
1752 if (unlikely(h == QLA_TGT_NULL_HANDLE)) {
1753 /*
1754 * CTIO type 7 from the firmware doesn't provide a way to
1755 * know the initiator's LOOP ID, hence we can't find
1756 * the session and, so, the command.
1757 */
1758 return -EAGAIN;
1759 } else {
1760 qpair->req->outstanding_cmds[h] = (srb_t *)mcmd;
1761 }
1762
1763 resp->handle = MAKE_HANDLE(qpair->req->id, h);
1764 resp->entry_type = ABTS_RESP_24XX;
1765 resp->entry_count = 1;
1766 resp->nport_handle = abts->nport_handle;
1767 resp->vp_index = vha->vp_idx;
1768 resp->sof_type = abts->sof_type;
1769 resp->exchange_address = abts->exchange_address;
1770 resp->fcp_hdr_le = abts->fcp_hdr_le;
1771 f_ctl = cpu_to_le32(F_CTL_EXCH_CONTEXT_RESP |
1772 F_CTL_LAST_SEQ | F_CTL_END_SEQ |
1773 F_CTL_SEQ_INITIATIVE);
1774 p = (uint8_t *)&f_ctl;
1775 resp->fcp_hdr_le.f_ctl[0] = *p++;
1776 resp->fcp_hdr_le.f_ctl[1] = *p++;
1777 resp->fcp_hdr_le.f_ctl[2] = *p;
1778
Bart Van Asschedf95f392019-08-08 20:01:58 -07001779 resp->fcp_hdr_le.d_id = abts->fcp_hdr_le.s_id;
1780 resp->fcp_hdr_le.s_id = abts->fcp_hdr_le.d_id;
Quinn Tran6b0431d2018-09-04 14:19:13 -07001781
1782 resp->exchange_addr_to_abort = abts->exchange_addr_to_abort;
1783 if (mcmd->fc_tm_rsp == FCP_TMF_CMPL) {
1784 resp->fcp_hdr_le.r_ctl = R_CTL_BASIC_LINK_SERV | R_CTL_B_ACC;
1785 resp->payload.ba_acct.seq_id_valid = SEQ_ID_INVALID;
1786 resp->payload.ba_acct.low_seq_cnt = 0x0000;
1787 resp->payload.ba_acct.high_seq_cnt = 0xFFFF;
1788 resp->payload.ba_acct.ox_id = abts->fcp_hdr_le.ox_id;
1789 resp->payload.ba_acct.rx_id = abts->fcp_hdr_le.rx_id;
1790 } else {
1791 resp->fcp_hdr_le.r_ctl = R_CTL_BASIC_LINK_SERV | R_CTL_B_RJT;
1792 resp->payload.ba_rjt.reason_code =
1793 BA_RJT_REASON_CODE_UNABLE_TO_PERFORM;
1794 /* Other bytes are zero */
1795 }
1796
1797 vha->vha_tgt.qla_tgt->abts_resp_expected++;
1798
1799 /* Memory Barrier */
1800 wmb();
1801 if (qpair->reqq_start_iocbs)
1802 qpair->reqq_start_iocbs(qpair);
1803 else
1804 qla2x00_start_iocbs(vha, qpair->req);
1805
1806 return rc;
1807}
1808
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001809/*
1810 * ha->hardware_lock supposed to be held on entry. Might drop it, then reaquire
1811 */
Quinn Tran82de8022017-06-13 20:47:17 -07001812static void qlt_24xx_send_abts_resp(struct qla_qpair *qpair,
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001813 struct abts_recv_from_24xx *abts, uint32_t status,
1814 bool ids_reversed)
1815{
Quinn Tran82de8022017-06-13 20:47:17 -07001816 struct scsi_qla_host *vha = qpair->vha;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001817 struct qla_hw_data *ha = vha->hw;
1818 struct abts_resp_to_24xx *resp;
1819 uint32_t f_ctl;
1820 uint8_t *p;
1821
1822 ql_dbg(ql_dbg_tgt, vha, 0xe006,
1823 "Sending task mgmt ABTS response (ha=%p, atio=%p, status=%x\n",
1824 ha, abts, status);
1825
Quinn Tran82de8022017-06-13 20:47:17 -07001826 resp = (struct abts_resp_to_24xx *)qla2x00_alloc_iocbs_ready(qpair,
1827 NULL);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001828 if (!resp) {
1829 ql_dbg(ql_dbg_tgt, vha, 0xe04a,
1830 "qla_target(%d): %s failed: unable to allocate "
1831 "request packet", vha->vp_idx, __func__);
1832 return;
1833 }
1834
1835 resp->entry_type = ABTS_RESP_24XX;
Quinn Tran6b0431d2018-09-04 14:19:13 -07001836 resp->handle = QLA_TGT_SKIP_HANDLE;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001837 resp->entry_count = 1;
1838 resp->nport_handle = abts->nport_handle;
1839 resp->vp_index = vha->vp_idx;
1840 resp->sof_type = abts->sof_type;
1841 resp->exchange_address = abts->exchange_address;
1842 resp->fcp_hdr_le = abts->fcp_hdr_le;
Bart Van Asschead950362015-07-09 07:24:08 -07001843 f_ctl = cpu_to_le32(F_CTL_EXCH_CONTEXT_RESP |
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001844 F_CTL_LAST_SEQ | F_CTL_END_SEQ |
1845 F_CTL_SEQ_INITIATIVE);
1846 p = (uint8_t *)&f_ctl;
1847 resp->fcp_hdr_le.f_ctl[0] = *p++;
1848 resp->fcp_hdr_le.f_ctl[1] = *p++;
1849 resp->fcp_hdr_le.f_ctl[2] = *p;
1850 if (ids_reversed) {
Bart Van Asschedf95f392019-08-08 20:01:58 -07001851 resp->fcp_hdr_le.d_id = abts->fcp_hdr_le.d_id;
1852 resp->fcp_hdr_le.s_id = abts->fcp_hdr_le.s_id;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001853 } else {
Bart Van Asschedf95f392019-08-08 20:01:58 -07001854 resp->fcp_hdr_le.d_id = abts->fcp_hdr_le.s_id;
1855 resp->fcp_hdr_le.s_id = abts->fcp_hdr_le.d_id;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001856 }
1857 resp->exchange_addr_to_abort = abts->exchange_addr_to_abort;
1858 if (status == FCP_TMF_CMPL) {
1859 resp->fcp_hdr_le.r_ctl = R_CTL_BASIC_LINK_SERV | R_CTL_B_ACC;
1860 resp->payload.ba_acct.seq_id_valid = SEQ_ID_INVALID;
1861 resp->payload.ba_acct.low_seq_cnt = 0x0000;
1862 resp->payload.ba_acct.high_seq_cnt = 0xFFFF;
1863 resp->payload.ba_acct.ox_id = abts->fcp_hdr_le.ox_id;
1864 resp->payload.ba_acct.rx_id = abts->fcp_hdr_le.rx_id;
1865 } else {
1866 resp->fcp_hdr_le.r_ctl = R_CTL_BASIC_LINK_SERV | R_CTL_B_RJT;
1867 resp->payload.ba_rjt.reason_code =
1868 BA_RJT_REASON_CODE_UNABLE_TO_PERFORM;
1869 /* Other bytes are zero */
1870 }
1871
Saurav Kashyap0e8cd712014-01-14 20:40:38 -08001872 vha->vha_tgt.qla_tgt->abts_resp_expected++;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001873
Himanshu Madhani63163e02014-09-25 06:14:59 -04001874 /* Memory Barrier */
1875 wmb();
Quinn Tran8abfa9e2017-06-13 20:47:24 -07001876 if (qpair->reqq_start_iocbs)
1877 qpair->reqq_start_iocbs(qpair);
1878 else
1879 qla2x00_start_iocbs(vha, qpair->req);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001880}
1881
1882/*
1883 * ha->hardware_lock supposed to be held on entry. Might drop it, then reaquire
1884 */
1885static void qlt_24xx_retry_term_exchange(struct scsi_qla_host *vha,
Quinn Tran6b0431d2018-09-04 14:19:13 -07001886 struct qla_qpair *qpair, response_t *pkt, struct qla_tgt_mgmt_cmd *mcmd)
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001887{
1888 struct ctio7_to_24xx *ctio;
Quinn Tran06910942018-09-04 14:19:12 -07001889 u16 tmp;
Quinn Tran6b0431d2018-09-04 14:19:13 -07001890 struct abts_recv_from_24xx *entry;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001891
Quinn Tran06910942018-09-04 14:19:12 -07001892 ctio = (struct ctio7_to_24xx *)qla2x00_alloc_iocbs_ready(qpair, NULL);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001893 if (ctio == NULL) {
1894 ql_dbg(ql_dbg_tgt, vha, 0xe04b,
1895 "qla_target(%d): %s failed: unable to allocate "
1896 "request packet\n", vha->vp_idx, __func__);
1897 return;
1898 }
1899
Quinn Tran6b0431d2018-09-04 14:19:13 -07001900 if (mcmd)
1901 /* abts from remote port */
1902 entry = &mcmd->orig_iocb.abts;
1903 else
1904 /* abts from this driver. */
1905 entry = (struct abts_recv_from_24xx *)pkt;
1906
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001907 /*
1908 * We've got on entrance firmware's response on by us generated
1909 * ABTS response. So, in it ID fields are reversed.
1910 */
1911
1912 ctio->entry_type = CTIO_TYPE7;
1913 ctio->entry_count = 1;
1914 ctio->nport_handle = entry->nport_handle;
1915 ctio->handle = QLA_TGT_SKIP_HANDLE | CTIO_COMPLETION_HANDLE_MARK;
Bart Van Asschead950362015-07-09 07:24:08 -07001916 ctio->timeout = cpu_to_le16(QLA_TGT_TIMEOUT);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001917 ctio->vp_index = vha->vp_idx;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001918 ctio->exchange_addr = entry->exchange_addr_to_abort;
Quinn Tran06910942018-09-04 14:19:12 -07001919 tmp = (CTIO7_FLAGS_STATUS_MODE_1 | CTIO7_FLAGS_TERMINATE);
Quinn Tran06910942018-09-04 14:19:12 -07001920
Quinn Tran6b0431d2018-09-04 14:19:13 -07001921 if (mcmd) {
Bart Van Asschedf95f392019-08-08 20:01:58 -07001922 ctio->initiator_id = entry->fcp_hdr_le.s_id;
Quinn Tran6b0431d2018-09-04 14:19:13 -07001923
1924 if (mcmd->flags & QLA24XX_MGMT_ABORT_IO_ATTR_VALID)
1925 tmp |= (mcmd->abort_io_attr << 9);
1926 else if (qpair->retry_term_cnt & 1)
1927 tmp |= (0x4 << 9);
1928 } else {
Bart Van Asschedf95f392019-08-08 20:01:58 -07001929 ctio->initiator_id = entry->fcp_hdr_le.d_id;
Quinn Tran6b0431d2018-09-04 14:19:13 -07001930
1931 if (qpair->retry_term_cnt & 1)
1932 tmp |= (0x4 << 9);
1933 }
1934 ctio->u.status1.flags = cpu_to_le16(tmp);
1935 ctio->u.status1.ox_id = entry->fcp_hdr_le.ox_id;
1936
1937 ql_dbg(ql_dbg_tgt, vha, 0xe007,
1938 "Sending retry TERM EXCH CTIO7 flags %04xh oxid %04xh attr valid %x\n",
1939 le16_to_cpu(ctio->u.status1.flags),
1940 le16_to_cpu(ctio->u.status1.ox_id),
1941 (mcmd && mcmd->flags & QLA24XX_MGMT_ABORT_IO_ATTR_VALID) ? 1 : 0);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001942
Himanshu Madhani63163e02014-09-25 06:14:59 -04001943 /* Memory Barrier */
1944 wmb();
Quinn Tran06910942018-09-04 14:19:12 -07001945 if (qpair->reqq_start_iocbs)
1946 qpair->reqq_start_iocbs(qpair);
1947 else
1948 qla2x00_start_iocbs(vha, qpair->req);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001949
Quinn Tran6b0431d2018-09-04 14:19:13 -07001950 if (mcmd)
1951 qlt_build_abts_resp_iocb(mcmd);
1952 else
1953 qlt_24xx_send_abts_resp(qpair,
1954 (struct abts_recv_from_24xx *)entry, FCP_TMF_CMPL, true);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001955
Swapnil Nagle8b2f5ff2015-07-14 16:00:43 -04001956}
1957
1958/* drop cmds for the given lun
1959 * XXX only looks for cmds on the port through which lun reset was recieved
1960 * XXX does not go through the list of other port (which may have cmds
1961 * for the same lun)
1962 */
Bart Van Asschedf95f392019-08-08 20:01:58 -07001963static void abort_cmds_for_lun(struct scsi_qla_host *vha, u64 lun, be_id_t s_id)
Swapnil Nagle8b2f5ff2015-07-14 16:00:43 -04001964{
1965 struct qla_tgt_sess_op *op;
1966 struct qla_tgt_cmd *cmd;
1967 uint32_t key;
Quinn Tran8b631d82017-06-02 09:11:54 -07001968 unsigned long flags;
Swapnil Nagle8b2f5ff2015-07-14 16:00:43 -04001969
1970 key = sid_to_key(s_id);
Quinn Tran8b631d82017-06-02 09:11:54 -07001971 spin_lock_irqsave(&vha->cmd_list_lock, flags);
Swapnil Nagle8b2f5ff2015-07-14 16:00:43 -04001972 list_for_each_entry(op, &vha->qla_sess_op_cmd_list, cmd_list) {
1973 uint32_t op_key;
Quinn Tranf775bd12017-06-02 09:11:59 -07001974 u64 op_lun;
Swapnil Nagle8b2f5ff2015-07-14 16:00:43 -04001975
1976 op_key = sid_to_key(op->atio.u.isp24.fcp_hdr.s_id);
1977 op_lun = scsilun_to_int(
1978 (struct scsi_lun *)&op->atio.u.isp24.fcp_cmnd.lun);
1979 if (op_key == key && op_lun == lun)
1980 op->aborted = true;
1981 }
Quinn Tran41dc5292017-01-19 22:28:03 -08001982
1983 list_for_each_entry(op, &vha->unknown_atio_list, cmd_list) {
1984 uint32_t op_key;
1985 u64 op_lun;
1986
1987 op_key = sid_to_key(op->atio.u.isp24.fcp_hdr.s_id);
1988 op_lun = scsilun_to_int(
1989 (struct scsi_lun *)&op->atio.u.isp24.fcp_cmnd.lun);
1990 if (op_key == key && op_lun == lun)
1991 op->aborted = true;
1992 }
1993
Swapnil Nagle8b2f5ff2015-07-14 16:00:43 -04001994 list_for_each_entry(cmd, &vha->qla_cmd_list, cmd_list) {
1995 uint32_t cmd_key;
Quinn Tranf775bd12017-06-02 09:11:59 -07001996 u64 cmd_lun;
Swapnil Nagle8b2f5ff2015-07-14 16:00:43 -04001997
1998 cmd_key = sid_to_key(cmd->atio.u.isp24.fcp_hdr.s_id);
1999 cmd_lun = scsilun_to_int(
2000 (struct scsi_lun *)&cmd->atio.u.isp24.fcp_cmnd.lun);
2001 if (cmd_key == key && cmd_lun == lun)
Quinn Tran193b50b2015-12-17 14:57:03 -05002002 cmd->aborted = 1;
Swapnil Nagle8b2f5ff2015-07-14 16:00:43 -04002003 }
Quinn Tran8b631d82017-06-02 09:11:54 -07002004 spin_unlock_irqrestore(&vha->cmd_list_lock, flags);
Swapnil Nagle8b2f5ff2015-07-14 16:00:43 -04002005}
2006
Quinn Tran84905df2018-05-01 09:01:53 -07002007static struct qla_qpair_hint *qlt_find_qphint(struct scsi_qla_host *vha,
2008 uint64_t unpacked_lun)
2009{
2010 struct qla_tgt *tgt = vha->vha_tgt.qla_tgt;
2011 struct qla_qpair_hint *h = NULL;
2012
2013 if (vha->flags.qpairs_available) {
2014 h = btree_lookup64(&tgt->lun_qpair_map, unpacked_lun);
2015 if (!h)
2016 h = &tgt->qphints[0];
2017 } else {
2018 h = &tgt->qphints[0];
2019 }
2020
2021 return h;
2022}
2023
2024static void qlt_do_tmr_work(struct work_struct *work)
2025{
2026 struct qla_tgt_mgmt_cmd *mcmd =
2027 container_of(work, struct qla_tgt_mgmt_cmd, work);
2028 struct qla_hw_data *ha = mcmd->vha->hw;
2029 int rc = EIO;
2030 uint32_t tag;
2031 unsigned long flags;
2032
2033 switch (mcmd->tmr_func) {
2034 case QLA_TGT_ABTS:
2035 tag = mcmd->orig_iocb.abts.exchange_addr_to_abort;
2036 break;
2037 default:
2038 tag = 0;
2039 break;
2040 }
2041
2042 rc = ha->tgt.tgt_ops->handle_tmr(mcmd, mcmd->unpacked_lun,
2043 mcmd->tmr_func, tag);
2044
2045 if (rc != 0) {
2046 spin_lock_irqsave(mcmd->qpair->qp_lock_ptr, flags);
2047 switch (mcmd->tmr_func) {
2048 case QLA_TGT_ABTS:
Quinn Tran6b0431d2018-09-04 14:19:13 -07002049 mcmd->fc_tm_rsp = FCP_TMF_REJECTED;
2050 qlt_build_abts_resp_iocb(mcmd);
Quinn Tran84905df2018-05-01 09:01:53 -07002051 break;
2052 case QLA_TGT_LUN_RESET:
2053 case QLA_TGT_CLEAR_TS:
2054 case QLA_TGT_ABORT_TS:
2055 case QLA_TGT_CLEAR_ACA:
2056 case QLA_TGT_TARGET_RESET:
2057 qlt_send_busy(mcmd->qpair, &mcmd->orig_iocb.atio,
2058 qla_sam_status);
2059 break;
2060
2061 case QLA_TGT_ABORT_ALL:
2062 case QLA_TGT_NEXUS_LOSS_SESS:
2063 case QLA_TGT_NEXUS_LOSS:
2064 qlt_send_notify_ack(mcmd->qpair,
2065 &mcmd->orig_iocb.imm_ntfy, 0, 0, 0, 0, 0, 0);
2066 break;
2067 }
2068 spin_unlock_irqrestore(mcmd->qpair->qp_lock_ptr, flags);
2069
2070 ql_dbg(ql_dbg_tgt_mgt, mcmd->vha, 0xf052,
2071 "qla_target(%d): tgt_ops->handle_tmr() failed: %d\n",
2072 mcmd->vha->vp_idx, rc);
2073 mempool_free(mcmd, qla_tgt_mgmt_cmd_mempool);
2074 }
2075}
2076
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002077/* ha->hardware_lock supposed to be held on entry */
2078static int __qlt_24xx_handle_abts(struct scsi_qla_host *vha,
Quinn Tran5d964832017-01-19 22:27:59 -08002079 struct abts_recv_from_24xx *abts, struct fc_port *sess)
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002080{
2081 struct qla_hw_data *ha = vha->hw;
2082 struct qla_tgt_mgmt_cmd *mcmd;
Quinn Tran84905df2018-05-01 09:01:53 -07002083 struct qla_qpair_hint *h = &vha->vha_tgt.qla_tgt->qphints[0];
Steve Hodgson06e97b42012-11-16 08:06:17 -08002084
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002085 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf00f,
2086 "qla_target(%d): task abort (tag=%d)\n",
2087 vha->vp_idx, abts->exchange_addr_to_abort);
2088
2089 mcmd = mempool_alloc(qla_tgt_mgmt_cmd_mempool, GFP_ATOMIC);
2090 if (mcmd == NULL) {
2091 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf051,
2092 "qla_target(%d): %s: Allocation of ABORT cmd failed",
2093 vha->vp_idx, __func__);
2094 return -ENOMEM;
2095 }
2096 memset(mcmd, 0, sizeof(*mcmd));
Quinn Tran6b0431d2018-09-04 14:19:13 -07002097 mcmd->cmd_type = TYPE_TGT_TMCMD;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002098 mcmd->sess = sess;
2099 memcpy(&mcmd->orig_iocb.abts, abts, sizeof(mcmd->orig_iocb.abts));
Quinn Tran7c3f8fd2017-06-13 20:47:22 -07002100 mcmd->reset_count = ha->base_qpair->chip_reset;
Quinn Tranbe92fc32017-01-19 22:27:54 -08002101 mcmd->tmr_func = QLA_TGT_ABTS;
Quinn Tran84905df2018-05-01 09:01:53 -07002102 mcmd->qpair = h->qpair;
Quinn Tran72fcd4e2017-08-23 15:05:13 -07002103 mcmd->vha = vha;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002104
Nicholas Bellingereb5ae232017-06-03 07:07:21 -07002105 /*
2106 * LUN is looked up by target-core internally based on the passed
2107 * abts->exchange_addr_to_abort tag.
2108 */
Quinn Tran84905df2018-05-01 09:01:53 -07002109 mcmd->se_cmd.cpuid = h->cpuid;
2110
2111 if (ha->tgt.tgt_ops->find_cmd_by_tag) {
2112 struct qla_tgt_cmd *abort_cmd;
2113
2114 abort_cmd = ha->tgt.tgt_ops->find_cmd_by_tag(sess,
2115 abts->exchange_addr_to_abort);
2116 if (abort_cmd && abort_cmd->qpair) {
2117 mcmd->qpair = abort_cmd->qpair;
2118 mcmd->se_cmd.cpuid = abort_cmd->se_cmd.cpuid;
Quinn Tran6b0431d2018-09-04 14:19:13 -07002119 mcmd->abort_io_attr = abort_cmd->atio.u.isp24.attr;
2120 mcmd->flags = QLA24XX_MGMT_ABORT_IO_ATTR_VALID;
Quinn Tran84905df2018-05-01 09:01:53 -07002121 }
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002122 }
2123
Quinn Tran84905df2018-05-01 09:01:53 -07002124 INIT_WORK(&mcmd->work, qlt_do_tmr_work);
2125 queue_work_on(mcmd->se_cmd.cpuid, qla_tgt_wq, &mcmd->work);
2126
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002127 return 0;
2128}
2129
2130/*
2131 * ha->hardware_lock supposed to be held on entry. Might drop it, then reaquire
2132 */
2133static void qlt_24xx_handle_abts(struct scsi_qla_host *vha,
2134 struct abts_recv_from_24xx *abts)
2135{
2136 struct qla_hw_data *ha = vha->hw;
Quinn Tran5d964832017-01-19 22:27:59 -08002137 struct fc_port *sess;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002138 uint32_t tag = abts->exchange_addr_to_abort;
Bart Van Asschedf95f392019-08-08 20:01:58 -07002139 be_id_t s_id;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002140 int rc;
Quinn Tran75601512015-12-17 14:57:04 -05002141 unsigned long flags;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002142
2143 if (le32_to_cpu(abts->fcp_hdr_le.parameter) & ABTS_PARAM_ABORT_SEQ) {
2144 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf053,
2145 "qla_target(%d): ABTS: Abort Sequence not "
2146 "supported\n", vha->vp_idx);
Quinn Tran82de8022017-06-13 20:47:17 -07002147 qlt_24xx_send_abts_resp(ha->base_qpair, abts, FCP_TMF_REJECTED,
2148 false);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002149 return;
2150 }
2151
2152 if (tag == ATIO_EXCHANGE_ADDRESS_UNKNOWN) {
2153 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf010,
2154 "qla_target(%d): ABTS: Unknown Exchange "
2155 "Address received\n", vha->vp_idx);
Quinn Tran82de8022017-06-13 20:47:17 -07002156 qlt_24xx_send_abts_resp(ha->base_qpair, abts, FCP_TMF_REJECTED,
2157 false);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002158 return;
2159 }
2160
2161 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf011,
2162 "qla_target(%d): task abort (s_id=%x:%x:%x, "
Bart Van Asschedf95f392019-08-08 20:01:58 -07002163 "tag=%d, param=%x)\n", vha->vp_idx, abts->fcp_hdr_le.s_id.domain,
2164 abts->fcp_hdr_le.s_id.area, abts->fcp_hdr_le.s_id.al_pa, tag,
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002165 le32_to_cpu(abts->fcp_hdr_le.parameter));
2166
Bart Van Asschedf95f392019-08-08 20:01:58 -07002167 s_id = le_id_to_be(abts->fcp_hdr_le.s_id);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002168
Quinn Tran75601512015-12-17 14:57:04 -05002169 spin_lock_irqsave(&ha->tgt.sess_lock, flags);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002170 sess = ha->tgt.tgt_ops->find_sess_by_s_id(vha, s_id);
2171 if (!sess) {
2172 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf012,
Colin Ian King03fea732018-03-19 10:53:41 +00002173 "qla_target(%d): task abort for non-existent session\n",
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002174 vha->vp_idx);
Quinn Tran75601512015-12-17 14:57:04 -05002175 spin_unlock_irqrestore(&ha->tgt.sess_lock, flags);
2176
Quinn Tranfb352652017-12-28 12:33:32 -08002177 qlt_24xx_send_abts_resp(ha->base_qpair, abts, FCP_TMF_REJECTED,
2178 false);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002179 return;
2180 }
Quinn Tran75601512015-12-17 14:57:04 -05002181 spin_unlock_irqrestore(&ha->tgt.sess_lock, flags);
2182
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002183
Quinn Tran726b8542017-01-19 22:28:00 -08002184 if (sess->deleted) {
Quinn Tran82de8022017-06-13 20:47:17 -07002185 qlt_24xx_send_abts_resp(ha->base_qpair, abts, FCP_TMF_REJECTED,
2186 false);
Alexei Potashnike52a8b42015-07-14 16:00:48 -04002187 return;
2188 }
2189
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002190 rc = __qlt_24xx_handle_abts(vha, abts, sess);
2191 if (rc != 0) {
2192 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf054,
2193 "qla_target(%d): __qlt_24xx_handle_abts() failed: %d\n",
2194 vha->vp_idx, rc);
Quinn Tran82de8022017-06-13 20:47:17 -07002195 qlt_24xx_send_abts_resp(ha->base_qpair, abts, FCP_TMF_REJECTED,
2196 false);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002197 return;
2198 }
2199}
2200
2201/*
2202 * ha->hardware_lock supposed to be held on entry. Might drop it, then reaquire
2203 */
Quinn Tran82de8022017-06-13 20:47:17 -07002204static void qlt_24xx_send_task_mgmt_ctio(struct qla_qpair *qpair,
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002205 struct qla_tgt_mgmt_cmd *mcmd, uint32_t resp_code)
2206{
Quinn Tran72fcd4e2017-08-23 15:05:13 -07002207 struct scsi_qla_host *ha = mcmd->vha;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002208 struct atio_from_isp *atio = &mcmd->orig_iocb.atio;
2209 struct ctio7_to_24xx *ctio;
Quinn Tran33a5fce2014-06-24 00:22:29 -04002210 uint16_t temp;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002211
2212 ql_dbg(ql_dbg_tgt, ha, 0xe008,
2213 "Sending task mgmt CTIO7 (ha=%p, atio=%p, resp_code=%x\n",
2214 ha, atio, resp_code);
2215
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002216
Quinn Tran82de8022017-06-13 20:47:17 -07002217 ctio = (struct ctio7_to_24xx *)__qla2x00_alloc_iocbs(qpair, NULL);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002218 if (ctio == NULL) {
2219 ql_dbg(ql_dbg_tgt, ha, 0xe04c,
2220 "qla_target(%d): %s failed: unable to allocate "
2221 "request packet\n", ha->vp_idx, __func__);
2222 return;
2223 }
2224
2225 ctio->entry_type = CTIO_TYPE7;
2226 ctio->entry_count = 1;
2227 ctio->handle = QLA_TGT_SKIP_HANDLE | CTIO_COMPLETION_HANDLE_MARK;
2228 ctio->nport_handle = mcmd->sess->loop_id;
Bart Van Asschead950362015-07-09 07:24:08 -07002229 ctio->timeout = cpu_to_le16(QLA_TGT_TIMEOUT);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002230 ctio->vp_index = ha->vp_idx;
Bart Van Asschedf95f392019-08-08 20:01:58 -07002231 ctio->initiator_id = be_id_to_le(atio->u.isp24.fcp_hdr.s_id);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002232 ctio->exchange_addr = atio->u.isp24.exchange_addr;
Quinn Tranf7e761f2017-06-02 09:12:02 -07002233 temp = (atio->u.isp24.attr << 9)|
2234 CTIO7_FLAGS_STATUS_MODE_1 | CTIO7_FLAGS_SEND_STATUS;
2235 ctio->u.status1.flags = cpu_to_le16(temp);
Quinn Tran33a5fce2014-06-24 00:22:29 -04002236 temp = be16_to_cpu(atio->u.isp24.fcp_hdr.ox_id);
2237 ctio->u.status1.ox_id = cpu_to_le16(temp);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002238 ctio->u.status1.scsi_status =
Bart Van Asschead950362015-07-09 07:24:08 -07002239 cpu_to_le16(SS_RESPONSE_INFO_LEN_VALID);
2240 ctio->u.status1.response_len = cpu_to_le16(8);
Roland Dreiere4b11b82012-09-18 15:10:56 -07002241 ctio->u.status1.sense_data[0] = resp_code;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002242
Himanshu Madhani63163e02014-09-25 06:14:59 -04002243 /* Memory Barrier */
2244 wmb();
Quinn Tran8abfa9e2017-06-13 20:47:24 -07002245 if (qpair->reqq_start_iocbs)
2246 qpair->reqq_start_iocbs(qpair);
2247 else
2248 qla2x00_start_iocbs(ha, qpair->req);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002249}
2250
2251void qlt_free_mcmd(struct qla_tgt_mgmt_cmd *mcmd)
2252{
2253 mempool_free(mcmd, qla_tgt_mgmt_cmd_mempool);
2254}
2255EXPORT_SYMBOL(qlt_free_mcmd);
2256
Quinn Tranbe251522017-03-15 09:48:49 -07002257/*
2258 * ha->hardware_lock supposed to be held on entry. Might drop it, then
2259 * reacquire
2260 */
Quinn Tran8abfa9e2017-06-13 20:47:24 -07002261void qlt_send_resp_ctio(struct qla_qpair *qpair, struct qla_tgt_cmd *cmd,
Quinn Tranbe251522017-03-15 09:48:49 -07002262 uint8_t scsi_status, uint8_t sense_key, uint8_t asc, uint8_t ascq)
2263{
2264 struct atio_from_isp *atio = &cmd->atio;
2265 struct ctio7_to_24xx *ctio;
2266 uint16_t temp;
Quinn Tran8abfa9e2017-06-13 20:47:24 -07002267 struct scsi_qla_host *vha = cmd->vha;
Quinn Tranbe251522017-03-15 09:48:49 -07002268
2269 ql_dbg(ql_dbg_tgt_dif, vha, 0x3066,
2270 "Sending response CTIO7 (vha=%p, atio=%p, scsi_status=%02x, "
2271 "sense_key=%02x, asc=%02x, ascq=%02x",
2272 vha, atio, scsi_status, sense_key, asc, ascq);
2273
2274 ctio = (struct ctio7_to_24xx *)qla2x00_alloc_iocbs(vha, NULL);
2275 if (!ctio) {
2276 ql_dbg(ql_dbg_async, vha, 0x3067,
2277 "qla2x00t(%ld): %s failed: unable to allocate request packet",
2278 vha->host_no, __func__);
2279 goto out;
2280 }
2281
2282 ctio->entry_type = CTIO_TYPE7;
2283 ctio->entry_count = 1;
2284 ctio->handle = QLA_TGT_SKIP_HANDLE;
2285 ctio->nport_handle = cmd->sess->loop_id;
2286 ctio->timeout = cpu_to_le16(QLA_TGT_TIMEOUT);
2287 ctio->vp_index = vha->vp_idx;
Bart Van Asschedf95f392019-08-08 20:01:58 -07002288 ctio->initiator_id = be_id_to_le(atio->u.isp24.fcp_hdr.s_id);
Quinn Tranbe251522017-03-15 09:48:49 -07002289 ctio->exchange_addr = atio->u.isp24.exchange_addr;
Quinn Tranf7e761f2017-06-02 09:12:02 -07002290 temp = (atio->u.isp24.attr << 9) |
2291 CTIO7_FLAGS_STATUS_MODE_1 | CTIO7_FLAGS_SEND_STATUS;
2292 ctio->u.status1.flags = cpu_to_le16(temp);
Quinn Tranbe251522017-03-15 09:48:49 -07002293 temp = be16_to_cpu(atio->u.isp24.fcp_hdr.ox_id);
2294 ctio->u.status1.ox_id = cpu_to_le16(temp);
2295 ctio->u.status1.scsi_status =
2296 cpu_to_le16(SS_RESPONSE_INFO_LEN_VALID | scsi_status);
2297 ctio->u.status1.response_len = cpu_to_le16(18);
2298 ctio->u.status1.residual = cpu_to_le32(get_datalen_for_atio(atio));
2299
2300 if (ctio->u.status1.residual != 0)
2301 ctio->u.status1.scsi_status |=
2302 cpu_to_le16(SS_RESIDUAL_UNDER);
2303
Bart Van Asschea861b492019-04-17 14:44:42 -07002304 /* Fixed format sense data. */
2305 ctio->u.status1.sense_data[0] = 0x70;
2306 ctio->u.status1.sense_data[2] = sense_key;
Quinn Tranbe251522017-03-15 09:48:49 -07002307 /* Additional sense length */
Bart Van Asschea861b492019-04-17 14:44:42 -07002308 ctio->u.status1.sense_data[7] = 0xa;
Quinn Tranbe251522017-03-15 09:48:49 -07002309 /* ASC and ASCQ */
Bart Van Asschea861b492019-04-17 14:44:42 -07002310 ctio->u.status1.sense_data[12] = asc;
2311 ctio->u.status1.sense_data[13] = ascq;
Quinn Tranbe251522017-03-15 09:48:49 -07002312
2313 /* Memory Barrier */
2314 wmb();
2315
Quinn Tran8abfa9e2017-06-13 20:47:24 -07002316 if (qpair->reqq_start_iocbs)
2317 qpair->reqq_start_iocbs(qpair);
2318 else
2319 qla2x00_start_iocbs(vha, qpair->req);
2320
Quinn Tranbe251522017-03-15 09:48:49 -07002321out:
2322 return;
2323}
2324
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002325/* callback from target fabric module code */
2326void qlt_xmit_tm_rsp(struct qla_tgt_mgmt_cmd *mcmd)
2327{
2328 struct scsi_qla_host *vha = mcmd->sess->vha;
2329 struct qla_hw_data *ha = vha->hw;
2330 unsigned long flags;
Quinn Tran82de8022017-06-13 20:47:17 -07002331 struct qla_qpair *qpair = mcmd->qpair;
Quinn Tran6b0431d2018-09-04 14:19:13 -07002332 bool free_mcmd = true;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002333
2334 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf013,
2335 "TM response mcmd (%p) status %#x state %#x",
2336 mcmd, mcmd->fc_tm_rsp, mcmd->flags);
2337
Quinn Tran82de8022017-06-13 20:47:17 -07002338 spin_lock_irqsave(qpair->qp_lock_ptr, flags);
Arun Easib6a029e2014-09-25 06:14:52 -04002339
Quinn Tran7c3f8fd2017-06-13 20:47:22 -07002340 if (!vha->flags.online || mcmd->reset_count != qpair->chip_reset) {
Arun Easib6a029e2014-09-25 06:14:52 -04002341 /*
Dilip Kumar Uppugandla3bb67df2015-12-17 14:57:11 -05002342 * Either the port is not online or this request was from
Arun Easib6a029e2014-09-25 06:14:52 -04002343 * previous life, just abort the processing.
2344 */
2345 ql_dbg(ql_dbg_async, vha, 0xe100,
Dilip Kumar Uppugandla3bb67df2015-12-17 14:57:11 -05002346 "RESET-TMR online/active/old-count/new-count = %d/%d/%d/%d.\n",
2347 vha->flags.online, qla2x00_reset_active(vha),
Quinn Tran7c3f8fd2017-06-13 20:47:22 -07002348 mcmd->reset_count, qpair->chip_reset);
Arun Easib6a029e2014-09-25 06:14:52 -04002349 ha->tgt.tgt_ops->free_mcmd(mcmd);
Quinn Tran82de8022017-06-13 20:47:17 -07002350 spin_unlock_irqrestore(qpair->qp_lock_ptr, flags);
Arun Easib6a029e2014-09-25 06:14:52 -04002351 return;
2352 }
2353
Quinn Tran726b8542017-01-19 22:28:00 -08002354 if (mcmd->flags == QLA24XX_MGMT_SEND_NACK) {
Bart Van Assche8837aa82018-11-27 15:04:54 -08002355 switch (mcmd->orig_iocb.imm_ntfy.u.isp24.status_subcode) {
2356 case ELS_LOGO:
2357 case ELS_PRLO:
2358 case ELS_TPRLO:
Quinn Tran83548fe2017-06-02 09:12:01 -07002359 ql_dbg(ql_dbg_disc, vha, 0x2106,
Bart Van Assche19ce1922019-04-17 14:44:11 -07002360 "TM response logo %8phC status %#x state %#x",
Quinn Tran726b8542017-01-19 22:28:00 -08002361 mcmd->sess->port_name, mcmd->fc_tm_rsp,
2362 mcmd->flags);
Quinn Trand8630bb2017-12-28 12:33:43 -08002363 qlt_schedule_sess_for_deletion(mcmd->sess);
Bart Van Assche8837aa82018-11-27 15:04:54 -08002364 break;
2365 default:
Quinn Tran82de8022017-06-13 20:47:17 -07002366 qlt_send_notify_ack(vha->hw->base_qpair,
2367 &mcmd->orig_iocb.imm_ntfy, 0, 0, 0, 0, 0, 0);
Bart Van Assche8837aa82018-11-27 15:04:54 -08002368 break;
Quinn Tran726b8542017-01-19 22:28:00 -08002369 }
2370 } else {
Quinn Tran6b0431d2018-09-04 14:19:13 -07002371 if (mcmd->orig_iocb.atio.u.raw.entry_type == ABTS_RECV_24XX) {
2372 qlt_build_abts_resp_iocb(mcmd);
2373 free_mcmd = false;
2374 } else
Quinn Tran82de8022017-06-13 20:47:17 -07002375 qlt_24xx_send_task_mgmt_ctio(qpair, mcmd,
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002376 mcmd->fc_tm_rsp);
2377 }
2378 /*
2379 * Make the callback for ->free_mcmd() to queue_work() and invoke
2380 * target_put_sess_cmd() to drop cmd_kref to 1. The final
2381 * target_put_sess_cmd() call will be made from TFO->check_stop_free()
2382 * -> tcm_qla2xxx_check_stop_free() to release the TMR associated se_cmd
2383 * descriptor after TFO->queue_tm_rsp() -> tcm_qla2xxx_queue_tm_rsp() ->
2384 * qlt_xmit_tm_rsp() returns here..
2385 */
Quinn Tran6b0431d2018-09-04 14:19:13 -07002386 if (free_mcmd)
2387 ha->tgt.tgt_ops->free_mcmd(mcmd);
2388
Quinn Tran82de8022017-06-13 20:47:17 -07002389 spin_unlock_irqrestore(qpair->qp_lock_ptr, flags);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002390}
2391EXPORT_SYMBOL(qlt_xmit_tm_rsp);
2392
2393/* No locks */
2394static int qlt_pci_map_calc_cnt(struct qla_tgt_prm *prm)
2395{
2396 struct qla_tgt_cmd *cmd = prm->cmd;
2397
2398 BUG_ON(cmd->sg_cnt == 0);
2399
2400 prm->sg = (struct scatterlist *)cmd->sg;
Christoph Hellwige7d0bb72018-10-11 09:42:07 +02002401 prm->seg_cnt = dma_map_sg(&cmd->qpair->pdev->dev, cmd->sg,
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002402 cmd->sg_cnt, cmd->dma_data_direction);
2403 if (unlikely(prm->seg_cnt == 0))
2404 goto out_err;
2405
2406 prm->cmd->sg_mapped = 1;
2407
Quinn Tranf83adb62014-04-11 16:54:43 -04002408 if (cmd->se_cmd.prot_op == TARGET_PROT_NORMAL) {
2409 /*
2410 * If greater than four sg entries then we need to allocate
2411 * the continuation entries
2412 */
Quinn Tranb5399f72017-06-13 20:47:27 -07002413 if (prm->seg_cnt > QLA_TGT_DATASEGS_PER_CMD_24XX)
Quinn Tranf83adb62014-04-11 16:54:43 -04002414 prm->req_cnt += DIV_ROUND_UP(prm->seg_cnt -
Quinn Tranb5399f72017-06-13 20:47:27 -07002415 QLA_TGT_DATASEGS_PER_CMD_24XX,
2416 QLA_TGT_DATASEGS_PER_CONT_24XX);
Quinn Tranf83adb62014-04-11 16:54:43 -04002417 } else {
2418 /* DIF */
2419 if ((cmd->se_cmd.prot_op == TARGET_PROT_DIN_INSERT) ||
2420 (cmd->se_cmd.prot_op == TARGET_PROT_DOUT_STRIP)) {
2421 prm->seg_cnt = DIV_ROUND_UP(cmd->bufflen, cmd->blk_sz);
2422 prm->tot_dsds = prm->seg_cnt;
2423 } else
2424 prm->tot_dsds = prm->seg_cnt;
2425
2426 if (cmd->prot_sg_cnt) {
2427 prm->prot_sg = cmd->prot_sg;
Christoph Hellwige7d0bb72018-10-11 09:42:07 +02002428 prm->prot_seg_cnt = dma_map_sg(&cmd->qpair->pdev->dev,
Quinn Tranf83adb62014-04-11 16:54:43 -04002429 cmd->prot_sg, cmd->prot_sg_cnt,
2430 cmd->dma_data_direction);
2431 if (unlikely(prm->prot_seg_cnt == 0))
2432 goto out_err;
2433
2434 if ((cmd->se_cmd.prot_op == TARGET_PROT_DIN_INSERT) ||
2435 (cmd->se_cmd.prot_op == TARGET_PROT_DOUT_STRIP)) {
2436 /* Dif Bundling not support here */
2437 prm->prot_seg_cnt = DIV_ROUND_UP(cmd->bufflen,
2438 cmd->blk_sz);
2439 prm->tot_dsds += prm->prot_seg_cnt;
2440 } else
2441 prm->tot_dsds += prm->prot_seg_cnt;
2442 }
2443 }
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002444
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002445 return 0;
2446
2447out_err:
Quinn Tran22d84722017-06-13 20:47:25 -07002448 ql_dbg_qp(ql_dbg_tgt, prm->cmd->qpair, 0xe04d,
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002449 "qla_target(%d): PCI mapping failed: sg_cnt=%d",
2450 0, prm->cmd->sg_cnt);
2451 return -1;
2452}
2453
Joern Engelf9b67212014-09-16 16:23:18 -04002454static void qlt_unmap_sg(struct scsi_qla_host *vha, struct qla_tgt_cmd *cmd)
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002455{
Quinn Tran8abfa9e2017-06-13 20:47:24 -07002456 struct qla_hw_data *ha;
2457 struct qla_qpair *qpair;
Bart Van Asschebd432bb2019-04-11 14:53:17 -07002458
Joern Engelf9b67212014-09-16 16:23:18 -04002459 if (!cmd->sg_mapped)
2460 return;
2461
Quinn Tran8abfa9e2017-06-13 20:47:24 -07002462 qpair = cmd->qpair;
2463
Christoph Hellwige7d0bb72018-10-11 09:42:07 +02002464 dma_unmap_sg(&qpair->pdev->dev, cmd->sg, cmd->sg_cnt,
Quinn Tran8abfa9e2017-06-13 20:47:24 -07002465 cmd->dma_data_direction);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002466 cmd->sg_mapped = 0;
Quinn Tranf83adb62014-04-11 16:54:43 -04002467
2468 if (cmd->prot_sg_cnt)
Christoph Hellwige7d0bb72018-10-11 09:42:07 +02002469 dma_unmap_sg(&qpair->pdev->dev, cmd->prot_sg, cmd->prot_sg_cnt,
Quinn Tranf83adb62014-04-11 16:54:43 -04002470 cmd->dma_data_direction);
2471
Joe Carnucciod5ff0ee2017-05-24 18:06:24 -07002472 if (!cmd->ctx)
2473 return;
Quinn Tran8abfa9e2017-06-13 20:47:24 -07002474 ha = vha->hw;
Joe Carnucciod5ff0ee2017-05-24 18:06:24 -07002475 if (cmd->ctx_dsd_alloced)
2476 qla2x00_clean_dsd_pool(ha, cmd->ctx);
2477
2478 dma_pool_free(ha->dl_dma_pool, cmd->ctx, cmd->ctx->crc_ctx_dma);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002479}
2480
Quinn Tran82de8022017-06-13 20:47:17 -07002481static int qlt_check_reserve_free_req(struct qla_qpair *qpair,
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002482 uint32_t req_cnt)
2483{
Quinn Trand63b3282017-06-02 09:12:07 -07002484 uint32_t cnt;
Quinn Tran82de8022017-06-13 20:47:17 -07002485 struct req_que *req = qpair->req;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002486
Quinn Tran82de8022017-06-13 20:47:17 -07002487 if (req->cnt < (req_cnt + 2)) {
Quinn Tranaf7bb382017-06-13 20:47:23 -07002488 cnt = (uint16_t)(qpair->use_shadow_reg ? *req->out_ptr :
2489 RD_REG_DWORD_RELAXED(req->req_q_out));
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002490
Quinn Tran82de8022017-06-13 20:47:17 -07002491 if (req->ring_index < cnt)
2492 req->cnt = cnt - req->ring_index;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002493 else
Quinn Tran82de8022017-06-13 20:47:17 -07002494 req->cnt = req->length - (req->ring_index - cnt);
Arnd Bergmannbc7095a2016-03-15 22:40:31 +01002495
Quinn Tran82de8022017-06-13 20:47:17 -07002496 if (unlikely(req->cnt < (req_cnt + 2)))
Arnd Bergmannbc7095a2016-03-15 22:40:31 +01002497 return -EAGAIN;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002498 }
2499
Quinn Tran82de8022017-06-13 20:47:17 -07002500 req->cnt -= req_cnt;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002501
2502 return 0;
2503}
2504
2505/*
2506 * ha->hardware_lock supposed to be held on entry. Might drop it, then reaquire
2507 */
Quinn Tran82de8022017-06-13 20:47:17 -07002508static inline void *qlt_get_req_pkt(struct req_que *req)
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002509{
2510 /* Adjust ring index. */
Quinn Tran82de8022017-06-13 20:47:17 -07002511 req->ring_index++;
2512 if (req->ring_index == req->length) {
2513 req->ring_index = 0;
2514 req->ring_ptr = req->ring;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002515 } else {
Quinn Tran82de8022017-06-13 20:47:17 -07002516 req->ring_ptr++;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002517 }
Quinn Tran82de8022017-06-13 20:47:17 -07002518 return (cont_entry_t *)req->ring_ptr;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002519}
2520
2521/* ha->hardware_lock supposed to be held on entry */
Quinn Tran82de8022017-06-13 20:47:17 -07002522static inline uint32_t qlt_make_handle(struct qla_qpair *qpair)
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002523{
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002524 uint32_t h;
Quinn Tranc5419e22017-06-13 20:47:16 -07002525 int index;
2526 uint8_t found = 0;
Quinn Tran82de8022017-06-13 20:47:17 -07002527 struct req_que *req = qpair->req;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002528
Quinn Tranc5419e22017-06-13 20:47:16 -07002529 h = req->current_outstanding_cmd;
2530
2531 for (index = 1; index < req->num_outstanding_cmds; index++) {
2532 h++;
2533 if (h == req->num_outstanding_cmds)
2534 h = 1;
2535
2536 if (h == QLA_TGT_SKIP_HANDLE)
2537 continue;
2538
2539 if (!req->outstanding_cmds[h]) {
2540 found = 1;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002541 break;
2542 }
Quinn Tranc5419e22017-06-13 20:47:16 -07002543 }
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002544
Quinn Tranc5419e22017-06-13 20:47:16 -07002545 if (found) {
2546 req->current_outstanding_cmd = h;
2547 } else {
Quinn Tran8abfa9e2017-06-13 20:47:24 -07002548 ql_dbg(ql_dbg_io, qpair->vha, 0x305b,
2549 "qla_target(%d): Ran out of empty cmd slots\n",
2550 qpair->vha->vp_idx);
Quinn Tranc5419e22017-06-13 20:47:16 -07002551 h = QLA_TGT_NULL_HANDLE;
2552 }
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002553
2554 return h;
2555}
2556
2557/* ha->hardware_lock supposed to be held on entry */
Quinn Tran82de8022017-06-13 20:47:17 -07002558static int qlt_24xx_build_ctio_pkt(struct qla_qpair *qpair,
2559 struct qla_tgt_prm *prm)
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002560{
2561 uint32_t h;
2562 struct ctio7_to_24xx *pkt;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002563 struct atio_from_isp *atio = &prm->cmd->atio;
Quinn Tran33a5fce2014-06-24 00:22:29 -04002564 uint16_t temp;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002565
Quinn Tran82de8022017-06-13 20:47:17 -07002566 pkt = (struct ctio7_to_24xx *)qpair->req->ring_ptr;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002567 prm->pkt = pkt;
2568 memset(pkt, 0, sizeof(*pkt));
2569
2570 pkt->entry_type = CTIO_TYPE7;
2571 pkt->entry_count = (uint8_t)prm->req_cnt;
Quinn Tran22d84722017-06-13 20:47:25 -07002572 pkt->vp_index = prm->cmd->vp_idx;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002573
Quinn Tran82de8022017-06-13 20:47:17 -07002574 h = qlt_make_handle(qpair);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002575 if (unlikely(h == QLA_TGT_NULL_HANDLE)) {
2576 /*
2577 * CTIO type 7 from the firmware doesn't provide a way to
2578 * know the initiator's LOOP ID, hence we can't find
2579 * the session and, so, the command.
2580 */
2581 return -EAGAIN;
Quinn Trane326d222017-06-13 20:47:18 -07002582 } else
2583 qpair->req->outstanding_cmds[h] = (srb_t *)prm->cmd;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002584
Quinn Tran82de8022017-06-13 20:47:17 -07002585 pkt->handle = MAKE_HANDLE(qpair->req->id, h);
2586 pkt->handle |= CTIO_COMPLETION_HANDLE_MARK;
2587 pkt->nport_handle = cpu_to_le16(prm->cmd->loop_id);
Bart Van Asschead950362015-07-09 07:24:08 -07002588 pkt->timeout = cpu_to_le16(QLA_TGT_TIMEOUT);
Bart Van Asschedf95f392019-08-08 20:01:58 -07002589 pkt->initiator_id = be_id_to_le(atio->u.isp24.fcp_hdr.s_id);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002590 pkt->exchange_addr = atio->u.isp24.exchange_addr;
Quinn Tranf7e761f2017-06-02 09:12:02 -07002591 temp = atio->u.isp24.attr << 9;
2592 pkt->u.status0.flags |= cpu_to_le16(temp);
Quinn Tran33a5fce2014-06-24 00:22:29 -04002593 temp = be16_to_cpu(atio->u.isp24.fcp_hdr.ox_id);
2594 pkt->u.status0.ox_id = cpu_to_le16(temp);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002595 pkt->u.status0.relative_offset = cpu_to_le32(prm->cmd->offset);
2596
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002597 return 0;
2598}
2599
2600/*
2601 * ha->hardware_lock supposed to be held on entry. We have already made sure
2602 * that there is sufficient amount of request entries to not drop it.
2603 */
Quinn Tran32d29b42017-06-13 20:47:26 -07002604static void qlt_load_cont_data_segments(struct qla_tgt_prm *prm)
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002605{
2606 int cnt;
Bart Van Assche15b7a682019-04-17 14:44:38 -07002607 struct dsd64 *cur_dsd;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002608
2609 /* Build continuation packets */
2610 while (prm->seg_cnt > 0) {
2611 cont_a64_entry_t *cont_pkt64 =
Quinn Tran82de8022017-06-13 20:47:17 -07002612 (cont_a64_entry_t *)qlt_get_req_pkt(
2613 prm->cmd->qpair->req);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002614
2615 /*
2616 * Make sure that from cont_pkt64 none of
2617 * 64-bit specific fields used for 32-bit
2618 * addressing. Cast to (cont_entry_t *) for
2619 * that.
2620 */
2621
2622 memset(cont_pkt64, 0, sizeof(*cont_pkt64));
2623
2624 cont_pkt64->entry_count = 1;
2625 cont_pkt64->sys_define = 0;
2626
Quinn Tran32d29b42017-06-13 20:47:26 -07002627 cont_pkt64->entry_type = CONTINUE_A64_TYPE;
Bart Van Assche15b7a682019-04-17 14:44:38 -07002628 cur_dsd = cont_pkt64->dsd;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002629
2630 /* Load continuation entry data segments */
2631 for (cnt = 0;
Quinn Tranb5399f72017-06-13 20:47:27 -07002632 cnt < QLA_TGT_DATASEGS_PER_CONT_24XX && prm->seg_cnt;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002633 cnt++, prm->seg_cnt--) {
Bart Van Assche15b7a682019-04-17 14:44:38 -07002634 append_dsd64(&cur_dsd, prm->sg);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002635 prm->sg = sg_next(prm->sg);
2636 }
2637 }
2638}
2639
2640/*
2641 * ha->hardware_lock supposed to be held on entry. We have already made sure
2642 * that there is sufficient amount of request entries to not drop it.
2643 */
Quinn Tran32d29b42017-06-13 20:47:26 -07002644static void qlt_load_data_segments(struct qla_tgt_prm *prm)
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002645{
2646 int cnt;
Bart Van Assche15b7a682019-04-17 14:44:38 -07002647 struct dsd64 *cur_dsd;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002648 struct ctio7_to_24xx *pkt24 = (struct ctio7_to_24xx *)prm->pkt;
2649
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002650 pkt24->u.status0.transfer_length = cpu_to_le32(prm->cmd->bufflen);
2651
2652 /* Setup packet address segment pointer */
Bart Van Assche15b7a682019-04-17 14:44:38 -07002653 cur_dsd = &pkt24->u.status0.dsd;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002654
2655 /* Set total data segment count */
2656 if (prm->seg_cnt)
2657 pkt24->dseg_count = cpu_to_le16(prm->seg_cnt);
2658
2659 if (prm->seg_cnt == 0) {
2660 /* No data transfer */
Bart Van Assche15b7a682019-04-17 14:44:38 -07002661 cur_dsd->address = 0;
2662 cur_dsd->length = 0;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002663 return;
2664 }
2665
2666 /* If scatter gather */
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002667
2668 /* Load command entry data segments */
2669 for (cnt = 0;
Quinn Tranb5399f72017-06-13 20:47:27 -07002670 (cnt < QLA_TGT_DATASEGS_PER_CMD_24XX) && prm->seg_cnt;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002671 cnt++, prm->seg_cnt--) {
Bart Van Assche15b7a682019-04-17 14:44:38 -07002672 append_dsd64(&cur_dsd, prm->sg);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002673 prm->sg = sg_next(prm->sg);
2674 }
2675
Quinn Tran32d29b42017-06-13 20:47:26 -07002676 qlt_load_cont_data_segments(prm);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002677}
2678
2679static inline int qlt_has_data(struct qla_tgt_cmd *cmd)
2680{
2681 return cmd->bufflen > 0;
2682}
2683
Quinn Tranbe251522017-03-15 09:48:49 -07002684static void qlt_print_dif_err(struct qla_tgt_prm *prm)
2685{
2686 struct qla_tgt_cmd *cmd;
2687 struct scsi_qla_host *vha;
2688
2689 /* asc 0x10=dif error */
2690 if (prm->sense_buffer && (prm->sense_buffer[12] == 0x10)) {
2691 cmd = prm->cmd;
2692 vha = cmd->vha;
2693 /* ASCQ */
2694 switch (prm->sense_buffer[13]) {
2695 case 1:
Quinn Tran83548fe2017-06-02 09:12:01 -07002696 ql_dbg(ql_dbg_tgt_dif, vha, 0xe00b,
Quinn Tranbe251522017-03-15 09:48:49 -07002697 "BE detected Guard TAG ERR: lba[0x%llx|%lld] len[0x%x] "
2698 "se_cmd=%p tag[%x]",
2699 cmd->lba, cmd->lba, cmd->num_blks, &cmd->se_cmd,
2700 cmd->atio.u.isp24.exchange_addr);
2701 break;
2702 case 2:
Quinn Tran83548fe2017-06-02 09:12:01 -07002703 ql_dbg(ql_dbg_tgt_dif, vha, 0xe00c,
Quinn Tranbe251522017-03-15 09:48:49 -07002704 "BE detected APP TAG ERR: lba[0x%llx|%lld] len[0x%x] "
2705 "se_cmd=%p tag[%x]",
2706 cmd->lba, cmd->lba, cmd->num_blks, &cmd->se_cmd,
2707 cmd->atio.u.isp24.exchange_addr);
2708 break;
2709 case 3:
Quinn Tran83548fe2017-06-02 09:12:01 -07002710 ql_dbg(ql_dbg_tgt_dif, vha, 0xe00f,
Quinn Tranbe251522017-03-15 09:48:49 -07002711 "BE detected REF TAG ERR: lba[0x%llx|%lld] len[0x%x] "
2712 "se_cmd=%p tag[%x]",
2713 cmd->lba, cmd->lba, cmd->num_blks, &cmd->se_cmd,
2714 cmd->atio.u.isp24.exchange_addr);
2715 break;
2716 default:
Quinn Tran83548fe2017-06-02 09:12:01 -07002717 ql_dbg(ql_dbg_tgt_dif, vha, 0xe010,
Quinn Tranbe251522017-03-15 09:48:49 -07002718 "BE detected Dif ERR: lba[%llx|%lld] len[%x] "
2719 "se_cmd=%p tag[%x]",
2720 cmd->lba, cmd->lba, cmd->num_blks, &cmd->se_cmd,
2721 cmd->atio.u.isp24.exchange_addr);
2722 break;
2723 }
Quinn Tran83548fe2017-06-02 09:12:01 -07002724 ql_dump_buffer(ql_dbg_tgt_dif, vha, 0xe011, cmd->cdb, 16);
Quinn Tranbe251522017-03-15 09:48:49 -07002725 }
2726}
2727
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002728/*
2729 * Called without ha->hardware_lock held
2730 */
2731static int qlt_pre_xmit_response(struct qla_tgt_cmd *cmd,
2732 struct qla_tgt_prm *prm, int xmit_type, uint8_t scsi_status,
2733 uint32_t *full_req_cnt)
2734{
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002735 struct se_cmd *se_cmd = &cmd->se_cmd;
Quinn Tran22d84722017-06-13 20:47:25 -07002736 struct qla_qpair *qpair = cmd->qpair;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002737
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002738 prm->cmd = cmd;
Quinn Tran7c3f8fd2017-06-13 20:47:22 -07002739 prm->tgt = cmd->tgt;
2740 prm->pkt = NULL;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002741 prm->rq_result = scsi_status;
2742 prm->sense_buffer = &cmd->sense_buffer[0];
2743 prm->sense_buffer_len = TRANSPORT_SENSE_BUFFER;
2744 prm->sg = NULL;
2745 prm->seg_cnt = -1;
2746 prm->req_cnt = 1;
Quinn Tran7c3f8fd2017-06-13 20:47:22 -07002747 prm->residual = 0;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002748 prm->add_status_pkt = 0;
Quinn Tran7c3f8fd2017-06-13 20:47:22 -07002749 prm->prot_sg = NULL;
2750 prm->prot_seg_cnt = 0;
2751 prm->tot_dsds = 0;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002752
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002753 if ((xmit_type & QLA_TGT_XMIT_DATA) && qlt_has_data(cmd)) {
2754 if (qlt_pci_map_calc_cnt(prm) != 0)
2755 return -EAGAIN;
2756 }
2757
2758 *full_req_cnt = prm->req_cnt;
2759
2760 if (se_cmd->se_cmd_flags & SCF_UNDERFLOW_BIT) {
2761 prm->residual = se_cmd->residual_count;
Quinn Tran22d84722017-06-13 20:47:25 -07002762 ql_dbg_qp(ql_dbg_io + ql_dbg_verbose, qpair, 0x305c,
Bart Van Assche649ee052015-04-14 13:26:44 +02002763 "Residual underflow: %d (tag %lld, op %x, bufflen %d, rq_result %x)\n",
2764 prm->residual, se_cmd->tag,
2765 se_cmd->t_task_cdb ? se_cmd->t_task_cdb[0] : 0,
2766 cmd->bufflen, prm->rq_result);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002767 prm->rq_result |= SS_RESIDUAL_UNDER;
2768 } else if (se_cmd->se_cmd_flags & SCF_OVERFLOW_BIT) {
2769 prm->residual = se_cmd->residual_count;
Quinn Tran22d84722017-06-13 20:47:25 -07002770 ql_dbg_qp(ql_dbg_io, qpair, 0x305d,
Bart Van Assche649ee052015-04-14 13:26:44 +02002771 "Residual overflow: %d (tag %lld, op %x, bufflen %d, rq_result %x)\n",
2772 prm->residual, se_cmd->tag, se_cmd->t_task_cdb ?
2773 se_cmd->t_task_cdb[0] : 0, cmd->bufflen, prm->rq_result);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002774 prm->rq_result |= SS_RESIDUAL_OVER;
2775 }
2776
2777 if (xmit_type & QLA_TGT_XMIT_STATUS) {
2778 /*
2779 * If QLA_TGT_XMIT_DATA is not set, add_status_pkt will be
2780 * ignored in *xmit_response() below
2781 */
2782 if (qlt_has_data(cmd)) {
2783 if (QLA_TGT_SENSE_VALID(prm->sense_buffer) ||
Quinn Tran7c3f8fd2017-06-13 20:47:22 -07002784 (IS_FWI2_CAPABLE(cmd->vha->hw) &&
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002785 (prm->rq_result != 0))) {
2786 prm->add_status_pkt = 1;
2787 (*full_req_cnt)++;
2788 }
2789 }
2790 }
2791
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002792 return 0;
2793}
2794
Quinn Tran7c3f8fd2017-06-13 20:47:22 -07002795static inline int qlt_need_explicit_conf(struct qla_tgt_cmd *cmd,
2796 int sending_sense)
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002797{
Quinn Tran7c3f8fd2017-06-13 20:47:22 -07002798 if (cmd->qpair->enable_class_2)
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002799 return 0;
2800
2801 if (sending_sense)
2802 return cmd->conf_compl_supported;
2803 else
Quinn Tran7c3f8fd2017-06-13 20:47:22 -07002804 return cmd->qpair->enable_explicit_conf &&
2805 cmd->conf_compl_supported;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002806}
2807
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002808static void qlt_24xx_init_ctio_to_isp(struct ctio7_to_24xx *ctio,
2809 struct qla_tgt_prm *prm)
2810{
2811 prm->sense_buffer_len = min_t(uint32_t, prm->sense_buffer_len,
2812 (uint32_t)sizeof(ctio->u.status1.sense_data));
Bart Van Asschead950362015-07-09 07:24:08 -07002813 ctio->u.status0.flags |= cpu_to_le16(CTIO7_FLAGS_SEND_STATUS);
Quinn Tran7c3f8fd2017-06-13 20:47:22 -07002814 if (qlt_need_explicit_conf(prm->cmd, 0)) {
Bart Van Asschead950362015-07-09 07:24:08 -07002815 ctio->u.status0.flags |= cpu_to_le16(
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002816 CTIO7_FLAGS_EXPLICIT_CONFORM |
2817 CTIO7_FLAGS_CONFORM_REQ);
2818 }
2819 ctio->u.status0.residual = cpu_to_le32(prm->residual);
2820 ctio->u.status0.scsi_status = cpu_to_le16(prm->rq_result);
2821 if (QLA_TGT_SENSE_VALID(prm->sense_buffer)) {
2822 int i;
2823
Quinn Tran7c3f8fd2017-06-13 20:47:22 -07002824 if (qlt_need_explicit_conf(prm->cmd, 1)) {
Quinn Trandf2e32c2017-01-19 22:27:53 -08002825 if ((prm->rq_result & SS_SCSI_STATUS_BYTE) != 0) {
Quinn Tran22d84722017-06-13 20:47:25 -07002826 ql_dbg_qp(ql_dbg_tgt, prm->cmd->qpair, 0xe017,
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002827 "Skipping EXPLICIT_CONFORM and "
2828 "CTIO7_FLAGS_CONFORM_REQ for FCP READ w/ "
2829 "non GOOD status\n");
2830 goto skip_explict_conf;
2831 }
Bart Van Asschead950362015-07-09 07:24:08 -07002832 ctio->u.status1.flags |= cpu_to_le16(
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002833 CTIO7_FLAGS_EXPLICIT_CONFORM |
2834 CTIO7_FLAGS_CONFORM_REQ);
2835 }
2836skip_explict_conf:
2837 ctio->u.status1.flags &=
Bart Van Asschead950362015-07-09 07:24:08 -07002838 ~cpu_to_le16(CTIO7_FLAGS_STATUS_MODE_0);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002839 ctio->u.status1.flags |=
Bart Van Asschead950362015-07-09 07:24:08 -07002840 cpu_to_le16(CTIO7_FLAGS_STATUS_MODE_1);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002841 ctio->u.status1.scsi_status |=
Bart Van Asschead950362015-07-09 07:24:08 -07002842 cpu_to_le16(SS_SENSE_LEN_VALID);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002843 ctio->u.status1.sense_length =
2844 cpu_to_le16(prm->sense_buffer_len);
2845 for (i = 0; i < prm->sense_buffer_len/4; i++)
2846 ((uint32_t *)ctio->u.status1.sense_data)[i] =
2847 cpu_to_be32(((uint32_t *)prm->sense_buffer)[i]);
Quinn Tranbe251522017-03-15 09:48:49 -07002848
2849 qlt_print_dif_err(prm);
2850
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002851 } else {
2852 ctio->u.status1.flags &=
Bart Van Asschead950362015-07-09 07:24:08 -07002853 ~cpu_to_le16(CTIO7_FLAGS_STATUS_MODE_0);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002854 ctio->u.status1.flags |=
Bart Van Asschead950362015-07-09 07:24:08 -07002855 cpu_to_le16(CTIO7_FLAGS_STATUS_MODE_1);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002856 ctio->u.status1.sense_length = 0;
2857 memset(ctio->u.status1.sense_data, 0,
2858 sizeof(ctio->u.status1.sense_data));
2859 }
2860
2861 /* Sense with len > 24, is it possible ??? */
2862}
2863
Quinn Tranf83adb62014-04-11 16:54:43 -04002864static inline int
2865qlt_hba_err_chk_enabled(struct se_cmd *se_cmd)
2866{
Quinn Tranf83adb62014-04-11 16:54:43 -04002867 switch (se_cmd->prot_op) {
2868 case TARGET_PROT_DOUT_INSERT:
2869 case TARGET_PROT_DIN_STRIP:
2870 if (ql2xenablehba_err_chk >= 1)
2871 return 1;
2872 break;
2873 case TARGET_PROT_DOUT_PASS:
2874 case TARGET_PROT_DIN_PASS:
2875 if (ql2xenablehba_err_chk >= 2)
2876 return 1;
2877 break;
2878 case TARGET_PROT_DIN_INSERT:
2879 case TARGET_PROT_DOUT_STRIP:
2880 return 1;
2881 default:
2882 break;
2883 }
2884 return 0;
2885}
2886
Quinn Tranbe251522017-03-15 09:48:49 -07002887static inline int
2888qla_tgt_ref_mask_check(struct se_cmd *se_cmd)
Quinn Tranf83adb62014-04-11 16:54:43 -04002889{
Quinn Tranbe251522017-03-15 09:48:49 -07002890 switch (se_cmd->prot_op) {
2891 case TARGET_PROT_DIN_INSERT:
2892 case TARGET_PROT_DOUT_INSERT:
2893 case TARGET_PROT_DIN_STRIP:
2894 case TARGET_PROT_DOUT_STRIP:
2895 case TARGET_PROT_DIN_PASS:
2896 case TARGET_PROT_DOUT_PASS:
2897 return 1;
2898 default:
2899 return 0;
2900 }
2901 return 0;
2902}
Quinn Tranf83adb62014-04-11 16:54:43 -04002903
Quinn Tranbe251522017-03-15 09:48:49 -07002904/*
2905 * qla_tgt_set_dif_tags - Extract Ref and App tags from SCSI command
2906 */
2907static void
2908qla_tgt_set_dif_tags(struct qla_tgt_cmd *cmd, struct crc_context *ctx,
2909 uint16_t *pfw_prot_opts)
2910{
2911 struct se_cmd *se_cmd = &cmd->se_cmd;
2912 uint32_t lba = 0xffffffff & se_cmd->t_task_lba;
2913 scsi_qla_host_t *vha = cmd->tgt->vha;
2914 struct qla_hw_data *ha = vha->hw;
2915 uint32_t t32 = 0;
2916
2917 /*
2918 * wait till Mode Sense/Select cmd, modepage Ah, subpage 2
Quinn Tranf83adb62014-04-11 16:54:43 -04002919 * have been immplemented by TCM, before AppTag is avail.
2920 * Look for modesense_handlers[]
2921 */
Quinn Tranc7ee3bd2014-06-02 07:02:16 -04002922 ctx->app_tag = 0;
Quinn Tranf83adb62014-04-11 16:54:43 -04002923 ctx->app_tag_mask[0] = 0x0;
2924 ctx->app_tag_mask[1] = 0x0;
2925
Quinn Tranbe251522017-03-15 09:48:49 -07002926 if (IS_PI_UNINIT_CAPABLE(ha)) {
2927 if ((se_cmd->prot_type == TARGET_DIF_TYPE1_PROT) ||
2928 (se_cmd->prot_type == TARGET_DIF_TYPE2_PROT))
2929 *pfw_prot_opts |= PO_DIS_VALD_APP_ESC;
2930 else if (se_cmd->prot_type == TARGET_DIF_TYPE3_PROT)
2931 *pfw_prot_opts |= PO_DIS_VALD_APP_REF_ESC;
2932 }
2933
2934 t32 = ha->tgt.tgt_ops->get_dif_tags(cmd, pfw_prot_opts);
2935
Quinn Tranf83adb62014-04-11 16:54:43 -04002936 switch (se_cmd->prot_type) {
2937 case TARGET_DIF_TYPE0_PROT:
2938 /*
Quinn Tranbe251522017-03-15 09:48:49 -07002939 * No check for ql2xenablehba_err_chk, as it
2940 * would be an I/O error if hba tag generation
2941 * is not done.
Quinn Tranf83adb62014-04-11 16:54:43 -04002942 */
2943 ctx->ref_tag = cpu_to_le32(lba);
Quinn Tranf83adb62014-04-11 16:54:43 -04002944 /* enable ALL bytes of the ref tag */
2945 ctx->ref_tag_mask[0] = 0xff;
2946 ctx->ref_tag_mask[1] = 0xff;
2947 ctx->ref_tag_mask[2] = 0xff;
2948 ctx->ref_tag_mask[3] = 0xff;
2949 break;
Quinn Tranf83adb62014-04-11 16:54:43 -04002950 case TARGET_DIF_TYPE1_PROT:
Quinn Tranbe251522017-03-15 09:48:49 -07002951 /*
2952 * For TYPE 1 protection: 16 bit GUARD tag, 32 bit
2953 * REF tag, and 16 bit app tag.
2954 */
2955 ctx->ref_tag = cpu_to_le32(lba);
2956 if (!qla_tgt_ref_mask_check(se_cmd) ||
2957 !(ha->tgt.tgt_ops->chk_dif_tags(t32))) {
2958 *pfw_prot_opts |= PO_DIS_REF_TAG_VALD;
2959 break;
2960 }
2961 /* enable ALL bytes of the ref tag */
2962 ctx->ref_tag_mask[0] = 0xff;
2963 ctx->ref_tag_mask[1] = 0xff;
2964 ctx->ref_tag_mask[2] = 0xff;
2965 ctx->ref_tag_mask[3] = 0xff;
2966 break;
Quinn Tranf83adb62014-04-11 16:54:43 -04002967 case TARGET_DIF_TYPE2_PROT:
Quinn Tranbe251522017-03-15 09:48:49 -07002968 /*
2969 * For TYPE 2 protection: 16 bit GUARD + 32 bit REF
2970 * tag has to match LBA in CDB + N
2971 */
2972 ctx->ref_tag = cpu_to_le32(lba);
2973 if (!qla_tgt_ref_mask_check(se_cmd) ||
2974 !(ha->tgt.tgt_ops->chk_dif_tags(t32))) {
2975 *pfw_prot_opts |= PO_DIS_REF_TAG_VALD;
2976 break;
2977 }
2978 /* enable ALL bytes of the ref tag */
2979 ctx->ref_tag_mask[0] = 0xff;
2980 ctx->ref_tag_mask[1] = 0xff;
2981 ctx->ref_tag_mask[2] = 0xff;
2982 ctx->ref_tag_mask[3] = 0xff;
2983 break;
Quinn Tranf83adb62014-04-11 16:54:43 -04002984 case TARGET_DIF_TYPE3_PROT:
Quinn Tranbe251522017-03-15 09:48:49 -07002985 /* For TYPE 3 protection: 16 bit GUARD only */
2986 *pfw_prot_opts |= PO_DIS_REF_TAG_VALD;
2987 ctx->ref_tag_mask[0] = ctx->ref_tag_mask[1] =
2988 ctx->ref_tag_mask[2] = ctx->ref_tag_mask[3] = 0x00;
2989 break;
Quinn Tranf83adb62014-04-11 16:54:43 -04002990 }
2991}
2992
Quinn Tranf83adb62014-04-11 16:54:43 -04002993static inline int
Quinn Tran82de8022017-06-13 20:47:17 -07002994qlt_build_ctio_crc2_pkt(struct qla_qpair *qpair, struct qla_tgt_prm *prm)
Quinn Tranf83adb62014-04-11 16:54:43 -04002995{
Bart Van Assche15b7a682019-04-17 14:44:38 -07002996 struct dsd64 *cur_dsd;
Quinn Tranf83adb62014-04-11 16:54:43 -04002997 uint32_t transfer_length = 0;
2998 uint32_t data_bytes;
2999 uint32_t dif_bytes;
3000 uint8_t bundling = 1;
Quinn Tranf83adb62014-04-11 16:54:43 -04003001 struct crc_context *crc_ctx_pkt = NULL;
3002 struct qla_hw_data *ha;
3003 struct ctio_crc2_to_fw *pkt;
3004 dma_addr_t crc_ctx_dma;
3005 uint16_t fw_prot_opts = 0;
3006 struct qla_tgt_cmd *cmd = prm->cmd;
3007 struct se_cmd *se_cmd = &cmd->se_cmd;
3008 uint32_t h;
3009 struct atio_from_isp *atio = &prm->cmd->atio;
Quinn Tranbe251522017-03-15 09:48:49 -07003010 struct qla_tc_param tc;
Quinn Tranc7ee3bd2014-06-02 07:02:16 -04003011 uint16_t t16;
Quinn Tran82de8022017-06-13 20:47:17 -07003012 scsi_qla_host_t *vha = cmd->vha;
Quinn Tranf83adb62014-04-11 16:54:43 -04003013
Quinn Tranf83adb62014-04-11 16:54:43 -04003014 ha = vha->hw;
3015
Quinn Tran82de8022017-06-13 20:47:17 -07003016 pkt = (struct ctio_crc2_to_fw *)qpair->req->ring_ptr;
Quinn Tranf83adb62014-04-11 16:54:43 -04003017 prm->pkt = pkt;
3018 memset(pkt, 0, sizeof(*pkt));
3019
Quinn Tran22d84722017-06-13 20:47:25 -07003020 ql_dbg_qp(ql_dbg_tgt, cmd->qpair, 0xe071,
Quinn Tranf83adb62014-04-11 16:54:43 -04003021 "qla_target(%d):%s: se_cmd[%p] CRC2 prot_op[0x%x] cmd prot sg:cnt[%p:%x] lba[%llu]\n",
Quinn Tran22d84722017-06-13 20:47:25 -07003022 cmd->vp_idx, __func__, se_cmd, se_cmd->prot_op,
Quinn Tranf83adb62014-04-11 16:54:43 -04003023 prm->prot_sg, prm->prot_seg_cnt, se_cmd->t_task_lba);
3024
3025 if ((se_cmd->prot_op == TARGET_PROT_DIN_INSERT) ||
3026 (se_cmd->prot_op == TARGET_PROT_DOUT_STRIP))
3027 bundling = 0;
3028
3029 /* Compute dif len and adjust data len to incude protection */
3030 data_bytes = cmd->bufflen;
3031 dif_bytes = (data_bytes / cmd->blk_sz) * 8;
3032
3033 switch (se_cmd->prot_op) {
3034 case TARGET_PROT_DIN_INSERT:
3035 case TARGET_PROT_DOUT_STRIP:
3036 transfer_length = data_bytes;
Quinn Tranbe251522017-03-15 09:48:49 -07003037 if (cmd->prot_sg_cnt)
3038 data_bytes += dif_bytes;
Quinn Tranf83adb62014-04-11 16:54:43 -04003039 break;
Quinn Tranf83adb62014-04-11 16:54:43 -04003040 case TARGET_PROT_DIN_STRIP:
3041 case TARGET_PROT_DOUT_INSERT:
3042 case TARGET_PROT_DIN_PASS:
3043 case TARGET_PROT_DOUT_PASS:
3044 transfer_length = data_bytes + dif_bytes;
3045 break;
Quinn Tranf83adb62014-04-11 16:54:43 -04003046 default:
3047 BUG();
3048 break;
3049 }
3050
3051 if (!qlt_hba_err_chk_enabled(se_cmd))
3052 fw_prot_opts |= 0x10; /* Disable Guard tag checking */
3053 /* HBA error checking enabled */
3054 else if (IS_PI_UNINIT_CAPABLE(ha)) {
3055 if ((se_cmd->prot_type == TARGET_DIF_TYPE1_PROT) ||
3056 (se_cmd->prot_type == TARGET_DIF_TYPE2_PROT))
3057 fw_prot_opts |= PO_DIS_VALD_APP_ESC;
3058 else if (se_cmd->prot_type == TARGET_DIF_TYPE3_PROT)
3059 fw_prot_opts |= PO_DIS_VALD_APP_REF_ESC;
3060 }
3061
3062 switch (se_cmd->prot_op) {
3063 case TARGET_PROT_DIN_INSERT:
3064 case TARGET_PROT_DOUT_INSERT:
3065 fw_prot_opts |= PO_MODE_DIF_INSERT;
3066 break;
3067 case TARGET_PROT_DIN_STRIP:
3068 case TARGET_PROT_DOUT_STRIP:
3069 fw_prot_opts |= PO_MODE_DIF_REMOVE;
3070 break;
3071 case TARGET_PROT_DIN_PASS:
3072 case TARGET_PROT_DOUT_PASS:
3073 fw_prot_opts |= PO_MODE_DIF_PASS;
3074 /* FUTURE: does tcm require T10CRC<->IPCKSUM conversion? */
3075 break;
3076 default:/* Normal Request */
3077 fw_prot_opts |= PO_MODE_DIF_PASS;
3078 break;
3079 }
3080
Quinn Tranf83adb62014-04-11 16:54:43 -04003081 /* ---- PKT ---- */
3082 /* Update entry type to indicate Command Type CRC_2 IOCB */
3083 pkt->entry_type = CTIO_CRC2;
3084 pkt->entry_count = 1;
Quinn Tran22d84722017-06-13 20:47:25 -07003085 pkt->vp_index = cmd->vp_idx;
Quinn Tranf83adb62014-04-11 16:54:43 -04003086
Quinn Tran82de8022017-06-13 20:47:17 -07003087 h = qlt_make_handle(qpair);
Quinn Tranf83adb62014-04-11 16:54:43 -04003088 if (unlikely(h == QLA_TGT_NULL_HANDLE)) {
3089 /*
3090 * CTIO type 7 from the firmware doesn't provide a way to
3091 * know the initiator's LOOP ID, hence we can't find
3092 * the session and, so, the command.
3093 */
3094 return -EAGAIN;
3095 } else
Quinn Tran82de8022017-06-13 20:47:17 -07003096 qpair->req->outstanding_cmds[h] = (srb_t *)prm->cmd;
Quinn Tranf83adb62014-04-11 16:54:43 -04003097
Quinn Tran82de8022017-06-13 20:47:17 -07003098 pkt->handle = MAKE_HANDLE(qpair->req->id, h);
3099 pkt->handle |= CTIO_COMPLETION_HANDLE_MARK;
Quinn Tranbe251522017-03-15 09:48:49 -07003100 pkt->nport_handle = cpu_to_le16(prm->cmd->loop_id);
Bart Van Asschead950362015-07-09 07:24:08 -07003101 pkt->timeout = cpu_to_le16(QLA_TGT_TIMEOUT);
Bart Van Asschedf95f392019-08-08 20:01:58 -07003102 pkt->initiator_id = be_id_to_le(atio->u.isp24.fcp_hdr.s_id);
Quinn Tranf83adb62014-04-11 16:54:43 -04003103 pkt->exchange_addr = atio->u.isp24.exchange_addr;
Quinn Tranc7ee3bd2014-06-02 07:02:16 -04003104
3105 /* silence compile warning */
3106 t16 = be16_to_cpu(atio->u.isp24.fcp_hdr.ox_id);
3107 pkt->ox_id = cpu_to_le16(t16);
3108
3109 t16 = (atio->u.isp24.attr << 9);
3110 pkt->flags |= cpu_to_le16(t16);
Quinn Tranf83adb62014-04-11 16:54:43 -04003111 pkt->relative_offset = cpu_to_le32(prm->cmd->offset);
3112
3113 /* Set transfer direction */
3114 if (cmd->dma_data_direction == DMA_TO_DEVICE)
Bart Van Asschead950362015-07-09 07:24:08 -07003115 pkt->flags = cpu_to_le16(CTIO7_FLAGS_DATA_IN);
Quinn Tranf83adb62014-04-11 16:54:43 -04003116 else if (cmd->dma_data_direction == DMA_FROM_DEVICE)
Bart Van Asschead950362015-07-09 07:24:08 -07003117 pkt->flags = cpu_to_le16(CTIO7_FLAGS_DATA_OUT);
Quinn Tranf83adb62014-04-11 16:54:43 -04003118
Quinn Tranf83adb62014-04-11 16:54:43 -04003119 pkt->dseg_count = prm->tot_dsds;
3120 /* Fibre channel byte count */
3121 pkt->transfer_length = cpu_to_le32(transfer_length);
3122
Quinn Tranf83adb62014-04-11 16:54:43 -04003123 /* ----- CRC context -------- */
3124
3125 /* Allocate CRC context from global pool */
3126 crc_ctx_pkt = cmd->ctx =
Souptick Joarder501017f2018-02-15 01:40:38 +05303127 dma_pool_zalloc(ha->dl_dma_pool, GFP_ATOMIC, &crc_ctx_dma);
Quinn Tranf83adb62014-04-11 16:54:43 -04003128
3129 if (!crc_ctx_pkt)
3130 goto crc_queuing_error;
3131
Quinn Tranf83adb62014-04-11 16:54:43 -04003132 crc_ctx_pkt->crc_ctx_dma = crc_ctx_dma;
3133 INIT_LIST_HEAD(&crc_ctx_pkt->dsd_list);
3134
3135 /* Set handle */
3136 crc_ctx_pkt->handle = pkt->handle;
3137
Quinn Tranbe251522017-03-15 09:48:49 -07003138 qla_tgt_set_dif_tags(cmd, crc_ctx_pkt, &fw_prot_opts);
Quinn Tranf83adb62014-04-11 16:54:43 -04003139
Bart Van Assched4556a42019-04-17 14:44:39 -07003140 put_unaligned_le64(crc_ctx_dma, &pkt->crc_context_address);
Quinn Tranf83adb62014-04-11 16:54:43 -04003141 pkt->crc_context_len = CRC_CONTEXT_LEN_FW;
3142
Quinn Tranf83adb62014-04-11 16:54:43 -04003143 if (!bundling) {
Bart Van Assche9e75b5e2019-08-08 20:01:33 -07003144 cur_dsd = &crc_ctx_pkt->u.nobundling.data_dsd[0];
Quinn Tranf83adb62014-04-11 16:54:43 -04003145 } else {
3146 /*
3147 * Configure Bundling if we need to fetch interlaving
3148 * protection PCI accesses
3149 */
3150 fw_prot_opts |= PO_ENABLE_DIF_BUNDLING;
3151 crc_ctx_pkt->u.bundling.dif_byte_count = cpu_to_le32(dif_bytes);
3152 crc_ctx_pkt->u.bundling.dseg_count =
3153 cpu_to_le16(prm->tot_dsds - prm->prot_seg_cnt);
Bart Van Assche9e75b5e2019-08-08 20:01:33 -07003154 cur_dsd = &crc_ctx_pkt->u.bundling.data_dsd[0];
Quinn Tranf83adb62014-04-11 16:54:43 -04003155 }
3156
3157 /* Finish the common fields of CRC pkt */
3158 crc_ctx_pkt->blk_size = cpu_to_le16(cmd->blk_sz);
3159 crc_ctx_pkt->prot_opts = cpu_to_le16(fw_prot_opts);
3160 crc_ctx_pkt->byte_count = cpu_to_le32(data_bytes);
Bart Van Asschead950362015-07-09 07:24:08 -07003161 crc_ctx_pkt->guard_seed = cpu_to_le16(0);
Quinn Tranf83adb62014-04-11 16:54:43 -04003162
Quinn Tranbe251522017-03-15 09:48:49 -07003163 memset((uint8_t *)&tc, 0 , sizeof(tc));
3164 tc.vha = vha;
3165 tc.blk_sz = cmd->blk_sz;
3166 tc.bufflen = cmd->bufflen;
3167 tc.sg = cmd->sg;
3168 tc.prot_sg = cmd->prot_sg;
3169 tc.ctx = crc_ctx_pkt;
3170 tc.ctx_dsd_alloced = &cmd->ctx_dsd_alloced;
Quinn Tranf83adb62014-04-11 16:54:43 -04003171
3172 /* Walks data segments */
Bart Van Asschead950362015-07-09 07:24:08 -07003173 pkt->flags |= cpu_to_le16(CTIO7_FLAGS_DSD_PTR);
Quinn Tranf83adb62014-04-11 16:54:43 -04003174
3175 if (!bundling && prm->prot_seg_cnt) {
3176 if (qla24xx_walk_and_build_sglist_no_difb(ha, NULL, cur_dsd,
Quinn Tranbe251522017-03-15 09:48:49 -07003177 prm->tot_dsds, &tc))
Quinn Tranf83adb62014-04-11 16:54:43 -04003178 goto crc_queuing_error;
3179 } else if (qla24xx_walk_and_build_sglist(ha, NULL, cur_dsd,
Quinn Tranbe251522017-03-15 09:48:49 -07003180 (prm->tot_dsds - prm->prot_seg_cnt), &tc))
Quinn Tranf83adb62014-04-11 16:54:43 -04003181 goto crc_queuing_error;
3182
3183 if (bundling && prm->prot_seg_cnt) {
3184 /* Walks dif segments */
Quinn Tranc7ee3bd2014-06-02 07:02:16 -04003185 pkt->add_flags |= CTIO_CRC2_AF_DIF_DSD_ENA;
Quinn Tranf83adb62014-04-11 16:54:43 -04003186
Bart Van Assche15b7a682019-04-17 14:44:38 -07003187 cur_dsd = &crc_ctx_pkt->u.bundling.dif_dsd;
Quinn Tranf83adb62014-04-11 16:54:43 -04003188 if (qla24xx_walk_and_build_prot_sglist(ha, NULL, cur_dsd,
Giridhar Malavali50b81272018-12-21 09:33:45 -08003189 prm->prot_seg_cnt, cmd))
Quinn Tranf83adb62014-04-11 16:54:43 -04003190 goto crc_queuing_error;
3191 }
3192 return QLA_SUCCESS;
3193
3194crc_queuing_error:
3195 /* Cleanup will be performed by the caller */
Quinn Tran82de8022017-06-13 20:47:17 -07003196 qpair->req->outstanding_cmds[h] = NULL;
Quinn Tranf83adb62014-04-11 16:54:43 -04003197
3198 return QLA_FUNCTION_FAILED;
3199}
3200
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003201/*
3202 * Callback to setup response of xmit_type of QLA_TGT_XMIT_DATA and *
3203 * QLA_TGT_XMIT_STATUS for >= 24xx silicon
3204 */
3205int qlt_xmit_response(struct qla_tgt_cmd *cmd, int xmit_type,
3206 uint8_t scsi_status)
3207{
3208 struct scsi_qla_host *vha = cmd->vha;
Quinn Tran82de8022017-06-13 20:47:17 -07003209 struct qla_qpair *qpair = cmd->qpair;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003210 struct ctio7_to_24xx *pkt;
3211 struct qla_tgt_prm prm;
3212 uint32_t full_req_cnt = 0;
3213 unsigned long flags = 0;
3214 int res;
3215
Quinn Tran51fd6e62019-01-24 23:23:43 -08003216 if (!qpair->fw_started || (cmd->reset_count != qpair->chip_reset) ||
3217 (cmd->sess && cmd->sess->deleted)) {
Alexei Potashnika6ca8872015-07-14 16:00:44 -04003218 cmd->state = QLA_TGT_STATE_PROCESSED;
Bart Van Assche0dcec412019-08-08 20:02:10 -07003219 res = 0;
3220 goto free;
Alexei Potashnika6ca8872015-07-14 16:00:44 -04003221 }
Alexei Potashnika6ca8872015-07-14 16:00:44 -04003222
Quinn Tran22d84722017-06-13 20:47:25 -07003223 ql_dbg_qp(ql_dbg_tgt, qpair, 0xe018,
Quinn Tran82de8022017-06-13 20:47:17 -07003224 "is_send_status=%d, cmd->bufflen=%d, cmd->sg_cnt=%d, cmd->dma_data_direction=%d se_cmd[%p] qp %d\n",
Quinn Tranf83adb62014-04-11 16:54:43 -04003225 (xmit_type & QLA_TGT_XMIT_STATUS) ?
3226 1 : 0, cmd->bufflen, cmd->sg_cnt, cmd->dma_data_direction,
Quinn Tran82de8022017-06-13 20:47:17 -07003227 &cmd->se_cmd, qpair->id);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003228
3229 res = qlt_pre_xmit_response(cmd, &prm, xmit_type, scsi_status,
3230 &full_req_cnt);
Bart Van Assche0dcec412019-08-08 20:02:10 -07003231 if (unlikely(res != 0))
3232 goto free;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003233
Quinn Tran82de8022017-06-13 20:47:17 -07003234 spin_lock_irqsave(qpair->qp_lock_ptr, flags);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003235
Himanshu Madhanice1025c2015-12-17 14:56:58 -05003236 if (xmit_type == QLA_TGT_XMIT_STATUS)
Quinn Tran60a9ead2017-06-13 20:47:28 -07003237 qpair->tgt_counters.core_qla_snd_status++;
Himanshu Madhanice1025c2015-12-17 14:56:58 -05003238 else
Quinn Tran60a9ead2017-06-13 20:47:28 -07003239 qpair->tgt_counters.core_qla_que_buf++;
Himanshu Madhanice1025c2015-12-17 14:56:58 -05003240
Quinn Tran7c3f8fd2017-06-13 20:47:22 -07003241 if (!qpair->fw_started || cmd->reset_count != qpair->chip_reset) {
Arun Easib6a029e2014-09-25 06:14:52 -04003242 /*
Dilip Kumar Uppugandla3bb67df2015-12-17 14:57:11 -05003243 * Either the port is not online or this request was from
Arun Easib6a029e2014-09-25 06:14:52 -04003244 * previous life, just abort the processing.
3245 */
3246 cmd->state = QLA_TGT_STATE_PROCESSED;
Quinn Tran22d84722017-06-13 20:47:25 -07003247 ql_dbg_qp(ql_dbg_async, qpair, 0xe101,
Dilip Kumar Uppugandla3bb67df2015-12-17 14:57:11 -05003248 "RESET-RSP online/active/old-count/new-count = %d/%d/%d/%d.\n",
3249 vha->flags.online, qla2x00_reset_active(vha),
Quinn Tran7c3f8fd2017-06-13 20:47:22 -07003250 cmd->reset_count, qpair->chip_reset);
Quinn Tran82de8022017-06-13 20:47:17 -07003251 spin_unlock_irqrestore(qpair->qp_lock_ptr, flags);
Bart Van Assche0dcec412019-08-08 20:02:10 -07003252 res = 0;
3253 goto free;
Arun Easib6a029e2014-09-25 06:14:52 -04003254 }
3255
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003256 /* Does F/W have an IOCBs for this request */
Quinn Tran82de8022017-06-13 20:47:17 -07003257 res = qlt_check_reserve_free_req(qpair, full_req_cnt);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003258 if (unlikely(res))
3259 goto out_unmap_unlock;
3260
Quinn Tranf83adb62014-04-11 16:54:43 -04003261 if (cmd->se_cmd.prot_op && (xmit_type & QLA_TGT_XMIT_DATA))
Quinn Tran82de8022017-06-13 20:47:17 -07003262 res = qlt_build_ctio_crc2_pkt(qpair, &prm);
Quinn Tranf83adb62014-04-11 16:54:43 -04003263 else
Quinn Tran82de8022017-06-13 20:47:17 -07003264 res = qlt_24xx_build_ctio_pkt(qpair, &prm);
Quinn Tran810e30b2015-06-10 11:05:20 -04003265 if (unlikely(res != 0)) {
Quinn Tran82de8022017-06-13 20:47:17 -07003266 qpair->req->cnt += full_req_cnt;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003267 goto out_unmap_unlock;
Quinn Tran810e30b2015-06-10 11:05:20 -04003268 }
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003269
3270 pkt = (struct ctio7_to_24xx *)prm.pkt;
3271
3272 if (qlt_has_data(cmd) && (xmit_type & QLA_TGT_XMIT_DATA)) {
3273 pkt->u.status0.flags |=
Bart Van Asschead950362015-07-09 07:24:08 -07003274 cpu_to_le16(CTIO7_FLAGS_DATA_IN |
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003275 CTIO7_FLAGS_STATUS_MODE_0);
3276
Quinn Tranf83adb62014-04-11 16:54:43 -04003277 if (cmd->se_cmd.prot_op == TARGET_PROT_NORMAL)
Quinn Tran32d29b42017-06-13 20:47:26 -07003278 qlt_load_data_segments(&prm);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003279
3280 if (prm.add_status_pkt == 0) {
3281 if (xmit_type & QLA_TGT_XMIT_STATUS) {
3282 pkt->u.status0.scsi_status =
3283 cpu_to_le16(prm.rq_result);
3284 pkt->u.status0.residual =
3285 cpu_to_le32(prm.residual);
Bart Van Asschead950362015-07-09 07:24:08 -07003286 pkt->u.status0.flags |= cpu_to_le16(
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003287 CTIO7_FLAGS_SEND_STATUS);
Quinn Tran7c3f8fd2017-06-13 20:47:22 -07003288 if (qlt_need_explicit_conf(cmd, 0)) {
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003289 pkt->u.status0.flags |=
Bart Van Asschead950362015-07-09 07:24:08 -07003290 cpu_to_le16(
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003291 CTIO7_FLAGS_EXPLICIT_CONFORM |
3292 CTIO7_FLAGS_CONFORM_REQ);
3293 }
3294 }
3295
3296 } else {
3297 /*
3298 * We have already made sure that there is sufficient
3299 * amount of request entries to not drop HW lock in
3300 * req_pkt().
3301 */
3302 struct ctio7_to_24xx *ctio =
Quinn Tran82de8022017-06-13 20:47:17 -07003303 (struct ctio7_to_24xx *)qlt_get_req_pkt(
3304 qpair->req);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003305
Quinn Tran22d84722017-06-13 20:47:25 -07003306 ql_dbg_qp(ql_dbg_tgt, qpair, 0x305e,
Arun Easi667024a2014-09-25 06:14:47 -04003307 "Building additional status packet 0x%p.\n",
3308 ctio);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003309
Quinn Tranf83adb62014-04-11 16:54:43 -04003310 /*
3311 * T10Dif: ctio_crc2_to_fw overlay ontop of
3312 * ctio7_to_24xx
3313 */
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003314 memcpy(ctio, pkt, sizeof(*ctio));
Quinn Tranf83adb62014-04-11 16:54:43 -04003315 /* reset back to CTIO7 */
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003316 ctio->entry_count = 1;
Quinn Tranf83adb62014-04-11 16:54:43 -04003317 ctio->entry_type = CTIO_TYPE7;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003318 ctio->dseg_count = 0;
Bart Van Asschead950362015-07-09 07:24:08 -07003319 ctio->u.status1.flags &= ~cpu_to_le16(
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003320 CTIO7_FLAGS_DATA_IN);
3321
3322 /* Real finish is ctio_m1's finish */
3323 pkt->handle |= CTIO_INTERMEDIATE_HANDLE_MARK;
Bart Van Asschead950362015-07-09 07:24:08 -07003324 pkt->u.status0.flags |= cpu_to_le16(
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003325 CTIO7_FLAGS_DONT_RET_CTIO);
Quinn Tranf83adb62014-04-11 16:54:43 -04003326
3327 /* qlt_24xx_init_ctio_to_isp will correct
3328 * all neccessary fields that's part of CTIO7.
3329 * There should be no residual of CTIO-CRC2 data.
3330 */
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003331 qlt_24xx_init_ctio_to_isp((struct ctio7_to_24xx *)ctio,
3332 &prm);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003333 }
3334 } else
3335 qlt_24xx_init_ctio_to_isp(pkt, &prm);
3336
3337
3338 cmd->state = QLA_TGT_STATE_PROCESSED; /* Mid-level is done processing */
Quinn Trand564a372014-09-25 06:14:57 -04003339 cmd->cmd_sent_to_fw = 1;
Quinn Tran079a3a32018-09-04 14:19:11 -07003340 cmd->ctio_flags = le16_to_cpu(pkt->u.status0.flags);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003341
Himanshu Madhani63163e02014-09-25 06:14:59 -04003342 /* Memory Barrier */
3343 wmb();
Quinn Tran8abfa9e2017-06-13 20:47:24 -07003344 if (qpair->reqq_start_iocbs)
3345 qpair->reqq_start_iocbs(qpair);
3346 else
3347 qla2x00_start_iocbs(vha, qpair->req);
Quinn Tran82de8022017-06-13 20:47:17 -07003348 spin_unlock_irqrestore(qpair->qp_lock_ptr, flags);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003349
3350 return 0;
3351
3352out_unmap_unlock:
Joern Engelf9b67212014-09-16 16:23:18 -04003353 qlt_unmap_sg(vha, cmd);
Quinn Tran82de8022017-06-13 20:47:17 -07003354 spin_unlock_irqrestore(qpair->qp_lock_ptr, flags);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003355
Bart Van Assche0dcec412019-08-08 20:02:10 -07003356free:
3357 vha->hw->tgt.tgt_ops->free_cmd(cmd);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003358 return res;
3359}
3360EXPORT_SYMBOL(qlt_xmit_response);
3361
3362int qlt_rdy_to_xfer(struct qla_tgt_cmd *cmd)
3363{
3364 struct ctio7_to_24xx *pkt;
3365 struct scsi_qla_host *vha = cmd->vha;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003366 struct qla_tgt *tgt = cmd->tgt;
3367 struct qla_tgt_prm prm;
Quinn Tran82de8022017-06-13 20:47:17 -07003368 unsigned long flags = 0;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003369 int res = 0;
Quinn Tran82de8022017-06-13 20:47:17 -07003370 struct qla_qpair *qpair = cmd->qpair;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003371
3372 memset(&prm, 0, sizeof(prm));
3373 prm.cmd = cmd;
3374 prm.tgt = tgt;
3375 prm.sg = NULL;
3376 prm.req_cnt = 1;
3377
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003378 /* Calculate number of entries and segments required */
3379 if (qlt_pci_map_calc_cnt(&prm) != 0)
3380 return -EAGAIN;
3381
Quinn Tran7c3f8fd2017-06-13 20:47:22 -07003382 if (!qpair->fw_started || (cmd->reset_count != qpair->chip_reset) ||
Quinn Tran726b8542017-01-19 22:28:00 -08003383 (cmd->sess && cmd->sess->deleted)) {
Arun Easib6a029e2014-09-25 06:14:52 -04003384 /*
Dilip Kumar Uppugandla3bb67df2015-12-17 14:57:11 -05003385 * Either the port is not online or this request was from
Arun Easib6a029e2014-09-25 06:14:52 -04003386 * previous life, just abort the processing.
3387 */
Bart Van Asscheaefed3e2019-04-17 14:44:29 -07003388 cmd->aborted = 1;
3389 cmd->write_data_transferred = 0;
3390 cmd->state = QLA_TGT_STATE_DATA_IN;
3391 vha->hw->tgt.tgt_ops->handle_data(cmd);
Quinn Tran22d84722017-06-13 20:47:25 -07003392 ql_dbg_qp(ql_dbg_async, qpair, 0xe102,
Dilip Kumar Uppugandla3bb67df2015-12-17 14:57:11 -05003393 "RESET-XFR online/active/old-count/new-count = %d/%d/%d/%d.\n",
3394 vha->flags.online, qla2x00_reset_active(vha),
Quinn Tran7c3f8fd2017-06-13 20:47:22 -07003395 cmd->reset_count, qpair->chip_reset);
Arun Easib6a029e2014-09-25 06:14:52 -04003396 return 0;
3397 }
3398
Quinn Tran82de8022017-06-13 20:47:17 -07003399 spin_lock_irqsave(qpair->qp_lock_ptr, flags);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003400 /* Does F/W have an IOCBs for this request */
Quinn Tran82de8022017-06-13 20:47:17 -07003401 res = qlt_check_reserve_free_req(qpair, prm.req_cnt);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003402 if (res != 0)
3403 goto out_unlock_free_unmap;
Quinn Tranf83adb62014-04-11 16:54:43 -04003404 if (cmd->se_cmd.prot_op)
Quinn Tran82de8022017-06-13 20:47:17 -07003405 res = qlt_build_ctio_crc2_pkt(qpair, &prm);
Quinn Tranf83adb62014-04-11 16:54:43 -04003406 else
Quinn Tran82de8022017-06-13 20:47:17 -07003407 res = qlt_24xx_build_ctio_pkt(qpair, &prm);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003408
Quinn Tran810e30b2015-06-10 11:05:20 -04003409 if (unlikely(res != 0)) {
Quinn Tran82de8022017-06-13 20:47:17 -07003410 qpair->req->cnt += prm.req_cnt;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003411 goto out_unlock_free_unmap;
Quinn Tran810e30b2015-06-10 11:05:20 -04003412 }
3413
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003414 pkt = (struct ctio7_to_24xx *)prm.pkt;
Bart Van Asschead950362015-07-09 07:24:08 -07003415 pkt->u.status0.flags |= cpu_to_le16(CTIO7_FLAGS_DATA_OUT |
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003416 CTIO7_FLAGS_STATUS_MODE_0);
Quinn Tranf83adb62014-04-11 16:54:43 -04003417
3418 if (cmd->se_cmd.prot_op == TARGET_PROT_NORMAL)
Quinn Tran32d29b42017-06-13 20:47:26 -07003419 qlt_load_data_segments(&prm);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003420
3421 cmd->state = QLA_TGT_STATE_NEED_DATA;
Quinn Trand564a372014-09-25 06:14:57 -04003422 cmd->cmd_sent_to_fw = 1;
Quinn Tran079a3a32018-09-04 14:19:11 -07003423 cmd->ctio_flags = le16_to_cpu(pkt->u.status0.flags);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003424
Himanshu Madhani63163e02014-09-25 06:14:59 -04003425 /* Memory Barrier */
3426 wmb();
Quinn Tran8abfa9e2017-06-13 20:47:24 -07003427 if (qpair->reqq_start_iocbs)
3428 qpair->reqq_start_iocbs(qpair);
3429 else
3430 qla2x00_start_iocbs(vha, qpair->req);
Quinn Tran82de8022017-06-13 20:47:17 -07003431 spin_unlock_irqrestore(qpair->qp_lock_ptr, flags);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003432
3433 return res;
3434
3435out_unlock_free_unmap:
Joern Engelf9b67212014-09-16 16:23:18 -04003436 qlt_unmap_sg(vha, cmd);
Quinn Tran82de8022017-06-13 20:47:17 -07003437 spin_unlock_irqrestore(qpair->qp_lock_ptr, flags);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003438
3439 return res;
3440}
3441EXPORT_SYMBOL(qlt_rdy_to_xfer);
3442
Quinn Tranf83adb62014-04-11 16:54:43 -04003443
3444/*
Quinn Tranbe251522017-03-15 09:48:49 -07003445 * it is assumed either hardware_lock or qpair lock is held.
Quinn Tranf83adb62014-04-11 16:54:43 -04003446 */
Quinn Tranbe251522017-03-15 09:48:49 -07003447static void
Quinn Tran8abfa9e2017-06-13 20:47:24 -07003448qlt_handle_dif_error(struct qla_qpair *qpair, struct qla_tgt_cmd *cmd,
Quinn Tranbe251522017-03-15 09:48:49 -07003449 struct ctio_crc_from_fw *sts)
Quinn Tranf83adb62014-04-11 16:54:43 -04003450{
3451 uint8_t *ap = &sts->actual_dif[0];
3452 uint8_t *ep = &sts->expected_dif[0];
Quinn Tranf83adb62014-04-11 16:54:43 -04003453 uint64_t lba = cmd->se_cmd.t_task_lba;
Quinn Tranbe251522017-03-15 09:48:49 -07003454 uint8_t scsi_status, sense_key, asc, ascq;
3455 unsigned long flags;
Quinn Tran8abfa9e2017-06-13 20:47:24 -07003456 struct scsi_qla_host *vha = cmd->vha;
Quinn Tranf83adb62014-04-11 16:54:43 -04003457
Quinn Tranbe251522017-03-15 09:48:49 -07003458 cmd->trc_flags |= TRC_DIF_ERR;
Quinn Tranf83adb62014-04-11 16:54:43 -04003459
Quinn Tranbe251522017-03-15 09:48:49 -07003460 cmd->a_guard = be16_to_cpu(*(uint16_t *)(ap + 0));
3461 cmd->a_app_tag = be16_to_cpu(*(uint16_t *)(ap + 2));
3462 cmd->a_ref_tag = be32_to_cpu(*(uint32_t *)(ap + 4));
Quinn Tranf83adb62014-04-11 16:54:43 -04003463
Quinn Tranbe251522017-03-15 09:48:49 -07003464 cmd->e_guard = be16_to_cpu(*(uint16_t *)(ep + 0));
3465 cmd->e_app_tag = be16_to_cpu(*(uint16_t *)(ep + 2));
3466 cmd->e_ref_tag = be32_to_cpu(*(uint32_t *)(ep + 4));
Quinn Tranf83adb62014-04-11 16:54:43 -04003467
Quinn Tranbe251522017-03-15 09:48:49 -07003468 ql_dbg(ql_dbg_tgt_dif, vha, 0xf075,
3469 "%s: aborted %d state %d\n", __func__, cmd->aborted, cmd->state);
Quinn Tranf83adb62014-04-11 16:54:43 -04003470
Quinn Tranbe251522017-03-15 09:48:49 -07003471 scsi_status = sense_key = asc = ascq = 0;
Quinn Tranf83adb62014-04-11 16:54:43 -04003472
Quinn Tranbe251522017-03-15 09:48:49 -07003473 /* check appl tag */
3474 if (cmd->e_app_tag != cmd->a_app_tag) {
Quinn Tran83548fe2017-06-02 09:12:01 -07003475 ql_dbg(ql_dbg_tgt_dif, vha, 0xe00d,
3476 "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]",
3477 cmd->cdb[0], lba, (lba+cmd->num_blks), cmd->num_blks,
3478 cmd->a_ref_tag, cmd->e_ref_tag, cmd->a_app_tag,
3479 cmd->e_app_tag, cmd->a_guard, cmd->e_guard, cmd,
3480 cmd->atio.u.isp24.fcp_hdr.ox_id);
Quinn Tranf83adb62014-04-11 16:54:43 -04003481
Quinn Tranbe251522017-03-15 09:48:49 -07003482 cmd->dif_err_code = DIF_ERR_APP;
3483 scsi_status = SAM_STAT_CHECK_CONDITION;
3484 sense_key = ABORTED_COMMAND;
3485 asc = 0x10;
3486 ascq = 0x2;
Quinn Tranf83adb62014-04-11 16:54:43 -04003487 }
3488
3489 /* check ref tag */
Quinn Tranbe251522017-03-15 09:48:49 -07003490 if (cmd->e_ref_tag != cmd->a_ref_tag) {
Quinn Tran83548fe2017-06-02 09:12:01 -07003491 ql_dbg(ql_dbg_tgt_dif, vha, 0xe00e,
3492 "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] ",
3493 cmd->cdb[0], lba, (lba+cmd->num_blks), cmd->num_blks,
3494 cmd->a_ref_tag, cmd->e_ref_tag, cmd->a_app_tag,
3495 cmd->e_app_tag, cmd->a_guard, cmd->e_guard, cmd,
3496 cmd->atio.u.isp24.fcp_hdr.ox_id);
Quinn Tranf83adb62014-04-11 16:54:43 -04003497
Quinn Tranbe251522017-03-15 09:48:49 -07003498 cmd->dif_err_code = DIF_ERR_REF;
3499 scsi_status = SAM_STAT_CHECK_CONDITION;
3500 sense_key = ABORTED_COMMAND;
3501 asc = 0x10;
3502 ascq = 0x3;
Quinn Tranf83adb62014-04-11 16:54:43 -04003503 goto out;
3504 }
3505
Quinn Tranbe251522017-03-15 09:48:49 -07003506 /* check guard */
3507 if (cmd->e_guard != cmd->a_guard) {
Quinn Tran83548fe2017-06-02 09:12:01 -07003508 ql_dbg(ql_dbg_tgt_dif, vha, 0xe012,
3509 "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]",
3510 cmd->cdb[0], lba, (lba+cmd->num_blks), cmd->num_blks,
3511 cmd->a_ref_tag, cmd->e_ref_tag, cmd->a_app_tag,
3512 cmd->e_app_tag, cmd->a_guard, cmd->e_guard, cmd,
3513 cmd->atio.u.isp24.fcp_hdr.ox_id);
3514
Quinn Tranbe251522017-03-15 09:48:49 -07003515 cmd->dif_err_code = DIF_ERR_GRD;
3516 scsi_status = SAM_STAT_CHECK_CONDITION;
3517 sense_key = ABORTED_COMMAND;
3518 asc = 0x10;
3519 ascq = 0x1;
Quinn Tranf83adb62014-04-11 16:54:43 -04003520 }
3521out:
Quinn Tranbe251522017-03-15 09:48:49 -07003522 switch (cmd->state) {
3523 case QLA_TGT_STATE_NEED_DATA:
3524 /* handle_data will load DIF error code */
3525 cmd->state = QLA_TGT_STATE_DATA_IN;
3526 vha->hw->tgt.tgt_ops->handle_data(cmd);
3527 break;
3528 default:
3529 spin_lock_irqsave(&cmd->cmd_lock, flags);
3530 if (cmd->aborted) {
3531 spin_unlock_irqrestore(&cmd->cmd_lock, flags);
3532 vha->hw->tgt.tgt_ops->free_cmd(cmd);
3533 break;
3534 }
3535 spin_unlock_irqrestore(&cmd->cmd_lock, flags);
Quinn Tranf83adb62014-04-11 16:54:43 -04003536
Quinn Tran8abfa9e2017-06-13 20:47:24 -07003537 qlt_send_resp_ctio(qpair, cmd, scsi_status, sense_key, asc,
3538 ascq);
Quinn Tranbe251522017-03-15 09:48:49 -07003539 /* assume scsi status gets out on the wire.
3540 * Will not wait for completion.
3541 */
3542 vha->hw->tgt.tgt_ops->free_cmd(cmd);
3543 break;
3544 }
3545}
Quinn Tranf83adb62014-04-11 16:54:43 -04003546
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003547/* If hardware_lock held on entry, might drop it, then reaquire */
3548/* This function sends the appropriate CTIO to ISP 2xxx or 24xx */
Alexei Potashnika6ca8872015-07-14 16:00:44 -04003549static int __qlt_send_term_imm_notif(struct scsi_qla_host *vha,
3550 struct imm_ntfy_from_isp *ntfy)
3551{
3552 struct nack_to_isp *nack;
3553 struct qla_hw_data *ha = vha->hw;
3554 request_t *pkt;
3555 int ret = 0;
3556
3557 ql_dbg(ql_dbg_tgt_tmr, vha, 0xe01c,
3558 "Sending TERM ELS CTIO (ha=%p)\n", ha);
3559
Quinn Tranec7193e2017-03-15 09:48:55 -07003560 pkt = (request_t *)qla2x00_alloc_iocbs(vha, NULL);
Alexei Potashnika6ca8872015-07-14 16:00:44 -04003561 if (pkt == NULL) {
3562 ql_dbg(ql_dbg_tgt, vha, 0xe080,
3563 "qla_target(%d): %s failed: unable to allocate "
3564 "request packet\n", vha->vp_idx, __func__);
3565 return -ENOMEM;
3566 }
3567
3568 pkt->entry_type = NOTIFY_ACK_TYPE;
3569 pkt->entry_count = 1;
Quinn Tran4f060732016-12-23 18:06:13 -08003570 pkt->handle = QLA_TGT_SKIP_HANDLE;
Alexei Potashnika6ca8872015-07-14 16:00:44 -04003571
3572 nack = (struct nack_to_isp *)pkt;
3573 nack->ox_id = ntfy->ox_id;
3574
3575 nack->u.isp24.nport_handle = ntfy->u.isp24.nport_handle;
3576 if (le16_to_cpu(ntfy->u.isp24.status) == IMM_NTFY_ELS) {
3577 nack->u.isp24.flags = ntfy->u.isp24.flags &
3578 __constant_cpu_to_le32(NOTIFY24XX_FLAGS_PUREX_IOCB);
3579 }
3580
3581 /* terminate */
3582 nack->u.isp24.flags |=
3583 __constant_cpu_to_le16(NOTIFY_ACK_FLAGS_TERMINATE);
3584
3585 nack->u.isp24.srr_rx_id = ntfy->u.isp24.srr_rx_id;
3586 nack->u.isp24.status = ntfy->u.isp24.status;
3587 nack->u.isp24.status_subcode = ntfy->u.isp24.status_subcode;
3588 nack->u.isp24.fw_handle = ntfy->u.isp24.fw_handle;
3589 nack->u.isp24.exchange_address = ntfy->u.isp24.exchange_address;
3590 nack->u.isp24.srr_rel_offs = ntfy->u.isp24.srr_rel_offs;
3591 nack->u.isp24.srr_ui = ntfy->u.isp24.srr_ui;
3592 nack->u.isp24.vp_index = ntfy->u.isp24.vp_index;
3593
3594 qla2x00_start_iocbs(vha, vha->req);
3595 return ret;
3596}
3597
3598static void qlt_send_term_imm_notif(struct scsi_qla_host *vha,
3599 struct imm_ntfy_from_isp *imm, int ha_locked)
3600{
Alexei Potashnika6ca8872015-07-14 16:00:44 -04003601 int rc;
3602
Bart Van Asschee65449a2019-04-17 14:44:26 -07003603 WARN_ON_ONCE(!ha_locked);
Alexei Potashnika6ca8872015-07-14 16:00:44 -04003604 rc = __qlt_send_term_imm_notif(vha, imm);
Bart Van Asschee65449a2019-04-17 14:44:26 -07003605 pr_debug("rc = %d\n", rc);
Alexei Potashnika6ca8872015-07-14 16:00:44 -04003606}
3607
Quinn Tran83548fe2017-06-02 09:12:01 -07003608/*
3609 * If hardware_lock held on entry, might drop it, then reaquire
3610 * This function sends the appropriate CTIO to ISP 2xxx or 24xx
3611 */
Quinn Tran82de8022017-06-13 20:47:17 -07003612static int __qlt_send_term_exchange(struct qla_qpair *qpair,
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003613 struct qla_tgt_cmd *cmd,
3614 struct atio_from_isp *atio)
3615{
Quinn Tran82de8022017-06-13 20:47:17 -07003616 struct scsi_qla_host *vha = qpair->vha;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003617 struct ctio7_to_24xx *ctio24;
3618 struct qla_hw_data *ha = vha->hw;
3619 request_t *pkt;
3620 int ret = 0;
Quinn Tran33a5fce2014-06-24 00:22:29 -04003621 uint16_t temp;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003622
Quinn Tran83548fe2017-06-02 09:12:01 -07003623 ql_dbg(ql_dbg_tgt, vha, 0xe009, "Sending TERM EXCH CTIO (ha=%p)\n", ha);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003624
Quinn Tran72fcd4e2017-08-23 15:05:13 -07003625 if (cmd)
3626 vha = cmd->vha;
3627
Quinn Tran82de8022017-06-13 20:47:17 -07003628 pkt = (request_t *)qla2x00_alloc_iocbs_ready(qpair, NULL);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003629 if (pkt == NULL) {
3630 ql_dbg(ql_dbg_tgt, vha, 0xe050,
3631 "qla_target(%d): %s failed: unable to allocate "
3632 "request packet\n", vha->vp_idx, __func__);
3633 return -ENOMEM;
3634 }
3635
3636 if (cmd != NULL) {
3637 if (cmd->state < QLA_TGT_STATE_PROCESSED) {
3638 ql_dbg(ql_dbg_tgt, vha, 0xe051,
3639 "qla_target(%d): Terminating cmd %p with "
3640 "incorrect state %d\n", vha->vp_idx, cmd,
3641 cmd->state);
3642 } else
3643 ret = 1;
3644 }
3645
Quinn Tran60a9ead2017-06-13 20:47:28 -07003646 qpair->tgt_counters.num_term_xchg_sent++;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003647 pkt->entry_count = 1;
3648 pkt->handle = QLA_TGT_SKIP_HANDLE | CTIO_COMPLETION_HANDLE_MARK;
3649
3650 ctio24 = (struct ctio7_to_24xx *)pkt;
3651 ctio24->entry_type = CTIO_TYPE7;
Alexei Potashnik71cdc072015-12-17 14:57:01 -05003652 ctio24->nport_handle = CTIO7_NHANDLE_UNRECOGNIZED;
Bart Van Asschead950362015-07-09 07:24:08 -07003653 ctio24->timeout = cpu_to_le16(QLA_TGT_TIMEOUT);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003654 ctio24->vp_index = vha->vp_idx;
Bart Van Asschedf95f392019-08-08 20:01:58 -07003655 ctio24->initiator_id = be_id_to_le(atio->u.isp24.fcp_hdr.s_id);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003656 ctio24->exchange_addr = atio->u.isp24.exchange_addr;
Quinn Tranf7e761f2017-06-02 09:12:02 -07003657 temp = (atio->u.isp24.attr << 9) | CTIO7_FLAGS_STATUS_MODE_1 |
3658 CTIO7_FLAGS_TERMINATE;
3659 ctio24->u.status1.flags = cpu_to_le16(temp);
Quinn Tran33a5fce2014-06-24 00:22:29 -04003660 temp = be16_to_cpu(atio->u.isp24.fcp_hdr.ox_id);
3661 ctio24->u.status1.ox_id = cpu_to_le16(temp);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003662
Himanshu Madhani63163e02014-09-25 06:14:59 -04003663 /* Memory Barrier */
3664 wmb();
Quinn Tran8abfa9e2017-06-13 20:47:24 -07003665 if (qpair->reqq_start_iocbs)
3666 qpair->reqq_start_iocbs(qpair);
3667 else
3668 qla2x00_start_iocbs(vha, qpair->req);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003669 return ret;
3670}
3671
Quinn Tran82de8022017-06-13 20:47:17 -07003672static void qlt_send_term_exchange(struct qla_qpair *qpair,
Quinn Trana07100e2015-12-07 19:48:57 -05003673 struct qla_tgt_cmd *cmd, struct atio_from_isp *atio, int ha_locked,
3674 int ul_abort)
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003675{
Quinn Tran82de8022017-06-13 20:47:17 -07003676 struct scsi_qla_host *vha;
Himanshu Madhani6bc85dd2015-06-10 11:05:22 -04003677 unsigned long flags = 0;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003678 int rc;
3679
Quinn Tran82de8022017-06-13 20:47:17 -07003680 /* why use different vha? NPIV */
3681 if (cmd)
3682 vha = cmd->vha;
3683 else
3684 vha = qpair->vha;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003685
3686 if (ha_locked) {
Quinn Tran82de8022017-06-13 20:47:17 -07003687 rc = __qlt_send_term_exchange(qpair, cmd, atio);
Quinn Tran33e79972014-09-25 06:14:55 -04003688 if (rc == -ENOMEM)
3689 qlt_alloc_qfull_cmd(vha, atio, 0, 0);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003690 goto done;
3691 }
Quinn Tran82de8022017-06-13 20:47:17 -07003692 spin_lock_irqsave(qpair->qp_lock_ptr, flags);
3693 rc = __qlt_send_term_exchange(qpair, cmd, atio);
Quinn Tran33e79972014-09-25 06:14:55 -04003694 if (rc == -ENOMEM)
3695 qlt_alloc_qfull_cmd(vha, atio, 0, 0);
Quinn Trand564a372014-09-25 06:14:57 -04003696
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003697done:
Quinn Trana07100e2015-12-07 19:48:57 -05003698 if (cmd && !ul_abort && !cmd->aborted) {
Himanshu Madhani6bc85dd2015-06-10 11:05:22 -04003699 if (cmd->sg_mapped)
3700 qlt_unmap_sg(vha, cmd);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003701 vha->hw->tgt.tgt_ops->free_cmd(cmd);
3702 }
Himanshu Madhani6bc85dd2015-06-10 11:05:22 -04003703
3704 if (!ha_locked)
Quinn Tran82de8022017-06-13 20:47:17 -07003705 spin_unlock_irqrestore(qpair->qp_lock_ptr, flags);
Himanshu Madhani6bc85dd2015-06-10 11:05:22 -04003706
Quinn Tran7b898542014-04-11 16:54:44 -04003707 return;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003708}
3709
Quinn Tran33e79972014-09-25 06:14:55 -04003710static void qlt_init_term_exchange(struct scsi_qla_host *vha)
3711{
3712 struct list_head free_list;
3713 struct qla_tgt_cmd *cmd, *tcmd;
3714
3715 vha->hw->tgt.leak_exchg_thresh_hold =
Quinn Tran03e8c682015-12-17 14:56:59 -05003716 (vha->hw->cur_fw_xcb_count/100) * LEAK_EXCHG_THRESH_HOLD_PERCENT;
Quinn Tran33e79972014-09-25 06:14:55 -04003717
3718 cmd = tcmd = NULL;
3719 if (!list_empty(&vha->hw->tgt.q_full_list)) {
3720 INIT_LIST_HEAD(&free_list);
3721 list_splice_init(&vha->hw->tgt.q_full_list, &free_list);
3722
3723 list_for_each_entry_safe(cmd, tcmd, &free_list, cmd_list) {
3724 list_del(&cmd->cmd_list);
3725 /* This cmd was never sent to TCM. There is no need
3726 * to schedule free or call free_cmd
3727 */
3728 qlt_free_cmd(cmd);
3729 vha->hw->tgt.num_qfull_cmds_alloc--;
3730 }
3731 }
3732 vha->hw->tgt.num_qfull_cmds_dropped = 0;
3733}
3734
3735static void qlt_chk_exch_leak_thresh_hold(struct scsi_qla_host *vha)
3736{
3737 uint32_t total_leaked;
3738
3739 total_leaked = vha->hw->tgt.num_qfull_cmds_dropped;
3740
3741 if (vha->hw->tgt.leak_exchg_thresh_hold &&
3742 (total_leaked > vha->hw->tgt.leak_exchg_thresh_hold)) {
3743
3744 ql_dbg(ql_dbg_tgt, vha, 0xe079,
3745 "Chip reset due to exchange starvation: %d/%d.\n",
Quinn Tran03e8c682015-12-17 14:56:59 -05003746 total_leaked, vha->hw->cur_fw_xcb_count);
Quinn Tran33e79972014-09-25 06:14:55 -04003747
3748 if (IS_P3P_TYPE(vha->hw))
3749 set_bit(FCOE_CTX_RESET_NEEDED, &vha->dpc_flags);
3750 else
3751 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
3752 qla2xxx_wake_dpc(vha);
3753 }
3754
3755}
3756
Quinn Trana07100e2015-12-07 19:48:57 -05003757int qlt_abort_cmd(struct qla_tgt_cmd *cmd)
Alexei Potashnik7359df22015-07-14 16:00:49 -04003758{
3759 struct qla_tgt *tgt = cmd->tgt;
3760 struct scsi_qla_host *vha = tgt->vha;
3761 struct se_cmd *se_cmd = &cmd->se_cmd;
Quinn Trana07100e2015-12-07 19:48:57 -05003762 unsigned long flags;
Alexei Potashnik7359df22015-07-14 16:00:49 -04003763
3764 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf014,
3765 "qla_target(%d): terminating exchange for aborted cmd=%p "
3766 "(se_cmd=%p, tag=%llu)", vha->vp_idx, cmd, &cmd->se_cmd,
3767 se_cmd->tag);
3768
Quinn Trana07100e2015-12-07 19:48:57 -05003769 spin_lock_irqsave(&cmd->cmd_lock, flags);
3770 if (cmd->aborted) {
3771 spin_unlock_irqrestore(&cmd->cmd_lock, flags);
3772 /*
3773 * It's normal to see 2 calls in this path:
3774 * 1) XFER Rdy completion + CMD_T_ABORT
3775 * 2) TCM TMR - drain_state_list
3776 */
Quinn Tran83548fe2017-06-02 09:12:01 -07003777 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf016,
3778 "multiple abort. %p transport_state %x, t_state %x, "
3779 "se_cmd_flags %x\n", cmd, cmd->se_cmd.transport_state,
3780 cmd->se_cmd.t_state, cmd->se_cmd.se_cmd_flags);
Quinn Trana07100e2015-12-07 19:48:57 -05003781 return EIO;
3782 }
Quinn Tran193b50b2015-12-17 14:57:03 -05003783 cmd->aborted = 1;
Quinn Tran1eb42f92017-01-19 22:27:55 -08003784 cmd->trc_flags |= TRC_ABORT;
Quinn Trana07100e2015-12-07 19:48:57 -05003785 spin_unlock_irqrestore(&cmd->cmd_lock, flags);
Alexei Potashnik7359df22015-07-14 16:00:49 -04003786
Quinn Tran82de8022017-06-13 20:47:17 -07003787 qlt_send_term_exchange(cmd->qpair, cmd, &cmd->atio, 0, 1);
Quinn Trana07100e2015-12-07 19:48:57 -05003788 return 0;
Alexei Potashnik7359df22015-07-14 16:00:49 -04003789}
3790EXPORT_SYMBOL(qlt_abort_cmd);
3791
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003792void qlt_free_cmd(struct qla_tgt_cmd *cmd)
3793{
Quinn Tran5d964832017-01-19 22:27:59 -08003794 struct fc_port *sess = cmd->sess;
Nicholas Bellinger51a07f82014-05-23 02:00:56 -07003795
Quinn Tranf83adb62014-04-11 16:54:43 -04003796 ql_dbg(ql_dbg_tgt, cmd->vha, 0xe074,
3797 "%s: se_cmd[%p] ox_id %04x\n",
3798 __func__, &cmd->se_cmd,
3799 be16_to_cpu(cmd->atio.u.isp24.fcp_hdr.ox_id));
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003800
Saurav Kashyape07f8f62014-09-25 06:14:58 -04003801 BUG_ON(cmd->cmd_in_wq);
3802
Quinn Trana07100e2015-12-07 19:48:57 -05003803 if (cmd->sg_mapped)
3804 qlt_unmap_sg(cmd->vha, cmd);
3805
Quinn Tran33e79972014-09-25 06:14:55 -04003806 if (!cmd->q_full)
3807 qlt_decr_num_pend_cmds(cmd->vha);
3808
Quinn Tranf83adb62014-04-11 16:54:43 -04003809 BUG_ON(cmd->sg_mapped);
Saurav Kashyape07f8f62014-09-25 06:14:58 -04003810 cmd->jiffies_at_free = get_jiffies_64();
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003811 if (unlikely(cmd->free_sg))
3812 kfree(cmd->sg);
Nicholas Bellinger51a07f82014-05-23 02:00:56 -07003813
3814 if (!sess || !sess->se_sess) {
3815 WARN_ON(1);
3816 return;
3817 }
Saurav Kashyape07f8f62014-09-25 06:14:58 -04003818 cmd->jiffies_at_free = get_jiffies_64();
Matthew Wilcox83c2b542018-06-12 12:05:43 -07003819 target_free_tag(sess->se_sess, &cmd->se_cmd);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003820}
3821EXPORT_SYMBOL(qlt_free_cmd);
3822
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003823/*
3824 * ha->hardware_lock supposed to be held on entry. Might drop it, then reaquire
3825 */
Quinn Tran82de8022017-06-13 20:47:17 -07003826static int qlt_term_ctio_exchange(struct qla_qpair *qpair, void *ctio,
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003827 struct qla_tgt_cmd *cmd, uint32_t status)
3828{
3829 int term = 0;
Quinn Tran82de8022017-06-13 20:47:17 -07003830 struct scsi_qla_host *vha = qpair->vha;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003831
Quinn Tranbe251522017-03-15 09:48:49 -07003832 if (cmd->se_cmd.prot_op)
Quinn Tran83548fe2017-06-02 09:12:01 -07003833 ql_dbg(ql_dbg_tgt_dif, vha, 0xe013,
Quinn Tranbe251522017-03-15 09:48:49 -07003834 "Term DIF cmd: lba[0x%llx|%lld] len[0x%x] "
3835 "se_cmd=%p tag[%x] op %#x/%s",
3836 cmd->lba, cmd->lba,
3837 cmd->num_blks, &cmd->se_cmd,
3838 cmd->atio.u.isp24.exchange_addr,
3839 cmd->se_cmd.prot_op,
3840 prot_op_str(cmd->se_cmd.prot_op));
3841
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003842 if (ctio != NULL) {
3843 struct ctio7_from_24xx *c = (struct ctio7_from_24xx *)ctio;
Bart Van Asschebd432bb2019-04-11 14:53:17 -07003844
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003845 term = !(c->flags &
Bart Van Asschead950362015-07-09 07:24:08 -07003846 cpu_to_le16(OF_TERM_EXCH));
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003847 } else
3848 term = 1;
3849
3850 if (term)
himanshu.madhani@cavium.com3efc31f2018-01-15 20:46:47 -08003851 qlt_send_term_exchange(qpair, cmd, &cmd->atio, 1, 0);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003852
3853 return term;
3854}
3855
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003856
3857/* ha->hardware_lock supposed to be held on entry */
Quinn Tran6b0431d2018-09-04 14:19:13 -07003858static void *qlt_ctio_to_cmd(struct scsi_qla_host *vha,
Quinn Tran82de8022017-06-13 20:47:17 -07003859 struct rsp_que *rsp, uint32_t handle, void *ctio)
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003860{
Quinn Tran6b0431d2018-09-04 14:19:13 -07003861 void *cmd = NULL;
Quinn Tran82de8022017-06-13 20:47:17 -07003862 struct req_que *req;
3863 int qid = GET_QID(handle);
3864 uint32_t h = handle & ~QLA_TGT_HANDLE_MASK;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003865
Quinn Tran82de8022017-06-13 20:47:17 -07003866 if (unlikely(h == QLA_TGT_SKIP_HANDLE))
3867 return NULL;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003868
Quinn Tran82de8022017-06-13 20:47:17 -07003869 if (qid == rsp->req->id) {
3870 req = rsp->req;
3871 } else if (vha->hw->req_q_map[qid]) {
3872 ql_dbg(ql_dbg_tgt_mgt, vha, 0x1000a,
3873 "qla_target(%d): CTIO completion with different QID %d handle %x\n",
3874 vha->vp_idx, rsp->id, handle);
3875 req = vha->hw->req_q_map[qid];
3876 } else {
3877 return NULL;
3878 }
Arun Easi667024a2014-09-25 06:14:47 -04003879
Quinn Tran82de8022017-06-13 20:47:17 -07003880 h &= QLA_CMD_HANDLE_MASK;
Quinn Tranc5419e22017-06-13 20:47:16 -07003881
Quinn Tran82de8022017-06-13 20:47:17 -07003882 if (h != QLA_TGT_NULL_HANDLE) {
Dan Carpenterfb2028a2017-07-10 11:47:40 +03003883 if (unlikely(h >= req->num_outstanding_cmds)) {
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003884 ql_dbg(ql_dbg_tgt, vha, 0xe052,
3885 "qla_target(%d): Wrong handle %x received\n",
3886 vha->vp_idx, handle);
3887 return NULL;
3888 }
Quinn Tran82de8022017-06-13 20:47:17 -07003889
Quinn Tran6b0431d2018-09-04 14:19:13 -07003890 cmd = (void *) req->outstanding_cmds[h];
Quinn Tran82de8022017-06-13 20:47:17 -07003891 if (unlikely(cmd == NULL)) {
Quinn Tranc5419e22017-06-13 20:47:16 -07003892 ql_dbg(ql_dbg_async, vha, 0xe053,
Quinn Tran82de8022017-06-13 20:47:17 -07003893 "qla_target(%d): Suspicious: unable to find the command with handle %x req->id %d rsp->id %d\n",
3894 vha->vp_idx, handle, req->id, rsp->id);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003895 return NULL;
3896 }
Quinn Tran82de8022017-06-13 20:47:17 -07003897 req->outstanding_cmds[h] = NULL;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003898 } else if (ctio != NULL) {
3899 /* We can't get loop ID from CTIO7 */
3900 ql_dbg(ql_dbg_tgt, vha, 0xe054,
3901 "qla_target(%d): Wrong CTIO received: QLA24xx doesn't "
3902 "support NULL handles\n", vha->vp_idx);
3903 return NULL;
3904 }
3905
3906 return cmd;
3907}
3908
3909/*
3910 * ha->hardware_lock supposed to be held on entry. Might drop it, then reaquire
3911 */
Quinn Tran82de8022017-06-13 20:47:17 -07003912static void qlt_do_ctio_completion(struct scsi_qla_host *vha,
3913 struct rsp_que *rsp, uint32_t handle, uint32_t status, void *ctio)
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003914{
3915 struct qla_hw_data *ha = vha->hw;
3916 struct se_cmd *se_cmd;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003917 struct qla_tgt_cmd *cmd;
Quinn Tran82de8022017-06-13 20:47:17 -07003918 struct qla_qpair *qpair = rsp->qpair;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003919
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003920 if (handle & CTIO_INTERMEDIATE_HANDLE_MARK) {
3921 /* That could happen only in case of an error/reset/abort */
3922 if (status != CTIO_SUCCESS) {
3923 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf01d,
3924 "Intermediate CTIO received"
3925 " (status %x)\n", status);
3926 }
3927 return;
3928 }
3929
Bart Van Assche81bcf1c2019-04-11 14:53:24 -07003930 cmd = qlt_ctio_to_cmd(vha, rsp, handle, ctio);
Roland Dreier092e1dc2012-06-11 18:23:15 -07003931 if (cmd == NULL)
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003932 return;
Roland Dreier092e1dc2012-06-11 18:23:15 -07003933
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003934 se_cmd = &cmd->se_cmd;
Quinn Trand564a372014-09-25 06:14:57 -04003935 cmd->cmd_sent_to_fw = 0;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003936
Joern Engelf9b67212014-09-16 16:23:18 -04003937 qlt_unmap_sg(vha, cmd);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003938
3939 if (unlikely(status != CTIO_SUCCESS)) {
3940 switch (status & 0xFFFF) {
Quinn Tran079a3a32018-09-04 14:19:11 -07003941 case CTIO_INVALID_RX_ID:
3942 if (printk_ratelimit())
3943 dev_info(&vha->hw->pdev->dev,
3944 "qla_target(%d): CTIO with INVALID_RX_ID ATIO attr %x CTIO Flags %x|%x\n",
3945 vha->vp_idx, cmd->atio.u.isp24.attr,
3946 ((cmd->ctio_flags >> 9) & 0xf),
3947 cmd->ctio_flags);
3948
3949 break;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003950 case CTIO_LIP_RESET:
3951 case CTIO_TARGET_RESET:
3952 case CTIO_ABORTED:
Quinn Tran7b898542014-04-11 16:54:44 -04003953 /* driver request abort via Terminate exchange */
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003954 case CTIO_TIMEOUT:
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003955 /* They are OK */
3956 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf058,
3957 "qla_target(%d): CTIO with "
3958 "status %#x received, state %x, se_cmd %p, "
3959 "(LIP_RESET=e, ABORTED=2, TARGET_RESET=17, "
3960 "TIMEOUT=b, INVALID_RX_ID=8)\n", vha->vp_idx,
3961 status, cmd->state, se_cmd);
3962 break;
3963
3964 case CTIO_PORT_LOGGED_OUT:
3965 case CTIO_PORT_UNAVAILABLE:
Alexei Potashnik71cdc072015-12-17 14:57:01 -05003966 {
Himanshu Madhanidacb5822016-01-20 15:42:58 -08003967 int logged_out =
3968 (status & 0xFFFF) == CTIO_PORT_LOGGED_OUT;
3969
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003970 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf059,
Alexei Potashnik71cdc072015-12-17 14:57:01 -05003971 "qla_target(%d): CTIO with %s status %x "
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003972 "received (state %x, se_cmd %p)\n", vha->vp_idx,
Himanshu Madhanidacb5822016-01-20 15:42:58 -08003973 logged_out ? "PORT LOGGED OUT" : "PORT UNAVAILABLE",
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003974 status, cmd->state, se_cmd);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04003975
Alexei Potashnik71cdc072015-12-17 14:57:01 -05003976 if (logged_out && cmd->sess) {
3977 /*
3978 * Session is already logged out, but we need
3979 * to notify initiator, who's not aware of this
3980 */
Alexei Potashnik71cdc072015-12-17 14:57:01 -05003981 cmd->sess->send_els_logo = 1;
Quinn Tran83548fe2017-06-02 09:12:01 -07003982 ql_dbg(ql_dbg_disc, vha, 0x20f8,
Quinn Tran726b8542017-01-19 22:28:00 -08003983 "%s %d %8phC post del sess\n",
3984 __func__, __LINE__, cmd->sess->port_name);
3985
Quinn Trand8630bb2017-12-28 12:33:43 -08003986 qlt_schedule_sess_for_deletion(cmd->sess);
Alexei Potashnik71cdc072015-12-17 14:57:01 -05003987 }
3988 break;
3989 }
Quinn Tranf83adb62014-04-11 16:54:43 -04003990 case CTIO_DIF_ERROR: {
3991 struct ctio_crc_from_fw *crc =
3992 (struct ctio_crc_from_fw *)ctio;
3993 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf073,
Quinn Tranbe251522017-03-15 09:48:49 -07003994 "qla_target(%d): CTIO with DIF_ERROR status %x "
3995 "received (state %x, ulp_cmd %p) actual_dif[0x%llx] "
3996 "expect_dif[0x%llx]\n",
Quinn Tranf83adb62014-04-11 16:54:43 -04003997 vha->vp_idx, status, cmd->state, se_cmd,
3998 *((u64 *)&crc->actual_dif[0]),
3999 *((u64 *)&crc->expected_dif[0]));
4000
Quinn Tran8abfa9e2017-06-13 20:47:24 -07004001 qlt_handle_dif_error(qpair, cmd, ctio);
Quinn Tranbe251522017-03-15 09:48:49 -07004002 return;
Quinn Tranf83adb62014-04-11 16:54:43 -04004003 }
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004004 default:
4005 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf05b,
Quinn Tranf83adb62014-04-11 16:54:43 -04004006 "qla_target(%d): CTIO with error status 0x%x received (state %x, se_cmd %p\n",
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004007 vha->vp_idx, status, cmd->state, se_cmd);
4008 break;
4009 }
4010
Quinn Tran7b898542014-04-11 16:54:44 -04004011
Quinn Tran193b50b2015-12-17 14:57:03 -05004012 /* "cmd->aborted" means
Quinn Tran7b898542014-04-11 16:54:44 -04004013 * cmd is already aborted/terminated, we don't
4014 * need to terminate again. The exchange is already
4015 * cleaned up/freed at FW level. Just cleanup at driver
4016 * level.
4017 */
4018 if ((cmd->state != QLA_TGT_STATE_NEED_DATA) &&
Quinn Tran193b50b2015-12-17 14:57:03 -05004019 (!cmd->aborted)) {
Quinn Tran1eb42f92017-01-19 22:27:55 -08004020 cmd->trc_flags |= TRC_CTIO_ERR;
Quinn Tran82de8022017-06-13 20:47:17 -07004021 if (qlt_term_ctio_exchange(qpair, ctio, cmd, status))
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004022 return;
Quinn Tran7b898542014-04-11 16:54:44 -04004023 }
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004024 }
4025
4026 if (cmd->state == QLA_TGT_STATE_PROCESSED) {
Quinn Tran1eb42f92017-01-19 22:27:55 -08004027 cmd->trc_flags |= TRC_CTIO_DONE;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004028 } else if (cmd->state == QLA_TGT_STATE_NEED_DATA) {
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004029 cmd->state = QLA_TGT_STATE_DATA_IN;
4030
Bart Van Assche52c82822015-07-09 07:23:26 -07004031 if (status == CTIO_SUCCESS)
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004032 cmd->write_data_transferred = 1;
4033
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004034 ha->tgt.tgt_ops->handle_data(cmd);
4035 return;
Quinn Tran193b50b2015-12-17 14:57:03 -05004036 } else if (cmd->aborted) {
Quinn Tran1eb42f92017-01-19 22:27:55 -08004037 cmd->trc_flags |= TRC_CTIO_ABORTED;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004038 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf01e,
Bart Van Assche649ee052015-04-14 13:26:44 +02004039 "Aborted command %p (tag %lld) finished\n", cmd, se_cmd->tag);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004040 } else {
Quinn Tran1eb42f92017-01-19 22:27:55 -08004041 cmd->trc_flags |= TRC_CTIO_STRANGE;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004042 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf05c,
4043 "qla_target(%d): A command in state (%d) should "
4044 "not return a CTIO complete\n", vha->vp_idx, cmd->state);
4045 }
4046
Quinn Tran7b898542014-04-11 16:54:44 -04004047 if (unlikely(status != CTIO_SUCCESS) &&
Quinn Tran193b50b2015-12-17 14:57:03 -05004048 !cmd->aborted) {
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004049 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf01f, "Finishing failed CTIO\n");
4050 dump_stack();
4051 }
4052
4053 ha->tgt.tgt_ops->free_cmd(cmd);
4054}
4055
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004056static inline int qlt_get_fcp_task_attr(struct scsi_qla_host *vha,
4057 uint8_t task_codes)
4058{
4059 int fcp_task_attr;
4060
4061 switch (task_codes) {
4062 case ATIO_SIMPLE_QUEUE:
Christoph Hellwig68d81f42014-11-24 07:07:25 -08004063 fcp_task_attr = TCM_SIMPLE_TAG;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004064 break;
4065 case ATIO_HEAD_OF_QUEUE:
Christoph Hellwig68d81f42014-11-24 07:07:25 -08004066 fcp_task_attr = TCM_HEAD_TAG;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004067 break;
4068 case ATIO_ORDERED_QUEUE:
Christoph Hellwig68d81f42014-11-24 07:07:25 -08004069 fcp_task_attr = TCM_ORDERED_TAG;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004070 break;
4071 case ATIO_ACA_QUEUE:
Christoph Hellwig68d81f42014-11-24 07:07:25 -08004072 fcp_task_attr = TCM_ACA_TAG;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004073 break;
4074 case ATIO_UNTAGGED:
Christoph Hellwig68d81f42014-11-24 07:07:25 -08004075 fcp_task_attr = TCM_SIMPLE_TAG;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004076 break;
4077 default:
4078 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf05d,
4079 "qla_target: unknown task code %x, use ORDERED instead\n",
4080 task_codes);
Christoph Hellwig68d81f42014-11-24 07:07:25 -08004081 fcp_task_attr = TCM_ORDERED_TAG;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004082 break;
4083 }
4084
4085 return fcp_task_attr;
4086}
4087
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004088/*
4089 * Process context for I/O path into tcm_qla2xxx code
4090 */
Nicholas Bellinger51a07f82014-05-23 02:00:56 -07004091static void __qlt_do_work(struct qla_tgt_cmd *cmd)
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004092{
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004093 scsi_qla_host_t *vha = cmd->vha;
4094 struct qla_hw_data *ha = vha->hw;
Quinn Tran5d964832017-01-19 22:27:59 -08004095 struct fc_port *sess = cmd->sess;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004096 struct atio_from_isp *atio = &cmd->atio;
4097 unsigned char *cdb;
4098 unsigned long flags;
4099 uint32_t data_length;
4100 int ret, fcp_task_attr, data_dir, bidi = 0;
Quinn Tran82de8022017-06-13 20:47:17 -07004101 struct qla_qpair *qpair = cmd->qpair;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004102
Saurav Kashyape07f8f62014-09-25 06:14:58 -04004103 cmd->cmd_in_wq = 0;
Quinn Tran1eb42f92017-01-19 22:27:55 -08004104 cmd->trc_flags |= TRC_DO_WORK;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004105
Quinn Tran193b50b2015-12-17 14:57:03 -05004106 if (cmd->aborted) {
Swapnil Nagle8b2f5ff2015-07-14 16:00:43 -04004107 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf082,
4108 "cmd with tag %u is aborted\n",
4109 cmd->atio.u.isp24.exchange_addr);
4110 goto out_term;
4111 }
4112
Quinn Trana07100e2015-12-07 19:48:57 -05004113 spin_lock_init(&cmd->cmd_lock);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004114 cdb = &atio->u.isp24.fcp_cmnd.cdb[0];
Bart Van Assche649ee052015-04-14 13:26:44 +02004115 cmd->se_cmd.tag = atio->u.isp24.exchange_addr;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004116
4117 if (atio->u.isp24.fcp_cmnd.rddata &&
4118 atio->u.isp24.fcp_cmnd.wrdata) {
4119 bidi = 1;
4120 data_dir = DMA_TO_DEVICE;
4121 } else if (atio->u.isp24.fcp_cmnd.rddata)
4122 data_dir = DMA_FROM_DEVICE;
4123 else if (atio->u.isp24.fcp_cmnd.wrdata)
4124 data_dir = DMA_TO_DEVICE;
4125 else
4126 data_dir = DMA_NONE;
4127
4128 fcp_task_attr = qlt_get_fcp_task_attr(vha,
4129 atio->u.isp24.fcp_cmnd.task_attr);
Quinn Trane25f7652018-05-01 09:01:50 -07004130 data_length = get_datalen_for_atio(atio);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004131
Nicholas Bellinger51a07f82014-05-23 02:00:56 -07004132 ret = ha->tgt.tgt_ops->handle_cmd(vha, cmd, cdb, data_length,
4133 fcp_task_attr, data_dir, bidi);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004134 if (ret != 0)
4135 goto out_term;
4136 /*
Bart Van Assche67eb4a602019-04-17 14:44:10 -07004137 * Drop extra session reference from qlt_handle_cmd_for_atio().
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004138 */
Quinn Tran5d964832017-01-19 22:27:59 -08004139 ha->tgt.tgt_ops->put_sess(sess);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004140 return;
4141
4142out_term:
Arun Easi667024a2014-09-25 06:14:47 -04004143 ql_dbg(ql_dbg_io, vha, 0x3060, "Terminating work cmd %p", cmd);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004144 /*
Roland Dreierfae9eaf2012-06-11 18:23:16 -07004145 * cmd has not sent to target yet, so pass NULL as the second
4146 * argument to qlt_send_term_exchange() and free the memory here.
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004147 */
Quinn Tran1eb42f92017-01-19 22:27:55 -08004148 cmd->trc_flags |= TRC_DO_WORK_ERR;
Quinn Tran82de8022017-06-13 20:47:17 -07004149 spin_lock_irqsave(qpair->qp_lock_ptr, flags);
4150 qlt_send_term_exchange(qpair, NULL, &cmd->atio, 1, 0);
Quinn Tran33e79972014-09-25 06:14:55 -04004151
4152 qlt_decr_num_pend_cmds(vha);
Matthew Wilcox83c2b542018-06-12 12:05:43 -07004153 target_free_tag(sess->se_sess, &cmd->se_cmd);
Quinn Tran82de8022017-06-13 20:47:17 -07004154 spin_unlock_irqrestore(qpair->qp_lock_ptr, flags);
Quinn Tran75601512015-12-17 14:57:04 -05004155
Quinn Tran5d964832017-01-19 22:27:59 -08004156 ha->tgt.tgt_ops->put_sess(sess);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004157}
4158
Nicholas Bellinger51a07f82014-05-23 02:00:56 -07004159static void qlt_do_work(struct work_struct *work)
4160{
4161 struct qla_tgt_cmd *cmd = container_of(work, struct qla_tgt_cmd, work);
Swapnil Nagle8b2f5ff2015-07-14 16:00:43 -04004162 scsi_qla_host_t *vha = cmd->vha;
4163 unsigned long flags;
4164
4165 spin_lock_irqsave(&vha->cmd_list_lock, flags);
4166 list_del(&cmd->cmd_list);
4167 spin_unlock_irqrestore(&vha->cmd_list_lock, flags);
Nicholas Bellinger51a07f82014-05-23 02:00:56 -07004168
4169 __qlt_do_work(cmd);
4170}
4171
Quinn Tran09620ee2017-06-13 20:47:20 -07004172void qlt_clr_qp_table(struct scsi_qla_host *vha)
4173{
4174 unsigned long flags;
4175 struct qla_hw_data *ha = vha->hw;
4176 struct qla_tgt *tgt = vha->vha_tgt.qla_tgt;
4177 void *node;
4178 u64 key = 0;
4179
4180 ql_log(ql_log_info, vha, 0x706c,
4181 "User update Number of Active Qpairs %d\n",
4182 ha->tgt.num_act_qpairs);
4183
4184 spin_lock_irqsave(&ha->tgt.atio_lock, flags);
4185
4186 btree_for_each_safe64(&tgt->lun_qpair_map, key, node)
4187 btree_remove64(&tgt->lun_qpair_map, key);
4188
4189 ha->base_qpair->lun_cnt = 0;
4190 for (key = 0; key < ha->max_qpairs; key++)
4191 if (ha->queue_pair_map[key])
4192 ha->queue_pair_map[key]->lun_cnt = 0;
4193
4194 spin_unlock_irqrestore(&ha->tgt.atio_lock, flags);
4195}
4196
Quinn Trane326d222017-06-13 20:47:18 -07004197static void qlt_assign_qpair(struct scsi_qla_host *vha,
4198 struct qla_tgt_cmd *cmd)
4199{
4200 struct qla_qpair *qpair, *qp;
4201 struct qla_tgt *tgt = vha->vha_tgt.qla_tgt;
4202 struct qla_qpair_hint *h;
4203
4204 if (vha->flags.qpairs_available) {
4205 h = btree_lookup64(&tgt->lun_qpair_map, cmd->unpacked_lun);
4206 if (unlikely(!h)) {
4207 /* spread lun to qpair ratio evently */
4208 int lcnt = 0, rc;
4209 struct scsi_qla_host *base_vha =
4210 pci_get_drvdata(vha->hw->pdev);
4211
4212 qpair = vha->hw->base_qpair;
4213 if (qpair->lun_cnt == 0) {
4214 qpair->lun_cnt++;
4215 h = qla_qpair_to_hint(tgt, qpair);
4216 BUG_ON(!h);
4217 rc = btree_insert64(&tgt->lun_qpair_map,
4218 cmd->unpacked_lun, h, GFP_ATOMIC);
4219 if (rc) {
4220 qpair->lun_cnt--;
4221 ql_log(ql_log_info, vha, 0xd037,
4222 "Unable to insert lun %llx into lun_qpair_map\n",
4223 cmd->unpacked_lun);
4224 }
4225 goto out;
4226 } else {
4227 lcnt = qpair->lun_cnt;
4228 }
4229
4230 h = NULL;
4231 list_for_each_entry(qp, &base_vha->qp_list,
4232 qp_list_elem) {
4233 if (qp->lun_cnt == 0) {
4234 qp->lun_cnt++;
4235 h = qla_qpair_to_hint(tgt, qp);
4236 BUG_ON(!h);
4237 rc = btree_insert64(&tgt->lun_qpair_map,
4238 cmd->unpacked_lun, h, GFP_ATOMIC);
4239 if (rc) {
4240 qp->lun_cnt--;
4241 ql_log(ql_log_info, vha, 0xd038,
4242 "Unable to insert lun %llx into lun_qpair_map\n",
4243 cmd->unpacked_lun);
4244 }
4245 qpair = qp;
4246 goto out;
4247 } else {
4248 if (qp->lun_cnt < lcnt) {
4249 lcnt = qp->lun_cnt;
4250 qpair = qp;
4251 continue;
4252 }
4253 }
4254 }
4255 BUG_ON(!qpair);
4256 qpair->lun_cnt++;
4257 h = qla_qpair_to_hint(tgt, qpair);
4258 BUG_ON(!h);
4259 rc = btree_insert64(&tgt->lun_qpair_map,
4260 cmd->unpacked_lun, h, GFP_ATOMIC);
4261 if (rc) {
4262 qpair->lun_cnt--;
4263 ql_log(ql_log_info, vha, 0xd039,
4264 "Unable to insert lun %llx into lun_qpair_map\n",
4265 cmd->unpacked_lun);
4266 }
4267 }
4268 } else {
4269 h = &tgt->qphints[0];
4270 }
4271out:
4272 cmd->qpair = h->qpair;
4273 cmd->se_cmd.cpuid = h->cpuid;
4274}
4275
Nicholas Bellinger51a07f82014-05-23 02:00:56 -07004276static struct qla_tgt_cmd *qlt_get_tag(scsi_qla_host_t *vha,
Quinn Tran5d964832017-01-19 22:27:59 -08004277 struct fc_port *sess,
Nicholas Bellinger51a07f82014-05-23 02:00:56 -07004278 struct atio_from_isp *atio)
4279{
4280 struct se_session *se_sess = sess->se_sess;
4281 struct qla_tgt_cmd *cmd;
Matthew Wilcox10e9cbb2018-06-12 12:05:44 -07004282 int tag, cpu;
Nicholas Bellinger51a07f82014-05-23 02:00:56 -07004283
Matthew Wilcox10e9cbb2018-06-12 12:05:44 -07004284 tag = sbitmap_queue_get(&se_sess->sess_tag_pool, &cpu);
Nicholas Bellinger51a07f82014-05-23 02:00:56 -07004285 if (tag < 0)
4286 return NULL;
4287
4288 cmd = &((struct qla_tgt_cmd *)se_sess->sess_cmd_map)[tag];
4289 memset(cmd, 0, sizeof(struct qla_tgt_cmd));
Quinn Tranc5419e22017-06-13 20:47:16 -07004290 cmd->cmd_type = TYPE_TGT_CMD;
Nicholas Bellinger51a07f82014-05-23 02:00:56 -07004291 memcpy(&cmd->atio, atio, sizeof(*atio));
4292 cmd->state = QLA_TGT_STATE_NEW;
4293 cmd->tgt = vha->vha_tgt.qla_tgt;
Quinn Tran33e79972014-09-25 06:14:55 -04004294 qlt_incr_num_pend_cmds(vha);
Nicholas Bellinger51a07f82014-05-23 02:00:56 -07004295 cmd->vha = vha;
4296 cmd->se_cmd.map_tag = tag;
Matthew Wilcox10e9cbb2018-06-12 12:05:44 -07004297 cmd->se_cmd.map_cpu = cpu;
Nicholas Bellinger51a07f82014-05-23 02:00:56 -07004298 cmd->sess = sess;
4299 cmd->loop_id = sess->loop_id;
4300 cmd->conf_compl_supported = sess->conf_compl_supported;
4301
Quinn Tran1eb42f92017-01-19 22:27:55 -08004302 cmd->trc_flags = 0;
Kanoj Sarcar9fce1252015-06-10 11:05:23 -04004303 cmd->jiffies_at_alloc = get_jiffies_64();
4304
Quinn Trane326d222017-06-13 20:47:18 -07004305 cmd->unpacked_lun = scsilun_to_int(
4306 (struct scsi_lun *)&atio->u.isp24.fcp_cmnd.lun);
4307 qlt_assign_qpair(vha, cmd);
Quinn Tran7c3f8fd2017-06-13 20:47:22 -07004308 cmd->reset_count = vha->hw->base_qpair->chip_reset;
Quinn Tran22d84722017-06-13 20:47:25 -07004309 cmd->vp_idx = vha->vp_idx;
Kanoj Sarcar9fce1252015-06-10 11:05:23 -04004310
Nicholas Bellinger51a07f82014-05-23 02:00:56 -07004311 return cmd;
4312}
4313
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004314/* ha->hardware_lock supposed to be held on entry */
4315static int qlt_handle_cmd_for_atio(struct scsi_qla_host *vha,
4316 struct atio_from_isp *atio)
4317{
Nicholas Bellinger51a07f82014-05-23 02:00:56 -07004318 struct qla_hw_data *ha = vha->hw;
Saurav Kashyap0e8cd712014-01-14 20:40:38 -08004319 struct qla_tgt *tgt = vha->vha_tgt.qla_tgt;
Quinn Tran5d964832017-01-19 22:27:59 -08004320 struct fc_port *sess;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004321 struct qla_tgt_cmd *cmd;
Quinn Tran5d964832017-01-19 22:27:59 -08004322 unsigned long flags;
Quinn Trana4239942017-12-28 12:33:26 -08004323 port_id_t id;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004324
4325 if (unlikely(tgt->tgt_stop)) {
Arun Easi667024a2014-09-25 06:14:47 -04004326 ql_dbg(ql_dbg_io, vha, 0x3061,
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004327 "New command while device %p is shutting down\n", tgt);
Quinn Tran7cf95f72017-12-28 12:33:28 -08004328 return -ENODEV;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004329 }
4330
Bart Van Asschedf95f392019-08-08 20:01:58 -07004331 id = be_to_port_id(atio->u.isp24.fcp_hdr.s_id);
Quinn Trana4239942017-12-28 12:33:26 -08004332 if (IS_SW_RESV_ADDR(id))
4333 return -EBUSY;
4334
Nicholas Bellinger51a07f82014-05-23 02:00:56 -07004335 sess = ha->tgt.tgt_ops->find_sess_by_s_id(vha, atio->u.isp24.fcp_hdr.s_id);
Quinn Tranfb352652017-12-28 12:33:32 -08004336 if (unlikely(!sess))
4337 return -EFAULT;
Alexei Potashnike52a8b42015-07-14 16:00:48 -04004338
4339 /* Another WWN used to have our s_id. Our PLOGI scheduled its
4340 * session deletion, but it's still in sess_del_work wq */
Quinn Tran726b8542017-01-19 22:28:00 -08004341 if (sess->deleted) {
Quinn Tran83548fe2017-06-02 09:12:01 -07004342 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf002,
Alexei Potashnike52a8b42015-07-14 16:00:48 -04004343 "New command while old session %p is being deleted\n",
4344 sess);
4345 return -EFAULT;
4346 }
4347
Nicholas Bellinger51a07f82014-05-23 02:00:56 -07004348 /*
4349 * Do kref_get() before returning + dropping qla_hw_data->hardware_lock.
4350 */
Quinn Tran726b8542017-01-19 22:28:00 -08004351 if (!kref_get_unless_zero(&sess->sess_kref)) {
Quinn Tran83548fe2017-06-02 09:12:01 -07004352 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf004,
Quinn Tran726b8542017-01-19 22:28:00 -08004353 "%s: kref_get fail, %8phC oxid %x \n",
4354 __func__, sess->port_name,
4355 be16_to_cpu(atio->u.isp24.fcp_hdr.ox_id));
4356 return -EFAULT;
4357 }
Nicholas Bellinger51a07f82014-05-23 02:00:56 -07004358
4359 cmd = qlt_get_tag(vha, sess, atio);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004360 if (!cmd) {
Arun Easi667024a2014-09-25 06:14:47 -04004361 ql_dbg(ql_dbg_io, vha, 0x3062,
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004362 "qla_target(%d): Allocation of cmd failed\n", vha->vp_idx);
Quinn Tran5d964832017-01-19 22:27:59 -08004363 ha->tgt.tgt_ops->put_sess(sess);
Quinn Tran7cf95f72017-12-28 12:33:28 -08004364 return -EBUSY;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004365 }
4366
Saurav Kashyape07f8f62014-09-25 06:14:58 -04004367 cmd->cmd_in_wq = 1;
Quinn Tran1eb42f92017-01-19 22:27:55 -08004368 cmd->trc_flags |= TRC_NEW_CMD;
Swapnil Nagle8b2f5ff2015-07-14 16:00:43 -04004369
Quinn Tran726b8542017-01-19 22:28:00 -08004370 spin_lock_irqsave(&vha->cmd_list_lock, flags);
Swapnil Nagle8b2f5ff2015-07-14 16:00:43 -04004371 list_add_tail(&cmd->cmd_list, &vha->qla_cmd_list);
Quinn Tran726b8542017-01-19 22:28:00 -08004372 spin_unlock_irqrestore(&vha->cmd_list_lock, flags);
Swapnil Nagle8b2f5ff2015-07-14 16:00:43 -04004373
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004374 INIT_WORK(&cmd->work, qlt_do_work);
Quinn Trane326d222017-06-13 20:47:18 -07004375 if (vha->flags.qpairs_available) {
4376 queue_work_on(cmd->se_cmd.cpuid, qla_tgt_wq, &cmd->work);
4377 } else if (ha->msix_count) {
Quinn Tranfb3269b2015-12-17 14:57:06 -05004378 if (cmd->atio.u.isp24.fcp_cmnd.rddata)
4379 queue_work_on(smp_processor_id(), qla_tgt_wq,
4380 &cmd->work);
4381 else
4382 queue_work_on(cmd->se_cmd.cpuid, qla_tgt_wq,
4383 &cmd->work);
4384 } else {
4385 queue_work(qla_tgt_wq, &cmd->work);
4386 }
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004387
Quinn Tran82de8022017-06-13 20:47:17 -07004388 return 0;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004389}
4390
4391/* ha->hardware_lock supposed to be held on entry */
Quinn Tran5d964832017-01-19 22:27:59 -08004392static int qlt_issue_task_mgmt(struct fc_port *sess, u64 lun,
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004393 int fn, void *iocb, int flags)
4394{
4395 struct scsi_qla_host *vha = sess->vha;
4396 struct qla_hw_data *ha = vha->hw;
4397 struct qla_tgt_mgmt_cmd *mcmd;
Swapnil Nagle8b2f5ff2015-07-14 16:00:43 -04004398 struct atio_from_isp *a = (struct atio_from_isp *)iocb;
Quinn Tran84905df2018-05-01 09:01:53 -07004399 struct qla_qpair_hint *h = &vha->vha_tgt.qla_tgt->qphints[0];
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004400
4401 mcmd = mempool_alloc(qla_tgt_mgmt_cmd_mempool, GFP_ATOMIC);
4402 if (!mcmd) {
4403 ql_dbg(ql_dbg_tgt_tmr, vha, 0x10009,
4404 "qla_target(%d): Allocation of management "
4405 "command failed, some commands and their data could "
4406 "leak\n", vha->vp_idx);
4407 return -ENOMEM;
4408 }
4409 memset(mcmd, 0, sizeof(*mcmd));
4410 mcmd->sess = sess;
4411
4412 if (iocb) {
4413 memcpy(&mcmd->orig_iocb.imm_ntfy, iocb,
4414 sizeof(mcmd->orig_iocb.imm_ntfy));
4415 }
4416 mcmd->tmr_func = fn;
4417 mcmd->flags = flags;
Quinn Tran7c3f8fd2017-06-13 20:47:22 -07004418 mcmd->reset_count = ha->base_qpair->chip_reset;
Quinn Tran84905df2018-05-01 09:01:53 -07004419 mcmd->qpair = h->qpair;
Quinn Tran72fcd4e2017-08-23 15:05:13 -07004420 mcmd->vha = vha;
Quinn Tran84905df2018-05-01 09:01:53 -07004421 mcmd->se_cmd.cpuid = h->cpuid;
4422 mcmd->unpacked_lun = lun;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004423
4424 switch (fn) {
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004425 case QLA_TGT_LUN_RESET:
Quinn Tran84905df2018-05-01 09:01:53 -07004426 case QLA_TGT_CLEAR_TS:
4427 case QLA_TGT_ABORT_TS:
4428 abort_cmds_for_lun(vha, lun, a->u.isp24.fcp_hdr.s_id);
Bart Van Assche50435d42018-10-18 15:45:40 -07004429 /* fall through */
Quinn Tran84905df2018-05-01 09:01:53 -07004430 case QLA_TGT_CLEAR_ACA:
4431 h = qlt_find_qphint(vha, mcmd->unpacked_lun);
4432 mcmd->qpair = h->qpair;
4433 mcmd->se_cmd.cpuid = h->cpuid;
4434 break;
4435
4436 case QLA_TGT_TARGET_RESET:
4437 case QLA_TGT_NEXUS_LOSS_SESS:
4438 case QLA_TGT_NEXUS_LOSS:
4439 case QLA_TGT_ABORT_ALL:
4440 default:
4441 /* no-op */
4442 break;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004443 }
4444
Quinn Tran84905df2018-05-01 09:01:53 -07004445 INIT_WORK(&mcmd->work, qlt_do_tmr_work);
4446 queue_work_on(mcmd->se_cmd.cpuid, qla_tgt_wq,
4447 &mcmd->work);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004448
4449 return 0;
4450}
4451
4452/* ha->hardware_lock supposed to be held on entry */
4453static int qlt_handle_task_mgmt(struct scsi_qla_host *vha, void *iocb)
4454{
4455 struct atio_from_isp *a = (struct atio_from_isp *)iocb;
4456 struct qla_hw_data *ha = vha->hw;
Quinn Tran5d964832017-01-19 22:27:59 -08004457 struct fc_port *sess;
Quinn Tranf775bd12017-06-02 09:11:59 -07004458 u64 unpacked_lun;
Bart Van Assche52c82822015-07-09 07:23:26 -07004459 int fn;
Quinn Tran75601512015-12-17 14:57:04 -05004460 unsigned long flags;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004461
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004462 fn = a->u.isp24.fcp_cmnd.task_mgmt_flags;
Quinn Tran75601512015-12-17 14:57:04 -05004463
4464 spin_lock_irqsave(&ha->tgt.sess_lock, flags);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004465 sess = ha->tgt.tgt_ops->find_sess_by_s_id(vha,
4466 a->u.isp24.fcp_hdr.s_id);
Quinn Tran75601512015-12-17 14:57:04 -05004467 spin_unlock_irqrestore(&ha->tgt.sess_lock, flags);
4468
Quinn Tranf775bd12017-06-02 09:11:59 -07004469 unpacked_lun =
4470 scsilun_to_int((struct scsi_lun *)&a->u.isp24.fcp_cmnd.lun);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004471
Quinn Tranfb352652017-12-28 12:33:32 -08004472 if (sess == NULL || sess->deleted)
Alexei Potashnike52a8b42015-07-14 16:00:48 -04004473 return -EFAULT;
4474
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004475 return qlt_issue_task_mgmt(sess, unpacked_lun, fn, iocb, 0);
4476}
4477
4478/* ha->hardware_lock supposed to be held on entry */
4479static int __qlt_abort_task(struct scsi_qla_host *vha,
Quinn Tran5d964832017-01-19 22:27:59 -08004480 struct imm_ntfy_from_isp *iocb, struct fc_port *sess)
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004481{
4482 struct atio_from_isp *a = (struct atio_from_isp *)iocb;
4483 struct qla_hw_data *ha = vha->hw;
4484 struct qla_tgt_mgmt_cmd *mcmd;
Quinn Tranf775bd12017-06-02 09:11:59 -07004485 u64 unpacked_lun;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004486 int rc;
4487
4488 mcmd = mempool_alloc(qla_tgt_mgmt_cmd_mempool, GFP_ATOMIC);
4489 if (mcmd == NULL) {
4490 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf05f,
4491 "qla_target(%d): %s: Allocation of ABORT cmd failed\n",
4492 vha->vp_idx, __func__);
4493 return -ENOMEM;
4494 }
4495 memset(mcmd, 0, sizeof(*mcmd));
4496
4497 mcmd->sess = sess;
4498 memcpy(&mcmd->orig_iocb.imm_ntfy, iocb,
4499 sizeof(mcmd->orig_iocb.imm_ntfy));
4500
Quinn Tranf775bd12017-06-02 09:11:59 -07004501 unpacked_lun =
4502 scsilun_to_int((struct scsi_lun *)&a->u.isp24.fcp_cmnd.lun);
Quinn Tran7c3f8fd2017-06-13 20:47:22 -07004503 mcmd->reset_count = ha->base_qpair->chip_reset;
Quinn Tranbe92fc32017-01-19 22:27:54 -08004504 mcmd->tmr_func = QLA_TGT_2G_ABORT_TASK;
Quinn Tran82de8022017-06-13 20:47:17 -07004505 mcmd->qpair = ha->base_qpair;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004506
Quinn Tranbe92fc32017-01-19 22:27:54 -08004507 rc = ha->tgt.tgt_ops->handle_tmr(mcmd, unpacked_lun, mcmd->tmr_func,
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004508 le16_to_cpu(iocb->u.isp2x.seq_id));
4509 if (rc != 0) {
4510 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf060,
4511 "qla_target(%d): tgt_ops->handle_tmr() failed: %d\n",
4512 vha->vp_idx, rc);
4513 mempool_free(mcmd, qla_tgt_mgmt_cmd_mempool);
4514 return -EFAULT;
4515 }
4516
4517 return 0;
4518}
4519
4520/* ha->hardware_lock supposed to be held on entry */
4521static int qlt_abort_task(struct scsi_qla_host *vha,
4522 struct imm_ntfy_from_isp *iocb)
4523{
4524 struct qla_hw_data *ha = vha->hw;
Quinn Tran5d964832017-01-19 22:27:59 -08004525 struct fc_port *sess;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004526 int loop_id;
Quinn Tran75601512015-12-17 14:57:04 -05004527 unsigned long flags;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004528
4529 loop_id = GET_TARGET_ID(ha, (struct atio_from_isp *)iocb);
4530
Quinn Tran75601512015-12-17 14:57:04 -05004531 spin_lock_irqsave(&ha->tgt.sess_lock, flags);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004532 sess = ha->tgt.tgt_ops->find_sess_by_loop_id(vha, loop_id);
Quinn Tran75601512015-12-17 14:57:04 -05004533 spin_unlock_irqrestore(&ha->tgt.sess_lock, flags);
4534
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004535 if (sess == NULL) {
4536 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf025,
4537 "qla_target(%d): task abort for unexisting "
4538 "session\n", vha->vp_idx);
Saurav Kashyap0e8cd712014-01-14 20:40:38 -08004539 return qlt_sched_sess_work(vha->vha_tgt.qla_tgt,
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004540 QLA_TGT_SESS_WORK_ABORT, iocb, sizeof(*iocb));
4541 }
4542
4543 return __qlt_abort_task(vha, iocb, sess);
4544}
4545
Alexei Potashnika6ca8872015-07-14 16:00:44 -04004546void qlt_logo_completion_handler(fc_port_t *fcport, int rc)
4547{
Quinn Tran726b8542017-01-19 22:28:00 -08004548 if (rc != MBS_COMMAND_COMPLETE) {
4549 ql_dbg(ql_dbg_tgt_mgt, fcport->vha, 0xf093,
4550 "%s: se_sess %p / sess %p from"
4551 " port %8phC loop_id %#04x s_id %02x:%02x:%02x"
4552 " LOGO failed: %#x\n",
4553 __func__,
4554 fcport->se_sess,
4555 fcport,
4556 fcport->port_name, fcport->loop_id,
4557 fcport->d_id.b.domain, fcport->d_id.b.area,
4558 fcport->d_id.b.al_pa, rc);
Alexei Potashnika6ca8872015-07-14 16:00:44 -04004559 }
Quinn Tran726b8542017-01-19 22:28:00 -08004560
4561 fcport->logout_completed = 1;
Alexei Potashnika6ca8872015-07-14 16:00:44 -04004562}
4563
Alexei Potashnika6ca8872015-07-14 16:00:44 -04004564/*
4565* ha->hardware_lock supposed to be held on entry (to protect tgt->sess_list)
4566*
4567* Schedules sessions with matching port_id/loop_id but different wwn for
4568* deletion. Returns existing session with matching wwn if present.
4569* Null otherwise.
4570*/
Quinn Tran726b8542017-01-19 22:28:00 -08004571struct fc_port *
4572qlt_find_sess_invalidate_other(scsi_qla_host_t *vha, uint64_t wwn,
Quinn Tran5d964832017-01-19 22:27:59 -08004573 port_id_t port_id, uint16_t loop_id, struct fc_port **conflict_sess)
Alexei Potashnika6ca8872015-07-14 16:00:44 -04004574{
Quinn Tran5d964832017-01-19 22:27:59 -08004575 struct fc_port *sess = NULL, *other_sess;
Alexei Potashnika6ca8872015-07-14 16:00:44 -04004576 uint64_t other_wwn;
4577
Alexei Potashnikb7bd1042015-12-17 14:57:02 -05004578 *conflict_sess = NULL;
4579
Quinn Tran5d964832017-01-19 22:27:59 -08004580 list_for_each_entry(other_sess, &vha->vp_fcports, list) {
Alexei Potashnika6ca8872015-07-14 16:00:44 -04004581
4582 other_wwn = wwn_to_u64(other_sess->port_name);
4583
4584 if (wwn == other_wwn) {
4585 WARN_ON(sess);
4586 sess = other_sess;
4587 continue;
4588 }
4589
4590 /* find other sess with nport_id collision */
Quinn Tran37cacc02017-01-19 22:27:58 -08004591 if (port_id.b24 == other_sess->d_id.b24) {
Alexei Potashnika6ca8872015-07-14 16:00:44 -04004592 if (loop_id != other_sess->loop_id) {
Quinn Trane1217dc2019-12-17 14:06:15 -08004593 ql_dbg(ql_dbg_disc, vha, 0x1000c,
Alexei Potashnika6ca8872015-07-14 16:00:44 -04004594 "Invalidating sess %p loop_id %d wwn %llx.\n",
4595 other_sess, other_sess->loop_id, other_wwn);
4596
4597 /*
4598 * logout_on_delete is set by default, but another
4599 * session that has the same s_id/loop_id combo
4600 * might have cleared it when requested this session
4601 * deletion, so don't touch it
4602 */
Quinn Tran94cff6e2017-12-28 12:33:42 -08004603 qlt_schedule_sess_for_deletion(other_sess);
Alexei Potashnika6ca8872015-07-14 16:00:44 -04004604 } else {
4605 /*
4606 * Another wwn used to have our s_id/loop_id
Alexei Potashnikb7bd1042015-12-17 14:57:02 -05004607 * kill the session, but don't free the loop_id
Alexei Potashnika6ca8872015-07-14 16:00:44 -04004608 */
Quinn Trane1217dc2019-12-17 14:06:15 -08004609 ql_dbg(ql_dbg_disc, vha, 0xf01b,
Quinn Tran726b8542017-01-19 22:28:00 -08004610 "Invalidating sess %p loop_id %d wwn %llx.\n",
4611 other_sess, other_sess->loop_id, other_wwn);
4612
Alexei Potashnikb7bd1042015-12-17 14:57:02 -05004613 other_sess->keep_nport_handle = 1;
Quinn Tranba743f92017-12-04 14:45:12 -08004614 if (other_sess->disc_state != DSC_DELETED)
4615 *conflict_sess = other_sess;
Quinn Tran94cff6e2017-12-28 12:33:42 -08004616 qlt_schedule_sess_for_deletion(other_sess);
Alexei Potashnika6ca8872015-07-14 16:00:44 -04004617 }
4618 continue;
4619 }
4620
4621 /* find other sess with nport handle collision */
Quinn Tran726b8542017-01-19 22:28:00 -08004622 if ((loop_id == other_sess->loop_id) &&
4623 (loop_id != FC_NO_LOOP_ID)) {
Quinn Trane1217dc2019-12-17 14:06:15 -08004624 ql_dbg(ql_dbg_disc, vha, 0x1000d,
Alexei Potashnika6ca8872015-07-14 16:00:44 -04004625 "Invalidating sess %p loop_id %d wwn %llx.\n",
4626 other_sess, other_sess->loop_id, other_wwn);
4627
4628 /* Same loop_id but different s_id
4629 * Ok to kill and logout */
Quinn Tran94cff6e2017-12-28 12:33:42 -08004630 qlt_schedule_sess_for_deletion(other_sess);
Alexei Potashnika6ca8872015-07-14 16:00:44 -04004631 }
4632 }
4633
4634 return sess;
4635}
4636
Alexei Potashnikdaddf5c2015-07-14 16:00:45 -04004637/* Abort any commands for this s_id waiting on qla_tgt_wq workqueue */
4638static int abort_cmds_for_s_id(struct scsi_qla_host *vha, port_id_t *s_id)
4639{
4640 struct qla_tgt_sess_op *op;
4641 struct qla_tgt_cmd *cmd;
4642 uint32_t key;
4643 int count = 0;
Quinn Tran8b631d82017-06-02 09:11:54 -07004644 unsigned long flags;
Alexei Potashnikdaddf5c2015-07-14 16:00:45 -04004645
4646 key = (((u32)s_id->b.domain << 16) |
4647 ((u32)s_id->b.area << 8) |
4648 ((u32)s_id->b.al_pa));
4649
Quinn Tran8b631d82017-06-02 09:11:54 -07004650 spin_lock_irqsave(&vha->cmd_list_lock, flags);
Alexei Potashnikdaddf5c2015-07-14 16:00:45 -04004651 list_for_each_entry(op, &vha->qla_sess_op_cmd_list, cmd_list) {
4652 uint32_t op_key = sid_to_key(op->atio.u.isp24.fcp_hdr.s_id);
Quinn Tran41dc5292017-01-19 22:28:03 -08004653
Alexei Potashnikdaddf5c2015-07-14 16:00:45 -04004654 if (op_key == key) {
4655 op->aborted = true;
4656 count++;
4657 }
4658 }
Quinn Tran41dc5292017-01-19 22:28:03 -08004659
4660 list_for_each_entry(op, &vha->unknown_atio_list, cmd_list) {
4661 uint32_t op_key = sid_to_key(op->atio.u.isp24.fcp_hdr.s_id);
Bart Van Asschebd432bb2019-04-11 14:53:17 -07004662
Quinn Tran41dc5292017-01-19 22:28:03 -08004663 if (op_key == key) {
4664 op->aborted = true;
4665 count++;
4666 }
4667 }
4668
Alexei Potashnikdaddf5c2015-07-14 16:00:45 -04004669 list_for_each_entry(cmd, &vha->qla_cmd_list, cmd_list) {
4670 uint32_t cmd_key = sid_to_key(cmd->atio.u.isp24.fcp_hdr.s_id);
Bart Van Asschebd432bb2019-04-11 14:53:17 -07004671
Alexei Potashnikdaddf5c2015-07-14 16:00:45 -04004672 if (cmd_key == key) {
Quinn Tran193b50b2015-12-17 14:57:03 -05004673 cmd->aborted = 1;
Alexei Potashnikdaddf5c2015-07-14 16:00:45 -04004674 count++;
4675 }
4676 }
Quinn Tran8b631d82017-06-02 09:11:54 -07004677 spin_unlock_irqrestore(&vha->cmd_list_lock, flags);
Alexei Potashnikdaddf5c2015-07-14 16:00:45 -04004678
4679 return count;
4680}
4681
Quinn Tran9cd883f2017-12-28 12:33:24 -08004682static int qlt_handle_login(struct scsi_qla_host *vha,
4683 struct imm_ntfy_from_isp *iocb)
4684{
4685 struct fc_port *sess = NULL, *conflict_sess = NULL;
4686 uint64_t wwn;
4687 port_id_t port_id;
4688 uint16_t loop_id, wd3_lo;
4689 int res = 0;
4690 struct qlt_plogi_ack_t *pla;
4691 unsigned long flags;
4692
Bart Van Assche57bf5952019-08-08 20:01:34 -07004693 lockdep_assert_held(&vha->hw->hardware_lock);
4694
Quinn Tran9cd883f2017-12-28 12:33:24 -08004695 wwn = wwn_to_u64(iocb->u.isp24.port_name);
4696
4697 port_id.b.domain = iocb->u.isp24.port_id[2];
4698 port_id.b.area = iocb->u.isp24.port_id[1];
4699 port_id.b.al_pa = iocb->u.isp24.port_id[0];
4700 port_id.b.rsvd_1 = 0;
4701
4702 loop_id = le16_to_cpu(iocb->u.isp24.nport_handle);
4703
4704 /* Mark all stale commands sitting in qla_tgt_wq for deletion */
4705 abort_cmds_for_s_id(vha, &port_id);
4706
4707 if (wwn) {
4708 spin_lock_irqsave(&vha->hw->tgt.sess_lock, flags);
4709 sess = qlt_find_sess_invalidate_other(vha, wwn,
4710 port_id, loop_id, &conflict_sess);
4711 spin_unlock_irqrestore(&vha->hw->tgt.sess_lock, flags);
Quinn Tranaa9e6d72018-08-31 11:24:38 -07004712 } else {
4713 ql_dbg(ql_dbg_disc, vha, 0xffff,
4714 "%s %d Term INOT due to WWN=0 lid=%d, NportID %06X ",
4715 __func__, __LINE__, loop_id, port_id.b24);
4716 qlt_send_term_imm_notif(vha, iocb, 1);
4717 goto out;
Quinn Tran9cd883f2017-12-28 12:33:24 -08004718 }
4719
4720 if (IS_SW_RESV_ADDR(port_id)) {
4721 res = 1;
4722 goto out;
4723 }
4724
4725 pla = qlt_plogi_ack_find_add(vha, &port_id, iocb);
4726 if (!pla) {
Quinn Tran48acad02018-08-02 13:16:44 -07004727 ql_dbg(ql_dbg_disc + ql_dbg_verbose, vha, 0xffff,
4728 "%s %d %8phC Term INOT due to mem alloc fail",
4729 __func__, __LINE__,
4730 iocb->u.isp24.port_name);
Quinn Tran9cd883f2017-12-28 12:33:24 -08004731 qlt_send_term_imm_notif(vha, iocb, 1);
4732 goto out;
4733 }
4734
4735 if (conflict_sess) {
4736 conflict_sess->login_gen++;
4737 qlt_plogi_ack_link(vha, pla, conflict_sess,
4738 QLT_PLOGI_LINK_CONFLICT);
4739 }
4740
4741 if (!sess) {
4742 pla->ref_count++;
4743 ql_dbg(ql_dbg_disc, vha, 0xffff,
4744 "%s %d %8phC post new sess\n",
4745 __func__, __LINE__, iocb->u.isp24.port_name);
Quinn Trana4239942017-12-28 12:33:26 -08004746 if (iocb->u.isp24.status_subcode == ELS_PLOGI)
4747 qla24xx_post_newsess_work(vha, &port_id,
4748 iocb->u.isp24.port_name,
4749 iocb->u.isp24.u.plogi.node_name,
4750 pla, FC4_TYPE_UNKNOWN);
4751 else
4752 qla24xx_post_newsess_work(vha, &port_id,
4753 iocb->u.isp24.port_name, NULL,
4754 pla, FC4_TYPE_UNKNOWN);
4755
Quinn Tran9cd883f2017-12-28 12:33:24 -08004756 goto out;
4757 }
4758
Quinn Trancd4ed6b2018-08-31 11:24:31 -07004759 if (sess->disc_state == DSC_UPD_FCPORT) {
4760 u16 sec;
4761
4762 /*
4763 * Remote port registration is still going on from
4764 * previous login. Allow it to finish before we
4765 * accept the new login.
4766 */
4767 sess->next_disc_state = DSC_DELETE_PEND;
4768 sec = jiffies_to_msecs(jiffies -
4769 sess->jiffies_at_registration) / 1000;
4770 if (sess->sec_since_registration < sec && sec &&
4771 !(sec % 5)) {
4772 sess->sec_since_registration = sec;
4773 ql_dbg(ql_dbg_disc, vha, 0xffff,
4774 "%s %8phC - Slow Rport registration (%d Sec)\n",
4775 __func__, sess->port_name, sec);
4776 }
4777
Bart Van Assche1df627b2019-08-08 20:01:42 -07004778 if (!conflict_sess) {
4779 list_del(&pla->list);
Quinn Trancd4ed6b2018-08-31 11:24:31 -07004780 kmem_cache_free(qla_tgt_plogi_cachep, pla);
Bart Van Assche1df627b2019-08-08 20:01:42 -07004781 }
Quinn Trancd4ed6b2018-08-31 11:24:31 -07004782
4783 qlt_send_term_imm_notif(vha, iocb, 1);
4784 goto out;
4785 }
4786
Quinn Tran9cd883f2017-12-28 12:33:24 -08004787 qlt_plogi_ack_link(vha, pla, sess, QLT_PLOGI_LINK_SAME_WWN);
4788 sess->d_id = port_id;
4789 sess->login_gen++;
4790
4791 if (iocb->u.isp24.status_subcode == ELS_PRLI) {
4792 sess->fw_login_state = DSC_LS_PRLI_PEND;
4793 sess->local = 0;
4794 sess->loop_id = loop_id;
4795 sess->d_id = port_id;
4796 sess->fw_login_state = DSC_LS_PRLI_PEND;
4797 wd3_lo = le16_to_cpu(iocb->u.isp24.u.prli.wd3_lo);
4798
4799 if (wd3_lo & BIT_7)
4800 sess->conf_compl_supported = 1;
4801
4802 if ((wd3_lo & BIT_4) == 0)
4803 sess->port_type = FCT_INITIATOR;
4804 else
4805 sess->port_type = FCT_TARGET;
4806
4807 } else
4808 sess->fw_login_state = DSC_LS_PLOGI_PEND;
4809
4810
4811 ql_dbg(ql_dbg_disc, vha, 0x20f9,
4812 "%s %d %8phC DS %d\n",
4813 __func__, __LINE__, sess->port_name, sess->disc_state);
4814
4815 switch (sess->disc_state) {
4816 case DSC_DELETED:
Roman Bolshakov5e6b01d2019-11-25 19:56:59 +03004817 case DSC_LOGIN_PEND:
Quinn Tran9cd883f2017-12-28 12:33:24 -08004818 qlt_plogi_ack_unref(vha, pla);
4819 break;
4820
4821 default:
4822 /*
4823 * Under normal circumstances we want to release nport handle
4824 * during LOGO process to avoid nport handle leaks inside FW.
4825 * The exception is when LOGO is done while another PLOGI with
4826 * the same nport handle is waiting as might be the case here.
4827 * Note: there is always a possibily of a race where session
4828 * deletion has already started for other reasons (e.g. ACL
4829 * removal) and now PLOGI arrives:
4830 * 1. if PLOGI arrived in FW after nport handle has been freed,
4831 * FW must have assigned this PLOGI a new/same handle and we
4832 * can proceed ACK'ing it as usual when session deletion
4833 * completes.
4834 * 2. if PLOGI arrived in FW before LOGO with LCF_FREE_NPORT
4835 * bit reached it, the handle has now been released. We'll
4836 * get an error when we ACK this PLOGI. Nothing will be sent
4837 * back to initiator. Initiator should eventually retry
4838 * PLOGI and situation will correct itself.
4839 */
4840 sess->keep_nport_handle = ((sess->loop_id == loop_id) &&
4841 (sess->d_id.b24 == port_id.b24));
4842
4843 ql_dbg(ql_dbg_disc, vha, 0x20f9,
4844 "%s %d %8phC post del sess\n",
4845 __func__, __LINE__, sess->port_name);
4846
4847
Quinn Trand8630bb2017-12-28 12:33:43 -08004848 qlt_schedule_sess_for_deletion(sess);
Quinn Tran9cd883f2017-12-28 12:33:24 -08004849 break;
4850 }
4851out:
4852 return res;
4853}
4854
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004855/*
4856 * ha->hardware_lock supposed to be held on entry. Might drop it, then reaquire
4857 */
4858static int qlt_24xx_handle_els(struct scsi_qla_host *vha,
4859 struct imm_ntfy_from_isp *iocb)
4860{
Alexei Potashnika6ca8872015-07-14 16:00:44 -04004861 struct qla_tgt *tgt = vha->vha_tgt.qla_tgt;
Alexei Potashnikdf673272015-07-14 16:00:46 -04004862 struct qla_hw_data *ha = vha->hw;
Quinn Tran5d964832017-01-19 22:27:59 -08004863 struct fc_port *sess = NULL, *conflict_sess = NULL;
Alexei Potashnika6ca8872015-07-14 16:00:44 -04004864 uint64_t wwn;
4865 port_id_t port_id;
4866 uint16_t loop_id;
4867 uint16_t wd3_lo;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004868 int res = 0;
Quinn Tran9cd883f2017-12-28 12:33:24 -08004869 unsigned long flags;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004870
Bart Van Assche57bf5952019-08-08 20:01:34 -07004871 lockdep_assert_held(&ha->hardware_lock);
4872
Alexei Potashnika6ca8872015-07-14 16:00:44 -04004873 wwn = wwn_to_u64(iocb->u.isp24.port_name);
4874
4875 port_id.b.domain = iocb->u.isp24.port_id[2];
4876 port_id.b.area = iocb->u.isp24.port_id[1];
4877 port_id.b.al_pa = iocb->u.isp24.port_id[0];
4878 port_id.b.rsvd_1 = 0;
4879
4880 loop_id = le16_to_cpu(iocb->u.isp24.nport_handle);
4881
Quinn Tran726b8542017-01-19 22:28:00 -08004882 ql_dbg(ql_dbg_disc, vha, 0xf026,
4883 "qla_target(%d): Port ID: %02x:%02x:%02x ELS opcode: 0x%02x lid %d %8phC\n",
4884 vha->vp_idx, iocb->u.isp24.port_id[2],
4885 iocb->u.isp24.port_id[1], iocb->u.isp24.port_id[0],
4886 iocb->u.isp24.status_subcode, loop_id,
4887 iocb->u.isp24.port_name);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004888
Alexei Potashnika6ca8872015-07-14 16:00:44 -04004889 /* res = 1 means ack at the end of thread
4890 * res = 0 means ack async/later.
4891 */
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004892 switch (iocb->u.isp24.status_subcode) {
4893 case ELS_PLOGI:
Quinn Tran9cd883f2017-12-28 12:33:24 -08004894 res = qlt_handle_login(vha, iocb);
Alexei Potashnika6ca8872015-07-14 16:00:44 -04004895 break;
4896
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04004897 case ELS_PRLI:
Quinn Tran9cd883f2017-12-28 12:33:24 -08004898 if (N2N_TOPO(ha)) {
4899 sess = qla2x00_find_fcport_by_wwpn(vha,
4900 iocb->u.isp24.port_name, 1);
4901
4902 if (sess && sess->plogi_link[QLT_PLOGI_LINK_SAME_WWN]) {
4903 ql_dbg(ql_dbg_disc, vha, 0xffff,
4904 "%s %d %8phC Term PRLI due to PLOGI ACK not completed\n",
4905 __func__, __LINE__,
4906 iocb->u.isp24.port_name);
4907 qlt_send_term_imm_notif(vha, iocb, 1);
4908 break;
4909 }
4910
4911 res = qlt_handle_login(vha, iocb);
4912 break;
4913 }
4914
Quinn Trana4239942017-12-28 12:33:26 -08004915 if (IS_SW_RESV_ADDR(port_id)) {
4916 res = 1;
4917 break;
4918 }
4919
Alexei Potashnika6ca8872015-07-14 16:00:44 -04004920 wd3_lo = le16_to_cpu(iocb->u.isp24.u.prli.wd3_lo);
4921
Quinn Tran75601512015-12-17 14:57:04 -05004922 if (wwn) {
4923 spin_lock_irqsave(&tgt->ha->tgt.sess_lock, flags);
Quinn Tran726b8542017-01-19 22:28:00 -08004924 sess = qlt_find_sess_invalidate_other(vha, wwn, port_id,
4925 loop_id, &conflict_sess);
Quinn Tran75601512015-12-17 14:57:04 -05004926 spin_unlock_irqrestore(&tgt->ha->tgt.sess_lock, flags);
4927 }
Alexei Potashnikb7bd1042015-12-17 14:57:02 -05004928
4929 if (conflict_sess) {
Quinn Tran5ef696a2017-12-04 14:45:05 -08004930 switch (conflict_sess->disc_state) {
4931 case DSC_DELETED:
4932 case DSC_DELETE_PEND:
4933 break;
4934 default:
4935 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf09b,
4936 "PRLI with conflicting sess %p port %8phC\n",
4937 conflict_sess, conflict_sess->port_name);
4938 conflict_sess->fw_login_state =
4939 DSC_LS_PORT_UNAVAIL;
4940 qlt_send_term_imm_notif(vha, iocb, 1);
4941 res = 0;
4942 break;
4943 }
Alexei Potashnikb7bd1042015-12-17 14:57:02 -05004944 }
Alexei Potashnika6ca8872015-07-14 16:00:44 -04004945
4946 if (sess != NULL) {
Quinn Trana4239942017-12-28 12:33:26 -08004947 bool delete = false;
Quinn Trancd4ed6b2018-08-31 11:24:31 -07004948 int sec;
Bart Van Asschebd432bb2019-04-11 14:53:17 -07004949
Quinn Tran82abdca2017-12-28 12:33:22 -08004950 spin_lock_irqsave(&tgt->ha->tgt.sess_lock, flags);
4951 switch (sess->fw_login_state) {
Quinn Trana4239942017-12-28 12:33:26 -08004952 case DSC_LS_PLOGI_PEND:
Quinn Tran82abdca2017-12-28 12:33:22 -08004953 case DSC_LS_PLOGI_COMP:
4954 case DSC_LS_PRLI_COMP:
4955 break;
4956 default:
Quinn Trana4239942017-12-28 12:33:26 -08004957 delete = true;
4958 break;
4959 }
4960
4961 switch (sess->disc_state) {
Quinn Trancd4ed6b2018-08-31 11:24:31 -07004962 case DSC_UPD_FCPORT:
4963 spin_unlock_irqrestore(&tgt->ha->tgt.sess_lock,
4964 flags);
4965
4966 sec = jiffies_to_msecs(jiffies -
4967 sess->jiffies_at_registration)/1000;
4968 if (sess->sec_since_registration < sec && sec &&
4969 !(sec % 5)) {
4970 sess->sec_since_registration = sec;
4971 ql_dbg(ql_dbg_disc, sess->vha, 0xffff,
4972 "%s %8phC : Slow Rport registration(%d Sec)\n",
4973 __func__, sess->port_name, sec);
4974 }
4975 qlt_send_term_imm_notif(vha, iocb, 1);
4976 return 0;
4977
Quinn Trana4239942017-12-28 12:33:26 -08004978 case DSC_LOGIN_PEND:
4979 case DSC_GPDB:
Quinn Trana4239942017-12-28 12:33:26 -08004980 case DSC_LOGIN_COMPLETE:
4981 case DSC_ADISC:
4982 delete = false;
4983 break;
4984 default:
4985 break;
4986 }
4987
4988 if (delete) {
Quinn Tran82abdca2017-12-28 12:33:22 -08004989 spin_unlock_irqrestore(&tgt->ha->tgt.sess_lock,
4990 flags);
Alexei Potashnika6ca8872015-07-14 16:00:44 -04004991 /*
4992 * Impatient initiator sent PRLI before last
4993 * PLOGI could finish. Will force him to re-try,
4994 * while last one finishes.
4995 */
Alexei Potashnikdf673272015-07-14 16:00:46 -04004996 ql_log(ql_log_warn, sess->vha, 0xf095,
Alexei Potashnika6ca8872015-07-14 16:00:44 -04004997 "sess %p PRLI received, before plogi ack.\n",
4998 sess);
4999 qlt_send_term_imm_notif(vha, iocb, 1);
5000 res = 0;
5001 break;
5002 }
5003
5004 /*
5005 * This shouldn't happen under normal circumstances,
5006 * since we have deleted the old session during PLOGI
5007 */
Alexei Potashnikdf673272015-07-14 16:00:46 -04005008 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf096,
Alexei Potashnika6ca8872015-07-14 16:00:44 -04005009 "PRLI (loop_id %#04x) for existing sess %p (loop_id %#04x)\n",
5010 sess->loop_id, sess, iocb->u.isp24.nport_handle);
5011
5012 sess->local = 0;
5013 sess->loop_id = loop_id;
Quinn Tran37cacc02017-01-19 22:27:58 -08005014 sess->d_id = port_id;
Quinn Tran726b8542017-01-19 22:28:00 -08005015 sess->fw_login_state = DSC_LS_PRLI_PEND;
Alexei Potashnika6ca8872015-07-14 16:00:44 -04005016
5017 if (wd3_lo & BIT_7)
5018 sess->conf_compl_supported = 1;
5019
Quinn Tran726b8542017-01-19 22:28:00 -08005020 if ((wd3_lo & BIT_4) == 0)
5021 sess->port_type = FCT_INITIATOR;
5022 else
5023 sess->port_type = FCT_TARGET;
Quinn Tran82abdca2017-12-28 12:33:22 -08005024
5025 spin_unlock_irqrestore(&tgt->ha->tgt.sess_lock, flags);
Alexei Potashnikdf673272015-07-14 16:00:46 -04005026 }
5027 res = 1; /* send notify ack */
5028
5029 /* Make session global (not used in fabric mode) */
5030 if (ha->current_topology != ISP_CFG_F) {
Quinn Tranec7193e2017-03-15 09:48:55 -07005031 if (sess) {
Quinn Tran83548fe2017-06-02 09:12:01 -07005032 ql_dbg(ql_dbg_disc, vha, 0x20fa,
Quinn Tranec7193e2017-03-15 09:48:55 -07005033 "%s %d %8phC post nack\n",
5034 __func__, __LINE__, sess->port_name);
5035 qla24xx_post_nack_work(vha, sess, iocb,
5036 SRB_NACK_PRLI);
5037 res = 0;
5038 } else {
5039 set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
5040 set_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags);
5041 qla2xxx_wake_dpc(vha);
5042 }
Alexei Potashnika6ca8872015-07-14 16:00:44 -04005043 } else {
Quinn Tran726b8542017-01-19 22:28:00 -08005044 if (sess) {
Quinn Tran83548fe2017-06-02 09:12:01 -07005045 ql_dbg(ql_dbg_disc, vha, 0x20fb,
Quinn Tranec7193e2017-03-15 09:48:55 -07005046 "%s %d %8phC post nack\n",
5047 __func__, __LINE__, sess->port_name);
Quinn Tran726b8542017-01-19 22:28:00 -08005048 qla24xx_post_nack_work(vha, sess, iocb,
5049 SRB_NACK_PRLI);
5050 res = 0;
5051 }
5052 }
Alexei Potashnika6ca8872015-07-14 16:00:44 -04005053 break;
5054
Quinn Tran41dc5292017-01-19 22:28:03 -08005055 case ELS_TPRLO:
5056 if (le16_to_cpu(iocb->u.isp24.flags) &
5057 NOTIFY24XX_FLAGS_GLOBAL_TPRLO) {
5058 loop_id = 0xFFFF;
5059 qlt_reset(vha, iocb, QLA_TGT_NEXUS_LOSS);
5060 res = 1;
5061 break;
5062 }
Bart Van Assche81881862017-12-07 16:02:46 -08005063 /* fall through */
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005064 case ELS_LOGO:
5065 case ELS_PRLO:
Quinn Tran726b8542017-01-19 22:28:00 -08005066 spin_lock_irqsave(&ha->tgt.sess_lock, flags);
5067 sess = qla2x00_find_fcport_by_loopid(vha, loop_id);
5068 spin_unlock_irqrestore(&ha->tgt.sess_lock, flags);
5069
5070 if (sess) {
5071 sess->login_gen++;
5072 sess->fw_login_state = DSC_LS_LOGO_PEND;
Quinn Tran726b8542017-01-19 22:28:00 -08005073 sess->logo_ack_needed = 1;
5074 memcpy(sess->iocb, iocb, IOCB_SIZE);
5075 }
5076
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005077 res = qlt_reset(vha, iocb, QLA_TGT_NEXUS_LOSS_SESS);
Quinn Tran726b8542017-01-19 22:28:00 -08005078
Quinn Tran83548fe2017-06-02 09:12:01 -07005079 ql_dbg(ql_dbg_disc, vha, 0x20fc,
Quinn Tran726b8542017-01-19 22:28:00 -08005080 "%s: logo %llx res %d sess %p ",
5081 __func__, wwn, res, sess);
5082 if (res == 0) {
Quinn Tran41dc5292017-01-19 22:28:03 -08005083 /*
5084 * cmd went upper layer, look for qlt_xmit_tm_rsp()
5085 * for LOGO_ACK & sess delete
5086 */
Quinn Tran726b8542017-01-19 22:28:00 -08005087 BUG_ON(!sess);
5088 res = 0;
5089 } else {
Quinn Tran41dc5292017-01-19 22:28:03 -08005090 /* cmd did not go to upper layer. */
Quinn Tran726b8542017-01-19 22:28:00 -08005091 if (sess) {
Quinn Trand8630bb2017-12-28 12:33:43 -08005092 qlt_schedule_sess_for_deletion(sess);
Quinn Tran726b8542017-01-19 22:28:00 -08005093 res = 0;
5094 }
5095 /* else logo will be ack */
5096 }
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005097 break;
5098 case ELS_PDISC:
5099 case ELS_ADISC:
5100 {
Saurav Kashyap0e8cd712014-01-14 20:40:38 -08005101 struct qla_tgt *tgt = vha->vha_tgt.qla_tgt;
Bart Van Asschebd432bb2019-04-11 14:53:17 -07005102
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005103 if (tgt->link_reinit_iocb_pending) {
Quinn Tran82de8022017-06-13 20:47:17 -07005104 qlt_send_notify_ack(ha->base_qpair,
5105 &tgt->link_reinit_iocb, 0, 0, 0, 0, 0, 0);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005106 tgt->link_reinit_iocb_pending = 0;
5107 }
Quinn Tran726b8542017-01-19 22:28:00 -08005108
5109 sess = qla2x00_find_fcport_by_wwpn(vha,
5110 iocb->u.isp24.port_name, 1);
5111 if (sess) {
Quinn Tran83548fe2017-06-02 09:12:01 -07005112 ql_dbg(ql_dbg_disc, vha, 0x20fd,
Quinn Tran726b8542017-01-19 22:28:00 -08005113 "sess %p lid %d|%d DS %d LS %d\n",
5114 sess, sess->loop_id, loop_id,
5115 sess->disc_state, sess->fw_login_state);
5116 }
5117
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005118 res = 1; /* send notify ack */
5119 break;
5120 }
5121
Alexei Potashnika6ca8872015-07-14 16:00:44 -04005122 case ELS_FLOGI: /* should never happen */
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005123 default:
5124 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf061,
5125 "qla_target(%d): Unsupported ELS command %x "
5126 "received\n", vha->vp_idx, iocb->u.isp24.status_subcode);
5127 res = qlt_reset(vha, iocb, QLA_TGT_NEXUS_LOSS_SESS);
5128 break;
5129 }
5130
Quinn Tran9cd883f2017-12-28 12:33:24 -08005131 ql_dbg(ql_dbg_disc, vha, 0xf026,
5132 "qla_target(%d): Exit ELS opcode: 0x%02x res %d\n",
5133 vha->vp_idx, iocb->u.isp24.status_subcode, res);
5134
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005135 return res;
5136}
5137
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005138/*
5139 * ha->hardware_lock supposed to be held on entry. Might drop it, then reaquire
5140 */
5141static void qlt_handle_imm_notify(struct scsi_qla_host *vha,
5142 struct imm_ntfy_from_isp *iocb)
5143{
5144 struct qla_hw_data *ha = vha->hw;
5145 uint32_t add_flags = 0;
5146 int send_notify_ack = 1;
5147 uint16_t status;
5148
Bart Van Assche57bf5952019-08-08 20:01:34 -07005149 lockdep_assert_held(&ha->hardware_lock);
5150
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005151 status = le16_to_cpu(iocb->u.isp2x.status);
5152 switch (status) {
5153 case IMM_NTFY_LIP_RESET:
5154 {
5155 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf032,
5156 "qla_target(%d): LIP reset (loop %#x), subcode %x\n",
5157 vha->vp_idx, le16_to_cpu(iocb->u.isp24.nport_handle),
5158 iocb->u.isp24.status_subcode);
5159
5160 if (qlt_reset(vha, iocb, QLA_TGT_ABORT_ALL) == 0)
5161 send_notify_ack = 0;
5162 break;
5163 }
5164
5165 case IMM_NTFY_LIP_LINK_REINIT:
5166 {
Saurav Kashyap0e8cd712014-01-14 20:40:38 -08005167 struct qla_tgt *tgt = vha->vha_tgt.qla_tgt;
Bart Van Asschebd432bb2019-04-11 14:53:17 -07005168
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005169 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf033,
5170 "qla_target(%d): LINK REINIT (loop %#x, "
5171 "subcode %x)\n", vha->vp_idx,
5172 le16_to_cpu(iocb->u.isp24.nport_handle),
5173 iocb->u.isp24.status_subcode);
5174 if (tgt->link_reinit_iocb_pending) {
Quinn Tran82de8022017-06-13 20:47:17 -07005175 qlt_send_notify_ack(ha->base_qpair,
5176 &tgt->link_reinit_iocb, 0, 0, 0, 0, 0, 0);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005177 }
5178 memcpy(&tgt->link_reinit_iocb, iocb, sizeof(*iocb));
5179 tgt->link_reinit_iocb_pending = 1;
5180 /*
5181 * QLogic requires to wait after LINK REINIT for possible
5182 * PDISC or ADISC ELS commands
5183 */
5184 send_notify_ack = 0;
5185 break;
5186 }
5187
5188 case IMM_NTFY_PORT_LOGOUT:
5189 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf034,
5190 "qla_target(%d): Port logout (loop "
5191 "%#x, subcode %x)\n", vha->vp_idx,
5192 le16_to_cpu(iocb->u.isp24.nport_handle),
5193 iocb->u.isp24.status_subcode);
5194
5195 if (qlt_reset(vha, iocb, QLA_TGT_NEXUS_LOSS_SESS) == 0)
5196 send_notify_ack = 0;
5197 /* The sessions will be cleared in the callback, if needed */
5198 break;
5199
5200 case IMM_NTFY_GLBL_TPRLO:
5201 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf035,
5202 "qla_target(%d): Global TPRLO (%x)\n", vha->vp_idx, status);
5203 if (qlt_reset(vha, iocb, QLA_TGT_NEXUS_LOSS) == 0)
5204 send_notify_ack = 0;
5205 /* The sessions will be cleared in the callback, if needed */
5206 break;
5207
5208 case IMM_NTFY_PORT_CONFIG:
5209 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf036,
5210 "qla_target(%d): Port config changed (%x)\n", vha->vp_idx,
5211 status);
5212 if (qlt_reset(vha, iocb, QLA_TGT_ABORT_ALL) == 0)
5213 send_notify_ack = 0;
5214 /* The sessions will be cleared in the callback, if needed */
5215 break;
5216
5217 case IMM_NTFY_GLBL_LOGO:
5218 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf06a,
5219 "qla_target(%d): Link failure detected\n",
5220 vha->vp_idx);
5221 /* I_T nexus loss */
5222 if (qlt_reset(vha, iocb, QLA_TGT_NEXUS_LOSS) == 0)
5223 send_notify_ack = 0;
5224 break;
5225
5226 case IMM_NTFY_IOCB_OVERFLOW:
5227 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf06b,
5228 "qla_target(%d): Cannot provide requested "
5229 "capability (IOCB overflowed the immediate notify "
5230 "resource count)\n", vha->vp_idx);
5231 break;
5232
5233 case IMM_NTFY_ABORT_TASK:
5234 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf037,
5235 "qla_target(%d): Abort Task (S %08x I %#x -> "
5236 "L %#x)\n", vha->vp_idx,
5237 le16_to_cpu(iocb->u.isp2x.seq_id),
5238 GET_TARGET_ID(ha, (struct atio_from_isp *)iocb),
5239 le16_to_cpu(iocb->u.isp2x.lun));
5240 if (qlt_abort_task(vha, iocb) == 0)
5241 send_notify_ack = 0;
5242 break;
5243
5244 case IMM_NTFY_RESOURCE:
5245 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf06c,
5246 "qla_target(%d): Out of resources, host %ld\n",
5247 vha->vp_idx, vha->host_no);
5248 break;
5249
5250 case IMM_NTFY_MSG_RX:
5251 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf038,
5252 "qla_target(%d): Immediate notify task %x\n",
5253 vha->vp_idx, iocb->u.isp2x.task_flags);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005254 break;
5255
5256 case IMM_NTFY_ELS:
5257 if (qlt_24xx_handle_els(vha, iocb) == 0)
5258 send_notify_ack = 0;
5259 break;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005260 default:
5261 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf06d,
5262 "qla_target(%d): Received unknown immediate "
5263 "notify status %x\n", vha->vp_idx, status);
5264 break;
5265 }
5266
5267 if (send_notify_ack)
Quinn Tran82de8022017-06-13 20:47:17 -07005268 qlt_send_notify_ack(ha->base_qpair, iocb, add_flags, 0, 0, 0,
5269 0, 0);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005270}
5271
5272/*
5273 * ha->hardware_lock supposed to be held on entry. Might drop it, then reaquire
5274 * This function sends busy to ISP 2xxx or 24xx.
5275 */
Quinn Tran82de8022017-06-13 20:47:17 -07005276static int __qlt_send_busy(struct qla_qpair *qpair,
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005277 struct atio_from_isp *atio, uint16_t status)
5278{
Quinn Tran82de8022017-06-13 20:47:17 -07005279 struct scsi_qla_host *vha = qpair->vha;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005280 struct ctio7_to_24xx *ctio24;
5281 struct qla_hw_data *ha = vha->hw;
5282 request_t *pkt;
Quinn Tran5d964832017-01-19 22:27:59 -08005283 struct fc_port *sess = NULL;
Quinn Tran75601512015-12-17 14:57:04 -05005284 unsigned long flags;
Quinn Tranf7e761f2017-06-02 09:12:02 -07005285 u16 temp;
Quinn Tran8ea4faf2018-05-01 09:01:49 -07005286 port_id_t id;
5287
Bart Van Asschedf95f392019-08-08 20:01:58 -07005288 id = be_to_port_id(atio->u.isp24.fcp_hdr.s_id);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005289
Quinn Tran75601512015-12-17 14:57:04 -05005290 spin_lock_irqsave(&ha->tgt.sess_lock, flags);
Quinn Tran8ea4faf2018-05-01 09:01:49 -07005291 sess = qla2x00_find_fcport_by_nportid(vha, &id, 1);
Quinn Tran75601512015-12-17 14:57:04 -05005292 spin_unlock_irqrestore(&ha->tgt.sess_lock, flags);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005293 if (!sess) {
Quinn Tran82de8022017-06-13 20:47:17 -07005294 qlt_send_term_exchange(qpair, NULL, atio, 1, 0);
Quinn Tran33e79972014-09-25 06:14:55 -04005295 return 0;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005296 }
5297 /* Sending marker isn't necessary, since we called from ISR */
5298
Quinn Tran82de8022017-06-13 20:47:17 -07005299 pkt = (request_t *)__qla2x00_alloc_iocbs(qpair, NULL);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005300 if (!pkt) {
Arun Easi667024a2014-09-25 06:14:47 -04005301 ql_dbg(ql_dbg_io, vha, 0x3063,
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005302 "qla_target(%d): %s failed: unable to allocate "
5303 "request packet", vha->vp_idx, __func__);
Quinn Tran33e79972014-09-25 06:14:55 -04005304 return -ENOMEM;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005305 }
5306
Quinn Tran60a9ead2017-06-13 20:47:28 -07005307 qpair->tgt_counters.num_q_full_sent++;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005308 pkt->entry_count = 1;
5309 pkt->handle = QLA_TGT_SKIP_HANDLE | CTIO_COMPLETION_HANDLE_MARK;
5310
5311 ctio24 = (struct ctio7_to_24xx *)pkt;
5312 ctio24->entry_type = CTIO_TYPE7;
5313 ctio24->nport_handle = sess->loop_id;
Bart Van Asschead950362015-07-09 07:24:08 -07005314 ctio24->timeout = cpu_to_le16(QLA_TGT_TIMEOUT);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005315 ctio24->vp_index = vha->vp_idx;
Bart Van Asschedf95f392019-08-08 20:01:58 -07005316 ctio24->initiator_id = be_id_to_le(atio->u.isp24.fcp_hdr.s_id);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005317 ctio24->exchange_addr = atio->u.isp24.exchange_addr;
Quinn Tranf7e761f2017-06-02 09:12:02 -07005318 temp = (atio->u.isp24.attr << 9) |
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005319 CTIO7_FLAGS_STATUS_MODE_1 | CTIO7_FLAGS_SEND_STATUS |
Quinn Tranf7e761f2017-06-02 09:12:02 -07005320 CTIO7_FLAGS_DONT_RET_CTIO;
5321 ctio24->u.status1.flags = cpu_to_le16(temp);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005322 /*
5323 * CTIO from fw w/o se_cmd doesn't provide enough info to retry it,
5324 * if the explicit conformation is used.
5325 */
5326 ctio24->u.status1.ox_id = swab16(atio->u.isp24.fcp_hdr.ox_id);
5327 ctio24->u.status1.scsi_status = cpu_to_le16(status);
Quinn Trane25f7652018-05-01 09:01:50 -07005328
5329 ctio24->u.status1.residual = get_datalen_for_atio(atio);
5330
5331 if (ctio24->u.status1.residual != 0)
5332 ctio24->u.status1.scsi_status |= SS_RESIDUAL_UNDER;
5333
Himanshu Madhani63163e02014-09-25 06:14:59 -04005334 /* Memory Barrier */
5335 wmb();
Quinn Tran8abfa9e2017-06-13 20:47:24 -07005336 if (qpair->reqq_start_iocbs)
5337 qpair->reqq_start_iocbs(qpair);
5338 else
5339 qla2x00_start_iocbs(vha, qpair->req);
Quinn Tran33e79972014-09-25 06:14:55 -04005340 return 0;
5341}
5342
5343/*
5344 * This routine is used to allocate a command for either a QFull condition
5345 * (ie reply SAM_STAT_BUSY) or to terminate an exchange that did not go
5346 * out previously.
5347 */
5348static void
5349qlt_alloc_qfull_cmd(struct scsi_qla_host *vha,
5350 struct atio_from_isp *atio, uint16_t status, int qfull)
5351{
5352 struct qla_tgt *tgt = vha->vha_tgt.qla_tgt;
5353 struct qla_hw_data *ha = vha->hw;
Quinn Tran5d964832017-01-19 22:27:59 -08005354 struct fc_port *sess;
Quinn Tran33e79972014-09-25 06:14:55 -04005355 struct se_session *se_sess;
5356 struct qla_tgt_cmd *cmd;
Matthew Wilcox10e9cbb2018-06-12 12:05:44 -07005357 int tag, cpu;
Quinn Tran82de8022017-06-13 20:47:17 -07005358 unsigned long flags;
Quinn Tran33e79972014-09-25 06:14:55 -04005359
5360 if (unlikely(tgt->tgt_stop)) {
5361 ql_dbg(ql_dbg_io, vha, 0x300a,
5362 "New command while device %p is shutting down\n", tgt);
5363 return;
5364 }
5365
5366 if ((vha->hw->tgt.num_qfull_cmds_alloc + 1) > MAX_QFULL_CMDS_ALLOC) {
5367 vha->hw->tgt.num_qfull_cmds_dropped++;
5368 if (vha->hw->tgt.num_qfull_cmds_dropped >
Joe Carnucciofc90ada2016-07-06 11:14:23 -04005369 vha->qla_stats.stat_max_qfull_cmds_dropped)
5370 vha->qla_stats.stat_max_qfull_cmds_dropped =
Quinn Tran33e79972014-09-25 06:14:55 -04005371 vha->hw->tgt.num_qfull_cmds_dropped;
5372
5373 ql_dbg(ql_dbg_io, vha, 0x3068,
5374 "qla_target(%d): %s: QFull CMD dropped[%d]\n",
5375 vha->vp_idx, __func__,
5376 vha->hw->tgt.num_qfull_cmds_dropped);
5377
5378 qlt_chk_exch_leak_thresh_hold(vha);
5379 return;
5380 }
5381
5382 sess = ha->tgt.tgt_ops->find_sess_by_s_id
5383 (vha, atio->u.isp24.fcp_hdr.s_id);
5384 if (!sess)
5385 return;
5386
5387 se_sess = sess->se_sess;
5388
Matthew Wilcox10e9cbb2018-06-12 12:05:44 -07005389 tag = sbitmap_queue_get(&se_sess->sess_tag_pool, &cpu);
Bart Van Asschec04466c2019-04-17 14:44:27 -07005390 if (tag < 0) {
Quinn Tran33e79972014-09-25 06:14:55 -04005391 ql_dbg(ql_dbg_io, vha, 0x3009,
5392 "qla_target(%d): %s: Allocation of cmd failed\n",
5393 vha->vp_idx, __func__);
5394
5395 vha->hw->tgt.num_qfull_cmds_dropped++;
5396 if (vha->hw->tgt.num_qfull_cmds_dropped >
Joe Carnucciofc90ada2016-07-06 11:14:23 -04005397 vha->qla_stats.stat_max_qfull_cmds_dropped)
5398 vha->qla_stats.stat_max_qfull_cmds_dropped =
Quinn Tran33e79972014-09-25 06:14:55 -04005399 vha->hw->tgt.num_qfull_cmds_dropped;
5400
5401 qlt_chk_exch_leak_thresh_hold(vha);
5402 return;
5403 }
5404
Bart Van Asschec04466c2019-04-17 14:44:27 -07005405 cmd = &((struct qla_tgt_cmd *)se_sess->sess_cmd_map)[tag];
Quinn Tran33e79972014-09-25 06:14:55 -04005406 memset(cmd, 0, sizeof(struct qla_tgt_cmd));
5407
5408 qlt_incr_num_pend_cmds(vha);
5409 INIT_LIST_HEAD(&cmd->cmd_list);
5410 memcpy(&cmd->atio, atio, sizeof(*atio));
5411
5412 cmd->tgt = vha->vha_tgt.qla_tgt;
5413 cmd->vha = vha;
Quinn Tran7c3f8fd2017-06-13 20:47:22 -07005414 cmd->reset_count = ha->base_qpair->chip_reset;
Quinn Tran33e79972014-09-25 06:14:55 -04005415 cmd->q_full = 1;
Quinn Tran82de8022017-06-13 20:47:17 -07005416 cmd->qpair = ha->base_qpair;
Matthew Wilcox10e9cbb2018-06-12 12:05:44 -07005417 cmd->se_cmd.map_cpu = cpu;
Quinn Tran33e79972014-09-25 06:14:55 -04005418
5419 if (qfull) {
5420 cmd->q_full = 1;
5421 /* NOTE: borrowing the state field to carry the status */
5422 cmd->state = status;
5423 } else
5424 cmd->term_exchg = 1;
5425
Quinn Tran82de8022017-06-13 20:47:17 -07005426 spin_lock_irqsave(&vha->hw->tgt.q_full_lock, flags);
Quinn Tran33e79972014-09-25 06:14:55 -04005427 list_add_tail(&cmd->cmd_list, &vha->hw->tgt.q_full_list);
5428
5429 vha->hw->tgt.num_qfull_cmds_alloc++;
5430 if (vha->hw->tgt.num_qfull_cmds_alloc >
Joe Carnucciofc90ada2016-07-06 11:14:23 -04005431 vha->qla_stats.stat_max_qfull_cmds_alloc)
5432 vha->qla_stats.stat_max_qfull_cmds_alloc =
Quinn Tran33e79972014-09-25 06:14:55 -04005433 vha->hw->tgt.num_qfull_cmds_alloc;
Quinn Tran82de8022017-06-13 20:47:17 -07005434 spin_unlock_irqrestore(&vha->hw->tgt.q_full_lock, flags);
Quinn Tran33e79972014-09-25 06:14:55 -04005435}
5436
5437int
Quinn Tran82de8022017-06-13 20:47:17 -07005438qlt_free_qfull_cmds(struct qla_qpair *qpair)
Quinn Tran33e79972014-09-25 06:14:55 -04005439{
Quinn Tran82de8022017-06-13 20:47:17 -07005440 struct scsi_qla_host *vha = qpair->vha;
Quinn Tran33e79972014-09-25 06:14:55 -04005441 struct qla_hw_data *ha = vha->hw;
5442 unsigned long flags;
5443 struct qla_tgt_cmd *cmd, *tcmd;
Quinn Tran82de8022017-06-13 20:47:17 -07005444 struct list_head free_list, q_full_list;
Quinn Tran33e79972014-09-25 06:14:55 -04005445 int rc = 0;
5446
5447 if (list_empty(&ha->tgt.q_full_list))
5448 return 0;
5449
5450 INIT_LIST_HEAD(&free_list);
Quinn Tran82de8022017-06-13 20:47:17 -07005451 INIT_LIST_HEAD(&q_full_list);
Quinn Tran33e79972014-09-25 06:14:55 -04005452
Quinn Tran82de8022017-06-13 20:47:17 -07005453 spin_lock_irqsave(&vha->hw->tgt.q_full_lock, flags);
Quinn Tran33e79972014-09-25 06:14:55 -04005454 if (list_empty(&ha->tgt.q_full_list)) {
Quinn Tran82de8022017-06-13 20:47:17 -07005455 spin_unlock_irqrestore(&vha->hw->tgt.q_full_lock, flags);
Quinn Tran33e79972014-09-25 06:14:55 -04005456 return 0;
5457 }
5458
Quinn Tran82de8022017-06-13 20:47:17 -07005459 list_splice_init(&vha->hw->tgt.q_full_list, &q_full_list);
5460 spin_unlock_irqrestore(&vha->hw->tgt.q_full_lock, flags);
5461
5462 spin_lock_irqsave(qpair->qp_lock_ptr, flags);
5463 list_for_each_entry_safe(cmd, tcmd, &q_full_list, cmd_list) {
Quinn Tran33e79972014-09-25 06:14:55 -04005464 if (cmd->q_full)
5465 /* cmd->state is a borrowed field to hold status */
Quinn Tran82de8022017-06-13 20:47:17 -07005466 rc = __qlt_send_busy(qpair, &cmd->atio, cmd->state);
Quinn Tran33e79972014-09-25 06:14:55 -04005467 else if (cmd->term_exchg)
Quinn Tran82de8022017-06-13 20:47:17 -07005468 rc = __qlt_send_term_exchange(qpair, NULL, &cmd->atio);
Quinn Tran33e79972014-09-25 06:14:55 -04005469
5470 if (rc == -ENOMEM)
5471 break;
5472
5473 if (cmd->q_full)
5474 ql_dbg(ql_dbg_io, vha, 0x3006,
5475 "%s: busy sent for ox_id[%04x]\n", __func__,
5476 be16_to_cpu(cmd->atio.u.isp24.fcp_hdr.ox_id));
5477 else if (cmd->term_exchg)
5478 ql_dbg(ql_dbg_io, vha, 0x3007,
5479 "%s: Term exchg sent for ox_id[%04x]\n", __func__,
5480 be16_to_cpu(cmd->atio.u.isp24.fcp_hdr.ox_id));
5481 else
5482 ql_dbg(ql_dbg_io, vha, 0x3008,
5483 "%s: Unexpected cmd in QFull list %p\n", __func__,
5484 cmd);
5485
5486 list_del(&cmd->cmd_list);
5487 list_add_tail(&cmd->cmd_list, &free_list);
5488
5489 /* piggy back on hardware_lock for protection */
5490 vha->hw->tgt.num_qfull_cmds_alloc--;
5491 }
Quinn Tran82de8022017-06-13 20:47:17 -07005492 spin_unlock_irqrestore(qpair->qp_lock_ptr, flags);
Quinn Tran33e79972014-09-25 06:14:55 -04005493
5494 cmd = NULL;
5495
5496 list_for_each_entry_safe(cmd, tcmd, &free_list, cmd_list) {
5497 list_del(&cmd->cmd_list);
5498 /* This cmd was never sent to TCM. There is no need
5499 * to schedule free or call free_cmd
5500 */
5501 qlt_free_cmd(cmd);
5502 }
Quinn Tran82de8022017-06-13 20:47:17 -07005503
5504 if (!list_empty(&q_full_list)) {
5505 spin_lock_irqsave(&vha->hw->tgt.q_full_lock, flags);
5506 list_splice(&q_full_list, &vha->hw->tgt.q_full_list);
5507 spin_unlock_irqrestore(&vha->hw->tgt.q_full_lock, flags);
5508 }
5509
Quinn Tran33e79972014-09-25 06:14:55 -04005510 return rc;
5511}
5512
5513static void
Quinn Tran82de8022017-06-13 20:47:17 -07005514qlt_send_busy(struct qla_qpair *qpair, struct atio_from_isp *atio,
5515 uint16_t status)
Quinn Tran33e79972014-09-25 06:14:55 -04005516{
5517 int rc = 0;
Quinn Tran82de8022017-06-13 20:47:17 -07005518 struct scsi_qla_host *vha = qpair->vha;
Quinn Tran33e79972014-09-25 06:14:55 -04005519
Quinn Tran82de8022017-06-13 20:47:17 -07005520 rc = __qlt_send_busy(qpair, atio, status);
Quinn Tran33e79972014-09-25 06:14:55 -04005521 if (rc == -ENOMEM)
5522 qlt_alloc_qfull_cmd(vha, atio, status, 1);
5523}
5524
5525static int
Quinn Tran82de8022017-06-13 20:47:17 -07005526qlt_chk_qfull_thresh_hold(struct scsi_qla_host *vha, struct qla_qpair *qpair,
5527 struct atio_from_isp *atio, uint8_t ha_locked)
Quinn Tran33e79972014-09-25 06:14:55 -04005528{
5529 struct qla_hw_data *ha = vha->hw;
Quinn Tran8b666802017-03-15 09:48:45 -07005530 unsigned long flags;
Quinn Tran33e79972014-09-25 06:14:55 -04005531
5532 if (ha->tgt.num_pend_cmds < Q_FULL_THRESH_HOLD(ha))
5533 return 0;
5534
Quinn Tran8b666802017-03-15 09:48:45 -07005535 if (!ha_locked)
5536 spin_lock_irqsave(&ha->hardware_lock, flags);
Quinn Tran7cf95f72017-12-28 12:33:28 -08005537 qlt_send_busy(qpair, atio, qla_sam_status);
Quinn Tran8b666802017-03-15 09:48:45 -07005538 if (!ha_locked)
5539 spin_unlock_irqrestore(&ha->hardware_lock, flags);
5540
Quinn Tran33e79972014-09-25 06:14:55 -04005541 return 1;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005542}
5543
5544/* ha->hardware_lock supposed to be held on entry */
5545/* called via callback from qla2xxx */
5546static void qlt_24xx_atio_pkt(struct scsi_qla_host *vha,
Quinn Tran2f424b92015-12-17 14:57:07 -05005547 struct atio_from_isp *atio, uint8_t ha_locked)
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005548{
5549 struct qla_hw_data *ha = vha->hw;
Saurav Kashyap0e8cd712014-01-14 20:40:38 -08005550 struct qla_tgt *tgt = vha->vha_tgt.qla_tgt;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005551 int rc;
Quinn Tran7cf95f72017-12-28 12:33:28 -08005552 unsigned long flags = 0;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005553
5554 if (unlikely(tgt == NULL)) {
Quinn Tranec7193e2017-03-15 09:48:55 -07005555 ql_dbg(ql_dbg_tgt, vha, 0x3064,
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005556 "ATIO pkt, but no tgt (ha %p)", ha);
5557 return;
5558 }
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005559 /*
5560 * In tgt_stop mode we also should allow all requests to pass.
5561 * Otherwise, some commands can stuck.
5562 */
5563
Quinn Tran2f424b92015-12-17 14:57:07 -05005564 tgt->atio_irq_cmd_count++;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005565
5566 switch (atio->u.raw.entry_type) {
5567 case ATIO_TYPE7:
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005568 if (unlikely(atio->u.isp24.exchange_addr ==
5569 ATIO_EXCHANGE_ADDRESS_UNKNOWN)) {
Arun Easi667024a2014-09-25 06:14:47 -04005570 ql_dbg(ql_dbg_io, vha, 0x3065,
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005571 "qla_target(%d): ATIO_TYPE7 "
5572 "received with UNKNOWN exchange address, "
5573 "sending QUEUE_FULL\n", vha->vp_idx);
Quinn Tran2f424b92015-12-17 14:57:07 -05005574 if (!ha_locked)
5575 spin_lock_irqsave(&ha->hardware_lock, flags);
Quinn Tran7cf95f72017-12-28 12:33:28 -08005576 qlt_send_busy(ha->base_qpair, atio, qla_sam_status);
Quinn Tran2f424b92015-12-17 14:57:07 -05005577 if (!ha_locked)
Quinn Tran82de8022017-06-13 20:47:17 -07005578 spin_unlock_irqrestore(&ha->hardware_lock,
5579 flags);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005580 break;
5581 }
Quinn Tran33e79972014-09-25 06:14:55 -04005582
Quinn Tran33e79972014-09-25 06:14:55 -04005583 if (likely(atio->u.isp24.fcp_cmnd.task_mgmt_flags == 0)) {
Quinn Tran82de8022017-06-13 20:47:17 -07005584 rc = qlt_chk_qfull_thresh_hold(vha, ha->base_qpair,
5585 atio, ha_locked);
Quinn Tran33e79972014-09-25 06:14:55 -04005586 if (rc != 0) {
Quinn Tran2f424b92015-12-17 14:57:07 -05005587 tgt->atio_irq_cmd_count--;
Quinn Tran33e79972014-09-25 06:14:55 -04005588 return;
5589 }
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005590 rc = qlt_handle_cmd_for_atio(vha, atio);
Quinn Tran33e79972014-09-25 06:14:55 -04005591 } else {
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005592 rc = qlt_handle_task_mgmt(vha, atio);
Quinn Tran33e79972014-09-25 06:14:55 -04005593 }
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005594 if (unlikely(rc != 0)) {
Quinn Tran7cf95f72017-12-28 12:33:28 -08005595 if (!ha_locked)
5596 spin_lock_irqsave(&ha->hardware_lock, flags);
5597 switch (rc) {
5598 case -ENODEV:
5599 ql_dbg(ql_dbg_tgt, vha, 0xe05f,
5600 "qla_target: Unable to send command to target\n");
5601 break;
5602 case -EBADF:
5603 ql_dbg(ql_dbg_tgt, vha, 0xe05f,
5604 "qla_target: Unable to send command to target, sending TERM EXCHANGE for rsp\n");
Quinn Tran82de8022017-06-13 20:47:17 -07005605 qlt_send_term_exchange(ha->base_qpair, NULL,
5606 atio, 1, 0);
Quinn Tran7cf95f72017-12-28 12:33:28 -08005607 break;
5608 case -EBUSY:
5609 ql_dbg(ql_dbg_tgt, vha, 0xe060,
5610 "qla_target(%d): Unable to send command to target, sending BUSY status\n",
5611 vha->vp_idx);
5612 qlt_send_busy(ha->base_qpair, atio,
5613 tc_sam_status);
5614 break;
5615 default:
5616 ql_dbg(ql_dbg_tgt, vha, 0xe060,
5617 "qla_target(%d): Unable to send command to target, sending BUSY status\n",
5618 vha->vp_idx);
5619 qlt_send_busy(ha->base_qpair, atio,
5620 qla_sam_status);
5621 break;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005622 }
Quinn Tran7cf95f72017-12-28 12:33:28 -08005623 if (!ha_locked)
5624 spin_unlock_irqrestore(&ha->hardware_lock,
5625 flags);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005626 }
5627 break;
5628
5629 case IMMED_NOTIFY_TYPE:
5630 {
5631 if (unlikely(atio->u.isp2x.entry_status != 0)) {
5632 ql_dbg(ql_dbg_tgt, vha, 0xe05b,
5633 "qla_target(%d): Received ATIO packet %x "
5634 "with error status %x\n", vha->vp_idx,
5635 atio->u.raw.entry_type,
5636 atio->u.isp2x.entry_status);
5637 break;
5638 }
5639 ql_dbg(ql_dbg_tgt, vha, 0xe02e, "%s", "IMMED_NOTIFY ATIO");
Quinn Tran2f424b92015-12-17 14:57:07 -05005640
5641 if (!ha_locked)
5642 spin_lock_irqsave(&ha->hardware_lock, flags);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005643 qlt_handle_imm_notify(vha, (struct imm_ntfy_from_isp *)atio);
Quinn Tran2f424b92015-12-17 14:57:07 -05005644 if (!ha_locked)
5645 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005646 break;
5647 }
5648
5649 default:
5650 ql_dbg(ql_dbg_tgt, vha, 0xe05c,
5651 "qla_target(%d): Received unknown ATIO atio "
5652 "type %x\n", vha->vp_idx, atio->u.raw.entry_type);
5653 break;
5654 }
5655
Quinn Tran2f424b92015-12-17 14:57:07 -05005656 tgt->atio_irq_cmd_count--;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005657}
5658
Quinn Tran06910942018-09-04 14:19:12 -07005659/*
5660 * qpair lock is assume to be held
5661 * rc = 0 : send terminate & abts respond
5662 * rc != 0: do not send term & abts respond
5663 */
5664static int qlt_chk_unresolv_exchg(struct scsi_qla_host *vha,
5665 struct qla_qpair *qpair, struct abts_resp_from_24xx_fw *entry)
5666{
5667 struct qla_hw_data *ha = vha->hw;
5668 int rc = 0;
5669
5670 /*
5671 * Detect unresolved exchange. If the same ABTS is unable
5672 * to terminate an existing command and the same ABTS loops
5673 * between FW & Driver, then force FW dump. Under 1 jiff,
5674 * we should see multiple loops.
5675 */
5676 if (qpair->retry_term_exchg_addr == entry->exchange_addr_to_abort &&
5677 qpair->retry_term_jiff == jiffies) {
5678 /* found existing exchange */
5679 qpair->retry_term_cnt++;
5680 if (qpair->retry_term_cnt >= 5) {
5681 rc = EIO;
5682 qpair->retry_term_cnt = 0;
5683 ql_log(ql_log_warn, vha, 0xffff,
5684 "Unable to send ABTS Respond. Dumping firmware.\n");
5685 ql_dump_buffer(ql_dbg_tgt_mgt + ql_dbg_buffer,
5686 vha, 0xffff, (uint8_t *)entry, sizeof(*entry));
5687
5688 if (qpair == ha->base_qpair)
5689 ha->isp_ops->fw_dump(vha, 1);
5690 else
5691 ha->isp_ops->fw_dump(vha, 0);
5692
5693 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
5694 qla2xxx_wake_dpc(vha);
5695 }
5696 } else if (qpair->retry_term_jiff != jiffies) {
5697 qpair->retry_term_exchg_addr = entry->exchange_addr_to_abort;
5698 qpair->retry_term_cnt = 0;
5699 qpair->retry_term_jiff = jiffies;
5700 }
5701
5702 return rc;
5703}
5704
Quinn Tran6b0431d2018-09-04 14:19:13 -07005705
5706static void qlt_handle_abts_completion(struct scsi_qla_host *vha,
5707 struct rsp_que *rsp, response_t *pkt)
5708{
5709 struct abts_resp_from_24xx_fw *entry =
5710 (struct abts_resp_from_24xx_fw *)pkt;
5711 u32 h = pkt->handle & ~QLA_TGT_HANDLE_MASK;
5712 struct qla_tgt_mgmt_cmd *mcmd;
5713 struct qla_hw_data *ha = vha->hw;
5714
Bart Van Assche81bcf1c2019-04-11 14:53:24 -07005715 mcmd = qlt_ctio_to_cmd(vha, rsp, pkt->handle, pkt);
Quinn Tran6b0431d2018-09-04 14:19:13 -07005716 if (mcmd == NULL && h != QLA_TGT_SKIP_HANDLE) {
5717 ql_dbg(ql_dbg_async, vha, 0xe064,
5718 "qla_target(%d): ABTS Comp without mcmd\n",
5719 vha->vp_idx);
5720 return;
5721 }
5722
5723 if (mcmd)
5724 vha = mcmd->vha;
5725 vha->vha_tgt.qla_tgt->abts_resp_expected--;
5726
5727 ql_dbg(ql_dbg_tgt, vha, 0xe038,
5728 "ABTS_RESP_24XX: compl_status %x\n",
5729 entry->compl_status);
5730
5731 if (le16_to_cpu(entry->compl_status) != ABTS_RESP_COMPL_SUCCESS) {
5732 if ((entry->error_subcode1 == 0x1E) &&
5733 (entry->error_subcode2 == 0)) {
5734 if (qlt_chk_unresolv_exchg(vha, rsp->qpair, entry)) {
5735 ha->tgt.tgt_ops->free_mcmd(mcmd);
5736 return;
5737 }
5738 qlt_24xx_retry_term_exchange(vha, rsp->qpair,
5739 pkt, mcmd);
5740 } else {
5741 ql_dbg(ql_dbg_tgt, vha, 0xe063,
5742 "qla_target(%d): ABTS_RESP_24XX failed %x (subcode %x:%x)",
5743 vha->vp_idx, entry->compl_status,
5744 entry->error_subcode1,
5745 entry->error_subcode2);
5746 ha->tgt.tgt_ops->free_mcmd(mcmd);
5747 }
Bart Van Asschee752a042019-08-08 20:02:07 -07005748 } else if (mcmd) {
Quinn Tran6b0431d2018-09-04 14:19:13 -07005749 ha->tgt.tgt_ops->free_mcmd(mcmd);
5750 }
5751}
5752
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005753/* ha->hardware_lock supposed to be held on entry */
5754/* called via callback from qla2xxx */
Quinn Tran82de8022017-06-13 20:47:17 -07005755static void qlt_response_pkt(struct scsi_qla_host *vha,
5756 struct rsp_que *rsp, response_t *pkt)
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005757{
Saurav Kashyap0e8cd712014-01-14 20:40:38 -08005758 struct qla_tgt *tgt = vha->vha_tgt.qla_tgt;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005759
5760 if (unlikely(tgt == NULL)) {
5761 ql_dbg(ql_dbg_tgt, vha, 0xe05d,
Quinn Tran60a9ead2017-06-13 20:47:28 -07005762 "qla_target(%d): Response pkt %x received, but no tgt (ha %p)\n",
5763 vha->vp_idx, pkt->entry_type, vha->hw);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005764 return;
5765 }
5766
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005767 /*
5768 * In tgt_stop mode we also should allow all requests to pass.
5769 * Otherwise, some commands can stuck.
5770 */
5771
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005772 switch (pkt->entry_type) {
Quinn Tranf83adb62014-04-11 16:54:43 -04005773 case CTIO_CRC2:
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005774 case CTIO_TYPE7:
5775 {
5776 struct ctio7_from_24xx *entry = (struct ctio7_from_24xx *)pkt;
Bart Van Asschebd432bb2019-04-11 14:53:17 -07005777
Quinn Tran82de8022017-06-13 20:47:17 -07005778 qlt_do_ctio_completion(vha, rsp, entry->handle,
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005779 le16_to_cpu(entry->status)|(pkt->entry_status << 16),
5780 entry);
5781 break;
5782 }
5783
5784 case ACCEPT_TGT_IO_TYPE:
5785 {
5786 struct atio_from_isp *atio = (struct atio_from_isp *)pkt;
5787 int rc;
Bart Van Asschebd432bb2019-04-11 14:53:17 -07005788
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005789 if (atio->u.isp2x.status !=
Bart Van Asschead950362015-07-09 07:24:08 -07005790 cpu_to_le16(ATIO_CDB_VALID)) {
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005791 ql_dbg(ql_dbg_tgt, vha, 0xe05e,
5792 "qla_target(%d): ATIO with error "
5793 "status %x received\n", vha->vp_idx,
5794 le16_to_cpu(atio->u.isp2x.status));
5795 break;
5796 }
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005797
Quinn Tran82de8022017-06-13 20:47:17 -07005798 rc = qlt_chk_qfull_thresh_hold(vha, rsp->qpair, atio, 1);
Quinn Tranba68a632017-06-02 09:12:06 -07005799 if (rc != 0)
Quinn Tran33e79972014-09-25 06:14:55 -04005800 return;
Quinn Tran33e79972014-09-25 06:14:55 -04005801
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005802 rc = qlt_handle_cmd_for_atio(vha, atio);
5803 if (unlikely(rc != 0)) {
Quinn Tran7cf95f72017-12-28 12:33:28 -08005804 switch (rc) {
5805 case -ENODEV:
5806 ql_dbg(ql_dbg_tgt, vha, 0xe05f,
5807 "qla_target: Unable to send command to target\n");
5808 break;
5809 case -EBADF:
5810 ql_dbg(ql_dbg_tgt, vha, 0xe05f,
5811 "qla_target: Unable to send command to target, sending TERM EXCHANGE for rsp\n");
5812 qlt_send_term_exchange(rsp->qpair, NULL,
5813 atio, 1, 0);
5814 break;
5815 case -EBUSY:
5816 ql_dbg(ql_dbg_tgt, vha, 0xe060,
5817 "qla_target(%d): Unable to send command to target, sending BUSY status\n",
5818 vha->vp_idx);
5819 qlt_send_busy(rsp->qpair, atio,
5820 tc_sam_status);
5821 break;
5822 default:
5823 ql_dbg(ql_dbg_tgt, vha, 0xe060,
5824 "qla_target(%d): Unable to send command to target, sending BUSY status\n",
5825 vha->vp_idx);
5826 qlt_send_busy(rsp->qpair, atio,
5827 qla_sam_status);
5828 break;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005829 }
5830 }
5831 }
5832 break;
5833
5834 case CONTINUE_TGT_IO_TYPE:
5835 {
5836 struct ctio_to_2xxx *entry = (struct ctio_to_2xxx *)pkt;
Bart Van Asschebd432bb2019-04-11 14:53:17 -07005837
Quinn Tran82de8022017-06-13 20:47:17 -07005838 qlt_do_ctio_completion(vha, rsp, entry->handle,
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005839 le16_to_cpu(entry->status)|(pkt->entry_status << 16),
5840 entry);
5841 break;
5842 }
5843
5844 case CTIO_A64_TYPE:
5845 {
5846 struct ctio_to_2xxx *entry = (struct ctio_to_2xxx *)pkt;
Bart Van Asschebd432bb2019-04-11 14:53:17 -07005847
Quinn Tran82de8022017-06-13 20:47:17 -07005848 qlt_do_ctio_completion(vha, rsp, entry->handle,
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005849 le16_to_cpu(entry->status)|(pkt->entry_status << 16),
5850 entry);
5851 break;
5852 }
5853
5854 case IMMED_NOTIFY_TYPE:
5855 ql_dbg(ql_dbg_tgt, vha, 0xe035, "%s", "IMMED_NOTIFY\n");
5856 qlt_handle_imm_notify(vha, (struct imm_ntfy_from_isp *)pkt);
5857 break;
5858
5859 case NOTIFY_ACK_TYPE:
5860 if (tgt->notify_ack_expected > 0) {
5861 struct nack_to_isp *entry = (struct nack_to_isp *)pkt;
Bart Van Asschebd432bb2019-04-11 14:53:17 -07005862
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005863 ql_dbg(ql_dbg_tgt, vha, 0xe036,
5864 "NOTIFY_ACK seq %08x status %x\n",
5865 le16_to_cpu(entry->u.isp2x.seq_id),
5866 le16_to_cpu(entry->u.isp2x.status));
5867 tgt->notify_ack_expected--;
5868 if (entry->u.isp2x.status !=
Bart Van Asschead950362015-07-09 07:24:08 -07005869 cpu_to_le16(NOTIFY_ACK_SUCCESS)) {
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005870 ql_dbg(ql_dbg_tgt, vha, 0xe061,
5871 "qla_target(%d): NOTIFY_ACK "
5872 "failed %x\n", vha->vp_idx,
5873 le16_to_cpu(entry->u.isp2x.status));
5874 }
5875 } else {
5876 ql_dbg(ql_dbg_tgt, vha, 0xe062,
5877 "qla_target(%d): Unexpected NOTIFY_ACK received\n",
5878 vha->vp_idx);
5879 }
5880 break;
5881
5882 case ABTS_RECV_24XX:
5883 ql_dbg(ql_dbg_tgt, vha, 0xe037,
5884 "ABTS_RECV_24XX: instance %d\n", vha->vp_idx);
5885 qlt_24xx_handle_abts(vha, (struct abts_recv_from_24xx *)pkt);
5886 break;
5887
5888 case ABTS_RESP_24XX:
5889 if (tgt->abts_resp_expected > 0) {
Quinn Tran6b0431d2018-09-04 14:19:13 -07005890 qlt_handle_abts_completion(vha, rsp, pkt);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005891 } else {
5892 ql_dbg(ql_dbg_tgt, vha, 0xe064,
5893 "qla_target(%d): Unexpected ABTS_RESP_24XX "
5894 "received\n", vha->vp_idx);
5895 }
5896 break;
5897
5898 default:
5899 ql_dbg(ql_dbg_tgt, vha, 0xe065,
5900 "qla_target(%d): Received unknown response pkt "
5901 "type %x\n", vha->vp_idx, pkt->entry_type);
5902 break;
5903 }
5904
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005905}
5906
5907/*
5908 * ha->hardware_lock supposed to be held on entry. Might drop it, then reaquire
5909 */
5910void qlt_async_event(uint16_t code, struct scsi_qla_host *vha,
5911 uint16_t *mailbox)
5912{
5913 struct qla_hw_data *ha = vha->hw;
Saurav Kashyap0e8cd712014-01-14 20:40:38 -08005914 struct qla_tgt *tgt = vha->vha_tgt.qla_tgt;
Alan Cox4f1d0f12012-07-04 16:35:35 +01005915 int login_code;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005916
Quinn Tran3a33dc92017-06-02 09:12:04 -07005917 if (!tgt || tgt->tgt_stop || tgt->tgt_stopped)
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005918 return;
5919
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005920 if (((code == MBA_POINT_TO_POINT) || (code == MBA_CHG_IN_CONNECTION)) &&
5921 IS_QLA2100(ha))
5922 return;
5923 /*
5924 * In tgt_stop mode we also should allow all requests to pass.
5925 * Otherwise, some commands can stuck.
5926 */
5927
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005928
5929 switch (code) {
5930 case MBA_RESET: /* Reset */
5931 case MBA_SYSTEM_ERR: /* System Error */
5932 case MBA_REQ_TRANSFER_ERR: /* Request Transfer Error */
5933 case MBA_RSP_TRANSFER_ERR: /* Response Transfer Error */
5934 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf03a,
5935 "qla_target(%d): System error async event %#x "
Masanari Iida6efb3c0a2012-10-26 22:10:54 +09005936 "occurred", vha->vp_idx, code);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005937 break;
5938 case MBA_WAKEUP_THRES: /* Request Queue Wake-up. */
5939 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
5940 break;
5941
5942 case MBA_LOOP_UP:
5943 {
5944 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf03b,
Masanari Iida6efb3c0a2012-10-26 22:10:54 +09005945 "qla_target(%d): Async LOOP_UP occurred "
Alan Cox4f1d0f12012-07-04 16:35:35 +01005946 "(m[0]=%x, m[1]=%x, m[2]=%x, m[3]=%x)", vha->vp_idx,
5947 le16_to_cpu(mailbox[0]), le16_to_cpu(mailbox[1]),
5948 le16_to_cpu(mailbox[2]), le16_to_cpu(mailbox[3]));
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005949 if (tgt->link_reinit_iocb_pending) {
Quinn Tran82de8022017-06-13 20:47:17 -07005950 qlt_send_notify_ack(ha->base_qpair,
5951 (void *)&tgt->link_reinit_iocb,
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005952 0, 0, 0, 0, 0, 0);
5953 tgt->link_reinit_iocb_pending = 0;
5954 }
5955 break;
5956 }
5957
5958 case MBA_LIP_OCCURRED:
5959 case MBA_LOOP_DOWN:
5960 case MBA_LIP_RESET:
5961 case MBA_RSCN_UPDATE:
5962 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf03c,
Masanari Iida6efb3c0a2012-10-26 22:10:54 +09005963 "qla_target(%d): Async event %#x occurred "
Alan Cox4f1d0f12012-07-04 16:35:35 +01005964 "(m[0]=%x, m[1]=%x, m[2]=%x, m[3]=%x)", vha->vp_idx, code,
5965 le16_to_cpu(mailbox[0]), le16_to_cpu(mailbox[1]),
5966 le16_to_cpu(mailbox[2]), le16_to_cpu(mailbox[3]));
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005967 break;
5968
Quinn Tranead03852017-01-19 22:28:01 -08005969 case MBA_REJECTED_FCP_CMD:
Quinn Tran83548fe2017-06-02 09:12:01 -07005970 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf017,
5971 "qla_target(%d): Async event LS_REJECT occurred (m[0]=%x, m[1]=%x, m[2]=%x, m[3]=%x)",
5972 vha->vp_idx,
5973 le16_to_cpu(mailbox[0]), le16_to_cpu(mailbox[1]),
5974 le16_to_cpu(mailbox[2]), le16_to_cpu(mailbox[3]));
Quinn Tranead03852017-01-19 22:28:01 -08005975
5976 if (le16_to_cpu(mailbox[3]) == 1) {
5977 /* exchange starvation. */
5978 vha->hw->exch_starvation++;
5979 if (vha->hw->exch_starvation > 5) {
Quinn Tran83548fe2017-06-02 09:12:01 -07005980 ql_log(ql_log_warn, vha, 0xd03a,
Quinn Tranead03852017-01-19 22:28:01 -08005981 "Exchange starvation-. Resetting RISC\n");
5982
5983 vha->hw->exch_starvation = 0;
5984 if (IS_P3P_TYPE(vha->hw))
5985 set_bit(FCOE_CTX_RESET_NEEDED,
5986 &vha->dpc_flags);
5987 else
5988 set_bit(ISP_ABORT_NEEDED,
5989 &vha->dpc_flags);
5990 qla2xxx_wake_dpc(vha);
5991 }
5992 }
5993 break;
5994
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04005995 case MBA_PORT_UPDATE:
5996 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf03d,
5997 "qla_target(%d): Port update async event %#x "
Masanari Iida6efb3c0a2012-10-26 22:10:54 +09005998 "occurred: updating the ports database (m[0]=%x, m[1]=%x, "
Alan Cox4f1d0f12012-07-04 16:35:35 +01005999 "m[2]=%x, m[3]=%x)", vha->vp_idx, code,
6000 le16_to_cpu(mailbox[0]), le16_to_cpu(mailbox[1]),
6001 le16_to_cpu(mailbox[2]), le16_to_cpu(mailbox[3]));
6002
6003 login_code = le16_to_cpu(mailbox[2]);
Quinn Tranead03852017-01-19 22:28:01 -08006004 if (login_code == 0x4) {
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006005 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf03e,
6006 "Async MB 2: Got PLOGI Complete\n");
Quinn Tranead03852017-01-19 22:28:01 -08006007 vha->hw->exch_starvation = 0;
6008 } else if (login_code == 0x7)
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006009 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf03f,
6010 "Async MB 2: Port Logged Out\n");
6011 break;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006012 default:
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006013 break;
6014 }
6015
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006016}
6017
6018static fc_port_t *qlt_get_port_database(struct scsi_qla_host *vha,
6019 uint16_t loop_id)
6020{
Quinn Tran726b8542017-01-19 22:28:00 -08006021 fc_port_t *fcport, *tfcp, *del;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006022 int rc;
Quinn Tran726b8542017-01-19 22:28:00 -08006023 unsigned long flags;
6024 u8 newfcport = 0;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006025
Quinn Tran063b36d2017-12-04 14:45:10 -08006026 fcport = qla2x00_alloc_fcport(vha, GFP_KERNEL);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006027 if (!fcport) {
6028 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf06f,
6029 "qla_target(%d): Allocation of tmp FC port failed",
6030 vha->vp_idx);
6031 return NULL;
6032 }
6033
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006034 fcport->loop_id = loop_id;
6035
Quinn Tran15f30a52017-03-15 09:48:52 -07006036 rc = qla24xx_gpdb_wait(vha, fcport, 0);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006037 if (rc != QLA_SUCCESS) {
6038 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf070,
6039 "qla_target(%d): Failed to retrieve fcport "
6040 "information -- get_port_database() returned %x "
6041 "(loop_id=0x%04x)", vha->vp_idx, rc, loop_id);
6042 kfree(fcport);
6043 return NULL;
6044 }
6045
Quinn Tran726b8542017-01-19 22:28:00 -08006046 del = NULL;
6047 spin_lock_irqsave(&vha->hw->tgt.sess_lock, flags);
6048 tfcp = qla2x00_find_fcport_by_wwpn(vha, fcport->port_name, 1);
6049
6050 if (tfcp) {
6051 tfcp->d_id = fcport->d_id;
6052 tfcp->port_type = fcport->port_type;
6053 tfcp->supported_classes = fcport->supported_classes;
6054 tfcp->flags |= fcport->flags;
Quinn Tran76f9a2d2017-12-04 14:45:11 -08006055 tfcp->scan_state = QLA_FCPORT_FOUND;
Quinn Tran726b8542017-01-19 22:28:00 -08006056
6057 del = fcport;
6058 fcport = tfcp;
6059 } else {
6060 if (vha->hw->current_topology == ISP_CFG_F)
6061 fcport->flags |= FCF_FABRIC_DEVICE;
6062
6063 list_add_tail(&fcport->list, &vha->vp_fcports);
6064 if (!IS_SW_RESV_ADDR(fcport->d_id))
6065 vha->fcport_count++;
6066 fcport->login_gen++;
Shyam Sundar27258a52019-12-17 14:06:06 -08006067 qla2x00_set_fcport_disc_state(fcport, DSC_LOGIN_COMPLETE);
Quinn Tran726b8542017-01-19 22:28:00 -08006068 fcport->login_succ = 1;
6069 newfcport = 1;
6070 }
6071
6072 fcport->deleted = 0;
6073 spin_unlock_irqrestore(&vha->hw->tgt.sess_lock, flags);
6074
6075 switch (vha->host->active_mode) {
6076 case MODE_INITIATOR:
6077 case MODE_DUAL:
6078 if (newfcport) {
6079 if (!IS_IIDMA_CAPABLE(vha->hw) || !vha->hw->flags.gpsc_supported) {
Quinn Trancd4ed6b2018-08-31 11:24:31 -07006080 qla24xx_sched_upd_fcport(fcport);
Quinn Tran726b8542017-01-19 22:28:00 -08006081 } else {
Quinn Tran83548fe2017-06-02 09:12:01 -07006082 ql_dbg(ql_dbg_disc, vha, 0x20ff,
Quinn Tran726b8542017-01-19 22:28:00 -08006083 "%s %d %8phC post gpsc fcp_cnt %d\n",
6084 __func__, __LINE__, fcport->port_name, vha->fcport_count);
6085 qla24xx_post_gpsc_work(vha, fcport);
6086 }
6087 }
6088 break;
6089
6090 case MODE_TARGET:
6091 default:
6092 break;
6093 }
6094 if (del)
6095 qla2x00_free_fcport(del);
6096
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006097 return fcport;
6098}
6099
6100/* Must be called under tgt_mutex */
Quinn Tran5d964832017-01-19 22:27:59 -08006101static struct fc_port *qlt_make_local_sess(struct scsi_qla_host *vha,
Bart Van Asschedf95f392019-08-08 20:01:58 -07006102 be_id_t s_id)
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006103{
Quinn Tran5d964832017-01-19 22:27:59 -08006104 struct fc_port *sess = NULL;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006105 fc_port_t *fcport = NULL;
6106 int rc, global_resets;
6107 uint16_t loop_id = 0;
6108
Bart Van Asschedf95f392019-08-08 20:01:58 -07006109 if (s_id.domain == 0xFF && s_id.area == 0xFC) {
Quinn Tran726b8542017-01-19 22:28:00 -08006110 /*
6111 * This is Domain Controller, so it should be
6112 * OK to drop SCSI commands from it.
6113 */
6114 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf042,
6115 "Unable to find initiator with S_ID %x:%x:%x",
Bart Van Asschedf95f392019-08-08 20:01:58 -07006116 s_id.domain, s_id.area, s_id.al_pa);
Quinn Tran726b8542017-01-19 22:28:00 -08006117 return NULL;
6118 }
6119
Alexei Potashnik71cdc072015-12-17 14:57:01 -05006120 mutex_lock(&vha->vha_tgt.tgt_mutex);
6121
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006122retry:
Saurav Kashyap0e8cd712014-01-14 20:40:38 -08006123 global_resets =
6124 atomic_read(&vha->vha_tgt.qla_tgt->tgt_global_resets_count);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006125
6126 rc = qla24xx_get_loop_id(vha, s_id, &loop_id);
6127 if (rc != 0) {
Alexei Potashnik71cdc072015-12-17 14:57:01 -05006128 mutex_unlock(&vha->vha_tgt.tgt_mutex);
6129
Quinn Tran726b8542017-01-19 22:28:00 -08006130 ql_log(ql_log_info, vha, 0xf071,
6131 "qla_target(%d): Unable to find "
6132 "initiator with S_ID %x:%x:%x",
Bart Van Asschedf95f392019-08-08 20:01:58 -07006133 vha->vp_idx, s_id.domain, s_id.area, s_id.al_pa);
Alexei Potashnik71cdc072015-12-17 14:57:01 -05006134
6135 if (rc == -ENOENT) {
6136 qlt_port_logo_t logo;
Bart Van Asschebd432bb2019-04-11 14:53:17 -07006137
Bart Van Asschedf95f392019-08-08 20:01:58 -07006138 logo.id = be_to_port_id(s_id);
Alexei Potashnik71cdc072015-12-17 14:57:01 -05006139 logo.cmd_count = 1;
6140 qlt_send_first_logo(vha, &logo);
6141 }
6142
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006143 return NULL;
6144 }
6145
6146 fcport = qlt_get_port_database(vha, loop_id);
Alexei Potashnik71cdc072015-12-17 14:57:01 -05006147 if (!fcport) {
6148 mutex_unlock(&vha->vha_tgt.tgt_mutex);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006149 return NULL;
Alexei Potashnik71cdc072015-12-17 14:57:01 -05006150 }
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006151
6152 if (global_resets !=
Saurav Kashyap0e8cd712014-01-14 20:40:38 -08006153 atomic_read(&vha->vha_tgt.qla_tgt->tgt_global_resets_count)) {
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006154 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf043,
6155 "qla_target(%d): global reset during session discovery "
6156 "(counter was %d, new %d), retrying", vha->vp_idx,
6157 global_resets,
Saurav Kashyap0e8cd712014-01-14 20:40:38 -08006158 atomic_read(&vha->vha_tgt.
6159 qla_tgt->tgt_global_resets_count));
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006160 goto retry;
6161 }
6162
6163 sess = qlt_create_sess(vha, fcport, true);
6164
Alexei Potashnik71cdc072015-12-17 14:57:01 -05006165 mutex_unlock(&vha->vha_tgt.tgt_mutex);
6166
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006167 return sess;
6168}
6169
6170static void qlt_abort_work(struct qla_tgt *tgt,
6171 struct qla_tgt_sess_work_param *prm)
6172{
6173 struct scsi_qla_host *vha = tgt->vha;
6174 struct qla_hw_data *ha = vha->hw;
Quinn Tran5d964832017-01-19 22:27:59 -08006175 struct fc_port *sess = NULL;
Quinn Tran75601512015-12-17 14:57:04 -05006176 unsigned long flags = 0, flags2 = 0;
Bart Van Asschedf95f392019-08-08 20:01:58 -07006177 be_id_t s_id;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006178 int rc;
6179
Quinn Tran75601512015-12-17 14:57:04 -05006180 spin_lock_irqsave(&ha->tgt.sess_lock, flags2);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006181
6182 if (tgt->tgt_stop)
Quinn Tran75601512015-12-17 14:57:04 -05006183 goto out_term2;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006184
Bart Van Asschedf95f392019-08-08 20:01:58 -07006185 s_id = le_id_to_be(prm->abts.fcp_hdr_le.s_id);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006186
Bart Van Asscheac452b82019-08-08 20:01:40 -07006187 sess = ha->tgt.tgt_ops->find_sess_by_s_id(vha, s_id);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006188 if (!sess) {
Quinn Tran75601512015-12-17 14:57:04 -05006189 spin_unlock_irqrestore(&ha->tgt.sess_lock, flags2);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006190
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006191 sess = qlt_make_local_sess(vha, s_id);
6192 /* sess has got an extra creation ref */
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006193
Quinn Tran75601512015-12-17 14:57:04 -05006194 spin_lock_irqsave(&ha->tgt.sess_lock, flags2);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006195 if (!sess)
Quinn Tran75601512015-12-17 14:57:04 -05006196 goto out_term2;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006197 } else {
Quinn Tran726b8542017-01-19 22:28:00 -08006198 if (sess->deleted) {
Alexei Potashnike52a8b42015-07-14 16:00:48 -04006199 sess = NULL;
Quinn Tran75601512015-12-17 14:57:04 -05006200 goto out_term2;
Alexei Potashnike52a8b42015-07-14 16:00:48 -04006201 }
6202
Quinn Tran726b8542017-01-19 22:28:00 -08006203 if (!kref_get_unless_zero(&sess->sess_kref)) {
Quinn Tran83548fe2017-06-02 09:12:01 -07006204 ql_dbg(ql_dbg_tgt_tmr, vha, 0xf01c,
Quinn Tran726b8542017-01-19 22:28:00 -08006205 "%s: kref_get fail %8phC \n",
6206 __func__, sess->port_name);
6207 sess = NULL;
6208 goto out_term2;
6209 }
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006210 }
6211
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006212 rc = __qlt_24xx_handle_abts(vha, &prm->abts, sess);
Quinn Tranf159b3c2017-03-15 09:48:47 -07006213 spin_unlock_irqrestore(&ha->tgt.sess_lock, flags2);
6214
Bart Van Assche300ec742019-04-17 14:44:41 -07006215 ha->tgt.tgt_ops->put_sess(sess);
6216
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006217 if (rc != 0)
6218 goto out_term;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006219 return;
6220
Quinn Tran75601512015-12-17 14:57:04 -05006221out_term2:
Bart Van Assche300ec742019-04-17 14:44:41 -07006222 spin_unlock_irqrestore(&ha->tgt.sess_lock, flags2);
6223
Quinn Tranf159b3c2017-03-15 09:48:47 -07006224out_term:
6225 spin_lock_irqsave(&ha->hardware_lock, flags);
Quinn Tran82de8022017-06-13 20:47:17 -07006226 qlt_24xx_send_abts_resp(ha->base_qpair, &prm->abts,
6227 FCP_TMF_REJECTED, false);
Quinn Tranf159b3c2017-03-15 09:48:47 -07006228 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006229}
6230
6231static void qlt_tmr_work(struct qla_tgt *tgt,
6232 struct qla_tgt_sess_work_param *prm)
6233{
6234 struct atio_from_isp *a = &prm->tm_iocb2;
6235 struct scsi_qla_host *vha = tgt->vha;
6236 struct qla_hw_data *ha = vha->hw;
Colin Ian Kingbb6abdd2019-02-15 09:52:32 +00006237 struct fc_port *sess;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006238 unsigned long flags;
Bart Van Asschedf95f392019-08-08 20:01:58 -07006239 be_id_t s_id;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006240 int rc;
Quinn Tranf775bd12017-06-02 09:11:59 -07006241 u64 unpacked_lun;
Bart Van Assche52c82822015-07-09 07:23:26 -07006242 int fn;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006243 void *iocb;
6244
Quinn Tran75601512015-12-17 14:57:04 -05006245 spin_lock_irqsave(&ha->tgt.sess_lock, flags);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006246
6247 if (tgt->tgt_stop)
Quinn Tranf159b3c2017-03-15 09:48:47 -07006248 goto out_term2;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006249
6250 s_id = prm->tm_iocb2.u.isp24.fcp_hdr.s_id;
6251 sess = ha->tgt.tgt_ops->find_sess_by_s_id(vha, s_id);
6252 if (!sess) {
Quinn Tran75601512015-12-17 14:57:04 -05006253 spin_unlock_irqrestore(&ha->tgt.sess_lock, flags);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006254
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006255 sess = qlt_make_local_sess(vha, s_id);
6256 /* sess has got an extra creation ref */
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006257
Quinn Tran75601512015-12-17 14:57:04 -05006258 spin_lock_irqsave(&ha->tgt.sess_lock, flags);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006259 if (!sess)
Quinn Tranf159b3c2017-03-15 09:48:47 -07006260 goto out_term2;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006261 } else {
Quinn Tran726b8542017-01-19 22:28:00 -08006262 if (sess->deleted) {
Quinn Tranf159b3c2017-03-15 09:48:47 -07006263 goto out_term2;
Alexei Potashnike52a8b42015-07-14 16:00:48 -04006264 }
6265
Quinn Tran726b8542017-01-19 22:28:00 -08006266 if (!kref_get_unless_zero(&sess->sess_kref)) {
Quinn Tran83548fe2017-06-02 09:12:01 -07006267 ql_dbg(ql_dbg_tgt_tmr, vha, 0xf020,
Quinn Tran726b8542017-01-19 22:28:00 -08006268 "%s: kref_get fail %8phC\n",
6269 __func__, sess->port_name);
Quinn Tranf159b3c2017-03-15 09:48:47 -07006270 goto out_term2;
Quinn Tran726b8542017-01-19 22:28:00 -08006271 }
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006272 }
6273
6274 iocb = a;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006275 fn = a->u.isp24.fcp_cmnd.task_mgmt_flags;
Quinn Tranf775bd12017-06-02 09:11:59 -07006276 unpacked_lun =
6277 scsilun_to_int((struct scsi_lun *)&a->u.isp24.fcp_cmnd.lun);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006278
6279 rc = qlt_issue_task_mgmt(sess, unpacked_lun, fn, iocb, 0);
Quinn Tranf159b3c2017-03-15 09:48:47 -07006280 spin_unlock_irqrestore(&ha->tgt.sess_lock, flags);
6281
Bart Van Assche300ec742019-04-17 14:44:41 -07006282 ha->tgt.tgt_ops->put_sess(sess);
6283
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006284 if (rc != 0)
6285 goto out_term;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006286 return;
6287
Quinn Tranf159b3c2017-03-15 09:48:47 -07006288out_term2:
Quinn Tranf159b3c2017-03-15 09:48:47 -07006289 spin_unlock_irqrestore(&ha->tgt.sess_lock, flags);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006290out_term:
Quinn Tran82de8022017-06-13 20:47:17 -07006291 qlt_send_term_exchange(ha->base_qpair, NULL, &prm->tm_iocb2, 1, 0);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006292}
6293
6294static void qlt_sess_work_fn(struct work_struct *work)
6295{
6296 struct qla_tgt *tgt = container_of(work, struct qla_tgt, sess_work);
6297 struct scsi_qla_host *vha = tgt->vha;
6298 unsigned long flags;
6299
6300 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf000, "Sess work (tgt %p)", tgt);
6301
6302 spin_lock_irqsave(&tgt->sess_work_lock, flags);
6303 while (!list_empty(&tgt->sess_works_list)) {
6304 struct qla_tgt_sess_work_param *prm = list_entry(
6305 tgt->sess_works_list.next, typeof(*prm),
6306 sess_works_list_entry);
6307
6308 /*
6309 * This work can be scheduled on several CPUs at time, so we
6310 * must delete the entry to eliminate double processing
6311 */
6312 list_del(&prm->sess_works_list_entry);
6313
6314 spin_unlock_irqrestore(&tgt->sess_work_lock, flags);
6315
6316 switch (prm->type) {
6317 case QLA_TGT_SESS_WORK_ABORT:
6318 qlt_abort_work(tgt, prm);
6319 break;
6320 case QLA_TGT_SESS_WORK_TM:
6321 qlt_tmr_work(tgt, prm);
6322 break;
6323 default:
6324 BUG_ON(1);
6325 break;
6326 }
6327
6328 spin_lock_irqsave(&tgt->sess_work_lock, flags);
6329
6330 kfree(prm);
6331 }
6332 spin_unlock_irqrestore(&tgt->sess_work_lock, flags);
6333}
6334
6335/* Must be called under tgt_host_action_mutex */
6336int qlt_add_target(struct qla_hw_data *ha, struct scsi_qla_host *base_vha)
6337{
6338 struct qla_tgt *tgt;
Quinn Trane326d222017-06-13 20:47:18 -07006339 int rc, i;
6340 struct qla_qpair_hint *h;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006341
6342 if (!QLA_TGT_MODE_ENABLED())
6343 return 0;
6344
Arun Easi33c36c02013-01-30 03:34:41 -05006345 if (!IS_TGT_MODE_CAPABLE(ha)) {
6346 ql_log(ql_log_warn, base_vha, 0xe070,
6347 "This adapter does not support target mode.\n");
6348 return 0;
6349 }
6350
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006351 ql_dbg(ql_dbg_tgt, base_vha, 0xe03b,
Saurav Kashyap0e8cd712014-01-14 20:40:38 -08006352 "Registering target for host %ld(%p).\n", base_vha->host_no, ha);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006353
Saurav Kashyap0e8cd712014-01-14 20:40:38 -08006354 BUG_ON(base_vha->vha_tgt.qla_tgt != NULL);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006355
6356 tgt = kzalloc(sizeof(struct qla_tgt), GFP_KERNEL);
6357 if (!tgt) {
6358 ql_dbg(ql_dbg_tgt, base_vha, 0xe066,
6359 "Unable to allocate struct qla_tgt\n");
6360 return -ENOMEM;
6361 }
6362
Kees Cook6396bb22018-06-12 14:03:40 -07006363 tgt->qphints = kcalloc(ha->max_qpairs + 1,
6364 sizeof(struct qla_qpair_hint),
6365 GFP_KERNEL);
Quinn Trane326d222017-06-13 20:47:18 -07006366 if (!tgt->qphints) {
6367 kfree(tgt);
6368 ql_log(ql_log_warn, base_vha, 0x0197,
6369 "Unable to allocate qpair hints.\n");
6370 return -ENOMEM;
6371 }
6372
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006373 if (!(base_vha->host->hostt->supported_mode & MODE_TARGET))
6374 base_vha->host->hostt->supported_mode |= MODE_TARGET;
6375
Quinn Trane326d222017-06-13 20:47:18 -07006376 rc = btree_init64(&tgt->lun_qpair_map);
6377 if (rc) {
6378 kfree(tgt->qphints);
6379 kfree(tgt);
6380 ql_log(ql_log_info, base_vha, 0x0198,
6381 "Unable to initialize lun_qpair_map btree\n");
6382 return -EIO;
6383 }
6384 h = &tgt->qphints[0];
6385 h->qpair = ha->base_qpair;
6386 INIT_LIST_HEAD(&h->hint_elem);
6387 h->cpuid = ha->base_qpair->cpuid;
6388 list_add_tail(&h->hint_elem, &ha->base_qpair->hints_list);
6389
6390 for (i = 0; i < ha->max_qpairs; i++) {
6391 unsigned long flags;
6392
6393 struct qla_qpair *qpair = ha->queue_pair_map[i];
Bart Van Asschebd432bb2019-04-11 14:53:17 -07006394
Quinn Trane326d222017-06-13 20:47:18 -07006395 h = &tgt->qphints[i + 1];
6396 INIT_LIST_HEAD(&h->hint_elem);
6397 if (qpair) {
6398 h->qpair = qpair;
6399 spin_lock_irqsave(qpair->qp_lock_ptr, flags);
6400 list_add_tail(&h->hint_elem, &qpair->hints_list);
6401 spin_unlock_irqrestore(qpair->qp_lock_ptr, flags);
6402 h->cpuid = qpair->cpuid;
6403 }
6404 }
6405
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006406 tgt->ha = ha;
6407 tgt->vha = base_vha;
6408 init_waitqueue_head(&tgt->waitQ);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006409 INIT_LIST_HEAD(&tgt->del_sess_list);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006410 spin_lock_init(&tgt->sess_work_lock);
6411 INIT_WORK(&tgt->sess_work, qlt_sess_work_fn);
6412 INIT_LIST_HEAD(&tgt->sess_works_list);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006413 atomic_set(&tgt->tgt_global_resets_count, 0);
6414
Saurav Kashyap0e8cd712014-01-14 20:40:38 -08006415 base_vha->vha_tgt.qla_tgt = tgt;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006416
6417 ql_dbg(ql_dbg_tgt, base_vha, 0xe067,
6418 "qla_target(%d): using 64 Bit PCI addressing",
6419 base_vha->vp_idx);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006420 /* 3 is reserved */
6421 tgt->sg_tablesize = QLA_TGT_MAX_SG_24XX(base_vha->req->length - 3);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006422
6423 mutex_lock(&qla_tgt_mutex);
6424 list_add_tail(&tgt->tgt_list_entry, &qla_tgt_glist);
6425 mutex_unlock(&qla_tgt_mutex);
6426
Quinn Tranf1443ee2017-03-15 09:48:51 -07006427 if (ha->tgt.tgt_ops && ha->tgt.tgt_ops->add_target)
6428 ha->tgt.tgt_ops->add_target(base_vha);
6429
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006430 return 0;
6431}
6432
6433/* Must be called under tgt_host_action_mutex */
6434int qlt_remove_target(struct qla_hw_data *ha, struct scsi_qla_host *vha)
6435{
Saurav Kashyap0e8cd712014-01-14 20:40:38 -08006436 if (!vha->vha_tgt.qla_tgt)
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006437 return 0;
6438
Nicholas Bellingerddb95142014-02-19 17:51:25 -08006439 if (vha->fc_vport) {
6440 qlt_release(vha->vha_tgt.qla_tgt);
6441 return 0;
6442 }
Quinn Tran33e79972014-09-25 06:14:55 -04006443
6444 /* free left over qfull cmds */
6445 qlt_init_term_exchange(vha);
6446
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006447 ql_dbg(ql_dbg_tgt, vha, 0xe03c, "Unregistering target for host %ld(%p)",
6448 vha->host_no, ha);
Saurav Kashyap0e8cd712014-01-14 20:40:38 -08006449 qlt_release(vha->vha_tgt.qla_tgt);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006450
6451 return 0;
6452}
6453
Quinn Tran482c9dc2017-03-15 09:48:54 -07006454void qlt_remove_target_resources(struct qla_hw_data *ha)
6455{
6456 struct scsi_qla_host *node;
6457 u32 key = 0;
6458
6459 btree_for_each_safe32(&ha->tgt.host_map, key, node)
6460 btree_remove32(&ha->tgt.host_map, key);
6461
6462 btree_destroy32(&ha->tgt.host_map);
6463}
6464
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006465static void qlt_lport_dump(struct scsi_qla_host *vha, u64 wwpn,
6466 unsigned char *b)
6467{
Bart Van Assche09434912019-08-08 20:01:36 -07006468 pr_debug("qla2xxx HW vha->node_name: %8phC\n", vha->node_name);
6469 pr_debug("qla2xxx HW vha->port_name: %8phC\n", vha->port_name);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006470 put_unaligned_be64(wwpn, b);
Bart Van Assche09434912019-08-08 20:01:36 -07006471 pr_debug("qla2xxx passed configfs WWPN: %8phC\n", b);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006472}
6473
6474/**
6475 * qla_tgt_lport_register - register lport with external module
6476 *
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006477 * @target_lport_ptr: pointer for tcm_qla2xxx specific lport data
Bart Van Assche807eb902018-10-18 15:45:41 -07006478 * @phys_wwpn: physical port WWPN
6479 * @npiv_wwpn: NPIV WWPN
6480 * @npiv_wwnn: NPIV WWNN
Bart Van Assche2db62282018-01-23 16:33:51 -08006481 * @callback: lport initialization callback for tcm_qla2xxx code
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006482 */
Nicholas Bellinger49a47f22014-01-14 20:38:58 -08006483int qlt_lport_register(void *target_lport_ptr, u64 phys_wwpn,
6484 u64 npiv_wwpn, u64 npiv_wwnn,
6485 int (*callback)(struct scsi_qla_host *, void *, u64, u64))
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006486{
6487 struct qla_tgt *tgt;
6488 struct scsi_qla_host *vha;
6489 struct qla_hw_data *ha;
6490 struct Scsi_Host *host;
6491 unsigned long flags;
6492 int rc;
6493 u8 b[WWN_SIZE];
6494
6495 mutex_lock(&qla_tgt_mutex);
6496 list_for_each_entry(tgt, &qla_tgt_glist, tgt_list_entry) {
6497 vha = tgt->vha;
6498 ha = vha->hw;
6499
6500 host = vha->host;
6501 if (!host)
6502 continue;
6503
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006504 if (!(host->hostt->supported_mode & MODE_TARGET))
6505 continue;
6506
Quinn Tran0645cb82018-09-11 10:18:18 -07006507 if (vha->qlini_mode == QLA2XXX_INI_MODE_ENABLED)
6508 continue;
6509
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006510 spin_lock_irqsave(&ha->hardware_lock, flags);
Nicholas Bellinger49a47f22014-01-14 20:38:58 -08006511 if ((!npiv_wwpn || !npiv_wwnn) && host->active_mode & MODE_TARGET) {
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006512 pr_debug("MODE_TARGET already active on qla2xxx(%d)\n",
6513 host->host_no);
6514 spin_unlock_irqrestore(&ha->hardware_lock, flags);
6515 continue;
6516 }
Nicholas Bellingerddb95142014-02-19 17:51:25 -08006517 if (tgt->tgt_stop) {
6518 pr_debug("MODE_TARGET in shutdown on qla2xxx(%d)\n",
6519 host->host_no);
6520 spin_unlock_irqrestore(&ha->hardware_lock, flags);
6521 continue;
6522 }
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006523 spin_unlock_irqrestore(&ha->hardware_lock, flags);
6524
6525 if (!scsi_host_get(host)) {
6526 ql_dbg(ql_dbg_tgt, vha, 0xe068,
6527 "Unable to scsi_host_get() for"
6528 " qla2xxx scsi_host\n");
6529 continue;
6530 }
Nicholas Bellinger49a47f22014-01-14 20:38:58 -08006531 qlt_lport_dump(vha, phys_wwpn, b);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006532
6533 if (memcmp(vha->port_name, b, WWN_SIZE)) {
6534 scsi_host_put(host);
6535 continue;
6536 }
Nicholas Bellinger49a47f22014-01-14 20:38:58 -08006537 rc = (*callback)(vha, target_lport_ptr, npiv_wwpn, npiv_wwnn);
6538 if (rc != 0)
6539 scsi_host_put(host);
6540
Nicholas Bellingerddb95142014-02-19 17:51:25 -08006541 mutex_unlock(&qla_tgt_mutex);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006542 return rc;
6543 }
6544 mutex_unlock(&qla_tgt_mutex);
6545
6546 return -ENODEV;
6547}
6548EXPORT_SYMBOL(qlt_lport_register);
6549
6550/**
6551 * qla_tgt_lport_deregister - Degister lport
6552 *
6553 * @vha: Registered scsi_qla_host pointer
6554 */
6555void qlt_lport_deregister(struct scsi_qla_host *vha)
6556{
6557 struct qla_hw_data *ha = vha->hw;
6558 struct Scsi_Host *sh = vha->host;
6559 /*
6560 * Clear the target_lport_ptr qla_target_template pointer in qla_hw_data
6561 */
Saurav Kashyap0e8cd712014-01-14 20:40:38 -08006562 vha->vha_tgt.target_lport_ptr = NULL;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006563 ha->tgt.tgt_ops = NULL;
6564 /*
6565 * Release the Scsi_Host reference for the underlying qla2xxx host
6566 */
6567 scsi_host_put(sh);
6568}
6569EXPORT_SYMBOL(qlt_lport_deregister);
6570
6571/* Must be called under HW lock */
Quinn Tran0645cb82018-09-11 10:18:18 -07006572void qlt_set_mode(struct scsi_qla_host *vha)
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006573{
Quinn Tran0645cb82018-09-11 10:18:18 -07006574 switch (vha->qlini_mode) {
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006575 case QLA2XXX_INI_MODE_DISABLED:
6576 case QLA2XXX_INI_MODE_EXCLUSIVE:
6577 vha->host->active_mode = MODE_TARGET;
6578 break;
6579 case QLA2XXX_INI_MODE_ENABLED:
Quinn Tran0645cb82018-09-11 10:18:18 -07006580 vha->host->active_mode = MODE_INITIATOR;
Quinn Tranead03852017-01-19 22:28:01 -08006581 break;
6582 case QLA2XXX_INI_MODE_DUAL:
6583 vha->host->active_mode = MODE_DUAL;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006584 break;
6585 default:
6586 break;
6587 }
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006588}
6589
6590/* Must be called under HW lock */
Joern Engel55a90662014-09-16 16:23:15 -04006591static void qlt_clear_mode(struct scsi_qla_host *vha)
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006592{
Quinn Tran0645cb82018-09-11 10:18:18 -07006593 switch (vha->qlini_mode) {
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006594 case QLA2XXX_INI_MODE_DISABLED:
6595 vha->host->active_mode = MODE_UNKNOWN;
6596 break;
6597 case QLA2XXX_INI_MODE_EXCLUSIVE:
6598 vha->host->active_mode = MODE_INITIATOR;
6599 break;
6600 case QLA2XXX_INI_MODE_ENABLED:
Quinn Tranead03852017-01-19 22:28:01 -08006601 case QLA2XXX_INI_MODE_DUAL:
6602 vha->host->active_mode = MODE_INITIATOR;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006603 break;
6604 default:
6605 break;
6606 }
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006607}
6608
6609/*
6610 * qla_tgt_enable_vha - NO LOCK HELD
6611 *
6612 * host_reset, bring up w/ Target Mode Enabled
6613 */
6614void
6615qlt_enable_vha(struct scsi_qla_host *vha)
6616{
6617 struct qla_hw_data *ha = vha->hw;
Saurav Kashyap0e8cd712014-01-14 20:40:38 -08006618 struct qla_tgt *tgt = vha->vha_tgt.qla_tgt;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006619 unsigned long flags;
Saurav Kashyap0e8cd712014-01-14 20:40:38 -08006620 scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006621
6622 if (!tgt) {
6623 ql_dbg(ql_dbg_tgt, vha, 0xe069,
6624 "Unable to locate qla_tgt pointer from"
6625 " struct qla_hw_data\n");
6626 dump_stack();
6627 return;
6628 }
Quinn Tran0645cb82018-09-11 10:18:18 -07006629 if (vha->qlini_mode == QLA2XXX_INI_MODE_ENABLED)
6630 return;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006631
Quinn Tran178235f2019-07-26 09:07:29 -07006632 if (ha->tgt.num_act_qpairs > ha->max_qpairs)
6633 ha->tgt.num_act_qpairs = ha->max_qpairs;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006634 spin_lock_irqsave(&ha->hardware_lock, flags);
6635 tgt->tgt_stopped = 0;
6636 qlt_set_mode(vha);
6637 spin_unlock_irqrestore(&ha->hardware_lock, flags);
6638
Quinn Tranb6faaaf2018-09-04 14:19:09 -07006639 mutex_lock(&ha->optrom_mutex);
6640 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf021,
6641 "%s.\n", __func__);
Saurav Kashyap0e8cd712014-01-14 20:40:38 -08006642 if (vha->vp_idx) {
6643 qla24xx_disable_vp(vha);
6644 qla24xx_enable_vp(vha);
6645 } else {
6646 set_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags);
6647 qla2xxx_wake_dpc(base_vha);
Bart Van Asschee6803ef2019-08-08 20:01:52 -07006648 WARN_ON_ONCE(qla2x00_wait_for_hba_online(base_vha) !=
6649 QLA_SUCCESS);
Saurav Kashyap0e8cd712014-01-14 20:40:38 -08006650 }
Quinn Tranb6faaaf2018-09-04 14:19:09 -07006651 mutex_unlock(&ha->optrom_mutex);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006652}
6653EXPORT_SYMBOL(qlt_enable_vha);
6654
6655/*
6656 * qla_tgt_disable_vha - NO LOCK HELD
6657 *
6658 * Disable Target Mode and reset the adapter
6659 */
Joern Engel55a90662014-09-16 16:23:15 -04006660static void qlt_disable_vha(struct scsi_qla_host *vha)
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006661{
6662 struct qla_hw_data *ha = vha->hw;
Saurav Kashyap0e8cd712014-01-14 20:40:38 -08006663 struct qla_tgt *tgt = vha->vha_tgt.qla_tgt;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006664 unsigned long flags;
6665
6666 if (!tgt) {
6667 ql_dbg(ql_dbg_tgt, vha, 0xe06a,
6668 "Unable to locate qla_tgt pointer from"
6669 " struct qla_hw_data\n");
6670 dump_stack();
6671 return;
6672 }
6673
6674 spin_lock_irqsave(&ha->hardware_lock, flags);
6675 qlt_clear_mode(vha);
6676 spin_unlock_irqrestore(&ha->hardware_lock, flags);
6677
6678 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
6679 qla2xxx_wake_dpc(vha);
Bart Van Asschee6803ef2019-08-08 20:01:52 -07006680 if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS)
6681 ql_dbg(ql_dbg_tgt, vha, 0xe081,
6682 "qla2x00_wait_for_hba_online() failed\n");
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006683}
6684
6685/*
6686 * Called from qla_init.c:qla24xx_vport_create() contex to setup
6687 * the target mode specific struct scsi_qla_host and struct qla_hw_data
6688 * members.
6689 */
6690void
6691qlt_vport_create(struct scsi_qla_host *vha, struct qla_hw_data *ha)
6692{
Saurav Kashyap0e8cd712014-01-14 20:40:38 -08006693 vha->vha_tgt.qla_tgt = NULL;
6694
6695 mutex_init(&vha->vha_tgt.tgt_mutex);
6696 mutex_init(&vha->vha_tgt.tgt_host_action_mutex);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006697
6698 qlt_clear_mode(vha);
6699
6700 /*
6701 * NOTE: Currently the value is kept the same for <24xx and
6702 * >=24xx ISPs. If it is necessary to change it,
6703 * the check should be added for specific ISPs,
6704 * assigning the value appropriately.
6705 */
6706 ha->tgt.atio_q_length = ATIO_ENTRY_CNT_24XX;
Saurav Kashyap0e8cd712014-01-14 20:40:38 -08006707
6708 qlt_add_target(ha, vha);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006709}
6710
Quinn Trane374f9f2017-12-28 12:33:31 -08006711u8
6712qlt_rff_id(struct scsi_qla_host *vha)
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006713{
Quinn Trane374f9f2017-12-28 12:33:31 -08006714 u8 fc4_feature = 0;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006715 /*
6716 * FC-4 Feature bit 0 indicates target functionality to the name server.
6717 */
6718 if (qla_tgt_mode_enabled(vha)) {
Quinn Trane374f9f2017-12-28 12:33:31 -08006719 fc4_feature = BIT_0;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006720 } else if (qla_ini_mode_enabled(vha)) {
Quinn Trane374f9f2017-12-28 12:33:31 -08006721 fc4_feature = BIT_1;
Quinn Tran726b8542017-01-19 22:28:00 -08006722 } else if (qla_dual_mode_enabled(vha))
Quinn Trane374f9f2017-12-28 12:33:31 -08006723 fc4_feature = BIT_0 | BIT_1;
6724
6725 return fc4_feature;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006726}
6727
6728/*
6729 * qlt_init_atio_q_entries() - Initializes ATIO queue entries.
6730 * @ha: HA context
6731 *
6732 * Beginning of ATIO ring has initialization control block already built
6733 * by nvram config routine.
6734 *
6735 * Returns 0 on success.
6736 */
6737void
6738qlt_init_atio_q_entries(struct scsi_qla_host *vha)
6739{
6740 struct qla_hw_data *ha = vha->hw;
6741 uint16_t cnt;
6742 struct atio_from_isp *pkt = (struct atio_from_isp *)ha->tgt.atio_ring;
6743
Quinn Tranead03852017-01-19 22:28:01 -08006744 if (qla_ini_mode_enabled(vha))
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006745 return;
6746
6747 for (cnt = 0; cnt < ha->tgt.atio_q_length; cnt++) {
6748 pkt->u.raw.signature = ATIO_PROCESSED;
6749 pkt++;
6750 }
6751
6752}
6753
6754/*
6755 * qlt_24xx_process_atio_queue() - Process ATIO queue entries.
6756 * @ha: SCSI driver HA context
6757 */
6758void
Quinn Tran2f424b92015-12-17 14:57:07 -05006759qlt_24xx_process_atio_queue(struct scsi_qla_host *vha, uint8_t ha_locked)
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006760{
6761 struct qla_hw_data *ha = vha->hw;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006762 struct atio_from_isp *pkt;
6763 int cnt, i;
6764
Quinn Tranec7193e2017-03-15 09:48:55 -07006765 if (!ha->flags.fw_started)
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006766 return;
6767
Quinn Tran5f355092016-12-23 18:06:11 -08006768 while ((ha->tgt.atio_ring_ptr->signature != ATIO_PROCESSED) ||
6769 fcpcmd_is_corrupted(ha->tgt.atio_ring_ptr)) {
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006770 pkt = (struct atio_from_isp *)ha->tgt.atio_ring_ptr;
6771 cnt = pkt->u.raw.entry_count;
6772
Quinn Tran5f355092016-12-23 18:06:11 -08006773 if (unlikely(fcpcmd_is_corrupted(ha->tgt.atio_ring_ptr))) {
6774 /*
6775 * This packet is corrupted. The header + payload
6776 * can not be trusted. There is no point in passing
6777 * it further up.
6778 */
Quinn Tran83548fe2017-06-02 09:12:01 -07006779 ql_log(ql_log_warn, vha, 0xd03c,
Quinn Tran5f355092016-12-23 18:06:11 -08006780 "corrupted fcp frame SID[%3phN] OXID[%04x] EXCG[%x] %64phN\n",
Bart Van Asschedf95f392019-08-08 20:01:58 -07006781 &pkt->u.isp24.fcp_hdr.s_id,
Quinn Tran5f355092016-12-23 18:06:11 -08006782 be16_to_cpu(pkt->u.isp24.fcp_hdr.ox_id),
6783 le32_to_cpu(pkt->u.isp24.exchange_addr), pkt);
6784
6785 adjust_corrupted_atio(pkt);
Quinn Tran82de8022017-06-13 20:47:17 -07006786 qlt_send_term_exchange(ha->base_qpair, NULL, pkt,
6787 ha_locked, 0);
Quinn Tran5f355092016-12-23 18:06:11 -08006788 } else {
6789 qlt_24xx_atio_pkt_all_vps(vha,
6790 (struct atio_from_isp *)pkt, ha_locked);
6791 }
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006792
6793 for (i = 0; i < cnt; i++) {
6794 ha->tgt.atio_ring_index++;
6795 if (ha->tgt.atio_ring_index == ha->tgt.atio_q_length) {
6796 ha->tgt.atio_ring_index = 0;
6797 ha->tgt.atio_ring_ptr = ha->tgt.atio_ring;
6798 } else
6799 ha->tgt.atio_ring_ptr++;
6800
6801 pkt->u.raw.signature = ATIO_PROCESSED;
6802 pkt = (struct atio_from_isp *)ha->tgt.atio_ring_ptr;
6803 }
6804 wmb();
6805 }
6806
6807 /* Adjust ring index */
Arun Easiaa230bc2013-01-30 03:34:39 -05006808 WRT_REG_DWORD(ISP_ATIO_Q_OUT(vha), ha->tgt.atio_ring_index);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006809}
6810
6811void
Arun Easiaa230bc2013-01-30 03:34:39 -05006812qlt_24xx_config_rings(struct scsi_qla_host *vha)
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006813{
6814 struct qla_hw_data *ha = vha->hw;
Quinn Trand2b292c2017-12-28 12:33:17 -08006815 struct qla_msix_entry *msix = &ha->msix_entries[2];
6816 struct init_cb_24xx *icb = (struct init_cb_24xx *)ha->init_cb;
6817
Arun Easiaa230bc2013-01-30 03:34:39 -05006818 if (!QLA_TGT_MODE_ENABLED())
6819 return;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006820
Arun Easiaa230bc2013-01-30 03:34:39 -05006821 WRT_REG_DWORD(ISP_ATIO_Q_IN(vha), 0);
6822 WRT_REG_DWORD(ISP_ATIO_Q_OUT(vha), 0);
6823 RD_REG_DWORD(ISP_ATIO_Q_OUT(vha));
6824
Quinn Trand2b292c2017-12-28 12:33:17 -08006825 if (ha->flags.msix_enabled) {
Joe Carnuccioecc89f22019-03-12 11:08:13 -07006826 if (IS_QLA83XX(ha) || IS_QLA27XX(ha) || IS_QLA28XX(ha)) {
Quinn Trand2b292c2017-12-28 12:33:17 -08006827 if (IS_QLA2071(ha)) {
6828 /* 4 ports Baker: Enable Interrupt Handshake */
6829 icb->msix_atio = 0;
6830 icb->firmware_options_2 |= BIT_26;
6831 } else {
6832 icb->msix_atio = cpu_to_le16(msix->entry);
6833 icb->firmware_options_2 &= ~BIT_26;
6834 }
6835 ql_dbg(ql_dbg_init, vha, 0xf072,
6836 "Registering ICB vector 0x%x for atio que.\n",
6837 msix->entry);
6838 }
6839 } else {
6840 /* INTx|MSI */
Joe Carnuccioecc89f22019-03-12 11:08:13 -07006841 if (IS_QLA83XX(ha) || IS_QLA27XX(ha) || IS_QLA28XX(ha)) {
Quinn Trand2b292c2017-12-28 12:33:17 -08006842 icb->msix_atio = 0;
6843 icb->firmware_options_2 |= BIT_26;
6844 ql_dbg(ql_dbg_init, vha, 0xf072,
6845 "%s: Use INTx for ATIOQ.\n", __func__);
6846 }
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006847 }
6848}
6849
6850void
6851qlt_24xx_config_nvram_stage1(struct scsi_qla_host *vha, struct nvram_24xx *nv)
6852{
6853 struct qla_hw_data *ha = vha->hw;
Quinn Tran9cd883f2017-12-28 12:33:24 -08006854 u32 tmp;
Quinn Tran99e1b682017-06-02 09:12:03 -07006855
6856 if (!QLA_TGT_MODE_ENABLED())
6857 return;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006858
Quinn Tranead03852017-01-19 22:28:01 -08006859 if (qla_tgt_mode_enabled(vha) || qla_dual_mode_enabled(vha)) {
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006860 if (!ha->tgt.saved_set) {
6861 /* We save only once */
6862 ha->tgt.saved_exchange_count = nv->exchange_count;
6863 ha->tgt.saved_firmware_options_1 =
6864 nv->firmware_options_1;
6865 ha->tgt.saved_firmware_options_2 =
6866 nv->firmware_options_2;
6867 ha->tgt.saved_firmware_options_3 =
6868 nv->firmware_options_3;
6869 ha->tgt.saved_set = 1;
6870 }
6871
Quinn Tran99e1b682017-06-02 09:12:03 -07006872 if (qla_tgt_mode_enabled(vha))
Quinn Tranead03852017-01-19 22:28:01 -08006873 nv->exchange_count = cpu_to_le16(0xFFFF);
Quinn Tran99e1b682017-06-02 09:12:03 -07006874 else /* dual */
Quinn Tran0645cb82018-09-11 10:18:18 -07006875 nv->exchange_count = cpu_to_le16(vha->ql2xexchoffld);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006876
6877 /* Enable target mode */
Bart Van Asschead950362015-07-09 07:24:08 -07006878 nv->firmware_options_1 |= cpu_to_le32(BIT_4);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006879
6880 /* Disable ini mode, if requested */
Quinn Tran726b8542017-01-19 22:28:00 -08006881 if (qla_tgt_mode_enabled(vha))
Bart Van Asschead950362015-07-09 07:24:08 -07006882 nv->firmware_options_1 |= cpu_to_le32(BIT_5);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006883
6884 /* Disable Full Login after LIP */
Bart Van Asschead950362015-07-09 07:24:08 -07006885 nv->firmware_options_1 &= cpu_to_le32(~BIT_13);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006886 /* Enable initial LIP */
Bart Van Asschead950362015-07-09 07:24:08 -07006887 nv->firmware_options_1 &= cpu_to_le32(~BIT_9);
Arun Easid154f352014-09-25 06:14:48 -04006888 if (ql2xtgt_tape_enable)
6889 /* Enable FC Tape support */
6890 nv->firmware_options_2 |= cpu_to_le32(BIT_12);
6891 else
6892 /* Disable FC Tape support */
6893 nv->firmware_options_2 &= cpu_to_le32(~BIT_12);
6894
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006895 /* Disable Full Login after LIP */
Bart Van Asschead950362015-07-09 07:24:08 -07006896 nv->host_p &= cpu_to_le32(~BIT_10);
Himanshu Madhanic0f64622016-12-23 18:06:08 -08006897
6898 /*
6899 * clear BIT 15 explicitly as we have seen at least
6900 * a couple of instances where this was set and this
6901 * was causing the firmware to not be initialized.
6902 */
6903 nv->firmware_options_1 &= cpu_to_le32(~BIT_15);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006904 /* Enable target PRLI control */
Bart Van Asschead950362015-07-09 07:24:08 -07006905 nv->firmware_options_2 |= cpu_to_le32(BIT_14);
Quinn Tran9cd883f2017-12-28 12:33:24 -08006906
6907 if (IS_QLA25XX(ha)) {
6908 /* Change Loop-prefer to Pt-Pt */
6909 tmp = ~(BIT_4|BIT_5|BIT_6);
6910 nv->firmware_options_2 &= cpu_to_le32(tmp);
6911 tmp = P2P << 4;
6912 nv->firmware_options_2 |= cpu_to_le32(tmp);
6913 }
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006914 } else {
6915 if (ha->tgt.saved_set) {
6916 nv->exchange_count = ha->tgt.saved_exchange_count;
6917 nv->firmware_options_1 =
6918 ha->tgt.saved_firmware_options_1;
6919 nv->firmware_options_2 =
6920 ha->tgt.saved_firmware_options_2;
6921 nv->firmware_options_3 =
6922 ha->tgt.saved_firmware_options_3;
6923 }
6924 return;
6925 }
6926
Quinn Tran7c3f8fd2017-06-13 20:47:22 -07006927 if (ha->base_qpair->enable_class_2) {
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006928 if (vha->flags.init_done)
6929 fc_host_supported_classes(vha->host) =
6930 FC_COS_CLASS2 | FC_COS_CLASS3;
6931
Bart Van Asschead950362015-07-09 07:24:08 -07006932 nv->firmware_options_2 |= cpu_to_le32(BIT_8);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006933 } else {
6934 if (vha->flags.init_done)
6935 fc_host_supported_classes(vha->host) = FC_COS_CLASS3;
6936
Bart Van Asschead950362015-07-09 07:24:08 -07006937 nv->firmware_options_2 &= ~cpu_to_le32(BIT_8);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006938 }
6939}
6940
6941void
6942qlt_24xx_config_nvram_stage2(struct scsi_qla_host *vha,
6943 struct init_cb_24xx *icb)
6944{
6945 struct qla_hw_data *ha = vha->hw;
6946
Quinn Tran481ce732015-12-17 14:57:08 -05006947 if (!QLA_TGT_MODE_ENABLED())
6948 return;
6949
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006950 if (ha->tgt.node_name_set) {
6951 memcpy(icb->node_name, ha->tgt.tgt_node_name, WWN_SIZE);
Bart Van Asschead950362015-07-09 07:24:08 -07006952 icb->firmware_options_1 |= cpu_to_le32(BIT_14);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04006953 }
6954}
6955
Arun Easiaa230bc2013-01-30 03:34:39 -05006956void
6957qlt_81xx_config_nvram_stage1(struct scsi_qla_host *vha, struct nvram_81xx *nv)
6958{
6959 struct qla_hw_data *ha = vha->hw;
Quinn Tran9cd883f2017-12-28 12:33:24 -08006960 u32 tmp;
Arun Easiaa230bc2013-01-30 03:34:39 -05006961
6962 if (!QLA_TGT_MODE_ENABLED())
6963 return;
6964
Quinn Tranead03852017-01-19 22:28:01 -08006965 if (qla_tgt_mode_enabled(vha) || qla_dual_mode_enabled(vha)) {
Arun Easiaa230bc2013-01-30 03:34:39 -05006966 if (!ha->tgt.saved_set) {
6967 /* We save only once */
6968 ha->tgt.saved_exchange_count = nv->exchange_count;
6969 ha->tgt.saved_firmware_options_1 =
6970 nv->firmware_options_1;
6971 ha->tgt.saved_firmware_options_2 =
6972 nv->firmware_options_2;
6973 ha->tgt.saved_firmware_options_3 =
6974 nv->firmware_options_3;
6975 ha->tgt.saved_set = 1;
6976 }
6977
Quinn Tran99e1b682017-06-02 09:12:03 -07006978 if (qla_tgt_mode_enabled(vha))
Quinn Tranead03852017-01-19 22:28:01 -08006979 nv->exchange_count = cpu_to_le16(0xFFFF);
Quinn Tran99e1b682017-06-02 09:12:03 -07006980 else /* dual */
Quinn Tran0645cb82018-09-11 10:18:18 -07006981 nv->exchange_count = cpu_to_le16(vha->ql2xexchoffld);
Arun Easiaa230bc2013-01-30 03:34:39 -05006982
6983 /* Enable target mode */
Bart Van Asschead950362015-07-09 07:24:08 -07006984 nv->firmware_options_1 |= cpu_to_le32(BIT_4);
Arun Easiaa230bc2013-01-30 03:34:39 -05006985
6986 /* Disable ini mode, if requested */
Quinn Tran726b8542017-01-19 22:28:00 -08006987 if (qla_tgt_mode_enabled(vha))
Bart Van Asschead950362015-07-09 07:24:08 -07006988 nv->firmware_options_1 |= cpu_to_le32(BIT_5);
Arun Easiaa230bc2013-01-30 03:34:39 -05006989 /* Disable Full Login after LIP */
Bart Van Asschead950362015-07-09 07:24:08 -07006990 nv->firmware_options_1 &= cpu_to_le32(~BIT_13);
Arun Easiaa230bc2013-01-30 03:34:39 -05006991 /* Enable initial LIP */
Bart Van Asschead950362015-07-09 07:24:08 -07006992 nv->firmware_options_1 &= cpu_to_le32(~BIT_9);
Himanshu Madhanic0f64622016-12-23 18:06:08 -08006993 /*
6994 * clear BIT 15 explicitly as we have seen at
6995 * least a couple of instances where this was set
6996 * and this was causing the firmware to not be
6997 * initialized.
6998 */
6999 nv->firmware_options_1 &= cpu_to_le32(~BIT_15);
Arun Easid154f352014-09-25 06:14:48 -04007000 if (ql2xtgt_tape_enable)
7001 /* Enable FC tape support */
7002 nv->firmware_options_2 |= cpu_to_le32(BIT_12);
7003 else
7004 /* Disable FC tape support */
7005 nv->firmware_options_2 &= cpu_to_le32(~BIT_12);
7006
Arun Easiaa230bc2013-01-30 03:34:39 -05007007 /* Disable Full Login after LIP */
Bart Van Asschead950362015-07-09 07:24:08 -07007008 nv->host_p &= cpu_to_le32(~BIT_10);
Arun Easiaa230bc2013-01-30 03:34:39 -05007009 /* Enable target PRLI control */
Bart Van Asschead950362015-07-09 07:24:08 -07007010 nv->firmware_options_2 |= cpu_to_le32(BIT_14);
Quinn Tran9cd883f2017-12-28 12:33:24 -08007011
7012 /* Change Loop-prefer to Pt-Pt */
7013 tmp = ~(BIT_4|BIT_5|BIT_6);
7014 nv->firmware_options_2 &= cpu_to_le32(tmp);
7015 tmp = P2P << 4;
7016 nv->firmware_options_2 |= cpu_to_le32(tmp);
Arun Easiaa230bc2013-01-30 03:34:39 -05007017 } else {
7018 if (ha->tgt.saved_set) {
7019 nv->exchange_count = ha->tgt.saved_exchange_count;
7020 nv->firmware_options_1 =
7021 ha->tgt.saved_firmware_options_1;
7022 nv->firmware_options_2 =
7023 ha->tgt.saved_firmware_options_2;
7024 nv->firmware_options_3 =
7025 ha->tgt.saved_firmware_options_3;
7026 }
7027 return;
7028 }
7029
Quinn Tran7c3f8fd2017-06-13 20:47:22 -07007030 if (ha->base_qpair->enable_class_2) {
Arun Easiaa230bc2013-01-30 03:34:39 -05007031 if (vha->flags.init_done)
7032 fc_host_supported_classes(vha->host) =
7033 FC_COS_CLASS2 | FC_COS_CLASS3;
7034
Bart Van Asschead950362015-07-09 07:24:08 -07007035 nv->firmware_options_2 |= cpu_to_le32(BIT_8);
Arun Easiaa230bc2013-01-30 03:34:39 -05007036 } else {
7037 if (vha->flags.init_done)
7038 fc_host_supported_classes(vha->host) = FC_COS_CLASS3;
7039
Bart Van Asschead950362015-07-09 07:24:08 -07007040 nv->firmware_options_2 &= ~cpu_to_le32(BIT_8);
Arun Easiaa230bc2013-01-30 03:34:39 -05007041 }
7042}
7043
7044void
7045qlt_81xx_config_nvram_stage2(struct scsi_qla_host *vha,
7046 struct init_cb_81xx *icb)
7047{
7048 struct qla_hw_data *ha = vha->hw;
7049
7050 if (!QLA_TGT_MODE_ENABLED())
7051 return;
7052
7053 if (ha->tgt.node_name_set) {
7054 memcpy(icb->node_name, ha->tgt.tgt_node_name, WWN_SIZE);
Bart Van Asschead950362015-07-09 07:24:08 -07007055 icb->firmware_options_1 |= cpu_to_le32(BIT_14);
Arun Easiaa230bc2013-01-30 03:34:39 -05007056 }
7057}
7058
7059void
7060qlt_83xx_iospace_config(struct qla_hw_data *ha)
7061{
7062 if (!QLA_TGT_MODE_ENABLED())
7063 return;
7064
7065 ha->msix_count += 1; /* For ATIO Q */
7066}
7067
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04007068
7069void
7070qlt_modify_vp_config(struct scsi_qla_host *vha,
7071 struct vp_config_entry_24xx *vpmod)
7072{
Quinn Tranead03852017-01-19 22:28:01 -08007073 /* enable target mode. Bit5 = 1 => disable */
7074 if (qla_tgt_mode_enabled(vha) || qla_dual_mode_enabled(vha))
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04007075 vpmod->options_idx1 &= ~BIT_5;
Quinn Tran726b8542017-01-19 22:28:00 -08007076
Quinn Tranead03852017-01-19 22:28:01 -08007077 /* Disable ini mode, if requested. bit4 = 1 => disable */
Quinn Tran726b8542017-01-19 22:28:00 -08007078 if (qla_tgt_mode_enabled(vha))
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04007079 vpmod->options_idx1 &= ~BIT_4;
7080}
7081
7082void
7083qlt_probe_one_stage1(struct scsi_qla_host *base_vha, struct qla_hw_data *ha)
7084{
Quinn Tran482c9dc2017-03-15 09:48:54 -07007085 int rc;
7086
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04007087 if (!QLA_TGT_MODE_ENABLED())
7088 return;
7089
Joe Carnuccioecc89f22019-03-12 11:08:13 -07007090 if ((ql2xenablemsix == 0) || IS_QLA83XX(ha) || IS_QLA27XX(ha) ||
7091 IS_QLA28XX(ha)) {
Arun Easiaa230bc2013-01-30 03:34:39 -05007092 ISP_ATIO_Q_IN(base_vha) = &ha->mqiobase->isp25mq.atio_q_in;
7093 ISP_ATIO_Q_OUT(base_vha) = &ha->mqiobase->isp25mq.atio_q_out;
7094 } else {
7095 ISP_ATIO_Q_IN(base_vha) = &ha->iobase->isp24.atio_q_in;
7096 ISP_ATIO_Q_OUT(base_vha) = &ha->iobase->isp24.atio_q_out;
7097 }
7098
Saurav Kashyap0e8cd712014-01-14 20:40:38 -08007099 mutex_init(&base_vha->vha_tgt.tgt_mutex);
7100 mutex_init(&base_vha->vha_tgt.tgt_host_action_mutex);
Quinn Tran41dc5292017-01-19 22:28:03 -08007101
7102 INIT_LIST_HEAD(&base_vha->unknown_atio_list);
7103 INIT_DELAYED_WORK(&base_vha->unknown_atio_work,
7104 qlt_unknown_atio_work_fn);
7105
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04007106 qlt_clear_mode(base_vha);
Quinn Tran482c9dc2017-03-15 09:48:54 -07007107
7108 rc = btree_init32(&ha->tgt.host_map);
7109 if (rc)
Quinn Tran83548fe2017-06-02 09:12:01 -07007110 ql_log(ql_log_info, base_vha, 0xd03d,
Quinn Tran482c9dc2017-03-15 09:48:54 -07007111 "Unable to initialize ha->host_map btree\n");
7112
7113 qlt_update_vp_map(base_vha, SET_VP_IDX);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04007114}
7115
Arun Easiaa230bc2013-01-30 03:34:39 -05007116irqreturn_t
7117qla83xx_msix_atio_q(int irq, void *dev_id)
7118{
7119 struct rsp_que *rsp;
7120 scsi_qla_host_t *vha;
7121 struct qla_hw_data *ha;
7122 unsigned long flags;
7123
7124 rsp = (struct rsp_que *) dev_id;
7125 ha = rsp->hw;
7126 vha = pci_get_drvdata(ha->pdev);
7127
Quinn Tran2f424b92015-12-17 14:57:07 -05007128 spin_lock_irqsave(&ha->tgt.atio_lock, flags);
Arun Easiaa230bc2013-01-30 03:34:39 -05007129
Quinn Tran2f424b92015-12-17 14:57:07 -05007130 qlt_24xx_process_atio_queue(vha, 0);
Arun Easiaa230bc2013-01-30 03:34:39 -05007131
Quinn Tran2f424b92015-12-17 14:57:07 -05007132 spin_unlock_irqrestore(&ha->tgt.atio_lock, flags);
Arun Easiaa230bc2013-01-30 03:34:39 -05007133
7134 return IRQ_HANDLED;
7135}
7136
Quinn Tran2f424b92015-12-17 14:57:07 -05007137static void
7138qlt_handle_abts_recv_work(struct work_struct *work)
7139{
7140 struct qla_tgt_sess_op *op = container_of(work,
7141 struct qla_tgt_sess_op, work);
7142 scsi_qla_host_t *vha = op->vha;
7143 struct qla_hw_data *ha = vha->hw;
7144 unsigned long flags;
7145
Quinn Tran7c3f8fd2017-06-13 20:47:22 -07007146 if (qla2x00_reset_active(vha) ||
7147 (op->chip_reset != ha->base_qpair->chip_reset))
Quinn Tran2f424b92015-12-17 14:57:07 -05007148 return;
7149
7150 spin_lock_irqsave(&ha->tgt.atio_lock, flags);
7151 qlt_24xx_process_atio_queue(vha, 0);
7152 spin_unlock_irqrestore(&ha->tgt.atio_lock, flags);
7153
7154 spin_lock_irqsave(&ha->hardware_lock, flags);
Quinn Tran82de8022017-06-13 20:47:17 -07007155 qlt_response_pkt_all_vps(vha, op->rsp, (response_t *)&op->atio);
Quinn Tran2f424b92015-12-17 14:57:07 -05007156 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Quinn Tranae940f22017-03-15 09:48:44 -07007157
7158 kfree(op);
Quinn Tran2f424b92015-12-17 14:57:07 -05007159}
7160
7161void
Quinn Tran82de8022017-06-13 20:47:17 -07007162qlt_handle_abts_recv(struct scsi_qla_host *vha, struct rsp_que *rsp,
7163 response_t *pkt)
Quinn Tran2f424b92015-12-17 14:57:07 -05007164{
7165 struct qla_tgt_sess_op *op;
7166
7167 op = kzalloc(sizeof(*op), GFP_ATOMIC);
7168
7169 if (!op) {
7170 /* do not reach for ATIO queue here. This is best effort err
7171 * recovery at this point.
7172 */
Quinn Tran82de8022017-06-13 20:47:17 -07007173 qlt_response_pkt_all_vps(vha, rsp, pkt);
Quinn Tran2f424b92015-12-17 14:57:07 -05007174 return;
7175 }
7176
7177 memcpy(&op->atio, pkt, sizeof(*pkt));
7178 op->vha = vha;
Quinn Tran7c3f8fd2017-06-13 20:47:22 -07007179 op->chip_reset = vha->hw->base_qpair->chip_reset;
Quinn Tran82de8022017-06-13 20:47:17 -07007180 op->rsp = rsp;
Quinn Tran2f424b92015-12-17 14:57:07 -05007181 INIT_WORK(&op->work, qlt_handle_abts_recv_work);
7182 queue_work(qla_tgt_wq, &op->work);
7183 return;
7184}
7185
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04007186int
7187qlt_mem_alloc(struct qla_hw_data *ha)
7188{
7189 if (!QLA_TGT_MODE_ENABLED())
7190 return 0;
7191
Kees Cook6396bb22018-06-12 14:03:40 -07007192 ha->tgt.tgt_vp_map = kcalloc(MAX_MULTI_ID_FABRIC,
7193 sizeof(struct qla_tgt_vp_map),
7194 GFP_KERNEL);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04007195 if (!ha->tgt.tgt_vp_map)
7196 return -ENOMEM;
7197
7198 ha->tgt.atio_ring = dma_alloc_coherent(&ha->pdev->dev,
7199 (ha->tgt.atio_q_length + 1) * sizeof(struct atio_from_isp),
7200 &ha->tgt.atio_dma, GFP_KERNEL);
7201 if (!ha->tgt.atio_ring) {
7202 kfree(ha->tgt.tgt_vp_map);
7203 return -ENOMEM;
7204 }
7205 return 0;
7206}
7207
7208void
7209qlt_mem_free(struct qla_hw_data *ha)
7210{
7211 if (!QLA_TGT_MODE_ENABLED())
7212 return;
7213
7214 if (ha->tgt.atio_ring) {
7215 dma_free_coherent(&ha->pdev->dev, (ha->tgt.atio_q_length + 1) *
7216 sizeof(struct atio_from_isp), ha->tgt.atio_ring,
7217 ha->tgt.atio_dma);
7218 }
Bart Van Assche5365bf92019-04-17 14:44:22 -07007219 ha->tgt.atio_ring = NULL;
7220 ha->tgt.atio_dma = 0;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04007221 kfree(ha->tgt.tgt_vp_map);
Bart Van Assche5365bf92019-04-17 14:44:22 -07007222 ha->tgt.tgt_vp_map = NULL;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04007223}
7224
7225/* vport_slock to be held by the caller */
7226void
7227qlt_update_vp_map(struct scsi_qla_host *vha, int cmd)
7228{
Quinn Tran482c9dc2017-03-15 09:48:54 -07007229 void *slot;
7230 u32 key;
7231 int rc;
7232
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04007233 if (!QLA_TGT_MODE_ENABLED())
7234 return;
7235
Quinn Tran482c9dc2017-03-15 09:48:54 -07007236 key = vha->d_id.b24;
7237
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04007238 switch (cmd) {
7239 case SET_VP_IDX:
7240 vha->hw->tgt.tgt_vp_map[vha->vp_idx].vha = vha;
7241 break;
7242 case SET_AL_PA:
Quinn Tran482c9dc2017-03-15 09:48:54 -07007243 slot = btree_lookup32(&vha->hw->tgt.host_map, key);
7244 if (!slot) {
Quinn Tran83548fe2017-06-02 09:12:01 -07007245 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf018,
Quinn Tran482c9dc2017-03-15 09:48:54 -07007246 "Save vha in host_map %p %06x\n", vha, key);
7247 rc = btree_insert32(&vha->hw->tgt.host_map,
7248 key, vha, GFP_ATOMIC);
7249 if (rc)
Quinn Tran83548fe2017-06-02 09:12:01 -07007250 ql_log(ql_log_info, vha, 0xd03e,
Quinn Tran482c9dc2017-03-15 09:48:54 -07007251 "Unable to insert s_id into host_map: %06x\n",
7252 key);
7253 return;
7254 }
Quinn Tran83548fe2017-06-02 09:12:01 -07007255 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf019,
7256 "replace existing vha in host_map %p %06x\n", vha, key);
Quinn Tran482c9dc2017-03-15 09:48:54 -07007257 btree_update32(&vha->hw->tgt.host_map, key, vha);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04007258 break;
7259 case RESET_VP_IDX:
7260 vha->hw->tgt.tgt_vp_map[vha->vp_idx].vha = NULL;
7261 break;
7262 case RESET_AL_PA:
Quinn Tran83548fe2017-06-02 09:12:01 -07007263 ql_dbg(ql_dbg_tgt_mgt, vha, 0xf01a,
Quinn Tran482c9dc2017-03-15 09:48:54 -07007264 "clear vha in host_map %p %06x\n", vha, key);
7265 slot = btree_lookup32(&vha->hw->tgt.host_map, key);
7266 if (slot)
7267 btree_remove32(&vha->hw->tgt.host_map, key);
7268 vha->d_id.b24 = 0;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04007269 break;
7270 }
7271}
7272
Quinn Tran482c9dc2017-03-15 09:48:54 -07007273void qlt_update_host_map(struct scsi_qla_host *vha, port_id_t id)
7274{
Quinn Tran482c9dc2017-03-15 09:48:54 -07007275
7276 if (!vha->d_id.b24) {
Quinn Tran482c9dc2017-03-15 09:48:54 -07007277 vha->d_id = id;
7278 qlt_update_vp_map(vha, SET_AL_PA);
Quinn Tran482c9dc2017-03-15 09:48:54 -07007279 } else if (vha->d_id.b24 != id.b24) {
Quinn Tran482c9dc2017-03-15 09:48:54 -07007280 qlt_update_vp_map(vha, RESET_AL_PA);
7281 vha->d_id = id;
7282 qlt_update_vp_map(vha, SET_AL_PA);
Quinn Tran482c9dc2017-03-15 09:48:54 -07007283 }
7284}
7285
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04007286static int __init qlt_parse_ini_mode(void)
7287{
7288 if (strcasecmp(qlini_mode, QLA2XXX_INI_MODE_STR_EXCLUSIVE) == 0)
7289 ql2x_ini_mode = QLA2XXX_INI_MODE_EXCLUSIVE;
7290 else if (strcasecmp(qlini_mode, QLA2XXX_INI_MODE_STR_DISABLED) == 0)
7291 ql2x_ini_mode = QLA2XXX_INI_MODE_DISABLED;
7292 else if (strcasecmp(qlini_mode, QLA2XXX_INI_MODE_STR_ENABLED) == 0)
7293 ql2x_ini_mode = QLA2XXX_INI_MODE_ENABLED;
Quinn Tranead03852017-01-19 22:28:01 -08007294 else if (strcasecmp(qlini_mode, QLA2XXX_INI_MODE_STR_DUAL) == 0)
7295 ql2x_ini_mode = QLA2XXX_INI_MODE_DUAL;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04007296 else
7297 return false;
7298
7299 return true;
7300}
7301
7302int __init qlt_init(void)
7303{
7304 int ret;
7305
Bart Van Asschebc044592019-04-17 14:44:37 -07007306 BUILD_BUG_ON(sizeof(struct ctio7_to_24xx) != 64);
7307 BUILD_BUG_ON(sizeof(struct ctio_to_2xxx) != 64);
7308
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04007309 if (!qlt_parse_ini_mode()) {
7310 ql_log(ql_log_fatal, NULL, 0xe06b,
7311 "qlt_parse_ini_mode() failed\n");
7312 return -EINVAL;
7313 }
7314
7315 if (!QLA_TGT_MODE_ENABLED())
7316 return 0;
7317
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04007318 qla_tgt_mgmt_cmd_cachep = kmem_cache_create("qla_tgt_mgmt_cmd_cachep",
7319 sizeof(struct qla_tgt_mgmt_cmd), __alignof__(struct
7320 qla_tgt_mgmt_cmd), 0, NULL);
7321 if (!qla_tgt_mgmt_cmd_cachep) {
Quinn Tran83548fe2017-06-02 09:12:01 -07007322 ql_log(ql_log_fatal, NULL, 0xd04b,
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04007323 "kmem_cache_create for qla_tgt_mgmt_cmd_cachep failed\n");
Nicholas Bellinger51a07f82014-05-23 02:00:56 -07007324 return -ENOMEM;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04007325 }
7326
Alexei Potashnikb7bd1042015-12-17 14:57:02 -05007327 qla_tgt_plogi_cachep = kmem_cache_create("qla_tgt_plogi_cachep",
Quinn Tran5d964832017-01-19 22:27:59 -08007328 sizeof(struct qlt_plogi_ack_t), __alignof__(struct qlt_plogi_ack_t),
7329 0, NULL);
Alexei Potashnikb7bd1042015-12-17 14:57:02 -05007330
7331 if (!qla_tgt_plogi_cachep) {
7332 ql_log(ql_log_fatal, NULL, 0xe06d,
7333 "kmem_cache_create for qla_tgt_plogi_cachep failed\n");
7334 ret = -ENOMEM;
7335 goto out_mgmt_cmd_cachep;
7336 }
7337
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04007338 qla_tgt_mgmt_cmd_mempool = mempool_create(25, mempool_alloc_slab,
7339 mempool_free_slab, qla_tgt_mgmt_cmd_cachep);
7340 if (!qla_tgt_mgmt_cmd_mempool) {
7341 ql_log(ql_log_fatal, NULL, 0xe06e,
7342 "mempool_create for qla_tgt_mgmt_cmd_mempool failed\n");
7343 ret = -ENOMEM;
Alexei Potashnikb7bd1042015-12-17 14:57:02 -05007344 goto out_plogi_cachep;
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04007345 }
7346
7347 qla_tgt_wq = alloc_workqueue("qla_tgt_wq", 0, 0);
7348 if (!qla_tgt_wq) {
7349 ql_log(ql_log_fatal, NULL, 0xe06f,
7350 "alloc_workqueue for qla_tgt_wq failed\n");
7351 ret = -ENOMEM;
7352 goto out_cmd_mempool;
7353 }
7354 /*
7355 * Return 1 to signal that initiator-mode is being disabled
7356 */
7357 return (ql2x_ini_mode == QLA2XXX_INI_MODE_DISABLED) ? 1 : 0;
7358
7359out_cmd_mempool:
7360 mempool_destroy(qla_tgt_mgmt_cmd_mempool);
Alexei Potashnikb7bd1042015-12-17 14:57:02 -05007361out_plogi_cachep:
7362 kmem_cache_destroy(qla_tgt_plogi_cachep);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04007363out_mgmt_cmd_cachep:
7364 kmem_cache_destroy(qla_tgt_mgmt_cmd_cachep);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04007365 return ret;
7366}
7367
7368void qlt_exit(void)
7369{
7370 if (!QLA_TGT_MODE_ENABLED())
7371 return;
7372
7373 destroy_workqueue(qla_tgt_wq);
7374 mempool_destroy(qla_tgt_mgmt_cmd_mempool);
Alexei Potashnikb7bd1042015-12-17 14:57:02 -05007375 kmem_cache_destroy(qla_tgt_plogi_cachep);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04007376 kmem_cache_destroy(qla_tgt_mgmt_cmd_cachep);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04007377}