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