xref: /openbmc/linux/drivers/nvme/host/fc.c (revision 88e837ed)
18638b246SChristoph Hellwig // SPDX-License-Identifier: GPL-2.0
2e399441dSJames Smart /*
3e399441dSJames Smart  * Copyright (c) 2016 Avago Technologies.  All rights reserved.
4e399441dSJames Smart  */
5e399441dSJames Smart #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
6e399441dSJames Smart #include <linux/module.h>
7e399441dSJames Smart #include <linux/parser.h>
8e399441dSJames Smart #include <uapi/scsi/fc/fc_fs.h>
9e399441dSJames Smart #include <uapi/scsi/fc/fc_els.h>
1061bff8efSJames Smart #include <linux/delay.h>
11d3d0bc78SBart Van Assche #include <linux/overflow.h>
12e399441dSJames Smart 
13e399441dSJames Smart #include "nvme.h"
14e399441dSJames Smart #include "fabrics.h"
15e399441dSJames Smart #include <linux/nvme-fc-driver.h>
16e399441dSJames Smart #include <linux/nvme-fc.h>
17ca19bcd0SJames Smart #include "fc.h"
18a6a6d058SHannes Reinecke #include <scsi/scsi_transport_fc.h>
19e399441dSJames Smart 
20e399441dSJames Smart /* *************************** Data Structures/Defines ****************** */
21e399441dSJames Smart 
22e399441dSJames Smart 
23e399441dSJames Smart enum nvme_fc_queue_flags {
2426c0a26dSJens Axboe 	NVME_FC_Q_CONNECTED = 0,
2526c0a26dSJens Axboe 	NVME_FC_Q_LIVE,
26e399441dSJames Smart };
27e399441dSJames Smart 
28ac7fe82bSJames Smart #define NVME_FC_DEFAULT_DEV_LOSS_TMO	60	/* seconds */
29ac7fe82bSJames Smart 
30e399441dSJames Smart struct nvme_fc_queue {
31e399441dSJames Smart 	struct nvme_fc_ctrl	*ctrl;
32e399441dSJames Smart 	struct device		*dev;
33e399441dSJames Smart 	struct blk_mq_hw_ctx	*hctx;
34e399441dSJames Smart 	void			*lldd_handle;
35e399441dSJames Smart 	size_t			cmnd_capsule_len;
36e399441dSJames Smart 	u32			qnum;
37e399441dSJames Smart 	u32			rqcnt;
38e399441dSJames Smart 	u32			seqno;
39e399441dSJames Smart 
40e399441dSJames Smart 	u64			connection_id;
41e399441dSJames Smart 	atomic_t		csn;
42e399441dSJames Smart 
43e399441dSJames Smart 	unsigned long		flags;
44e399441dSJames Smart } __aligned(sizeof(u64));	/* alignment for other things alloc'd with */
45e399441dSJames Smart 
468d64daf7SJames Smart enum nvme_fcop_flags {
478d64daf7SJames Smart 	FCOP_FLAGS_TERMIO	= (1 << 0),
48c3aedd22SJames Smart 	FCOP_FLAGS_AEN		= (1 << 1),
498d64daf7SJames Smart };
508d64daf7SJames Smart 
51e399441dSJames Smart struct nvmefc_ls_req_op {
52e399441dSJames Smart 	struct nvmefc_ls_req	ls_req;
53e399441dSJames Smart 
54c913a8b0SJames Smart 	struct nvme_fc_rport	*rport;
55e399441dSJames Smart 	struct nvme_fc_queue	*queue;
56e399441dSJames Smart 	struct request		*rq;
578d64daf7SJames Smart 	u32			flags;
58e399441dSJames Smart 
59e399441dSJames Smart 	int			ls_error;
60e399441dSJames Smart 	struct completion	ls_done;
61c913a8b0SJames Smart 	struct list_head	lsreq_list;	/* rport->ls_req_list */
62e399441dSJames Smart 	bool			req_queued;
63e399441dSJames Smart };
64e399441dSJames Smart 
6514fd1e98SJames Smart struct nvmefc_ls_rcv_op {
6614fd1e98SJames Smart 	struct nvme_fc_rport		*rport;
6714fd1e98SJames Smart 	struct nvmefc_ls_rsp		*lsrsp;
6814fd1e98SJames Smart 	union nvmefc_ls_requests	*rqstbuf;
6914fd1e98SJames Smart 	union nvmefc_ls_responses	*rspbuf;
7014fd1e98SJames Smart 	u16				rqstdatalen;
7114fd1e98SJames Smart 	bool				handled;
7214fd1e98SJames Smart 	dma_addr_t			rspdma;
7314fd1e98SJames Smart 	struct list_head		lsrcv_list;	/* rport->ls_rcv_list */
7414fd1e98SJames Smart } __aligned(sizeof(u64));	/* alignment for other things alloc'd with */
7514fd1e98SJames Smart 
76e399441dSJames Smart enum nvme_fcpop_state {
77e399441dSJames Smart 	FCPOP_STATE_UNINIT	= 0,
78e399441dSJames Smart 	FCPOP_STATE_IDLE	= 1,
79e399441dSJames Smart 	FCPOP_STATE_ACTIVE	= 2,
80e399441dSJames Smart 	FCPOP_STATE_ABORTED	= 3,
8178a7ac26SJames Smart 	FCPOP_STATE_COMPLETE	= 4,
82e399441dSJames Smart };
83e399441dSJames Smart 
84e399441dSJames Smart struct nvme_fc_fcp_op {
85e399441dSJames Smart 	struct nvme_request	nreq;		/*
86e399441dSJames Smart 						 * nvme/host/core.c
87e399441dSJames Smart 						 * requires this to be
88e399441dSJames Smart 						 * the 1st element in the
89e399441dSJames Smart 						 * private structure
90e399441dSJames Smart 						 * associated with the
91e399441dSJames Smart 						 * request.
92e399441dSJames Smart 						 */
93e399441dSJames Smart 	struct nvmefc_fcp_req	fcp_req;
94e399441dSJames Smart 
95e399441dSJames Smart 	struct nvme_fc_ctrl	*ctrl;
96e399441dSJames Smart 	struct nvme_fc_queue	*queue;
97e399441dSJames Smart 	struct request		*rq;
98e399441dSJames Smart 
99e399441dSJames Smart 	atomic_t		state;
10078a7ac26SJames Smart 	u32			flags;
101e399441dSJames Smart 	u32			rqno;
102e399441dSJames Smart 	u32			nents;
103e399441dSJames Smart 
104e399441dSJames Smart 	struct nvme_fc_cmd_iu	cmd_iu;
105e399441dSJames Smart 	struct nvme_fc_ersp_iu	rsp_iu;
106e399441dSJames Smart };
107e399441dSJames Smart 
108d3d0bc78SBart Van Assche struct nvme_fcp_op_w_sgl {
109d3d0bc78SBart Van Assche 	struct nvme_fc_fcp_op	op;
110b1ae1a23SIsrael Rukshin 	struct scatterlist	sgl[NVME_INLINE_SG_CNT];
111f1e71d75SGustavo A. R. Silva 	uint8_t			priv[];
112d3d0bc78SBart Van Assche };
113d3d0bc78SBart Van Assche 
114e399441dSJames Smart struct nvme_fc_lport {
115e399441dSJames Smart 	struct nvme_fc_local_port	localport;
116e399441dSJames Smart 
117e399441dSJames Smart 	struct ida			endp_cnt;
118e399441dSJames Smart 	struct list_head		port_list;	/* nvme_fc_port_list */
119e399441dSJames Smart 	struct list_head		endp_list;
120e399441dSJames Smart 	struct device			*dev;	/* physical device for dma */
121e399441dSJames Smart 	struct nvme_fc_port_template	*ops;
122e399441dSJames Smart 	struct kref			ref;
123158bfb88SJames Smart 	atomic_t                        act_rport_cnt;
124e399441dSJames Smart } __aligned(sizeof(u64));	/* alignment for other things alloc'd with */
125e399441dSJames Smart 
126e399441dSJames Smart struct nvme_fc_rport {
127e399441dSJames Smart 	struct nvme_fc_remote_port	remoteport;
128e399441dSJames Smart 
129e399441dSJames Smart 	struct list_head		endp_list; /* for lport->endp_list */
130e399441dSJames Smart 	struct list_head		ctrl_list;
131c913a8b0SJames Smart 	struct list_head		ls_req_list;
13214fd1e98SJames Smart 	struct list_head		ls_rcv_list;
13397faec53SJames Smart 	struct list_head		disc_list;
134c913a8b0SJames Smart 	struct device			*dev;	/* physical device for dma */
135c913a8b0SJames Smart 	struct nvme_fc_lport		*lport;
136e399441dSJames Smart 	spinlock_t			lock;
137e399441dSJames Smart 	struct kref			ref;
138158bfb88SJames Smart 	atomic_t                        act_ctrl_cnt;
1392b632970SJames Smart 	unsigned long			dev_loss_end;
14014fd1e98SJames Smart 	struct work_struct		lsrcv_work;
141e399441dSJames Smart } __aligned(sizeof(u64));	/* alignment for other things alloc'd with */
142e399441dSJames Smart 
143eb4ee8f1SJames Smart /* fc_ctrl flags values - specified as bit positions */
144eb4ee8f1SJames Smart #define ASSOC_ACTIVE		0
145eb4ee8f1SJames Smart #define FCCTRL_TERMIO		1
146e399441dSJames Smart 
147e399441dSJames Smart struct nvme_fc_ctrl {
148e399441dSJames Smart 	spinlock_t		lock;
149e399441dSJames Smart 	struct nvme_fc_queue	*queues;
150e399441dSJames Smart 	struct device		*dev;
151e399441dSJames Smart 	struct nvme_fc_lport	*lport;
152e399441dSJames Smart 	struct nvme_fc_rport	*rport;
153e399441dSJames Smart 	u32			cnum;
154e399441dSJames Smart 
1554c984154SJames Smart 	bool			ioq_live;
1564cff280aSJames Smart 	atomic_t		err_work_active;
157e399441dSJames Smart 	u64			association_id;
15814fd1e98SJames Smart 	struct nvmefc_ls_rcv_op	*rcv_disconn;
159e399441dSJames Smart 
160e399441dSJames Smart 	struct list_head	ctrl_list;	/* rport->ctrl_list */
161e399441dSJames Smart 
162e399441dSJames Smart 	struct blk_mq_tag_set	admin_tag_set;
163e399441dSJames Smart 	struct blk_mq_tag_set	tag_set;
164e399441dSJames Smart 
16561bff8efSJames Smart 	struct delayed_work	connect_work;
1664cff280aSJames Smart 	struct work_struct	err_work;
16761bff8efSJames Smart 
168e399441dSJames Smart 	struct kref		ref;
169eb4ee8f1SJames Smart 	unsigned long		flags;
17061bff8efSJames Smart 	u32			iocnt;
17136715cf4SJames Smart 	wait_queue_head_t	ioabort_wait;
172e399441dSJames Smart 
17338dabe21SKeith Busch 	struct nvme_fc_fcp_op	aen_ops[NVME_NR_AEN_COMMANDS];
174e399441dSJames Smart 
175e399441dSJames Smart 	struct nvme_ctrl	ctrl;
176e399441dSJames Smart };
177e399441dSJames Smart 
178e399441dSJames Smart static inline struct nvme_fc_ctrl *
179e399441dSJames Smart to_fc_ctrl(struct nvme_ctrl *ctrl)
180e399441dSJames Smart {
181e399441dSJames Smart 	return container_of(ctrl, struct nvme_fc_ctrl, ctrl);
182e399441dSJames Smart }
183e399441dSJames Smart 
184e399441dSJames Smart static inline struct nvme_fc_lport *
185e399441dSJames Smart localport_to_lport(struct nvme_fc_local_port *portptr)
186e399441dSJames Smart {
187e399441dSJames Smart 	return container_of(portptr, struct nvme_fc_lport, localport);
188e399441dSJames Smart }
189e399441dSJames Smart 
190e399441dSJames Smart static inline struct nvme_fc_rport *
191e399441dSJames Smart remoteport_to_rport(struct nvme_fc_remote_port *portptr)
192e399441dSJames Smart {
193e399441dSJames Smart 	return container_of(portptr, struct nvme_fc_rport, remoteport);
194e399441dSJames Smart }
195e399441dSJames Smart 
196e399441dSJames Smart static inline struct nvmefc_ls_req_op *
197e399441dSJames Smart ls_req_to_lsop(struct nvmefc_ls_req *lsreq)
198e399441dSJames Smart {
199e399441dSJames Smart 	return container_of(lsreq, struct nvmefc_ls_req_op, ls_req);
200e399441dSJames Smart }
201e399441dSJames Smart 
202e399441dSJames Smart static inline struct nvme_fc_fcp_op *
203e399441dSJames Smart fcp_req_to_fcp_op(struct nvmefc_fcp_req *fcpreq)
204e399441dSJames Smart {
205e399441dSJames Smart 	return container_of(fcpreq, struct nvme_fc_fcp_op, fcp_req);
206e399441dSJames Smart }
207e399441dSJames Smart 
208e399441dSJames Smart 
209e399441dSJames Smart 
210e399441dSJames Smart /* *************************** Globals **************************** */
211e399441dSJames Smart 
212e399441dSJames Smart 
213e399441dSJames Smart static DEFINE_SPINLOCK(nvme_fc_lock);
214e399441dSJames Smart 
215e399441dSJames Smart static LIST_HEAD(nvme_fc_lport_list);
216e399441dSJames Smart static DEFINE_IDA(nvme_fc_local_port_cnt);
217e399441dSJames Smart static DEFINE_IDA(nvme_fc_ctrl_cnt);
218e399441dSJames Smart 
2198730c1ddSHannes Reinecke static struct workqueue_struct *nvme_fc_wq;
220e399441dSJames Smart 
2214c73cbdfSJames Smart static bool nvme_fc_waiting_to_unload;
2224c73cbdfSJames Smart static DECLARE_COMPLETION(nvme_fc_unload_proceed);
2234c73cbdfSJames Smart 
2245f568556SJames Smart /*
2255f568556SJames Smart  * These items are short-term. They will eventually be moved into
2265f568556SJames Smart  * a generic FC class. See comments in module init.
2275f568556SJames Smart  */
2285f568556SJames Smart static struct device *fc_udev_device;
2295f568556SJames Smart 
230ff029451SChristoph Hellwig static void nvme_fc_complete_rq(struct request *rq);
231e399441dSJames Smart 
232e399441dSJames Smart /* *********************** FC-NVME Port Management ************************ */
233e399441dSJames Smart 
234e399441dSJames Smart static void __nvme_fc_delete_hw_queue(struct nvme_fc_ctrl *,
235e399441dSJames Smart 			struct nvme_fc_queue *, unsigned int);
236e399441dSJames Smart 
23714fd1e98SJames Smart static void nvme_fc_handle_ls_rqst_work(struct work_struct *work);
23814fd1e98SJames Smart 
23914fd1e98SJames Smart 
2405533d424SJames Smart static void
2415533d424SJames Smart nvme_fc_free_lport(struct kref *ref)
2425533d424SJames Smart {
2435533d424SJames Smart 	struct nvme_fc_lport *lport =
2445533d424SJames Smart 		container_of(ref, struct nvme_fc_lport, ref);
2455533d424SJames Smart 	unsigned long flags;
2465533d424SJames Smart 
2475533d424SJames Smart 	WARN_ON(lport->localport.port_state != FC_OBJSTATE_DELETED);
2485533d424SJames Smart 	WARN_ON(!list_empty(&lport->endp_list));
2495533d424SJames Smart 
2505533d424SJames Smart 	/* remove from transport list */
2515533d424SJames Smart 	spin_lock_irqsave(&nvme_fc_lock, flags);
2525533d424SJames Smart 	list_del(&lport->port_list);
2534c73cbdfSJames Smart 	if (nvme_fc_waiting_to_unload && list_empty(&nvme_fc_lport_list))
2544c73cbdfSJames Smart 		complete(&nvme_fc_unload_proceed);
2555533d424SJames Smart 	spin_unlock_irqrestore(&nvme_fc_lock, flags);
2565533d424SJames Smart 
2575533d424SJames Smart 	ida_simple_remove(&nvme_fc_local_port_cnt, lport->localport.port_num);
2585533d424SJames Smart 	ida_destroy(&lport->endp_cnt);
2595533d424SJames Smart 
2605533d424SJames Smart 	put_device(lport->dev);
2615533d424SJames Smart 
2625533d424SJames Smart 	kfree(lport);
2635533d424SJames Smart }
2645533d424SJames Smart 
2655533d424SJames Smart static void
2665533d424SJames Smart nvme_fc_lport_put(struct nvme_fc_lport *lport)
2675533d424SJames Smart {
2685533d424SJames Smart 	kref_put(&lport->ref, nvme_fc_free_lport);
2695533d424SJames Smart }
2705533d424SJames Smart 
2715533d424SJames Smart static int
2725533d424SJames Smart nvme_fc_lport_get(struct nvme_fc_lport *lport)
2735533d424SJames Smart {
2745533d424SJames Smart 	return kref_get_unless_zero(&lport->ref);
2755533d424SJames Smart }
2765533d424SJames Smart 
2775533d424SJames Smart 
2785533d424SJames Smart static struct nvme_fc_lport *
279c5760f30SJames Smart nvme_fc_attach_to_unreg_lport(struct nvme_fc_port_info *pinfo,
280c5760f30SJames Smart 			struct nvme_fc_port_template *ops,
281c5760f30SJames Smart 			struct device *dev)
2825533d424SJames Smart {
2835533d424SJames Smart 	struct nvme_fc_lport *lport;
2845533d424SJames Smart 	unsigned long flags;
2855533d424SJames Smart 
2865533d424SJames Smart 	spin_lock_irqsave(&nvme_fc_lock, flags);
2875533d424SJames Smart 
2885533d424SJames Smart 	list_for_each_entry(lport, &nvme_fc_lport_list, port_list) {
2895533d424SJames Smart 		if (lport->localport.node_name != pinfo->node_name ||
2905533d424SJames Smart 		    lport->localport.port_name != pinfo->port_name)
2915533d424SJames Smart 			continue;
2925533d424SJames Smart 
293c5760f30SJames Smart 		if (lport->dev != dev) {
294c5760f30SJames Smart 			lport = ERR_PTR(-EXDEV);
295c5760f30SJames Smart 			goto out_done;
296c5760f30SJames Smart 		}
297c5760f30SJames Smart 
2985533d424SJames Smart 		if (lport->localport.port_state != FC_OBJSTATE_DELETED) {
2995533d424SJames Smart 			lport = ERR_PTR(-EEXIST);
3005533d424SJames Smart 			goto out_done;
3015533d424SJames Smart 		}
3025533d424SJames Smart 
3035533d424SJames Smart 		if (!nvme_fc_lport_get(lport)) {
3045533d424SJames Smart 			/*
3055533d424SJames Smart 			 * fails if ref cnt already 0. If so,
3065533d424SJames Smart 			 * act as if lport already deleted
3075533d424SJames Smart 			 */
3085533d424SJames Smart 			lport = NULL;
3095533d424SJames Smart 			goto out_done;
3105533d424SJames Smart 		}
3115533d424SJames Smart 
3125533d424SJames Smart 		/* resume the lport */
3135533d424SJames Smart 
314c5760f30SJames Smart 		lport->ops = ops;
3155533d424SJames Smart 		lport->localport.port_role = pinfo->port_role;
3165533d424SJames Smart 		lport->localport.port_id = pinfo->port_id;
3175533d424SJames Smart 		lport->localport.port_state = FC_OBJSTATE_ONLINE;
3185533d424SJames Smart 
3195533d424SJames Smart 		spin_unlock_irqrestore(&nvme_fc_lock, flags);
3205533d424SJames Smart 
3215533d424SJames Smart 		return lport;
3225533d424SJames Smart 	}
3235533d424SJames Smart 
3245533d424SJames Smart 	lport = NULL;
3255533d424SJames Smart 
3265533d424SJames Smart out_done:
3275533d424SJames Smart 	spin_unlock_irqrestore(&nvme_fc_lock, flags);
3285533d424SJames Smart 
3295533d424SJames Smart 	return lport;
3305533d424SJames Smart }
331e399441dSJames Smart 
332e399441dSJames Smart /**
333e399441dSJames Smart  * nvme_fc_register_localport - transport entry point called by an
334e399441dSJames Smart  *                              LLDD to register the existence of a NVME
335e399441dSJames Smart  *                              host FC port.
336e399441dSJames Smart  * @pinfo:     pointer to information about the port to be registered
337e399441dSJames Smart  * @template:  LLDD entrypoints and operational parameters for the port
338e399441dSJames Smart  * @dev:       physical hardware device node port corresponds to. Will be
339e399441dSJames Smart  *             used for DMA mappings
34076c910c7SBart Van Assche  * @portptr:   pointer to a local port pointer. Upon success, the routine
341e399441dSJames Smart  *             will allocate a nvme_fc_local_port structure and place its
342e399441dSJames Smart  *             address in the local port pointer. Upon failure, local port
343e399441dSJames Smart  *             pointer will be set to 0.
344e399441dSJames Smart  *
345e399441dSJames Smart  * Returns:
346e399441dSJames Smart  * a completion status. Must be 0 upon success; a negative errno
347e399441dSJames Smart  * (ex: -ENXIO) upon failure.
348e399441dSJames Smart  */
349e399441dSJames Smart int
350e399441dSJames Smart nvme_fc_register_localport(struct nvme_fc_port_info *pinfo,
351e399441dSJames Smart 			struct nvme_fc_port_template *template,
352e399441dSJames Smart 			struct device *dev,
353e399441dSJames Smart 			struct nvme_fc_local_port **portptr)
354e399441dSJames Smart {
355e399441dSJames Smart 	struct nvme_fc_lport *newrec;
356e399441dSJames Smart 	unsigned long flags;
357e399441dSJames Smart 	int ret, idx;
358e399441dSJames Smart 
359e399441dSJames Smart 	if (!template->localport_delete || !template->remoteport_delete ||
360e399441dSJames Smart 	    !template->ls_req || !template->fcp_io ||
361e399441dSJames Smart 	    !template->ls_abort || !template->fcp_abort ||
362e399441dSJames Smart 	    !template->max_hw_queues || !template->max_sgl_segments ||
3638c5c6605SJames Smart 	    !template->max_dif_sgl_segments || !template->dma_boundary) {
364e399441dSJames Smart 		ret = -EINVAL;
365e399441dSJames Smart 		goto out_reghost_failed;
366e399441dSJames Smart 	}
367e399441dSJames Smart 
3685533d424SJames Smart 	/*
3695533d424SJames Smart 	 * look to see if there is already a localport that had been
3705533d424SJames Smart 	 * deregistered and in the process of waiting for all the
3715533d424SJames Smart 	 * references to fully be removed.  If the references haven't
3725533d424SJames Smart 	 * expired, we can simply re-enable the localport. Remoteports
3735533d424SJames Smart 	 * and controller reconnections should resume naturally.
3745533d424SJames Smart 	 */
375c5760f30SJames Smart 	newrec = nvme_fc_attach_to_unreg_lport(pinfo, template, dev);
3765533d424SJames Smart 
3775533d424SJames Smart 	/* found an lport, but something about its state is bad */
3785533d424SJames Smart 	if (IS_ERR(newrec)) {
3795533d424SJames Smart 		ret = PTR_ERR(newrec);
3805533d424SJames Smart 		goto out_reghost_failed;
3815533d424SJames Smart 
3825533d424SJames Smart 	/* found existing lport, which was resumed */
3835533d424SJames Smart 	} else if (newrec) {
3845533d424SJames Smart 		*portptr = &newrec->localport;
3855533d424SJames Smart 		return 0;
3865533d424SJames Smart 	}
3875533d424SJames Smart 
3885533d424SJames Smart 	/* nothing found - allocate a new localport struct */
3895533d424SJames Smart 
390e399441dSJames Smart 	newrec = kmalloc((sizeof(*newrec) + template->local_priv_sz),
391e399441dSJames Smart 			 GFP_KERNEL);
392e399441dSJames Smart 	if (!newrec) {
393e399441dSJames Smart 		ret = -ENOMEM;
394e399441dSJames Smart 		goto out_reghost_failed;
395e399441dSJames Smart 	}
396e399441dSJames Smart 
397e399441dSJames Smart 	idx = ida_simple_get(&nvme_fc_local_port_cnt, 0, 0, GFP_KERNEL);
398e399441dSJames Smart 	if (idx < 0) {
399e399441dSJames Smart 		ret = -ENOSPC;
400e399441dSJames Smart 		goto out_fail_kfree;
401e399441dSJames Smart 	}
402e399441dSJames Smart 
403e399441dSJames Smart 	if (!get_device(dev) && dev) {
404e399441dSJames Smart 		ret = -ENODEV;
405e399441dSJames Smart 		goto out_ida_put;
406e399441dSJames Smart 	}
407e399441dSJames Smart 
408e399441dSJames Smart 	INIT_LIST_HEAD(&newrec->port_list);
409e399441dSJames Smart 	INIT_LIST_HEAD(&newrec->endp_list);
410e399441dSJames Smart 	kref_init(&newrec->ref);
411158bfb88SJames Smart 	atomic_set(&newrec->act_rport_cnt, 0);
412e399441dSJames Smart 	newrec->ops = template;
413e399441dSJames Smart 	newrec->dev = dev;
414e399441dSJames Smart 	ida_init(&newrec->endp_cnt);
415f56bf76fSJames Smart 	if (template->local_priv_sz)
416e399441dSJames Smart 		newrec->localport.private = &newrec[1];
417f56bf76fSJames Smart 	else
418f56bf76fSJames Smart 		newrec->localport.private = NULL;
419e399441dSJames Smart 	newrec->localport.node_name = pinfo->node_name;
420e399441dSJames Smart 	newrec->localport.port_name = pinfo->port_name;
421e399441dSJames Smart 	newrec->localport.port_role = pinfo->port_role;
422e399441dSJames Smart 	newrec->localport.port_id = pinfo->port_id;
423e399441dSJames Smart 	newrec->localport.port_state = FC_OBJSTATE_ONLINE;
424e399441dSJames Smart 	newrec->localport.port_num = idx;
425e399441dSJames Smart 
426e399441dSJames Smart 	spin_lock_irqsave(&nvme_fc_lock, flags);
427e399441dSJames Smart 	list_add_tail(&newrec->port_list, &nvme_fc_lport_list);
428e399441dSJames Smart 	spin_unlock_irqrestore(&nvme_fc_lock, flags);
429e399441dSJames Smart 
430e399441dSJames Smart 	if (dev)
431e399441dSJames Smart 		dma_set_seg_boundary(dev, template->dma_boundary);
432e399441dSJames Smart 
433e399441dSJames Smart 	*portptr = &newrec->localport;
434e399441dSJames Smart 	return 0;
435e399441dSJames Smart 
436e399441dSJames Smart out_ida_put:
437e399441dSJames Smart 	ida_simple_remove(&nvme_fc_local_port_cnt, idx);
438e399441dSJames Smart out_fail_kfree:
439e399441dSJames Smart 	kfree(newrec);
440e399441dSJames Smart out_reghost_failed:
441e399441dSJames Smart 	*portptr = NULL;
442e399441dSJames Smart 
443e399441dSJames Smart 	return ret;
444e399441dSJames Smart }
445e399441dSJames Smart EXPORT_SYMBOL_GPL(nvme_fc_register_localport);
446e399441dSJames Smart 
447e399441dSJames Smart /**
448e399441dSJames Smart  * nvme_fc_unregister_localport - transport entry point called by an
449e399441dSJames Smart  *                              LLDD to deregister/remove a previously
450e399441dSJames Smart  *                              registered a NVME host FC port.
45176c910c7SBart Van Assche  * @portptr: pointer to the (registered) local port that is to be deregistered.
452e399441dSJames Smart  *
453e399441dSJames Smart  * Returns:
454e399441dSJames Smart  * a completion status. Must be 0 upon success; a negative errno
455e399441dSJames Smart  * (ex: -ENXIO) upon failure.
456e399441dSJames Smart  */
457e399441dSJames Smart int
458e399441dSJames Smart nvme_fc_unregister_localport(struct nvme_fc_local_port *portptr)
459e399441dSJames Smart {
460e399441dSJames Smart 	struct nvme_fc_lport *lport = localport_to_lport(portptr);
461e399441dSJames Smart 	unsigned long flags;
462e399441dSJames Smart 
463e399441dSJames Smart 	if (!portptr)
464e399441dSJames Smart 		return -EINVAL;
465e399441dSJames Smart 
466e399441dSJames Smart 	spin_lock_irqsave(&nvme_fc_lock, flags);
467e399441dSJames Smart 
468e399441dSJames Smart 	if (portptr->port_state != FC_OBJSTATE_ONLINE) {
469e399441dSJames Smart 		spin_unlock_irqrestore(&nvme_fc_lock, flags);
470e399441dSJames Smart 		return -EINVAL;
471e399441dSJames Smart 	}
472e399441dSJames Smart 	portptr->port_state = FC_OBJSTATE_DELETED;
473e399441dSJames Smart 
474e399441dSJames Smart 	spin_unlock_irqrestore(&nvme_fc_lock, flags);
475e399441dSJames Smart 
476158bfb88SJames Smart 	if (atomic_read(&lport->act_rport_cnt) == 0)
477158bfb88SJames Smart 		lport->ops->localport_delete(&lport->localport);
478158bfb88SJames Smart 
479e399441dSJames Smart 	nvme_fc_lport_put(lport);
480e399441dSJames Smart 
481e399441dSJames Smart 	return 0;
482e399441dSJames Smart }
483e399441dSJames Smart EXPORT_SYMBOL_GPL(nvme_fc_unregister_localport);
484e399441dSJames Smart 
485eaefd5abSJames Smart /*
486eaefd5abSJames Smart  * TRADDR strings, per FC-NVME are fixed format:
487eaefd5abSJames Smart  *   "nn-0x<16hexdigits>:pn-0x<16hexdigits>" - 43 characters
488eaefd5abSJames Smart  * udev event will only differ by prefix of what field is
489eaefd5abSJames Smart  * being specified:
490eaefd5abSJames Smart  *    "NVMEFC_HOST_TRADDR=" or "NVMEFC_TRADDR=" - 19 max characters
491eaefd5abSJames Smart  *  19 + 43 + null_fudge = 64 characters
492eaefd5abSJames Smart  */
493eaefd5abSJames Smart #define FCNVME_TRADDR_LENGTH		64
494eaefd5abSJames Smart 
495eaefd5abSJames Smart static void
496eaefd5abSJames Smart nvme_fc_signal_discovery_scan(struct nvme_fc_lport *lport,
497eaefd5abSJames Smart 		struct nvme_fc_rport *rport)
498eaefd5abSJames Smart {
499eaefd5abSJames Smart 	char hostaddr[FCNVME_TRADDR_LENGTH];	/* NVMEFC_HOST_TRADDR=...*/
500eaefd5abSJames Smart 	char tgtaddr[FCNVME_TRADDR_LENGTH];	/* NVMEFC_TRADDR=...*/
501eaefd5abSJames Smart 	char *envp[4] = { "FC_EVENT=nvmediscovery", hostaddr, tgtaddr, NULL };
502eaefd5abSJames Smart 
503eaefd5abSJames Smart 	if (!(rport->remoteport.port_role & FC_PORT_ROLE_NVME_DISCOVERY))
504eaefd5abSJames Smart 		return;
505eaefd5abSJames Smart 
506eaefd5abSJames Smart 	snprintf(hostaddr, sizeof(hostaddr),
507eaefd5abSJames Smart 		"NVMEFC_HOST_TRADDR=nn-0x%016llx:pn-0x%016llx",
508eaefd5abSJames Smart 		lport->localport.node_name, lport->localport.port_name);
509eaefd5abSJames Smart 	snprintf(tgtaddr, sizeof(tgtaddr),
510eaefd5abSJames Smart 		"NVMEFC_TRADDR=nn-0x%016llx:pn-0x%016llx",
511eaefd5abSJames Smart 		rport->remoteport.node_name, rport->remoteport.port_name);
512eaefd5abSJames Smart 	kobject_uevent_env(&fc_udev_device->kobj, KOBJ_CHANGE, envp);
513eaefd5abSJames Smart }
514eaefd5abSJames Smart 
515469d0ef0SJames Smart static void
516469d0ef0SJames Smart nvme_fc_free_rport(struct kref *ref)
517469d0ef0SJames Smart {
518469d0ef0SJames Smart 	struct nvme_fc_rport *rport =
519469d0ef0SJames Smart 		container_of(ref, struct nvme_fc_rport, ref);
520469d0ef0SJames Smart 	struct nvme_fc_lport *lport =
521469d0ef0SJames Smart 			localport_to_lport(rport->remoteport.localport);
522469d0ef0SJames Smart 	unsigned long flags;
523469d0ef0SJames Smart 
524469d0ef0SJames Smart 	WARN_ON(rport->remoteport.port_state != FC_OBJSTATE_DELETED);
525469d0ef0SJames Smart 	WARN_ON(!list_empty(&rport->ctrl_list));
526469d0ef0SJames Smart 
527469d0ef0SJames Smart 	/* remove from lport list */
528469d0ef0SJames Smart 	spin_lock_irqsave(&nvme_fc_lock, flags);
529469d0ef0SJames Smart 	list_del(&rport->endp_list);
530469d0ef0SJames Smart 	spin_unlock_irqrestore(&nvme_fc_lock, flags);
531469d0ef0SJames Smart 
53297faec53SJames Smart 	WARN_ON(!list_empty(&rport->disc_list));
533469d0ef0SJames Smart 	ida_simple_remove(&lport->endp_cnt, rport->remoteport.port_num);
534469d0ef0SJames Smart 
535469d0ef0SJames Smart 	kfree(rport);
536469d0ef0SJames Smart 
537469d0ef0SJames Smart 	nvme_fc_lport_put(lport);
538469d0ef0SJames Smart }
539469d0ef0SJames Smart 
540469d0ef0SJames Smart static void
541469d0ef0SJames Smart nvme_fc_rport_put(struct nvme_fc_rport *rport)
542469d0ef0SJames Smart {
543469d0ef0SJames Smart 	kref_put(&rport->ref, nvme_fc_free_rport);
544469d0ef0SJames Smart }
545469d0ef0SJames Smart 
546469d0ef0SJames Smart static int
547469d0ef0SJames Smart nvme_fc_rport_get(struct nvme_fc_rport *rport)
548469d0ef0SJames Smart {
549469d0ef0SJames Smart 	return kref_get_unless_zero(&rport->ref);
550469d0ef0SJames Smart }
551469d0ef0SJames Smart 
5522b632970SJames Smart static void
5532b632970SJames Smart nvme_fc_resume_controller(struct nvme_fc_ctrl *ctrl)
5542b632970SJames Smart {
5552b632970SJames Smart 	switch (ctrl->ctrl.state) {
5562b632970SJames Smart 	case NVME_CTRL_NEW:
557ad6a0a52SMax Gurtovoy 	case NVME_CTRL_CONNECTING:
5582b632970SJames Smart 		/*
5592b632970SJames Smart 		 * As all reconnects were suppressed, schedule a
5602b632970SJames Smart 		 * connect.
5612b632970SJames Smart 		 */
5622b632970SJames Smart 		dev_info(ctrl->ctrl.device,
5632b632970SJames Smart 			"NVME-FC{%d}: connectivity re-established. "
5642b632970SJames Smart 			"Attempting reconnect\n", ctrl->cnum);
5652b632970SJames Smart 
5662b632970SJames Smart 		queue_delayed_work(nvme_wq, &ctrl->connect_work, 0);
5672b632970SJames Smart 		break;
5682b632970SJames Smart 
5692b632970SJames Smart 	case NVME_CTRL_RESETTING:
5702b632970SJames Smart 		/*
5712b632970SJames Smart 		 * Controller is already in the process of terminating the
5722b632970SJames Smart 		 * association. No need to do anything further. The reconnect
5732b632970SJames Smart 		 * step will naturally occur after the reset completes.
5742b632970SJames Smart 		 */
5752b632970SJames Smart 		break;
5762b632970SJames Smart 
5772b632970SJames Smart 	default:
5782b632970SJames Smart 		/* no action to take - let it delete */
5792b632970SJames Smart 		break;
5802b632970SJames Smart 	}
5812b632970SJames Smart }
5822b632970SJames Smart 
5832b632970SJames Smart static struct nvme_fc_rport *
5842b632970SJames Smart nvme_fc_attach_to_suspended_rport(struct nvme_fc_lport *lport,
5852b632970SJames Smart 				struct nvme_fc_port_info *pinfo)
5862b632970SJames Smart {
5872b632970SJames Smart 	struct nvme_fc_rport *rport;
5882b632970SJames Smart 	struct nvme_fc_ctrl *ctrl;
5892b632970SJames Smart 	unsigned long flags;
5902b632970SJames Smart 
5912b632970SJames Smart 	spin_lock_irqsave(&nvme_fc_lock, flags);
5922b632970SJames Smart 
5932b632970SJames Smart 	list_for_each_entry(rport, &lport->endp_list, endp_list) {
5942b632970SJames Smart 		if (rport->remoteport.node_name != pinfo->node_name ||
5952b632970SJames Smart 		    rport->remoteport.port_name != pinfo->port_name)
5962b632970SJames Smart 			continue;
5972b632970SJames Smart 
5982b632970SJames Smart 		if (!nvme_fc_rport_get(rport)) {
5992b632970SJames Smart 			rport = ERR_PTR(-ENOLCK);
6002b632970SJames Smart 			goto out_done;
6012b632970SJames Smart 		}
6022b632970SJames Smart 
6032b632970SJames Smart 		spin_unlock_irqrestore(&nvme_fc_lock, flags);
6042b632970SJames Smart 
6052b632970SJames Smart 		spin_lock_irqsave(&rport->lock, flags);
6062b632970SJames Smart 
6072b632970SJames Smart 		/* has it been unregistered */
6082b632970SJames Smart 		if (rport->remoteport.port_state != FC_OBJSTATE_DELETED) {
6092b632970SJames Smart 			/* means lldd called us twice */
6102b632970SJames Smart 			spin_unlock_irqrestore(&rport->lock, flags);
6112b632970SJames Smart 			nvme_fc_rport_put(rport);
6122b632970SJames Smart 			return ERR_PTR(-ESTALE);
6132b632970SJames Smart 		}
6142b632970SJames Smart 
6150cdd5fcaSJames Smart 		rport->remoteport.port_role = pinfo->port_role;
6160cdd5fcaSJames Smart 		rport->remoteport.port_id = pinfo->port_id;
6172b632970SJames Smart 		rport->remoteport.port_state = FC_OBJSTATE_ONLINE;
6182b632970SJames Smart 		rport->dev_loss_end = 0;
6192b632970SJames Smart 
6202b632970SJames Smart 		/*
6212b632970SJames Smart 		 * kick off a reconnect attempt on all associations to the
6222b632970SJames Smart 		 * remote port. A successful reconnects will resume i/o.
6232b632970SJames Smart 		 */
6242b632970SJames Smart 		list_for_each_entry(ctrl, &rport->ctrl_list, ctrl_list)
6252b632970SJames Smart 			nvme_fc_resume_controller(ctrl);
6262b632970SJames Smart 
6272b632970SJames Smart 		spin_unlock_irqrestore(&rport->lock, flags);
6282b632970SJames Smart 
6292b632970SJames Smart 		return rport;
6302b632970SJames Smart 	}
6312b632970SJames Smart 
6322b632970SJames Smart 	rport = NULL;
6332b632970SJames Smart 
6342b632970SJames Smart out_done:
6352b632970SJames Smart 	spin_unlock_irqrestore(&nvme_fc_lock, flags);
6362b632970SJames Smart 
6372b632970SJames Smart 	return rport;
6382b632970SJames Smart }
6392b632970SJames Smart 
6402b632970SJames Smart static inline void
6412b632970SJames Smart __nvme_fc_set_dev_loss_tmo(struct nvme_fc_rport *rport,
6422b632970SJames Smart 			struct nvme_fc_port_info *pinfo)
6432b632970SJames Smart {
6442b632970SJames Smart 	if (pinfo->dev_loss_tmo)
6452b632970SJames Smart 		rport->remoteport.dev_loss_tmo = pinfo->dev_loss_tmo;
6462b632970SJames Smart 	else
6472b632970SJames Smart 		rport->remoteport.dev_loss_tmo = NVME_FC_DEFAULT_DEV_LOSS_TMO;
6482b632970SJames Smart }
6492b632970SJames Smart 
650e399441dSJames Smart /**
651e399441dSJames Smart  * nvme_fc_register_remoteport - transport entry point called by an
652e399441dSJames Smart  *                              LLDD to register the existence of a NVME
653e399441dSJames Smart  *                              subsystem FC port on its fabric.
654e399441dSJames Smart  * @localport: pointer to the (registered) local port that the remote
655e399441dSJames Smart  *             subsystem port is connected to.
656e399441dSJames Smart  * @pinfo:     pointer to information about the port to be registered
65776c910c7SBart Van Assche  * @portptr:   pointer to a remote port pointer. Upon success, the routine
658e399441dSJames Smart  *             will allocate a nvme_fc_remote_port structure and place its
659e399441dSJames Smart  *             address in the remote port pointer. Upon failure, remote port
660e399441dSJames Smart  *             pointer will be set to 0.
661e399441dSJames Smart  *
662e399441dSJames Smart  * Returns:
663e399441dSJames Smart  * a completion status. Must be 0 upon success; a negative errno
664e399441dSJames Smart  * (ex: -ENXIO) upon failure.
665e399441dSJames Smart  */
666e399441dSJames Smart int
667e399441dSJames Smart nvme_fc_register_remoteport(struct nvme_fc_local_port *localport,
668e399441dSJames Smart 				struct nvme_fc_port_info *pinfo,
669e399441dSJames Smart 				struct nvme_fc_remote_port **portptr)
670e399441dSJames Smart {
671e399441dSJames Smart 	struct nvme_fc_lport *lport = localport_to_lport(localport);
672e399441dSJames Smart 	struct nvme_fc_rport *newrec;
673e399441dSJames Smart 	unsigned long flags;
674e399441dSJames Smart 	int ret, idx;
675e399441dSJames Smart 
6762b632970SJames Smart 	if (!nvme_fc_lport_get(lport)) {
6772b632970SJames Smart 		ret = -ESHUTDOWN;
6782b632970SJames Smart 		goto out_reghost_failed;
6792b632970SJames Smart 	}
6802b632970SJames Smart 
6812b632970SJames Smart 	/*
6822b632970SJames Smart 	 * look to see if there is already a remoteport that is waiting
6832b632970SJames Smart 	 * for a reconnect (within dev_loss_tmo) with the same WWN's.
6842b632970SJames Smart 	 * If so, transition to it and reconnect.
6852b632970SJames Smart 	 */
6862b632970SJames Smart 	newrec = nvme_fc_attach_to_suspended_rport(lport, pinfo);
6872b632970SJames Smart 
6882b632970SJames Smart 	/* found an rport, but something about its state is bad */
6892b632970SJames Smart 	if (IS_ERR(newrec)) {
6902b632970SJames Smart 		ret = PTR_ERR(newrec);
6912b632970SJames Smart 		goto out_lport_put;
6922b632970SJames Smart 
6932b632970SJames Smart 	/* found existing rport, which was resumed */
6942b632970SJames Smart 	} else if (newrec) {
6952b632970SJames Smart 		nvme_fc_lport_put(lport);
6962b632970SJames Smart 		__nvme_fc_set_dev_loss_tmo(newrec, pinfo);
6972b632970SJames Smart 		nvme_fc_signal_discovery_scan(lport, newrec);
6982b632970SJames Smart 		*portptr = &newrec->remoteport;
6992b632970SJames Smart 		return 0;
7002b632970SJames Smart 	}
7012b632970SJames Smart 
7022b632970SJames Smart 	/* nothing found - allocate a new remoteport struct */
7032b632970SJames Smart 
704e399441dSJames Smart 	newrec = kmalloc((sizeof(*newrec) + lport->ops->remote_priv_sz),
705e399441dSJames Smart 			 GFP_KERNEL);
706e399441dSJames Smart 	if (!newrec) {
707e399441dSJames Smart 		ret = -ENOMEM;
7082b632970SJames Smart 		goto out_lport_put;
709e399441dSJames Smart 	}
710e399441dSJames Smart 
711e399441dSJames Smart 	idx = ida_simple_get(&lport->endp_cnt, 0, 0, GFP_KERNEL);
712e399441dSJames Smart 	if (idx < 0) {
713e399441dSJames Smart 		ret = -ENOSPC;
7142b632970SJames Smart 		goto out_kfree_rport;
715e399441dSJames Smart 	}
716e399441dSJames Smart 
717e399441dSJames Smart 	INIT_LIST_HEAD(&newrec->endp_list);
718e399441dSJames Smart 	INIT_LIST_HEAD(&newrec->ctrl_list);
719c913a8b0SJames Smart 	INIT_LIST_HEAD(&newrec->ls_req_list);
72097faec53SJames Smart 	INIT_LIST_HEAD(&newrec->disc_list);
721e399441dSJames Smart 	kref_init(&newrec->ref);
722158bfb88SJames Smart 	atomic_set(&newrec->act_ctrl_cnt, 0);
723e399441dSJames Smart 	spin_lock_init(&newrec->lock);
724e399441dSJames Smart 	newrec->remoteport.localport = &lport->localport;
72514fd1e98SJames Smart 	INIT_LIST_HEAD(&newrec->ls_rcv_list);
726c913a8b0SJames Smart 	newrec->dev = lport->dev;
727c913a8b0SJames Smart 	newrec->lport = lport;
728f56bf76fSJames Smart 	if (lport->ops->remote_priv_sz)
729e399441dSJames Smart 		newrec->remoteport.private = &newrec[1];
730f56bf76fSJames Smart 	else
731f56bf76fSJames Smart 		newrec->remoteport.private = NULL;
732e399441dSJames Smart 	newrec->remoteport.port_role = pinfo->port_role;
733e399441dSJames Smart 	newrec->remoteport.node_name = pinfo->node_name;
734e399441dSJames Smart 	newrec->remoteport.port_name = pinfo->port_name;
735e399441dSJames Smart 	newrec->remoteport.port_id = pinfo->port_id;
736e399441dSJames Smart 	newrec->remoteport.port_state = FC_OBJSTATE_ONLINE;
737e399441dSJames Smart 	newrec->remoteport.port_num = idx;
7382b632970SJames Smart 	__nvme_fc_set_dev_loss_tmo(newrec, pinfo);
73914fd1e98SJames Smart 	INIT_WORK(&newrec->lsrcv_work, nvme_fc_handle_ls_rqst_work);
740e399441dSJames Smart 
741e399441dSJames Smart 	spin_lock_irqsave(&nvme_fc_lock, flags);
742e399441dSJames Smart 	list_add_tail(&newrec->endp_list, &lport->endp_list);
743e399441dSJames Smart 	spin_unlock_irqrestore(&nvme_fc_lock, flags);
744e399441dSJames Smart 
745eaefd5abSJames Smart 	nvme_fc_signal_discovery_scan(lport, newrec);
746eaefd5abSJames Smart 
747e399441dSJames Smart 	*portptr = &newrec->remoteport;
748e399441dSJames Smart 	return 0;
749e399441dSJames Smart 
750e399441dSJames Smart out_kfree_rport:
751e399441dSJames Smart 	kfree(newrec);
7522b632970SJames Smart out_lport_put:
7532b632970SJames Smart 	nvme_fc_lport_put(lport);
754e399441dSJames Smart out_reghost_failed:
755e399441dSJames Smart 	*portptr = NULL;
756e399441dSJames Smart 	return ret;
757e399441dSJames Smart }
758e399441dSJames Smart EXPORT_SYMBOL_GPL(nvme_fc_register_remoteport);
759e399441dSJames Smart 
7608d64daf7SJames Smart static int
7618d64daf7SJames Smart nvme_fc_abort_lsops(struct nvme_fc_rport *rport)
7628d64daf7SJames Smart {
7638d64daf7SJames Smart 	struct nvmefc_ls_req_op *lsop;
7648d64daf7SJames Smart 	unsigned long flags;
7658d64daf7SJames Smart 
7668d64daf7SJames Smart restart:
7678d64daf7SJames Smart 	spin_lock_irqsave(&rport->lock, flags);
7688d64daf7SJames Smart 
7698d64daf7SJames Smart 	list_for_each_entry(lsop, &rport->ls_req_list, lsreq_list) {
7708d64daf7SJames Smart 		if (!(lsop->flags & FCOP_FLAGS_TERMIO)) {
7718d64daf7SJames Smart 			lsop->flags |= FCOP_FLAGS_TERMIO;
7728d64daf7SJames Smart 			spin_unlock_irqrestore(&rport->lock, flags);
7738d64daf7SJames Smart 			rport->lport->ops->ls_abort(&rport->lport->localport,
7748d64daf7SJames Smart 						&rport->remoteport,
7758d64daf7SJames Smart 						&lsop->ls_req);
7768d64daf7SJames Smart 			goto restart;
7778d64daf7SJames Smart 		}
7788d64daf7SJames Smart 	}
7798d64daf7SJames Smart 	spin_unlock_irqrestore(&rport->lock, flags);
7808d64daf7SJames Smart 
7818d64daf7SJames Smart 	return 0;
7828d64daf7SJames Smart }
7838d64daf7SJames Smart 
7842b632970SJames Smart static void
7852b632970SJames Smart nvme_fc_ctrl_connectivity_loss(struct nvme_fc_ctrl *ctrl)
7862b632970SJames Smart {
7872b632970SJames Smart 	dev_info(ctrl->ctrl.device,
7882b632970SJames Smart 		"NVME-FC{%d}: controller connectivity lost. Awaiting "
7892b632970SJames Smart 		"Reconnect", ctrl->cnum);
7902b632970SJames Smart 
7912b632970SJames Smart 	switch (ctrl->ctrl.state) {
7922b632970SJames Smart 	case NVME_CTRL_NEW:
7932b632970SJames Smart 	case NVME_CTRL_LIVE:
7942b632970SJames Smart 		/*
7952b632970SJames Smart 		 * Schedule a controller reset. The reset will terminate the
7962b632970SJames Smart 		 * association and schedule the reconnect timer.  Reconnects
7972b632970SJames Smart 		 * will be attempted until either the ctlr_loss_tmo
7982b632970SJames Smart 		 * (max_retries * connect_delay) expires or the remoteport's
7992b632970SJames Smart 		 * dev_loss_tmo expires.
8002b632970SJames Smart 		 */
8012b632970SJames Smart 		if (nvme_reset_ctrl(&ctrl->ctrl)) {
8022b632970SJames Smart 			dev_warn(ctrl->ctrl.device,
80377d0612dSMax Gurtovoy 				"NVME-FC{%d}: Couldn't schedule reset.\n",
8042b632970SJames Smart 				ctrl->cnum);
8052b632970SJames Smart 			nvme_delete_ctrl(&ctrl->ctrl);
8062b632970SJames Smart 		}
8072b632970SJames Smart 		break;
8082b632970SJames Smart 
809ad6a0a52SMax Gurtovoy 	case NVME_CTRL_CONNECTING:
8102b632970SJames Smart 		/*
8112b632970SJames Smart 		 * The association has already been terminated and the
8122b632970SJames Smart 		 * controller is attempting reconnects.  No need to do anything
8132b632970SJames Smart 		 * futher.  Reconnects will be attempted until either the
8142b632970SJames Smart 		 * ctlr_loss_tmo (max_retries * connect_delay) expires or the
8152b632970SJames Smart 		 * remoteport's dev_loss_tmo expires.
8162b632970SJames Smart 		 */
8172b632970SJames Smart 		break;
8182b632970SJames Smart 
8192b632970SJames Smart 	case NVME_CTRL_RESETTING:
8202b632970SJames Smart 		/*
8212b632970SJames Smart 		 * Controller is already in the process of terminating the
8222b632970SJames Smart 		 * association.  No need to do anything further. The reconnect
8232b632970SJames Smart 		 * step will kick in naturally after the association is
8242b632970SJames Smart 		 * terminated.
8252b632970SJames Smart 		 */
8262b632970SJames Smart 		break;
8272b632970SJames Smart 
8282b632970SJames Smart 	case NVME_CTRL_DELETING:
829ecca390eSSagi Grimberg 	case NVME_CTRL_DELETING_NOIO:
8302b632970SJames Smart 	default:
8312b632970SJames Smart 		/* no action to take - let it delete */
8322b632970SJames Smart 		break;
8332b632970SJames Smart 	}
8342b632970SJames Smart }
8352b632970SJames Smart 
836e399441dSJames Smart /**
837e399441dSJames Smart  * nvme_fc_unregister_remoteport - transport entry point called by an
838e399441dSJames Smart  *                              LLDD to deregister/remove a previously
839e399441dSJames Smart  *                              registered a NVME subsystem FC port.
84076c910c7SBart Van Assche  * @portptr: pointer to the (registered) remote port that is to be
841e399441dSJames Smart  *           deregistered.
842e399441dSJames Smart  *
843e399441dSJames Smart  * Returns:
844e399441dSJames Smart  * a completion status. Must be 0 upon success; a negative errno
845e399441dSJames Smart  * (ex: -ENXIO) upon failure.
846e399441dSJames Smart  */
847e399441dSJames Smart int
848e399441dSJames Smart nvme_fc_unregister_remoteport(struct nvme_fc_remote_port *portptr)
849e399441dSJames Smart {
850e399441dSJames Smart 	struct nvme_fc_rport *rport = remoteport_to_rport(portptr);
851e399441dSJames Smart 	struct nvme_fc_ctrl *ctrl;
852e399441dSJames Smart 	unsigned long flags;
853e399441dSJames Smart 
854e399441dSJames Smart 	if (!portptr)
855e399441dSJames Smart 		return -EINVAL;
856e399441dSJames Smart 
857e399441dSJames Smart 	spin_lock_irqsave(&rport->lock, flags);
858e399441dSJames Smart 
859e399441dSJames Smart 	if (portptr->port_state != FC_OBJSTATE_ONLINE) {
860e399441dSJames Smart 		spin_unlock_irqrestore(&rport->lock, flags);
861e399441dSJames Smart 		return -EINVAL;
862e399441dSJames Smart 	}
863e399441dSJames Smart 	portptr->port_state = FC_OBJSTATE_DELETED;
864e399441dSJames Smart 
8652b632970SJames Smart 	rport->dev_loss_end = jiffies + (portptr->dev_loss_tmo * HZ);
8662b632970SJames Smart 
8672b632970SJames Smart 	list_for_each_entry(ctrl, &rport->ctrl_list, ctrl_list) {
8682b632970SJames Smart 		/* if dev_loss_tmo==0, dev loss is immediate */
8692b632970SJames Smart 		if (!portptr->dev_loss_tmo) {
8702b632970SJames Smart 			dev_warn(ctrl->ctrl.device,
87177d0612dSMax Gurtovoy 				"NVME-FC{%d}: controller connectivity lost.\n",
8722b632970SJames Smart 				ctrl->cnum);
873c5017e85SChristoph Hellwig 			nvme_delete_ctrl(&ctrl->ctrl);
8742b632970SJames Smart 		} else
8752b632970SJames Smart 			nvme_fc_ctrl_connectivity_loss(ctrl);
8762b632970SJames Smart 	}
877e399441dSJames Smart 
878e399441dSJames Smart 	spin_unlock_irqrestore(&rport->lock, flags);
879e399441dSJames Smart 
8808d64daf7SJames Smart 	nvme_fc_abort_lsops(rport);
8818d64daf7SJames Smart 
882158bfb88SJames Smart 	if (atomic_read(&rport->act_ctrl_cnt) == 0)
883158bfb88SJames Smart 		rport->lport->ops->remoteport_delete(portptr);
884158bfb88SJames Smart 
8852b632970SJames Smart 	/*
8862b632970SJames Smart 	 * release the reference, which will allow, if all controllers
8872b632970SJames Smart 	 * go away, which should only occur after dev_loss_tmo occurs,
8882b632970SJames Smart 	 * for the rport to be torn down.
8892b632970SJames Smart 	 */
890e399441dSJames Smart 	nvme_fc_rport_put(rport);
8912b632970SJames Smart 
892e399441dSJames Smart 	return 0;
893e399441dSJames Smart }
894e399441dSJames Smart EXPORT_SYMBOL_GPL(nvme_fc_unregister_remoteport);
895e399441dSJames Smart 
896eaefd5abSJames Smart /**
897eaefd5abSJames Smart  * nvme_fc_rescan_remoteport - transport entry point called by an
898eaefd5abSJames Smart  *                              LLDD to request a nvme device rescan.
899eaefd5abSJames Smart  * @remoteport: pointer to the (registered) remote port that is to be
900eaefd5abSJames Smart  *              rescanned.
901eaefd5abSJames Smart  *
902eaefd5abSJames Smart  * Returns: N/A
903eaefd5abSJames Smart  */
904eaefd5abSJames Smart void
905eaefd5abSJames Smart nvme_fc_rescan_remoteport(struct nvme_fc_remote_port *remoteport)
906eaefd5abSJames Smart {
907eaefd5abSJames Smart 	struct nvme_fc_rport *rport = remoteport_to_rport(remoteport);
908eaefd5abSJames Smart 
909eaefd5abSJames Smart 	nvme_fc_signal_discovery_scan(rport->lport, rport);
910eaefd5abSJames Smart }
911eaefd5abSJames Smart EXPORT_SYMBOL_GPL(nvme_fc_rescan_remoteport);
912eaefd5abSJames Smart 
913ac7fe82bSJames Smart int
914ac7fe82bSJames Smart nvme_fc_set_remoteport_devloss(struct nvme_fc_remote_port *portptr,
915ac7fe82bSJames Smart 			u32 dev_loss_tmo)
916ac7fe82bSJames Smart {
917ac7fe82bSJames Smart 	struct nvme_fc_rport *rport = remoteport_to_rport(portptr);
918ac7fe82bSJames Smart 	unsigned long flags;
919ac7fe82bSJames Smart 
920ac7fe82bSJames Smart 	spin_lock_irqsave(&rport->lock, flags);
921ac7fe82bSJames Smart 
922ac7fe82bSJames Smart 	if (portptr->port_state != FC_OBJSTATE_ONLINE) {
923ac7fe82bSJames Smart 		spin_unlock_irqrestore(&rport->lock, flags);
924ac7fe82bSJames Smart 		return -EINVAL;
925ac7fe82bSJames Smart 	}
926ac7fe82bSJames Smart 
927ac7fe82bSJames Smart 	/* a dev_loss_tmo of 0 (immediate) is allowed to be set */
928ac7fe82bSJames Smart 	rport->remoteport.dev_loss_tmo = dev_loss_tmo;
929ac7fe82bSJames Smart 
930ac7fe82bSJames Smart 	spin_unlock_irqrestore(&rport->lock, flags);
931ac7fe82bSJames Smart 
932ac7fe82bSJames Smart 	return 0;
933ac7fe82bSJames Smart }
934ac7fe82bSJames Smart EXPORT_SYMBOL_GPL(nvme_fc_set_remoteport_devloss);
935ac7fe82bSJames Smart 
936e399441dSJames Smart 
937e399441dSJames Smart /* *********************** FC-NVME DMA Handling **************************** */
938e399441dSJames Smart 
939e399441dSJames Smart /*
940e399441dSJames Smart  * The fcloop device passes in a NULL device pointer. Real LLD's will
941e399441dSJames Smart  * pass in a valid device pointer. If NULL is passed to the dma mapping
942e399441dSJames Smart  * routines, depending on the platform, it may or may not succeed, and
943e399441dSJames Smart  * may crash.
944e399441dSJames Smart  *
945e399441dSJames Smart  * As such:
946e399441dSJames Smart  * Wrapper all the dma routines and check the dev pointer.
947e399441dSJames Smart  *
948e399441dSJames Smart  * If simple mappings (return just a dma address, we'll noop them,
949e399441dSJames Smart  * returning a dma address of 0.
950e399441dSJames Smart  *
951e399441dSJames Smart  * On more complex mappings (dma_map_sg), a pseudo routine fills
952e399441dSJames Smart  * in the scatter list, setting all dma addresses to 0.
953e399441dSJames Smart  */
954e399441dSJames Smart 
955e399441dSJames Smart static inline dma_addr_t
956e399441dSJames Smart fc_dma_map_single(struct device *dev, void *ptr, size_t size,
957e399441dSJames Smart 		enum dma_data_direction dir)
958e399441dSJames Smart {
959e399441dSJames Smart 	return dev ? dma_map_single(dev, ptr, size, dir) : (dma_addr_t)0L;
960e399441dSJames Smart }
961e399441dSJames Smart 
962e399441dSJames Smart static inline int
963e399441dSJames Smart fc_dma_mapping_error(struct device *dev, dma_addr_t dma_addr)
964e399441dSJames Smart {
965e399441dSJames Smart 	return dev ? dma_mapping_error(dev, dma_addr) : 0;
966e399441dSJames Smart }
967e399441dSJames Smart 
968e399441dSJames Smart static inline void
969e399441dSJames Smart fc_dma_unmap_single(struct device *dev, dma_addr_t addr, size_t size,
970e399441dSJames Smart 	enum dma_data_direction dir)
971e399441dSJames Smart {
972e399441dSJames Smart 	if (dev)
973e399441dSJames Smart 		dma_unmap_single(dev, addr, size, dir);
974e399441dSJames Smart }
975e399441dSJames Smart 
976e399441dSJames Smart static inline void
977e399441dSJames Smart fc_dma_sync_single_for_cpu(struct device *dev, dma_addr_t addr, size_t size,
978e399441dSJames Smart 		enum dma_data_direction dir)
979e399441dSJames Smart {
980e399441dSJames Smart 	if (dev)
981e399441dSJames Smart 		dma_sync_single_for_cpu(dev, addr, size, dir);
982e399441dSJames Smart }
983e399441dSJames Smart 
984e399441dSJames Smart static inline void
985e399441dSJames Smart fc_dma_sync_single_for_device(struct device *dev, dma_addr_t addr, size_t size,
986e399441dSJames Smart 		enum dma_data_direction dir)
987e399441dSJames Smart {
988e399441dSJames Smart 	if (dev)
989e399441dSJames Smart 		dma_sync_single_for_device(dev, addr, size, dir);
990e399441dSJames Smart }
991e399441dSJames Smart 
992e399441dSJames Smart /* pseudo dma_map_sg call */
993e399441dSJames Smart static int
994e399441dSJames Smart fc_map_sg(struct scatterlist *sg, int nents)
995e399441dSJames Smart {
996e399441dSJames Smart 	struct scatterlist *s;
997e399441dSJames Smart 	int i;
998e399441dSJames Smart 
999e399441dSJames Smart 	WARN_ON(nents == 0 || sg[0].length == 0);
1000e399441dSJames Smart 
1001e399441dSJames Smart 	for_each_sg(sg, s, nents, i) {
1002e399441dSJames Smart 		s->dma_address = 0L;
1003e399441dSJames Smart #ifdef CONFIG_NEED_SG_DMA_LENGTH
1004e399441dSJames Smart 		s->dma_length = s->length;
1005e399441dSJames Smart #endif
1006e399441dSJames Smart 	}
1007e399441dSJames Smart 	return nents;
1008e399441dSJames Smart }
1009e399441dSJames Smart 
1010e399441dSJames Smart static inline int
1011e399441dSJames Smart fc_dma_map_sg(struct device *dev, struct scatterlist *sg, int nents,
1012e399441dSJames Smart 		enum dma_data_direction dir)
1013e399441dSJames Smart {
1014e399441dSJames Smart 	return dev ? dma_map_sg(dev, sg, nents, dir) : fc_map_sg(sg, nents);
1015e399441dSJames Smart }
1016e399441dSJames Smart 
1017e399441dSJames Smart static inline void
1018e399441dSJames Smart fc_dma_unmap_sg(struct device *dev, struct scatterlist *sg, int nents,
1019e399441dSJames Smart 		enum dma_data_direction dir)
1020e399441dSJames Smart {
1021e399441dSJames Smart 	if (dev)
1022e399441dSJames Smart 		dma_unmap_sg(dev, sg, nents, dir);
1023e399441dSJames Smart }
1024e399441dSJames Smart 
1025e399441dSJames Smart /* *********************** FC-NVME LS Handling **************************** */
1026e399441dSJames Smart 
1027e399441dSJames Smart static void nvme_fc_ctrl_put(struct nvme_fc_ctrl *);
1028e399441dSJames Smart static int nvme_fc_ctrl_get(struct nvme_fc_ctrl *);
1029e399441dSJames Smart 
103014fd1e98SJames Smart static void nvme_fc_error_recovery(struct nvme_fc_ctrl *ctrl, char *errmsg);
1031e399441dSJames Smart 
1032e399441dSJames Smart static void
1033c913a8b0SJames Smart __nvme_fc_finish_ls_req(struct nvmefc_ls_req_op *lsop)
1034e399441dSJames Smart {
1035c913a8b0SJames Smart 	struct nvme_fc_rport *rport = lsop->rport;
1036e399441dSJames Smart 	struct nvmefc_ls_req *lsreq = &lsop->ls_req;
1037e399441dSJames Smart 	unsigned long flags;
1038e399441dSJames Smart 
1039c913a8b0SJames Smart 	spin_lock_irqsave(&rport->lock, flags);
1040e399441dSJames Smart 
1041e399441dSJames Smart 	if (!lsop->req_queued) {
1042c913a8b0SJames Smart 		spin_unlock_irqrestore(&rport->lock, flags);
1043e399441dSJames Smart 		return;
1044e399441dSJames Smart 	}
1045e399441dSJames Smart 
1046e399441dSJames Smart 	list_del(&lsop->lsreq_list);
1047e399441dSJames Smart 
1048e399441dSJames Smart 	lsop->req_queued = false;
1049e399441dSJames Smart 
1050c913a8b0SJames Smart 	spin_unlock_irqrestore(&rport->lock, flags);
1051e399441dSJames Smart 
1052c913a8b0SJames Smart 	fc_dma_unmap_single(rport->dev, lsreq->rqstdma,
1053e399441dSJames Smart 				  (lsreq->rqstlen + lsreq->rsplen),
1054e399441dSJames Smart 				  DMA_BIDIRECTIONAL);
1055e399441dSJames Smart 
1056c913a8b0SJames Smart 	nvme_fc_rport_put(rport);
1057e399441dSJames Smart }
1058e399441dSJames Smart 
1059e399441dSJames Smart static int
1060c913a8b0SJames Smart __nvme_fc_send_ls_req(struct nvme_fc_rport *rport,
1061e399441dSJames Smart 		struct nvmefc_ls_req_op *lsop,
1062e399441dSJames Smart 		void (*done)(struct nvmefc_ls_req *req, int status))
1063e399441dSJames Smart {
1064e399441dSJames Smart 	struct nvmefc_ls_req *lsreq = &lsop->ls_req;
1065e399441dSJames Smart 	unsigned long flags;
1066c913a8b0SJames Smart 	int ret = 0;
1067e399441dSJames Smart 
1068c913a8b0SJames Smart 	if (rport->remoteport.port_state != FC_OBJSTATE_ONLINE)
1069c913a8b0SJames Smart 		return -ECONNREFUSED;
1070c913a8b0SJames Smart 
1071c913a8b0SJames Smart 	if (!nvme_fc_rport_get(rport))
1072e399441dSJames Smart 		return -ESHUTDOWN;
1073e399441dSJames Smart 
1074e399441dSJames Smart 	lsreq->done = done;
1075c913a8b0SJames Smart 	lsop->rport = rport;
1076e399441dSJames Smart 	lsop->req_queued = false;
1077e399441dSJames Smart 	INIT_LIST_HEAD(&lsop->lsreq_list);
1078e399441dSJames Smart 	init_completion(&lsop->ls_done);
1079e399441dSJames Smart 
1080c913a8b0SJames Smart 	lsreq->rqstdma = fc_dma_map_single(rport->dev, lsreq->rqstaddr,
1081e399441dSJames Smart 				  lsreq->rqstlen + lsreq->rsplen,
1082e399441dSJames Smart 				  DMA_BIDIRECTIONAL);
1083c913a8b0SJames Smart 	if (fc_dma_mapping_error(rport->dev, lsreq->rqstdma)) {
1084c913a8b0SJames Smart 		ret = -EFAULT;
1085c913a8b0SJames Smart 		goto out_putrport;
1086e399441dSJames Smart 	}
1087e399441dSJames Smart 	lsreq->rspdma = lsreq->rqstdma + lsreq->rqstlen;
1088e399441dSJames Smart 
1089c913a8b0SJames Smart 	spin_lock_irqsave(&rport->lock, flags);
1090e399441dSJames Smart 
1091c913a8b0SJames Smart 	list_add_tail(&lsop->lsreq_list, &rport->ls_req_list);
1092e399441dSJames Smart 
1093e399441dSJames Smart 	lsop->req_queued = true;
1094e399441dSJames Smart 
1095c913a8b0SJames Smart 	spin_unlock_irqrestore(&rport->lock, flags);
1096e399441dSJames Smart 
1097c913a8b0SJames Smart 	ret = rport->lport->ops->ls_req(&rport->lport->localport,
1098c913a8b0SJames Smart 					&rport->remoteport, lsreq);
1099e399441dSJames Smart 	if (ret)
1100c913a8b0SJames Smart 		goto out_unlink;
1101c913a8b0SJames Smart 
1102c913a8b0SJames Smart 	return 0;
1103c913a8b0SJames Smart 
1104c913a8b0SJames Smart out_unlink:
1105e399441dSJames Smart 	lsop->ls_error = ret;
1106c913a8b0SJames Smart 	spin_lock_irqsave(&rport->lock, flags);
1107c913a8b0SJames Smart 	lsop->req_queued = false;
1108c913a8b0SJames Smart 	list_del(&lsop->lsreq_list);
1109c913a8b0SJames Smart 	spin_unlock_irqrestore(&rport->lock, flags);
1110c913a8b0SJames Smart 	fc_dma_unmap_single(rport->dev, lsreq->rqstdma,
1111c913a8b0SJames Smart 				  (lsreq->rqstlen + lsreq->rsplen),
1112c913a8b0SJames Smart 				  DMA_BIDIRECTIONAL);
1113c913a8b0SJames Smart out_putrport:
1114c913a8b0SJames Smart 	nvme_fc_rport_put(rport);
1115e399441dSJames Smart 
1116e399441dSJames Smart 	return ret;
1117e399441dSJames Smart }
1118e399441dSJames Smart 
1119e399441dSJames Smart static void
1120e399441dSJames Smart nvme_fc_send_ls_req_done(struct nvmefc_ls_req *lsreq, int status)
1121e399441dSJames Smart {
1122e399441dSJames Smart 	struct nvmefc_ls_req_op *lsop = ls_req_to_lsop(lsreq);
1123e399441dSJames Smart 
1124e399441dSJames Smart 	lsop->ls_error = status;
1125e399441dSJames Smart 	complete(&lsop->ls_done);
1126e399441dSJames Smart }
1127e399441dSJames Smart 
1128e399441dSJames Smart static int
1129c913a8b0SJames Smart nvme_fc_send_ls_req(struct nvme_fc_rport *rport, struct nvmefc_ls_req_op *lsop)
1130e399441dSJames Smart {
1131e399441dSJames Smart 	struct nvmefc_ls_req *lsreq = &lsop->ls_req;
1132e399441dSJames Smart 	struct fcnvme_ls_rjt *rjt = lsreq->rspaddr;
1133e399441dSJames Smart 	int ret;
1134e399441dSJames Smart 
1135c913a8b0SJames Smart 	ret = __nvme_fc_send_ls_req(rport, lsop, nvme_fc_send_ls_req_done);
1136e399441dSJames Smart 
1137c913a8b0SJames Smart 	if (!ret) {
1138e399441dSJames Smart 		/*
1139e399441dSJames Smart 		 * No timeout/not interruptible as we need the struct
1140e399441dSJames Smart 		 * to exist until the lldd calls us back. Thus mandate
1141e399441dSJames Smart 		 * wait until driver calls back. lldd responsible for
1142e399441dSJames Smart 		 * the timeout action
1143e399441dSJames Smart 		 */
1144e399441dSJames Smart 		wait_for_completion(&lsop->ls_done);
1145e399441dSJames Smart 
1146c913a8b0SJames Smart 		__nvme_fc_finish_ls_req(lsop);
1147e399441dSJames Smart 
1148c913a8b0SJames Smart 		ret = lsop->ls_error;
1149e399441dSJames Smart 	}
1150e399441dSJames Smart 
1151c913a8b0SJames Smart 	if (ret)
1152c913a8b0SJames Smart 		return ret;
1153c913a8b0SJames Smart 
1154e399441dSJames Smart 	/* ACC or RJT payload ? */
1155e399441dSJames Smart 	if (rjt->w0.ls_cmd == FCNVME_LS_RJT)
1156e399441dSJames Smart 		return -ENXIO;
1157e399441dSJames Smart 
1158e399441dSJames Smart 	return 0;
1159e399441dSJames Smart }
1160e399441dSJames Smart 
1161c913a8b0SJames Smart static int
1162c913a8b0SJames Smart nvme_fc_send_ls_req_async(struct nvme_fc_rport *rport,
1163e399441dSJames Smart 		struct nvmefc_ls_req_op *lsop,
1164e399441dSJames Smart 		void (*done)(struct nvmefc_ls_req *req, int status))
1165e399441dSJames Smart {
1166e399441dSJames Smart 	/* don't wait for completion */
1167e399441dSJames Smart 
1168c913a8b0SJames Smart 	return __nvme_fc_send_ls_req(rport, lsop, done);
1169e399441dSJames Smart }
1170e399441dSJames Smart 
1171e399441dSJames Smart static int
1172e399441dSJames Smart nvme_fc_connect_admin_queue(struct nvme_fc_ctrl *ctrl,
1173e399441dSJames Smart 	struct nvme_fc_queue *queue, u16 qsize, u16 ersp_ratio)
1174e399441dSJames Smart {
1175e399441dSJames Smart 	struct nvmefc_ls_req_op *lsop;
1176e399441dSJames Smart 	struct nvmefc_ls_req *lsreq;
1177e399441dSJames Smart 	struct fcnvme_ls_cr_assoc_rqst *assoc_rqst;
1178e399441dSJames Smart 	struct fcnvme_ls_cr_assoc_acc *assoc_acc;
117914fd1e98SJames Smart 	unsigned long flags;
1180e399441dSJames Smart 	int ret, fcret = 0;
1181e399441dSJames Smart 
1182e399441dSJames Smart 	lsop = kzalloc((sizeof(*lsop) +
1183f56bf76fSJames Smart 			 sizeof(*assoc_rqst) + sizeof(*assoc_acc) +
1184f56bf76fSJames Smart 			 ctrl->lport->ops->lsrqst_priv_sz), GFP_KERNEL);
1185e399441dSJames Smart 	if (!lsop) {
1186f56bf76fSJames Smart 		dev_info(ctrl->ctrl.device,
1187f56bf76fSJames Smart 			"NVME-FC{%d}: send Create Association failed: ENOMEM\n",
1188f56bf76fSJames Smart 			ctrl->cnum);
1189e399441dSJames Smart 		ret = -ENOMEM;
1190e399441dSJames Smart 		goto out_no_memory;
1191e399441dSJames Smart 	}
1192e399441dSJames Smart 
1193f56bf76fSJames Smart 	assoc_rqst = (struct fcnvme_ls_cr_assoc_rqst *)&lsop[1];
1194e399441dSJames Smart 	assoc_acc = (struct fcnvme_ls_cr_assoc_acc *)&assoc_rqst[1];
1195f56bf76fSJames Smart 	lsreq = &lsop->ls_req;
1196f56bf76fSJames Smart 	if (ctrl->lport->ops->lsrqst_priv_sz)
1197f56bf76fSJames Smart 		lsreq->private = &assoc_acc[1];
1198f56bf76fSJames Smart 	else
1199f56bf76fSJames Smart 		lsreq->private = NULL;
1200e399441dSJames Smart 
1201e399441dSJames Smart 	assoc_rqst->w0.ls_cmd = FCNVME_LS_CREATE_ASSOCIATION;
1202e399441dSJames Smart 	assoc_rqst->desc_list_len =
1203e399441dSJames Smart 			cpu_to_be32(sizeof(struct fcnvme_lsdesc_cr_assoc_cmd));
1204e399441dSJames Smart 
1205e399441dSJames Smart 	assoc_rqst->assoc_cmd.desc_tag =
1206e399441dSJames Smart 			cpu_to_be32(FCNVME_LSDESC_CREATE_ASSOC_CMD);
1207e399441dSJames Smart 	assoc_rqst->assoc_cmd.desc_len =
1208e399441dSJames Smart 			fcnvme_lsdesc_len(
1209e399441dSJames Smart 				sizeof(struct fcnvme_lsdesc_cr_assoc_cmd));
1210e399441dSJames Smart 
1211e399441dSJames Smart 	assoc_rqst->assoc_cmd.ersp_ratio = cpu_to_be16(ersp_ratio);
1212d157e534SJames Smart 	assoc_rqst->assoc_cmd.sqsize = cpu_to_be16(qsize - 1);
1213e399441dSJames Smart 	/* Linux supports only Dynamic controllers */
1214e399441dSJames Smart 	assoc_rqst->assoc_cmd.cntlid = cpu_to_be16(0xffff);
12158e412263SChristoph Hellwig 	uuid_copy(&assoc_rqst->assoc_cmd.hostid, &ctrl->ctrl.opts->host->id);
1216e399441dSJames Smart 	strncpy(assoc_rqst->assoc_cmd.hostnqn, ctrl->ctrl.opts->host->nqn,
1217e399441dSJames Smart 		min(FCNVME_ASSOC_HOSTNQN_LEN, NVMF_NQN_SIZE));
1218e399441dSJames Smart 	strncpy(assoc_rqst->assoc_cmd.subnqn, ctrl->ctrl.opts->subsysnqn,
1219e399441dSJames Smart 		min(FCNVME_ASSOC_SUBNQN_LEN, NVMF_NQN_SIZE));
1220e399441dSJames Smart 
1221e399441dSJames Smart 	lsop->queue = queue;
1222e399441dSJames Smart 	lsreq->rqstaddr = assoc_rqst;
1223e399441dSJames Smart 	lsreq->rqstlen = sizeof(*assoc_rqst);
1224e399441dSJames Smart 	lsreq->rspaddr = assoc_acc;
1225e399441dSJames Smart 	lsreq->rsplen = sizeof(*assoc_acc);
122653b2b2f5SJames Smart 	lsreq->timeout = NVME_FC_LS_TIMEOUT_SEC;
1227e399441dSJames Smart 
1228c913a8b0SJames Smart 	ret = nvme_fc_send_ls_req(ctrl->rport, lsop);
1229e399441dSJames Smart 	if (ret)
1230e399441dSJames Smart 		goto out_free_buffer;
1231e399441dSJames Smart 
1232e399441dSJames Smart 	/* process connect LS completion */
1233e399441dSJames Smart 
1234e399441dSJames Smart 	/* validate the ACC response */
1235e399441dSJames Smart 	if (assoc_acc->hdr.w0.ls_cmd != FCNVME_LS_ACC)
1236e399441dSJames Smart 		fcret = VERR_LSACC;
1237f77fc87cSJames Smart 	else if (assoc_acc->hdr.desc_list_len !=
1238e399441dSJames Smart 			fcnvme_lsdesc_len(
1239e399441dSJames Smart 				sizeof(struct fcnvme_ls_cr_assoc_acc)))
1240e399441dSJames Smart 		fcret = VERR_CR_ASSOC_ACC_LEN;
1241f77fc87cSJames Smart 	else if (assoc_acc->hdr.rqst.desc_tag !=
1242f77fc87cSJames Smart 			cpu_to_be32(FCNVME_LSDESC_RQST))
1243e399441dSJames Smart 		fcret = VERR_LSDESC_RQST;
1244e399441dSJames Smart 	else if (assoc_acc->hdr.rqst.desc_len !=
1245e399441dSJames Smart 			fcnvme_lsdesc_len(sizeof(struct fcnvme_lsdesc_rqst)))
1246e399441dSJames Smart 		fcret = VERR_LSDESC_RQST_LEN;
1247e399441dSJames Smart 	else if (assoc_acc->hdr.rqst.w0.ls_cmd != FCNVME_LS_CREATE_ASSOCIATION)
1248e399441dSJames Smart 		fcret = VERR_CR_ASSOC;
1249e399441dSJames Smart 	else if (assoc_acc->associd.desc_tag !=
1250e399441dSJames Smart 			cpu_to_be32(FCNVME_LSDESC_ASSOC_ID))
1251e399441dSJames Smart 		fcret = VERR_ASSOC_ID;
1252e399441dSJames Smart 	else if (assoc_acc->associd.desc_len !=
1253e399441dSJames Smart 			fcnvme_lsdesc_len(
1254e399441dSJames Smart 				sizeof(struct fcnvme_lsdesc_assoc_id)))
1255e399441dSJames Smart 		fcret = VERR_ASSOC_ID_LEN;
1256e399441dSJames Smart 	else if (assoc_acc->connectid.desc_tag !=
1257e399441dSJames Smart 			cpu_to_be32(FCNVME_LSDESC_CONN_ID))
1258e399441dSJames Smart 		fcret = VERR_CONN_ID;
1259e399441dSJames Smart 	else if (assoc_acc->connectid.desc_len !=
1260e399441dSJames Smart 			fcnvme_lsdesc_len(sizeof(struct fcnvme_lsdesc_conn_id)))
1261e399441dSJames Smart 		fcret = VERR_CONN_ID_LEN;
1262e399441dSJames Smart 
1263e399441dSJames Smart 	if (fcret) {
1264e399441dSJames Smart 		ret = -EBADF;
1265e399441dSJames Smart 		dev_err(ctrl->dev,
12667db39484SJames Smart 			"q %d Create Association LS failed: %s\n",
1267e399441dSJames Smart 			queue->qnum, validation_errors[fcret]);
1268e399441dSJames Smart 	} else {
126914fd1e98SJames Smart 		spin_lock_irqsave(&ctrl->lock, flags);
1270e399441dSJames Smart 		ctrl->association_id =
1271e399441dSJames Smart 			be64_to_cpu(assoc_acc->associd.association_id);
1272e399441dSJames Smart 		queue->connection_id =
1273e399441dSJames Smart 			be64_to_cpu(assoc_acc->connectid.connection_id);
1274e399441dSJames Smart 		set_bit(NVME_FC_Q_CONNECTED, &queue->flags);
127514fd1e98SJames Smart 		spin_unlock_irqrestore(&ctrl->lock, flags);
1276e399441dSJames Smart 	}
1277e399441dSJames Smart 
1278e399441dSJames Smart out_free_buffer:
1279e399441dSJames Smart 	kfree(lsop);
1280e399441dSJames Smart out_no_memory:
1281e399441dSJames Smart 	if (ret)
1282e399441dSJames Smart 		dev_err(ctrl->dev,
1283e399441dSJames Smart 			"queue %d connect admin queue failed (%d).\n",
1284e399441dSJames Smart 			queue->qnum, ret);
1285e399441dSJames Smart 	return ret;
1286e399441dSJames Smart }
1287e399441dSJames Smart 
1288e399441dSJames Smart static int
1289e399441dSJames Smart nvme_fc_connect_queue(struct nvme_fc_ctrl *ctrl, struct nvme_fc_queue *queue,
1290e399441dSJames Smart 			u16 qsize, u16 ersp_ratio)
1291e399441dSJames Smart {
1292e399441dSJames Smart 	struct nvmefc_ls_req_op *lsop;
1293e399441dSJames Smart 	struct nvmefc_ls_req *lsreq;
1294e399441dSJames Smart 	struct fcnvme_ls_cr_conn_rqst *conn_rqst;
1295e399441dSJames Smart 	struct fcnvme_ls_cr_conn_acc *conn_acc;
1296e399441dSJames Smart 	int ret, fcret = 0;
1297e399441dSJames Smart 
1298e399441dSJames Smart 	lsop = kzalloc((sizeof(*lsop) +
1299f56bf76fSJames Smart 			 sizeof(*conn_rqst) + sizeof(*conn_acc) +
1300f56bf76fSJames Smart 			 ctrl->lport->ops->lsrqst_priv_sz), GFP_KERNEL);
1301e399441dSJames Smart 	if (!lsop) {
1302f56bf76fSJames Smart 		dev_info(ctrl->ctrl.device,
1303f56bf76fSJames Smart 			"NVME-FC{%d}: send Create Connection failed: ENOMEM\n",
1304f56bf76fSJames Smart 			ctrl->cnum);
1305e399441dSJames Smart 		ret = -ENOMEM;
1306e399441dSJames Smart 		goto out_no_memory;
1307e399441dSJames Smart 	}
1308e399441dSJames Smart 
1309f56bf76fSJames Smart 	conn_rqst = (struct fcnvme_ls_cr_conn_rqst *)&lsop[1];
1310e399441dSJames Smart 	conn_acc = (struct fcnvme_ls_cr_conn_acc *)&conn_rqst[1];
1311f56bf76fSJames Smart 	lsreq = &lsop->ls_req;
1312f56bf76fSJames Smart 	if (ctrl->lport->ops->lsrqst_priv_sz)
1313f56bf76fSJames Smart 		lsreq->private = (void *)&conn_acc[1];
1314f56bf76fSJames Smart 	else
1315f56bf76fSJames Smart 		lsreq->private = NULL;
1316e399441dSJames Smart 
1317e399441dSJames Smart 	conn_rqst->w0.ls_cmd = FCNVME_LS_CREATE_CONNECTION;
1318e399441dSJames Smart 	conn_rqst->desc_list_len = cpu_to_be32(
1319e399441dSJames Smart 				sizeof(struct fcnvme_lsdesc_assoc_id) +
1320e399441dSJames Smart 				sizeof(struct fcnvme_lsdesc_cr_conn_cmd));
1321e399441dSJames Smart 
1322e399441dSJames Smart 	conn_rqst->associd.desc_tag = cpu_to_be32(FCNVME_LSDESC_ASSOC_ID);
1323e399441dSJames Smart 	conn_rqst->associd.desc_len =
1324e399441dSJames Smart 			fcnvme_lsdesc_len(
1325e399441dSJames Smart 				sizeof(struct fcnvme_lsdesc_assoc_id));
1326e399441dSJames Smart 	conn_rqst->associd.association_id = cpu_to_be64(ctrl->association_id);
1327e399441dSJames Smart 	conn_rqst->connect_cmd.desc_tag =
1328e399441dSJames Smart 			cpu_to_be32(FCNVME_LSDESC_CREATE_CONN_CMD);
1329e399441dSJames Smart 	conn_rqst->connect_cmd.desc_len =
1330e399441dSJames Smart 			fcnvme_lsdesc_len(
1331e399441dSJames Smart 				sizeof(struct fcnvme_lsdesc_cr_conn_cmd));
1332e399441dSJames Smart 	conn_rqst->connect_cmd.ersp_ratio = cpu_to_be16(ersp_ratio);
1333e399441dSJames Smart 	conn_rqst->connect_cmd.qid  = cpu_to_be16(queue->qnum);
1334d157e534SJames Smart 	conn_rqst->connect_cmd.sqsize = cpu_to_be16(qsize - 1);
1335e399441dSJames Smart 
1336e399441dSJames Smart 	lsop->queue = queue;
1337e399441dSJames Smart 	lsreq->rqstaddr = conn_rqst;
1338e399441dSJames Smart 	lsreq->rqstlen = sizeof(*conn_rqst);
1339e399441dSJames Smart 	lsreq->rspaddr = conn_acc;
1340e399441dSJames Smart 	lsreq->rsplen = sizeof(*conn_acc);
134153b2b2f5SJames Smart 	lsreq->timeout = NVME_FC_LS_TIMEOUT_SEC;
1342e399441dSJames Smart 
1343c913a8b0SJames Smart 	ret = nvme_fc_send_ls_req(ctrl->rport, lsop);
1344e399441dSJames Smart 	if (ret)
1345e399441dSJames Smart 		goto out_free_buffer;
1346e399441dSJames Smart 
1347e399441dSJames Smart 	/* process connect LS completion */
1348e399441dSJames Smart 
1349e399441dSJames Smart 	/* validate the ACC response */
1350e399441dSJames Smart 	if (conn_acc->hdr.w0.ls_cmd != FCNVME_LS_ACC)
1351e399441dSJames Smart 		fcret = VERR_LSACC;
1352f77fc87cSJames Smart 	else if (conn_acc->hdr.desc_list_len !=
1353e399441dSJames Smart 			fcnvme_lsdesc_len(sizeof(struct fcnvme_ls_cr_conn_acc)))
1354e399441dSJames Smart 		fcret = VERR_CR_CONN_ACC_LEN;
1355f77fc87cSJames Smart 	else if (conn_acc->hdr.rqst.desc_tag != cpu_to_be32(FCNVME_LSDESC_RQST))
1356e399441dSJames Smart 		fcret = VERR_LSDESC_RQST;
1357e399441dSJames Smart 	else if (conn_acc->hdr.rqst.desc_len !=
1358e399441dSJames Smart 			fcnvme_lsdesc_len(sizeof(struct fcnvme_lsdesc_rqst)))
1359e399441dSJames Smart 		fcret = VERR_LSDESC_RQST_LEN;
1360e399441dSJames Smart 	else if (conn_acc->hdr.rqst.w0.ls_cmd != FCNVME_LS_CREATE_CONNECTION)
1361e399441dSJames Smart 		fcret = VERR_CR_CONN;
1362e399441dSJames Smart 	else if (conn_acc->connectid.desc_tag !=
1363e399441dSJames Smart 			cpu_to_be32(FCNVME_LSDESC_CONN_ID))
1364e399441dSJames Smart 		fcret = VERR_CONN_ID;
1365e399441dSJames Smart 	else if (conn_acc->connectid.desc_len !=
1366e399441dSJames Smart 			fcnvme_lsdesc_len(sizeof(struct fcnvme_lsdesc_conn_id)))
1367e399441dSJames Smart 		fcret = VERR_CONN_ID_LEN;
1368e399441dSJames Smart 
1369e399441dSJames Smart 	if (fcret) {
1370e399441dSJames Smart 		ret = -EBADF;
1371e399441dSJames Smart 		dev_err(ctrl->dev,
13727db39484SJames Smart 			"q %d Create I/O Connection LS failed: %s\n",
1373e399441dSJames Smart 			queue->qnum, validation_errors[fcret]);
1374e399441dSJames Smart 	} else {
1375e399441dSJames Smart 		queue->connection_id =
1376e399441dSJames Smart 			be64_to_cpu(conn_acc->connectid.connection_id);
1377e399441dSJames Smart 		set_bit(NVME_FC_Q_CONNECTED, &queue->flags);
1378e399441dSJames Smart 	}
1379e399441dSJames Smart 
1380e399441dSJames Smart out_free_buffer:
1381e399441dSJames Smart 	kfree(lsop);
1382e399441dSJames Smart out_no_memory:
1383e399441dSJames Smart 	if (ret)
1384e399441dSJames Smart 		dev_err(ctrl->dev,
13857db39484SJames Smart 			"queue %d connect I/O queue failed (%d).\n",
1386e399441dSJames Smart 			queue->qnum, ret);
1387e399441dSJames Smart 	return ret;
1388e399441dSJames Smart }
1389e399441dSJames Smart 
1390e399441dSJames Smart static void
1391e399441dSJames Smart nvme_fc_disconnect_assoc_done(struct nvmefc_ls_req *lsreq, int status)
1392e399441dSJames Smart {
1393e399441dSJames Smart 	struct nvmefc_ls_req_op *lsop = ls_req_to_lsop(lsreq);
1394e399441dSJames Smart 
1395c913a8b0SJames Smart 	__nvme_fc_finish_ls_req(lsop);
1396e399441dSJames Smart 
1397d4e4230cSMilan P. Gandhi 	/* fc-nvme initiator doesn't care about success or failure of cmd */
1398e399441dSJames Smart 
1399e399441dSJames Smart 	kfree(lsop);
1400e399441dSJames Smart }
1401e399441dSJames Smart 
1402e399441dSJames Smart /*
1403e399441dSJames Smart  * This routine sends a FC-NVME LS to disconnect (aka terminate)
1404e399441dSJames Smart  * the FC-NVME Association.  Terminating the association also
1405e399441dSJames Smart  * terminates the FC-NVME connections (per queue, both admin and io
1406e399441dSJames Smart  * queues) that are part of the association. E.g. things are torn
1407e399441dSJames Smart  * down, and the related FC-NVME Association ID and Connection IDs
1408e399441dSJames Smart  * become invalid.
1409e399441dSJames Smart  *
1410e399441dSJames Smart  * The behavior of the fc-nvme initiator is such that it's
1411e399441dSJames Smart  * understanding of the association and connections will implicitly
1412e399441dSJames Smart  * be torn down. The action is implicit as it may be due to a loss of
1413e399441dSJames Smart  * connectivity with the fc-nvme target, so you may never get a
1414e399441dSJames Smart  * response even if you tried.  As such, the action of this routine
1415e399441dSJames Smart  * is to asynchronously send the LS, ignore any results of the LS, and
1416e399441dSJames Smart  * continue on with terminating the association. If the fc-nvme target
1417e399441dSJames Smart  * is present and receives the LS, it too can tear down.
1418e399441dSJames Smart  */
1419e399441dSJames Smart static void
1420e399441dSJames Smart nvme_fc_xmt_disconnect_assoc(struct nvme_fc_ctrl *ctrl)
1421e399441dSJames Smart {
142253b2b2f5SJames Smart 	struct fcnvme_ls_disconnect_assoc_rqst *discon_rqst;
142353b2b2f5SJames Smart 	struct fcnvme_ls_disconnect_assoc_acc *discon_acc;
1424e399441dSJames Smart 	struct nvmefc_ls_req_op *lsop;
1425e399441dSJames Smart 	struct nvmefc_ls_req *lsreq;
1426c913a8b0SJames Smart 	int ret;
1427e399441dSJames Smart 
1428e399441dSJames Smart 	lsop = kzalloc((sizeof(*lsop) +
1429f56bf76fSJames Smart 			sizeof(*discon_rqst) + sizeof(*discon_acc) +
1430f56bf76fSJames Smart 			ctrl->lport->ops->lsrqst_priv_sz), GFP_KERNEL);
1431f56bf76fSJames Smart 	if (!lsop) {
1432f56bf76fSJames Smart 		dev_info(ctrl->ctrl.device,
1433f56bf76fSJames Smart 			"NVME-FC{%d}: send Disconnect Association "
1434f56bf76fSJames Smart 			"failed: ENOMEM\n",
1435f56bf76fSJames Smart 			ctrl->cnum);
1436e399441dSJames Smart 		return;
1437f56bf76fSJames Smart 	}
1438e399441dSJames Smart 
1439f56bf76fSJames Smart 	discon_rqst = (struct fcnvme_ls_disconnect_assoc_rqst *)&lsop[1];
144053b2b2f5SJames Smart 	discon_acc = (struct fcnvme_ls_disconnect_assoc_acc *)&discon_rqst[1];
1441f56bf76fSJames Smart 	lsreq = &lsop->ls_req;
1442f56bf76fSJames Smart 	if (ctrl->lport->ops->lsrqst_priv_sz)
1443f56bf76fSJames Smart 		lsreq->private = (void *)&discon_acc[1];
1444f56bf76fSJames Smart 	else
1445f56bf76fSJames Smart 		lsreq->private = NULL;
1446e399441dSJames Smart 
1447fd5a5f22SJames Smart 	nvmefc_fmt_lsreq_discon_assoc(lsreq, discon_rqst, discon_acc,
1448fd5a5f22SJames Smart 				ctrl->association_id);
1449e399441dSJames Smart 
1450c913a8b0SJames Smart 	ret = nvme_fc_send_ls_req_async(ctrl->rport, lsop,
1451c913a8b0SJames Smart 				nvme_fc_disconnect_assoc_done);
1452c913a8b0SJames Smart 	if (ret)
1453c913a8b0SJames Smart 		kfree(lsop);
1454e399441dSJames Smart }
1455e399441dSJames Smart 
145614fd1e98SJames Smart static void
145714fd1e98SJames Smart nvme_fc_xmt_ls_rsp_done(struct nvmefc_ls_rsp *lsrsp)
145814fd1e98SJames Smart {
145914fd1e98SJames Smart 	struct nvmefc_ls_rcv_op *lsop = lsrsp->nvme_fc_private;
146014fd1e98SJames Smart 	struct nvme_fc_rport *rport = lsop->rport;
146114fd1e98SJames Smart 	struct nvme_fc_lport *lport = rport->lport;
146214fd1e98SJames Smart 	unsigned long flags;
146314fd1e98SJames Smart 
146414fd1e98SJames Smart 	spin_lock_irqsave(&rport->lock, flags);
146514fd1e98SJames Smart 	list_del(&lsop->lsrcv_list);
146614fd1e98SJames Smart 	spin_unlock_irqrestore(&rport->lock, flags);
146714fd1e98SJames Smart 
146814fd1e98SJames Smart 	fc_dma_sync_single_for_cpu(lport->dev, lsop->rspdma,
146914fd1e98SJames Smart 				sizeof(*lsop->rspbuf), DMA_TO_DEVICE);
147014fd1e98SJames Smart 	fc_dma_unmap_single(lport->dev, lsop->rspdma,
147114fd1e98SJames Smart 			sizeof(*lsop->rspbuf), DMA_TO_DEVICE);
147214fd1e98SJames Smart 
147314fd1e98SJames Smart 	kfree(lsop);
147414fd1e98SJames Smart 
147514fd1e98SJames Smart 	nvme_fc_rport_put(rport);
147614fd1e98SJames Smart }
147714fd1e98SJames Smart 
147814fd1e98SJames Smart static void
147914fd1e98SJames Smart nvme_fc_xmt_ls_rsp(struct nvmefc_ls_rcv_op *lsop)
148014fd1e98SJames Smart {
148114fd1e98SJames Smart 	struct nvme_fc_rport *rport = lsop->rport;
148214fd1e98SJames Smart 	struct nvme_fc_lport *lport = rport->lport;
148314fd1e98SJames Smart 	struct fcnvme_ls_rqst_w0 *w0 = &lsop->rqstbuf->w0;
148414fd1e98SJames Smart 	int ret;
148514fd1e98SJames Smart 
148614fd1e98SJames Smart 	fc_dma_sync_single_for_device(lport->dev, lsop->rspdma,
148714fd1e98SJames Smart 				  sizeof(*lsop->rspbuf), DMA_TO_DEVICE);
148814fd1e98SJames Smart 
148914fd1e98SJames Smart 	ret = lport->ops->xmt_ls_rsp(&lport->localport, &rport->remoteport,
149014fd1e98SJames Smart 				     lsop->lsrsp);
149114fd1e98SJames Smart 	if (ret) {
149214fd1e98SJames Smart 		dev_warn(lport->dev,
149314fd1e98SJames Smart 			"LLDD rejected LS RSP xmt: LS %d status %d\n",
149414fd1e98SJames Smart 			w0->ls_cmd, ret);
149514fd1e98SJames Smart 		nvme_fc_xmt_ls_rsp_done(lsop->lsrsp);
149614fd1e98SJames Smart 		return;
149714fd1e98SJames Smart 	}
149814fd1e98SJames Smart }
149914fd1e98SJames Smart 
150014fd1e98SJames Smart static struct nvme_fc_ctrl *
150114fd1e98SJames Smart nvme_fc_match_disconn_ls(struct nvme_fc_rport *rport,
150214fd1e98SJames Smart 		      struct nvmefc_ls_rcv_op *lsop)
150314fd1e98SJames Smart {
150414fd1e98SJames Smart 	struct fcnvme_ls_disconnect_assoc_rqst *rqst =
150514fd1e98SJames Smart 					&lsop->rqstbuf->rq_dis_assoc;
150614fd1e98SJames Smart 	struct nvme_fc_ctrl *ctrl, *ret = NULL;
150714fd1e98SJames Smart 	struct nvmefc_ls_rcv_op *oldls = NULL;
150814fd1e98SJames Smart 	u64 association_id = be64_to_cpu(rqst->associd.association_id);
150914fd1e98SJames Smart 	unsigned long flags;
151014fd1e98SJames Smart 
151114fd1e98SJames Smart 	spin_lock_irqsave(&rport->lock, flags);
151214fd1e98SJames Smart 
151314fd1e98SJames Smart 	list_for_each_entry(ctrl, &rport->ctrl_list, ctrl_list) {
151414fd1e98SJames Smart 		if (!nvme_fc_ctrl_get(ctrl))
151514fd1e98SJames Smart 			continue;
151614fd1e98SJames Smart 		spin_lock(&ctrl->lock);
151714fd1e98SJames Smart 		if (association_id == ctrl->association_id) {
151814fd1e98SJames Smart 			oldls = ctrl->rcv_disconn;
151914fd1e98SJames Smart 			ctrl->rcv_disconn = lsop;
152014fd1e98SJames Smart 			ret = ctrl;
152114fd1e98SJames Smart 		}
152214fd1e98SJames Smart 		spin_unlock(&ctrl->lock);
152314fd1e98SJames Smart 		if (ret)
152414fd1e98SJames Smart 			/* leave the ctrl get reference */
152514fd1e98SJames Smart 			break;
152614fd1e98SJames Smart 		nvme_fc_ctrl_put(ctrl);
152714fd1e98SJames Smart 	}
152814fd1e98SJames Smart 
152914fd1e98SJames Smart 	spin_unlock_irqrestore(&rport->lock, flags);
153014fd1e98SJames Smart 
153114fd1e98SJames Smart 	/* transmit a response for anything that was pending */
153214fd1e98SJames Smart 	if (oldls) {
153314fd1e98SJames Smart 		dev_info(rport->lport->dev,
153414fd1e98SJames Smart 			"NVME-FC{%d}: Multiple Disconnect Association "
153514fd1e98SJames Smart 			"LS's received\n", ctrl->cnum);
153614fd1e98SJames Smart 		/* overwrite good response with bogus failure */
153714fd1e98SJames Smart 		oldls->lsrsp->rsplen = nvme_fc_format_rjt(oldls->rspbuf,
153814fd1e98SJames Smart 						sizeof(*oldls->rspbuf),
153914fd1e98SJames Smart 						rqst->w0.ls_cmd,
154014fd1e98SJames Smart 						FCNVME_RJT_RC_UNAB,
154114fd1e98SJames Smart 						FCNVME_RJT_EXP_NONE, 0);
154214fd1e98SJames Smart 		nvme_fc_xmt_ls_rsp(oldls);
154314fd1e98SJames Smart 	}
154414fd1e98SJames Smart 
154514fd1e98SJames Smart 	return ret;
154614fd1e98SJames Smart }
154714fd1e98SJames Smart 
154814fd1e98SJames Smart /*
154914fd1e98SJames Smart  * returns true to mean LS handled and ls_rsp can be sent
155014fd1e98SJames Smart  * returns false to defer ls_rsp xmt (will be done as part of
155114fd1e98SJames Smart  *     association termination)
155214fd1e98SJames Smart  */
155314fd1e98SJames Smart static bool
155414fd1e98SJames Smart nvme_fc_ls_disconnect_assoc(struct nvmefc_ls_rcv_op *lsop)
155514fd1e98SJames Smart {
155614fd1e98SJames Smart 	struct nvme_fc_rport *rport = lsop->rport;
155714fd1e98SJames Smart 	struct fcnvme_ls_disconnect_assoc_rqst *rqst =
155814fd1e98SJames Smart 					&lsop->rqstbuf->rq_dis_assoc;
155914fd1e98SJames Smart 	struct fcnvme_ls_disconnect_assoc_acc *acc =
156014fd1e98SJames Smart 					&lsop->rspbuf->rsp_dis_assoc;
156114fd1e98SJames Smart 	struct nvme_fc_ctrl *ctrl = NULL;
156214fd1e98SJames Smart 	int ret = 0;
156314fd1e98SJames Smart 
156414fd1e98SJames Smart 	memset(acc, 0, sizeof(*acc));
156514fd1e98SJames Smart 
156614fd1e98SJames Smart 	ret = nvmefc_vldt_lsreq_discon_assoc(lsop->rqstdatalen, rqst);
156714fd1e98SJames Smart 	if (!ret) {
156814fd1e98SJames Smart 		/* match an active association */
156914fd1e98SJames Smart 		ctrl = nvme_fc_match_disconn_ls(rport, lsop);
157014fd1e98SJames Smart 		if (!ctrl)
157114fd1e98SJames Smart 			ret = VERR_NO_ASSOC;
157214fd1e98SJames Smart 	}
157314fd1e98SJames Smart 
157414fd1e98SJames Smart 	if (ret) {
157514fd1e98SJames Smart 		dev_info(rport->lport->dev,
157614fd1e98SJames Smart 			"Disconnect LS failed: %s\n",
157714fd1e98SJames Smart 			validation_errors[ret]);
157814fd1e98SJames Smart 		lsop->lsrsp->rsplen = nvme_fc_format_rjt(acc,
157914fd1e98SJames Smart 					sizeof(*acc), rqst->w0.ls_cmd,
158014fd1e98SJames Smart 					(ret == VERR_NO_ASSOC) ?
158114fd1e98SJames Smart 						FCNVME_RJT_RC_INV_ASSOC :
158214fd1e98SJames Smart 						FCNVME_RJT_RC_LOGIC,
158314fd1e98SJames Smart 					FCNVME_RJT_EXP_NONE, 0);
158414fd1e98SJames Smart 		return true;
158514fd1e98SJames Smart 	}
158614fd1e98SJames Smart 
158714fd1e98SJames Smart 	/* format an ACCept response */
158814fd1e98SJames Smart 
158914fd1e98SJames Smart 	lsop->lsrsp->rsplen = sizeof(*acc);
159014fd1e98SJames Smart 
159114fd1e98SJames Smart 	nvme_fc_format_rsp_hdr(acc, FCNVME_LS_ACC,
159214fd1e98SJames Smart 			fcnvme_lsdesc_len(
159314fd1e98SJames Smart 				sizeof(struct fcnvme_ls_disconnect_assoc_acc)),
159414fd1e98SJames Smart 			FCNVME_LS_DISCONNECT_ASSOC);
159514fd1e98SJames Smart 
159614fd1e98SJames Smart 	/*
159714fd1e98SJames Smart 	 * the transmit of the response will occur after the exchanges
159814fd1e98SJames Smart 	 * for the association have been ABTS'd by
159914fd1e98SJames Smart 	 * nvme_fc_delete_association().
160014fd1e98SJames Smart 	 */
160114fd1e98SJames Smart 
160214fd1e98SJames Smart 	/* fail the association */
160314fd1e98SJames Smart 	nvme_fc_error_recovery(ctrl, "Disconnect Association LS received");
160414fd1e98SJames Smart 
160514fd1e98SJames Smart 	/* release the reference taken by nvme_fc_match_disconn_ls() */
160614fd1e98SJames Smart 	nvme_fc_ctrl_put(ctrl);
160714fd1e98SJames Smart 
160814fd1e98SJames Smart 	return false;
160914fd1e98SJames Smart }
161014fd1e98SJames Smart 
161114fd1e98SJames Smart /*
161214fd1e98SJames Smart  * Actual Processing routine for received FC-NVME LS Requests from the LLD
161314fd1e98SJames Smart  * returns true if a response should be sent afterward, false if rsp will
161414fd1e98SJames Smart  * be sent asynchronously.
161514fd1e98SJames Smart  */
161614fd1e98SJames Smart static bool
161714fd1e98SJames Smart nvme_fc_handle_ls_rqst(struct nvmefc_ls_rcv_op *lsop)
161814fd1e98SJames Smart {
161914fd1e98SJames Smart 	struct fcnvme_ls_rqst_w0 *w0 = &lsop->rqstbuf->w0;
162014fd1e98SJames Smart 	bool ret = true;
162114fd1e98SJames Smart 
162214fd1e98SJames Smart 	lsop->lsrsp->nvme_fc_private = lsop;
162314fd1e98SJames Smart 	lsop->lsrsp->rspbuf = lsop->rspbuf;
162414fd1e98SJames Smart 	lsop->lsrsp->rspdma = lsop->rspdma;
162514fd1e98SJames Smart 	lsop->lsrsp->done = nvme_fc_xmt_ls_rsp_done;
162614fd1e98SJames Smart 	/* Be preventative. handlers will later set to valid length */
162714fd1e98SJames Smart 	lsop->lsrsp->rsplen = 0;
162814fd1e98SJames Smart 
162914fd1e98SJames Smart 	/*
163014fd1e98SJames Smart 	 * handlers:
163114fd1e98SJames Smart 	 *   parse request input, execute the request, and format the
163214fd1e98SJames Smart 	 *   LS response
163314fd1e98SJames Smart 	 */
163414fd1e98SJames Smart 	switch (w0->ls_cmd) {
163514fd1e98SJames Smart 	case FCNVME_LS_DISCONNECT_ASSOC:
163614fd1e98SJames Smart 		ret = nvme_fc_ls_disconnect_assoc(lsop);
163714fd1e98SJames Smart 		break;
163814fd1e98SJames Smart 	case FCNVME_LS_DISCONNECT_CONN:
163914fd1e98SJames Smart 		lsop->lsrsp->rsplen = nvme_fc_format_rjt(lsop->rspbuf,
164014fd1e98SJames Smart 				sizeof(*lsop->rspbuf), w0->ls_cmd,
164114fd1e98SJames Smart 				FCNVME_RJT_RC_UNSUP, FCNVME_RJT_EXP_NONE, 0);
164214fd1e98SJames Smart 		break;
164314fd1e98SJames Smart 	case FCNVME_LS_CREATE_ASSOCIATION:
164414fd1e98SJames Smart 	case FCNVME_LS_CREATE_CONNECTION:
164514fd1e98SJames Smart 		lsop->lsrsp->rsplen = nvme_fc_format_rjt(lsop->rspbuf,
164614fd1e98SJames Smart 				sizeof(*lsop->rspbuf), w0->ls_cmd,
164714fd1e98SJames Smart 				FCNVME_RJT_RC_LOGIC, FCNVME_RJT_EXP_NONE, 0);
164814fd1e98SJames Smart 		break;
164914fd1e98SJames Smart 	default:
165014fd1e98SJames Smart 		lsop->lsrsp->rsplen = nvme_fc_format_rjt(lsop->rspbuf,
165114fd1e98SJames Smart 				sizeof(*lsop->rspbuf), w0->ls_cmd,
165214fd1e98SJames Smart 				FCNVME_RJT_RC_INVAL, FCNVME_RJT_EXP_NONE, 0);
165314fd1e98SJames Smart 		break;
165414fd1e98SJames Smart 	}
165514fd1e98SJames Smart 
165614fd1e98SJames Smart 	return(ret);
165714fd1e98SJames Smart }
165814fd1e98SJames Smart 
165914fd1e98SJames Smart static void
166014fd1e98SJames Smart nvme_fc_handle_ls_rqst_work(struct work_struct *work)
166114fd1e98SJames Smart {
166214fd1e98SJames Smart 	struct nvme_fc_rport *rport =
166314fd1e98SJames Smart 		container_of(work, struct nvme_fc_rport, lsrcv_work);
166414fd1e98SJames Smart 	struct fcnvme_ls_rqst_w0 *w0;
166514fd1e98SJames Smart 	struct nvmefc_ls_rcv_op *lsop;
166614fd1e98SJames Smart 	unsigned long flags;
166714fd1e98SJames Smart 	bool sendrsp;
166814fd1e98SJames Smart 
166914fd1e98SJames Smart restart:
167014fd1e98SJames Smart 	sendrsp = true;
167114fd1e98SJames Smart 	spin_lock_irqsave(&rport->lock, flags);
167214fd1e98SJames Smart 	list_for_each_entry(lsop, &rport->ls_rcv_list, lsrcv_list) {
167314fd1e98SJames Smart 		if (lsop->handled)
167414fd1e98SJames Smart 			continue;
167514fd1e98SJames Smart 
167614fd1e98SJames Smart 		lsop->handled = true;
167714fd1e98SJames Smart 		if (rport->remoteport.port_state == FC_OBJSTATE_ONLINE) {
167814fd1e98SJames Smart 			spin_unlock_irqrestore(&rport->lock, flags);
167914fd1e98SJames Smart 			sendrsp = nvme_fc_handle_ls_rqst(lsop);
168014fd1e98SJames Smart 		} else {
168114fd1e98SJames Smart 			spin_unlock_irqrestore(&rport->lock, flags);
168214fd1e98SJames Smart 			w0 = &lsop->rqstbuf->w0;
168314fd1e98SJames Smart 			lsop->lsrsp->rsplen = nvme_fc_format_rjt(
168414fd1e98SJames Smart 						lsop->rspbuf,
168514fd1e98SJames Smart 						sizeof(*lsop->rspbuf),
168614fd1e98SJames Smart 						w0->ls_cmd,
168714fd1e98SJames Smart 						FCNVME_RJT_RC_UNAB,
168814fd1e98SJames Smart 						FCNVME_RJT_EXP_NONE, 0);
168914fd1e98SJames Smart 		}
169014fd1e98SJames Smart 		if (sendrsp)
169114fd1e98SJames Smart 			nvme_fc_xmt_ls_rsp(lsop);
169214fd1e98SJames Smart 		goto restart;
169314fd1e98SJames Smart 	}
169414fd1e98SJames Smart 	spin_unlock_irqrestore(&rport->lock, flags);
169514fd1e98SJames Smart }
169614fd1e98SJames Smart 
169772e6329fSJames Smart /**
169872e6329fSJames Smart  * nvme_fc_rcv_ls_req - transport entry point called by an LLDD
169972e6329fSJames Smart  *                       upon the reception of a NVME LS request.
170072e6329fSJames Smart  *
170172e6329fSJames Smart  * The nvme-fc layer will copy payload to an internal structure for
170272e6329fSJames Smart  * processing.  As such, upon completion of the routine, the LLDD may
170372e6329fSJames Smart  * immediately free/reuse the LS request buffer passed in the call.
170472e6329fSJames Smart  *
170572e6329fSJames Smart  * If this routine returns error, the LLDD should abort the exchange.
170672e6329fSJames Smart  *
170772e6329fSJames Smart  * @remoteport: pointer to the (registered) remote port that the LS
170872e6329fSJames Smart  *              was received from. The remoteport is associated with
170972e6329fSJames Smart  *              a specific localport.
171072e6329fSJames Smart  * @lsrsp:      pointer to a nvmefc_ls_rsp response structure to be
171172e6329fSJames Smart  *              used to reference the exchange corresponding to the LS
171272e6329fSJames Smart  *              when issuing an ls response.
171372e6329fSJames Smart  * @lsreqbuf:   pointer to the buffer containing the LS Request
171472e6329fSJames Smart  * @lsreqbuf_len: length, in bytes, of the received LS request
171572e6329fSJames Smart  */
171672e6329fSJames Smart int
171772e6329fSJames Smart nvme_fc_rcv_ls_req(struct nvme_fc_remote_port *portptr,
171872e6329fSJames Smart 			struct nvmefc_ls_rsp *lsrsp,
171972e6329fSJames Smart 			void *lsreqbuf, u32 lsreqbuf_len)
172072e6329fSJames Smart {
172172e6329fSJames Smart 	struct nvme_fc_rport *rport = remoteport_to_rport(portptr);
172272e6329fSJames Smart 	struct nvme_fc_lport *lport = rport->lport;
172314fd1e98SJames Smart 	struct fcnvme_ls_rqst_w0 *w0 = (struct fcnvme_ls_rqst_w0 *)lsreqbuf;
172414fd1e98SJames Smart 	struct nvmefc_ls_rcv_op *lsop;
172514fd1e98SJames Smart 	unsigned long flags;
172614fd1e98SJames Smart 	int ret;
172714fd1e98SJames Smart 
172814fd1e98SJames Smart 	nvme_fc_rport_get(rport);
172972e6329fSJames Smart 
173072e6329fSJames Smart 	/* validate there's a routine to transmit a response */
173114fd1e98SJames Smart 	if (!lport->ops->xmt_ls_rsp) {
173214fd1e98SJames Smart 		dev_info(lport->dev,
173314fd1e98SJames Smart 			"RCV %s LS failed: no LLDD xmt_ls_rsp\n",
173414fd1e98SJames Smart 			(w0->ls_cmd <= NVME_FC_LAST_LS_CMD_VALUE) ?
173514fd1e98SJames Smart 				nvmefc_ls_names[w0->ls_cmd] : "");
173614fd1e98SJames Smart 		ret = -EINVAL;
173714fd1e98SJames Smart 		goto out_put;
173814fd1e98SJames Smart 	}
173914fd1e98SJames Smart 
174014fd1e98SJames Smart 	if (lsreqbuf_len > sizeof(union nvmefc_ls_requests)) {
174114fd1e98SJames Smart 		dev_info(lport->dev,
174214fd1e98SJames Smart 			"RCV %s LS failed: payload too large\n",
174314fd1e98SJames Smart 			(w0->ls_cmd <= NVME_FC_LAST_LS_CMD_VALUE) ?
174414fd1e98SJames Smart 				nvmefc_ls_names[w0->ls_cmd] : "");
174514fd1e98SJames Smart 		ret = -E2BIG;
174614fd1e98SJames Smart 		goto out_put;
174714fd1e98SJames Smart 	}
174814fd1e98SJames Smart 
174914fd1e98SJames Smart 	lsop = kzalloc(sizeof(*lsop) +
175014fd1e98SJames Smart 			sizeof(union nvmefc_ls_requests) +
175114fd1e98SJames Smart 			sizeof(union nvmefc_ls_responses),
175214fd1e98SJames Smart 			GFP_KERNEL);
175314fd1e98SJames Smart 	if (!lsop) {
175414fd1e98SJames Smart 		dev_info(lport->dev,
175514fd1e98SJames Smart 			"RCV %s LS failed: No memory\n",
175614fd1e98SJames Smart 			(w0->ls_cmd <= NVME_FC_LAST_LS_CMD_VALUE) ?
175714fd1e98SJames Smart 				nvmefc_ls_names[w0->ls_cmd] : "");
175814fd1e98SJames Smart 		ret = -ENOMEM;
175914fd1e98SJames Smart 		goto out_put;
176014fd1e98SJames Smart 	}
176114fd1e98SJames Smart 	lsop->rqstbuf = (union nvmefc_ls_requests *)&lsop[1];
176214fd1e98SJames Smart 	lsop->rspbuf = (union nvmefc_ls_responses *)&lsop->rqstbuf[1];
176314fd1e98SJames Smart 
176414fd1e98SJames Smart 	lsop->rspdma = fc_dma_map_single(lport->dev, lsop->rspbuf,
176514fd1e98SJames Smart 					sizeof(*lsop->rspbuf),
176614fd1e98SJames Smart 					DMA_TO_DEVICE);
176714fd1e98SJames Smart 	if (fc_dma_mapping_error(lport->dev, lsop->rspdma)) {
176814fd1e98SJames Smart 		dev_info(lport->dev,
176914fd1e98SJames Smart 			"RCV %s LS failed: DMA mapping failure\n",
177014fd1e98SJames Smart 			(w0->ls_cmd <= NVME_FC_LAST_LS_CMD_VALUE) ?
177114fd1e98SJames Smart 				nvmefc_ls_names[w0->ls_cmd] : "");
177214fd1e98SJames Smart 		ret = -EFAULT;
177314fd1e98SJames Smart 		goto out_free;
177414fd1e98SJames Smart 	}
177514fd1e98SJames Smart 
177614fd1e98SJames Smart 	lsop->rport = rport;
177714fd1e98SJames Smart 	lsop->lsrsp = lsrsp;
177814fd1e98SJames Smart 
177914fd1e98SJames Smart 	memcpy(lsop->rqstbuf, lsreqbuf, lsreqbuf_len);
178014fd1e98SJames Smart 	lsop->rqstdatalen = lsreqbuf_len;
178114fd1e98SJames Smart 
178214fd1e98SJames Smart 	spin_lock_irqsave(&rport->lock, flags);
178314fd1e98SJames Smart 	if (rport->remoteport.port_state != FC_OBJSTATE_ONLINE) {
178414fd1e98SJames Smart 		spin_unlock_irqrestore(&rport->lock, flags);
178514fd1e98SJames Smart 		ret = -ENOTCONN;
178614fd1e98SJames Smart 		goto out_unmap;
178714fd1e98SJames Smart 	}
178814fd1e98SJames Smart 	list_add_tail(&lsop->lsrcv_list, &rport->ls_rcv_list);
178914fd1e98SJames Smart 	spin_unlock_irqrestore(&rport->lock, flags);
179014fd1e98SJames Smart 
179114fd1e98SJames Smart 	schedule_work(&rport->lsrcv_work);
179272e6329fSJames Smart 
179372e6329fSJames Smart 	return 0;
179414fd1e98SJames Smart 
179514fd1e98SJames Smart out_unmap:
179614fd1e98SJames Smart 	fc_dma_unmap_single(lport->dev, lsop->rspdma,
179714fd1e98SJames Smart 			sizeof(*lsop->rspbuf), DMA_TO_DEVICE);
179814fd1e98SJames Smart out_free:
179914fd1e98SJames Smart 	kfree(lsop);
180014fd1e98SJames Smart out_put:
180114fd1e98SJames Smart 	nvme_fc_rport_put(rport);
180214fd1e98SJames Smart 	return ret;
180372e6329fSJames Smart }
180472e6329fSJames Smart EXPORT_SYMBOL_GPL(nvme_fc_rcv_ls_req);
180572e6329fSJames Smart 
1806e399441dSJames Smart 
1807e399441dSJames Smart /* *********************** NVME Ctrl Routines **************************** */
1808e399441dSJames Smart 
1809e399441dSJames Smart static void
1810e399441dSJames Smart __nvme_fc_exit_request(struct nvme_fc_ctrl *ctrl,
1811e399441dSJames Smart 		struct nvme_fc_fcp_op *op)
1812e399441dSJames Smart {
1813e399441dSJames Smart 	fc_dma_unmap_single(ctrl->lport->dev, op->fcp_req.rspdma,
1814e399441dSJames Smart 				sizeof(op->rsp_iu), DMA_FROM_DEVICE);
1815e399441dSJames Smart 	fc_dma_unmap_single(ctrl->lport->dev, op->fcp_req.cmddma,
1816e399441dSJames Smart 				sizeof(op->cmd_iu), DMA_TO_DEVICE);
1817e399441dSJames Smart 
1818e399441dSJames Smart 	atomic_set(&op->state, FCPOP_STATE_UNINIT);
1819e399441dSJames Smart }
1820e399441dSJames Smart 
1821e399441dSJames Smart static void
1822d6296d39SChristoph Hellwig nvme_fc_exit_request(struct blk_mq_tag_set *set, struct request *rq,
1823d6296d39SChristoph Hellwig 		unsigned int hctx_idx)
1824e399441dSJames Smart {
1825e399441dSJames Smart 	struct nvme_fc_fcp_op *op = blk_mq_rq_to_pdu(rq);
1826e399441dSJames Smart 
1827d6296d39SChristoph Hellwig 	return __nvme_fc_exit_request(set->driver_data, op);
1828e399441dSJames Smart }
1829e399441dSJames Smart 
183078a7ac26SJames Smart static int
183178a7ac26SJames Smart __nvme_fc_abort_op(struct nvme_fc_ctrl *ctrl, struct nvme_fc_fcp_op *op)
183278a7ac26SJames Smart {
18333efd6e8eSJames Smart 	unsigned long flags;
18343efd6e8eSJames Smart 	int opstate;
183578a7ac26SJames Smart 
18363efd6e8eSJames Smart 	spin_lock_irqsave(&ctrl->lock, flags);
18373efd6e8eSJames Smart 	opstate = atomic_xchg(&op->state, FCPOP_STATE_ABORTED);
18383efd6e8eSJames Smart 	if (opstate != FCPOP_STATE_ACTIVE)
18393efd6e8eSJames Smart 		atomic_set(&op->state, opstate);
184052793d62SJames Smart 	else if (test_bit(FCCTRL_TERMIO, &ctrl->flags)) {
184152793d62SJames Smart 		op->flags |= FCOP_FLAGS_TERMIO;
18423efd6e8eSJames Smart 		ctrl->iocnt++;
184352793d62SJames Smart 	}
18443efd6e8eSJames Smart 	spin_unlock_irqrestore(&ctrl->lock, flags);
18453efd6e8eSJames Smart 
18463efd6e8eSJames Smart 	if (opstate != FCPOP_STATE_ACTIVE)
184778a7ac26SJames Smart 		return -ECANCELED;
184878a7ac26SJames Smart 
184978a7ac26SJames Smart 	ctrl->lport->ops->fcp_abort(&ctrl->lport->localport,
185078a7ac26SJames Smart 					&ctrl->rport->remoteport,
185178a7ac26SJames Smart 					op->queue->lldd_handle,
185278a7ac26SJames Smart 					&op->fcp_req);
185378a7ac26SJames Smart 
185478a7ac26SJames Smart 	return 0;
185578a7ac26SJames Smart }
185678a7ac26SJames Smart 
1857e399441dSJames Smart static void
185878a7ac26SJames Smart nvme_fc_abort_aen_ops(struct nvme_fc_ctrl *ctrl)
1859e399441dSJames Smart {
1860e399441dSJames Smart 	struct nvme_fc_fcp_op *aen_op = ctrl->aen_ops;
18613efd6e8eSJames Smart 	int i;
1862e399441dSJames Smart 
18634cff280aSJames Smart 	/* ensure we've initialized the ops once */
18644cff280aSJames Smart 	if (!(aen_op->flags & FCOP_FLAGS_AEN))
18654cff280aSJames Smart 		return;
18664cff280aSJames Smart 
18673efd6e8eSJames Smart 	for (i = 0; i < NVME_NR_AEN_COMMANDS; i++, aen_op++)
18683efd6e8eSJames Smart 		__nvme_fc_abort_op(ctrl, aen_op);
186978a7ac26SJames Smart }
187078a7ac26SJames Smart 
1871c3aedd22SJames Smart static inline void
187278a7ac26SJames Smart __nvme_fc_fcpop_chk_teardowns(struct nvme_fc_ctrl *ctrl,
18733efd6e8eSJames Smart 		struct nvme_fc_fcp_op *op, int opstate)
187478a7ac26SJames Smart {
187578a7ac26SJames Smart 	unsigned long flags;
187678a7ac26SJames Smart 
1877c3aedd22SJames Smart 	if (opstate == FCPOP_STATE_ABORTED) {
187878a7ac26SJames Smart 		spin_lock_irqsave(&ctrl->lock, flags);
187952793d62SJames Smart 		if (test_bit(FCCTRL_TERMIO, &ctrl->flags) &&
188052793d62SJames Smart 		    op->flags & FCOP_FLAGS_TERMIO) {
188136715cf4SJames Smart 			if (!--ctrl->iocnt)
188236715cf4SJames Smart 				wake_up(&ctrl->ioabort_wait);
188336715cf4SJames Smart 		}
188478a7ac26SJames Smart 		spin_unlock_irqrestore(&ctrl->lock, flags);
1885c3aedd22SJames Smart 	}
188678a7ac26SJames Smart }
1887e399441dSJames Smart 
1888baee29acSChristoph Hellwig static void
1889e399441dSJames Smart nvme_fc_fcpio_done(struct nvmefc_fcp_req *req)
1890e399441dSJames Smart {
1891e399441dSJames Smart 	struct nvme_fc_fcp_op *op = fcp_req_to_fcp_op(req);
1892e399441dSJames Smart 	struct request *rq = op->rq;
1893e399441dSJames Smart 	struct nvmefc_fcp_req *freq = &op->fcp_req;
1894e399441dSJames Smart 	struct nvme_fc_ctrl *ctrl = op->ctrl;
1895e399441dSJames Smart 	struct nvme_fc_queue *queue = op->queue;
1896e399441dSJames Smart 	struct nvme_completion *cqe = &op->rsp_iu.cqe;
1897458f280dSJames Smart 	struct nvme_command *sqe = &op->cmd_iu.sqe;
1898d663b69fSChristoph Hellwig 	__le16 status = cpu_to_le16(NVME_SC_SUCCESS << 1);
189927fa9bc5SChristoph Hellwig 	union nvme_result result;
19000a02e39fSJames Smart 	bool terminate_assoc = true;
19013efd6e8eSJames Smart 	int opstate;
1902e399441dSJames Smart 
1903e399441dSJames Smart 	/*
1904e399441dSJames Smart 	 * WARNING:
1905e399441dSJames Smart 	 * The current linux implementation of a nvme controller
1906e399441dSJames Smart 	 * allocates a single tag set for all io queues and sizes
1907e399441dSJames Smart 	 * the io queues to fully hold all possible tags. Thus, the
1908e399441dSJames Smart 	 * implementation does not reference or care about the sqhd
1909e399441dSJames Smart 	 * value as it never needs to use the sqhd/sqtail pointers
1910e399441dSJames Smart 	 * for submission pacing.
1911e399441dSJames Smart 	 *
1912e399441dSJames Smart 	 * This affects the FC-NVME implementation in two ways:
1913e399441dSJames Smart 	 * 1) As the value doesn't matter, we don't need to waste
1914e399441dSJames Smart 	 *    cycles extracting it from ERSPs and stamping it in the
1915e399441dSJames Smart 	 *    cases where the transport fabricates CQEs on successful
1916e399441dSJames Smart 	 *    completions.
1917e399441dSJames Smart 	 * 2) The FC-NVME implementation requires that delivery of
1918e399441dSJames Smart 	 *    ERSP completions are to go back to the nvme layer in order
1919e399441dSJames Smart 	 *    relative to the rsn, such that the sqhd value will always
1920e399441dSJames Smart 	 *    be "in order" for the nvme layer. As the nvme layer in
1921e399441dSJames Smart 	 *    linux doesn't care about sqhd, there's no need to return
1922e399441dSJames Smart 	 *    them in order.
1923e399441dSJames Smart 	 *
1924e399441dSJames Smart 	 * Additionally:
1925e399441dSJames Smart 	 * As the core nvme layer in linux currently does not look at
1926e399441dSJames Smart 	 * every field in the cqe - in cases where the FC transport must
1927e399441dSJames Smart 	 * fabricate a CQE, the following fields will not be set as they
1928e399441dSJames Smart 	 * are not referenced:
1929e399441dSJames Smart 	 *      cqe.sqid,  cqe.sqhd,  cqe.command_id
1930f874d5d0SJames Smart 	 *
1931f874d5d0SJames Smart 	 * Failure or error of an individual i/o, in a transport
1932f874d5d0SJames Smart 	 * detected fashion unrelated to the nvme completion status,
1933f874d5d0SJames Smart 	 * potentially cause the initiator and target sides to get out
1934f874d5d0SJames Smart 	 * of sync on SQ head/tail (aka outstanding io count allowed).
1935f874d5d0SJames Smart 	 * Per FC-NVME spec, failure of an individual command requires
1936f874d5d0SJames Smart 	 * the connection to be terminated, which in turn requires the
1937f874d5d0SJames Smart 	 * association to be terminated.
1938e399441dSJames Smart 	 */
1939e399441dSJames Smart 
19403efd6e8eSJames Smart 	opstate = atomic_xchg(&op->state, FCPOP_STATE_COMPLETE);
19413efd6e8eSJames Smart 
1942e399441dSJames Smart 	fc_dma_sync_single_for_cpu(ctrl->lport->dev, op->fcp_req.rspdma,
1943e399441dSJames Smart 				sizeof(op->rsp_iu), DMA_FROM_DEVICE);
1944e399441dSJames Smart 
19453efd6e8eSJames Smart 	if (opstate == FCPOP_STATE_ABORTED)
194674bd8cbeSJames Smart 		status = cpu_to_le16(NVME_SC_HOST_PATH_ERROR << 1);
194774bd8cbeSJames Smart 	else if (freq->status) {
194874bd8cbeSJames Smart 		status = cpu_to_le16(NVME_SC_HOST_PATH_ERROR << 1);
194974bd8cbeSJames Smart 		dev_info(ctrl->ctrl.device,
195074bd8cbeSJames Smart 			"NVME-FC{%d}: io failed due to lldd error %d\n",
195174bd8cbeSJames Smart 			ctrl->cnum, freq->status);
195274bd8cbeSJames Smart 	}
1953e399441dSJames Smart 
1954e399441dSJames Smart 	/*
1955e399441dSJames Smart 	 * For the linux implementation, if we have an unsuccesful
1956e399441dSJames Smart 	 * status, they blk-mq layer can typically be called with the
1957e399441dSJames Smart 	 * non-zero status and the content of the cqe isn't important.
1958e399441dSJames Smart 	 */
1959e399441dSJames Smart 	if (status)
1960e399441dSJames Smart 		goto done;
1961e399441dSJames Smart 
1962e399441dSJames Smart 	/*
1963e399441dSJames Smart 	 * command completed successfully relative to the wire
1964e399441dSJames Smart 	 * protocol. However, validate anything received and
1965e399441dSJames Smart 	 * extract the status and result from the cqe (create it
1966e399441dSJames Smart 	 * where necessary).
1967e399441dSJames Smart 	 */
1968e399441dSJames Smart 
1969e399441dSJames Smart 	switch (freq->rcv_rsplen) {
1970e399441dSJames Smart 
1971e399441dSJames Smart 	case 0:
1972e399441dSJames Smart 	case NVME_FC_SIZEOF_ZEROS_RSP:
1973e399441dSJames Smart 		/*
1974e399441dSJames Smart 		 * No response payload or 12 bytes of payload (which
1975e399441dSJames Smart 		 * should all be zeros) are considered successful and
1976e399441dSJames Smart 		 * no payload in the CQE by the transport.
1977e399441dSJames Smart 		 */
1978e399441dSJames Smart 		if (freq->transferred_length !=
1979e399441dSJames Smart 		    be32_to_cpu(op->cmd_iu.data_len)) {
198074bd8cbeSJames Smart 			status = cpu_to_le16(NVME_SC_HOST_PATH_ERROR << 1);
198174bd8cbeSJames Smart 			dev_info(ctrl->ctrl.device,
198274bd8cbeSJames Smart 				"NVME-FC{%d}: io failed due to bad transfer "
198374bd8cbeSJames Smart 				"length: %d vs expected %d\n",
198474bd8cbeSJames Smart 				ctrl->cnum, freq->transferred_length,
198574bd8cbeSJames Smart 				be32_to_cpu(op->cmd_iu.data_len));
1986e399441dSJames Smart 			goto done;
1987e399441dSJames Smart 		}
198827fa9bc5SChristoph Hellwig 		result.u64 = 0;
1989e399441dSJames Smart 		break;
1990e399441dSJames Smart 
1991e399441dSJames Smart 	case sizeof(struct nvme_fc_ersp_iu):
1992e399441dSJames Smart 		/*
1993e399441dSJames Smart 		 * The ERSP IU contains a full completion with CQE.
1994e399441dSJames Smart 		 * Validate ERSP IU and look at cqe.
1995e399441dSJames Smart 		 */
1996e399441dSJames Smart 		if (unlikely(be16_to_cpu(op->rsp_iu.iu_len) !=
1997e399441dSJames Smart 					(freq->rcv_rsplen / 4) ||
1998e399441dSJames Smart 			     be32_to_cpu(op->rsp_iu.xfrd_len) !=
1999e399441dSJames Smart 					freq->transferred_length ||
200053b2b2f5SJames Smart 			     op->rsp_iu.ersp_result ||
2001458f280dSJames Smart 			     sqe->common.command_id != cqe->command_id)) {
200274bd8cbeSJames Smart 			status = cpu_to_le16(NVME_SC_HOST_PATH_ERROR << 1);
200374bd8cbeSJames Smart 			dev_info(ctrl->ctrl.device,
200474bd8cbeSJames Smart 				"NVME-FC{%d}: io failed due to bad NVMe_ERSP: "
200574bd8cbeSJames Smart 				"iu len %d, xfr len %d vs %d, status code "
200674bd8cbeSJames Smart 				"%d, cmdid %d vs %d\n",
200774bd8cbeSJames Smart 				ctrl->cnum, be16_to_cpu(op->rsp_iu.iu_len),
200874bd8cbeSJames Smart 				be32_to_cpu(op->rsp_iu.xfrd_len),
200974bd8cbeSJames Smart 				freq->transferred_length,
201053b2b2f5SJames Smart 				op->rsp_iu.ersp_result,
201174bd8cbeSJames Smart 				sqe->common.command_id,
201274bd8cbeSJames Smart 				cqe->command_id);
2013e399441dSJames Smart 			goto done;
2014e399441dSJames Smart 		}
201527fa9bc5SChristoph Hellwig 		result = cqe->result;
2016d663b69fSChristoph Hellwig 		status = cqe->status;
2017e399441dSJames Smart 		break;
2018e399441dSJames Smart 
2019e399441dSJames Smart 	default:
202074bd8cbeSJames Smart 		status = cpu_to_le16(NVME_SC_HOST_PATH_ERROR << 1);
202174bd8cbeSJames Smart 		dev_info(ctrl->ctrl.device,
202274bd8cbeSJames Smart 			"NVME-FC{%d}: io failed due to odd NVMe_xRSP iu "
202374bd8cbeSJames Smart 			"len %d\n",
202474bd8cbeSJames Smart 			ctrl->cnum, freq->rcv_rsplen);
2025e399441dSJames Smart 		goto done;
2026e399441dSJames Smart 	}
2027e399441dSJames Smart 
2028f874d5d0SJames Smart 	terminate_assoc = false;
2029f874d5d0SJames Smart 
2030e399441dSJames Smart done:
203178a7ac26SJames Smart 	if (op->flags & FCOP_FLAGS_AEN) {
203227fa9bc5SChristoph Hellwig 		nvme_complete_async_event(&queue->ctrl->ctrl, status, &result);
20333efd6e8eSJames Smart 		__nvme_fc_fcpop_chk_teardowns(ctrl, op, opstate);
203478a7ac26SJames Smart 		atomic_set(&op->state, FCPOP_STATE_IDLE);
203578a7ac26SJames Smart 		op->flags = FCOP_FLAGS_AEN;	/* clear other flags */
2036e399441dSJames Smart 		nvme_fc_ctrl_put(ctrl);
2037f874d5d0SJames Smart 		goto check_error;
2038e399441dSJames Smart 	}
2039e399441dSJames Smart 
2040c3aedd22SJames Smart 	__nvme_fc_fcpop_chk_teardowns(ctrl, op, opstate);
20412eb81a33SChristoph Hellwig 	if (!nvme_try_complete_req(rq, status, result))
2042ff029451SChristoph Hellwig 		nvme_fc_complete_rq(rq);
2043f874d5d0SJames Smart 
2044f874d5d0SJames Smart check_error:
2045f874d5d0SJames Smart 	if (terminate_assoc)
2046f874d5d0SJames Smart 		nvme_fc_error_recovery(ctrl, "transport detected io error");
2047e399441dSJames Smart }
2048e399441dSJames Smart 
2049e399441dSJames Smart static int
2050e399441dSJames Smart __nvme_fc_init_request(struct nvme_fc_ctrl *ctrl,
2051e399441dSJames Smart 		struct nvme_fc_queue *queue, struct nvme_fc_fcp_op *op,
2052e399441dSJames Smart 		struct request *rq, u32 rqno)
2053e399441dSJames Smart {
2054d3d0bc78SBart Van Assche 	struct nvme_fcp_op_w_sgl *op_w_sgl =
2055d3d0bc78SBart Van Assche 		container_of(op, typeof(*op_w_sgl), op);
2056e399441dSJames Smart 	struct nvme_fc_cmd_iu *cmdiu = &op->cmd_iu;
2057e399441dSJames Smart 	int ret = 0;
2058e399441dSJames Smart 
2059e399441dSJames Smart 	memset(op, 0, sizeof(*op));
2060e399441dSJames Smart 	op->fcp_req.cmdaddr = &op->cmd_iu;
2061e399441dSJames Smart 	op->fcp_req.cmdlen = sizeof(op->cmd_iu);
2062e399441dSJames Smart 	op->fcp_req.rspaddr = &op->rsp_iu;
2063e399441dSJames Smart 	op->fcp_req.rsplen = sizeof(op->rsp_iu);
2064e399441dSJames Smart 	op->fcp_req.done = nvme_fc_fcpio_done;
2065e399441dSJames Smart 	op->ctrl = ctrl;
2066e399441dSJames Smart 	op->queue = queue;
2067e399441dSJames Smart 	op->rq = rq;
2068e399441dSJames Smart 	op->rqno = rqno;
2069e399441dSJames Smart 
207053b2b2f5SJames Smart 	cmdiu->format_id = NVME_CMD_FORMAT_ID;
2071e399441dSJames Smart 	cmdiu->fc_id = NVME_CMD_FC_ID;
2072e399441dSJames Smart 	cmdiu->iu_len = cpu_to_be16(sizeof(*cmdiu) / sizeof(u32));
207344fbf3bbSJames Smart 	if (queue->qnum)
207444fbf3bbSJames Smart 		cmdiu->rsv_cat = fccmnd_set_cat_css(0,
207544fbf3bbSJames Smart 					(NVME_CC_CSS_NVM >> NVME_CC_CSS_SHIFT));
207644fbf3bbSJames Smart 	else
207744fbf3bbSJames Smart 		cmdiu->rsv_cat = fccmnd_set_cat_admin(0);
2078e399441dSJames Smart 
2079e399441dSJames Smart 	op->fcp_req.cmddma = fc_dma_map_single(ctrl->lport->dev,
2080e399441dSJames Smart 				&op->cmd_iu, sizeof(op->cmd_iu), DMA_TO_DEVICE);
2081e399441dSJames Smart 	if (fc_dma_mapping_error(ctrl->lport->dev, op->fcp_req.cmddma)) {
2082e399441dSJames Smart 		dev_err(ctrl->dev,
2083e399441dSJames Smart 			"FCP Op failed - cmdiu dma mapping failed.\n");
2084f34448cdSTianjia Zhang 		ret = -EFAULT;
2085e399441dSJames Smart 		goto out_on_error;
2086e399441dSJames Smart 	}
2087e399441dSJames Smart 
2088e399441dSJames Smart 	op->fcp_req.rspdma = fc_dma_map_single(ctrl->lport->dev,
2089e399441dSJames Smart 				&op->rsp_iu, sizeof(op->rsp_iu),
2090e399441dSJames Smart 				DMA_FROM_DEVICE);
2091e399441dSJames Smart 	if (fc_dma_mapping_error(ctrl->lport->dev, op->fcp_req.rspdma)) {
2092e399441dSJames Smart 		dev_err(ctrl->dev,
2093e399441dSJames Smart 			"FCP Op failed - rspiu dma mapping failed.\n");
2094f34448cdSTianjia Zhang 		ret = -EFAULT;
2095e399441dSJames Smart 	}
2096e399441dSJames Smart 
2097e399441dSJames Smart 	atomic_set(&op->state, FCPOP_STATE_IDLE);
2098e399441dSJames Smart out_on_error:
2099e399441dSJames Smart 	return ret;
2100e399441dSJames Smart }
2101e399441dSJames Smart 
2102e399441dSJames Smart static int
2103d6296d39SChristoph Hellwig nvme_fc_init_request(struct blk_mq_tag_set *set, struct request *rq,
2104d6296d39SChristoph Hellwig 		unsigned int hctx_idx, unsigned int numa_node)
2105e399441dSJames Smart {
2106d6296d39SChristoph Hellwig 	struct nvme_fc_ctrl *ctrl = set->driver_data;
2107d3d0bc78SBart Van Assche 	struct nvme_fcp_op_w_sgl *op = blk_mq_rq_to_pdu(rq);
210876f983cbSChristoph Hellwig 	int queue_idx = (set == &ctrl->tag_set) ? hctx_idx + 1 : 0;
210976f983cbSChristoph Hellwig 	struct nvme_fc_queue *queue = &ctrl->queues[queue_idx];
21100d2bdf9fSBart Van Assche 	int res;
2111e399441dSJames Smart 
21120d2bdf9fSBart Van Assche 	res = __nvme_fc_init_request(ctrl, queue, &op->op, rq, queue->rqcnt++);
21130d2bdf9fSBart Van Assche 	if (res)
21140d2bdf9fSBart Van Assche 		return res;
21153add1d93SArnd Bergmann 	op->op.fcp_req.first_sgl = op->sgl;
2116d19b8bc8SJames Smart 	op->op.fcp_req.private = &op->priv[0];
2117dfa74422SEwan D. Milne 	nvme_req(rq)->ctrl = &ctrl->ctrl;
21180d2bdf9fSBart Van Assche 	return res;
2119e399441dSJames Smart }
2120e399441dSJames Smart 
2121e399441dSJames Smart static int
2122e399441dSJames Smart nvme_fc_init_aen_ops(struct nvme_fc_ctrl *ctrl)
2123e399441dSJames Smart {
2124e399441dSJames Smart 	struct nvme_fc_fcp_op *aen_op;
2125e399441dSJames Smart 	struct nvme_fc_cmd_iu *cmdiu;
2126e399441dSJames Smart 	struct nvme_command *sqe;
2127f56bf76fSJames Smart 	void *private = NULL;
2128e399441dSJames Smart 	int i, ret;
2129e399441dSJames Smart 
2130e399441dSJames Smart 	aen_op = ctrl->aen_ops;
213138dabe21SKeith Busch 	for (i = 0; i < NVME_NR_AEN_COMMANDS; i++, aen_op++) {
2132f56bf76fSJames Smart 		if (ctrl->lport->ops->fcprqst_priv_sz) {
213361bff8efSJames Smart 			private = kzalloc(ctrl->lport->ops->fcprqst_priv_sz,
213461bff8efSJames Smart 						GFP_KERNEL);
213561bff8efSJames Smart 			if (!private)
213661bff8efSJames Smart 				return -ENOMEM;
2137f56bf76fSJames Smart 		}
213861bff8efSJames Smart 
2139e399441dSJames Smart 		cmdiu = &aen_op->cmd_iu;
2140e399441dSJames Smart 		sqe = &cmdiu->sqe;
2141e399441dSJames Smart 		ret = __nvme_fc_init_request(ctrl, &ctrl->queues[0],
2142e399441dSJames Smart 				aen_op, (struct request *)NULL,
214338dabe21SKeith Busch 				(NVME_AQ_BLK_MQ_DEPTH + i));
214461bff8efSJames Smart 		if (ret) {
214561bff8efSJames Smart 			kfree(private);
2146e399441dSJames Smart 			return ret;
214761bff8efSJames Smart 		}
2148e399441dSJames Smart 
214978a7ac26SJames Smart 		aen_op->flags = FCOP_FLAGS_AEN;
215061bff8efSJames Smart 		aen_op->fcp_req.private = private;
215178a7ac26SJames Smart 
2152e399441dSJames Smart 		memset(sqe, 0, sizeof(*sqe));
2153e399441dSJames Smart 		sqe->common.opcode = nvme_admin_async_event;
215478a7ac26SJames Smart 		/* Note: core layer may overwrite the sqe.command_id value */
215538dabe21SKeith Busch 		sqe->common.command_id = NVME_AQ_BLK_MQ_DEPTH + i;
2156e399441dSJames Smart 	}
2157e399441dSJames Smart 	return 0;
2158e399441dSJames Smart }
2159e399441dSJames Smart 
216061bff8efSJames Smart static void
216161bff8efSJames Smart nvme_fc_term_aen_ops(struct nvme_fc_ctrl *ctrl)
216261bff8efSJames Smart {
216361bff8efSJames Smart 	struct nvme_fc_fcp_op *aen_op;
216461bff8efSJames Smart 	int i;
216561bff8efSJames Smart 
2166e126e821SDavid Milburn 	cancel_work_sync(&ctrl->ctrl.async_event_work);
216761bff8efSJames Smart 	aen_op = ctrl->aen_ops;
216838dabe21SKeith Busch 	for (i = 0; i < NVME_NR_AEN_COMMANDS; i++, aen_op++) {
216961bff8efSJames Smart 		__nvme_fc_exit_request(ctrl, aen_op);
217061bff8efSJames Smart 
217161bff8efSJames Smart 		kfree(aen_op->fcp_req.private);
217261bff8efSJames Smart 		aen_op->fcp_req.private = NULL;
217361bff8efSJames Smart 	}
217461bff8efSJames Smart }
2175e399441dSJames Smart 
2176e399441dSJames Smart static inline void
2177e399441dSJames Smart __nvme_fc_init_hctx(struct blk_mq_hw_ctx *hctx, struct nvme_fc_ctrl *ctrl,
2178e399441dSJames Smart 		unsigned int qidx)
2179e399441dSJames Smart {
2180e399441dSJames Smart 	struct nvme_fc_queue *queue = &ctrl->queues[qidx];
2181e399441dSJames Smart 
2182e399441dSJames Smart 	hctx->driver_data = queue;
2183e399441dSJames Smart 	queue->hctx = hctx;
2184e399441dSJames Smart }
2185e399441dSJames Smart 
2186e399441dSJames Smart static int
2187e399441dSJames Smart nvme_fc_init_hctx(struct blk_mq_hw_ctx *hctx, void *data,
2188e399441dSJames Smart 		unsigned int hctx_idx)
2189e399441dSJames Smart {
2190e399441dSJames Smart 	struct nvme_fc_ctrl *ctrl = data;
2191e399441dSJames Smart 
2192e399441dSJames Smart 	__nvme_fc_init_hctx(hctx, ctrl, hctx_idx + 1);
2193e399441dSJames Smart 
2194e399441dSJames Smart 	return 0;
2195e399441dSJames Smart }
2196e399441dSJames Smart 
2197e399441dSJames Smart static int
2198e399441dSJames Smart nvme_fc_init_admin_hctx(struct blk_mq_hw_ctx *hctx, void *data,
2199e399441dSJames Smart 		unsigned int hctx_idx)
2200e399441dSJames Smart {
2201e399441dSJames Smart 	struct nvme_fc_ctrl *ctrl = data;
2202e399441dSJames Smart 
2203e399441dSJames Smart 	__nvme_fc_init_hctx(hctx, ctrl, hctx_idx);
2204e399441dSJames Smart 
2205e399441dSJames Smart 	return 0;
2206e399441dSJames Smart }
2207e399441dSJames Smart 
2208e399441dSJames Smart static void
220908e15075SKeith Busch nvme_fc_init_queue(struct nvme_fc_ctrl *ctrl, int idx)
2210e399441dSJames Smart {
2211e399441dSJames Smart 	struct nvme_fc_queue *queue;
2212e399441dSJames Smart 
2213e399441dSJames Smart 	queue = &ctrl->queues[idx];
2214e399441dSJames Smart 	memset(queue, 0, sizeof(*queue));
2215e399441dSJames Smart 	queue->ctrl = ctrl;
2216e399441dSJames Smart 	queue->qnum = idx;
221767f471b6SJames Smart 	atomic_set(&queue->csn, 0);
2218e399441dSJames Smart 	queue->dev = ctrl->dev;
2219e399441dSJames Smart 
2220e399441dSJames Smart 	if (idx > 0)
2221e399441dSJames Smart 		queue->cmnd_capsule_len = ctrl->ctrl.ioccsz * 16;
2222e399441dSJames Smart 	else
2223e399441dSJames Smart 		queue->cmnd_capsule_len = sizeof(struct nvme_command);
2224e399441dSJames Smart 
2225e399441dSJames Smart 	/*
2226e399441dSJames Smart 	 * Considered whether we should allocate buffers for all SQEs
2227e399441dSJames Smart 	 * and CQEs and dma map them - mapping their respective entries
2228e399441dSJames Smart 	 * into the request structures (kernel vm addr and dma address)
2229e399441dSJames Smart 	 * thus the driver could use the buffers/mappings directly.
2230e399441dSJames Smart 	 * It only makes sense if the LLDD would use them for its
2231e399441dSJames Smart 	 * messaging api. It's very unlikely most adapter api's would use
2232e399441dSJames Smart 	 * a native NVME sqe/cqe. More reasonable if FC-NVME IU payload
2233e399441dSJames Smart 	 * structures were used instead.
2234e399441dSJames Smart 	 */
2235e399441dSJames Smart }
2236e399441dSJames Smart 
2237e399441dSJames Smart /*
2238e399441dSJames Smart  * This routine terminates a queue at the transport level.
2239e399441dSJames Smart  * The transport has already ensured that all outstanding ios on
2240e399441dSJames Smart  * the queue have been terminated.
2241e399441dSJames Smart  * The transport will send a Disconnect LS request to terminate
2242e399441dSJames Smart  * the queue's connection. Termination of the admin queue will also
2243e399441dSJames Smart  * terminate the association at the target.
2244e399441dSJames Smart  */
2245e399441dSJames Smart static void
2246e399441dSJames Smart nvme_fc_free_queue(struct nvme_fc_queue *queue)
2247e399441dSJames Smart {
2248e399441dSJames Smart 	if (!test_and_clear_bit(NVME_FC_Q_CONNECTED, &queue->flags))
2249e399441dSJames Smart 		return;
2250e399441dSJames Smart 
22519e0ed16aSSagi Grimberg 	clear_bit(NVME_FC_Q_LIVE, &queue->flags);
2252e399441dSJames Smart 	/*
2253e399441dSJames Smart 	 * Current implementation never disconnects a single queue.
2254e399441dSJames Smart 	 * It always terminates a whole association. So there is never
2255e399441dSJames Smart 	 * a disconnect(queue) LS sent to the target.
2256e399441dSJames Smart 	 */
2257e399441dSJames Smart 
2258e399441dSJames Smart 	queue->connection_id = 0;
225967f471b6SJames Smart 	atomic_set(&queue->csn, 0);
2260e399441dSJames Smart }
2261e399441dSJames Smart 
2262e399441dSJames Smart static void
2263e399441dSJames Smart __nvme_fc_delete_hw_queue(struct nvme_fc_ctrl *ctrl,
2264e399441dSJames Smart 	struct nvme_fc_queue *queue, unsigned int qidx)
2265e399441dSJames Smart {
2266e399441dSJames Smart 	if (ctrl->lport->ops->delete_queue)
2267e399441dSJames Smart 		ctrl->lport->ops->delete_queue(&ctrl->lport->localport, qidx,
2268e399441dSJames Smart 				queue->lldd_handle);
2269e399441dSJames Smart 	queue->lldd_handle = NULL;
2270e399441dSJames Smart }
2271e399441dSJames Smart 
2272e399441dSJames Smart static void
2273e399441dSJames Smart nvme_fc_free_io_queues(struct nvme_fc_ctrl *ctrl)
2274e399441dSJames Smart {
2275e399441dSJames Smart 	int i;
2276e399441dSJames Smart 
2277d858e5f0SSagi Grimberg 	for (i = 1; i < ctrl->ctrl.queue_count; i++)
2278e399441dSJames Smart 		nvme_fc_free_queue(&ctrl->queues[i]);
2279e399441dSJames Smart }
2280e399441dSJames Smart 
2281e399441dSJames Smart static int
2282e399441dSJames Smart __nvme_fc_create_hw_queue(struct nvme_fc_ctrl *ctrl,
2283e399441dSJames Smart 	struct nvme_fc_queue *queue, unsigned int qidx, u16 qsize)
2284e399441dSJames Smart {
2285e399441dSJames Smart 	int ret = 0;
2286e399441dSJames Smart 
2287e399441dSJames Smart 	queue->lldd_handle = NULL;
2288e399441dSJames Smart 	if (ctrl->lport->ops->create_queue)
2289e399441dSJames Smart 		ret = ctrl->lport->ops->create_queue(&ctrl->lport->localport,
2290e399441dSJames Smart 				qidx, qsize, &queue->lldd_handle);
2291e399441dSJames Smart 
2292e399441dSJames Smart 	return ret;
2293e399441dSJames Smart }
2294e399441dSJames Smart 
2295e399441dSJames Smart static void
2296e399441dSJames Smart nvme_fc_delete_hw_io_queues(struct nvme_fc_ctrl *ctrl)
2297e399441dSJames Smart {
2298d858e5f0SSagi Grimberg 	struct nvme_fc_queue *queue = &ctrl->queues[ctrl->ctrl.queue_count - 1];
2299e399441dSJames Smart 	int i;
2300e399441dSJames Smart 
2301d858e5f0SSagi Grimberg 	for (i = ctrl->ctrl.queue_count - 1; i >= 1; i--, queue--)
2302e399441dSJames Smart 		__nvme_fc_delete_hw_queue(ctrl, queue, i);
2303e399441dSJames Smart }
2304e399441dSJames Smart 
2305e399441dSJames Smart static int
2306e399441dSJames Smart nvme_fc_create_hw_io_queues(struct nvme_fc_ctrl *ctrl, u16 qsize)
2307e399441dSJames Smart {
2308e399441dSJames Smart 	struct nvme_fc_queue *queue = &ctrl->queues[1];
230917a1ec08SJohannes Thumshirn 	int i, ret;
2310e399441dSJames Smart 
2311d858e5f0SSagi Grimberg 	for (i = 1; i < ctrl->ctrl.queue_count; i++, queue++) {
2312e399441dSJames Smart 		ret = __nvme_fc_create_hw_queue(ctrl, queue, i, qsize);
231317a1ec08SJohannes Thumshirn 		if (ret)
231417a1ec08SJohannes Thumshirn 			goto delete_queues;
2315e399441dSJames Smart 	}
2316e399441dSJames Smart 
2317e399441dSJames Smart 	return 0;
231817a1ec08SJohannes Thumshirn 
231917a1ec08SJohannes Thumshirn delete_queues:
2320514a6dc9SJames Smart 	for (; i > 0; i--)
232117a1ec08SJohannes Thumshirn 		__nvme_fc_delete_hw_queue(ctrl, &ctrl->queues[i], i);
232217a1ec08SJohannes Thumshirn 	return ret;
2323e399441dSJames Smart }
2324e399441dSJames Smart 
2325e399441dSJames Smart static int
2326e399441dSJames Smart nvme_fc_connect_io_queues(struct nvme_fc_ctrl *ctrl, u16 qsize)
2327e399441dSJames Smart {
2328e399441dSJames Smart 	int i, ret = 0;
2329e399441dSJames Smart 
2330d858e5f0SSagi Grimberg 	for (i = 1; i < ctrl->ctrl.queue_count; i++) {
2331e399441dSJames Smart 		ret = nvme_fc_connect_queue(ctrl, &ctrl->queues[i], qsize,
2332e399441dSJames Smart 					(qsize / 5));
2333e399441dSJames Smart 		if (ret)
2334e399441dSJames Smart 			break;
233526c68227SSagi Grimberg 		ret = nvmf_connect_io_queue(&ctrl->ctrl, i, false);
2336e399441dSJames Smart 		if (ret)
2337e399441dSJames Smart 			break;
23389e0ed16aSSagi Grimberg 
23399e0ed16aSSagi Grimberg 		set_bit(NVME_FC_Q_LIVE, &ctrl->queues[i].flags);
2340e399441dSJames Smart 	}
2341e399441dSJames Smart 
2342e399441dSJames Smart 	return ret;
2343e399441dSJames Smart }
2344e399441dSJames Smart 
2345e399441dSJames Smart static void
2346e399441dSJames Smart nvme_fc_init_io_queues(struct nvme_fc_ctrl *ctrl)
2347e399441dSJames Smart {
2348e399441dSJames Smart 	int i;
2349e399441dSJames Smart 
2350d858e5f0SSagi Grimberg 	for (i = 1; i < ctrl->ctrl.queue_count; i++)
235108e15075SKeith Busch 		nvme_fc_init_queue(ctrl, i);
2352e399441dSJames Smart }
2353e399441dSJames Smart 
2354e399441dSJames Smart static void
2355e399441dSJames Smart nvme_fc_ctrl_free(struct kref *ref)
2356e399441dSJames Smart {
2357e399441dSJames Smart 	struct nvme_fc_ctrl *ctrl =
2358e399441dSJames Smart 		container_of(ref, struct nvme_fc_ctrl, ref);
2359e399441dSJames Smart 	unsigned long flags;
2360e399441dSJames Smart 
236161bff8efSJames Smart 	if (ctrl->ctrl.tagset) {
236261bff8efSJames Smart 		blk_cleanup_queue(ctrl->ctrl.connect_q);
236361bff8efSJames Smart 		blk_mq_free_tag_set(&ctrl->tag_set);
236461bff8efSJames Smart 	}
236561bff8efSJames Smart 
2366e399441dSJames Smart 	/* remove from rport list */
2367e399441dSJames Smart 	spin_lock_irqsave(&ctrl->rport->lock, flags);
2368e399441dSJames Smart 	list_del(&ctrl->ctrl_list);
2369e399441dSJames Smart 	spin_unlock_irqrestore(&ctrl->rport->lock, flags);
237061bff8efSJames Smart 
2371f9c5af5fSSagi Grimberg 	blk_mq_unquiesce_queue(ctrl->ctrl.admin_q);
237261bff8efSJames Smart 	blk_cleanup_queue(ctrl->ctrl.admin_q);
2373e7832cb4SSagi Grimberg 	blk_cleanup_queue(ctrl->ctrl.fabrics_q);
237461bff8efSJames Smart 	blk_mq_free_tag_set(&ctrl->admin_tag_set);
237561bff8efSJames Smart 
237661bff8efSJames Smart 	kfree(ctrl->queues);
2377e399441dSJames Smart 
2378e399441dSJames Smart 	put_device(ctrl->dev);
2379e399441dSJames Smart 	nvme_fc_rport_put(ctrl->rport);
2380e399441dSJames Smart 
2381e399441dSJames Smart 	ida_simple_remove(&nvme_fc_ctrl_cnt, ctrl->cnum);
2382de41447aSEwan D. Milne 	if (ctrl->ctrl.opts)
2383e399441dSJames Smart 		nvmf_free_options(ctrl->ctrl.opts);
2384e399441dSJames Smart 	kfree(ctrl);
2385e399441dSJames Smart }
2386e399441dSJames Smart 
2387e399441dSJames Smart static void
2388e399441dSJames Smart nvme_fc_ctrl_put(struct nvme_fc_ctrl *ctrl)
2389e399441dSJames Smart {
2390e399441dSJames Smart 	kref_put(&ctrl->ref, nvme_fc_ctrl_free);
2391e399441dSJames Smart }
2392e399441dSJames Smart 
2393e399441dSJames Smart static int
2394e399441dSJames Smart nvme_fc_ctrl_get(struct nvme_fc_ctrl *ctrl)
2395e399441dSJames Smart {
2396e399441dSJames Smart 	return kref_get_unless_zero(&ctrl->ref);
2397e399441dSJames Smart }
2398e399441dSJames Smart 
2399e399441dSJames Smart /*
2400e399441dSJames Smart  * All accesses from nvme core layer done - can now free the
2401e399441dSJames Smart  * controller. Called after last nvme_put_ctrl() call
2402e399441dSJames Smart  */
2403e399441dSJames Smart static void
240461bff8efSJames Smart nvme_fc_nvme_ctrl_freed(struct nvme_ctrl *nctrl)
2405e399441dSJames Smart {
2406e399441dSJames Smart 	struct nvme_fc_ctrl *ctrl = to_fc_ctrl(nctrl);
2407e399441dSJames Smart 
2408e399441dSJames Smart 	WARN_ON(nctrl != &ctrl->ctrl);
2409e399441dSJames Smart 
2410e399441dSJames Smart 	nvme_fc_ctrl_put(ctrl);
2411e399441dSJames Smart }
2412e399441dSJames Smart 
241361bff8efSJames Smart static void
241461bff8efSJames Smart nvme_fc_error_recovery(struct nvme_fc_ctrl *ctrl, char *errmsg)
241561bff8efSJames Smart {
24164cff280aSJames Smart 	int active;
24174cff280aSJames Smart 
24184cff280aSJames Smart 	/*
24194cff280aSJames Smart 	 * if an error (io timeout, etc) while (re)connecting,
24204cff280aSJames Smart 	 * it's an error on creating the new association.
24214cff280aSJames Smart 	 * Start the error recovery thread if it hasn't already
24224cff280aSJames Smart 	 * been started. It is expected there could be multiple
24234cff280aSJames Smart 	 * ios hitting this path before things are cleaned up.
24244cff280aSJames Smart 	 */
24254cff280aSJames Smart 	if (ctrl->ctrl.state == NVME_CTRL_CONNECTING) {
24264cff280aSJames Smart 		active = atomic_xchg(&ctrl->err_work_active, 1);
24278730c1ddSHannes Reinecke 		if (!active && !queue_work(nvme_fc_wq, &ctrl->err_work)) {
24284cff280aSJames Smart 			atomic_set(&ctrl->err_work_active, 0);
24294cff280aSJames Smart 			WARN_ON(1);
24304cff280aSJames Smart 		}
24314cff280aSJames Smart 		return;
24324cff280aSJames Smart 	}
24334cff280aSJames Smart 
24344cff280aSJames Smart 	/* Otherwise, only proceed if in LIVE state - e.g. on first error */
243569fa9646SJames Smart 	if (ctrl->ctrl.state != NVME_CTRL_LIVE)
243669fa9646SJames Smart 		return;
243769fa9646SJames Smart 
243861bff8efSJames Smart 	dev_warn(ctrl->ctrl.device,
2439514a6dc9SJames Smart 		"NVME-FC{%d}: transport association event: %s\n",
244061bff8efSJames Smart 		ctrl->cnum, errmsg);
2441589ff775SJames Smart 	dev_warn(ctrl->ctrl.device,
244261bff8efSJames Smart 		"NVME-FC{%d}: resetting controller\n", ctrl->cnum);
244361bff8efSJames Smart 
2444d86c4d8eSChristoph Hellwig 	nvme_reset_ctrl(&ctrl->ctrl);
244561bff8efSJames Smart }
244661bff8efSJames Smart 
2447baee29acSChristoph Hellwig static enum blk_eh_timer_return
2448e399441dSJames Smart nvme_fc_timeout(struct request *rq, bool reserved)
2449e399441dSJames Smart {
2450e399441dSJames Smart 	struct nvme_fc_fcp_op *op = blk_mq_rq_to_pdu(rq);
2451e399441dSJames Smart 	struct nvme_fc_ctrl *ctrl = op->ctrl;
245252793d62SJames Smart 	struct nvme_fc_cmd_iu *cmdiu = &op->cmd_iu;
245352793d62SJames Smart 	struct nvme_command *sqe = &cmdiu->sqe;
2454e399441dSJames Smart 
2455e399441dSJames Smart 	/*
245652793d62SJames Smart 	 * Attempt to abort the offending command. Command completion
245752793d62SJames Smart 	 * will detect the aborted io and will fail the connection.
2458e399441dSJames Smart 	 */
245952793d62SJames Smart 	dev_info(ctrl->ctrl.device,
246052793d62SJames Smart 		"NVME-FC{%d.%d}: io timeout: opcode %d fctype %d w10/11: "
246152793d62SJames Smart 		"x%08x/x%08x\n",
246252793d62SJames Smart 		ctrl->cnum, op->queue->qnum, sqe->common.opcode,
246352793d62SJames Smart 		sqe->connect.fctype, sqe->common.cdw10, sqe->common.cdw11);
246452793d62SJames Smart 	if (__nvme_fc_abort_op(ctrl, op))
246552793d62SJames Smart 		nvme_fc_error_recovery(ctrl, "io timeout abort failed");
2466e399441dSJames Smart 
2467134aedc9SJames Smart 	/*
2468134aedc9SJames Smart 	 * the io abort has been initiated. Have the reset timer
2469134aedc9SJames Smart 	 * restarted and the abort completion will complete the io
2470134aedc9SJames Smart 	 * shortly. Avoids a synchronous wait while the abort finishes.
2471134aedc9SJames Smart 	 */
2472134aedc9SJames Smart 	return BLK_EH_RESET_TIMER;
2473e399441dSJames Smart }
2474e399441dSJames Smart 
2475e399441dSJames Smart static int
2476e399441dSJames Smart nvme_fc_map_data(struct nvme_fc_ctrl *ctrl, struct request *rq,
2477e399441dSJames Smart 		struct nvme_fc_fcp_op *op)
2478e399441dSJames Smart {
2479e399441dSJames Smart 	struct nvmefc_fcp_req *freq = &op->fcp_req;
2480e399441dSJames Smart 	int ret;
2481e399441dSJames Smart 
2482e399441dSJames Smart 	freq->sg_cnt = 0;
2483e399441dSJames Smart 
24849f7d8ae2SJames Smart 	if (!blk_rq_nr_phys_segments(rq))
2485e399441dSJames Smart 		return 0;
2486e399441dSJames Smart 
2487e399441dSJames Smart 	freq->sg_table.sgl = freq->first_sgl;
248819e420bbSChristoph Hellwig 	ret = sg_alloc_table_chained(&freq->sg_table,
24894635873cSMing Lei 			blk_rq_nr_phys_segments(rq), freq->sg_table.sgl,
2490b1ae1a23SIsrael Rukshin 			NVME_INLINE_SG_CNT);
2491e399441dSJames Smart 	if (ret)
2492e399441dSJames Smart 		return -ENOMEM;
2493e399441dSJames Smart 
2494e399441dSJames Smart 	op->nents = blk_rq_map_sg(rq->q, rq, freq->sg_table.sgl);
249519e420bbSChristoph Hellwig 	WARN_ON(op->nents > blk_rq_nr_phys_segments(rq));
2496e399441dSJames Smart 	freq->sg_cnt = fc_dma_map_sg(ctrl->lport->dev, freq->sg_table.sgl,
2497f15872c5SIsrael Rukshin 				op->nents, rq_dma_dir(rq));
2498e399441dSJames Smart 	if (unlikely(freq->sg_cnt <= 0)) {
2499b1ae1a23SIsrael Rukshin 		sg_free_table_chained(&freq->sg_table, NVME_INLINE_SG_CNT);
2500e399441dSJames Smart 		freq->sg_cnt = 0;
2501e399441dSJames Smart 		return -EFAULT;
2502e399441dSJames Smart 	}
2503e399441dSJames Smart 
2504e399441dSJames Smart 	/*
2505e399441dSJames Smart 	 * TODO: blk_integrity_rq(rq)  for DIF
2506e399441dSJames Smart 	 */
2507e399441dSJames Smart 	return 0;
2508e399441dSJames Smart }
2509e399441dSJames Smart 
2510e399441dSJames Smart static void
2511e399441dSJames Smart nvme_fc_unmap_data(struct nvme_fc_ctrl *ctrl, struct request *rq,
2512e399441dSJames Smart 		struct nvme_fc_fcp_op *op)
2513e399441dSJames Smart {
2514e399441dSJames Smart 	struct nvmefc_fcp_req *freq = &op->fcp_req;
2515e399441dSJames Smart 
2516e399441dSJames Smart 	if (!freq->sg_cnt)
2517e399441dSJames Smart 		return;
2518e399441dSJames Smart 
2519e399441dSJames Smart 	fc_dma_unmap_sg(ctrl->lport->dev, freq->sg_table.sgl, op->nents,
2520f15872c5SIsrael Rukshin 			rq_dma_dir(rq));
2521e399441dSJames Smart 
2522b1ae1a23SIsrael Rukshin 	sg_free_table_chained(&freq->sg_table, NVME_INLINE_SG_CNT);
2523e399441dSJames Smart 
2524e399441dSJames Smart 	freq->sg_cnt = 0;
2525e399441dSJames Smart }
2526e399441dSJames Smart 
2527e399441dSJames Smart /*
2528e399441dSJames Smart  * In FC, the queue is a logical thing. At transport connect, the target
2529e399441dSJames Smart  * creates its "queue" and returns a handle that is to be given to the
2530e399441dSJames Smart  * target whenever it posts something to the corresponding SQ.  When an
2531e399441dSJames Smart  * SQE is sent on a SQ, FC effectively considers the SQE, or rather the
2532e399441dSJames Smart  * command contained within the SQE, an io, and assigns a FC exchange
2533e399441dSJames Smart  * to it. The SQE and the associated SQ handle are sent in the initial
2534e399441dSJames Smart  * CMD IU sents on the exchange. All transfers relative to the io occur
2535e399441dSJames Smart  * as part of the exchange.  The CQE is the last thing for the io,
2536e399441dSJames Smart  * which is transferred (explicitly or implicitly) with the RSP IU
2537e399441dSJames Smart  * sent on the exchange. After the CQE is received, the FC exchange is
2538e399441dSJames Smart  * terminaed and the Exchange may be used on a different io.
2539e399441dSJames Smart  *
2540e399441dSJames Smart  * The transport to LLDD api has the transport making a request for a
2541e399441dSJames Smart  * new fcp io request to the LLDD. The LLDD then allocates a FC exchange
2542e399441dSJames Smart  * resource and transfers the command. The LLDD will then process all
2543e399441dSJames Smart  * steps to complete the io. Upon completion, the transport done routine
2544e399441dSJames Smart  * is called.
2545e399441dSJames Smart  *
2546e399441dSJames Smart  * So - while the operation is outstanding to the LLDD, there is a link
2547e399441dSJames Smart  * level FC exchange resource that is also outstanding. This must be
2548e399441dSJames Smart  * considered in all cleanup operations.
2549e399441dSJames Smart  */
2550fc17b653SChristoph Hellwig static blk_status_t
2551e399441dSJames Smart nvme_fc_start_fcp_op(struct nvme_fc_ctrl *ctrl, struct nvme_fc_queue *queue,
2552e399441dSJames Smart 	struct nvme_fc_fcp_op *op, u32 data_len,
2553e399441dSJames Smart 	enum nvmefc_fcp_datadir	io_dir)
2554e399441dSJames Smart {
2555e399441dSJames Smart 	struct nvme_fc_cmd_iu *cmdiu = &op->cmd_iu;
2556e399441dSJames Smart 	struct nvme_command *sqe = &cmdiu->sqe;
2557b12740d3SJames Smart 	int ret, opstate;
2558e399441dSJames Smart 
255961bff8efSJames Smart 	/*
256061bff8efSJames Smart 	 * before attempting to send the io, check to see if we believe
256161bff8efSJames Smart 	 * the target device is present
256261bff8efSJames Smart 	 */
256361bff8efSJames Smart 	if (ctrl->rport->remoteport.port_state != FC_OBJSTATE_ONLINE)
256486ff7c2aSMing Lei 		return BLK_STS_RESOURCE;
256561bff8efSJames Smart 
2566e399441dSJames Smart 	if (!nvme_fc_ctrl_get(ctrl))
2567fc17b653SChristoph Hellwig 		return BLK_STS_IOERR;
2568e399441dSJames Smart 
2569e399441dSJames Smart 	/* format the FC-NVME CMD IU and fcp_req */
2570e399441dSJames Smart 	cmdiu->connection_id = cpu_to_be64(queue->connection_id);
2571e399441dSJames Smart 	cmdiu->data_len = cpu_to_be32(data_len);
2572e399441dSJames Smart 	switch (io_dir) {
2573e399441dSJames Smart 	case NVMEFC_FCP_WRITE:
2574e399441dSJames Smart 		cmdiu->flags = FCNVME_CMD_FLAGS_WRITE;
2575e399441dSJames Smart 		break;
2576e399441dSJames Smart 	case NVMEFC_FCP_READ:
2577e399441dSJames Smart 		cmdiu->flags = FCNVME_CMD_FLAGS_READ;
2578e399441dSJames Smart 		break;
2579e399441dSJames Smart 	case NVMEFC_FCP_NODATA:
2580e399441dSJames Smart 		cmdiu->flags = 0;
2581e399441dSJames Smart 		break;
2582e399441dSJames Smart 	}
2583e399441dSJames Smart 	op->fcp_req.payload_length = data_len;
2584e399441dSJames Smart 	op->fcp_req.io_dir = io_dir;
2585e399441dSJames Smart 	op->fcp_req.transferred_length = 0;
2586e399441dSJames Smart 	op->fcp_req.rcv_rsplen = 0;
258762eeacb0SJames Smart 	op->fcp_req.status = NVME_SC_SUCCESS;
2588e399441dSJames Smart 	op->fcp_req.sqid = cpu_to_le16(queue->qnum);
2589e399441dSJames Smart 
2590e399441dSJames Smart 	/*
2591e399441dSJames Smart 	 * validate per fabric rules, set fields mandated by fabric spec
2592e399441dSJames Smart 	 * as well as those by FC-NVME spec.
2593e399441dSJames Smart 	 */
2594e399441dSJames Smart 	WARN_ON_ONCE(sqe->common.metadata);
2595e399441dSJames Smart 	sqe->common.flags |= NVME_CMD_SGL_METABUF;
2596e399441dSJames Smart 
2597e399441dSJames Smart 	/*
2598d9d34c0bSJames Smart 	 * format SQE DPTR field per FC-NVME rules:
2599d9d34c0bSJames Smart 	 *    type=0x5     Transport SGL Data Block Descriptor
2600d9d34c0bSJames Smart 	 *    subtype=0xA  Transport-specific value
2601d9d34c0bSJames Smart 	 *    address=0
2602d9d34c0bSJames Smart 	 *    length=length of the data series
2603e399441dSJames Smart 	 */
2604d9d34c0bSJames Smart 	sqe->rw.dptr.sgl.type = (NVME_TRANSPORT_SGL_DATA_DESC << 4) |
2605d9d34c0bSJames Smart 					NVME_SGL_FMT_TRANSPORT_A;
2606e399441dSJames Smart 	sqe->rw.dptr.sgl.length = cpu_to_le32(data_len);
2607e399441dSJames Smart 	sqe->rw.dptr.sgl.addr = 0;
2608e399441dSJames Smart 
260978a7ac26SJames Smart 	if (!(op->flags & FCOP_FLAGS_AEN)) {
2610e399441dSJames Smart 		ret = nvme_fc_map_data(ctrl, op->rq, op);
2611e399441dSJames Smart 		if (ret < 0) {
2612e399441dSJames Smart 			nvme_cleanup_cmd(op->rq);
2613e399441dSJames Smart 			nvme_fc_ctrl_put(ctrl);
2614fc17b653SChristoph Hellwig 			if (ret == -ENOMEM || ret == -EAGAIN)
2615fc17b653SChristoph Hellwig 				return BLK_STS_RESOURCE;
2616fc17b653SChristoph Hellwig 			return BLK_STS_IOERR;
2617e399441dSJames Smart 		}
2618e399441dSJames Smart 	}
2619e399441dSJames Smart 
2620e399441dSJames Smart 	fc_dma_sync_single_for_device(ctrl->lport->dev, op->fcp_req.cmddma,
2621e399441dSJames Smart 				  sizeof(op->cmd_iu), DMA_TO_DEVICE);
2622e399441dSJames Smart 
2623e399441dSJames Smart 	atomic_set(&op->state, FCPOP_STATE_ACTIVE);
2624e399441dSJames Smart 
262578a7ac26SJames Smart 	if (!(op->flags & FCOP_FLAGS_AEN))
2626e399441dSJames Smart 		blk_mq_start_request(op->rq);
2627e399441dSJames Smart 
262867f471b6SJames Smart 	cmdiu->csn = cpu_to_be32(atomic_inc_return(&queue->csn));
2629e399441dSJames Smart 	ret = ctrl->lport->ops->fcp_io(&ctrl->lport->localport,
2630e399441dSJames Smart 					&ctrl->rport->remoteport,
2631e399441dSJames Smart 					queue->lldd_handle, &op->fcp_req);
2632e399441dSJames Smart 
2633e399441dSJames Smart 	if (ret) {
263467f471b6SJames Smart 		/*
263567f471b6SJames Smart 		 * If the lld fails to send the command is there an issue with
263667f471b6SJames Smart 		 * the csn value?  If the command that fails is the Connect,
263767f471b6SJames Smart 		 * no - as the connection won't be live.  If it is a command
263867f471b6SJames Smart 		 * post-connect, it's possible a gap in csn may be created.
263967f471b6SJames Smart 		 * Does this matter?  As Linux initiators don't send fused
264067f471b6SJames Smart 		 * commands, no.  The gap would exist, but as there's nothing
264167f471b6SJames Smart 		 * that depends on csn order to be delivered on the target
264267f471b6SJames Smart 		 * side, it shouldn't hurt.  It would be difficult for a
264367f471b6SJames Smart 		 * target to even detect the csn gap as it has no idea when the
264467f471b6SJames Smart 		 * cmd with the csn was supposed to arrive.
264567f471b6SJames Smart 		 */
2646b12740d3SJames Smart 		opstate = atomic_xchg(&op->state, FCPOP_STATE_COMPLETE);
2647b12740d3SJames Smart 		__nvme_fc_fcpop_chk_teardowns(ctrl, op, opstate);
2648b12740d3SJames Smart 
2649c9c12e51SDaniel Wagner 		if (!(op->flags & FCOP_FLAGS_AEN)) {
2650e399441dSJames Smart 			nvme_fc_unmap_data(ctrl, op->rq, op);
265116686f3aSMax Gurtovoy 			nvme_cleanup_cmd(op->rq);
2652c9c12e51SDaniel Wagner 		}
2653c9c12e51SDaniel Wagner 
2654e399441dSJames Smart 		nvme_fc_ctrl_put(ctrl);
2655e399441dSJames Smart 
26568b25f351SJames Smart 		if (ctrl->rport->remoteport.port_state == FC_OBJSTATE_ONLINE &&
26578b25f351SJames Smart 				ret != -EBUSY)
2658fc17b653SChristoph Hellwig 			return BLK_STS_IOERR;
2659e399441dSJames Smart 
266086ff7c2aSMing Lei 		return BLK_STS_RESOURCE;
2661e399441dSJames Smart 	}
2662e399441dSJames Smart 
2663fc17b653SChristoph Hellwig 	return BLK_STS_OK;
2664e399441dSJames Smart }
2665e399441dSJames Smart 
2666fc17b653SChristoph Hellwig static blk_status_t
2667e399441dSJames Smart nvme_fc_queue_rq(struct blk_mq_hw_ctx *hctx,
2668e399441dSJames Smart 			const struct blk_mq_queue_data *bd)
2669e399441dSJames Smart {
2670e399441dSJames Smart 	struct nvme_ns *ns = hctx->queue->queuedata;
2671e399441dSJames Smart 	struct nvme_fc_queue *queue = hctx->driver_data;
2672e399441dSJames Smart 	struct nvme_fc_ctrl *ctrl = queue->ctrl;
2673e399441dSJames Smart 	struct request *rq = bd->rq;
2674e399441dSJames Smart 	struct nvme_fc_fcp_op *op = blk_mq_rq_to_pdu(rq);
2675e399441dSJames Smart 	struct nvme_fc_cmd_iu *cmdiu = &op->cmd_iu;
2676e399441dSJames Smart 	struct nvme_command *sqe = &cmdiu->sqe;
2677e399441dSJames Smart 	enum nvmefc_fcp_datadir	io_dir;
26783bc32bb1SChristoph Hellwig 	bool queue_ready = test_bit(NVME_FC_Q_LIVE, &queue->flags);
2679e399441dSJames Smart 	u32 data_len;
2680fc17b653SChristoph Hellwig 	blk_status_t ret;
2681e399441dSJames Smart 
26823bc32bb1SChristoph Hellwig 	if (ctrl->rport->remoteport.port_state != FC_OBJSTATE_ONLINE ||
26833bc32bb1SChristoph Hellwig 	    !nvmf_check_ready(&queue->ctrl->ctrl, rq, queue_ready))
26846cdefc6eSJames Smart 		return nvmf_fail_nonready_command(&queue->ctrl->ctrl, rq);
26859e0ed16aSSagi Grimberg 
2686e399441dSJames Smart 	ret = nvme_setup_cmd(ns, rq, sqe);
2687e399441dSJames Smart 	if (ret)
2688e399441dSJames Smart 		return ret;
2689e399441dSJames Smart 
26909f7d8ae2SJames Smart 	/*
26919f7d8ae2SJames Smart 	 * nvme core doesn't quite treat the rq opaquely. Commands such
26929f7d8ae2SJames Smart 	 * as WRITE ZEROES will return a non-zero rq payload_bytes yet
26939f7d8ae2SJames Smart 	 * there is no actual payload to be transferred.
26949f7d8ae2SJames Smart 	 * To get it right, key data transmission on there being 1 or
26959f7d8ae2SJames Smart 	 * more physical segments in the sg list. If there is no
26969f7d8ae2SJames Smart 	 * physical segments, there is no payload.
26979f7d8ae2SJames Smart 	 */
26989f7d8ae2SJames Smart 	if (blk_rq_nr_phys_segments(rq)) {
2699b131c61dSChristoph Hellwig 		data_len = blk_rq_payload_bytes(rq);
2700e399441dSJames Smart 		io_dir = ((rq_data_dir(rq) == WRITE) ?
2701e399441dSJames Smart 					NVMEFC_FCP_WRITE : NVMEFC_FCP_READ);
27029f7d8ae2SJames Smart 	} else {
27039f7d8ae2SJames Smart 		data_len = 0;
2704e399441dSJames Smart 		io_dir = NVMEFC_FCP_NODATA;
27059f7d8ae2SJames Smart 	}
27069f7d8ae2SJames Smart 
2707e399441dSJames Smart 
2708e399441dSJames Smart 	return nvme_fc_start_fcp_op(ctrl, queue, op, data_len, io_dir);
2709e399441dSJames Smart }
2710e399441dSJames Smart 
2711e399441dSJames Smart static void
2712ad22c355SKeith Busch nvme_fc_submit_async_event(struct nvme_ctrl *arg)
2713e399441dSJames Smart {
2714e399441dSJames Smart 	struct nvme_fc_ctrl *ctrl = to_fc_ctrl(arg);
2715e399441dSJames Smart 	struct nvme_fc_fcp_op *aen_op;
2716fc17b653SChristoph Hellwig 	blk_status_t ret;
2717e399441dSJames Smart 
2718eb4ee8f1SJames Smart 	if (test_bit(FCCTRL_TERMIO, &ctrl->flags))
271961bff8efSJames Smart 		return;
272061bff8efSJames Smart 
2721ad22c355SKeith Busch 	aen_op = &ctrl->aen_ops[0];
2722e399441dSJames Smart 
2723e399441dSJames Smart 	ret = nvme_fc_start_fcp_op(ctrl, aen_op->queue, aen_op, 0,
2724e399441dSJames Smart 					NVMEFC_FCP_NODATA);
2725e399441dSJames Smart 	if (ret)
2726e399441dSJames Smart 		dev_err(ctrl->ctrl.device,
2727ad22c355SKeith Busch 			"failed async event work\n");
2728e399441dSJames Smart }
2729e399441dSJames Smart 
2730e399441dSJames Smart static void
2731c3aedd22SJames Smart nvme_fc_complete_rq(struct request *rq)
2732e399441dSJames Smart {
2733e399441dSJames Smart 	struct nvme_fc_fcp_op *op = blk_mq_rq_to_pdu(rq);
2734e399441dSJames Smart 	struct nvme_fc_ctrl *ctrl = op->ctrl;
2735e399441dSJames Smart 
273678a7ac26SJames Smart 	atomic_set(&op->state, FCPOP_STATE_IDLE);
273752793d62SJames Smart 	op->flags &= ~FCOP_FLAGS_TERMIO;
2738e399441dSJames Smart 
2739e399441dSJames Smart 	nvme_fc_unmap_data(ctrl, rq, op);
274077f02a7aSChristoph Hellwig 	nvme_complete_rq(rq);
2741e399441dSJames Smart 	nvme_fc_ctrl_put(ctrl);
274278a7ac26SJames Smart }
274378a7ac26SJames Smart 
2744e399441dSJames Smart /*
2745e399441dSJames Smart  * This routine is used by the transport when it needs to find active
2746e399441dSJames Smart  * io on a queue that is to be terminated. The transport uses
2747e399441dSJames Smart  * blk_mq_tagset_busy_itr() to find the busy requests, which then invoke
2748e399441dSJames Smart  * this routine to kill them on a 1 by 1 basis.
2749e399441dSJames Smart  *
2750e399441dSJames Smart  * As FC allocates FC exchange for each io, the transport must contact
2751e399441dSJames Smart  * the LLDD to terminate the exchange, thus releasing the FC exchange.
2752e399441dSJames Smart  * After terminating the exchange the LLDD will call the transport's
2753e399441dSJames Smart  * normal io done path for the request, but it will have an aborted
2754e399441dSJames Smart  * status. The done path will return the io request back to the block
2755e399441dSJames Smart  * layer with an error status.
2756e399441dSJames Smart  */
27577baa8572SJens Axboe static bool
2758e399441dSJames Smart nvme_fc_terminate_exchange(struct request *req, void *data, bool reserved)
2759e399441dSJames Smart {
2760e399441dSJames Smart 	struct nvme_ctrl *nctrl = data;
2761e399441dSJames Smart 	struct nvme_fc_ctrl *ctrl = to_fc_ctrl(nctrl);
2762e399441dSJames Smart 	struct nvme_fc_fcp_op *op = blk_mq_rq_to_pdu(req);
2763e399441dSJames Smart 
27643efd6e8eSJames Smart 	__nvme_fc_abort_op(ctrl, op);
27657baa8572SJens Axboe 	return true;
276678a7ac26SJames Smart }
2767e399441dSJames Smart 
2768e399441dSJames Smart 
276961bff8efSJames Smart static const struct blk_mq_ops nvme_fc_mq_ops = {
277061bff8efSJames Smart 	.queue_rq	= nvme_fc_queue_rq,
277161bff8efSJames Smart 	.complete	= nvme_fc_complete_rq,
277261bff8efSJames Smart 	.init_request	= nvme_fc_init_request,
277361bff8efSJames Smart 	.exit_request	= nvme_fc_exit_request,
277461bff8efSJames Smart 	.init_hctx	= nvme_fc_init_hctx,
277561bff8efSJames Smart 	.timeout	= nvme_fc_timeout,
2776e399441dSJames Smart };
2777e399441dSJames Smart 
2778e399441dSJames Smart static int
2779e399441dSJames Smart nvme_fc_create_io_queues(struct nvme_fc_ctrl *ctrl)
2780e399441dSJames Smart {
2781e399441dSJames Smart 	struct nvmf_ctrl_options *opts = ctrl->ctrl.opts;
27827314183dSSagi Grimberg 	unsigned int nr_io_queues;
2783e399441dSJames Smart 	int ret;
2784e399441dSJames Smart 
27857314183dSSagi Grimberg 	nr_io_queues = min(min(opts->nr_io_queues, num_online_cpus()),
27867314183dSSagi Grimberg 				ctrl->lport->ops->max_hw_queues);
27877314183dSSagi Grimberg 	ret = nvme_set_queue_count(&ctrl->ctrl, &nr_io_queues);
2788e399441dSJames Smart 	if (ret) {
2789e399441dSJames Smart 		dev_info(ctrl->ctrl.device,
2790e399441dSJames Smart 			"set_queue_count failed: %d\n", ret);
2791e399441dSJames Smart 		return ret;
2792e399441dSJames Smart 	}
2793e399441dSJames Smart 
27947314183dSSagi Grimberg 	ctrl->ctrl.queue_count = nr_io_queues + 1;
27957314183dSSagi Grimberg 	if (!nr_io_queues)
2796e399441dSJames Smart 		return 0;
2797e399441dSJames Smart 
2798e399441dSJames Smart 	nvme_fc_init_io_queues(ctrl);
2799e399441dSJames Smart 
2800e399441dSJames Smart 	memset(&ctrl->tag_set, 0, sizeof(ctrl->tag_set));
2801e399441dSJames Smart 	ctrl->tag_set.ops = &nvme_fc_mq_ops;
2802e399441dSJames Smart 	ctrl->tag_set.queue_depth = ctrl->ctrl.opts->queue_size;
2803e399441dSJames Smart 	ctrl->tag_set.reserved_tags = 1; /* fabric connect */
2804103e515eSHannes Reinecke 	ctrl->tag_set.numa_node = ctrl->ctrl.numa_node;
2805e399441dSJames Smart 	ctrl->tag_set.flags = BLK_MQ_F_SHOULD_MERGE;
2806d3d0bc78SBart Van Assche 	ctrl->tag_set.cmd_size =
2807d3d0bc78SBart Van Assche 		struct_size((struct nvme_fcp_op_w_sgl *)NULL, priv,
2808d3d0bc78SBart Van Assche 			    ctrl->lport->ops->fcprqst_priv_sz);
2809e399441dSJames Smart 	ctrl->tag_set.driver_data = ctrl;
2810d858e5f0SSagi Grimberg 	ctrl->tag_set.nr_hw_queues = ctrl->ctrl.queue_count - 1;
2811e399441dSJames Smart 	ctrl->tag_set.timeout = NVME_IO_TIMEOUT;
2812e399441dSJames Smart 
2813e399441dSJames Smart 	ret = blk_mq_alloc_tag_set(&ctrl->tag_set);
2814e399441dSJames Smart 	if (ret)
2815e399441dSJames Smart 		return ret;
2816e399441dSJames Smart 
2817e399441dSJames Smart 	ctrl->ctrl.tagset = &ctrl->tag_set;
2818e399441dSJames Smart 
2819e399441dSJames Smart 	ctrl->ctrl.connect_q = blk_mq_init_queue(&ctrl->tag_set);
2820e399441dSJames Smart 	if (IS_ERR(ctrl->ctrl.connect_q)) {
2821e399441dSJames Smart 		ret = PTR_ERR(ctrl->ctrl.connect_q);
2822e399441dSJames Smart 		goto out_free_tag_set;
2823e399441dSJames Smart 	}
2824e399441dSJames Smart 
2825d157e534SJames Smart 	ret = nvme_fc_create_hw_io_queues(ctrl, ctrl->ctrl.sqsize + 1);
2826e399441dSJames Smart 	if (ret)
2827e399441dSJames Smart 		goto out_cleanup_blk_queue;
2828e399441dSJames Smart 
2829d157e534SJames Smart 	ret = nvme_fc_connect_io_queues(ctrl, ctrl->ctrl.sqsize + 1);
2830e399441dSJames Smart 	if (ret)
2831e399441dSJames Smart 		goto out_delete_hw_queues;
2832e399441dSJames Smart 
28334c984154SJames Smart 	ctrl->ioq_live = true;
28344c984154SJames Smart 
2835e399441dSJames Smart 	return 0;
2836e399441dSJames Smart 
2837e399441dSJames Smart out_delete_hw_queues:
2838e399441dSJames Smart 	nvme_fc_delete_hw_io_queues(ctrl);
2839e399441dSJames Smart out_cleanup_blk_queue:
2840e399441dSJames Smart 	blk_cleanup_queue(ctrl->ctrl.connect_q);
2841e399441dSJames Smart out_free_tag_set:
2842e399441dSJames Smart 	blk_mq_free_tag_set(&ctrl->tag_set);
2843e399441dSJames Smart 	nvme_fc_free_io_queues(ctrl);
2844e399441dSJames Smart 
2845e399441dSJames Smart 	/* force put free routine to ignore io queues */
2846e399441dSJames Smart 	ctrl->ctrl.tagset = NULL;
2847e399441dSJames Smart 
2848e399441dSJames Smart 	return ret;
2849e399441dSJames Smart }
2850e399441dSJames Smart 
285161bff8efSJames Smart static int
28523e493c00SJames Smart nvme_fc_recreate_io_queues(struct nvme_fc_ctrl *ctrl)
285361bff8efSJames Smart {
285461bff8efSJames Smart 	struct nvmf_ctrl_options *opts = ctrl->ctrl.opts;
2855834d3710SJames Smart 	u32 prior_ioq_cnt = ctrl->ctrl.queue_count - 1;
28567314183dSSagi Grimberg 	unsigned int nr_io_queues;
285761bff8efSJames Smart 	int ret;
285861bff8efSJames Smart 
28597314183dSSagi Grimberg 	nr_io_queues = min(min(opts->nr_io_queues, num_online_cpus()),
28607314183dSSagi Grimberg 				ctrl->lport->ops->max_hw_queues);
28617314183dSSagi Grimberg 	ret = nvme_set_queue_count(&ctrl->ctrl, &nr_io_queues);
286261bff8efSJames Smart 	if (ret) {
286361bff8efSJames Smart 		dev_info(ctrl->ctrl.device,
286461bff8efSJames Smart 			"set_queue_count failed: %d\n", ret);
286561bff8efSJames Smart 		return ret;
286661bff8efSJames Smart 	}
286761bff8efSJames Smart 
2868834d3710SJames Smart 	if (!nr_io_queues && prior_ioq_cnt) {
2869834d3710SJames Smart 		dev_info(ctrl->ctrl.device,
2870834d3710SJames Smart 			"Fail Reconnect: At least 1 io queue "
2871834d3710SJames Smart 			"required (was %d)\n", prior_ioq_cnt);
2872834d3710SJames Smart 		return -ENOSPC;
2873834d3710SJames Smart 	}
2874834d3710SJames Smart 
28757314183dSSagi Grimberg 	ctrl->ctrl.queue_count = nr_io_queues + 1;
287661bff8efSJames Smart 	/* check for io queues existing */
2877d858e5f0SSagi Grimberg 	if (ctrl->ctrl.queue_count == 1)
287861bff8efSJames Smart 		return 0;
287961bff8efSJames Smart 
2880d157e534SJames Smart 	ret = nvme_fc_create_hw_io_queues(ctrl, ctrl->ctrl.sqsize + 1);
288161bff8efSJames Smart 	if (ret)
288261bff8efSJames Smart 		goto out_free_io_queues;
288361bff8efSJames Smart 
2884d157e534SJames Smart 	ret = nvme_fc_connect_io_queues(ctrl, ctrl->ctrl.sqsize + 1);
288561bff8efSJames Smart 	if (ret)
288661bff8efSJames Smart 		goto out_delete_hw_queues;
288761bff8efSJames Smart 
288888e837edSJames Smart 	if (prior_ioq_cnt != nr_io_queues) {
2889834d3710SJames Smart 		dev_info(ctrl->ctrl.device,
2890834d3710SJames Smart 			"reconnect: revising io queue count from %d to %d\n",
2891834d3710SJames Smart 			prior_ioq_cnt, nr_io_queues);
289288e837edSJames Smart 		nvme_wait_freeze(&ctrl->ctrl);
2893cda5fd1aSSagi Grimberg 		blk_mq_update_nr_hw_queues(&ctrl->tag_set, nr_io_queues);
289488e837edSJames Smart 		nvme_unfreeze(&ctrl->ctrl);
289588e837edSJames Smart 	}
2896cda5fd1aSSagi Grimberg 
289761bff8efSJames Smart 	return 0;
289861bff8efSJames Smart 
289961bff8efSJames Smart out_delete_hw_queues:
290061bff8efSJames Smart 	nvme_fc_delete_hw_io_queues(ctrl);
290161bff8efSJames Smart out_free_io_queues:
290261bff8efSJames Smart 	nvme_fc_free_io_queues(ctrl);
290361bff8efSJames Smart 	return ret;
290461bff8efSJames Smart }
290561bff8efSJames Smart 
2906158bfb88SJames Smart static void
2907158bfb88SJames Smart nvme_fc_rport_active_on_lport(struct nvme_fc_rport *rport)
2908158bfb88SJames Smart {
2909158bfb88SJames Smart 	struct nvme_fc_lport *lport = rport->lport;
2910158bfb88SJames Smart 
2911158bfb88SJames Smart 	atomic_inc(&lport->act_rport_cnt);
2912158bfb88SJames Smart }
2913158bfb88SJames Smart 
2914158bfb88SJames Smart static void
2915158bfb88SJames Smart nvme_fc_rport_inactive_on_lport(struct nvme_fc_rport *rport)
2916158bfb88SJames Smart {
2917158bfb88SJames Smart 	struct nvme_fc_lport *lport = rport->lport;
2918158bfb88SJames Smart 	u32 cnt;
2919158bfb88SJames Smart 
2920158bfb88SJames Smart 	cnt = atomic_dec_return(&lport->act_rport_cnt);
2921158bfb88SJames Smart 	if (cnt == 0 && lport->localport.port_state == FC_OBJSTATE_DELETED)
2922158bfb88SJames Smart 		lport->ops->localport_delete(&lport->localport);
2923158bfb88SJames Smart }
2924158bfb88SJames Smart 
2925158bfb88SJames Smart static int
2926158bfb88SJames Smart nvme_fc_ctlr_active_on_rport(struct nvme_fc_ctrl *ctrl)
2927158bfb88SJames Smart {
2928158bfb88SJames Smart 	struct nvme_fc_rport *rport = ctrl->rport;
2929158bfb88SJames Smart 	u32 cnt;
2930158bfb88SJames Smart 
2931eb4ee8f1SJames Smart 	if (test_and_set_bit(ASSOC_ACTIVE, &ctrl->flags))
2932158bfb88SJames Smart 		return 1;
2933158bfb88SJames Smart 
2934158bfb88SJames Smart 	cnt = atomic_inc_return(&rport->act_ctrl_cnt);
2935158bfb88SJames Smart 	if (cnt == 1)
2936158bfb88SJames Smart 		nvme_fc_rport_active_on_lport(rport);
2937158bfb88SJames Smart 
2938158bfb88SJames Smart 	return 0;
2939158bfb88SJames Smart }
2940158bfb88SJames Smart 
2941158bfb88SJames Smart static int
2942158bfb88SJames Smart nvme_fc_ctlr_inactive_on_rport(struct nvme_fc_ctrl *ctrl)
2943158bfb88SJames Smart {
2944158bfb88SJames Smart 	struct nvme_fc_rport *rport = ctrl->rport;
2945158bfb88SJames Smart 	struct nvme_fc_lport *lport = rport->lport;
2946158bfb88SJames Smart 	u32 cnt;
2947158bfb88SJames Smart 
2948eb4ee8f1SJames Smart 	/* clearing of ctrl->flags ASSOC_ACTIVE bit is in association delete */
2949158bfb88SJames Smart 
2950158bfb88SJames Smart 	cnt = atomic_dec_return(&rport->act_ctrl_cnt);
2951158bfb88SJames Smart 	if (cnt == 0) {
2952158bfb88SJames Smart 		if (rport->remoteport.port_state == FC_OBJSTATE_DELETED)
2953158bfb88SJames Smart 			lport->ops->remoteport_delete(&rport->remoteport);
2954158bfb88SJames Smart 		nvme_fc_rport_inactive_on_lport(rport);
2955158bfb88SJames Smart 	}
2956158bfb88SJames Smart 
2957158bfb88SJames Smart 	return 0;
2958158bfb88SJames Smart }
2959158bfb88SJames Smart 
296061bff8efSJames Smart /*
296161bff8efSJames Smart  * This routine restarts the controller on the host side, and
296261bff8efSJames Smart  * on the link side, recreates the controller association.
296361bff8efSJames Smart  */
296461bff8efSJames Smart static int
296561bff8efSJames Smart nvme_fc_create_association(struct nvme_fc_ctrl *ctrl)
296661bff8efSJames Smart {
296761bff8efSJames Smart 	struct nvmf_ctrl_options *opts = ctrl->ctrl.opts;
296814fd1e98SJames Smart 	struct nvmefc_ls_rcv_op *disls = NULL;
296914fd1e98SJames Smart 	unsigned long flags;
297061bff8efSJames Smart 	int ret;
297161bff8efSJames Smart 	bool changed;
297261bff8efSJames Smart 
2973fdf9dfa8SSagi Grimberg 	++ctrl->ctrl.nr_reconnects;
297461bff8efSJames Smart 
297596e24801SJames Smart 	if (ctrl->rport->remoteport.port_state != FC_OBJSTATE_ONLINE)
297696e24801SJames Smart 		return -ENODEV;
297796e24801SJames Smart 
2978158bfb88SJames Smart 	if (nvme_fc_ctlr_active_on_rport(ctrl))
2979158bfb88SJames Smart 		return -ENOTUNIQ;
2980158bfb88SJames Smart 
29814bea364fSJames Smart 	dev_info(ctrl->ctrl.device,
29824bea364fSJames Smart 		"NVME-FC{%d}: create association : host wwpn 0x%016llx "
29834bea364fSJames Smart 		" rport wwpn 0x%016llx: NQN \"%s\"\n",
29844bea364fSJames Smart 		ctrl->cnum, ctrl->lport->localport.port_name,
29854bea364fSJames Smart 		ctrl->rport->remoteport.port_name, ctrl->ctrl.opts->subsysnqn);
29864bea364fSJames Smart 
298761bff8efSJames Smart 	/*
298861bff8efSJames Smart 	 * Create the admin queue
298961bff8efSJames Smart 	 */
299061bff8efSJames Smart 
299161bff8efSJames Smart 	ret = __nvme_fc_create_hw_queue(ctrl, &ctrl->queues[0], 0,
2992d157e534SJames Smart 				NVME_AQ_DEPTH);
299361bff8efSJames Smart 	if (ret)
299461bff8efSJames Smart 		goto out_free_queue;
299561bff8efSJames Smart 
299661bff8efSJames Smart 	ret = nvme_fc_connect_admin_queue(ctrl, &ctrl->queues[0],
2997d157e534SJames Smart 				NVME_AQ_DEPTH, (NVME_AQ_DEPTH / 4));
299861bff8efSJames Smart 	if (ret)
299961bff8efSJames Smart 		goto out_delete_hw_queue;
300061bff8efSJames Smart 
300161bff8efSJames Smart 	ret = nvmf_connect_admin_queue(&ctrl->ctrl);
300261bff8efSJames Smart 	if (ret)
300361bff8efSJames Smart 		goto out_disconnect_admin_queue;
300461bff8efSJames Smart 
30059e0ed16aSSagi Grimberg 	set_bit(NVME_FC_Q_LIVE, &ctrl->queues[0].flags);
30069e0ed16aSSagi Grimberg 
300761bff8efSJames Smart 	/*
300861bff8efSJames Smart 	 * Check controller capabilities
300961bff8efSJames Smart 	 *
301061bff8efSJames Smart 	 * todo:- add code to check if ctrl attributes changed from
301161bff8efSJames Smart 	 * prior connection values
301261bff8efSJames Smart 	 */
301361bff8efSJames Smart 
3014c0f2f45bSSagi Grimberg 	ret = nvme_enable_ctrl(&ctrl->ctrl);
301561bff8efSJames Smart 	if (ret)
301661bff8efSJames Smart 		goto out_disconnect_admin_queue;
301761bff8efSJames Smart 
301823748076SJames Smart 	ctrl->ctrl.max_segments = ctrl->lport->ops->max_sgl_segments;
301923748076SJames Smart 	ctrl->ctrl.max_hw_sectors = ctrl->ctrl.max_segments <<
302023748076SJames Smart 						(ilog2(SZ_4K) - 9);
302161bff8efSJames Smart 
3022e7832cb4SSagi Grimberg 	blk_mq_unquiesce_queue(ctrl->ctrl.admin_q);
3023e7832cb4SSagi Grimberg 
302461bff8efSJames Smart 	ret = nvme_init_identify(&ctrl->ctrl);
302561bff8efSJames Smart 	if (ret)
302661bff8efSJames Smart 		goto out_disconnect_admin_queue;
302761bff8efSJames Smart 
302861bff8efSJames Smart 	/* sanity checks */
302961bff8efSJames Smart 
303061bff8efSJames Smart 	/* FC-NVME does not have other data in the capsule */
303161bff8efSJames Smart 	if (ctrl->ctrl.icdoff) {
303261bff8efSJames Smart 		dev_err(ctrl->ctrl.device, "icdoff %d is not supported!\n",
303361bff8efSJames Smart 				ctrl->ctrl.icdoff);
303461bff8efSJames Smart 		goto out_disconnect_admin_queue;
303561bff8efSJames Smart 	}
303661bff8efSJames Smart 
303761bff8efSJames Smart 	/* FC-NVME supports normal SGL Data Block Descriptors */
303861bff8efSJames Smart 
303961bff8efSJames Smart 	if (opts->queue_size > ctrl->ctrl.maxcmd) {
304061bff8efSJames Smart 		/* warn if maxcmd is lower than queue_size */
304161bff8efSJames Smart 		dev_warn(ctrl->ctrl.device,
304261bff8efSJames Smart 			"queue_size %zu > ctrl maxcmd %u, reducing "
30437db39484SJames Smart 			"to maxcmd\n",
304461bff8efSJames Smart 			opts->queue_size, ctrl->ctrl.maxcmd);
304561bff8efSJames Smart 		opts->queue_size = ctrl->ctrl.maxcmd;
304661bff8efSJames Smart 	}
304761bff8efSJames Smart 
3048d157e534SJames Smart 	if (opts->queue_size > ctrl->ctrl.sqsize + 1) {
3049d157e534SJames Smart 		/* warn if sqsize is lower than queue_size */
3050d157e534SJames Smart 		dev_warn(ctrl->ctrl.device,
30517db39484SJames Smart 			"queue_size %zu > ctrl sqsize %u, reducing "
30527db39484SJames Smart 			"to sqsize\n",
3053d157e534SJames Smart 			opts->queue_size, ctrl->ctrl.sqsize + 1);
3054d157e534SJames Smart 		opts->queue_size = ctrl->ctrl.sqsize + 1;
3055d157e534SJames Smart 	}
3056d157e534SJames Smart 
305761bff8efSJames Smart 	ret = nvme_fc_init_aen_ops(ctrl);
305861bff8efSJames Smart 	if (ret)
305961bff8efSJames Smart 		goto out_term_aen_ops;
306061bff8efSJames Smart 
306161bff8efSJames Smart 	/*
306261bff8efSJames Smart 	 * Create the io queues
306361bff8efSJames Smart 	 */
306461bff8efSJames Smart 
3065d858e5f0SSagi Grimberg 	if (ctrl->ctrl.queue_count > 1) {
30664c984154SJames Smart 		if (!ctrl->ioq_live)
306761bff8efSJames Smart 			ret = nvme_fc_create_io_queues(ctrl);
306861bff8efSJames Smart 		else
30693e493c00SJames Smart 			ret = nvme_fc_recreate_io_queues(ctrl);
307061bff8efSJames Smart 		if (ret)
307161bff8efSJames Smart 			goto out_term_aen_ops;
307261bff8efSJames Smart 	}
307361bff8efSJames Smart 
307461bff8efSJames Smart 	changed = nvme_change_ctrl_state(&ctrl->ctrl, NVME_CTRL_LIVE);
307561bff8efSJames Smart 
3076fdf9dfa8SSagi Grimberg 	ctrl->ctrl.nr_reconnects = 0;
307761bff8efSJames Smart 
307844c6ec77SJames Smart 	if (changed)
3079d09f2b45SSagi Grimberg 		nvme_start_ctrl(&ctrl->ctrl);
308061bff8efSJames Smart 
308161bff8efSJames Smart 	return 0;	/* Success */
308261bff8efSJames Smart 
308361bff8efSJames Smart out_term_aen_ops:
308461bff8efSJames Smart 	nvme_fc_term_aen_ops(ctrl);
308561bff8efSJames Smart out_disconnect_admin_queue:
308661bff8efSJames Smart 	/* send a Disconnect(association) LS to fc-nvme target */
308761bff8efSJames Smart 	nvme_fc_xmt_disconnect_assoc(ctrl);
308814fd1e98SJames Smart 	spin_lock_irqsave(&ctrl->lock, flags);
3089bcde5f0fSJames Smart 	ctrl->association_id = 0;
309014fd1e98SJames Smart 	disls = ctrl->rcv_disconn;
309114fd1e98SJames Smart 	ctrl->rcv_disconn = NULL;
309214fd1e98SJames Smart 	spin_unlock_irqrestore(&ctrl->lock, flags);
309314fd1e98SJames Smart 	if (disls)
309414fd1e98SJames Smart 		nvme_fc_xmt_ls_rsp(disls);
309561bff8efSJames Smart out_delete_hw_queue:
309661bff8efSJames Smart 	__nvme_fc_delete_hw_queue(ctrl, &ctrl->queues[0], 0);
309761bff8efSJames Smart out_free_queue:
309861bff8efSJames Smart 	nvme_fc_free_queue(&ctrl->queues[0]);
3099eb4ee8f1SJames Smart 	clear_bit(ASSOC_ACTIVE, &ctrl->flags);
3100158bfb88SJames Smart 	nvme_fc_ctlr_inactive_on_rport(ctrl);
310161bff8efSJames Smart 
310261bff8efSJames Smart 	return ret;
310361bff8efSJames Smart }
310461bff8efSJames Smart 
310552793d62SJames Smart 
310652793d62SJames Smart /*
310752793d62SJames Smart  * This routine runs through all outstanding commands on the association
310852793d62SJames Smart  * and aborts them.  This routine is typically be called by the
310952793d62SJames Smart  * delete_association routine. It is also called due to an error during
311052793d62SJames Smart  * reconnect. In that scenario, it is most likely a command that initializes
311152793d62SJames Smart  * the controller, including fabric Connect commands on io queues, that
311252793d62SJames Smart  * may have timed out or failed thus the io must be killed for the connect
311352793d62SJames Smart  * thread to see the error.
311452793d62SJames Smart  */
311552793d62SJames Smart static void
311652793d62SJames Smart __nvme_fc_abort_outstanding_ios(struct nvme_fc_ctrl *ctrl, bool start_queues)
311752793d62SJames Smart {
311852793d62SJames Smart 	/*
311952793d62SJames Smart 	 * If io queues are present, stop them and terminate all outstanding
312052793d62SJames Smart 	 * ios on them. As FC allocates FC exchange for each io, the
312152793d62SJames Smart 	 * transport must contact the LLDD to terminate the exchange,
312252793d62SJames Smart 	 * thus releasing the FC exchange. We use blk_mq_tagset_busy_itr()
312352793d62SJames Smart 	 * to tell us what io's are busy and invoke a transport routine
312452793d62SJames Smart 	 * to kill them with the LLDD.  After terminating the exchange
312552793d62SJames Smart 	 * the LLDD will call the transport's normal io done path, but it
312652793d62SJames Smart 	 * will have an aborted status. The done path will return the
312752793d62SJames Smart 	 * io requests back to the block layer as part of normal completions
312852793d62SJames Smart 	 * (but with error status).
312952793d62SJames Smart 	 */
313052793d62SJames Smart 	if (ctrl->ctrl.queue_count > 1) {
313152793d62SJames Smart 		nvme_stop_queues(&ctrl->ctrl);
313252793d62SJames Smart 		blk_mq_tagset_busy_iter(&ctrl->tag_set,
313352793d62SJames Smart 				nvme_fc_terminate_exchange, &ctrl->ctrl);
313452793d62SJames Smart 		blk_mq_tagset_wait_completed_request(&ctrl->tag_set);
313552793d62SJames Smart 		if (start_queues)
313652793d62SJames Smart 			nvme_start_queues(&ctrl->ctrl);
313752793d62SJames Smart 	}
313852793d62SJames Smart 
313952793d62SJames Smart 	/*
314052793d62SJames Smart 	 * Other transports, which don't have link-level contexts bound
314152793d62SJames Smart 	 * to sqe's, would try to gracefully shutdown the controller by
314252793d62SJames Smart 	 * writing the registers for shutdown and polling (call
314352793d62SJames Smart 	 * nvme_shutdown_ctrl()). Given a bunch of i/o was potentially
314452793d62SJames Smart 	 * just aborted and we will wait on those contexts, and given
314552793d62SJames Smart 	 * there was no indication of how live the controlelr is on the
314652793d62SJames Smart 	 * link, don't send more io to create more contexts for the
314752793d62SJames Smart 	 * shutdown. Let the controller fail via keepalive failure if
314852793d62SJames Smart 	 * its still present.
314952793d62SJames Smart 	 */
315052793d62SJames Smart 
315152793d62SJames Smart 	/*
315252793d62SJames Smart 	 * clean up the admin queue. Same thing as above.
315352793d62SJames Smart 	 */
315452793d62SJames Smart 	blk_mq_quiesce_queue(ctrl->ctrl.admin_q);
315552793d62SJames Smart 	blk_mq_tagset_busy_iter(&ctrl->admin_tag_set,
315652793d62SJames Smart 				nvme_fc_terminate_exchange, &ctrl->ctrl);
315752793d62SJames Smart 	blk_mq_tagset_wait_completed_request(&ctrl->admin_tag_set);
315852793d62SJames Smart }
315952793d62SJames Smart 
316061bff8efSJames Smart /*
316161bff8efSJames Smart  * This routine stops operation of the controller on the host side.
316261bff8efSJames Smart  * On the host os stack side: Admin and IO queues are stopped,
316361bff8efSJames Smart  *   outstanding ios on them terminated via FC ABTS.
316461bff8efSJames Smart  * On the link side: the association is terminated.
316561bff8efSJames Smart  */
316661bff8efSJames Smart static void
316761bff8efSJames Smart nvme_fc_delete_association(struct nvme_fc_ctrl *ctrl)
316861bff8efSJames Smart {
316914fd1e98SJames Smart 	struct nvmefc_ls_rcv_op *disls = NULL;
317061bff8efSJames Smart 	unsigned long flags;
317161bff8efSJames Smart 
3172eb4ee8f1SJames Smart 	if (!test_and_clear_bit(ASSOC_ACTIVE, &ctrl->flags))
3173158bfb88SJames Smart 		return;
3174158bfb88SJames Smart 
317561bff8efSJames Smart 	spin_lock_irqsave(&ctrl->lock, flags);
3176eb4ee8f1SJames Smart 	set_bit(FCCTRL_TERMIO, &ctrl->flags);
317761bff8efSJames Smart 	ctrl->iocnt = 0;
317861bff8efSJames Smart 	spin_unlock_irqrestore(&ctrl->lock, flags);
317961bff8efSJames Smart 
318052793d62SJames Smart 	__nvme_fc_abort_outstanding_ios(ctrl, false);
318161bff8efSJames Smart 
318261bff8efSJames Smart 	/* kill the aens as they are a separate path */
318361bff8efSJames Smart 	nvme_fc_abort_aen_ops(ctrl);
318461bff8efSJames Smart 
318561bff8efSJames Smart 	/* wait for all io that had to be aborted */
31868a82dbf1SJames Smart 	spin_lock_irq(&ctrl->lock);
318736715cf4SJames Smart 	wait_event_lock_irq(ctrl->ioabort_wait, ctrl->iocnt == 0, ctrl->lock);
3188eb4ee8f1SJames Smart 	clear_bit(FCCTRL_TERMIO, &ctrl->flags);
31898a82dbf1SJames Smart 	spin_unlock_irq(&ctrl->lock);
319061bff8efSJames Smart 
319161bff8efSJames Smart 	nvme_fc_term_aen_ops(ctrl);
319261bff8efSJames Smart 
319361bff8efSJames Smart 	/*
319461bff8efSJames Smart 	 * send a Disconnect(association) LS to fc-nvme target
319561bff8efSJames Smart 	 * Note: could have been sent at top of process, but
319661bff8efSJames Smart 	 * cleaner on link traffic if after the aborts complete.
319761bff8efSJames Smart 	 * Note: if association doesn't exist, association_id will be 0
319861bff8efSJames Smart 	 */
319961bff8efSJames Smart 	if (ctrl->association_id)
320061bff8efSJames Smart 		nvme_fc_xmt_disconnect_assoc(ctrl);
320161bff8efSJames Smart 
320214fd1e98SJames Smart 	spin_lock_irqsave(&ctrl->lock, flags);
3203bcde5f0fSJames Smart 	ctrl->association_id = 0;
320414fd1e98SJames Smart 	disls = ctrl->rcv_disconn;
320514fd1e98SJames Smart 	ctrl->rcv_disconn = NULL;
320614fd1e98SJames Smart 	spin_unlock_irqrestore(&ctrl->lock, flags);
320714fd1e98SJames Smart 	if (disls)
320814fd1e98SJames Smart 		/*
320914fd1e98SJames Smart 		 * if a Disconnect Request was waiting for a response, send
321014fd1e98SJames Smart 		 * now that all ABTS's have been issued (and are complete).
321114fd1e98SJames Smart 		 */
321214fd1e98SJames Smart 		nvme_fc_xmt_ls_rsp(disls);
3213bcde5f0fSJames Smart 
321461bff8efSJames Smart 	if (ctrl->ctrl.tagset) {
321561bff8efSJames Smart 		nvme_fc_delete_hw_io_queues(ctrl);
321661bff8efSJames Smart 		nvme_fc_free_io_queues(ctrl);
321761bff8efSJames Smart 	}
321861bff8efSJames Smart 
321961bff8efSJames Smart 	__nvme_fc_delete_hw_queue(ctrl, &ctrl->queues[0], 0);
322061bff8efSJames Smart 	nvme_fc_free_queue(&ctrl->queues[0]);
3221158bfb88SJames Smart 
3222d625d05eSJames Smart 	/* re-enable the admin_q so anything new can fast fail */
3223d625d05eSJames Smart 	blk_mq_unquiesce_queue(ctrl->ctrl.admin_q);
3224d625d05eSJames Smart 
322502d62a8bSJames Smart 	/* resume the io queues so that things will fast fail */
322602d62a8bSJames Smart 	nvme_start_queues(&ctrl->ctrl);
322702d62a8bSJames Smart 
3228158bfb88SJames Smart 	nvme_fc_ctlr_inactive_on_rport(ctrl);
322961bff8efSJames Smart }
323061bff8efSJames Smart 
323161bff8efSJames Smart static void
3232c5017e85SChristoph Hellwig nvme_fc_delete_ctrl(struct nvme_ctrl *nctrl)
323361bff8efSJames Smart {
3234c5017e85SChristoph Hellwig 	struct nvme_fc_ctrl *ctrl = to_fc_ctrl(nctrl);
323561bff8efSJames Smart 
32364cff280aSJames Smart 	cancel_work_sync(&ctrl->err_work);
323761bff8efSJames Smart 	cancel_delayed_work_sync(&ctrl->connect_work);
323861bff8efSJames Smart 	/*
323961bff8efSJames Smart 	 * kill the association on the link side.  this will block
324061bff8efSJames Smart 	 * waiting for io to terminate
324161bff8efSJames Smart 	 */
324261bff8efSJames Smart 	nvme_fc_delete_association(ctrl);
324361bff8efSJames Smart }
324461bff8efSJames Smart 
324561bff8efSJames Smart static void
32465bbecdbcSJames Smart nvme_fc_reconnect_or_delete(struct nvme_fc_ctrl *ctrl, int status)
32475bbecdbcSJames Smart {
32482b632970SJames Smart 	struct nvme_fc_rport *rport = ctrl->rport;
32492b632970SJames Smart 	struct nvme_fc_remote_port *portptr = &rport->remoteport;
32502b632970SJames Smart 	unsigned long recon_delay = ctrl->ctrl.opts->reconnect_delay * HZ;
32512b632970SJames Smart 	bool recon = true;
32525bbecdbcSJames Smart 
3253ad6a0a52SMax Gurtovoy 	if (ctrl->ctrl.state != NVME_CTRL_CONNECTING)
32545bbecdbcSJames Smart 		return;
32555bbecdbcSJames Smart 
32562b632970SJames Smart 	if (portptr->port_state == FC_OBJSTATE_ONLINE)
3257589ff775SJames Smart 		dev_info(ctrl->ctrl.device,
32585bbecdbcSJames Smart 			"NVME-FC{%d}: reset: Reconnect attempt failed (%d)\n",
32595bbecdbcSJames Smart 			ctrl->cnum, status);
32602b632970SJames Smart 	else if (time_after_eq(jiffies, rport->dev_loss_end))
32612b632970SJames Smart 		recon = false;
32625bbecdbcSJames Smart 
32632b632970SJames Smart 	if (recon && nvmf_should_reconnect(&ctrl->ctrl)) {
32642b632970SJames Smart 		if (portptr->port_state == FC_OBJSTATE_ONLINE)
32655bbecdbcSJames Smart 			dev_info(ctrl->ctrl.device,
32662b632970SJames Smart 				"NVME-FC{%d}: Reconnect attempt in %ld "
32672b632970SJames Smart 				"seconds\n",
32682b632970SJames Smart 				ctrl->cnum, recon_delay / HZ);
32692b632970SJames Smart 		else if (time_after(jiffies + recon_delay, rport->dev_loss_end))
32702b632970SJames Smart 			recon_delay = rport->dev_loss_end - jiffies;
32712b632970SJames Smart 
32722b632970SJames Smart 		queue_delayed_work(nvme_wq, &ctrl->connect_work, recon_delay);
32735bbecdbcSJames Smart 	} else {
32742b632970SJames Smart 		if (portptr->port_state == FC_OBJSTATE_ONLINE)
3275589ff775SJames Smart 			dev_warn(ctrl->ctrl.device,
32765bbecdbcSJames Smart 				"NVME-FC{%d}: Max reconnect attempts (%d) "
327777d0612dSMax Gurtovoy 				"reached.\n",
3278fdf9dfa8SSagi Grimberg 				ctrl->cnum, ctrl->ctrl.nr_reconnects);
32792b632970SJames Smart 		else
32802b632970SJames Smart 			dev_warn(ctrl->ctrl.device,
32812b632970SJames Smart 				"NVME-FC{%d}: dev_loss_tmo (%d) expired "
328277d0612dSMax Gurtovoy 				"while waiting for remoteport connectivity.\n",
3283614fc1c0SMartin George 				ctrl->cnum, min_t(int, portptr->dev_loss_tmo,
3284614fc1c0SMartin George 					(ctrl->ctrl.opts->max_reconnects *
3285614fc1c0SMartin George 					 ctrl->ctrl.opts->reconnect_delay)));
3286c5017e85SChristoph Hellwig 		WARN_ON(nvme_delete_ctrl(&ctrl->ctrl));
32875bbecdbcSJames Smart 	}
32885bbecdbcSJames Smart }
32895bbecdbcSJames Smart 
32905bbecdbcSJames Smart static void
32914cff280aSJames Smart __nvme_fc_terminate_io(struct nvme_fc_ctrl *ctrl)
32924cff280aSJames Smart {
3293c869e494SJames Smart 	/*
329452793d62SJames Smart 	 * if state is CONNECTING - the error occurred as part of a
329552793d62SJames Smart 	 * reconnect attempt. Abort any ios on the association and
329652793d62SJames Smart 	 * let the create_association error paths resolve things.
3297c869e494SJames Smart 	 */
329852793d62SJames Smart 	if (ctrl->ctrl.state == NVME_CTRL_CONNECTING) {
329952793d62SJames Smart 		__nvme_fc_abort_outstanding_ios(ctrl, true);
330052793d62SJames Smart 		return;
330152793d62SJames Smart 	}
330252793d62SJames Smart 
330352793d62SJames Smart 	/*
330452793d62SJames Smart 	 * For any other state, kill the association. As this routine
330552793d62SJames Smart 	 * is a common io abort routine for resetting and such, after
330652793d62SJames Smart 	 * the association is terminated, ensure that the state is set
330752793d62SJames Smart 	 * to CONNECTING.
330852793d62SJames Smart 	 */
330952793d62SJames Smart 
33104cff280aSJames Smart 	nvme_stop_keep_alive(&ctrl->ctrl);
33114cff280aSJames Smart 
33124cff280aSJames Smart 	/* will block will waiting for io to terminate */
33134cff280aSJames Smart 	nvme_fc_delete_association(ctrl);
33144cff280aSJames Smart 
33154cff280aSJames Smart 	if (ctrl->ctrl.state != NVME_CTRL_CONNECTING &&
33164cff280aSJames Smart 	    !nvme_change_ctrl_state(&ctrl->ctrl, NVME_CTRL_CONNECTING))
33174cff280aSJames Smart 		dev_err(ctrl->ctrl.device,
33184cff280aSJames Smart 			"NVME-FC{%d}: error_recovery: Couldn't change state "
33194cff280aSJames Smart 			"to CONNECTING\n", ctrl->cnum);
33204cff280aSJames Smart }
33214cff280aSJames Smart 
33224cff280aSJames Smart static void
332361bff8efSJames Smart nvme_fc_reset_ctrl_work(struct work_struct *work)
332461bff8efSJames Smart {
332561bff8efSJames Smart 	struct nvme_fc_ctrl *ctrl =
3326d86c4d8eSChristoph Hellwig 		container_of(work, struct nvme_fc_ctrl, ctrl.reset_work);
332761bff8efSJames Smart 	int ret;
332861bff8efSJames Smart 
33294cff280aSJames Smart 	__nvme_fc_terminate_io(ctrl);
33304cff280aSJames Smart 
3331d09f2b45SSagi Grimberg 	nvme_stop_ctrl(&ctrl->ctrl);
333244c6ec77SJames Smart 
33332b632970SJames Smart 	if (ctrl->rport->remoteport.port_state == FC_OBJSTATE_ONLINE)
333461bff8efSJames Smart 		ret = nvme_fc_create_association(ctrl);
33352b632970SJames Smart 	else
33362b632970SJames Smart 		ret = -ENOTCONN;
33372b632970SJames Smart 
33385bbecdbcSJames Smart 	if (ret)
33395bbecdbcSJames Smart 		nvme_fc_reconnect_or_delete(ctrl, ret);
33405bbecdbcSJames Smart 	else
334161bff8efSJames Smart 		dev_info(ctrl->ctrl.device,
334296e24801SJames Smart 			"NVME-FC{%d}: controller reset complete\n",
334396e24801SJames Smart 			ctrl->cnum);
334461bff8efSJames Smart }
334561bff8efSJames Smart 
33464cff280aSJames Smart static void
33474cff280aSJames Smart nvme_fc_connect_err_work(struct work_struct *work)
33484cff280aSJames Smart {
33494cff280aSJames Smart 	struct nvme_fc_ctrl *ctrl =
33504cff280aSJames Smart 			container_of(work, struct nvme_fc_ctrl, err_work);
33514cff280aSJames Smart 
33524cff280aSJames Smart 	__nvme_fc_terminate_io(ctrl);
33534cff280aSJames Smart 
33544cff280aSJames Smart 	atomic_set(&ctrl->err_work_active, 0);
33554cff280aSJames Smart 
33564cff280aSJames Smart 	/*
33574cff280aSJames Smart 	 * Rescheduling the connection after recovering
33584cff280aSJames Smart 	 * from the io error is left to the reconnect work
33594cff280aSJames Smart 	 * item, which is what should have stalled waiting on
33604cff280aSJames Smart 	 * the io that had the error that scheduled this work.
33614cff280aSJames Smart 	 */
33624cff280aSJames Smart }
33634cff280aSJames Smart 
336461bff8efSJames Smart static const struct nvme_ctrl_ops nvme_fc_ctrl_ops = {
336561bff8efSJames Smart 	.name			= "fc",
336661bff8efSJames Smart 	.module			= THIS_MODULE,
3367d3d5b87dSChristoph Hellwig 	.flags			= NVME_F_FABRICS,
336861bff8efSJames Smart 	.reg_read32		= nvmf_reg_read32,
336961bff8efSJames Smart 	.reg_read64		= nvmf_reg_read64,
337061bff8efSJames Smart 	.reg_write32		= nvmf_reg_write32,
337161bff8efSJames Smart 	.free_ctrl		= nvme_fc_nvme_ctrl_freed,
337261bff8efSJames Smart 	.submit_async_event	= nvme_fc_submit_async_event,
3373c5017e85SChristoph Hellwig 	.delete_ctrl		= nvme_fc_delete_ctrl,
337461bff8efSJames Smart 	.get_address		= nvmf_get_address,
337561bff8efSJames Smart };
337661bff8efSJames Smart 
337761bff8efSJames Smart static void
337861bff8efSJames Smart nvme_fc_connect_ctrl_work(struct work_struct *work)
337961bff8efSJames Smart {
338061bff8efSJames Smart 	int ret;
338161bff8efSJames Smart 
338261bff8efSJames Smart 	struct nvme_fc_ctrl *ctrl =
338361bff8efSJames Smart 			container_of(to_delayed_work(work),
338461bff8efSJames Smart 				struct nvme_fc_ctrl, connect_work);
338561bff8efSJames Smart 
338661bff8efSJames Smart 	ret = nvme_fc_create_association(ctrl);
33875bbecdbcSJames Smart 	if (ret)
33885bbecdbcSJames Smart 		nvme_fc_reconnect_or_delete(ctrl, ret);
33895bbecdbcSJames Smart 	else
339061bff8efSJames Smart 		dev_info(ctrl->ctrl.device,
33914c984154SJames Smart 			"NVME-FC{%d}: controller connect complete\n",
339261bff8efSJames Smart 			ctrl->cnum);
339361bff8efSJames Smart }
339461bff8efSJames Smart 
339561bff8efSJames Smart 
339661bff8efSJames Smart static const struct blk_mq_ops nvme_fc_admin_mq_ops = {
339761bff8efSJames Smart 	.queue_rq	= nvme_fc_queue_rq,
339861bff8efSJames Smart 	.complete	= nvme_fc_complete_rq,
339976f983cbSChristoph Hellwig 	.init_request	= nvme_fc_init_request,
340061bff8efSJames Smart 	.exit_request	= nvme_fc_exit_request,
340161bff8efSJames Smart 	.init_hctx	= nvme_fc_init_admin_hctx,
340261bff8efSJames Smart 	.timeout	= nvme_fc_timeout,
340361bff8efSJames Smart };
340461bff8efSJames Smart 
3405e399441dSJames Smart 
340656d5f4f1SJames Smart /*
340756d5f4f1SJames Smart  * Fails a controller request if it matches an existing controller
340856d5f4f1SJames Smart  * (association) with the same tuple:
340956d5f4f1SJames Smart  * <Host NQN, Host ID, local FC port, remote FC port, SUBSYS NQN>
341056d5f4f1SJames Smart  *
341156d5f4f1SJames Smart  * The ports don't need to be compared as they are intrinsically
341256d5f4f1SJames Smart  * already matched by the port pointers supplied.
341356d5f4f1SJames Smart  */
341456d5f4f1SJames Smart static bool
341556d5f4f1SJames Smart nvme_fc_existing_controller(struct nvme_fc_rport *rport,
341656d5f4f1SJames Smart 		struct nvmf_ctrl_options *opts)
341756d5f4f1SJames Smart {
341856d5f4f1SJames Smart 	struct nvme_fc_ctrl *ctrl;
341956d5f4f1SJames Smart 	unsigned long flags;
342056d5f4f1SJames Smart 	bool found = false;
342156d5f4f1SJames Smart 
342256d5f4f1SJames Smart 	spin_lock_irqsave(&rport->lock, flags);
342356d5f4f1SJames Smart 	list_for_each_entry(ctrl, &rport->ctrl_list, ctrl_list) {
342456d5f4f1SJames Smart 		found = nvmf_ctlr_matches_baseopts(&ctrl->ctrl, opts);
342556d5f4f1SJames Smart 		if (found)
342656d5f4f1SJames Smart 			break;
342756d5f4f1SJames Smart 	}
342856d5f4f1SJames Smart 	spin_unlock_irqrestore(&rport->lock, flags);
342956d5f4f1SJames Smart 
343056d5f4f1SJames Smart 	return found;
343156d5f4f1SJames Smart }
343256d5f4f1SJames Smart 
3433e399441dSJames Smart static struct nvme_ctrl *
343461bff8efSJames Smart nvme_fc_init_ctrl(struct device *dev, struct nvmf_ctrl_options *opts,
3435e399441dSJames Smart 	struct nvme_fc_lport *lport, struct nvme_fc_rport *rport)
3436e399441dSJames Smart {
3437e399441dSJames Smart 	struct nvme_fc_ctrl *ctrl;
3438e399441dSJames Smart 	unsigned long flags;
34394c984154SJames Smart 	int ret, idx;
3440e399441dSJames Smart 
344185e6a6adSJames Smart 	if (!(rport->remoteport.port_role &
344285e6a6adSJames Smart 	    (FC_PORT_ROLE_NVME_DISCOVERY | FC_PORT_ROLE_NVME_TARGET))) {
344385e6a6adSJames Smart 		ret = -EBADR;
344485e6a6adSJames Smart 		goto out_fail;
344585e6a6adSJames Smart 	}
344685e6a6adSJames Smart 
344756d5f4f1SJames Smart 	if (!opts->duplicate_connect &&
344856d5f4f1SJames Smart 	    nvme_fc_existing_controller(rport, opts)) {
344956d5f4f1SJames Smart 		ret = -EALREADY;
345056d5f4f1SJames Smart 		goto out_fail;
345156d5f4f1SJames Smart 	}
345256d5f4f1SJames Smart 
3453e399441dSJames Smart 	ctrl = kzalloc(sizeof(*ctrl), GFP_KERNEL);
3454e399441dSJames Smart 	if (!ctrl) {
3455e399441dSJames Smart 		ret = -ENOMEM;
3456e399441dSJames Smart 		goto out_fail;
3457e399441dSJames Smart 	}
3458e399441dSJames Smart 
3459e399441dSJames Smart 	idx = ida_simple_get(&nvme_fc_ctrl_cnt, 0, 0, GFP_KERNEL);
3460e399441dSJames Smart 	if (idx < 0) {
3461e399441dSJames Smart 		ret = -ENOSPC;
34628c5c6605SJames Smart 		goto out_free_ctrl;
3463e399441dSJames Smart 	}
3464e399441dSJames Smart 
3465e399441dSJames Smart 	ctrl->ctrl.opts = opts;
34664c984154SJames Smart 	ctrl->ctrl.nr_reconnects = 0;
346706f3d71eSJames Smart 	if (lport->dev)
3468103e515eSHannes Reinecke 		ctrl->ctrl.numa_node = dev_to_node(lport->dev);
346906f3d71eSJames Smart 	else
347006f3d71eSJames Smart 		ctrl->ctrl.numa_node = NUMA_NO_NODE;
3471e399441dSJames Smart 	INIT_LIST_HEAD(&ctrl->ctrl_list);
3472e399441dSJames Smart 	ctrl->lport = lport;
3473e399441dSJames Smart 	ctrl->rport = rport;
3474e399441dSJames Smart 	ctrl->dev = lport->dev;
3475e399441dSJames Smart 	ctrl->cnum = idx;
34764c984154SJames Smart 	ctrl->ioq_live = false;
34774cff280aSJames Smart 	atomic_set(&ctrl->err_work_active, 0);
34788a82dbf1SJames Smart 	init_waitqueue_head(&ctrl->ioabort_wait);
3479e399441dSJames Smart 
3480e399441dSJames Smart 	get_device(ctrl->dev);
3481e399441dSJames Smart 	kref_init(&ctrl->ref);
3482e399441dSJames Smart 
3483d86c4d8eSChristoph Hellwig 	INIT_WORK(&ctrl->ctrl.reset_work, nvme_fc_reset_ctrl_work);
348461bff8efSJames Smart 	INIT_DELAYED_WORK(&ctrl->connect_work, nvme_fc_connect_ctrl_work);
34854cff280aSJames Smart 	INIT_WORK(&ctrl->err_work, nvme_fc_connect_err_work);
3486e399441dSJames Smart 	spin_lock_init(&ctrl->lock);
3487e399441dSJames Smart 
3488e399441dSJames Smart 	/* io queue count */
3489d858e5f0SSagi Grimberg 	ctrl->ctrl.queue_count = min_t(unsigned int,
3490e399441dSJames Smart 				opts->nr_io_queues,
3491e399441dSJames Smart 				lport->ops->max_hw_queues);
3492d858e5f0SSagi Grimberg 	ctrl->ctrl.queue_count++;	/* +1 for admin queue */
3493e399441dSJames Smart 
3494e399441dSJames Smart 	ctrl->ctrl.sqsize = opts->queue_size - 1;
3495e399441dSJames Smart 	ctrl->ctrl.kato = opts->kato;
34964c984154SJames Smart 	ctrl->ctrl.cntlid = 0xffff;
3497e399441dSJames Smart 
3498e399441dSJames Smart 	ret = -ENOMEM;
3499d858e5f0SSagi Grimberg 	ctrl->queues = kcalloc(ctrl->ctrl.queue_count,
3500d858e5f0SSagi Grimberg 				sizeof(struct nvme_fc_queue), GFP_KERNEL);
3501e399441dSJames Smart 	if (!ctrl->queues)
350261bff8efSJames Smart 		goto out_free_ida;
3503e399441dSJames Smart 
35043e493c00SJames Smart 	nvme_fc_init_queue(ctrl, 0);
35053e493c00SJames Smart 
350661bff8efSJames Smart 	memset(&ctrl->admin_tag_set, 0, sizeof(ctrl->admin_tag_set));
350761bff8efSJames Smart 	ctrl->admin_tag_set.ops = &nvme_fc_admin_mq_ops;
350838dabe21SKeith Busch 	ctrl->admin_tag_set.queue_depth = NVME_AQ_MQ_TAG_DEPTH;
350961bff8efSJames Smart 	ctrl->admin_tag_set.reserved_tags = 2; /* fabric connect + Keep-Alive */
3510103e515eSHannes Reinecke 	ctrl->admin_tag_set.numa_node = ctrl->ctrl.numa_node;
3511d3d0bc78SBart Van Assche 	ctrl->admin_tag_set.cmd_size =
3512d3d0bc78SBart Van Assche 		struct_size((struct nvme_fcp_op_w_sgl *)NULL, priv,
3513d3d0bc78SBart Van Assche 			    ctrl->lport->ops->fcprqst_priv_sz);
351461bff8efSJames Smart 	ctrl->admin_tag_set.driver_data = ctrl;
351561bff8efSJames Smart 	ctrl->admin_tag_set.nr_hw_queues = 1;
351661bff8efSJames Smart 	ctrl->admin_tag_set.timeout = ADMIN_TIMEOUT;
35175a22e2bfSIsrael Rukshin 	ctrl->admin_tag_set.flags = BLK_MQ_F_NO_SCHED;
351861bff8efSJames Smart 
351961bff8efSJames Smart 	ret = blk_mq_alloc_tag_set(&ctrl->admin_tag_set);
3520e399441dSJames Smart 	if (ret)
352161bff8efSJames Smart 		goto out_free_queues;
352234b6c231SSagi Grimberg 	ctrl->ctrl.admin_tagset = &ctrl->admin_tag_set;
3523e399441dSJames Smart 
3524e7832cb4SSagi Grimberg 	ctrl->ctrl.fabrics_q = blk_mq_init_queue(&ctrl->admin_tag_set);
3525e7832cb4SSagi Grimberg 	if (IS_ERR(ctrl->ctrl.fabrics_q)) {
3526e7832cb4SSagi Grimberg 		ret = PTR_ERR(ctrl->ctrl.fabrics_q);
3527e7832cb4SSagi Grimberg 		goto out_free_admin_tag_set;
3528e7832cb4SSagi Grimberg 	}
3529e7832cb4SSagi Grimberg 
353061bff8efSJames Smart 	ctrl->ctrl.admin_q = blk_mq_init_queue(&ctrl->admin_tag_set);
353161bff8efSJames Smart 	if (IS_ERR(ctrl->ctrl.admin_q)) {
353261bff8efSJames Smart 		ret = PTR_ERR(ctrl->ctrl.admin_q);
3533e7832cb4SSagi Grimberg 		goto out_cleanup_fabrics_q;
3534e399441dSJames Smart 	}
3535e399441dSJames Smart 
353661bff8efSJames Smart 	/*
353761bff8efSJames Smart 	 * Would have been nice to init io queues tag set as well.
353861bff8efSJames Smart 	 * However, we require interaction from the controller
353961bff8efSJames Smart 	 * for max io queue count before we can do so.
354061bff8efSJames Smart 	 * Defer this to the connect path.
354161bff8efSJames Smart 	 */
3542e399441dSJames Smart 
354361bff8efSJames Smart 	ret = nvme_init_ctrl(&ctrl->ctrl, dev, &nvme_fc_ctrl_ops, 0);
3544e399441dSJames Smart 	if (ret)
354561bff8efSJames Smart 		goto out_cleanup_admin_q;
3546e399441dSJames Smart 
354761bff8efSJames Smart 	/* at this point, teardown path changes to ref counting on nvme ctrl */
3548e399441dSJames Smart 
3549e399441dSJames Smart 	spin_lock_irqsave(&rport->lock, flags);
3550e399441dSJames Smart 	list_add_tail(&ctrl->ctrl_list, &rport->ctrl_list);
3551e399441dSJames Smart 	spin_unlock_irqrestore(&rport->lock, flags);
3552e399441dSJames Smart 
35534c984154SJames Smart 	if (!nvme_change_ctrl_state(&ctrl->ctrl, NVME_CTRL_RESETTING) ||
35544c984154SJames Smart 	    !nvme_change_ctrl_state(&ctrl->ctrl, NVME_CTRL_CONNECTING)) {
35554c984154SJames Smart 		dev_err(ctrl->ctrl.device,
35564c984154SJames Smart 			"NVME-FC{%d}: failed to init ctrl state\n", ctrl->cnum);
35574c984154SJames Smart 		goto fail_ctrl;
355817c4dc6eSJames Smart 	}
355917c4dc6eSJames Smart 
35604c984154SJames Smart 	if (!queue_delayed_work(nvme_wq, &ctrl->connect_work, 0)) {
35614c984154SJames Smart 		dev_err(ctrl->ctrl.device,
35624c984154SJames Smart 			"NVME-FC{%d}: failed to schedule initial connect\n",
35634c984154SJames Smart 			ctrl->cnum);
35644c984154SJames Smart 		goto fail_ctrl;
35654c984154SJames Smart 	}
35664c984154SJames Smart 
35674c984154SJames Smart 	flush_delayed_work(&ctrl->connect_work);
35684c984154SJames Smart 
35694c984154SJames Smart 	dev_info(ctrl->ctrl.device,
35704c984154SJames Smart 		"NVME-FC{%d}: new ctrl: NQN \"%s\"\n",
35714c984154SJames Smart 		ctrl->cnum, ctrl->ctrl.opts->subsysnqn);
35724c984154SJames Smart 
35734c984154SJames Smart 	return &ctrl->ctrl;
35744c984154SJames Smart 
35754c984154SJames Smart fail_ctrl:
3576cf25809bSJames Smart 	nvme_change_ctrl_state(&ctrl->ctrl, NVME_CTRL_DELETING);
3577cf25809bSJames Smart 	cancel_work_sync(&ctrl->ctrl.reset_work);
35784cff280aSJames Smart 	cancel_work_sync(&ctrl->err_work);
3579cf25809bSJames Smart 	cancel_delayed_work_sync(&ctrl->connect_work);
3580cf25809bSJames Smart 
3581de41447aSEwan D. Milne 	ctrl->ctrl.opts = NULL;
358217c4dc6eSJames Smart 
358361bff8efSJames Smart 	/* initiate nvme ctrl ref counting teardown */
358461bff8efSJames Smart 	nvme_uninit_ctrl(&ctrl->ctrl);
358561bff8efSJames Smart 
35860b5a7669SJames Smart 	/* Remove core ctrl ref. */
35870b5a7669SJames Smart 	nvme_put_ctrl(&ctrl->ctrl);
35880b5a7669SJames Smart 
358961bff8efSJames Smart 	/* as we're past the point where we transition to the ref
359061bff8efSJames Smart 	 * counting teardown path, if we return a bad pointer here,
359161bff8efSJames Smart 	 * the calling routine, thinking it's prior to the
359261bff8efSJames Smart 	 * transition, will do an rport put. Since the teardown
359361bff8efSJames Smart 	 * path also does a rport put, we do an extra get here to
359461bff8efSJames Smart 	 * so proper order/teardown happens.
359561bff8efSJames Smart 	 */
359661bff8efSJames Smart 	nvme_fc_rport_get(rport);
359761bff8efSJames Smart 
35984c984154SJames Smart 	return ERR_PTR(-EIO);
3599e399441dSJames Smart 
360061bff8efSJames Smart out_cleanup_admin_q:
360161bff8efSJames Smart 	blk_cleanup_queue(ctrl->ctrl.admin_q);
3602e7832cb4SSagi Grimberg out_cleanup_fabrics_q:
3603e7832cb4SSagi Grimberg 	blk_cleanup_queue(ctrl->ctrl.fabrics_q);
360461bff8efSJames Smart out_free_admin_tag_set:
360561bff8efSJames Smart 	blk_mq_free_tag_set(&ctrl->admin_tag_set);
360661bff8efSJames Smart out_free_queues:
360761bff8efSJames Smart 	kfree(ctrl->queues);
3608e399441dSJames Smart out_free_ida:
360961bff8efSJames Smart 	put_device(ctrl->dev);
3610e399441dSJames Smart 	ida_simple_remove(&nvme_fc_ctrl_cnt, ctrl->cnum);
3611e399441dSJames Smart out_free_ctrl:
3612e399441dSJames Smart 	kfree(ctrl);
3613e399441dSJames Smart out_fail:
3614e399441dSJames Smart 	/* exit via here doesn't follow ctlr ref points */
3615e399441dSJames Smart 	return ERR_PTR(ret);
3616e399441dSJames Smart }
3617e399441dSJames Smart 
3618e399441dSJames Smart 
3619e399441dSJames Smart struct nvmet_fc_traddr {
3620e399441dSJames Smart 	u64	nn;
3621e399441dSJames Smart 	u64	pn;
3622e399441dSJames Smart };
3623e399441dSJames Smart 
3624e399441dSJames Smart static int
36259c5358e1SJames Smart __nvme_fc_parse_u64(substring_t *sstr, u64 *val)
3626e399441dSJames Smart {
3627e399441dSJames Smart 	u64 token64;
3628e399441dSJames Smart 
36299c5358e1SJames Smart 	if (match_u64(sstr, &token64))
36309c5358e1SJames Smart 		return -EINVAL;
36319c5358e1SJames Smart 	*val = token64;
3632e399441dSJames Smart 
36339c5358e1SJames Smart 	return 0;
3634e399441dSJames Smart }
3635e399441dSJames Smart 
36369c5358e1SJames Smart /*
36379c5358e1SJames Smart  * This routine validates and extracts the WWN's from the TRADDR string.
36389c5358e1SJames Smart  * As kernel parsers need the 0x to determine number base, universally
36399c5358e1SJames Smart  * build string to parse with 0x prefix before parsing name strings.
36409c5358e1SJames Smart  */
36419c5358e1SJames Smart static int
36429c5358e1SJames Smart nvme_fc_parse_traddr(struct nvmet_fc_traddr *traddr, char *buf, size_t blen)
36439c5358e1SJames Smart {
36449c5358e1SJames Smart 	char name[2 + NVME_FC_TRADDR_HEXNAMELEN + 1];
36459c5358e1SJames Smart 	substring_t wwn = { name, &name[sizeof(name)-1] };
36469c5358e1SJames Smart 	int nnoffset, pnoffset;
36479c5358e1SJames Smart 
3648d4e4230cSMilan P. Gandhi 	/* validate if string is one of the 2 allowed formats */
36499c5358e1SJames Smart 	if (strnlen(buf, blen) == NVME_FC_TRADDR_MAXLENGTH &&
36509c5358e1SJames Smart 			!strncmp(buf, "nn-0x", NVME_FC_TRADDR_OXNNLEN) &&
36519c5358e1SJames Smart 			!strncmp(&buf[NVME_FC_TRADDR_MAX_PN_OFFSET],
36529c5358e1SJames Smart 				"pn-0x", NVME_FC_TRADDR_OXNNLEN)) {
36539c5358e1SJames Smart 		nnoffset = NVME_FC_TRADDR_OXNNLEN;
36549c5358e1SJames Smart 		pnoffset = NVME_FC_TRADDR_MAX_PN_OFFSET +
36559c5358e1SJames Smart 						NVME_FC_TRADDR_OXNNLEN;
36569c5358e1SJames Smart 	} else if ((strnlen(buf, blen) == NVME_FC_TRADDR_MINLENGTH &&
36579c5358e1SJames Smart 			!strncmp(buf, "nn-", NVME_FC_TRADDR_NNLEN) &&
36589c5358e1SJames Smart 			!strncmp(&buf[NVME_FC_TRADDR_MIN_PN_OFFSET],
36599c5358e1SJames Smart 				"pn-", NVME_FC_TRADDR_NNLEN))) {
36609c5358e1SJames Smart 		nnoffset = NVME_FC_TRADDR_NNLEN;
36619c5358e1SJames Smart 		pnoffset = NVME_FC_TRADDR_MIN_PN_OFFSET + NVME_FC_TRADDR_NNLEN;
36629c5358e1SJames Smart 	} else
36639c5358e1SJames Smart 		goto out_einval;
36649c5358e1SJames Smart 
36659c5358e1SJames Smart 	name[0] = '0';
36669c5358e1SJames Smart 	name[1] = 'x';
36679c5358e1SJames Smart 	name[2 + NVME_FC_TRADDR_HEXNAMELEN] = 0;
36689c5358e1SJames Smart 
36699c5358e1SJames Smart 	memcpy(&name[2], &buf[nnoffset], NVME_FC_TRADDR_HEXNAMELEN);
36709c5358e1SJames Smart 	if (__nvme_fc_parse_u64(&wwn, &traddr->nn))
36719c5358e1SJames Smart 		goto out_einval;
36729c5358e1SJames Smart 
36739c5358e1SJames Smart 	memcpy(&name[2], &buf[pnoffset], NVME_FC_TRADDR_HEXNAMELEN);
36749c5358e1SJames Smart 	if (__nvme_fc_parse_u64(&wwn, &traddr->pn))
36759c5358e1SJames Smart 		goto out_einval;
36769c5358e1SJames Smart 
36779c5358e1SJames Smart 	return 0;
36789c5358e1SJames Smart 
36799c5358e1SJames Smart out_einval:
36809c5358e1SJames Smart 	pr_warn("%s: bad traddr string\n", __func__);
36819c5358e1SJames Smart 	return -EINVAL;
3682e399441dSJames Smart }
3683e399441dSJames Smart 
3684e399441dSJames Smart static struct nvme_ctrl *
3685e399441dSJames Smart nvme_fc_create_ctrl(struct device *dev, struct nvmf_ctrl_options *opts)
3686e399441dSJames Smart {
3687e399441dSJames Smart 	struct nvme_fc_lport *lport;
3688e399441dSJames Smart 	struct nvme_fc_rport *rport;
368961bff8efSJames Smart 	struct nvme_ctrl *ctrl;
3690e399441dSJames Smart 	struct nvmet_fc_traddr laddr = { 0L, 0L };
3691e399441dSJames Smart 	struct nvmet_fc_traddr raddr = { 0L, 0L };
3692e399441dSJames Smart 	unsigned long flags;
3693e399441dSJames Smart 	int ret;
3694e399441dSJames Smart 
36959c5358e1SJames Smart 	ret = nvme_fc_parse_traddr(&raddr, opts->traddr, NVMF_TRADDR_SIZE);
3696e399441dSJames Smart 	if (ret || !raddr.nn || !raddr.pn)
3697e399441dSJames Smart 		return ERR_PTR(-EINVAL);
3698e399441dSJames Smart 
36999c5358e1SJames Smart 	ret = nvme_fc_parse_traddr(&laddr, opts->host_traddr, NVMF_TRADDR_SIZE);
3700e399441dSJames Smart 	if (ret || !laddr.nn || !laddr.pn)
3701e399441dSJames Smart 		return ERR_PTR(-EINVAL);
3702e399441dSJames Smart 
3703e399441dSJames Smart 	/* find the host and remote ports to connect together */
3704e399441dSJames Smart 	spin_lock_irqsave(&nvme_fc_lock, flags);
3705e399441dSJames Smart 	list_for_each_entry(lport, &nvme_fc_lport_list, port_list) {
3706e399441dSJames Smart 		if (lport->localport.node_name != laddr.nn ||
37079e0e8dacSJames Smart 		    lport->localport.port_name != laddr.pn ||
37089e0e8dacSJames Smart 		    lport->localport.port_state != FC_OBJSTATE_ONLINE)
3709e399441dSJames Smart 			continue;
3710e399441dSJames Smart 
3711e399441dSJames Smart 		list_for_each_entry(rport, &lport->endp_list, endp_list) {
3712e399441dSJames Smart 			if (rport->remoteport.node_name != raddr.nn ||
37139e0e8dacSJames Smart 			    rport->remoteport.port_name != raddr.pn ||
37149e0e8dacSJames Smart 			    rport->remoteport.port_state != FC_OBJSTATE_ONLINE)
3715e399441dSJames Smart 				continue;
3716e399441dSJames Smart 
3717e399441dSJames Smart 			/* if fail to get reference fall through. Will error */
3718e399441dSJames Smart 			if (!nvme_fc_rport_get(rport))
3719e399441dSJames Smart 				break;
3720e399441dSJames Smart 
3721e399441dSJames Smart 			spin_unlock_irqrestore(&nvme_fc_lock, flags);
3722e399441dSJames Smart 
372361bff8efSJames Smart 			ctrl = nvme_fc_init_ctrl(dev, opts, lport, rport);
372461bff8efSJames Smart 			if (IS_ERR(ctrl))
372561bff8efSJames Smart 				nvme_fc_rport_put(rport);
372661bff8efSJames Smart 			return ctrl;
3727e399441dSJames Smart 		}
3728e399441dSJames Smart 	}
3729e399441dSJames Smart 	spin_unlock_irqrestore(&nvme_fc_lock, flags);
3730e399441dSJames Smart 
37314fb135adSJohannes Thumshirn 	pr_warn("%s: %s - %s combination not found\n",
37324fb135adSJohannes Thumshirn 		__func__, opts->traddr, opts->host_traddr);
3733e399441dSJames Smart 	return ERR_PTR(-ENOENT);
3734e399441dSJames Smart }
3735e399441dSJames Smart 
3736e399441dSJames Smart 
3737e399441dSJames Smart static struct nvmf_transport_ops nvme_fc_transport = {
3738e399441dSJames Smart 	.name		= "fc",
37390de5cd36SRoy Shterman 	.module		= THIS_MODULE,
3740e399441dSJames Smart 	.required_opts	= NVMF_OPT_TRADDR | NVMF_OPT_HOST_TRADDR,
37415bbecdbcSJames Smart 	.allowed_opts	= NVMF_OPT_RECONNECT_DELAY | NVMF_OPT_CTRL_LOSS_TMO,
3742e399441dSJames Smart 	.create_ctrl	= nvme_fc_create_ctrl,
3743e399441dSJames Smart };
3744e399441dSJames Smart 
374597faec53SJames Smart /* Arbitrary successive failures max. With lots of subsystems could be high */
374697faec53SJames Smart #define DISCOVERY_MAX_FAIL	20
374797faec53SJames Smart 
374897faec53SJames Smart static ssize_t nvme_fc_nvme_discovery_store(struct device *dev,
374997faec53SJames Smart 		struct device_attribute *attr, const char *buf, size_t count)
375097faec53SJames Smart {
375197faec53SJames Smart 	unsigned long flags;
375297faec53SJames Smart 	LIST_HEAD(local_disc_list);
375397faec53SJames Smart 	struct nvme_fc_lport *lport;
375497faec53SJames Smart 	struct nvme_fc_rport *rport;
375597faec53SJames Smart 	int failcnt = 0;
375697faec53SJames Smart 
375797faec53SJames Smart 	spin_lock_irqsave(&nvme_fc_lock, flags);
375897faec53SJames Smart restart:
375997faec53SJames Smart 	list_for_each_entry(lport, &nvme_fc_lport_list, port_list) {
376097faec53SJames Smart 		list_for_each_entry(rport, &lport->endp_list, endp_list) {
376197faec53SJames Smart 			if (!nvme_fc_lport_get(lport))
376297faec53SJames Smart 				continue;
376397faec53SJames Smart 			if (!nvme_fc_rport_get(rport)) {
376497faec53SJames Smart 				/*
376597faec53SJames Smart 				 * This is a temporary condition. Upon restart
376697faec53SJames Smart 				 * this rport will be gone from the list.
376797faec53SJames Smart 				 *
376897faec53SJames Smart 				 * Revert the lport put and retry.  Anything
376997faec53SJames Smart 				 * added to the list already will be skipped (as
377097faec53SJames Smart 				 * they are no longer list_empty).  Loops should
377197faec53SJames Smart 				 * resume at rports that were not yet seen.
377297faec53SJames Smart 				 */
377397faec53SJames Smart 				nvme_fc_lport_put(lport);
377497faec53SJames Smart 
377597faec53SJames Smart 				if (failcnt++ < DISCOVERY_MAX_FAIL)
377697faec53SJames Smart 					goto restart;
377797faec53SJames Smart 
377897faec53SJames Smart 				pr_err("nvme_discovery: too many reference "
377997faec53SJames Smart 				       "failures\n");
378097faec53SJames Smart 				goto process_local_list;
378197faec53SJames Smart 			}
378297faec53SJames Smart 			if (list_empty(&rport->disc_list))
378397faec53SJames Smart 				list_add_tail(&rport->disc_list,
378497faec53SJames Smart 					      &local_disc_list);
378597faec53SJames Smart 		}
378697faec53SJames Smart 	}
378797faec53SJames Smart 
378897faec53SJames Smart process_local_list:
378997faec53SJames Smart 	while (!list_empty(&local_disc_list)) {
379097faec53SJames Smart 		rport = list_first_entry(&local_disc_list,
379197faec53SJames Smart 					 struct nvme_fc_rport, disc_list);
379297faec53SJames Smart 		list_del_init(&rport->disc_list);
379397faec53SJames Smart 		spin_unlock_irqrestore(&nvme_fc_lock, flags);
379497faec53SJames Smart 
379597faec53SJames Smart 		lport = rport->lport;
379697faec53SJames Smart 		/* signal discovery. Won't hurt if it repeats */
379797faec53SJames Smart 		nvme_fc_signal_discovery_scan(lport, rport);
379897faec53SJames Smart 		nvme_fc_rport_put(rport);
379997faec53SJames Smart 		nvme_fc_lport_put(lport);
380097faec53SJames Smart 
380197faec53SJames Smart 		spin_lock_irqsave(&nvme_fc_lock, flags);
380297faec53SJames Smart 	}
380397faec53SJames Smart 	spin_unlock_irqrestore(&nvme_fc_lock, flags);
380497faec53SJames Smart 
380597faec53SJames Smart 	return count;
380697faec53SJames Smart }
380797faec53SJames Smart static DEVICE_ATTR(nvme_discovery, 0200, NULL, nvme_fc_nvme_discovery_store);
380897faec53SJames Smart 
380997faec53SJames Smart static struct attribute *nvme_fc_attrs[] = {
381097faec53SJames Smart 	&dev_attr_nvme_discovery.attr,
381197faec53SJames Smart 	NULL
381297faec53SJames Smart };
381397faec53SJames Smart 
381497faec53SJames Smart static struct attribute_group nvme_fc_attr_group = {
381597faec53SJames Smart 	.attrs = nvme_fc_attrs,
381697faec53SJames Smart };
381797faec53SJames Smart 
381897faec53SJames Smart static const struct attribute_group *nvme_fc_attr_groups[] = {
381997faec53SJames Smart 	&nvme_fc_attr_group,
382097faec53SJames Smart 	NULL
382197faec53SJames Smart };
382297faec53SJames Smart 
382397faec53SJames Smart static struct class fc_class = {
382497faec53SJames Smart 	.name = "fc",
382597faec53SJames Smart 	.dev_groups = nvme_fc_attr_groups,
382697faec53SJames Smart 	.owner = THIS_MODULE,
382797faec53SJames Smart };
382897faec53SJames Smart 
3829e399441dSJames Smart static int __init nvme_fc_init_module(void)
3830e399441dSJames Smart {
38315f568556SJames Smart 	int ret;
38325f568556SJames Smart 
38338730c1ddSHannes Reinecke 	nvme_fc_wq = alloc_workqueue("nvme_fc_wq", WQ_MEM_RECLAIM, 0);
38348730c1ddSHannes Reinecke 	if (!nvme_fc_wq)
38358730c1ddSHannes Reinecke 		return -ENOMEM;
38368730c1ddSHannes Reinecke 
38375f568556SJames Smart 	/*
38385f568556SJames Smart 	 * NOTE:
38395f568556SJames Smart 	 * It is expected that in the future the kernel will combine
38405f568556SJames Smart 	 * the FC-isms that are currently under scsi and now being
38415f568556SJames Smart 	 * added to by NVME into a new standalone FC class. The SCSI
38425f568556SJames Smart 	 * and NVME protocols and their devices would be under this
38435f568556SJames Smart 	 * new FC class.
38445f568556SJames Smart 	 *
38455f568556SJames Smart 	 * As we need something to post FC-specific udev events to,
38465f568556SJames Smart 	 * specifically for nvme probe events, start by creating the
38475f568556SJames Smart 	 * new device class.  When the new standalone FC class is
38485f568556SJames Smart 	 * put in place, this code will move to a more generic
38495f568556SJames Smart 	 * location for the class.
38505f568556SJames Smart 	 */
385197faec53SJames Smart 	ret = class_register(&fc_class);
385297faec53SJames Smart 	if (ret) {
38535f568556SJames Smart 		pr_err("couldn't register class fc\n");
38548730c1ddSHannes Reinecke 		goto out_destroy_wq;
38555f568556SJames Smart 	}
38565f568556SJames Smart 
38575f568556SJames Smart 	/*
38585f568556SJames Smart 	 * Create a device for the FC-centric udev events
38595f568556SJames Smart 	 */
386097faec53SJames Smart 	fc_udev_device = device_create(&fc_class, NULL, MKDEV(0, 0), NULL,
38615f568556SJames Smart 				"fc_udev_device");
38625f568556SJames Smart 	if (IS_ERR(fc_udev_device)) {
38635f568556SJames Smart 		pr_err("couldn't create fc_udev device!\n");
38645f568556SJames Smart 		ret = PTR_ERR(fc_udev_device);
38655f568556SJames Smart 		goto out_destroy_class;
38665f568556SJames Smart 	}
38675f568556SJames Smart 
38685f568556SJames Smart 	ret = nvmf_register_transport(&nvme_fc_transport);
38695f568556SJames Smart 	if (ret)
38705f568556SJames Smart 		goto out_destroy_device;
38715f568556SJames Smart 
38725f568556SJames Smart 	return 0;
38735f568556SJames Smart 
38745f568556SJames Smart out_destroy_device:
387597faec53SJames Smart 	device_destroy(&fc_class, MKDEV(0, 0));
38765f568556SJames Smart out_destroy_class:
387797faec53SJames Smart 	class_unregister(&fc_class);
38788730c1ddSHannes Reinecke out_destroy_wq:
38798730c1ddSHannes Reinecke 	destroy_workqueue(nvme_fc_wq);
38808730c1ddSHannes Reinecke 
38815f568556SJames Smart 	return ret;
3882e399441dSJames Smart }
3883e399441dSJames Smart 
38844c73cbdfSJames Smart static void
38854c73cbdfSJames Smart nvme_fc_delete_controllers(struct nvme_fc_rport *rport)
38864c73cbdfSJames Smart {
38874c73cbdfSJames Smart 	struct nvme_fc_ctrl *ctrl;
38884c73cbdfSJames Smart 
38894c73cbdfSJames Smart 	spin_lock(&rport->lock);
38904c73cbdfSJames Smart 	list_for_each_entry(ctrl, &rport->ctrl_list, ctrl_list) {
38914c73cbdfSJames Smart 		dev_warn(ctrl->ctrl.device,
38924c73cbdfSJames Smart 			"NVME-FC{%d}: transport unloading: deleting ctrl\n",
38934c73cbdfSJames Smart 			ctrl->cnum);
38944c73cbdfSJames Smart 		nvme_delete_ctrl(&ctrl->ctrl);
38954c73cbdfSJames Smart 	}
38964c73cbdfSJames Smart 	spin_unlock(&rport->lock);
38974c73cbdfSJames Smart }
38984c73cbdfSJames Smart 
38994c73cbdfSJames Smart static void
39004c73cbdfSJames Smart nvme_fc_cleanup_for_unload(void)
39014c73cbdfSJames Smart {
39024c73cbdfSJames Smart 	struct nvme_fc_lport *lport;
39034c73cbdfSJames Smart 	struct nvme_fc_rport *rport;
39044c73cbdfSJames Smart 
39054c73cbdfSJames Smart 	list_for_each_entry(lport, &nvme_fc_lport_list, port_list) {
39064c73cbdfSJames Smart 		list_for_each_entry(rport, &lport->endp_list, endp_list) {
39074c73cbdfSJames Smart 			nvme_fc_delete_controllers(rport);
39084c73cbdfSJames Smart 		}
39094c73cbdfSJames Smart 	}
39104c73cbdfSJames Smart }
39114c73cbdfSJames Smart 
3912e399441dSJames Smart static void __exit nvme_fc_exit_module(void)
3913e399441dSJames Smart {
39144c73cbdfSJames Smart 	unsigned long flags;
39154c73cbdfSJames Smart 	bool need_cleanup = false;
39164c73cbdfSJames Smart 
39174c73cbdfSJames Smart 	spin_lock_irqsave(&nvme_fc_lock, flags);
39184c73cbdfSJames Smart 	nvme_fc_waiting_to_unload = true;
39194c73cbdfSJames Smart 	if (!list_empty(&nvme_fc_lport_list)) {
39204c73cbdfSJames Smart 		need_cleanup = true;
39214c73cbdfSJames Smart 		nvme_fc_cleanup_for_unload();
39224c73cbdfSJames Smart 	}
39234c73cbdfSJames Smart 	spin_unlock_irqrestore(&nvme_fc_lock, flags);
39244c73cbdfSJames Smart 	if (need_cleanup) {
39254c73cbdfSJames Smart 		pr_info("%s: waiting for ctlr deletes\n", __func__);
39264c73cbdfSJames Smart 		wait_for_completion(&nvme_fc_unload_proceed);
39274c73cbdfSJames Smart 		pr_info("%s: ctrl deletes complete\n", __func__);
39284c73cbdfSJames Smart 	}
3929e399441dSJames Smart 
3930e399441dSJames Smart 	nvmf_unregister_transport(&nvme_fc_transport);
3931e399441dSJames Smart 
3932e399441dSJames Smart 	ida_destroy(&nvme_fc_local_port_cnt);
3933e399441dSJames Smart 	ida_destroy(&nvme_fc_ctrl_cnt);
39345f568556SJames Smart 
393597faec53SJames Smart 	device_destroy(&fc_class, MKDEV(0, 0));
393697faec53SJames Smart 	class_unregister(&fc_class);
39378730c1ddSHannes Reinecke 	destroy_workqueue(nvme_fc_wq);
3938e399441dSJames Smart }
3939e399441dSJames Smart 
3940e399441dSJames Smart module_init(nvme_fc_init_module);
3941e399441dSJames Smart module_exit(nvme_fc_exit_module);
3942e399441dSJames Smart 
3943e399441dSJames Smart MODULE_LICENSE("GPL v2");
3944