Fix driver usage of 128B WQEs when WQ_CREATE is V1.
[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
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
205static void
206lpfc_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
bd2cdd5e
JS
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
01649561
JS
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
252static int
253lpfc_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);
8b361639 319 bf_set(wqe_rctl, &wqe->gen_req.wge_ctl, FC_RCTL_ELS4_REQ);
01649561
JS
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
bd2cdd5e
JS
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
01649561
JS
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 **/
393static int
394lpfc_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;
ba43c4d0 404 uint16_t ntype, nstate;
01649561
JS
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);
ba43c4d0
JS
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",
01649561 424 pnvme_rport->port_id);
ba43c4d0
JS
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;
01649561
JS
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,
ba43c4d0 475 "6149 ENTER. lport %p, rport %p lsreq%p rqstlen:%d "
825c6abb 476 "rsplen:%d %pad %pad\n",
01649561
JS
477 pnvme_lport, pnvme_rport,
478 pnvme_lsreq, pnvme_lsreq->rqstlen,
825c6abb
AB
479 pnvme_lsreq->rsplen, &pnvme_lsreq->rqstdma,
480 &pnvme_lsreq->rspdma);
01649561
JS
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 **/
518static void
519lpfc_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 "
825c6abb 546 "rsplen:%d %pad %pad\n",
01649561
JS
547 pnvme_lport, pnvme_rport,
548 pnvme_lsreq, pnvme_lsreq->rqstlen,
825c6abb
AB
549 pnvme_lsreq->rsplen, &pnvme_lsreq->rqstdma,
550 &pnvme_lsreq->rspdma);
01649561
JS
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. */
580static void
581lpfc_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 *
b06a622f 639 * WQE words 16-19 get payload Words 1-4
01649561
JS
640 * WQE words 20-21 get payload Words 6-7
641 * WQE words 22-29 get payload Words 16-23
642 */
b06a622f 643 wptr = &wqe->words[16]; /* WQE ptr */
01649561 644 dptr = (uint32_t *)nCmd->cmdaddr; /* payload ptr */
b06a622f 645 dptr++; /* Skip Word 0 in payload */
01649561 646
b06a622f 647 *wptr++ = *dptr++; /* Word 1 */
01649561
JS
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
bd2cdd5e
JS
665#ifdef CONFIG_SCSI_LPFC_DEBUG_FS
666static void
667lpfc_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
01649561
JS
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 **/
752static void
753lpfc_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
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: "
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:
876out_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 */
bd2cdd5e
JS
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
01649561
JS
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 **/
944static int
945lpfc_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
01649561
JS
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
01649561
JS
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
01649561
JS
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 **/
1085static int
1086lpfc_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 **/
1200static int
1201lpfc_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;
bd2cdd5e
JS
1214#ifdef CONFIG_SCSI_LPFC_DEBUG_FS
1215 uint64_t start = 0;
1216#endif
01649561
JS
1217
1218 lport = (struct lpfc_nvme_lport *)pnvme_lport->private;
1219 vport = lport->vport;
1220 phba = vport->phba;
1221
bd2cdd5e
JS
1222#ifdef CONFIG_SCSI_LPFC_DEBUG_FS
1223 if (phba->ktime_on)
1224 start = ktime_get_ns();
1225#endif
01649561
JS
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 }
bd2cdd5e
JS
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
01649561
JS
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;
318083ad 1295 lpfc_ncmd->ndlp = ndlp;
01649561
JS
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
bd2cdd5e
JS
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
01649561
JS
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);
a5068b46 1329 ret = -EBUSY;
01649561
JS
1330 goto out_free_nvme_buf;
1331 }
1332
bd2cdd5e
JS
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
01649561
JS
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 **/
1374void
1375lpfc_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 **/
1408static void
1409lpfc_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
1499 /*
1500 * The lpfc_nbuf and the mapped nvme_fcreq in the driver's
1501 * state must match the nvme_fcreq passed by the nvme
1502 * transport. If they don't match, it is likely the driver
1503 * has already completed the NVME IO and the nvme transport
1504 * has not seen it yet.
1505 */
1506 if (lpfc_nbuf->nvmeCmd != pnvme_fcreq) {
1507 spin_unlock_irqrestore(&phba->hbalock, flags);
1508 lpfc_printf_vlog(vport, KERN_ERR, LOG_NVME,
1509 "6143 NVME req mismatch: "
1510 "lpfc_nbuf %p nvmeCmd %p, "
1511 "pnvme_fcreq %p. Skipping Abort\n",
1512 lpfc_nbuf, lpfc_nbuf->nvmeCmd,
1513 pnvme_fcreq);
1514 return;
1515 }
1516
1517 /* Don't abort IOs no longer on the pending queue. */
1518 nvmereq_wqe = &lpfc_nbuf->cur_iocbq;
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\n",
1524 pnvme_fcreq);
1525 return;
1526 }
1527
bd2cdd5e
JS
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
01649561
JS
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\n",
1539 pnvme_fcreq, lpfc_nbuf);
1540 return;
1541 }
1542
1543 abts_buf = __lpfc_sli_get_iocbq(phba);
1544 if (!abts_buf) {
1545 spin_unlock_irqrestore(&phba->hbalock, flags);
1546 lpfc_printf_vlog(vport, KERN_ERR, LOG_NVME,
1547 "6136 No available abort wqes. Skipping "
1548 "Abts req for nvme_fcreq %p.\n",
1549 pnvme_fcreq);
1550 return;
1551 }
1552
1553 /* Ready - mark outstanding as aborted by driver. */
1554 nvmereq_wqe->iocb_flag |= LPFC_DRIVER_ABORTED;
1555
1556 /* Complete prepping the abort wqe and issue to the FW. */
1557 abts_wqe = &abts_buf->wqe;
1558
1559 /* WQEs are reused. Clear stale data and set key fields to
1560 * zero like ia, iaab, iaar, xri_tag, and ctxt_tag.
1561 */
1562 memset(abts_wqe, 0, sizeof(union lpfc_wqe));
1563 bf_set(abort_cmd_criteria, &abts_wqe->abort_cmd, T_XRI_TAG);
1564
1565 /* word 7 */
1566 bf_set(wqe_ct, &abts_wqe->abort_cmd.wqe_com, 0);
1567 bf_set(wqe_cmnd, &abts_wqe->abort_cmd.wqe_com, CMD_ABORT_XRI_CX);
1568 bf_set(wqe_class, &abts_wqe->abort_cmd.wqe_com,
1569 nvmereq_wqe->iocb.ulpClass);
1570
1571 /* word 8 - tell the FW to abort the IO associated with this
1572 * outstanding exchange ID.
1573 */
1574 abts_wqe->abort_cmd.wqe_com.abort_tag = nvmereq_wqe->sli4_xritag;
1575
1576 /* word 9 - this is the iotag for the abts_wqe completion. */
1577 bf_set(wqe_reqtag, &abts_wqe->abort_cmd.wqe_com,
1578 abts_buf->iotag);
1579
1580 /* word 10 */
1581 bf_set(wqe_wqid, &abts_wqe->abort_cmd.wqe_com, nvmereq_wqe->hba_wqidx);
1582 bf_set(wqe_qosd, &abts_wqe->abort_cmd.wqe_com, 1);
1583 bf_set(wqe_lenloc, &abts_wqe->abort_cmd.wqe_com, LPFC_WQE_LENLOC_NONE);
1584
1585 /* word 11 */
1586 bf_set(wqe_cmd_type, &abts_wqe->abort_cmd.wqe_com, OTHER_COMMAND);
1587 bf_set(wqe_wqec, &abts_wqe->abort_cmd.wqe_com, 1);
1588 bf_set(wqe_cqid, &abts_wqe->abort_cmd.wqe_com, LPFC_WQE_CQ_ID_DEFAULT);
1589
1590 /* ABTS WQE must go to the same WQ as the WQE to be aborted */
1591 abts_buf->iocb_flag |= LPFC_IO_NVME;
1592 abts_buf->hba_wqidx = nvmereq_wqe->hba_wqidx;
1593 abts_buf->vport = vport;
1594 abts_buf->wqe_cmpl = lpfc_nvme_abort_fcreq_cmpl;
1595 ret_val = lpfc_sli4_issue_wqe(phba, LPFC_FCP_RING, abts_buf);
1596 spin_unlock_irqrestore(&phba->hbalock, flags);
1597 if (ret_val == IOCB_ERROR) {
1598 lpfc_printf_vlog(vport, KERN_ERR, LOG_NVME,
1599 "6137 Failed abts issue_wqe with status x%x "
1600 "for nvme_fcreq %p.\n",
1601 ret_val, pnvme_fcreq);
1602 lpfc_sli_release_iocbq(phba, abts_buf);
1603 return;
1604 }
1605
1606 lpfc_printf_vlog(vport, KERN_ERR, LOG_NVME,
1607 "6138 Transport Abort NVME Request Issued for\n"
1608 "ox_id x%x on reqtag x%x\n",
1609 nvmereq_wqe->sli4_xritag,
1610 abts_buf->iotag);
1611}
1612
1613/* Declare and initialization an instance of the FC NVME template. */
1614static struct nvme_fc_port_template lpfc_nvme_template = {
1615 /* initiator-based functions */
1616 .localport_delete = lpfc_nvme_localport_delete,
1617 .remoteport_delete = lpfc_nvme_remoteport_delete,
1618 .create_queue = lpfc_nvme_create_queue,
1619 .delete_queue = lpfc_nvme_delete_queue,
1620 .ls_req = lpfc_nvme_ls_req,
1621 .fcp_io = lpfc_nvme_fcp_io_submit,
1622 .ls_abort = lpfc_nvme_ls_abort,
1623 .fcp_abort = lpfc_nvme_fcp_abort,
1624
1625 .max_hw_queues = 1,
1626 .max_sgl_segments = LPFC_NVME_DEFAULT_SEGS,
1627 .max_dif_sgl_segments = LPFC_NVME_DEFAULT_SEGS,
1628 .dma_boundary = 0xFFFFFFFF,
1629
1630 /* Sizes of additional private data for data structures.
1631 * No use for the last two sizes at this time.
1632 */
1633 .local_priv_sz = sizeof(struct lpfc_nvme_lport),
1634 .remote_priv_sz = sizeof(struct lpfc_nvme_rport),
1635 .lsrqst_priv_sz = 0,
1636 .fcprqst_priv_sz = 0,
1637};
1638
1639/**
1640 * lpfc_sli4_post_nvme_sgl_block - post a block of nvme sgl list to firmware
1641 * @phba: pointer to lpfc hba data structure.
1642 * @nblist: pointer to nvme buffer list.
1643 * @count: number of scsi buffers on the list.
1644 *
1645 * This routine is invoked to post a block of @count scsi sgl pages from a
1646 * SCSI buffer list @nblist to the HBA using non-embedded mailbox command.
1647 * No Lock is held.
1648 *
1649 **/
1650static int
1651lpfc_sli4_post_nvme_sgl_block(struct lpfc_hba *phba,
1652 struct list_head *nblist,
1653 int count)
1654{
1655 struct lpfc_nvme_buf *lpfc_ncmd;
1656 struct lpfc_mbx_post_uembed_sgl_page1 *sgl;
1657 struct sgl_page_pairs *sgl_pg_pairs;
1658 void *viraddr;
1659 LPFC_MBOXQ_t *mbox;
1660 uint32_t reqlen, alloclen, pg_pairs;
1661 uint32_t mbox_tmo;
1662 uint16_t xritag_start = 0;
1663 int rc = 0;
1664 uint32_t shdr_status, shdr_add_status;
1665 dma_addr_t pdma_phys_bpl1;
1666 union lpfc_sli4_cfg_shdr *shdr;
1667
1668 /* Calculate the requested length of the dma memory */
1669 reqlen = count * sizeof(struct sgl_page_pairs) +
1670 sizeof(union lpfc_sli4_cfg_shdr) + sizeof(uint32_t);
1671 if (reqlen > SLI4_PAGE_SIZE) {
1672 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
1673 "6118 Block sgl registration required DMA "
1674 "size (%d) great than a page\n", reqlen);
1675 return -ENOMEM;
1676 }
1677 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
1678 if (!mbox) {
1679 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
1680 "6119 Failed to allocate mbox cmd memory\n");
1681 return -ENOMEM;
1682 }
1683
1684 /* Allocate DMA memory and set up the non-embedded mailbox command */
1685 alloclen = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
1686 LPFC_MBOX_OPCODE_FCOE_POST_SGL_PAGES, reqlen,
1687 LPFC_SLI4_MBX_NEMBED);
1688
1689 if (alloclen < reqlen) {
1690 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
1691 "6120 Allocated DMA memory size (%d) is "
1692 "less than the requested DMA memory "
1693 "size (%d)\n", alloclen, reqlen);
1694 lpfc_sli4_mbox_cmd_free(phba, mbox);
1695 return -ENOMEM;
1696 }
1697
1698 /* Get the first SGE entry from the non-embedded DMA memory */
1699 viraddr = mbox->sge_array->addr[0];
1700
1701 /* Set up the SGL pages in the non-embedded DMA pages */
1702 sgl = (struct lpfc_mbx_post_uembed_sgl_page1 *)viraddr;
1703 sgl_pg_pairs = &sgl->sgl_pg_pairs;
1704
1705 pg_pairs = 0;
1706 list_for_each_entry(lpfc_ncmd, nblist, list) {
1707 /* Set up the sge entry */
1708 sgl_pg_pairs->sgl_pg0_addr_lo =
1709 cpu_to_le32(putPaddrLow(lpfc_ncmd->dma_phys_sgl));
1710 sgl_pg_pairs->sgl_pg0_addr_hi =
1711 cpu_to_le32(putPaddrHigh(lpfc_ncmd->dma_phys_sgl));
1712 if (phba->cfg_sg_dma_buf_size > SGL_PAGE_SIZE)
1713 pdma_phys_bpl1 = lpfc_ncmd->dma_phys_sgl +
1714 SGL_PAGE_SIZE;
1715 else
1716 pdma_phys_bpl1 = 0;
1717 sgl_pg_pairs->sgl_pg1_addr_lo =
1718 cpu_to_le32(putPaddrLow(pdma_phys_bpl1));
1719 sgl_pg_pairs->sgl_pg1_addr_hi =
1720 cpu_to_le32(putPaddrHigh(pdma_phys_bpl1));
1721 /* Keep the first xritag on the list */
1722 if (pg_pairs == 0)
1723 xritag_start = lpfc_ncmd->cur_iocbq.sli4_xritag;
1724 sgl_pg_pairs++;
1725 pg_pairs++;
1726 }
1727 bf_set(lpfc_post_sgl_pages_xri, sgl, xritag_start);
1728 bf_set(lpfc_post_sgl_pages_xricnt, sgl, pg_pairs);
1729 /* Perform endian conversion if necessary */
1730 sgl->word0 = cpu_to_le32(sgl->word0);
1731
1732 if (!phba->sli4_hba.intr_enable)
1733 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
1734 else {
1735 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
1736 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
1737 }
1738 shdr = (union lpfc_sli4_cfg_shdr *)&sgl->cfg_shdr;
1739 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
1740 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
1741 if (rc != MBX_TIMEOUT)
1742 lpfc_sli4_mbox_cmd_free(phba, mbox);
1743 if (shdr_status || shdr_add_status || rc) {
1744 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
1745 "6125 POST_SGL_BLOCK mailbox command failed "
1746 "status x%x add_status x%x mbx status x%x\n",
1747 shdr_status, shdr_add_status, rc);
1748 rc = -ENXIO;
1749 }
1750 return rc;
1751}
1752
1753/**
1754 * lpfc_post_nvme_sgl_list - Post blocks of nvme buffer sgls from a list
1755 * @phba: pointer to lpfc hba data structure.
1756 * @post_nblist: pointer to the nvme buffer list.
1757 *
1758 * This routine walks a list of nvme buffers that was passed in. It attempts
1759 * to construct blocks of nvme buffer sgls which contains contiguous xris and
1760 * uses the non-embedded SGL block post mailbox commands to post to the port.
1761 * For single NVME buffer sgl with non-contiguous xri, if any, it shall use
1762 * embedded SGL post mailbox command for posting. The @post_nblist passed in
1763 * must be local list, thus no lock is needed when manipulate the list.
1764 *
1765 * Returns: 0 = failure, non-zero number of successfully posted buffers.
1766 **/
1767static int
1768lpfc_post_nvme_sgl_list(struct lpfc_hba *phba,
1769 struct list_head *post_nblist, int sb_count)
1770{
1771 struct lpfc_nvme_buf *lpfc_ncmd, *lpfc_ncmd_next;
1772 int status, sgl_size;
1773 int post_cnt = 0, block_cnt = 0, num_posting = 0, num_posted = 0;
1774 dma_addr_t pdma_phys_sgl1;
1775 int last_xritag = NO_XRI;
1776 int cur_xritag;
1777 LIST_HEAD(prep_nblist);
1778 LIST_HEAD(blck_nblist);
1779 LIST_HEAD(nvme_nblist);
1780
1781 /* sanity check */
1782 if (sb_count <= 0)
1783 return -EINVAL;
1784
1785 sgl_size = phba->cfg_sg_dma_buf_size;
1786
1787 list_for_each_entry_safe(lpfc_ncmd, lpfc_ncmd_next, post_nblist, list) {
1788 list_del_init(&lpfc_ncmd->list);
1789 block_cnt++;
1790 if ((last_xritag != NO_XRI) &&
1791 (lpfc_ncmd->cur_iocbq.sli4_xritag != last_xritag + 1)) {
1792 /* a hole in xri block, form a sgl posting block */
1793 list_splice_init(&prep_nblist, &blck_nblist);
1794 post_cnt = block_cnt - 1;
1795 /* prepare list for next posting block */
1796 list_add_tail(&lpfc_ncmd->list, &prep_nblist);
1797 block_cnt = 1;
1798 } else {
1799 /* prepare list for next posting block */
1800 list_add_tail(&lpfc_ncmd->list, &prep_nblist);
1801 /* enough sgls for non-embed sgl mbox command */
1802 if (block_cnt == LPFC_NEMBED_MBOX_SGL_CNT) {
1803 list_splice_init(&prep_nblist, &blck_nblist);
1804 post_cnt = block_cnt;
1805 block_cnt = 0;
1806 }
1807 }
1808 num_posting++;
1809 last_xritag = lpfc_ncmd->cur_iocbq.sli4_xritag;
1810
1811 /* end of repost sgl list condition for NVME buffers */
1812 if (num_posting == sb_count) {
1813 if (post_cnt == 0) {
1814 /* last sgl posting block */
1815 list_splice_init(&prep_nblist, &blck_nblist);
1816 post_cnt = block_cnt;
1817 } else if (block_cnt == 1) {
1818 /* last single sgl with non-contiguous xri */
1819 if (sgl_size > SGL_PAGE_SIZE)
1820 pdma_phys_sgl1 =
1821 lpfc_ncmd->dma_phys_sgl +
1822 SGL_PAGE_SIZE;
1823 else
1824 pdma_phys_sgl1 = 0;
1825 cur_xritag = lpfc_ncmd->cur_iocbq.sli4_xritag;
1826 status = lpfc_sli4_post_sgl(phba,
1827 lpfc_ncmd->dma_phys_sgl,
1828 pdma_phys_sgl1, cur_xritag);
1829 if (status) {
1830 /* failure, put on abort nvme list */
318083ad 1831 lpfc_ncmd->flags |= LPFC_SBUF_XBUSY;
01649561
JS
1832 } else {
1833 /* success, put on NVME buffer list */
318083ad 1834 lpfc_ncmd->flags &= ~LPFC_SBUF_XBUSY;
01649561
JS
1835 lpfc_ncmd->status = IOSTAT_SUCCESS;
1836 num_posted++;
1837 }
1838 /* success, put on NVME buffer sgl list */
1839 list_add_tail(&lpfc_ncmd->list, &nvme_nblist);
1840 }
1841 }
1842
1843 /* continue until a nembed page worth of sgls */
1844 if (post_cnt == 0)
1845 continue;
1846
1847 /* post block of NVME buffer list sgls */
1848 status = lpfc_sli4_post_nvme_sgl_block(phba, &blck_nblist,
1849 post_cnt);
1850
1851 /* don't reset xirtag due to hole in xri block */
1852 if (block_cnt == 0)
1853 last_xritag = NO_XRI;
1854
1855 /* reset NVME buffer post count for next round of posting */
1856 post_cnt = 0;
1857
1858 /* put posted NVME buffer-sgl posted on NVME buffer sgl list */
1859 while (!list_empty(&blck_nblist)) {
1860 list_remove_head(&blck_nblist, lpfc_ncmd,
1861 struct lpfc_nvme_buf, list);
1862 if (status) {
1863 /* failure, put on abort nvme list */
318083ad 1864 lpfc_ncmd->flags |= LPFC_SBUF_XBUSY;
01649561
JS
1865 } else {
1866 /* success, put on NVME buffer list */
318083ad 1867 lpfc_ncmd->flags &= ~LPFC_SBUF_XBUSY;
01649561
JS
1868 lpfc_ncmd->status = IOSTAT_SUCCESS;
1869 num_posted++;
1870 }
1871 list_add_tail(&lpfc_ncmd->list, &nvme_nblist);
1872 }
1873 }
1874 /* Push NVME buffers with sgl posted to the available list */
1875 while (!list_empty(&nvme_nblist)) {
1876 list_remove_head(&nvme_nblist, lpfc_ncmd,
1877 struct lpfc_nvme_buf, list);
1878 lpfc_release_nvme_buf(phba, lpfc_ncmd);
1879 }
1880 return num_posted;
1881}
1882
1883/**
1884 * lpfc_repost_nvme_sgl_list - Repost all the allocated nvme buffer sgls
1885 * @phba: pointer to lpfc hba data structure.
1886 *
1887 * This routine walks the list of nvme buffers that have been allocated and
1888 * repost them to the port by using SGL block post. This is needed after a
1889 * pci_function_reset/warm_start or start. The lpfc_hba_down_post_s4 routine
1890 * is responsible for moving all nvme buffers on the lpfc_abts_nvme_sgl_list
1891 * to the lpfc_nvme_buf_list. If the repost fails, reject all nvme buffers.
1892 *
1893 * Returns: 0 = success, non-zero failure.
1894 **/
1895int
1896lpfc_repost_nvme_sgl_list(struct lpfc_hba *phba)
1897{
1898 LIST_HEAD(post_nblist);
1899 int num_posted, rc = 0;
1900
1901 /* get all NVME buffers need to repost to a local list */
1902 spin_lock_irq(&phba->nvme_buf_list_get_lock);
1903 spin_lock(&phba->nvme_buf_list_put_lock);
1904 list_splice_init(&phba->lpfc_nvme_buf_list_get, &post_nblist);
1905 list_splice(&phba->lpfc_nvme_buf_list_put, &post_nblist);
1906 spin_unlock(&phba->nvme_buf_list_put_lock);
1907 spin_unlock_irq(&phba->nvme_buf_list_get_lock);
1908
1909 /* post the list of nvme buffer sgls to port if available */
1910 if (!list_empty(&post_nblist)) {
1911 num_posted = lpfc_post_nvme_sgl_list(phba, &post_nblist,
1912 phba->sli4_hba.nvme_xri_cnt);
1913 /* failed to post any nvme buffer, return error */
1914 if (num_posted == 0)
1915 rc = -EIO;
1916 }
1917 return rc;
1918}
1919
1920/**
1921 * lpfc_new_nvme_buf - Scsi buffer allocator for HBA with SLI4 IF spec
1922 * @vport: The virtual port for which this call being executed.
1923 * @num_to_allocate: The requested number of buffers to allocate.
1924 *
1925 * This routine allocates nvme buffers for device with SLI-4 interface spec,
1926 * the nvme buffer contains all the necessary information needed to initiate
1927 * a NVME I/O. After allocating up to @num_to_allocate NVME buffers and put
1928 * them on a list, it post them to the port by using SGL block post.
1929 *
1930 * Return codes:
1931 * int - number of nvme buffers that were allocated and posted.
1932 * 0 = failure, less than num_to_alloc is a partial failure.
1933 **/
1934static int
1935lpfc_new_nvme_buf(struct lpfc_vport *vport, int num_to_alloc)
1936{
1937 struct lpfc_hba *phba = vport->phba;
1938 struct lpfc_nvme_buf *lpfc_ncmd;
1939 struct lpfc_iocbq *pwqeq;
1940 union lpfc_wqe128 *wqe;
1941 struct sli4_sge *sgl;
1942 dma_addr_t pdma_phys_sgl;
1943 uint16_t iotag, lxri = 0;
1944 int bcnt, num_posted, sgl_size;
1945 LIST_HEAD(prep_nblist);
1946 LIST_HEAD(post_nblist);
1947 LIST_HEAD(nvme_nblist);
1948
1949 sgl_size = phba->cfg_sg_dma_buf_size;
1950
1951 for (bcnt = 0; bcnt < num_to_alloc; bcnt++) {
1952 lpfc_ncmd = kzalloc(sizeof(struct lpfc_nvme_buf), GFP_KERNEL);
1953 if (!lpfc_ncmd)
1954 break;
1955 /*
1956 * Get memory from the pci pool to map the virt space to
1957 * pci bus space for an I/O. The DMA buffer includes the
1958 * number of SGE's necessary to support the sg_tablesize.
1959 */
1960 lpfc_ncmd->data = pci_pool_alloc(phba->lpfc_sg_dma_buf_pool,
1961 GFP_KERNEL,
1962 &lpfc_ncmd->dma_handle);
1963 if (!lpfc_ncmd->data) {
1964 kfree(lpfc_ncmd);
1965 break;
1966 }
1967 memset(lpfc_ncmd->data, 0, phba->cfg_sg_dma_buf_size);
1968
1969 lxri = lpfc_sli4_next_xritag(phba);
1970 if (lxri == NO_XRI) {
1971 pci_pool_free(phba->lpfc_sg_dma_buf_pool,
1972 lpfc_ncmd->data, lpfc_ncmd->dma_handle);
1973 kfree(lpfc_ncmd);
1974 break;
1975 }
1976 pwqeq = &(lpfc_ncmd->cur_iocbq);
1977 wqe = (union lpfc_wqe128 *)&pwqeq->wqe;
1978
1979 /* Allocate iotag for lpfc_ncmd->cur_iocbq. */
1980 iotag = lpfc_sli_next_iotag(phba, pwqeq);
1981 if (iotag == 0) {
1982 pci_pool_free(phba->lpfc_sg_dma_buf_pool,
1983 lpfc_ncmd->data, lpfc_ncmd->dma_handle);
1984 kfree(lpfc_ncmd);
1985 lpfc_printf_log(phba, KERN_ERR, LOG_NVME_IOERR,
1986 "6121 Failed to allocated IOTAG for"
1987 " XRI:0x%x\n", lxri);
1988 lpfc_sli4_free_xri(phba, lxri);
1989 break;
1990 }
1991 pwqeq->sli4_lxritag = lxri;
1992 pwqeq->sli4_xritag = phba->sli4_hba.xri_ids[lxri];
1993 pwqeq->iocb_flag |= LPFC_IO_NVME;
1994 pwqeq->context1 = lpfc_ncmd;
1995 pwqeq->wqe_cmpl = lpfc_nvme_io_cmd_wqe_cmpl;
1996
1997 /* Initialize local short-hand pointers. */
1998 lpfc_ncmd->nvme_sgl = lpfc_ncmd->data;
1999 sgl = lpfc_ncmd->nvme_sgl;
2000 pdma_phys_sgl = lpfc_ncmd->dma_handle;
2001 lpfc_ncmd->dma_phys_sgl = pdma_phys_sgl;
2002
2003 /* Rsp SGE will be filled in when we rcv an IO
2004 * from the NVME Layer to be sent.
2005 * The cmd is going to be embedded so we need a SKIP SGE.
2006 */
2007 bf_set(lpfc_sli4_sge_type, sgl, LPFC_SGE_TYPE_SKIP);
2008 bf_set(lpfc_sli4_sge_last, sgl, 0);
2009 sgl->word2 = cpu_to_le32(sgl->word2);
2010 /* Fill in word 3 / sgl_len during cmd submission */
2011
2012 lpfc_ncmd->cur_iocbq.context1 = lpfc_ncmd;
2013
2014 /* Word 7 */
2015 bf_set(wqe_erp, &wqe->generic.wqe_com, 0);
2016 /* NVME upper layers will time things out, if needed */
2017 bf_set(wqe_tmo, &wqe->generic.wqe_com, 0);
2018
2019 /* Word 10 */
2020 bf_set(wqe_ebde_cnt, &wqe->generic.wqe_com, 0);
2021 bf_set(wqe_dbde, &wqe->generic.wqe_com, 1);
2022
2023 /* add the nvme buffer to a post list */
2024 list_add_tail(&lpfc_ncmd->list, &post_nblist);
2025 spin_lock_irq(&phba->nvme_buf_list_get_lock);
2026 phba->sli4_hba.nvme_xri_cnt++;
2027 spin_unlock_irq(&phba->nvme_buf_list_get_lock);
2028 }
2029 lpfc_printf_log(phba, KERN_INFO, LOG_NVME,
2030 "6114 Allocate %d out of %d requested new NVME "
2031 "buffers\n", bcnt, num_to_alloc);
2032
2033 /* post the list of nvme buffer sgls to port if available */
2034 if (!list_empty(&post_nblist))
2035 num_posted = lpfc_post_nvme_sgl_list(phba,
2036 &post_nblist, bcnt);
2037 else
2038 num_posted = 0;
2039
2040 return num_posted;
2041}
2042
2043/**
2044 * lpfc_get_nvme_buf - Get a nvme buffer from lpfc_nvme_buf_list of the HBA
2045 * @phba: The HBA for which this call is being executed.
2046 *
2047 * This routine removes a nvme buffer from head of @phba lpfc_nvme_buf_list list
2048 * and returns to caller.
2049 *
2050 * Return codes:
2051 * NULL - Error
2052 * Pointer to lpfc_nvme_buf - Success
2053 **/
2054static struct lpfc_nvme_buf *
2055lpfc_get_nvme_buf(struct lpfc_hba *phba, struct lpfc_nodelist *ndlp)
2056{
2057 struct lpfc_nvme_buf *lpfc_ncmd, *lpfc_ncmd_next;
2058 unsigned long iflag = 0;
2059 int found = 0;
2060
2061 spin_lock_irqsave(&phba->nvme_buf_list_get_lock, iflag);
2062 list_for_each_entry_safe(lpfc_ncmd, lpfc_ncmd_next,
2063 &phba->lpfc_nvme_buf_list_get, list) {
2064 if (lpfc_test_rrq_active(phba, ndlp,
2065 lpfc_ncmd->cur_iocbq.sli4_lxritag))
2066 continue;
2067 list_del(&lpfc_ncmd->list);
2068 found = 1;
2069 break;
2070 }
2071 if (!found) {
2072 spin_lock(&phba->nvme_buf_list_put_lock);
2073 list_splice(&phba->lpfc_nvme_buf_list_put,
2074 &phba->lpfc_nvme_buf_list_get);
2075 INIT_LIST_HEAD(&phba->lpfc_nvme_buf_list_put);
2076 spin_unlock(&phba->nvme_buf_list_put_lock);
2077 list_for_each_entry_safe(lpfc_ncmd, lpfc_ncmd_next,
2078 &phba->lpfc_nvme_buf_list_get, list) {
2079 if (lpfc_test_rrq_active(
2080 phba, ndlp, lpfc_ncmd->cur_iocbq.sli4_lxritag))
2081 continue;
2082 list_del(&lpfc_ncmd->list);
2083 found = 1;
2084 break;
2085 }
2086 }
2087 spin_unlock_irqrestore(&phba->nvme_buf_list_get_lock, iflag);
2088 if (!found)
2089 return NULL;
2090 return lpfc_ncmd;
2091}
2092
2093/**
2094 * lpfc_release_nvme_buf: Return a nvme buffer back to hba nvme buf list.
2095 * @phba: The Hba for which this call is being executed.
2096 * @lpfc_ncmd: The nvme buffer which is being released.
2097 *
2098 * This routine releases @lpfc_ncmd nvme buffer by adding it to tail of @phba
2099 * lpfc_nvme_buf_list list. For SLI4 XRI's are tied to the nvme buffer
2100 * and cannot be reused for at least RA_TOV amount of time if it was
2101 * aborted.
2102 **/
2103static void
2104lpfc_release_nvme_buf(struct lpfc_hba *phba, struct lpfc_nvme_buf *lpfc_ncmd)
2105{
2106 unsigned long iflag = 0;
2107
2108 lpfc_ncmd->nonsg_phys = 0;
318083ad 2109 if (lpfc_ncmd->flags & LPFC_SBUF_XBUSY) {
01649561
JS
2110 spin_lock_irqsave(&phba->sli4_hba.abts_nvme_buf_list_lock,
2111 iflag);
2112 lpfc_ncmd->nvmeCmd = NULL;
2113 list_add_tail(&lpfc_ncmd->list,
2114 &phba->sli4_hba.lpfc_abts_nvme_buf_list);
2115 spin_unlock_irqrestore(&phba->sli4_hba.abts_nvme_buf_list_lock,
2116 iflag);
2117 } else {
2118 lpfc_ncmd->nvmeCmd = NULL;
2119 lpfc_ncmd->cur_iocbq.iocb_flag = LPFC_IO_NVME;
2120 spin_lock_irqsave(&phba->nvme_buf_list_put_lock, iflag);
2121 list_add_tail(&lpfc_ncmd->list, &phba->lpfc_nvme_buf_list_put);
2122 spin_unlock_irqrestore(&phba->nvme_buf_list_put_lock, iflag);
2123 }
2124}
2125
2126/**
2127 * lpfc_nvme_create_localport - Create/Bind an nvme localport instance.
2128 * @pvport - the lpfc_vport instance requesting a localport.
2129 *
2130 * This routine is invoked to create an nvme localport instance to bind
2131 * to the nvme_fc_transport. It is called once during driver load
2132 * like lpfc_create_shost after all other services are initialized.
2133 * It requires a vport, vpi, and wwns at call time. Other localport
2134 * parameters are modified as the driver's FCID and the Fabric WWN
2135 * are established.
2136 *
2137 * Return codes
2138 * 0 - successful
2139 * -ENOMEM - no heap memory available
2140 * other values - from nvme registration upcall
2141 **/
2142int
2143lpfc_nvme_create_localport(struct lpfc_vport *vport)
2144{
166d7211 2145 int ret = 0;
01649561
JS
2146 struct lpfc_hba *phba = vport->phba;
2147 struct nvme_fc_port_info nfcp_info;
2148 struct nvme_fc_local_port *localport;
2149 struct lpfc_nvme_lport *lport;
166d7211 2150 int len;
01649561
JS
2151
2152 /* Initialize this localport instance. The vport wwn usage ensures
2153 * that NPIV is accounted for.
2154 */
2155 memset(&nfcp_info, 0, sizeof(struct nvme_fc_port_info));
2156 nfcp_info.port_role = FC_PORT_ROLE_NVME_INITIATOR;
2157 nfcp_info.node_name = wwn_to_u64(vport->fc_nodename.u.wwn);
2158 nfcp_info.port_name = wwn_to_u64(vport->fc_portname.u.wwn);
2159
2160 /* For now need + 1 to get around NVME transport logic */
2161 lpfc_nvme_template.max_sgl_segments = phba->cfg_sg_seg_cnt + 1;
2162 lpfc_nvme_template.max_hw_queues = phba->cfg_nvme_io_channel;
2163
2164 /* localport is allocated from the stack, but the registration
2165 * call allocates heap memory as well as the private area.
2166 */
7d708033 2167#if (IS_ENABLED(CONFIG_NVME_FC))
01649561
JS
2168 ret = nvme_fc_register_localport(&nfcp_info, &lpfc_nvme_template,
2169 &vport->phba->pcidev->dev, &localport);
166d7211
JS
2170#else
2171 ret = -ENOMEM;
2172#endif
01649561
JS
2173 if (!ret) {
2174 lpfc_printf_vlog(vport, KERN_INFO, LOG_NVME | LOG_NVME_DISC,
2175 "6005 Successfully registered local "
2176 "NVME port num %d, localP %p, private %p, "
2177 "sg_seg %d\n",
2178 localport->port_num, localport,
2179 localport->private,
2180 lpfc_nvme_template.max_sgl_segments);
2181
2182 /* Private is our lport size declared in the template. */
2183 lport = (struct lpfc_nvme_lport *)localport->private;
2184 vport->localport = localport;
2185 lport->vport = vport;
2186 INIT_LIST_HEAD(&lport->rport_list);
2187 vport->nvmei_support = 1;
3ebd9b47
JS
2188 len = lpfc_new_nvme_buf(vport, phba->sli4_hba.nvme_xri_max);
2189 vport->phba->total_nvme_bufs += len;
01649561
JS
2190 }
2191
01649561
JS
2192 return ret;
2193}
2194
2195/**
2196 * lpfc_nvme_destroy_localport - Destroy lpfc_nvme bound to nvme transport.
2197 * @pnvme: pointer to lpfc nvme data structure.
2198 *
2199 * This routine is invoked to destroy all lports bound to the phba.
2200 * The lport memory was allocated by the nvme fc transport and is
2201 * released there. This routine ensures all rports bound to the
2202 * lport have been disconnected.
2203 *
2204 **/
2205void
2206lpfc_nvme_destroy_localport(struct lpfc_vport *vport)
2207{
7d708033 2208#if (IS_ENABLED(CONFIG_NVME_FC))
01649561
JS
2209 struct nvme_fc_local_port *localport;
2210 struct lpfc_nvme_lport *lport;
2211 struct lpfc_nvme_rport *rport = NULL, *rport_next = NULL;
2212 int ret;
2213
2214 if (vport->nvmei_support == 0)
2215 return;
2216
2217 localport = vport->localport;
2218 vport->localport = NULL;
2219 lport = (struct lpfc_nvme_lport *)localport->private;
2220
2221 lpfc_printf_vlog(vport, KERN_INFO, LOG_NVME,
2222 "6011 Destroying NVME localport %p\n",
2223 localport);
01649561
JS
2224 list_for_each_entry_safe(rport, rport_next, &lport->rport_list, list) {
2225 /* The last node ref has to get released now before the rport
2226 * private memory area is released by the transport.
2227 */
2228 list_del(&rport->list);
2229
2230 init_completion(&rport->rport_unreg_done);
2231 ret = nvme_fc_unregister_remoteport(rport->remoteport);
2232 if (ret)
2233 lpfc_printf_vlog(vport, KERN_ERR, LOG_NVME_DISC,
2234 "6008 rport fail destroy %x\n", ret);
2235 wait_for_completion_timeout(&rport->rport_unreg_done, 5);
2236 }
166d7211 2237
01649561
JS
2238 /* lport's rport list is clear. Unregister
2239 * lport and release resources.
2240 */
2241 init_completion(&lport->lport_unreg_done);
2242 ret = nvme_fc_unregister_localport(localport);
2243 wait_for_completion_timeout(&lport->lport_unreg_done, 5);
2244
2245 /* Regardless of the unregister upcall response, clear
2246 * nvmei_support. All rports are unregistered and the
2247 * driver will clean up.
2248 */
2249 vport->nvmei_support = 0;
2250 if (ret == 0) {
2251 lpfc_printf_vlog(vport,
2252 KERN_INFO, LOG_NVME_DISC,
2253 "6009 Unregistered lport Success\n");
2254 } else {
2255 lpfc_printf_vlog(vport,
2256 KERN_INFO, LOG_NVME_DISC,
2257 "6010 Unregistered lport "
2258 "Failed, status x%x\n",
2259 ret);
2260 }
166d7211 2261#endif
01649561
JS
2262}
2263
2264void
2265lpfc_nvme_update_localport(struct lpfc_vport *vport)
2266{
2267 struct nvme_fc_local_port *localport;
2268 struct lpfc_nvme_lport *lport;
2269
2270 localport = vport->localport;
2271 lport = (struct lpfc_nvme_lport *)localport->private;
2272
2273 lpfc_printf_vlog(vport, KERN_INFO, LOG_NVME,
2274 "6012 Update NVME lport %p did x%x\n",
2275 localport, vport->fc_myDID);
2276
2277 localport->port_id = vport->fc_myDID;
2278 if (localport->port_id == 0)
2279 localport->port_role = FC_PORT_ROLE_NVME_DISCOVERY;
2280 else
2281 localport->port_role = FC_PORT_ROLE_NVME_INITIATOR;
2282
2283 lpfc_printf_vlog(vport, KERN_INFO, LOG_NVME_DISC,
2284 "6030 bound lport %p to DID x%06x\n",
2285 lport, localport->port_id);
2286
2287}
2288
2289int
2290lpfc_nvme_register_port(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
2291{
7d708033 2292#if (IS_ENABLED(CONFIG_NVME_FC))
01649561
JS
2293 int ret = 0;
2294 struct nvme_fc_local_port *localport;
2295 struct lpfc_nvme_lport *lport;
2296 struct lpfc_nvme_rport *rport;
2297 struct nvme_fc_remote_port *remote_port;
2298 struct nvme_fc_port_info rpinfo;
2299
2300 lpfc_printf_vlog(ndlp->vport, KERN_INFO, LOG_NVME_DISC,
2301 "6006 Register NVME PORT. DID x%06x nlptype x%x\n",
2302 ndlp->nlp_DID, ndlp->nlp_type);
2303
2304 localport = vport->localport;
2305 lport = (struct lpfc_nvme_lport *)localport->private;
2306
2307 if (ndlp->nlp_type & (NLP_NVME_TARGET | NLP_NVME_INITIATOR)) {
2308
2309 /* The driver isn't expecting the rport wwn to change
2310 * but it might get a different DID on a different
2311 * fabric.
2312 */
2313 list_for_each_entry(rport, &lport->rport_list, list) {
2314 if (rport->remoteport->port_name !=
2315 wwn_to_u64(ndlp->nlp_portname.u.wwn))
2316 continue;
2317 lpfc_printf_vlog(ndlp->vport, KERN_INFO, LOG_NVME_DISC,
2318 "6035 lport %p, found matching rport "
2319 "at wwpn 0x%llx, Data: x%x x%x x%x "
2320 "x%06x\n",
2321 lport,
2322 rport->remoteport->port_name,
2323 rport->remoteport->port_id,
2324 rport->remoteport->port_role,
2325 ndlp->nlp_type,
2326 ndlp->nlp_DID);
2327 remote_port = rport->remoteport;
2328 if ((remote_port->port_id == 0) &&
2329 (remote_port->port_role ==
2330 FC_PORT_ROLE_NVME_DISCOVERY)) {
2331 remote_port->port_id = ndlp->nlp_DID;
2332 remote_port->port_role &=
2333 ~FC_PORT_ROLE_NVME_DISCOVERY;
2334 if (ndlp->nlp_type & NLP_NVME_TARGET)
2335 remote_port->port_role |=
2336 FC_PORT_ROLE_NVME_TARGET;
2337 if (ndlp->nlp_type & NLP_NVME_INITIATOR)
2338 remote_port->port_role |=
2339 FC_PORT_ROLE_NVME_INITIATOR;
2340
2341 lpfc_printf_vlog(ndlp->vport, KERN_INFO,
2342 LOG_NVME_DISC,
2343 "6014 Rebinding lport to "
2344 "rport wwpn 0x%llx, "
2345 "Data: x%x x%x x%x x%06x\n",
2346 remote_port->port_name,
2347 remote_port->port_id,
2348 remote_port->port_role,
2349 ndlp->nlp_type,
2350 ndlp->nlp_DID);
2351 }
2352 return 0;
2353 }
2354
2355 /* NVME rports are not preserved across devloss.
2356 * Just register this instance.
2357 */
2358 rpinfo.port_id = ndlp->nlp_DID;
2359 rpinfo.port_role = 0;
2360 if (ndlp->nlp_type & NLP_NVME_TARGET)
2361 rpinfo.port_role |= FC_PORT_ROLE_NVME_TARGET;
2362 if (ndlp->nlp_type & NLP_NVME_INITIATOR)
2363 rpinfo.port_role |= FC_PORT_ROLE_NVME_INITIATOR;
2364 rpinfo.port_name = wwn_to_u64(ndlp->nlp_portname.u.wwn);
2365 rpinfo.node_name = wwn_to_u64(ndlp->nlp_nodename.u.wwn);
01649561
JS
2366 ret = nvme_fc_register_remoteport(localport, &rpinfo,
2367 &remote_port);
2368 if (!ret) {
2369 rport = remote_port->private;
2370 rport->remoteport = remote_port;
2371 rport->lport = lport;
2372 rport->ndlp = lpfc_nlp_get(ndlp);
2373 if (!rport->ndlp)
2374 return -1;
2375 ndlp->nrport = rport;
2376 INIT_LIST_HEAD(&rport->list);
2377 list_add_tail(&rport->list, &lport->rport_list);
2378 lpfc_printf_vlog(vport, KERN_INFO,
2379 LOG_NVME_DISC | LOG_NODE,
2380 "6022 Binding new rport to lport %p "
2381 "Rport WWNN 0x%llx, Rport WWPN 0x%llx "
2382 "DID x%06x Role x%x\n",
2383 lport,
2384 rpinfo.node_name, rpinfo.port_name,
2385 rpinfo.port_id, rpinfo.port_role);
2386 } else {
2387 lpfc_printf_vlog(vport, KERN_ERR,
2388 LOG_NVME_DISC | LOG_NODE,
2389 "6031 RemotePort Registration failed "
2390 "err: %d, DID x%06x\n",
2391 ret, ndlp->nlp_DID);
2392 }
2393 } else {
2394 ret = -EINVAL;
2395 lpfc_printf_vlog(vport, KERN_INFO, LOG_NVME_DISC,
2396 "6027 Unknown nlp_type x%x on DID x%06x "
2397 "ndlp %p. Not Registering nvme rport\n",
2398 ndlp->nlp_type, ndlp->nlp_DID, ndlp);
2399 }
2400 return ret;
166d7211
JS
2401#else
2402 return 0;
2403#endif
01649561
JS
2404}
2405
2406/* lpfc_nvme_unregister_port - unbind the DID and port_role from this rport.
2407 *
2408 * There is no notion of Devloss or rport recovery from the current
2409 * nvme_transport perspective. Loss of an rport just means IO cannot
2410 * be sent and recovery is completely up to the initator.
2411 * For now, the driver just unbinds the DID and port_role so that
2412 * no further IO can be issued. Changes are planned for later.
2413 *
2414 * Notes - the ndlp reference count is not decremented here since
2415 * since there is no nvme_transport api for devloss. Node ref count
2416 * is only adjusted in driver unload.
2417 */
2418void
2419lpfc_nvme_unregister_port(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
2420{
7d708033 2421#if (IS_ENABLED(CONFIG_NVME_FC))
01649561
JS
2422 int ret;
2423 struct nvme_fc_local_port *localport;
2424 struct lpfc_nvme_lport *lport;
2425 struct lpfc_nvme_rport *rport;
2426 struct nvme_fc_remote_port *remoteport;
975ff31c 2427 unsigned long wait_tmo;
01649561
JS
2428
2429 localport = vport->localport;
2430
2431 /* This is fundamental error. The localport is always
2432 * available until driver unload. Just exit.
2433 */
2434 if (!localport)
2435 return;
2436
2437 lport = (struct lpfc_nvme_lport *)localport->private;
2438 if (!lport)
2439 goto input_err;
2440
2441 rport = ndlp->nrport;
2442 if (!rport)
2443 goto input_err;
2444
2445 remoteport = rport->remoteport;
2446 lpfc_printf_vlog(vport, KERN_INFO, LOG_NVME_DISC,
2447 "6033 Unreg nvme remoteport %p, portname x%llx, "
2448 "port_id x%06x, portstate x%x port type x%x\n",
2449 remoteport, remoteport->port_name,
2450 remoteport->port_id, remoteport->port_state,
2451 ndlp->nlp_type);
2452
2453 /* Sanity check ndlp type. Only call for NVME ports. Don't
2454 * clear any rport state until the transport calls back.
2455 */
2456 if (ndlp->nlp_type & (NLP_NVME_TARGET | NLP_NVME_INITIATOR)) {
2457 init_completion(&rport->rport_unreg_done);
2458 ret = nvme_fc_unregister_remoteport(remoteport);
2459 if (ret != 0) {
2460 lpfc_printf_vlog(vport, KERN_ERR, LOG_NVME_DISC,
2461 "6167 NVME unregister failed %d "
2462 "port_state x%x\n",
2463 ret, remoteport->port_state);
2464 }
2465
2466 /* Wait for the driver's delete completion routine to finish
2467 * before proceeding. This guarantees the transport and driver
2468 * have completed the unreg process.
2469 */
975ff31c
JS
2470 wait_tmo = msecs_to_jiffies(5000);
2471 ret = wait_for_completion_timeout(&rport->rport_unreg_done,
2472 wait_tmo);
01649561
JS
2473 if (ret == 0) {
2474 lpfc_printf_vlog(vport, KERN_ERR, LOG_NVME_DISC,
975ff31c 2475 "6169 Unreg nvme wait timeout\n");
01649561
JS
2476 }
2477 }
2478 return;
2479
2480 input_err:
166d7211 2481#endif
01649561
JS
2482 lpfc_printf_vlog(vport, KERN_ERR, LOG_NVME_DISC,
2483 "6168: State error: lport %p, rport%p FCID x%06x\n",
2484 vport->localport, ndlp->rport, ndlp->nlp_DID);
2485}
318083ad
JS
2486
2487/**
2488 * lpfc_sli4_nvme_xri_aborted - Fast-path process of NVME xri abort
2489 * @phba: pointer to lpfc hba data structure.
2490 * @axri: pointer to the fcp xri abort wcqe structure.
2491 *
2492 * This routine is invoked by the worker thread to process a SLI4 fast-path
2493 * FCP aborted xri.
2494 **/
2495void
2496lpfc_sli4_nvme_xri_aborted(struct lpfc_hba *phba,
2497 struct sli4_wcqe_xri_aborted *axri)
2498{
2499 uint16_t xri = bf_get(lpfc_wcqe_xa_xri, axri);
2500 uint16_t rxid = bf_get(lpfc_wcqe_xa_remote_xid, axri);
2501 struct lpfc_nvme_buf *lpfc_ncmd, *next_lpfc_ncmd;
2502 struct lpfc_nodelist *ndlp;
2503 unsigned long iflag = 0;
2504 int rrq_empty = 0;
2505
2506 if (!(phba->cfg_enable_fc4_type & LPFC_ENABLE_NVME))
2507 return;
2508 spin_lock_irqsave(&phba->hbalock, iflag);
2509 spin_lock(&phba->sli4_hba.abts_nvme_buf_list_lock);
2510 list_for_each_entry_safe(lpfc_ncmd, next_lpfc_ncmd,
2511 &phba->sli4_hba.lpfc_abts_nvme_buf_list,
2512 list) {
2513 if (lpfc_ncmd->cur_iocbq.sli4_xritag == xri) {
2514 list_del(&lpfc_ncmd->list);
2515 lpfc_ncmd->flags &= ~LPFC_SBUF_XBUSY;
2516 lpfc_ncmd->status = IOSTAT_SUCCESS;
2517 spin_unlock(
2518 &phba->sli4_hba.abts_nvme_buf_list_lock);
2519
2520 rrq_empty = list_empty(&phba->active_rrq_list);
2521 spin_unlock_irqrestore(&phba->hbalock, iflag);
2522 ndlp = lpfc_ncmd->ndlp;
2523 if (ndlp) {
2524 lpfc_set_rrq_active(
2525 phba, ndlp,
2526 lpfc_ncmd->cur_iocbq.sli4_lxritag,
2527 rxid, 1);
2528 lpfc_sli4_abts_err_handler(phba, ndlp, axri);
2529 }
2530 lpfc_release_nvme_buf(phba, lpfc_ncmd);
2531 if (rrq_empty)
2532 lpfc_worker_wake_up(phba);
2533 return;
2534 }
2535 }
2536 spin_unlock(&phba->sli4_hba.abts_nvme_buf_list_lock);
2537 spin_unlock_irqrestore(&phba->hbalock, iflag);
2538}