]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - drivers/scsi/lpfc/lpfc_nvme.c
Fix driver load issues when MRQ=8
[karo-tx-linux.git] / drivers / scsi / lpfc / lpfc_nvme.c
1 /*******************************************************************
2  * This file is part of the Emulex Linux Device Driver for         *
3  * Fibre Channel Host Bus Adapters.                                *
4  * Copyright (C) 2017 Broadcom. All Rights Reserved. The term      *
5  * “Broadcom” refers to Broadcom Limited and/or its subsidiaries.  *
6  * Copyright (C) 2004-2016 Emulex.  All rights reserved.           *
7  * EMULEX and SLI are trademarks of Emulex.                        *
8  * www.broadcom.com                                                *
9  * 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 <linux/nvme.h>
40 #include <linux/nvme-fc-driver.h>
41 #include <linux/nvme-fc.h>
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_nvme.h"
51 #include "lpfc_scsi.h"
52 #include "lpfc_logmsg.h"
53 #include "lpfc_crtn.h"
54 #include "lpfc_vport.h"
55 #include "lpfc_debugfs.h"
56
57 /* NVME initiator-based functions */
58
59 static struct lpfc_nvme_buf *
60 lpfc_get_nvme_buf(struct lpfc_hba *phba, struct lpfc_nodelist *ndlp);
61
62 static void
63 lpfc_release_nvme_buf(struct lpfc_hba *, struct lpfc_nvme_buf *);
64
65
66 /**
67  * lpfc_nvme_create_queue -
68  * @lpfc_pnvme: Pointer to the driver's nvme instance data
69  * @qidx: An cpu index used to affinitize IO queues and MSIX vectors.
70  * @handle: An opaque driver handle used in follow-up calls.
71  *
72  * Driver registers this routine to preallocate and initialize any
73  * internal data structures to bind the @qidx to its internal IO queues.
74  * A hardware queue maps (qidx) to a specific driver MSI-X vector/EQ/CQ/WQ.
75  *
76  * Return value :
77  *   0 - Success
78  *   -EINVAL - Unsupported input value.
79  *   -ENOMEM - Could not alloc necessary memory
80  **/
81 static int
82 lpfc_nvme_create_queue(struct nvme_fc_local_port *pnvme_lport,
83                        unsigned int qidx, u16 qsize,
84                        void **handle)
85 {
86         struct lpfc_nvme_lport *lport;
87         struct lpfc_vport *vport;
88         struct lpfc_nvme_qhandle *qhandle;
89         char *str;
90
91         lport = (struct lpfc_nvme_lport *)pnvme_lport->private;
92         vport = lport->vport;
93         qhandle = kzalloc(sizeof(struct lpfc_nvme_qhandle), GFP_KERNEL);
94         if (qhandle == NULL)
95                 return -ENOMEM;
96
97         qhandle->cpu_id = smp_processor_id();
98         qhandle->qidx = qidx;
99         /*
100          * NVME qidx == 0 is the admin queue, so both admin queue
101          * and first IO queue will use MSI-X vector and associated
102          * EQ/CQ/WQ at index 0. After that they are sequentially assigned.
103          */
104         if (qidx) {
105                 str = "IO ";  /* IO queue */
106                 qhandle->index = ((qidx - 1) %
107                         vport->phba->cfg_nvme_io_channel);
108         } else {
109                 str = "ADM";  /* Admin queue */
110                 qhandle->index = qidx;
111         }
112
113         lpfc_printf_vlog(vport, KERN_ERR, LOG_NVME,
114                          "6073 Binding %s HdwQueue %d  (cpu %d) to "
115                          "io_channel %d qhandle %p\n", str,
116                          qidx, qhandle->cpu_id, qhandle->index, qhandle);
117         *handle = (void *)qhandle;
118         return 0;
119 }
120
121 /**
122  * lpfc_nvme_delete_queue -
123  * @lpfc_pnvme: Pointer to the driver's nvme instance data
124  * @qidx: An cpu index used to affinitize IO queues and MSIX vectors.
125  * @handle: An opaque driver handle from lpfc_nvme_create_queue
126  *
127  * Driver registers this routine to free
128  * any internal data structures to bind the @qidx to its internal
129  * IO queues.
130  *
131  * Return value :
132  *   0 - Success
133  *   TODO:  What are the failure codes.
134  **/
135 static void
136 lpfc_nvme_delete_queue(struct nvme_fc_local_port *pnvme_lport,
137                        unsigned int qidx,
138                        void *handle)
139 {
140         struct lpfc_nvme_lport *lport;
141         struct lpfc_vport *vport;
142
143         lport = (struct lpfc_nvme_lport *)pnvme_lport->private;
144         vport = lport->vport;
145
146         lpfc_printf_vlog(vport, KERN_INFO, LOG_NVME,
147                         "6001 ENTER.  lpfc_pnvme %p, qidx x%xi qhandle %p\n",
148                         lport, qidx, handle);
149         kfree(handle);
150 }
151
152 static void
153 lpfc_nvme_localport_delete(struct nvme_fc_local_port *localport)
154 {
155         struct lpfc_nvme_lport *lport = localport->private;
156
157         /* release any threads waiting for the unreg to complete */
158         complete(&lport->lport_unreg_done);
159 }
160
161 /* lpfc_nvme_remoteport_delete
162  *
163  * @remoteport: Pointer to an nvme transport remoteport instance.
164  *
165  * This is a template downcall.  NVME transport calls this function
166  * when it has completed the unregistration of a previously
167  * registered remoteport.
168  *
169  * Return value :
170  * None
171  */
172 void
173 lpfc_nvme_remoteport_delete(struct nvme_fc_remote_port *remoteport)
174 {
175         struct lpfc_nvme_rport *rport = remoteport->private;
176         struct lpfc_vport *vport;
177         struct lpfc_nodelist *ndlp;
178
179         ndlp = rport->ndlp;
180         if (!ndlp)
181                 goto rport_err;
182
183         vport = ndlp->vport;
184         if (!vport)
185                 goto rport_err;
186
187         /* Remove this rport from the lport's list - memory is owned by the
188          * transport. Remove the ndlp reference for the NVME transport before
189          * calling state machine to remove the node, this is devloss = 0
190          * semantics.
191          */
192         lpfc_printf_vlog(vport, KERN_INFO, LOG_NVME_DISC,
193                         "6146 remoteport delete complete %p\n",
194                         remoteport);
195         list_del(&rport->list);
196         lpfc_nlp_put(ndlp);
197
198  rport_err:
199         /* This call has to execute as long as the rport is valid.
200          * Release any threads waiting for the unreg to complete.
201          */
202         complete(&rport->rport_unreg_done);
203 }
204
205 static void
206 lpfc_nvme_cmpl_gen_req(struct lpfc_hba *phba, struct lpfc_iocbq *cmdwqe,
207                        struct lpfc_wcqe_complete *wcqe)
208 {
209         struct lpfc_vport *vport = cmdwqe->vport;
210         uint32_t status;
211         struct nvmefc_ls_req *pnvme_lsreq;
212         struct lpfc_dmabuf *buf_ptr;
213         struct lpfc_nodelist *ndlp;
214
215         vport->phba->fc4NvmeLsCmpls++;
216
217         pnvme_lsreq = (struct nvmefc_ls_req *)cmdwqe->context2;
218         status = bf_get(lpfc_wcqe_c_status, wcqe) & LPFC_IOCB_STATUS_MASK;
219         ndlp = (struct lpfc_nodelist *)cmdwqe->context1;
220         lpfc_printf_vlog(vport, KERN_INFO, LOG_NVME_DISC,
221                          "6047 nvme cmpl Enter "
222                          "Data %p DID %x Xri: %x status %x cmd:%p lsreg:%p "
223                          "bmp:%p ndlp:%p\n",
224                          pnvme_lsreq, ndlp ? ndlp->nlp_DID : 0,
225                          cmdwqe->sli4_xritag, status,
226                          cmdwqe, pnvme_lsreq, cmdwqe->context3, ndlp);
227
228         lpfc_nvmeio_data(phba, "NVME LS  CMPL: xri x%x stat x%x parm x%x\n",
229                          cmdwqe->sli4_xritag, status, wcqe->parameter);
230
231         if (cmdwqe->context3) {
232                 buf_ptr = (struct lpfc_dmabuf *)cmdwqe->context3;
233                 lpfc_mbuf_free(phba, buf_ptr->virt, buf_ptr->phys);
234                 kfree(buf_ptr);
235                 cmdwqe->context3 = NULL;
236         }
237         if (pnvme_lsreq->done)
238                 pnvme_lsreq->done(pnvme_lsreq, status);
239         else
240                 lpfc_printf_vlog(vport, KERN_ERR, LOG_NVME_DISC,
241                                  "6046 nvme cmpl without done call back? "
242                                  "Data %p DID %x Xri: %x status %x\n",
243                                 pnvme_lsreq, ndlp ? ndlp->nlp_DID : 0,
244                                 cmdwqe->sli4_xritag, status);
245         if (ndlp) {
246                 lpfc_nlp_put(ndlp);
247                 cmdwqe->context1 = NULL;
248         }
249         lpfc_sli_release_iocbq(phba, cmdwqe);
250 }
251
252 static int
253 lpfc_nvme_gen_req(struct lpfc_vport *vport, struct lpfc_dmabuf *bmp,
254                   struct lpfc_dmabuf *inp,
255                  struct nvmefc_ls_req *pnvme_lsreq,
256              void (*cmpl)(struct lpfc_hba *, struct lpfc_iocbq *,
257                            struct lpfc_wcqe_complete *),
258              struct lpfc_nodelist *ndlp, uint32_t num_entry,
259              uint32_t tmo, uint8_t retry)
260 {
261         struct lpfc_hba  *phba = vport->phba;
262         union lpfc_wqe *wqe;
263         struct lpfc_iocbq *genwqe;
264         struct ulp_bde64 *bpl;
265         struct ulp_bde64 bde;
266         int i, rc, xmit_len, first_len;
267
268         /* Allocate buffer for  command WQE */
269         genwqe = lpfc_sli_get_iocbq(phba);
270         if (genwqe == NULL)
271                 return 1;
272
273         wqe = &genwqe->wqe;
274         memset(wqe, 0, sizeof(union lpfc_wqe));
275
276         genwqe->context3 = (uint8_t *)bmp;
277         genwqe->iocb_flag |= LPFC_IO_NVME_LS;
278
279         /* Save for completion so we can release these resources */
280         genwqe->context1 = lpfc_nlp_get(ndlp);
281         genwqe->context2 = (uint8_t *)pnvme_lsreq;
282         /* Fill in payload, bp points to frame payload */
283
284         if (!tmo)
285                 /* FC spec states we need 3 * ratov for CT requests */
286                 tmo = (3 * phba->fc_ratov);
287
288         /* For this command calculate the xmit length of the request bde. */
289         xmit_len = 0;
290         first_len = 0;
291         bpl = (struct ulp_bde64 *)bmp->virt;
292         for (i = 0; i < num_entry; i++) {
293                 bde.tus.w = bpl[i].tus.w;
294                 if (bde.tus.f.bdeFlags != BUFF_TYPE_BDE_64)
295                         break;
296                 xmit_len += bde.tus.f.bdeSize;
297                 if (i == 0)
298                         first_len = xmit_len;
299         }
300
301         genwqe->rsvd2 = num_entry;
302         genwqe->hba_wqidx = 0;
303
304         /* Words 0 - 2 */
305         wqe->generic.bde.tus.f.bdeFlags = BUFF_TYPE_BDE_64;
306         wqe->generic.bde.tus.f.bdeSize = first_len;
307         wqe->generic.bde.addrLow = bpl[0].addrLow;
308         wqe->generic.bde.addrHigh = bpl[0].addrHigh;
309
310         /* Word 3 */
311         wqe->gen_req.request_payload_len = first_len;
312
313         /* Word 4 */
314
315         /* Word 5 */
316         bf_set(wqe_dfctl, &wqe->gen_req.wge_ctl, 0);
317         bf_set(wqe_si, &wqe->gen_req.wge_ctl, 1);
318         bf_set(wqe_la, &wqe->gen_req.wge_ctl, 1);
319         bf_set(wqe_rctl, &wqe->gen_req.wge_ctl, FC_RCTL_ELS4_REQ);
320         bf_set(wqe_type, &wqe->gen_req.wge_ctl, FC_TYPE_NVME);
321
322         /* Word 6 */
323         bf_set(wqe_ctxt_tag, &wqe->gen_req.wqe_com,
324                phba->sli4_hba.rpi_ids[ndlp->nlp_rpi]);
325         bf_set(wqe_xri_tag, &wqe->gen_req.wqe_com, genwqe->sli4_xritag);
326
327         /* Word 7 */
328         bf_set(wqe_tmo, &wqe->gen_req.wqe_com, (vport->phba->fc_ratov-1));
329         bf_set(wqe_class, &wqe->gen_req.wqe_com, CLASS3);
330         bf_set(wqe_cmnd, &wqe->gen_req.wqe_com, CMD_GEN_REQUEST64_WQE);
331         bf_set(wqe_ct, &wqe->gen_req.wqe_com, SLI4_CT_RPI);
332
333         /* Word 8 */
334         wqe->gen_req.wqe_com.abort_tag = genwqe->iotag;
335
336         /* Word 9 */
337         bf_set(wqe_reqtag, &wqe->gen_req.wqe_com, genwqe->iotag);
338
339         /* Word 10 */
340         bf_set(wqe_dbde, &wqe->gen_req.wqe_com, 1);
341         bf_set(wqe_iod, &wqe->gen_req.wqe_com, LPFC_WQE_IOD_READ);
342         bf_set(wqe_qosd, &wqe->gen_req.wqe_com, 1);
343         bf_set(wqe_lenloc, &wqe->gen_req.wqe_com, LPFC_WQE_LENLOC_NONE);
344         bf_set(wqe_ebde_cnt, &wqe->gen_req.wqe_com, 0);
345
346         /* Word 11 */
347         bf_set(wqe_cqid, &wqe->gen_req.wqe_com, LPFC_WQE_CQ_ID_DEFAULT);
348         bf_set(wqe_cmd_type, &wqe->gen_req.wqe_com, OTHER_COMMAND);
349
350
351         /* Issue GEN REQ WQE for NPORT <did> */
352         lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
353                          "6050 Issue GEN REQ WQE to NPORT x%x "
354                          "Data: x%x x%x wq:%p lsreq:%p bmp:%p xmit:%d 1st:%d\n",
355                          ndlp->nlp_DID, genwqe->iotag,
356                          vport->port_state,
357                         genwqe, pnvme_lsreq, bmp, xmit_len, first_len);
358         genwqe->wqe_cmpl = cmpl;
359         genwqe->iocb_cmpl = NULL;
360         genwqe->drvrTimeout = tmo + LPFC_DRVR_TIMEOUT;
361         genwqe->vport = vport;
362         genwqe->retry = retry;
363
364         lpfc_nvmeio_data(phba, "NVME LS  XMIT: xri x%x iotag x%x to x%06x\n",
365                          genwqe->sli4_xritag, genwqe->iotag, ndlp->nlp_DID);
366
367         rc = lpfc_sli4_issue_wqe(phba, LPFC_ELS_RING, genwqe);
368         if (rc == WQE_ERROR) {
369                 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
370                                  "6045 Issue GEN REQ WQE to NPORT x%x "
371                                  "Data: x%x x%x\n",
372                                  ndlp->nlp_DID, genwqe->iotag,
373                                  vport->port_state);
374                 lpfc_sli_release_iocbq(phba, genwqe);
375                 return 1;
376         }
377         return 0;
378 }
379
380 /**
381  * lpfc_nvme_ls_req - Issue an Link Service request
382  * @lpfc_pnvme: Pointer to the driver's nvme instance data
383  * @lpfc_nvme_lport: Pointer to the driver's local port data
384  * @lpfc_nvme_rport: Pointer to the rport getting the @lpfc_nvme_ereq
385  *
386  * Driver registers this routine to handle any link service request
387  * from the nvme_fc transport to a remote nvme-aware port.
388  *
389  * Return value :
390  *   0 - Success
391  *   TODO: What are the failure codes.
392  **/
393 static int
394 lpfc_nvme_ls_req(struct nvme_fc_local_port *pnvme_lport,
395                  struct nvme_fc_remote_port *pnvme_rport,
396                  struct nvmefc_ls_req *pnvme_lsreq)
397 {
398         int ret = 0;
399         struct lpfc_nvme_lport *lport;
400         struct lpfc_vport *vport;
401         struct lpfc_nodelist *ndlp;
402         struct ulp_bde64 *bpl;
403         struct lpfc_dmabuf *bmp;
404         uint16_t ntype, nstate;
405
406         /* there are two dma buf in the request, actually there is one and
407          * the second one is just the start address + cmd size.
408          * Before calling lpfc_nvme_gen_req these buffers need to be wrapped
409          * in a lpfc_dmabuf struct. When freeing we just free the wrapper
410          * because the nvem layer owns the data bufs.
411          * We do not have to break these packets open, we don't care what is in
412          * them. And we do not have to look at the resonse data, we only care
413          * that we got a response. All of the caring is going to happen in the
414          * nvme-fc layer.
415          */
416
417         lport = (struct lpfc_nvme_lport *)pnvme_lport->private;
418         vport = lport->vport;
419
420         ndlp = lpfc_findnode_did(vport, pnvme_rport->port_id);
421         if (!ndlp || !NLP_CHK_NODE_ACT(ndlp)) {
422                 lpfc_printf_vlog(vport, KERN_ERR, LOG_NODE | LOG_NVME_IOERR,
423                                  "6051 DID x%06x not an active rport.\n",
424                                  pnvme_rport->port_id);
425                 return -ENODEV;
426         }
427
428         /* The remote node has to be a mapped nvme target or an
429          * unmapped nvme initiator or it's an error.
430          */
431         ntype = ndlp->nlp_type;
432         nstate = ndlp->nlp_state;
433         if ((ntype & NLP_NVME_TARGET && nstate != NLP_STE_MAPPED_NODE) ||
434             (ntype & NLP_NVME_INITIATOR && nstate != NLP_STE_UNMAPPED_NODE)) {
435                 lpfc_printf_vlog(vport, KERN_ERR, LOG_NODE | LOG_NVME_IOERR,
436                                  "6088 DID x%06x not ready for "
437                                  "IO. State x%x, Type x%x\n",
438                                  pnvme_rport->port_id,
439                                  ndlp->nlp_state, ndlp->nlp_type);
440                 return -ENODEV;
441         }
442         bmp = kmalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
443         if (!bmp) {
444
445                 lpfc_printf_vlog(vport, KERN_ERR, LOG_NVME_DISC,
446                                  "6044 Could not find node for DID %x\n",
447                                  pnvme_rport->port_id);
448                 return 2;
449         }
450         INIT_LIST_HEAD(&bmp->list);
451         bmp->virt = lpfc_mbuf_alloc(vport->phba, MEM_PRI, &(bmp->phys));
452         if (!bmp->virt) {
453                 lpfc_printf_vlog(vport, KERN_ERR, LOG_NVME_DISC,
454                                  "6042 Could not find node for DID %x\n",
455                                  pnvme_rport->port_id);
456                 kfree(bmp);
457                 return 3;
458         }
459         bpl = (struct ulp_bde64 *)bmp->virt;
460         bpl->addrHigh = le32_to_cpu(putPaddrHigh(pnvme_lsreq->rqstdma));
461         bpl->addrLow = le32_to_cpu(putPaddrLow(pnvme_lsreq->rqstdma));
462         bpl->tus.f.bdeFlags = 0;
463         bpl->tus.f.bdeSize = pnvme_lsreq->rqstlen;
464         bpl->tus.w = le32_to_cpu(bpl->tus.w);
465         bpl++;
466
467         bpl->addrHigh = le32_to_cpu(putPaddrHigh(pnvme_lsreq->rspdma));
468         bpl->addrLow = le32_to_cpu(putPaddrLow(pnvme_lsreq->rspdma));
469         bpl->tus.f.bdeFlags = BUFF_TYPE_BDE_64I;
470         bpl->tus.f.bdeSize = pnvme_lsreq->rsplen;
471         bpl->tus.w = le32_to_cpu(bpl->tus.w);
472
473         /* Expand print to include key fields. */
474         lpfc_printf_vlog(vport, KERN_INFO, LOG_NVME_DISC,
475                          "6149 ENTER.  lport %p, rport %p lsreq%p rqstlen:%d "
476                          "rsplen:%d %pad %pad\n",
477                          pnvme_lport, pnvme_rport,
478                          pnvme_lsreq, pnvme_lsreq->rqstlen,
479                          pnvme_lsreq->rsplen, &pnvme_lsreq->rqstdma,
480                          &pnvme_lsreq->rspdma);
481
482         vport->phba->fc4NvmeLsRequests++;
483
484         /* Hardcode the wait to 30 seconds.  Connections are failing otherwise.
485          * This code allows it all to work.
486          */
487         ret = lpfc_nvme_gen_req(vport, bmp, pnvme_lsreq->rqstaddr,
488                                 pnvme_lsreq, lpfc_nvme_cmpl_gen_req,
489                                 ndlp, 2, 30, 0);
490         if (ret != WQE_SUCCESS) {
491                 lpfc_printf_vlog(vport, KERN_INFO, LOG_NVME_DISC,
492                                  "6052 EXIT. issue ls wqe failed lport %p, "
493                                  "rport %p lsreq%p Status %x DID %x\n",
494                                  pnvme_lport, pnvme_rport, pnvme_lsreq,
495                                  ret, ndlp->nlp_DID);
496                 lpfc_mbuf_free(vport->phba, bmp->virt, bmp->phys);
497                 kfree(bmp);
498                 return ret;
499         }
500
501         /* Stub in routine and return 0 for now. */
502         return ret;
503 }
504
505 /**
506  * lpfc_nvme_ls_abort - Issue an Link Service request
507  * @lpfc_pnvme: Pointer to the driver's nvme instance data
508  * @lpfc_nvme_lport: Pointer to the driver's local port data
509  * @lpfc_nvme_rport: Pointer to the rport getting the @lpfc_nvme_ereq
510  *
511  * Driver registers this routine to handle any link service request
512  * from the nvme_fc transport to a remote nvme-aware port.
513  *
514  * Return value :
515  *   0 - Success
516  *   TODO: What are the failure codes.
517  **/
518 static void
519 lpfc_nvme_ls_abort(struct nvme_fc_local_port *pnvme_lport,
520                    struct nvme_fc_remote_port *pnvme_rport,
521                    struct nvmefc_ls_req *pnvme_lsreq)
522 {
523         struct lpfc_nvme_lport *lport;
524         struct lpfc_vport *vport;
525         struct lpfc_hba *phba;
526         struct lpfc_nodelist *ndlp;
527         LIST_HEAD(abort_list);
528         struct lpfc_sli_ring *pring;
529         struct lpfc_iocbq *wqe, *next_wqe;
530
531         lport = (struct lpfc_nvme_lport *)pnvme_lport->private;
532         vport = lport->vport;
533         phba = vport->phba;
534
535         ndlp = lpfc_findnode_did(vport, pnvme_rport->port_id);
536         if (!ndlp) {
537                 lpfc_printf_vlog(vport, KERN_ERR, LOG_NVME_ABTS,
538                                  "6049 Could not find node for DID %x\n",
539                                  pnvme_rport->port_id);
540                 return;
541         }
542
543         /* Expand print to include key fields. */
544         lpfc_printf_vlog(vport, KERN_INFO, LOG_NVME_ABTS,
545                          "6040 ENTER.  lport %p, rport %p lsreq %p rqstlen:%d "
546                          "rsplen:%d %pad %pad\n",
547                          pnvme_lport, pnvme_rport,
548                          pnvme_lsreq, pnvme_lsreq->rqstlen,
549                          pnvme_lsreq->rsplen, &pnvme_lsreq->rqstdma,
550                          &pnvme_lsreq->rspdma);
551
552         /*
553          * Lock the ELS ring txcmplq and build a local list of all ELS IOs
554          * that need an ABTS.  The IOs need to stay on the txcmplq so that
555          * the abort operation completes them successfully.
556          */
557         pring = phba->sli4_hba.nvmels_wq->pring;
558         spin_lock_irq(&phba->hbalock);
559         spin_lock(&pring->ring_lock);
560         list_for_each_entry_safe(wqe, next_wqe, &pring->txcmplq, list) {
561                 /* Add to abort_list on on NDLP match. */
562                 if (lpfc_check_sli_ndlp(phba, pring, wqe, ndlp)) {
563                         wqe->iocb_flag |= LPFC_DRIVER_ABORTED;
564                         list_add_tail(&wqe->dlist, &abort_list);
565                 }
566         }
567         spin_unlock(&pring->ring_lock);
568         spin_unlock_irq(&phba->hbalock);
569
570         /* Abort the targeted IOs and remove them from the abort list. */
571         list_for_each_entry_safe(wqe, next_wqe, &abort_list, dlist) {
572                 spin_lock_irq(&phba->hbalock);
573                 list_del_init(&wqe->dlist);
574                 lpfc_sli_issue_abort_iotag(phba, pring, wqe);
575                 spin_unlock_irq(&phba->hbalock);
576         }
577 }
578
579 /* Fix up the existing sgls for NVME IO. */
580 static void
581 lpfc_nvme_adj_fcp_sgls(struct lpfc_vport *vport,
582                        struct lpfc_nvme_buf *lpfc_ncmd,
583                        struct nvmefc_fcp_req *nCmd)
584 {
585         struct sli4_sge *sgl;
586         union lpfc_wqe128 *wqe;
587         uint32_t *wptr, *dptr;
588
589         /*
590          * Adjust the FCP_CMD and FCP_RSP DMA data and sge_len to
591          * match NVME.  NVME sends 96 bytes. Also, use the
592          * nvme commands command and response dma addresses
593          * rather than the virtual memory to ease the restore
594          * operation.
595          */
596         sgl = lpfc_ncmd->nvme_sgl;
597         sgl->sge_len = cpu_to_le32(nCmd->cmdlen);
598
599         sgl++;
600
601         /* Setup the physical region for the FCP RSP */
602         sgl->addr_hi = cpu_to_le32(putPaddrHigh(nCmd->rspdma));
603         sgl->addr_lo = cpu_to_le32(putPaddrLow(nCmd->rspdma));
604         sgl->word2 = le32_to_cpu(sgl->word2);
605         if (nCmd->sg_cnt)
606                 bf_set(lpfc_sli4_sge_last, sgl, 0);
607         else
608                 bf_set(lpfc_sli4_sge_last, sgl, 1);
609         sgl->word2 = cpu_to_le32(sgl->word2);
610         sgl->sge_len = cpu_to_le32(nCmd->rsplen);
611
612         /*
613          * Get a local pointer to the built-in wqe and correct
614          * the cmd size to match NVME's 96 bytes and fix
615          * the dma address.
616          */
617
618         /* 128 byte wqe support here */
619         wqe = (union lpfc_wqe128 *)&lpfc_ncmd->cur_iocbq.wqe;
620
621         /* Word 0-2 - NVME CMND IU (embedded payload) */
622         wqe->generic.bde.tus.f.bdeFlags = BUFF_TYPE_BDE_IMMED;
623         wqe->generic.bde.tus.f.bdeSize = 60;
624         wqe->generic.bde.addrHigh = 0;
625         wqe->generic.bde.addrLow =  64;  /* Word 16 */
626
627         /* Word 3 */
628         bf_set(payload_offset_len, &wqe->fcp_icmd,
629                (nCmd->rsplen + nCmd->cmdlen));
630
631         /* Word 10 */
632         bf_set(wqe_nvme, &wqe->fcp_icmd.wqe_com, 1);
633         bf_set(wqe_wqes, &wqe->fcp_icmd.wqe_com, 1);
634
635         /*
636          * Embed the payload in the last half of the WQE
637          * WQE words 16-30 get the NVME CMD IU payload
638          *
639          * WQE words 16-19 get payload Words 1-4
640          * WQE words 20-21 get payload Words 6-7
641          * WQE words 22-29 get payload Words 16-23
642          */
643         wptr = &wqe->words[16];  /* WQE ptr */
644         dptr = (uint32_t *)nCmd->cmdaddr;  /* payload ptr */
645         dptr++;                 /* Skip Word 0 in payload */
646
647         *wptr++ = *dptr++;      /* Word 1 */
648         *wptr++ = *dptr++;      /* Word 2 */
649         *wptr++ = *dptr++;      /* Word 3 */
650         *wptr++ = *dptr++;      /* Word 4 */
651         dptr++;                 /* Skip Word 5 in payload */
652         *wptr++ = *dptr++;      /* Word 6 */
653         *wptr++ = *dptr++;      /* Word 7 */
654         dptr += 8;              /* Skip Words 8-15 in payload */
655         *wptr++ = *dptr++;      /* Word 16 */
656         *wptr++ = *dptr++;      /* Word 17 */
657         *wptr++ = *dptr++;      /* Word 18 */
658         *wptr++ = *dptr++;      /* Word 19 */
659         *wptr++ = *dptr++;      /* Word 20 */
660         *wptr++ = *dptr++;      /* Word 21 */
661         *wptr++ = *dptr++;      /* Word 22 */
662         *wptr   = *dptr;        /* Word 23 */
663 }
664
665 #ifdef CONFIG_SCSI_LPFC_DEBUG_FS
666 static void
667 lpfc_nvme_ktime(struct lpfc_hba *phba,
668                 struct lpfc_nvme_buf *lpfc_ncmd)
669 {
670         uint64_t seg1, seg2, seg3, seg4;
671
672         if (!phba->ktime_on)
673                 return;
674         if (!lpfc_ncmd->ts_last_cmd ||
675             !lpfc_ncmd->ts_cmd_start ||
676             !lpfc_ncmd->ts_cmd_wqput ||
677             !lpfc_ncmd->ts_isr_cmpl ||
678             !lpfc_ncmd->ts_data_nvme)
679                 return;
680         if (lpfc_ncmd->ts_cmd_start < lpfc_ncmd->ts_last_cmd)
681                 return;
682         if (lpfc_ncmd->ts_cmd_wqput < lpfc_ncmd->ts_cmd_start)
683                 return;
684         if (lpfc_ncmd->ts_isr_cmpl < lpfc_ncmd->ts_cmd_wqput)
685                 return;
686         if (lpfc_ncmd->ts_data_nvme < lpfc_ncmd->ts_isr_cmpl)
687                 return;
688         /*
689          * Segment 1 - Time from Last FCP command cmpl is handed
690          * off to NVME Layer to start of next command.
691          * Segment 2 - Time from Driver receives a IO cmd start
692          * from NVME Layer to WQ put is done on IO cmd.
693          * Segment 3 - Time from Driver WQ put is done on IO cmd
694          * to MSI-X ISR for IO cmpl.
695          * Segment 4 - Time from MSI-X ISR for IO cmpl to when
696          * cmpl is handled off to the NVME Layer.
697          */
698         seg1 = lpfc_ncmd->ts_cmd_start - lpfc_ncmd->ts_last_cmd;
699         if (seg1 > 5000000)  /* 5 ms - for sequential IOs */
700                 return;
701
702         /* Calculate times relative to start of IO */
703         seg2 = (lpfc_ncmd->ts_cmd_wqput - lpfc_ncmd->ts_cmd_start);
704         seg3 = (lpfc_ncmd->ts_isr_cmpl -
705                 lpfc_ncmd->ts_cmd_start) - seg2;
706         seg4 = (lpfc_ncmd->ts_data_nvme -
707                 lpfc_ncmd->ts_cmd_start) - seg2 - seg3;
708         phba->ktime_data_samples++;
709         phba->ktime_seg1_total += seg1;
710         if (seg1 < phba->ktime_seg1_min)
711                 phba->ktime_seg1_min = seg1;
712         else if (seg1 > phba->ktime_seg1_max)
713                 phba->ktime_seg1_max = seg1;
714         phba->ktime_seg2_total += seg2;
715         if (seg2 < phba->ktime_seg2_min)
716                 phba->ktime_seg2_min = seg2;
717         else if (seg2 > phba->ktime_seg2_max)
718                 phba->ktime_seg2_max = seg2;
719         phba->ktime_seg3_total += seg3;
720         if (seg3 < phba->ktime_seg3_min)
721                 phba->ktime_seg3_min = seg3;
722         else if (seg3 > phba->ktime_seg3_max)
723                 phba->ktime_seg3_max = seg3;
724         phba->ktime_seg4_total += seg4;
725         if (seg4 < phba->ktime_seg4_min)
726                 phba->ktime_seg4_min = seg4;
727         else if (seg4 > phba->ktime_seg4_max)
728                 phba->ktime_seg4_max = seg4;
729
730         lpfc_ncmd->ts_last_cmd = 0;
731         lpfc_ncmd->ts_cmd_start = 0;
732         lpfc_ncmd->ts_cmd_wqput  = 0;
733         lpfc_ncmd->ts_isr_cmpl = 0;
734         lpfc_ncmd->ts_data_nvme = 0;
735 }
736 #endif
737
738 /**
739  * lpfc_nvme_io_cmd_wqe_cmpl - Complete an NVME-over-FCP IO
740  * @lpfc_pnvme: Pointer to the driver's nvme instance data
741  * @lpfc_nvme_lport: Pointer to the driver's local port data
742  * @lpfc_nvme_rport: Pointer to the rport getting the @lpfc_nvme_ereq
743  *
744  * Driver registers this routine as it io request handler.  This
745  * routine issues an fcp WQE with data from the @lpfc_nvme_fcpreq
746  * data structure to the rport indicated in @lpfc_nvme_rport.
747  *
748  * Return value :
749  *   0 - Success
750  *   TODO: What are the failure codes.
751  **/
752 static void
753 lpfc_nvme_io_cmd_wqe_cmpl(struct lpfc_hba *phba, struct lpfc_iocbq *pwqeIn,
754                           struct lpfc_wcqe_complete *wcqe)
755 {
756         struct lpfc_nvme_buf *lpfc_ncmd =
757                 (struct lpfc_nvme_buf *)pwqeIn->context1;
758         struct lpfc_vport *vport = pwqeIn->vport;
759         struct nvmefc_fcp_req *nCmd;
760         struct nvme_fc_ersp_iu *ep;
761         struct nvme_fc_cmd_iu *cp;
762         struct lpfc_nvme_rport *rport;
763         struct lpfc_nodelist *ndlp;
764         unsigned long flags;
765         uint32_t code;
766         uint16_t cid, sqhd, data;
767         uint32_t *ptr;
768
769         /* Sanity check on return of outstanding command */
770         if (!lpfc_ncmd || !lpfc_ncmd->nvmeCmd || !lpfc_ncmd->nrport) {
771                 lpfc_printf_vlog(vport, KERN_ERR, LOG_NODE | LOG_NVME_IOERR,
772                                  "6071 Completion pointers bad on wqe %p.\n",
773                                  wcqe);
774                 return;
775         }
776         phba->fc4NvmeIoCmpls++;
777
778         nCmd = lpfc_ncmd->nvmeCmd;
779         rport = lpfc_ncmd->nrport;
780
781         lpfc_nvmeio_data(phba, "NVME FCP CMPL: xri x%x stat x%x parm x%x\n",
782                          lpfc_ncmd->cur_iocbq.sli4_xritag,
783                          bf_get(lpfc_wcqe_c_status, wcqe), wcqe->parameter);
784         /*
785          * Catch race where our node has transitioned, but the
786          * transport is still transitioning.
787          */
788         ndlp = rport->ndlp;
789         if (!ndlp || !NLP_CHK_NODE_ACT(ndlp)) {
790                 lpfc_printf_vlog(vport, KERN_ERR, LOG_NODE | LOG_NVME_IOERR,
791                                  "6061 rport %p,  DID x%06x node not ready.\n",
792                                  rport, rport->remoteport->port_id);
793
794                 ndlp = lpfc_findnode_did(vport, rport->remoteport->port_id);
795                 if (!ndlp) {
796                         lpfc_printf_vlog(vport, KERN_ERR, LOG_NVME_IOERR,
797                                          "6062 Ignoring NVME cmpl.  No ndlp\n");
798                         goto out_err;
799                 }
800         }
801
802         code = bf_get(lpfc_wcqe_c_code, wcqe);
803         if (code == CQE_CODE_NVME_ERSP) {
804                 /* For this type of CQE, we need to rebuild the rsp */
805                 ep = (struct nvme_fc_ersp_iu *)nCmd->rspaddr;
806
807                 /*
808                  * Get Command Id from cmd to plug into response. This
809                  * code is not needed in the next NVME Transport drop.
810                  */
811                 cp = (struct nvme_fc_cmd_iu *)nCmd->cmdaddr;
812                 cid = cp->sqe.common.command_id;
813
814                 /*
815                  * RSN is in CQE word 2
816                  * SQHD is in CQE Word 3 bits 15:0
817                  * Cmd Specific info is in CQE Word 1
818                  * and in CQE Word 0 bits 15:0
819                  */
820                 sqhd = bf_get(lpfc_wcqe_c_sqhead, wcqe);
821
822                 /* Now lets build the NVME ERSP IU */
823                 ep->iu_len = cpu_to_be16(8);
824                 ep->rsn = wcqe->parameter;
825                 ep->xfrd_len = cpu_to_be32(nCmd->payload_length);
826                 ep->rsvd12 = 0;
827                 ptr = (uint32_t *)&ep->cqe.result.u64;
828                 *ptr++ = wcqe->total_data_placed;
829                 data = bf_get(lpfc_wcqe_c_ersp0, wcqe);
830                 *ptr = (uint32_t)data;
831                 ep->cqe.sq_head = sqhd;
832                 ep->cqe.sq_id =  nCmd->sqid;
833                 ep->cqe.command_id = cid;
834                 ep->cqe.status = 0;
835
836                 lpfc_ncmd->status = IOSTAT_SUCCESS;
837                 lpfc_ncmd->result = 0;
838                 nCmd->rcv_rsplen = LPFC_NVME_ERSP_LEN;
839                 nCmd->transferred_length = nCmd->payload_length;
840         } else {
841                 lpfc_ncmd->status = (bf_get(lpfc_wcqe_c_status, wcqe) &
842                             LPFC_IOCB_STATUS_MASK);
843                 lpfc_ncmd->result = wcqe->parameter;
844
845                 /* For NVME, the only failure path that results in an
846                  * IO error is when the adapter rejects it.  All other
847                  * conditions are a success case and resolved by the
848                  * transport.
849                  * IOSTAT_FCP_RSP_ERROR means:
850                  * 1. Length of data received doesn't match total
851                  *    transfer length in WQE
852                  * 2. If the RSP payload does NOT match these cases:
853                  *    a. RSP length 12/24 bytes and all zeros
854                  *    b. NVME ERSP
855                  */
856                 switch (lpfc_ncmd->status) {
857                 case IOSTAT_SUCCESS:
858                         nCmd->transferred_length = wcqe->total_data_placed;
859                         nCmd->rcv_rsplen = 0;
860                         nCmd->status = 0;
861                         break;
862                 case IOSTAT_FCP_RSP_ERROR:
863                         nCmd->transferred_length = wcqe->total_data_placed;
864                         nCmd->rcv_rsplen = wcqe->parameter;
865                         nCmd->status = 0;
866                         /* Sanity check */
867                         if (nCmd->rcv_rsplen == LPFC_NVME_ERSP_LEN)
868                                 break;
869                         lpfc_printf_vlog(vport, KERN_ERR, LOG_NVME_IOERR,
870                                          "6081 NVME Completion Protocol Error: "
871                                          "status x%x result x%x placed x%x\n",
872                                          lpfc_ncmd->status, lpfc_ncmd->result,
873                                          wcqe->total_data_placed);
874                         break;
875                 default:
876 out_err:
877                         lpfc_printf_vlog(vport, KERN_ERR, LOG_NVME_IOERR,
878                                          "6072 NVME Completion Error: "
879                                          "status x%x result x%x placed x%x\n",
880                                          lpfc_ncmd->status, lpfc_ncmd->result,
881                                          wcqe->total_data_placed);
882                         nCmd->transferred_length = 0;
883                         nCmd->rcv_rsplen = 0;
884                         nCmd->status = NVME_SC_FC_TRANSPORT_ERROR;
885                 }
886         }
887
888         /* pick up SLI4 exhange busy condition */
889         if (bf_get(lpfc_wcqe_c_xb, wcqe))
890                 lpfc_ncmd->flags |= LPFC_SBUF_XBUSY;
891         else
892                 lpfc_ncmd->flags &= ~LPFC_SBUF_XBUSY;
893
894         if (ndlp && NLP_CHK_NODE_ACT(ndlp))
895                 atomic_dec(&ndlp->cmd_pending);
896
897         /* Update stats and complete the IO.  There is
898          * no need for dma unprep because the nvme_transport
899          * owns the dma address.
900          */
901 #ifdef CONFIG_SCSI_LPFC_DEBUG_FS
902         if (phba->ktime_on) {
903                 lpfc_ncmd->ts_isr_cmpl = pwqeIn->isr_timestamp;
904                 lpfc_ncmd->ts_data_nvme = ktime_get_ns();
905                 phba->ktime_last_cmd = lpfc_ncmd->ts_data_nvme;
906                 lpfc_nvme_ktime(phba, lpfc_ncmd);
907         }
908         if (phba->cpucheck_on & LPFC_CHECK_NVME_IO) {
909                 if (lpfc_ncmd->cpu != smp_processor_id())
910                         lpfc_printf_vlog(vport, KERN_ERR, LOG_NVME_IOERR,
911                                          "6701 CPU Check cmpl: "
912                                          "cpu %d expect %d\n",
913                                          smp_processor_id(), lpfc_ncmd->cpu);
914                 if (lpfc_ncmd->cpu < LPFC_CHECK_CPU_CNT)
915                         phba->cpucheck_cmpl_io[lpfc_ncmd->cpu]++;
916         }
917 #endif
918         nCmd->done(nCmd);
919
920         spin_lock_irqsave(&phba->hbalock, flags);
921         lpfc_ncmd->nrport = NULL;
922         spin_unlock_irqrestore(&phba->hbalock, flags);
923
924         lpfc_release_nvme_buf(phba, lpfc_ncmd);
925 }
926
927
928 /**
929  * lpfc_nvme_prep_io_cmd - Issue an NVME-over-FCP IO
930  * @lpfc_pnvme: Pointer to the driver's nvme instance data
931  * @lpfc_nvme_lport: Pointer to the driver's local port data
932  * @lpfc_nvme_rport: Pointer to the rport getting the @lpfc_nvme_ereq
933  * @lpfc_nvme_fcreq: IO request from nvme fc to driver.
934  * @hw_queue_handle: Driver-returned handle in lpfc_nvme_create_queue
935  *
936  * Driver registers this routine as it io request handler.  This
937  * routine issues an fcp WQE with data from the @lpfc_nvme_fcpreq
938  * data structure to the rport indicated in @lpfc_nvme_rport.
939  *
940  * Return value :
941  *   0 - Success
942  *   TODO: What are the failure codes.
943  **/
944 static int
945 lpfc_nvme_prep_io_cmd(struct lpfc_vport *vport,
946                       struct lpfc_nvme_buf *lpfc_ncmd,
947                       struct lpfc_nodelist *pnode)
948 {
949         struct lpfc_hba *phba = vport->phba;
950         struct nvmefc_fcp_req *nCmd = lpfc_ncmd->nvmeCmd;
951         struct lpfc_iocbq *pwqeq = &(lpfc_ncmd->cur_iocbq);
952         union lpfc_wqe128 *wqe = (union lpfc_wqe128 *)&pwqeq->wqe;
953         uint32_t req_len;
954
955         if (!pnode || !NLP_CHK_NODE_ACT(pnode))
956                 return -EINVAL;
957
958         /*
959          * There are three possibilities here - use scatter-gather segment, use
960          * the single mapping, or neither.
961          */
962         wqe->fcp_iwrite.initial_xfer_len = 0;
963         if (nCmd->sg_cnt) {
964                 if (nCmd->io_dir == NVMEFC_FCP_WRITE) {
965                         /* Word 5 */
966                         if ((phba->cfg_nvme_enable_fb) &&
967                             (pnode->nlp_flag & NLP_FIRSTBURST)) {
968                                 req_len = lpfc_ncmd->nvmeCmd->payload_length;
969                                 if (req_len < pnode->nvme_fb_size)
970                                         wqe->fcp_iwrite.initial_xfer_len =
971                                                 req_len;
972                                 else
973                                         wqe->fcp_iwrite.initial_xfer_len =
974                                                 pnode->nvme_fb_size;
975                         }
976
977                         /* Word 7 */
978                         bf_set(wqe_cmnd, &wqe->generic.wqe_com,
979                                CMD_FCP_IWRITE64_WQE);
980                         bf_set(wqe_pu, &wqe->generic.wqe_com,
981                                PARM_READ_CHECK);
982
983                         /* Word 10 */
984                         bf_set(wqe_qosd, &wqe->fcp_iwrite.wqe_com, 0);
985                         bf_set(wqe_iod, &wqe->fcp_iwrite.wqe_com,
986                                LPFC_WQE_IOD_WRITE);
987                         bf_set(wqe_lenloc, &wqe->fcp_iwrite.wqe_com,
988                                LPFC_WQE_LENLOC_WORD4);
989                         if (phba->cfg_nvme_oas)
990                                 bf_set(wqe_oas, &wqe->fcp_iwrite.wqe_com, 1);
991
992                         /* Word 11 */
993                         bf_set(wqe_cmd_type, &wqe->generic.wqe_com,
994                                NVME_WRITE_CMD);
995
996                         phba->fc4NvmeOutputRequests++;
997                 } else {
998                         /* Word 7 */
999                         bf_set(wqe_cmnd, &wqe->generic.wqe_com,
1000                                CMD_FCP_IREAD64_WQE);
1001                         bf_set(wqe_pu, &wqe->generic.wqe_com,
1002                                PARM_READ_CHECK);
1003
1004                         /* Word 10 */
1005                         bf_set(wqe_qosd, &wqe->fcp_iread.wqe_com, 0);
1006                         bf_set(wqe_iod, &wqe->fcp_iread.wqe_com,
1007                                LPFC_WQE_IOD_READ);
1008                         bf_set(wqe_lenloc, &wqe->fcp_iread.wqe_com,
1009                                LPFC_WQE_LENLOC_WORD4);
1010                         if (phba->cfg_nvme_oas)
1011                                 bf_set(wqe_oas, &wqe->fcp_iread.wqe_com, 1);
1012
1013                         /* Word 11 */
1014                         bf_set(wqe_cmd_type, &wqe->generic.wqe_com,
1015                                NVME_READ_CMD);
1016
1017                         phba->fc4NvmeInputRequests++;
1018                 }
1019         } else {
1020                 /* Word 4 */
1021                 wqe->fcp_icmd.rsrvd4 = 0;
1022
1023                 /* Word 7 */
1024                 bf_set(wqe_cmnd, &wqe->generic.wqe_com, CMD_FCP_ICMND64_WQE);
1025                 bf_set(wqe_pu, &wqe->generic.wqe_com, 0);
1026
1027                 /* Word 10 */
1028                 bf_set(wqe_qosd, &wqe->fcp_icmd.wqe_com, 1);
1029                 bf_set(wqe_iod, &wqe->fcp_icmd.wqe_com, LPFC_WQE_IOD_WRITE);
1030                 bf_set(wqe_lenloc, &wqe->fcp_icmd.wqe_com,
1031                        LPFC_WQE_LENLOC_NONE);
1032                 if (phba->cfg_nvme_oas)
1033                         bf_set(wqe_oas, &wqe->fcp_icmd.wqe_com, 1);
1034
1035                 /* Word 11 */
1036                 bf_set(wqe_cmd_type, &wqe->generic.wqe_com, NVME_READ_CMD);
1037
1038                 phba->fc4NvmeControlRequests++;
1039         }
1040         /*
1041          * Finish initializing those WQE fields that are independent
1042          * of the nvme_cmnd request_buffer
1043          */
1044
1045         /* Word 6 */
1046         bf_set(wqe_ctxt_tag, &wqe->generic.wqe_com,
1047                phba->sli4_hba.rpi_ids[pnode->nlp_rpi]);
1048         bf_set(wqe_xri_tag, &wqe->generic.wqe_com, pwqeq->sli4_xritag);
1049
1050         /* Word 7 */
1051         /* Preserve Class data in the ndlp. */
1052         bf_set(wqe_class, &wqe->generic.wqe_com,
1053                (pnode->nlp_fcp_info & 0x0f));
1054
1055         /* Word 8 */
1056         wqe->generic.wqe_com.abort_tag = pwqeq->iotag;
1057
1058         /* Word 9 */
1059         bf_set(wqe_reqtag, &wqe->generic.wqe_com, pwqeq->iotag);
1060
1061         /* Word 11 */
1062         bf_set(wqe_cqid, &wqe->generic.wqe_com, LPFC_WQE_CQ_ID_DEFAULT);
1063
1064         pwqeq->vport = vport;
1065         return 0;
1066 }
1067
1068
1069 /**
1070  * lpfc_nvme_prep_io_dma - Issue an NVME-over-FCP IO
1071  * @lpfc_pnvme: Pointer to the driver's nvme instance data
1072  * @lpfc_nvme_lport: Pointer to the driver's local port data
1073  * @lpfc_nvme_rport: Pointer to the rport getting the @lpfc_nvme_ereq
1074  * @lpfc_nvme_fcreq: IO request from nvme fc to driver.
1075  * @hw_queue_handle: Driver-returned handle in lpfc_nvme_create_queue
1076  *
1077  * Driver registers this routine as it io request handler.  This
1078  * routine issues an fcp WQE with data from the @lpfc_nvme_fcpreq
1079  * data structure to the rport indicated in @lpfc_nvme_rport.
1080  *
1081  * Return value :
1082  *   0 - Success
1083  *   TODO: What are the failure codes.
1084  **/
1085 static int
1086 lpfc_nvme_prep_io_dma(struct lpfc_vport *vport,
1087                       struct lpfc_nvme_buf *lpfc_ncmd)
1088 {
1089         struct lpfc_hba *phba = vport->phba;
1090         struct nvmefc_fcp_req *nCmd = lpfc_ncmd->nvmeCmd;
1091         union lpfc_wqe128 *wqe = (union lpfc_wqe128 *)&lpfc_ncmd->cur_iocbq.wqe;
1092         struct sli4_sge *sgl = lpfc_ncmd->nvme_sgl;
1093         struct scatterlist *data_sg;
1094         struct sli4_sge *first_data_sgl;
1095         dma_addr_t physaddr;
1096         uint32_t num_bde = 0;
1097         uint32_t dma_len;
1098         uint32_t dma_offset = 0;
1099         int nseg, i;
1100
1101         /* Fix up the command and response DMA stuff. */
1102         lpfc_nvme_adj_fcp_sgls(vport, lpfc_ncmd, nCmd);
1103
1104         /*
1105          * There are three possibilities here - use scatter-gather segment, use
1106          * the single mapping, or neither.
1107          */
1108         if (nCmd->sg_cnt) {
1109                 /*
1110                  * Jump over the cmd and rsp SGEs.  The fix routine
1111                  * has already adjusted for this.
1112                  */
1113                 sgl += 2;
1114
1115                 first_data_sgl = sgl;
1116                 lpfc_ncmd->seg_cnt = nCmd->sg_cnt;
1117                 if (lpfc_ncmd->seg_cnt > phba->cfg_sg_seg_cnt) {
1118                         lpfc_printf_log(phba, KERN_ERR, LOG_NVME_IOERR,
1119                                         "6058 Too many sg segments from "
1120                                         "NVME Transport.  Max %d, "
1121                                         "nvmeIO sg_cnt %d\n",
1122                                         phba->cfg_sg_seg_cnt,
1123                                         lpfc_ncmd->seg_cnt);
1124                         lpfc_ncmd->seg_cnt = 0;
1125                         return 1;
1126                 }
1127
1128                 /*
1129                  * The driver established a maximum scatter-gather segment count
1130                  * during probe that limits the number of sg elements in any
1131                  * single nvme command.  Just run through the seg_cnt and format
1132                  * the sge's.
1133                  */
1134                 nseg = nCmd->sg_cnt;
1135                 data_sg = nCmd->first_sgl;
1136                 for (i = 0; i < nseg; i++) {
1137                         if (data_sg == NULL) {
1138                                 lpfc_printf_log(phba, KERN_ERR, LOG_NVME_IOERR,
1139                                                 "6059 dptr err %d, nseg %d\n",
1140                                                 i, nseg);
1141                                 lpfc_ncmd->seg_cnt = 0;
1142                                 return 1;
1143                         }
1144                         physaddr = data_sg->dma_address;
1145                         dma_len = data_sg->length;
1146                         sgl->addr_lo = cpu_to_le32(putPaddrLow(physaddr));
1147                         sgl->addr_hi = cpu_to_le32(putPaddrHigh(physaddr));
1148                         sgl->word2 = le32_to_cpu(sgl->word2);
1149                         if ((num_bde + 1) == nseg)
1150                                 bf_set(lpfc_sli4_sge_last, sgl, 1);
1151                         else
1152                                 bf_set(lpfc_sli4_sge_last, sgl, 0);
1153                         bf_set(lpfc_sli4_sge_offset, sgl, dma_offset);
1154                         bf_set(lpfc_sli4_sge_type, sgl, LPFC_SGE_TYPE_DATA);
1155                         sgl->word2 = cpu_to_le32(sgl->word2);
1156                         sgl->sge_len = cpu_to_le32(dma_len);
1157
1158                         dma_offset += dma_len;
1159                         data_sg = sg_next(data_sg);
1160                         sgl++;
1161                 }
1162         } else {
1163                 /* For this clause to be valid, the payload_length
1164                  * and sg_cnt must zero.
1165                  */
1166                 if (nCmd->payload_length != 0) {
1167                         lpfc_printf_log(phba, KERN_ERR, LOG_NVME_IOERR,
1168                                         "6063 NVME DMA Prep Err: sg_cnt %d "
1169                                         "payload_length x%x\n",
1170                                         nCmd->sg_cnt, nCmd->payload_length);
1171                         return 1;
1172                 }
1173         }
1174
1175         /*
1176          * Due to difference in data length between DIF/non-DIF paths,
1177          * we need to set word 4 of WQE here
1178          */
1179         wqe->fcp_iread.total_xfer_len = nCmd->payload_length;
1180         return 0;
1181 }
1182
1183 /**
1184  * lpfc_nvme_fcp_io_submit - Issue an NVME-over-FCP IO
1185  * @lpfc_pnvme: Pointer to the driver's nvme instance data
1186  * @lpfc_nvme_lport: Pointer to the driver's local port data
1187  * @lpfc_nvme_rport: Pointer to the rport getting the @lpfc_nvme_ereq
1188  * @lpfc_nvme_fcreq: IO request from nvme fc to driver.
1189  * @hw_queue_handle: Driver-returned handle in lpfc_nvme_create_queue
1190  *
1191  * Driver registers this routine as it io request handler.  This
1192  * routine issues an fcp WQE with data from the @lpfc_nvme_fcpreq
1193  * data structure to the rport
1194  indicated in @lpfc_nvme_rport.
1195  *
1196  * Return value :
1197  *   0 - Success
1198  *   TODO: What are the failure codes.
1199  **/
1200 static int
1201 lpfc_nvme_fcp_io_submit(struct nvme_fc_local_port *pnvme_lport,
1202                         struct nvme_fc_remote_port *pnvme_rport,
1203                         void *hw_queue_handle,
1204                         struct nvmefc_fcp_req *pnvme_fcreq)
1205 {
1206         int ret = 0;
1207         struct lpfc_nvme_lport *lport;
1208         struct lpfc_vport *vport;
1209         struct lpfc_hba *phba;
1210         struct lpfc_nodelist *ndlp;
1211         struct lpfc_nvme_buf *lpfc_ncmd;
1212         struct lpfc_nvme_rport *rport;
1213         struct lpfc_nvme_qhandle *lpfc_queue_info;
1214 #ifdef CONFIG_SCSI_LPFC_DEBUG_FS
1215         uint64_t start = 0;
1216 #endif
1217
1218         lport = (struct lpfc_nvme_lport *)pnvme_lport->private;
1219         vport = lport->vport;
1220         phba = vport->phba;
1221
1222 #ifdef CONFIG_SCSI_LPFC_DEBUG_FS
1223         if (phba->ktime_on)
1224                 start = ktime_get_ns();
1225 #endif
1226         rport = (struct lpfc_nvme_rport *)pnvme_rport->private;
1227         lpfc_queue_info = (struct lpfc_nvme_qhandle *)hw_queue_handle;
1228
1229         /*
1230          * Catch race where our node has transitioned, but the
1231          * transport is still transitioning.
1232          */
1233         ndlp = rport->ndlp;
1234         if (!ndlp || !NLP_CHK_NODE_ACT(ndlp)) {
1235                 lpfc_printf_vlog(vport, KERN_ERR, LOG_NODE | LOG_NVME_IOERR,
1236                                  "6053 rport %p, ndlp %p, DID x%06x "
1237                                  "ndlp not ready.\n",
1238                                  rport, ndlp, pnvme_rport->port_id);
1239
1240                 ndlp = lpfc_findnode_did(vport, pnvme_rport->port_id);
1241                 if (!ndlp) {
1242                         lpfc_printf_vlog(vport, KERN_ERR, LOG_NVME_IOERR,
1243                                          "6066 Missing node for DID %x\n",
1244                                          pnvme_rport->port_id);
1245                         ret = -ENODEV;
1246                         goto out_fail;
1247                 }
1248         }
1249
1250         /* The remote node has to be a mapped target or it's an error. */
1251         if ((ndlp->nlp_type & NLP_NVME_TARGET) &&
1252             (ndlp->nlp_state != NLP_STE_MAPPED_NODE)) {
1253                 lpfc_printf_vlog(vport, KERN_ERR, LOG_NODE | LOG_NVME_IOERR,
1254                                  "6036 rport %p, DID x%06x not ready for "
1255                                  "IO. State x%x, Type x%x\n",
1256                                  rport, pnvme_rport->port_id,
1257                                  ndlp->nlp_state, ndlp->nlp_type);
1258                 ret = -ENODEV;
1259                 goto out_fail;
1260
1261         }
1262
1263         /* The node is shared with FCP IO, make sure the IO pending count does
1264          * not exceed the programmed depth.
1265          */
1266         if (atomic_read(&ndlp->cmd_pending) >= ndlp->cmd_qdepth) {
1267                 ret = -EAGAIN;
1268                 goto out_fail;
1269         }
1270
1271         lpfc_ncmd = lpfc_get_nvme_buf(phba, ndlp);
1272         if (lpfc_ncmd == NULL) {
1273                 lpfc_printf_vlog(vport, KERN_INFO, LOG_NVME_IOERR,
1274                                  "6065 driver's buffer pool is empty, "
1275                                  "IO failed\n");
1276                 ret = -ENOMEM;
1277                 goto out_fail;
1278         }
1279 #ifdef CONFIG_SCSI_LPFC_DEBUG_FS
1280         if (phba->ktime_on) {
1281                 lpfc_ncmd->ts_cmd_start = start;
1282                 lpfc_ncmd->ts_last_cmd = phba->ktime_last_cmd;
1283         }
1284 #endif
1285
1286         /*
1287          * Store the data needed by the driver to issue, abort, and complete
1288          * an IO.
1289          * Do not let the IO hang out forever.  There is no midlayer issuing
1290          * an abort so inform the FW of the maximum IO pending time.
1291          */
1292         pnvme_fcreq->private = (void *)lpfc_ncmd;
1293         lpfc_ncmd->nvmeCmd = pnvme_fcreq;
1294         lpfc_ncmd->nrport = rport;
1295         lpfc_ncmd->ndlp = ndlp;
1296         lpfc_ncmd->start_time = jiffies;
1297
1298         lpfc_nvme_prep_io_cmd(vport, lpfc_ncmd, ndlp);
1299         ret = lpfc_nvme_prep_io_dma(vport, lpfc_ncmd);
1300         if (ret) {
1301                 ret = -ENOMEM;
1302                 goto out_free_nvme_buf;
1303         }
1304
1305         atomic_inc(&ndlp->cmd_pending);
1306
1307         /*
1308          * Issue the IO on the WQ indicated by index in the hw_queue_handle.
1309          * This identfier was create in our hardware queue create callback
1310          * routine. The driver now is dependent on the IO queue steering from
1311          * the transport.  We are trusting the upper NVME layers know which
1312          * index to use and that they have affinitized a CPU to this hardware
1313          * queue. A hardware queue maps to a driver MSI-X vector/EQ/CQ/WQ.
1314          */
1315         lpfc_ncmd->cur_iocbq.hba_wqidx = lpfc_queue_info->index;
1316
1317         lpfc_nvmeio_data(phba, "NVME FCP XMIT: xri x%x idx %d to %06x\n",
1318                          lpfc_ncmd->cur_iocbq.sli4_xritag,
1319                          lpfc_queue_info->index, ndlp->nlp_DID);
1320
1321         ret = lpfc_sli4_issue_wqe(phba, LPFC_FCP_RING, &lpfc_ncmd->cur_iocbq);
1322         if (ret) {
1323                 atomic_dec(&ndlp->cmd_pending);
1324                 lpfc_printf_vlog(vport, KERN_ERR, LOG_NVME_IOERR,
1325                                  "6113 FCP could not issue WQE err %x "
1326                                  "sid: x%x did: x%x oxid: x%x\n",
1327                                  ret, vport->fc_myDID, ndlp->nlp_DID,
1328                                  lpfc_ncmd->cur_iocbq.sli4_xritag);
1329                 ret = -EBUSY;
1330                 goto out_free_nvme_buf;
1331         }
1332
1333 #ifdef CONFIG_SCSI_LPFC_DEBUG_FS
1334         if (phba->ktime_on)
1335                 lpfc_ncmd->ts_cmd_wqput = ktime_get_ns();
1336
1337         if (phba->cpucheck_on & LPFC_CHECK_NVME_IO) {
1338                 lpfc_ncmd->cpu = smp_processor_id();
1339                 if (lpfc_ncmd->cpu != lpfc_queue_info->index) {
1340                         /* Check for admin queue */
1341                         if (lpfc_queue_info->qidx) {
1342                                 lpfc_printf_vlog(vport,
1343                                                  KERN_ERR, LOG_NVME_IOERR,
1344                                                 "6702 CPU Check cmd: "
1345                                                 "cpu %d wq %d\n",
1346                                                 lpfc_ncmd->cpu,
1347                                                 lpfc_queue_info->index);
1348                         }
1349                         lpfc_ncmd->cpu = lpfc_queue_info->index;
1350                 }
1351                 if (lpfc_ncmd->cpu < LPFC_CHECK_CPU_CNT)
1352                         phba->cpucheck_xmt_io[lpfc_ncmd->cpu]++;
1353         }
1354 #endif
1355         return 0;
1356
1357  out_free_nvme_buf:
1358         lpfc_release_nvme_buf(phba, lpfc_ncmd);
1359  out_fail:
1360         return ret;
1361 }
1362
1363 /**
1364  * lpfc_nvme_abort_fcreq_cmpl - Complete an NVME FCP abort request.
1365  * @phba: Pointer to HBA context object
1366  * @cmdiocb: Pointer to command iocb object.
1367  * @rspiocb: Pointer to response iocb object.
1368  *
1369  * This is the callback function for any NVME FCP IO that was aborted.
1370  *
1371  * Return value:
1372  *   None
1373  **/
1374 void
1375 lpfc_nvme_abort_fcreq_cmpl(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
1376                            struct lpfc_wcqe_complete *abts_cmpl)
1377 {
1378         lpfc_printf_log(phba, KERN_ERR, LOG_NVME,
1379                         "6145 ABORT_XRI_CN completing on rpi x%x "
1380                         "original iotag x%x, abort cmd iotag x%x "
1381                         "req_tag x%x, status x%x, hwstatus x%x\n",
1382                         cmdiocb->iocb.un.acxri.abortContextTag,
1383                         cmdiocb->iocb.un.acxri.abortIoTag,
1384                         cmdiocb->iotag,
1385                         bf_get(lpfc_wcqe_c_request_tag, abts_cmpl),
1386                         bf_get(lpfc_wcqe_c_status, abts_cmpl),
1387                         bf_get(lpfc_wcqe_c_hw_status, abts_cmpl));
1388         lpfc_sli_release_iocbq(phba, cmdiocb);
1389 }
1390
1391 /**
1392  * lpfc_nvme_fcp_abort - Issue an NVME-over-FCP ABTS
1393  * @lpfc_pnvme: Pointer to the driver's nvme instance data
1394  * @lpfc_nvme_lport: Pointer to the driver's local port data
1395  * @lpfc_nvme_rport: Pointer to the rport getting the @lpfc_nvme_ereq
1396  * @lpfc_nvme_fcreq: IO request from nvme fc to driver.
1397  * @hw_queue_handle: Driver-returned handle in lpfc_nvme_create_queue
1398  *
1399  * Driver registers this routine as its nvme request io abort handler.  This
1400  * routine issues an fcp Abort WQE with data from the @lpfc_nvme_fcpreq
1401  * data structure to the rport indicated in @lpfc_nvme_rport.  This routine
1402  * is executed asynchronously - one the target is validated as "MAPPED" and
1403  * ready for IO, the driver issues the abort request and returns.
1404  *
1405  * Return value:
1406  *   None
1407  **/
1408 static void
1409 lpfc_nvme_fcp_abort(struct nvme_fc_local_port *pnvme_lport,
1410                     struct nvme_fc_remote_port *pnvme_rport,
1411                     void *hw_queue_handle,
1412                     struct nvmefc_fcp_req *pnvme_fcreq)
1413 {
1414         struct lpfc_nvme_lport *lport;
1415         struct lpfc_vport *vport;
1416         struct lpfc_hba *phba;
1417         struct lpfc_nodelist *ndlp;
1418         struct lpfc_nvme_rport *rport;
1419         struct lpfc_nvme_buf *lpfc_nbuf;
1420         struct lpfc_iocbq *abts_buf;
1421         struct lpfc_iocbq *nvmereq_wqe;
1422         union lpfc_wqe *abts_wqe;
1423         unsigned long flags;
1424         int ret_val;
1425
1426         lport = (struct lpfc_nvme_lport *)pnvme_lport->private;
1427         rport = (struct lpfc_nvme_rport *)pnvme_rport->private;
1428         vport = lport->vport;
1429         phba = vport->phba;
1430
1431         /* Announce entry to new IO submit field. */
1432         lpfc_printf_vlog(vport, KERN_ERR, LOG_NVME_ABTS,
1433                          "6002 Abort Request to rport DID x%06x "
1434                          "for nvme_fc_req %p\n",
1435                          pnvme_rport->port_id,
1436                          pnvme_fcreq);
1437
1438         /*
1439          * Catch race where our node has transitioned, but the
1440          * transport is still transitioning.
1441          */
1442         ndlp = rport->ndlp;
1443         if (!ndlp || !NLP_CHK_NODE_ACT(ndlp)) {
1444                 lpfc_printf_vlog(vport, KERN_ERR, LOG_NODE | LOG_NVME_ABTS,
1445                                  "6054 rport %p, ndlp %p, DID x%06x ndlp "
1446                                  " not ready.\n",
1447                                  rport, ndlp, pnvme_rport->port_id);
1448
1449                 ndlp = lpfc_findnode_did(vport, pnvme_rport->port_id);
1450                 if (!ndlp) {
1451                         lpfc_printf_vlog(vport, KERN_ERR, LOG_NVME_ABTS,
1452                                          "6055 Could not find node for "
1453                                          "DID %x\n",
1454                                          pnvme_rport->port_id);
1455                         return;
1456                 }
1457         }
1458
1459         /* The remote node has to be ready to send an abort. */
1460         if ((ndlp->nlp_state != NLP_STE_MAPPED_NODE) &&
1461             !(ndlp->nlp_type & NLP_NVME_TARGET)) {
1462                 lpfc_printf_vlog(vport, KERN_ERR, LOG_NODE | LOG_NVME_ABTS,
1463                                  "6048 rport %p, DID x%06x not ready for "
1464                                  "IO. State x%x, Type x%x\n",
1465                                  rport, pnvme_rport->port_id,
1466                                  ndlp->nlp_state, ndlp->nlp_type);
1467                 return;
1468         }
1469
1470         /* If the hba is getting reset, this flag is set.  It is
1471          * cleared when the reset is complete and rings reestablished.
1472          */
1473         spin_lock_irqsave(&phba->hbalock, flags);
1474         /* driver queued commands are in process of being flushed */
1475         if (phba->hba_flag & HBA_NVME_IOQ_FLUSH) {
1476                 spin_unlock_irqrestore(&phba->hbalock, flags);
1477                 lpfc_printf_vlog(vport, KERN_ERR, LOG_NVME,
1478                                  "6139 Driver in reset cleanup - flushing "
1479                                  "NVME Req now.  hba_flag x%x\n",
1480                                  phba->hba_flag);
1481                 return;
1482         }
1483
1484         lpfc_nbuf = (struct lpfc_nvme_buf *)pnvme_fcreq->private;
1485         if (!lpfc_nbuf) {
1486                 spin_unlock_irqrestore(&phba->hbalock, flags);
1487                 lpfc_printf_vlog(vport, KERN_ERR, LOG_NVME,
1488                                  "6140 NVME IO req has no matching lpfc nvme "
1489                                  "io buffer.  Skipping abort req.\n");
1490                 return;
1491         } else if (!lpfc_nbuf->nvmeCmd) {
1492                 spin_unlock_irqrestore(&phba->hbalock, flags);
1493                 lpfc_printf_vlog(vport, KERN_ERR, LOG_NVME,
1494                                  "6141 lpfc NVME IO req has no nvme_fcreq "
1495                                  "io buffer.  Skipping abort req.\n");
1496                 return;
1497         }
1498         nvmereq_wqe = &lpfc_nbuf->cur_iocbq;
1499
1500         /*
1501          * The lpfc_nbuf and the mapped nvme_fcreq in the driver's
1502          * state must match the nvme_fcreq passed by the nvme
1503          * transport.  If they don't match, it is likely the driver
1504          * has already completed the NVME IO and the nvme transport
1505          * has not seen it yet.
1506          */
1507         if (lpfc_nbuf->nvmeCmd != pnvme_fcreq) {
1508                 spin_unlock_irqrestore(&phba->hbalock, flags);
1509                 lpfc_printf_vlog(vport, KERN_ERR, LOG_NVME,
1510                                  "6143 NVME req mismatch: "
1511                                  "lpfc_nbuf %p nvmeCmd %p, "
1512                                  "pnvme_fcreq %p.  Skipping Abort xri x%x\n",
1513                                  lpfc_nbuf, lpfc_nbuf->nvmeCmd,
1514                                  pnvme_fcreq, nvmereq_wqe->sli4_xritag);
1515                 return;
1516         }
1517
1518         /* Don't abort IOs no longer on the pending queue. */
1519         if (!(nvmereq_wqe->iocb_flag & LPFC_IO_ON_TXCMPLQ)) {
1520                 spin_unlock_irqrestore(&phba->hbalock, flags);
1521                 lpfc_printf_vlog(vport, KERN_ERR, LOG_NVME,
1522                                  "6142 NVME IO req %p not queued - skipping "
1523                                  "abort req xri x%x\n",
1524                                  pnvme_fcreq, nvmereq_wqe->sli4_xritag);
1525                 return;
1526         }
1527
1528         lpfc_nvmeio_data(phba, "NVME FCP ABORT: xri x%x idx %d to %06x\n",
1529                          nvmereq_wqe->sli4_xritag,
1530                          nvmereq_wqe->hba_wqidx, ndlp->nlp_DID);
1531
1532         /* Outstanding abort is in progress */
1533         if (nvmereq_wqe->iocb_flag & LPFC_DRIVER_ABORTED) {
1534                 spin_unlock_irqrestore(&phba->hbalock, flags);
1535                 lpfc_printf_vlog(vport, KERN_ERR, LOG_NVME,
1536                                  "6144 Outstanding NVME I/O Abort Request "
1537                                  "still pending on nvme_fcreq %p, "
1538                                  "lpfc_ncmd %p xri x%x\n",
1539                                  pnvme_fcreq, lpfc_nbuf,
1540                                  nvmereq_wqe->sli4_xritag);
1541                 return;
1542         }
1543
1544         abts_buf = __lpfc_sli_get_iocbq(phba);
1545         if (!abts_buf) {
1546                 spin_unlock_irqrestore(&phba->hbalock, flags);
1547                 lpfc_printf_vlog(vport, KERN_ERR, LOG_NVME,
1548                                  "6136 No available abort wqes. Skipping "
1549                                  "Abts req for nvme_fcreq %p xri x%x\n",
1550                                  pnvme_fcreq, nvmereq_wqe->sli4_xritag);
1551                 return;
1552         }
1553
1554         /* Ready - mark outstanding as aborted by driver. */
1555         nvmereq_wqe->iocb_flag |= LPFC_DRIVER_ABORTED;
1556
1557         /* Complete prepping the abort wqe and issue to the FW. */
1558         abts_wqe = &abts_buf->wqe;
1559
1560         /* WQEs are reused.  Clear stale data and set key fields to
1561          * zero like ia, iaab, iaar, xri_tag, and ctxt_tag.
1562          */
1563         memset(abts_wqe, 0, sizeof(union lpfc_wqe));
1564         bf_set(abort_cmd_criteria, &abts_wqe->abort_cmd, T_XRI_TAG);
1565
1566         /* word 7 */
1567         bf_set(wqe_ct, &abts_wqe->abort_cmd.wqe_com, 0);
1568         bf_set(wqe_cmnd, &abts_wqe->abort_cmd.wqe_com, CMD_ABORT_XRI_CX);
1569         bf_set(wqe_class, &abts_wqe->abort_cmd.wqe_com,
1570                nvmereq_wqe->iocb.ulpClass);
1571
1572         /* word 8 - tell the FW to abort the IO associated with this
1573          * outstanding exchange ID.
1574          */
1575         abts_wqe->abort_cmd.wqe_com.abort_tag = nvmereq_wqe->sli4_xritag;
1576
1577         /* word 9 - this is the iotag for the abts_wqe completion. */
1578         bf_set(wqe_reqtag, &abts_wqe->abort_cmd.wqe_com,
1579                abts_buf->iotag);
1580
1581         /* word 10 */
1582         bf_set(wqe_wqid, &abts_wqe->abort_cmd.wqe_com, nvmereq_wqe->hba_wqidx);
1583         bf_set(wqe_qosd, &abts_wqe->abort_cmd.wqe_com, 1);
1584         bf_set(wqe_lenloc, &abts_wqe->abort_cmd.wqe_com, LPFC_WQE_LENLOC_NONE);
1585
1586         /* word 11 */
1587         bf_set(wqe_cmd_type, &abts_wqe->abort_cmd.wqe_com, OTHER_COMMAND);
1588         bf_set(wqe_wqec, &abts_wqe->abort_cmd.wqe_com, 1);
1589         bf_set(wqe_cqid, &abts_wqe->abort_cmd.wqe_com, LPFC_WQE_CQ_ID_DEFAULT);
1590
1591         /* ABTS WQE must go to the same WQ as the WQE to be aborted */
1592         abts_buf->iocb_flag |= LPFC_IO_NVME;
1593         abts_buf->hba_wqidx = nvmereq_wqe->hba_wqidx;
1594         abts_buf->vport = vport;
1595         abts_buf->wqe_cmpl = lpfc_nvme_abort_fcreq_cmpl;
1596         ret_val = lpfc_sli4_issue_wqe(phba, LPFC_FCP_RING, abts_buf);
1597         spin_unlock_irqrestore(&phba->hbalock, flags);
1598         if (ret_val == IOCB_ERROR) {
1599                 lpfc_printf_vlog(vport, KERN_ERR, LOG_NVME,
1600                                  "6137 Failed abts issue_wqe with status x%x "
1601                                  "for nvme_fcreq %p.\n",
1602                                  ret_val, pnvme_fcreq);
1603                 lpfc_sli_release_iocbq(phba, abts_buf);
1604                 return;
1605         }
1606
1607         lpfc_printf_vlog(vport, KERN_ERR, LOG_NVME,
1608                          "6138 Transport Abort NVME Request Issued for "
1609                          "ox_id x%x on reqtag x%x\n",
1610                          nvmereq_wqe->sli4_xritag,
1611                          abts_buf->iotag);
1612 }
1613
1614 /* Declare and initialization an instance of the FC NVME template. */
1615 static struct nvme_fc_port_template lpfc_nvme_template = {
1616         /* initiator-based functions */
1617         .localport_delete  = lpfc_nvme_localport_delete,
1618         .remoteport_delete = lpfc_nvme_remoteport_delete,
1619         .create_queue = lpfc_nvme_create_queue,
1620         .delete_queue = lpfc_nvme_delete_queue,
1621         .ls_req       = lpfc_nvme_ls_req,
1622         .fcp_io       = lpfc_nvme_fcp_io_submit,
1623         .ls_abort     = lpfc_nvme_ls_abort,
1624         .fcp_abort    = lpfc_nvme_fcp_abort,
1625
1626         .max_hw_queues = 1,
1627         .max_sgl_segments = LPFC_NVME_DEFAULT_SEGS,
1628         .max_dif_sgl_segments = LPFC_NVME_DEFAULT_SEGS,
1629         .dma_boundary = 0xFFFFFFFF,
1630
1631         /* Sizes of additional private data for data structures.
1632          * No use for the last two sizes at this time.
1633          */
1634         .local_priv_sz = sizeof(struct lpfc_nvme_lport),
1635         .remote_priv_sz = sizeof(struct lpfc_nvme_rport),
1636         .lsrqst_priv_sz = 0,
1637         .fcprqst_priv_sz = 0,
1638 };
1639
1640 /**
1641  * lpfc_sli4_post_nvme_sgl_block - post a block of nvme sgl list to firmware
1642  * @phba: pointer to lpfc hba data structure.
1643  * @nblist: pointer to nvme buffer list.
1644  * @count: number of scsi buffers on the list.
1645  *
1646  * This routine is invoked to post a block of @count scsi sgl pages from a
1647  * SCSI buffer list @nblist to the HBA using non-embedded mailbox command.
1648  * No Lock is held.
1649  *
1650  **/
1651 static int
1652 lpfc_sli4_post_nvme_sgl_block(struct lpfc_hba *phba,
1653                               struct list_head *nblist,
1654                               int count)
1655 {
1656         struct lpfc_nvme_buf *lpfc_ncmd;
1657         struct lpfc_mbx_post_uembed_sgl_page1 *sgl;
1658         struct sgl_page_pairs *sgl_pg_pairs;
1659         void *viraddr;
1660         LPFC_MBOXQ_t *mbox;
1661         uint32_t reqlen, alloclen, pg_pairs;
1662         uint32_t mbox_tmo;
1663         uint16_t xritag_start = 0;
1664         int rc = 0;
1665         uint32_t shdr_status, shdr_add_status;
1666         dma_addr_t pdma_phys_bpl1;
1667         union lpfc_sli4_cfg_shdr *shdr;
1668
1669         /* Calculate the requested length of the dma memory */
1670         reqlen = count * sizeof(struct sgl_page_pairs) +
1671                  sizeof(union lpfc_sli4_cfg_shdr) + sizeof(uint32_t);
1672         if (reqlen > SLI4_PAGE_SIZE) {
1673                 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
1674                                 "6118 Block sgl registration required DMA "
1675                                 "size (%d) great than a page\n", reqlen);
1676                 return -ENOMEM;
1677         }
1678         mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
1679         if (!mbox) {
1680                 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
1681                                 "6119 Failed to allocate mbox cmd memory\n");
1682                 return -ENOMEM;
1683         }
1684
1685         /* Allocate DMA memory and set up the non-embedded mailbox command */
1686         alloclen = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
1687                                 LPFC_MBOX_OPCODE_FCOE_POST_SGL_PAGES, reqlen,
1688                                 LPFC_SLI4_MBX_NEMBED);
1689
1690         if (alloclen < reqlen) {
1691                 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
1692                                 "6120 Allocated DMA memory size (%d) is "
1693                                 "less than the requested DMA memory "
1694                                 "size (%d)\n", alloclen, reqlen);
1695                 lpfc_sli4_mbox_cmd_free(phba, mbox);
1696                 return -ENOMEM;
1697         }
1698
1699         /* Get the first SGE entry from the non-embedded DMA memory */
1700         viraddr = mbox->sge_array->addr[0];
1701
1702         /* Set up the SGL pages in the non-embedded DMA pages */
1703         sgl = (struct lpfc_mbx_post_uembed_sgl_page1 *)viraddr;
1704         sgl_pg_pairs = &sgl->sgl_pg_pairs;
1705
1706         pg_pairs = 0;
1707         list_for_each_entry(lpfc_ncmd, nblist, list) {
1708                 /* Set up the sge entry */
1709                 sgl_pg_pairs->sgl_pg0_addr_lo =
1710                         cpu_to_le32(putPaddrLow(lpfc_ncmd->dma_phys_sgl));
1711                 sgl_pg_pairs->sgl_pg0_addr_hi =
1712                         cpu_to_le32(putPaddrHigh(lpfc_ncmd->dma_phys_sgl));
1713                 if (phba->cfg_sg_dma_buf_size > SGL_PAGE_SIZE)
1714                         pdma_phys_bpl1 = lpfc_ncmd->dma_phys_sgl +
1715                                                 SGL_PAGE_SIZE;
1716                 else
1717                         pdma_phys_bpl1 = 0;
1718                 sgl_pg_pairs->sgl_pg1_addr_lo =
1719                         cpu_to_le32(putPaddrLow(pdma_phys_bpl1));
1720                 sgl_pg_pairs->sgl_pg1_addr_hi =
1721                         cpu_to_le32(putPaddrHigh(pdma_phys_bpl1));
1722                 /* Keep the first xritag on the list */
1723                 if (pg_pairs == 0)
1724                         xritag_start = lpfc_ncmd->cur_iocbq.sli4_xritag;
1725                 sgl_pg_pairs++;
1726                 pg_pairs++;
1727         }
1728         bf_set(lpfc_post_sgl_pages_xri, sgl, xritag_start);
1729         bf_set(lpfc_post_sgl_pages_xricnt, sgl, pg_pairs);
1730         /* Perform endian conversion if necessary */
1731         sgl->word0 = cpu_to_le32(sgl->word0);
1732
1733         if (!phba->sli4_hba.intr_enable)
1734                 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
1735         else {
1736                 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
1737                 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
1738         }
1739         shdr = (union lpfc_sli4_cfg_shdr *)&sgl->cfg_shdr;
1740         shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
1741         shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
1742         if (rc != MBX_TIMEOUT)
1743                 lpfc_sli4_mbox_cmd_free(phba, mbox);
1744         if (shdr_status || shdr_add_status || rc) {
1745                 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
1746                                 "6125 POST_SGL_BLOCK mailbox command failed "
1747                                 "status x%x add_status x%x mbx status x%x\n",
1748                                 shdr_status, shdr_add_status, rc);
1749                 rc = -ENXIO;
1750         }
1751         return rc;
1752 }
1753
1754 /**
1755  * lpfc_post_nvme_sgl_list - Post blocks of nvme buffer sgls from a list
1756  * @phba: pointer to lpfc hba data structure.
1757  * @post_nblist: pointer to the nvme buffer list.
1758  *
1759  * This routine walks a list of nvme buffers that was passed in. It attempts
1760  * to construct blocks of nvme buffer sgls which contains contiguous xris and
1761  * uses the non-embedded SGL block post mailbox commands to post to the port.
1762  * For single NVME buffer sgl with non-contiguous xri, if any, it shall use
1763  * embedded SGL post mailbox command for posting. The @post_nblist passed in
1764  * must be local list, thus no lock is needed when manipulate the list.
1765  *
1766  * Returns: 0 = failure, non-zero number of successfully posted buffers.
1767  **/
1768 static int
1769 lpfc_post_nvme_sgl_list(struct lpfc_hba *phba,
1770                              struct list_head *post_nblist, int sb_count)
1771 {
1772         struct lpfc_nvme_buf *lpfc_ncmd, *lpfc_ncmd_next;
1773         int status, sgl_size;
1774         int post_cnt = 0, block_cnt = 0, num_posting = 0, num_posted = 0;
1775         dma_addr_t pdma_phys_sgl1;
1776         int last_xritag = NO_XRI;
1777         int cur_xritag;
1778         LIST_HEAD(prep_nblist);
1779         LIST_HEAD(blck_nblist);
1780         LIST_HEAD(nvme_nblist);
1781
1782         /* sanity check */
1783         if (sb_count <= 0)
1784                 return -EINVAL;
1785
1786         sgl_size = phba->cfg_sg_dma_buf_size;
1787
1788         list_for_each_entry_safe(lpfc_ncmd, lpfc_ncmd_next, post_nblist, list) {
1789                 list_del_init(&lpfc_ncmd->list);
1790                 block_cnt++;
1791                 if ((last_xritag != NO_XRI) &&
1792                     (lpfc_ncmd->cur_iocbq.sli4_xritag != last_xritag + 1)) {
1793                         /* a hole in xri block, form a sgl posting block */
1794                         list_splice_init(&prep_nblist, &blck_nblist);
1795                         post_cnt = block_cnt - 1;
1796                         /* prepare list for next posting block */
1797                         list_add_tail(&lpfc_ncmd->list, &prep_nblist);
1798                         block_cnt = 1;
1799                 } else {
1800                         /* prepare list for next posting block */
1801                         list_add_tail(&lpfc_ncmd->list, &prep_nblist);
1802                         /* enough sgls for non-embed sgl mbox command */
1803                         if (block_cnt == LPFC_NEMBED_MBOX_SGL_CNT) {
1804                                 list_splice_init(&prep_nblist, &blck_nblist);
1805                                 post_cnt = block_cnt;
1806                                 block_cnt = 0;
1807                         }
1808                 }
1809                 num_posting++;
1810                 last_xritag = lpfc_ncmd->cur_iocbq.sli4_xritag;
1811
1812                 /* end of repost sgl list condition for NVME buffers */
1813                 if (num_posting == sb_count) {
1814                         if (post_cnt == 0) {
1815                                 /* last sgl posting block */
1816                                 list_splice_init(&prep_nblist, &blck_nblist);
1817                                 post_cnt = block_cnt;
1818                         } else if (block_cnt == 1) {
1819                                 /* last single sgl with non-contiguous xri */
1820                                 if (sgl_size > SGL_PAGE_SIZE)
1821                                         pdma_phys_sgl1 =
1822                                                 lpfc_ncmd->dma_phys_sgl +
1823                                                 SGL_PAGE_SIZE;
1824                                 else
1825                                         pdma_phys_sgl1 = 0;
1826                                 cur_xritag = lpfc_ncmd->cur_iocbq.sli4_xritag;
1827                                 status = lpfc_sli4_post_sgl(phba,
1828                                                 lpfc_ncmd->dma_phys_sgl,
1829                                                 pdma_phys_sgl1, cur_xritag);
1830                                 if (status) {
1831                                         /* failure, put on abort nvme list */
1832                                         lpfc_ncmd->flags |= LPFC_SBUF_XBUSY;
1833                                 } else {
1834                                         /* success, put on NVME buffer list */
1835                                         lpfc_ncmd->flags &= ~LPFC_SBUF_XBUSY;
1836                                         lpfc_ncmd->status = IOSTAT_SUCCESS;
1837                                         num_posted++;
1838                                 }
1839                                 /* success, put on NVME buffer sgl list */
1840                                 list_add_tail(&lpfc_ncmd->list, &nvme_nblist);
1841                         }
1842                 }
1843
1844                 /* continue until a nembed page worth of sgls */
1845                 if (post_cnt == 0)
1846                         continue;
1847
1848                 /* post block of NVME buffer list sgls */
1849                 status = lpfc_sli4_post_nvme_sgl_block(phba, &blck_nblist,
1850                                                        post_cnt);
1851
1852                 /* don't reset xirtag due to hole in xri block */
1853                 if (block_cnt == 0)
1854                         last_xritag = NO_XRI;
1855
1856                 /* reset NVME buffer post count for next round of posting */
1857                 post_cnt = 0;
1858
1859                 /* put posted NVME buffer-sgl posted on NVME buffer sgl list */
1860                 while (!list_empty(&blck_nblist)) {
1861                         list_remove_head(&blck_nblist, lpfc_ncmd,
1862                                          struct lpfc_nvme_buf, list);
1863                         if (status) {
1864                                 /* failure, put on abort nvme list */
1865                                 lpfc_ncmd->flags |= LPFC_SBUF_XBUSY;
1866                         } else {
1867                                 /* success, put on NVME buffer list */
1868                                 lpfc_ncmd->flags &= ~LPFC_SBUF_XBUSY;
1869                                 lpfc_ncmd->status = IOSTAT_SUCCESS;
1870                                 num_posted++;
1871                         }
1872                         list_add_tail(&lpfc_ncmd->list, &nvme_nblist);
1873                 }
1874         }
1875         /* Push NVME buffers with sgl posted to the available list */
1876         while (!list_empty(&nvme_nblist)) {
1877                 list_remove_head(&nvme_nblist, lpfc_ncmd,
1878                                  struct lpfc_nvme_buf, list);
1879                 lpfc_release_nvme_buf(phba, lpfc_ncmd);
1880         }
1881         return num_posted;
1882 }
1883
1884 /**
1885  * lpfc_repost_nvme_sgl_list - Repost all the allocated nvme buffer sgls
1886  * @phba: pointer to lpfc hba data structure.
1887  *
1888  * This routine walks the list of nvme buffers that have been allocated and
1889  * repost them to the port by using SGL block post. This is needed after a
1890  * pci_function_reset/warm_start or start. The lpfc_hba_down_post_s4 routine
1891  * is responsible for moving all nvme buffers on the lpfc_abts_nvme_sgl_list
1892  * to the lpfc_nvme_buf_list. If the repost fails, reject all nvme buffers.
1893  *
1894  * Returns: 0 = success, non-zero failure.
1895  **/
1896 int
1897 lpfc_repost_nvme_sgl_list(struct lpfc_hba *phba)
1898 {
1899         LIST_HEAD(post_nblist);
1900         int num_posted, rc = 0;
1901
1902         /* get all NVME buffers need to repost to a local list */
1903         spin_lock_irq(&phba->nvme_buf_list_get_lock);
1904         spin_lock(&phba->nvme_buf_list_put_lock);
1905         list_splice_init(&phba->lpfc_nvme_buf_list_get, &post_nblist);
1906         list_splice(&phba->lpfc_nvme_buf_list_put, &post_nblist);
1907         spin_unlock(&phba->nvme_buf_list_put_lock);
1908         spin_unlock_irq(&phba->nvme_buf_list_get_lock);
1909
1910         /* post the list of nvme buffer sgls to port if available */
1911         if (!list_empty(&post_nblist)) {
1912                 num_posted = lpfc_post_nvme_sgl_list(phba, &post_nblist,
1913                                                 phba->sli4_hba.nvme_xri_cnt);
1914                 /* failed to post any nvme buffer, return error */
1915                 if (num_posted == 0)
1916                         rc = -EIO;
1917         }
1918         return rc;
1919 }
1920
1921 /**
1922  * lpfc_new_nvme_buf - Scsi buffer allocator for HBA with SLI4 IF spec
1923  * @vport: The virtual port for which this call being executed.
1924  * @num_to_allocate: The requested number of buffers to allocate.
1925  *
1926  * This routine allocates nvme buffers for device with SLI-4 interface spec,
1927  * the nvme buffer contains all the necessary information needed to initiate
1928  * a NVME I/O. After allocating up to @num_to_allocate NVME buffers and put
1929  * them on a list, it post them to the port by using SGL block post.
1930  *
1931  * Return codes:
1932  *   int - number of nvme buffers that were allocated and posted.
1933  *   0 = failure, less than num_to_alloc is a partial failure.
1934  **/
1935 static int
1936 lpfc_new_nvme_buf(struct lpfc_vport *vport, int num_to_alloc)
1937 {
1938         struct lpfc_hba *phba = vport->phba;
1939         struct lpfc_nvme_buf *lpfc_ncmd;
1940         struct lpfc_iocbq *pwqeq;
1941         union lpfc_wqe128 *wqe;
1942         struct sli4_sge *sgl;
1943         dma_addr_t pdma_phys_sgl;
1944         uint16_t iotag, lxri = 0;
1945         int bcnt, num_posted, sgl_size;
1946         LIST_HEAD(prep_nblist);
1947         LIST_HEAD(post_nblist);
1948         LIST_HEAD(nvme_nblist);
1949
1950         sgl_size = phba->cfg_sg_dma_buf_size;
1951
1952         for (bcnt = 0; bcnt < num_to_alloc; bcnt++) {
1953                 lpfc_ncmd = kzalloc(sizeof(struct lpfc_nvme_buf), GFP_KERNEL);
1954                 if (!lpfc_ncmd)
1955                         break;
1956                 /*
1957                  * Get memory from the pci pool to map the virt space to
1958                  * pci bus space for an I/O. The DMA buffer includes the
1959                  * number of SGE's necessary to support the sg_tablesize.
1960                  */
1961                 lpfc_ncmd->data = pci_pool_alloc(phba->lpfc_sg_dma_buf_pool,
1962                                                  GFP_KERNEL,
1963                                                  &lpfc_ncmd->dma_handle);
1964                 if (!lpfc_ncmd->data) {
1965                         kfree(lpfc_ncmd);
1966                         break;
1967                 }
1968                 memset(lpfc_ncmd->data, 0, phba->cfg_sg_dma_buf_size);
1969
1970                 lxri = lpfc_sli4_next_xritag(phba);
1971                 if (lxri == NO_XRI) {
1972                         pci_pool_free(phba->lpfc_sg_dma_buf_pool,
1973                                       lpfc_ncmd->data, lpfc_ncmd->dma_handle);
1974                         kfree(lpfc_ncmd);
1975                         break;
1976                 }
1977                 pwqeq = &(lpfc_ncmd->cur_iocbq);
1978                 wqe = (union lpfc_wqe128 *)&pwqeq->wqe;
1979
1980                 /* Allocate iotag for lpfc_ncmd->cur_iocbq. */
1981                 iotag = lpfc_sli_next_iotag(phba, pwqeq);
1982                 if (iotag == 0) {
1983                         pci_pool_free(phba->lpfc_sg_dma_buf_pool,
1984                                       lpfc_ncmd->data, lpfc_ncmd->dma_handle);
1985                         kfree(lpfc_ncmd);
1986                         lpfc_printf_log(phba, KERN_ERR, LOG_NVME_IOERR,
1987                                         "6121 Failed to allocated IOTAG for"
1988                                         " XRI:0x%x\n", lxri);
1989                         lpfc_sli4_free_xri(phba, lxri);
1990                         break;
1991                 }
1992                 pwqeq->sli4_lxritag = lxri;
1993                 pwqeq->sli4_xritag = phba->sli4_hba.xri_ids[lxri];
1994                 pwqeq->iocb_flag |= LPFC_IO_NVME;
1995                 pwqeq->context1 = lpfc_ncmd;
1996                 pwqeq->wqe_cmpl = lpfc_nvme_io_cmd_wqe_cmpl;
1997
1998                 /* Initialize local short-hand pointers. */
1999                 lpfc_ncmd->nvme_sgl = lpfc_ncmd->data;
2000                 sgl = lpfc_ncmd->nvme_sgl;
2001                 pdma_phys_sgl = lpfc_ncmd->dma_handle;
2002                 lpfc_ncmd->dma_phys_sgl = pdma_phys_sgl;
2003
2004                 /* Rsp SGE will be filled in when we rcv an IO
2005                  * from the NVME Layer to be sent.
2006                  * The cmd is going to be embedded so we need a SKIP SGE.
2007                  */
2008                 bf_set(lpfc_sli4_sge_type, sgl, LPFC_SGE_TYPE_SKIP);
2009                 bf_set(lpfc_sli4_sge_last, sgl, 0);
2010                 sgl->word2 = cpu_to_le32(sgl->word2);
2011                 /* Fill in word 3 / sgl_len during cmd submission */
2012
2013                 lpfc_ncmd->cur_iocbq.context1 = lpfc_ncmd;
2014
2015                 /* Word 7 */
2016                 bf_set(wqe_erp, &wqe->generic.wqe_com, 0);
2017                 /* NVME upper layers will time things out, if needed */
2018                 bf_set(wqe_tmo, &wqe->generic.wqe_com, 0);
2019
2020                 /* Word 10 */
2021                 bf_set(wqe_ebde_cnt, &wqe->generic.wqe_com, 0);
2022                 bf_set(wqe_dbde, &wqe->generic.wqe_com, 1);
2023
2024                 /* add the nvme buffer to a post list */
2025                 list_add_tail(&lpfc_ncmd->list, &post_nblist);
2026                 spin_lock_irq(&phba->nvme_buf_list_get_lock);
2027                 phba->sli4_hba.nvme_xri_cnt++;
2028                 spin_unlock_irq(&phba->nvme_buf_list_get_lock);
2029         }
2030         lpfc_printf_log(phba, KERN_INFO, LOG_NVME,
2031                         "6114 Allocate %d out of %d requested new NVME "
2032                         "buffers\n", bcnt, num_to_alloc);
2033
2034         /* post the list of nvme buffer sgls to port if available */
2035         if (!list_empty(&post_nblist))
2036                 num_posted = lpfc_post_nvme_sgl_list(phba,
2037                                                      &post_nblist, bcnt);
2038         else
2039                 num_posted = 0;
2040
2041         return num_posted;
2042 }
2043
2044 /**
2045  * lpfc_get_nvme_buf - Get a nvme buffer from lpfc_nvme_buf_list of the HBA
2046  * @phba: The HBA for which this call is being executed.
2047  *
2048  * This routine removes a nvme buffer from head of @phba lpfc_nvme_buf_list list
2049  * and returns to caller.
2050  *
2051  * Return codes:
2052  *   NULL - Error
2053  *   Pointer to lpfc_nvme_buf - Success
2054  **/
2055 static struct lpfc_nvme_buf *
2056 lpfc_get_nvme_buf(struct lpfc_hba *phba, struct lpfc_nodelist *ndlp)
2057 {
2058         struct lpfc_nvme_buf *lpfc_ncmd, *lpfc_ncmd_next;
2059         unsigned long iflag = 0;
2060         int found = 0;
2061
2062         spin_lock_irqsave(&phba->nvme_buf_list_get_lock, iflag);
2063         list_for_each_entry_safe(lpfc_ncmd, lpfc_ncmd_next,
2064                                  &phba->lpfc_nvme_buf_list_get, list) {
2065                 if (lpfc_test_rrq_active(phba, ndlp,
2066                                          lpfc_ncmd->cur_iocbq.sli4_lxritag))
2067                         continue;
2068                 list_del(&lpfc_ncmd->list);
2069                 found = 1;
2070                 break;
2071         }
2072         if (!found) {
2073                 spin_lock(&phba->nvme_buf_list_put_lock);
2074                 list_splice(&phba->lpfc_nvme_buf_list_put,
2075                             &phba->lpfc_nvme_buf_list_get);
2076                 INIT_LIST_HEAD(&phba->lpfc_nvme_buf_list_put);
2077                 spin_unlock(&phba->nvme_buf_list_put_lock);
2078                 list_for_each_entry_safe(lpfc_ncmd, lpfc_ncmd_next,
2079                                          &phba->lpfc_nvme_buf_list_get, list) {
2080                         if (lpfc_test_rrq_active(
2081                                 phba, ndlp, lpfc_ncmd->cur_iocbq.sli4_lxritag))
2082                                 continue;
2083                         list_del(&lpfc_ncmd->list);
2084                         found = 1;
2085                         break;
2086                 }
2087         }
2088         spin_unlock_irqrestore(&phba->nvme_buf_list_get_lock, iflag);
2089         if (!found)
2090                 return NULL;
2091         return  lpfc_ncmd;
2092 }
2093
2094 /**
2095  * lpfc_release_nvme_buf: Return a nvme buffer back to hba nvme buf list.
2096  * @phba: The Hba for which this call is being executed.
2097  * @lpfc_ncmd: The nvme buffer which is being released.
2098  *
2099  * This routine releases @lpfc_ncmd nvme buffer by adding it to tail of @phba
2100  * lpfc_nvme_buf_list list. For SLI4 XRI's are tied to the nvme buffer
2101  * and cannot be reused for at least RA_TOV amount of time if it was
2102  * aborted.
2103  **/
2104 static void
2105 lpfc_release_nvme_buf(struct lpfc_hba *phba, struct lpfc_nvme_buf *lpfc_ncmd)
2106 {
2107         unsigned long iflag = 0;
2108
2109         lpfc_ncmd->nonsg_phys = 0;
2110         if (lpfc_ncmd->flags & LPFC_SBUF_XBUSY) {
2111                 spin_lock_irqsave(&phba->sli4_hba.abts_nvme_buf_list_lock,
2112                                         iflag);
2113                 lpfc_ncmd->nvmeCmd = NULL;
2114                 list_add_tail(&lpfc_ncmd->list,
2115                         &phba->sli4_hba.lpfc_abts_nvme_buf_list);
2116                 spin_unlock_irqrestore(&phba->sli4_hba.abts_nvme_buf_list_lock,
2117                                         iflag);
2118         } else {
2119                 lpfc_ncmd->nvmeCmd = NULL;
2120                 lpfc_ncmd->cur_iocbq.iocb_flag = LPFC_IO_NVME;
2121                 spin_lock_irqsave(&phba->nvme_buf_list_put_lock, iflag);
2122                 list_add_tail(&lpfc_ncmd->list, &phba->lpfc_nvme_buf_list_put);
2123                 spin_unlock_irqrestore(&phba->nvme_buf_list_put_lock, iflag);
2124         }
2125 }
2126
2127 /**
2128  * lpfc_nvme_create_localport - Create/Bind an nvme localport instance.
2129  * @pvport - the lpfc_vport instance requesting a localport.
2130  *
2131  * This routine is invoked to create an nvme localport instance to bind
2132  * to the nvme_fc_transport.  It is called once during driver load
2133  * like lpfc_create_shost after all other services are initialized.
2134  * It requires a vport, vpi, and wwns at call time.  Other localport
2135  * parameters are modified as the driver's FCID and the Fabric WWN
2136  * are established.
2137  *
2138  * Return codes
2139  *      0 - successful
2140  *      -ENOMEM - no heap memory available
2141  *      other values - from nvme registration upcall
2142  **/
2143 int
2144 lpfc_nvme_create_localport(struct lpfc_vport *vport)
2145 {
2146         int ret = 0;
2147         struct lpfc_hba  *phba = vport->phba;
2148         struct nvme_fc_port_info nfcp_info;
2149         struct nvme_fc_local_port *localport;
2150         struct lpfc_nvme_lport *lport;
2151         int len;
2152
2153         /* Initialize this localport instance.  The vport wwn usage ensures
2154          * that NPIV is accounted for.
2155          */
2156         memset(&nfcp_info, 0, sizeof(struct nvme_fc_port_info));
2157         nfcp_info.port_role = FC_PORT_ROLE_NVME_INITIATOR;
2158         nfcp_info.node_name = wwn_to_u64(vport->fc_nodename.u.wwn);
2159         nfcp_info.port_name = wwn_to_u64(vport->fc_portname.u.wwn);
2160
2161         /* For now need + 1 to get around NVME transport logic */
2162         lpfc_nvme_template.max_sgl_segments = phba->cfg_sg_seg_cnt + 1;
2163         lpfc_nvme_template.max_hw_queues = phba->cfg_nvme_io_channel;
2164
2165         /* localport is allocated from the stack, but the registration
2166          * call allocates heap memory as well as the private area.
2167          */
2168 #if (IS_ENABLED(CONFIG_NVME_FC))
2169         ret = nvme_fc_register_localport(&nfcp_info, &lpfc_nvme_template,
2170                                          &vport->phba->pcidev->dev, &localport);
2171 #else
2172         ret = -ENOMEM;
2173 #endif
2174         if (!ret) {
2175                 lpfc_printf_vlog(vport, KERN_INFO, LOG_NVME | LOG_NVME_DISC,
2176                                  "6005 Successfully registered local "
2177                                  "NVME port num %d, localP %p, private %p, "
2178                                  "sg_seg %d\n",
2179                                  localport->port_num, localport,
2180                                  localport->private,
2181                                  lpfc_nvme_template.max_sgl_segments);
2182
2183                 /* Private is our lport size declared in the template. */
2184                 lport = (struct lpfc_nvme_lport *)localport->private;
2185                 vport->localport = localport;
2186                 lport->vport = vport;
2187                 INIT_LIST_HEAD(&lport->rport_list);
2188                 vport->nvmei_support = 1;
2189                 len  = lpfc_new_nvme_buf(vport, phba->sli4_hba.nvme_xri_max);
2190                 vport->phba->total_nvme_bufs += len;
2191         }
2192
2193         return ret;
2194 }
2195
2196 /**
2197  * lpfc_nvme_destroy_localport - Destroy lpfc_nvme bound to nvme transport.
2198  * @pnvme: pointer to lpfc nvme data structure.
2199  *
2200  * This routine is invoked to destroy all lports bound to the phba.
2201  * The lport memory was allocated by the nvme fc transport and is
2202  * released there.  This routine ensures all rports bound to the
2203  * lport have been disconnected.
2204  *
2205  **/
2206 void
2207 lpfc_nvme_destroy_localport(struct lpfc_vport *vport)
2208 {
2209 #if (IS_ENABLED(CONFIG_NVME_FC))
2210         struct nvme_fc_local_port *localport;
2211         struct lpfc_nvme_lport *lport;
2212         struct lpfc_nvme_rport *rport = NULL, *rport_next = NULL;
2213         int ret;
2214
2215         if (vport->nvmei_support == 0)
2216                 return;
2217
2218         localport = vport->localport;
2219         vport->localport = NULL;
2220         lport = (struct lpfc_nvme_lport *)localport->private;
2221
2222         lpfc_printf_vlog(vport, KERN_INFO, LOG_NVME,
2223                          "6011 Destroying NVME localport %p\n",
2224                          localport);
2225         list_for_each_entry_safe(rport, rport_next, &lport->rport_list, list) {
2226                 /* The last node ref has to get released now before the rport
2227                  * private memory area is released by the transport.
2228                  */
2229                 list_del(&rport->list);
2230
2231                 init_completion(&rport->rport_unreg_done);
2232                 ret = nvme_fc_unregister_remoteport(rport->remoteport);
2233                 if (ret)
2234                         lpfc_printf_vlog(vport, KERN_ERR, LOG_NVME_DISC,
2235                                          "6008 rport fail destroy %x\n", ret);
2236                 wait_for_completion_timeout(&rport->rport_unreg_done, 5);
2237         }
2238
2239         /* lport's rport list is clear.  Unregister
2240          * lport and release resources.
2241          */
2242         init_completion(&lport->lport_unreg_done);
2243         ret = nvme_fc_unregister_localport(localport);
2244         wait_for_completion_timeout(&lport->lport_unreg_done, 5);
2245
2246         /* Regardless of the unregister upcall response, clear
2247          * nvmei_support.  All rports are unregistered and the
2248          * driver will clean up.
2249          */
2250         vport->nvmei_support = 0;
2251         if (ret == 0) {
2252                 lpfc_printf_vlog(vport,
2253                                  KERN_INFO, LOG_NVME_DISC,
2254                                  "6009 Unregistered lport Success\n");
2255         } else {
2256                 lpfc_printf_vlog(vport,
2257                                  KERN_INFO, LOG_NVME_DISC,
2258                                  "6010 Unregistered lport "
2259                                  "Failed, status x%x\n",
2260                                  ret);
2261         }
2262 #endif
2263 }
2264
2265 void
2266 lpfc_nvme_update_localport(struct lpfc_vport *vport)
2267 {
2268 #if (IS_ENABLED(CONFIG_NVME_FC))
2269         struct nvme_fc_local_port *localport;
2270         struct lpfc_nvme_lport *lport;
2271
2272         localport = vport->localport;
2273         if (!localport) {
2274                 lpfc_printf_vlog(vport, KERN_WARNING, LOG_NVME,
2275                                  "6710 Update NVME fail. No localport\n");
2276                 return;
2277         }
2278         lport = (struct lpfc_nvme_lport *)localport->private;
2279         if (!lport) {
2280                 lpfc_printf_vlog(vport, KERN_WARNING, LOG_NVME,
2281                                  "6171 Update NVME fail. localP %p, No lport\n",
2282                                  localport);
2283                 return;
2284         }
2285         lpfc_printf_vlog(vport, KERN_INFO, LOG_NVME,
2286                          "6012 Update NVME lport %p did x%x\n",
2287                          localport, vport->fc_myDID);
2288
2289         localport->port_id = vport->fc_myDID;
2290         if (localport->port_id == 0)
2291                 localport->port_role = FC_PORT_ROLE_NVME_DISCOVERY;
2292         else
2293                 localport->port_role = FC_PORT_ROLE_NVME_INITIATOR;
2294
2295         lpfc_printf_vlog(vport, KERN_INFO, LOG_NVME_DISC,
2296                          "6030 bound lport %p to DID x%06x\n",
2297                          lport, localport->port_id);
2298 #endif
2299 }
2300
2301 int
2302 lpfc_nvme_register_port(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
2303 {
2304 #if (IS_ENABLED(CONFIG_NVME_FC))
2305         int ret = 0;
2306         struct nvme_fc_local_port *localport;
2307         struct lpfc_nvme_lport *lport;
2308         struct lpfc_nvme_rport *rport;
2309         struct nvme_fc_remote_port *remote_port;
2310         struct nvme_fc_port_info rpinfo;
2311
2312         lpfc_printf_vlog(ndlp->vport, KERN_INFO, LOG_NVME_DISC,
2313                          "6006 Register NVME PORT. DID x%06x nlptype x%x\n",
2314                          ndlp->nlp_DID, ndlp->nlp_type);
2315
2316         localport = vport->localport;
2317         lport = (struct lpfc_nvme_lport *)localport->private;
2318
2319         if (ndlp->nlp_type & (NLP_NVME_TARGET | NLP_NVME_INITIATOR)) {
2320
2321                 /* The driver isn't expecting the rport wwn to change
2322                  * but it might get a different DID on a different
2323                  * fabric.
2324                  */
2325                 list_for_each_entry(rport, &lport->rport_list, list) {
2326                         if (rport->remoteport->port_name !=
2327                             wwn_to_u64(ndlp->nlp_portname.u.wwn))
2328                                 continue;
2329                         lpfc_printf_vlog(ndlp->vport, KERN_INFO, LOG_NVME_DISC,
2330                                          "6035 lport %p, found matching rport "
2331                                          "at wwpn 0x%llx, Data: x%x x%x x%x "
2332                                          "x%06x\n",
2333                                          lport,
2334                                          rport->remoteport->port_name,
2335                                          rport->remoteport->port_id,
2336                                          rport->remoteport->port_role,
2337                                          ndlp->nlp_type,
2338                                          ndlp->nlp_DID);
2339                         remote_port = rport->remoteport;
2340                         if ((remote_port->port_id == 0) &&
2341                             (remote_port->port_role ==
2342                              FC_PORT_ROLE_NVME_DISCOVERY)) {
2343                                 remote_port->port_id = ndlp->nlp_DID;
2344                                 remote_port->port_role &=
2345                                         ~FC_PORT_ROLE_NVME_DISCOVERY;
2346                                 if (ndlp->nlp_type & NLP_NVME_TARGET)
2347                                         remote_port->port_role |=
2348                                                 FC_PORT_ROLE_NVME_TARGET;
2349                                 if (ndlp->nlp_type & NLP_NVME_INITIATOR)
2350                                         remote_port->port_role |=
2351                                                 FC_PORT_ROLE_NVME_INITIATOR;
2352
2353                                 lpfc_printf_vlog(ndlp->vport, KERN_INFO,
2354                                                  LOG_NVME_DISC,
2355                                                  "6014 Rebinding lport to "
2356                                                  "rport wwpn 0x%llx, "
2357                                                  "Data: x%x x%x x%x x%06x\n",
2358                                                  remote_port->port_name,
2359                                                  remote_port->port_id,
2360                                                  remote_port->port_role,
2361                                                  ndlp->nlp_type,
2362                                                  ndlp->nlp_DID);
2363                         }
2364                         return 0;
2365                 }
2366
2367                 /* NVME rports are not preserved across devloss.
2368                  * Just register this instance.
2369                  */
2370                 rpinfo.port_id = ndlp->nlp_DID;
2371                 rpinfo.port_role = 0;
2372                 if (ndlp->nlp_type & NLP_NVME_TARGET)
2373                         rpinfo.port_role |= FC_PORT_ROLE_NVME_TARGET;
2374                 if (ndlp->nlp_type & NLP_NVME_INITIATOR)
2375                         rpinfo.port_role |= FC_PORT_ROLE_NVME_INITIATOR;
2376                 rpinfo.port_name = wwn_to_u64(ndlp->nlp_portname.u.wwn);
2377                 rpinfo.node_name = wwn_to_u64(ndlp->nlp_nodename.u.wwn);
2378                 ret = nvme_fc_register_remoteport(localport, &rpinfo,
2379                                                   &remote_port);
2380                 if (!ret) {
2381                         rport = remote_port->private;
2382                         rport->remoteport = remote_port;
2383                         rport->lport = lport;
2384                         rport->ndlp = lpfc_nlp_get(ndlp);
2385                         if (!rport->ndlp)
2386                                 return -1;
2387                         ndlp->nrport = rport;
2388                         INIT_LIST_HEAD(&rport->list);
2389                         list_add_tail(&rport->list, &lport->rport_list);
2390                         lpfc_printf_vlog(vport, KERN_INFO,
2391                                          LOG_NVME_DISC | LOG_NODE,
2392                                          "6022 Binding new rport to lport %p "
2393                                          "Rport WWNN 0x%llx, Rport WWPN 0x%llx "
2394                                          "DID x%06x Role x%x\n",
2395                                          lport,
2396                                          rpinfo.node_name, rpinfo.port_name,
2397                                          rpinfo.port_id, rpinfo.port_role);
2398                 } else {
2399                         lpfc_printf_vlog(vport, KERN_ERR,
2400                                          LOG_NVME_DISC | LOG_NODE,
2401                                          "6031 RemotePort Registration failed "
2402                                          "err: %d, DID x%06x\n",
2403                                          ret, ndlp->nlp_DID);
2404                 }
2405         } else {
2406                 ret = -EINVAL;
2407                 lpfc_printf_vlog(vport, KERN_INFO, LOG_NVME_DISC,
2408                                  "6027 Unknown nlp_type x%x on DID x%06x "
2409                                  "ndlp %p.  Not Registering nvme rport\n",
2410                                  ndlp->nlp_type, ndlp->nlp_DID, ndlp);
2411         }
2412         return ret;
2413 #else
2414         return 0;
2415 #endif
2416 }
2417
2418 /* lpfc_nvme_unregister_port - unbind the DID and port_role from this rport.
2419  *
2420  * There is no notion of Devloss or rport recovery from the current
2421  * nvme_transport perspective.  Loss of an rport just means IO cannot
2422  * be sent and recovery is completely up to the initator.
2423  * For now, the driver just unbinds the DID and port_role so that
2424  * no further IO can be issued.  Changes are planned for later.
2425  *
2426  * Notes - the ndlp reference count is not decremented here since
2427  * since there is no nvme_transport api for devloss.  Node ref count
2428  * is only adjusted in driver unload.
2429  */
2430 void
2431 lpfc_nvme_unregister_port(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
2432 {
2433 #if (IS_ENABLED(CONFIG_NVME_FC))
2434         int ret;
2435         struct nvme_fc_local_port *localport;
2436         struct lpfc_nvme_lport *lport;
2437         struct lpfc_nvme_rport *rport;
2438         struct nvme_fc_remote_port *remoteport;
2439         unsigned long wait_tmo;
2440
2441         localport = vport->localport;
2442
2443         /* This is fundamental error.  The localport is always
2444          * available until driver unload.  Just exit.
2445          */
2446         if (!localport)
2447                 return;
2448
2449         lport = (struct lpfc_nvme_lport *)localport->private;
2450         if (!lport)
2451                 goto input_err;
2452
2453         rport = ndlp->nrport;
2454         if (!rport)
2455                 goto input_err;
2456
2457         remoteport = rport->remoteport;
2458         lpfc_printf_vlog(vport, KERN_INFO, LOG_NVME_DISC,
2459                          "6033 Unreg nvme remoteport %p, portname x%llx, "
2460                          "port_id x%06x, portstate x%x port type x%x\n",
2461                          remoteport, remoteport->port_name,
2462                          remoteport->port_id, remoteport->port_state,
2463                          ndlp->nlp_type);
2464
2465         /* Sanity check ndlp type.  Only call for NVME ports. Don't
2466          * clear any rport state until the transport calls back.
2467          */
2468         if (ndlp->nlp_type & (NLP_NVME_TARGET | NLP_NVME_INITIATOR)) {
2469                 init_completion(&rport->rport_unreg_done);
2470                 ret = nvme_fc_unregister_remoteport(remoteport);
2471                 if (ret != 0) {
2472                         lpfc_printf_vlog(vport, KERN_ERR, LOG_NVME_DISC,
2473                                          "6167 NVME unregister failed %d "
2474                                          "port_state x%x\n",
2475                                          ret, remoteport->port_state);
2476                 }
2477
2478                 /* Wait for the driver's delete completion routine to finish
2479                  * before proceeding.  This guarantees the transport and driver
2480                  * have completed the unreg process.
2481                  */
2482                 wait_tmo = msecs_to_jiffies(5000);
2483                 ret = wait_for_completion_timeout(&rport->rport_unreg_done,
2484                                                   wait_tmo);
2485                 if (ret == 0) {
2486                         lpfc_printf_vlog(vport, KERN_ERR, LOG_NVME_DISC,
2487                                          "6169 Unreg nvme wait timeout\n");
2488                 }
2489         }
2490         return;
2491
2492  input_err:
2493 #endif
2494         lpfc_printf_vlog(vport, KERN_ERR, LOG_NVME_DISC,
2495                          "6168 State error: lport %p, rport%p FCID x%06x\n",
2496                          vport->localport, ndlp->rport, ndlp->nlp_DID);
2497 }
2498
2499 /**
2500  * lpfc_sli4_nvme_xri_aborted - Fast-path process of NVME xri abort
2501  * @phba: pointer to lpfc hba data structure.
2502  * @axri: pointer to the fcp xri abort wcqe structure.
2503  *
2504  * This routine is invoked by the worker thread to process a SLI4 fast-path
2505  * FCP aborted xri.
2506  **/
2507 void
2508 lpfc_sli4_nvme_xri_aborted(struct lpfc_hba *phba,
2509                            struct sli4_wcqe_xri_aborted *axri)
2510 {
2511         uint16_t xri = bf_get(lpfc_wcqe_xa_xri, axri);
2512         uint16_t rxid = bf_get(lpfc_wcqe_xa_remote_xid, axri);
2513         struct lpfc_nvme_buf *lpfc_ncmd, *next_lpfc_ncmd;
2514         struct lpfc_nodelist *ndlp;
2515         unsigned long iflag = 0;
2516         int rrq_empty = 0;
2517
2518         if (!(phba->cfg_enable_fc4_type & LPFC_ENABLE_NVME))
2519                 return;
2520         spin_lock_irqsave(&phba->hbalock, iflag);
2521         spin_lock(&phba->sli4_hba.abts_nvme_buf_list_lock);
2522         list_for_each_entry_safe(lpfc_ncmd, next_lpfc_ncmd,
2523                                  &phba->sli4_hba.lpfc_abts_nvme_buf_list,
2524                                  list) {
2525                 if (lpfc_ncmd->cur_iocbq.sli4_xritag == xri) {
2526                         list_del(&lpfc_ncmd->list);
2527                         lpfc_ncmd->flags &= ~LPFC_SBUF_XBUSY;
2528                         lpfc_ncmd->status = IOSTAT_SUCCESS;
2529                         spin_unlock(
2530                                 &phba->sli4_hba.abts_nvme_buf_list_lock);
2531
2532                         rrq_empty = list_empty(&phba->active_rrq_list);
2533                         spin_unlock_irqrestore(&phba->hbalock, iflag);
2534                         ndlp = lpfc_ncmd->ndlp;
2535                         if (ndlp) {
2536                                 lpfc_set_rrq_active(
2537                                         phba, ndlp,
2538                                         lpfc_ncmd->cur_iocbq.sli4_lxritag,
2539                                         rxid, 1);
2540                                 lpfc_sli4_abts_err_handler(phba, ndlp, axri);
2541                         }
2542                         lpfc_release_nvme_buf(phba, lpfc_ncmd);
2543                         if (rrq_empty)
2544                                 lpfc_worker_wake_up(phba);
2545                         return;
2546                 }
2547         }
2548         spin_unlock(&phba->sli4_hba.abts_nvme_buf_list_lock);
2549         spin_unlock_irqrestore(&phba->hbalock, iflag);
2550 }