xref: /openbmc/linux/drivers/scsi/lpfc/lpfc_nvme.h (revision 0794d601)
1 /*******************************************************************
2  * This file is part of the Emulex Linux Device Driver for         *
3  * Fibre Channel Host Bus Adapters.                                *
4  * Copyright (C) 2017-2018 Broadcom. All Rights Reserved. The term *
5  * “Broadcom” refers to Broadcom Inc. and/or its subsidiaries.  *
6  * Copyright (C) 2004-2016 Emulex.  All rights reserved.           *
7  * EMULEX and SLI are trademarks of Emulex.                        *
8  * www.broadcom.com                                                *
9  * Portions Copyright (C) 2004-2005 Christoph Hellwig              *
10  *                                                                 *
11  * This program is free software; you can redistribute it and/or   *
12  * modify it under the terms of version 2 of the GNU General       *
13  * Public License as published by the Free Software Foundation.    *
14  * This program is distributed in the hope that it will be useful. *
15  * ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND          *
16  * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY,  *
17  * FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE      *
18  * DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD *
19  * TO BE LEGALLY INVALID.  See the GNU General Public License for  *
20  * more details, a copy of which can be found in the file COPYING  *
21  * included with this package.                                     *
22  ********************************************************************/
23 
24 #define LPFC_NVME_DEFAULT_SEGS		(64 + 1)	/* 256K IOs */
25 
26 #define LPFC_NVME_ERSP_LEN		0x20
27 
28 #define LPFC_NVME_WAIT_TMO              10
29 #define LPFC_NVME_EXPEDITE_XRICNT	8
30 #define LPFC_NVME_FB_SHIFT		9
31 #define LPFC_NVME_MAX_FB		(1 << 20)	/* 1M */
32 
33 #define lpfc_ndlp_get_nrport(ndlp)					\
34 	((!ndlp->nrport || (ndlp->upcall_flags & NLP_WAIT_FOR_UNREG))	\
35 	? NULL : ndlp->nrport)
36 
37 struct lpfc_nvme_qhandle {
38 	uint32_t index;		/* WQ index to use */
39 	uint32_t qidx;		/* queue index passed to create */
40 	uint32_t cpu_id;	/* current cpu id at time of create */
41 };
42 
43 struct lpfc_nvme_ctrl_stat {
44 	atomic_t fc4NvmeInputRequests;
45 	atomic_t fc4NvmeOutputRequests;
46 	atomic_t fc4NvmeControlRequests;
47 	atomic_t fc4NvmeIoCmpls;
48 };
49 
50 /* Declare nvme-based local and remote port definitions. */
51 struct lpfc_nvme_lport {
52 	struct lpfc_vport *vport;
53 	struct completion lport_unreg_done;
54 	/* Add stats counters here */
55 	struct lpfc_nvme_ctrl_stat *cstat;
56 	atomic_t fc4NvmeLsRequests;
57 	atomic_t fc4NvmeLsCmpls;
58 	atomic_t xmt_fcp_noxri;
59 	atomic_t xmt_fcp_bad_ndlp;
60 	atomic_t xmt_fcp_qdepth;
61 	atomic_t xmt_fcp_wqerr;
62 	atomic_t xmt_fcp_err;
63 	atomic_t xmt_fcp_abort;
64 	atomic_t xmt_ls_abort;
65 	atomic_t xmt_ls_err;
66 	atomic_t cmpl_fcp_xb;
67 	atomic_t cmpl_fcp_err;
68 	atomic_t cmpl_ls_xb;
69 	atomic_t cmpl_ls_err;
70 };
71 
72 struct lpfc_nvme_rport {
73 	struct lpfc_nvme_lport *lport;
74 	struct nvme_fc_remote_port *remoteport;
75 	struct lpfc_nodelist *ndlp;
76 	struct completion rport_unreg_done;
77 };
78 
79 struct lpfc_nvme_buf {
80 	/* Common fields */
81 	struct list_head list;
82 	void *data;
83 	dma_addr_t dma_handle;
84 	dma_addr_t dma_phys_sgl;
85 	struct sli4_sge *dma_sgl;
86 	struct lpfc_iocbq cur_iocbq;
87 
88 	/* NVME specific fields */
89 	struct nvmefc_fcp_req *nvmeCmd;
90 	struct lpfc_nodelist *ndlp;
91 
92 	uint32_t timeout;
93 
94 	uint16_t flags;  /* TBD convert exch_busy to flags */
95 #define LPFC_SBUF_XBUSY         0x1     /* SLI4 hba reported XB on WCQE cmpl */
96 #define LPFC_BUMP_QDEPTH	0x2	/* bumped queue depth counter */
97 	uint16_t exch_busy;     /* SLI4 hba reported XB on complete WCQE */
98 	uint16_t cpu;
99 	uint16_t status;	/* From IOCB Word 7- ulpStatus */
100 	uint32_t result;	/* From IOCB Word 4. */
101 
102 	uint32_t   seg_cnt;	/* Number of scatter-gather segments returned by
103 				 * dma_map_sg.  The driver needs this for calls
104 				 * to dma_unmap_sg.
105 				 */
106 	wait_queue_head_t *waitq;
107 	unsigned long start_time;
108 
109 	uint16_t qidx;
110 
111 #ifdef CONFIG_SCSI_LPFC_DEBUG_FS
112 	uint64_t ts_cmd_start;
113 	uint64_t ts_last_cmd;
114 	uint64_t ts_cmd_wqput;
115 	uint64_t ts_isr_cmpl;
116 	uint64_t ts_data_nvme;
117 #endif
118 };
119 
120 struct lpfc_nvme_fcpreq_priv {
121 	struct lpfc_nvme_buf *nvme_buf;
122 };
123