blob: 735e2ba70198a310ad53104162dd9612997f46d5 [file] [log] [blame]
James Smartd613b6a2017-02-12 13:52:37 -08001/*******************************************************************
2 * This file is part of the Emulex Linux Device Driver for *
James Smartd080abe2017-02-12 13:52:39 -08003 * Fibre Channsel Host Bus Adapters. *
4 * Copyright (C) 2017 Broadcom. All Rights Reserved. The term *
5 * “Broadcom” refers to Broadcom Limited and/or its subsidiaries. *
James Smartd613b6a2017-02-12 13:52:37 -08006 * Copyright (C) 2004-2016 Emulex. All rights reserved. *
7 * EMULEX and SLI are trademarks of Emulex. *
James Smartd080abe2017-02-12 13:52:39 -08008 * www.broadcom.com *
James Smartd613b6a2017-02-12 13:52:37 -08009 * Portions Copyright (C) 2004-2005 Christoph Hellwig *
10 * *
11 * This program is free software; you can redistribute it and/or *
12 * modify it under the terms of version 2 of the GNU General *
13 * Public License as published by the Free Software Foundation. *
14 * This program is distributed in the hope that it will be useful. *
15 * ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND *
16 * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, *
17 * FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE *
18 * DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD *
19 * TO BE LEGALLY INVALID. See the GNU General Public License for *
20 * more details, a copy of which can be found in the file COPYING *
21 * included with this package. *
22 ********************************************************************/
23#include <linux/pci.h>
24#include <linux/slab.h>
25#include <linux/interrupt.h>
26#include <linux/delay.h>
27#include <asm/unaligned.h>
28#include <linux/crc-t10dif.h>
29#include <net/checksum.h>
30
31#include <scsi/scsi.h>
32#include <scsi/scsi_device.h>
33#include <scsi/scsi_eh.h>
34#include <scsi/scsi_host.h>
35#include <scsi/scsi_tcq.h>
36#include <scsi/scsi_transport_fc.h>
37#include <scsi/fc/fc_fs.h>
38
39#include <../drivers/nvme/host/nvme.h>
40#include <linux/nvme-fc-driver.h>
41
42#include "lpfc_version.h"
43#include "lpfc_hw4.h"
44#include "lpfc_hw.h"
45#include "lpfc_sli.h"
46#include "lpfc_sli4.h"
47#include "lpfc_nl.h"
48#include "lpfc_disc.h"
49#include "lpfc.h"
50#include "lpfc_scsi.h"
51#include "lpfc_nvme.h"
52#include "lpfc_nvmet.h"
53#include "lpfc_logmsg.h"
54#include "lpfc_crtn.h"
55#include "lpfc_vport.h"
James Smart2b65e182017-02-12 13:52:38 -080056#include "lpfc_debugfs.h"
James Smartd613b6a2017-02-12 13:52:37 -080057
58static struct lpfc_iocbq *lpfc_nvmet_prep_ls_wqe(struct lpfc_hba *,
59 struct lpfc_nvmet_rcv_ctx *,
60 dma_addr_t rspbuf,
61 uint16_t rspsize);
62static struct lpfc_iocbq *lpfc_nvmet_prep_fcp_wqe(struct lpfc_hba *,
63 struct lpfc_nvmet_rcv_ctx *);
64static int lpfc_nvmet_sol_fcp_issue_abort(struct lpfc_hba *,
65 struct lpfc_nvmet_rcv_ctx *,
66 uint32_t, uint16_t);
67static int lpfc_nvmet_unsol_fcp_issue_abort(struct lpfc_hba *,
68 struct lpfc_nvmet_rcv_ctx *,
69 uint32_t, uint16_t);
70static int lpfc_nvmet_unsol_ls_issue_abort(struct lpfc_hba *,
71 struct lpfc_nvmet_rcv_ctx *,
72 uint32_t, uint16_t);
73
74/**
75 * lpfc_nvmet_xmt_ls_rsp_cmp - Completion handler for LS Response
76 * @phba: Pointer to HBA context object.
77 * @cmdwqe: Pointer to driver command WQE object.
78 * @wcqe: Pointer to driver response CQE object.
79 *
80 * The function is called from SLI ring event handler with no
81 * lock held. This function is the completion handler for NVME LS commands
82 * The function frees memory resources used for the NVME commands.
83 **/
84static void
85lpfc_nvmet_xmt_ls_rsp_cmp(struct lpfc_hba *phba, struct lpfc_iocbq *cmdwqe,
86 struct lpfc_wcqe_complete *wcqe)
87{
88 struct lpfc_nvmet_tgtport *tgtp;
89 struct nvmefc_tgt_ls_req *rsp;
90 struct lpfc_nvmet_rcv_ctx *ctxp;
91 uint32_t status, result;
92
93 status = bf_get(lpfc_wcqe_c_status, wcqe);
94 result = wcqe->parameter;
95 if (!phba->targetport)
96 goto out;
97
98 tgtp = (struct lpfc_nvmet_tgtport *)phba->targetport->private;
99
100 if (status)
101 atomic_inc(&tgtp->xmt_ls_rsp_error);
102 else
103 atomic_inc(&tgtp->xmt_ls_rsp_cmpl);
104
105out:
106 ctxp = cmdwqe->context2;
107 rsp = &ctxp->ctx.ls_req;
108
James Smart2b65e182017-02-12 13:52:38 -0800109 lpfc_nvmeio_data(phba, "NVMET LS CMPL: xri x%x stat x%x result x%x\n",
110 ctxp->oxid, status, result);
111
James Smartd613b6a2017-02-12 13:52:37 -0800112 lpfc_printf_log(phba, KERN_INFO, LOG_NVME_DISC,
113 "6038 %s: Entrypoint: ctx %p status %x/%x\n", __func__,
114 ctxp, status, result);
115
116 lpfc_nlp_put(cmdwqe->context1);
117 cmdwqe->context2 = NULL;
118 cmdwqe->context3 = NULL;
119 lpfc_sli_release_iocbq(phba, cmdwqe);
120 rsp->done(rsp);
121 kfree(ctxp);
122}
123
124/**
125 * lpfc_nvmet_rq_post - Repost a NVMET RQ DMA buffer and clean up context
126 * @phba: HBA buffer is associated with
127 * @ctxp: context to clean up
128 * @mp: Buffer to free
129 *
130 * Description: Frees the given DMA buffer in the appropriate way given by
131 * reposting it to its associated RQ so it can be reused.
132 *
133 * Notes: Takes phba->hbalock. Can be called with or without other locks held.
134 *
135 * Returns: None
136 **/
137void
138lpfc_nvmet_rq_post(struct lpfc_hba *phba, struct lpfc_nvmet_rcv_ctx *ctxp,
139 struct lpfc_dmabuf *mp)
140{
141 if (ctxp) {
142 if (ctxp->txrdy) {
143 pci_pool_free(phba->txrdy_payload_pool, ctxp->txrdy,
144 ctxp->txrdy_phys);
145 ctxp->txrdy = NULL;
146 ctxp->txrdy_phys = 0;
147 }
148 ctxp->state = LPFC_NVMET_STE_FREE;
149 }
150 lpfc_rq_buf_free(phba, mp);
151}
152
James Smart2b65e182017-02-12 13:52:38 -0800153#ifdef CONFIG_SCSI_LPFC_DEBUG_FS
154static void
155lpfc_nvmet_ktime(struct lpfc_hba *phba,
156 struct lpfc_nvmet_rcv_ctx *ctxp)
157{
158 uint64_t seg1, seg2, seg3, seg4, seg5;
159 uint64_t seg6, seg7, seg8, seg9, seg10;
160
161 if (!phba->ktime_on)
162 return;
163
164 if (!ctxp->ts_isr_cmd || !ctxp->ts_cmd_nvme ||
165 !ctxp->ts_nvme_data || !ctxp->ts_data_wqput ||
166 !ctxp->ts_isr_data || !ctxp->ts_data_nvme ||
167 !ctxp->ts_nvme_status || !ctxp->ts_status_wqput ||
168 !ctxp->ts_isr_status || !ctxp->ts_status_nvme)
169 return;
170
171 if (ctxp->ts_isr_cmd > ctxp->ts_cmd_nvme)
172 return;
173 if (ctxp->ts_cmd_nvme > ctxp->ts_nvme_data)
174 return;
175 if (ctxp->ts_nvme_data > ctxp->ts_data_wqput)
176 return;
177 if (ctxp->ts_data_wqput > ctxp->ts_isr_data)
178 return;
179 if (ctxp->ts_isr_data > ctxp->ts_data_nvme)
180 return;
181 if (ctxp->ts_data_nvme > ctxp->ts_nvme_status)
182 return;
183 if (ctxp->ts_nvme_status > ctxp->ts_status_wqput)
184 return;
185 if (ctxp->ts_status_wqput > ctxp->ts_isr_status)
186 return;
187 if (ctxp->ts_isr_status > ctxp->ts_status_nvme)
188 return;
189 /*
190 * Segment 1 - Time from FCP command received by MSI-X ISR
191 * to FCP command is passed to NVME Layer.
192 * Segment 2 - Time from FCP command payload handed
193 * off to NVME Layer to Driver receives a Command op
194 * from NVME Layer.
195 * Segment 3 - Time from Driver receives a Command op
196 * from NVME Layer to Command is put on WQ.
197 * Segment 4 - Time from Driver WQ put is done
198 * to MSI-X ISR for Command cmpl.
199 * Segment 5 - Time from MSI-X ISR for Command cmpl to
200 * Command cmpl is passed to NVME Layer.
201 * Segment 6 - Time from Command cmpl is passed to NVME
202 * Layer to Driver receives a RSP op from NVME Layer.
203 * Segment 7 - Time from Driver receives a RSP op from
204 * NVME Layer to WQ put is done on TRSP FCP Status.
205 * Segment 8 - Time from Driver WQ put is done on TRSP
206 * FCP Status to MSI-X ISR for TRSP cmpl.
207 * Segment 9 - Time from MSI-X ISR for TRSP cmpl to
208 * TRSP cmpl is passed to NVME Layer.
209 * Segment 10 - Time from FCP command received by
210 * MSI-X ISR to command is completed on wire.
211 * (Segments 1 thru 8) for READDATA / WRITEDATA
212 * (Segments 1 thru 4) for READDATA_RSP
213 */
214 seg1 = ctxp->ts_cmd_nvme - ctxp->ts_isr_cmd;
215 seg2 = (ctxp->ts_nvme_data - ctxp->ts_isr_cmd) - seg1;
216 seg3 = (ctxp->ts_data_wqput - ctxp->ts_isr_cmd) -
217 seg1 - seg2;
218 seg4 = (ctxp->ts_isr_data - ctxp->ts_isr_cmd) -
219 seg1 - seg2 - seg3;
220 seg5 = (ctxp->ts_data_nvme - ctxp->ts_isr_cmd) -
221 seg1 - seg2 - seg3 - seg4;
222
223 /* For auto rsp commands seg6 thru seg10 will be 0 */
224 if (ctxp->ts_nvme_status > ctxp->ts_data_nvme) {
225 seg6 = (ctxp->ts_nvme_status -
226 ctxp->ts_isr_cmd) -
227 seg1 - seg2 - seg3 - seg4 - seg5;
228 seg7 = (ctxp->ts_status_wqput -
229 ctxp->ts_isr_cmd) -
230 seg1 - seg2 - seg3 -
231 seg4 - seg5 - seg6;
232 seg8 = (ctxp->ts_isr_status -
233 ctxp->ts_isr_cmd) -
234 seg1 - seg2 - seg3 - seg4 -
235 seg5 - seg6 - seg7;
236 seg9 = (ctxp->ts_status_nvme -
237 ctxp->ts_isr_cmd) -
238 seg1 - seg2 - seg3 - seg4 -
239 seg5 - seg6 - seg7 - seg8;
240 seg10 = (ctxp->ts_isr_status -
241 ctxp->ts_isr_cmd);
242 } else {
243 seg6 = 0;
244 seg7 = 0;
245 seg8 = 0;
246 seg9 = 0;
247 seg10 = (ctxp->ts_isr_data - ctxp->ts_isr_cmd);
248 }
249
250 phba->ktime_seg1_total += seg1;
251 if (seg1 < phba->ktime_seg1_min)
252 phba->ktime_seg1_min = seg1;
253 else if (seg1 > phba->ktime_seg1_max)
254 phba->ktime_seg1_max = seg1;
255
256 phba->ktime_seg2_total += seg2;
257 if (seg2 < phba->ktime_seg2_min)
258 phba->ktime_seg2_min = seg2;
259 else if (seg2 > phba->ktime_seg2_max)
260 phba->ktime_seg2_max = seg2;
261
262 phba->ktime_seg3_total += seg3;
263 if (seg3 < phba->ktime_seg3_min)
264 phba->ktime_seg3_min = seg3;
265 else if (seg3 > phba->ktime_seg3_max)
266 phba->ktime_seg3_max = seg3;
267
268 phba->ktime_seg4_total += seg4;
269 if (seg4 < phba->ktime_seg4_min)
270 phba->ktime_seg4_min = seg4;
271 else if (seg4 > phba->ktime_seg4_max)
272 phba->ktime_seg4_max = seg4;
273
274 phba->ktime_seg5_total += seg5;
275 if (seg5 < phba->ktime_seg5_min)
276 phba->ktime_seg5_min = seg5;
277 else if (seg5 > phba->ktime_seg5_max)
278 phba->ktime_seg5_max = seg5;
279
280 phba->ktime_data_samples++;
281 if (!seg6)
282 goto out;
283
284 phba->ktime_seg6_total += seg6;
285 if (seg6 < phba->ktime_seg6_min)
286 phba->ktime_seg6_min = seg6;
287 else if (seg6 > phba->ktime_seg6_max)
288 phba->ktime_seg6_max = seg6;
289
290 phba->ktime_seg7_total += seg7;
291 if (seg7 < phba->ktime_seg7_min)
292 phba->ktime_seg7_min = seg7;
293 else if (seg7 > phba->ktime_seg7_max)
294 phba->ktime_seg7_max = seg7;
295
296 phba->ktime_seg8_total += seg8;
297 if (seg8 < phba->ktime_seg8_min)
298 phba->ktime_seg8_min = seg8;
299 else if (seg8 > phba->ktime_seg8_max)
300 phba->ktime_seg8_max = seg8;
301
302 phba->ktime_seg9_total += seg9;
303 if (seg9 < phba->ktime_seg9_min)
304 phba->ktime_seg9_min = seg9;
305 else if (seg9 > phba->ktime_seg9_max)
306 phba->ktime_seg9_max = seg9;
307out:
308 phba->ktime_seg10_total += seg10;
309 if (seg10 < phba->ktime_seg10_min)
310 phba->ktime_seg10_min = seg10;
311 else if (seg10 > phba->ktime_seg10_max)
312 phba->ktime_seg10_max = seg10;
313 phba->ktime_status_samples++;
314}
315#endif
316
James Smartd613b6a2017-02-12 13:52:37 -0800317/**
318 * lpfc_nvmet_xmt_fcp_op_cmp - Completion handler for FCP Response
319 * @phba: Pointer to HBA context object.
320 * @cmdwqe: Pointer to driver command WQE object.
321 * @wcqe: Pointer to driver response CQE object.
322 *
323 * The function is called from SLI ring event handler with no
324 * lock held. This function is the completion handler for NVME FCP commands
325 * The function frees memory resources used for the NVME commands.
326 **/
327static void
328lpfc_nvmet_xmt_fcp_op_cmp(struct lpfc_hba *phba, struct lpfc_iocbq *cmdwqe,
329 struct lpfc_wcqe_complete *wcqe)
330{
331 struct lpfc_nvmet_tgtport *tgtp;
332 struct nvmefc_tgt_fcp_req *rsp;
333 struct lpfc_nvmet_rcv_ctx *ctxp;
334 uint32_t status, result, op, start_clean;
James Smart2b65e182017-02-12 13:52:38 -0800335#ifdef CONFIG_SCSI_LPFC_DEBUG_FS
336 uint32_t id;
337#endif
James Smartd613b6a2017-02-12 13:52:37 -0800338
339 ctxp = cmdwqe->context2;
340 rsp = &ctxp->ctx.fcp_req;
341 op = rsp->op;
342 ctxp->flag &= ~LPFC_NVMET_IO_INP;
343
344 status = bf_get(lpfc_wcqe_c_status, wcqe);
345 result = wcqe->parameter;
346
347 if (!phba->targetport)
348 goto out;
349
James Smart2b65e182017-02-12 13:52:38 -0800350 lpfc_nvmeio_data(phba, "NVMET FCP CMPL: xri x%x op x%x status x%x\n",
351 ctxp->oxid, op, status);
352
James Smartd613b6a2017-02-12 13:52:37 -0800353 tgtp = (struct lpfc_nvmet_tgtport *)phba->targetport->private;
354 if (status) {
355 rsp->fcp_error = NVME_SC_DATA_XFER_ERROR;
356 rsp->transferred_length = 0;
357 atomic_inc(&tgtp->xmt_fcp_rsp_error);
358 } else {
359 rsp->fcp_error = NVME_SC_SUCCESS;
360 if (op == NVMET_FCOP_RSP)
361 rsp->transferred_length = rsp->rsplen;
362 else
363 rsp->transferred_length = rsp->transfer_length;
364 atomic_inc(&tgtp->xmt_fcp_rsp_cmpl);
365 }
366
367out:
368 if ((op == NVMET_FCOP_READDATA_RSP) ||
369 (op == NVMET_FCOP_RSP)) {
370 /* Sanity check */
371 ctxp->state = LPFC_NVMET_STE_DONE;
372 ctxp->entry_cnt++;
James Smart2b65e182017-02-12 13:52:38 -0800373#ifdef CONFIG_SCSI_LPFC_DEBUG_FS
374 if (phba->ktime_on) {
375 if (rsp->op == NVMET_FCOP_READDATA_RSP) {
376 ctxp->ts_isr_data =
377 cmdwqe->isr_timestamp;
378 ctxp->ts_data_nvme =
379 ktime_get_ns();
380 ctxp->ts_nvme_status =
381 ctxp->ts_data_nvme;
382 ctxp->ts_status_wqput =
383 ctxp->ts_data_nvme;
384 ctxp->ts_isr_status =
385 ctxp->ts_data_nvme;
386 ctxp->ts_status_nvme =
387 ctxp->ts_data_nvme;
388 } else {
389 ctxp->ts_isr_status =
390 cmdwqe->isr_timestamp;
391 ctxp->ts_status_nvme =
392 ktime_get_ns();
393 }
394 }
395 if (phba->cpucheck_on & LPFC_CHECK_NVMET_IO) {
396 id = smp_processor_id();
397 if (ctxp->cpu != id)
398 lpfc_printf_log(phba, KERN_ERR, LOG_NVME_IOERR,
399 "6703 CPU Check cmpl: "
400 "cpu %d expect %d\n",
401 id, ctxp->cpu);
402 if (ctxp->cpu < LPFC_CHECK_CPU_CNT)
403 phba->cpucheck_cmpl_io[id]++;
404 }
405#endif
James Smartd613b6a2017-02-12 13:52:37 -0800406 rsp->done(rsp);
James Smart2b65e182017-02-12 13:52:38 -0800407#ifdef CONFIG_SCSI_LPFC_DEBUG_FS
408 if (phba->ktime_on)
409 lpfc_nvmet_ktime(phba, ctxp);
410#endif
James Smartd613b6a2017-02-12 13:52:37 -0800411 /* Let Abort cmpl repost the context */
412 if (!(ctxp->flag & LPFC_NVMET_ABORT_OP))
413 lpfc_nvmet_rq_post(phba, ctxp, &ctxp->rqb_buffer->hbuf);
414 } else {
415 ctxp->entry_cnt++;
416 start_clean = offsetof(struct lpfc_iocbq, wqe);
417 memset(((char *)cmdwqe) + start_clean, 0,
418 (sizeof(struct lpfc_iocbq) - start_clean));
James Smart2b65e182017-02-12 13:52:38 -0800419#ifdef CONFIG_SCSI_LPFC_DEBUG_FS
420 if (phba->ktime_on) {
421 ctxp->ts_isr_data = cmdwqe->isr_timestamp;
422 ctxp->ts_data_nvme = ktime_get_ns();
423 }
424 if (phba->cpucheck_on & LPFC_CHECK_NVMET_IO) {
425 id = smp_processor_id();
426 if (ctxp->cpu != id)
427 lpfc_printf_log(phba, KERN_ERR, LOG_NVME_IOERR,
428 "6704 CPU Check cmdcmpl: "
429 "cpu %d expect %d\n",
430 id, ctxp->cpu);
431 if (ctxp->cpu < LPFC_CHECK_CPU_CNT)
432 phba->cpucheck_ccmpl_io[id]++;
433 }
434#endif
James Smartd613b6a2017-02-12 13:52:37 -0800435 rsp->done(rsp);
436 }
437}
438
439static int
440lpfc_nvmet_xmt_ls_rsp(struct nvmet_fc_target_port *tgtport,
441 struct nvmefc_tgt_ls_req *rsp)
442{
443 struct lpfc_nvmet_rcv_ctx *ctxp =
444 container_of(rsp, struct lpfc_nvmet_rcv_ctx, ctx.ls_req);
445 struct lpfc_hba *phba = ctxp->phba;
446 struct hbq_dmabuf *nvmebuf =
447 (struct hbq_dmabuf *)ctxp->rqb_buffer;
448 struct lpfc_iocbq *nvmewqeq;
449 struct lpfc_nvmet_tgtport *nvmep = tgtport->private;
450 struct lpfc_dmabuf dmabuf;
451 struct ulp_bde64 bpl;
452 int rc;
453
454 lpfc_printf_log(phba, KERN_INFO, LOG_NVME_DISC,
455 "6023 %s: Entrypoint ctx %p %p\n", __func__,
456 ctxp, tgtport);
457
458 nvmewqeq = lpfc_nvmet_prep_ls_wqe(phba, ctxp, rsp->rspdma,
459 rsp->rsplen);
460 if (nvmewqeq == NULL) {
461 atomic_inc(&nvmep->xmt_ls_drop);
462 lpfc_printf_log(phba, KERN_ERR, LOG_NVME_IOERR,
463 "6150 LS Drop IO x%x: Prep\n",
464 ctxp->oxid);
465 lpfc_in_buf_free(phba, &nvmebuf->dbuf);
466 lpfc_nvmet_unsol_ls_issue_abort(phba, ctxp,
467 ctxp->sid, ctxp->oxid);
468 return -ENOMEM;
469 }
470
471 /* Save numBdes for bpl2sgl */
472 nvmewqeq->rsvd2 = 1;
473 nvmewqeq->hba_wqidx = 0;
474 nvmewqeq->context3 = &dmabuf;
475 dmabuf.virt = &bpl;
476 bpl.addrLow = nvmewqeq->wqe.xmit_sequence.bde.addrLow;
477 bpl.addrHigh = nvmewqeq->wqe.xmit_sequence.bde.addrHigh;
478 bpl.tus.f.bdeSize = rsp->rsplen;
479 bpl.tus.f.bdeFlags = 0;
480 bpl.tus.w = le32_to_cpu(bpl.tus.w);
481
482 nvmewqeq->wqe_cmpl = lpfc_nvmet_xmt_ls_rsp_cmp;
483 nvmewqeq->iocb_cmpl = NULL;
484 nvmewqeq->context2 = ctxp;
485
James Smart2b65e182017-02-12 13:52:38 -0800486 lpfc_nvmeio_data(phba, "NVMET LS RESP: xri x%x wqidx x%x len x%x\n",
487 ctxp->oxid, nvmewqeq->hba_wqidx, rsp->rsplen);
488
James Smartd613b6a2017-02-12 13:52:37 -0800489 rc = lpfc_sli4_issue_wqe(phba, LPFC_ELS_RING, nvmewqeq);
490 if (rc == WQE_SUCCESS) {
491 /*
492 * Okay to repost buffer here, but wait till cmpl
493 * before freeing ctxp and iocbq.
494 */
495 lpfc_in_buf_free(phba, &nvmebuf->dbuf);
496 ctxp->rqb_buffer = 0;
497 atomic_inc(&nvmep->xmt_ls_rsp);
498 return 0;
499 }
500 /* Give back resources */
501 atomic_inc(&nvmep->xmt_ls_drop);
502 lpfc_printf_log(phba, KERN_ERR, LOG_NVME_IOERR,
503 "6151 LS Drop IO x%x: Issue %d\n",
504 ctxp->oxid, rc);
505
506 lpfc_nlp_put(nvmewqeq->context1);
507
508 lpfc_in_buf_free(phba, &nvmebuf->dbuf);
509 lpfc_nvmet_unsol_ls_issue_abort(phba, ctxp, ctxp->sid, ctxp->oxid);
510 return -ENXIO;
511}
512
513static int
514lpfc_nvmet_xmt_fcp_op(struct nvmet_fc_target_port *tgtport,
515 struct nvmefc_tgt_fcp_req *rsp)
516{
517 struct lpfc_nvmet_tgtport *lpfc_nvmep = tgtport->private;
518 struct lpfc_nvmet_rcv_ctx *ctxp =
519 container_of(rsp, struct lpfc_nvmet_rcv_ctx, ctx.fcp_req);
520 struct lpfc_hba *phba = ctxp->phba;
521 struct lpfc_iocbq *nvmewqeq;
522 unsigned long iflags;
James Smart2b65e182017-02-12 13:52:38 -0800523 int rc, id;
524
525#ifdef CONFIG_SCSI_LPFC_DEBUG_FS
526 if (phba->ktime_on) {
527 if (rsp->op == NVMET_FCOP_RSP)
528 ctxp->ts_nvme_status = ktime_get_ns();
529 else
530 ctxp->ts_nvme_data = ktime_get_ns();
531 }
532 if (phba->cpucheck_on & LPFC_CHECK_NVMET_IO) {
533 id = smp_processor_id();
534 ctxp->cpu = id;
535 if (id < LPFC_CHECK_CPU_CNT)
536 phba->cpucheck_xmt_io[id]++;
537 if (rsp->hwqid != id) {
538 lpfc_printf_log(phba, KERN_ERR, LOG_NVME_IOERR,
539 "6705 CPU Check OP: "
540 "cpu %d expect %d\n",
541 id, rsp->hwqid);
542 ctxp->cpu = rsp->hwqid;
543 }
544 }
545#endif
James Smartd613b6a2017-02-12 13:52:37 -0800546
547 if (rsp->op == NVMET_FCOP_ABORT) {
548 lpfc_printf_log(phba, KERN_INFO, LOG_NVME_ABTS,
549 "6103 Abort op: oxri x%x %d cnt %d\n",
550 ctxp->oxid, ctxp->state, ctxp->entry_cnt);
James Smart2b65e182017-02-12 13:52:38 -0800551
552 lpfc_nvmeio_data(phba, "NVMET FCP ABRT: "
553 "xri x%x state x%x cnt x%x\n",
554 ctxp->oxid, ctxp->state, ctxp->entry_cnt);
555
James Smartd613b6a2017-02-12 13:52:37 -0800556 atomic_inc(&lpfc_nvmep->xmt_fcp_abort);
557 ctxp->entry_cnt++;
558 ctxp->flag |= LPFC_NVMET_ABORT_OP;
559 if (ctxp->flag & LPFC_NVMET_IO_INP)
560 lpfc_nvmet_sol_fcp_issue_abort(phba, ctxp, ctxp->sid,
561 ctxp->oxid);
562 else
563 lpfc_nvmet_unsol_fcp_issue_abort(phba, ctxp, ctxp->sid,
564 ctxp->oxid);
565 return 0;
566 }
567
568 /* Sanity check */
569 if (ctxp->state == LPFC_NVMET_STE_ABORT) {
570 atomic_inc(&lpfc_nvmep->xmt_fcp_drop);
571 lpfc_printf_log(phba, KERN_ERR, LOG_NVME_IOERR,
572 "6102 Bad state IO x%x aborted\n",
573 ctxp->oxid);
James Smarta5068b42017-03-04 09:30:28 -0800574 rc = -ENXIO;
James Smartd613b6a2017-02-12 13:52:37 -0800575 goto aerr;
576 }
577
578 nvmewqeq = lpfc_nvmet_prep_fcp_wqe(phba, ctxp);
579 if (nvmewqeq == NULL) {
580 atomic_inc(&lpfc_nvmep->xmt_fcp_drop);
581 lpfc_printf_log(phba, KERN_ERR, LOG_NVME_IOERR,
582 "6152 FCP Drop IO x%x: Prep\n",
583 ctxp->oxid);
James Smarta5068b42017-03-04 09:30:28 -0800584 rc = -ENXIO;
James Smartd613b6a2017-02-12 13:52:37 -0800585 goto aerr;
586 }
587
588 nvmewqeq->wqe_cmpl = lpfc_nvmet_xmt_fcp_op_cmp;
589 nvmewqeq->iocb_cmpl = NULL;
590 nvmewqeq->context2 = ctxp;
591 nvmewqeq->iocb_flag |= LPFC_IO_NVMET;
592 ctxp->wqeq->hba_wqidx = rsp->hwqid;
593
James Smart2b65e182017-02-12 13:52:38 -0800594 lpfc_nvmeio_data(phba, "NVMET FCP CMND: xri x%x op x%x len x%x\n",
595 ctxp->oxid, rsp->op, rsp->rsplen);
596
James Smartd613b6a2017-02-12 13:52:37 -0800597 /* For now we take hbalock */
598 spin_lock_irqsave(&phba->hbalock, iflags);
599 rc = lpfc_sli4_issue_wqe(phba, LPFC_FCP_RING, nvmewqeq);
600 spin_unlock_irqrestore(&phba->hbalock, iflags);
601 if (rc == WQE_SUCCESS) {
602 ctxp->flag |= LPFC_NVMET_IO_INP;
James Smart2b65e182017-02-12 13:52:38 -0800603#ifdef CONFIG_SCSI_LPFC_DEBUG_FS
604 if (!phba->ktime_on)
605 return 0;
606 if (rsp->op == NVMET_FCOP_RSP)
607 ctxp->ts_status_wqput = ktime_get_ns();
608 else
609 ctxp->ts_data_wqput = ktime_get_ns();
610#endif
James Smartd613b6a2017-02-12 13:52:37 -0800611 return 0;
612 }
613
614 /* Give back resources */
615 atomic_inc(&lpfc_nvmep->xmt_fcp_drop);
616 lpfc_printf_log(phba, KERN_ERR, LOG_NVME_IOERR,
617 "6153 FCP Drop IO x%x: Issue: %d\n",
618 ctxp->oxid, rc);
619
620 ctxp->wqeq->hba_wqidx = 0;
621 nvmewqeq->context2 = NULL;
622 nvmewqeq->context3 = NULL;
James Smarta5068b42017-03-04 09:30:28 -0800623 rc = -EBUSY;
James Smartd613b6a2017-02-12 13:52:37 -0800624aerr:
James Smarta5068b42017-03-04 09:30:28 -0800625 return rc;
James Smartd613b6a2017-02-12 13:52:37 -0800626}
627
628static void
629lpfc_nvmet_targetport_delete(struct nvmet_fc_target_port *targetport)
630{
631 struct lpfc_nvmet_tgtport *tport = targetport->private;
632
633 /* release any threads waiting for the unreg to complete */
634 complete(&tport->tport_unreg_done);
635}
636
637static struct nvmet_fc_target_template lpfc_tgttemplate = {
638 .targetport_delete = lpfc_nvmet_targetport_delete,
639 .xmt_ls_rsp = lpfc_nvmet_xmt_ls_rsp,
640 .fcp_op = lpfc_nvmet_xmt_fcp_op,
641
642 .max_hw_queues = 1,
643 .max_sgl_segments = LPFC_NVMET_DEFAULT_SEGS,
644 .max_dif_sgl_segments = LPFC_NVMET_DEFAULT_SEGS,
645 .dma_boundary = 0xFFFFFFFF,
646
647 /* optional features */
648 .target_features = 0,
649 /* sizes of additional private data for data structures */
650 .target_priv_sz = sizeof(struct lpfc_nvmet_tgtport),
651};
652
653int
654lpfc_nvmet_create_targetport(struct lpfc_hba *phba)
655{
656 struct lpfc_vport *vport = phba->pport;
657 struct lpfc_nvmet_tgtport *tgtp;
658 struct nvmet_fc_port_info pinfo;
659 int error = 0;
660
661 if (phba->targetport)
662 return 0;
663
664 memset(&pinfo, 0, sizeof(struct nvmet_fc_port_info));
665 pinfo.node_name = wwn_to_u64(vport->fc_nodename.u.wwn);
666 pinfo.port_name = wwn_to_u64(vport->fc_portname.u.wwn);
667 pinfo.port_id = vport->fc_myDID;
668
669 lpfc_tgttemplate.max_hw_queues = phba->cfg_nvme_io_channel;
670 lpfc_tgttemplate.max_sgl_segments = phba->cfg_sg_seg_cnt;
671 lpfc_tgttemplate.target_features = NVMET_FCTGTFEAT_READDATA_RSP |
672 NVMET_FCTGTFEAT_NEEDS_CMD_CPUSCHED;
673
674 error = nvmet_fc_register_targetport(&pinfo, &lpfc_tgttemplate,
675 &phba->pcidev->dev,
676 &phba->targetport);
677 if (error) {
678 lpfc_printf_log(phba, KERN_ERR, LOG_NVME_DISC,
679 "6025 Cannot register NVME targetport "
680 "x%x\n", error);
681 phba->targetport = NULL;
682 } else {
683 tgtp = (struct lpfc_nvmet_tgtport *)
684 phba->targetport->private;
685 tgtp->phba = phba;
686
687 lpfc_printf_log(phba, KERN_INFO, LOG_NVME_DISC,
688 "6026 Registered NVME "
689 "targetport: %p, private %p "
690 "portnm %llx nodenm %llx\n",
691 phba->targetport, tgtp,
692 pinfo.port_name, pinfo.node_name);
693
694 atomic_set(&tgtp->rcv_ls_req_in, 0);
695 atomic_set(&tgtp->rcv_ls_req_out, 0);
696 atomic_set(&tgtp->rcv_ls_req_drop, 0);
697 atomic_set(&tgtp->xmt_ls_abort, 0);
698 atomic_set(&tgtp->xmt_ls_rsp, 0);
699 atomic_set(&tgtp->xmt_ls_drop, 0);
700 atomic_set(&tgtp->xmt_ls_rsp_error, 0);
701 atomic_set(&tgtp->xmt_ls_rsp_cmpl, 0);
702 atomic_set(&tgtp->rcv_fcp_cmd_in, 0);
703 atomic_set(&tgtp->rcv_fcp_cmd_out, 0);
704 atomic_set(&tgtp->rcv_fcp_cmd_drop, 0);
705 atomic_set(&tgtp->xmt_fcp_abort, 0);
706 atomic_set(&tgtp->xmt_fcp_drop, 0);
707 atomic_set(&tgtp->xmt_fcp_read_rsp, 0);
708 atomic_set(&tgtp->xmt_fcp_read, 0);
709 atomic_set(&tgtp->xmt_fcp_write, 0);
710 atomic_set(&tgtp->xmt_fcp_rsp, 0);
711 atomic_set(&tgtp->xmt_fcp_rsp_cmpl, 0);
712 atomic_set(&tgtp->xmt_fcp_rsp_error, 0);
713 atomic_set(&tgtp->xmt_fcp_rsp_drop, 0);
714 atomic_set(&tgtp->xmt_abort_rsp, 0);
715 atomic_set(&tgtp->xmt_abort_rsp_error, 0);
716 atomic_set(&tgtp->xmt_abort_cmpl, 0);
717 }
718 return error;
719}
720
721int
722lpfc_nvmet_update_targetport(struct lpfc_hba *phba)
723{
724 struct lpfc_vport *vport = phba->pport;
725
726 if (!phba->targetport)
727 return 0;
728
729 lpfc_printf_vlog(vport, KERN_INFO, LOG_NVME,
730 "6007 Update NVMET port %p did x%x\n",
731 phba->targetport, vport->fc_myDID);
732
733 phba->targetport->port_id = vport->fc_myDID;
734 return 0;
735}
736
737void
738lpfc_nvmet_destroy_targetport(struct lpfc_hba *phba)
739{
740 struct lpfc_nvmet_tgtport *tgtp;
741
742 if (phba->nvmet_support == 0)
743 return;
744 if (phba->targetport) {
745 tgtp = (struct lpfc_nvmet_tgtport *)phba->targetport->private;
746 init_completion(&tgtp->tport_unreg_done);
747 nvmet_fc_unregister_targetport(phba->targetport);
748 wait_for_completion_timeout(&tgtp->tport_unreg_done, 5);
749 }
750 phba->targetport = NULL;
751}
752
753/**
754 * lpfc_nvmet_unsol_ls_buffer - Process an unsolicited event data buffer
755 * @phba: pointer to lpfc hba data structure.
756 * @pring: pointer to a SLI ring.
757 * @nvmebuf: pointer to lpfc nvme command HBQ data structure.
758 *
759 * This routine is used for processing the WQE associated with a unsolicited
760 * event. It first determines whether there is an existing ndlp that matches
761 * the DID from the unsolicited WQE. If not, it will create a new one with
762 * the DID from the unsolicited WQE. The ELS command from the unsolicited
763 * WQE is then used to invoke the proper routine and to set up proper state
764 * of the discovery state machine.
765 **/
766static void
767lpfc_nvmet_unsol_ls_buffer(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
768 struct hbq_dmabuf *nvmebuf)
769{
770 struct lpfc_nvmet_tgtport *tgtp;
771 struct fc_frame_header *fc_hdr;
772 struct lpfc_nvmet_rcv_ctx *ctxp;
773 uint32_t *payload;
774 uint32_t size, oxid, sid, rc;
775
776 if (!nvmebuf || !phba->targetport) {
777 lpfc_printf_log(phba, KERN_ERR, LOG_NVME_IOERR,
778 "6154 LS Drop IO\n");
James Smart2b65e182017-02-12 13:52:38 -0800779 oxid = 0;
780 size = 0;
781 sid = 0;
James Smartd613b6a2017-02-12 13:52:37 -0800782 goto dropit;
783 }
784
785 tgtp = (struct lpfc_nvmet_tgtport *)phba->targetport->private;
786 payload = (uint32_t *)(nvmebuf->dbuf.virt);
787 fc_hdr = (struct fc_frame_header *)(nvmebuf->hbuf.virt);
788 size = bf_get(lpfc_rcqe_length, &nvmebuf->cq_event.cqe.rcqe_cmpl);
789 oxid = be16_to_cpu(fc_hdr->fh_ox_id);
790 sid = sli4_sid_from_fc_hdr(fc_hdr);
791
792 ctxp = kzalloc(sizeof(struct lpfc_nvmet_rcv_ctx), GFP_ATOMIC);
793 if (ctxp == NULL) {
794 atomic_inc(&tgtp->rcv_ls_req_drop);
795 lpfc_printf_log(phba, KERN_ERR, LOG_NVME_IOERR,
796 "6155 LS Drop IO x%x: Alloc\n",
797 oxid);
798dropit:
James Smart2b65e182017-02-12 13:52:38 -0800799 lpfc_nvmeio_data(phba, "NVMET LS DROP: "
800 "xri x%x sz %d from %06x\n",
801 oxid, size, sid);
James Smartd613b6a2017-02-12 13:52:37 -0800802 if (nvmebuf)
803 lpfc_in_buf_free(phba, &nvmebuf->dbuf);
804 return;
805 }
806 ctxp->phba = phba;
807 ctxp->size = size;
808 ctxp->oxid = oxid;
809 ctxp->sid = sid;
810 ctxp->wqeq = NULL;
811 ctxp->state = LPFC_NVMET_STE_RCV;
812 ctxp->rqb_buffer = (void *)nvmebuf;
James Smart2b65e182017-02-12 13:52:38 -0800813
814 lpfc_nvmeio_data(phba, "NVMET LS RCV: xri x%x sz %d from %06x\n",
815 oxid, size, sid);
James Smartd613b6a2017-02-12 13:52:37 -0800816 /*
817 * The calling sequence should be:
818 * nvmet_fc_rcv_ls_req -> lpfc_nvmet_xmt_ls_rsp/cmp ->_req->done
819 * lpfc_nvmet_xmt_ls_rsp_cmp should free the allocated ctxp.
820 */
821 atomic_inc(&tgtp->rcv_ls_req_in);
822 rc = nvmet_fc_rcv_ls_req(phba->targetport, &ctxp->ctx.ls_req,
823 payload, size);
824
825 lpfc_printf_log(phba, KERN_INFO, LOG_NVME_DISC,
826 "6037 %s: ctx %p sz %d rc %d: %08x %08x %08x "
827 "%08x %08x %08x\n", __func__, ctxp, size, rc,
828 *payload, *(payload+1), *(payload+2),
829 *(payload+3), *(payload+4), *(payload+5));
James Smart2b65e182017-02-12 13:52:38 -0800830
James Smartd613b6a2017-02-12 13:52:37 -0800831 if (rc == 0) {
832 atomic_inc(&tgtp->rcv_ls_req_out);
833 return;
834 }
James Smart2b65e182017-02-12 13:52:38 -0800835
836 lpfc_nvmeio_data(phba, "NVMET LS DROP: xri x%x sz %d from %06x\n",
837 oxid, size, sid);
838
James Smartd613b6a2017-02-12 13:52:37 -0800839 atomic_inc(&tgtp->rcv_ls_req_drop);
840 lpfc_printf_log(phba, KERN_ERR, LOG_NVME_IOERR,
841 "6156 LS Drop IO x%x: nvmet_fc_rcv_ls_req %d\n",
842 ctxp->oxid, rc);
843
844 /* We assume a rcv'ed cmd ALWAYs fits into 1 buffer */
845 if (nvmebuf)
846 lpfc_in_buf_free(phba, &nvmebuf->dbuf);
847
848 atomic_inc(&tgtp->xmt_ls_abort);
849 lpfc_nvmet_unsol_ls_issue_abort(phba, ctxp, sid, oxid);
850}
851
852/**
853 * lpfc_nvmet_unsol_fcp_buffer - Process an unsolicited event data buffer
854 * @phba: pointer to lpfc hba data structure.
855 * @pring: pointer to a SLI ring.
856 * @nvmebuf: pointer to lpfc nvme command HBQ data structure.
857 *
858 * This routine is used for processing the WQE associated with a unsolicited
859 * event. It first determines whether there is an existing ndlp that matches
860 * the DID from the unsolicited WQE. If not, it will create a new one with
861 * the DID from the unsolicited WQE. The ELS command from the unsolicited
862 * WQE is then used to invoke the proper routine and to set up proper state
863 * of the discovery state machine.
864 **/
865static void
866lpfc_nvmet_unsol_fcp_buffer(struct lpfc_hba *phba,
867 struct lpfc_sli_ring *pring,
868 struct rqb_dmabuf *nvmebuf,
869 uint64_t isr_timestamp)
870{
871 struct lpfc_nvmet_rcv_ctx *ctxp;
872 struct lpfc_nvmet_tgtport *tgtp;
873 struct fc_frame_header *fc_hdr;
874 uint32_t *payload;
875 uint32_t size, oxid, sid, rc;
James Smart2b65e182017-02-12 13:52:38 -0800876#ifdef CONFIG_SCSI_LPFC_DEBUG_FS
877 uint32_t id;
878#endif
James Smartd613b6a2017-02-12 13:52:37 -0800879
James Smartd613b6a2017-02-12 13:52:37 -0800880 if (!nvmebuf || !phba->targetport) {
881 lpfc_printf_log(phba, KERN_ERR, LOG_NVME_IOERR,
882 "6157 FCP Drop IO\n");
James Smart2b65e182017-02-12 13:52:38 -0800883 oxid = 0;
884 size = 0;
885 sid = 0;
James Smartd613b6a2017-02-12 13:52:37 -0800886 goto dropit;
887 }
888
889
890 tgtp = (struct lpfc_nvmet_tgtport *)phba->targetport->private;
891 payload = (uint32_t *)(nvmebuf->dbuf.virt);
892 fc_hdr = (struct fc_frame_header *)(nvmebuf->hbuf.virt);
893 size = nvmebuf->bytes_recv;
894 oxid = be16_to_cpu(fc_hdr->fh_ox_id);
895 sid = sli4_sid_from_fc_hdr(fc_hdr);
896
897 ctxp = (struct lpfc_nvmet_rcv_ctx *)nvmebuf->context;
898 if (ctxp == NULL) {
899 atomic_inc(&tgtp->rcv_fcp_cmd_drop);
900 lpfc_printf_log(phba, KERN_ERR, LOG_NVME_IOERR,
901 "6158 FCP Drop IO x%x: Alloc\n",
902 oxid);
903 lpfc_nvmet_rq_post(phba, NULL, &nvmebuf->hbuf);
904 /* Cannot send ABTS without context */
905 return;
906 }
907 memset(ctxp, 0, sizeof(ctxp->ctx));
908 ctxp->wqeq = NULL;
909 ctxp->txrdy = NULL;
910 ctxp->offset = 0;
911 ctxp->phba = phba;
912 ctxp->size = size;
913 ctxp->oxid = oxid;
914 ctxp->sid = sid;
915 ctxp->state = LPFC_NVMET_STE_RCV;
916 ctxp->rqb_buffer = nvmebuf;
917 ctxp->entry_cnt = 1;
918 ctxp->flag = 0;
919
James Smart2b65e182017-02-12 13:52:38 -0800920#ifdef CONFIG_SCSI_LPFC_DEBUG_FS
921 if (phba->ktime_on) {
922 ctxp->ts_isr_cmd = isr_timestamp;
923 ctxp->ts_cmd_nvme = ktime_get_ns();
924 ctxp->ts_nvme_data = 0;
925 ctxp->ts_data_wqput = 0;
926 ctxp->ts_isr_data = 0;
927 ctxp->ts_data_nvme = 0;
928 ctxp->ts_nvme_status = 0;
929 ctxp->ts_status_wqput = 0;
930 ctxp->ts_isr_status = 0;
931 ctxp->ts_status_nvme = 0;
932 }
933
934 if (phba->cpucheck_on & LPFC_CHECK_NVMET_RCV) {
935 id = smp_processor_id();
936 if (id < LPFC_CHECK_CPU_CNT)
937 phba->cpucheck_rcv_io[id]++;
938 }
939#endif
940
941 lpfc_nvmeio_data(phba, "NVMET FCP RCV: xri x%x sz %d from %06x\n",
942 oxid, size, sid);
943
James Smartd613b6a2017-02-12 13:52:37 -0800944 atomic_inc(&tgtp->rcv_fcp_cmd_in);
945 /*
946 * The calling sequence should be:
947 * nvmet_fc_rcv_fcp_req -> lpfc_nvmet_xmt_fcp_op/cmp -> req->done
948 * lpfc_nvmet_xmt_fcp_op_cmp should free the allocated ctxp.
949 */
950 rc = nvmet_fc_rcv_fcp_req(phba->targetport, &ctxp->ctx.fcp_req,
951 payload, size);
952
953 /* Process FCP command */
954 if (rc == 0) {
955 atomic_inc(&tgtp->rcv_fcp_cmd_out);
956 return;
957 }
958
959 atomic_inc(&tgtp->rcv_fcp_cmd_drop);
960 lpfc_printf_log(phba, KERN_ERR, LOG_NVME_IOERR,
961 "6159 FCP Drop IO x%x: nvmet_fc_rcv_fcp_req x%x\n",
962 ctxp->oxid, rc);
963dropit:
James Smart2b65e182017-02-12 13:52:38 -0800964 lpfc_nvmeio_data(phba, "NVMET FCP DROP: xri x%x sz %d from %06x\n",
965 oxid, size, sid);
James Smartd613b6a2017-02-12 13:52:37 -0800966 if (oxid) {
967 lpfc_nvmet_unsol_fcp_issue_abort(phba, ctxp, sid, oxid);
968 return;
969 }
970
971 if (nvmebuf) {
972 nvmebuf->iocbq->hba_wqidx = 0;
973 /* We assume a rcv'ed cmd ALWAYs fits into 1 buffer */
974 lpfc_nvmet_rq_post(phba, NULL, &nvmebuf->hbuf);
975 }
976}
977
978/**
979 * lpfc_nvmet_unsol_ls_event - Process an unsolicited event from an nvme nport
980 * @phba: pointer to lpfc hba data structure.
981 * @pring: pointer to a SLI ring.
982 * @nvmebuf: pointer to received nvme data structure.
983 *
984 * This routine is used to process an unsolicited event received from a SLI
985 * (Service Level Interface) ring. The actual processing of the data buffer
986 * associated with the unsolicited event is done by invoking the routine
987 * lpfc_nvmet_unsol_ls_buffer() after properly set up the buffer from the
988 * SLI RQ on which the unsolicited event was received.
989 **/
990void
991lpfc_nvmet_unsol_ls_event(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
992 struct lpfc_iocbq *piocb)
993{
994 struct lpfc_dmabuf *d_buf;
995 struct hbq_dmabuf *nvmebuf;
996
997 d_buf = piocb->context2;
998 nvmebuf = container_of(d_buf, struct hbq_dmabuf, dbuf);
999
1000 if (phba->nvmet_support == 0) {
1001 lpfc_in_buf_free(phba, &nvmebuf->dbuf);
1002 return;
1003 }
1004 lpfc_nvmet_unsol_ls_buffer(phba, pring, nvmebuf);
1005}
1006
1007/**
1008 * lpfc_nvmet_unsol_fcp_event - Process an unsolicited event from an nvme nport
1009 * @phba: pointer to lpfc hba data structure.
1010 * @pring: pointer to a SLI ring.
1011 * @nvmebuf: pointer to received nvme data structure.
1012 *
1013 * This routine is used to process an unsolicited event received from a SLI
1014 * (Service Level Interface) ring. The actual processing of the data buffer
1015 * associated with the unsolicited event is done by invoking the routine
1016 * lpfc_nvmet_unsol_fcp_buffer() after properly set up the buffer from the
1017 * SLI RQ on which the unsolicited event was received.
1018 **/
1019void
1020lpfc_nvmet_unsol_fcp_event(struct lpfc_hba *phba,
1021 struct lpfc_sli_ring *pring,
1022 struct rqb_dmabuf *nvmebuf,
1023 uint64_t isr_timestamp)
1024{
1025 if (phba->nvmet_support == 0) {
1026 lpfc_nvmet_rq_post(phba, NULL, &nvmebuf->hbuf);
1027 return;
1028 }
1029 lpfc_nvmet_unsol_fcp_buffer(phba, pring, nvmebuf,
1030 isr_timestamp);
1031}
1032
1033/**
1034 * lpfc_nvmet_prep_ls_wqe - Allocate and prepare a lpfc wqe data structure
1035 * @phba: pointer to a host N_Port data structure.
1036 * @ctxp: Context info for NVME LS Request
1037 * @rspbuf: DMA buffer of NVME command.
1038 * @rspsize: size of the NVME command.
1039 *
1040 * This routine is used for allocating a lpfc-WQE data structure from
1041 * the driver lpfc-WQE free-list and prepare the WQE with the parameters
1042 * passed into the routine for discovery state machine to issue an Extended
1043 * Link Service (NVME) commands. It is a generic lpfc-WQE allocation
1044 * and preparation routine that is used by all the discovery state machine
1045 * routines and the NVME command-specific fields will be later set up by
1046 * the individual discovery machine routines after calling this routine
1047 * allocating and preparing a generic WQE data structure. It fills in the
1048 * Buffer Descriptor Entries (BDEs), allocates buffers for both command
1049 * payload and response payload (if expected). The reference count on the
1050 * ndlp is incremented by 1 and the reference to the ndlp is put into
1051 * context1 of the WQE data structure for this WQE to hold the ndlp
1052 * reference for the command's callback function to access later.
1053 *
1054 * Return code
1055 * Pointer to the newly allocated/prepared nvme wqe data structure
1056 * NULL - when nvme wqe data structure allocation/preparation failed
1057 **/
1058static struct lpfc_iocbq *
1059lpfc_nvmet_prep_ls_wqe(struct lpfc_hba *phba,
1060 struct lpfc_nvmet_rcv_ctx *ctxp,
1061 dma_addr_t rspbuf, uint16_t rspsize)
1062{
1063 struct lpfc_nodelist *ndlp;
1064 struct lpfc_iocbq *nvmewqe;
1065 union lpfc_wqe *wqe;
1066
1067 if (!lpfc_is_link_up(phba)) {
1068 lpfc_printf_log(phba, KERN_ERR, LOG_NVME_DISC,
1069 "6104 lpfc_nvmet_prep_ls_wqe: link err: "
1070 "NPORT x%x oxid:x%x\n",
1071 ctxp->sid, ctxp->oxid);
1072 return NULL;
1073 }
1074
1075 /* Allocate buffer for command wqe */
1076 nvmewqe = lpfc_sli_get_iocbq(phba);
1077 if (nvmewqe == NULL) {
1078 lpfc_printf_log(phba, KERN_ERR, LOG_NVME_DISC,
1079 "6105 lpfc_nvmet_prep_ls_wqe: No WQE: "
1080 "NPORT x%x oxid:x%x\n",
1081 ctxp->sid, ctxp->oxid);
1082 return NULL;
1083 }
1084
1085 ndlp = lpfc_findnode_did(phba->pport, ctxp->sid);
1086 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp) ||
1087 ((ndlp->nlp_state != NLP_STE_UNMAPPED_NODE) &&
1088 (ndlp->nlp_state != NLP_STE_MAPPED_NODE))) {
1089 lpfc_printf_log(phba, KERN_ERR, LOG_NVME_DISC,
1090 "6106 lpfc_nvmet_prep_ls_wqe: No ndlp: "
1091 "NPORT x%x oxid:x%x\n",
1092 ctxp->sid, ctxp->oxid);
1093 goto nvme_wqe_free_wqeq_exit;
1094 }
1095 ctxp->wqeq = nvmewqe;
1096
1097 /* prevent preparing wqe with NULL ndlp reference */
1098 nvmewqe->context1 = lpfc_nlp_get(ndlp);
1099 if (nvmewqe->context1 == NULL)
1100 goto nvme_wqe_free_wqeq_exit;
1101 nvmewqe->context2 = ctxp;
1102
1103 wqe = &nvmewqe->wqe;
1104 memset(wqe, 0, sizeof(union lpfc_wqe));
1105
1106 /* Words 0 - 2 */
1107 wqe->xmit_sequence.bde.tus.f.bdeFlags = BUFF_TYPE_BDE_64;
1108 wqe->xmit_sequence.bde.tus.f.bdeSize = rspsize;
1109 wqe->xmit_sequence.bde.addrLow = le32_to_cpu(putPaddrLow(rspbuf));
1110 wqe->xmit_sequence.bde.addrHigh = le32_to_cpu(putPaddrHigh(rspbuf));
1111
1112 /* Word 3 */
1113
1114 /* Word 4 */
1115
1116 /* Word 5 */
1117 bf_set(wqe_dfctl, &wqe->xmit_sequence.wge_ctl, 0);
1118 bf_set(wqe_ls, &wqe->xmit_sequence.wge_ctl, 1);
1119 bf_set(wqe_la, &wqe->xmit_sequence.wge_ctl, 0);
James Smart8b361632017-03-04 09:30:26 -08001120 bf_set(wqe_rctl, &wqe->xmit_sequence.wge_ctl, FC_RCTL_ELS4_REP);
James Smartd613b6a2017-02-12 13:52:37 -08001121 bf_set(wqe_type, &wqe->xmit_sequence.wge_ctl, FC_TYPE_NVME);
1122
1123 /* Word 6 */
1124 bf_set(wqe_ctxt_tag, &wqe->xmit_sequence.wqe_com,
1125 phba->sli4_hba.rpi_ids[ndlp->nlp_rpi]);
1126 bf_set(wqe_xri_tag, &wqe->xmit_sequence.wqe_com, nvmewqe->sli4_xritag);
1127
1128 /* Word 7 */
1129 bf_set(wqe_cmnd, &wqe->xmit_sequence.wqe_com,
1130 CMD_XMIT_SEQUENCE64_WQE);
1131 bf_set(wqe_ct, &wqe->xmit_sequence.wqe_com, SLI4_CT_RPI);
1132 bf_set(wqe_class, &wqe->xmit_sequence.wqe_com, CLASS3);
1133 bf_set(wqe_pu, &wqe->xmit_sequence.wqe_com, 0);
1134
1135 /* Word 8 */
1136 wqe->xmit_sequence.wqe_com.abort_tag = nvmewqe->iotag;
1137
1138 /* Word 9 */
1139 bf_set(wqe_reqtag, &wqe->xmit_sequence.wqe_com, nvmewqe->iotag);
1140 /* Needs to be set by caller */
1141 bf_set(wqe_rcvoxid, &wqe->xmit_sequence.wqe_com, ctxp->oxid);
1142
1143 /* Word 10 */
1144 bf_set(wqe_dbde, &wqe->xmit_sequence.wqe_com, 1);
1145 bf_set(wqe_iod, &wqe->xmit_sequence.wqe_com, LPFC_WQE_IOD_WRITE);
1146 bf_set(wqe_lenloc, &wqe->xmit_sequence.wqe_com,
1147 LPFC_WQE_LENLOC_WORD12);
1148 bf_set(wqe_ebde_cnt, &wqe->xmit_sequence.wqe_com, 0);
1149
1150 /* Word 11 */
1151 bf_set(wqe_cqid, &wqe->xmit_sequence.wqe_com,
1152 LPFC_WQE_CQ_ID_DEFAULT);
1153 bf_set(wqe_cmd_type, &wqe->xmit_sequence.wqe_com,
1154 OTHER_COMMAND);
1155
1156 /* Word 12 */
1157 wqe->xmit_sequence.xmit_len = rspsize;
1158
1159 nvmewqe->retry = 1;
1160 nvmewqe->vport = phba->pport;
1161 nvmewqe->drvrTimeout = (phba->fc_ratov * 3) + LPFC_DRVR_TIMEOUT;
1162 nvmewqe->iocb_flag |= LPFC_IO_NVME_LS;
1163
1164 /* Xmit NVME response to remote NPORT <did> */
1165 lpfc_printf_log(phba, KERN_INFO, LOG_NVME_DISC,
1166 "6039 Xmit NVME LS response to remote "
1167 "NPORT x%x iotag:x%x oxid:x%x size:x%x\n",
1168 ndlp->nlp_DID, nvmewqe->iotag, ctxp->oxid,
1169 rspsize);
1170 return nvmewqe;
1171
1172nvme_wqe_free_wqeq_exit:
1173 nvmewqe->context2 = NULL;
1174 nvmewqe->context3 = NULL;
1175 lpfc_sli_release_iocbq(phba, nvmewqe);
1176 return NULL;
1177}
1178
1179
1180static struct lpfc_iocbq *
1181lpfc_nvmet_prep_fcp_wqe(struct lpfc_hba *phba,
1182 struct lpfc_nvmet_rcv_ctx *ctxp)
1183{
1184 struct nvmefc_tgt_fcp_req *rsp = &ctxp->ctx.fcp_req;
1185 struct lpfc_nvmet_tgtport *tgtp;
1186 struct sli4_sge *sgl;
1187 struct lpfc_nodelist *ndlp;
1188 struct lpfc_iocbq *nvmewqe;
1189 struct scatterlist *sgel;
1190 union lpfc_wqe128 *wqe;
1191 uint32_t *txrdy;
1192 dma_addr_t physaddr;
1193 int i, cnt;
1194 int xc = 1;
1195
1196 if (!lpfc_is_link_up(phba)) {
1197 lpfc_printf_log(phba, KERN_ERR, LOG_NVME_IOERR,
1198 "6107 lpfc_nvmet_prep_fcp_wqe: link err:"
1199 "NPORT x%x oxid:x%x\n", ctxp->sid,
1200 ctxp->oxid);
1201 return NULL;
1202 }
1203
1204 ndlp = lpfc_findnode_did(phba->pport, ctxp->sid);
1205 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp) ||
1206 ((ndlp->nlp_state != NLP_STE_UNMAPPED_NODE) &&
1207 (ndlp->nlp_state != NLP_STE_MAPPED_NODE))) {
1208 lpfc_printf_log(phba, KERN_ERR, LOG_NVME_IOERR,
1209 "6108 lpfc_nvmet_prep_fcp_wqe: no ndlp: "
1210 "NPORT x%x oxid:x%x\n",
1211 ctxp->sid, ctxp->oxid);
1212 return NULL;
1213 }
1214
1215 if (rsp->sg_cnt > phba->cfg_sg_seg_cnt) {
1216 lpfc_printf_log(phba, KERN_ERR, LOG_NVME_IOERR,
1217 "6109 lpfc_nvmet_prep_fcp_wqe: seg cnt err: "
1218 "NPORT x%x oxid:x%x\n",
1219 ctxp->sid, ctxp->oxid);
1220 return NULL;
1221 }
1222
1223 tgtp = (struct lpfc_nvmet_tgtport *)phba->targetport->private;
1224 nvmewqe = ctxp->wqeq;
1225 if (nvmewqe == NULL) {
1226 /* Allocate buffer for command wqe */
1227 nvmewqe = ctxp->rqb_buffer->iocbq;
1228 if (nvmewqe == NULL) {
1229 lpfc_printf_log(phba, KERN_ERR, LOG_NVME_IOERR,
1230 "6110 lpfc_nvmet_prep_fcp_wqe: No "
1231 "WQE: NPORT x%x oxid:x%x\n",
1232 ctxp->sid, ctxp->oxid);
1233 return NULL;
1234 }
1235 ctxp->wqeq = nvmewqe;
1236 xc = 0; /* create new XRI */
1237 nvmewqe->sli4_lxritag = NO_XRI;
1238 nvmewqe->sli4_xritag = NO_XRI;
1239 }
1240
1241 /* Sanity check */
1242 if (((ctxp->state == LPFC_NVMET_STE_RCV) &&
1243 (ctxp->entry_cnt == 1)) ||
1244 ((ctxp->state == LPFC_NVMET_STE_DATA) &&
1245 (ctxp->entry_cnt > 1))) {
1246 wqe = (union lpfc_wqe128 *)&nvmewqe->wqe;
1247 } else {
1248 lpfc_printf_log(phba, KERN_ERR, LOG_NVME_IOERR,
1249 "6111 Wrong state %s: %d cnt %d\n",
1250 __func__, ctxp->state, ctxp->entry_cnt);
1251 return NULL;
1252 }
1253
1254 sgl = (struct sli4_sge *)ctxp->rqb_buffer->sglq->sgl;
1255 switch (rsp->op) {
1256 case NVMET_FCOP_READDATA:
1257 case NVMET_FCOP_READDATA_RSP:
1258 /* Words 0 - 2 : The first sg segment */
1259 sgel = &rsp->sg[0];
1260 physaddr = sg_dma_address(sgel);
1261 wqe->fcp_tsend.bde.tus.f.bdeFlags = BUFF_TYPE_BDE_64;
1262 wqe->fcp_tsend.bde.tus.f.bdeSize = sg_dma_len(sgel);
1263 wqe->fcp_tsend.bde.addrLow = cpu_to_le32(putPaddrLow(physaddr));
1264 wqe->fcp_tsend.bde.addrHigh =
1265 cpu_to_le32(putPaddrHigh(physaddr));
1266
1267 /* Word 3 */
1268 wqe->fcp_tsend.payload_offset_len = 0;
1269
1270 /* Word 4 */
1271 wqe->fcp_tsend.relative_offset = ctxp->offset;
1272
1273 /* Word 5 */
1274
1275 /* Word 6 */
1276 bf_set(wqe_ctxt_tag, &wqe->fcp_tsend.wqe_com,
1277 phba->sli4_hba.rpi_ids[ndlp->nlp_rpi]);
1278 bf_set(wqe_xri_tag, &wqe->fcp_tsend.wqe_com,
1279 nvmewqe->sli4_xritag);
1280
1281 /* Word 7 */
1282 bf_set(wqe_cmnd, &wqe->fcp_tsend.wqe_com, CMD_FCP_TSEND64_WQE);
1283
1284 /* Word 8 */
1285 wqe->fcp_tsend.wqe_com.abort_tag = nvmewqe->iotag;
1286
1287 /* Word 9 */
1288 bf_set(wqe_reqtag, &wqe->fcp_tsend.wqe_com, nvmewqe->iotag);
1289 bf_set(wqe_rcvoxid, &wqe->fcp_tsend.wqe_com, ctxp->oxid);
1290
1291 /* Word 10 */
1292 bf_set(wqe_nvme, &wqe->fcp_tsend.wqe_com, 1);
1293 bf_set(wqe_dbde, &wqe->fcp_tsend.wqe_com, 1);
1294 bf_set(wqe_iod, &wqe->fcp_tsend.wqe_com, LPFC_WQE_IOD_WRITE);
1295 bf_set(wqe_lenloc, &wqe->fcp_tsend.wqe_com,
1296 LPFC_WQE_LENLOC_WORD12);
1297 bf_set(wqe_ebde_cnt, &wqe->fcp_tsend.wqe_com, 0);
1298 bf_set(wqe_xc, &wqe->fcp_tsend.wqe_com, xc);
1299 bf_set(wqe_nvme, &wqe->fcp_tsend.wqe_com, 1);
1300 if (phba->cfg_nvme_oas)
1301 bf_set(wqe_oas, &wqe->fcp_tsend.wqe_com, 1);
1302
1303 /* Word 11 */
1304 bf_set(wqe_cqid, &wqe->fcp_tsend.wqe_com,
1305 LPFC_WQE_CQ_ID_DEFAULT);
1306 bf_set(wqe_cmd_type, &wqe->fcp_tsend.wqe_com,
1307 FCP_COMMAND_TSEND);
1308
1309 /* Word 12 */
1310 wqe->fcp_tsend.fcp_data_len = rsp->transfer_length;
1311
1312 /* Setup 2 SKIP SGEs */
1313 sgl->addr_hi = 0;
1314 sgl->addr_lo = 0;
1315 sgl->word2 = 0;
1316 bf_set(lpfc_sli4_sge_type, sgl, LPFC_SGE_TYPE_SKIP);
1317 sgl->word2 = cpu_to_le32(sgl->word2);
1318 sgl->sge_len = 0;
1319 sgl++;
1320 sgl->addr_hi = 0;
1321 sgl->addr_lo = 0;
1322 sgl->word2 = 0;
1323 bf_set(lpfc_sli4_sge_type, sgl, LPFC_SGE_TYPE_SKIP);
1324 sgl->word2 = cpu_to_le32(sgl->word2);
1325 sgl->sge_len = 0;
1326 sgl++;
1327 if (rsp->op == NVMET_FCOP_READDATA_RSP) {
1328 atomic_inc(&tgtp->xmt_fcp_read_rsp);
1329 bf_set(wqe_ar, &wqe->fcp_tsend.wqe_com, 1);
1330 if ((ndlp->nlp_flag & NLP_SUPPRESS_RSP) &&
1331 (rsp->rsplen == 12)) {
1332 bf_set(wqe_sup, &wqe->fcp_tsend.wqe_com, 1);
1333 bf_set(wqe_wqes, &wqe->fcp_tsend.wqe_com, 0);
1334 bf_set(wqe_irsp, &wqe->fcp_tsend.wqe_com, 0);
1335 bf_set(wqe_irsplen, &wqe->fcp_tsend.wqe_com, 0);
1336 } else {
1337 bf_set(wqe_sup, &wqe->fcp_tsend.wqe_com, 0);
1338 bf_set(wqe_wqes, &wqe->fcp_tsend.wqe_com, 1);
1339 bf_set(wqe_irsp, &wqe->fcp_tsend.wqe_com, 1);
1340 bf_set(wqe_irsplen, &wqe->fcp_tsend.wqe_com,
1341 ((rsp->rsplen >> 2) - 1));
1342 memcpy(&wqe->words[16], rsp->rspaddr,
1343 rsp->rsplen);
1344 }
1345 } else {
1346 atomic_inc(&tgtp->xmt_fcp_read);
1347
1348 bf_set(wqe_sup, &wqe->fcp_tsend.wqe_com, 0);
1349 bf_set(wqe_wqes, &wqe->fcp_tsend.wqe_com, 0);
1350 bf_set(wqe_irsp, &wqe->fcp_tsend.wqe_com, 0);
1351 bf_set(wqe_ar, &wqe->fcp_tsend.wqe_com, 0);
1352 bf_set(wqe_irsplen, &wqe->fcp_tsend.wqe_com, 0);
1353 }
1354 ctxp->state = LPFC_NVMET_STE_DATA;
1355 break;
1356
1357 case NVMET_FCOP_WRITEDATA:
1358 /* Words 0 - 2 : The first sg segment */
1359 txrdy = pci_pool_alloc(phba->txrdy_payload_pool,
1360 GFP_KERNEL, &physaddr);
1361 if (!txrdy) {
1362 lpfc_printf_log(phba, KERN_ERR, LOG_NVME_IOERR,
1363 "6041 Bad txrdy buffer: oxid x%x\n",
1364 ctxp->oxid);
1365 return NULL;
1366 }
1367 ctxp->txrdy = txrdy;
1368 ctxp->txrdy_phys = physaddr;
1369 wqe->fcp_treceive.bde.tus.f.bdeFlags = BUFF_TYPE_BDE_64;
1370 wqe->fcp_treceive.bde.tus.f.bdeSize = TXRDY_PAYLOAD_LEN;
1371 wqe->fcp_treceive.bde.addrLow =
1372 cpu_to_le32(putPaddrLow(physaddr));
1373 wqe->fcp_treceive.bde.addrHigh =
1374 cpu_to_le32(putPaddrHigh(physaddr));
1375
1376 /* Word 3 */
1377 wqe->fcp_treceive.payload_offset_len = TXRDY_PAYLOAD_LEN;
1378
1379 /* Word 4 */
1380 wqe->fcp_treceive.relative_offset = ctxp->offset;
1381
1382 /* Word 5 */
1383
1384 /* Word 6 */
1385 bf_set(wqe_ctxt_tag, &wqe->fcp_treceive.wqe_com,
1386 phba->sli4_hba.rpi_ids[ndlp->nlp_rpi]);
1387 bf_set(wqe_xri_tag, &wqe->fcp_treceive.wqe_com,
1388 nvmewqe->sli4_xritag);
1389
1390 /* Word 7 */
1391 bf_set(wqe_ar, &wqe->fcp_treceive.wqe_com, 0);
1392 bf_set(wqe_cmnd, &wqe->fcp_treceive.wqe_com,
1393 CMD_FCP_TRECEIVE64_WQE);
1394
1395 /* Word 8 */
1396 wqe->fcp_treceive.wqe_com.abort_tag = nvmewqe->iotag;
1397
1398 /* Word 9 */
1399 bf_set(wqe_reqtag, &wqe->fcp_treceive.wqe_com, nvmewqe->iotag);
1400 bf_set(wqe_rcvoxid, &wqe->fcp_treceive.wqe_com, ctxp->oxid);
1401
1402 /* Word 10 */
1403 bf_set(wqe_nvme, &wqe->fcp_treceive.wqe_com, 1);
1404 bf_set(wqe_dbde, &wqe->fcp_treceive.wqe_com, 1);
1405 bf_set(wqe_iod, &wqe->fcp_treceive.wqe_com, LPFC_WQE_IOD_READ);
1406 bf_set(wqe_lenloc, &wqe->fcp_treceive.wqe_com,
1407 LPFC_WQE_LENLOC_WORD12);
1408 bf_set(wqe_xc, &wqe->fcp_treceive.wqe_com, xc);
1409 bf_set(wqe_wqes, &wqe->fcp_treceive.wqe_com, 0);
1410 bf_set(wqe_irsp, &wqe->fcp_treceive.wqe_com, 0);
1411 bf_set(wqe_irsplen, &wqe->fcp_treceive.wqe_com, 0);
1412 bf_set(wqe_nvme, &wqe->fcp_treceive.wqe_com, 1);
1413 if (phba->cfg_nvme_oas)
1414 bf_set(wqe_oas, &wqe->fcp_treceive.wqe_com, 1);
1415
1416 /* Word 11 */
1417 bf_set(wqe_cqid, &wqe->fcp_treceive.wqe_com,
1418 LPFC_WQE_CQ_ID_DEFAULT);
1419 bf_set(wqe_cmd_type, &wqe->fcp_treceive.wqe_com,
1420 FCP_COMMAND_TRECEIVE);
1421 bf_set(wqe_sup, &wqe->fcp_tsend.wqe_com, 0);
1422
1423 /* Word 12 */
1424 wqe->fcp_tsend.fcp_data_len = rsp->transfer_length;
1425
1426 /* Setup 1 TXRDY and 1 SKIP SGE */
1427 txrdy[0] = 0;
1428 txrdy[1] = cpu_to_be32(rsp->transfer_length);
1429 txrdy[2] = 0;
1430
1431 sgl->addr_hi = putPaddrHigh(physaddr);
1432 sgl->addr_lo = putPaddrLow(physaddr);
1433 sgl->word2 = 0;
1434 bf_set(lpfc_sli4_sge_type, sgl, LPFC_SGE_TYPE_DATA);
1435 sgl->word2 = cpu_to_le32(sgl->word2);
1436 sgl->sge_len = cpu_to_le32(TXRDY_PAYLOAD_LEN);
1437 sgl++;
1438 sgl->addr_hi = 0;
1439 sgl->addr_lo = 0;
1440 sgl->word2 = 0;
1441 bf_set(lpfc_sli4_sge_type, sgl, LPFC_SGE_TYPE_SKIP);
1442 sgl->word2 = cpu_to_le32(sgl->word2);
1443 sgl->sge_len = 0;
1444 sgl++;
1445 ctxp->state = LPFC_NVMET_STE_DATA;
1446 atomic_inc(&tgtp->xmt_fcp_write);
1447 break;
1448
1449 case NVMET_FCOP_RSP:
1450 /* Words 0 - 2 */
James Smartd613b6a2017-02-12 13:52:37 -08001451 physaddr = rsp->rspdma;
1452 wqe->fcp_trsp.bde.tus.f.bdeFlags = BUFF_TYPE_BDE_64;
1453 wqe->fcp_trsp.bde.tus.f.bdeSize = rsp->rsplen;
1454 wqe->fcp_trsp.bde.addrLow =
1455 cpu_to_le32(putPaddrLow(physaddr));
1456 wqe->fcp_trsp.bde.addrHigh =
1457 cpu_to_le32(putPaddrHigh(physaddr));
1458
1459 /* Word 3 */
1460 wqe->fcp_trsp.response_len = rsp->rsplen;
1461
1462 /* Word 4 */
1463 wqe->fcp_trsp.rsvd_4_5[0] = 0;
1464
1465
1466 /* Word 5 */
1467
1468 /* Word 6 */
1469 bf_set(wqe_ctxt_tag, &wqe->fcp_trsp.wqe_com,
1470 phba->sli4_hba.rpi_ids[ndlp->nlp_rpi]);
1471 bf_set(wqe_xri_tag, &wqe->fcp_trsp.wqe_com,
1472 nvmewqe->sli4_xritag);
1473
1474 /* Word 7 */
1475 bf_set(wqe_ag, &wqe->fcp_trsp.wqe_com, 1);
1476 bf_set(wqe_cmnd, &wqe->fcp_trsp.wqe_com, CMD_FCP_TRSP64_WQE);
1477
1478 /* Word 8 */
1479 wqe->fcp_trsp.wqe_com.abort_tag = nvmewqe->iotag;
1480
1481 /* Word 9 */
1482 bf_set(wqe_reqtag, &wqe->fcp_trsp.wqe_com, nvmewqe->iotag);
1483 bf_set(wqe_rcvoxid, &wqe->fcp_trsp.wqe_com, ctxp->oxid);
1484
1485 /* Word 10 */
1486 bf_set(wqe_nvme, &wqe->fcp_trsp.wqe_com, 1);
1487 bf_set(wqe_dbde, &wqe->fcp_trsp.wqe_com, 0);
1488 bf_set(wqe_iod, &wqe->fcp_trsp.wqe_com, LPFC_WQE_IOD_WRITE);
1489 bf_set(wqe_lenloc, &wqe->fcp_trsp.wqe_com,
1490 LPFC_WQE_LENLOC_WORD3);
1491 bf_set(wqe_xc, &wqe->fcp_trsp.wqe_com, xc);
1492 bf_set(wqe_nvme, &wqe->fcp_trsp.wqe_com, 1);
1493 if (phba->cfg_nvme_oas)
1494 bf_set(wqe_oas, &wqe->fcp_trsp.wqe_com, 1);
1495
1496 /* Word 11 */
1497 bf_set(wqe_cqid, &wqe->fcp_trsp.wqe_com,
1498 LPFC_WQE_CQ_ID_DEFAULT);
1499 bf_set(wqe_cmd_type, &wqe->fcp_trsp.wqe_com,
1500 FCP_COMMAND_TRSP);
1501 bf_set(wqe_sup, &wqe->fcp_tsend.wqe_com, 0);
1502 ctxp->state = LPFC_NVMET_STE_RSP;
1503
1504 if (rsp->rsplen == LPFC_NVMET_SUCCESS_LEN) {
1505 /* Good response - all zero's on wire */
1506 bf_set(wqe_wqes, &wqe->fcp_trsp.wqe_com, 0);
1507 bf_set(wqe_irsp, &wqe->fcp_trsp.wqe_com, 0);
1508 bf_set(wqe_irsplen, &wqe->fcp_trsp.wqe_com, 0);
1509 } else {
1510 bf_set(wqe_wqes, &wqe->fcp_trsp.wqe_com, 1);
1511 bf_set(wqe_irsp, &wqe->fcp_trsp.wqe_com, 1);
1512 bf_set(wqe_irsplen, &wqe->fcp_trsp.wqe_com,
1513 ((rsp->rsplen >> 2) - 1));
1514 memcpy(&wqe->words[16], rsp->rspaddr, rsp->rsplen);
1515 }
1516
1517 /* Use rspbuf, NOT sg list */
1518 rsp->sg_cnt = 0;
1519 sgl->word2 = 0;
1520 atomic_inc(&tgtp->xmt_fcp_rsp);
1521 break;
1522
1523 default:
1524 lpfc_printf_log(phba, KERN_INFO, LOG_NVME_IOERR,
1525 "6064 Unknown Rsp Op %d\n",
1526 rsp->op);
1527 return NULL;
1528 }
1529
1530 nvmewqe->retry = 1;
1531 nvmewqe->vport = phba->pport;
1532 nvmewqe->drvrTimeout = (phba->fc_ratov * 3) + LPFC_DRVR_TIMEOUT;
1533 nvmewqe->context1 = ndlp;
1534
1535 for (i = 0; i < rsp->sg_cnt; i++) {
1536 sgel = &rsp->sg[i];
1537 physaddr = sg_dma_address(sgel);
1538 cnt = sg_dma_len(sgel);
1539 sgl->addr_hi = putPaddrHigh(physaddr);
1540 sgl->addr_lo = putPaddrLow(physaddr);
1541 sgl->word2 = 0;
1542 bf_set(lpfc_sli4_sge_type, sgl, LPFC_SGE_TYPE_DATA);
1543 bf_set(lpfc_sli4_sge_offset, sgl, ctxp->offset);
1544 if ((i+1) == rsp->sg_cnt)
1545 bf_set(lpfc_sli4_sge_last, sgl, 1);
1546 sgl->word2 = cpu_to_le32(sgl->word2);
1547 sgl->sge_len = cpu_to_le32(cnt);
1548 sgl++;
1549 ctxp->offset += cnt;
1550 }
1551 return nvmewqe;
1552}
1553
1554/**
1555 * lpfc_nvmet_sol_fcp_abort_cmp - Completion handler for ABTS
1556 * @phba: Pointer to HBA context object.
1557 * @cmdwqe: Pointer to driver command WQE object.
1558 * @wcqe: Pointer to driver response CQE object.
1559 *
1560 * The function is called from SLI ring event handler with no
1561 * lock held. This function is the completion handler for NVME ABTS for FCP cmds
1562 * The function frees memory resources used for the NVME commands.
1563 **/
1564static void
1565lpfc_nvmet_sol_fcp_abort_cmp(struct lpfc_hba *phba, struct lpfc_iocbq *cmdwqe,
1566 struct lpfc_wcqe_complete *wcqe)
1567{
1568 struct lpfc_nvmet_rcv_ctx *ctxp;
1569 struct lpfc_nvmet_tgtport *tgtp;
1570 uint32_t status, result;
1571
1572 ctxp = cmdwqe->context2;
1573 status = bf_get(lpfc_wcqe_c_status, wcqe);
1574 result = wcqe->parameter;
1575
1576 tgtp = (struct lpfc_nvmet_tgtport *)phba->targetport->private;
1577 atomic_inc(&tgtp->xmt_abort_cmpl);
1578
1579 lpfc_printf_log(phba, KERN_ERR, LOG_NVME_ABTS,
1580 "6165 Abort cmpl: xri x%x WCQE: %08x %08x %08x %08x\n",
1581 ctxp->oxid, wcqe->word0, wcqe->total_data_placed,
1582 result, wcqe->word3);
1583
1584 ctxp->state = LPFC_NVMET_STE_DONE;
1585 lpfc_nvmet_rq_post(phba, ctxp, &ctxp->rqb_buffer->hbuf);
1586
1587 cmdwqe->context2 = NULL;
1588 cmdwqe->context3 = NULL;
1589 lpfc_sli_release_iocbq(phba, cmdwqe);
1590}
1591
1592/**
1593 * lpfc_nvmet_xmt_fcp_abort_cmp - Completion handler for ABTS
1594 * @phba: Pointer to HBA context object.
1595 * @cmdwqe: Pointer to driver command WQE object.
1596 * @wcqe: Pointer to driver response CQE object.
1597 *
1598 * The function is called from SLI ring event handler with no
1599 * lock held. This function is the completion handler for NVME ABTS for FCP cmds
1600 * The function frees memory resources used for the NVME commands.
1601 **/
1602static void
1603lpfc_nvmet_xmt_fcp_abort_cmp(struct lpfc_hba *phba, struct lpfc_iocbq *cmdwqe,
1604 struct lpfc_wcqe_complete *wcqe)
1605{
1606 struct lpfc_nvmet_rcv_ctx *ctxp;
1607 struct lpfc_nvmet_tgtport *tgtp;
1608 uint32_t status, result;
1609
1610 ctxp = cmdwqe->context2;
1611 status = bf_get(lpfc_wcqe_c_status, wcqe);
1612 result = wcqe->parameter;
1613
1614 tgtp = (struct lpfc_nvmet_tgtport *)phba->targetport->private;
1615 atomic_inc(&tgtp->xmt_abort_cmpl);
1616
1617 lpfc_printf_log(phba, KERN_INFO, LOG_NVME_ABTS,
1618 "6070 Abort cmpl: ctx %p WCQE: %08x %08x %08x %08x\n",
1619 ctxp, wcqe->word0, wcqe->total_data_placed,
1620 result, wcqe->word3);
1621
1622 if (ctxp) {
1623 /* Sanity check */
1624 if (ctxp->state != LPFC_NVMET_STE_ABORT) {
1625 lpfc_printf_log(phba, KERN_ERR, LOG_NVME_ABTS,
1626 "6112 ABORT Wrong state:%d oxid x%x\n",
1627 ctxp->state, ctxp->oxid);
1628 }
1629 ctxp->state = LPFC_NVMET_STE_DONE;
1630 lpfc_nvmet_rq_post(phba, ctxp, &ctxp->rqb_buffer->hbuf);
1631 cmdwqe->context2 = NULL;
1632 cmdwqe->context3 = NULL;
1633 }
1634}
1635
1636/**
1637 * lpfc_nvmet_xmt_ls_abort_cmp - Completion handler for ABTS
1638 * @phba: Pointer to HBA context object.
1639 * @cmdwqe: Pointer to driver command WQE object.
1640 * @wcqe: Pointer to driver response CQE object.
1641 *
1642 * The function is called from SLI ring event handler with no
1643 * lock held. This function is the completion handler for NVME ABTS for LS cmds
1644 * The function frees memory resources used for the NVME commands.
1645 **/
1646static void
1647lpfc_nvmet_xmt_ls_abort_cmp(struct lpfc_hba *phba, struct lpfc_iocbq *cmdwqe,
1648 struct lpfc_wcqe_complete *wcqe)
1649{
1650 struct lpfc_nvmet_rcv_ctx *ctxp;
1651 struct lpfc_nvmet_tgtport *tgtp;
1652 uint32_t status, result;
1653
1654 ctxp = cmdwqe->context2;
1655 status = bf_get(lpfc_wcqe_c_status, wcqe);
1656 result = wcqe->parameter;
1657
1658 tgtp = (struct lpfc_nvmet_tgtport *)phba->targetport->private;
1659 atomic_inc(&tgtp->xmt_abort_cmpl);
1660
1661 lpfc_printf_log(phba, KERN_INFO, LOG_NVME_ABTS,
1662 "6083 Abort cmpl: ctx %p WCQE: %08x %08x %08x %08x\n",
1663 ctxp, wcqe->word0, wcqe->total_data_placed,
1664 result, wcqe->word3);
1665
1666 if (ctxp) {
1667 cmdwqe->context2 = NULL;
1668 cmdwqe->context3 = NULL;
1669 lpfc_sli_release_iocbq(phba, cmdwqe);
1670 kfree(ctxp);
1671 } else
1672 lpfc_sli_release_iocbq(phba, cmdwqe);
1673}
1674
1675static int
1676lpfc_nvmet_unsol_issue_abort(struct lpfc_hba *phba,
1677 struct lpfc_nvmet_rcv_ctx *ctxp,
1678 uint32_t sid, uint16_t xri)
1679{
1680 struct lpfc_nvmet_tgtport *tgtp;
1681 struct lpfc_iocbq *abts_wqeq;
1682 union lpfc_wqe *wqe_abts;
1683 struct lpfc_nodelist *ndlp;
1684
1685 lpfc_printf_log(phba, KERN_INFO, LOG_NVME_ABTS,
1686 "6067 %s: Entrypoint: sid %x xri %x\n", __func__,
1687 sid, xri);
1688
1689 tgtp = (struct lpfc_nvmet_tgtport *)phba->targetport->private;
1690
1691 ndlp = lpfc_findnode_did(phba->pport, sid);
1692 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp) ||
1693 ((ndlp->nlp_state != NLP_STE_UNMAPPED_NODE) &&
1694 (ndlp->nlp_state != NLP_STE_MAPPED_NODE))) {
1695 atomic_inc(&tgtp->xmt_abort_rsp_error);
1696 lpfc_printf_log(phba, KERN_WARNING, LOG_NVME_ABTS,
1697 "6134 Drop ABTS - wrong NDLP state x%x.\n",
1698 ndlp->nlp_state);
1699
1700 /* No failure to an ABTS request. */
1701 return 0;
1702 }
1703
1704 abts_wqeq = ctxp->wqeq;
1705 wqe_abts = &abts_wqeq->wqe;
1706 ctxp->state = LPFC_NVMET_STE_ABORT;
1707
1708 /*
1709 * Since we zero the whole WQE, we need to ensure we set the WQE fields
1710 * that were initialized in lpfc_sli4_nvmet_alloc.
1711 */
1712 memset(wqe_abts, 0, sizeof(union lpfc_wqe));
1713
1714 /* Word 5 */
1715 bf_set(wqe_dfctl, &wqe_abts->xmit_sequence.wge_ctl, 0);
1716 bf_set(wqe_ls, &wqe_abts->xmit_sequence.wge_ctl, 1);
1717 bf_set(wqe_la, &wqe_abts->xmit_sequence.wge_ctl, 0);
1718 bf_set(wqe_rctl, &wqe_abts->xmit_sequence.wge_ctl, FC_RCTL_BA_ABTS);
1719 bf_set(wqe_type, &wqe_abts->xmit_sequence.wge_ctl, FC_TYPE_BLS);
1720
1721 /* Word 6 */
1722 bf_set(wqe_ctxt_tag, &wqe_abts->xmit_sequence.wqe_com,
1723 phba->sli4_hba.rpi_ids[ndlp->nlp_rpi]);
1724 bf_set(wqe_xri_tag, &wqe_abts->xmit_sequence.wqe_com,
1725 abts_wqeq->sli4_xritag);
1726
1727 /* Word 7 */
1728 bf_set(wqe_cmnd, &wqe_abts->xmit_sequence.wqe_com,
1729 CMD_XMIT_SEQUENCE64_WQE);
1730 bf_set(wqe_ct, &wqe_abts->xmit_sequence.wqe_com, SLI4_CT_RPI);
1731 bf_set(wqe_class, &wqe_abts->xmit_sequence.wqe_com, CLASS3);
1732 bf_set(wqe_pu, &wqe_abts->xmit_sequence.wqe_com, 0);
1733
1734 /* Word 8 */
1735 wqe_abts->xmit_sequence.wqe_com.abort_tag = abts_wqeq->iotag;
1736
1737 /* Word 9 */
1738 bf_set(wqe_reqtag, &wqe_abts->xmit_sequence.wqe_com, abts_wqeq->iotag);
1739 /* Needs to be set by caller */
1740 bf_set(wqe_rcvoxid, &wqe_abts->xmit_sequence.wqe_com, xri);
1741
1742 /* Word 10 */
1743 bf_set(wqe_dbde, &wqe_abts->xmit_sequence.wqe_com, 1);
1744 bf_set(wqe_iod, &wqe_abts->xmit_sequence.wqe_com, LPFC_WQE_IOD_WRITE);
1745 bf_set(wqe_lenloc, &wqe_abts->xmit_sequence.wqe_com,
1746 LPFC_WQE_LENLOC_WORD12);
1747 bf_set(wqe_ebde_cnt, &wqe_abts->xmit_sequence.wqe_com, 0);
1748 bf_set(wqe_qosd, &wqe_abts->xmit_sequence.wqe_com, 0);
1749
1750 /* Word 11 */
1751 bf_set(wqe_cqid, &wqe_abts->xmit_sequence.wqe_com,
1752 LPFC_WQE_CQ_ID_DEFAULT);
1753 bf_set(wqe_cmd_type, &wqe_abts->xmit_sequence.wqe_com,
1754 OTHER_COMMAND);
1755
1756 abts_wqeq->vport = phba->pport;
1757 abts_wqeq->context1 = ndlp;
1758 abts_wqeq->context2 = ctxp;
1759 abts_wqeq->context3 = NULL;
1760 abts_wqeq->rsvd2 = 0;
1761 /* hba_wqidx should already be setup from command we are aborting */
1762 abts_wqeq->iocb.ulpCommand = CMD_XMIT_SEQUENCE64_CR;
1763 abts_wqeq->iocb.ulpLe = 1;
1764
1765 lpfc_printf_log(phba, KERN_INFO, LOG_NVME_ABTS,
1766 "6069 Issue ABTS to xri x%x reqtag x%x\n",
1767 xri, abts_wqeq->iotag);
1768 return 1;
1769}
1770
1771static int
1772lpfc_nvmet_sol_fcp_issue_abort(struct lpfc_hba *phba,
1773 struct lpfc_nvmet_rcv_ctx *ctxp,
1774 uint32_t sid, uint16_t xri)
1775{
1776 struct lpfc_nvmet_tgtport *tgtp;
1777 struct lpfc_iocbq *abts_wqeq;
1778 union lpfc_wqe *abts_wqe;
1779 struct lpfc_nodelist *ndlp;
1780 unsigned long flags;
1781 int rc;
1782
1783 tgtp = (struct lpfc_nvmet_tgtport *)phba->targetport->private;
1784 if (!ctxp->wqeq) {
1785 ctxp->wqeq = ctxp->rqb_buffer->iocbq;
1786 ctxp->wqeq->hba_wqidx = 0;
1787 }
1788
1789 ndlp = lpfc_findnode_did(phba->pport, sid);
1790 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp) ||
1791 ((ndlp->nlp_state != NLP_STE_UNMAPPED_NODE) &&
1792 (ndlp->nlp_state != NLP_STE_MAPPED_NODE))) {
1793 atomic_inc(&tgtp->xmt_abort_rsp_error);
1794 lpfc_printf_log(phba, KERN_WARNING, LOG_NVME_ABTS,
1795 "6160 Drop ABTS - wrong NDLP state x%x.\n",
1796 ndlp->nlp_state);
1797
1798 /* No failure to an ABTS request. */
1799 return 0;
1800 }
1801
1802 /* Issue ABTS for this WQE based on iotag */
1803 ctxp->abort_wqeq = lpfc_sli_get_iocbq(phba);
1804 if (!ctxp->abort_wqeq) {
1805 lpfc_printf_log(phba, KERN_WARNING, LOG_NVME_ABTS,
1806 "6161 Abort failed: No wqeqs: "
1807 "xri: x%x\n", ctxp->oxid);
1808 /* No failure to an ABTS request. */
1809 return 0;
1810 }
1811 abts_wqeq = ctxp->abort_wqeq;
1812 abts_wqe = &abts_wqeq->wqe;
1813 ctxp->state = LPFC_NVMET_STE_ABORT;
1814
1815 /* Announce entry to new IO submit field. */
1816 lpfc_printf_log(phba, KERN_ERR, LOG_NVME_ABTS,
1817 "6162 Abort Request to rport DID x%06x "
1818 "for xri x%x x%x\n",
1819 ctxp->sid, ctxp->oxid, ctxp->wqeq->sli4_xritag);
1820
1821 /* If the hba is getting reset, this flag is set. It is
1822 * cleared when the reset is complete and rings reestablished.
1823 */
1824 spin_lock_irqsave(&phba->hbalock, flags);
1825 /* driver queued commands are in process of being flushed */
1826 if (phba->hba_flag & HBA_NVME_IOQ_FLUSH) {
1827 spin_unlock_irqrestore(&phba->hbalock, flags);
1828 lpfc_printf_log(phba, KERN_ERR, LOG_NVME,
1829 "6163 Driver in reset cleanup - flushing "
1830 "NVME Req now. hba_flag x%x oxid x%x\n",
1831 phba->hba_flag, ctxp->oxid);
1832 lpfc_sli_release_iocbq(phba, abts_wqeq);
1833 return 0;
1834 }
1835
1836 /* Outstanding abort is in progress */
1837 if (abts_wqeq->iocb_flag & LPFC_DRIVER_ABORTED) {
1838 spin_unlock_irqrestore(&phba->hbalock, flags);
1839 lpfc_printf_log(phba, KERN_ERR, LOG_NVME,
1840 "6164 Outstanding NVME I/O Abort Request "
1841 "still pending on oxid x%x\n",
1842 ctxp->oxid);
1843 lpfc_sli_release_iocbq(phba, abts_wqeq);
1844 return 0;
1845 }
1846
1847 /* Ready - mark outstanding as aborted by driver. */
1848 abts_wqeq->iocb_flag |= LPFC_DRIVER_ABORTED;
1849
1850 /* WQEs are reused. Clear stale data and set key fields to
1851 * zero like ia, iaab, iaar, xri_tag, and ctxt_tag.
1852 */
1853 memset(abts_wqe, 0, sizeof(union lpfc_wqe));
1854
1855 /* word 3 */
1856 bf_set(abort_cmd_criteria, &abts_wqe->abort_cmd, T_XRI_TAG);
1857
1858 /* word 7 */
1859 bf_set(wqe_ct, &abts_wqe->abort_cmd.wqe_com, 0);
1860 bf_set(wqe_cmnd, &abts_wqe->abort_cmd.wqe_com, CMD_ABORT_XRI_CX);
1861
1862 /* word 8 - tell the FW to abort the IO associated with this
1863 * outstanding exchange ID.
1864 */
1865 abts_wqe->abort_cmd.wqe_com.abort_tag = ctxp->wqeq->sli4_xritag;
1866
1867 /* word 9 - this is the iotag for the abts_wqe completion. */
1868 bf_set(wqe_reqtag, &abts_wqe->abort_cmd.wqe_com,
1869 abts_wqeq->iotag);
1870
1871 /* word 10 */
1872 bf_set(wqe_qosd, &abts_wqe->abort_cmd.wqe_com, 1);
1873 bf_set(wqe_lenloc, &abts_wqe->abort_cmd.wqe_com, LPFC_WQE_LENLOC_NONE);
1874
1875 /* word 11 */
1876 bf_set(wqe_cmd_type, &abts_wqe->abort_cmd.wqe_com, OTHER_COMMAND);
1877 bf_set(wqe_wqec, &abts_wqe->abort_cmd.wqe_com, 1);
1878 bf_set(wqe_cqid, &abts_wqe->abort_cmd.wqe_com, LPFC_WQE_CQ_ID_DEFAULT);
1879
1880 /* ABTS WQE must go to the same WQ as the WQE to be aborted */
1881 abts_wqeq->hba_wqidx = ctxp->wqeq->hba_wqidx;
1882 abts_wqeq->wqe_cmpl = lpfc_nvmet_sol_fcp_abort_cmp;
1883 abts_wqeq->iocb_cmpl = 0;
1884 abts_wqeq->iocb_flag |= LPFC_IO_NVME;
1885 abts_wqeq->context2 = ctxp;
1886 rc = lpfc_sli4_issue_wqe(phba, LPFC_FCP_RING, abts_wqeq);
1887 spin_unlock_irqrestore(&phba->hbalock, flags);
1888 if (rc == WQE_SUCCESS)
1889 return 0;
1890
1891 lpfc_sli_release_iocbq(phba, abts_wqeq);
1892 lpfc_printf_log(phba, KERN_ERR, LOG_NVME,
1893 "6166 Failed abts issue_wqe with status x%x "
1894 "for oxid x%x.\n",
1895 rc, ctxp->oxid);
1896 return 1;
1897}
1898
1899
1900static int
1901lpfc_nvmet_unsol_fcp_issue_abort(struct lpfc_hba *phba,
1902 struct lpfc_nvmet_rcv_ctx *ctxp,
1903 uint32_t sid, uint16_t xri)
1904{
1905 struct lpfc_nvmet_tgtport *tgtp;
1906 struct lpfc_iocbq *abts_wqeq;
1907 unsigned long flags;
1908 int rc;
1909
1910 tgtp = (struct lpfc_nvmet_tgtport *)phba->targetport->private;
1911 if (!ctxp->wqeq) {
1912 ctxp->wqeq = ctxp->rqb_buffer->iocbq;
1913 ctxp->wqeq->hba_wqidx = 0;
1914 }
1915
1916 rc = lpfc_nvmet_unsol_issue_abort(phba, ctxp, sid, xri);
1917 if (rc == 0)
1918 goto aerr;
1919
1920 spin_lock_irqsave(&phba->hbalock, flags);
1921 abts_wqeq = ctxp->wqeq;
1922 abts_wqeq->wqe_cmpl = lpfc_nvmet_xmt_fcp_abort_cmp;
1923 abts_wqeq->iocb_cmpl = 0;
1924 abts_wqeq->iocb_flag |= LPFC_IO_NVMET;
1925 rc = lpfc_sli4_issue_wqe(phba, LPFC_FCP_RING, abts_wqeq);
1926 spin_unlock_irqrestore(&phba->hbalock, flags);
1927 if (rc == WQE_SUCCESS) {
1928 atomic_inc(&tgtp->xmt_abort_rsp);
1929 return 0;
1930 }
1931
1932aerr:
1933 lpfc_nvmet_rq_post(phba, ctxp, &ctxp->rqb_buffer->hbuf);
1934 atomic_inc(&tgtp->xmt_abort_rsp_error);
1935 lpfc_printf_log(phba, KERN_WARNING, LOG_NVME_ABTS,
1936 "6135 Failed to Issue ABTS for oxid x%x. Status x%x\n",
1937 ctxp->oxid, rc);
1938 return 1;
1939}
1940
1941static int
1942lpfc_nvmet_unsol_ls_issue_abort(struct lpfc_hba *phba,
1943 struct lpfc_nvmet_rcv_ctx *ctxp,
1944 uint32_t sid, uint16_t xri)
1945{
1946 struct lpfc_nvmet_tgtport *tgtp;
1947 struct lpfc_iocbq *abts_wqeq;
1948 union lpfc_wqe *wqe_abts;
1949 unsigned long flags;
1950 int rc;
1951
1952 tgtp = (struct lpfc_nvmet_tgtport *)phba->targetport->private;
1953 if (!ctxp->wqeq) {
1954 /* Issue ABTS for this WQE based on iotag */
1955 ctxp->wqeq = lpfc_sli_get_iocbq(phba);
1956 if (!ctxp->wqeq) {
1957 lpfc_printf_log(phba, KERN_WARNING, LOG_NVME_ABTS,
1958 "6068 Abort failed: No wqeqs: "
1959 "xri: x%x\n", xri);
1960 /* No failure to an ABTS request. */
1961 kfree(ctxp);
1962 return 0;
1963 }
1964 }
1965 abts_wqeq = ctxp->wqeq;
1966 wqe_abts = &abts_wqeq->wqe;
1967 lpfc_nvmet_unsol_issue_abort(phba, ctxp, sid, xri);
1968
1969 spin_lock_irqsave(&phba->hbalock, flags);
1970 abts_wqeq->wqe_cmpl = lpfc_nvmet_xmt_ls_abort_cmp;
1971 abts_wqeq->iocb_cmpl = 0;
1972 abts_wqeq->iocb_flag |= LPFC_IO_NVME_LS;
1973 rc = lpfc_sli4_issue_wqe(phba, LPFC_ELS_RING, abts_wqeq);
1974 spin_unlock_irqrestore(&phba->hbalock, flags);
1975 if (rc == WQE_SUCCESS) {
1976 atomic_inc(&tgtp->xmt_abort_rsp);
1977 return 0;
1978 }
1979
1980 atomic_inc(&tgtp->xmt_abort_rsp_error);
1981 abts_wqeq->context2 = NULL;
1982 abts_wqeq->context3 = NULL;
1983 lpfc_sli_release_iocbq(phba, abts_wqeq);
1984 kfree(ctxp);
1985 lpfc_printf_log(phba, KERN_WARNING, LOG_NVME_ABTS,
1986 "6056 Failed to Issue ABTS. Status x%x\n", rc);
1987 return 0;
1988}