xref: /openbmc/linux/drivers/scsi/lpfc/lpfc_els.c (revision d89775fc)
1 /*******************************************************************
2  * This file is part of the Emulex Linux Device Driver for         *
3  * Fibre Channel Host Bus Adapters.                                *
4  * Copyright (C) 2017-2020 Broadcom. All Rights Reserved. The term *
5  * “Broadcom” refers to Broadcom Inc. and/or its subsidiaries.     *
6  * Copyright (C) 2004-2016 Emulex.  All rights reserved.           *
7  * EMULEX and SLI are trademarks of Emulex.                        *
8  * www.broadcom.com                                                *
9  * Portions Copyright (C) 2004-2005 Christoph Hellwig              *
10  *                                                                 *
11  * This program is free software; you can redistribute it and/or   *
12  * modify it under the terms of version 2 of the GNU General       *
13  * Public License as published by the Free Software Foundation.    *
14  * This program is distributed in the hope that it will be useful. *
15  * ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND          *
16  * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY,  *
17  * FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE      *
18  * DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD *
19  * TO BE LEGALLY INVALID.  See the GNU General Public License for  *
20  * more details, a copy of which can be found in the file COPYING  *
21  * included with this package.                                     *
22  *******************************************************************/
23 /* See Fibre Channel protocol T11 FC-LS for details */
24 #include <linux/blkdev.h>
25 #include <linux/pci.h>
26 #include <linux/slab.h>
27 #include <linux/interrupt.h>
28 
29 #include <scsi/scsi.h>
30 #include <scsi/scsi_device.h>
31 #include <scsi/scsi_host.h>
32 #include <scsi/scsi_transport_fc.h>
33 #include <uapi/scsi/fc/fc_fs.h>
34 #include <uapi/scsi/fc/fc_els.h>
35 
36 #include "lpfc_hw4.h"
37 #include "lpfc_hw.h"
38 #include "lpfc_sli.h"
39 #include "lpfc_sli4.h"
40 #include "lpfc_nl.h"
41 #include "lpfc_disc.h"
42 #include "lpfc_scsi.h"
43 #include "lpfc.h"
44 #include "lpfc_logmsg.h"
45 #include "lpfc_crtn.h"
46 #include "lpfc_vport.h"
47 #include "lpfc_debugfs.h"
48 
49 static int lpfc_els_retry(struct lpfc_hba *, struct lpfc_iocbq *,
50 			  struct lpfc_iocbq *);
51 static void lpfc_cmpl_fabric_iocb(struct lpfc_hba *, struct lpfc_iocbq *,
52 			struct lpfc_iocbq *);
53 static void lpfc_fabric_abort_vport(struct lpfc_vport *vport);
54 static int lpfc_issue_els_fdisc(struct lpfc_vport *vport,
55 				struct lpfc_nodelist *ndlp, uint8_t retry);
56 static int lpfc_issue_fabric_iocb(struct lpfc_hba *phba,
57 				  struct lpfc_iocbq *iocb);
58 
59 static int lpfc_max_els_tries = 3;
60 
61 /**
62  * lpfc_els_chk_latt - Check host link attention event for a vport
63  * @vport: pointer to a host virtual N_Port data structure.
64  *
65  * This routine checks whether there is an outstanding host link
66  * attention event during the discovery process with the @vport. It is done
67  * by reading the HBA's Host Attention (HA) register. If there is any host
68  * link attention events during this @vport's discovery process, the @vport
69  * shall be marked as FC_ABORT_DISCOVERY, a host link attention clear shall
70  * be issued if the link state is not already in host link cleared state,
71  * and a return code shall indicate whether the host link attention event
72  * had happened.
73  *
74  * Note that, if either the host link is in state LPFC_LINK_DOWN or @vport
75  * state in LPFC_VPORT_READY, the request for checking host link attention
76  * event will be ignored and a return code shall indicate no host link
77  * attention event had happened.
78  *
79  * Return codes
80  *   0 - no host link attention event happened
81  *   1 - host link attention event happened
82  **/
83 int
84 lpfc_els_chk_latt(struct lpfc_vport *vport)
85 {
86 	struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
87 	struct lpfc_hba  *phba = vport->phba;
88 	uint32_t ha_copy;
89 
90 	if (vport->port_state >= LPFC_VPORT_READY ||
91 	    phba->link_state == LPFC_LINK_DOWN ||
92 	    phba->sli_rev > LPFC_SLI_REV3)
93 		return 0;
94 
95 	/* Read the HBA Host Attention Register */
96 	if (lpfc_readl(phba->HAregaddr, &ha_copy))
97 		return 1;
98 
99 	if (!(ha_copy & HA_LATT))
100 		return 0;
101 
102 	/* Pending Link Event during Discovery */
103 	lpfc_printf_vlog(vport, KERN_ERR, LOG_TRACE_EVENT,
104 			 "0237 Pending Link Event during "
105 			 "Discovery: State x%x\n",
106 			 phba->pport->port_state);
107 
108 	/* CLEAR_LA should re-enable link attention events and
109 	 * we should then immediately take a LATT event. The
110 	 * LATT processing should call lpfc_linkdown() which
111 	 * will cleanup any left over in-progress discovery
112 	 * events.
113 	 */
114 	spin_lock_irq(shost->host_lock);
115 	vport->fc_flag |= FC_ABORT_DISCOVERY;
116 	spin_unlock_irq(shost->host_lock);
117 
118 	if (phba->link_state != LPFC_CLEAR_LA)
119 		lpfc_issue_clear_la(phba, vport);
120 
121 	return 1;
122 }
123 
124 /**
125  * lpfc_prep_els_iocb - Allocate and prepare a lpfc iocb data structure
126  * @vport: pointer to a host virtual N_Port data structure.
127  * @expectRsp: flag indicating whether response is expected.
128  * @cmdSize: size of the ELS command.
129  * @retry: number of retries to the command IOCB when it fails.
130  * @ndlp: pointer to a node-list data structure.
131  * @did: destination identifier.
132  * @elscmd: the ELS command code.
133  *
134  * This routine is used for allocating a lpfc-IOCB data structure from
135  * the driver lpfc-IOCB free-list and prepare the IOCB with the parameters
136  * passed into the routine for discovery state machine to issue an Extended
137  * Link Service (ELS) commands. It is a generic lpfc-IOCB allocation
138  * and preparation routine that is used by all the discovery state machine
139  * routines and the ELS command-specific fields will be later set up by
140  * the individual discovery machine routines after calling this routine
141  * allocating and preparing a generic IOCB data structure. It fills in the
142  * Buffer Descriptor Entries (BDEs), allocates buffers for both command
143  * payload and response payload (if expected). The reference count on the
144  * ndlp is incremented by 1 and the reference to the ndlp is put into
145  * context1 of the IOCB data structure for this IOCB to hold the ndlp
146  * reference for the command's callback function to access later.
147  *
148  * Return code
149  *   Pointer to the newly allocated/prepared els iocb data structure
150  *   NULL - when els iocb data structure allocation/preparation failed
151  **/
152 struct lpfc_iocbq *
153 lpfc_prep_els_iocb(struct lpfc_vport *vport, uint8_t expectRsp,
154 		   uint16_t cmdSize, uint8_t retry,
155 		   struct lpfc_nodelist *ndlp, uint32_t did,
156 		   uint32_t elscmd)
157 {
158 	struct lpfc_hba  *phba = vport->phba;
159 	struct lpfc_iocbq *elsiocb;
160 	struct lpfc_dmabuf *pcmd, *prsp, *pbuflist;
161 	struct ulp_bde64 *bpl;
162 	IOCB_t *icmd;
163 
164 
165 	if (!lpfc_is_link_up(phba))
166 		return NULL;
167 
168 	/* Allocate buffer for  command iocb */
169 	elsiocb = lpfc_sli_get_iocbq(phba);
170 
171 	if (elsiocb == NULL)
172 		return NULL;
173 
174 	/*
175 	 * If this command is for fabric controller and HBA running
176 	 * in FIP mode send FLOGI, FDISC and LOGO as FIP frames.
177 	 */
178 	if ((did == Fabric_DID) &&
179 		(phba->hba_flag & HBA_FIP_SUPPORT) &&
180 		((elscmd == ELS_CMD_FLOGI) ||
181 		 (elscmd == ELS_CMD_FDISC) ||
182 		 (elscmd == ELS_CMD_LOGO)))
183 		switch (elscmd) {
184 		case ELS_CMD_FLOGI:
185 		elsiocb->iocb_flag |=
186 			((LPFC_ELS_ID_FLOGI << LPFC_FIP_ELS_ID_SHIFT)
187 					& LPFC_FIP_ELS_ID_MASK);
188 		break;
189 		case ELS_CMD_FDISC:
190 		elsiocb->iocb_flag |=
191 			((LPFC_ELS_ID_FDISC << LPFC_FIP_ELS_ID_SHIFT)
192 					& LPFC_FIP_ELS_ID_MASK);
193 		break;
194 		case ELS_CMD_LOGO:
195 		elsiocb->iocb_flag |=
196 			((LPFC_ELS_ID_LOGO << LPFC_FIP_ELS_ID_SHIFT)
197 					& LPFC_FIP_ELS_ID_MASK);
198 		break;
199 		}
200 	else
201 		elsiocb->iocb_flag &= ~LPFC_FIP_ELS_ID_MASK;
202 
203 	icmd = &elsiocb->iocb;
204 
205 	/* fill in BDEs for command */
206 	/* Allocate buffer for command payload */
207 	pcmd = kmalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
208 	if (pcmd)
209 		pcmd->virt = lpfc_mbuf_alloc(phba, MEM_PRI, &pcmd->phys);
210 	if (!pcmd || !pcmd->virt)
211 		goto els_iocb_free_pcmb_exit;
212 
213 	INIT_LIST_HEAD(&pcmd->list);
214 
215 	/* Allocate buffer for response payload */
216 	if (expectRsp) {
217 		prsp = kmalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
218 		if (prsp)
219 			prsp->virt = lpfc_mbuf_alloc(phba, MEM_PRI,
220 						     &prsp->phys);
221 		if (!prsp || !prsp->virt)
222 			goto els_iocb_free_prsp_exit;
223 		INIT_LIST_HEAD(&prsp->list);
224 	} else
225 		prsp = NULL;
226 
227 	/* Allocate buffer for Buffer ptr list */
228 	pbuflist = kmalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
229 	if (pbuflist)
230 		pbuflist->virt = lpfc_mbuf_alloc(phba, MEM_PRI,
231 						 &pbuflist->phys);
232 	if (!pbuflist || !pbuflist->virt)
233 		goto els_iocb_free_pbuf_exit;
234 
235 	INIT_LIST_HEAD(&pbuflist->list);
236 
237 	if (expectRsp) {
238 		icmd->un.elsreq64.bdl.addrHigh = putPaddrHigh(pbuflist->phys);
239 		icmd->un.elsreq64.bdl.addrLow = putPaddrLow(pbuflist->phys);
240 		icmd->un.elsreq64.bdl.bdeFlags = BUFF_TYPE_BLP_64;
241 		icmd->un.elsreq64.bdl.bdeSize = (2 * sizeof(struct ulp_bde64));
242 
243 		icmd->un.elsreq64.remoteID = did;		/* DID */
244 		icmd->ulpCommand = CMD_ELS_REQUEST64_CR;
245 		if (elscmd == ELS_CMD_FLOGI)
246 			icmd->ulpTimeout = FF_DEF_RATOV * 2;
247 		else if (elscmd == ELS_CMD_LOGO)
248 			icmd->ulpTimeout = phba->fc_ratov;
249 		else
250 			icmd->ulpTimeout = phba->fc_ratov * 2;
251 	} else {
252 		icmd->un.xseq64.bdl.addrHigh = putPaddrHigh(pbuflist->phys);
253 		icmd->un.xseq64.bdl.addrLow = putPaddrLow(pbuflist->phys);
254 		icmd->un.xseq64.bdl.bdeFlags = BUFF_TYPE_BLP_64;
255 		icmd->un.xseq64.bdl.bdeSize = sizeof(struct ulp_bde64);
256 		icmd->un.xseq64.xmit_els_remoteID = did;	/* DID */
257 		icmd->ulpCommand = CMD_XMIT_ELS_RSP64_CX;
258 	}
259 	icmd->ulpBdeCount = 1;
260 	icmd->ulpLe = 1;
261 	icmd->ulpClass = CLASS3;
262 
263 	/*
264 	 * If we have NPIV enabled, we want to send ELS traffic by VPI.
265 	 * For SLI4, since the driver controls VPIs we also want to include
266 	 * all ELS pt2pt protocol traffic as well.
267 	 */
268 	if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) ||
269 		((phba->sli_rev == LPFC_SLI_REV4) &&
270 		    (vport->fc_flag & FC_PT2PT))) {
271 
272 		if (expectRsp) {
273 			icmd->un.elsreq64.myID = vport->fc_myDID;
274 
275 			/* For ELS_REQUEST64_CR, use the VPI by default */
276 			icmd->ulpContext = phba->vpi_ids[vport->vpi];
277 		}
278 
279 		icmd->ulpCt_h = 0;
280 		/* The CT field must be 0=INVALID_RPI for the ECHO cmd */
281 		if (elscmd == ELS_CMD_ECHO)
282 			icmd->ulpCt_l = 0; /* context = invalid RPI */
283 		else
284 			icmd->ulpCt_l = 1; /* context = VPI */
285 	}
286 
287 	bpl = (struct ulp_bde64 *) pbuflist->virt;
288 	bpl->addrLow = le32_to_cpu(putPaddrLow(pcmd->phys));
289 	bpl->addrHigh = le32_to_cpu(putPaddrHigh(pcmd->phys));
290 	bpl->tus.f.bdeSize = cmdSize;
291 	bpl->tus.f.bdeFlags = 0;
292 	bpl->tus.w = le32_to_cpu(bpl->tus.w);
293 
294 	if (expectRsp) {
295 		bpl++;
296 		bpl->addrLow = le32_to_cpu(putPaddrLow(prsp->phys));
297 		bpl->addrHigh = le32_to_cpu(putPaddrHigh(prsp->phys));
298 		bpl->tus.f.bdeSize = FCELSSIZE;
299 		bpl->tus.f.bdeFlags = BUFF_TYPE_BDE_64;
300 		bpl->tus.w = le32_to_cpu(bpl->tus.w);
301 	}
302 
303 	/* prevent preparing iocb with NULL ndlp reference */
304 	elsiocb->context1 = lpfc_nlp_get(ndlp);
305 	if (!elsiocb->context1)
306 		goto els_iocb_free_pbuf_exit;
307 	elsiocb->context2 = pcmd;
308 	elsiocb->context3 = pbuflist;
309 	elsiocb->retry = retry;
310 	elsiocb->vport = vport;
311 	elsiocb->drvrTimeout = (phba->fc_ratov << 1) + LPFC_DRVR_TIMEOUT;
312 
313 	if (prsp) {
314 		list_add(&prsp->list, &pcmd->list);
315 	}
316 	if (expectRsp) {
317 		/* Xmit ELS command <elsCmd> to remote NPORT <did> */
318 		lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
319 				 "0116 Xmit ELS command x%x to remote "
320 				 "NPORT x%x I/O tag: x%x, port state:x%x "
321 				 "rpi x%x fc_flag:x%x\n",
322 				 elscmd, did, elsiocb->iotag,
323 				 vport->port_state, ndlp->nlp_rpi,
324 				 vport->fc_flag);
325 	} else {
326 		/* Xmit ELS response <elsCmd> to remote NPORT <did> */
327 		lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
328 				 "0117 Xmit ELS response x%x to remote "
329 				 "NPORT x%x I/O tag: x%x, size: x%x "
330 				 "port_state x%x  rpi x%x fc_flag x%x\n",
331 				 elscmd, ndlp->nlp_DID, elsiocb->iotag,
332 				 cmdSize, vport->port_state,
333 				 ndlp->nlp_rpi, vport->fc_flag);
334 	}
335 	return elsiocb;
336 
337 els_iocb_free_pbuf_exit:
338 	if (expectRsp)
339 		lpfc_mbuf_free(phba, prsp->virt, prsp->phys);
340 	kfree(pbuflist);
341 
342 els_iocb_free_prsp_exit:
343 	lpfc_mbuf_free(phba, pcmd->virt, pcmd->phys);
344 	kfree(prsp);
345 
346 els_iocb_free_pcmb_exit:
347 	kfree(pcmd);
348 	lpfc_sli_release_iocbq(phba, elsiocb);
349 	return NULL;
350 }
351 
352 /**
353  * lpfc_issue_fabric_reglogin - Issue fabric registration login for a vport
354  * @vport: pointer to a host virtual N_Port data structure.
355  *
356  * This routine issues a fabric registration login for a @vport. An
357  * active ndlp node with Fabric_DID must already exist for this @vport.
358  * The routine invokes two mailbox commands to carry out fabric registration
359  * login through the HBA firmware: the first mailbox command requests the
360  * HBA to perform link configuration for the @vport; and the second mailbox
361  * command requests the HBA to perform the actual fabric registration login
362  * with the @vport.
363  *
364  * Return code
365  *   0 - successfully issued fabric registration login for @vport
366  *   -ENXIO -- failed to issue fabric registration login for @vport
367  **/
368 int
369 lpfc_issue_fabric_reglogin(struct lpfc_vport *vport)
370 {
371 	struct lpfc_hba  *phba = vport->phba;
372 	LPFC_MBOXQ_t *mbox;
373 	struct lpfc_dmabuf *mp;
374 	struct lpfc_nodelist *ndlp;
375 	struct serv_parm *sp;
376 	int rc;
377 	int err = 0;
378 
379 	sp = &phba->fc_fabparam;
380 	ndlp = lpfc_findnode_did(vport, Fabric_DID);
381 	if (!ndlp || !NLP_CHK_NODE_ACT(ndlp)) {
382 		err = 1;
383 		goto fail;
384 	}
385 
386 	mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
387 	if (!mbox) {
388 		err = 2;
389 		goto fail;
390 	}
391 
392 	vport->port_state = LPFC_FABRIC_CFG_LINK;
393 	lpfc_config_link(phba, mbox);
394 	mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
395 	mbox->vport = vport;
396 
397 	rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
398 	if (rc == MBX_NOT_FINISHED) {
399 		err = 3;
400 		goto fail_free_mbox;
401 	}
402 
403 	mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
404 	if (!mbox) {
405 		err = 4;
406 		goto fail;
407 	}
408 	rc = lpfc_reg_rpi(phba, vport->vpi, Fabric_DID, (uint8_t *)sp, mbox,
409 			  ndlp->nlp_rpi);
410 	if (rc) {
411 		err = 5;
412 		goto fail_free_mbox;
413 	}
414 
415 	mbox->mbox_cmpl = lpfc_mbx_cmpl_fabric_reg_login;
416 	mbox->vport = vport;
417 	/* increment the reference count on ndlp to hold reference
418 	 * for the callback routine.
419 	 */
420 	mbox->ctx_ndlp = lpfc_nlp_get(ndlp);
421 
422 	rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
423 	if (rc == MBX_NOT_FINISHED) {
424 		err = 6;
425 		goto fail_issue_reg_login;
426 	}
427 
428 	return 0;
429 
430 fail_issue_reg_login:
431 	/* decrement the reference count on ndlp just incremented
432 	 * for the failed mbox command.
433 	 */
434 	lpfc_nlp_put(ndlp);
435 	mp = (struct lpfc_dmabuf *)mbox->ctx_buf;
436 	lpfc_mbuf_free(phba, mp->virt, mp->phys);
437 	kfree(mp);
438 fail_free_mbox:
439 	mempool_free(mbox, phba->mbox_mem_pool);
440 
441 fail:
442 	lpfc_vport_set_state(vport, FC_VPORT_FAILED);
443 	lpfc_printf_vlog(vport, KERN_ERR, LOG_TRACE_EVENT,
444 			 "0249 Cannot issue Register Fabric login: Err %d\n",
445 			 err);
446 	return -ENXIO;
447 }
448 
449 /**
450  * lpfc_issue_reg_vfi - Register VFI for this vport's fabric login
451  * @vport: pointer to a host virtual N_Port data structure.
452  *
453  * This routine issues a REG_VFI mailbox for the vfi, vpi, fcfi triplet for
454  * the @vport. This mailbox command is necessary for SLI4 port only.
455  *
456  * Return code
457  *   0 - successfully issued REG_VFI for @vport
458  *   A failure code otherwise.
459  **/
460 int
461 lpfc_issue_reg_vfi(struct lpfc_vport *vport)
462 {
463 	struct lpfc_hba  *phba = vport->phba;
464 	LPFC_MBOXQ_t *mboxq = NULL;
465 	struct lpfc_nodelist *ndlp;
466 	struct lpfc_dmabuf *dmabuf = NULL;
467 	int rc = 0;
468 
469 	/* move forward in case of SLI4 FC port loopback test and pt2pt mode */
470 	if ((phba->sli_rev == LPFC_SLI_REV4) &&
471 	    !(phba->link_flag & LS_LOOPBACK_MODE) &&
472 	    !(vport->fc_flag & FC_PT2PT)) {
473 		ndlp = lpfc_findnode_did(vport, Fabric_DID);
474 		if (!ndlp || !NLP_CHK_NODE_ACT(ndlp)) {
475 			rc = -ENODEV;
476 			goto fail;
477 		}
478 	}
479 
480 	mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
481 	if (!mboxq) {
482 		rc = -ENOMEM;
483 		goto fail;
484 	}
485 
486 	/* Supply CSP's only if we are fabric connect or pt-to-pt connect */
487 	if ((vport->fc_flag & FC_FABRIC) || (vport->fc_flag & FC_PT2PT)) {
488 		dmabuf = kzalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
489 		if (!dmabuf) {
490 			rc = -ENOMEM;
491 			goto fail;
492 		}
493 		dmabuf->virt = lpfc_mbuf_alloc(phba, MEM_PRI, &dmabuf->phys);
494 		if (!dmabuf->virt) {
495 			rc = -ENOMEM;
496 			goto fail;
497 		}
498 		memcpy(dmabuf->virt, &phba->fc_fabparam,
499 		       sizeof(struct serv_parm));
500 	}
501 
502 	vport->port_state = LPFC_FABRIC_CFG_LINK;
503 	if (dmabuf)
504 		lpfc_reg_vfi(mboxq, vport, dmabuf->phys);
505 	else
506 		lpfc_reg_vfi(mboxq, vport, 0);
507 
508 	mboxq->mbox_cmpl = lpfc_mbx_cmpl_reg_vfi;
509 	mboxq->vport = vport;
510 	mboxq->ctx_buf = dmabuf;
511 	rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
512 	if (rc == MBX_NOT_FINISHED) {
513 		rc = -ENXIO;
514 		goto fail;
515 	}
516 	return 0;
517 
518 fail:
519 	if (mboxq)
520 		mempool_free(mboxq, phba->mbox_mem_pool);
521 	if (dmabuf) {
522 		if (dmabuf->virt)
523 			lpfc_mbuf_free(phba, dmabuf->virt, dmabuf->phys);
524 		kfree(dmabuf);
525 	}
526 
527 	lpfc_vport_set_state(vport, FC_VPORT_FAILED);
528 	lpfc_printf_vlog(vport, KERN_ERR, LOG_TRACE_EVENT,
529 			 "0289 Issue Register VFI failed: Err %d\n", rc);
530 	return rc;
531 }
532 
533 /**
534  * lpfc_issue_unreg_vfi - Unregister VFI for this vport's fabric login
535  * @vport: pointer to a host virtual N_Port data structure.
536  *
537  * This routine issues a UNREG_VFI mailbox with the vfi, vpi, fcfi triplet for
538  * the @vport. This mailbox command is necessary for SLI4 port only.
539  *
540  * Return code
541  *   0 - successfully issued REG_VFI for @vport
542  *   A failure code otherwise.
543  **/
544 int
545 lpfc_issue_unreg_vfi(struct lpfc_vport *vport)
546 {
547 	struct lpfc_hba *phba = vport->phba;
548 	struct Scsi_Host *shost;
549 	LPFC_MBOXQ_t *mboxq;
550 	int rc;
551 
552 	mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
553 	if (!mboxq) {
554 		lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
555 				"2556 UNREG_VFI mbox allocation failed"
556 				"HBA state x%x\n", phba->pport->port_state);
557 		return -ENOMEM;
558 	}
559 
560 	lpfc_unreg_vfi(mboxq, vport);
561 	mboxq->vport = vport;
562 	mboxq->mbox_cmpl = lpfc_unregister_vfi_cmpl;
563 
564 	rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
565 	if (rc == MBX_NOT_FINISHED) {
566 		lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
567 				"2557 UNREG_VFI issue mbox failed rc x%x "
568 				"HBA state x%x\n",
569 				rc, phba->pport->port_state);
570 		mempool_free(mboxq, phba->mbox_mem_pool);
571 		return -EIO;
572 	}
573 
574 	shost = lpfc_shost_from_vport(vport);
575 	spin_lock_irq(shost->host_lock);
576 	vport->fc_flag &= ~FC_VFI_REGISTERED;
577 	spin_unlock_irq(shost->host_lock);
578 	return 0;
579 }
580 
581 /**
582  * lpfc_check_clean_addr_bit - Check whether assigned FCID is clean.
583  * @vport: pointer to a host virtual N_Port data structure.
584  * @sp: pointer to service parameter data structure.
585  *
586  * This routine is called from FLOGI/FDISC completion handler functions.
587  * lpfc_check_clean_addr_bit return 1 when FCID/Fabric portname/ Fabric
588  * node nodename is changed in the completion service parameter else return
589  * 0. This function also set flag in the vport data structure to delay
590  * NP_Port discovery after the FLOGI/FDISC completion if Clean address bit
591  * in FLOGI/FDISC response is cleared and FCID/Fabric portname/ Fabric
592  * node nodename is changed in the completion service parameter.
593  *
594  * Return code
595  *   0 - FCID and Fabric Nodename and Fabric portname is not changed.
596  *   1 - FCID or Fabric Nodename or Fabric portname is changed.
597  *
598  **/
599 static uint8_t
600 lpfc_check_clean_addr_bit(struct lpfc_vport *vport,
601 		struct serv_parm *sp)
602 {
603 	struct lpfc_hba *phba = vport->phba;
604 	uint8_t fabric_param_changed = 0;
605 	struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
606 
607 	if ((vport->fc_prevDID != vport->fc_myDID) ||
608 		memcmp(&vport->fabric_portname, &sp->portName,
609 			sizeof(struct lpfc_name)) ||
610 		memcmp(&vport->fabric_nodename, &sp->nodeName,
611 			sizeof(struct lpfc_name)) ||
612 		(vport->vport_flag & FAWWPN_PARAM_CHG)) {
613 		fabric_param_changed = 1;
614 		vport->vport_flag &= ~FAWWPN_PARAM_CHG;
615 	}
616 	/*
617 	 * Word 1 Bit 31 in common service parameter is overloaded.
618 	 * Word 1 Bit 31 in FLOGI request is multiple NPort request
619 	 * Word 1 Bit 31 in FLOGI response is clean address bit
620 	 *
621 	 * If fabric parameter is changed and clean address bit is
622 	 * cleared delay nport discovery if
623 	 * - vport->fc_prevDID != 0 (not initial discovery) OR
624 	 * - lpfc_delay_discovery module parameter is set.
625 	 */
626 	if (fabric_param_changed && !sp->cmn.clean_address_bit &&
627 	    (vport->fc_prevDID || phba->cfg_delay_discovery)) {
628 		spin_lock_irq(shost->host_lock);
629 		vport->fc_flag |= FC_DISC_DELAYED;
630 		spin_unlock_irq(shost->host_lock);
631 	}
632 
633 	return fabric_param_changed;
634 }
635 
636 
637 /**
638  * lpfc_cmpl_els_flogi_fabric - Completion function for flogi to a fabric port
639  * @vport: pointer to a host virtual N_Port data structure.
640  * @ndlp: pointer to a node-list data structure.
641  * @sp: pointer to service parameter data structure.
642  * @irsp: pointer to the IOCB within the lpfc response IOCB.
643  *
644  * This routine is invoked by the lpfc_cmpl_els_flogi() completion callback
645  * function to handle the completion of a Fabric Login (FLOGI) into a fabric
646  * port in a fabric topology. It properly sets up the parameters to the @ndlp
647  * from the IOCB response. It also check the newly assigned N_Port ID to the
648  * @vport against the previously assigned N_Port ID. If it is different from
649  * the previously assigned Destination ID (DID), the lpfc_unreg_rpi() routine
650  * is invoked on all the remaining nodes with the @vport to unregister the
651  * Remote Port Indicators (RPIs). Finally, the lpfc_issue_fabric_reglogin()
652  * is invoked to register login to the fabric.
653  *
654  * Return code
655  *   0 - Success (currently, always return 0)
656  **/
657 static int
658 lpfc_cmpl_els_flogi_fabric(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
659 			   struct serv_parm *sp, IOCB_t *irsp)
660 {
661 	struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
662 	struct lpfc_hba  *phba = vport->phba;
663 	struct lpfc_nodelist *np;
664 	struct lpfc_nodelist *next_np;
665 	uint8_t fabric_param_changed;
666 
667 	spin_lock_irq(shost->host_lock);
668 	vport->fc_flag |= FC_FABRIC;
669 	spin_unlock_irq(shost->host_lock);
670 
671 	phba->fc_edtov = be32_to_cpu(sp->cmn.e_d_tov);
672 	if (sp->cmn.edtovResolution)	/* E_D_TOV ticks are in nanoseconds */
673 		phba->fc_edtov = (phba->fc_edtov + 999999) / 1000000;
674 
675 	phba->fc_edtovResol = sp->cmn.edtovResolution;
676 	phba->fc_ratov = (be32_to_cpu(sp->cmn.w2.r_a_tov) + 999) / 1000;
677 
678 	if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
679 		spin_lock_irq(shost->host_lock);
680 		vport->fc_flag |= FC_PUBLIC_LOOP;
681 		spin_unlock_irq(shost->host_lock);
682 	}
683 
684 	vport->fc_myDID = irsp->un.ulpWord[4] & Mask_DID;
685 	memcpy(&ndlp->nlp_portname, &sp->portName, sizeof(struct lpfc_name));
686 	memcpy(&ndlp->nlp_nodename, &sp->nodeName, sizeof(struct lpfc_name));
687 	ndlp->nlp_class_sup = 0;
688 	if (sp->cls1.classValid)
689 		ndlp->nlp_class_sup |= FC_COS_CLASS1;
690 	if (sp->cls2.classValid)
691 		ndlp->nlp_class_sup |= FC_COS_CLASS2;
692 	if (sp->cls3.classValid)
693 		ndlp->nlp_class_sup |= FC_COS_CLASS3;
694 	if (sp->cls4.classValid)
695 		ndlp->nlp_class_sup |= FC_COS_CLASS4;
696 	ndlp->nlp_maxframe = ((sp->cmn.bbRcvSizeMsb & 0x0F) << 8) |
697 				sp->cmn.bbRcvSizeLsb;
698 
699 	fabric_param_changed = lpfc_check_clean_addr_bit(vport, sp);
700 	if (fabric_param_changed) {
701 		/* Reset FDMI attribute masks based on config parameter */
702 		if (phba->cfg_enable_SmartSAN ||
703 		    (phba->cfg_fdmi_on == LPFC_FDMI_SUPPORT)) {
704 			/* Setup appropriate attribute masks */
705 			vport->fdmi_hba_mask = LPFC_FDMI2_HBA_ATTR;
706 			if (phba->cfg_enable_SmartSAN)
707 				vport->fdmi_port_mask = LPFC_FDMI2_SMART_ATTR;
708 			else
709 				vport->fdmi_port_mask = LPFC_FDMI2_PORT_ATTR;
710 		} else {
711 			vport->fdmi_hba_mask = 0;
712 			vport->fdmi_port_mask = 0;
713 		}
714 
715 	}
716 	memcpy(&vport->fabric_portname, &sp->portName,
717 			sizeof(struct lpfc_name));
718 	memcpy(&vport->fabric_nodename, &sp->nodeName,
719 			sizeof(struct lpfc_name));
720 	memcpy(&phba->fc_fabparam, sp, sizeof(struct serv_parm));
721 
722 	if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) {
723 		if (sp->cmn.response_multiple_NPort) {
724 			lpfc_printf_vlog(vport, KERN_WARNING,
725 					 LOG_ELS | LOG_VPORT,
726 					 "1816 FLOGI NPIV supported, "
727 					 "response data 0x%x\n",
728 					 sp->cmn.response_multiple_NPort);
729 			spin_lock_irq(&phba->hbalock);
730 			phba->link_flag |= LS_NPIV_FAB_SUPPORTED;
731 			spin_unlock_irq(&phba->hbalock);
732 		} else {
733 			/* Because we asked f/w for NPIV it still expects us
734 			to call reg_vnpid atleast for the physcial host */
735 			lpfc_printf_vlog(vport, KERN_WARNING,
736 					 LOG_ELS | LOG_VPORT,
737 					 "1817 Fabric does not support NPIV "
738 					 "- configuring single port mode.\n");
739 			spin_lock_irq(&phba->hbalock);
740 			phba->link_flag &= ~LS_NPIV_FAB_SUPPORTED;
741 			spin_unlock_irq(&phba->hbalock);
742 		}
743 	}
744 
745 	/*
746 	 * For FC we need to do some special processing because of the SLI
747 	 * Port's default settings of the Common Service Parameters.
748 	 */
749 	if ((phba->sli_rev == LPFC_SLI_REV4) &&
750 	    (phba->sli4_hba.lnk_info.lnk_tp == LPFC_LNK_TYPE_FC)) {
751 		/* If physical FC port changed, unreg VFI and ALL VPIs / RPIs */
752 		if (fabric_param_changed)
753 			lpfc_unregister_fcf_prep(phba);
754 
755 		/* This should just update the VFI CSPs*/
756 		if (vport->fc_flag & FC_VFI_REGISTERED)
757 			lpfc_issue_reg_vfi(vport);
758 	}
759 
760 	if (fabric_param_changed &&
761 		!(vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)) {
762 
763 		/* If our NportID changed, we need to ensure all
764 		 * remaining NPORTs get unreg_login'ed.
765 		 */
766 		list_for_each_entry_safe(np, next_np,
767 					&vport->fc_nodes, nlp_listp) {
768 			if (!NLP_CHK_NODE_ACT(np))
769 				continue;
770 			if ((np->nlp_state != NLP_STE_NPR_NODE) ||
771 				   !(np->nlp_flag & NLP_NPR_ADISC))
772 				continue;
773 			spin_lock_irq(shost->host_lock);
774 			np->nlp_flag &= ~NLP_NPR_ADISC;
775 			spin_unlock_irq(shost->host_lock);
776 			lpfc_unreg_rpi(vport, np);
777 		}
778 		lpfc_cleanup_pending_mbox(vport);
779 
780 		if (phba->sli_rev == LPFC_SLI_REV4) {
781 			lpfc_sli4_unreg_all_rpis(vport);
782 			lpfc_mbx_unreg_vpi(vport);
783 			spin_lock_irq(shost->host_lock);
784 			vport->fc_flag |= FC_VPORT_NEEDS_INIT_VPI;
785 			spin_unlock_irq(shost->host_lock);
786 		}
787 
788 		/*
789 		 * For SLI3 and SLI4, the VPI needs to be reregistered in
790 		 * response to this fabric parameter change event.
791 		 */
792 		spin_lock_irq(shost->host_lock);
793 		vport->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
794 		spin_unlock_irq(shost->host_lock);
795 	} else if ((phba->sli_rev == LPFC_SLI_REV4) &&
796 		!(vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)) {
797 			/*
798 			 * Driver needs to re-reg VPI in order for f/w
799 			 * to update the MAC address.
800 			 */
801 			lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
802 			lpfc_register_new_vport(phba, vport, ndlp);
803 			return 0;
804 	}
805 
806 	if (phba->sli_rev < LPFC_SLI_REV4) {
807 		lpfc_nlp_set_state(vport, ndlp, NLP_STE_REG_LOGIN_ISSUE);
808 		if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED &&
809 		    vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)
810 			lpfc_register_new_vport(phba, vport, ndlp);
811 		else
812 			lpfc_issue_fabric_reglogin(vport);
813 	} else {
814 		ndlp->nlp_type |= NLP_FABRIC;
815 		lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
816 		if ((!(vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)) &&
817 			(vport->vpi_state & LPFC_VPI_REGISTERED)) {
818 			lpfc_start_fdiscs(phba);
819 			lpfc_do_scr_ns_plogi(phba, vport);
820 		} else if (vport->fc_flag & FC_VFI_REGISTERED)
821 			lpfc_issue_init_vpi(vport);
822 		else {
823 			lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
824 					"3135 Need register VFI: (x%x/%x)\n",
825 					vport->fc_prevDID, vport->fc_myDID);
826 			lpfc_issue_reg_vfi(vport);
827 		}
828 	}
829 	return 0;
830 }
831 
832 /**
833  * lpfc_cmpl_els_flogi_nport - Completion function for flogi to an N_Port
834  * @vport: pointer to a host virtual N_Port data structure.
835  * @ndlp: pointer to a node-list data structure.
836  * @sp: pointer to service parameter data structure.
837  *
838  * This routine is invoked by the lpfc_cmpl_els_flogi() completion callback
839  * function to handle the completion of a Fabric Login (FLOGI) into an N_Port
840  * in a point-to-point topology. First, the @vport's N_Port Name is compared
841  * with the received N_Port Name: if the @vport's N_Port Name is greater than
842  * the received N_Port Name lexicographically, this node shall assign local
843  * N_Port ID (PT2PT_LocalID: 1) and remote N_Port ID (PT2PT_RemoteID: 2) and
844  * will send out Port Login (PLOGI) with the N_Port IDs assigned. Otherwise,
845  * this node shall just wait for the remote node to issue PLOGI and assign
846  * N_Port IDs.
847  *
848  * Return code
849  *   0 - Success
850  *   -ENXIO - Fail
851  **/
852 static int
853 lpfc_cmpl_els_flogi_nport(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
854 			  struct serv_parm *sp)
855 {
856 	struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
857 	struct lpfc_hba  *phba = vport->phba;
858 	LPFC_MBOXQ_t *mbox;
859 	int rc;
860 
861 	spin_lock_irq(shost->host_lock);
862 	vport->fc_flag &= ~(FC_FABRIC | FC_PUBLIC_LOOP);
863 	vport->fc_flag |= FC_PT2PT;
864 	spin_unlock_irq(shost->host_lock);
865 
866 	/* If we are pt2pt with another NPort, force NPIV off! */
867 	phba->sli3_options &= ~LPFC_SLI3_NPIV_ENABLED;
868 
869 	/* If physical FC port changed, unreg VFI and ALL VPIs / RPIs */
870 	if ((phba->sli_rev == LPFC_SLI_REV4) && phba->fc_topology_changed) {
871 		lpfc_unregister_fcf_prep(phba);
872 
873 		spin_lock_irq(shost->host_lock);
874 		vport->fc_flag &= ~FC_VFI_REGISTERED;
875 		spin_unlock_irq(shost->host_lock);
876 		phba->fc_topology_changed = 0;
877 	}
878 
879 	rc = memcmp(&vport->fc_portname, &sp->portName,
880 		    sizeof(vport->fc_portname));
881 
882 	if (rc >= 0) {
883 		/* This side will initiate the PLOGI */
884 		spin_lock_irq(shost->host_lock);
885 		vport->fc_flag |= FC_PT2PT_PLOGI;
886 		spin_unlock_irq(shost->host_lock);
887 
888 		/*
889 		 * N_Port ID cannot be 0, set our Id to LocalID
890 		 * the other side will be RemoteID.
891 		 */
892 
893 		/* not equal */
894 		if (rc)
895 			vport->fc_myDID = PT2PT_LocalID;
896 
897 		/* Decrement ndlp reference count indicating that ndlp can be
898 		 * safely released when other references to it are done.
899 		 */
900 		lpfc_nlp_put(ndlp);
901 
902 		ndlp = lpfc_findnode_did(vport, PT2PT_RemoteID);
903 		if (!ndlp) {
904 			/*
905 			 * Cannot find existing Fabric ndlp, so allocate a
906 			 * new one
907 			 */
908 			ndlp = lpfc_nlp_init(vport, PT2PT_RemoteID);
909 			if (!ndlp)
910 				goto fail;
911 		} else if (!NLP_CHK_NODE_ACT(ndlp)) {
912 			ndlp = lpfc_enable_node(vport, ndlp,
913 						NLP_STE_UNUSED_NODE);
914 			if(!ndlp)
915 				goto fail;
916 		}
917 
918 		memcpy(&ndlp->nlp_portname, &sp->portName,
919 		       sizeof(struct lpfc_name));
920 		memcpy(&ndlp->nlp_nodename, &sp->nodeName,
921 		       sizeof(struct lpfc_name));
922 		/* Set state will put ndlp onto node list if not already done */
923 		lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
924 		spin_lock_irq(shost->host_lock);
925 		ndlp->nlp_flag |= NLP_NPR_2B_DISC;
926 		spin_unlock_irq(shost->host_lock);
927 
928 		mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
929 		if (!mbox)
930 			goto fail;
931 
932 		lpfc_config_link(phba, mbox);
933 
934 		mbox->mbox_cmpl = lpfc_mbx_cmpl_local_config_link;
935 		mbox->vport = vport;
936 		rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
937 		if (rc == MBX_NOT_FINISHED) {
938 			mempool_free(mbox, phba->mbox_mem_pool);
939 			goto fail;
940 		}
941 	} else {
942 		/* This side will wait for the PLOGI, decrement ndlp reference
943 		 * count indicating that ndlp can be released when other
944 		 * references to it are done.
945 		 */
946 		lpfc_nlp_put(ndlp);
947 
948 		/* Start discovery - this should just do CLEAR_LA */
949 		lpfc_disc_start(vport);
950 	}
951 
952 	return 0;
953 fail:
954 	return -ENXIO;
955 }
956 
957 /**
958  * lpfc_cmpl_els_flogi - Completion callback function for flogi
959  * @phba: pointer to lpfc hba data structure.
960  * @cmdiocb: pointer to lpfc command iocb data structure.
961  * @rspiocb: pointer to lpfc response iocb data structure.
962  *
963  * This routine is the top-level completion callback function for issuing
964  * a Fabric Login (FLOGI) command. If the response IOCB reported error,
965  * the lpfc_els_retry() routine shall be invoked to retry the FLOGI. If
966  * retry has been made (either immediately or delayed with lpfc_els_retry()
967  * returning 1), the command IOCB will be released and function returned.
968  * If the retry attempt has been given up (possibly reach the maximum
969  * number of retries), one additional decrement of ndlp reference shall be
970  * invoked before going out after releasing the command IOCB. This will
971  * actually release the remote node (Note, lpfc_els_free_iocb() will also
972  * invoke one decrement of ndlp reference count). If no error reported in
973  * the IOCB status, the command Port ID field is used to determine whether
974  * this is a point-to-point topology or a fabric topology: if the Port ID
975  * field is assigned, it is a fabric topology; otherwise, it is a
976  * point-to-point topology. The routine lpfc_cmpl_els_flogi_fabric() or
977  * lpfc_cmpl_els_flogi_nport() shall be invoked accordingly to handle the
978  * specific topology completion conditions.
979  **/
980 static void
981 lpfc_cmpl_els_flogi(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
982 		    struct lpfc_iocbq *rspiocb)
983 {
984 	struct lpfc_vport *vport = cmdiocb->vport;
985 	struct Scsi_Host  *shost = lpfc_shost_from_vport(vport);
986 	IOCB_t *irsp = &rspiocb->iocb;
987 	struct lpfc_nodelist *ndlp = cmdiocb->context1;
988 	struct lpfc_dmabuf *pcmd = cmdiocb->context2, *prsp;
989 	struct serv_parm *sp;
990 	uint16_t fcf_index;
991 	int rc;
992 
993 	/* Check to see if link went down during discovery */
994 	if (lpfc_els_chk_latt(vport)) {
995 		/* One additional decrement on node reference count to
996 		 * trigger the release of the node
997 		 */
998 		lpfc_nlp_put(ndlp);
999 		goto out;
1000 	}
1001 
1002 	lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
1003 		"FLOGI cmpl:      status:x%x/x%x state:x%x",
1004 		irsp->ulpStatus, irsp->un.ulpWord[4],
1005 		vport->port_state);
1006 
1007 	if (irsp->ulpStatus) {
1008 		/*
1009 		 * In case of FIP mode, perform roundrobin FCF failover
1010 		 * due to new FCF discovery
1011 		 */
1012 		if ((phba->hba_flag & HBA_FIP_SUPPORT) &&
1013 		    (phba->fcf.fcf_flag & FCF_DISCOVERY)) {
1014 			if (phba->link_state < LPFC_LINK_UP)
1015 				goto stop_rr_fcf_flogi;
1016 			if ((phba->fcoe_cvl_eventtag_attn ==
1017 			     phba->fcoe_cvl_eventtag) &&
1018 			    (irsp->ulpStatus == IOSTAT_LOCAL_REJECT) &&
1019 			    ((irsp->un.ulpWord[4] & IOERR_PARAM_MASK) ==
1020 			    IOERR_SLI_ABORTED))
1021 				goto stop_rr_fcf_flogi;
1022 			else
1023 				phba->fcoe_cvl_eventtag_attn =
1024 					phba->fcoe_cvl_eventtag;
1025 			lpfc_printf_log(phba, KERN_WARNING, LOG_FIP | LOG_ELS,
1026 					"2611 FLOGI failed on FCF (x%x), "
1027 					"status:x%x/x%x, tmo:x%x, perform "
1028 					"roundrobin FCF failover\n",
1029 					phba->fcf.current_rec.fcf_indx,
1030 					irsp->ulpStatus, irsp->un.ulpWord[4],
1031 					irsp->ulpTimeout);
1032 			lpfc_sli4_set_fcf_flogi_fail(phba,
1033 					phba->fcf.current_rec.fcf_indx);
1034 			fcf_index = lpfc_sli4_fcf_rr_next_index_get(phba);
1035 			rc = lpfc_sli4_fcf_rr_next_proc(vport, fcf_index);
1036 			if (rc)
1037 				goto out;
1038 		}
1039 
1040 stop_rr_fcf_flogi:
1041 		/* FLOGI failure */
1042 		if (!(irsp->ulpStatus == IOSTAT_LOCAL_REJECT &&
1043 		      ((irsp->un.ulpWord[4] & IOERR_PARAM_MASK) ==
1044 					IOERR_LOOP_OPEN_FAILURE)))
1045 			lpfc_printf_vlog(vport, KERN_ERR, LOG_TRACE_EVENT,
1046 					 "2858 FLOGI failure Status:x%x/x%x TMO"
1047 					 ":x%x Data x%x x%x\n",
1048 					 irsp->ulpStatus, irsp->un.ulpWord[4],
1049 					 irsp->ulpTimeout, phba->hba_flag,
1050 					 phba->fcf.fcf_flag);
1051 
1052 		/* Check for retry */
1053 		if (lpfc_els_retry(phba, cmdiocb, rspiocb))
1054 			goto out;
1055 
1056 		lpfc_printf_vlog(vport, KERN_WARNING, LOG_TRACE_EVENT,
1057 				 "0150 FLOGI failure Status:x%x/x%x "
1058 				 "xri x%x TMO:x%x\n",
1059 				 irsp->ulpStatus, irsp->un.ulpWord[4],
1060 				 cmdiocb->sli4_xritag, irsp->ulpTimeout);
1061 
1062 		/* If this is not a loop open failure, bail out */
1063 		if (!(irsp->ulpStatus == IOSTAT_LOCAL_REJECT &&
1064 		      ((irsp->un.ulpWord[4] & IOERR_PARAM_MASK) ==
1065 					IOERR_LOOP_OPEN_FAILURE)))
1066 			goto flogifail;
1067 
1068 		/* FLOGI failed, so there is no fabric */
1069 		spin_lock_irq(shost->host_lock);
1070 		vport->fc_flag &= ~(FC_FABRIC | FC_PUBLIC_LOOP);
1071 		spin_unlock_irq(shost->host_lock);
1072 
1073 		/* If private loop, then allow max outstanding els to be
1074 		 * LPFC_MAX_DISC_THREADS (32). Scanning in the case of no
1075 		 * alpa map would take too long otherwise.
1076 		 */
1077 		if (phba->alpa_map[0] == 0)
1078 			vport->cfg_discovery_threads = LPFC_MAX_DISC_THREADS;
1079 		if ((phba->sli_rev == LPFC_SLI_REV4) &&
1080 		    (!(vport->fc_flag & FC_VFI_REGISTERED) ||
1081 		     (vport->fc_prevDID != vport->fc_myDID) ||
1082 			phba->fc_topology_changed)) {
1083 			if (vport->fc_flag & FC_VFI_REGISTERED) {
1084 				if (phba->fc_topology_changed) {
1085 					lpfc_unregister_fcf_prep(phba);
1086 					spin_lock_irq(shost->host_lock);
1087 					vport->fc_flag &= ~FC_VFI_REGISTERED;
1088 					spin_unlock_irq(shost->host_lock);
1089 					phba->fc_topology_changed = 0;
1090 				} else {
1091 					lpfc_sli4_unreg_all_rpis(vport);
1092 				}
1093 			}
1094 
1095 			/* Do not register VFI if the driver aborted FLOGI */
1096 			if (!lpfc_error_lost_link(irsp))
1097 				lpfc_issue_reg_vfi(vport);
1098 			lpfc_nlp_put(ndlp);
1099 			goto out;
1100 		}
1101 		goto flogifail;
1102 	}
1103 	spin_lock_irq(shost->host_lock);
1104 	vport->fc_flag &= ~FC_VPORT_CVL_RCVD;
1105 	vport->fc_flag &= ~FC_VPORT_LOGO_RCVD;
1106 	spin_unlock_irq(shost->host_lock);
1107 
1108 	/*
1109 	 * The FLogI succeeded.  Sync the data for the CPU before
1110 	 * accessing it.
1111 	 */
1112 	prsp = list_get_first(&pcmd->list, struct lpfc_dmabuf, list);
1113 	if (!prsp)
1114 		goto out;
1115 	sp = prsp->virt + sizeof(uint32_t);
1116 
1117 	/* FLOGI completes successfully */
1118 	lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
1119 			 "0101 FLOGI completes successfully, I/O tag:x%x, "
1120 			 "xri x%x Data: x%x x%x x%x x%x x%x %x\n",
1121 			 cmdiocb->iotag, cmdiocb->sli4_xritag,
1122 			 irsp->un.ulpWord[4], sp->cmn.e_d_tov,
1123 			 sp->cmn.w2.r_a_tov, sp->cmn.edtovResolution,
1124 			 vport->port_state, vport->fc_flag);
1125 
1126 	if (vport->port_state == LPFC_FLOGI) {
1127 		/*
1128 		 * If Common Service Parameters indicate Nport
1129 		 * we are point to point, if Fport we are Fabric.
1130 		 */
1131 		if (sp->cmn.fPort)
1132 			rc = lpfc_cmpl_els_flogi_fabric(vport, ndlp, sp, irsp);
1133 		else if (!(phba->hba_flag & HBA_FCOE_MODE))
1134 			rc = lpfc_cmpl_els_flogi_nport(vport, ndlp, sp);
1135 		else {
1136 			lpfc_printf_vlog(vport, KERN_ERR, LOG_TRACE_EVENT,
1137 				"2831 FLOGI response with cleared Fabric "
1138 				"bit fcf_index 0x%x "
1139 				"Switch Name %02x%02x%02x%02x%02x%02x%02x%02x "
1140 				"Fabric Name "
1141 				"%02x%02x%02x%02x%02x%02x%02x%02x\n",
1142 				phba->fcf.current_rec.fcf_indx,
1143 				phba->fcf.current_rec.switch_name[0],
1144 				phba->fcf.current_rec.switch_name[1],
1145 				phba->fcf.current_rec.switch_name[2],
1146 				phba->fcf.current_rec.switch_name[3],
1147 				phba->fcf.current_rec.switch_name[4],
1148 				phba->fcf.current_rec.switch_name[5],
1149 				phba->fcf.current_rec.switch_name[6],
1150 				phba->fcf.current_rec.switch_name[7],
1151 				phba->fcf.current_rec.fabric_name[0],
1152 				phba->fcf.current_rec.fabric_name[1],
1153 				phba->fcf.current_rec.fabric_name[2],
1154 				phba->fcf.current_rec.fabric_name[3],
1155 				phba->fcf.current_rec.fabric_name[4],
1156 				phba->fcf.current_rec.fabric_name[5],
1157 				phba->fcf.current_rec.fabric_name[6],
1158 				phba->fcf.current_rec.fabric_name[7]);
1159 			lpfc_nlp_put(ndlp);
1160 			spin_lock_irq(&phba->hbalock);
1161 			phba->fcf.fcf_flag &= ~FCF_DISCOVERY;
1162 			phba->hba_flag &= ~(FCF_RR_INPROG | HBA_DEVLOSS_TMO);
1163 			spin_unlock_irq(&phba->hbalock);
1164 			phba->fcf.fcf_redisc_attempted = 0; /* reset */
1165 			goto out;
1166 		}
1167 		if (!rc) {
1168 			/* Mark the FCF discovery process done */
1169 			if (phba->hba_flag & HBA_FIP_SUPPORT)
1170 				lpfc_printf_vlog(vport, KERN_INFO, LOG_FIP |
1171 						LOG_ELS,
1172 						"2769 FLOGI to FCF (x%x) "
1173 						"completed successfully\n",
1174 						phba->fcf.current_rec.fcf_indx);
1175 			spin_lock_irq(&phba->hbalock);
1176 			phba->fcf.fcf_flag &= ~FCF_DISCOVERY;
1177 			phba->hba_flag &= ~(FCF_RR_INPROG | HBA_DEVLOSS_TMO);
1178 			spin_unlock_irq(&phba->hbalock);
1179 			phba->fcf.fcf_redisc_attempted = 0; /* reset */
1180 			goto out;
1181 		}
1182 	}
1183 
1184 flogifail:
1185 	spin_lock_irq(&phba->hbalock);
1186 	phba->fcf.fcf_flag &= ~FCF_DISCOVERY;
1187 	spin_unlock_irq(&phba->hbalock);
1188 
1189 	lpfc_nlp_put(ndlp);
1190 
1191 	if (!lpfc_error_lost_link(irsp)) {
1192 		/* FLOGI failed, so just use loop map to make discovery list */
1193 		lpfc_disc_list_loopmap(vport);
1194 
1195 		/* Start discovery */
1196 		lpfc_disc_start(vport);
1197 	} else if (((irsp->ulpStatus != IOSTAT_LOCAL_REJECT) ||
1198 			(((irsp->un.ulpWord[4] & IOERR_PARAM_MASK) !=
1199 			 IOERR_SLI_ABORTED) &&
1200 			((irsp->un.ulpWord[4] & IOERR_PARAM_MASK) !=
1201 			 IOERR_SLI_DOWN))) &&
1202 			(phba->link_state != LPFC_CLEAR_LA)) {
1203 		/* If FLOGI failed enable link interrupt. */
1204 		lpfc_issue_clear_la(phba, vport);
1205 	}
1206 out:
1207 	lpfc_els_free_iocb(phba, cmdiocb);
1208 }
1209 
1210 /**
1211  * lpfc_cmpl_els_link_down - Completion callback function for ELS command
1212  *                           aborted during a link down
1213  * @phba: pointer to lpfc hba data structure.
1214  * @cmdiocb: pointer to lpfc command iocb data structure.
1215  * @rspiocb: pointer to lpfc response iocb data structure.
1216  *
1217  */
1218 static void
1219 lpfc_cmpl_els_link_down(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
1220 			struct lpfc_iocbq *rspiocb)
1221 {
1222 	IOCB_t *irsp;
1223 	uint32_t *pcmd;
1224 	uint32_t cmd;
1225 
1226 	pcmd = (uint32_t *)(((struct lpfc_dmabuf *)cmdiocb->context2)->virt);
1227 	cmd = *pcmd;
1228 	irsp = &rspiocb->iocb;
1229 
1230 	lpfc_printf_log(phba, KERN_INFO, LOG_ELS,
1231 			"6445 ELS completes after LINK_DOWN: "
1232 			" Status %x/%x cmd x%x flg x%x\n",
1233 			irsp->ulpStatus, irsp->un.ulpWord[4], cmd,
1234 			cmdiocb->iocb_flag);
1235 
1236 	if (cmdiocb->iocb_flag & LPFC_IO_FABRIC) {
1237 		cmdiocb->iocb_flag &= ~LPFC_IO_FABRIC;
1238 		atomic_dec(&phba->fabric_iocb_count);
1239 	}
1240 	lpfc_els_free_iocb(phba, cmdiocb);
1241 }
1242 
1243 /**
1244  * lpfc_issue_els_flogi - Issue an flogi iocb command for a vport
1245  * @vport: pointer to a host virtual N_Port data structure.
1246  * @ndlp: pointer to a node-list data structure.
1247  * @retry: number of retries to the command IOCB.
1248  *
1249  * This routine issues a Fabric Login (FLOGI) Request ELS command
1250  * for a @vport. The initiator service parameters are put into the payload
1251  * of the FLOGI Request IOCB and the top-level callback function pointer
1252  * to lpfc_cmpl_els_flogi() routine is put to the IOCB completion callback
1253  * function field. The lpfc_issue_fabric_iocb routine is invoked to send
1254  * out FLOGI ELS command with one outstanding fabric IOCB at a time.
1255  *
1256  * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
1257  * will be incremented by 1 for holding the ndlp and the reference to ndlp
1258  * will be stored into the context1 field of the IOCB for the completion
1259  * callback function to the FLOGI ELS command.
1260  *
1261  * Return code
1262  *   0 - successfully issued flogi iocb for @vport
1263  *   1 - failed to issue flogi iocb for @vport
1264  **/
1265 static int
1266 lpfc_issue_els_flogi(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1267 		     uint8_t retry)
1268 {
1269 	struct lpfc_hba  *phba = vport->phba;
1270 	struct serv_parm *sp;
1271 	IOCB_t *icmd;
1272 	struct lpfc_iocbq *elsiocb;
1273 	struct lpfc_iocbq defer_flogi_acc;
1274 	uint8_t *pcmd;
1275 	uint16_t cmdsize;
1276 	uint32_t tmo, did;
1277 	int rc;
1278 
1279 	cmdsize = (sizeof(uint32_t) + sizeof(struct serv_parm));
1280 	elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
1281 				     ndlp->nlp_DID, ELS_CMD_FLOGI);
1282 
1283 	if (!elsiocb)
1284 		return 1;
1285 
1286 	icmd = &elsiocb->iocb;
1287 	pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
1288 
1289 	/* For FLOGI request, remainder of payload is service parameters */
1290 	*((uint32_t *) (pcmd)) = ELS_CMD_FLOGI;
1291 	pcmd += sizeof(uint32_t);
1292 	memcpy(pcmd, &vport->fc_sparam, sizeof(struct serv_parm));
1293 	sp = (struct serv_parm *) pcmd;
1294 
1295 	/* Setup CSPs accordingly for Fabric */
1296 	sp->cmn.e_d_tov = 0;
1297 	sp->cmn.w2.r_a_tov = 0;
1298 	sp->cmn.virtual_fabric_support = 0;
1299 	sp->cls1.classValid = 0;
1300 	if (sp->cmn.fcphLow < FC_PH3)
1301 		sp->cmn.fcphLow = FC_PH3;
1302 	if (sp->cmn.fcphHigh < FC_PH3)
1303 		sp->cmn.fcphHigh = FC_PH3;
1304 
1305 	if  (phba->sli_rev == LPFC_SLI_REV4) {
1306 		if (bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf) ==
1307 		    LPFC_SLI_INTF_IF_TYPE_0) {
1308 			elsiocb->iocb.ulpCt_h = ((SLI4_CT_FCFI >> 1) & 1);
1309 			elsiocb->iocb.ulpCt_l = (SLI4_CT_FCFI & 1);
1310 			/* FLOGI needs to be 3 for WQE FCFI */
1311 			/* Set the fcfi to the fcfi we registered with */
1312 			elsiocb->iocb.ulpContext = phba->fcf.fcfi;
1313 		}
1314 		/* Can't do SLI4 class2 without support sequence coalescing */
1315 		sp->cls2.classValid = 0;
1316 		sp->cls2.seqDelivery = 0;
1317 	} else {
1318 		/* Historical, setting sequential-delivery bit for SLI3 */
1319 		sp->cls2.seqDelivery = (sp->cls2.classValid) ? 1 : 0;
1320 		sp->cls3.seqDelivery = (sp->cls3.classValid) ? 1 : 0;
1321 		if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) {
1322 			sp->cmn.request_multiple_Nport = 1;
1323 			/* For FLOGI, Let FLOGI rsp set the NPortID for VPI 0 */
1324 			icmd->ulpCt_h = 1;
1325 			icmd->ulpCt_l = 0;
1326 		} else
1327 			sp->cmn.request_multiple_Nport = 0;
1328 	}
1329 
1330 	if (phba->fc_topology != LPFC_TOPOLOGY_LOOP) {
1331 		icmd->un.elsreq64.myID = 0;
1332 		icmd->un.elsreq64.fl = 1;
1333 	}
1334 
1335 	tmo = phba->fc_ratov;
1336 	phba->fc_ratov = LPFC_DISC_FLOGI_TMO;
1337 	lpfc_set_disctmo(vport);
1338 	phba->fc_ratov = tmo;
1339 
1340 	phba->fc_stat.elsXmitFLOGI++;
1341 	elsiocb->iocb_cmpl = lpfc_cmpl_els_flogi;
1342 
1343 	lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
1344 		"Issue FLOGI:     opt:x%x",
1345 		phba->sli3_options, 0, 0);
1346 
1347 	rc = lpfc_issue_fabric_iocb(phba, elsiocb);
1348 
1349 	phba->hba_flag |= HBA_FLOGI_ISSUED;
1350 
1351 	/* Check for a deferred FLOGI ACC condition */
1352 	if (phba->defer_flogi_acc_flag) {
1353 		did = vport->fc_myDID;
1354 		vport->fc_myDID = Fabric_DID;
1355 
1356 		memset(&defer_flogi_acc, 0, sizeof(struct lpfc_iocbq));
1357 
1358 		defer_flogi_acc.iocb.ulpContext = phba->defer_flogi_acc_rx_id;
1359 		defer_flogi_acc.iocb.unsli3.rcvsli3.ox_id =
1360 						phba->defer_flogi_acc_ox_id;
1361 
1362 		lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
1363 				 "3354 Xmit deferred FLOGI ACC: rx_id: x%x,"
1364 				 " ox_id: x%x, hba_flag x%x\n",
1365 				 phba->defer_flogi_acc_rx_id,
1366 				 phba->defer_flogi_acc_ox_id, phba->hba_flag);
1367 
1368 		/* Send deferred FLOGI ACC */
1369 		lpfc_els_rsp_acc(vport, ELS_CMD_FLOGI, &defer_flogi_acc,
1370 				 ndlp, NULL);
1371 
1372 		phba->defer_flogi_acc_flag = false;
1373 
1374 		vport->fc_myDID = did;
1375 	}
1376 
1377 	if (rc == IOCB_ERROR) {
1378 		lpfc_els_free_iocb(phba, elsiocb);
1379 		return 1;
1380 	}
1381 	return 0;
1382 }
1383 
1384 /**
1385  * lpfc_els_abort_flogi - Abort all outstanding flogi iocbs
1386  * @phba: pointer to lpfc hba data structure.
1387  *
1388  * This routine aborts all the outstanding Fabric Login (FLOGI) IOCBs
1389  * with a @phba. This routine walks all the outstanding IOCBs on the txcmplq
1390  * list and issues an abort IOCB commond on each outstanding IOCB that
1391  * contains a active Fabric_DID ndlp. Note that this function is to issue
1392  * the abort IOCB command on all the outstanding IOCBs, thus when this
1393  * function returns, it does not guarantee all the IOCBs are actually aborted.
1394  *
1395  * Return code
1396  *   0 - Successfully issued abort iocb on all outstanding flogis (Always 0)
1397  **/
1398 int
1399 lpfc_els_abort_flogi(struct lpfc_hba *phba)
1400 {
1401 	struct lpfc_sli_ring *pring;
1402 	struct lpfc_iocbq *iocb, *next_iocb;
1403 	struct lpfc_nodelist *ndlp;
1404 	IOCB_t *icmd;
1405 
1406 	/* Abort outstanding I/O on NPort <nlp_DID> */
1407 	lpfc_printf_log(phba, KERN_INFO, LOG_DISCOVERY,
1408 			"0201 Abort outstanding I/O on NPort x%x\n",
1409 			Fabric_DID);
1410 
1411 	pring = lpfc_phba_elsring(phba);
1412 	if (unlikely(!pring))
1413 		return -EIO;
1414 
1415 	/*
1416 	 * Check the txcmplq for an iocb that matches the nport the driver is
1417 	 * searching for.
1418 	 */
1419 	spin_lock_irq(&phba->hbalock);
1420 	list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq, list) {
1421 		icmd = &iocb->iocb;
1422 		if (icmd->ulpCommand == CMD_ELS_REQUEST64_CR) {
1423 			ndlp = (struct lpfc_nodelist *)(iocb->context1);
1424 			if (ndlp && NLP_CHK_NODE_ACT(ndlp) &&
1425 			    (ndlp->nlp_DID == Fabric_DID))
1426 				lpfc_sli_issue_abort_iotag(phba, pring, iocb);
1427 		}
1428 	}
1429 	spin_unlock_irq(&phba->hbalock);
1430 
1431 	return 0;
1432 }
1433 
1434 /**
1435  * lpfc_initial_flogi - Issue an initial fabric login for a vport
1436  * @vport: pointer to a host virtual N_Port data structure.
1437  *
1438  * This routine issues an initial Fabric Login (FLOGI) for the @vport
1439  * specified. It first searches the ndlp with the Fabric_DID (0xfffffe) from
1440  * the @vport's ndlp list. If no such ndlp found, it will create an ndlp and
1441  * put it into the @vport's ndlp list. If an inactive ndlp found on the list,
1442  * it will just be enabled and made active. The lpfc_issue_els_flogi() routine
1443  * is then invoked with the @vport and the ndlp to perform the FLOGI for the
1444  * @vport.
1445  *
1446  * Return code
1447  *   0 - failed to issue initial flogi for @vport
1448  *   1 - successfully issued initial flogi for @vport
1449  **/
1450 int
1451 lpfc_initial_flogi(struct lpfc_vport *vport)
1452 {
1453 	struct lpfc_nodelist *ndlp;
1454 
1455 	vport->port_state = LPFC_FLOGI;
1456 	lpfc_set_disctmo(vport);
1457 
1458 	/* First look for the Fabric ndlp */
1459 	ndlp = lpfc_findnode_did(vport, Fabric_DID);
1460 	if (!ndlp) {
1461 		/* Cannot find existing Fabric ndlp, so allocate a new one */
1462 		ndlp = lpfc_nlp_init(vport, Fabric_DID);
1463 		if (!ndlp)
1464 			return 0;
1465 		/* Set the node type */
1466 		ndlp->nlp_type |= NLP_FABRIC;
1467 		/* Put ndlp onto node list */
1468 		lpfc_enqueue_node(vport, ndlp);
1469 	} else if (!NLP_CHK_NODE_ACT(ndlp)) {
1470 		/* re-setup ndlp without removing from node list */
1471 		ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
1472 		if (!ndlp)
1473 			return 0;
1474 	}
1475 
1476 	if (lpfc_issue_els_flogi(vport, ndlp, 0)) {
1477 		/* This decrement of reference count to node shall kick off
1478 		 * the release of the node.
1479 		 */
1480 		lpfc_nlp_put(ndlp);
1481 		return 0;
1482 	}
1483 	return 1;
1484 }
1485 
1486 /**
1487  * lpfc_initial_fdisc - Issue an initial fabric discovery for a vport
1488  * @vport: pointer to a host virtual N_Port data structure.
1489  *
1490  * This routine issues an initial Fabric Discover (FDISC) for the @vport
1491  * specified. It first searches the ndlp with the Fabric_DID (0xfffffe) from
1492  * the @vport's ndlp list. If no such ndlp found, it will create an ndlp and
1493  * put it into the @vport's ndlp list. If an inactive ndlp found on the list,
1494  * it will just be enabled and made active. The lpfc_issue_els_fdisc() routine
1495  * is then invoked with the @vport and the ndlp to perform the FDISC for the
1496  * @vport.
1497  *
1498  * Return code
1499  *   0 - failed to issue initial fdisc for @vport
1500  *   1 - successfully issued initial fdisc for @vport
1501  **/
1502 int
1503 lpfc_initial_fdisc(struct lpfc_vport *vport)
1504 {
1505 	struct lpfc_nodelist *ndlp;
1506 
1507 	/* First look for the Fabric ndlp */
1508 	ndlp = lpfc_findnode_did(vport, Fabric_DID);
1509 	if (!ndlp) {
1510 		/* Cannot find existing Fabric ndlp, so allocate a new one */
1511 		ndlp = lpfc_nlp_init(vport, Fabric_DID);
1512 		if (!ndlp)
1513 			return 0;
1514 		/* Put ndlp onto node list */
1515 		lpfc_enqueue_node(vport, ndlp);
1516 	} else if (!NLP_CHK_NODE_ACT(ndlp)) {
1517 		/* re-setup ndlp without removing from node list */
1518 		ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
1519 		if (!ndlp)
1520 			return 0;
1521 	}
1522 
1523 	if (lpfc_issue_els_fdisc(vport, ndlp, 0)) {
1524 		/* decrement node reference count to trigger the release of
1525 		 * the node.
1526 		 */
1527 		lpfc_nlp_put(ndlp);
1528 		return 0;
1529 	}
1530 	return 1;
1531 }
1532 
1533 /**
1534  * lpfc_more_plogi - Check and issue remaining plogis for a vport
1535  * @vport: pointer to a host virtual N_Port data structure.
1536  *
1537  * This routine checks whether there are more remaining Port Logins
1538  * (PLOGI) to be issued for the @vport. If so, it will invoke the routine
1539  * lpfc_els_disc_plogi() to go through the Node Port Recovery (NPR) nodes
1540  * to issue ELS PLOGIs up to the configured discover threads with the
1541  * @vport (@vport->cfg_discovery_threads). The function also decrement
1542  * the @vport's num_disc_node by 1 if it is not already 0.
1543  **/
1544 void
1545 lpfc_more_plogi(struct lpfc_vport *vport)
1546 {
1547 	if (vport->num_disc_nodes)
1548 		vport->num_disc_nodes--;
1549 
1550 	/* Continue discovery with <num_disc_nodes> PLOGIs to go */
1551 	lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
1552 			 "0232 Continue discovery with %d PLOGIs to go "
1553 			 "Data: x%x x%x x%x\n",
1554 			 vport->num_disc_nodes, vport->fc_plogi_cnt,
1555 			 vport->fc_flag, vport->port_state);
1556 	/* Check to see if there are more PLOGIs to be sent */
1557 	if (vport->fc_flag & FC_NLP_MORE)
1558 		/* go thru NPR nodes and issue any remaining ELS PLOGIs */
1559 		lpfc_els_disc_plogi(vport);
1560 
1561 	return;
1562 }
1563 
1564 /**
1565  * lpfc_plogi_confirm_nport - Confirm pologi wwpn matches stored ndlp
1566  * @phba: pointer to lpfc hba data structure.
1567  * @prsp: pointer to response IOCB payload.
1568  * @ndlp: pointer to a node-list data structure.
1569  *
1570  * This routine checks and indicates whether the WWPN of an N_Port, retrieved
1571  * from a PLOGI, matches the WWPN that is stored in the @ndlp for that N_POrt.
1572  * The following cases are considered N_Port confirmed:
1573  * 1) The N_Port is a Fabric ndlp; 2) The @ndlp is on vport list and matches
1574  * the WWPN of the N_Port logged into; 3) The @ndlp is not on vport list but
1575  * it does not have WWPN assigned either. If the WWPN is confirmed, the
1576  * pointer to the @ndlp will be returned. If the WWPN is not confirmed:
1577  * 1) if there is a node on vport list other than the @ndlp with the same
1578  * WWPN of the N_Port PLOGI logged into, the lpfc_unreg_rpi() will be invoked
1579  * on that node to release the RPI associated with the node; 2) if there is
1580  * no node found on vport list with the same WWPN of the N_Port PLOGI logged
1581  * into, a new node shall be allocated (or activated). In either case, the
1582  * parameters of the @ndlp shall be copied to the new_ndlp, the @ndlp shall
1583  * be released and the new_ndlp shall be put on to the vport node list and
1584  * its pointer returned as the confirmed node.
1585  *
1586  * Note that before the @ndlp got "released", the keepDID from not-matching
1587  * or inactive "new_ndlp" on the vport node list is assigned to the nlp_DID
1588  * of the @ndlp. This is because the release of @ndlp is actually to put it
1589  * into an inactive state on the vport node list and the vport node list
1590  * management algorithm does not allow two node with a same DID.
1591  *
1592  * Return code
1593  *   pointer to the PLOGI N_Port @ndlp
1594  **/
1595 static struct lpfc_nodelist *
1596 lpfc_plogi_confirm_nport(struct lpfc_hba *phba, uint32_t *prsp,
1597 			 struct lpfc_nodelist *ndlp)
1598 {
1599 	struct lpfc_vport *vport = ndlp->vport;
1600 	struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1601 	struct lpfc_nodelist *new_ndlp;
1602 	struct lpfc_rport_data *rdata;
1603 	struct fc_rport *rport;
1604 	struct serv_parm *sp;
1605 	uint8_t  name[sizeof(struct lpfc_name)];
1606 	uint32_t rc, keepDID = 0, keep_nlp_flag = 0;
1607 	uint32_t keep_new_nlp_flag = 0;
1608 	uint16_t keep_nlp_state;
1609 	u32 keep_nlp_fc4_type = 0;
1610 	struct lpfc_nvme_rport *keep_nrport = NULL;
1611 	int  put_node;
1612 	int  put_rport;
1613 	unsigned long *active_rrqs_xri_bitmap = NULL;
1614 
1615 	/* Fabric nodes can have the same WWPN so we don't bother searching
1616 	 * by WWPN.  Just return the ndlp that was given to us.
1617 	 */
1618 	if (ndlp->nlp_type & NLP_FABRIC)
1619 		return ndlp;
1620 
1621 	sp = (struct serv_parm *) ((uint8_t *) prsp + sizeof(uint32_t));
1622 	memset(name, 0, sizeof(struct lpfc_name));
1623 
1624 	/* Now we find out if the NPort we are logging into, matches the WWPN
1625 	 * we have for that ndlp. If not, we have some work to do.
1626 	 */
1627 	new_ndlp = lpfc_findnode_wwpn(vport, &sp->portName);
1628 
1629 	/* return immediately if the WWPN matches ndlp */
1630 	if (new_ndlp == ndlp && NLP_CHK_NODE_ACT(new_ndlp))
1631 		return ndlp;
1632 
1633 	if (phba->sli_rev == LPFC_SLI_REV4) {
1634 		active_rrqs_xri_bitmap = mempool_alloc(phba->active_rrq_pool,
1635 						       GFP_KERNEL);
1636 		if (active_rrqs_xri_bitmap)
1637 			memset(active_rrqs_xri_bitmap, 0,
1638 			       phba->cfg_rrq_xri_bitmap_sz);
1639 	}
1640 
1641 	lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS | LOG_NODE,
1642 			 "3178 PLOGI confirm: ndlp x%x x%x x%x: "
1643 			 "new_ndlp x%x x%x x%x\n",
1644 			 ndlp->nlp_DID, ndlp->nlp_flag,  ndlp->nlp_fc4_type,
1645 			 (new_ndlp ? new_ndlp->nlp_DID : 0),
1646 			 (new_ndlp ? new_ndlp->nlp_flag : 0),
1647 			 (new_ndlp ? new_ndlp->nlp_fc4_type : 0));
1648 
1649 	if (!new_ndlp) {
1650 		rc = memcmp(&ndlp->nlp_portname, name,
1651 			    sizeof(struct lpfc_name));
1652 		if (!rc) {
1653 			if (active_rrqs_xri_bitmap)
1654 				mempool_free(active_rrqs_xri_bitmap,
1655 					     phba->active_rrq_pool);
1656 			return ndlp;
1657 		}
1658 		new_ndlp = lpfc_nlp_init(vport, ndlp->nlp_DID);
1659 		if (!new_ndlp) {
1660 			if (active_rrqs_xri_bitmap)
1661 				mempool_free(active_rrqs_xri_bitmap,
1662 					     phba->active_rrq_pool);
1663 			return ndlp;
1664 		}
1665 	} else if (!NLP_CHK_NODE_ACT(new_ndlp)) {
1666 		rc = memcmp(&ndlp->nlp_portname, name,
1667 			    sizeof(struct lpfc_name));
1668 		if (!rc) {
1669 			if (active_rrqs_xri_bitmap)
1670 				mempool_free(active_rrqs_xri_bitmap,
1671 					     phba->active_rrq_pool);
1672 			return ndlp;
1673 		}
1674 		new_ndlp = lpfc_enable_node(vport, new_ndlp,
1675 						NLP_STE_UNUSED_NODE);
1676 		if (!new_ndlp) {
1677 			if (active_rrqs_xri_bitmap)
1678 				mempool_free(active_rrqs_xri_bitmap,
1679 					     phba->active_rrq_pool);
1680 			return ndlp;
1681 		}
1682 		keepDID = new_ndlp->nlp_DID;
1683 		if ((phba->sli_rev == LPFC_SLI_REV4) && active_rrqs_xri_bitmap)
1684 			memcpy(active_rrqs_xri_bitmap,
1685 			       new_ndlp->active_rrqs_xri_bitmap,
1686 			       phba->cfg_rrq_xri_bitmap_sz);
1687 	} else {
1688 		keepDID = new_ndlp->nlp_DID;
1689 		if (phba->sli_rev == LPFC_SLI_REV4 &&
1690 		    active_rrqs_xri_bitmap)
1691 			memcpy(active_rrqs_xri_bitmap,
1692 			       new_ndlp->active_rrqs_xri_bitmap,
1693 			       phba->cfg_rrq_xri_bitmap_sz);
1694 	}
1695 
1696 	/* At this point in this routine, we know new_ndlp will be
1697 	 * returned. however, any previous GID_FTs that were done
1698 	 * would have updated nlp_fc4_type in ndlp, so we must ensure
1699 	 * new_ndlp has the right value.
1700 	 */
1701 	if (vport->fc_flag & FC_FABRIC) {
1702 		keep_nlp_fc4_type = new_ndlp->nlp_fc4_type;
1703 		new_ndlp->nlp_fc4_type = ndlp->nlp_fc4_type;
1704 	}
1705 
1706 	lpfc_unreg_rpi(vport, new_ndlp);
1707 	new_ndlp->nlp_DID = ndlp->nlp_DID;
1708 	new_ndlp->nlp_prev_state = ndlp->nlp_prev_state;
1709 	if (phba->sli_rev == LPFC_SLI_REV4)
1710 		memcpy(new_ndlp->active_rrqs_xri_bitmap,
1711 		       ndlp->active_rrqs_xri_bitmap,
1712 		       phba->cfg_rrq_xri_bitmap_sz);
1713 
1714 	spin_lock_irq(shost->host_lock);
1715 	keep_new_nlp_flag = new_ndlp->nlp_flag;
1716 	keep_nlp_flag = ndlp->nlp_flag;
1717 	new_ndlp->nlp_flag = ndlp->nlp_flag;
1718 
1719 	/* if new_ndlp had NLP_UNREG_INP set, keep it */
1720 	if (keep_new_nlp_flag & NLP_UNREG_INP)
1721 		new_ndlp->nlp_flag |= NLP_UNREG_INP;
1722 	else
1723 		new_ndlp->nlp_flag &= ~NLP_UNREG_INP;
1724 
1725 	/* if new_ndlp had NLP_RPI_REGISTERED set, keep it */
1726 	if (keep_new_nlp_flag & NLP_RPI_REGISTERED)
1727 		new_ndlp->nlp_flag |= NLP_RPI_REGISTERED;
1728 	else
1729 		new_ndlp->nlp_flag &= ~NLP_RPI_REGISTERED;
1730 
1731 	ndlp->nlp_flag = keep_new_nlp_flag;
1732 
1733 	/* if ndlp had NLP_UNREG_INP set, keep it */
1734 	if (keep_nlp_flag & NLP_UNREG_INP)
1735 		ndlp->nlp_flag |= NLP_UNREG_INP;
1736 	else
1737 		ndlp->nlp_flag &= ~NLP_UNREG_INP;
1738 
1739 	/* if ndlp had NLP_RPI_REGISTERED set, keep it */
1740 	if (keep_nlp_flag & NLP_RPI_REGISTERED)
1741 		ndlp->nlp_flag |= NLP_RPI_REGISTERED;
1742 	else
1743 		ndlp->nlp_flag &= ~NLP_RPI_REGISTERED;
1744 
1745 	spin_unlock_irq(shost->host_lock);
1746 
1747 	/* Set nlp_states accordingly */
1748 	keep_nlp_state = new_ndlp->nlp_state;
1749 	lpfc_nlp_set_state(vport, new_ndlp, ndlp->nlp_state);
1750 
1751 	/* interchange the nvme remoteport structs */
1752 	keep_nrport = new_ndlp->nrport;
1753 	new_ndlp->nrport = ndlp->nrport;
1754 
1755 	/* Move this back to NPR state */
1756 	if (memcmp(&ndlp->nlp_portname, name, sizeof(struct lpfc_name)) == 0) {
1757 		/* The new_ndlp is replacing ndlp totally, so we need
1758 		 * to put ndlp on UNUSED list and try to free it.
1759 		 */
1760 		lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
1761 			 "3179 PLOGI confirm NEW: %x %x\n",
1762 			 new_ndlp->nlp_DID, keepDID);
1763 
1764 		/* Fix up the rport accordingly */
1765 		rport =  ndlp->rport;
1766 		if (rport) {
1767 			rdata = rport->dd_data;
1768 			if (rdata->pnode == ndlp) {
1769 				/* break the link before dropping the ref */
1770 				ndlp->rport = NULL;
1771 				lpfc_nlp_put(ndlp);
1772 				rdata->pnode = lpfc_nlp_get(new_ndlp);
1773 				new_ndlp->rport = rport;
1774 			}
1775 			new_ndlp->nlp_type = ndlp->nlp_type;
1776 		}
1777 
1778 		/* Fix up the nvme rport */
1779 		if (ndlp->nrport) {
1780 			ndlp->nrport = NULL;
1781 			lpfc_nlp_put(ndlp);
1782 		}
1783 
1784 		/* We shall actually free the ndlp with both nlp_DID and
1785 		 * nlp_portname fields equals 0 to avoid any ndlp on the
1786 		 * nodelist never to be used.
1787 		 */
1788 		if (ndlp->nlp_DID == 0) {
1789 			spin_lock_irq(&phba->ndlp_lock);
1790 			NLP_SET_FREE_REQ(ndlp);
1791 			spin_unlock_irq(&phba->ndlp_lock);
1792 		}
1793 
1794 		/* Two ndlps cannot have the same did on the nodelist.
1795 		 * Note: for this case, ndlp has a NULL WWPN so setting
1796 		 * the nlp_fc4_type isn't required.
1797 		 */
1798 		ndlp->nlp_DID = keepDID;
1799 		lpfc_nlp_set_state(vport, ndlp, keep_nlp_state);
1800 		if (phba->sli_rev == LPFC_SLI_REV4 &&
1801 		    active_rrqs_xri_bitmap)
1802 			memcpy(ndlp->active_rrqs_xri_bitmap,
1803 			       active_rrqs_xri_bitmap,
1804 			       phba->cfg_rrq_xri_bitmap_sz);
1805 
1806 		if (!NLP_CHK_NODE_ACT(ndlp))
1807 			lpfc_drop_node(vport, ndlp);
1808 	}
1809 	else {
1810 		lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
1811 			 "3180 PLOGI confirm SWAP: %x %x\n",
1812 			 new_ndlp->nlp_DID, keepDID);
1813 
1814 		lpfc_unreg_rpi(vport, ndlp);
1815 
1816 		/* Two ndlps cannot have the same did and the fc4
1817 		 * type must be transferred because the ndlp is in
1818 		 * flight.
1819 		 */
1820 		ndlp->nlp_DID = keepDID;
1821 		ndlp->nlp_fc4_type = keep_nlp_fc4_type;
1822 
1823 		if (phba->sli_rev == LPFC_SLI_REV4 &&
1824 		    active_rrqs_xri_bitmap)
1825 			memcpy(ndlp->active_rrqs_xri_bitmap,
1826 			       active_rrqs_xri_bitmap,
1827 			       phba->cfg_rrq_xri_bitmap_sz);
1828 
1829 		/* Since we are switching over to the new_ndlp,
1830 		 * reset the old ndlp state
1831 		 */
1832 		if ((ndlp->nlp_state == NLP_STE_UNMAPPED_NODE) ||
1833 		    (ndlp->nlp_state == NLP_STE_MAPPED_NODE))
1834 			keep_nlp_state = NLP_STE_NPR_NODE;
1835 		lpfc_nlp_set_state(vport, ndlp, keep_nlp_state);
1836 
1837 		/* Previous ndlp no longer active with nvme host transport.
1838 		 * Remove reference from earlier registration unless the
1839 		 * nvme host took care of it.
1840 		 */
1841 		if (ndlp->nrport)
1842 			lpfc_nlp_put(ndlp);
1843 		ndlp->nrport = keep_nrport;
1844 
1845 		/* Fix up the rport accordingly */
1846 		rport = ndlp->rport;
1847 		if (rport) {
1848 			rdata = rport->dd_data;
1849 			put_node = rdata->pnode != NULL;
1850 			put_rport = ndlp->rport != NULL;
1851 			rdata->pnode = NULL;
1852 			ndlp->rport = NULL;
1853 			if (put_node)
1854 				lpfc_nlp_put(ndlp);
1855 			if (put_rport)
1856 				put_device(&rport->dev);
1857 		}
1858 	}
1859 	if (phba->sli_rev == LPFC_SLI_REV4 &&
1860 	    active_rrqs_xri_bitmap)
1861 		mempool_free(active_rrqs_xri_bitmap,
1862 			     phba->active_rrq_pool);
1863 
1864 	lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS | LOG_NODE,
1865 			 "3173 PLOGI confirm exit: new_ndlp x%x x%x x%x\n",
1866 			 new_ndlp->nlp_DID, new_ndlp->nlp_flag,
1867 			 new_ndlp->nlp_fc4_type);
1868 
1869 	return new_ndlp;
1870 }
1871 
1872 /**
1873  * lpfc_end_rscn - Check and handle more rscn for a vport
1874  * @vport: pointer to a host virtual N_Port data structure.
1875  *
1876  * This routine checks whether more Registration State Change
1877  * Notifications (RSCNs) came in while the discovery state machine was in
1878  * the FC_RSCN_MODE. If so, the lpfc_els_handle_rscn() routine will be
1879  * invoked to handle the additional RSCNs for the @vport. Otherwise, the
1880  * FC_RSCN_MODE bit will be cleared with the @vport to mark as the end of
1881  * handling the RSCNs.
1882  **/
1883 void
1884 lpfc_end_rscn(struct lpfc_vport *vport)
1885 {
1886 	struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1887 
1888 	if (vport->fc_flag & FC_RSCN_MODE) {
1889 		/*
1890 		 * Check to see if more RSCNs came in while we were
1891 		 * processing this one.
1892 		 */
1893 		if (vport->fc_rscn_id_cnt ||
1894 		    (vport->fc_flag & FC_RSCN_DISCOVERY) != 0)
1895 			lpfc_els_handle_rscn(vport);
1896 		else {
1897 			spin_lock_irq(shost->host_lock);
1898 			vport->fc_flag &= ~FC_RSCN_MODE;
1899 			spin_unlock_irq(shost->host_lock);
1900 		}
1901 	}
1902 }
1903 
1904 /**
1905  * lpfc_cmpl_els_rrq - Completion handled for els RRQs.
1906  * @phba: pointer to lpfc hba data structure.
1907  * @cmdiocb: pointer to lpfc command iocb data structure.
1908  * @rspiocb: pointer to lpfc response iocb data structure.
1909  *
1910  * This routine will call the clear rrq function to free the rrq and
1911  * clear the xri's bit in the ndlp's xri_bitmap. If the ndlp does not
1912  * exist then the clear_rrq is still called because the rrq needs to
1913  * be freed.
1914  **/
1915 
1916 static void
1917 lpfc_cmpl_els_rrq(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
1918 		    struct lpfc_iocbq *rspiocb)
1919 {
1920 	struct lpfc_vport *vport = cmdiocb->vport;
1921 	IOCB_t *irsp;
1922 	struct lpfc_nodelist *ndlp;
1923 	struct lpfc_node_rrq *rrq;
1924 
1925 	/* we pass cmdiocb to state machine which needs rspiocb as well */
1926 	rrq = cmdiocb->context_un.rrq;
1927 	cmdiocb->context_un.rsp_iocb = rspiocb;
1928 
1929 	irsp = &rspiocb->iocb;
1930 	lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
1931 		"RRQ cmpl:      status:x%x/x%x did:x%x",
1932 		irsp->ulpStatus, irsp->un.ulpWord[4],
1933 		irsp->un.elsreq64.remoteID);
1934 
1935 	ndlp = lpfc_findnode_did(vport, irsp->un.elsreq64.remoteID);
1936 	if (!ndlp || !NLP_CHK_NODE_ACT(ndlp) || ndlp != rrq->ndlp) {
1937 		lpfc_printf_vlog(vport, KERN_ERR, LOG_TRACE_EVENT,
1938 				 "2882 RRQ completes to NPort x%x "
1939 				 "with no ndlp. Data: x%x x%x x%x\n",
1940 				 irsp->un.elsreq64.remoteID,
1941 				 irsp->ulpStatus, irsp->un.ulpWord[4],
1942 				 irsp->ulpIoTag);
1943 		goto out;
1944 	}
1945 
1946 	/* rrq completes to NPort <nlp_DID> */
1947 	lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
1948 			 "2880 RRQ completes to NPort x%x "
1949 			 "Data: x%x x%x x%x x%x x%x\n",
1950 			 ndlp->nlp_DID, irsp->ulpStatus, irsp->un.ulpWord[4],
1951 			 irsp->ulpTimeout, rrq->xritag, rrq->rxid);
1952 
1953 	if (irsp->ulpStatus) {
1954 		/* Check for retry */
1955 		/* RRQ failed Don't print the vport to vport rjts */
1956 		if (irsp->ulpStatus != IOSTAT_LS_RJT ||
1957 			(((irsp->un.ulpWord[4]) >> 16 != LSRJT_INVALID_CMD) &&
1958 			((irsp->un.ulpWord[4]) >> 16 != LSRJT_UNABLE_TPC)) ||
1959 			(phba)->pport->cfg_log_verbose & LOG_ELS)
1960 			lpfc_printf_vlog(vport, KERN_ERR, LOG_TRACE_EVENT,
1961 					 "2881 RRQ failure DID:%06X Status:"
1962 					 "x%x/x%x\n",
1963 					 ndlp->nlp_DID, irsp->ulpStatus,
1964 					 irsp->un.ulpWord[4]);
1965 	}
1966 out:
1967 	if (rrq)
1968 		lpfc_clr_rrq_active(phba, rrq->xritag, rrq);
1969 	lpfc_els_free_iocb(phba, cmdiocb);
1970 	return;
1971 }
1972 /**
1973  * lpfc_cmpl_els_plogi - Completion callback function for plogi
1974  * @phba: pointer to lpfc hba data structure.
1975  * @cmdiocb: pointer to lpfc command iocb data structure.
1976  * @rspiocb: pointer to lpfc response iocb data structure.
1977  *
1978  * This routine is the completion callback function for issuing the Port
1979  * Login (PLOGI) command. For PLOGI completion, there must be an active
1980  * ndlp on the vport node list that matches the remote node ID from the
1981  * PLOGI response IOCB. If such ndlp does not exist, the PLOGI is simply
1982  * ignored and command IOCB released. The PLOGI response IOCB status is
1983  * checked for error conditons. If there is error status reported, PLOGI
1984  * retry shall be attempted by invoking the lpfc_els_retry() routine.
1985  * Otherwise, the lpfc_plogi_confirm_nport() routine shall be invoked on
1986  * the ndlp and the NLP_EVT_CMPL_PLOGI state to the Discover State Machine
1987  * (DSM) is set for this PLOGI completion. Finally, it checks whether
1988  * there are additional N_Port nodes with the vport that need to perform
1989  * PLOGI. If so, the lpfc_more_plogi() routine is invoked to issue addition
1990  * PLOGIs.
1991  **/
1992 static void
1993 lpfc_cmpl_els_plogi(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
1994 		    struct lpfc_iocbq *rspiocb)
1995 {
1996 	struct lpfc_vport *vport = cmdiocb->vport;
1997 	struct Scsi_Host  *shost = lpfc_shost_from_vport(vport);
1998 	IOCB_t *irsp;
1999 	struct lpfc_nodelist *ndlp;
2000 	struct lpfc_dmabuf *prsp;
2001 	int disc;
2002 
2003 	/* we pass cmdiocb to state machine which needs rspiocb as well */
2004 	cmdiocb->context_un.rsp_iocb = rspiocb;
2005 
2006 	irsp = &rspiocb->iocb;
2007 	lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2008 		"PLOGI cmpl:      status:x%x/x%x did:x%x",
2009 		irsp->ulpStatus, irsp->un.ulpWord[4],
2010 		irsp->un.elsreq64.remoteID);
2011 
2012 	ndlp = lpfc_findnode_did(vport, irsp->un.elsreq64.remoteID);
2013 	if (!ndlp || !NLP_CHK_NODE_ACT(ndlp)) {
2014 		lpfc_printf_vlog(vport, KERN_ERR, LOG_TRACE_EVENT,
2015 				 "0136 PLOGI completes to NPort x%x "
2016 				 "with no ndlp. Data: x%x x%x x%x\n",
2017 				 irsp->un.elsreq64.remoteID,
2018 				 irsp->ulpStatus, irsp->un.ulpWord[4],
2019 				 irsp->ulpIoTag);
2020 		goto out;
2021 	}
2022 
2023 	/* Since ndlp can be freed in the disc state machine, note if this node
2024 	 * is being used during discovery.
2025 	 */
2026 	spin_lock_irq(shost->host_lock);
2027 	disc = (ndlp->nlp_flag & NLP_NPR_2B_DISC);
2028 	ndlp->nlp_flag &= ~NLP_NPR_2B_DISC;
2029 	spin_unlock_irq(shost->host_lock);
2030 
2031 	/* PLOGI completes to NPort <nlp_DID> */
2032 	lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
2033 			 "0102 PLOGI completes to NPort x%06x "
2034 			 "Data: x%x x%x x%x x%x x%x\n",
2035 			 ndlp->nlp_DID, ndlp->nlp_fc4_type,
2036 			 irsp->ulpStatus, irsp->un.ulpWord[4],
2037 			 disc, vport->num_disc_nodes);
2038 
2039 	/* Check to see if link went down during discovery */
2040 	if (lpfc_els_chk_latt(vport)) {
2041 		spin_lock_irq(shost->host_lock);
2042 		ndlp->nlp_flag |= NLP_NPR_2B_DISC;
2043 		spin_unlock_irq(shost->host_lock);
2044 		goto out;
2045 	}
2046 
2047 	if (irsp->ulpStatus) {
2048 		/* Check for retry */
2049 		if (lpfc_els_retry(phba, cmdiocb, rspiocb)) {
2050 			/* ELS command is being retried */
2051 			if (disc) {
2052 				spin_lock_irq(shost->host_lock);
2053 				ndlp->nlp_flag |= NLP_NPR_2B_DISC;
2054 				spin_unlock_irq(shost->host_lock);
2055 			}
2056 			goto out;
2057 		}
2058 		/* PLOGI failed Don't print the vport to vport rjts */
2059 		if (irsp->ulpStatus != IOSTAT_LS_RJT ||
2060 			(((irsp->un.ulpWord[4]) >> 16 != LSRJT_INVALID_CMD) &&
2061 			((irsp->un.ulpWord[4]) >> 16 != LSRJT_UNABLE_TPC)) ||
2062 			(phba)->pport->cfg_log_verbose & LOG_ELS)
2063 			lpfc_printf_vlog(vport, KERN_ERR, LOG_TRACE_EVENT,
2064 				 "2753 PLOGI failure DID:%06X Status:x%x/x%x\n",
2065 				 ndlp->nlp_DID, irsp->ulpStatus,
2066 				 irsp->un.ulpWord[4]);
2067 		/* Do not call DSM for lpfc_els_abort'ed ELS cmds */
2068 		if (!lpfc_error_lost_link(irsp))
2069 			lpfc_disc_state_machine(vport, ndlp, cmdiocb,
2070 						NLP_EVT_CMPL_PLOGI);
2071 	} else {
2072 		/* Good status, call state machine */
2073 		prsp = list_entry(((struct lpfc_dmabuf *)
2074 				   cmdiocb->context2)->list.next,
2075 				  struct lpfc_dmabuf, list);
2076 		ndlp = lpfc_plogi_confirm_nport(phba, prsp->virt, ndlp);
2077 		lpfc_disc_state_machine(vport, ndlp, cmdiocb,
2078 					     NLP_EVT_CMPL_PLOGI);
2079 	}
2080 
2081 	if (disc && vport->num_disc_nodes) {
2082 		/* Check to see if there are more PLOGIs to be sent */
2083 		lpfc_more_plogi(vport);
2084 
2085 		if (vport->num_disc_nodes == 0) {
2086 			spin_lock_irq(shost->host_lock);
2087 			vport->fc_flag &= ~FC_NDISC_ACTIVE;
2088 			spin_unlock_irq(shost->host_lock);
2089 
2090 			lpfc_can_disctmo(vport);
2091 			lpfc_end_rscn(vport);
2092 		}
2093 	}
2094 
2095 out:
2096 	lpfc_els_free_iocb(phba, cmdiocb);
2097 	return;
2098 }
2099 
2100 /**
2101  * lpfc_issue_els_plogi - Issue an plogi iocb command for a vport
2102  * @vport: pointer to a host virtual N_Port data structure.
2103  * @did: destination port identifier.
2104  * @retry: number of retries to the command IOCB.
2105  *
2106  * This routine issues a Port Login (PLOGI) command to a remote N_Port
2107  * (with the @did) for a @vport. Before issuing a PLOGI to a remote N_Port,
2108  * the ndlp with the remote N_Port DID must exist on the @vport's ndlp list.
2109  * This routine constructs the proper feilds of the PLOGI IOCB and invokes
2110  * the lpfc_sli_issue_iocb() routine to send out PLOGI ELS command.
2111  *
2112  * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
2113  * will be incremented by 1 for holding the ndlp and the reference to ndlp
2114  * will be stored into the context1 field of the IOCB for the completion
2115  * callback function to the PLOGI ELS command.
2116  *
2117  * Return code
2118  *   0 - Successfully issued a plogi for @vport
2119  *   1 - failed to issue a plogi for @vport
2120  **/
2121 int
2122 lpfc_issue_els_plogi(struct lpfc_vport *vport, uint32_t did, uint8_t retry)
2123 {
2124 	struct lpfc_hba  *phba = vport->phba;
2125 	struct Scsi_Host *shost;
2126 	struct serv_parm *sp;
2127 	struct lpfc_nodelist *ndlp;
2128 	struct lpfc_iocbq *elsiocb;
2129 	uint8_t *pcmd;
2130 	uint16_t cmdsize;
2131 	int ret;
2132 
2133 	ndlp = lpfc_findnode_did(vport, did);
2134 
2135 	if (ndlp) {
2136 		/* Defer the processing of the issue PLOGI until after the
2137 		 * outstanding UNREG_RPI mbox command completes, unless we
2138 		 * are going offline. This logic does not apply for Fabric DIDs
2139 		 */
2140 		if ((ndlp->nlp_flag & NLP_UNREG_INP) &&
2141 		    ((ndlp->nlp_DID & Fabric_DID_MASK) != Fabric_DID_MASK) &&
2142 		    !(vport->fc_flag & FC_OFFLINE_MODE)) {
2143 			lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
2144 					 "4110 Issue PLOGI x%x deferred "
2145 					 "on NPort x%x rpi x%x Data: x%px\n",
2146 					 ndlp->nlp_defer_did, ndlp->nlp_DID,
2147 					 ndlp->nlp_rpi, ndlp);
2148 
2149 			/* We can only defer 1st PLOGI */
2150 			if (ndlp->nlp_defer_did == NLP_EVT_NOTHING_PENDING)
2151 				ndlp->nlp_defer_did = did;
2152 			return 0;
2153 		}
2154 		if (!NLP_CHK_NODE_ACT(ndlp))
2155 			ndlp = NULL;
2156 	}
2157 
2158 	/* If ndlp is not NULL, we will bump the reference count on it */
2159 	cmdsize = (sizeof(uint32_t) + sizeof(struct serv_parm));
2160 	elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp, did,
2161 				     ELS_CMD_PLOGI);
2162 	if (!elsiocb)
2163 		return 1;
2164 
2165 	shost = lpfc_shost_from_vport(vport);
2166 	spin_lock_irq(shost->host_lock);
2167 	ndlp->nlp_flag &= ~NLP_FCP_PRLI_RJT;
2168 	spin_unlock_irq(shost->host_lock);
2169 
2170 	pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
2171 
2172 	/* For PLOGI request, remainder of payload is service parameters */
2173 	*((uint32_t *) (pcmd)) = ELS_CMD_PLOGI;
2174 	pcmd += sizeof(uint32_t);
2175 	memcpy(pcmd, &vport->fc_sparam, sizeof(struct serv_parm));
2176 	sp = (struct serv_parm *) pcmd;
2177 
2178 	/*
2179 	 * If we are a N-port connected to a Fabric, fix-up paramm's so logins
2180 	 * to device on remote loops work.
2181 	 */
2182 	if ((vport->fc_flag & FC_FABRIC) && !(vport->fc_flag & FC_PUBLIC_LOOP))
2183 		sp->cmn.altBbCredit = 1;
2184 
2185 	if (sp->cmn.fcphLow < FC_PH_4_3)
2186 		sp->cmn.fcphLow = FC_PH_4_3;
2187 
2188 	if (sp->cmn.fcphHigh < FC_PH3)
2189 		sp->cmn.fcphHigh = FC_PH3;
2190 
2191 	sp->cmn.valid_vendor_ver_level = 0;
2192 	memset(sp->un.vendorVersion, 0, sizeof(sp->un.vendorVersion));
2193 	sp->cmn.bbRcvSizeMsb &= 0xF;
2194 
2195 	lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2196 		"Issue PLOGI:     did:x%x",
2197 		did, 0, 0);
2198 
2199 	/* If our firmware supports this feature, convey that
2200 	 * information to the target using the vendor specific field.
2201 	 */
2202 	if (phba->sli.sli_flag & LPFC_SLI_SUPPRESS_RSP) {
2203 		sp->cmn.valid_vendor_ver_level = 1;
2204 		sp->un.vv.vid = cpu_to_be32(LPFC_VV_EMLX_ID);
2205 		sp->un.vv.flags = cpu_to_be32(LPFC_VV_SUPPRESS_RSP);
2206 	}
2207 
2208 	phba->fc_stat.elsXmitPLOGI++;
2209 	elsiocb->iocb_cmpl = lpfc_cmpl_els_plogi;
2210 	ret = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
2211 
2212 	if (ret == IOCB_ERROR) {
2213 		lpfc_els_free_iocb(phba, elsiocb);
2214 		return 1;
2215 	}
2216 	return 0;
2217 }
2218 
2219 /**
2220  * lpfc_cmpl_els_prli - Completion callback function for prli
2221  * @phba: pointer to lpfc hba data structure.
2222  * @cmdiocb: pointer to lpfc command iocb data structure.
2223  * @rspiocb: pointer to lpfc response iocb data structure.
2224  *
2225  * This routine is the completion callback function for a Process Login
2226  * (PRLI) ELS command. The PRLI response IOCB status is checked for error
2227  * status. If there is error status reported, PRLI retry shall be attempted
2228  * by invoking the lpfc_els_retry() routine. Otherwise, the state
2229  * NLP_EVT_CMPL_PRLI is sent to the Discover State Machine (DSM) for this
2230  * ndlp to mark the PRLI completion.
2231  **/
2232 static void
2233 lpfc_cmpl_els_prli(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
2234 		   struct lpfc_iocbq *rspiocb)
2235 {
2236 	struct lpfc_vport *vport = cmdiocb->vport;
2237 	struct Scsi_Host  *shost = lpfc_shost_from_vport(vport);
2238 	IOCB_t *irsp;
2239 	struct lpfc_nodelist *ndlp;
2240 	char *mode;
2241 	u32 loglevel;
2242 
2243 	/* we pass cmdiocb to state machine which needs rspiocb as well */
2244 	cmdiocb->context_un.rsp_iocb = rspiocb;
2245 
2246 	irsp = &(rspiocb->iocb);
2247 	ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
2248 	spin_lock_irq(shost->host_lock);
2249 	ndlp->nlp_flag &= ~NLP_PRLI_SND;
2250 
2251 	/* Driver supports multiple FC4 types.  Counters matter. */
2252 	vport->fc_prli_sent--;
2253 	ndlp->fc4_prli_sent--;
2254 	spin_unlock_irq(shost->host_lock);
2255 
2256 	lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2257 		"PRLI cmpl:       status:x%x/x%x did:x%x",
2258 		irsp->ulpStatus, irsp->un.ulpWord[4],
2259 		ndlp->nlp_DID);
2260 
2261 	/* PRLI completes to NPort <nlp_DID> */
2262 	lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
2263 			 "0103 PRLI completes to NPort x%06x "
2264 			 "Data: x%x x%x x%x x%x\n",
2265 			 ndlp->nlp_DID, irsp->ulpStatus, irsp->un.ulpWord[4],
2266 			 vport->num_disc_nodes, ndlp->fc4_prli_sent);
2267 
2268 	/* Check to see if link went down during discovery */
2269 	if (lpfc_els_chk_latt(vport))
2270 		goto out;
2271 
2272 	if (irsp->ulpStatus) {
2273 		/* Check for retry */
2274 		if (lpfc_els_retry(phba, cmdiocb, rspiocb)) {
2275 			/* ELS command is being retried */
2276 			goto out;
2277 		}
2278 
2279 		/* If we don't send GFT_ID to Fabric, a PRLI error
2280 		 * could be expected.
2281 		 */
2282 		if ((vport->fc_flag & FC_FABRIC) ||
2283 		    (vport->cfg_enable_fc4_type != LPFC_ENABLE_BOTH)) {
2284 			mode = KERN_ERR;
2285 			loglevel =  LOG_TRACE_EVENT;
2286 		} else {
2287 			mode = KERN_INFO;
2288 			loglevel =  LOG_ELS;
2289 		}
2290 
2291 		/* PRLI failed */
2292 		lpfc_printf_vlog(vport, mode, loglevel,
2293 				 "2754 PRLI failure DID:%06X Status:x%x/x%x, "
2294 				 "data: x%x\n",
2295 				 ndlp->nlp_DID, irsp->ulpStatus,
2296 				 irsp->un.ulpWord[4], ndlp->fc4_prli_sent);
2297 
2298 		/* Do not call DSM for lpfc_els_abort'ed ELS cmds */
2299 		if (lpfc_error_lost_link(irsp))
2300 			goto out;
2301 		else
2302 			lpfc_disc_state_machine(vport, ndlp, cmdiocb,
2303 						NLP_EVT_CMPL_PRLI);
2304 	} else {
2305 		/* Good status, call state machine.  However, if another
2306 		 * PRLI is outstanding, don't call the state machine
2307 		 * because final disposition to Mapped or Unmapped is
2308 		 * completed there.
2309 		 */
2310 		lpfc_disc_state_machine(vport, ndlp, cmdiocb,
2311 					NLP_EVT_CMPL_PRLI);
2312 	}
2313 
2314 out:
2315 	lpfc_els_free_iocb(phba, cmdiocb);
2316 	return;
2317 }
2318 
2319 /**
2320  * lpfc_issue_els_prli - Issue a prli iocb command for a vport
2321  * @vport: pointer to a host virtual N_Port data structure.
2322  * @ndlp: pointer to a node-list data structure.
2323  * @retry: number of retries to the command IOCB.
2324  *
2325  * This routine issues a Process Login (PRLI) ELS command for the
2326  * @vport. The PRLI service parameters are set up in the payload of the
2327  * PRLI Request command and the pointer to lpfc_cmpl_els_prli() routine
2328  * is put to the IOCB completion callback func field before invoking the
2329  * routine lpfc_sli_issue_iocb() to send out PRLI command.
2330  *
2331  * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
2332  * will be incremented by 1 for holding the ndlp and the reference to ndlp
2333  * will be stored into the context1 field of the IOCB for the completion
2334  * callback function to the PRLI ELS command.
2335  *
2336  * Return code
2337  *   0 - successfully issued prli iocb command for @vport
2338  *   1 - failed to issue prli iocb command for @vport
2339  **/
2340 int
2341 lpfc_issue_els_prli(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2342 		    uint8_t retry)
2343 {
2344 	struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2345 	struct lpfc_hba *phba = vport->phba;
2346 	PRLI *npr;
2347 	struct lpfc_nvme_prli *npr_nvme;
2348 	struct lpfc_iocbq *elsiocb;
2349 	uint8_t *pcmd;
2350 	uint16_t cmdsize;
2351 	u32 local_nlp_type, elscmd;
2352 
2353 	/*
2354 	 * If we are in RSCN mode, the FC4 types supported from a
2355 	 * previous GFT_ID command may not be accurate. So, if we
2356 	 * are a NVME Initiator, always look for the possibility of
2357 	 * the remote NPort beng a NVME Target.
2358 	 */
2359 	if (phba->sli_rev == LPFC_SLI_REV4 &&
2360 	    vport->fc_flag & FC_RSCN_MODE &&
2361 	    vport->nvmei_support)
2362 		ndlp->nlp_fc4_type |= NLP_FC4_NVME;
2363 	local_nlp_type = ndlp->nlp_fc4_type;
2364 
2365 	/* This routine will issue 1 or 2 PRLIs, so zero all the ndlp
2366 	 * fields here before any of them can complete.
2367 	 */
2368 	ndlp->nlp_type &= ~(NLP_FCP_TARGET | NLP_FCP_INITIATOR);
2369 	ndlp->nlp_type &= ~(NLP_NVME_TARGET | NLP_NVME_INITIATOR);
2370 	ndlp->nlp_fcp_info &= ~NLP_FCP_2_DEVICE;
2371 	ndlp->nlp_flag &= ~(NLP_FIRSTBURST | NLP_NPR_2B_DISC);
2372 	ndlp->nvme_fb_size = 0;
2373 
2374  send_next_prli:
2375 	if (local_nlp_type & NLP_FC4_FCP) {
2376 		/* Payload is 4 + 16 = 20 x14 bytes. */
2377 		cmdsize = (sizeof(uint32_t) + sizeof(PRLI));
2378 		elscmd = ELS_CMD_PRLI;
2379 	} else if (local_nlp_type & NLP_FC4_NVME) {
2380 		/* Payload is 4 + 20 = 24 x18 bytes. */
2381 		cmdsize = (sizeof(uint32_t) + sizeof(struct lpfc_nvme_prli));
2382 		elscmd = ELS_CMD_NVMEPRLI;
2383 	} else {
2384 		lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
2385 				 "3083 Unknown FC_TYPE x%x ndlp x%06x\n",
2386 				 ndlp->nlp_fc4_type, ndlp->nlp_DID);
2387 		return 1;
2388 	}
2389 
2390 	/* SLI3 ports don't support NVME.  If this rport is a strict NVME
2391 	 * FC4 type, implicitly LOGO.
2392 	 */
2393 	if (phba->sli_rev == LPFC_SLI_REV3 &&
2394 	    ndlp->nlp_fc4_type == NLP_FC4_NVME) {
2395 		lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
2396 				 "3088 Rport fc4 type 0x%x not supported by SLI3 adapter\n",
2397 				 ndlp->nlp_type);
2398 		lpfc_disc_state_machine(vport, ndlp, NULL, NLP_EVT_DEVICE_RM);
2399 		return 1;
2400 	}
2401 
2402 	elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
2403 				     ndlp->nlp_DID, elscmd);
2404 	if (!elsiocb)
2405 		return 1;
2406 
2407 	pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
2408 
2409 	/* For PRLI request, remainder of payload is service parameters */
2410 	memset(pcmd, 0, cmdsize);
2411 
2412 	if (local_nlp_type & NLP_FC4_FCP) {
2413 		/* Remainder of payload is FCP PRLI parameter page.
2414 		 * Note: this data structure is defined as
2415 		 * BE/LE in the structure definition so no
2416 		 * byte swap call is made.
2417 		 */
2418 		*((uint32_t *)(pcmd)) = ELS_CMD_PRLI;
2419 		pcmd += sizeof(uint32_t);
2420 		npr = (PRLI *)pcmd;
2421 
2422 		/*
2423 		 * If our firmware version is 3.20 or later,
2424 		 * set the following bits for FC-TAPE support.
2425 		 */
2426 		if (phba->vpd.rev.feaLevelHigh >= 0x02) {
2427 			npr->ConfmComplAllowed = 1;
2428 			npr->Retry = 1;
2429 			npr->TaskRetryIdReq = 1;
2430 		}
2431 		npr->estabImagePair = 1;
2432 		npr->readXferRdyDis = 1;
2433 		if (vport->cfg_first_burst_size)
2434 			npr->writeXferRdyDis = 1;
2435 
2436 		/* For FCP support */
2437 		npr->prliType = PRLI_FCP_TYPE;
2438 		npr->initiatorFunc = 1;
2439 		elsiocb->iocb_flag |= LPFC_PRLI_FCP_REQ;
2440 
2441 		/* Remove FCP type - processed. */
2442 		local_nlp_type &= ~NLP_FC4_FCP;
2443 	} else if (local_nlp_type & NLP_FC4_NVME) {
2444 		/* Remainder of payload is NVME PRLI parameter page.
2445 		 * This data structure is the newer definition that
2446 		 * uses bf macros so a byte swap is required.
2447 		 */
2448 		*((uint32_t *)(pcmd)) = ELS_CMD_NVMEPRLI;
2449 		pcmd += sizeof(uint32_t);
2450 		npr_nvme = (struct lpfc_nvme_prli *)pcmd;
2451 		bf_set(prli_type_code, npr_nvme, PRLI_NVME_TYPE);
2452 		bf_set(prli_estabImagePair, npr_nvme, 0);  /* Should be 0 */
2453 		if (phba->nsler) {
2454 			bf_set(prli_nsler, npr_nvme, 1);
2455 			bf_set(prli_conf, npr_nvme, 1);
2456 		}
2457 
2458 		/* Only initiators request first burst. */
2459 		if ((phba->cfg_nvme_enable_fb) &&
2460 		    !phba->nvmet_support)
2461 			bf_set(prli_fba, npr_nvme, 1);
2462 
2463 		if (phba->nvmet_support) {
2464 			bf_set(prli_tgt, npr_nvme, 1);
2465 			bf_set(prli_disc, npr_nvme, 1);
2466 		} else {
2467 			bf_set(prli_init, npr_nvme, 1);
2468 			bf_set(prli_conf, npr_nvme, 1);
2469 		}
2470 
2471 		npr_nvme->word1 = cpu_to_be32(npr_nvme->word1);
2472 		npr_nvme->word4 = cpu_to_be32(npr_nvme->word4);
2473 		elsiocb->iocb_flag |= LPFC_PRLI_NVME_REQ;
2474 
2475 		/* Remove NVME type - processed. */
2476 		local_nlp_type &= ~NLP_FC4_NVME;
2477 	}
2478 
2479 	lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2480 		"Issue PRLI:      did:x%x",
2481 		ndlp->nlp_DID, 0, 0);
2482 
2483 	phba->fc_stat.elsXmitPRLI++;
2484 	elsiocb->iocb_cmpl = lpfc_cmpl_els_prli;
2485 	spin_lock_irq(shost->host_lock);
2486 	ndlp->nlp_flag |= NLP_PRLI_SND;
2487 
2488 	/* The vport counters are used for lpfc_scan_finished, but
2489 	 * the ndlp is used to track outstanding PRLIs for different
2490 	 * FC4 types.
2491 	 */
2492 	vport->fc_prli_sent++;
2493 	ndlp->fc4_prli_sent++;
2494 	spin_unlock_irq(shost->host_lock);
2495 	if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) ==
2496 	    IOCB_ERROR) {
2497 		spin_lock_irq(shost->host_lock);
2498 		ndlp->nlp_flag &= ~NLP_PRLI_SND;
2499 		spin_unlock_irq(shost->host_lock);
2500 		lpfc_els_free_iocb(phba, elsiocb);
2501 		return 1;
2502 	}
2503 
2504 
2505 	/* The driver supports 2 FC4 types.  Make sure
2506 	 * a PRLI is issued for all types before exiting.
2507 	 */
2508 	if (phba->sli_rev == LPFC_SLI_REV4 &&
2509 	    local_nlp_type & (NLP_FC4_FCP | NLP_FC4_NVME))
2510 		goto send_next_prli;
2511 
2512 	return 0;
2513 }
2514 
2515 /**
2516  * lpfc_rscn_disc - Perform rscn discovery for a vport
2517  * @vport: pointer to a host virtual N_Port data structure.
2518  *
2519  * This routine performs Registration State Change Notification (RSCN)
2520  * discovery for a @vport. If the @vport's node port recovery count is not
2521  * zero, it will invoke the lpfc_els_disc_plogi() to perform PLOGI for all
2522  * the nodes that need recovery. If none of the PLOGI were needed through
2523  * the lpfc_els_disc_plogi() routine, the lpfc_end_rscn() routine shall be
2524  * invoked to check and handle possible more RSCN came in during the period
2525  * of processing the current ones.
2526  **/
2527 static void
2528 lpfc_rscn_disc(struct lpfc_vport *vport)
2529 {
2530 	lpfc_can_disctmo(vport);
2531 
2532 	/* RSCN discovery */
2533 	/* go thru NPR nodes and issue ELS PLOGIs */
2534 	if (vport->fc_npr_cnt)
2535 		if (lpfc_els_disc_plogi(vport))
2536 			return;
2537 
2538 	lpfc_end_rscn(vport);
2539 }
2540 
2541 /**
2542  * lpfc_adisc_done - Complete the adisc phase of discovery
2543  * @vport: pointer to lpfc_vport hba data structure that finished all ADISCs.
2544  *
2545  * This function is called when the final ADISC is completed during discovery.
2546  * This function handles clearing link attention or issuing reg_vpi depending
2547  * on whether npiv is enabled. This function also kicks off the PLOGI phase of
2548  * discovery.
2549  * This function is called with no locks held.
2550  **/
2551 static void
2552 lpfc_adisc_done(struct lpfc_vport *vport)
2553 {
2554 	struct Scsi_Host   *shost = lpfc_shost_from_vport(vport);
2555 	struct lpfc_hba   *phba = vport->phba;
2556 
2557 	/*
2558 	 * For NPIV, cmpl_reg_vpi will set port_state to READY,
2559 	 * and continue discovery.
2560 	 */
2561 	if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
2562 	    !(vport->fc_flag & FC_RSCN_MODE) &&
2563 	    (phba->sli_rev < LPFC_SLI_REV4)) {
2564 		/* The ADISCs are complete.  Doesn't matter if they
2565 		 * succeeded or failed because the ADISC completion
2566 		 * routine guarantees to call the state machine and
2567 		 * the RPI is either unregistered (failed ADISC response)
2568 		 * or the RPI is still valid and the node is marked
2569 		 * mapped for a target.  The exchanges should be in the
2570 		 * correct state. This code is specific to SLI3.
2571 		 */
2572 		lpfc_issue_clear_la(phba, vport);
2573 		lpfc_issue_reg_vpi(phba, vport);
2574 		return;
2575 	}
2576 	/*
2577 	* For SLI2, we need to set port_state to READY
2578 	* and continue discovery.
2579 	*/
2580 	if (vport->port_state < LPFC_VPORT_READY) {
2581 		/* If we get here, there is nothing to ADISC */
2582 		lpfc_issue_clear_la(phba, vport);
2583 		if (!(vport->fc_flag & FC_ABORT_DISCOVERY)) {
2584 			vport->num_disc_nodes = 0;
2585 			/* go thru NPR list, issue ELS PLOGIs */
2586 			if (vport->fc_npr_cnt)
2587 				lpfc_els_disc_plogi(vport);
2588 			if (!vport->num_disc_nodes) {
2589 				spin_lock_irq(shost->host_lock);
2590 				vport->fc_flag &= ~FC_NDISC_ACTIVE;
2591 				spin_unlock_irq(shost->host_lock);
2592 				lpfc_can_disctmo(vport);
2593 				lpfc_end_rscn(vport);
2594 			}
2595 		}
2596 		vport->port_state = LPFC_VPORT_READY;
2597 	} else
2598 		lpfc_rscn_disc(vport);
2599 }
2600 
2601 /**
2602  * lpfc_more_adisc - Issue more adisc as needed
2603  * @vport: pointer to a host virtual N_Port data structure.
2604  *
2605  * This routine determines whether there are more ndlps on a @vport
2606  * node list need to have Address Discover (ADISC) issued. If so, it will
2607  * invoke the lpfc_els_disc_adisc() routine to issue ADISC on the @vport's
2608  * remaining nodes which need to have ADISC sent.
2609  **/
2610 void
2611 lpfc_more_adisc(struct lpfc_vport *vport)
2612 {
2613 	if (vport->num_disc_nodes)
2614 		vport->num_disc_nodes--;
2615 	/* Continue discovery with <num_disc_nodes> ADISCs to go */
2616 	lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
2617 			 "0210 Continue discovery with %d ADISCs to go "
2618 			 "Data: x%x x%x x%x\n",
2619 			 vport->num_disc_nodes, vport->fc_adisc_cnt,
2620 			 vport->fc_flag, vport->port_state);
2621 	/* Check to see if there are more ADISCs to be sent */
2622 	if (vport->fc_flag & FC_NLP_MORE) {
2623 		lpfc_set_disctmo(vport);
2624 		/* go thru NPR nodes and issue any remaining ELS ADISCs */
2625 		lpfc_els_disc_adisc(vport);
2626 	}
2627 	if (!vport->num_disc_nodes)
2628 		lpfc_adisc_done(vport);
2629 	return;
2630 }
2631 
2632 /**
2633  * lpfc_cmpl_els_adisc - Completion callback function for adisc
2634  * @phba: pointer to lpfc hba data structure.
2635  * @cmdiocb: pointer to lpfc command iocb data structure.
2636  * @rspiocb: pointer to lpfc response iocb data structure.
2637  *
2638  * This routine is the completion function for issuing the Address Discover
2639  * (ADISC) command. It first checks to see whether link went down during
2640  * the discovery process. If so, the node will be marked as node port
2641  * recovery for issuing discover IOCB by the link attention handler and
2642  * exit. Otherwise, the response status is checked. If error was reported
2643  * in the response status, the ADISC command shall be retried by invoking
2644  * the lpfc_els_retry() routine. Otherwise, if no error was reported in
2645  * the response status, the state machine is invoked to set transition
2646  * with respect to NLP_EVT_CMPL_ADISC event.
2647  **/
2648 static void
2649 lpfc_cmpl_els_adisc(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
2650 		    struct lpfc_iocbq *rspiocb)
2651 {
2652 	struct lpfc_vport *vport = cmdiocb->vport;
2653 	struct Scsi_Host  *shost = lpfc_shost_from_vport(vport);
2654 	IOCB_t *irsp;
2655 	struct lpfc_nodelist *ndlp;
2656 	int  disc;
2657 
2658 	/* we pass cmdiocb to state machine which needs rspiocb as well */
2659 	cmdiocb->context_un.rsp_iocb = rspiocb;
2660 
2661 	irsp = &(rspiocb->iocb);
2662 	ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
2663 
2664 	lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2665 		"ADISC cmpl:      status:x%x/x%x did:x%x",
2666 		irsp->ulpStatus, irsp->un.ulpWord[4],
2667 		ndlp->nlp_DID);
2668 
2669 	/* Since ndlp can be freed in the disc state machine, note if this node
2670 	 * is being used during discovery.
2671 	 */
2672 	spin_lock_irq(shost->host_lock);
2673 	disc = (ndlp->nlp_flag & NLP_NPR_2B_DISC);
2674 	ndlp->nlp_flag &= ~(NLP_ADISC_SND | NLP_NPR_2B_DISC);
2675 	spin_unlock_irq(shost->host_lock);
2676 	/* ADISC completes to NPort <nlp_DID> */
2677 	lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
2678 			 "0104 ADISC completes to NPort x%x "
2679 			 "Data: x%x x%x x%x x%x x%x\n",
2680 			 ndlp->nlp_DID, irsp->ulpStatus, irsp->un.ulpWord[4],
2681 			 irsp->ulpTimeout, disc, vport->num_disc_nodes);
2682 	/* Check to see if link went down during discovery */
2683 	if (lpfc_els_chk_latt(vport)) {
2684 		spin_lock_irq(shost->host_lock);
2685 		ndlp->nlp_flag |= NLP_NPR_2B_DISC;
2686 		spin_unlock_irq(shost->host_lock);
2687 		goto out;
2688 	}
2689 
2690 	if (irsp->ulpStatus) {
2691 		/* Check for retry */
2692 		if (lpfc_els_retry(phba, cmdiocb, rspiocb)) {
2693 			/* ELS command is being retried */
2694 			if (disc) {
2695 				spin_lock_irq(shost->host_lock);
2696 				ndlp->nlp_flag |= NLP_NPR_2B_DISC;
2697 				spin_unlock_irq(shost->host_lock);
2698 				lpfc_set_disctmo(vport);
2699 			}
2700 			goto out;
2701 		}
2702 		/* ADISC failed */
2703 		lpfc_printf_vlog(vport, KERN_ERR, LOG_TRACE_EVENT,
2704 				 "2755 ADISC failure DID:%06X Status:x%x/x%x\n",
2705 				 ndlp->nlp_DID, irsp->ulpStatus,
2706 				 irsp->un.ulpWord[4]);
2707 		/* Do not call DSM for lpfc_els_abort'ed ELS cmds */
2708 		if (!lpfc_error_lost_link(irsp))
2709 			lpfc_disc_state_machine(vport, ndlp, cmdiocb,
2710 						NLP_EVT_CMPL_ADISC);
2711 	} else
2712 		/* Good status, call state machine */
2713 		lpfc_disc_state_machine(vport, ndlp, cmdiocb,
2714 					NLP_EVT_CMPL_ADISC);
2715 
2716 	/* Check to see if there are more ADISCs to be sent */
2717 	if (disc && vport->num_disc_nodes)
2718 		lpfc_more_adisc(vport);
2719 out:
2720 	lpfc_els_free_iocb(phba, cmdiocb);
2721 	return;
2722 }
2723 
2724 /**
2725  * lpfc_issue_els_adisc - Issue an address discover iocb to an node on a vport
2726  * @vport: pointer to a virtual N_Port data structure.
2727  * @ndlp: pointer to a node-list data structure.
2728  * @retry: number of retries to the command IOCB.
2729  *
2730  * This routine issues an Address Discover (ADISC) for an @ndlp on a
2731  * @vport. It prepares the payload of the ADISC ELS command, updates the
2732  * and states of the ndlp, and invokes the lpfc_sli_issue_iocb() routine
2733  * to issue the ADISC ELS command.
2734  *
2735  * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
2736  * will be incremented by 1 for holding the ndlp and the reference to ndlp
2737  * will be stored into the context1 field of the IOCB for the completion
2738  * callback function to the ADISC ELS command.
2739  *
2740  * Return code
2741  *   0 - successfully issued adisc
2742  *   1 - failed to issue adisc
2743  **/
2744 int
2745 lpfc_issue_els_adisc(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2746 		     uint8_t retry)
2747 {
2748 	struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2749 	struct lpfc_hba  *phba = vport->phba;
2750 	ADISC *ap;
2751 	struct lpfc_iocbq *elsiocb;
2752 	uint8_t *pcmd;
2753 	uint16_t cmdsize;
2754 
2755 	cmdsize = (sizeof(uint32_t) + sizeof(ADISC));
2756 	elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
2757 				     ndlp->nlp_DID, ELS_CMD_ADISC);
2758 	if (!elsiocb)
2759 		return 1;
2760 
2761 	pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
2762 
2763 	/* For ADISC request, remainder of payload is service parameters */
2764 	*((uint32_t *) (pcmd)) = ELS_CMD_ADISC;
2765 	pcmd += sizeof(uint32_t);
2766 
2767 	/* Fill in ADISC payload */
2768 	ap = (ADISC *) pcmd;
2769 	ap->hardAL_PA = phba->fc_pref_ALPA;
2770 	memcpy(&ap->portName, &vport->fc_portname, sizeof(struct lpfc_name));
2771 	memcpy(&ap->nodeName, &vport->fc_nodename, sizeof(struct lpfc_name));
2772 	ap->DID = be32_to_cpu(vport->fc_myDID);
2773 
2774 	lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2775 		"Issue ADISC:     did:x%x",
2776 		ndlp->nlp_DID, 0, 0);
2777 
2778 	phba->fc_stat.elsXmitADISC++;
2779 	elsiocb->iocb_cmpl = lpfc_cmpl_els_adisc;
2780 	spin_lock_irq(shost->host_lock);
2781 	ndlp->nlp_flag |= NLP_ADISC_SND;
2782 	spin_unlock_irq(shost->host_lock);
2783 	if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) ==
2784 	    IOCB_ERROR) {
2785 		spin_lock_irq(shost->host_lock);
2786 		ndlp->nlp_flag &= ~NLP_ADISC_SND;
2787 		spin_unlock_irq(shost->host_lock);
2788 		lpfc_els_free_iocb(phba, elsiocb);
2789 		return 1;
2790 	}
2791 	return 0;
2792 }
2793 
2794 /**
2795  * lpfc_cmpl_els_logo - Completion callback function for logo
2796  * @phba: pointer to lpfc hba data structure.
2797  * @cmdiocb: pointer to lpfc command iocb data structure.
2798  * @rspiocb: pointer to lpfc response iocb data structure.
2799  *
2800  * This routine is the completion function for issuing the ELS Logout (LOGO)
2801  * command. If no error status was reported from the LOGO response, the
2802  * state machine of the associated ndlp shall be invoked for transition with
2803  * respect to NLP_EVT_CMPL_LOGO event. Otherwise, if error status was reported,
2804  * the lpfc_els_retry() routine will be invoked to retry the LOGO command.
2805  **/
2806 static void
2807 lpfc_cmpl_els_logo(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
2808 		   struct lpfc_iocbq *rspiocb)
2809 {
2810 	struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
2811 	struct lpfc_vport *vport = ndlp->vport;
2812 	struct Scsi_Host  *shost = lpfc_shost_from_vport(vport);
2813 	IOCB_t *irsp;
2814 	struct lpfcMboxq *mbox;
2815 	unsigned long flags;
2816 	uint32_t skip_recovery = 0;
2817 
2818 	/* we pass cmdiocb to state machine which needs rspiocb as well */
2819 	cmdiocb->context_un.rsp_iocb = rspiocb;
2820 
2821 	irsp = &(rspiocb->iocb);
2822 	spin_lock_irq(shost->host_lock);
2823 	ndlp->nlp_flag &= ~NLP_LOGO_SND;
2824 	spin_unlock_irq(shost->host_lock);
2825 
2826 	lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2827 		"LOGO cmpl:       status:x%x/x%x did:x%x",
2828 		irsp->ulpStatus, irsp->un.ulpWord[4],
2829 		ndlp->nlp_DID);
2830 
2831 	/* LOGO completes to NPort <nlp_DID> */
2832 	lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
2833 			 "0105 LOGO completes to NPort x%x "
2834 			 "Data: x%x x%x x%x x%x\n",
2835 			 ndlp->nlp_DID, irsp->ulpStatus, irsp->un.ulpWord[4],
2836 			 irsp->ulpTimeout, vport->num_disc_nodes);
2837 
2838 	if (lpfc_els_chk_latt(vport)) {
2839 		skip_recovery = 1;
2840 		goto out;
2841 	}
2842 
2843 	/* Check to see if link went down during discovery */
2844 	if (ndlp->nlp_flag & NLP_TARGET_REMOVE) {
2845 	        /* NLP_EVT_DEVICE_RM should unregister the RPI
2846 		 * which should abort all outstanding IOs.
2847 		 */
2848 		lpfc_disc_state_machine(vport, ndlp, cmdiocb,
2849 					NLP_EVT_DEVICE_RM);
2850 		skip_recovery = 1;
2851 		goto out;
2852 	}
2853 
2854 	/* The LOGO will not be retried on failure.  A LOGO was
2855 	 * issued to the remote rport and a ACC or RJT or no Answer are
2856 	 * all acceptable.  Note the failure and move forward with
2857 	 * discovery.  The PLOGI will retry.
2858 	 */
2859 	if (irsp->ulpStatus) {
2860 		/* LOGO failed */
2861 		lpfc_printf_vlog(vport, KERN_ERR, LOG_TRACE_EVENT,
2862 				 "2756 LOGO failure, No Retry DID:%06X Status:x%x/x%x\n",
2863 				 ndlp->nlp_DID, irsp->ulpStatus,
2864 				 irsp->un.ulpWord[4]);
2865 		/* Do not call DSM for lpfc_els_abort'ed ELS cmds */
2866 		if (lpfc_error_lost_link(irsp)) {
2867 			skip_recovery = 1;
2868 			goto out;
2869 		}
2870 	}
2871 
2872 	/* Call state machine. This will unregister the rpi if needed. */
2873 	lpfc_disc_state_machine(vport, ndlp, cmdiocb, NLP_EVT_CMPL_LOGO);
2874 
2875 out:
2876 	lpfc_els_free_iocb(phba, cmdiocb);
2877 	/* If we are in pt2pt mode, we could rcv new S_ID on PLOGI */
2878 	if ((vport->fc_flag & FC_PT2PT) &&
2879 		!(vport->fc_flag & FC_PT2PT_PLOGI)) {
2880 		phba->pport->fc_myDID = 0;
2881 
2882 		if ((vport->cfg_enable_fc4_type == LPFC_ENABLE_BOTH) ||
2883 		    (vport->cfg_enable_fc4_type == LPFC_ENABLE_NVME)) {
2884 			if (phba->nvmet_support)
2885 				lpfc_nvmet_update_targetport(phba);
2886 			else
2887 				lpfc_nvme_update_localport(phba->pport);
2888 		}
2889 
2890 		mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
2891 		if (mbox) {
2892 			lpfc_config_link(phba, mbox);
2893 			mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
2894 			mbox->vport = vport;
2895 			if (lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT) ==
2896 				MBX_NOT_FINISHED) {
2897 				mempool_free(mbox, phba->mbox_mem_pool);
2898 				skip_recovery = 1;
2899 			}
2900 		}
2901 	}
2902 
2903 	/*
2904 	 * If the node is a target, the handling attempts to recover the port.
2905 	 * For any other port type, the rpi is unregistered as an implicit
2906 	 * LOGO.
2907 	 */
2908 	if (ndlp->nlp_type & (NLP_FCP_TARGET | NLP_NVME_TARGET) &&
2909 	    skip_recovery == 0) {
2910 		lpfc_cancel_retry_delay_tmo(vport, ndlp);
2911 		spin_lock_irqsave(shost->host_lock, flags);
2912 		ndlp->nlp_flag |= NLP_NPR_2B_DISC;
2913 		spin_unlock_irqrestore(shost->host_lock, flags);
2914 
2915 		lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
2916 				 "3187 LOGO completes to NPort x%x: Start "
2917 				 "Recovery Data: x%x x%x x%x x%x\n",
2918 				 ndlp->nlp_DID, irsp->ulpStatus,
2919 				 irsp->un.ulpWord[4], irsp->ulpTimeout,
2920 				 vport->num_disc_nodes);
2921 		lpfc_disc_start(vport);
2922 	}
2923 	return;
2924 }
2925 
2926 /**
2927  * lpfc_issue_els_logo - Issue a logo to an node on a vport
2928  * @vport: pointer to a virtual N_Port data structure.
2929  * @ndlp: pointer to a node-list data structure.
2930  * @retry: number of retries to the command IOCB.
2931  *
2932  * This routine constructs and issues an ELS Logout (LOGO) iocb command
2933  * to a remote node, referred by an @ndlp on a @vport. It constructs the
2934  * payload of the IOCB, properly sets up the @ndlp state, and invokes the
2935  * lpfc_sli_issue_iocb() routine to send out the LOGO ELS command.
2936  *
2937  * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
2938  * will be incremented by 1 for holding the ndlp and the reference to ndlp
2939  * will be stored into the context1 field of the IOCB for the completion
2940  * callback function to the LOGO ELS command.
2941  *
2942  * Callers of this routine are expected to unregister the RPI first
2943  *
2944  * Return code
2945  *   0 - successfully issued logo
2946  *   1 - failed to issue logo
2947  **/
2948 int
2949 lpfc_issue_els_logo(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2950 		    uint8_t retry)
2951 {
2952 	struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2953 	struct lpfc_hba  *phba = vport->phba;
2954 	struct lpfc_iocbq *elsiocb;
2955 	uint8_t *pcmd;
2956 	uint16_t cmdsize;
2957 	int rc;
2958 
2959 	spin_lock_irq(shost->host_lock);
2960 	if (ndlp->nlp_flag & NLP_LOGO_SND) {
2961 		spin_unlock_irq(shost->host_lock);
2962 		return 0;
2963 	}
2964 	spin_unlock_irq(shost->host_lock);
2965 
2966 	cmdsize = (2 * sizeof(uint32_t)) + sizeof(struct lpfc_name);
2967 	elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
2968 				     ndlp->nlp_DID, ELS_CMD_LOGO);
2969 	if (!elsiocb)
2970 		return 1;
2971 
2972 	pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
2973 	*((uint32_t *) (pcmd)) = ELS_CMD_LOGO;
2974 	pcmd += sizeof(uint32_t);
2975 
2976 	/* Fill in LOGO payload */
2977 	*((uint32_t *) (pcmd)) = be32_to_cpu(vport->fc_myDID);
2978 	pcmd += sizeof(uint32_t);
2979 	memcpy(pcmd, &vport->fc_portname, sizeof(struct lpfc_name));
2980 
2981 	lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2982 		"Issue LOGO:      did:x%x",
2983 		ndlp->nlp_DID, 0, 0);
2984 
2985 	phba->fc_stat.elsXmitLOGO++;
2986 	elsiocb->iocb_cmpl = lpfc_cmpl_els_logo;
2987 	spin_lock_irq(shost->host_lock);
2988 	ndlp->nlp_flag |= NLP_LOGO_SND;
2989 	ndlp->nlp_flag &= ~NLP_ISSUE_LOGO;
2990 	spin_unlock_irq(shost->host_lock);
2991 	rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
2992 	if (rc == IOCB_ERROR) {
2993 		spin_lock_irq(shost->host_lock);
2994 		ndlp->nlp_flag &= ~NLP_LOGO_SND;
2995 		spin_unlock_irq(shost->host_lock);
2996 		lpfc_els_free_iocb(phba, elsiocb);
2997 		return 1;
2998 	}
2999 
3000 	spin_lock_irq(shost->host_lock);
3001 	ndlp->nlp_prev_state = ndlp->nlp_state;
3002 	spin_unlock_irq(shost->host_lock);
3003 	lpfc_nlp_set_state(vport, ndlp, NLP_STE_LOGO_ISSUE);
3004 	return 0;
3005 }
3006 
3007 /**
3008  * lpfc_cmpl_els_cmd - Completion callback function for generic els command
3009  * @phba: pointer to lpfc hba data structure.
3010  * @cmdiocb: pointer to lpfc command iocb data structure.
3011  * @rspiocb: pointer to lpfc response iocb data structure.
3012  *
3013  * This routine is a generic completion callback function for ELS commands.
3014  * Specifically, it is the callback function which does not need to perform
3015  * any command specific operations. It is currently used by the ELS command
3016  * issuing routines for RSCN, lpfc_issue_els_rscn, and the ELS Fibre Channel
3017  * Address Resolution Protocol Response (FARPR) routine, lpfc_issue_els_farpr().
3018  * Other than certain debug loggings, this callback function simply invokes the
3019  * lpfc_els_chk_latt() routine to check whether link went down during the
3020  * discovery process.
3021  **/
3022 static void
3023 lpfc_cmpl_els_cmd(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
3024 		  struct lpfc_iocbq *rspiocb)
3025 {
3026 	struct lpfc_vport *vport = cmdiocb->vport;
3027 	IOCB_t *irsp;
3028 
3029 	irsp = &rspiocb->iocb;
3030 
3031 	lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
3032 			      "ELS cmd cmpl:    status:x%x/x%x did:x%x",
3033 			      irsp->ulpStatus, irsp->un.ulpWord[4],
3034 			      irsp->un.elsreq64.remoteID);
3035 
3036 	/* ELS cmd tag <ulpIoTag> completes */
3037 	lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
3038 			 "0106 ELS cmd tag x%x completes Data: x%x x%x x%x\n",
3039 			 irsp->ulpIoTag, irsp->ulpStatus,
3040 			 irsp->un.ulpWord[4], irsp->ulpTimeout);
3041 
3042 	/* Check to see if link went down during discovery */
3043 	lpfc_els_chk_latt(vport);
3044 	lpfc_els_free_iocb(phba, cmdiocb);
3045 }
3046 
3047 /**
3048  * lpfc_cmpl_els_disc_cmd - Completion callback function for Discovery ELS cmd
3049  * @phba: pointer to lpfc hba data structure.
3050  * @cmdiocb: pointer to lpfc command iocb data structure.
3051  * @rspiocb: pointer to lpfc response iocb data structure.
3052  *
3053  * This routine is a generic completion callback function for Discovery ELS cmd.
3054  * Currently used by the ELS command issuing routines for the ELS State Change
3055  * Request (SCR), lpfc_issue_els_scr() and the ELS RDF, lpfc_issue_els_rdf().
3056  * These commands will be retried once only for ELS timeout errors.
3057  **/
3058 static void
3059 lpfc_cmpl_els_disc_cmd(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
3060 		       struct lpfc_iocbq *rspiocb)
3061 {
3062 	struct lpfc_vport *vport = cmdiocb->vport;
3063 	IOCB_t *irsp;
3064 	struct lpfc_els_rdf_rsp *prdf;
3065 	struct lpfc_dmabuf *pcmd, *prsp;
3066 	u32 *pdata;
3067 	u32 cmd;
3068 
3069 	irsp = &rspiocb->iocb;
3070 
3071 	lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
3072 		"ELS cmd cmpl:    status:x%x/x%x did:x%x",
3073 		irsp->ulpStatus, irsp->un.ulpWord[4],
3074 		irsp->un.elsreq64.remoteID);
3075 	/* ELS cmd tag <ulpIoTag> completes */
3076 	lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
3077 			 "0217 ELS cmd tag x%x completes Data: x%x x%x x%x "
3078 			 "x%x\n",
3079 			 irsp->ulpIoTag, irsp->ulpStatus,
3080 			 irsp->un.ulpWord[4], irsp->ulpTimeout,
3081 			 cmdiocb->retry);
3082 
3083 	pcmd = (struct lpfc_dmabuf *)cmdiocb->context2;
3084 	if (!pcmd)
3085 		goto out;
3086 
3087 	pdata = (u32 *)pcmd->virt;
3088 	if (!pdata)
3089 		goto out;
3090 	cmd = *pdata;
3091 
3092 	/* Only 1 retry for ELS Timeout only */
3093 	if (irsp->ulpStatus == IOSTAT_LOCAL_REJECT &&
3094 	    ((irsp->un.ulpWord[4] & IOERR_PARAM_MASK) ==
3095 	    IOERR_SEQUENCE_TIMEOUT)) {
3096 		cmdiocb->retry++;
3097 		if (cmdiocb->retry <= 1) {
3098 			switch (cmd) {
3099 			case ELS_CMD_SCR:
3100 				lpfc_issue_els_scr(vport, cmdiocb->retry);
3101 				break;
3102 			case ELS_CMD_RDF:
3103 				cmdiocb->context1 = NULL; /* save ndlp refcnt */
3104 				lpfc_issue_els_rdf(vport, cmdiocb->retry);
3105 				break;
3106 			}
3107 			goto out;
3108 		}
3109 		phba->fc_stat.elsRetryExceeded++;
3110 	}
3111 	if (irsp->ulpStatus) {
3112 		/* ELS discovery cmd completes with error */
3113 		lpfc_printf_vlog(vport, KERN_WARNING, LOG_ELS,
3114 				 "4203 ELS cmd x%x error: x%x x%X\n", cmd,
3115 				 irsp->ulpStatus, irsp->un.ulpWord[4]);
3116 		goto out;
3117 	}
3118 
3119 	/* The RDF response doesn't have any impact on the running driver
3120 	 * but the notification descriptors are dumped here for support.
3121 	 */
3122 	if (cmd == ELS_CMD_RDF) {
3123 		int i;
3124 
3125 		prsp = list_get_first(&pcmd->list, struct lpfc_dmabuf, list);
3126 		if (!prsp)
3127 			goto out;
3128 
3129 		prdf = (struct lpfc_els_rdf_rsp *)prsp->virt;
3130 		if (!prdf)
3131 			goto out;
3132 
3133 		for (i = 0; i < ELS_RDF_REG_TAG_CNT &&
3134 			    i < be32_to_cpu(prdf->reg_d1.reg_desc.count); i++)
3135 			lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
3136 				 "4677 Fabric RDF Notification Grant Data: "
3137 				 "0x%08x\n",
3138 				 be32_to_cpu(
3139 					prdf->reg_d1.desc_tags[i]));
3140 	}
3141 
3142 out:
3143 	/* Check to see if link went down during discovery */
3144 	lpfc_els_chk_latt(vport);
3145 	lpfc_els_free_iocb(phba, cmdiocb);
3146 	return;
3147 }
3148 
3149 /**
3150  * lpfc_issue_els_scr - Issue a scr to an node on a vport
3151  * @vport: pointer to a host virtual N_Port data structure.
3152  * @retry: retry counter for the command IOCB.
3153  *
3154  * This routine issues a State Change Request (SCR) to a fabric node
3155  * on a @vport. The remote node is Fabric Controller (0xfffffd). It
3156  * first search the @vport node list to find the matching ndlp. If no such
3157  * ndlp is found, a new ndlp shall be created for this (SCR) purpose. An
3158  * IOCB is allocated, payload prepared, and the lpfc_sli_issue_iocb()
3159  * routine is invoked to send the SCR IOCB.
3160  *
3161  * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
3162  * will be incremented by 1 for holding the ndlp and the reference to ndlp
3163  * will be stored into the context1 field of the IOCB for the completion
3164  * callback function to the SCR ELS command.
3165  *
3166  * Return code
3167  *   0 - Successfully issued scr command
3168  *   1 - Failed to issue scr command
3169  **/
3170 int
3171 lpfc_issue_els_scr(struct lpfc_vport *vport, uint8_t retry)
3172 {
3173 	struct lpfc_hba  *phba = vport->phba;
3174 	struct lpfc_iocbq *elsiocb;
3175 	uint8_t *pcmd;
3176 	uint16_t cmdsize;
3177 	struct lpfc_nodelist *ndlp;
3178 
3179 	cmdsize = (sizeof(uint32_t) + sizeof(SCR));
3180 
3181 	ndlp = lpfc_findnode_did(vport, Fabric_Cntl_DID);
3182 	if (!ndlp) {
3183 		ndlp = lpfc_nlp_init(vport, Fabric_Cntl_DID);
3184 		if (!ndlp)
3185 			return 1;
3186 		lpfc_enqueue_node(vport, ndlp);
3187 	} else if (!NLP_CHK_NODE_ACT(ndlp)) {
3188 		ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
3189 		if (!ndlp)
3190 			return 1;
3191 	}
3192 
3193 	elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
3194 				     ndlp->nlp_DID, ELS_CMD_SCR);
3195 
3196 	if (!elsiocb) {
3197 		/* This will trigger the release of the node just
3198 		 * allocated
3199 		 */
3200 		lpfc_nlp_put(ndlp);
3201 		return 1;
3202 	}
3203 
3204 	pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
3205 
3206 	*((uint32_t *) (pcmd)) = ELS_CMD_SCR;
3207 	pcmd += sizeof(uint32_t);
3208 
3209 	/* For SCR, remainder of payload is SCR parameter page */
3210 	memset(pcmd, 0, sizeof(SCR));
3211 	((SCR *) pcmd)->Function = SCR_FUNC_FULL;
3212 
3213 	lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
3214 		"Issue SCR:       did:x%x",
3215 		ndlp->nlp_DID, 0, 0);
3216 
3217 	phba->fc_stat.elsXmitSCR++;
3218 	elsiocb->iocb_cmpl = lpfc_cmpl_els_disc_cmd;
3219 	if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) ==
3220 	    IOCB_ERROR) {
3221 		/* The additional lpfc_nlp_put will cause the following
3222 		 * lpfc_els_free_iocb routine to trigger the rlease of
3223 		 * the node.
3224 		 */
3225 		lpfc_nlp_put(ndlp);
3226 		lpfc_els_free_iocb(phba, elsiocb);
3227 		return 1;
3228 	}
3229 	/* This will cause the callback-function lpfc_cmpl_els_cmd to
3230 	 * trigger the release of node.
3231 	 */
3232 	if (!(vport->fc_flag & FC_PT2PT))
3233 		lpfc_nlp_put(ndlp);
3234 	return 0;
3235 }
3236 
3237 /**
3238  * lpfc_issue_els_rscn - Issue an RSCN to the Fabric Controller (Fabric)
3239  *   or the other nport (pt2pt).
3240  * @vport: pointer to a host virtual N_Port data structure.
3241  * @retry: number of retries to the command IOCB.
3242  *
3243  * This routine issues a RSCN to the Fabric Controller (DID 0xFFFFFD)
3244  *  when connected to a fabric, or to the remote port when connected
3245  *  in point-to-point mode. When sent to the Fabric Controller, it will
3246  *  replay the RSCN to registered recipients.
3247  *
3248  * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
3249  * will be incremented by 1 for holding the ndlp and the reference to ndlp
3250  * will be stored into the context1 field of the IOCB for the completion
3251  * callback function to the RSCN ELS command.
3252  *
3253  * Return code
3254  *   0 - Successfully issued RSCN command
3255  *   1 - Failed to issue RSCN command
3256  **/
3257 int
3258 lpfc_issue_els_rscn(struct lpfc_vport *vport, uint8_t retry)
3259 {
3260 	struct lpfc_hba *phba = vport->phba;
3261 	struct lpfc_iocbq *elsiocb;
3262 	struct lpfc_nodelist *ndlp;
3263 	struct {
3264 		struct fc_els_rscn rscn;
3265 		struct fc_els_rscn_page portid;
3266 	} *event;
3267 	uint32_t nportid;
3268 	uint16_t cmdsize = sizeof(*event);
3269 
3270 	/* Not supported for private loop */
3271 	if (phba->fc_topology == LPFC_TOPOLOGY_LOOP &&
3272 	    !(vport->fc_flag & FC_PUBLIC_LOOP))
3273 		return 1;
3274 
3275 	if (vport->fc_flag & FC_PT2PT) {
3276 		/* find any mapped nport - that would be the other nport */
3277 		ndlp = lpfc_findnode_mapped(vport);
3278 		if (!ndlp)
3279 			return 1;
3280 	} else {
3281 		nportid = FC_FID_FCTRL;
3282 		/* find the fabric controller node */
3283 		ndlp = lpfc_findnode_did(vport, nportid);
3284 		if (!ndlp) {
3285 			/* if one didn't exist, make one */
3286 			ndlp = lpfc_nlp_init(vport, nportid);
3287 			if (!ndlp)
3288 				return 1;
3289 			lpfc_enqueue_node(vport, ndlp);
3290 		} else if (!NLP_CHK_NODE_ACT(ndlp)) {
3291 			ndlp = lpfc_enable_node(vport, ndlp,
3292 						NLP_STE_UNUSED_NODE);
3293 			if (!ndlp)
3294 				return 1;
3295 		}
3296 	}
3297 
3298 	elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
3299 				     ndlp->nlp_DID, ELS_CMD_RSCN_XMT);
3300 
3301 	if (!elsiocb) {
3302 		/* This will trigger the release of the node just
3303 		 * allocated
3304 		 */
3305 		lpfc_nlp_put(ndlp);
3306 		return 1;
3307 	}
3308 
3309 	event = ((struct lpfc_dmabuf *)elsiocb->context2)->virt;
3310 
3311 	event->rscn.rscn_cmd = ELS_RSCN;
3312 	event->rscn.rscn_page_len = sizeof(struct fc_els_rscn_page);
3313 	event->rscn.rscn_plen = cpu_to_be16(cmdsize);
3314 
3315 	nportid = vport->fc_myDID;
3316 	/* appears that page flags must be 0 for fabric to broadcast RSCN */
3317 	event->portid.rscn_page_flags = 0;
3318 	event->portid.rscn_fid[0] = (nportid & 0x00FF0000) >> 16;
3319 	event->portid.rscn_fid[1] = (nportid & 0x0000FF00) >> 8;
3320 	event->portid.rscn_fid[2] = nportid & 0x000000FF;
3321 
3322 	lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
3323 			      "Issue RSCN:       did:x%x",
3324 			      ndlp->nlp_DID, 0, 0);
3325 
3326 	phba->fc_stat.elsXmitRSCN++;
3327 	elsiocb->iocb_cmpl = lpfc_cmpl_els_cmd;
3328 	if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) ==
3329 	    IOCB_ERROR) {
3330 		/* The additional lpfc_nlp_put will cause the following
3331 		 * lpfc_els_free_iocb routine to trigger the rlease of
3332 		 * the node.
3333 		 */
3334 		lpfc_nlp_put(ndlp);
3335 		lpfc_els_free_iocb(phba, elsiocb);
3336 		return 1;
3337 	}
3338 	/* This will cause the callback-function lpfc_cmpl_els_cmd to
3339 	 * trigger the release of node.
3340 	 */
3341 	if (!(vport->fc_flag & FC_PT2PT))
3342 		lpfc_nlp_put(ndlp);
3343 
3344 	return 0;
3345 }
3346 
3347 /**
3348  * lpfc_issue_els_farpr - Issue a farp to an node on a vport
3349  * @vport: pointer to a host virtual N_Port data structure.
3350  * @nportid: N_Port identifier to the remote node.
3351  * @retry: number of retries to the command IOCB.
3352  *
3353  * This routine issues a Fibre Channel Address Resolution Response
3354  * (FARPR) to a node on a vport. The remote node N_Port identifier (@nportid)
3355  * is passed into the function. It first search the @vport node list to find
3356  * the matching ndlp. If no such ndlp is found, a new ndlp shall be created
3357  * for this (FARPR) purpose. An IOCB is allocated, payload prepared, and the
3358  * lpfc_sli_issue_iocb() routine is invoked to send the FARPR ELS command.
3359  *
3360  * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
3361  * will be incremented by 1 for holding the ndlp and the reference to ndlp
3362  * will be stored into the context1 field of the IOCB for the completion
3363  * callback function to the PARPR ELS command.
3364  *
3365  * Return code
3366  *   0 - Successfully issued farpr command
3367  *   1 - Failed to issue farpr command
3368  **/
3369 static int
3370 lpfc_issue_els_farpr(struct lpfc_vport *vport, uint32_t nportid, uint8_t retry)
3371 {
3372 	struct lpfc_hba  *phba = vport->phba;
3373 	struct lpfc_iocbq *elsiocb;
3374 	FARP *fp;
3375 	uint8_t *pcmd;
3376 	uint32_t *lp;
3377 	uint16_t cmdsize;
3378 	struct lpfc_nodelist *ondlp;
3379 	struct lpfc_nodelist *ndlp;
3380 
3381 	cmdsize = (sizeof(uint32_t) + sizeof(FARP));
3382 
3383 	ndlp = lpfc_findnode_did(vport, nportid);
3384 	if (!ndlp) {
3385 		ndlp = lpfc_nlp_init(vport, nportid);
3386 		if (!ndlp)
3387 			return 1;
3388 		lpfc_enqueue_node(vport, ndlp);
3389 	} else if (!NLP_CHK_NODE_ACT(ndlp)) {
3390 		ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
3391 		if (!ndlp)
3392 			return 1;
3393 	}
3394 
3395 	elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
3396 				     ndlp->nlp_DID, ELS_CMD_RNID);
3397 	if (!elsiocb) {
3398 		/* This will trigger the release of the node just
3399 		 * allocated
3400 		 */
3401 		lpfc_nlp_put(ndlp);
3402 		return 1;
3403 	}
3404 
3405 	pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
3406 
3407 	*((uint32_t *) (pcmd)) = ELS_CMD_FARPR;
3408 	pcmd += sizeof(uint32_t);
3409 
3410 	/* Fill in FARPR payload */
3411 	fp = (FARP *) (pcmd);
3412 	memset(fp, 0, sizeof(FARP));
3413 	lp = (uint32_t *) pcmd;
3414 	*lp++ = be32_to_cpu(nportid);
3415 	*lp++ = be32_to_cpu(vport->fc_myDID);
3416 	fp->Rflags = 0;
3417 	fp->Mflags = (FARP_MATCH_PORT | FARP_MATCH_NODE);
3418 
3419 	memcpy(&fp->RportName, &vport->fc_portname, sizeof(struct lpfc_name));
3420 	memcpy(&fp->RnodeName, &vport->fc_nodename, sizeof(struct lpfc_name));
3421 	ondlp = lpfc_findnode_did(vport, nportid);
3422 	if (ondlp && NLP_CHK_NODE_ACT(ondlp)) {
3423 		memcpy(&fp->OportName, &ondlp->nlp_portname,
3424 		       sizeof(struct lpfc_name));
3425 		memcpy(&fp->OnodeName, &ondlp->nlp_nodename,
3426 		       sizeof(struct lpfc_name));
3427 	}
3428 
3429 	lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
3430 		"Issue FARPR:     did:x%x",
3431 		ndlp->nlp_DID, 0, 0);
3432 
3433 	phba->fc_stat.elsXmitFARPR++;
3434 	elsiocb->iocb_cmpl = lpfc_cmpl_els_cmd;
3435 	if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) ==
3436 	    IOCB_ERROR) {
3437 		/* The additional lpfc_nlp_put will cause the following
3438 		 * lpfc_els_free_iocb routine to trigger the release of
3439 		 * the node.
3440 		 */
3441 		lpfc_nlp_put(ndlp);
3442 		lpfc_els_free_iocb(phba, elsiocb);
3443 		return 1;
3444 	}
3445 	/* This will cause the callback-function lpfc_cmpl_els_cmd to
3446 	 * trigger the release of the node.
3447 	 */
3448 	/* Don't release reference count as RDF is likely outstanding */
3449 	return 0;
3450 }
3451 
3452 /**
3453  * lpfc_issue_els_rdf - Register for diagnostic functions from the fabric.
3454  * @vport: pointer to a host virtual N_Port data structure.
3455  * @retry: retry counter for the command IOCB.
3456  *
3457  * This routine issues an ELS RDF to the Fabric Controller to register
3458  * for diagnostic functions.
3459  *
3460  * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
3461  * will be incremented by 1 for holding the ndlp and the reference to ndlp
3462  * will be stored into the context1 field of the IOCB for the completion
3463  * callback function to the RDF ELS command.
3464  *
3465  * Return code
3466  *   0 - Successfully issued rdf command
3467  *   1 - Failed to issue rdf command
3468  **/
3469 int
3470 lpfc_issue_els_rdf(struct lpfc_vport *vport, uint8_t retry)
3471 {
3472 	struct lpfc_hba *phba = vport->phba;
3473 	struct lpfc_iocbq *elsiocb;
3474 	struct lpfc_els_rdf_req *prdf;
3475 	struct lpfc_nodelist *ndlp;
3476 	uint16_t cmdsize;
3477 
3478 	cmdsize = sizeof(*prdf);
3479 
3480 	ndlp = lpfc_findnode_did(vport, Fabric_Cntl_DID);
3481 	if (!ndlp) {
3482 		ndlp = lpfc_nlp_init(vport, Fabric_Cntl_DID);
3483 		if (!ndlp)
3484 			return -ENODEV;
3485 		lpfc_enqueue_node(vport, ndlp);
3486 	} else if (!NLP_CHK_NODE_ACT(ndlp)) {
3487 		ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
3488 		if (!ndlp)
3489 			return -ENODEV;
3490 	}
3491 
3492 	/* RDF ELS is not required on an NPIV VN_Port.  */
3493 	if (vport->port_type == LPFC_NPIV_PORT) {
3494 		lpfc_nlp_put(ndlp);
3495 		return -EACCES;
3496 	}
3497 
3498 	elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
3499 				     ndlp->nlp_DID, ELS_CMD_RDF);
3500 	if (!elsiocb) {
3501 		/* This will trigger the release of the node just
3502 		 * allocated
3503 		 */
3504 		lpfc_nlp_put(ndlp);
3505 		return -ENOMEM;
3506 	}
3507 
3508 	/* Configure the payload for the supported FPIN events. */
3509 	prdf = (struct lpfc_els_rdf_req *)
3510 		(((struct lpfc_dmabuf *)elsiocb->context2)->virt);
3511 	memset(prdf, 0, cmdsize);
3512 	prdf->rdf.fpin_cmd = ELS_RDF;
3513 	prdf->rdf.desc_len = cpu_to_be32(sizeof(struct lpfc_els_rdf_req) -
3514 					 sizeof(struct fc_els_rdf));
3515 	prdf->reg_d1.reg_desc.desc_tag = cpu_to_be32(ELS_DTAG_FPIN_REGISTER);
3516 	prdf->reg_d1.reg_desc.desc_len = cpu_to_be32(
3517 				FC_TLV_DESC_LENGTH_FROM_SZ(prdf->reg_d1));
3518 	prdf->reg_d1.reg_desc.count = cpu_to_be32(ELS_RDF_REG_TAG_CNT);
3519 	prdf->reg_d1.desc_tags[0] = cpu_to_be32(ELS_DTAG_LNK_INTEGRITY);
3520 
3521 	lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
3522 			      "Issue RDF:       did:x%x",
3523 			      ndlp->nlp_DID, 0, 0);
3524 
3525 	lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
3526 			 "6444 Xmit RDF to remote NPORT x%x\n",
3527 			 ndlp->nlp_DID);
3528 
3529 	elsiocb->iocb_cmpl = lpfc_cmpl_els_disc_cmd;
3530 	if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) ==
3531 	    IOCB_ERROR) {
3532 		/* The additional lpfc_nlp_put will cause the following
3533 		 * lpfc_els_free_iocb routine to trigger the rlease of
3534 		 * the node.
3535 		 */
3536 		lpfc_nlp_put(ndlp);
3537 		lpfc_els_free_iocb(phba, elsiocb);
3538 		return -EIO;
3539 	}
3540 
3541 	/* An RDF was issued - this put ensures the ndlp is cleaned up
3542 	 * when the RDF completes.
3543 	 */
3544 	lpfc_nlp_put(ndlp);
3545 	return 0;
3546 }
3547 
3548 /**
3549  * lpfc_cancel_retry_delay_tmo - Cancel the timer with delayed iocb-cmd retry
3550  * @vport: pointer to a host virtual N_Port data structure.
3551  * @nlp: pointer to a node-list data structure.
3552  *
3553  * This routine cancels the timer with a delayed IOCB-command retry for
3554  * a @vport's @ndlp. It stops the timer for the delayed function retrial and
3555  * removes the ELS retry event if it presents. In addition, if the
3556  * NLP_NPR_2B_DISC bit is set in the @nlp's nlp_flag bitmap, ADISC IOCB
3557  * commands are sent for the @vport's nodes that require issuing discovery
3558  * ADISC.
3559  **/
3560 void
3561 lpfc_cancel_retry_delay_tmo(struct lpfc_vport *vport, struct lpfc_nodelist *nlp)
3562 {
3563 	struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
3564 	struct lpfc_work_evt *evtp;
3565 
3566 	if (!(nlp->nlp_flag & NLP_DELAY_TMO))
3567 		return;
3568 	spin_lock_irq(shost->host_lock);
3569 	nlp->nlp_flag &= ~NLP_DELAY_TMO;
3570 	spin_unlock_irq(shost->host_lock);
3571 	del_timer_sync(&nlp->nlp_delayfunc);
3572 	nlp->nlp_last_elscmd = 0;
3573 	if (!list_empty(&nlp->els_retry_evt.evt_listp)) {
3574 		list_del_init(&nlp->els_retry_evt.evt_listp);
3575 		/* Decrement nlp reference count held for the delayed retry */
3576 		evtp = &nlp->els_retry_evt;
3577 		lpfc_nlp_put((struct lpfc_nodelist *)evtp->evt_arg1);
3578 	}
3579 	if (nlp->nlp_flag & NLP_NPR_2B_DISC) {
3580 		spin_lock_irq(shost->host_lock);
3581 		nlp->nlp_flag &= ~NLP_NPR_2B_DISC;
3582 		spin_unlock_irq(shost->host_lock);
3583 		if (vport->num_disc_nodes) {
3584 			if (vport->port_state < LPFC_VPORT_READY) {
3585 				/* Check if there are more ADISCs to be sent */
3586 				lpfc_more_adisc(vport);
3587 			} else {
3588 				/* Check if there are more PLOGIs to be sent */
3589 				lpfc_more_plogi(vport);
3590 				if (vport->num_disc_nodes == 0) {
3591 					spin_lock_irq(shost->host_lock);
3592 					vport->fc_flag &= ~FC_NDISC_ACTIVE;
3593 					spin_unlock_irq(shost->host_lock);
3594 					lpfc_can_disctmo(vport);
3595 					lpfc_end_rscn(vport);
3596 				}
3597 			}
3598 		}
3599 	}
3600 	return;
3601 }
3602 
3603 /**
3604  * lpfc_els_retry_delay - Timer function with a ndlp delayed function timer
3605  * @t: pointer to the timer function associated data (ndlp).
3606  *
3607  * This routine is invoked by the ndlp delayed-function timer to check
3608  * whether there is any pending ELS retry event(s) with the node. If not, it
3609  * simply returns. Otherwise, if there is at least one ELS delayed event, it
3610  * adds the delayed events to the HBA work list and invokes the
3611  * lpfc_worker_wake_up() routine to wake up worker thread to process the
3612  * event. Note that lpfc_nlp_get() is called before posting the event to
3613  * the work list to hold reference count of ndlp so that it guarantees the
3614  * reference to ndlp will still be available when the worker thread gets
3615  * to the event associated with the ndlp.
3616  **/
3617 void
3618 lpfc_els_retry_delay(struct timer_list *t)
3619 {
3620 	struct lpfc_nodelist *ndlp = from_timer(ndlp, t, nlp_delayfunc);
3621 	struct lpfc_vport *vport = ndlp->vport;
3622 	struct lpfc_hba   *phba = vport->phba;
3623 	unsigned long flags;
3624 	struct lpfc_work_evt  *evtp = &ndlp->els_retry_evt;
3625 
3626 	spin_lock_irqsave(&phba->hbalock, flags);
3627 	if (!list_empty(&evtp->evt_listp)) {
3628 		spin_unlock_irqrestore(&phba->hbalock, flags);
3629 		return;
3630 	}
3631 
3632 	/* We need to hold the node by incrementing the reference
3633 	 * count until the queued work is done
3634 	 */
3635 	evtp->evt_arg1  = lpfc_nlp_get(ndlp);
3636 	if (evtp->evt_arg1) {
3637 		evtp->evt = LPFC_EVT_ELS_RETRY;
3638 		list_add_tail(&evtp->evt_listp, &phba->work_list);
3639 		lpfc_worker_wake_up(phba);
3640 	}
3641 	spin_unlock_irqrestore(&phba->hbalock, flags);
3642 	return;
3643 }
3644 
3645 /**
3646  * lpfc_els_retry_delay_handler - Work thread handler for ndlp delayed function
3647  * @ndlp: pointer to a node-list data structure.
3648  *
3649  * This routine is the worker-thread handler for processing the @ndlp delayed
3650  * event(s), posted by the lpfc_els_retry_delay() routine. It simply retrieves
3651  * the last ELS command from the associated ndlp and invokes the proper ELS
3652  * function according to the delayed ELS command to retry the command.
3653  **/
3654 void
3655 lpfc_els_retry_delay_handler(struct lpfc_nodelist *ndlp)
3656 {
3657 	struct lpfc_vport *vport = ndlp->vport;
3658 	struct Scsi_Host  *shost = lpfc_shost_from_vport(vport);
3659 	uint32_t cmd, retry;
3660 
3661 	spin_lock_irq(shost->host_lock);
3662 	cmd = ndlp->nlp_last_elscmd;
3663 	ndlp->nlp_last_elscmd = 0;
3664 
3665 	if (!(ndlp->nlp_flag & NLP_DELAY_TMO)) {
3666 		spin_unlock_irq(shost->host_lock);
3667 		return;
3668 	}
3669 
3670 	ndlp->nlp_flag &= ~NLP_DELAY_TMO;
3671 	spin_unlock_irq(shost->host_lock);
3672 	/*
3673 	 * If a discovery event readded nlp_delayfunc after timer
3674 	 * firing and before processing the timer, cancel the
3675 	 * nlp_delayfunc.
3676 	 */
3677 	del_timer_sync(&ndlp->nlp_delayfunc);
3678 	retry = ndlp->nlp_retry;
3679 	ndlp->nlp_retry = 0;
3680 
3681 	switch (cmd) {
3682 	case ELS_CMD_FLOGI:
3683 		lpfc_issue_els_flogi(vport, ndlp, retry);
3684 		break;
3685 	case ELS_CMD_PLOGI:
3686 		if (!lpfc_issue_els_plogi(vport, ndlp->nlp_DID, retry)) {
3687 			ndlp->nlp_prev_state = ndlp->nlp_state;
3688 			lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
3689 		}
3690 		break;
3691 	case ELS_CMD_ADISC:
3692 		if (!lpfc_issue_els_adisc(vport, ndlp, retry)) {
3693 			ndlp->nlp_prev_state = ndlp->nlp_state;
3694 			lpfc_nlp_set_state(vport, ndlp, NLP_STE_ADISC_ISSUE);
3695 		}
3696 		break;
3697 	case ELS_CMD_PRLI:
3698 	case ELS_CMD_NVMEPRLI:
3699 		if (!lpfc_issue_els_prli(vport, ndlp, retry)) {
3700 			ndlp->nlp_prev_state = ndlp->nlp_state;
3701 			lpfc_nlp_set_state(vport, ndlp, NLP_STE_PRLI_ISSUE);
3702 		}
3703 		break;
3704 	case ELS_CMD_LOGO:
3705 		if (!lpfc_issue_els_logo(vport, ndlp, retry)) {
3706 			ndlp->nlp_prev_state = ndlp->nlp_state;
3707 			lpfc_nlp_set_state(vport, ndlp, NLP_STE_LOGO_ISSUE);
3708 		}
3709 		break;
3710 	case ELS_CMD_FDISC:
3711 		if (!(vport->fc_flag & FC_VPORT_NEEDS_INIT_VPI))
3712 			lpfc_issue_els_fdisc(vport, ndlp, retry);
3713 		break;
3714 	}
3715 	return;
3716 }
3717 
3718 /**
3719  * lpfc_link_reset - Issue link reset
3720  * @vport: pointer to a virtual N_Port data structure.
3721  *
3722  * This routine performs link reset by sending INIT_LINK mailbox command.
3723  * For SLI-3 adapter, link attention interrupt is enabled before issuing
3724  * INIT_LINK mailbox command.
3725  *
3726  * Return code
3727  *   0 - Link reset initiated successfully
3728  *   1 - Failed to initiate link reset
3729  **/
3730 int
3731 lpfc_link_reset(struct lpfc_vport *vport)
3732 {
3733 	struct lpfc_hba *phba = vport->phba;
3734 	LPFC_MBOXQ_t *mbox;
3735 	uint32_t control;
3736 	int rc;
3737 
3738 	lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
3739 			 "2851 Attempt link reset\n");
3740 	mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
3741 	if (!mbox) {
3742 		lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
3743 				"2852 Failed to allocate mbox memory");
3744 		return 1;
3745 	}
3746 
3747 	/* Enable Link attention interrupts */
3748 	if (phba->sli_rev <= LPFC_SLI_REV3) {
3749 		spin_lock_irq(&phba->hbalock);
3750 		phba->sli.sli_flag |= LPFC_PROCESS_LA;
3751 		control = readl(phba->HCregaddr);
3752 		control |= HC_LAINT_ENA;
3753 		writel(control, phba->HCregaddr);
3754 		readl(phba->HCregaddr); /* flush */
3755 		spin_unlock_irq(&phba->hbalock);
3756 	}
3757 
3758 	lpfc_init_link(phba, mbox, phba->cfg_topology,
3759 		       phba->cfg_link_speed);
3760 	mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
3761 	mbox->vport = vport;
3762 	rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
3763 	if ((rc != MBX_BUSY) && (rc != MBX_SUCCESS)) {
3764 		lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
3765 				"2853 Failed to issue INIT_LINK "
3766 				"mbox command, rc:x%x\n", rc);
3767 		mempool_free(mbox, phba->mbox_mem_pool);
3768 		return 1;
3769 	}
3770 
3771 	return 0;
3772 }
3773 
3774 /**
3775  * lpfc_els_retry - Make retry decision on an els command iocb
3776  * @phba: pointer to lpfc hba data structure.
3777  * @cmdiocb: pointer to lpfc command iocb data structure.
3778  * @rspiocb: pointer to lpfc response iocb data structure.
3779  *
3780  * This routine makes a retry decision on an ELS command IOCB, which has
3781  * failed. The following ELS IOCBs use this function for retrying the command
3782  * when previously issued command responsed with error status: FLOGI, PLOGI,
3783  * PRLI, ADISC, LOGO, and FDISC. Based on the ELS command type and the
3784  * returned error status, it makes the decision whether a retry shall be
3785  * issued for the command, and whether a retry shall be made immediately or
3786  * delayed. In the former case, the corresponding ELS command issuing-function
3787  * is called to retry the command. In the later case, the ELS command shall
3788  * be posted to the ndlp delayed event and delayed function timer set to the
3789  * ndlp for the delayed command issusing.
3790  *
3791  * Return code
3792  *   0 - No retry of els command is made
3793  *   1 - Immediate or delayed retry of els command is made
3794  **/
3795 static int
3796 lpfc_els_retry(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
3797 	       struct lpfc_iocbq *rspiocb)
3798 {
3799 	struct lpfc_vport *vport = cmdiocb->vport;
3800 	struct Scsi_Host  *shost = lpfc_shost_from_vport(vport);
3801 	IOCB_t *irsp = &rspiocb->iocb;
3802 	struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
3803 	struct lpfc_dmabuf *pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
3804 	uint32_t *elscmd;
3805 	struct ls_rjt stat;
3806 	int retry = 0, maxretry = lpfc_max_els_tries, delay = 0;
3807 	int logerr = 0;
3808 	uint32_t cmd = 0;
3809 	uint32_t did;
3810 	int link_reset = 0, rc;
3811 
3812 
3813 	/* Note: context2 may be 0 for internal driver abort
3814 	 * of delays ELS command.
3815 	 */
3816 
3817 	if (pcmd && pcmd->virt) {
3818 		elscmd = (uint32_t *) (pcmd->virt);
3819 		cmd = *elscmd++;
3820 	}
3821 
3822 	if (ndlp && NLP_CHK_NODE_ACT(ndlp))
3823 		did = ndlp->nlp_DID;
3824 	else {
3825 		/* We should only hit this case for retrying PLOGI */
3826 		did = irsp->un.elsreq64.remoteID;
3827 		ndlp = lpfc_findnode_did(vport, did);
3828 		if ((!ndlp || !NLP_CHK_NODE_ACT(ndlp))
3829 		    && (cmd != ELS_CMD_PLOGI))
3830 			return 1;
3831 	}
3832 
3833 	lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
3834 		"Retry ELS:       wd7:x%x wd4:x%x did:x%x",
3835 		*(((uint32_t *) irsp) + 7), irsp->un.ulpWord[4], ndlp->nlp_DID);
3836 
3837 	switch (irsp->ulpStatus) {
3838 	case IOSTAT_FCP_RSP_ERROR:
3839 		break;
3840 	case IOSTAT_REMOTE_STOP:
3841 		if (phba->sli_rev == LPFC_SLI_REV4) {
3842 			/* This IO was aborted by the target, we don't
3843 			 * know the rxid and because we did not send the
3844 			 * ABTS we cannot generate and RRQ.
3845 			 */
3846 			lpfc_set_rrq_active(phba, ndlp,
3847 					 cmdiocb->sli4_lxritag, 0, 0);
3848 		}
3849 		break;
3850 	case IOSTAT_LOCAL_REJECT:
3851 		switch ((irsp->un.ulpWord[4] & IOERR_PARAM_MASK)) {
3852 		case IOERR_LOOP_OPEN_FAILURE:
3853 			if (cmd == ELS_CMD_FLOGI) {
3854 				if (PCI_DEVICE_ID_HORNET ==
3855 					phba->pcidev->device) {
3856 					phba->fc_topology = LPFC_TOPOLOGY_LOOP;
3857 					phba->pport->fc_myDID = 0;
3858 					phba->alpa_map[0] = 0;
3859 					phba->alpa_map[1] = 0;
3860 				}
3861 			}
3862 			if (cmd == ELS_CMD_PLOGI && cmdiocb->retry == 0)
3863 				delay = 1000;
3864 			retry = 1;
3865 			break;
3866 
3867 		case IOERR_ILLEGAL_COMMAND:
3868 			lpfc_printf_vlog(vport, KERN_ERR, LOG_TRACE_EVENT,
3869 					 "0124 Retry illegal cmd x%x "
3870 					 "retry:x%x delay:x%x\n",
3871 					 cmd, cmdiocb->retry, delay);
3872 			retry = 1;
3873 			/* All command's retry policy */
3874 			maxretry = 8;
3875 			if (cmdiocb->retry > 2)
3876 				delay = 1000;
3877 			break;
3878 
3879 		case IOERR_NO_RESOURCES:
3880 			logerr = 1; /* HBA out of resources */
3881 			retry = 1;
3882 			if (cmdiocb->retry > 100)
3883 				delay = 100;
3884 			maxretry = 250;
3885 			break;
3886 
3887 		case IOERR_ILLEGAL_FRAME:
3888 			delay = 100;
3889 			retry = 1;
3890 			break;
3891 
3892 		case IOERR_INVALID_RPI:
3893 			if (cmd == ELS_CMD_PLOGI &&
3894 			    did == NameServer_DID) {
3895 				/* Continue forever if plogi to */
3896 				/* the nameserver fails */
3897 				maxretry = 0;
3898 				delay = 100;
3899 			}
3900 			retry = 1;
3901 			break;
3902 
3903 		case IOERR_SEQUENCE_TIMEOUT:
3904 			if (cmd == ELS_CMD_PLOGI &&
3905 			    did == NameServer_DID &&
3906 			    (cmdiocb->retry + 1) == maxretry) {
3907 				/* Reset the Link */
3908 				link_reset = 1;
3909 				break;
3910 			}
3911 			retry = 1;
3912 			delay = 100;
3913 			break;
3914 		}
3915 		break;
3916 
3917 	case IOSTAT_NPORT_RJT:
3918 	case IOSTAT_FABRIC_RJT:
3919 		if (irsp->un.ulpWord[4] & RJT_UNAVAIL_TEMP) {
3920 			retry = 1;
3921 			break;
3922 		}
3923 		break;
3924 
3925 	case IOSTAT_NPORT_BSY:
3926 	case IOSTAT_FABRIC_BSY:
3927 		logerr = 1; /* Fabric / Remote NPort out of resources */
3928 		retry = 1;
3929 		break;
3930 
3931 	case IOSTAT_LS_RJT:
3932 		stat.un.lsRjtError = be32_to_cpu(irsp->un.ulpWord[4]);
3933 		/* Added for Vendor specifc support
3934 		 * Just keep retrying for these Rsn / Exp codes
3935 		 */
3936 		switch (stat.un.b.lsRjtRsnCode) {
3937 		case LSRJT_UNABLE_TPC:
3938 			/* The driver has a VALID PLOGI but the rport has
3939 			 * rejected the PRLI - can't do it now.  Delay
3940 			 * for 1 second and try again - don't care about
3941 			 * the explanation.
3942 			 */
3943 			if (cmd == ELS_CMD_PRLI || cmd == ELS_CMD_NVMEPRLI) {
3944 				delay = 1000;
3945 				maxretry = lpfc_max_els_tries + 1;
3946 				retry = 1;
3947 				break;
3948 			}
3949 
3950 			/* Legacy bug fix code for targets with PLOGI delays. */
3951 			if (stat.un.b.lsRjtRsnCodeExp ==
3952 			    LSEXP_CMD_IN_PROGRESS) {
3953 				if (cmd == ELS_CMD_PLOGI) {
3954 					delay = 1000;
3955 					maxretry = 48;
3956 				}
3957 				retry = 1;
3958 				break;
3959 			}
3960 			if (stat.un.b.lsRjtRsnCodeExp ==
3961 			    LSEXP_CANT_GIVE_DATA) {
3962 				if (cmd == ELS_CMD_PLOGI) {
3963 					delay = 1000;
3964 					maxretry = 48;
3965 				}
3966 				retry = 1;
3967 				break;
3968 			}
3969 			if (cmd == ELS_CMD_PLOGI) {
3970 				delay = 1000;
3971 				maxretry = lpfc_max_els_tries + 1;
3972 				retry = 1;
3973 				break;
3974 			}
3975 			if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
3976 			  (cmd == ELS_CMD_FDISC) &&
3977 			  (stat.un.b.lsRjtRsnCodeExp == LSEXP_OUT_OF_RESOURCE)){
3978 				lpfc_printf_vlog(vport, KERN_ERR,
3979 						 LOG_TRACE_EVENT,
3980 						 "0125 FDISC Failed (x%x). "
3981 						 "Fabric out of resources\n",
3982 						 stat.un.lsRjtError);
3983 				lpfc_vport_set_state(vport,
3984 						     FC_VPORT_NO_FABRIC_RSCS);
3985 			}
3986 			break;
3987 
3988 		case LSRJT_LOGICAL_BSY:
3989 			if ((cmd == ELS_CMD_PLOGI) ||
3990 			    (cmd == ELS_CMD_PRLI) ||
3991 			    (cmd == ELS_CMD_NVMEPRLI)) {
3992 				delay = 1000;
3993 				maxretry = 48;
3994 			} else if (cmd == ELS_CMD_FDISC) {
3995 				/* FDISC retry policy */
3996 				maxretry = 48;
3997 				if (cmdiocb->retry >= 32)
3998 					delay = 1000;
3999 			}
4000 			retry = 1;
4001 			break;
4002 
4003 		case LSRJT_LOGICAL_ERR:
4004 			/* There are some cases where switches return this
4005 			 * error when they are not ready and should be returning
4006 			 * Logical Busy. We should delay every time.
4007 			 */
4008 			if (cmd == ELS_CMD_FDISC &&
4009 			    stat.un.b.lsRjtRsnCodeExp == LSEXP_PORT_LOGIN_REQ) {
4010 				maxretry = 3;
4011 				delay = 1000;
4012 				retry = 1;
4013 			} else if (cmd == ELS_CMD_FLOGI &&
4014 				   stat.un.b.lsRjtRsnCodeExp ==
4015 						LSEXP_NOTHING_MORE) {
4016 				vport->fc_sparam.cmn.bbRcvSizeMsb &= 0xf;
4017 				retry = 1;
4018 				lpfc_printf_vlog(vport, KERN_ERR,
4019 						 LOG_TRACE_EVENT,
4020 						 "0820 FLOGI Failed (x%x). "
4021 						 "BBCredit Not Supported\n",
4022 						 stat.un.lsRjtError);
4023 			}
4024 			break;
4025 
4026 		case LSRJT_PROTOCOL_ERR:
4027 			if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
4028 			  (cmd == ELS_CMD_FDISC) &&
4029 			  ((stat.un.b.lsRjtRsnCodeExp == LSEXP_INVALID_PNAME) ||
4030 			  (stat.un.b.lsRjtRsnCodeExp == LSEXP_INVALID_NPORT_ID))
4031 			  ) {
4032 				lpfc_printf_vlog(vport, KERN_ERR,
4033 						 LOG_TRACE_EVENT,
4034 						 "0122 FDISC Failed (x%x). "
4035 						 "Fabric Detected Bad WWN\n",
4036 						 stat.un.lsRjtError);
4037 				lpfc_vport_set_state(vport,
4038 						     FC_VPORT_FABRIC_REJ_WWN);
4039 			}
4040 			break;
4041 		case LSRJT_VENDOR_UNIQUE:
4042 			if ((stat.un.b.vendorUnique == 0x45) &&
4043 			    (cmd == ELS_CMD_FLOGI)) {
4044 				goto out_retry;
4045 			}
4046 			break;
4047 		case LSRJT_CMD_UNSUPPORTED:
4048 			/* lpfc nvmet returns this type of LS_RJT when it
4049 			 * receives an FCP PRLI because lpfc nvmet only
4050 			 * support NVME.  ELS request is terminated for FCP4
4051 			 * on this rport.
4052 			 */
4053 			if (stat.un.b.lsRjtRsnCodeExp ==
4054 			    LSEXP_REQ_UNSUPPORTED && cmd == ELS_CMD_PRLI) {
4055 				spin_lock_irq(shost->host_lock);
4056 				ndlp->nlp_flag |= NLP_FCP_PRLI_RJT;
4057 				spin_unlock_irq(shost->host_lock);
4058 				retry = 0;
4059 				goto out_retry;
4060 			}
4061 			break;
4062 		}
4063 		break;
4064 
4065 	case IOSTAT_INTERMED_RSP:
4066 	case IOSTAT_BA_RJT:
4067 		break;
4068 
4069 	default:
4070 		break;
4071 	}
4072 
4073 	if (link_reset) {
4074 		rc = lpfc_link_reset(vport);
4075 		if (rc) {
4076 			/* Do not give up. Retry PLOGI one more time and attempt
4077 			 * link reset if PLOGI fails again.
4078 			 */
4079 			retry = 1;
4080 			delay = 100;
4081 			goto out_retry;
4082 		}
4083 		return 1;
4084 	}
4085 
4086 	if (did == FDMI_DID)
4087 		retry = 1;
4088 
4089 	if ((cmd == ELS_CMD_FLOGI) &&
4090 	    (phba->fc_topology != LPFC_TOPOLOGY_LOOP) &&
4091 	    !lpfc_error_lost_link(irsp)) {
4092 		/* FLOGI retry policy */
4093 		retry = 1;
4094 		/* retry FLOGI forever */
4095 		if (phba->link_flag != LS_LOOPBACK_MODE)
4096 			maxretry = 0;
4097 		else
4098 			maxretry = 2;
4099 
4100 		if (cmdiocb->retry >= 100)
4101 			delay = 5000;
4102 		else if (cmdiocb->retry >= 32)
4103 			delay = 1000;
4104 	} else if ((cmd == ELS_CMD_FDISC) && !lpfc_error_lost_link(irsp)) {
4105 		/* retry FDISCs every second up to devloss */
4106 		retry = 1;
4107 		maxretry = vport->cfg_devloss_tmo;
4108 		delay = 1000;
4109 	}
4110 
4111 	cmdiocb->retry++;
4112 	if (maxretry && (cmdiocb->retry >= maxretry)) {
4113 		phba->fc_stat.elsRetryExceeded++;
4114 		retry = 0;
4115 	}
4116 
4117 	if ((vport->load_flag & FC_UNLOADING) != 0)
4118 		retry = 0;
4119 
4120 out_retry:
4121 	if (retry) {
4122 		if ((cmd == ELS_CMD_PLOGI) || (cmd == ELS_CMD_FDISC)) {
4123 			/* Stop retrying PLOGI and FDISC if in FCF discovery */
4124 			if (phba->fcf.fcf_flag & FCF_DISCOVERY) {
4125 				lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
4126 						 "2849 Stop retry ELS command "
4127 						 "x%x to remote NPORT x%x, "
4128 						 "Data: x%x x%x\n", cmd, did,
4129 						 cmdiocb->retry, delay);
4130 				return 0;
4131 			}
4132 		}
4133 
4134 		/* Retry ELS command <elsCmd> to remote NPORT <did> */
4135 		lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
4136 				 "0107 Retry ELS command x%x to remote "
4137 				 "NPORT x%x Data: x%x x%x\n",
4138 				 cmd, did, cmdiocb->retry, delay);
4139 
4140 		if (((cmd == ELS_CMD_PLOGI) || (cmd == ELS_CMD_ADISC)) &&
4141 			((irsp->ulpStatus != IOSTAT_LOCAL_REJECT) ||
4142 			((irsp->un.ulpWord[4] & IOERR_PARAM_MASK) !=
4143 			IOERR_NO_RESOURCES))) {
4144 			/* Don't reset timer for no resources */
4145 
4146 			/* If discovery / RSCN timer is running, reset it */
4147 			if (timer_pending(&vport->fc_disctmo) ||
4148 			    (vport->fc_flag & FC_RSCN_MODE))
4149 				lpfc_set_disctmo(vport);
4150 		}
4151 
4152 		phba->fc_stat.elsXmitRetry++;
4153 		if (ndlp && NLP_CHK_NODE_ACT(ndlp) && delay) {
4154 			phba->fc_stat.elsDelayRetry++;
4155 			ndlp->nlp_retry = cmdiocb->retry;
4156 
4157 			/* delay is specified in milliseconds */
4158 			mod_timer(&ndlp->nlp_delayfunc,
4159 				jiffies + msecs_to_jiffies(delay));
4160 			spin_lock_irq(shost->host_lock);
4161 			ndlp->nlp_flag |= NLP_DELAY_TMO;
4162 			spin_unlock_irq(shost->host_lock);
4163 
4164 			ndlp->nlp_prev_state = ndlp->nlp_state;
4165 			if ((cmd == ELS_CMD_PRLI) ||
4166 			    (cmd == ELS_CMD_NVMEPRLI))
4167 				lpfc_nlp_set_state(vport, ndlp,
4168 					NLP_STE_PRLI_ISSUE);
4169 			else
4170 				lpfc_nlp_set_state(vport, ndlp,
4171 					NLP_STE_NPR_NODE);
4172 			ndlp->nlp_last_elscmd = cmd;
4173 
4174 			return 1;
4175 		}
4176 		switch (cmd) {
4177 		case ELS_CMD_FLOGI:
4178 			lpfc_issue_els_flogi(vport, ndlp, cmdiocb->retry);
4179 			return 1;
4180 		case ELS_CMD_FDISC:
4181 			lpfc_issue_els_fdisc(vport, ndlp, cmdiocb->retry);
4182 			return 1;
4183 		case ELS_CMD_PLOGI:
4184 			if (ndlp && NLP_CHK_NODE_ACT(ndlp)) {
4185 				ndlp->nlp_prev_state = ndlp->nlp_state;
4186 				lpfc_nlp_set_state(vport, ndlp,
4187 						   NLP_STE_PLOGI_ISSUE);
4188 			}
4189 			lpfc_issue_els_plogi(vport, did, cmdiocb->retry);
4190 			return 1;
4191 		case ELS_CMD_ADISC:
4192 			ndlp->nlp_prev_state = ndlp->nlp_state;
4193 			lpfc_nlp_set_state(vport, ndlp, NLP_STE_ADISC_ISSUE);
4194 			lpfc_issue_els_adisc(vport, ndlp, cmdiocb->retry);
4195 			return 1;
4196 		case ELS_CMD_PRLI:
4197 		case ELS_CMD_NVMEPRLI:
4198 			ndlp->nlp_prev_state = ndlp->nlp_state;
4199 			lpfc_nlp_set_state(vport, ndlp, NLP_STE_PRLI_ISSUE);
4200 			lpfc_issue_els_prli(vport, ndlp, cmdiocb->retry);
4201 			return 1;
4202 		case ELS_CMD_LOGO:
4203 			ndlp->nlp_prev_state = ndlp->nlp_state;
4204 			lpfc_nlp_set_state(vport, ndlp, NLP_STE_LOGO_ISSUE);
4205 			lpfc_issue_els_logo(vport, ndlp, cmdiocb->retry);
4206 			return 1;
4207 		}
4208 	}
4209 	/* No retry ELS command <elsCmd> to remote NPORT <did> */
4210 	if (logerr) {
4211 		lpfc_printf_vlog(vport, KERN_ERR, LOG_TRACE_EVENT,
4212 			 "0137 No retry ELS command x%x to remote "
4213 			 "NPORT x%x: Out of Resources: Error:x%x/%x\n",
4214 			 cmd, did, irsp->ulpStatus,
4215 			 irsp->un.ulpWord[4]);
4216 	}
4217 	else {
4218 		lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
4219 			 "0108 No retry ELS command x%x to remote "
4220 			 "NPORT x%x Retried:%d Error:x%x/%x\n",
4221 			 cmd, did, cmdiocb->retry, irsp->ulpStatus,
4222 			 irsp->un.ulpWord[4]);
4223 	}
4224 	return 0;
4225 }
4226 
4227 /**
4228  * lpfc_els_free_data - Free lpfc dma buffer and data structure with an iocb
4229  * @phba: pointer to lpfc hba data structure.
4230  * @buf_ptr1: pointer to the lpfc DMA buffer data structure.
4231  *
4232  * This routine releases the lpfc DMA (Direct Memory Access) buffer(s)
4233  * associated with a command IOCB back to the lpfc DMA buffer pool. It first
4234  * checks to see whether there is a lpfc DMA buffer associated with the
4235  * response of the command IOCB. If so, it will be released before releasing
4236  * the lpfc DMA buffer associated with the IOCB itself.
4237  *
4238  * Return code
4239  *   0 - Successfully released lpfc DMA buffer (currently, always return 0)
4240  **/
4241 static int
4242 lpfc_els_free_data(struct lpfc_hba *phba, struct lpfc_dmabuf *buf_ptr1)
4243 {
4244 	struct lpfc_dmabuf *buf_ptr;
4245 
4246 	/* Free the response before processing the command. */
4247 	if (!list_empty(&buf_ptr1->list)) {
4248 		list_remove_head(&buf_ptr1->list, buf_ptr,
4249 				 struct lpfc_dmabuf,
4250 				 list);
4251 		lpfc_mbuf_free(phba, buf_ptr->virt, buf_ptr->phys);
4252 		kfree(buf_ptr);
4253 	}
4254 	lpfc_mbuf_free(phba, buf_ptr1->virt, buf_ptr1->phys);
4255 	kfree(buf_ptr1);
4256 	return 0;
4257 }
4258 
4259 /**
4260  * lpfc_els_free_bpl - Free lpfc dma buffer and data structure with bpl
4261  * @phba: pointer to lpfc hba data structure.
4262  * @buf_ptr: pointer to the lpfc dma buffer data structure.
4263  *
4264  * This routine releases the lpfc Direct Memory Access (DMA) buffer
4265  * associated with a Buffer Pointer List (BPL) back to the lpfc DMA buffer
4266  * pool.
4267  *
4268  * Return code
4269  *   0 - Successfully released lpfc DMA buffer (currently, always return 0)
4270  **/
4271 static int
4272 lpfc_els_free_bpl(struct lpfc_hba *phba, struct lpfc_dmabuf *buf_ptr)
4273 {
4274 	lpfc_mbuf_free(phba, buf_ptr->virt, buf_ptr->phys);
4275 	kfree(buf_ptr);
4276 	return 0;
4277 }
4278 
4279 /**
4280  * lpfc_els_free_iocb - Free a command iocb and its associated resources
4281  * @phba: pointer to lpfc hba data structure.
4282  * @elsiocb: pointer to lpfc els command iocb data structure.
4283  *
4284  * This routine frees a command IOCB and its associated resources. The
4285  * command IOCB data structure contains the reference to various associated
4286  * resources, these fields must be set to NULL if the associated reference
4287  * not present:
4288  *   context1 - reference to ndlp
4289  *   context2 - reference to cmd
4290  *   context2->next - reference to rsp
4291  *   context3 - reference to bpl
4292  *
4293  * It first properly decrements the reference count held on ndlp for the
4294  * IOCB completion callback function. If LPFC_DELAY_MEM_FREE flag is not
4295  * set, it invokes the lpfc_els_free_data() routine to release the Direct
4296  * Memory Access (DMA) buffers associated with the IOCB. Otherwise, it
4297  * adds the DMA buffer the @phba data structure for the delayed release.
4298  * If reference to the Buffer Pointer List (BPL) is present, the
4299  * lpfc_els_free_bpl() routine is invoked to release the DMA memory
4300  * associated with BPL. Finally, the lpfc_sli_release_iocbq() routine is
4301  * invoked to release the IOCB data structure back to @phba IOCBQ list.
4302  *
4303  * Return code
4304  *   0 - Success (currently, always return 0)
4305  **/
4306 int
4307 lpfc_els_free_iocb(struct lpfc_hba *phba, struct lpfc_iocbq *elsiocb)
4308 {
4309 	struct lpfc_dmabuf *buf_ptr, *buf_ptr1;
4310 	struct lpfc_nodelist *ndlp;
4311 
4312 	ndlp = (struct lpfc_nodelist *)elsiocb->context1;
4313 	if (ndlp) {
4314 		if (ndlp->nlp_flag & NLP_DEFER_RM) {
4315 			lpfc_nlp_put(ndlp);
4316 
4317 			/* If the ndlp is not being used by another discovery
4318 			 * thread, free it.
4319 			 */
4320 			if (!lpfc_nlp_not_used(ndlp)) {
4321 				/* If ndlp is being used by another discovery
4322 				 * thread, just clear NLP_DEFER_RM
4323 				 */
4324 				ndlp->nlp_flag &= ~NLP_DEFER_RM;
4325 			}
4326 		}
4327 		else
4328 			lpfc_nlp_put(ndlp);
4329 		elsiocb->context1 = NULL;
4330 	}
4331 	/* context2  = cmd,  context2->next = rsp, context3 = bpl */
4332 	if (elsiocb->context2) {
4333 		if (elsiocb->iocb_flag & LPFC_DELAY_MEM_FREE) {
4334 			/* Firmware could still be in progress of DMAing
4335 			 * payload, so don't free data buffer till after
4336 			 * a hbeat.
4337 			 */
4338 			elsiocb->iocb_flag &= ~LPFC_DELAY_MEM_FREE;
4339 			buf_ptr = elsiocb->context2;
4340 			elsiocb->context2 = NULL;
4341 			if (buf_ptr) {
4342 				buf_ptr1 = NULL;
4343 				spin_lock_irq(&phba->hbalock);
4344 				if (!list_empty(&buf_ptr->list)) {
4345 					list_remove_head(&buf_ptr->list,
4346 						buf_ptr1, struct lpfc_dmabuf,
4347 						list);
4348 					INIT_LIST_HEAD(&buf_ptr1->list);
4349 					list_add_tail(&buf_ptr1->list,
4350 						&phba->elsbuf);
4351 					phba->elsbuf_cnt++;
4352 				}
4353 				INIT_LIST_HEAD(&buf_ptr->list);
4354 				list_add_tail(&buf_ptr->list, &phba->elsbuf);
4355 				phba->elsbuf_cnt++;
4356 				spin_unlock_irq(&phba->hbalock);
4357 			}
4358 		} else {
4359 			buf_ptr1 = (struct lpfc_dmabuf *) elsiocb->context2;
4360 			lpfc_els_free_data(phba, buf_ptr1);
4361 			elsiocb->context2 = NULL;
4362 		}
4363 	}
4364 
4365 	if (elsiocb->context3) {
4366 		buf_ptr = (struct lpfc_dmabuf *) elsiocb->context3;
4367 		lpfc_els_free_bpl(phba, buf_ptr);
4368 		elsiocb->context3 = NULL;
4369 	}
4370 	lpfc_sli_release_iocbq(phba, elsiocb);
4371 	return 0;
4372 }
4373 
4374 /**
4375  * lpfc_cmpl_els_logo_acc - Completion callback function to logo acc response
4376  * @phba: pointer to lpfc hba data structure.
4377  * @cmdiocb: pointer to lpfc command iocb data structure.
4378  * @rspiocb: pointer to lpfc response iocb data structure.
4379  *
4380  * This routine is the completion callback function to the Logout (LOGO)
4381  * Accept (ACC) Response ELS command. This routine is invoked to indicate
4382  * the completion of the LOGO process. It invokes the lpfc_nlp_not_used() to
4383  * release the ndlp if it has the last reference remaining (reference count
4384  * is 1). If succeeded (meaning ndlp released), it sets the IOCB context1
4385  * field to NULL to inform the following lpfc_els_free_iocb() routine no
4386  * ndlp reference count needs to be decremented. Otherwise, the ndlp
4387  * reference use-count shall be decremented by the lpfc_els_free_iocb()
4388  * routine. Finally, the lpfc_els_free_iocb() is invoked to release the
4389  * IOCB data structure.
4390  **/
4391 static void
4392 lpfc_cmpl_els_logo_acc(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
4393 		       struct lpfc_iocbq *rspiocb)
4394 {
4395 	struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
4396 	struct lpfc_vport *vport = cmdiocb->vport;
4397 	IOCB_t *irsp;
4398 
4399 	irsp = &rspiocb->iocb;
4400 	lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
4401 		"ACC LOGO cmpl:   status:x%x/x%x did:x%x",
4402 		irsp->ulpStatus, irsp->un.ulpWord[4], ndlp->nlp_DID);
4403 	/* ACC to LOGO completes to NPort <nlp_DID> */
4404 	lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
4405 			 "0109 ACC to LOGO completes to NPort x%x "
4406 			 "Data: x%x x%x x%x\n",
4407 			 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
4408 			 ndlp->nlp_rpi);
4409 
4410 	if (ndlp->nlp_state == NLP_STE_NPR_NODE) {
4411 		/* NPort Recovery mode or node is just allocated */
4412 		if (!lpfc_nlp_not_used(ndlp)) {
4413 			/* If the ndlp is being used by another discovery
4414 			 * thread, just unregister the RPI.
4415 			 */
4416 			lpfc_unreg_rpi(vport, ndlp);
4417 		} else {
4418 			/* Indicate the node has already released, should
4419 			 * not reference to it from within lpfc_els_free_iocb.
4420 			 */
4421 			cmdiocb->context1 = NULL;
4422 		}
4423 	}
4424 
4425 	/*
4426 	 * The driver received a LOGO from the rport and has ACK'd it.
4427 	 * At this point, the driver is done so release the IOCB
4428 	 */
4429 	lpfc_els_free_iocb(phba, cmdiocb);
4430 }
4431 
4432 /**
4433  * lpfc_mbx_cmpl_dflt_rpi - Completion callbk func for unreg dflt rpi mbox cmd
4434  * @phba: pointer to lpfc hba data structure.
4435  * @pmb: pointer to the driver internal queue element for mailbox command.
4436  *
4437  * This routine is the completion callback function for unregister default
4438  * RPI (Remote Port Index) mailbox command to the @phba. It simply releases
4439  * the associated lpfc Direct Memory Access (DMA) buffer back to the pool and
4440  * decrements the ndlp reference count held for this completion callback
4441  * function. After that, it invokes the lpfc_nlp_not_used() to check
4442  * whether there is only one reference left on the ndlp. If so, it will
4443  * perform one more decrement and trigger the release of the ndlp.
4444  **/
4445 void
4446 lpfc_mbx_cmpl_dflt_rpi(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
4447 {
4448 	struct lpfc_dmabuf *mp = (struct lpfc_dmabuf *)(pmb->ctx_buf);
4449 	struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *)pmb->ctx_ndlp;
4450 
4451 	pmb->ctx_buf = NULL;
4452 	pmb->ctx_ndlp = NULL;
4453 
4454 	lpfc_mbuf_free(phba, mp->virt, mp->phys);
4455 	kfree(mp);
4456 	mempool_free(pmb, phba->mbox_mem_pool);
4457 	if (ndlp) {
4458 		lpfc_printf_vlog(ndlp->vport, KERN_INFO, LOG_NODE,
4459 				 "0006 rpi%x DID:%x flg:%x %d map:%x x%px\n",
4460 				 ndlp->nlp_rpi, ndlp->nlp_DID, ndlp->nlp_flag,
4461 				 kref_read(&ndlp->kref),
4462 				 ndlp->nlp_usg_map, ndlp);
4463 		if (NLP_CHK_NODE_ACT(ndlp)) {
4464 			lpfc_nlp_put(ndlp);
4465 			/* This is the end of the default RPI cleanup logic for
4466 			 * this ndlp. If no other discovery threads are using
4467 			 * this ndlp, free all resources associated with it.
4468 			 */
4469 			lpfc_nlp_not_used(ndlp);
4470 		} else {
4471 			lpfc_drop_node(ndlp->vport, ndlp);
4472 		}
4473 	}
4474 
4475 	return;
4476 }
4477 
4478 /**
4479  * lpfc_cmpl_els_rsp - Completion callback function for els response iocb cmd
4480  * @phba: pointer to lpfc hba data structure.
4481  * @cmdiocb: pointer to lpfc command iocb data structure.
4482  * @rspiocb: pointer to lpfc response iocb data structure.
4483  *
4484  * This routine is the completion callback function for ELS Response IOCB
4485  * command. In normal case, this callback function just properly sets the
4486  * nlp_flag bitmap in the ndlp data structure, if the mbox command reference
4487  * field in the command IOCB is not NULL, the referred mailbox command will
4488  * be send out, and then invokes the lpfc_els_free_iocb() routine to release
4489  * the IOCB. Under error conditions, such as when a LS_RJT is returned or a
4490  * link down event occurred during the discovery, the lpfc_nlp_not_used()
4491  * routine shall be invoked trying to release the ndlp if no other threads
4492  * are currently referring it.
4493  **/
4494 static void
4495 lpfc_cmpl_els_rsp(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
4496 		  struct lpfc_iocbq *rspiocb)
4497 {
4498 	struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
4499 	struct lpfc_vport *vport = ndlp ? ndlp->vport : NULL;
4500 	struct Scsi_Host  *shost = vport ? lpfc_shost_from_vport(vport) : NULL;
4501 	IOCB_t  *irsp;
4502 	uint8_t *pcmd;
4503 	LPFC_MBOXQ_t *mbox = NULL;
4504 	struct lpfc_dmabuf *mp = NULL;
4505 	uint32_t ls_rjt = 0;
4506 
4507 	irsp = &rspiocb->iocb;
4508 
4509 	if (!vport) {
4510 		lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
4511 				"3177 ELS response failed\n");
4512 		goto out;
4513 	}
4514 	if (cmdiocb->context_un.mbox)
4515 		mbox = cmdiocb->context_un.mbox;
4516 
4517 	/* First determine if this is a LS_RJT cmpl. Note, this callback
4518 	 * function can have cmdiocb->contest1 (ndlp) field set to NULL.
4519 	 */
4520 	pcmd = (uint8_t *) (((struct lpfc_dmabuf *) cmdiocb->context2)->virt);
4521 	if (ndlp && NLP_CHK_NODE_ACT(ndlp) &&
4522 	    (*((uint32_t *) (pcmd)) == ELS_CMD_LS_RJT)) {
4523 		/* A LS_RJT associated with Default RPI cleanup has its own
4524 		 * separate code path.
4525 		 */
4526 		if (!(ndlp->nlp_flag & NLP_RM_DFLT_RPI))
4527 			ls_rjt = 1;
4528 	}
4529 
4530 	/* Check to see if link went down during discovery */
4531 	if (!ndlp || !NLP_CHK_NODE_ACT(ndlp) || lpfc_els_chk_latt(vport)) {
4532 		if (mbox) {
4533 			mp = (struct lpfc_dmabuf *)mbox->ctx_buf;
4534 			if (mp) {
4535 				lpfc_mbuf_free(phba, mp->virt, mp->phys);
4536 				kfree(mp);
4537 			}
4538 			mempool_free(mbox, phba->mbox_mem_pool);
4539 		}
4540 		if (ndlp && NLP_CHK_NODE_ACT(ndlp) &&
4541 		    (ndlp->nlp_flag & NLP_RM_DFLT_RPI))
4542 			if (lpfc_nlp_not_used(ndlp)) {
4543 				ndlp = NULL;
4544 				/* Indicate the node has already released,
4545 				 * should not reference to it from within
4546 				 * the routine lpfc_els_free_iocb.
4547 				 */
4548 				cmdiocb->context1 = NULL;
4549 			}
4550 		goto out;
4551 	}
4552 
4553 	lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
4554 		"ELS rsp cmpl:    status:x%x/x%x did:x%x",
4555 		irsp->ulpStatus, irsp->un.ulpWord[4],
4556 		cmdiocb->iocb.un.elsreq64.remoteID);
4557 	/* ELS response tag <ulpIoTag> completes */
4558 	lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
4559 			 "0110 ELS response tag x%x completes "
4560 			 "Data: x%x x%x x%x x%x x%x x%x x%x\n",
4561 			 cmdiocb->iocb.ulpIoTag, rspiocb->iocb.ulpStatus,
4562 			 rspiocb->iocb.un.ulpWord[4], rspiocb->iocb.ulpTimeout,
4563 			 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
4564 			 ndlp->nlp_rpi);
4565 	if (mbox) {
4566 		if ((rspiocb->iocb.ulpStatus == 0)
4567 		    && (ndlp->nlp_flag & NLP_ACC_REGLOGIN)) {
4568 			if (!lpfc_unreg_rpi(vport, ndlp) &&
4569 			    (!(vport->fc_flag & FC_PT2PT)) &&
4570 			    (ndlp->nlp_state ==  NLP_STE_PLOGI_ISSUE ||
4571 			     ndlp->nlp_state == NLP_STE_REG_LOGIN_ISSUE)) {
4572 				lpfc_printf_vlog(vport, KERN_INFO,
4573 					LOG_DISCOVERY,
4574 					"0314 PLOGI recov DID x%x "
4575 					"Data: x%x x%x x%x\n",
4576 					ndlp->nlp_DID, ndlp->nlp_state,
4577 					ndlp->nlp_rpi, ndlp->nlp_flag);
4578 				mp = mbox->ctx_buf;
4579 				if (mp) {
4580 					lpfc_mbuf_free(phba, mp->virt,
4581 						       mp->phys);
4582 					kfree(mp);
4583 				}
4584 				mempool_free(mbox, phba->mbox_mem_pool);
4585 				goto out;
4586 			}
4587 
4588 			/* Increment reference count to ndlp to hold the
4589 			 * reference to ndlp for the callback function.
4590 			 */
4591 			mbox->ctx_ndlp = lpfc_nlp_get(ndlp);
4592 			mbox->vport = vport;
4593 			if (ndlp->nlp_flag & NLP_RM_DFLT_RPI) {
4594 				mbox->mbox_flag |= LPFC_MBX_IMED_UNREG;
4595 				mbox->mbox_cmpl = lpfc_mbx_cmpl_dflt_rpi;
4596 			}
4597 			else {
4598 				mbox->mbox_cmpl = lpfc_mbx_cmpl_reg_login;
4599 				ndlp->nlp_prev_state = ndlp->nlp_state;
4600 				lpfc_nlp_set_state(vport, ndlp,
4601 					   NLP_STE_REG_LOGIN_ISSUE);
4602 			}
4603 
4604 			ndlp->nlp_flag |= NLP_REG_LOGIN_SEND;
4605 			if (lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT)
4606 			    != MBX_NOT_FINISHED)
4607 				goto out;
4608 
4609 			/* Decrement the ndlp reference count we
4610 			 * set for this failed mailbox command.
4611 			 */
4612 			lpfc_nlp_put(ndlp);
4613 			ndlp->nlp_flag &= ~NLP_REG_LOGIN_SEND;
4614 
4615 			/* ELS rsp: Cannot issue reg_login for <NPortid> */
4616 			lpfc_printf_vlog(vport, KERN_ERR, LOG_TRACE_EVENT,
4617 				"0138 ELS rsp: Cannot issue reg_login for x%x "
4618 				"Data: x%x x%x x%x\n",
4619 				ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
4620 				ndlp->nlp_rpi);
4621 
4622 			if (lpfc_nlp_not_used(ndlp)) {
4623 				ndlp = NULL;
4624 				/* Indicate node has already been released,
4625 				 * should not reference to it from within
4626 				 * the routine lpfc_els_free_iocb.
4627 				 */
4628 				cmdiocb->context1 = NULL;
4629 			}
4630 		} else {
4631 			/* Do not drop node for lpfc_els_abort'ed ELS cmds */
4632 			if (!lpfc_error_lost_link(irsp) &&
4633 			    ndlp->nlp_flag & NLP_ACC_REGLOGIN) {
4634 				if (lpfc_nlp_not_used(ndlp)) {
4635 					ndlp = NULL;
4636 					/* Indicate node has already been
4637 					 * released, should not reference
4638 					 * to it from within the routine
4639 					 * lpfc_els_free_iocb.
4640 					 */
4641 					cmdiocb->context1 = NULL;
4642 				}
4643 			}
4644 		}
4645 		mp = (struct lpfc_dmabuf *)mbox->ctx_buf;
4646 		if (mp) {
4647 			lpfc_mbuf_free(phba, mp->virt, mp->phys);
4648 			kfree(mp);
4649 		}
4650 		mempool_free(mbox, phba->mbox_mem_pool);
4651 	}
4652 out:
4653 	if (ndlp && NLP_CHK_NODE_ACT(ndlp) && shost) {
4654 		spin_lock_irq(shost->host_lock);
4655 		ndlp->nlp_flag &= ~(NLP_ACC_REGLOGIN | NLP_RM_DFLT_RPI);
4656 		spin_unlock_irq(shost->host_lock);
4657 
4658 		/* If the node is not being used by another discovery thread,
4659 		 * and we are sending a reject, we are done with it.
4660 		 * Release driver reference count here and free associated
4661 		 * resources.
4662 		 */
4663 		if (ls_rjt)
4664 			if (lpfc_nlp_not_used(ndlp))
4665 				/* Indicate node has already been released,
4666 				 * should not reference to it from within
4667 				 * the routine lpfc_els_free_iocb.
4668 				 */
4669 				cmdiocb->context1 = NULL;
4670 
4671 	}
4672 
4673 	lpfc_els_free_iocb(phba, cmdiocb);
4674 	return;
4675 }
4676 
4677 /**
4678  * lpfc_els_rsp_acc - Prepare and issue an acc response iocb command
4679  * @vport: pointer to a host virtual N_Port data structure.
4680  * @flag: the els command code to be accepted.
4681  * @oldiocb: pointer to the original lpfc command iocb data structure.
4682  * @ndlp: pointer to a node-list data structure.
4683  * @mbox: pointer to the driver internal queue element for mailbox command.
4684  *
4685  * This routine prepares and issues an Accept (ACC) response IOCB
4686  * command. It uses the @flag to properly set up the IOCB field for the
4687  * specific ACC response command to be issued and invokes the
4688  * lpfc_sli_issue_iocb() routine to send out ACC response IOCB. If a
4689  * @mbox pointer is passed in, it will be put into the context_un.mbox
4690  * field of the IOCB for the completion callback function to issue the
4691  * mailbox command to the HBA later when callback is invoked.
4692  *
4693  * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
4694  * will be incremented by 1 for holding the ndlp and the reference to ndlp
4695  * will be stored into the context1 field of the IOCB for the completion
4696  * callback function to the corresponding response ELS IOCB command.
4697  *
4698  * Return code
4699  *   0 - Successfully issued acc response
4700  *   1 - Failed to issue acc response
4701  **/
4702 int
4703 lpfc_els_rsp_acc(struct lpfc_vport *vport, uint32_t flag,
4704 		 struct lpfc_iocbq *oldiocb, struct lpfc_nodelist *ndlp,
4705 		 LPFC_MBOXQ_t *mbox)
4706 {
4707 	struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
4708 	struct lpfc_hba  *phba = vport->phba;
4709 	IOCB_t *icmd;
4710 	IOCB_t *oldcmd;
4711 	struct lpfc_iocbq *elsiocb;
4712 	uint8_t *pcmd;
4713 	struct serv_parm *sp;
4714 	uint16_t cmdsize;
4715 	int rc;
4716 	ELS_PKT *els_pkt_ptr;
4717 
4718 	oldcmd = &oldiocb->iocb;
4719 
4720 	switch (flag) {
4721 	case ELS_CMD_ACC:
4722 		cmdsize = sizeof(uint32_t);
4723 		elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry,
4724 					     ndlp, ndlp->nlp_DID, ELS_CMD_ACC);
4725 		if (!elsiocb) {
4726 			spin_lock_irq(shost->host_lock);
4727 			ndlp->nlp_flag &= ~NLP_LOGO_ACC;
4728 			spin_unlock_irq(shost->host_lock);
4729 			return 1;
4730 		}
4731 
4732 		icmd = &elsiocb->iocb;
4733 		icmd->ulpContext = oldcmd->ulpContext;	/* Xri / rx_id */
4734 		icmd->unsli3.rcvsli3.ox_id = oldcmd->unsli3.rcvsli3.ox_id;
4735 		pcmd = (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
4736 		*((uint32_t *) (pcmd)) = ELS_CMD_ACC;
4737 		pcmd += sizeof(uint32_t);
4738 
4739 		lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
4740 			"Issue ACC:       did:x%x flg:x%x",
4741 			ndlp->nlp_DID, ndlp->nlp_flag, 0);
4742 		break;
4743 	case ELS_CMD_FLOGI:
4744 	case ELS_CMD_PLOGI:
4745 		cmdsize = (sizeof(struct serv_parm) + sizeof(uint32_t));
4746 		elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry,
4747 					     ndlp, ndlp->nlp_DID, ELS_CMD_ACC);
4748 		if (!elsiocb)
4749 			return 1;
4750 
4751 		icmd = &elsiocb->iocb;
4752 		icmd->ulpContext = oldcmd->ulpContext;	/* Xri / rx_id */
4753 		icmd->unsli3.rcvsli3.ox_id = oldcmd->unsli3.rcvsli3.ox_id;
4754 		pcmd = (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
4755 
4756 		if (mbox)
4757 			elsiocb->context_un.mbox = mbox;
4758 
4759 		*((uint32_t *) (pcmd)) = ELS_CMD_ACC;
4760 		pcmd += sizeof(uint32_t);
4761 		sp = (struct serv_parm *)pcmd;
4762 
4763 		if (flag == ELS_CMD_FLOGI) {
4764 			/* Copy the received service parameters back */
4765 			memcpy(sp, &phba->fc_fabparam,
4766 			       sizeof(struct serv_parm));
4767 
4768 			/* Clear the F_Port bit */
4769 			sp->cmn.fPort = 0;
4770 
4771 			/* Mark all class service parameters as invalid */
4772 			sp->cls1.classValid = 0;
4773 			sp->cls2.classValid = 0;
4774 			sp->cls3.classValid = 0;
4775 			sp->cls4.classValid = 0;
4776 
4777 			/* Copy our worldwide names */
4778 			memcpy(&sp->portName, &vport->fc_sparam.portName,
4779 			       sizeof(struct lpfc_name));
4780 			memcpy(&sp->nodeName, &vport->fc_sparam.nodeName,
4781 			       sizeof(struct lpfc_name));
4782 		} else {
4783 			memcpy(pcmd, &vport->fc_sparam,
4784 			       sizeof(struct serv_parm));
4785 
4786 			sp->cmn.valid_vendor_ver_level = 0;
4787 			memset(sp->un.vendorVersion, 0,
4788 			       sizeof(sp->un.vendorVersion));
4789 			sp->cmn.bbRcvSizeMsb &= 0xF;
4790 
4791 			/* If our firmware supports this feature, convey that
4792 			 * info to the target using the vendor specific field.
4793 			 */
4794 			if (phba->sli.sli_flag & LPFC_SLI_SUPPRESS_RSP) {
4795 				sp->cmn.valid_vendor_ver_level = 1;
4796 				sp->un.vv.vid = cpu_to_be32(LPFC_VV_EMLX_ID);
4797 				sp->un.vv.flags =
4798 					cpu_to_be32(LPFC_VV_SUPPRESS_RSP);
4799 			}
4800 		}
4801 
4802 		lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
4803 			"Issue ACC FLOGI/PLOGI: did:x%x flg:x%x",
4804 			ndlp->nlp_DID, ndlp->nlp_flag, 0);
4805 		break;
4806 	case ELS_CMD_PRLO:
4807 		cmdsize = sizeof(uint32_t) + sizeof(PRLO);
4808 		elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry,
4809 					     ndlp, ndlp->nlp_DID, ELS_CMD_PRLO);
4810 		if (!elsiocb)
4811 			return 1;
4812 
4813 		icmd = &elsiocb->iocb;
4814 		icmd->ulpContext = oldcmd->ulpContext;	/* Xri / rx_id */
4815 		icmd->unsli3.rcvsli3.ox_id = oldcmd->unsli3.rcvsli3.ox_id;
4816 		pcmd = (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
4817 
4818 		memcpy(pcmd, ((struct lpfc_dmabuf *) oldiocb->context2)->virt,
4819 		       sizeof(uint32_t) + sizeof(PRLO));
4820 		*((uint32_t *) (pcmd)) = ELS_CMD_PRLO_ACC;
4821 		els_pkt_ptr = (ELS_PKT *) pcmd;
4822 		els_pkt_ptr->un.prlo.acceptRspCode = PRLO_REQ_EXECUTED;
4823 
4824 		lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
4825 			"Issue ACC PRLO:  did:x%x flg:x%x",
4826 			ndlp->nlp_DID, ndlp->nlp_flag, 0);
4827 		break;
4828 	default:
4829 		return 1;
4830 	}
4831 	if (ndlp->nlp_flag & NLP_LOGO_ACC) {
4832 		spin_lock_irq(shost->host_lock);
4833 		if (!(ndlp->nlp_flag & NLP_RPI_REGISTERED ||
4834 			ndlp->nlp_flag & NLP_REG_LOGIN_SEND))
4835 			ndlp->nlp_flag &= ~NLP_LOGO_ACC;
4836 		spin_unlock_irq(shost->host_lock);
4837 		elsiocb->iocb_cmpl = lpfc_cmpl_els_logo_acc;
4838 	} else {
4839 		elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
4840 	}
4841 
4842 	phba->fc_stat.elsXmitACC++;
4843 	rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
4844 	if (rc == IOCB_ERROR) {
4845 		lpfc_els_free_iocb(phba, elsiocb);
4846 		return 1;
4847 	}
4848 	return 0;
4849 }
4850 
4851 /**
4852  * lpfc_els_rsp_reject - Propare and issue a rjt response iocb command
4853  * @vport: pointer to a virtual N_Port data structure.
4854  * @rejectError: reject response to issue
4855  * @oldiocb: pointer to the original lpfc command iocb data structure.
4856  * @ndlp: pointer to a node-list data structure.
4857  * @mbox: pointer to the driver internal queue element for mailbox command.
4858  *
4859  * This routine prepares and issue an Reject (RJT) response IOCB
4860  * command. If a @mbox pointer is passed in, it will be put into the
4861  * context_un.mbox field of the IOCB for the completion callback function
4862  * to issue to the HBA later.
4863  *
4864  * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
4865  * will be incremented by 1 for holding the ndlp and the reference to ndlp
4866  * will be stored into the context1 field of the IOCB for the completion
4867  * callback function to the reject response ELS IOCB command.
4868  *
4869  * Return code
4870  *   0 - Successfully issued reject response
4871  *   1 - Failed to issue reject response
4872  **/
4873 int
4874 lpfc_els_rsp_reject(struct lpfc_vport *vport, uint32_t rejectError,
4875 		    struct lpfc_iocbq *oldiocb, struct lpfc_nodelist *ndlp,
4876 		    LPFC_MBOXQ_t *mbox)
4877 {
4878 	struct lpfc_hba  *phba = vport->phba;
4879 	IOCB_t *icmd;
4880 	IOCB_t *oldcmd;
4881 	struct lpfc_iocbq *elsiocb;
4882 	uint8_t *pcmd;
4883 	uint16_t cmdsize;
4884 	int rc;
4885 
4886 	cmdsize = 2 * sizeof(uint32_t);
4887 	elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry, ndlp,
4888 				     ndlp->nlp_DID, ELS_CMD_LS_RJT);
4889 	if (!elsiocb)
4890 		return 1;
4891 
4892 	icmd = &elsiocb->iocb;
4893 	oldcmd = &oldiocb->iocb;
4894 	icmd->ulpContext = oldcmd->ulpContext;	/* Xri / rx_id */
4895 	icmd->unsli3.rcvsli3.ox_id = oldcmd->unsli3.rcvsli3.ox_id;
4896 	pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
4897 
4898 	*((uint32_t *) (pcmd)) = ELS_CMD_LS_RJT;
4899 	pcmd += sizeof(uint32_t);
4900 	*((uint32_t *) (pcmd)) = rejectError;
4901 
4902 	if (mbox)
4903 		elsiocb->context_un.mbox = mbox;
4904 
4905 	/* Xmit ELS RJT <err> response tag <ulpIoTag> */
4906 	lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
4907 			 "0129 Xmit ELS RJT x%x response tag x%x "
4908 			 "xri x%x, did x%x, nlp_flag x%x, nlp_state x%x, "
4909 			 "rpi x%x\n",
4910 			 rejectError, elsiocb->iotag,
4911 			 elsiocb->iocb.ulpContext, ndlp->nlp_DID,
4912 			 ndlp->nlp_flag, ndlp->nlp_state, ndlp->nlp_rpi);
4913 	lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
4914 		"Issue LS_RJT:    did:x%x flg:x%x err:x%x",
4915 		ndlp->nlp_DID, ndlp->nlp_flag, rejectError);
4916 
4917 	phba->fc_stat.elsXmitLSRJT++;
4918 	elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
4919 	rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
4920 
4921 	if (rc == IOCB_ERROR) {
4922 		lpfc_els_free_iocb(phba, elsiocb);
4923 		return 1;
4924 	}
4925 	return 0;
4926 }
4927 
4928 /**
4929  * lpfc_els_rsp_adisc_acc - Prepare and issue acc response to adisc iocb cmd
4930  * @vport: pointer to a virtual N_Port data structure.
4931  * @oldiocb: pointer to the original lpfc command iocb data structure.
4932  * @ndlp: pointer to a node-list data structure.
4933  *
4934  * This routine prepares and issues an Accept (ACC) response to Address
4935  * Discover (ADISC) ELS command. It simply prepares the payload of the IOCB
4936  * and invokes the lpfc_sli_issue_iocb() routine to send out the command.
4937  *
4938  * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
4939  * will be incremented by 1 for holding the ndlp and the reference to ndlp
4940  * will be stored into the context1 field of the IOCB for the completion
4941  * callback function to the ADISC Accept response ELS IOCB command.
4942  *
4943  * Return code
4944  *   0 - Successfully issued acc adisc response
4945  *   1 - Failed to issue adisc acc response
4946  **/
4947 int
4948 lpfc_els_rsp_adisc_acc(struct lpfc_vport *vport, struct lpfc_iocbq *oldiocb,
4949 		       struct lpfc_nodelist *ndlp)
4950 {
4951 	struct lpfc_hba  *phba = vport->phba;
4952 	ADISC *ap;
4953 	IOCB_t *icmd, *oldcmd;
4954 	struct lpfc_iocbq *elsiocb;
4955 	uint8_t *pcmd;
4956 	uint16_t cmdsize;
4957 	int rc;
4958 
4959 	cmdsize = sizeof(uint32_t) + sizeof(ADISC);
4960 	elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry, ndlp,
4961 				     ndlp->nlp_DID, ELS_CMD_ACC);
4962 	if (!elsiocb)
4963 		return 1;
4964 
4965 	icmd = &elsiocb->iocb;
4966 	oldcmd = &oldiocb->iocb;
4967 	icmd->ulpContext = oldcmd->ulpContext;	/* Xri / rx_id */
4968 	icmd->unsli3.rcvsli3.ox_id = oldcmd->unsli3.rcvsli3.ox_id;
4969 
4970 	/* Xmit ADISC ACC response tag <ulpIoTag> */
4971 	lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
4972 			 "0130 Xmit ADISC ACC response iotag x%x xri: "
4973 			 "x%x, did x%x, nlp_flag x%x, nlp_state x%x rpi x%x\n",
4974 			 elsiocb->iotag, elsiocb->iocb.ulpContext,
4975 			 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
4976 			 ndlp->nlp_rpi);
4977 	pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
4978 
4979 	*((uint32_t *) (pcmd)) = ELS_CMD_ACC;
4980 	pcmd += sizeof(uint32_t);
4981 
4982 	ap = (ADISC *) (pcmd);
4983 	ap->hardAL_PA = phba->fc_pref_ALPA;
4984 	memcpy(&ap->portName, &vport->fc_portname, sizeof(struct lpfc_name));
4985 	memcpy(&ap->nodeName, &vport->fc_nodename, sizeof(struct lpfc_name));
4986 	ap->DID = be32_to_cpu(vport->fc_myDID);
4987 
4988 	lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
4989 		"Issue ACC ADISC: did:x%x flg:x%x",
4990 		ndlp->nlp_DID, ndlp->nlp_flag, 0);
4991 
4992 	phba->fc_stat.elsXmitACC++;
4993 	elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
4994 	rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
4995 	if (rc == IOCB_ERROR) {
4996 		lpfc_els_free_iocb(phba, elsiocb);
4997 		return 1;
4998 	}
4999 
5000 	/* Xmit ELS ACC response tag <ulpIoTag> */
5001 	lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
5002 			 "0128 Xmit ELS ACC response Status: x%x, IoTag: x%x, "
5003 			 "XRI: x%x, DID: x%x, nlp_flag: x%x nlp_state: x%x "
5004 			 "RPI: x%x, fc_flag x%x\n",
5005 			 rc, elsiocb->iotag, elsiocb->sli4_xritag,
5006 			 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
5007 			 ndlp->nlp_rpi, vport->fc_flag);
5008 	return 0;
5009 }
5010 
5011 /**
5012  * lpfc_els_rsp_prli_acc - Prepare and issue acc response to prli iocb cmd
5013  * @vport: pointer to a virtual N_Port data structure.
5014  * @oldiocb: pointer to the original lpfc command iocb data structure.
5015  * @ndlp: pointer to a node-list data structure.
5016  *
5017  * This routine prepares and issues an Accept (ACC) response to Process
5018  * Login (PRLI) ELS command. It simply prepares the payload of the IOCB
5019  * and invokes the lpfc_sli_issue_iocb() routine to send out the command.
5020  *
5021  * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
5022  * will be incremented by 1 for holding the ndlp and the reference to ndlp
5023  * will be stored into the context1 field of the IOCB for the completion
5024  * callback function to the PRLI Accept response ELS IOCB command.
5025  *
5026  * Return code
5027  *   0 - Successfully issued acc prli response
5028  *   1 - Failed to issue acc prli response
5029  **/
5030 int
5031 lpfc_els_rsp_prli_acc(struct lpfc_vport *vport, struct lpfc_iocbq *oldiocb,
5032 		      struct lpfc_nodelist *ndlp)
5033 {
5034 	struct lpfc_hba  *phba = vport->phba;
5035 	PRLI *npr;
5036 	struct lpfc_nvme_prli *npr_nvme;
5037 	lpfc_vpd_t *vpd;
5038 	IOCB_t *icmd;
5039 	IOCB_t *oldcmd;
5040 	struct lpfc_iocbq *elsiocb;
5041 	uint8_t *pcmd;
5042 	uint16_t cmdsize;
5043 	uint32_t prli_fc4_req, *req_payload;
5044 	struct lpfc_dmabuf *req_buf;
5045 	int rc;
5046 	u32 elsrspcmd;
5047 
5048 	/* Need the incoming PRLI payload to determine if the ACC is for an
5049 	 * FC4 or NVME PRLI type.  The PRLI type is at word 1.
5050 	 */
5051 	req_buf = (struct lpfc_dmabuf *)oldiocb->context2;
5052 	req_payload = (((uint32_t *)req_buf->virt) + 1);
5053 
5054 	/* PRLI type payload is at byte 3 for FCP or NVME. */
5055 	prli_fc4_req = be32_to_cpu(*req_payload);
5056 	prli_fc4_req = (prli_fc4_req >> 24) & 0xff;
5057 	lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
5058 			 "6127 PRLI_ACC:  Req Type x%x, Word1 x%08x\n",
5059 			 prli_fc4_req, *((uint32_t *)req_payload));
5060 
5061 	if (prli_fc4_req == PRLI_FCP_TYPE) {
5062 		cmdsize = sizeof(uint32_t) + sizeof(PRLI);
5063 		elsrspcmd = (ELS_CMD_ACC | (ELS_CMD_PRLI & ~ELS_RSP_MASK));
5064 	} else if (prli_fc4_req & PRLI_NVME_TYPE) {
5065 		cmdsize = sizeof(uint32_t) + sizeof(struct lpfc_nvme_prli);
5066 		elsrspcmd = (ELS_CMD_ACC | (ELS_CMD_NVMEPRLI & ~ELS_RSP_MASK));
5067 	} else {
5068 		return 1;
5069 	}
5070 
5071 	elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry, ndlp,
5072 		ndlp->nlp_DID, elsrspcmd);
5073 	if (!elsiocb)
5074 		return 1;
5075 
5076 	icmd = &elsiocb->iocb;
5077 	oldcmd = &oldiocb->iocb;
5078 	icmd->ulpContext = oldcmd->ulpContext;	/* Xri / rx_id */
5079 	icmd->unsli3.rcvsli3.ox_id = oldcmd->unsli3.rcvsli3.ox_id;
5080 
5081 	/* Xmit PRLI ACC response tag <ulpIoTag> */
5082 	lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
5083 			 "0131 Xmit PRLI ACC response tag x%x xri x%x, "
5084 			 "did x%x, nlp_flag x%x, nlp_state x%x, rpi x%x\n",
5085 			 elsiocb->iotag, elsiocb->iocb.ulpContext,
5086 			 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
5087 			 ndlp->nlp_rpi);
5088 	pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
5089 	memset(pcmd, 0, cmdsize);
5090 
5091 	*((uint32_t *)(pcmd)) = elsrspcmd;
5092 	pcmd += sizeof(uint32_t);
5093 
5094 	/* For PRLI, remainder of payload is PRLI parameter page */
5095 	vpd = &phba->vpd;
5096 
5097 	if (prli_fc4_req == PRLI_FCP_TYPE) {
5098 		/*
5099 		 * If the remote port is a target and our firmware version
5100 		 * is 3.20 or later, set the following bits for FC-TAPE
5101 		 * support.
5102 		 */
5103 		npr = (PRLI *) pcmd;
5104 		if ((ndlp->nlp_type & NLP_FCP_TARGET) &&
5105 		    (vpd->rev.feaLevelHigh >= 0x02)) {
5106 			npr->ConfmComplAllowed = 1;
5107 			npr->Retry = 1;
5108 			npr->TaskRetryIdReq = 1;
5109 		}
5110 		npr->acceptRspCode = PRLI_REQ_EXECUTED;
5111 		npr->estabImagePair = 1;
5112 		npr->readXferRdyDis = 1;
5113 		npr->ConfmComplAllowed = 1;
5114 		npr->prliType = PRLI_FCP_TYPE;
5115 		npr->initiatorFunc = 1;
5116 	} else if (prli_fc4_req & PRLI_NVME_TYPE) {
5117 		/* Respond with an NVME PRLI Type */
5118 		npr_nvme = (struct lpfc_nvme_prli *) pcmd;
5119 		bf_set(prli_type_code, npr_nvme, PRLI_NVME_TYPE);
5120 		bf_set(prli_estabImagePair, npr_nvme, 0);  /* Should be 0 */
5121 		bf_set(prli_acc_rsp_code, npr_nvme, PRLI_REQ_EXECUTED);
5122 		if (phba->nvmet_support) {
5123 			bf_set(prli_tgt, npr_nvme, 1);
5124 			bf_set(prli_disc, npr_nvme, 1);
5125 			if (phba->cfg_nvme_enable_fb) {
5126 				bf_set(prli_fba, npr_nvme, 1);
5127 
5128 				/* TBD.  Target mode needs to post buffers
5129 				 * that support the configured first burst
5130 				 * byte size.
5131 				 */
5132 				bf_set(prli_fb_sz, npr_nvme,
5133 				       phba->cfg_nvmet_fb_size);
5134 			}
5135 		} else {
5136 			bf_set(prli_init, npr_nvme, 1);
5137 		}
5138 
5139 		lpfc_printf_vlog(vport, KERN_INFO, LOG_NVME_DISC,
5140 				 "6015 NVME issue PRLI ACC word1 x%08x "
5141 				 "word4 x%08x word5 x%08x flag x%x, "
5142 				 "fcp_info x%x nlp_type x%x\n",
5143 				 npr_nvme->word1, npr_nvme->word4,
5144 				 npr_nvme->word5, ndlp->nlp_flag,
5145 				 ndlp->nlp_fcp_info, ndlp->nlp_type);
5146 		npr_nvme->word1 = cpu_to_be32(npr_nvme->word1);
5147 		npr_nvme->word4 = cpu_to_be32(npr_nvme->word4);
5148 		npr_nvme->word5 = cpu_to_be32(npr_nvme->word5);
5149 	} else
5150 		lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
5151 				 "6128 Unknown FC_TYPE x%x x%x ndlp x%06x\n",
5152 				 prli_fc4_req, ndlp->nlp_fc4_type,
5153 				 ndlp->nlp_DID);
5154 
5155 	lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
5156 		"Issue ACC PRLI:  did:x%x flg:x%x",
5157 		ndlp->nlp_DID, ndlp->nlp_flag, 0);
5158 
5159 	phba->fc_stat.elsXmitACC++;
5160 	elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
5161 
5162 	rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
5163 	if (rc == IOCB_ERROR) {
5164 		lpfc_els_free_iocb(phba, elsiocb);
5165 		return 1;
5166 	}
5167 	return 0;
5168 }
5169 
5170 /**
5171  * lpfc_els_rsp_rnid_acc - Issue rnid acc response iocb command
5172  * @vport: pointer to a virtual N_Port data structure.
5173  * @format: rnid command format.
5174  * @oldiocb: pointer to the original lpfc command iocb data structure.
5175  * @ndlp: pointer to a node-list data structure.
5176  *
5177  * This routine issues a Request Node Identification Data (RNID) Accept
5178  * (ACC) response. It constructs the RNID ACC response command according to
5179  * the proper @format and then calls the lpfc_sli_issue_iocb() routine to
5180  * issue the response. Note that this command does not need to hold the ndlp
5181  * reference count for the callback. So, the ndlp reference count taken by
5182  * the lpfc_prep_els_iocb() routine is put back and the context1 field of
5183  * IOCB is set to NULL to indicate to the lpfc_els_free_iocb() routine that
5184  * there is no ndlp reference available.
5185  *
5186  * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
5187  * will be incremented by 1 for holding the ndlp and the reference to ndlp
5188  * will be stored into the context1 field of the IOCB for the completion
5189  * callback function. However, for the RNID Accept Response ELS command,
5190  * this is undone later by this routine after the IOCB is allocated.
5191  *
5192  * Return code
5193  *   0 - Successfully issued acc rnid response
5194  *   1 - Failed to issue acc rnid response
5195  **/
5196 static int
5197 lpfc_els_rsp_rnid_acc(struct lpfc_vport *vport, uint8_t format,
5198 		      struct lpfc_iocbq *oldiocb, struct lpfc_nodelist *ndlp)
5199 {
5200 	struct lpfc_hba  *phba = vport->phba;
5201 	RNID *rn;
5202 	IOCB_t *icmd, *oldcmd;
5203 	struct lpfc_iocbq *elsiocb;
5204 	uint8_t *pcmd;
5205 	uint16_t cmdsize;
5206 	int rc;
5207 
5208 	cmdsize = sizeof(uint32_t) + sizeof(uint32_t)
5209 					+ (2 * sizeof(struct lpfc_name));
5210 	if (format)
5211 		cmdsize += sizeof(RNID_TOP_DISC);
5212 
5213 	elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry, ndlp,
5214 				     ndlp->nlp_DID, ELS_CMD_ACC);
5215 	if (!elsiocb)
5216 		return 1;
5217 
5218 	icmd = &elsiocb->iocb;
5219 	oldcmd = &oldiocb->iocb;
5220 	icmd->ulpContext = oldcmd->ulpContext;	/* Xri / rx_id */
5221 	icmd->unsli3.rcvsli3.ox_id = oldcmd->unsli3.rcvsli3.ox_id;
5222 
5223 	/* Xmit RNID ACC response tag <ulpIoTag> */
5224 	lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
5225 			 "0132 Xmit RNID ACC response tag x%x xri x%x\n",
5226 			 elsiocb->iotag, elsiocb->iocb.ulpContext);
5227 	pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
5228 	*((uint32_t *) (pcmd)) = ELS_CMD_ACC;
5229 	pcmd += sizeof(uint32_t);
5230 
5231 	memset(pcmd, 0, sizeof(RNID));
5232 	rn = (RNID *) (pcmd);
5233 	rn->Format = format;
5234 	rn->CommonLen = (2 * sizeof(struct lpfc_name));
5235 	memcpy(&rn->portName, &vport->fc_portname, sizeof(struct lpfc_name));
5236 	memcpy(&rn->nodeName, &vport->fc_nodename, sizeof(struct lpfc_name));
5237 	switch (format) {
5238 	case 0:
5239 		rn->SpecificLen = 0;
5240 		break;
5241 	case RNID_TOPOLOGY_DISC:
5242 		rn->SpecificLen = sizeof(RNID_TOP_DISC);
5243 		memcpy(&rn->un.topologyDisc.portName,
5244 		       &vport->fc_portname, sizeof(struct lpfc_name));
5245 		rn->un.topologyDisc.unitType = RNID_HBA;
5246 		rn->un.topologyDisc.physPort = 0;
5247 		rn->un.topologyDisc.attachedNodes = 0;
5248 		break;
5249 	default:
5250 		rn->CommonLen = 0;
5251 		rn->SpecificLen = 0;
5252 		break;
5253 	}
5254 
5255 	lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
5256 		"Issue ACC RNID:  did:x%x flg:x%x",
5257 		ndlp->nlp_DID, ndlp->nlp_flag, 0);
5258 
5259 	phba->fc_stat.elsXmitACC++;
5260 	elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
5261 
5262 	rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
5263 	if (rc == IOCB_ERROR) {
5264 		lpfc_els_free_iocb(phba, elsiocb);
5265 		return 1;
5266 	}
5267 	return 0;
5268 }
5269 
5270 /**
5271  * lpfc_els_clear_rrq - Clear the rq that this rrq describes.
5272  * @vport: pointer to a virtual N_Port data structure.
5273  * @iocb: pointer to the lpfc command iocb data structure.
5274  * @ndlp: pointer to a node-list data structure.
5275  *
5276  * Return
5277  **/
5278 static void
5279 lpfc_els_clear_rrq(struct lpfc_vport *vport,
5280 		   struct lpfc_iocbq *iocb, struct lpfc_nodelist *ndlp)
5281 {
5282 	struct lpfc_hba  *phba = vport->phba;
5283 	uint8_t *pcmd;
5284 	struct RRQ *rrq;
5285 	uint16_t rxid;
5286 	uint16_t xri;
5287 	struct lpfc_node_rrq *prrq;
5288 
5289 
5290 	pcmd = (uint8_t *) (((struct lpfc_dmabuf *) iocb->context2)->virt);
5291 	pcmd += sizeof(uint32_t);
5292 	rrq = (struct RRQ *)pcmd;
5293 	rrq->rrq_exchg = be32_to_cpu(rrq->rrq_exchg);
5294 	rxid = bf_get(rrq_rxid, rrq);
5295 
5296 	lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
5297 			"2883 Clear RRQ for SID:x%x OXID:x%x RXID:x%x"
5298 			" x%x x%x\n",
5299 			be32_to_cpu(bf_get(rrq_did, rrq)),
5300 			bf_get(rrq_oxid, rrq),
5301 			rxid,
5302 			iocb->iotag, iocb->iocb.ulpContext);
5303 
5304 	lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
5305 		"Clear RRQ:  did:x%x flg:x%x exchg:x%.08x",
5306 		ndlp->nlp_DID, ndlp->nlp_flag, rrq->rrq_exchg);
5307 	if (vport->fc_myDID == be32_to_cpu(bf_get(rrq_did, rrq)))
5308 		xri = bf_get(rrq_oxid, rrq);
5309 	else
5310 		xri = rxid;
5311 	prrq = lpfc_get_active_rrq(vport, xri, ndlp->nlp_DID);
5312 	if (prrq)
5313 		lpfc_clr_rrq_active(phba, xri, prrq);
5314 	return;
5315 }
5316 
5317 /**
5318  * lpfc_els_rsp_echo_acc - Issue echo acc response
5319  * @vport: pointer to a virtual N_Port data structure.
5320  * @data: pointer to echo data to return in the accept.
5321  * @oldiocb: pointer to the original lpfc command iocb data structure.
5322  * @ndlp: pointer to a node-list data structure.
5323  *
5324  * Return code
5325  *   0 - Successfully issued acc echo response
5326  *   1 - Failed to issue acc echo response
5327  **/
5328 static int
5329 lpfc_els_rsp_echo_acc(struct lpfc_vport *vport, uint8_t *data,
5330 		      struct lpfc_iocbq *oldiocb, struct lpfc_nodelist *ndlp)
5331 {
5332 	struct lpfc_hba  *phba = vport->phba;
5333 	struct lpfc_iocbq *elsiocb;
5334 	uint8_t *pcmd;
5335 	uint16_t cmdsize;
5336 	int rc;
5337 
5338 	cmdsize = oldiocb->iocb.unsli3.rcvsli3.acc_len;
5339 
5340 	/* The accumulated length can exceed the BPL_SIZE.  For
5341 	 * now, use this as the limit
5342 	 */
5343 	if (cmdsize > LPFC_BPL_SIZE)
5344 		cmdsize = LPFC_BPL_SIZE;
5345 	elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry, ndlp,
5346 				     ndlp->nlp_DID, ELS_CMD_ACC);
5347 	if (!elsiocb)
5348 		return 1;
5349 
5350 	elsiocb->iocb.ulpContext = oldiocb->iocb.ulpContext;  /* Xri / rx_id */
5351 	elsiocb->iocb.unsli3.rcvsli3.ox_id = oldiocb->iocb.unsli3.rcvsli3.ox_id;
5352 
5353 	/* Xmit ECHO ACC response tag <ulpIoTag> */
5354 	lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
5355 			 "2876 Xmit ECHO ACC response tag x%x xri x%x\n",
5356 			 elsiocb->iotag, elsiocb->iocb.ulpContext);
5357 	pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
5358 	*((uint32_t *) (pcmd)) = ELS_CMD_ACC;
5359 	pcmd += sizeof(uint32_t);
5360 	memcpy(pcmd, data, cmdsize - sizeof(uint32_t));
5361 
5362 	lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
5363 		"Issue ACC ECHO:  did:x%x flg:x%x",
5364 		ndlp->nlp_DID, ndlp->nlp_flag, 0);
5365 
5366 	phba->fc_stat.elsXmitACC++;
5367 	elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
5368 
5369 	rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
5370 	if (rc == IOCB_ERROR) {
5371 		lpfc_els_free_iocb(phba, elsiocb);
5372 		return 1;
5373 	}
5374 	return 0;
5375 }
5376 
5377 /**
5378  * lpfc_els_disc_adisc - Issue remaining adisc iocbs to npr nodes of a vport
5379  * @vport: pointer to a host virtual N_Port data structure.
5380  *
5381  * This routine issues Address Discover (ADISC) ELS commands to those
5382  * N_Ports which are in node port recovery state and ADISC has not been issued
5383  * for the @vport. Each time an ELS ADISC IOCB is issued by invoking the
5384  * lpfc_issue_els_adisc() routine, the per @vport number of discover count
5385  * (num_disc_nodes) shall be incremented. If the num_disc_nodes reaches a
5386  * pre-configured threshold (cfg_discovery_threads), the @vport fc_flag will
5387  * be marked with FC_NLP_MORE bit and the process of issuing remaining ADISC
5388  * IOCBs quit for later pick up. On the other hand, after walking through
5389  * all the ndlps with the @vport and there is none ADISC IOCB issued, the
5390  * @vport fc_flag shall be cleared with FC_NLP_MORE bit indicating there is
5391  * no more ADISC need to be sent.
5392  *
5393  * Return code
5394  *    The number of N_Ports with adisc issued.
5395  **/
5396 int
5397 lpfc_els_disc_adisc(struct lpfc_vport *vport)
5398 {
5399 	struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
5400 	struct lpfc_nodelist *ndlp, *next_ndlp;
5401 	int sentadisc = 0;
5402 
5403 	/* go thru NPR nodes and issue any remaining ELS ADISCs */
5404 	list_for_each_entry_safe(ndlp, next_ndlp, &vport->fc_nodes, nlp_listp) {
5405 		if (!NLP_CHK_NODE_ACT(ndlp))
5406 			continue;
5407 		if (ndlp->nlp_state == NLP_STE_NPR_NODE &&
5408 		    (ndlp->nlp_flag & NLP_NPR_2B_DISC) != 0 &&
5409 		    (ndlp->nlp_flag & NLP_NPR_ADISC) != 0) {
5410 			spin_lock_irq(shost->host_lock);
5411 			ndlp->nlp_flag &= ~NLP_NPR_ADISC;
5412 			spin_unlock_irq(shost->host_lock);
5413 			ndlp->nlp_prev_state = ndlp->nlp_state;
5414 			lpfc_nlp_set_state(vport, ndlp, NLP_STE_ADISC_ISSUE);
5415 			lpfc_issue_els_adisc(vport, ndlp, 0);
5416 			sentadisc++;
5417 			vport->num_disc_nodes++;
5418 			if (vport->num_disc_nodes >=
5419 			    vport->cfg_discovery_threads) {
5420 				spin_lock_irq(shost->host_lock);
5421 				vport->fc_flag |= FC_NLP_MORE;
5422 				spin_unlock_irq(shost->host_lock);
5423 				break;
5424 			}
5425 		}
5426 	}
5427 	if (sentadisc == 0) {
5428 		spin_lock_irq(shost->host_lock);
5429 		vport->fc_flag &= ~FC_NLP_MORE;
5430 		spin_unlock_irq(shost->host_lock);
5431 	}
5432 	return sentadisc;
5433 }
5434 
5435 /**
5436  * lpfc_els_disc_plogi - Issue plogi for all npr nodes of a vport before adisc
5437  * @vport: pointer to a host virtual N_Port data structure.
5438  *
5439  * This routine issues Port Login (PLOGI) ELS commands to all the N_Ports
5440  * which are in node port recovery state, with a @vport. Each time an ELS
5441  * ADISC PLOGI IOCB is issued by invoking the lpfc_issue_els_plogi() routine,
5442  * the per @vport number of discover count (num_disc_nodes) shall be
5443  * incremented. If the num_disc_nodes reaches a pre-configured threshold
5444  * (cfg_discovery_threads), the @vport fc_flag will be marked with FC_NLP_MORE
5445  * bit set and quit the process of issuing remaining ADISC PLOGIN IOCBs for
5446  * later pick up. On the other hand, after walking through all the ndlps with
5447  * the @vport and there is none ADISC PLOGI IOCB issued, the @vport fc_flag
5448  * shall be cleared with the FC_NLP_MORE bit indicating there is no more ADISC
5449  * PLOGI need to be sent.
5450  *
5451  * Return code
5452  *   The number of N_Ports with plogi issued.
5453  **/
5454 int
5455 lpfc_els_disc_plogi(struct lpfc_vport *vport)
5456 {
5457 	struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
5458 	struct lpfc_nodelist *ndlp, *next_ndlp;
5459 	int sentplogi = 0;
5460 
5461 	/* go thru NPR nodes and issue any remaining ELS PLOGIs */
5462 	list_for_each_entry_safe(ndlp, next_ndlp, &vport->fc_nodes, nlp_listp) {
5463 		if (!NLP_CHK_NODE_ACT(ndlp))
5464 			continue;
5465 		if (ndlp->nlp_state == NLP_STE_NPR_NODE &&
5466 				(ndlp->nlp_flag & NLP_NPR_2B_DISC) != 0 &&
5467 				(ndlp->nlp_flag & NLP_DELAY_TMO) == 0 &&
5468 				(ndlp->nlp_flag & NLP_NPR_ADISC) == 0) {
5469 			ndlp->nlp_prev_state = ndlp->nlp_state;
5470 			lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
5471 			lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0);
5472 			sentplogi++;
5473 			vport->num_disc_nodes++;
5474 			if (vport->num_disc_nodes >=
5475 					vport->cfg_discovery_threads) {
5476 				spin_lock_irq(shost->host_lock);
5477 				vport->fc_flag |= FC_NLP_MORE;
5478 				spin_unlock_irq(shost->host_lock);
5479 				break;
5480 			}
5481 		}
5482 	}
5483 
5484 	lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
5485 			 "6452 Discover PLOGI %d flag x%x\n",
5486 			 sentplogi, vport->fc_flag);
5487 
5488 	if (sentplogi) {
5489 		lpfc_set_disctmo(vport);
5490 	}
5491 	else {
5492 		spin_lock_irq(shost->host_lock);
5493 		vport->fc_flag &= ~FC_NLP_MORE;
5494 		spin_unlock_irq(shost->host_lock);
5495 	}
5496 	return sentplogi;
5497 }
5498 
5499 static uint32_t
5500 lpfc_rdp_res_link_service(struct fc_rdp_link_service_desc *desc,
5501 		uint32_t word0)
5502 {
5503 
5504 	desc->tag = cpu_to_be32(RDP_LINK_SERVICE_DESC_TAG);
5505 	desc->payload.els_req = word0;
5506 	desc->length = cpu_to_be32(sizeof(desc->payload));
5507 
5508 	return sizeof(struct fc_rdp_link_service_desc);
5509 }
5510 
5511 static uint32_t
5512 lpfc_rdp_res_sfp_desc(struct fc_rdp_sfp_desc *desc,
5513 		uint8_t *page_a0, uint8_t *page_a2)
5514 {
5515 	uint16_t wavelength;
5516 	uint16_t temperature;
5517 	uint16_t rx_power;
5518 	uint16_t tx_bias;
5519 	uint16_t tx_power;
5520 	uint16_t vcc;
5521 	uint16_t flag = 0;
5522 	struct sff_trasnceiver_codes_byte4 *trasn_code_byte4;
5523 	struct sff_trasnceiver_codes_byte5 *trasn_code_byte5;
5524 
5525 	desc->tag = cpu_to_be32(RDP_SFP_DESC_TAG);
5526 
5527 	trasn_code_byte4 = (struct sff_trasnceiver_codes_byte4 *)
5528 			&page_a0[SSF_TRANSCEIVER_CODE_B4];
5529 	trasn_code_byte5 = (struct sff_trasnceiver_codes_byte5 *)
5530 			&page_a0[SSF_TRANSCEIVER_CODE_B5];
5531 
5532 	if ((trasn_code_byte4->fc_sw_laser) ||
5533 	    (trasn_code_byte5->fc_sw_laser_sl) ||
5534 	    (trasn_code_byte5->fc_sw_laser_sn)) {  /* check if its short WL */
5535 		flag |= (SFP_FLAG_PT_SWLASER << SFP_FLAG_PT_SHIFT);
5536 	} else if (trasn_code_byte4->fc_lw_laser) {
5537 		wavelength = (page_a0[SSF_WAVELENGTH_B1] << 8) |
5538 			page_a0[SSF_WAVELENGTH_B0];
5539 		if (wavelength == SFP_WAVELENGTH_LC1310)
5540 			flag |= SFP_FLAG_PT_LWLASER_LC1310 << SFP_FLAG_PT_SHIFT;
5541 		if (wavelength == SFP_WAVELENGTH_LL1550)
5542 			flag |= SFP_FLAG_PT_LWLASER_LL1550 << SFP_FLAG_PT_SHIFT;
5543 	}
5544 	/* check if its SFP+ */
5545 	flag |= ((page_a0[SSF_IDENTIFIER] == SFF_PG0_IDENT_SFP) ?
5546 			SFP_FLAG_CT_SFP_PLUS : SFP_FLAG_CT_UNKNOWN)
5547 					<< SFP_FLAG_CT_SHIFT;
5548 
5549 	/* check if its OPTICAL */
5550 	flag |= ((page_a0[SSF_CONNECTOR] == SFF_PG0_CONNECTOR_LC) ?
5551 			SFP_FLAG_IS_OPTICAL_PORT : 0)
5552 					<< SFP_FLAG_IS_OPTICAL_SHIFT;
5553 
5554 	temperature = (page_a2[SFF_TEMPERATURE_B1] << 8 |
5555 		page_a2[SFF_TEMPERATURE_B0]);
5556 	vcc = (page_a2[SFF_VCC_B1] << 8 |
5557 		page_a2[SFF_VCC_B0]);
5558 	tx_power = (page_a2[SFF_TXPOWER_B1] << 8 |
5559 		page_a2[SFF_TXPOWER_B0]);
5560 	tx_bias = (page_a2[SFF_TX_BIAS_CURRENT_B1] << 8 |
5561 		page_a2[SFF_TX_BIAS_CURRENT_B0]);
5562 	rx_power = (page_a2[SFF_RXPOWER_B1] << 8 |
5563 		page_a2[SFF_RXPOWER_B0]);
5564 	desc->sfp_info.temperature = cpu_to_be16(temperature);
5565 	desc->sfp_info.rx_power = cpu_to_be16(rx_power);
5566 	desc->sfp_info.tx_bias = cpu_to_be16(tx_bias);
5567 	desc->sfp_info.tx_power = cpu_to_be16(tx_power);
5568 	desc->sfp_info.vcc = cpu_to_be16(vcc);
5569 
5570 	desc->sfp_info.flags = cpu_to_be16(flag);
5571 	desc->length = cpu_to_be32(sizeof(desc->sfp_info));
5572 
5573 	return sizeof(struct fc_rdp_sfp_desc);
5574 }
5575 
5576 static uint32_t
5577 lpfc_rdp_res_link_error(struct fc_rdp_link_error_status_desc *desc,
5578 		READ_LNK_VAR *stat)
5579 {
5580 	uint32_t type;
5581 
5582 	desc->tag = cpu_to_be32(RDP_LINK_ERROR_STATUS_DESC_TAG);
5583 
5584 	type = VN_PT_PHY_PF_PORT << VN_PT_PHY_SHIFT;
5585 
5586 	desc->info.port_type = cpu_to_be32(type);
5587 
5588 	desc->info.link_status.link_failure_cnt =
5589 		cpu_to_be32(stat->linkFailureCnt);
5590 	desc->info.link_status.loss_of_synch_cnt =
5591 		cpu_to_be32(stat->lossSyncCnt);
5592 	desc->info.link_status.loss_of_signal_cnt =
5593 		cpu_to_be32(stat->lossSignalCnt);
5594 	desc->info.link_status.primitive_seq_proto_err =
5595 		cpu_to_be32(stat->primSeqErrCnt);
5596 	desc->info.link_status.invalid_trans_word =
5597 		cpu_to_be32(stat->invalidXmitWord);
5598 	desc->info.link_status.invalid_crc_cnt = cpu_to_be32(stat->crcCnt);
5599 
5600 	desc->length = cpu_to_be32(sizeof(desc->info));
5601 
5602 	return sizeof(struct fc_rdp_link_error_status_desc);
5603 }
5604 
5605 static uint32_t
5606 lpfc_rdp_res_bbc_desc(struct fc_rdp_bbc_desc *desc, READ_LNK_VAR *stat,
5607 		      struct lpfc_vport *vport)
5608 {
5609 	uint32_t bbCredit;
5610 
5611 	desc->tag = cpu_to_be32(RDP_BBC_DESC_TAG);
5612 
5613 	bbCredit = vport->fc_sparam.cmn.bbCreditLsb |
5614 			(vport->fc_sparam.cmn.bbCreditMsb << 8);
5615 	desc->bbc_info.port_bbc = cpu_to_be32(bbCredit);
5616 	if (vport->phba->fc_topology != LPFC_TOPOLOGY_LOOP) {
5617 		bbCredit = vport->phba->fc_fabparam.cmn.bbCreditLsb |
5618 			(vport->phba->fc_fabparam.cmn.bbCreditMsb << 8);
5619 		desc->bbc_info.attached_port_bbc = cpu_to_be32(bbCredit);
5620 	} else {
5621 		desc->bbc_info.attached_port_bbc = 0;
5622 	}
5623 
5624 	desc->bbc_info.rtt = 0;
5625 	desc->length = cpu_to_be32(sizeof(desc->bbc_info));
5626 
5627 	return sizeof(struct fc_rdp_bbc_desc);
5628 }
5629 
5630 static uint32_t
5631 lpfc_rdp_res_oed_temp_desc(struct lpfc_hba *phba,
5632 			   struct fc_rdp_oed_sfp_desc *desc, uint8_t *page_a2)
5633 {
5634 	uint32_t flags = 0;
5635 
5636 	desc->tag = cpu_to_be32(RDP_OED_DESC_TAG);
5637 
5638 	desc->oed_info.hi_alarm = page_a2[SSF_TEMP_HIGH_ALARM];
5639 	desc->oed_info.lo_alarm = page_a2[SSF_TEMP_LOW_ALARM];
5640 	desc->oed_info.hi_warning = page_a2[SSF_TEMP_HIGH_WARNING];
5641 	desc->oed_info.lo_warning = page_a2[SSF_TEMP_LOW_WARNING];
5642 
5643 	if (phba->sfp_alarm & LPFC_TRANSGRESSION_HIGH_TEMPERATURE)
5644 		flags |= RDP_OET_HIGH_ALARM;
5645 	if (phba->sfp_alarm & LPFC_TRANSGRESSION_LOW_TEMPERATURE)
5646 		flags |= RDP_OET_LOW_ALARM;
5647 	if (phba->sfp_warning & LPFC_TRANSGRESSION_HIGH_TEMPERATURE)
5648 		flags |= RDP_OET_HIGH_WARNING;
5649 	if (phba->sfp_warning & LPFC_TRANSGRESSION_LOW_TEMPERATURE)
5650 		flags |= RDP_OET_LOW_WARNING;
5651 
5652 	flags |= ((0xf & RDP_OED_TEMPERATURE) << RDP_OED_TYPE_SHIFT);
5653 	desc->oed_info.function_flags = cpu_to_be32(flags);
5654 	desc->length = cpu_to_be32(sizeof(desc->oed_info));
5655 	return sizeof(struct fc_rdp_oed_sfp_desc);
5656 }
5657 
5658 static uint32_t
5659 lpfc_rdp_res_oed_voltage_desc(struct lpfc_hba *phba,
5660 			      struct fc_rdp_oed_sfp_desc *desc,
5661 			      uint8_t *page_a2)
5662 {
5663 	uint32_t flags = 0;
5664 
5665 	desc->tag = cpu_to_be32(RDP_OED_DESC_TAG);
5666 
5667 	desc->oed_info.hi_alarm = page_a2[SSF_VOLTAGE_HIGH_ALARM];
5668 	desc->oed_info.lo_alarm = page_a2[SSF_VOLTAGE_LOW_ALARM];
5669 	desc->oed_info.hi_warning = page_a2[SSF_VOLTAGE_HIGH_WARNING];
5670 	desc->oed_info.lo_warning = page_a2[SSF_VOLTAGE_LOW_WARNING];
5671 
5672 	if (phba->sfp_alarm & LPFC_TRANSGRESSION_HIGH_VOLTAGE)
5673 		flags |= RDP_OET_HIGH_ALARM;
5674 	if (phba->sfp_alarm & LPFC_TRANSGRESSION_LOW_VOLTAGE)
5675 		flags |= RDP_OET_LOW_ALARM;
5676 	if (phba->sfp_warning & LPFC_TRANSGRESSION_HIGH_VOLTAGE)
5677 		flags |= RDP_OET_HIGH_WARNING;
5678 	if (phba->sfp_warning & LPFC_TRANSGRESSION_LOW_VOLTAGE)
5679 		flags |= RDP_OET_LOW_WARNING;
5680 
5681 	flags |= ((0xf & RDP_OED_VOLTAGE) << RDP_OED_TYPE_SHIFT);
5682 	desc->oed_info.function_flags = cpu_to_be32(flags);
5683 	desc->length = cpu_to_be32(sizeof(desc->oed_info));
5684 	return sizeof(struct fc_rdp_oed_sfp_desc);
5685 }
5686 
5687 static uint32_t
5688 lpfc_rdp_res_oed_txbias_desc(struct lpfc_hba *phba,
5689 			     struct fc_rdp_oed_sfp_desc *desc,
5690 			     uint8_t *page_a2)
5691 {
5692 	uint32_t flags = 0;
5693 
5694 	desc->tag = cpu_to_be32(RDP_OED_DESC_TAG);
5695 
5696 	desc->oed_info.hi_alarm = page_a2[SSF_BIAS_HIGH_ALARM];
5697 	desc->oed_info.lo_alarm = page_a2[SSF_BIAS_LOW_ALARM];
5698 	desc->oed_info.hi_warning = page_a2[SSF_BIAS_HIGH_WARNING];
5699 	desc->oed_info.lo_warning = page_a2[SSF_BIAS_LOW_WARNING];
5700 
5701 	if (phba->sfp_alarm & LPFC_TRANSGRESSION_HIGH_TXBIAS)
5702 		flags |= RDP_OET_HIGH_ALARM;
5703 	if (phba->sfp_alarm & LPFC_TRANSGRESSION_LOW_TXBIAS)
5704 		flags |= RDP_OET_LOW_ALARM;
5705 	if (phba->sfp_warning & LPFC_TRANSGRESSION_HIGH_TXBIAS)
5706 		flags |= RDP_OET_HIGH_WARNING;
5707 	if (phba->sfp_warning & LPFC_TRANSGRESSION_LOW_TXBIAS)
5708 		flags |= RDP_OET_LOW_WARNING;
5709 
5710 	flags |= ((0xf & RDP_OED_TXBIAS) << RDP_OED_TYPE_SHIFT);
5711 	desc->oed_info.function_flags = cpu_to_be32(flags);
5712 	desc->length = cpu_to_be32(sizeof(desc->oed_info));
5713 	return sizeof(struct fc_rdp_oed_sfp_desc);
5714 }
5715 
5716 static uint32_t
5717 lpfc_rdp_res_oed_txpower_desc(struct lpfc_hba *phba,
5718 			      struct fc_rdp_oed_sfp_desc *desc,
5719 			      uint8_t *page_a2)
5720 {
5721 	uint32_t flags = 0;
5722 
5723 	desc->tag = cpu_to_be32(RDP_OED_DESC_TAG);
5724 
5725 	desc->oed_info.hi_alarm = page_a2[SSF_TXPOWER_HIGH_ALARM];
5726 	desc->oed_info.lo_alarm = page_a2[SSF_TXPOWER_LOW_ALARM];
5727 	desc->oed_info.hi_warning = page_a2[SSF_TXPOWER_HIGH_WARNING];
5728 	desc->oed_info.lo_warning = page_a2[SSF_TXPOWER_LOW_WARNING];
5729 
5730 	if (phba->sfp_alarm & LPFC_TRANSGRESSION_HIGH_TXPOWER)
5731 		flags |= RDP_OET_HIGH_ALARM;
5732 	if (phba->sfp_alarm & LPFC_TRANSGRESSION_LOW_TXPOWER)
5733 		flags |= RDP_OET_LOW_ALARM;
5734 	if (phba->sfp_warning & LPFC_TRANSGRESSION_HIGH_TXPOWER)
5735 		flags |= RDP_OET_HIGH_WARNING;
5736 	if (phba->sfp_warning & LPFC_TRANSGRESSION_LOW_TXPOWER)
5737 		flags |= RDP_OET_LOW_WARNING;
5738 
5739 	flags |= ((0xf & RDP_OED_TXPOWER) << RDP_OED_TYPE_SHIFT);
5740 	desc->oed_info.function_flags = cpu_to_be32(flags);
5741 	desc->length = cpu_to_be32(sizeof(desc->oed_info));
5742 	return sizeof(struct fc_rdp_oed_sfp_desc);
5743 }
5744 
5745 
5746 static uint32_t
5747 lpfc_rdp_res_oed_rxpower_desc(struct lpfc_hba *phba,
5748 			      struct fc_rdp_oed_sfp_desc *desc,
5749 			      uint8_t *page_a2)
5750 {
5751 	uint32_t flags = 0;
5752 
5753 	desc->tag = cpu_to_be32(RDP_OED_DESC_TAG);
5754 
5755 	desc->oed_info.hi_alarm = page_a2[SSF_RXPOWER_HIGH_ALARM];
5756 	desc->oed_info.lo_alarm = page_a2[SSF_RXPOWER_LOW_ALARM];
5757 	desc->oed_info.hi_warning = page_a2[SSF_RXPOWER_HIGH_WARNING];
5758 	desc->oed_info.lo_warning = page_a2[SSF_RXPOWER_LOW_WARNING];
5759 
5760 	if (phba->sfp_alarm & LPFC_TRANSGRESSION_HIGH_RXPOWER)
5761 		flags |= RDP_OET_HIGH_ALARM;
5762 	if (phba->sfp_alarm & LPFC_TRANSGRESSION_LOW_RXPOWER)
5763 		flags |= RDP_OET_LOW_ALARM;
5764 	if (phba->sfp_warning & LPFC_TRANSGRESSION_HIGH_RXPOWER)
5765 		flags |= RDP_OET_HIGH_WARNING;
5766 	if (phba->sfp_warning & LPFC_TRANSGRESSION_LOW_RXPOWER)
5767 		flags |= RDP_OET_LOW_WARNING;
5768 
5769 	flags |= ((0xf & RDP_OED_RXPOWER) << RDP_OED_TYPE_SHIFT);
5770 	desc->oed_info.function_flags = cpu_to_be32(flags);
5771 	desc->length = cpu_to_be32(sizeof(desc->oed_info));
5772 	return sizeof(struct fc_rdp_oed_sfp_desc);
5773 }
5774 
5775 static uint32_t
5776 lpfc_rdp_res_opd_desc(struct fc_rdp_opd_sfp_desc *desc,
5777 		      uint8_t *page_a0, struct lpfc_vport *vport)
5778 {
5779 	desc->tag = cpu_to_be32(RDP_OPD_DESC_TAG);
5780 	memcpy(desc->opd_info.vendor_name, &page_a0[SSF_VENDOR_NAME], 16);
5781 	memcpy(desc->opd_info.model_number, &page_a0[SSF_VENDOR_PN], 16);
5782 	memcpy(desc->opd_info.serial_number, &page_a0[SSF_VENDOR_SN], 16);
5783 	memcpy(desc->opd_info.revision, &page_a0[SSF_VENDOR_REV], 4);
5784 	memcpy(desc->opd_info.date, &page_a0[SSF_DATE_CODE], 8);
5785 	desc->length = cpu_to_be32(sizeof(desc->opd_info));
5786 	return sizeof(struct fc_rdp_opd_sfp_desc);
5787 }
5788 
5789 static uint32_t
5790 lpfc_rdp_res_fec_desc(struct fc_fec_rdp_desc *desc, READ_LNK_VAR *stat)
5791 {
5792 	if (bf_get(lpfc_read_link_stat_gec2, stat) == 0)
5793 		return 0;
5794 	desc->tag = cpu_to_be32(RDP_FEC_DESC_TAG);
5795 
5796 	desc->info.CorrectedBlocks =
5797 		cpu_to_be32(stat->fecCorrBlkCount);
5798 	desc->info.UncorrectableBlocks =
5799 		cpu_to_be32(stat->fecUncorrBlkCount);
5800 
5801 	desc->length = cpu_to_be32(sizeof(desc->info));
5802 
5803 	return sizeof(struct fc_fec_rdp_desc);
5804 }
5805 
5806 static uint32_t
5807 lpfc_rdp_res_speed(struct fc_rdp_port_speed_desc *desc, struct lpfc_hba *phba)
5808 {
5809 	uint16_t rdp_cap = 0;
5810 	uint16_t rdp_speed;
5811 
5812 	desc->tag = cpu_to_be32(RDP_PORT_SPEED_DESC_TAG);
5813 
5814 	switch (phba->fc_linkspeed) {
5815 	case LPFC_LINK_SPEED_1GHZ:
5816 		rdp_speed = RDP_PS_1GB;
5817 		break;
5818 	case LPFC_LINK_SPEED_2GHZ:
5819 		rdp_speed = RDP_PS_2GB;
5820 		break;
5821 	case LPFC_LINK_SPEED_4GHZ:
5822 		rdp_speed = RDP_PS_4GB;
5823 		break;
5824 	case LPFC_LINK_SPEED_8GHZ:
5825 		rdp_speed = RDP_PS_8GB;
5826 		break;
5827 	case LPFC_LINK_SPEED_10GHZ:
5828 		rdp_speed = RDP_PS_10GB;
5829 		break;
5830 	case LPFC_LINK_SPEED_16GHZ:
5831 		rdp_speed = RDP_PS_16GB;
5832 		break;
5833 	case LPFC_LINK_SPEED_32GHZ:
5834 		rdp_speed = RDP_PS_32GB;
5835 		break;
5836 	case LPFC_LINK_SPEED_64GHZ:
5837 		rdp_speed = RDP_PS_64GB;
5838 		break;
5839 	default:
5840 		rdp_speed = RDP_PS_UNKNOWN;
5841 		break;
5842 	}
5843 
5844 	desc->info.port_speed.speed = cpu_to_be16(rdp_speed);
5845 
5846 	if (phba->lmt & LMT_128Gb)
5847 		rdp_cap |= RDP_PS_128GB;
5848 	if (phba->lmt & LMT_64Gb)
5849 		rdp_cap |= RDP_PS_64GB;
5850 	if (phba->lmt & LMT_32Gb)
5851 		rdp_cap |= RDP_PS_32GB;
5852 	if (phba->lmt & LMT_16Gb)
5853 		rdp_cap |= RDP_PS_16GB;
5854 	if (phba->lmt & LMT_10Gb)
5855 		rdp_cap |= RDP_PS_10GB;
5856 	if (phba->lmt & LMT_8Gb)
5857 		rdp_cap |= RDP_PS_8GB;
5858 	if (phba->lmt & LMT_4Gb)
5859 		rdp_cap |= RDP_PS_4GB;
5860 	if (phba->lmt & LMT_2Gb)
5861 		rdp_cap |= RDP_PS_2GB;
5862 	if (phba->lmt & LMT_1Gb)
5863 		rdp_cap |= RDP_PS_1GB;
5864 
5865 	if (rdp_cap == 0)
5866 		rdp_cap = RDP_CAP_UNKNOWN;
5867 	if (phba->cfg_link_speed != LPFC_USER_LINK_SPEED_AUTO)
5868 		rdp_cap |= RDP_CAP_USER_CONFIGURED;
5869 
5870 	desc->info.port_speed.capabilities = cpu_to_be16(rdp_cap);
5871 	desc->length = cpu_to_be32(sizeof(desc->info));
5872 	return sizeof(struct fc_rdp_port_speed_desc);
5873 }
5874 
5875 static uint32_t
5876 lpfc_rdp_res_diag_port_names(struct fc_rdp_port_name_desc *desc,
5877 		struct lpfc_vport *vport)
5878 {
5879 
5880 	desc->tag = cpu_to_be32(RDP_PORT_NAMES_DESC_TAG);
5881 
5882 	memcpy(desc->port_names.wwnn, &vport->fc_nodename,
5883 			sizeof(desc->port_names.wwnn));
5884 
5885 	memcpy(desc->port_names.wwpn, &vport->fc_portname,
5886 			sizeof(desc->port_names.wwpn));
5887 
5888 	desc->length = cpu_to_be32(sizeof(desc->port_names));
5889 	return sizeof(struct fc_rdp_port_name_desc);
5890 }
5891 
5892 static uint32_t
5893 lpfc_rdp_res_attach_port_names(struct fc_rdp_port_name_desc *desc,
5894 		struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
5895 {
5896 
5897 	desc->tag = cpu_to_be32(RDP_PORT_NAMES_DESC_TAG);
5898 	if (vport->fc_flag & FC_FABRIC) {
5899 		memcpy(desc->port_names.wwnn, &vport->fabric_nodename,
5900 		       sizeof(desc->port_names.wwnn));
5901 
5902 		memcpy(desc->port_names.wwpn, &vport->fabric_portname,
5903 		       sizeof(desc->port_names.wwpn));
5904 	} else {  /* Point to Point */
5905 		memcpy(desc->port_names.wwnn, &ndlp->nlp_nodename,
5906 		       sizeof(desc->port_names.wwnn));
5907 
5908 		memcpy(desc->port_names.wwpn, &ndlp->nlp_portname,
5909 		       sizeof(desc->port_names.wwpn));
5910 	}
5911 
5912 	desc->length = cpu_to_be32(sizeof(desc->port_names));
5913 	return sizeof(struct fc_rdp_port_name_desc);
5914 }
5915 
5916 static void
5917 lpfc_els_rdp_cmpl(struct lpfc_hba *phba, struct lpfc_rdp_context *rdp_context,
5918 		int status)
5919 {
5920 	struct lpfc_nodelist *ndlp = rdp_context->ndlp;
5921 	struct lpfc_vport *vport = ndlp->vport;
5922 	struct lpfc_iocbq *elsiocb;
5923 	struct ulp_bde64 *bpl;
5924 	IOCB_t *icmd;
5925 	uint8_t *pcmd;
5926 	struct ls_rjt *stat;
5927 	struct fc_rdp_res_frame *rdp_res;
5928 	uint32_t cmdsize, len;
5929 	uint16_t *flag_ptr;
5930 	int rc;
5931 
5932 	if (status != SUCCESS)
5933 		goto error;
5934 
5935 	/* This will change once we know the true size of the RDP payload */
5936 	cmdsize = sizeof(struct fc_rdp_res_frame);
5937 
5938 	elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize,
5939 			lpfc_max_els_tries, rdp_context->ndlp,
5940 			rdp_context->ndlp->nlp_DID, ELS_CMD_ACC);
5941 	lpfc_nlp_put(ndlp);
5942 	if (!elsiocb)
5943 		goto free_rdp_context;
5944 
5945 	icmd = &elsiocb->iocb;
5946 	icmd->ulpContext = rdp_context->rx_id;
5947 	icmd->unsli3.rcvsli3.ox_id = rdp_context->ox_id;
5948 
5949 	lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
5950 			"2171 Xmit RDP response tag x%x xri x%x, "
5951 			"did x%x, nlp_flag x%x, nlp_state x%x, rpi x%x",
5952 			elsiocb->iotag, elsiocb->iocb.ulpContext,
5953 			ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
5954 			ndlp->nlp_rpi);
5955 	rdp_res = (struct fc_rdp_res_frame *)
5956 		(((struct lpfc_dmabuf *) elsiocb->context2)->virt);
5957 	pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
5958 	memset(pcmd, 0, sizeof(struct fc_rdp_res_frame));
5959 	*((uint32_t *) (pcmd)) = ELS_CMD_ACC;
5960 
5961 	/* Update Alarm and Warning */
5962 	flag_ptr = (uint16_t *)(rdp_context->page_a2 + SSF_ALARM_FLAGS);
5963 	phba->sfp_alarm |= *flag_ptr;
5964 	flag_ptr = (uint16_t *)(rdp_context->page_a2 + SSF_WARNING_FLAGS);
5965 	phba->sfp_warning |= *flag_ptr;
5966 
5967 	/* For RDP payload */
5968 	len = 8;
5969 	len += lpfc_rdp_res_link_service((struct fc_rdp_link_service_desc *)
5970 					 (len + pcmd), ELS_CMD_RDP);
5971 
5972 	len += lpfc_rdp_res_sfp_desc((struct fc_rdp_sfp_desc *)(len + pcmd),
5973 			rdp_context->page_a0, rdp_context->page_a2);
5974 	len += lpfc_rdp_res_speed((struct fc_rdp_port_speed_desc *)(len + pcmd),
5975 				  phba);
5976 	len += lpfc_rdp_res_link_error((struct fc_rdp_link_error_status_desc *)
5977 				       (len + pcmd), &rdp_context->link_stat);
5978 	len += lpfc_rdp_res_diag_port_names((struct fc_rdp_port_name_desc *)
5979 					     (len + pcmd), vport);
5980 	len += lpfc_rdp_res_attach_port_names((struct fc_rdp_port_name_desc *)
5981 					(len + pcmd), vport, ndlp);
5982 	len += lpfc_rdp_res_fec_desc((struct fc_fec_rdp_desc *)(len + pcmd),
5983 			&rdp_context->link_stat);
5984 	len += lpfc_rdp_res_bbc_desc((struct fc_rdp_bbc_desc *)(len + pcmd),
5985 				     &rdp_context->link_stat, vport);
5986 	len += lpfc_rdp_res_oed_temp_desc(phba,
5987 				(struct fc_rdp_oed_sfp_desc *)(len + pcmd),
5988 				rdp_context->page_a2);
5989 	len += lpfc_rdp_res_oed_voltage_desc(phba,
5990 				(struct fc_rdp_oed_sfp_desc *)(len + pcmd),
5991 				rdp_context->page_a2);
5992 	len += lpfc_rdp_res_oed_txbias_desc(phba,
5993 				(struct fc_rdp_oed_sfp_desc *)(len + pcmd),
5994 				rdp_context->page_a2);
5995 	len += lpfc_rdp_res_oed_txpower_desc(phba,
5996 				(struct fc_rdp_oed_sfp_desc *)(len + pcmd),
5997 				rdp_context->page_a2);
5998 	len += lpfc_rdp_res_oed_rxpower_desc(phba,
5999 				(struct fc_rdp_oed_sfp_desc *)(len + pcmd),
6000 				rdp_context->page_a2);
6001 	len += lpfc_rdp_res_opd_desc((struct fc_rdp_opd_sfp_desc *)(len + pcmd),
6002 				     rdp_context->page_a0, vport);
6003 
6004 	rdp_res->length = cpu_to_be32(len - 8);
6005 	elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
6006 
6007 	/* Now that we know the true size of the payload, update the BPL */
6008 	bpl = (struct ulp_bde64 *)
6009 		(((struct lpfc_dmabuf *)(elsiocb->context3))->virt);
6010 	bpl->tus.f.bdeSize = len;
6011 	bpl->tus.f.bdeFlags = 0;
6012 	bpl->tus.w = le32_to_cpu(bpl->tus.w);
6013 
6014 	phba->fc_stat.elsXmitACC++;
6015 	rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
6016 	if (rc == IOCB_ERROR)
6017 		lpfc_els_free_iocb(phba, elsiocb);
6018 
6019 	kfree(rdp_context);
6020 
6021 	return;
6022 error:
6023 	cmdsize = 2 * sizeof(uint32_t);
6024 	elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, lpfc_max_els_tries,
6025 			ndlp, ndlp->nlp_DID, ELS_CMD_LS_RJT);
6026 	lpfc_nlp_put(ndlp);
6027 	if (!elsiocb)
6028 		goto free_rdp_context;
6029 
6030 	icmd = &elsiocb->iocb;
6031 	icmd->ulpContext = rdp_context->rx_id;
6032 	icmd->unsli3.rcvsli3.ox_id = rdp_context->ox_id;
6033 	pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
6034 
6035 	*((uint32_t *) (pcmd)) = ELS_CMD_LS_RJT;
6036 	stat = (struct ls_rjt *)(pcmd + sizeof(uint32_t));
6037 	stat->un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
6038 
6039 	phba->fc_stat.elsXmitLSRJT++;
6040 	elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
6041 	rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
6042 
6043 	if (rc == IOCB_ERROR)
6044 		lpfc_els_free_iocb(phba, elsiocb);
6045 free_rdp_context:
6046 	kfree(rdp_context);
6047 }
6048 
6049 static int
6050 lpfc_get_rdp_info(struct lpfc_hba *phba, struct lpfc_rdp_context *rdp_context)
6051 {
6052 	LPFC_MBOXQ_t *mbox = NULL;
6053 	int rc;
6054 
6055 	mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
6056 	if (!mbox) {
6057 		lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_ELS,
6058 				"7105 failed to allocate mailbox memory");
6059 		return 1;
6060 	}
6061 
6062 	if (lpfc_sli4_dump_page_a0(phba, mbox))
6063 		goto prep_mbox_fail;
6064 	mbox->vport = rdp_context->ndlp->vport;
6065 	mbox->mbox_cmpl = lpfc_mbx_cmpl_rdp_page_a0;
6066 	mbox->ctx_ndlp = (struct lpfc_rdp_context *)rdp_context;
6067 	rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
6068 	if (rc == MBX_NOT_FINISHED)
6069 		goto issue_mbox_fail;
6070 
6071 	return 0;
6072 
6073 prep_mbox_fail:
6074 issue_mbox_fail:
6075 	mempool_free(mbox, phba->mbox_mem_pool);
6076 	return 1;
6077 }
6078 
6079 /*
6080  * lpfc_els_rcv_rdp - Process an unsolicited RDP ELS.
6081  * @vport: pointer to a host virtual N_Port data structure.
6082  * @cmdiocb: pointer to lpfc command iocb data structure.
6083  * @ndlp: pointer to a node-list data structure.
6084  *
6085  * This routine processes an unsolicited RDP(Read Diagnostic Parameters)
6086  * IOCB. First, the payload of the unsolicited RDP is checked.
6087  * Then it will (1) send MBX_DUMP_MEMORY, Embedded DMP_LMSD sub command TYPE-3
6088  * for Page A0, (2) send MBX_DUMP_MEMORY, DMP_LMSD for Page A2,
6089  * (3) send MBX_READ_LNK_STAT to get link stat, (4) Call lpfc_els_rdp_cmpl
6090  * gather all data and send RDP response.
6091  *
6092  * Return code
6093  *   0 - Sent the acc response
6094  *   1 - Sent the reject response.
6095  */
6096 static int
6097 lpfc_els_rcv_rdp(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
6098 		struct lpfc_nodelist *ndlp)
6099 {
6100 	struct lpfc_hba *phba = vport->phba;
6101 	struct lpfc_dmabuf *pcmd;
6102 	uint8_t rjt_err, rjt_expl = LSEXP_NOTHING_MORE;
6103 	struct fc_rdp_req_frame *rdp_req;
6104 	struct lpfc_rdp_context *rdp_context;
6105 	IOCB_t *cmd = NULL;
6106 	struct ls_rjt stat;
6107 
6108 	if (phba->sli_rev < LPFC_SLI_REV4 ||
6109 	    bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf) <
6110 						LPFC_SLI_INTF_IF_TYPE_2) {
6111 		rjt_err = LSRJT_UNABLE_TPC;
6112 		rjt_expl = LSEXP_REQ_UNSUPPORTED;
6113 		goto error;
6114 	}
6115 
6116 	if (phba->sli_rev < LPFC_SLI_REV4 || (phba->hba_flag & HBA_FCOE_MODE)) {
6117 		rjt_err = LSRJT_UNABLE_TPC;
6118 		rjt_expl = LSEXP_REQ_UNSUPPORTED;
6119 		goto error;
6120 	}
6121 
6122 	pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
6123 	rdp_req = (struct fc_rdp_req_frame *) pcmd->virt;
6124 
6125 	lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
6126 			 "2422 ELS RDP Request "
6127 			 "dec len %d tag x%x port_id %d len %d\n",
6128 			 be32_to_cpu(rdp_req->rdp_des_length),
6129 			 be32_to_cpu(rdp_req->nport_id_desc.tag),
6130 			 be32_to_cpu(rdp_req->nport_id_desc.nport_id),
6131 			 be32_to_cpu(rdp_req->nport_id_desc.length));
6132 
6133 	if (sizeof(struct fc_rdp_nport_desc) !=
6134 			be32_to_cpu(rdp_req->rdp_des_length))
6135 		goto rjt_logerr;
6136 	if (RDP_N_PORT_DESC_TAG != be32_to_cpu(rdp_req->nport_id_desc.tag))
6137 		goto rjt_logerr;
6138 	if (RDP_NPORT_ID_SIZE !=
6139 			be32_to_cpu(rdp_req->nport_id_desc.length))
6140 		goto rjt_logerr;
6141 	rdp_context = kzalloc(sizeof(struct lpfc_rdp_context), GFP_KERNEL);
6142 	if (!rdp_context) {
6143 		rjt_err = LSRJT_UNABLE_TPC;
6144 		goto error;
6145 	}
6146 
6147 	cmd = &cmdiocb->iocb;
6148 	rdp_context->ndlp = lpfc_nlp_get(ndlp);
6149 	rdp_context->ox_id = cmd->unsli3.rcvsli3.ox_id;
6150 	rdp_context->rx_id = cmd->ulpContext;
6151 	rdp_context->cmpl = lpfc_els_rdp_cmpl;
6152 	if (lpfc_get_rdp_info(phba, rdp_context)) {
6153 		lpfc_printf_vlog(ndlp->vport, KERN_WARNING, LOG_ELS,
6154 				 "2423 Unable to send mailbox");
6155 		kfree(rdp_context);
6156 		rjt_err = LSRJT_UNABLE_TPC;
6157 		lpfc_nlp_put(ndlp);
6158 		goto error;
6159 	}
6160 
6161 	return 0;
6162 
6163 rjt_logerr:
6164 	rjt_err = LSRJT_LOGICAL_ERR;
6165 
6166 error:
6167 	memset(&stat, 0, sizeof(stat));
6168 	stat.un.b.lsRjtRsnCode = rjt_err;
6169 	stat.un.b.lsRjtRsnCodeExp = rjt_expl;
6170 	lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
6171 	return 1;
6172 }
6173 
6174 
6175 static void
6176 lpfc_els_lcb_rsp(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
6177 {
6178 	MAILBOX_t *mb;
6179 	IOCB_t *icmd;
6180 	uint8_t *pcmd;
6181 	struct lpfc_iocbq *elsiocb;
6182 	struct lpfc_nodelist *ndlp;
6183 	struct ls_rjt *stat;
6184 	union lpfc_sli4_cfg_shdr *shdr;
6185 	struct lpfc_lcb_context *lcb_context;
6186 	struct fc_lcb_res_frame *lcb_res;
6187 	uint32_t cmdsize, shdr_status, shdr_add_status;
6188 	int rc;
6189 
6190 	mb = &pmb->u.mb;
6191 	lcb_context = (struct lpfc_lcb_context *)pmb->ctx_ndlp;
6192 	ndlp = lcb_context->ndlp;
6193 	pmb->ctx_ndlp = NULL;
6194 	pmb->ctx_buf = NULL;
6195 
6196 	shdr = (union lpfc_sli4_cfg_shdr *)
6197 			&pmb->u.mqe.un.beacon_config.header.cfg_shdr;
6198 	shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
6199 	shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
6200 
6201 	lpfc_printf_log(phba, KERN_INFO, LOG_MBOX,
6202 				"0194 SET_BEACON_CONFIG mailbox "
6203 				"completed with status x%x add_status x%x,"
6204 				" mbx status x%x\n",
6205 				shdr_status, shdr_add_status, mb->mbxStatus);
6206 
6207 	if ((mb->mbxStatus != MBX_SUCCESS) || shdr_status ||
6208 	    (shdr_add_status == ADD_STATUS_OPERATION_ALREADY_ACTIVE) ||
6209 	    (shdr_add_status == ADD_STATUS_INVALID_REQUEST)) {
6210 		mempool_free(pmb, phba->mbox_mem_pool);
6211 		goto error;
6212 	}
6213 
6214 	mempool_free(pmb, phba->mbox_mem_pool);
6215 	cmdsize = sizeof(struct fc_lcb_res_frame);
6216 	elsiocb = lpfc_prep_els_iocb(phba->pport, 0, cmdsize,
6217 			lpfc_max_els_tries, ndlp,
6218 			ndlp->nlp_DID, ELS_CMD_ACC);
6219 
6220 	/* Decrement the ndlp reference count from previous mbox command */
6221 	lpfc_nlp_put(ndlp);
6222 
6223 	if (!elsiocb)
6224 		goto free_lcb_context;
6225 
6226 	lcb_res = (struct fc_lcb_res_frame *)
6227 		(((struct lpfc_dmabuf *)elsiocb->context2)->virt);
6228 
6229 	memset(lcb_res, 0, sizeof(struct fc_lcb_res_frame));
6230 	icmd = &elsiocb->iocb;
6231 	icmd->ulpContext = lcb_context->rx_id;
6232 	icmd->unsli3.rcvsli3.ox_id = lcb_context->ox_id;
6233 
6234 	pcmd = (uint8_t *)(((struct lpfc_dmabuf *)elsiocb->context2)->virt);
6235 	*((uint32_t *)(pcmd)) = ELS_CMD_ACC;
6236 	lcb_res->lcb_sub_command = lcb_context->sub_command;
6237 	lcb_res->lcb_type = lcb_context->type;
6238 	lcb_res->capability = lcb_context->capability;
6239 	lcb_res->lcb_frequency = lcb_context->frequency;
6240 	lcb_res->lcb_duration = lcb_context->duration;
6241 	elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
6242 	phba->fc_stat.elsXmitACC++;
6243 	rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
6244 	if (rc == IOCB_ERROR)
6245 		lpfc_els_free_iocb(phba, elsiocb);
6246 
6247 	kfree(lcb_context);
6248 	return;
6249 
6250 error:
6251 	cmdsize = sizeof(struct fc_lcb_res_frame);
6252 	elsiocb = lpfc_prep_els_iocb(phba->pport, 0, cmdsize,
6253 			lpfc_max_els_tries, ndlp,
6254 			ndlp->nlp_DID, ELS_CMD_LS_RJT);
6255 	lpfc_nlp_put(ndlp);
6256 	if (!elsiocb)
6257 		goto free_lcb_context;
6258 
6259 	icmd = &elsiocb->iocb;
6260 	icmd->ulpContext = lcb_context->rx_id;
6261 	icmd->unsli3.rcvsli3.ox_id = lcb_context->ox_id;
6262 	pcmd = (uint8_t *)(((struct lpfc_dmabuf *)elsiocb->context2)->virt);
6263 
6264 	*((uint32_t *)(pcmd)) = ELS_CMD_LS_RJT;
6265 	stat = (struct ls_rjt *)(pcmd + sizeof(uint32_t));
6266 	stat->un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
6267 
6268 	if (shdr_add_status == ADD_STATUS_OPERATION_ALREADY_ACTIVE)
6269 		stat->un.b.lsRjtRsnCodeExp = LSEXP_CMD_IN_PROGRESS;
6270 
6271 	elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
6272 	phba->fc_stat.elsXmitLSRJT++;
6273 	rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
6274 	if (rc == IOCB_ERROR)
6275 		lpfc_els_free_iocb(phba, elsiocb);
6276 free_lcb_context:
6277 	kfree(lcb_context);
6278 }
6279 
6280 static int
6281 lpfc_sli4_set_beacon(struct lpfc_vport *vport,
6282 		     struct lpfc_lcb_context *lcb_context,
6283 		     uint32_t beacon_state)
6284 {
6285 	struct lpfc_hba *phba = vport->phba;
6286 	union lpfc_sli4_cfg_shdr *cfg_shdr;
6287 	LPFC_MBOXQ_t *mbox = NULL;
6288 	uint32_t len;
6289 	int rc;
6290 
6291 	mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
6292 	if (!mbox)
6293 		return 1;
6294 
6295 	cfg_shdr = &mbox->u.mqe.un.sli4_config.header.cfg_shdr;
6296 	len = sizeof(struct lpfc_mbx_set_beacon_config) -
6297 		sizeof(struct lpfc_sli4_cfg_mhdr);
6298 	lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
6299 			 LPFC_MBOX_OPCODE_SET_BEACON_CONFIG, len,
6300 			 LPFC_SLI4_MBX_EMBED);
6301 	mbox->ctx_ndlp = (void *)lcb_context;
6302 	mbox->vport = phba->pport;
6303 	mbox->mbox_cmpl = lpfc_els_lcb_rsp;
6304 	bf_set(lpfc_mbx_set_beacon_port_num, &mbox->u.mqe.un.beacon_config,
6305 	       phba->sli4_hba.physical_port);
6306 	bf_set(lpfc_mbx_set_beacon_state, &mbox->u.mqe.un.beacon_config,
6307 	       beacon_state);
6308 	mbox->u.mqe.un.beacon_config.word5 = 0;		/* Reserved */
6309 
6310 	/*
6311 	 *	Check bv1s bit before issuing the mailbox
6312 	 *	if bv1s == 1, LCB V1 supported
6313 	 *	else, LCB V0 supported
6314 	 */
6315 
6316 	if (phba->sli4_hba.pc_sli4_params.bv1s) {
6317 		/* COMMON_SET_BEACON_CONFIG_V1 */
6318 		cfg_shdr->request.word9 = BEACON_VERSION_V1;
6319 		lcb_context->capability |= LCB_CAPABILITY_DURATION;
6320 		bf_set(lpfc_mbx_set_beacon_port_type,
6321 		       &mbox->u.mqe.un.beacon_config, 0);
6322 		bf_set(lpfc_mbx_set_beacon_duration_v1,
6323 		       &mbox->u.mqe.un.beacon_config,
6324 		       be16_to_cpu(lcb_context->duration));
6325 	} else {
6326 		/* COMMON_SET_BEACON_CONFIG_V0 */
6327 		if (be16_to_cpu(lcb_context->duration) != 0) {
6328 			mempool_free(mbox, phba->mbox_mem_pool);
6329 			return 1;
6330 		}
6331 		cfg_shdr->request.word9 = BEACON_VERSION_V0;
6332 		lcb_context->capability &=  ~(LCB_CAPABILITY_DURATION);
6333 		bf_set(lpfc_mbx_set_beacon_state,
6334 		       &mbox->u.mqe.un.beacon_config, beacon_state);
6335 		bf_set(lpfc_mbx_set_beacon_port_type,
6336 		       &mbox->u.mqe.un.beacon_config, 1);
6337 		bf_set(lpfc_mbx_set_beacon_duration,
6338 		       &mbox->u.mqe.un.beacon_config,
6339 		       be16_to_cpu(lcb_context->duration));
6340 	}
6341 
6342 	rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
6343 	if (rc == MBX_NOT_FINISHED) {
6344 		mempool_free(mbox, phba->mbox_mem_pool);
6345 		return 1;
6346 	}
6347 
6348 	return 0;
6349 }
6350 
6351 
6352 /**
6353  * lpfc_els_rcv_lcb - Process an unsolicited LCB
6354  * @vport: pointer to a host virtual N_Port data structure.
6355  * @cmdiocb: pointer to lpfc command iocb data structure.
6356  * @ndlp: pointer to a node-list data structure.
6357  *
6358  * This routine processes an unsolicited LCB(LINK CABLE BEACON) IOCB.
6359  * First, the payload of the unsolicited LCB is checked.
6360  * Then based on Subcommand beacon will either turn on or off.
6361  *
6362  * Return code
6363  * 0 - Sent the acc response
6364  * 1 - Sent the reject response.
6365  **/
6366 static int
6367 lpfc_els_rcv_lcb(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
6368 		 struct lpfc_nodelist *ndlp)
6369 {
6370 	struct lpfc_hba *phba = vport->phba;
6371 	struct lpfc_dmabuf *pcmd;
6372 	uint8_t *lp;
6373 	struct fc_lcb_request_frame *beacon;
6374 	struct lpfc_lcb_context *lcb_context;
6375 	uint8_t state, rjt_err;
6376 	struct ls_rjt stat;
6377 
6378 	pcmd = (struct lpfc_dmabuf *)cmdiocb->context2;
6379 	lp = (uint8_t *)pcmd->virt;
6380 	beacon = (struct fc_lcb_request_frame *)pcmd->virt;
6381 
6382 	lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
6383 			"0192 ELS LCB Data x%x x%x x%x x%x sub x%x "
6384 			"type x%x frequency %x duration x%x\n",
6385 			lp[0], lp[1], lp[2],
6386 			beacon->lcb_command,
6387 			beacon->lcb_sub_command,
6388 			beacon->lcb_type,
6389 			beacon->lcb_frequency,
6390 			be16_to_cpu(beacon->lcb_duration));
6391 
6392 	if (beacon->lcb_sub_command != LPFC_LCB_ON &&
6393 	    beacon->lcb_sub_command != LPFC_LCB_OFF) {
6394 		rjt_err = LSRJT_CMD_UNSUPPORTED;
6395 		goto rjt;
6396 	}
6397 
6398 	if (phba->sli_rev < LPFC_SLI_REV4  ||
6399 	    phba->hba_flag & HBA_FCOE_MODE ||
6400 	    (bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf) <
6401 	    LPFC_SLI_INTF_IF_TYPE_2)) {
6402 		rjt_err = LSRJT_CMD_UNSUPPORTED;
6403 		goto rjt;
6404 	}
6405 
6406 	lcb_context = kmalloc(sizeof(*lcb_context), GFP_KERNEL);
6407 	if (!lcb_context) {
6408 		rjt_err = LSRJT_UNABLE_TPC;
6409 		goto rjt;
6410 	}
6411 
6412 	state = (beacon->lcb_sub_command == LPFC_LCB_ON) ? 1 : 0;
6413 	lcb_context->sub_command = beacon->lcb_sub_command;
6414 	lcb_context->capability	= 0;
6415 	lcb_context->type = beacon->lcb_type;
6416 	lcb_context->frequency = beacon->lcb_frequency;
6417 	lcb_context->duration = beacon->lcb_duration;
6418 	lcb_context->ox_id = cmdiocb->iocb.unsli3.rcvsli3.ox_id;
6419 	lcb_context->rx_id = cmdiocb->iocb.ulpContext;
6420 	lcb_context->ndlp = lpfc_nlp_get(ndlp);
6421 	if (lpfc_sli4_set_beacon(vport, lcb_context, state)) {
6422 		lpfc_printf_vlog(ndlp->vport, KERN_ERR, LOG_TRACE_EVENT,
6423 				 "0193 failed to send mail box");
6424 		kfree(lcb_context);
6425 		lpfc_nlp_put(ndlp);
6426 		rjt_err = LSRJT_UNABLE_TPC;
6427 		goto rjt;
6428 	}
6429 	return 0;
6430 rjt:
6431 	memset(&stat, 0, sizeof(stat));
6432 	stat.un.b.lsRjtRsnCode = rjt_err;
6433 	lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
6434 	return 1;
6435 }
6436 
6437 
6438 /**
6439  * lpfc_els_flush_rscn - Clean up any rscn activities with a vport
6440  * @vport: pointer to a host virtual N_Port data structure.
6441  *
6442  * This routine cleans up any Registration State Change Notification
6443  * (RSCN) activity with a @vport. Note that the fc_rscn_flush flag of the
6444  * @vport together with the host_lock is used to prevent multiple thread
6445  * trying to access the RSCN array on a same @vport at the same time.
6446  **/
6447 void
6448 lpfc_els_flush_rscn(struct lpfc_vport *vport)
6449 {
6450 	struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
6451 	struct lpfc_hba  *phba = vport->phba;
6452 	int i;
6453 
6454 	spin_lock_irq(shost->host_lock);
6455 	if (vport->fc_rscn_flush) {
6456 		/* Another thread is walking fc_rscn_id_list on this vport */
6457 		spin_unlock_irq(shost->host_lock);
6458 		return;
6459 	}
6460 	/* Indicate we are walking lpfc_els_flush_rscn on this vport */
6461 	vport->fc_rscn_flush = 1;
6462 	spin_unlock_irq(shost->host_lock);
6463 
6464 	for (i = 0; i < vport->fc_rscn_id_cnt; i++) {
6465 		lpfc_in_buf_free(phba, vport->fc_rscn_id_list[i]);
6466 		vport->fc_rscn_id_list[i] = NULL;
6467 	}
6468 	spin_lock_irq(shost->host_lock);
6469 	vport->fc_rscn_id_cnt = 0;
6470 	vport->fc_flag &= ~(FC_RSCN_MODE | FC_RSCN_DISCOVERY);
6471 	spin_unlock_irq(shost->host_lock);
6472 	lpfc_can_disctmo(vport);
6473 	/* Indicate we are done walking this fc_rscn_id_list */
6474 	vport->fc_rscn_flush = 0;
6475 }
6476 
6477 /**
6478  * lpfc_rscn_payload_check - Check whether there is a pending rscn to a did
6479  * @vport: pointer to a host virtual N_Port data structure.
6480  * @did: remote destination port identifier.
6481  *
6482  * This routine checks whether there is any pending Registration State
6483  * Configuration Notification (RSCN) to a @did on @vport.
6484  *
6485  * Return code
6486  *   None zero - The @did matched with a pending rscn
6487  *   0 - not able to match @did with a pending rscn
6488  **/
6489 int
6490 lpfc_rscn_payload_check(struct lpfc_vport *vport, uint32_t did)
6491 {
6492 	D_ID ns_did;
6493 	D_ID rscn_did;
6494 	uint32_t *lp;
6495 	uint32_t payload_len, i;
6496 	struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
6497 
6498 	ns_did.un.word = did;
6499 
6500 	/* Never match fabric nodes for RSCNs */
6501 	if ((did & Fabric_DID_MASK) == Fabric_DID_MASK)
6502 		return 0;
6503 
6504 	/* If we are doing a FULL RSCN rediscovery, match everything */
6505 	if (vport->fc_flag & FC_RSCN_DISCOVERY)
6506 		return did;
6507 
6508 	spin_lock_irq(shost->host_lock);
6509 	if (vport->fc_rscn_flush) {
6510 		/* Another thread is walking fc_rscn_id_list on this vport */
6511 		spin_unlock_irq(shost->host_lock);
6512 		return 0;
6513 	}
6514 	/* Indicate we are walking fc_rscn_id_list on this vport */
6515 	vport->fc_rscn_flush = 1;
6516 	spin_unlock_irq(shost->host_lock);
6517 	for (i = 0; i < vport->fc_rscn_id_cnt; i++) {
6518 		lp = vport->fc_rscn_id_list[i]->virt;
6519 		payload_len = be32_to_cpu(*lp++ & ~ELS_CMD_MASK);
6520 		payload_len -= sizeof(uint32_t);	/* take off word 0 */
6521 		while (payload_len) {
6522 			rscn_did.un.word = be32_to_cpu(*lp++);
6523 			payload_len -= sizeof(uint32_t);
6524 			switch (rscn_did.un.b.resv & RSCN_ADDRESS_FORMAT_MASK) {
6525 			case RSCN_ADDRESS_FORMAT_PORT:
6526 				if ((ns_did.un.b.domain == rscn_did.un.b.domain)
6527 				    && (ns_did.un.b.area == rscn_did.un.b.area)
6528 				    && (ns_did.un.b.id == rscn_did.un.b.id))
6529 					goto return_did_out;
6530 				break;
6531 			case RSCN_ADDRESS_FORMAT_AREA:
6532 				if ((ns_did.un.b.domain == rscn_did.un.b.domain)
6533 				    && (ns_did.un.b.area == rscn_did.un.b.area))
6534 					goto return_did_out;
6535 				break;
6536 			case RSCN_ADDRESS_FORMAT_DOMAIN:
6537 				if (ns_did.un.b.domain == rscn_did.un.b.domain)
6538 					goto return_did_out;
6539 				break;
6540 			case RSCN_ADDRESS_FORMAT_FABRIC:
6541 				goto return_did_out;
6542 			}
6543 		}
6544 	}
6545 	/* Indicate we are done with walking fc_rscn_id_list on this vport */
6546 	vport->fc_rscn_flush = 0;
6547 	return 0;
6548 return_did_out:
6549 	/* Indicate we are done with walking fc_rscn_id_list on this vport */
6550 	vport->fc_rscn_flush = 0;
6551 	return did;
6552 }
6553 
6554 /**
6555  * lpfc_rscn_recovery_check - Send recovery event to vport nodes matching rscn
6556  * @vport: pointer to a host virtual N_Port data structure.
6557  *
6558  * This routine sends recovery (NLP_EVT_DEVICE_RECOVERY) event to the
6559  * state machine for a @vport's nodes that are with pending RSCN (Registration
6560  * State Change Notification).
6561  *
6562  * Return code
6563  *   0 - Successful (currently alway return 0)
6564  **/
6565 static int
6566 lpfc_rscn_recovery_check(struct lpfc_vport *vport)
6567 {
6568 	struct lpfc_nodelist *ndlp = NULL;
6569 
6570 	/* Move all affected nodes by pending RSCNs to NPR state. */
6571 	list_for_each_entry(ndlp, &vport->fc_nodes, nlp_listp) {
6572 		if (!NLP_CHK_NODE_ACT(ndlp) ||
6573 		    (ndlp->nlp_state == NLP_STE_UNUSED_NODE) ||
6574 		    !lpfc_rscn_payload_check(vport, ndlp->nlp_DID))
6575 			continue;
6576 
6577 		/* NVME Target mode does not do RSCN Recovery. */
6578 		if (vport->phba->nvmet_support)
6579 			continue;
6580 
6581 		/* If we are in the process of doing discovery on this
6582 		 * NPort, let it continue on its own.
6583 		 */
6584 		switch (ndlp->nlp_state) {
6585 		case  NLP_STE_PLOGI_ISSUE:
6586 		case  NLP_STE_ADISC_ISSUE:
6587 		case  NLP_STE_REG_LOGIN_ISSUE:
6588 		case  NLP_STE_PRLI_ISSUE:
6589 		case  NLP_STE_LOGO_ISSUE:
6590 			continue;
6591 		}
6592 
6593 		/* Check to see if we need to NVME rescan this target
6594 		 * remoteport.
6595 		 */
6596 		if (ndlp->nlp_fc4_type & NLP_FC4_NVME &&
6597 		    ndlp->nlp_type & (NLP_NVME_TARGET | NLP_NVME_DISCOVERY))
6598 			lpfc_nvme_rescan_port(vport, ndlp);
6599 
6600 		lpfc_disc_state_machine(vport, ndlp, NULL,
6601 					NLP_EVT_DEVICE_RECOVERY);
6602 		lpfc_cancel_retry_delay_tmo(vport, ndlp);
6603 	}
6604 	return 0;
6605 }
6606 
6607 /**
6608  * lpfc_send_rscn_event - Send an RSCN event to management application
6609  * @vport: pointer to a host virtual N_Port data structure.
6610  * @cmdiocb: pointer to lpfc command iocb data structure.
6611  *
6612  * lpfc_send_rscn_event sends an RSCN netlink event to management
6613  * applications.
6614  */
6615 static void
6616 lpfc_send_rscn_event(struct lpfc_vport *vport,
6617 		struct lpfc_iocbq *cmdiocb)
6618 {
6619 	struct lpfc_dmabuf *pcmd;
6620 	struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
6621 	uint32_t *payload_ptr;
6622 	uint32_t payload_len;
6623 	struct lpfc_rscn_event_header *rscn_event_data;
6624 
6625 	pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
6626 	payload_ptr = (uint32_t *) pcmd->virt;
6627 	payload_len = be32_to_cpu(*payload_ptr & ~ELS_CMD_MASK);
6628 
6629 	rscn_event_data = kmalloc(sizeof(struct lpfc_rscn_event_header) +
6630 		payload_len, GFP_KERNEL);
6631 	if (!rscn_event_data) {
6632 		lpfc_printf_vlog(vport, KERN_ERR, LOG_TRACE_EVENT,
6633 			"0147 Failed to allocate memory for RSCN event\n");
6634 		return;
6635 	}
6636 	rscn_event_data->event_type = FC_REG_RSCN_EVENT;
6637 	rscn_event_data->payload_length = payload_len;
6638 	memcpy(rscn_event_data->rscn_payload, payload_ptr,
6639 		payload_len);
6640 
6641 	fc_host_post_vendor_event(shost,
6642 		fc_get_event_number(),
6643 		sizeof(struct lpfc_rscn_event_header) + payload_len,
6644 		(char *)rscn_event_data,
6645 		LPFC_NL_VENDOR_ID);
6646 
6647 	kfree(rscn_event_data);
6648 }
6649 
6650 /**
6651  * lpfc_els_rcv_rscn - Process an unsolicited rscn iocb
6652  * @vport: pointer to a host virtual N_Port data structure.
6653  * @cmdiocb: pointer to lpfc command iocb data structure.
6654  * @ndlp: pointer to a node-list data structure.
6655  *
6656  * This routine processes an unsolicited RSCN (Registration State Change
6657  * Notification) IOCB. First, the payload of the unsolicited RSCN is walked
6658  * to invoke fc_host_post_event() routine to the FC transport layer. If the
6659  * discover state machine is about to begin discovery, it just accepts the
6660  * RSCN and the discovery process will satisfy the RSCN. If this RSCN only
6661  * contains N_Port IDs for other vports on this HBA, it just accepts the
6662  * RSCN and ignore processing it. If the state machine is in the recovery
6663  * state, the fc_rscn_id_list of this @vport is walked and the
6664  * lpfc_rscn_recovery_check() routine is invoked to send recovery event for
6665  * all nodes that match RSCN payload. Otherwise, the lpfc_els_handle_rscn()
6666  * routine is invoked to handle the RSCN event.
6667  *
6668  * Return code
6669  *   0 - Just sent the acc response
6670  *   1 - Sent the acc response and waited for name server completion
6671  **/
6672 static int
6673 lpfc_els_rcv_rscn(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
6674 		  struct lpfc_nodelist *ndlp)
6675 {
6676 	struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
6677 	struct lpfc_hba  *phba = vport->phba;
6678 	struct lpfc_dmabuf *pcmd;
6679 	uint32_t *lp, *datap;
6680 	uint32_t payload_len, length, nportid, *cmd;
6681 	int rscn_cnt;
6682 	int rscn_id = 0, hba_id = 0;
6683 	int i, tmo;
6684 
6685 	pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
6686 	lp = (uint32_t *) pcmd->virt;
6687 
6688 	payload_len = be32_to_cpu(*lp++ & ~ELS_CMD_MASK);
6689 	payload_len -= sizeof(uint32_t);	/* take off word 0 */
6690 	/* RSCN received */
6691 	lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
6692 			 "0214 RSCN received Data: x%x x%x x%x x%x\n",
6693 			 vport->fc_flag, payload_len, *lp,
6694 			 vport->fc_rscn_id_cnt);
6695 
6696 	/* Send an RSCN event to the management application */
6697 	lpfc_send_rscn_event(vport, cmdiocb);
6698 
6699 	for (i = 0; i < payload_len/sizeof(uint32_t); i++)
6700 		fc_host_post_event(shost, fc_get_event_number(),
6701 			FCH_EVT_RSCN, lp[i]);
6702 
6703 	/* Check if RSCN is coming from a direct-connected remote NPort */
6704 	if (vport->fc_flag & FC_PT2PT) {
6705 		/* If so, just ACC it, no other action needed for now */
6706 		lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
6707 				 "2024 pt2pt RSCN %08x Data: x%x x%x\n",
6708 				 *lp, vport->fc_flag, payload_len);
6709 		lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
6710 
6711 		/* Check to see if we need to NVME rescan this target
6712 		 * remoteport.
6713 		 */
6714 		if (ndlp->nlp_fc4_type & NLP_FC4_NVME &&
6715 		    ndlp->nlp_type & (NLP_NVME_TARGET | NLP_NVME_DISCOVERY))
6716 			lpfc_nvme_rescan_port(vport, ndlp);
6717 		return 0;
6718 	}
6719 
6720 	/* If we are about to begin discovery, just ACC the RSCN.
6721 	 * Discovery processing will satisfy it.
6722 	 */
6723 	if (vport->port_state <= LPFC_NS_QRY) {
6724 		lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6725 			"RCV RSCN ignore: did:x%x/ste:x%x flg:x%x",
6726 			ndlp->nlp_DID, vport->port_state, ndlp->nlp_flag);
6727 
6728 		lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
6729 		return 0;
6730 	}
6731 
6732 	/* If this RSCN just contains NPortIDs for other vports on this HBA,
6733 	 * just ACC and ignore it.
6734 	 */
6735 	if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
6736 		!(vport->cfg_peer_port_login)) {
6737 		i = payload_len;
6738 		datap = lp;
6739 		while (i > 0) {
6740 			nportid = *datap++;
6741 			nportid = ((be32_to_cpu(nportid)) & Mask_DID);
6742 			i -= sizeof(uint32_t);
6743 			rscn_id++;
6744 			if (lpfc_find_vport_by_did(phba, nportid))
6745 				hba_id++;
6746 		}
6747 		if (rscn_id == hba_id) {
6748 			/* ALL NPortIDs in RSCN are on HBA */
6749 			lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
6750 					 "0219 Ignore RSCN "
6751 					 "Data: x%x x%x x%x x%x\n",
6752 					 vport->fc_flag, payload_len,
6753 					 *lp, vport->fc_rscn_id_cnt);
6754 			lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6755 				"RCV RSCN vport:  did:x%x/ste:x%x flg:x%x",
6756 				ndlp->nlp_DID, vport->port_state,
6757 				ndlp->nlp_flag);
6758 
6759 			lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb,
6760 				ndlp, NULL);
6761 			return 0;
6762 		}
6763 	}
6764 
6765 	spin_lock_irq(shost->host_lock);
6766 	if (vport->fc_rscn_flush) {
6767 		/* Another thread is walking fc_rscn_id_list on this vport */
6768 		vport->fc_flag |= FC_RSCN_DISCOVERY;
6769 		spin_unlock_irq(shost->host_lock);
6770 		/* Send back ACC */
6771 		lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
6772 		return 0;
6773 	}
6774 	/* Indicate we are walking fc_rscn_id_list on this vport */
6775 	vport->fc_rscn_flush = 1;
6776 	spin_unlock_irq(shost->host_lock);
6777 	/* Get the array count after successfully have the token */
6778 	rscn_cnt = vport->fc_rscn_id_cnt;
6779 	/* If we are already processing an RSCN, save the received
6780 	 * RSCN payload buffer, cmdiocb->context2 to process later.
6781 	 */
6782 	if (vport->fc_flag & (FC_RSCN_MODE | FC_NDISC_ACTIVE)) {
6783 		lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6784 			"RCV RSCN defer:  did:x%x/ste:x%x flg:x%x",
6785 			ndlp->nlp_DID, vport->port_state, ndlp->nlp_flag);
6786 
6787 		spin_lock_irq(shost->host_lock);
6788 		vport->fc_flag |= FC_RSCN_DEFERRED;
6789 
6790 		/* Restart disctmo if its already running */
6791 		if (vport->fc_flag & FC_DISC_TMO) {
6792 			tmo = ((phba->fc_ratov * 3) + 3);
6793 			mod_timer(&vport->fc_disctmo,
6794 				  jiffies + msecs_to_jiffies(1000 * tmo));
6795 		}
6796 		if ((rscn_cnt < FC_MAX_HOLD_RSCN) &&
6797 		    !(vport->fc_flag & FC_RSCN_DISCOVERY)) {
6798 			vport->fc_flag |= FC_RSCN_MODE;
6799 			spin_unlock_irq(shost->host_lock);
6800 			if (rscn_cnt) {
6801 				cmd = vport->fc_rscn_id_list[rscn_cnt-1]->virt;
6802 				length = be32_to_cpu(*cmd & ~ELS_CMD_MASK);
6803 			}
6804 			if ((rscn_cnt) &&
6805 			    (payload_len + length <= LPFC_BPL_SIZE)) {
6806 				*cmd &= ELS_CMD_MASK;
6807 				*cmd |= cpu_to_be32(payload_len + length);
6808 				memcpy(((uint8_t *)cmd) + length, lp,
6809 				       payload_len);
6810 			} else {
6811 				vport->fc_rscn_id_list[rscn_cnt] = pcmd;
6812 				vport->fc_rscn_id_cnt++;
6813 				/* If we zero, cmdiocb->context2, the calling
6814 				 * routine will not try to free it.
6815 				 */
6816 				cmdiocb->context2 = NULL;
6817 			}
6818 			/* Deferred RSCN */
6819 			lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
6820 					 "0235 Deferred RSCN "
6821 					 "Data: x%x x%x x%x\n",
6822 					 vport->fc_rscn_id_cnt, vport->fc_flag,
6823 					 vport->port_state);
6824 		} else {
6825 			vport->fc_flag |= FC_RSCN_DISCOVERY;
6826 			spin_unlock_irq(shost->host_lock);
6827 			/* ReDiscovery RSCN */
6828 			lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
6829 					 "0234 ReDiscovery RSCN "
6830 					 "Data: x%x x%x x%x\n",
6831 					 vport->fc_rscn_id_cnt, vport->fc_flag,
6832 					 vport->port_state);
6833 		}
6834 		/* Indicate we are done walking fc_rscn_id_list on this vport */
6835 		vport->fc_rscn_flush = 0;
6836 		/* Send back ACC */
6837 		lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
6838 		/* send RECOVERY event for ALL nodes that match RSCN payload */
6839 		lpfc_rscn_recovery_check(vport);
6840 		return 0;
6841 	}
6842 	lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6843 		"RCV RSCN:        did:x%x/ste:x%x flg:x%x",
6844 		ndlp->nlp_DID, vport->port_state, ndlp->nlp_flag);
6845 
6846 	spin_lock_irq(shost->host_lock);
6847 	vport->fc_flag |= FC_RSCN_MODE;
6848 	spin_unlock_irq(shost->host_lock);
6849 	vport->fc_rscn_id_list[vport->fc_rscn_id_cnt++] = pcmd;
6850 	/* Indicate we are done walking fc_rscn_id_list on this vport */
6851 	vport->fc_rscn_flush = 0;
6852 	/*
6853 	 * If we zero, cmdiocb->context2, the calling routine will
6854 	 * not try to free it.
6855 	 */
6856 	cmdiocb->context2 = NULL;
6857 	lpfc_set_disctmo(vport);
6858 	/* Send back ACC */
6859 	lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
6860 	/* send RECOVERY event for ALL nodes that match RSCN payload */
6861 	lpfc_rscn_recovery_check(vport);
6862 	return lpfc_els_handle_rscn(vport);
6863 }
6864 
6865 /**
6866  * lpfc_els_handle_rscn - Handle rscn for a vport
6867  * @vport: pointer to a host virtual N_Port data structure.
6868  *
6869  * This routine handles the Registration State Configuration Notification
6870  * (RSCN) for a @vport. If login to NameServer does not exist, a new ndlp shall
6871  * be created and a Port Login (PLOGI) to the NameServer is issued. Otherwise,
6872  * if the ndlp to NameServer exists, a Common Transport (CT) command to the
6873  * NameServer shall be issued. If CT command to the NameServer fails to be
6874  * issued, the lpfc_els_flush_rscn() routine shall be invoked to clean up any
6875  * RSCN activities with the @vport.
6876  *
6877  * Return code
6878  *   0 - Cleaned up rscn on the @vport
6879  *   1 - Wait for plogi to name server before proceed
6880  **/
6881 int
6882 lpfc_els_handle_rscn(struct lpfc_vport *vport)
6883 {
6884 	struct lpfc_nodelist *ndlp;
6885 	struct lpfc_hba  *phba = vport->phba;
6886 
6887 	/* Ignore RSCN if the port is being torn down. */
6888 	if (vport->load_flag & FC_UNLOADING) {
6889 		lpfc_els_flush_rscn(vport);
6890 		return 0;
6891 	}
6892 
6893 	/* Start timer for RSCN processing */
6894 	lpfc_set_disctmo(vport);
6895 
6896 	/* RSCN processed */
6897 	lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
6898 			 "0215 RSCN processed Data: x%x x%x x%x x%x x%x x%x\n",
6899 			 vport->fc_flag, 0, vport->fc_rscn_id_cnt,
6900 			 vport->port_state, vport->num_disc_nodes,
6901 			 vport->gidft_inp);
6902 
6903 	/* To process RSCN, first compare RSCN data with NameServer */
6904 	vport->fc_ns_retry = 0;
6905 	vport->num_disc_nodes = 0;
6906 
6907 	ndlp = lpfc_findnode_did(vport, NameServer_DID);
6908 	if (ndlp && NLP_CHK_NODE_ACT(ndlp)
6909 	    && ndlp->nlp_state == NLP_STE_UNMAPPED_NODE) {
6910 		/* Good ndlp, issue CT Request to NameServer.  Need to
6911 		 * know how many gidfts were issued.  If none, then just
6912 		 * flush the RSCN.  Otherwise, the outstanding requests
6913 		 * need to complete.
6914 		 */
6915 		if (phba->cfg_ns_query == LPFC_NS_QUERY_GID_FT) {
6916 			if (lpfc_issue_gidft(vport) > 0)
6917 				return 1;
6918 		} else if (phba->cfg_ns_query == LPFC_NS_QUERY_GID_PT) {
6919 			if (lpfc_issue_gidpt(vport) > 0)
6920 				return 1;
6921 		} else {
6922 			return 1;
6923 		}
6924 	} else {
6925 		/* Nameserver login in question.  Revalidate. */
6926 		if (ndlp) {
6927 			ndlp = lpfc_enable_node(vport, ndlp,
6928 						NLP_STE_PLOGI_ISSUE);
6929 			if (!ndlp) {
6930 				lpfc_els_flush_rscn(vport);
6931 				return 0;
6932 			}
6933 			ndlp->nlp_prev_state = NLP_STE_UNUSED_NODE;
6934 		} else {
6935 			ndlp = lpfc_nlp_init(vport, NameServer_DID);
6936 			if (!ndlp) {
6937 				lpfc_els_flush_rscn(vport);
6938 				return 0;
6939 			}
6940 			ndlp->nlp_prev_state = ndlp->nlp_state;
6941 			lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
6942 		}
6943 		ndlp->nlp_type |= NLP_FABRIC;
6944 		lpfc_issue_els_plogi(vport, NameServer_DID, 0);
6945 		/* Wait for NameServer login cmpl before we can
6946 		 * continue
6947 		 */
6948 		return 1;
6949 	}
6950 
6951 	lpfc_els_flush_rscn(vport);
6952 	return 0;
6953 }
6954 
6955 /**
6956  * lpfc_els_rcv_flogi - Process an unsolicited flogi iocb
6957  * @vport: pointer to a host virtual N_Port data structure.
6958  * @cmdiocb: pointer to lpfc command iocb data structure.
6959  * @ndlp: pointer to a node-list data structure.
6960  *
6961  * This routine processes Fabric Login (FLOGI) IOCB received as an ELS
6962  * unsolicited event. An unsolicited FLOGI can be received in a point-to-
6963  * point topology. As an unsolicited FLOGI should not be received in a loop
6964  * mode, any unsolicited FLOGI received in loop mode shall be ignored. The
6965  * lpfc_check_sparm() routine is invoked to check the parameters in the
6966  * unsolicited FLOGI. If parameters validation failed, the routine
6967  * lpfc_els_rsp_reject() shall be called with reject reason code set to
6968  * LSEXP_SPARM_OPTIONS to reject the FLOGI. Otherwise, the Port WWN in the
6969  * FLOGI shall be compared with the Port WWN of the @vport to determine who
6970  * will initiate PLOGI. The higher lexicographical value party shall has
6971  * higher priority (as the winning port) and will initiate PLOGI and
6972  * communicate Port_IDs (Addresses) for both nodes in PLOGI. The result
6973  * of this will be marked in the @vport fc_flag field with FC_PT2PT_PLOGI
6974  * and then the lpfc_els_rsp_acc() routine is invoked to accept the FLOGI.
6975  *
6976  * Return code
6977  *   0 - Successfully processed the unsolicited flogi
6978  *   1 - Failed to process the unsolicited flogi
6979  **/
6980 static int
6981 lpfc_els_rcv_flogi(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
6982 		   struct lpfc_nodelist *ndlp)
6983 {
6984 	struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
6985 	struct lpfc_hba  *phba = vport->phba;
6986 	struct lpfc_dmabuf *pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
6987 	uint32_t *lp = (uint32_t *) pcmd->virt;
6988 	IOCB_t *icmd = &cmdiocb->iocb;
6989 	struct serv_parm *sp;
6990 	LPFC_MBOXQ_t *mbox;
6991 	uint32_t cmd, did;
6992 	int rc;
6993 	uint32_t fc_flag = 0;
6994 	uint32_t port_state = 0;
6995 
6996 	cmd = *lp++;
6997 	sp = (struct serv_parm *) lp;
6998 
6999 	/* FLOGI received */
7000 
7001 	lpfc_set_disctmo(vport);
7002 
7003 	if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
7004 		/* We should never receive a FLOGI in loop mode, ignore it */
7005 		did = icmd->un.elsreq64.remoteID;
7006 
7007 		/* An FLOGI ELS command <elsCmd> was received from DID <did> in
7008 		   Loop Mode */
7009 		lpfc_printf_vlog(vport, KERN_ERR, LOG_TRACE_EVENT,
7010 				 "0113 An FLOGI ELS command x%x was "
7011 				 "received from DID x%x in Loop Mode\n",
7012 				 cmd, did);
7013 		return 1;
7014 	}
7015 
7016 	(void) lpfc_check_sparm(vport, ndlp, sp, CLASS3, 1);
7017 
7018 	/*
7019 	 * If our portname is greater than the remote portname,
7020 	 * then we initiate Nport login.
7021 	 */
7022 
7023 	rc = memcmp(&vport->fc_portname, &sp->portName,
7024 		    sizeof(struct lpfc_name));
7025 
7026 	if (!rc) {
7027 		if (phba->sli_rev < LPFC_SLI_REV4) {
7028 			mbox = mempool_alloc(phba->mbox_mem_pool,
7029 					     GFP_KERNEL);
7030 			if (!mbox)
7031 				return 1;
7032 			lpfc_linkdown(phba);
7033 			lpfc_init_link(phba, mbox,
7034 				       phba->cfg_topology,
7035 				       phba->cfg_link_speed);
7036 			mbox->u.mb.un.varInitLnk.lipsr_AL_PA = 0;
7037 			mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
7038 			mbox->vport = vport;
7039 			rc = lpfc_sli_issue_mbox(phba, mbox,
7040 						 MBX_NOWAIT);
7041 			lpfc_set_loopback_flag(phba);
7042 			if (rc == MBX_NOT_FINISHED)
7043 				mempool_free(mbox, phba->mbox_mem_pool);
7044 			return 1;
7045 		}
7046 
7047 		/* abort the flogi coming back to ourselves
7048 		 * due to external loopback on the port.
7049 		 */
7050 		lpfc_els_abort_flogi(phba);
7051 		return 0;
7052 
7053 	} else if (rc > 0) {	/* greater than */
7054 		spin_lock_irq(shost->host_lock);
7055 		vport->fc_flag |= FC_PT2PT_PLOGI;
7056 		spin_unlock_irq(shost->host_lock);
7057 
7058 		/* If we have the high WWPN we can assign our own
7059 		 * myDID; otherwise, we have to WAIT for a PLOGI
7060 		 * from the remote NPort to find out what it
7061 		 * will be.
7062 		 */
7063 		vport->fc_myDID = PT2PT_LocalID;
7064 	} else {
7065 		vport->fc_myDID = PT2PT_RemoteID;
7066 	}
7067 
7068 	/*
7069 	 * The vport state should go to LPFC_FLOGI only
7070 	 * AFTER we issue a FLOGI, not receive one.
7071 	 */
7072 	spin_lock_irq(shost->host_lock);
7073 	fc_flag = vport->fc_flag;
7074 	port_state = vport->port_state;
7075 	vport->fc_flag |= FC_PT2PT;
7076 	vport->fc_flag &= ~(FC_FABRIC | FC_PUBLIC_LOOP);
7077 
7078 	/* Acking an unsol FLOGI.  Count 1 for link bounce
7079 	 * work-around.
7080 	 */
7081 	vport->rcv_flogi_cnt++;
7082 	spin_unlock_irq(shost->host_lock);
7083 	lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
7084 			 "3311 Rcv Flogi PS x%x new PS x%x "
7085 			 "fc_flag x%x new fc_flag x%x\n",
7086 			 port_state, vport->port_state,
7087 			 fc_flag, vport->fc_flag);
7088 
7089 	/*
7090 	 * We temporarily set fc_myDID to make it look like we are
7091 	 * a Fabric. This is done just so we end up with the right
7092 	 * did / sid on the FLOGI ACC rsp.
7093 	 */
7094 	did = vport->fc_myDID;
7095 	vport->fc_myDID = Fabric_DID;
7096 
7097 	memcpy(&phba->fc_fabparam, sp, sizeof(struct serv_parm));
7098 
7099 	/* Defer ACC response until AFTER we issue a FLOGI */
7100 	if (!(phba->hba_flag & HBA_FLOGI_ISSUED)) {
7101 		phba->defer_flogi_acc_rx_id = cmdiocb->iocb.ulpContext;
7102 		phba->defer_flogi_acc_ox_id =
7103 					cmdiocb->iocb.unsli3.rcvsli3.ox_id;
7104 
7105 		vport->fc_myDID = did;
7106 
7107 		lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
7108 				 "3344 Deferring FLOGI ACC: rx_id: x%x,"
7109 				 " ox_id: x%x, hba_flag x%x\n",
7110 				 phba->defer_flogi_acc_rx_id,
7111 				 phba->defer_flogi_acc_ox_id, phba->hba_flag);
7112 
7113 		phba->defer_flogi_acc_flag = true;
7114 
7115 		return 0;
7116 	}
7117 
7118 	/* Send back ACC */
7119 	lpfc_els_rsp_acc(vport, ELS_CMD_FLOGI, cmdiocb, ndlp, NULL);
7120 
7121 	/* Now lets put fc_myDID back to what its supposed to be */
7122 	vport->fc_myDID = did;
7123 
7124 	return 0;
7125 }
7126 
7127 /**
7128  * lpfc_els_rcv_rnid - Process an unsolicited rnid iocb
7129  * @vport: pointer to a host virtual N_Port data structure.
7130  * @cmdiocb: pointer to lpfc command iocb data structure.
7131  * @ndlp: pointer to a node-list data structure.
7132  *
7133  * This routine processes Request Node Identification Data (RNID) IOCB
7134  * received as an ELS unsolicited event. Only when the RNID specified format
7135  * 0x0 or 0xDF (Topology Discovery Specific Node Identification Data)
7136  * present, this routine will invoke the lpfc_els_rsp_rnid_acc() routine to
7137  * Accept (ACC) the RNID ELS command. All the other RNID formats are
7138  * rejected by invoking the lpfc_els_rsp_reject() routine.
7139  *
7140  * Return code
7141  *   0 - Successfully processed rnid iocb (currently always return 0)
7142  **/
7143 static int
7144 lpfc_els_rcv_rnid(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
7145 		  struct lpfc_nodelist *ndlp)
7146 {
7147 	struct lpfc_dmabuf *pcmd;
7148 	uint32_t *lp;
7149 	RNID *rn;
7150 	struct ls_rjt stat;
7151 
7152 	pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
7153 	lp = (uint32_t *) pcmd->virt;
7154 
7155 	lp++;
7156 	rn = (RNID *) lp;
7157 
7158 	/* RNID received */
7159 
7160 	switch (rn->Format) {
7161 	case 0:
7162 	case RNID_TOPOLOGY_DISC:
7163 		/* Send back ACC */
7164 		lpfc_els_rsp_rnid_acc(vport, rn->Format, cmdiocb, ndlp);
7165 		break;
7166 	default:
7167 		/* Reject this request because format not supported */
7168 		stat.un.b.lsRjtRsvd0 = 0;
7169 		stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
7170 		stat.un.b.lsRjtRsnCodeExp = LSEXP_CANT_GIVE_DATA;
7171 		stat.un.b.vendorUnique = 0;
7172 		lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp,
7173 			NULL);
7174 	}
7175 	return 0;
7176 }
7177 
7178 /**
7179  * lpfc_els_rcv_echo - Process an unsolicited echo iocb
7180  * @vport: pointer to a host virtual N_Port data structure.
7181  * @cmdiocb: pointer to lpfc command iocb data structure.
7182  * @ndlp: pointer to a node-list data structure.
7183  *
7184  * Return code
7185  *   0 - Successfully processed echo iocb (currently always return 0)
7186  **/
7187 static int
7188 lpfc_els_rcv_echo(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
7189 		  struct lpfc_nodelist *ndlp)
7190 {
7191 	uint8_t *pcmd;
7192 
7193 	pcmd = (uint8_t *) (((struct lpfc_dmabuf *) cmdiocb->context2)->virt);
7194 
7195 	/* skip over first word of echo command to find echo data */
7196 	pcmd += sizeof(uint32_t);
7197 
7198 	lpfc_els_rsp_echo_acc(vport, pcmd, cmdiocb, ndlp);
7199 	return 0;
7200 }
7201 
7202 /**
7203  * lpfc_els_rcv_lirr - Process an unsolicited lirr iocb
7204  * @vport: pointer to a host virtual N_Port data structure.
7205  * @cmdiocb: pointer to lpfc command iocb data structure.
7206  * @ndlp: pointer to a node-list data structure.
7207  *
7208  * This routine processes a Link Incident Report Registration(LIRR) IOCB
7209  * received as an ELS unsolicited event. Currently, this function just invokes
7210  * the lpfc_els_rsp_reject() routine to reject the LIRR IOCB unconditionally.
7211  *
7212  * Return code
7213  *   0 - Successfully processed lirr iocb (currently always return 0)
7214  **/
7215 static int
7216 lpfc_els_rcv_lirr(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
7217 		  struct lpfc_nodelist *ndlp)
7218 {
7219 	struct ls_rjt stat;
7220 
7221 	/* For now, unconditionally reject this command */
7222 	stat.un.b.lsRjtRsvd0 = 0;
7223 	stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
7224 	stat.un.b.lsRjtRsnCodeExp = LSEXP_CANT_GIVE_DATA;
7225 	stat.un.b.vendorUnique = 0;
7226 	lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
7227 	return 0;
7228 }
7229 
7230 /**
7231  * lpfc_els_rcv_rrq - Process an unsolicited rrq iocb
7232  * @vport: pointer to a host virtual N_Port data structure.
7233  * @cmdiocb: pointer to lpfc command iocb data structure.
7234  * @ndlp: pointer to a node-list data structure.
7235  *
7236  * This routine processes a Reinstate Recovery Qualifier (RRQ) IOCB
7237  * received as an ELS unsolicited event. A request to RRQ shall only
7238  * be accepted if the Originator Nx_Port N_Port_ID or the Responder
7239  * Nx_Port N_Port_ID of the target Exchange is the same as the
7240  * N_Port_ID of the Nx_Port that makes the request. If the RRQ is
7241  * not accepted, an LS_RJT with reason code "Unable to perform
7242  * command request" and reason code explanation "Invalid Originator
7243  * S_ID" shall be returned. For now, we just unconditionally accept
7244  * RRQ from the target.
7245  **/
7246 static void
7247 lpfc_els_rcv_rrq(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
7248 		 struct lpfc_nodelist *ndlp)
7249 {
7250 	lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
7251 	if (vport->phba->sli_rev == LPFC_SLI_REV4)
7252 		lpfc_els_clear_rrq(vport, cmdiocb, ndlp);
7253 }
7254 
7255 /**
7256  * lpfc_els_rsp_rls_acc - Completion callbk func for MBX_READ_LNK_STAT mbox cmd
7257  * @phba: pointer to lpfc hba data structure.
7258  * @pmb: pointer to the driver internal queue element for mailbox command.
7259  *
7260  * This routine is the completion callback function for the MBX_READ_LNK_STAT
7261  * mailbox command. This callback function is to actually send the Accept
7262  * (ACC) response to a Read Port Status (RPS) unsolicited IOCB event. It
7263  * collects the link statistics from the completion of the MBX_READ_LNK_STAT
7264  * mailbox command, constructs the RPS response with the link statistics
7265  * collected, and then invokes the lpfc_sli_issue_iocb() routine to send ACC
7266  * response to the RPS.
7267  *
7268  * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
7269  * will be incremented by 1 for holding the ndlp and the reference to ndlp
7270  * will be stored into the context1 field of the IOCB for the completion
7271  * callback function to the RPS Accept Response ELS IOCB command.
7272  *
7273  **/
7274 static void
7275 lpfc_els_rsp_rls_acc(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
7276 {
7277 	MAILBOX_t *mb;
7278 	IOCB_t *icmd;
7279 	struct RLS_RSP *rls_rsp;
7280 	uint8_t *pcmd;
7281 	struct lpfc_iocbq *elsiocb;
7282 	struct lpfc_nodelist *ndlp;
7283 	uint16_t oxid;
7284 	uint16_t rxid;
7285 	uint32_t cmdsize;
7286 
7287 	mb = &pmb->u.mb;
7288 
7289 	ndlp = (struct lpfc_nodelist *)pmb->ctx_ndlp;
7290 	rxid = (uint16_t)((unsigned long)(pmb->ctx_buf) & 0xffff);
7291 	oxid = (uint16_t)(((unsigned long)(pmb->ctx_buf) >> 16) & 0xffff);
7292 	pmb->ctx_buf = NULL;
7293 	pmb->ctx_ndlp = NULL;
7294 
7295 	if (mb->mbxStatus) {
7296 		mempool_free(pmb, phba->mbox_mem_pool);
7297 		return;
7298 	}
7299 
7300 	cmdsize = sizeof(struct RLS_RSP) + sizeof(uint32_t);
7301 	elsiocb = lpfc_prep_els_iocb(phba->pport, 0, cmdsize,
7302 				     lpfc_max_els_tries, ndlp,
7303 				     ndlp->nlp_DID, ELS_CMD_ACC);
7304 
7305 	/* Decrement the ndlp reference count from previous mbox command */
7306 	lpfc_nlp_put(ndlp);
7307 
7308 	if (!elsiocb) {
7309 		mempool_free(pmb, phba->mbox_mem_pool);
7310 		return;
7311 	}
7312 
7313 	icmd = &elsiocb->iocb;
7314 	icmd->ulpContext = rxid;
7315 	icmd->unsli3.rcvsli3.ox_id = oxid;
7316 
7317 	pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
7318 	*((uint32_t *) (pcmd)) = ELS_CMD_ACC;
7319 	pcmd += sizeof(uint32_t); /* Skip past command */
7320 	rls_rsp = (struct RLS_RSP *)pcmd;
7321 
7322 	rls_rsp->linkFailureCnt = cpu_to_be32(mb->un.varRdLnk.linkFailureCnt);
7323 	rls_rsp->lossSyncCnt = cpu_to_be32(mb->un.varRdLnk.lossSyncCnt);
7324 	rls_rsp->lossSignalCnt = cpu_to_be32(mb->un.varRdLnk.lossSignalCnt);
7325 	rls_rsp->primSeqErrCnt = cpu_to_be32(mb->un.varRdLnk.primSeqErrCnt);
7326 	rls_rsp->invalidXmitWord = cpu_to_be32(mb->un.varRdLnk.invalidXmitWord);
7327 	rls_rsp->crcCnt = cpu_to_be32(mb->un.varRdLnk.crcCnt);
7328 	mempool_free(pmb, phba->mbox_mem_pool);
7329 	/* Xmit ELS RLS ACC response tag <ulpIoTag> */
7330 	lpfc_printf_vlog(ndlp->vport, KERN_INFO, LOG_ELS,
7331 			 "2874 Xmit ELS RLS ACC response tag x%x xri x%x, "
7332 			 "did x%x, nlp_flag x%x, nlp_state x%x, rpi x%x\n",
7333 			 elsiocb->iotag, elsiocb->iocb.ulpContext,
7334 			 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
7335 			 ndlp->nlp_rpi);
7336 	elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
7337 	phba->fc_stat.elsXmitACC++;
7338 	if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) == IOCB_ERROR)
7339 		lpfc_els_free_iocb(phba, elsiocb);
7340 }
7341 
7342 /**
7343  * lpfc_els_rcv_rls - Process an unsolicited rls iocb
7344  * @vport: pointer to a host virtual N_Port data structure.
7345  * @cmdiocb: pointer to lpfc command iocb data structure.
7346  * @ndlp: pointer to a node-list data structure.
7347  *
7348  * This routine processes Read Link Status (RLS) IOCB received as an
7349  * ELS unsolicited event. It first checks the remote port state. If the
7350  * remote port is not in NLP_STE_UNMAPPED_NODE state or NLP_STE_MAPPED_NODE
7351  * state, it invokes the lpfc_els_rsl_reject() routine to send the reject
7352  * response. Otherwise, it issue the MBX_READ_LNK_STAT mailbox command
7353  * for reading the HBA link statistics. It is for the callback function,
7354  * lpfc_els_rsp_rls_acc(), set to the MBX_READ_LNK_STAT mailbox command
7355  * to actually sending out RPL Accept (ACC) response.
7356  *
7357  * Return codes
7358  *   0 - Successfully processed rls iocb (currently always return 0)
7359  **/
7360 static int
7361 lpfc_els_rcv_rls(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
7362 		 struct lpfc_nodelist *ndlp)
7363 {
7364 	struct lpfc_hba *phba = vport->phba;
7365 	LPFC_MBOXQ_t *mbox;
7366 	struct ls_rjt stat;
7367 
7368 	if ((ndlp->nlp_state != NLP_STE_UNMAPPED_NODE) &&
7369 	    (ndlp->nlp_state != NLP_STE_MAPPED_NODE))
7370 		/* reject the unsolicited RLS request and done with it */
7371 		goto reject_out;
7372 
7373 	mbox = mempool_alloc(phba->mbox_mem_pool, GFP_ATOMIC);
7374 	if (mbox) {
7375 		lpfc_read_lnk_stat(phba, mbox);
7376 		mbox->ctx_buf = (void *)((unsigned long)
7377 			((cmdiocb->iocb.unsli3.rcvsli3.ox_id << 16) |
7378 			cmdiocb->iocb.ulpContext)); /* rx_id */
7379 		mbox->ctx_ndlp = lpfc_nlp_get(ndlp);
7380 		mbox->vport = vport;
7381 		mbox->mbox_cmpl = lpfc_els_rsp_rls_acc;
7382 		if (lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT)
7383 			!= MBX_NOT_FINISHED)
7384 			/* Mbox completion will send ELS Response */
7385 			return 0;
7386 		/* Decrement reference count used for the failed mbox
7387 		 * command.
7388 		 */
7389 		lpfc_nlp_put(ndlp);
7390 		mempool_free(mbox, phba->mbox_mem_pool);
7391 	}
7392 reject_out:
7393 	/* issue rejection response */
7394 	stat.un.b.lsRjtRsvd0 = 0;
7395 	stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
7396 	stat.un.b.lsRjtRsnCodeExp = LSEXP_CANT_GIVE_DATA;
7397 	stat.un.b.vendorUnique = 0;
7398 	lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
7399 	return 0;
7400 }
7401 
7402 /**
7403  * lpfc_els_rcv_rtv - Process an unsolicited rtv iocb
7404  * @vport: pointer to a host virtual N_Port data structure.
7405  * @cmdiocb: pointer to lpfc command iocb data structure.
7406  * @ndlp: pointer to a node-list data structure.
7407  *
7408  * This routine processes Read Timout Value (RTV) IOCB received as an
7409  * ELS unsolicited event. It first checks the remote port state. If the
7410  * remote port is not in NLP_STE_UNMAPPED_NODE state or NLP_STE_MAPPED_NODE
7411  * state, it invokes the lpfc_els_rsl_reject() routine to send the reject
7412  * response. Otherwise, it sends the Accept(ACC) response to a Read Timeout
7413  * Value (RTV) unsolicited IOCB event.
7414  *
7415  * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
7416  * will be incremented by 1 for holding the ndlp and the reference to ndlp
7417  * will be stored into the context1 field of the IOCB for the completion
7418  * callback function to the RTV Accept Response ELS IOCB command.
7419  *
7420  * Return codes
7421  *   0 - Successfully processed rtv iocb (currently always return 0)
7422  **/
7423 static int
7424 lpfc_els_rcv_rtv(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
7425 		 struct lpfc_nodelist *ndlp)
7426 {
7427 	struct lpfc_hba *phba = vport->phba;
7428 	struct ls_rjt stat;
7429 	struct RTV_RSP *rtv_rsp;
7430 	uint8_t *pcmd;
7431 	struct lpfc_iocbq *elsiocb;
7432 	uint32_t cmdsize;
7433 
7434 
7435 	if ((ndlp->nlp_state != NLP_STE_UNMAPPED_NODE) &&
7436 	    (ndlp->nlp_state != NLP_STE_MAPPED_NODE))
7437 		/* reject the unsolicited RTV request and done with it */
7438 		goto reject_out;
7439 
7440 	cmdsize = sizeof(struct RTV_RSP) + sizeof(uint32_t);
7441 	elsiocb = lpfc_prep_els_iocb(phba->pport, 0, cmdsize,
7442 				     lpfc_max_els_tries, ndlp,
7443 				     ndlp->nlp_DID, ELS_CMD_ACC);
7444 
7445 	if (!elsiocb)
7446 		return 1;
7447 
7448 	pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
7449 	*((uint32_t *) (pcmd)) = ELS_CMD_ACC;
7450 	pcmd += sizeof(uint32_t); /* Skip past command */
7451 
7452 	/* use the command's xri in the response */
7453 	elsiocb->iocb.ulpContext = cmdiocb->iocb.ulpContext;  /* Xri / rx_id */
7454 	elsiocb->iocb.unsli3.rcvsli3.ox_id = cmdiocb->iocb.unsli3.rcvsli3.ox_id;
7455 
7456 	rtv_rsp = (struct RTV_RSP *)pcmd;
7457 
7458 	/* populate RTV payload */
7459 	rtv_rsp->ratov = cpu_to_be32(phba->fc_ratov * 1000); /* report msecs */
7460 	rtv_rsp->edtov = cpu_to_be32(phba->fc_edtov);
7461 	bf_set(qtov_edtovres, rtv_rsp, phba->fc_edtovResol ? 1 : 0);
7462 	bf_set(qtov_rttov, rtv_rsp, 0); /* Field is for FC ONLY */
7463 	rtv_rsp->qtov = cpu_to_be32(rtv_rsp->qtov);
7464 
7465 	/* Xmit ELS RLS ACC response tag <ulpIoTag> */
7466 	lpfc_printf_vlog(ndlp->vport, KERN_INFO, LOG_ELS,
7467 			 "2875 Xmit ELS RTV ACC response tag x%x xri x%x, "
7468 			 "did x%x, nlp_flag x%x, nlp_state x%x, rpi x%x, "
7469 			 "Data: x%x x%x x%x\n",
7470 			 elsiocb->iotag, elsiocb->iocb.ulpContext,
7471 			 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
7472 			 ndlp->nlp_rpi,
7473 			rtv_rsp->ratov, rtv_rsp->edtov, rtv_rsp->qtov);
7474 	elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
7475 	phba->fc_stat.elsXmitACC++;
7476 	if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) == IOCB_ERROR)
7477 		lpfc_els_free_iocb(phba, elsiocb);
7478 	return 0;
7479 
7480 reject_out:
7481 	/* issue rejection response */
7482 	stat.un.b.lsRjtRsvd0 = 0;
7483 	stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
7484 	stat.un.b.lsRjtRsnCodeExp = LSEXP_CANT_GIVE_DATA;
7485 	stat.un.b.vendorUnique = 0;
7486 	lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
7487 	return 0;
7488 }
7489 
7490 /* lpfc_issue_els_rrq - Process an unsolicited rrq iocb
7491  * @vport: pointer to a host virtual N_Port data structure.
7492  * @ndlp: pointer to a node-list data structure.
7493  * @did: DID of the target.
7494  * @rrq: Pointer to the rrq struct.
7495  *
7496  * Build a ELS RRQ command and send it to the target. If the issue_iocb is
7497  * Successful the the completion handler will clear the RRQ.
7498  *
7499  * Return codes
7500  *   0 - Successfully sent rrq els iocb.
7501  *   1 - Failed to send rrq els iocb.
7502  **/
7503 static int
7504 lpfc_issue_els_rrq(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
7505 			uint32_t did, struct lpfc_node_rrq *rrq)
7506 {
7507 	struct lpfc_hba  *phba = vport->phba;
7508 	struct RRQ *els_rrq;
7509 	struct lpfc_iocbq *elsiocb;
7510 	uint8_t *pcmd;
7511 	uint16_t cmdsize;
7512 	int ret;
7513 
7514 
7515 	if (ndlp != rrq->ndlp)
7516 		ndlp = rrq->ndlp;
7517 	if (!ndlp || !NLP_CHK_NODE_ACT(ndlp))
7518 		return 1;
7519 
7520 	/* If ndlp is not NULL, we will bump the reference count on it */
7521 	cmdsize = (sizeof(uint32_t) + sizeof(struct RRQ));
7522 	elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, 0, ndlp, did,
7523 				     ELS_CMD_RRQ);
7524 	if (!elsiocb)
7525 		return 1;
7526 
7527 	pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
7528 
7529 	/* For RRQ request, remainder of payload is Exchange IDs */
7530 	*((uint32_t *) (pcmd)) = ELS_CMD_RRQ;
7531 	pcmd += sizeof(uint32_t);
7532 	els_rrq = (struct RRQ *) pcmd;
7533 
7534 	bf_set(rrq_oxid, els_rrq, phba->sli4_hba.xri_ids[rrq->xritag]);
7535 	bf_set(rrq_rxid, els_rrq, rrq->rxid);
7536 	bf_set(rrq_did, els_rrq, vport->fc_myDID);
7537 	els_rrq->rrq = cpu_to_be32(els_rrq->rrq);
7538 	els_rrq->rrq_exchg = cpu_to_be32(els_rrq->rrq_exchg);
7539 
7540 
7541 	lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
7542 		"Issue RRQ:     did:x%x",
7543 		did, rrq->xritag, rrq->rxid);
7544 	elsiocb->context_un.rrq = rrq;
7545 	elsiocb->iocb_cmpl = lpfc_cmpl_els_rrq;
7546 	ret = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
7547 
7548 	if (ret == IOCB_ERROR) {
7549 		lpfc_els_free_iocb(phba, elsiocb);
7550 		return 1;
7551 	}
7552 	return 0;
7553 }
7554 
7555 /**
7556  * lpfc_send_rrq - Sends ELS RRQ if needed.
7557  * @phba: pointer to lpfc hba data structure.
7558  * @rrq: pointer to the active rrq.
7559  *
7560  * This routine will call the lpfc_issue_els_rrq if the rrq is
7561  * still active for the xri. If this function returns a failure then
7562  * the caller needs to clean up the RRQ by calling lpfc_clr_active_rrq.
7563  *
7564  * Returns 0 Success.
7565  *         1 Failure.
7566  **/
7567 int
7568 lpfc_send_rrq(struct lpfc_hba *phba, struct lpfc_node_rrq *rrq)
7569 {
7570 	struct lpfc_nodelist *ndlp = lpfc_findnode_did(rrq->vport,
7571 						       rrq->nlp_DID);
7572 	if (!ndlp)
7573 		return 1;
7574 
7575 	if (lpfc_test_rrq_active(phba, ndlp, rrq->xritag))
7576 		return lpfc_issue_els_rrq(rrq->vport, ndlp,
7577 					 rrq->nlp_DID, rrq);
7578 	else
7579 		return 1;
7580 }
7581 
7582 /**
7583  * lpfc_els_rsp_rpl_acc - Issue an accept rpl els command
7584  * @vport: pointer to a host virtual N_Port data structure.
7585  * @cmdsize: size of the ELS command.
7586  * @oldiocb: pointer to the original lpfc command iocb data structure.
7587  * @ndlp: pointer to a node-list data structure.
7588  *
7589  * This routine issuees an Accept (ACC) Read Port List (RPL) ELS command.
7590  * It is to be called by the lpfc_els_rcv_rpl() routine to accept the RPL.
7591  *
7592  * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
7593  * will be incremented by 1 for holding the ndlp and the reference to ndlp
7594  * will be stored into the context1 field of the IOCB for the completion
7595  * callback function to the RPL Accept Response ELS command.
7596  *
7597  * Return code
7598  *   0 - Successfully issued ACC RPL ELS command
7599  *   1 - Failed to issue ACC RPL ELS command
7600  **/
7601 static int
7602 lpfc_els_rsp_rpl_acc(struct lpfc_vport *vport, uint16_t cmdsize,
7603 		     struct lpfc_iocbq *oldiocb, struct lpfc_nodelist *ndlp)
7604 {
7605 	struct lpfc_hba *phba = vport->phba;
7606 	IOCB_t *icmd, *oldcmd;
7607 	RPL_RSP rpl_rsp;
7608 	struct lpfc_iocbq *elsiocb;
7609 	uint8_t *pcmd;
7610 
7611 	elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry, ndlp,
7612 				     ndlp->nlp_DID, ELS_CMD_ACC);
7613 
7614 	if (!elsiocb)
7615 		return 1;
7616 
7617 	icmd = &elsiocb->iocb;
7618 	oldcmd = &oldiocb->iocb;
7619 	icmd->ulpContext = oldcmd->ulpContext;	/* Xri / rx_id */
7620 	icmd->unsli3.rcvsli3.ox_id = oldcmd->unsli3.rcvsli3.ox_id;
7621 
7622 	pcmd = (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
7623 	*((uint32_t *) (pcmd)) = ELS_CMD_ACC;
7624 	pcmd += sizeof(uint16_t);
7625 	*((uint16_t *)(pcmd)) = be16_to_cpu(cmdsize);
7626 	pcmd += sizeof(uint16_t);
7627 
7628 	/* Setup the RPL ACC payload */
7629 	rpl_rsp.listLen = be32_to_cpu(1);
7630 	rpl_rsp.index = 0;
7631 	rpl_rsp.port_num_blk.portNum = 0;
7632 	rpl_rsp.port_num_blk.portID = be32_to_cpu(vport->fc_myDID);
7633 	memcpy(&rpl_rsp.port_num_blk.portName, &vport->fc_portname,
7634 	    sizeof(struct lpfc_name));
7635 	memcpy(pcmd, &rpl_rsp, cmdsize - sizeof(uint32_t));
7636 	/* Xmit ELS RPL ACC response tag <ulpIoTag> */
7637 	lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
7638 			 "0120 Xmit ELS RPL ACC response tag x%x "
7639 			 "xri x%x, did x%x, nlp_flag x%x, nlp_state x%x, "
7640 			 "rpi x%x\n",
7641 			 elsiocb->iotag, elsiocb->iocb.ulpContext,
7642 			 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
7643 			 ndlp->nlp_rpi);
7644 	elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
7645 	phba->fc_stat.elsXmitACC++;
7646 	if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) ==
7647 	    IOCB_ERROR) {
7648 		lpfc_els_free_iocb(phba, elsiocb);
7649 		return 1;
7650 	}
7651 	return 0;
7652 }
7653 
7654 /**
7655  * lpfc_els_rcv_rpl - Process an unsolicited rpl iocb
7656  * @vport: pointer to a host virtual N_Port data structure.
7657  * @cmdiocb: pointer to lpfc command iocb data structure.
7658  * @ndlp: pointer to a node-list data structure.
7659  *
7660  * This routine processes Read Port List (RPL) IOCB received as an ELS
7661  * unsolicited event. It first checks the remote port state. If the remote
7662  * port is not in NLP_STE_UNMAPPED_NODE and NLP_STE_MAPPED_NODE states, it
7663  * invokes the lpfc_els_rsp_reject() routine to send reject response.
7664  * Otherwise, this routine then invokes the lpfc_els_rsp_rpl_acc() routine
7665  * to accept the RPL.
7666  *
7667  * Return code
7668  *   0 - Successfully processed rpl iocb (currently always return 0)
7669  **/
7670 static int
7671 lpfc_els_rcv_rpl(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
7672 		 struct lpfc_nodelist *ndlp)
7673 {
7674 	struct lpfc_dmabuf *pcmd;
7675 	uint32_t *lp;
7676 	uint32_t maxsize;
7677 	uint16_t cmdsize;
7678 	RPL *rpl;
7679 	struct ls_rjt stat;
7680 
7681 	if ((ndlp->nlp_state != NLP_STE_UNMAPPED_NODE) &&
7682 	    (ndlp->nlp_state != NLP_STE_MAPPED_NODE)) {
7683 		/* issue rejection response */
7684 		stat.un.b.lsRjtRsvd0 = 0;
7685 		stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
7686 		stat.un.b.lsRjtRsnCodeExp = LSEXP_CANT_GIVE_DATA;
7687 		stat.un.b.vendorUnique = 0;
7688 		lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp,
7689 			NULL);
7690 		/* rejected the unsolicited RPL request and done with it */
7691 		return 0;
7692 	}
7693 
7694 	pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
7695 	lp = (uint32_t *) pcmd->virt;
7696 	rpl = (RPL *) (lp + 1);
7697 	maxsize = be32_to_cpu(rpl->maxsize);
7698 
7699 	/* We support only one port */
7700 	if ((rpl->index == 0) &&
7701 	    ((maxsize == 0) ||
7702 	     ((maxsize * sizeof(uint32_t)) >= sizeof(RPL_RSP)))) {
7703 		cmdsize = sizeof(uint32_t) + sizeof(RPL_RSP);
7704 	} else {
7705 		cmdsize = sizeof(uint32_t) + maxsize * sizeof(uint32_t);
7706 	}
7707 	lpfc_els_rsp_rpl_acc(vport, cmdsize, cmdiocb, ndlp);
7708 
7709 	return 0;
7710 }
7711 
7712 /**
7713  * lpfc_els_rcv_farp - Process an unsolicited farp request els command
7714  * @vport: pointer to a virtual N_Port data structure.
7715  * @cmdiocb: pointer to lpfc command iocb data structure.
7716  * @ndlp: pointer to a node-list data structure.
7717  *
7718  * This routine processes Fibre Channel Address Resolution Protocol
7719  * (FARP) Request IOCB received as an ELS unsolicited event. Currently,
7720  * the lpfc driver only supports matching on WWPN or WWNN for FARP. As such,
7721  * FARP_MATCH_PORT flag and FARP_MATCH_NODE flag are checked against the
7722  * Match Flag in the FARP request IOCB: if FARP_MATCH_PORT flag is set, the
7723  * remote PortName is compared against the FC PortName stored in the @vport
7724  * data structure; if FARP_MATCH_NODE flag is set, the remote NodeName is
7725  * compared against the FC NodeName stored in the @vport data structure.
7726  * If any of these matches and the FARP_REQUEST_FARPR flag is set in the
7727  * FARP request IOCB Response Flag, the lpfc_issue_els_farpr() routine is
7728  * invoked to send out FARP Response to the remote node. Before sending the
7729  * FARP Response, however, the FARP_REQUEST_PLOGI flag is check in the FARP
7730  * request IOCB Response Flag and, if it is set, the lpfc_issue_els_plogi()
7731  * routine is invoked to log into the remote port first.
7732  *
7733  * Return code
7734  *   0 - Either the FARP Match Mode not supported or successfully processed
7735  **/
7736 static int
7737 lpfc_els_rcv_farp(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
7738 		  struct lpfc_nodelist *ndlp)
7739 {
7740 	struct lpfc_dmabuf *pcmd;
7741 	uint32_t *lp;
7742 	IOCB_t *icmd;
7743 	FARP *fp;
7744 	uint32_t cnt, did;
7745 
7746 	icmd = &cmdiocb->iocb;
7747 	did = icmd->un.elsreq64.remoteID;
7748 	pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
7749 	lp = (uint32_t *) pcmd->virt;
7750 
7751 	lp++;
7752 	fp = (FARP *) lp;
7753 	/* FARP-REQ received from DID <did> */
7754 	lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
7755 			 "0601 FARP-REQ received from DID x%x\n", did);
7756 	/* We will only support match on WWPN or WWNN */
7757 	if (fp->Mflags & ~(FARP_MATCH_NODE | FARP_MATCH_PORT)) {
7758 		return 0;
7759 	}
7760 
7761 	cnt = 0;
7762 	/* If this FARP command is searching for my portname */
7763 	if (fp->Mflags & FARP_MATCH_PORT) {
7764 		if (memcmp(&fp->RportName, &vport->fc_portname,
7765 			   sizeof(struct lpfc_name)) == 0)
7766 			cnt = 1;
7767 	}
7768 
7769 	/* If this FARP command is searching for my nodename */
7770 	if (fp->Mflags & FARP_MATCH_NODE) {
7771 		if (memcmp(&fp->RnodeName, &vport->fc_nodename,
7772 			   sizeof(struct lpfc_name)) == 0)
7773 			cnt = 1;
7774 	}
7775 
7776 	if (cnt) {
7777 		if ((ndlp->nlp_state == NLP_STE_UNMAPPED_NODE) ||
7778 		   (ndlp->nlp_state == NLP_STE_MAPPED_NODE)) {
7779 			/* Log back into the node before sending the FARP. */
7780 			if (fp->Rflags & FARP_REQUEST_PLOGI) {
7781 				ndlp->nlp_prev_state = ndlp->nlp_state;
7782 				lpfc_nlp_set_state(vport, ndlp,
7783 						   NLP_STE_PLOGI_ISSUE);
7784 				lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0);
7785 			}
7786 
7787 			/* Send a FARP response to that node */
7788 			if (fp->Rflags & FARP_REQUEST_FARPR)
7789 				lpfc_issue_els_farpr(vport, did, 0);
7790 		}
7791 	}
7792 	return 0;
7793 }
7794 
7795 /**
7796  * lpfc_els_rcv_farpr - Process an unsolicited farp response iocb
7797  * @vport: pointer to a host virtual N_Port data structure.
7798  * @cmdiocb: pointer to lpfc command iocb data structure.
7799  * @ndlp: pointer to a node-list data structure.
7800  *
7801  * This routine processes Fibre Channel Address Resolution Protocol
7802  * Response (FARPR) IOCB received as an ELS unsolicited event. It simply
7803  * invokes the lpfc_els_rsp_acc() routine to the remote node to accept
7804  * the FARP response request.
7805  *
7806  * Return code
7807  *   0 - Successfully processed FARPR IOCB (currently always return 0)
7808  **/
7809 static int
7810 lpfc_els_rcv_farpr(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
7811 		   struct lpfc_nodelist  *ndlp)
7812 {
7813 	struct lpfc_dmabuf *pcmd;
7814 	uint32_t *lp;
7815 	IOCB_t *icmd;
7816 	uint32_t did;
7817 
7818 	icmd = &cmdiocb->iocb;
7819 	did = icmd->un.elsreq64.remoteID;
7820 	pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
7821 	lp = (uint32_t *) pcmd->virt;
7822 
7823 	lp++;
7824 	/* FARP-RSP received from DID <did> */
7825 	lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
7826 			 "0600 FARP-RSP received from DID x%x\n", did);
7827 	/* ACCEPT the Farp resp request */
7828 	lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
7829 
7830 	return 0;
7831 }
7832 
7833 /**
7834  * lpfc_els_rcv_fan - Process an unsolicited fan iocb command
7835  * @vport: pointer to a host virtual N_Port data structure.
7836  * @cmdiocb: pointer to lpfc command iocb data structure.
7837  * @fan_ndlp: pointer to a node-list data structure.
7838  *
7839  * This routine processes a Fabric Address Notification (FAN) IOCB
7840  * command received as an ELS unsolicited event. The FAN ELS command will
7841  * only be processed on a physical port (i.e., the @vport represents the
7842  * physical port). The fabric NodeName and PortName from the FAN IOCB are
7843  * compared against those in the phba data structure. If any of those is
7844  * different, the lpfc_initial_flogi() routine is invoked to initialize
7845  * Fabric Login (FLOGI) to the fabric to start the discover over. Otherwise,
7846  * if both of those are identical, the lpfc_issue_fabric_reglogin() routine
7847  * is invoked to register login to the fabric.
7848  *
7849  * Return code
7850  *   0 - Successfully processed fan iocb (currently always return 0).
7851  **/
7852 static int
7853 lpfc_els_rcv_fan(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
7854 		 struct lpfc_nodelist *fan_ndlp)
7855 {
7856 	struct lpfc_hba *phba = vport->phba;
7857 	uint32_t *lp;
7858 	FAN *fp;
7859 
7860 	lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS, "0265 FAN received\n");
7861 	lp = (uint32_t *)((struct lpfc_dmabuf *)cmdiocb->context2)->virt;
7862 	fp = (FAN *) ++lp;
7863 	/* FAN received; Fan does not have a reply sequence */
7864 	if ((vport == phba->pport) &&
7865 	    (vport->port_state == LPFC_LOCAL_CFG_LINK)) {
7866 		if ((memcmp(&phba->fc_fabparam.nodeName, &fp->FnodeName,
7867 			    sizeof(struct lpfc_name))) ||
7868 		    (memcmp(&phba->fc_fabparam.portName, &fp->FportName,
7869 			    sizeof(struct lpfc_name)))) {
7870 			/* This port has switched fabrics. FLOGI is required */
7871 			lpfc_issue_init_vfi(vport);
7872 		} else {
7873 			/* FAN verified - skip FLOGI */
7874 			vport->fc_myDID = vport->fc_prevDID;
7875 			if (phba->sli_rev < LPFC_SLI_REV4)
7876 				lpfc_issue_fabric_reglogin(vport);
7877 			else {
7878 				lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
7879 					"3138 Need register VFI: (x%x/%x)\n",
7880 					vport->fc_prevDID, vport->fc_myDID);
7881 				lpfc_issue_reg_vfi(vport);
7882 			}
7883 		}
7884 	}
7885 	return 0;
7886 }
7887 
7888 /**
7889  * lpfc_els_timeout - Handler funciton to the els timer
7890  * @t: timer context used to obtain the vport.
7891  *
7892  * This routine is invoked by the ELS timer after timeout. It posts the ELS
7893  * timer timeout event by setting the WORKER_ELS_TMO bit to the work port
7894  * event bitmap and then invokes the lpfc_worker_wake_up() routine to wake
7895  * up the worker thread. It is for the worker thread to invoke the routine
7896  * lpfc_els_timeout_handler() to work on the posted event WORKER_ELS_TMO.
7897  **/
7898 void
7899 lpfc_els_timeout(struct timer_list *t)
7900 {
7901 	struct lpfc_vport *vport = from_timer(vport, t, els_tmofunc);
7902 	struct lpfc_hba   *phba = vport->phba;
7903 	uint32_t tmo_posted;
7904 	unsigned long iflag;
7905 
7906 	spin_lock_irqsave(&vport->work_port_lock, iflag);
7907 	tmo_posted = vport->work_port_events & WORKER_ELS_TMO;
7908 	if ((!tmo_posted) && (!(vport->load_flag & FC_UNLOADING)))
7909 		vport->work_port_events |= WORKER_ELS_TMO;
7910 	spin_unlock_irqrestore(&vport->work_port_lock, iflag);
7911 
7912 	if ((!tmo_posted) && (!(vport->load_flag & FC_UNLOADING)))
7913 		lpfc_worker_wake_up(phba);
7914 	return;
7915 }
7916 
7917 
7918 /**
7919  * lpfc_els_timeout_handler - Process an els timeout event
7920  * @vport: pointer to a virtual N_Port data structure.
7921  *
7922  * This routine is the actual handler function that processes an ELS timeout
7923  * event. It walks the ELS ring to get and abort all the IOCBs (except the
7924  * ABORT/CLOSE/FARP/FARPR/FDISC), which are associated with the @vport by
7925  * invoking the lpfc_sli_issue_abort_iotag() routine.
7926  **/
7927 void
7928 lpfc_els_timeout_handler(struct lpfc_vport *vport)
7929 {
7930 	struct lpfc_hba  *phba = vport->phba;
7931 	struct lpfc_sli_ring *pring;
7932 	struct lpfc_iocbq *tmp_iocb, *piocb;
7933 	IOCB_t *cmd = NULL;
7934 	struct lpfc_dmabuf *pcmd;
7935 	uint32_t els_command = 0;
7936 	uint32_t timeout;
7937 	uint32_t remote_ID = 0xffffffff;
7938 	LIST_HEAD(abort_list);
7939 
7940 
7941 	timeout = (uint32_t)(phba->fc_ratov << 1);
7942 
7943 	pring = lpfc_phba_elsring(phba);
7944 	if (unlikely(!pring))
7945 		return;
7946 
7947 	if (phba->pport->load_flag & FC_UNLOADING)
7948 		return;
7949 
7950 	spin_lock_irq(&phba->hbalock);
7951 	if (phba->sli_rev == LPFC_SLI_REV4)
7952 		spin_lock(&pring->ring_lock);
7953 
7954 	list_for_each_entry_safe(piocb, tmp_iocb, &pring->txcmplq, list) {
7955 		cmd = &piocb->iocb;
7956 
7957 		if ((piocb->iocb_flag & LPFC_IO_LIBDFC) != 0 ||
7958 		    piocb->iocb.ulpCommand == CMD_ABORT_XRI_CN ||
7959 		    piocb->iocb.ulpCommand == CMD_CLOSE_XRI_CN)
7960 			continue;
7961 
7962 		if (piocb->vport != vport)
7963 			continue;
7964 
7965 		pcmd = (struct lpfc_dmabuf *) piocb->context2;
7966 		if (pcmd)
7967 			els_command = *(uint32_t *) (pcmd->virt);
7968 
7969 		if (els_command == ELS_CMD_FARP ||
7970 		    els_command == ELS_CMD_FARPR ||
7971 		    els_command == ELS_CMD_FDISC)
7972 			continue;
7973 
7974 		if (piocb->drvrTimeout > 0) {
7975 			if (piocb->drvrTimeout >= timeout)
7976 				piocb->drvrTimeout -= timeout;
7977 			else
7978 				piocb->drvrTimeout = 0;
7979 			continue;
7980 		}
7981 
7982 		remote_ID = 0xffffffff;
7983 		if (cmd->ulpCommand != CMD_GEN_REQUEST64_CR)
7984 			remote_ID = cmd->un.elsreq64.remoteID;
7985 		else {
7986 			struct lpfc_nodelist *ndlp;
7987 			ndlp = __lpfc_findnode_rpi(vport, cmd->ulpContext);
7988 			if (ndlp && NLP_CHK_NODE_ACT(ndlp))
7989 				remote_ID = ndlp->nlp_DID;
7990 		}
7991 		list_add_tail(&piocb->dlist, &abort_list);
7992 	}
7993 	if (phba->sli_rev == LPFC_SLI_REV4)
7994 		spin_unlock(&pring->ring_lock);
7995 	spin_unlock_irq(&phba->hbalock);
7996 
7997 	list_for_each_entry_safe(piocb, tmp_iocb, &abort_list, dlist) {
7998 		cmd = &piocb->iocb;
7999 		lpfc_printf_vlog(vport, KERN_ERR, LOG_TRACE_EVENT,
8000 			 "0127 ELS timeout Data: x%x x%x x%x "
8001 			 "x%x\n", els_command,
8002 			 remote_ID, cmd->ulpCommand, cmd->ulpIoTag);
8003 		spin_lock_irq(&phba->hbalock);
8004 		list_del_init(&piocb->dlist);
8005 		lpfc_sli_issue_abort_iotag(phba, pring, piocb);
8006 		spin_unlock_irq(&phba->hbalock);
8007 	}
8008 
8009 	if (!list_empty(&pring->txcmplq))
8010 		if (!(phba->pport->load_flag & FC_UNLOADING))
8011 			mod_timer(&vport->els_tmofunc,
8012 				  jiffies + msecs_to_jiffies(1000 * timeout));
8013 }
8014 
8015 /**
8016  * lpfc_els_flush_cmd - Clean up the outstanding els commands to a vport
8017  * @vport: pointer to a host virtual N_Port data structure.
8018  *
8019  * This routine is used to clean up all the outstanding ELS commands on a
8020  * @vport. It first aborts the @vport by invoking lpfc_fabric_abort_vport()
8021  * routine. After that, it walks the ELS transmit queue to remove all the
8022  * IOCBs with the @vport other than the QUE_RING and ABORT/CLOSE IOCBs. For
8023  * the IOCBs with a non-NULL completion callback function, the callback
8024  * function will be invoked with the status set to IOSTAT_LOCAL_REJECT and
8025  * un.ulpWord[4] set to IOERR_SLI_ABORTED. For IOCBs with a NULL completion
8026  * callback function, the IOCB will simply be released. Finally, it walks
8027  * the ELS transmit completion queue to issue an abort IOCB to any transmit
8028  * completion queue IOCB that is associated with the @vport and is not
8029  * an IOCB from libdfc (i.e., the management plane IOCBs that are not
8030  * part of the discovery state machine) out to HBA by invoking the
8031  * lpfc_sli_issue_abort_iotag() routine. Note that this function issues the
8032  * abort IOCB to any transmit completion queueed IOCB, it does not guarantee
8033  * the IOCBs are aborted when this function returns.
8034  **/
8035 void
8036 lpfc_els_flush_cmd(struct lpfc_vport *vport)
8037 {
8038 	LIST_HEAD(abort_list);
8039 	struct lpfc_hba  *phba = vport->phba;
8040 	struct lpfc_sli_ring *pring;
8041 	struct lpfc_iocbq *tmp_iocb, *piocb;
8042 	IOCB_t *cmd = NULL;
8043 	unsigned long iflags = 0;
8044 
8045 	lpfc_fabric_abort_vport(vport);
8046 
8047 	/*
8048 	 * For SLI3, only the hbalock is required.  But SLI4 needs to coordinate
8049 	 * with the ring insert operation.  Because lpfc_sli_issue_abort_iotag
8050 	 * ultimately grabs the ring_lock, the driver must splice the list into
8051 	 * a working list and release the locks before calling the abort.
8052 	 */
8053 	spin_lock_irqsave(&phba->hbalock, iflags);
8054 	pring = lpfc_phba_elsring(phba);
8055 
8056 	/* Bail out if we've no ELS wq, like in PCI error recovery case. */
8057 	if (unlikely(!pring)) {
8058 		spin_unlock_irqrestore(&phba->hbalock, iflags);
8059 		return;
8060 	}
8061 
8062 	if (phba->sli_rev == LPFC_SLI_REV4)
8063 		spin_lock(&pring->ring_lock);
8064 
8065 	/* First we need to issue aborts to outstanding cmds on txcmpl */
8066 	list_for_each_entry_safe(piocb, tmp_iocb, &pring->txcmplq, list) {
8067 		if (piocb->iocb_flag & LPFC_IO_LIBDFC)
8068 			continue;
8069 
8070 		if (piocb->vport != vport)
8071 			continue;
8072 
8073 		if (piocb->iocb_flag & LPFC_DRIVER_ABORTED)
8074 			continue;
8075 
8076 		/* On the ELS ring we can have ELS_REQUESTs or
8077 		 * GEN_REQUESTs waiting for a response.
8078 		 */
8079 		cmd = &piocb->iocb;
8080 		if (cmd->ulpCommand == CMD_ELS_REQUEST64_CR) {
8081 			list_add_tail(&piocb->dlist, &abort_list);
8082 
8083 			/* If the link is down when flushing ELS commands
8084 			 * the firmware will not complete them till after
8085 			 * the link comes back up. This may confuse
8086 			 * discovery for the new link up, so we need to
8087 			 * change the compl routine to just clean up the iocb
8088 			 * and avoid any retry logic.
8089 			 */
8090 			if (phba->link_state == LPFC_LINK_DOWN)
8091 				piocb->iocb_cmpl = lpfc_cmpl_els_link_down;
8092 		}
8093 		if (cmd->ulpCommand == CMD_GEN_REQUEST64_CR)
8094 			list_add_tail(&piocb->dlist, &abort_list);
8095 	}
8096 
8097 	if (phba->sli_rev == LPFC_SLI_REV4)
8098 		spin_unlock(&pring->ring_lock);
8099 	spin_unlock_irqrestore(&phba->hbalock, iflags);
8100 
8101 	/* Abort each txcmpl iocb on aborted list and remove the dlist links. */
8102 	list_for_each_entry_safe(piocb, tmp_iocb, &abort_list, dlist) {
8103 		spin_lock_irqsave(&phba->hbalock, iflags);
8104 		list_del_init(&piocb->dlist);
8105 		lpfc_sli_issue_abort_iotag(phba, pring, piocb);
8106 		spin_unlock_irqrestore(&phba->hbalock, iflags);
8107 	}
8108 	if (!list_empty(&abort_list))
8109 		lpfc_printf_vlog(vport, KERN_ERR, LOG_TRACE_EVENT,
8110 				 "3387 abort list for txq not empty\n");
8111 	INIT_LIST_HEAD(&abort_list);
8112 
8113 	spin_lock_irqsave(&phba->hbalock, iflags);
8114 	if (phba->sli_rev == LPFC_SLI_REV4)
8115 		spin_lock(&pring->ring_lock);
8116 
8117 	/* No need to abort the txq list,
8118 	 * just queue them up for lpfc_sli_cancel_iocbs
8119 	 */
8120 	list_for_each_entry_safe(piocb, tmp_iocb, &pring->txq, list) {
8121 		cmd = &piocb->iocb;
8122 
8123 		if (piocb->iocb_flag & LPFC_IO_LIBDFC) {
8124 			continue;
8125 		}
8126 
8127 		/* Do not flush out the QUE_RING and ABORT/CLOSE iocbs */
8128 		if (cmd->ulpCommand == CMD_QUE_RING_BUF_CN ||
8129 		    cmd->ulpCommand == CMD_QUE_RING_BUF64_CN ||
8130 		    cmd->ulpCommand == CMD_CLOSE_XRI_CN ||
8131 		    cmd->ulpCommand == CMD_ABORT_XRI_CN)
8132 			continue;
8133 
8134 		if (piocb->vport != vport)
8135 			continue;
8136 
8137 		list_del_init(&piocb->list);
8138 		list_add_tail(&piocb->list, &abort_list);
8139 	}
8140 
8141 	/* The same holds true for any FLOGI/FDISC on the fabric_iocb_list */
8142 	if (vport == phba->pport) {
8143 		list_for_each_entry_safe(piocb, tmp_iocb,
8144 					 &phba->fabric_iocb_list, list) {
8145 			cmd = &piocb->iocb;
8146 			list_del_init(&piocb->list);
8147 			list_add_tail(&piocb->list, &abort_list);
8148 		}
8149 	}
8150 
8151 	if (phba->sli_rev == LPFC_SLI_REV4)
8152 		spin_unlock(&pring->ring_lock);
8153 	spin_unlock_irqrestore(&phba->hbalock, iflags);
8154 
8155 	/* Cancel all the IOCBs from the completions list */
8156 	lpfc_sli_cancel_iocbs(phba, &abort_list,
8157 			      IOSTAT_LOCAL_REJECT, IOERR_SLI_ABORTED);
8158 
8159 	return;
8160 }
8161 
8162 /**
8163  * lpfc_els_flush_all_cmd - Clean up all the outstanding els commands to a HBA
8164  * @phba: pointer to lpfc hba data structure.
8165  *
8166  * This routine is used to clean up all the outstanding ELS commands on a
8167  * @phba. It first aborts the @phba by invoking the lpfc_fabric_abort_hba()
8168  * routine. After that, it walks the ELS transmit queue to remove all the
8169  * IOCBs to the @phba other than the QUE_RING and ABORT/CLOSE IOCBs. For
8170  * the IOCBs with the completion callback function associated, the callback
8171  * function will be invoked with the status set to IOSTAT_LOCAL_REJECT and
8172  * un.ulpWord[4] set to IOERR_SLI_ABORTED. For IOCBs without the completion
8173  * callback function associated, the IOCB will simply be released. Finally,
8174  * it walks the ELS transmit completion queue to issue an abort IOCB to any
8175  * transmit completion queue IOCB that is not an IOCB from libdfc (i.e., the
8176  * management plane IOCBs that are not part of the discovery state machine)
8177  * out to HBA by invoking the lpfc_sli_issue_abort_iotag() routine.
8178  **/
8179 void
8180 lpfc_els_flush_all_cmd(struct lpfc_hba  *phba)
8181 {
8182 	struct lpfc_vport *vport;
8183 
8184 	spin_lock_irq(&phba->port_list_lock);
8185 	list_for_each_entry(vport, &phba->port_list, listentry)
8186 		lpfc_els_flush_cmd(vport);
8187 	spin_unlock_irq(&phba->port_list_lock);
8188 
8189 	return;
8190 }
8191 
8192 /**
8193  * lpfc_send_els_failure_event - Posts an ELS command failure event
8194  * @phba: Pointer to hba context object.
8195  * @cmdiocbp: Pointer to command iocb which reported error.
8196  * @rspiocbp: Pointer to response iocb which reported error.
8197  *
8198  * This function sends an event when there is an ELS command
8199  * failure.
8200  **/
8201 void
8202 lpfc_send_els_failure_event(struct lpfc_hba *phba,
8203 			struct lpfc_iocbq *cmdiocbp,
8204 			struct lpfc_iocbq *rspiocbp)
8205 {
8206 	struct lpfc_vport *vport = cmdiocbp->vport;
8207 	struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
8208 	struct lpfc_lsrjt_event lsrjt_event;
8209 	struct lpfc_fabric_event_header fabric_event;
8210 	struct ls_rjt stat;
8211 	struct lpfc_nodelist *ndlp;
8212 	uint32_t *pcmd;
8213 
8214 	ndlp = cmdiocbp->context1;
8215 	if (!ndlp || !NLP_CHK_NODE_ACT(ndlp))
8216 		return;
8217 
8218 	if (rspiocbp->iocb.ulpStatus == IOSTAT_LS_RJT) {
8219 		lsrjt_event.header.event_type = FC_REG_ELS_EVENT;
8220 		lsrjt_event.header.subcategory = LPFC_EVENT_LSRJT_RCV;
8221 		memcpy(lsrjt_event.header.wwpn, &ndlp->nlp_portname,
8222 			sizeof(struct lpfc_name));
8223 		memcpy(lsrjt_event.header.wwnn, &ndlp->nlp_nodename,
8224 			sizeof(struct lpfc_name));
8225 		pcmd = (uint32_t *) (((struct lpfc_dmabuf *)
8226 			cmdiocbp->context2)->virt);
8227 		lsrjt_event.command = (pcmd != NULL) ? *pcmd : 0;
8228 		stat.un.lsRjtError = be32_to_cpu(rspiocbp->iocb.un.ulpWord[4]);
8229 		lsrjt_event.reason_code = stat.un.b.lsRjtRsnCode;
8230 		lsrjt_event.explanation = stat.un.b.lsRjtRsnCodeExp;
8231 		fc_host_post_vendor_event(shost,
8232 			fc_get_event_number(),
8233 			sizeof(lsrjt_event),
8234 			(char *)&lsrjt_event,
8235 			LPFC_NL_VENDOR_ID);
8236 		return;
8237 	}
8238 	if ((rspiocbp->iocb.ulpStatus == IOSTAT_NPORT_BSY) ||
8239 		(rspiocbp->iocb.ulpStatus == IOSTAT_FABRIC_BSY)) {
8240 		fabric_event.event_type = FC_REG_FABRIC_EVENT;
8241 		if (rspiocbp->iocb.ulpStatus == IOSTAT_NPORT_BSY)
8242 			fabric_event.subcategory = LPFC_EVENT_PORT_BUSY;
8243 		else
8244 			fabric_event.subcategory = LPFC_EVENT_FABRIC_BUSY;
8245 		memcpy(fabric_event.wwpn, &ndlp->nlp_portname,
8246 			sizeof(struct lpfc_name));
8247 		memcpy(fabric_event.wwnn, &ndlp->nlp_nodename,
8248 			sizeof(struct lpfc_name));
8249 		fc_host_post_vendor_event(shost,
8250 			fc_get_event_number(),
8251 			sizeof(fabric_event),
8252 			(char *)&fabric_event,
8253 			LPFC_NL_VENDOR_ID);
8254 		return;
8255 	}
8256 
8257 }
8258 
8259 /**
8260  * lpfc_send_els_event - Posts unsolicited els event
8261  * @vport: Pointer to vport object.
8262  * @ndlp: Pointer FC node object.
8263  * @payload: ELS command code type.
8264  *
8265  * This function posts an event when there is an incoming
8266  * unsolicited ELS command.
8267  **/
8268 static void
8269 lpfc_send_els_event(struct lpfc_vport *vport,
8270 		    struct lpfc_nodelist *ndlp,
8271 		    uint32_t *payload)
8272 {
8273 	struct lpfc_els_event_header *els_data = NULL;
8274 	struct lpfc_logo_event *logo_data = NULL;
8275 	struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
8276 
8277 	if (*payload == ELS_CMD_LOGO) {
8278 		logo_data = kmalloc(sizeof(struct lpfc_logo_event), GFP_KERNEL);
8279 		if (!logo_data) {
8280 			lpfc_printf_vlog(vport, KERN_ERR, LOG_TRACE_EVENT,
8281 				"0148 Failed to allocate memory "
8282 				"for LOGO event\n");
8283 			return;
8284 		}
8285 		els_data = &logo_data->header;
8286 	} else {
8287 		els_data = kmalloc(sizeof(struct lpfc_els_event_header),
8288 			GFP_KERNEL);
8289 		if (!els_data) {
8290 			lpfc_printf_vlog(vport, KERN_ERR, LOG_TRACE_EVENT,
8291 				"0149 Failed to allocate memory "
8292 				"for ELS event\n");
8293 			return;
8294 		}
8295 	}
8296 	els_data->event_type = FC_REG_ELS_EVENT;
8297 	switch (*payload) {
8298 	case ELS_CMD_PLOGI:
8299 		els_data->subcategory = LPFC_EVENT_PLOGI_RCV;
8300 		break;
8301 	case ELS_CMD_PRLO:
8302 		els_data->subcategory = LPFC_EVENT_PRLO_RCV;
8303 		break;
8304 	case ELS_CMD_ADISC:
8305 		els_data->subcategory = LPFC_EVENT_ADISC_RCV;
8306 		break;
8307 	case ELS_CMD_LOGO:
8308 		els_data->subcategory = LPFC_EVENT_LOGO_RCV;
8309 		/* Copy the WWPN in the LOGO payload */
8310 		memcpy(logo_data->logo_wwpn, &payload[2],
8311 			sizeof(struct lpfc_name));
8312 		break;
8313 	default:
8314 		kfree(els_data);
8315 		return;
8316 	}
8317 	memcpy(els_data->wwpn, &ndlp->nlp_portname, sizeof(struct lpfc_name));
8318 	memcpy(els_data->wwnn, &ndlp->nlp_nodename, sizeof(struct lpfc_name));
8319 	if (*payload == ELS_CMD_LOGO) {
8320 		fc_host_post_vendor_event(shost,
8321 			fc_get_event_number(),
8322 			sizeof(struct lpfc_logo_event),
8323 			(char *)logo_data,
8324 			LPFC_NL_VENDOR_ID);
8325 		kfree(logo_data);
8326 	} else {
8327 		fc_host_post_vendor_event(shost,
8328 			fc_get_event_number(),
8329 			sizeof(struct lpfc_els_event_header),
8330 			(char *)els_data,
8331 			LPFC_NL_VENDOR_ID);
8332 		kfree(els_data);
8333 	}
8334 
8335 	return;
8336 }
8337 
8338 
8339 DECLARE_ENUM2STR_LOOKUP(lpfc_get_tlv_dtag_nm, fc_ls_tlv_dtag,
8340 			FC_LS_TLV_DTAG_INIT);
8341 
8342 DECLARE_ENUM2STR_LOOKUP(lpfc_get_fpin_li_event_nm, fc_fpin_li_event_types,
8343 			FC_FPIN_LI_EVT_TYPES_INIT);
8344 
8345 /**
8346  * lpfc_els_rcv_fpin_li - Process an FPIN Link Integrity Event.
8347  * @vport: Pointer to vport object.
8348  * @tlv:  Pointer to the Link Integrity Notification Descriptor.
8349  *
8350  * This function processes a link integrity FPIN event by
8351  * logging a message
8352  **/
8353 static void
8354 lpfc_els_rcv_fpin_li(struct lpfc_vport *vport, struct fc_tlv_desc *tlv)
8355 {
8356 	struct fc_fn_li_desc *li = (struct fc_fn_li_desc *)tlv;
8357 	const char *li_evt_str;
8358 	u32 li_evt;
8359 
8360 	li_evt = be16_to_cpu(li->event_type);
8361 	li_evt_str = lpfc_get_fpin_li_event_nm(li_evt);
8362 
8363 	lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
8364 			 "4680 FPIN Link Integrity %s (x%x) "
8365 			 "Detecting PN x%016llx Attached PN x%016llx "
8366 			 "Duration %d mSecs Count %d Port Cnt %d\n",
8367 			 li_evt_str, li_evt,
8368 			 be64_to_cpu(li->detecting_wwpn),
8369 			 be64_to_cpu(li->attached_wwpn),
8370 			 be32_to_cpu(li->event_threshold),
8371 			 be32_to_cpu(li->event_count),
8372 			 be32_to_cpu(li->pname_count));
8373 }
8374 
8375 static void
8376 lpfc_els_rcv_fpin(struct lpfc_vport *vport, struct fc_els_fpin *fpin,
8377 		  u32 fpin_length)
8378 {
8379 	struct fc_tlv_desc *tlv;
8380 	const char *dtag_nm;
8381 	uint32_t desc_cnt = 0, bytes_remain;
8382 	u32 dtag;
8383 
8384 	/* FPINs handled only if we are in the right discovery state */
8385 	if (vport->port_state < LPFC_DISC_AUTH)
8386 		return;
8387 
8388 	/* make sure there is the full fpin header */
8389 	if (fpin_length < sizeof(struct fc_els_fpin))
8390 		return;
8391 
8392 	tlv = (struct fc_tlv_desc *)&fpin->fpin_desc[0];
8393 	bytes_remain = fpin_length - offsetof(struct fc_els_fpin, fpin_desc);
8394 	bytes_remain = min_t(u32, bytes_remain, be32_to_cpu(fpin->desc_len));
8395 
8396 	/* process each descriptor */
8397 	while (bytes_remain >= FC_TLV_DESC_HDR_SZ &&
8398 	       bytes_remain >= FC_TLV_DESC_SZ_FROM_LENGTH(tlv)) {
8399 
8400 		dtag = be32_to_cpu(tlv->desc_tag);
8401 		switch (dtag) {
8402 		case ELS_DTAG_LNK_INTEGRITY:
8403 			lpfc_els_rcv_fpin_li(vport, tlv);
8404 			break;
8405 		default:
8406 			dtag_nm = lpfc_get_tlv_dtag_nm(dtag);
8407 			lpfc_printf_vlog(vport, KERN_ERR, LOG_TRACE_EVENT,
8408 					 "4678  skipped FPIN descriptor[%d]: "
8409 					 "tag x%x (%s)\n",
8410 					 desc_cnt, dtag, dtag_nm);
8411 			break;
8412 		}
8413 
8414 		desc_cnt++;
8415 		bytes_remain -= FC_TLV_DESC_SZ_FROM_LENGTH(tlv);
8416 		tlv = fc_tlv_next_desc(tlv);
8417 	}
8418 
8419 	fc_host_fpin_rcv(lpfc_shost_from_vport(vport), fpin_length,
8420 			 (char *)fpin);
8421 }
8422 
8423 /**
8424  * lpfc_els_unsol_buffer - Process an unsolicited event data buffer
8425  * @phba: pointer to lpfc hba data structure.
8426  * @pring: pointer to a SLI ring.
8427  * @vport: pointer to a host virtual N_Port data structure.
8428  * @elsiocb: pointer to lpfc els command iocb data structure.
8429  *
8430  * This routine is used for processing the IOCB associated with a unsolicited
8431  * event. It first determines whether there is an existing ndlp that matches
8432  * the DID from the unsolicited IOCB. If not, it will create a new one with
8433  * the DID from the unsolicited IOCB. The ELS command from the unsolicited
8434  * IOCB is then used to invoke the proper routine and to set up proper state
8435  * of the discovery state machine.
8436  **/
8437 static void
8438 lpfc_els_unsol_buffer(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
8439 		      struct lpfc_vport *vport, struct lpfc_iocbq *elsiocb)
8440 {
8441 	struct Scsi_Host  *shost;
8442 	struct lpfc_nodelist *ndlp;
8443 	struct ls_rjt stat;
8444 	uint32_t *payload, payload_len;
8445 	uint32_t cmd, did, newnode;
8446 	uint8_t rjt_exp, rjt_err = 0, init_link = 0;
8447 	IOCB_t *icmd = &elsiocb->iocb;
8448 	LPFC_MBOXQ_t *mbox;
8449 
8450 	if (!vport || !(elsiocb->context2))
8451 		goto dropit;
8452 
8453 	newnode = 0;
8454 	payload = ((struct lpfc_dmabuf *)elsiocb->context2)->virt;
8455 	payload_len = elsiocb->iocb.unsli3.rcvsli3.acc_len;
8456 	cmd = *payload;
8457 	if ((phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) == 0)
8458 		lpfc_post_buffer(phba, pring, 1);
8459 
8460 	did = icmd->un.rcvels.remoteID;
8461 	if (icmd->ulpStatus) {
8462 		lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
8463 			"RCV Unsol ELS:  status:x%x/x%x did:x%x",
8464 			icmd->ulpStatus, icmd->un.ulpWord[4], did);
8465 		goto dropit;
8466 	}
8467 
8468 	/* Check to see if link went down during discovery */
8469 	if (lpfc_els_chk_latt(vport))
8470 		goto dropit;
8471 
8472 	/* Ignore traffic received during vport shutdown. */
8473 	if (vport->load_flag & FC_UNLOADING)
8474 		goto dropit;
8475 
8476 	/* If NPort discovery is delayed drop incoming ELS */
8477 	if ((vport->fc_flag & FC_DISC_DELAYED) &&
8478 			(cmd != ELS_CMD_PLOGI))
8479 		goto dropit;
8480 
8481 	ndlp = lpfc_findnode_did(vport, did);
8482 	if (!ndlp) {
8483 		/* Cannot find existing Fabric ndlp, so allocate a new one */
8484 		ndlp = lpfc_nlp_init(vport, did);
8485 		if (!ndlp)
8486 			goto dropit;
8487 		lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
8488 		newnode = 1;
8489 		if ((did & Fabric_DID_MASK) == Fabric_DID_MASK)
8490 			ndlp->nlp_type |= NLP_FABRIC;
8491 	} else if (!NLP_CHK_NODE_ACT(ndlp)) {
8492 		ndlp = lpfc_enable_node(vport, ndlp,
8493 					NLP_STE_UNUSED_NODE);
8494 		if (!ndlp)
8495 			goto dropit;
8496 		lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
8497 		newnode = 1;
8498 		if ((did & Fabric_DID_MASK) == Fabric_DID_MASK)
8499 			ndlp->nlp_type |= NLP_FABRIC;
8500 	} else if (ndlp->nlp_state == NLP_STE_UNUSED_NODE) {
8501 		/* This is similar to the new node path */
8502 		ndlp = lpfc_nlp_get(ndlp);
8503 		if (!ndlp)
8504 			goto dropit;
8505 		lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
8506 		newnode = 1;
8507 	}
8508 
8509 	phba->fc_stat.elsRcvFrame++;
8510 
8511 	/*
8512 	 * Do not process any unsolicited ELS commands
8513 	 * if the ndlp is in DEV_LOSS
8514 	 */
8515 	shost = lpfc_shost_from_vport(vport);
8516 	spin_lock_irq(shost->host_lock);
8517 	if (ndlp->nlp_flag & NLP_IN_DEV_LOSS) {
8518 		spin_unlock_irq(shost->host_lock);
8519 		if (newnode)
8520 			lpfc_nlp_put(ndlp);
8521 		goto dropit;
8522 	}
8523 	spin_unlock_irq(shost->host_lock);
8524 
8525 	elsiocb->context1 = lpfc_nlp_get(ndlp);
8526 	elsiocb->vport = vport;
8527 
8528 	if ((cmd & ELS_CMD_MASK) == ELS_CMD_RSCN) {
8529 		cmd &= ELS_CMD_MASK;
8530 	}
8531 	/* ELS command <elsCmd> received from NPORT <did> */
8532 	lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
8533 			 "0112 ELS command x%x received from NPORT x%x "
8534 			 "Data: x%x x%x x%x x%x\n",
8535 			cmd, did, vport->port_state, vport->fc_flag,
8536 			vport->fc_myDID, vport->fc_prevDID);
8537 
8538 	/* reject till our FLOGI completes or PLOGI assigned DID via PT2PT */
8539 	if ((vport->port_state < LPFC_FABRIC_CFG_LINK) &&
8540 	    (cmd != ELS_CMD_FLOGI) &&
8541 	    !((cmd == ELS_CMD_PLOGI) && (vport->fc_flag & FC_PT2PT))) {
8542 		rjt_err = LSRJT_LOGICAL_BSY;
8543 		rjt_exp = LSEXP_NOTHING_MORE;
8544 		goto lsrjt;
8545 	}
8546 
8547 	switch (cmd) {
8548 	case ELS_CMD_PLOGI:
8549 		lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
8550 			"RCV PLOGI:       did:x%x/ste:x%x flg:x%x",
8551 			did, vport->port_state, ndlp->nlp_flag);
8552 
8553 		phba->fc_stat.elsRcvPLOGI++;
8554 		ndlp = lpfc_plogi_confirm_nport(phba, payload, ndlp);
8555 		if (phba->sli_rev == LPFC_SLI_REV4 &&
8556 		    (phba->pport->fc_flag & FC_PT2PT)) {
8557 			vport->fc_prevDID = vport->fc_myDID;
8558 			/* Our DID needs to be updated before registering
8559 			 * the vfi. This is done in lpfc_rcv_plogi but
8560 			 * that is called after the reg_vfi.
8561 			 */
8562 			vport->fc_myDID = elsiocb->iocb.un.rcvels.parmRo;
8563 			lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
8564 					 "3312 Remote port assigned DID x%x "
8565 					 "%x\n", vport->fc_myDID,
8566 					 vport->fc_prevDID);
8567 		}
8568 
8569 		lpfc_send_els_event(vport, ndlp, payload);
8570 
8571 		/* If Nport discovery is delayed, reject PLOGIs */
8572 		if (vport->fc_flag & FC_DISC_DELAYED) {
8573 			rjt_err = LSRJT_UNABLE_TPC;
8574 			rjt_exp = LSEXP_NOTHING_MORE;
8575 			break;
8576 		}
8577 
8578 		if (vport->port_state < LPFC_DISC_AUTH) {
8579 			if (!(phba->pport->fc_flag & FC_PT2PT) ||
8580 				(phba->pport->fc_flag & FC_PT2PT_PLOGI)) {
8581 				rjt_err = LSRJT_UNABLE_TPC;
8582 				rjt_exp = LSEXP_NOTHING_MORE;
8583 				break;
8584 			}
8585 		}
8586 
8587 		spin_lock_irq(shost->host_lock);
8588 		ndlp->nlp_flag &= ~NLP_TARGET_REMOVE;
8589 		spin_unlock_irq(shost->host_lock);
8590 
8591 		lpfc_disc_state_machine(vport, ndlp, elsiocb,
8592 					NLP_EVT_RCV_PLOGI);
8593 
8594 		break;
8595 	case ELS_CMD_FLOGI:
8596 		lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
8597 			"RCV FLOGI:       did:x%x/ste:x%x flg:x%x",
8598 			did, vport->port_state, ndlp->nlp_flag);
8599 
8600 		phba->fc_stat.elsRcvFLOGI++;
8601 
8602 		/* If the driver believes fabric discovery is done and is ready,
8603 		 * bounce the link.  There is some descrepancy.
8604 		 */
8605 		if (vport->port_state >= LPFC_LOCAL_CFG_LINK &&
8606 		    vport->fc_flag & FC_PT2PT &&
8607 		    vport->rcv_flogi_cnt >= 1) {
8608 			rjt_err = LSRJT_LOGICAL_BSY;
8609 			rjt_exp = LSEXP_NOTHING_MORE;
8610 			init_link++;
8611 			goto lsrjt;
8612 		}
8613 
8614 		lpfc_els_rcv_flogi(vport, elsiocb, ndlp);
8615 		if (newnode)
8616 			lpfc_nlp_put(ndlp);
8617 		break;
8618 	case ELS_CMD_LOGO:
8619 		lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
8620 			"RCV LOGO:        did:x%x/ste:x%x flg:x%x",
8621 			did, vport->port_state, ndlp->nlp_flag);
8622 
8623 		phba->fc_stat.elsRcvLOGO++;
8624 		lpfc_send_els_event(vport, ndlp, payload);
8625 		if (vport->port_state < LPFC_DISC_AUTH) {
8626 			rjt_err = LSRJT_UNABLE_TPC;
8627 			rjt_exp = LSEXP_NOTHING_MORE;
8628 			break;
8629 		}
8630 		lpfc_disc_state_machine(vport, ndlp, elsiocb, NLP_EVT_RCV_LOGO);
8631 		break;
8632 	case ELS_CMD_PRLO:
8633 		lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
8634 			"RCV PRLO:        did:x%x/ste:x%x flg:x%x",
8635 			did, vport->port_state, ndlp->nlp_flag);
8636 
8637 		phba->fc_stat.elsRcvPRLO++;
8638 		lpfc_send_els_event(vport, ndlp, payload);
8639 		if (vport->port_state < LPFC_DISC_AUTH) {
8640 			rjt_err = LSRJT_UNABLE_TPC;
8641 			rjt_exp = LSEXP_NOTHING_MORE;
8642 			break;
8643 		}
8644 		lpfc_disc_state_machine(vport, ndlp, elsiocb, NLP_EVT_RCV_PRLO);
8645 		break;
8646 	case ELS_CMD_LCB:
8647 		phba->fc_stat.elsRcvLCB++;
8648 		lpfc_els_rcv_lcb(vport, elsiocb, ndlp);
8649 		break;
8650 	case ELS_CMD_RDP:
8651 		phba->fc_stat.elsRcvRDP++;
8652 		lpfc_els_rcv_rdp(vport, elsiocb, ndlp);
8653 		break;
8654 	case ELS_CMD_RSCN:
8655 		phba->fc_stat.elsRcvRSCN++;
8656 		lpfc_els_rcv_rscn(vport, elsiocb, ndlp);
8657 		if (newnode)
8658 			lpfc_nlp_put(ndlp);
8659 		break;
8660 	case ELS_CMD_ADISC:
8661 		lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
8662 			"RCV ADISC:       did:x%x/ste:x%x flg:x%x",
8663 			did, vport->port_state, ndlp->nlp_flag);
8664 
8665 		lpfc_send_els_event(vport, ndlp, payload);
8666 		phba->fc_stat.elsRcvADISC++;
8667 		if (vport->port_state < LPFC_DISC_AUTH) {
8668 			rjt_err = LSRJT_UNABLE_TPC;
8669 			rjt_exp = LSEXP_NOTHING_MORE;
8670 			break;
8671 		}
8672 		lpfc_disc_state_machine(vport, ndlp, elsiocb,
8673 					NLP_EVT_RCV_ADISC);
8674 		break;
8675 	case ELS_CMD_PDISC:
8676 		lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
8677 			"RCV PDISC:       did:x%x/ste:x%x flg:x%x",
8678 			did, vport->port_state, ndlp->nlp_flag);
8679 
8680 		phba->fc_stat.elsRcvPDISC++;
8681 		if (vport->port_state < LPFC_DISC_AUTH) {
8682 			rjt_err = LSRJT_UNABLE_TPC;
8683 			rjt_exp = LSEXP_NOTHING_MORE;
8684 			break;
8685 		}
8686 		lpfc_disc_state_machine(vport, ndlp, elsiocb,
8687 					NLP_EVT_RCV_PDISC);
8688 		break;
8689 	case ELS_CMD_FARPR:
8690 		lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
8691 			"RCV FARPR:       did:x%x/ste:x%x flg:x%x",
8692 			did, vport->port_state, ndlp->nlp_flag);
8693 
8694 		phba->fc_stat.elsRcvFARPR++;
8695 		lpfc_els_rcv_farpr(vport, elsiocb, ndlp);
8696 		break;
8697 	case ELS_CMD_FARP:
8698 		lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
8699 			"RCV FARP:        did:x%x/ste:x%x flg:x%x",
8700 			did, vport->port_state, ndlp->nlp_flag);
8701 
8702 		phba->fc_stat.elsRcvFARP++;
8703 		lpfc_els_rcv_farp(vport, elsiocb, ndlp);
8704 		break;
8705 	case ELS_CMD_FAN:
8706 		lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
8707 			"RCV FAN:         did:x%x/ste:x%x flg:x%x",
8708 			did, vport->port_state, ndlp->nlp_flag);
8709 
8710 		phba->fc_stat.elsRcvFAN++;
8711 		lpfc_els_rcv_fan(vport, elsiocb, ndlp);
8712 		break;
8713 	case ELS_CMD_PRLI:
8714 	case ELS_CMD_NVMEPRLI:
8715 		lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
8716 			"RCV PRLI:        did:x%x/ste:x%x flg:x%x",
8717 			did, vport->port_state, ndlp->nlp_flag);
8718 
8719 		phba->fc_stat.elsRcvPRLI++;
8720 		if ((vport->port_state < LPFC_DISC_AUTH) &&
8721 		    (vport->fc_flag & FC_FABRIC)) {
8722 			rjt_err = LSRJT_UNABLE_TPC;
8723 			rjt_exp = LSEXP_NOTHING_MORE;
8724 			break;
8725 		}
8726 		lpfc_disc_state_machine(vport, ndlp, elsiocb, NLP_EVT_RCV_PRLI);
8727 		break;
8728 	case ELS_CMD_LIRR:
8729 		lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
8730 			"RCV LIRR:        did:x%x/ste:x%x flg:x%x",
8731 			did, vport->port_state, ndlp->nlp_flag);
8732 
8733 		phba->fc_stat.elsRcvLIRR++;
8734 		lpfc_els_rcv_lirr(vport, elsiocb, ndlp);
8735 		if (newnode)
8736 			lpfc_nlp_put(ndlp);
8737 		break;
8738 	case ELS_CMD_RLS:
8739 		lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
8740 			"RCV RLS:         did:x%x/ste:x%x flg:x%x",
8741 			did, vport->port_state, ndlp->nlp_flag);
8742 
8743 		phba->fc_stat.elsRcvRLS++;
8744 		lpfc_els_rcv_rls(vport, elsiocb, ndlp);
8745 		if (newnode)
8746 			lpfc_nlp_put(ndlp);
8747 		break;
8748 	case ELS_CMD_RPL:
8749 		lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
8750 			"RCV RPL:         did:x%x/ste:x%x flg:x%x",
8751 			did, vport->port_state, ndlp->nlp_flag);
8752 
8753 		phba->fc_stat.elsRcvRPL++;
8754 		lpfc_els_rcv_rpl(vport, elsiocb, ndlp);
8755 		if (newnode)
8756 			lpfc_nlp_put(ndlp);
8757 		break;
8758 	case ELS_CMD_RNID:
8759 		lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
8760 			"RCV RNID:        did:x%x/ste:x%x flg:x%x",
8761 			did, vport->port_state, ndlp->nlp_flag);
8762 
8763 		phba->fc_stat.elsRcvRNID++;
8764 		lpfc_els_rcv_rnid(vport, elsiocb, ndlp);
8765 		if (newnode)
8766 			lpfc_nlp_put(ndlp);
8767 		break;
8768 	case ELS_CMD_RTV:
8769 		lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
8770 			"RCV RTV:        did:x%x/ste:x%x flg:x%x",
8771 			did, vport->port_state, ndlp->nlp_flag);
8772 		phba->fc_stat.elsRcvRTV++;
8773 		lpfc_els_rcv_rtv(vport, elsiocb, ndlp);
8774 		if (newnode)
8775 			lpfc_nlp_put(ndlp);
8776 		break;
8777 	case ELS_CMD_RRQ:
8778 		lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
8779 			"RCV RRQ:         did:x%x/ste:x%x flg:x%x",
8780 			did, vport->port_state, ndlp->nlp_flag);
8781 
8782 		phba->fc_stat.elsRcvRRQ++;
8783 		lpfc_els_rcv_rrq(vport, elsiocb, ndlp);
8784 		if (newnode)
8785 			lpfc_nlp_put(ndlp);
8786 		break;
8787 	case ELS_CMD_ECHO:
8788 		lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
8789 			"RCV ECHO:        did:x%x/ste:x%x flg:x%x",
8790 			did, vport->port_state, ndlp->nlp_flag);
8791 
8792 		phba->fc_stat.elsRcvECHO++;
8793 		lpfc_els_rcv_echo(vport, elsiocb, ndlp);
8794 		if (newnode)
8795 			lpfc_nlp_put(ndlp);
8796 		break;
8797 	case ELS_CMD_REC:
8798 		/* receive this due to exchange closed */
8799 		rjt_err = LSRJT_UNABLE_TPC;
8800 		rjt_exp = LSEXP_INVALID_OX_RX;
8801 		break;
8802 	case ELS_CMD_FPIN:
8803 		lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
8804 				      "RCV FPIN:       did:x%x/ste:x%x flg:x%x",
8805 				      did, vport->port_state, ndlp->nlp_flag);
8806 
8807 		lpfc_els_rcv_fpin(vport, (struct fc_els_fpin *)payload,
8808 				  payload_len);
8809 
8810 		/* There are no replies, so no rjt codes */
8811 		break;
8812 	default:
8813 		lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
8814 			"RCV ELS cmd:     cmd:x%x did:x%x/ste:x%x",
8815 			cmd, did, vport->port_state);
8816 
8817 		/* Unsupported ELS command, reject */
8818 		rjt_err = LSRJT_CMD_UNSUPPORTED;
8819 		rjt_exp = LSEXP_NOTHING_MORE;
8820 
8821 		/* Unknown ELS command <elsCmd> received from NPORT <did> */
8822 		lpfc_printf_vlog(vport, KERN_ERR, LOG_TRACE_EVENT,
8823 				 "0115 Unknown ELS command x%x "
8824 				 "received from NPORT x%x\n", cmd, did);
8825 		if (newnode)
8826 			lpfc_nlp_put(ndlp);
8827 		break;
8828 	}
8829 
8830 lsrjt:
8831 	/* check if need to LS_RJT received ELS cmd */
8832 	if (rjt_err) {
8833 		memset(&stat, 0, sizeof(stat));
8834 		stat.un.b.lsRjtRsnCode = rjt_err;
8835 		stat.un.b.lsRjtRsnCodeExp = rjt_exp;
8836 		lpfc_els_rsp_reject(vport, stat.un.lsRjtError, elsiocb, ndlp,
8837 			NULL);
8838 	}
8839 
8840 	lpfc_nlp_put(elsiocb->context1);
8841 	elsiocb->context1 = NULL;
8842 
8843 	/* Special case.  Driver received an unsolicited command that
8844 	 * unsupportable given the driver's current state.  Reset the
8845 	 * link and start over.
8846 	 */
8847 	if (init_link) {
8848 		mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
8849 		if (!mbox)
8850 			return;
8851 		lpfc_linkdown(phba);
8852 		lpfc_init_link(phba, mbox,
8853 			       phba->cfg_topology,
8854 			       phba->cfg_link_speed);
8855 		mbox->u.mb.un.varInitLnk.lipsr_AL_PA = 0;
8856 		mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
8857 		mbox->vport = vport;
8858 		if (lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT) ==
8859 		    MBX_NOT_FINISHED)
8860 			mempool_free(mbox, phba->mbox_mem_pool);
8861 	}
8862 
8863 	return;
8864 
8865 dropit:
8866 	if (vport && !(vport->load_flag & FC_UNLOADING))
8867 		lpfc_printf_vlog(vport, KERN_ERR, LOG_TRACE_EVENT,
8868 			"0111 Dropping received ELS cmd "
8869 			"Data: x%x x%x x%x\n",
8870 			icmd->ulpStatus, icmd->un.ulpWord[4], icmd->ulpTimeout);
8871 	phba->fc_stat.elsRcvDrop++;
8872 }
8873 
8874 /**
8875  * lpfc_els_unsol_event - Process an unsolicited event from an els sli ring
8876  * @phba: pointer to lpfc hba data structure.
8877  * @pring: pointer to a SLI ring.
8878  * @elsiocb: pointer to lpfc els iocb data structure.
8879  *
8880  * This routine is used to process an unsolicited event received from a SLI
8881  * (Service Level Interface) ring. The actual processing of the data buffer
8882  * associated with the unsolicited event is done by invoking the routine
8883  * lpfc_els_unsol_buffer() after properly set up the iocb buffer from the
8884  * SLI ring on which the unsolicited event was received.
8885  **/
8886 void
8887 lpfc_els_unsol_event(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
8888 		     struct lpfc_iocbq *elsiocb)
8889 {
8890 	struct lpfc_vport *vport = phba->pport;
8891 	IOCB_t *icmd = &elsiocb->iocb;
8892 	dma_addr_t paddr;
8893 	struct lpfc_dmabuf *bdeBuf1 = elsiocb->context2;
8894 	struct lpfc_dmabuf *bdeBuf2 = elsiocb->context3;
8895 
8896 	elsiocb->context1 = NULL;
8897 	elsiocb->context2 = NULL;
8898 	elsiocb->context3 = NULL;
8899 
8900 	if (icmd->ulpStatus == IOSTAT_NEED_BUFFER) {
8901 		lpfc_sli_hbqbuf_add_hbqs(phba, LPFC_ELS_HBQ);
8902 	} else if (icmd->ulpStatus == IOSTAT_LOCAL_REJECT &&
8903 		   (icmd->un.ulpWord[4] & IOERR_PARAM_MASK) ==
8904 		   IOERR_RCV_BUFFER_WAITING) {
8905 		phba->fc_stat.NoRcvBuf++;
8906 		/* Not enough posted buffers; Try posting more buffers */
8907 		if (!(phba->sli3_options & LPFC_SLI3_HBQ_ENABLED))
8908 			lpfc_post_buffer(phba, pring, 0);
8909 		return;
8910 	}
8911 
8912 	if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
8913 	    (icmd->ulpCommand == CMD_IOCB_RCV_ELS64_CX ||
8914 	     icmd->ulpCommand == CMD_IOCB_RCV_SEQ64_CX)) {
8915 		if (icmd->unsli3.rcvsli3.vpi == 0xffff)
8916 			vport = phba->pport;
8917 		else
8918 			vport = lpfc_find_vport_by_vpid(phba,
8919 						icmd->unsli3.rcvsli3.vpi);
8920 	}
8921 
8922 	/* If there are no BDEs associated
8923 	 * with this IOCB, there is nothing to do.
8924 	 */
8925 	if (icmd->ulpBdeCount == 0)
8926 		return;
8927 
8928 	/* type of ELS cmd is first 32bit word
8929 	 * in packet
8930 	 */
8931 	if (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) {
8932 		elsiocb->context2 = bdeBuf1;
8933 	} else {
8934 		paddr = getPaddr(icmd->un.cont64[0].addrHigh,
8935 				 icmd->un.cont64[0].addrLow);
8936 		elsiocb->context2 = lpfc_sli_ringpostbuf_get(phba, pring,
8937 							     paddr);
8938 	}
8939 
8940 	lpfc_els_unsol_buffer(phba, pring, vport, elsiocb);
8941 	/*
8942 	 * The different unsolicited event handlers would tell us
8943 	 * if they are done with "mp" by setting context2 to NULL.
8944 	 */
8945 	if (elsiocb->context2) {
8946 		lpfc_in_buf_free(phba, (struct lpfc_dmabuf *)elsiocb->context2);
8947 		elsiocb->context2 = NULL;
8948 	}
8949 
8950 	/* RCV_ELS64_CX provide for 2 BDEs - process 2nd if included */
8951 	if ((phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) &&
8952 	    icmd->ulpBdeCount == 2) {
8953 		elsiocb->context2 = bdeBuf2;
8954 		lpfc_els_unsol_buffer(phba, pring, vport, elsiocb);
8955 		/* free mp if we are done with it */
8956 		if (elsiocb->context2) {
8957 			lpfc_in_buf_free(phba, elsiocb->context2);
8958 			elsiocb->context2 = NULL;
8959 		}
8960 	}
8961 }
8962 
8963 static void
8964 lpfc_start_fdmi(struct lpfc_vport *vport)
8965 {
8966 	struct lpfc_nodelist *ndlp;
8967 
8968 	/* If this is the first time, allocate an ndlp and initialize
8969 	 * it. Otherwise, make sure the node is enabled and then do the
8970 	 * login.
8971 	 */
8972 	ndlp = lpfc_findnode_did(vport, FDMI_DID);
8973 	if (!ndlp) {
8974 		ndlp = lpfc_nlp_init(vport, FDMI_DID);
8975 		if (ndlp) {
8976 			ndlp->nlp_type |= NLP_FABRIC;
8977 		} else {
8978 			return;
8979 		}
8980 	}
8981 	if (!NLP_CHK_NODE_ACT(ndlp))
8982 		ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_NPR_NODE);
8983 
8984 	if (ndlp) {
8985 		lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
8986 		lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0);
8987 	}
8988 }
8989 
8990 /**
8991  * lpfc_do_scr_ns_plogi - Issue a plogi to the name server for scr
8992  * @phba: pointer to lpfc hba data structure.
8993  * @vport: pointer to a virtual N_Port data structure.
8994  *
8995  * This routine issues a Port Login (PLOGI) to the Name Server with
8996  * State Change Request (SCR) for a @vport. This routine will create an
8997  * ndlp for the Name Server associated to the @vport if such node does
8998  * not already exist. The PLOGI to Name Server is issued by invoking the
8999  * lpfc_issue_els_plogi() routine. If Fabric-Device Management Interface
9000  * (FDMI) is configured to the @vport, a FDMI node will be created and
9001  * the PLOGI to FDMI is issued by invoking lpfc_issue_els_plogi() routine.
9002  **/
9003 void
9004 lpfc_do_scr_ns_plogi(struct lpfc_hba *phba, struct lpfc_vport *vport)
9005 {
9006 	struct lpfc_nodelist *ndlp;
9007 	struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
9008 
9009 	/*
9010 	 * If lpfc_delay_discovery parameter is set and the clean address
9011 	 * bit is cleared and fc fabric parameters chenged, delay FC NPort
9012 	 * discovery.
9013 	 */
9014 	spin_lock_irq(shost->host_lock);
9015 	if (vport->fc_flag & FC_DISC_DELAYED) {
9016 		spin_unlock_irq(shost->host_lock);
9017 		lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
9018 				"3334 Delay fc port discovery for %d seconds\n",
9019 				phba->fc_ratov);
9020 		mod_timer(&vport->delayed_disc_tmo,
9021 			jiffies + msecs_to_jiffies(1000 * phba->fc_ratov));
9022 		return;
9023 	}
9024 	spin_unlock_irq(shost->host_lock);
9025 
9026 	ndlp = lpfc_findnode_did(vport, NameServer_DID);
9027 	if (!ndlp) {
9028 		ndlp = lpfc_nlp_init(vport, NameServer_DID);
9029 		if (!ndlp) {
9030 			if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
9031 				lpfc_disc_start(vport);
9032 				return;
9033 			}
9034 			lpfc_vport_set_state(vport, FC_VPORT_FAILED);
9035 			lpfc_printf_vlog(vport, KERN_ERR, LOG_TRACE_EVENT,
9036 					 "0251 NameServer login: no memory\n");
9037 			return;
9038 		}
9039 	} else if (!NLP_CHK_NODE_ACT(ndlp)) {
9040 		ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
9041 		if (!ndlp) {
9042 			if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
9043 				lpfc_disc_start(vport);
9044 				return;
9045 			}
9046 			lpfc_vport_set_state(vport, FC_VPORT_FAILED);
9047 			lpfc_printf_vlog(vport, KERN_ERR, LOG_TRACE_EVENT,
9048 					"0348 NameServer login: node freed\n");
9049 			return;
9050 		}
9051 	}
9052 	ndlp->nlp_type |= NLP_FABRIC;
9053 
9054 	lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
9055 
9056 	if (lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0)) {
9057 		lpfc_vport_set_state(vport, FC_VPORT_FAILED);
9058 		lpfc_printf_vlog(vport, KERN_ERR, LOG_TRACE_EVENT,
9059 				 "0252 Cannot issue NameServer login\n");
9060 		return;
9061 	}
9062 
9063 	if ((phba->cfg_enable_SmartSAN ||
9064 	     (phba->cfg_fdmi_on == LPFC_FDMI_SUPPORT)) &&
9065 	     (vport->load_flag & FC_ALLOW_FDMI))
9066 		lpfc_start_fdmi(vport);
9067 }
9068 
9069 /**
9070  * lpfc_cmpl_reg_new_vport - Completion callback function to register new vport
9071  * @phba: pointer to lpfc hba data structure.
9072  * @pmb: pointer to the driver internal queue element for mailbox command.
9073  *
9074  * This routine is the completion callback function to register new vport
9075  * mailbox command. If the new vport mailbox command completes successfully,
9076  * the fabric registration login shall be performed on physical port (the
9077  * new vport created is actually a physical port, with VPI 0) or the port
9078  * login to Name Server for State Change Request (SCR) will be performed
9079  * on virtual port (real virtual port, with VPI greater than 0).
9080  **/
9081 static void
9082 lpfc_cmpl_reg_new_vport(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
9083 {
9084 	struct lpfc_vport *vport = pmb->vport;
9085 	struct Scsi_Host  *shost = lpfc_shost_from_vport(vport);
9086 	struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *)pmb->ctx_ndlp;
9087 	MAILBOX_t *mb = &pmb->u.mb;
9088 	int rc;
9089 
9090 	spin_lock_irq(shost->host_lock);
9091 	vport->fc_flag &= ~FC_VPORT_NEEDS_REG_VPI;
9092 	spin_unlock_irq(shost->host_lock);
9093 
9094 	if (mb->mbxStatus) {
9095 		lpfc_printf_vlog(vport, KERN_ERR, LOG_TRACE_EVENT,
9096 				"0915 Register VPI failed : Status: x%x"
9097 				" upd bit: x%x \n", mb->mbxStatus,
9098 				 mb->un.varRegVpi.upd);
9099 		if (phba->sli_rev == LPFC_SLI_REV4 &&
9100 			mb->un.varRegVpi.upd)
9101 			goto mbox_err_exit ;
9102 
9103 		switch (mb->mbxStatus) {
9104 		case 0x11:	/* unsupported feature */
9105 		case 0x9603:	/* max_vpi exceeded */
9106 		case 0x9602:	/* Link event since CLEAR_LA */
9107 			/* giving up on vport registration */
9108 			lpfc_vport_set_state(vport, FC_VPORT_FAILED);
9109 			spin_lock_irq(shost->host_lock);
9110 			vport->fc_flag &= ~(FC_FABRIC | FC_PUBLIC_LOOP);
9111 			spin_unlock_irq(shost->host_lock);
9112 			lpfc_can_disctmo(vport);
9113 			break;
9114 		/* If reg_vpi fail with invalid VPI status, re-init VPI */
9115 		case 0x20:
9116 			spin_lock_irq(shost->host_lock);
9117 			vport->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
9118 			spin_unlock_irq(shost->host_lock);
9119 			lpfc_init_vpi(phba, pmb, vport->vpi);
9120 			pmb->vport = vport;
9121 			pmb->mbox_cmpl = lpfc_init_vpi_cmpl;
9122 			rc = lpfc_sli_issue_mbox(phba, pmb,
9123 				MBX_NOWAIT);
9124 			if (rc == MBX_NOT_FINISHED) {
9125 				lpfc_printf_vlog(vport, KERN_ERR,
9126 						 LOG_TRACE_EVENT,
9127 					"2732 Failed to issue INIT_VPI"
9128 					" mailbox command\n");
9129 			} else {
9130 				lpfc_nlp_put(ndlp);
9131 				return;
9132 			}
9133 			/* fall through */
9134 		default:
9135 			/* Try to recover from this error */
9136 			if (phba->sli_rev == LPFC_SLI_REV4)
9137 				lpfc_sli4_unreg_all_rpis(vport);
9138 			lpfc_mbx_unreg_vpi(vport);
9139 			spin_lock_irq(shost->host_lock);
9140 			vport->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
9141 			spin_unlock_irq(shost->host_lock);
9142 			if (mb->mbxStatus == MBX_NOT_FINISHED)
9143 				break;
9144 			if ((vport->port_type == LPFC_PHYSICAL_PORT) &&
9145 			    !(vport->fc_flag & FC_LOGO_RCVD_DID_CHNG)) {
9146 				if (phba->sli_rev == LPFC_SLI_REV4)
9147 					lpfc_issue_init_vfi(vport);
9148 				else
9149 					lpfc_initial_flogi(vport);
9150 			} else {
9151 				lpfc_initial_fdisc(vport);
9152 			}
9153 			break;
9154 		}
9155 	} else {
9156 		spin_lock_irq(shost->host_lock);
9157 		vport->vpi_state |= LPFC_VPI_REGISTERED;
9158 		spin_unlock_irq(shost->host_lock);
9159 		if (vport == phba->pport) {
9160 			if (phba->sli_rev < LPFC_SLI_REV4)
9161 				lpfc_issue_fabric_reglogin(vport);
9162 			else {
9163 				/*
9164 				 * If the physical port is instantiated using
9165 				 * FDISC, do not start vport discovery.
9166 				 */
9167 				if (vport->port_state != LPFC_FDISC)
9168 					lpfc_start_fdiscs(phba);
9169 				lpfc_do_scr_ns_plogi(phba, vport);
9170 			}
9171 		} else
9172 			lpfc_do_scr_ns_plogi(phba, vport);
9173 	}
9174 mbox_err_exit:
9175 	/* Now, we decrement the ndlp reference count held for this
9176 	 * callback function
9177 	 */
9178 	lpfc_nlp_put(ndlp);
9179 
9180 	mempool_free(pmb, phba->mbox_mem_pool);
9181 	return;
9182 }
9183 
9184 /**
9185  * lpfc_register_new_vport - Register a new vport with a HBA
9186  * @phba: pointer to lpfc hba data structure.
9187  * @vport: pointer to a host virtual N_Port data structure.
9188  * @ndlp: pointer to a node-list data structure.
9189  *
9190  * This routine registers the @vport as a new virtual port with a HBA.
9191  * It is done through a registering vpi mailbox command.
9192  **/
9193 void
9194 lpfc_register_new_vport(struct lpfc_hba *phba, struct lpfc_vport *vport,
9195 			struct lpfc_nodelist *ndlp)
9196 {
9197 	struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
9198 	LPFC_MBOXQ_t *mbox;
9199 
9200 	mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
9201 	if (mbox) {
9202 		lpfc_reg_vpi(vport, mbox);
9203 		mbox->vport = vport;
9204 		mbox->ctx_ndlp = lpfc_nlp_get(ndlp);
9205 		mbox->mbox_cmpl = lpfc_cmpl_reg_new_vport;
9206 		if (lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT)
9207 		    == MBX_NOT_FINISHED) {
9208 			/* mailbox command not success, decrement ndlp
9209 			 * reference count for this command
9210 			 */
9211 			lpfc_nlp_put(ndlp);
9212 			mempool_free(mbox, phba->mbox_mem_pool);
9213 
9214 			lpfc_printf_vlog(vport, KERN_ERR, LOG_TRACE_EVENT,
9215 				"0253 Register VPI: Can't send mbox\n");
9216 			goto mbox_err_exit;
9217 		}
9218 	} else {
9219 		lpfc_printf_vlog(vport, KERN_ERR, LOG_TRACE_EVENT,
9220 				 "0254 Register VPI: no memory\n");
9221 		goto mbox_err_exit;
9222 	}
9223 	return;
9224 
9225 mbox_err_exit:
9226 	lpfc_vport_set_state(vport, FC_VPORT_FAILED);
9227 	spin_lock_irq(shost->host_lock);
9228 	vport->fc_flag &= ~FC_VPORT_NEEDS_REG_VPI;
9229 	spin_unlock_irq(shost->host_lock);
9230 	return;
9231 }
9232 
9233 /**
9234  * lpfc_cancel_all_vport_retry_delay_timer - Cancel all vport retry delay timer
9235  * @phba: pointer to lpfc hba data structure.
9236  *
9237  * This routine cancels the retry delay timers to all the vports.
9238  **/
9239 void
9240 lpfc_cancel_all_vport_retry_delay_timer(struct lpfc_hba *phba)
9241 {
9242 	struct lpfc_vport **vports;
9243 	struct lpfc_nodelist *ndlp;
9244 	uint32_t link_state;
9245 	int i;
9246 
9247 	/* Treat this failure as linkdown for all vports */
9248 	link_state = phba->link_state;
9249 	lpfc_linkdown(phba);
9250 	phba->link_state = link_state;
9251 
9252 	vports = lpfc_create_vport_work_array(phba);
9253 
9254 	if (vports) {
9255 		for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
9256 			ndlp = lpfc_findnode_did(vports[i], Fabric_DID);
9257 			if (ndlp)
9258 				lpfc_cancel_retry_delay_tmo(vports[i], ndlp);
9259 			lpfc_els_flush_cmd(vports[i]);
9260 		}
9261 		lpfc_destroy_vport_work_array(phba, vports);
9262 	}
9263 }
9264 
9265 /**
9266  * lpfc_retry_pport_discovery - Start timer to retry FLOGI.
9267  * @phba: pointer to lpfc hba data structure.
9268  *
9269  * This routine abort all pending discovery commands and
9270  * start a timer to retry FLOGI for the physical port
9271  * discovery.
9272  **/
9273 void
9274 lpfc_retry_pport_discovery(struct lpfc_hba *phba)
9275 {
9276 	struct lpfc_nodelist *ndlp;
9277 	struct Scsi_Host  *shost;
9278 
9279 	/* Cancel the all vports retry delay retry timers */
9280 	lpfc_cancel_all_vport_retry_delay_timer(phba);
9281 
9282 	/* If fabric require FLOGI, then re-instantiate physical login */
9283 	ndlp = lpfc_findnode_did(phba->pport, Fabric_DID);
9284 	if (!ndlp)
9285 		return;
9286 
9287 	shost = lpfc_shost_from_vport(phba->pport);
9288 	mod_timer(&ndlp->nlp_delayfunc, jiffies + msecs_to_jiffies(1000));
9289 	spin_lock_irq(shost->host_lock);
9290 	ndlp->nlp_flag |= NLP_DELAY_TMO;
9291 	spin_unlock_irq(shost->host_lock);
9292 	ndlp->nlp_last_elscmd = ELS_CMD_FLOGI;
9293 	phba->pport->port_state = LPFC_FLOGI;
9294 	return;
9295 }
9296 
9297 /**
9298  * lpfc_fabric_login_reqd - Check if FLOGI required.
9299  * @phba: pointer to lpfc hba data structure.
9300  * @cmdiocb: pointer to FDISC command iocb.
9301  * @rspiocb: pointer to FDISC response iocb.
9302  *
9303  * This routine checks if a FLOGI is reguired for FDISC
9304  * to succeed.
9305  **/
9306 static int
9307 lpfc_fabric_login_reqd(struct lpfc_hba *phba,
9308 		struct lpfc_iocbq *cmdiocb,
9309 		struct lpfc_iocbq *rspiocb)
9310 {
9311 
9312 	if ((rspiocb->iocb.ulpStatus != IOSTAT_FABRIC_RJT) ||
9313 		(rspiocb->iocb.un.ulpWord[4] != RJT_LOGIN_REQUIRED))
9314 		return 0;
9315 	else
9316 		return 1;
9317 }
9318 
9319 /**
9320  * lpfc_cmpl_els_fdisc - Completion function for fdisc iocb command
9321  * @phba: pointer to lpfc hba data structure.
9322  * @cmdiocb: pointer to lpfc command iocb data structure.
9323  * @rspiocb: pointer to lpfc response iocb data structure.
9324  *
9325  * This routine is the completion callback function to a Fabric Discover
9326  * (FDISC) ELS command. Since all the FDISC ELS commands are issued
9327  * single threaded, each FDISC completion callback function will reset
9328  * the discovery timer for all vports such that the timers will not get
9329  * unnecessary timeout. The function checks the FDISC IOCB status. If error
9330  * detected, the vport will be set to FC_VPORT_FAILED state. Otherwise,the
9331  * vport will set to FC_VPORT_ACTIVE state. It then checks whether the DID
9332  * assigned to the vport has been changed with the completion of the FDISC
9333  * command. If so, both RPI (Remote Port Index) and VPI (Virtual Port Index)
9334  * are unregistered from the HBA, and then the lpfc_register_new_vport()
9335  * routine is invoked to register new vport with the HBA. Otherwise, the
9336  * lpfc_do_scr_ns_plogi() routine is invoked to issue a PLOGI to the Name
9337  * Server for State Change Request (SCR).
9338  **/
9339 static void
9340 lpfc_cmpl_els_fdisc(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
9341 		    struct lpfc_iocbq *rspiocb)
9342 {
9343 	struct lpfc_vport *vport = cmdiocb->vport;
9344 	struct Scsi_Host  *shost = lpfc_shost_from_vport(vport);
9345 	struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
9346 	struct lpfc_nodelist *np;
9347 	struct lpfc_nodelist *next_np;
9348 	IOCB_t *irsp = &rspiocb->iocb;
9349 	struct lpfc_iocbq *piocb;
9350 	struct lpfc_dmabuf *pcmd = cmdiocb->context2, *prsp;
9351 	struct serv_parm *sp;
9352 	uint8_t fabric_param_changed;
9353 
9354 	lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
9355 			 "0123 FDISC completes. x%x/x%x prevDID: x%x\n",
9356 			 irsp->ulpStatus, irsp->un.ulpWord[4],
9357 			 vport->fc_prevDID);
9358 	/* Since all FDISCs are being single threaded, we
9359 	 * must reset the discovery timer for ALL vports
9360 	 * waiting to send FDISC when one completes.
9361 	 */
9362 	list_for_each_entry(piocb, &phba->fabric_iocb_list, list) {
9363 		lpfc_set_disctmo(piocb->vport);
9364 	}
9365 
9366 	lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
9367 		"FDISC cmpl:      status:x%x/x%x prevdid:x%x",
9368 		irsp->ulpStatus, irsp->un.ulpWord[4], vport->fc_prevDID);
9369 
9370 	if (irsp->ulpStatus) {
9371 
9372 		if (lpfc_fabric_login_reqd(phba, cmdiocb, rspiocb)) {
9373 			lpfc_retry_pport_discovery(phba);
9374 			goto out;
9375 		}
9376 
9377 		/* Check for retry */
9378 		if (lpfc_els_retry(phba, cmdiocb, rspiocb))
9379 			goto out;
9380 		/* FDISC failed */
9381 		lpfc_printf_vlog(vport, KERN_ERR, LOG_TRACE_EVENT,
9382 				 "0126 FDISC failed. (x%x/x%x)\n",
9383 				 irsp->ulpStatus, irsp->un.ulpWord[4]);
9384 		goto fdisc_failed;
9385 	}
9386 	spin_lock_irq(shost->host_lock);
9387 	vport->fc_flag &= ~FC_VPORT_CVL_RCVD;
9388 	vport->fc_flag &= ~FC_VPORT_LOGO_RCVD;
9389 	vport->fc_flag |= FC_FABRIC;
9390 	if (vport->phba->fc_topology == LPFC_TOPOLOGY_LOOP)
9391 		vport->fc_flag |=  FC_PUBLIC_LOOP;
9392 	spin_unlock_irq(shost->host_lock);
9393 
9394 	vport->fc_myDID = irsp->un.ulpWord[4] & Mask_DID;
9395 	lpfc_vport_set_state(vport, FC_VPORT_ACTIVE);
9396 	prsp = list_get_first(&pcmd->list, struct lpfc_dmabuf, list);
9397 	if (!prsp)
9398 		goto out;
9399 	sp = prsp->virt + sizeof(uint32_t);
9400 	fabric_param_changed = lpfc_check_clean_addr_bit(vport, sp);
9401 	memcpy(&vport->fabric_portname, &sp->portName,
9402 		sizeof(struct lpfc_name));
9403 	memcpy(&vport->fabric_nodename, &sp->nodeName,
9404 		sizeof(struct lpfc_name));
9405 	if (fabric_param_changed &&
9406 		!(vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)) {
9407 		/* If our NportID changed, we need to ensure all
9408 		 * remaining NPORTs get unreg_login'ed so we can
9409 		 * issue unreg_vpi.
9410 		 */
9411 		list_for_each_entry_safe(np, next_np,
9412 			&vport->fc_nodes, nlp_listp) {
9413 			if (!NLP_CHK_NODE_ACT(ndlp) ||
9414 			    (np->nlp_state != NLP_STE_NPR_NODE) ||
9415 			    !(np->nlp_flag & NLP_NPR_ADISC))
9416 				continue;
9417 			spin_lock_irq(shost->host_lock);
9418 			np->nlp_flag &= ~NLP_NPR_ADISC;
9419 			spin_unlock_irq(shost->host_lock);
9420 			lpfc_unreg_rpi(vport, np);
9421 		}
9422 		lpfc_cleanup_pending_mbox(vport);
9423 
9424 		if (phba->sli_rev == LPFC_SLI_REV4)
9425 			lpfc_sli4_unreg_all_rpis(vport);
9426 
9427 		lpfc_mbx_unreg_vpi(vport);
9428 		spin_lock_irq(shost->host_lock);
9429 		vport->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
9430 		if (phba->sli_rev == LPFC_SLI_REV4)
9431 			vport->fc_flag |= FC_VPORT_NEEDS_INIT_VPI;
9432 		else
9433 			vport->fc_flag |= FC_LOGO_RCVD_DID_CHNG;
9434 		spin_unlock_irq(shost->host_lock);
9435 	} else if ((phba->sli_rev == LPFC_SLI_REV4) &&
9436 		!(vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)) {
9437 		/*
9438 		 * Driver needs to re-reg VPI in order for f/w
9439 		 * to update the MAC address.
9440 		 */
9441 		lpfc_register_new_vport(phba, vport, ndlp);
9442 		goto out;
9443 	}
9444 
9445 	if (vport->fc_flag & FC_VPORT_NEEDS_INIT_VPI)
9446 		lpfc_issue_init_vpi(vport);
9447 	else if (vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)
9448 		lpfc_register_new_vport(phba, vport, ndlp);
9449 	else
9450 		lpfc_do_scr_ns_plogi(phba, vport);
9451 	goto out;
9452 fdisc_failed:
9453 	if (vport->fc_vport &&
9454 	    (vport->fc_vport->vport_state != FC_VPORT_NO_FABRIC_RSCS))
9455 		lpfc_vport_set_state(vport, FC_VPORT_FAILED);
9456 	/* Cancel discovery timer */
9457 	lpfc_can_disctmo(vport);
9458 	lpfc_nlp_put(ndlp);
9459 out:
9460 	lpfc_els_free_iocb(phba, cmdiocb);
9461 }
9462 
9463 /**
9464  * lpfc_issue_els_fdisc - Issue a fdisc iocb command
9465  * @vport: pointer to a virtual N_Port data structure.
9466  * @ndlp: pointer to a node-list data structure.
9467  * @retry: number of retries to the command IOCB.
9468  *
9469  * This routine prepares and issues a Fabric Discover (FDISC) IOCB to
9470  * a remote node (@ndlp) off a @vport. It uses the lpfc_issue_fabric_iocb()
9471  * routine to issue the IOCB, which makes sure only one outstanding fabric
9472  * IOCB will be sent off HBA at any given time.
9473  *
9474  * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
9475  * will be incremented by 1 for holding the ndlp and the reference to ndlp
9476  * will be stored into the context1 field of the IOCB for the completion
9477  * callback function to the FDISC ELS command.
9478  *
9479  * Return code
9480  *   0 - Successfully issued fdisc iocb command
9481  *   1 - Failed to issue fdisc iocb command
9482  **/
9483 static int
9484 lpfc_issue_els_fdisc(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
9485 		     uint8_t retry)
9486 {
9487 	struct lpfc_hba *phba = vport->phba;
9488 	IOCB_t *icmd;
9489 	struct lpfc_iocbq *elsiocb;
9490 	struct serv_parm *sp;
9491 	uint8_t *pcmd;
9492 	uint16_t cmdsize;
9493 	int did = ndlp->nlp_DID;
9494 	int rc;
9495 
9496 	vport->port_state = LPFC_FDISC;
9497 	vport->fc_myDID = 0;
9498 	cmdsize = (sizeof(uint32_t) + sizeof(struct serv_parm));
9499 	elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp, did,
9500 				     ELS_CMD_FDISC);
9501 	if (!elsiocb) {
9502 		lpfc_vport_set_state(vport, FC_VPORT_FAILED);
9503 		lpfc_printf_vlog(vport, KERN_ERR, LOG_TRACE_EVENT,
9504 				 "0255 Issue FDISC: no IOCB\n");
9505 		return 1;
9506 	}
9507 
9508 	icmd = &elsiocb->iocb;
9509 	icmd->un.elsreq64.myID = 0;
9510 	icmd->un.elsreq64.fl = 1;
9511 
9512 	/*
9513 	 * SLI3 ports require a different context type value than SLI4.
9514 	 * Catch SLI3 ports here and override the prep.
9515 	 */
9516 	if (phba->sli_rev == LPFC_SLI_REV3) {
9517 		icmd->ulpCt_h = 1;
9518 		icmd->ulpCt_l = 0;
9519 	}
9520 
9521 	pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
9522 	*((uint32_t *) (pcmd)) = ELS_CMD_FDISC;
9523 	pcmd += sizeof(uint32_t); /* CSP Word 1 */
9524 	memcpy(pcmd, &vport->phba->pport->fc_sparam, sizeof(struct serv_parm));
9525 	sp = (struct serv_parm *) pcmd;
9526 	/* Setup CSPs accordingly for Fabric */
9527 	sp->cmn.e_d_tov = 0;
9528 	sp->cmn.w2.r_a_tov = 0;
9529 	sp->cmn.virtual_fabric_support = 0;
9530 	sp->cls1.classValid = 0;
9531 	sp->cls2.seqDelivery = 1;
9532 	sp->cls3.seqDelivery = 1;
9533 
9534 	pcmd += sizeof(uint32_t); /* CSP Word 2 */
9535 	pcmd += sizeof(uint32_t); /* CSP Word 3 */
9536 	pcmd += sizeof(uint32_t); /* CSP Word 4 */
9537 	pcmd += sizeof(uint32_t); /* Port Name */
9538 	memcpy(pcmd, &vport->fc_portname, 8);
9539 	pcmd += sizeof(uint32_t); /* Node Name */
9540 	pcmd += sizeof(uint32_t); /* Node Name */
9541 	memcpy(pcmd, &vport->fc_nodename, 8);
9542 	sp->cmn.valid_vendor_ver_level = 0;
9543 	memset(sp->un.vendorVersion, 0, sizeof(sp->un.vendorVersion));
9544 	lpfc_set_disctmo(vport);
9545 
9546 	phba->fc_stat.elsXmitFDISC++;
9547 	elsiocb->iocb_cmpl = lpfc_cmpl_els_fdisc;
9548 
9549 	lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
9550 		"Issue FDISC:     did:x%x",
9551 		did, 0, 0);
9552 
9553 	rc = lpfc_issue_fabric_iocb(phba, elsiocb);
9554 	if (rc == IOCB_ERROR) {
9555 		lpfc_els_free_iocb(phba, elsiocb);
9556 		lpfc_vport_set_state(vport, FC_VPORT_FAILED);
9557 		lpfc_printf_vlog(vport, KERN_ERR, LOG_TRACE_EVENT,
9558 				 "0256 Issue FDISC: Cannot send IOCB\n");
9559 		return 1;
9560 	}
9561 	lpfc_vport_set_state(vport, FC_VPORT_INITIALIZING);
9562 	return 0;
9563 }
9564 
9565 /**
9566  * lpfc_cmpl_els_npiv_logo - Completion function with vport logo
9567  * @phba: pointer to lpfc hba data structure.
9568  * @cmdiocb: pointer to lpfc command iocb data structure.
9569  * @rspiocb: pointer to lpfc response iocb data structure.
9570  *
9571  * This routine is the completion callback function to the issuing of a LOGO
9572  * ELS command off a vport. It frees the command IOCB and then decrement the
9573  * reference count held on ndlp for this completion function, indicating that
9574  * the reference to the ndlp is no long needed. Note that the
9575  * lpfc_els_free_iocb() routine decrements the ndlp reference held for this
9576  * callback function and an additional explicit ndlp reference decrementation
9577  * will trigger the actual release of the ndlp.
9578  **/
9579 static void
9580 lpfc_cmpl_els_npiv_logo(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
9581 			struct lpfc_iocbq *rspiocb)
9582 {
9583 	struct lpfc_vport *vport = cmdiocb->vport;
9584 	IOCB_t *irsp;
9585 	struct lpfc_nodelist *ndlp;
9586 	struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
9587 
9588 	ndlp = (struct lpfc_nodelist *)cmdiocb->context1;
9589 	irsp = &rspiocb->iocb;
9590 	lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
9591 		"LOGO npiv cmpl:  status:x%x/x%x did:x%x",
9592 		irsp->ulpStatus, irsp->un.ulpWord[4], irsp->un.rcvels.remoteID);
9593 
9594 	lpfc_els_free_iocb(phba, cmdiocb);
9595 	vport->unreg_vpi_cmpl = VPORT_ERROR;
9596 
9597 	/* Trigger the release of the ndlp after logo */
9598 	lpfc_nlp_put(ndlp);
9599 
9600 	/* NPIV LOGO completes to NPort <nlp_DID> */
9601 	lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
9602 			 "2928 NPIV LOGO completes to NPort x%x "
9603 			 "Data: x%x x%x x%x x%x\n",
9604 			 ndlp->nlp_DID, irsp->ulpStatus, irsp->un.ulpWord[4],
9605 			 irsp->ulpTimeout, vport->num_disc_nodes);
9606 
9607 	if (irsp->ulpStatus == IOSTAT_SUCCESS) {
9608 		spin_lock_irq(shost->host_lock);
9609 		vport->fc_flag &= ~FC_NDISC_ACTIVE;
9610 		vport->fc_flag &= ~FC_FABRIC;
9611 		spin_unlock_irq(shost->host_lock);
9612 		lpfc_can_disctmo(vport);
9613 	}
9614 }
9615 
9616 /**
9617  * lpfc_issue_els_npiv_logo - Issue a logo off a vport
9618  * @vport: pointer to a virtual N_Port data structure.
9619  * @ndlp: pointer to a node-list data structure.
9620  *
9621  * This routine issues a LOGO ELS command to an @ndlp off a @vport.
9622  *
9623  * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
9624  * will be incremented by 1 for holding the ndlp and the reference to ndlp
9625  * will be stored into the context1 field of the IOCB for the completion
9626  * callback function to the LOGO ELS command.
9627  *
9628  * Return codes
9629  *   0 - Successfully issued logo off the @vport
9630  *   1 - Failed to issue logo off the @vport
9631  **/
9632 int
9633 lpfc_issue_els_npiv_logo(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
9634 {
9635 	struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
9636 	struct lpfc_hba  *phba = vport->phba;
9637 	struct lpfc_iocbq *elsiocb;
9638 	uint8_t *pcmd;
9639 	uint16_t cmdsize;
9640 
9641 	cmdsize = 2 * sizeof(uint32_t) + sizeof(struct lpfc_name);
9642 	elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, 0, ndlp, ndlp->nlp_DID,
9643 				     ELS_CMD_LOGO);
9644 	if (!elsiocb)
9645 		return 1;
9646 
9647 	pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
9648 	*((uint32_t *) (pcmd)) = ELS_CMD_LOGO;
9649 	pcmd += sizeof(uint32_t);
9650 
9651 	/* Fill in LOGO payload */
9652 	*((uint32_t *) (pcmd)) = be32_to_cpu(vport->fc_myDID);
9653 	pcmd += sizeof(uint32_t);
9654 	memcpy(pcmd, &vport->fc_portname, sizeof(struct lpfc_name));
9655 
9656 	lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
9657 		"Issue LOGO npiv  did:x%x flg:x%x",
9658 		ndlp->nlp_DID, ndlp->nlp_flag, 0);
9659 
9660 	elsiocb->iocb_cmpl = lpfc_cmpl_els_npiv_logo;
9661 	spin_lock_irq(shost->host_lock);
9662 	ndlp->nlp_flag |= NLP_LOGO_SND;
9663 	spin_unlock_irq(shost->host_lock);
9664 	if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) ==
9665 	    IOCB_ERROR) {
9666 		spin_lock_irq(shost->host_lock);
9667 		ndlp->nlp_flag &= ~NLP_LOGO_SND;
9668 		spin_unlock_irq(shost->host_lock);
9669 		lpfc_els_free_iocb(phba, elsiocb);
9670 		return 1;
9671 	}
9672 	return 0;
9673 }
9674 
9675 /**
9676  * lpfc_fabric_block_timeout - Handler function to the fabric block timer
9677  * @t: timer context used to obtain the lpfc hba.
9678  *
9679  * This routine is invoked by the fabric iocb block timer after
9680  * timeout. It posts the fabric iocb block timeout event by setting the
9681  * WORKER_FABRIC_BLOCK_TMO bit to work port event bitmap and then invokes
9682  * lpfc_worker_wake_up() routine to wake up the worker thread. It is for
9683  * the worker thread to invoke the lpfc_unblock_fabric_iocbs() on the
9684  * posted event WORKER_FABRIC_BLOCK_TMO.
9685  **/
9686 void
9687 lpfc_fabric_block_timeout(struct timer_list *t)
9688 {
9689 	struct lpfc_hba  *phba = from_timer(phba, t, fabric_block_timer);
9690 	unsigned long iflags;
9691 	uint32_t tmo_posted;
9692 
9693 	spin_lock_irqsave(&phba->pport->work_port_lock, iflags);
9694 	tmo_posted = phba->pport->work_port_events & WORKER_FABRIC_BLOCK_TMO;
9695 	if (!tmo_posted)
9696 		phba->pport->work_port_events |= WORKER_FABRIC_BLOCK_TMO;
9697 	spin_unlock_irqrestore(&phba->pport->work_port_lock, iflags);
9698 
9699 	if (!tmo_posted)
9700 		lpfc_worker_wake_up(phba);
9701 	return;
9702 }
9703 
9704 /**
9705  * lpfc_resume_fabric_iocbs - Issue a fabric iocb from driver internal list
9706  * @phba: pointer to lpfc hba data structure.
9707  *
9708  * This routine issues one fabric iocb from the driver internal list to
9709  * the HBA. It first checks whether it's ready to issue one fabric iocb to
9710  * the HBA (whether there is no outstanding fabric iocb). If so, it shall
9711  * remove one pending fabric iocb from the driver internal list and invokes
9712  * lpfc_sli_issue_iocb() routine to send the fabric iocb to the HBA.
9713  **/
9714 static void
9715 lpfc_resume_fabric_iocbs(struct lpfc_hba *phba)
9716 {
9717 	struct lpfc_iocbq *iocb;
9718 	unsigned long iflags;
9719 	int ret;
9720 	IOCB_t *cmd;
9721 
9722 repeat:
9723 	iocb = NULL;
9724 	spin_lock_irqsave(&phba->hbalock, iflags);
9725 	/* Post any pending iocb to the SLI layer */
9726 	if (atomic_read(&phba->fabric_iocb_count) == 0) {
9727 		list_remove_head(&phba->fabric_iocb_list, iocb, typeof(*iocb),
9728 				 list);
9729 		if (iocb)
9730 			/* Increment fabric iocb count to hold the position */
9731 			atomic_inc(&phba->fabric_iocb_count);
9732 	}
9733 	spin_unlock_irqrestore(&phba->hbalock, iflags);
9734 	if (iocb) {
9735 		iocb->fabric_iocb_cmpl = iocb->iocb_cmpl;
9736 		iocb->iocb_cmpl = lpfc_cmpl_fabric_iocb;
9737 		iocb->iocb_flag |= LPFC_IO_FABRIC;
9738 
9739 		lpfc_debugfs_disc_trc(iocb->vport, LPFC_DISC_TRC_ELS_CMD,
9740 			"Fabric sched1:   ste:x%x",
9741 			iocb->vport->port_state, 0, 0);
9742 
9743 		ret = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, iocb, 0);
9744 
9745 		if (ret == IOCB_ERROR) {
9746 			iocb->iocb_cmpl = iocb->fabric_iocb_cmpl;
9747 			iocb->fabric_iocb_cmpl = NULL;
9748 			iocb->iocb_flag &= ~LPFC_IO_FABRIC;
9749 			cmd = &iocb->iocb;
9750 			cmd->ulpStatus = IOSTAT_LOCAL_REJECT;
9751 			cmd->un.ulpWord[4] = IOERR_SLI_ABORTED;
9752 			iocb->iocb_cmpl(phba, iocb, iocb);
9753 
9754 			atomic_dec(&phba->fabric_iocb_count);
9755 			goto repeat;
9756 		}
9757 	}
9758 
9759 	return;
9760 }
9761 
9762 /**
9763  * lpfc_unblock_fabric_iocbs - Unblock issuing fabric iocb command
9764  * @phba: pointer to lpfc hba data structure.
9765  *
9766  * This routine unblocks the  issuing fabric iocb command. The function
9767  * will clear the fabric iocb block bit and then invoke the routine
9768  * lpfc_resume_fabric_iocbs() to issue one of the pending fabric iocb
9769  * from the driver internal fabric iocb list.
9770  **/
9771 void
9772 lpfc_unblock_fabric_iocbs(struct lpfc_hba *phba)
9773 {
9774 	clear_bit(FABRIC_COMANDS_BLOCKED, &phba->bit_flags);
9775 
9776 	lpfc_resume_fabric_iocbs(phba);
9777 	return;
9778 }
9779 
9780 /**
9781  * lpfc_block_fabric_iocbs - Block issuing fabric iocb command
9782  * @phba: pointer to lpfc hba data structure.
9783  *
9784  * This routine blocks the issuing fabric iocb for a specified amount of
9785  * time (currently 100 ms). This is done by set the fabric iocb block bit
9786  * and set up a timeout timer for 100ms. When the block bit is set, no more
9787  * fabric iocb will be issued out of the HBA.
9788  **/
9789 static void
9790 lpfc_block_fabric_iocbs(struct lpfc_hba *phba)
9791 {
9792 	int blocked;
9793 
9794 	blocked = test_and_set_bit(FABRIC_COMANDS_BLOCKED, &phba->bit_flags);
9795 	/* Start a timer to unblock fabric iocbs after 100ms */
9796 	if (!blocked)
9797 		mod_timer(&phba->fabric_block_timer,
9798 			  jiffies + msecs_to_jiffies(100));
9799 
9800 	return;
9801 }
9802 
9803 /**
9804  * lpfc_cmpl_fabric_iocb - Completion callback function for fabric iocb
9805  * @phba: pointer to lpfc hba data structure.
9806  * @cmdiocb: pointer to lpfc command iocb data structure.
9807  * @rspiocb: pointer to lpfc response iocb data structure.
9808  *
9809  * This routine is the callback function that is put to the fabric iocb's
9810  * callback function pointer (iocb->iocb_cmpl). The original iocb's callback
9811  * function pointer has been stored in iocb->fabric_iocb_cmpl. This callback
9812  * function first restores and invokes the original iocb's callback function
9813  * and then invokes the lpfc_resume_fabric_iocbs() routine to issue the next
9814  * fabric bound iocb from the driver internal fabric iocb list onto the wire.
9815  **/
9816 static void
9817 lpfc_cmpl_fabric_iocb(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
9818 	struct lpfc_iocbq *rspiocb)
9819 {
9820 	struct ls_rjt stat;
9821 
9822 	BUG_ON((cmdiocb->iocb_flag & LPFC_IO_FABRIC) != LPFC_IO_FABRIC);
9823 
9824 	switch (rspiocb->iocb.ulpStatus) {
9825 		case IOSTAT_NPORT_RJT:
9826 		case IOSTAT_FABRIC_RJT:
9827 			if (rspiocb->iocb.un.ulpWord[4] & RJT_UNAVAIL_TEMP) {
9828 				lpfc_block_fabric_iocbs(phba);
9829 			}
9830 			break;
9831 
9832 		case IOSTAT_NPORT_BSY:
9833 		case IOSTAT_FABRIC_BSY:
9834 			lpfc_block_fabric_iocbs(phba);
9835 			break;
9836 
9837 		case IOSTAT_LS_RJT:
9838 			stat.un.lsRjtError =
9839 				be32_to_cpu(rspiocb->iocb.un.ulpWord[4]);
9840 			if ((stat.un.b.lsRjtRsnCode == LSRJT_UNABLE_TPC) ||
9841 				(stat.un.b.lsRjtRsnCode == LSRJT_LOGICAL_BSY))
9842 				lpfc_block_fabric_iocbs(phba);
9843 			break;
9844 	}
9845 
9846 	BUG_ON(atomic_read(&phba->fabric_iocb_count) == 0);
9847 
9848 	cmdiocb->iocb_cmpl = cmdiocb->fabric_iocb_cmpl;
9849 	cmdiocb->fabric_iocb_cmpl = NULL;
9850 	cmdiocb->iocb_flag &= ~LPFC_IO_FABRIC;
9851 	cmdiocb->iocb_cmpl(phba, cmdiocb, rspiocb);
9852 
9853 	atomic_dec(&phba->fabric_iocb_count);
9854 	if (!test_bit(FABRIC_COMANDS_BLOCKED, &phba->bit_flags)) {
9855 		/* Post any pending iocbs to HBA */
9856 		lpfc_resume_fabric_iocbs(phba);
9857 	}
9858 }
9859 
9860 /**
9861  * lpfc_issue_fabric_iocb - Issue a fabric iocb command
9862  * @phba: pointer to lpfc hba data structure.
9863  * @iocb: pointer to lpfc command iocb data structure.
9864  *
9865  * This routine is used as the top-level API for issuing a fabric iocb command
9866  * such as FLOGI and FDISC. To accommodate certain switch fabric, this driver
9867  * function makes sure that only one fabric bound iocb will be outstanding at
9868  * any given time. As such, this function will first check to see whether there
9869  * is already an outstanding fabric iocb on the wire. If so, it will put the
9870  * newly issued iocb onto the driver internal fabric iocb list, waiting to be
9871  * issued later. Otherwise, it will issue the iocb on the wire and update the
9872  * fabric iocb count it indicate that there is one fabric iocb on the wire.
9873  *
9874  * Note, this implementation has a potential sending out fabric IOCBs out of
9875  * order. The problem is caused by the construction of the "ready" boolen does
9876  * not include the condition that the internal fabric IOCB list is empty. As
9877  * such, it is possible a fabric IOCB issued by this routine might be "jump"
9878  * ahead of the fabric IOCBs in the internal list.
9879  *
9880  * Return code
9881  *   IOCB_SUCCESS - either fabric iocb put on the list or issued successfully
9882  *   IOCB_ERROR - failed to issue fabric iocb
9883  **/
9884 static int
9885 lpfc_issue_fabric_iocb(struct lpfc_hba *phba, struct lpfc_iocbq *iocb)
9886 {
9887 	unsigned long iflags;
9888 	int ready;
9889 	int ret;
9890 
9891 	BUG_ON(atomic_read(&phba->fabric_iocb_count) > 1);
9892 
9893 	spin_lock_irqsave(&phba->hbalock, iflags);
9894 	ready = atomic_read(&phba->fabric_iocb_count) == 0 &&
9895 		!test_bit(FABRIC_COMANDS_BLOCKED, &phba->bit_flags);
9896 
9897 	if (ready)
9898 		/* Increment fabric iocb count to hold the position */
9899 		atomic_inc(&phba->fabric_iocb_count);
9900 	spin_unlock_irqrestore(&phba->hbalock, iflags);
9901 	if (ready) {
9902 		iocb->fabric_iocb_cmpl = iocb->iocb_cmpl;
9903 		iocb->iocb_cmpl = lpfc_cmpl_fabric_iocb;
9904 		iocb->iocb_flag |= LPFC_IO_FABRIC;
9905 
9906 		lpfc_debugfs_disc_trc(iocb->vport, LPFC_DISC_TRC_ELS_CMD,
9907 			"Fabric sched2:   ste:x%x",
9908 			iocb->vport->port_state, 0, 0);
9909 
9910 		ret = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, iocb, 0);
9911 
9912 		if (ret == IOCB_ERROR) {
9913 			iocb->iocb_cmpl = iocb->fabric_iocb_cmpl;
9914 			iocb->fabric_iocb_cmpl = NULL;
9915 			iocb->iocb_flag &= ~LPFC_IO_FABRIC;
9916 			atomic_dec(&phba->fabric_iocb_count);
9917 		}
9918 	} else {
9919 		spin_lock_irqsave(&phba->hbalock, iflags);
9920 		list_add_tail(&iocb->list, &phba->fabric_iocb_list);
9921 		spin_unlock_irqrestore(&phba->hbalock, iflags);
9922 		ret = IOCB_SUCCESS;
9923 	}
9924 	return ret;
9925 }
9926 
9927 /**
9928  * lpfc_fabric_abort_vport - Abort a vport's iocbs from driver fabric iocb list
9929  * @vport: pointer to a virtual N_Port data structure.
9930  *
9931  * This routine aborts all the IOCBs associated with a @vport from the
9932  * driver internal fabric IOCB list. The list contains fabric IOCBs to be
9933  * issued to the ELS IOCB ring. This abort function walks the fabric IOCB
9934  * list, removes each IOCB associated with the @vport off the list, set the
9935  * status feild to IOSTAT_LOCAL_REJECT, and invokes the callback function
9936  * associated with the IOCB.
9937  **/
9938 static void lpfc_fabric_abort_vport(struct lpfc_vport *vport)
9939 {
9940 	LIST_HEAD(completions);
9941 	struct lpfc_hba  *phba = vport->phba;
9942 	struct lpfc_iocbq *tmp_iocb, *piocb;
9943 
9944 	spin_lock_irq(&phba->hbalock);
9945 	list_for_each_entry_safe(piocb, tmp_iocb, &phba->fabric_iocb_list,
9946 				 list) {
9947 
9948 		if (piocb->vport != vport)
9949 			continue;
9950 
9951 		list_move_tail(&piocb->list, &completions);
9952 	}
9953 	spin_unlock_irq(&phba->hbalock);
9954 
9955 	/* Cancel all the IOCBs from the completions list */
9956 	lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
9957 			      IOERR_SLI_ABORTED);
9958 }
9959 
9960 /**
9961  * lpfc_fabric_abort_nport - Abort a ndlp's iocbs from driver fabric iocb list
9962  * @ndlp: pointer to a node-list data structure.
9963  *
9964  * This routine aborts all the IOCBs associated with an @ndlp from the
9965  * driver internal fabric IOCB list. The list contains fabric IOCBs to be
9966  * issued to the ELS IOCB ring. This abort function walks the fabric IOCB
9967  * list, removes each IOCB associated with the @ndlp off the list, set the
9968  * status feild to IOSTAT_LOCAL_REJECT, and invokes the callback function
9969  * associated with the IOCB.
9970  **/
9971 void lpfc_fabric_abort_nport(struct lpfc_nodelist *ndlp)
9972 {
9973 	LIST_HEAD(completions);
9974 	struct lpfc_hba  *phba = ndlp->phba;
9975 	struct lpfc_iocbq *tmp_iocb, *piocb;
9976 	struct lpfc_sli_ring *pring;
9977 
9978 	pring = lpfc_phba_elsring(phba);
9979 
9980 	if (unlikely(!pring))
9981 		return;
9982 
9983 	spin_lock_irq(&phba->hbalock);
9984 	list_for_each_entry_safe(piocb, tmp_iocb, &phba->fabric_iocb_list,
9985 				 list) {
9986 		if ((lpfc_check_sli_ndlp(phba, pring, piocb, ndlp))) {
9987 
9988 			list_move_tail(&piocb->list, &completions);
9989 		}
9990 	}
9991 	spin_unlock_irq(&phba->hbalock);
9992 
9993 	/* Cancel all the IOCBs from the completions list */
9994 	lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
9995 			      IOERR_SLI_ABORTED);
9996 }
9997 
9998 /**
9999  * lpfc_fabric_abort_hba - Abort all iocbs on driver fabric iocb list
10000  * @phba: pointer to lpfc hba data structure.
10001  *
10002  * This routine aborts all the IOCBs currently on the driver internal
10003  * fabric IOCB list. The list contains fabric IOCBs to be issued to the ELS
10004  * IOCB ring. This function takes the entire IOCB list off the fabric IOCB
10005  * list, removes IOCBs off the list, set the status feild to
10006  * IOSTAT_LOCAL_REJECT, and invokes the callback function associated with
10007  * the IOCB.
10008  **/
10009 void lpfc_fabric_abort_hba(struct lpfc_hba *phba)
10010 {
10011 	LIST_HEAD(completions);
10012 
10013 	spin_lock_irq(&phba->hbalock);
10014 	list_splice_init(&phba->fabric_iocb_list, &completions);
10015 	spin_unlock_irq(&phba->hbalock);
10016 
10017 	/* Cancel all the IOCBs from the completions list */
10018 	lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
10019 			      IOERR_SLI_ABORTED);
10020 }
10021 
10022 /**
10023  * lpfc_sli4_vport_delete_els_xri_aborted -Remove all ndlp references for vport
10024  * @vport: pointer to lpfc vport data structure.
10025  *
10026  * This routine is invoked by the vport cleanup for deletions and the cleanup
10027  * for an ndlp on removal.
10028  **/
10029 void
10030 lpfc_sli4_vport_delete_els_xri_aborted(struct lpfc_vport *vport)
10031 {
10032 	struct lpfc_hba *phba = vport->phba;
10033 	struct lpfc_sglq *sglq_entry = NULL, *sglq_next = NULL;
10034 	unsigned long iflag = 0;
10035 
10036 	spin_lock_irqsave(&phba->hbalock, iflag);
10037 	spin_lock(&phba->sli4_hba.sgl_list_lock);
10038 	list_for_each_entry_safe(sglq_entry, sglq_next,
10039 			&phba->sli4_hba.lpfc_abts_els_sgl_list, list) {
10040 		if (sglq_entry->ndlp && sglq_entry->ndlp->vport == vport)
10041 			sglq_entry->ndlp = NULL;
10042 	}
10043 	spin_unlock(&phba->sli4_hba.sgl_list_lock);
10044 	spin_unlock_irqrestore(&phba->hbalock, iflag);
10045 	return;
10046 }
10047 
10048 /**
10049  * lpfc_sli4_els_xri_aborted - Slow-path process of els xri abort
10050  * @phba: pointer to lpfc hba data structure.
10051  * @axri: pointer to the els xri abort wcqe structure.
10052  *
10053  * This routine is invoked by the worker thread to process a SLI4 slow-path
10054  * ELS aborted xri.
10055  **/
10056 void
10057 lpfc_sli4_els_xri_aborted(struct lpfc_hba *phba,
10058 			  struct sli4_wcqe_xri_aborted *axri)
10059 {
10060 	uint16_t xri = bf_get(lpfc_wcqe_xa_xri, axri);
10061 	uint16_t rxid = bf_get(lpfc_wcqe_xa_remote_xid, axri);
10062 	uint16_t lxri = 0;
10063 
10064 	struct lpfc_sglq *sglq_entry = NULL, *sglq_next = NULL;
10065 	unsigned long iflag = 0;
10066 	struct lpfc_nodelist *ndlp;
10067 	struct lpfc_sli_ring *pring;
10068 
10069 	pring = lpfc_phba_elsring(phba);
10070 
10071 	spin_lock_irqsave(&phba->hbalock, iflag);
10072 	spin_lock(&phba->sli4_hba.sgl_list_lock);
10073 	list_for_each_entry_safe(sglq_entry, sglq_next,
10074 			&phba->sli4_hba.lpfc_abts_els_sgl_list, list) {
10075 		if (sglq_entry->sli4_xritag == xri) {
10076 			list_del(&sglq_entry->list);
10077 			ndlp = sglq_entry->ndlp;
10078 			sglq_entry->ndlp = NULL;
10079 			list_add_tail(&sglq_entry->list,
10080 				&phba->sli4_hba.lpfc_els_sgl_list);
10081 			sglq_entry->state = SGL_FREED;
10082 			spin_unlock(&phba->sli4_hba.sgl_list_lock);
10083 			spin_unlock_irqrestore(&phba->hbalock, iflag);
10084 			lpfc_set_rrq_active(phba, ndlp,
10085 				sglq_entry->sli4_lxritag,
10086 				rxid, 1);
10087 
10088 			/* Check if TXQ queue needs to be serviced */
10089 			if (pring && !list_empty(&pring->txq))
10090 				lpfc_worker_wake_up(phba);
10091 			return;
10092 		}
10093 	}
10094 	spin_unlock(&phba->sli4_hba.sgl_list_lock);
10095 	lxri = lpfc_sli4_xri_inrange(phba, xri);
10096 	if (lxri == NO_XRI) {
10097 		spin_unlock_irqrestore(&phba->hbalock, iflag);
10098 		return;
10099 	}
10100 	spin_lock(&phba->sli4_hba.sgl_list_lock);
10101 	sglq_entry = __lpfc_get_active_sglq(phba, lxri);
10102 	if (!sglq_entry || (sglq_entry->sli4_xritag != xri)) {
10103 		spin_unlock(&phba->sli4_hba.sgl_list_lock);
10104 		spin_unlock_irqrestore(&phba->hbalock, iflag);
10105 		return;
10106 	}
10107 	sglq_entry->state = SGL_XRI_ABORTED;
10108 	spin_unlock(&phba->sli4_hba.sgl_list_lock);
10109 	spin_unlock_irqrestore(&phba->hbalock, iflag);
10110 	return;
10111 }
10112 
10113 /* lpfc_sli_abts_recover_port - Recover a port that failed a BLS_ABORT req.
10114  * @vport: pointer to virtual port object.
10115  * @ndlp: nodelist pointer for the impacted node.
10116  *
10117  * The driver calls this routine in response to an SLI4 XRI ABORT CQE
10118  * or an SLI3 ASYNC_STATUS_CN event from the port.  For either event,
10119  * the driver is required to send a LOGO to the remote node before it
10120  * attempts to recover its login to the remote node.
10121  */
10122 void
10123 lpfc_sli_abts_recover_port(struct lpfc_vport *vport,
10124 			   struct lpfc_nodelist *ndlp)
10125 {
10126 	struct Scsi_Host *shost;
10127 	struct lpfc_hba *phba;
10128 	unsigned long flags = 0;
10129 
10130 	shost = lpfc_shost_from_vport(vport);
10131 	phba = vport->phba;
10132 	if (ndlp->nlp_state != NLP_STE_MAPPED_NODE) {
10133 		lpfc_printf_log(phba, KERN_INFO,
10134 				LOG_SLI, "3093 No rport recovery needed. "
10135 				"rport in state 0x%x\n", ndlp->nlp_state);
10136 		return;
10137 	}
10138 	lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
10139 			"3094 Start rport recovery on shost id 0x%x "
10140 			"fc_id 0x%06x vpi 0x%x rpi 0x%x state 0x%x "
10141 			"flags 0x%x\n",
10142 			shost->host_no, ndlp->nlp_DID,
10143 			vport->vpi, ndlp->nlp_rpi, ndlp->nlp_state,
10144 			ndlp->nlp_flag);
10145 	/*
10146 	 * The rport is not responding.  Remove the FCP-2 flag to prevent
10147 	 * an ADISC in the follow-up recovery code.
10148 	 */
10149 	spin_lock_irqsave(shost->host_lock, flags);
10150 	ndlp->nlp_fcp_info &= ~NLP_FCP_2_DEVICE;
10151 	ndlp->nlp_flag |= NLP_ISSUE_LOGO;
10152 	spin_unlock_irqrestore(shost->host_lock, flags);
10153 	lpfc_unreg_rpi(vport, ndlp);
10154 }
10155 
10156