blob: af7919a5acdc93ea959e14194894ac4a5d6c36ed [file] [log] [blame]
Duane Grigsbye84067d2017-06-21 13:48:43 -07001/*
2 * QLogic Fibre Channel HBA Driver
3 * Copyright (c) 2003-2017 QLogic Corporation
4 *
5 * See LICENSE.qla2xxx for copyright and licensing details.
6 */
7#include "qla_nvme.h"
Duane Grigsbye84067d2017-06-21 13:48:43 -07008#include <linux/scatterlist.h>
9#include <linux/delay.h>
10#include <linux/nvme.h>
11#include <linux/nvme-fc.h>
12
13static struct nvme_fc_port_template qla_nvme_fc_transport;
14
himanshu.madhani@cavium.com0f7e51f2017-07-21 09:32:24 -070015int qla_nvme_register_remote(struct scsi_qla_host *vha, struct fc_port *fcport)
Duane Grigsbye84067d2017-06-21 13:48:43 -070016{
Darren Trapp9dd96862018-03-20 23:09:32 -070017 struct qla_nvme_rport *rport;
18 struct nvme_fc_port_info req;
Duane Grigsbye84067d2017-06-21 13:48:43 -070019 int ret;
20
Arnd Bergmannbcda7712017-06-30 18:10:40 +020021 if (!IS_ENABLED(CONFIG_NVME_FC))
22 return 0;
23
Duane Grigsbye84067d2017-06-21 13:48:43 -070024 if (!vha->flags.nvme_enabled) {
25 ql_log(ql_log_info, vha, 0x2100,
26 "%s: Not registering target since Host NVME is not enabled\n",
27 __func__);
28 return 0;
29 }
30
Quinn Tran8777e432018-08-02 13:16:57 -070031 if (!vha->nvme_local_port && qla_nvme_register_hba(vha))
32 return 0;
33
Duane Grigsbye84067d2017-06-21 13:48:43 -070034 if (!(fcport->nvme_prli_service_param &
Darren Trapp9dd96862018-03-20 23:09:32 -070035 (NVME_PRLI_SP_TARGET | NVME_PRLI_SP_DISCOVERY)) ||
36 (fcport->nvme_flag & NVME_FLAG_REGISTERED))
Duane Grigsbye84067d2017-06-21 13:48:43 -070037 return 0;
38
Darren Trapp870fe242018-03-20 23:09:35 -070039 fcport->nvme_flag &= ~NVME_FLAG_RESETTING;
Duane Grigsbye84067d2017-06-21 13:48:43 -070040
Darren Trapp9dd96862018-03-20 23:09:32 -070041 memset(&req, 0, sizeof(struct nvme_fc_port_info));
42 req.port_name = wwn_to_u64(fcport->port_name);
43 req.node_name = wwn_to_u64(fcport->node_name);
44 req.port_role = 0;
45 req.dev_loss_tmo = NVME_FC_DEV_LOSS_TMO;
Duane Grigsbye84067d2017-06-21 13:48:43 -070046
47 if (fcport->nvme_prli_service_param & NVME_PRLI_SP_INITIATOR)
Darren Trapp9dd96862018-03-20 23:09:32 -070048 req.port_role = FC_PORT_ROLE_NVME_INITIATOR;
Duane Grigsbye84067d2017-06-21 13:48:43 -070049
50 if (fcport->nvme_prli_service_param & NVME_PRLI_SP_TARGET)
Darren Trapp9dd96862018-03-20 23:09:32 -070051 req.port_role |= FC_PORT_ROLE_NVME_TARGET;
Duane Grigsbye84067d2017-06-21 13:48:43 -070052
53 if (fcport->nvme_prli_service_param & NVME_PRLI_SP_DISCOVERY)
Darren Trapp9dd96862018-03-20 23:09:32 -070054 req.port_role |= FC_PORT_ROLE_NVME_DISCOVERY;
Duane Grigsbye84067d2017-06-21 13:48:43 -070055
Darren Trapp9dd96862018-03-20 23:09:32 -070056 req.port_id = fcport->d_id.b24;
Duane Grigsbye84067d2017-06-21 13:48:43 -070057
58 ql_log(ql_log_info, vha, 0x2102,
Darren Trapd7936a92017-08-23 15:04:59 -070059 "%s: traddr=nn-0x%016llx:pn-0x%016llx PortID:%06x\n",
Darren Trapp9dd96862018-03-20 23:09:32 -070060 __func__, req.node_name, req.port_name,
61 req.port_id);
Duane Grigsbye84067d2017-06-21 13:48:43 -070062
Darren Trapp9dd96862018-03-20 23:09:32 -070063 ret = nvme_fc_register_remoteport(vha->nvme_local_port, &req,
Duane Grigsbye84067d2017-06-21 13:48:43 -070064 &fcport->nvme_remote_port);
65 if (ret) {
66 ql_log(ql_log_warn, vha, 0x212e,
67 "Failed to register remote port. Transport returned %d\n",
68 ret);
69 return ret;
70 }
71
Darren Trapp9dd96862018-03-20 23:09:32 -070072 rport = fcport->nvme_remote_port->private;
Duane Grigsbye84067d2017-06-21 13:48:43 -070073 rport->fcport = fcport;
Darren Trapp9dd96862018-03-20 23:09:32 -070074
75 fcport->nvme_flag |= NVME_FLAG_REGISTERED;
Duane Grigsbye84067d2017-06-21 13:48:43 -070076 return 0;
77}
78
79/* Allocate a queue for NVMe traffic */
himanshu.madhani@cavium.com6fcd98f2017-07-21 09:32:23 -070080static int qla_nvme_alloc_queue(struct nvme_fc_local_port *lport,
81 unsigned int qidx, u16 qsize, void **handle)
Duane Grigsbye84067d2017-06-21 13:48:43 -070082{
83 struct scsi_qla_host *vha;
84 struct qla_hw_data *ha;
85 struct qla_qpair *qpair;
86
87 if (!qidx)
88 qidx++;
89
90 vha = (struct scsi_qla_host *)lport->private;
91 ha = vha->hw;
92
93 ql_log(ql_log_info, vha, 0x2104,
94 "%s: handle %p, idx =%d, qsize %d\n",
95 __func__, handle, qidx, qsize);
96
97 if (qidx > qla_nvme_fc_transport.max_hw_queues) {
98 ql_log(ql_log_warn, vha, 0x212f,
99 "%s: Illegal qidx=%d. Max=%d\n",
100 __func__, qidx, qla_nvme_fc_transport.max_hw_queues);
101 return -EINVAL;
102 }
103
104 if (ha->queue_pair_map[qidx]) {
105 *handle = ha->queue_pair_map[qidx];
106 ql_log(ql_log_info, vha, 0x2121,
107 "Returning existing qpair of %p for idx=%x\n",
108 *handle, qidx);
109 return 0;
110 }
111
Duane Grigsbye84067d2017-06-21 13:48:43 -0700112 qpair = qla2xxx_create_qpair(vha, 5, vha->vp_idx, true);
113 if (qpair == NULL) {
114 ql_log(ql_log_warn, vha, 0x2122,
115 "Failed to allocate qpair\n");
116 return -EINVAL;
117 }
118 *handle = qpair;
119
120 return 0;
121}
122
Quinn Tran4c2a2d02019-06-21 09:50:24 -0700123static void qla_nvme_release_fcp_cmd_kref(struct kref *kref)
Duane Grigsbye84067d2017-06-21 13:48:43 -0700124{
Quinn Tran4c2a2d02019-06-21 09:50:24 -0700125 struct srb *sp = container_of(kref, struct srb, cmd_kref);
126 struct nvme_private *priv = (struct nvme_private *)sp->priv;
Duane Grigsbye84067d2017-06-21 13:48:43 -0700127 struct nvmefc_fcp_req *fd;
Quinn Tran4c2a2d02019-06-21 09:50:24 -0700128 struct srb_iocb *nvme;
129 unsigned long flags;
130
131 if (!priv)
132 goto out;
Duane Grigsbye84067d2017-06-21 13:48:43 -0700133
134 nvme = &sp->u.iocb_cmd;
135 fd = nvme->u.nvme.desc;
136
Quinn Tran4c2a2d02019-06-21 09:50:24 -0700137 spin_lock_irqsave(&priv->cmd_lock, flags);
138 priv->sp = NULL;
139 sp->priv = NULL;
140 if (priv->comp_status == QLA_SUCCESS) {
Giridhar Malavalib2d1453a2019-04-02 14:24:32 -0700141 fd->rcv_rsplen = nvme->u.nvme.rsp_pyld_len;
142 } else {
143 fd->rcv_rsplen = 0;
144 fd->transferred_length = 0;
145 }
146 fd->status = 0;
Quinn Tran4c2a2d02019-06-21 09:50:24 -0700147 spin_unlock_irqrestore(&priv->cmd_lock, flags);
148
Darren Trapp2e4c5d22018-03-20 23:09:36 -0700149 fd->done(fd);
Quinn Tran4c2a2d02019-06-21 09:50:24 -0700150out:
Darren Trapp2e4c5d22018-03-20 23:09:36 -0700151 qla2xxx_rel_qpair_sp(sp->qpair, sp);
Quinn Tran4c2a2d02019-06-21 09:50:24 -0700152}
153
154static void qla_nvme_release_ls_cmd_kref(struct kref *kref)
155{
156 struct srb *sp = container_of(kref, struct srb, cmd_kref);
157 struct nvme_private *priv = (struct nvme_private *)sp->priv;
158 struct nvmefc_ls_req *fd;
159 unsigned long flags;
160
161 if (!priv)
162 goto out;
163
164 spin_lock_irqsave(&priv->cmd_lock, flags);
165 priv->sp = NULL;
166 sp->priv = NULL;
167 spin_unlock_irqrestore(&priv->cmd_lock, flags);
168
169 fd = priv->fd;
170 fd->done(fd, priv->comp_status);
171out:
172 qla2x00_rel_sp(sp);
173}
174
175static void qla_nvme_ls_complete(struct work_struct *work)
176{
177 struct nvme_private *priv =
178 container_of(work, struct nvme_private, ls_work);
179
180 kref_put(&priv->sp->cmd_kref, qla_nvme_release_ls_cmd_kref);
181}
182
183static void qla_nvme_sp_ls_done(void *ptr, int res)
184{
185 srb_t *sp = ptr;
186 struct nvme_private *priv;
187
188 if (WARN_ON_ONCE(kref_read(&sp->cmd_kref) == 0))
189 return;
190
191 if (res)
192 res = -EINVAL;
193
194 priv = (struct nvme_private *)sp->priv;
195 priv->comp_status = res;
196 INIT_WORK(&priv->ls_work, qla_nvme_ls_complete);
197 schedule_work(&priv->ls_work);
198}
199
200/* it assumed that QPair lock is held. */
201static void qla_nvme_sp_done(void *ptr, int res)
202{
203 srb_t *sp = ptr;
204 struct nvme_private *priv = (struct nvme_private *)sp->priv;
205
206 priv->comp_status = res;
207 kref_put(&sp->cmd_kref, qla_nvme_release_fcp_cmd_kref);
Darren Trapp9dd96862018-03-20 23:09:32 -0700208
Duane Grigsbycf19c452017-08-23 15:04:58 -0700209 return;
Duane Grigsbye84067d2017-06-21 13:48:43 -0700210}
211
Darren Trappe473b302018-03-20 23:09:33 -0700212static void qla_nvme_abort_work(struct work_struct *work)
Duane Grigsbye84067d2017-06-21 13:48:43 -0700213{
Darren Trappe473b302018-03-20 23:09:33 -0700214 struct nvme_private *priv =
215 container_of(work, struct nvme_private, abort_work);
Duane Grigsbye84067d2017-06-21 13:48:43 -0700216 srb_t *sp = priv->sp;
Darren Trappe473b302018-03-20 23:09:33 -0700217 fc_port_t *fcport = sp->fcport;
Duane Grigsbye84067d2017-06-21 13:48:43 -0700218 struct qla_hw_data *ha = fcport->vha->hw;
Darren Trappe473b302018-03-20 23:09:33 -0700219 int rval;
Duane Grigsbye84067d2017-06-21 13:48:43 -0700220
Bart Van Asschedafbe562019-04-17 14:44:18 -0700221 ql_dbg(ql_dbg_io, fcport->vha, 0xffff,
222 "%s called for sp=%p, hndl=%x on fcport=%p deleted=%d\n",
223 __func__, sp, sp->handle, fcport, fcport->deleted);
Himanshu Madhani471f8e02019-02-15 14:37:15 -0800224
225 if (!ha->flags.fw_started && (fcport && fcport->deleted))
Quinn Tran4c2a2d02019-06-21 09:50:24 -0700226 goto out;
Himanshu Madhani471f8e02019-02-15 14:37:15 -0800227
Giridhar Malavalib2d1453a2019-04-02 14:24:32 -0700228 if (ha->flags.host_shutting_down) {
229 ql_log(ql_log_info, sp->fcport->vha, 0xffff,
230 "%s Calling done on sp: %p, type: 0x%x, sp->ref_count: 0x%x\n",
231 __func__, sp, sp->type, atomic_read(&sp->ref_count));
232 sp->done(sp, 0);
Quinn Tran4c2a2d02019-06-21 09:50:24 -0700233 goto out;
Giridhar Malavalib2d1453a2019-04-02 14:24:32 -0700234 }
235
Duane Grigsbye84067d2017-06-21 13:48:43 -0700236 rval = ha->isp_ops->abort_command(sp);
Duane Grigsbye84067d2017-06-21 13:48:43 -0700237
238 ql_dbg(ql_dbg_io, fcport->vha, 0x212b,
Darren Trapp870fe242018-03-20 23:09:35 -0700239 "%s: %s command for sp=%p, handle=%x on fcport=%p rval=%x\n",
240 __func__, (rval != QLA_SUCCESS) ? "Failed to abort" : "Aborted",
241 sp, sp->handle, fcport, rval);
Quinn Tran4c2a2d02019-06-21 09:50:24 -0700242
243out:
244 /* kref_get was done before work was schedule. */
245 kref_put(&sp->cmd_kref, sp->put_fn);
Duane Grigsbye84067d2017-06-21 13:48:43 -0700246}
247
Darren Trappe473b302018-03-20 23:09:33 -0700248static void qla_nvme_ls_abort(struct nvme_fc_local_port *lport,
249 struct nvme_fc_remote_port *rport, struct nvmefc_ls_req *fd)
250{
251 struct nvme_private *priv = fd->private;
Quinn Tran4c2a2d02019-06-21 09:50:24 -0700252 unsigned long flags;
253
254 spin_lock_irqsave(&priv->cmd_lock, flags);
255 if (!priv->sp) {
256 spin_unlock_irqrestore(&priv->cmd_lock, flags);
257 return;
258 }
259
260 if (!kref_get_unless_zero(&priv->sp->cmd_kref)) {
261 spin_unlock_irqrestore(&priv->cmd_lock, flags);
262 return;
263 }
264 spin_unlock_irqrestore(&priv->cmd_lock, flags);
Darren Trappe473b302018-03-20 23:09:33 -0700265
266 INIT_WORK(&priv->abort_work, qla_nvme_abort_work);
267 schedule_work(&priv->abort_work);
268}
269
Duane Grigsbye84067d2017-06-21 13:48:43 -0700270
271static int qla_nvme_ls_req(struct nvme_fc_local_port *lport,
272 struct nvme_fc_remote_port *rport, struct nvmefc_ls_req *fd)
273{
Darren Trapp9dd96862018-03-20 23:09:32 -0700274 struct qla_nvme_rport *qla_rport = rport->private;
275 fc_port_t *fcport = qla_rport->fcport;
Duane Grigsbye84067d2017-06-21 13:48:43 -0700276 struct srb_iocb *nvme;
277 struct nvme_private *priv = fd->private;
278 struct scsi_qla_host *vha;
279 int rval = QLA_FUNCTION_FAILED;
280 struct qla_hw_data *ha;
281 srb_t *sp;
282
Quinn Tran2eb92382019-06-21 09:50:23 -0700283
284 if (!fcport || (fcport && fcport->deleted))
285 return rval;
286
Duane Grigsbye84067d2017-06-21 13:48:43 -0700287 vha = fcport->vha;
288 ha = vha->hw;
Quinn Tran2eb92382019-06-21 09:50:23 -0700289
290 if (!ha->flags.fw_started)
291 return rval;
292
Duane Grigsbye84067d2017-06-21 13:48:43 -0700293 /* Alloc SRB structure */
294 sp = qla2x00_get_sp(vha, fcport, GFP_ATOMIC);
295 if (!sp)
296 return rval;
297
298 sp->type = SRB_NVME_LS;
299 sp->name = "nvme_ls";
300 sp->done = qla_nvme_sp_ls_done;
Quinn Tran4c2a2d02019-06-21 09:50:24 -0700301 sp->put_fn = qla_nvme_release_ls_cmd_kref;
302 sp->priv = (void *)priv;
Duane Grigsbye84067d2017-06-21 13:48:43 -0700303 priv->sp = sp;
Quinn Tran4c2a2d02019-06-21 09:50:24 -0700304 kref_init(&sp->cmd_kref);
305 spin_lock_init(&priv->cmd_lock);
306 nvme = &sp->u.iocb_cmd;
Duane Grigsbye84067d2017-06-21 13:48:43 -0700307 priv->fd = fd;
Duane Grigsbye84067d2017-06-21 13:48:43 -0700308 nvme->u.nvme.desc = fd;
309 nvme->u.nvme.dir = 0;
310 nvme->u.nvme.dl = 0;
311 nvme->u.nvme.cmd_len = fd->rqstlen;
312 nvme->u.nvme.rsp_len = fd->rsplen;
313 nvme->u.nvme.rsp_dma = fd->rspdma;
314 nvme->u.nvme.timeout_sec = fd->timeout;
315 nvme->u.nvme.cmd_dma = dma_map_single(&ha->pdev->dev, fd->rqstaddr,
316 fd->rqstlen, DMA_TO_DEVICE);
317 dma_sync_single_for_device(&ha->pdev->dev, nvme->u.nvme.cmd_dma,
318 fd->rqstlen, DMA_TO_DEVICE);
319
320 rval = qla2x00_start_sp(sp);
321 if (rval != QLA_SUCCESS) {
322 ql_log(ql_log_warn, vha, 0x700e,
323 "qla2x00_start_sp failed = %d\n", rval);
himanshu.madhani@cavium.com6fcd98f2017-07-21 09:32:23 -0700324 wake_up(&sp->nvme_ls_waitq);
Quinn Tran4c2a2d02019-06-21 09:50:24 -0700325 sp->priv = NULL;
326 priv->sp = NULL;
327 qla2x00_rel_sp(sp);
Duane Grigsbye84067d2017-06-21 13:48:43 -0700328 return rval;
329 }
330
331 return rval;
332}
333
334static void qla_nvme_fcp_abort(struct nvme_fc_local_port *lport,
335 struct nvme_fc_remote_port *rport, void *hw_queue_handle,
336 struct nvmefc_fcp_req *fd)
337{
338 struct nvme_private *priv = fd->private;
Quinn Tran4c2a2d02019-06-21 09:50:24 -0700339 unsigned long flags;
340
341 spin_lock_irqsave(&priv->cmd_lock, flags);
342 if (!priv->sp) {
343 spin_unlock_irqrestore(&priv->cmd_lock, flags);
344 return;
345 }
346 if (!kref_get_unless_zero(&priv->sp->cmd_kref)) {
347 spin_unlock_irqrestore(&priv->cmd_lock, flags);
348 return;
349 }
350 spin_unlock_irqrestore(&priv->cmd_lock, flags);
Duane Grigsbye84067d2017-06-21 13:48:43 -0700351
Darren Trappe473b302018-03-20 23:09:33 -0700352 INIT_WORK(&priv->abort_work, qla_nvme_abort_work);
353 schedule_work(&priv->abort_work);
Duane Grigsbye84067d2017-06-21 13:48:43 -0700354}
355
Darren Trapp60dd6e8e2018-03-20 23:09:39 -0700356static inline int qla2x00_start_nvme_mq(srb_t *sp)
Duane Grigsbye84067d2017-06-21 13:48:43 -0700357{
358 unsigned long flags;
359 uint32_t *clr_ptr;
360 uint32_t index;
361 uint32_t handle;
362 struct cmd_nvme *cmd_pkt;
363 uint16_t cnt, i;
364 uint16_t req_cnt;
365 uint16_t tot_dsds;
366 uint16_t avail_dsds;
Bart Van Assche15b7a682019-04-17 14:44:38 -0700367 struct dsd64 *cur_dsd;
Duane Grigsbye84067d2017-06-21 13:48:43 -0700368 struct req_que *req = NULL;
369 struct scsi_qla_host *vha = sp->fcport->vha;
370 struct qla_hw_data *ha = vha->hw;
371 struct qla_qpair *qpair = sp->qpair;
372 struct srb_iocb *nvme = &sp->u.iocb_cmd;
373 struct scatterlist *sgl, *sg;
374 struct nvmefc_fcp_req *fd = nvme->u.nvme.desc;
375 uint32_t rval = QLA_SUCCESS;
376
himanshu.madhani@cavium.com1d4614e2018-03-20 23:09:30 -0700377 /* Setup qpair pointers */
378 req = qpair->req;
Duane Grigsbye84067d2017-06-21 13:48:43 -0700379 tot_dsds = fd->sg_cnt;
380
381 /* Acquire qpair specific lock */
382 spin_lock_irqsave(&qpair->qp_lock, flags);
383
384 /* Check for room in outstanding command list. */
385 handle = req->current_outstanding_cmd;
386 for (index = 1; index < req->num_outstanding_cmds; index++) {
387 handle++;
388 if (handle == req->num_outstanding_cmds)
389 handle = 1;
390 if (!req->outstanding_cmds[handle])
391 break;
392 }
393
394 if (index == req->num_outstanding_cmds) {
Darren Trapp870fe242018-03-20 23:09:35 -0700395 rval = -EBUSY;
Duane Grigsbye84067d2017-06-21 13:48:43 -0700396 goto queuing_error;
397 }
398 req_cnt = qla24xx_calc_iocbs(vha, tot_dsds);
399 if (req->cnt < (req_cnt + 2)) {
400 cnt = IS_SHADOW_REG_CAPABLE(ha) ? *req->out_ptr :
401 RD_REG_DWORD_RELAXED(req->req_q_out);
402
403 if (req->ring_index < cnt)
404 req->cnt = cnt - req->ring_index;
405 else
406 req->cnt = req->length - (req->ring_index - cnt);
407
408 if (req->cnt < (req_cnt + 2)){
Darren Trapp870fe242018-03-20 23:09:35 -0700409 rval = -EBUSY;
Duane Grigsbye84067d2017-06-21 13:48:43 -0700410 goto queuing_error;
411 }
412 }
413
414 if (unlikely(!fd->sqid)) {
415 struct nvme_fc_cmd_iu *cmd = fd->cmdaddr;
Bart Van Asschebd432bb2019-04-11 14:53:17 -0700416
Duane Grigsbye84067d2017-06-21 13:48:43 -0700417 if (cmd->sqe.common.opcode == nvme_admin_async_event) {
418 nvme->u.nvme.aen_op = 1;
himanshu.madhani@cavium.com1d4614e2018-03-20 23:09:30 -0700419 atomic_inc(&ha->nvme_active_aen_cnt);
Duane Grigsbye84067d2017-06-21 13:48:43 -0700420 }
421 }
422
423 /* Build command packet. */
424 req->current_outstanding_cmd = handle;
425 req->outstanding_cmds[handle] = sp;
426 sp->handle = handle;
427 req->cnt -= req_cnt;
428
429 cmd_pkt = (struct cmd_nvme *)req->ring_ptr;
430 cmd_pkt->handle = MAKE_HANDLE(req->id, handle);
431
432 /* Zero out remaining portion of packet. */
433 clr_ptr = (uint32_t *)cmd_pkt + 2;
434 memset(clr_ptr, 0, REQUEST_ENTRY_SIZE - 8);
435
436 cmd_pkt->entry_status = 0;
437
438 /* Update entry type to indicate Command NVME IOCB */
439 cmd_pkt->entry_type = COMMAND_NVME;
440
441 /* No data transfer how do we check buffer len == 0?? */
442 if (fd->io_dir == NVMEFC_FCP_READ) {
Darren Trapp03aaa892019-02-15 14:37:13 -0800443 cmd_pkt->control_flags = CF_READ_DATA;
Duane Grigsbye84067d2017-06-21 13:48:43 -0700444 vha->qla_stats.input_bytes += fd->payload_length;
445 vha->qla_stats.input_requests++;
446 } else if (fd->io_dir == NVMEFC_FCP_WRITE) {
Darren Trapp03aaa892019-02-15 14:37:13 -0800447 cmd_pkt->control_flags = CF_WRITE_DATA;
448 if ((vha->flags.nvme_first_burst) &&
449 (sp->fcport->nvme_prli_service_param &
450 NVME_PRLI_SP_FIRST_BURST)) {
451 if ((fd->payload_length <=
452 sp->fcport->nvme_first_burst_size) ||
453 (sp->fcport->nvme_first_burst_size == 0))
454 cmd_pkt->control_flags |=
455 CF_NVME_FIRST_BURST_ENABLE;
456 }
Duane Grigsbye84067d2017-06-21 13:48:43 -0700457 vha->qla_stats.output_bytes += fd->payload_length;
458 vha->qla_stats.output_requests++;
459 } else if (fd->io_dir == 0) {
Darren Trapp03aaa892019-02-15 14:37:13 -0800460 cmd_pkt->control_flags = 0;
Duane Grigsbye84067d2017-06-21 13:48:43 -0700461 }
462
463 /* Set NPORT-ID */
464 cmd_pkt->nport_handle = cpu_to_le16(sp->fcport->loop_id);
465 cmd_pkt->port_id[0] = sp->fcport->d_id.b.al_pa;
466 cmd_pkt->port_id[1] = sp->fcport->d_id.b.area;
467 cmd_pkt->port_id[2] = sp->fcport->d_id.b.domain;
468 cmd_pkt->vp_index = sp->fcport->vha->vp_idx;
469
470 /* NVME RSP IU */
471 cmd_pkt->nvme_rsp_dsd_len = cpu_to_le16(fd->rsplen);
Bart Van Assched4556a42019-04-17 14:44:39 -0700472 put_unaligned_le64(fd->rspdma, &cmd_pkt->nvme_rsp_dseg_address);
Duane Grigsbye84067d2017-06-21 13:48:43 -0700473
474 /* NVME CNMD IU */
475 cmd_pkt->nvme_cmnd_dseg_len = cpu_to_le16(fd->cmdlen);
Bart Van Assched4556a42019-04-17 14:44:39 -0700476 cmd_pkt->nvme_cmnd_dseg_address = cpu_to_le64(fd->cmddma);
Duane Grigsbye84067d2017-06-21 13:48:43 -0700477
478 cmd_pkt->dseg_count = cpu_to_le16(tot_dsds);
479 cmd_pkt->byte_count = cpu_to_le32(fd->payload_length);
480
481 /* One DSD is available in the Command Type NVME IOCB */
482 avail_dsds = 1;
Bart Van Assche15b7a682019-04-17 14:44:38 -0700483 cur_dsd = &cmd_pkt->nvme_dsd;
Duane Grigsbye84067d2017-06-21 13:48:43 -0700484 sgl = fd->first_sgl;
485
486 /* Load data segments */
487 for_each_sg(sgl, sg, tot_dsds, i) {
Duane Grigsbye84067d2017-06-21 13:48:43 -0700488 cont_a64_entry_t *cont_pkt;
489
490 /* Allocate additional continuation packets? */
491 if (avail_dsds == 0) {
492 /*
493 * Five DSDs are available in the Continuation
494 * Type 1 IOCB.
495 */
496
497 /* Adjust ring index */
498 req->ring_index++;
499 if (req->ring_index == req->length) {
500 req->ring_index = 0;
501 req->ring_ptr = req->ring;
502 } else {
503 req->ring_ptr++;
504 }
505 cont_pkt = (cont_a64_entry_t *)req->ring_ptr;
Bart Van Assche2c263482019-04-04 12:44:45 -0700506 put_unaligned_le32(CONTINUE_A64_TYPE,
507 &cont_pkt->entry_type);
Duane Grigsbye84067d2017-06-21 13:48:43 -0700508
Bart Van Assche15b7a682019-04-17 14:44:38 -0700509 cur_dsd = cont_pkt->dsd;
510 avail_dsds = ARRAY_SIZE(cont_pkt->dsd);
Duane Grigsbye84067d2017-06-21 13:48:43 -0700511 }
512
Bart Van Assche15b7a682019-04-17 14:44:38 -0700513 append_dsd64(&cur_dsd, sg);
Duane Grigsbye84067d2017-06-21 13:48:43 -0700514 avail_dsds--;
515 }
516
517 /* Set total entry count. */
518 cmd_pkt->entry_count = (uint8_t)req_cnt;
519 wmb();
520
521 /* Adjust ring index. */
522 req->ring_index++;
523 if (req->ring_index == req->length) {
524 req->ring_index = 0;
525 req->ring_ptr = req->ring;
526 } else {
527 req->ring_ptr++;
528 }
529
530 /* Set chip new ring index. */
531 WRT_REG_DWORD(req->req_q_in, req->ring_index);
532
533queuing_error:
534 spin_unlock_irqrestore(&qpair->qp_lock, flags);
535 return rval;
536}
537
538/* Post a command */
539static int qla_nvme_post_cmd(struct nvme_fc_local_port *lport,
540 struct nvme_fc_remote_port *rport, void *hw_queue_handle,
541 struct nvmefc_fcp_req *fd)
542{
543 fc_port_t *fcport;
544 struct srb_iocb *nvme;
545 struct scsi_qla_host *vha;
Darren Trapp870fe242018-03-20 23:09:35 -0700546 int rval = -ENODEV;
Duane Grigsbye84067d2017-06-21 13:48:43 -0700547 srb_t *sp;
himanshu.madhani@cavium.com6fcd98f2017-07-21 09:32:23 -0700548 struct qla_qpair *qpair = hw_queue_handle;
Himanshu Madhani5e6803b2018-12-10 12:36:23 -0800549 struct nvme_private *priv = fd->private;
Darren Trapp9dd96862018-03-20 23:09:32 -0700550 struct qla_nvme_rport *qla_rport = rport->private;
Duane Grigsbye84067d2017-06-21 13:48:43 -0700551
Darren Trapp9dd96862018-03-20 23:09:32 -0700552 fcport = qla_rport->fcport;
Duane Grigsbye84067d2017-06-21 13:48:43 -0700553
Quinn Tran2eb92382019-06-21 09:50:23 -0700554 if (!qpair || !fcport || (qpair && !qpair->fw_started) ||
555 (fcport && fcport->deleted))
Darren Trapp623ee8242018-03-20 23:09:38 -0700556 return rval;
557
Quinn Tran2eb92382019-06-21 09:50:23 -0700558 vha = fcport->vha;
Darren Trapp870fe242018-03-20 23:09:35 -0700559 /*
560 * If we know the dev is going away while the transport is still sending
561 * IO's return busy back to stall the IO Q. This happens when the
562 * link goes away and fw hasn't notified us yet, but IO's are being
563 * returned. If the dev comes back quickly we won't exhaust the IO
564 * retry count at the core.
565 */
566 if (fcport->nvme_flag & NVME_FLAG_RESETTING)
Duane Grigsbye84067d2017-06-21 13:48:43 -0700567 return -EBUSY;
568
569 /* Alloc SRB structure */
Quinn Tran6a629462018-09-04 14:19:15 -0700570 sp = qla2xxx_get_qpair_sp(vha, qpair, fcport, GFP_ATOMIC);
Duane Grigsbye84067d2017-06-21 13:48:43 -0700571 if (!sp)
Darren Trapp870fe242018-03-20 23:09:35 -0700572 return -EBUSY;
Duane Grigsbye84067d2017-06-21 13:48:43 -0700573
himanshu.madhani@cavium.com6fcd98f2017-07-21 09:32:23 -0700574 init_waitqueue_head(&sp->nvme_ls_waitq);
Quinn Tran4c2a2d02019-06-21 09:50:24 -0700575 kref_init(&sp->cmd_kref);
576 spin_lock_init(&priv->cmd_lock);
577 sp->priv = (void *)priv;
Duane Grigsbye84067d2017-06-21 13:48:43 -0700578 priv->sp = sp;
579 sp->type = SRB_NVME_CMD;
580 sp->name = "nvme_cmd";
581 sp->done = qla_nvme_sp_done;
Quinn Tran4c2a2d02019-06-21 09:50:24 -0700582 sp->put_fn = qla_nvme_release_fcp_cmd_kref;
Duane Grigsbye84067d2017-06-21 13:48:43 -0700583 sp->qpair = qpair;
Himanshu Madhani5e6803b2018-12-10 12:36:23 -0800584 sp->vha = vha;
Duane Grigsbye84067d2017-06-21 13:48:43 -0700585 nvme = &sp->u.iocb_cmd;
586 nvme->u.nvme.desc = fd;
587
588 rval = qla2x00_start_nvme_mq(sp);
589 if (rval != QLA_SUCCESS) {
590 ql_log(ql_log_warn, vha, 0x212d,
591 "qla2x00_start_nvme_mq failed = %d\n", rval);
himanshu.madhani@cavium.com6fcd98f2017-07-21 09:32:23 -0700592 wake_up(&sp->nvme_ls_waitq);
Quinn Tran4c2a2d02019-06-21 09:50:24 -0700593 sp->priv = NULL;
594 priv->sp = NULL;
595 qla2xxx_rel_qpair_sp(sp->qpair, sp);
Duane Grigsbye84067d2017-06-21 13:48:43 -0700596 }
597
598 return rval;
599}
600
601static void qla_nvme_localport_delete(struct nvme_fc_local_port *lport)
602{
603 struct scsi_qla_host *vha = lport->private;
604
Duane Grigsbye84067d2017-06-21 13:48:43 -0700605 ql_log(ql_log_info, vha, 0x210f,
606 "localport delete of %p completed.\n", vha->nvme_local_port);
607 vha->nvme_local_port = NULL;
himanshu.madhani@cavium.com5621b0d2017-07-21 09:32:26 -0700608 complete(&vha->nvme_del_done);
Duane Grigsbye84067d2017-06-21 13:48:43 -0700609}
610
611static void qla_nvme_remoteport_delete(struct nvme_fc_remote_port *rport)
612{
613 fc_port_t *fcport;
Arun Easi6a815332019-06-21 09:50:22 -0700614 struct qla_nvme_rport *qla_rport = rport->private;
Duane Grigsbye84067d2017-06-21 13:48:43 -0700615
Darren Trapp9dd96862018-03-20 23:09:32 -0700616 fcport = qla_rport->fcport;
Duane Grigsbye84067d2017-06-21 13:48:43 -0700617 fcport->nvme_remote_port = NULL;
618 fcport->nvme_flag &= ~NVME_FLAG_REGISTERED;
Himanshu Madhani5e6803b2018-12-10 12:36:23 -0800619 fcport->nvme_flag &= ~NVME_FLAG_DELETING;
Duane Grigsbye84067d2017-06-21 13:48:43 -0700620 ql_log(ql_log_info, fcport->vha, 0x2110,
Quinn Tran2eb92382019-06-21 09:50:23 -0700621 "remoteport_delete of %p %8phN completed.\n",
622 fcport, fcport->port_name);
Quinn Tranbaf23ed2019-06-16 08:05:53 -0700623 complete(&fcport->nvme_del_done);
Duane Grigsbye84067d2017-06-21 13:48:43 -0700624}
625
626static struct nvme_fc_port_template qla_nvme_fc_transport = {
627 .localport_delete = qla_nvme_localport_delete,
628 .remoteport_delete = qla_nvme_remoteport_delete,
629 .create_queue = qla_nvme_alloc_queue,
630 .delete_queue = NULL,
631 .ls_req = qla_nvme_ls_req,
632 .ls_abort = qla_nvme_ls_abort,
633 .fcp_io = qla_nvme_post_cmd,
634 .fcp_abort = qla_nvme_fcp_abort,
Duane Grigsbye84067d2017-06-21 13:48:43 -0700635 .max_hw_queues = 8,
Giridhar Malavali6b1f4442019-04-02 14:24:23 -0700636 .max_sgl_segments = 1024,
Duane Grigsbye84067d2017-06-21 13:48:43 -0700637 .max_dif_sgl_segments = 64,
638 .dma_boundary = 0xFFFFFFFF,
639 .local_priv_sz = 8,
Darren Trapp9dd96862018-03-20 23:09:32 -0700640 .remote_priv_sz = sizeof(struct qla_nvme_rport),
Duane Grigsbye84067d2017-06-21 13:48:43 -0700641 .lsrqst_priv_sz = sizeof(struct nvme_private),
642 .fcprqst_priv_sz = sizeof(struct nvme_private),
643};
644
Quinn Tranbaf23ed2019-06-16 08:05:53 -0700645void qla_nvme_unregister_remote_port(struct fc_port *fcport)
Duane Grigsbye84067d2017-06-21 13:48:43 -0700646{
Arun Easi6a815332019-06-21 09:50:22 -0700647 int ret;
Duane Grigsbye84067d2017-06-21 13:48:43 -0700648
Arnd Bergmannbcda7712017-06-30 18:10:40 +0200649 if (!IS_ENABLED(CONFIG_NVME_FC))
650 return;
651
himanshu.madhani@cavium.com49b3d5f62017-07-21 09:32:27 -0700652 ql_log(ql_log_warn, NULL, 0x2112,
Quinn Tran2eb92382019-06-21 09:50:23 -0700653 "%s: unregister remoteport on %p %8phN\n",
654 __func__, fcport, fcport->port_name);
himanshu.madhani@cavium.com49b3d5f62017-07-21 09:32:27 -0700655
Quinn Tran03cc44b2019-07-26 09:07:39 -0700656 if (test_bit(PFLG_DRIVER_REMOVING, &fcport->vha->pci_flags))
657 nvme_fc_set_remoteport_devloss(fcport->nvme_remote_port, 0);
658
Arun Easi6a815332019-06-21 09:50:22 -0700659 init_completion(&fcport->nvme_del_done);
660 ret = nvme_fc_unregister_remoteport(fcport->nvme_remote_port);
661 if (ret)
662 ql_log(ql_log_info, fcport->vha, 0x2114,
663 "%s: Failed to unregister nvme_remote_port (%d)\n",
664 __func__, ret);
665 wait_for_completion(&fcport->nvme_del_done);
Duane Grigsbye84067d2017-06-21 13:48:43 -0700666}
667
himanshu.madhani@cavium.com0f7e51f2017-07-21 09:32:24 -0700668void qla_nvme_delete(struct scsi_qla_host *vha)
Duane Grigsbye84067d2017-06-21 13:48:43 -0700669{
Duane Grigsbye84067d2017-06-21 13:48:43 -0700670 int nv_ret;
671
Arnd Bergmannbcda7712017-06-30 18:10:40 +0200672 if (!IS_ENABLED(CONFIG_NVME_FC))
673 return;
674
Duane Grigsbye84067d2017-06-21 13:48:43 -0700675 if (vha->nvme_local_port) {
himanshu.madhani@cavium.com5621b0d2017-07-21 09:32:26 -0700676 init_completion(&vha->nvme_del_done);
Darren Trapp9dd96862018-03-20 23:09:32 -0700677 ql_log(ql_log_info, vha, 0x2116,
678 "unregister localport=%p\n",
679 vha->nvme_local_port);
Duane Grigsbye84067d2017-06-21 13:48:43 -0700680 nv_ret = nvme_fc_unregister_localport(vha->nvme_local_port);
Darren Trapp9dd96862018-03-20 23:09:32 -0700681 if (nv_ret)
Duane Grigsbye84067d2017-06-21 13:48:43 -0700682 ql_log(ql_log_info, vha, 0x2115,
683 "Unregister of localport failed\n");
Darren Trapp9dd96862018-03-20 23:09:32 -0700684 else
685 wait_for_completion(&vha->nvme_del_done);
Duane Grigsbye84067d2017-06-21 13:48:43 -0700686 }
Duane Grigsbye84067d2017-06-21 13:48:43 -0700687}
688
Quinn Tran8777e432018-08-02 13:16:57 -0700689int qla_nvme_register_hba(struct scsi_qla_host *vha)
Duane Grigsbye84067d2017-06-21 13:48:43 -0700690{
Duane Grigsbye84067d2017-06-21 13:48:43 -0700691 struct nvme_fc_port_template *tmpl;
692 struct qla_hw_data *ha;
693 struct nvme_fc_port_info pinfo;
Quinn Tran8777e432018-08-02 13:16:57 -0700694 int ret = EINVAL;
Duane Grigsbye84067d2017-06-21 13:48:43 -0700695
Arnd Bergmannbcda7712017-06-30 18:10:40 +0200696 if (!IS_ENABLED(CONFIG_NVME_FC))
Quinn Tran8777e432018-08-02 13:16:57 -0700697 return ret;
Arnd Bergmannbcda7712017-06-30 18:10:40 +0200698
Duane Grigsbye84067d2017-06-21 13:48:43 -0700699 ha = vha->hw;
700 tmpl = &qla_nvme_fc_transport;
701
702 WARN_ON(vha->nvme_local_port);
703 WARN_ON(ha->max_req_queues < 3);
704
705 qla_nvme_fc_transport.max_hw_queues =
706 min((uint8_t)(qla_nvme_fc_transport.max_hw_queues),
707 (uint8_t)(ha->max_req_queues - 2));
708
709 pinfo.node_name = wwn_to_u64(vha->node_name);
710 pinfo.port_name = wwn_to_u64(vha->port_name);
711 pinfo.port_role = FC_PORT_ROLE_NVME_INITIATOR;
712 pinfo.port_id = vha->d_id.b24;
713
714 ql_log(ql_log_info, vha, 0xffff,
Darren Trapd7936a92017-08-23 15:04:59 -0700715 "register_localport: host-traddr=nn-0x%llx:pn-0x%llx on portID:%x\n",
716 pinfo.node_name, pinfo.port_name, pinfo.port_id);
Duane Grigsbye84067d2017-06-21 13:48:43 -0700717 qla_nvme_fc_transport.dma_boundary = vha->host->dma_boundary;
718
719 ret = nvme_fc_register_localport(&pinfo, tmpl,
720 get_device(&ha->pdev->dev), &vha->nvme_local_port);
721 if (ret) {
722 ql_log(ql_log_warn, vha, 0xffff,
723 "register_localport failed: ret=%x\n", ret);
Quinn Tran8777e432018-08-02 13:16:57 -0700724 } else {
725 vha->nvme_local_port->private = vha;
Duane Grigsbye84067d2017-06-21 13:48:43 -0700726 }
Quinn Tran8777e432018-08-02 13:16:57 -0700727
728 return ret;
Duane Grigsbye84067d2017-06-21 13:48:43 -0700729}