]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/scsi/lpfc/lpfc_nportdisc.c
[SCSI] ipr: add endian swap enablement for 64 bit adapters
[mirror_ubuntu-bionic-kernel.git] / drivers / scsi / lpfc / lpfc_nportdisc.c
CommitLineData
92d7f7b0 1 /*******************************************************************
dea3101e 2 * This file is part of the Emulex Linux Device Driver for *
c44ce173 3 * Fibre Channel Host Bus Adapters. *
d8e93df1 4 * Copyright (C) 2004-2009 Emulex. All rights reserved. *
c44ce173 5 * EMULEX and SLI are trademarks of Emulex. *
dea3101e 6 * www.emulex.com *
c44ce173 7 * Portions Copyright (C) 2004-2005 Christoph Hellwig *
dea3101e
JB
8 * *
9 * This program is free software; you can redistribute it and/or *
c44ce173
JSEC
10 * modify it under the terms of version 2 of the GNU General *
11 * Public License as published by the Free Software Foundation. *
12 * This program is distributed in the hope that it will be useful. *
13 * ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND *
14 * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, *
15 * FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE *
16 * DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD *
17 * TO BE LEGALLY INVALID. See the GNU General Public License for *
18 * more details, a copy of which can be found in the file COPYING *
19 * included with this package. *
dea3101e
JB
20 *******************************************************************/
21
dea3101e
JB
22#include <linux/blkdev.h>
23#include <linux/pci.h>
5a0e3ad6 24#include <linux/slab.h>
dea3101e
JB
25#include <linux/interrupt.h>
26
91886523 27#include <scsi/scsi.h>
dea3101e
JB
28#include <scsi/scsi_device.h>
29#include <scsi/scsi_host.h>
30#include <scsi/scsi_transport_fc.h>
31
da0436e9 32#include "lpfc_hw4.h"
dea3101e
JB
33#include "lpfc_hw.h"
34#include "lpfc_sli.h"
da0436e9 35#include "lpfc_sli4.h"
ea2151b4 36#include "lpfc_nl.h"
dea3101e
JB
37#include "lpfc_disc.h"
38#include "lpfc_scsi.h"
39#include "lpfc.h"
40#include "lpfc_logmsg.h"
41#include "lpfc_crtn.h"
92d7f7b0 42#include "lpfc_vport.h"
858c9f6c 43#include "lpfc_debugfs.h"
dea3101e
JB
44
45
46/* Called to verify a rcv'ed ADISC was intended for us. */
47static int
2e0fef85
JS
48lpfc_check_adisc(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
49 struct lpfc_name *nn, struct lpfc_name *pn)
dea3101e
JB
50{
51 /* Compare the ADISC rsp WWNN / WWPN matches our internal node
52 * table entry for that node.
53 */
2e0fef85 54 if (memcmp(nn, &ndlp->nlp_nodename, sizeof (struct lpfc_name)))
c9f8735b 55 return 0;
dea3101e 56
2e0fef85 57 if (memcmp(pn, &ndlp->nlp_portname, sizeof (struct lpfc_name)))
c9f8735b 58 return 0;
dea3101e
JB
59
60 /* we match, return success */
c9f8735b 61 return 1;
dea3101e
JB
62}
63
dea3101e 64int
2e0fef85 65lpfc_check_sparm(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
341af102 66 struct serv_parm *sp, uint32_t class, int flogi)
dea3101e 67{
2e0fef85 68 volatile struct serv_parm *hsp = &vport->fc_sparam;
2fb70f79
JSEC
69 uint16_t hsp_value, ssp_value = 0;
70
71 /*
72 * The receive data field size and buffer-to-buffer receive data field
73 * size entries are 16 bits but are represented as two 8-bit fields in
74 * the driver data structure to account for rsvd bits and other control
75 * bits. Reconstruct and compare the fields as a 16-bit values before
76 * correcting the byte values.
77 */
dea3101e 78 if (sp->cls1.classValid) {
341af102
JS
79 if (!flogi) {
80 hsp_value = ((hsp->cls1.rcvDataSizeMsb << 8) |
81 hsp->cls1.rcvDataSizeLsb);
82 ssp_value = ((sp->cls1.rcvDataSizeMsb << 8) |
83 sp->cls1.rcvDataSizeLsb);
84 if (!ssp_value)
85 goto bad_service_param;
86 if (ssp_value > hsp_value) {
87 sp->cls1.rcvDataSizeLsb =
88 hsp->cls1.rcvDataSizeLsb;
89 sp->cls1.rcvDataSizeMsb =
90 hsp->cls1.rcvDataSizeMsb;
91 }
2fb70f79 92 }
341af102 93 } else if (class == CLASS1)
92d7f7b0 94 goto bad_service_param;
dea3101e 95 if (sp->cls2.classValid) {
341af102
JS
96 if (!flogi) {
97 hsp_value = ((hsp->cls2.rcvDataSizeMsb << 8) |
98 hsp->cls2.rcvDataSizeLsb);
99 ssp_value = ((sp->cls2.rcvDataSizeMsb << 8) |
100 sp->cls2.rcvDataSizeLsb);
101 if (!ssp_value)
102 goto bad_service_param;
103 if (ssp_value > hsp_value) {
104 sp->cls2.rcvDataSizeLsb =
105 hsp->cls2.rcvDataSizeLsb;
106 sp->cls2.rcvDataSizeMsb =
107 hsp->cls2.rcvDataSizeMsb;
108 }
2fb70f79 109 }
341af102 110 } else if (class == CLASS2)
92d7f7b0 111 goto bad_service_param;
dea3101e 112 if (sp->cls3.classValid) {
341af102
JS
113 if (!flogi) {
114 hsp_value = ((hsp->cls3.rcvDataSizeMsb << 8) |
115 hsp->cls3.rcvDataSizeLsb);
116 ssp_value = ((sp->cls3.rcvDataSizeMsb << 8) |
117 sp->cls3.rcvDataSizeLsb);
118 if (!ssp_value)
119 goto bad_service_param;
120 if (ssp_value > hsp_value) {
121 sp->cls3.rcvDataSizeLsb =
122 hsp->cls3.rcvDataSizeLsb;
123 sp->cls3.rcvDataSizeMsb =
124 hsp->cls3.rcvDataSizeMsb;
125 }
2fb70f79 126 }
341af102 127 } else if (class == CLASS3)
92d7f7b0 128 goto bad_service_param;
dea3101e 129
2fb70f79
JSEC
130 /*
131 * Preserve the upper four bits of the MSB from the PLOGI response.
132 * These bits contain the Buffer-to-Buffer State Change Number
133 * from the target and need to be passed to the FW.
134 */
135 hsp_value = (hsp->cmn.bbRcvSizeMsb << 8) | hsp->cmn.bbRcvSizeLsb;
136 ssp_value = (sp->cmn.bbRcvSizeMsb << 8) | sp->cmn.bbRcvSizeLsb;
137 if (ssp_value > hsp_value) {
dea3101e 138 sp->cmn.bbRcvSizeLsb = hsp->cmn.bbRcvSizeLsb;
2fb70f79
JSEC
139 sp->cmn.bbRcvSizeMsb = (sp->cmn.bbRcvSizeMsb & 0xF0) |
140 (hsp->cmn.bbRcvSizeMsb & 0x0F);
141 }
dea3101e 142
dea3101e
JB
143 memcpy(&ndlp->nlp_nodename, &sp->nodeName, sizeof (struct lpfc_name));
144 memcpy(&ndlp->nlp_portname, &sp->portName, sizeof (struct lpfc_name));
2fb70f79 145 return 1;
92d7f7b0 146bad_service_param:
e8b62011
JS
147 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
148 "0207 Device %x "
149 "(%02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x) sent "
150 "invalid service parameters. Ignoring device.\n",
151 ndlp->nlp_DID,
152 sp->nodeName.u.wwn[0], sp->nodeName.u.wwn[1],
153 sp->nodeName.u.wwn[2], sp->nodeName.u.wwn[3],
154 sp->nodeName.u.wwn[4], sp->nodeName.u.wwn[5],
155 sp->nodeName.u.wwn[6], sp->nodeName.u.wwn[7]);
92d7f7b0 156 return 0;
dea3101e
JB
157}
158
159static void *
2e0fef85 160lpfc_check_elscmpl_iocb(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
92d7f7b0 161 struct lpfc_iocbq *rspiocb)
dea3101e
JB
162{
163 struct lpfc_dmabuf *pcmd, *prsp;
164 uint32_t *lp;
165 void *ptr = NULL;
166 IOCB_t *irsp;
167
168 irsp = &rspiocb->iocb;
169 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
170
171 /* For lpfc_els_abort, context2 could be zero'ed to delay
172 * freeing associated memory till after ABTS completes.
173 */
174 if (pcmd) {
175 prsp = list_get_first(&pcmd->list, struct lpfc_dmabuf,
176 list);
177 if (prsp) {
178 lp = (uint32_t *) prsp->virt;
179 ptr = (void *)((uint8_t *)lp + sizeof(uint32_t));
180 }
2fe165b6 181 } else {
dea3101e
JB
182 /* Force ulpStatus error since we are returning NULL ptr */
183 if (!(irsp->ulpStatus)) {
184 irsp->ulpStatus = IOSTAT_LOCAL_REJECT;
185 irsp->un.ulpWord[4] = IOERR_SLI_ABORTED;
186 }
187 ptr = NULL;
188 }
c9f8735b 189 return ptr;
dea3101e
JB
190}
191
192
193/*
194 * Free resources / clean up outstanding I/Os
195 * associated with a LPFC_NODELIST entry. This
196 * routine effectively results in a "software abort".
197 */
198int
2e0fef85 199lpfc_els_abort(struct lpfc_hba *phba, struct lpfc_nodelist *ndlp)
dea3101e 200{
2534ba75 201 LIST_HEAD(completions);
2e0fef85
JS
202 struct lpfc_sli *psli = &phba->sli;
203 struct lpfc_sli_ring *pring = &psli->ring[LPFC_ELS_RING];
dea3101e 204 struct lpfc_iocbq *iocb, *next_iocb;
dea3101e
JB
205
206 /* Abort outstanding I/O on NPort <nlp_DID> */
e8b62011
JS
207 lpfc_printf_vlog(ndlp->vport, KERN_INFO, LOG_DISCOVERY,
208 "0205 Abort outstanding I/O on NPort x%x "
209 "Data: x%x x%x x%x\n",
210 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
211 ndlp->nlp_rpi);
92d7f7b0
JS
212
213 lpfc_fabric_abort_nport(ndlp);
dea3101e 214
dea3101e 215 /* First check the txq */
2e0fef85 216 spin_lock_irq(&phba->hbalock);
2534ba75 217 list_for_each_entry_safe(iocb, next_iocb, &pring->txq, list) {
858c9f6c 218 /* Check to see if iocb matches the nport we are looking for */
2534ba75 219 if (lpfc_check_sli_ndlp(phba, pring, iocb, ndlp)) {
858c9f6c 220 /* It matches, so deque and call compl with anp error */
2534ba75
JS
221 list_move_tail(&iocb->list, &completions);
222 pring->txq_cnt--;
dea3101e 223 }
2534ba75 224 }
dea3101e 225
dea3101e 226 /* Next check the txcmplq */
07951076 227 list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq, list) {
858c9f6c 228 /* Check to see if iocb matches the nport we are looking for */
92d7f7b0 229 if (lpfc_check_sli_ndlp(phba, pring, iocb, ndlp)) {
07951076 230 lpfc_sli_issue_abort_iotag(phba, pring, iocb);
92d7f7b0 231 }
07951076 232 }
2e0fef85 233 spin_unlock_irq(&phba->hbalock);
dea3101e 234
a257bf90
JS
235 /* Cancel all the IOCBs from the completions list */
236 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
237 IOERR_SLI_ABORTED);
2534ba75 238
0d2b6b83 239 lpfc_cancel_retry_delay_tmo(phba->pport, ndlp);
c9f8735b 240 return 0;
dea3101e
JB
241}
242
243static int
2e0fef85 244lpfc_rcv_plogi(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
92d7f7b0 245 struct lpfc_iocbq *cmdiocb)
dea3101e 246{
2e0fef85
JS
247 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
248 struct lpfc_hba *phba = vport->phba;
dea3101e
JB
249 struct lpfc_dmabuf *pcmd;
250 uint32_t *lp;
251 IOCB_t *icmd;
252 struct serv_parm *sp;
253 LPFC_MBOXQ_t *mbox;
254 struct ls_rjt stat;
255 int rc;
256
257 memset(&stat, 0, sizeof (struct ls_rjt));
695a814e 258 if (vport->port_state <= LPFC_FDISC) {
dea3101e
JB
259 /* Before responding to PLOGI, check for pt2pt mode.
260 * If we are pt2pt, with an outstanding FLOGI, abort
261 * the FLOGI and resend it first.
262 */
2e0fef85 263 if (vport->fc_flag & FC_PT2PT) {
92d7f7b0 264 lpfc_els_abort_flogi(phba);
2e0fef85 265 if (!(vport->fc_flag & FC_PT2PT_PLOGI)) {
dea3101e
JB
266 /* If the other side is supposed to initiate
267 * the PLOGI anyway, just ACC it now and
268 * move on with discovery.
269 */
270 phba->fc_edtov = FF_DEF_EDTOV;
271 phba->fc_ratov = FF_DEF_RATOV;
272 /* Start discovery - this should just do
273 CLEAR_LA */
2e0fef85 274 lpfc_disc_start(vport);
ed957684 275 } else
2e0fef85 276 lpfc_initial_flogi(vport);
2fe165b6 277 } else {
dea3101e
JB
278 stat.un.b.lsRjtRsnCode = LSRJT_LOGICAL_BSY;
279 stat.un.b.lsRjtRsnCodeExp = LSEXP_NOTHING_MORE;
2e0fef85 280 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb,
858c9f6c 281 ndlp, NULL);
dea3101e
JB
282 return 0;
283 }
284 }
285 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
286 lp = (uint32_t *) pcmd->virt;
287 sp = (struct serv_parm *) ((uint8_t *) lp + sizeof (uint32_t));
a8adb832
JS
288 if (wwn_to_u64(sp->portName.u.wwn) == 0) {
289 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
290 "0140 PLOGI Reject: invalid nname\n");
291 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
292 stat.un.b.lsRjtRsnCodeExp = LSEXP_INVALID_PNAME;
293 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp,
294 NULL);
295 return 0;
296 }
297 if (wwn_to_u64(sp->nodeName.u.wwn) == 0) {
298 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
299 "0141 PLOGI Reject: invalid pname\n");
300 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
301 stat.un.b.lsRjtRsnCodeExp = LSEXP_INVALID_NNAME;
302 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp,
303 NULL);
304 return 0;
305 }
341af102 306 if ((lpfc_check_sparm(vport, ndlp, sp, CLASS3, 0) == 0)) {
dea3101e
JB
307 /* Reject this request because invalid parameters */
308 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
309 stat.un.b.lsRjtRsnCodeExp = LSEXP_SPARM_OPTIONS;
858c9f6c
JS
310 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp,
311 NULL);
c9f8735b 312 return 0;
dea3101e
JB
313 }
314 icmd = &cmdiocb->iocb;
315
316 /* PLOGI chkparm OK */
e8b62011
JS
317 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
318 "0114 PLOGI chkparm OK Data: x%x x%x x%x x%x\n",
319 ndlp->nlp_DID, ndlp->nlp_state, ndlp->nlp_flag,
320 ndlp->nlp_rpi);
dea3101e 321
3de2a653 322 if (vport->cfg_fcp_class == 2 && sp->cls2.classValid)
dea3101e 323 ndlp->nlp_fcp_info |= CLASS2;
ed957684 324 else
dea3101e 325 ndlp->nlp_fcp_info |= CLASS3;
2e0fef85 326
dea3101e
JB
327 ndlp->nlp_class_sup = 0;
328 if (sp->cls1.classValid)
329 ndlp->nlp_class_sup |= FC_COS_CLASS1;
330 if (sp->cls2.classValid)
331 ndlp->nlp_class_sup |= FC_COS_CLASS2;
332 if (sp->cls3.classValid)
333 ndlp->nlp_class_sup |= FC_COS_CLASS3;
334 if (sp->cls4.classValid)
335 ndlp->nlp_class_sup |= FC_COS_CLASS4;
336 ndlp->nlp_maxframe =
337 ((sp->cmn.bbRcvSizeMsb & 0x0F) << 8) | sp->cmn.bbRcvSizeLsb;
338
339 /* no need to reg_login if we are already in one of these states */
2fe165b6 340 switch (ndlp->nlp_state) {
dea3101e
JB
341 case NLP_STE_NPR_NODE:
342 if (!(ndlp->nlp_flag & NLP_NPR_ADISC))
343 break;
344 case NLP_STE_REG_LOGIN_ISSUE:
345 case NLP_STE_PRLI_ISSUE:
346 case NLP_STE_UNMAPPED_NODE:
347 case NLP_STE_MAPPED_NODE:
51ef4c26 348 lpfc_els_rsp_acc(vport, ELS_CMD_PLOGI, cmdiocb, ndlp, NULL);
c9f8735b 349 return 1;
dea3101e
JB
350 }
351
92d7f7b0
JS
352 if ((vport->fc_flag & FC_PT2PT) &&
353 !(vport->fc_flag & FC_PT2PT_PLOGI)) {
dea3101e 354 /* rcv'ed PLOGI decides what our NPortId will be */
2e0fef85 355 vport->fc_myDID = icmd->un.rcvels.parmRo;
dea3101e
JB
356 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
357 if (mbox == NULL)
358 goto out;
359 lpfc_config_link(phba, mbox);
360 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
ed957684 361 mbox->vport = vport;
0b727fea 362 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
dea3101e 363 if (rc == MBX_NOT_FINISHED) {
92d7f7b0 364 mempool_free(mbox, phba->mbox_mem_pool);
dea3101e
JB
365 goto out;
366 }
367
2e0fef85 368 lpfc_can_disctmo(vport);
dea3101e
JB
369 }
370 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
2e0fef85 371 if (!mbox)
dea3101e
JB
372 goto out;
373
6fb120a7 374 rc = lpfc_reg_rpi(phba, vport->vpi, icmd->un.rcvels.remoteID,
92d7f7b0 375 (uint8_t *) sp, mbox, 0);
2e0fef85
JS
376 if (rc) {
377 mempool_free(mbox, phba->mbox_mem_pool);
dea3101e
JB
378 goto out;
379 }
380
381 /* ACC PLOGI rsp command needs to execute first,
382 * queue this mbox command to be processed later.
383 */
384 mbox->mbox_cmpl = lpfc_mbx_cmpl_reg_login;
329f9bc7
JS
385 /*
386 * mbox->context2 = lpfc_nlp_get(ndlp) deferred until mailbox
387 * command issued in lpfc_cmpl_els_acc().
388 */
2e0fef85
JS
389 mbox->vport = vport;
390 spin_lock_irq(shost->host_lock);
5024ab17 391 ndlp->nlp_flag |= (NLP_ACC_REGLOGIN | NLP_RCV_PLOGI);
2e0fef85 392 spin_unlock_irq(shost->host_lock);
dea3101e 393
33ccf8d1
JS
394 /*
395 * If there is an outstanding PLOGI issued, abort it before
396 * sending ACC rsp for received PLOGI. If pending plogi
397 * is not canceled here, the plogi will be rejected by
398 * remote port and will be retried. On a configuration with
399 * single discovery thread, this will cause a huge delay in
400 * discovery. Also this will cause multiple state machines
401 * running in parallel for this node.
402 */
403 if (ndlp->nlp_state == NLP_STE_PLOGI_ISSUE) {
404 /* software abort outstanding PLOGI */
07951076 405 lpfc_els_abort(phba, ndlp);
33ccf8d1
JS
406 }
407
858c9f6c 408 if ((vport->port_type == LPFC_NPIV_PORT &&
3de2a653 409 vport->cfg_restrict_login)) {
858c9f6c
JS
410
411 /* In order to preserve RPIs, we want to cleanup
412 * the default RPI the firmware created to rcv
413 * this ELS request. The only way to do this is
414 * to register, then unregister the RPI.
415 */
416 spin_lock_irq(shost->host_lock);
417 ndlp->nlp_flag |= NLP_RM_DFLT_RPI;
418 spin_unlock_irq(shost->host_lock);
419 stat.un.b.lsRjtRsnCode = LSRJT_INVALID_CMD;
420 stat.un.b.lsRjtRsnCodeExp = LSEXP_NOTHING_MORE;
421 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb,
422 ndlp, mbox);
423 return 1;
424 }
51ef4c26 425 lpfc_els_rsp_acc(vport, ELS_CMD_PLOGI, cmdiocb, ndlp, mbox);
c9f8735b 426 return 1;
dea3101e
JB
427out:
428 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
429 stat.un.b.lsRjtRsnCodeExp = LSEXP_OUT_OF_RESOURCE;
858c9f6c 430 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
c9f8735b 431 return 0;
dea3101e
JB
432}
433
434static int
2e0fef85 435lpfc_rcv_padisc(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
dea3101e
JB
436 struct lpfc_iocbq *cmdiocb)
437{
2e0fef85 438 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea3101e 439 struct lpfc_dmabuf *pcmd;
2e0fef85
JS
440 struct serv_parm *sp;
441 struct lpfc_name *pnn, *ppn;
dea3101e
JB
442 struct ls_rjt stat;
443 ADISC *ap;
444 IOCB_t *icmd;
445 uint32_t *lp;
446 uint32_t cmd;
447
448 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
449 lp = (uint32_t *) pcmd->virt;
450
451 cmd = *lp++;
452 if (cmd == ELS_CMD_ADISC) {
453 ap = (ADISC *) lp;
454 pnn = (struct lpfc_name *) & ap->nodeName;
455 ppn = (struct lpfc_name *) & ap->portName;
456 } else {
457 sp = (struct serv_parm *) lp;
458 pnn = (struct lpfc_name *) & sp->nodeName;
459 ppn = (struct lpfc_name *) & sp->portName;
460 }
461
462 icmd = &cmdiocb->iocb;
2e0fef85 463 if (icmd->ulpStatus == 0 && lpfc_check_adisc(vport, ndlp, pnn, ppn)) {
dea3101e 464 if (cmd == ELS_CMD_ADISC) {
2e0fef85 465 lpfc_els_rsp_adisc_acc(vport, cmdiocb, ndlp);
2fe165b6 466 } else {
2e0fef85 467 lpfc_els_rsp_acc(vport, ELS_CMD_PLOGI, cmdiocb, ndlp,
51ef4c26 468 NULL);
dea3101e 469 }
c9f8735b 470 return 1;
dea3101e
JB
471 }
472 /* Reject this request because invalid parameters */
473 stat.un.b.lsRjtRsvd0 = 0;
474 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
475 stat.un.b.lsRjtRsnCodeExp = LSEXP_SPARM_OPTIONS;
476 stat.un.b.vendorUnique = 0;
858c9f6c 477 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
dea3101e 478
dea3101e
JB
479 /* 1 sec timeout */
480 mod_timer(&ndlp->nlp_delayfunc, jiffies + HZ);
481
2e0fef85 482 spin_lock_irq(shost->host_lock);
dea3101e 483 ndlp->nlp_flag |= NLP_DELAY_TMO;
2e0fef85 484 spin_unlock_irq(shost->host_lock);
5024ab17
JW
485 ndlp->nlp_last_elscmd = ELS_CMD_PLOGI;
486 ndlp->nlp_prev_state = ndlp->nlp_state;
2e0fef85 487 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
c9f8735b 488 return 0;
dea3101e
JB
489}
490
491static int
2e0fef85
JS
492lpfc_rcv_logo(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
493 struct lpfc_iocbq *cmdiocb, uint32_t els_cmd)
dea3101e 494{
2e0fef85 495 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
4b40c59e
JS
496 struct lpfc_hba *phba = vport->phba;
497 struct lpfc_vport **vports;
498 int i, active_vlink_present = 0 ;
2e0fef85
JS
499
500 /* Put ndlp in NPR state with 1 sec timeout for plogi, ACC logo */
dea3101e
JB
501 /* Only call LOGO ACC for first LOGO, this avoids sending unnecessary
502 * PLOGIs during LOGO storms from a device.
503 */
2e0fef85 504 spin_lock_irq(shost->host_lock);
dea3101e 505 ndlp->nlp_flag |= NLP_LOGO_ACC;
2e0fef85 506 spin_unlock_irq(shost->host_lock);
82d9a2a2 507 if (els_cmd == ELS_CMD_PRLO)
51ef4c26 508 lpfc_els_rsp_acc(vport, ELS_CMD_PRLO, cmdiocb, ndlp, NULL);
82d9a2a2 509 else
51ef4c26 510 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
4b40c59e
JS
511 if (ndlp->nlp_DID == Fabric_DID) {
512 if (vport->port_state <= LPFC_FDISC)
513 goto out;
6fb120a7 514 lpfc_linkdown_port(vport);
6fb120a7 515 spin_lock_irq(shost->host_lock);
4b40c59e 516 vport->fc_flag |= FC_VPORT_LOGO_RCVD;
6fb120a7 517 spin_unlock_irq(shost->host_lock);
4b40c59e
JS
518 vports = lpfc_create_vport_work_array(phba);
519 if (vports) {
520 for (i = 0; i <= phba->max_vports && vports[i] != NULL;
521 i++) {
522 if ((!(vports[i]->fc_flag &
523 FC_VPORT_LOGO_RCVD)) &&
524 (vports[i]->port_state > LPFC_FDISC)) {
525 active_vlink_present = 1;
526 break;
527 }
528 }
529 lpfc_destroy_vport_work_array(phba, vports);
530 }
dea3101e 531
4b40c59e
JS
532 if (active_vlink_present) {
533 /*
534 * If there are other active VLinks present,
535 * re-instantiate the Vlink using FDISC.
536 */
537 mod_timer(&ndlp->nlp_delayfunc, jiffies + HZ);
538 spin_lock_irq(shost->host_lock);
539 ndlp->nlp_flag |= NLP_DELAY_TMO;
540 spin_unlock_irq(shost->host_lock);
541 ndlp->nlp_last_elscmd = ELS_CMD_FDISC;
542 vport->port_state = LPFC_FDISC;
543 } else {
544 spin_lock_irq(shost->host_lock);
545 phba->pport->fc_flag &= ~FC_LOGO_RCVD_DID_CHNG;
546 spin_unlock_irq(shost->host_lock);
547 lpfc_retry_pport_discovery(phba);
548 }
6fb120a7
JS
549 } else if ((!(ndlp->nlp_type & NLP_FABRIC) &&
550 ((ndlp->nlp_type & NLP_FCP_TARGET) ||
551 !(ndlp->nlp_type & NLP_FCP_INITIATOR))) ||
552 (ndlp->nlp_state == NLP_STE_ADISC_ISSUE)) {
dea3101e 553 /* Only try to re-login if this is NOT a Fabric Node */
dea3101e 554 mod_timer(&ndlp->nlp_delayfunc, jiffies + HZ * 1);
2e0fef85 555 spin_lock_irq(shost->host_lock);
dea3101e 556 ndlp->nlp_flag |= NLP_DELAY_TMO;
2e0fef85 557 spin_unlock_irq(shost->host_lock);
dea3101e 558
5024ab17 559 ndlp->nlp_last_elscmd = ELS_CMD_PLOGI;
c9f8735b 560 }
4b40c59e 561out:
87af33fe
JS
562 ndlp->nlp_prev_state = ndlp->nlp_state;
563 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
dea3101e 564
2e0fef85 565 spin_lock_irq(shost->host_lock);
dea3101e 566 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
2e0fef85 567 spin_unlock_irq(shost->host_lock);
dea3101e
JB
568 /* The driver has to wait until the ACC completes before it continues
569 * processing the LOGO. The action will resume in
570 * lpfc_cmpl_els_logo_acc routine. Since part of processing includes an
571 * unreg_login, the driver waits so the ACC does not get aborted.
572 */
c9f8735b 573 return 0;
dea3101e
JB
574}
575
576static void
2e0fef85
JS
577lpfc_rcv_prli(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
578 struct lpfc_iocbq *cmdiocb)
dea3101e
JB
579{
580 struct lpfc_dmabuf *pcmd;
581 uint32_t *lp;
582 PRLI *npr;
583 struct fc_rport *rport = ndlp->rport;
584 u32 roles;
585
586 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
587 lp = (uint32_t *) pcmd->virt;
588 npr = (PRLI *) ((uint8_t *) lp + sizeof (uint32_t));
589
590 ndlp->nlp_type &= ~(NLP_FCP_TARGET | NLP_FCP_INITIATOR);
591 ndlp->nlp_fcp_info &= ~NLP_FCP_2_DEVICE;
92d7f7b0 592 if (npr->prliType == PRLI_FCP_TYPE) {
dea3101e
JB
593 if (npr->initiatorFunc)
594 ndlp->nlp_type |= NLP_FCP_INITIATOR;
595 if (npr->targetFunc)
596 ndlp->nlp_type |= NLP_FCP_TARGET;
597 if (npr->Retry)
598 ndlp->nlp_fcp_info |= NLP_FCP_2_DEVICE;
599 }
600 if (rport) {
601 /* We need to update the rport role values */
602 roles = FC_RPORT_ROLE_UNKNOWN;
603 if (ndlp->nlp_type & NLP_FCP_INITIATOR)
604 roles |= FC_RPORT_ROLE_FCP_INITIATOR;
605 if (ndlp->nlp_type & NLP_FCP_TARGET)
606 roles |= FC_RPORT_ROLE_FCP_TARGET;
858c9f6c
JS
607
608 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_RPORT,
609 "rport rolechg: role:x%x did:x%x flg:x%x",
610 roles, ndlp->nlp_DID, ndlp->nlp_flag);
611
dea3101e
JB
612 fc_remote_port_rolechg(rport, roles);
613 }
614}
615
616static uint32_t
2e0fef85 617lpfc_disc_set_adisc(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
dea3101e 618{
2e0fef85 619 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2e0fef85 620
6fb120a7 621 if (!(ndlp->nlp_flag & NLP_RPI_VALID)) {
51ef4c26
JS
622 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
623 return 0;
624 }
625
1b32f6aa
JS
626 if (!(vport->fc_flag & FC_PT2PT)) {
627 /* Check config parameter use-adisc or FCP-2 */
628 if ((vport->cfg_use_adisc && (vport->fc_flag & FC_RSCN_MODE)) ||
629 ndlp->nlp_fcp_info & NLP_FCP_2_DEVICE) {
630 spin_lock_irq(shost->host_lock);
631 ndlp->nlp_flag |= NLP_NPR_ADISC;
632 spin_unlock_irq(shost->host_lock);
633 return 1;
634 }
92d7f7b0
JS
635 }
636 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
637 lpfc_unreg_rpi(vport, ndlp);
638 return 0;
dea3101e 639}
78730cfe
JS
640/**
641 * lpfc_release_rpi - Release a RPI by issueing unreg_login mailbox cmd.
642 * @phba : Pointer to lpfc_hba structure.
643 * @vport: Pointer to lpfc_vport structure.
644 * @rpi : rpi to be release.
645 *
646 * This function will send a unreg_login mailbox command to the firmware
647 * to release a rpi.
648 **/
649void
650lpfc_release_rpi(struct lpfc_hba *phba,
651 struct lpfc_vport *vport,
652 uint16_t rpi)
653{
654 LPFC_MBOXQ_t *pmb;
655 int rc;
656
657 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool,
658 GFP_KERNEL);
659 if (!pmb)
660 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
661 "2796 mailbox memory allocation failed \n");
662 else {
663 lpfc_unreg_login(phba, vport->vpi, rpi, pmb);
664 pmb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
665 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
666 if (rc == MBX_NOT_FINISHED)
667 mempool_free(pmb, phba->mbox_mem_pool);
668 }
669}
dea3101e
JB
670
671static uint32_t
2e0fef85
JS
672lpfc_disc_illegal(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
673 void *arg, uint32_t evt)
dea3101e 674{
78730cfe
JS
675 struct lpfc_hba *phba;
676 LPFC_MBOXQ_t *pmb = (LPFC_MBOXQ_t *) arg;
677 MAILBOX_t *mb;
678 uint16_t rpi;
679
680 phba = vport->phba;
681 /* Release the RPI if reglogin completing */
682 if (!(phba->pport->load_flag & FC_UNLOADING) &&
683 (evt == NLP_EVT_CMPL_REG_LOGIN) &&
684 (!pmb->u.mb.mbxStatus)) {
685 mb = &pmb->u.mb;
686 rpi = pmb->u.mb.un.varWords[0];
687 lpfc_release_rpi(phba, vport, rpi);
688 }
e8b62011 689 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
e47c9093 690 "0271 Illegal State Transition: node x%x "
e8b62011
JS
691 "event x%x, state x%x Data: x%x x%x\n",
692 ndlp->nlp_DID, evt, ndlp->nlp_state, ndlp->nlp_rpi,
693 ndlp->nlp_flag);
c9f8735b 694 return ndlp->nlp_state;
dea3101e
JB
695}
696
87af33fe
JS
697static uint32_t
698lpfc_cmpl_plogi_illegal(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
699 void *arg, uint32_t evt)
700{
701 /* This transition is only legal if we previously
702 * rcv'ed a PLOGI. Since we don't want 2 discovery threads
703 * working on the same NPortID, do nothing for this thread
704 * to stop it.
705 */
706 if (!(ndlp->nlp_flag & NLP_RCV_PLOGI)) {
707 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
e47c9093 708 "0272 Illegal State Transition: node x%x "
87af33fe
JS
709 "event x%x, state x%x Data: x%x x%x\n",
710 ndlp->nlp_DID, evt, ndlp->nlp_state, ndlp->nlp_rpi,
711 ndlp->nlp_flag);
712 }
713 return ndlp->nlp_state;
714}
715
dea3101e
JB
716/* Start of Discovery State Machine routines */
717
718static uint32_t
2e0fef85
JS
719lpfc_rcv_plogi_unused_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
720 void *arg, uint32_t evt)
dea3101e
JB
721{
722 struct lpfc_iocbq *cmdiocb;
723
724 cmdiocb = (struct lpfc_iocbq *) arg;
725
2e0fef85 726 if (lpfc_rcv_plogi(vport, ndlp, cmdiocb)) {
c9f8735b 727 return ndlp->nlp_state;
dea3101e 728 }
c9f8735b 729 return NLP_STE_FREED_NODE;
dea3101e
JB
730}
731
732static uint32_t
2e0fef85
JS
733lpfc_rcv_els_unused_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
734 void *arg, uint32_t evt)
dea3101e 735{
2e0fef85 736 lpfc_issue_els_logo(vport, ndlp, 0);
c9f8735b 737 return ndlp->nlp_state;
dea3101e
JB
738}
739
740static uint32_t
2e0fef85
JS
741lpfc_rcv_logo_unused_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
742 void *arg, uint32_t evt)
dea3101e 743{
2e0fef85
JS
744 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
745 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea3101e 746
2e0fef85 747 spin_lock_irq(shost->host_lock);
dea3101e 748 ndlp->nlp_flag |= NLP_LOGO_ACC;
2e0fef85 749 spin_unlock_irq(shost->host_lock);
51ef4c26 750 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
dea3101e 751
c9f8735b 752 return ndlp->nlp_state;
dea3101e
JB
753}
754
755static uint32_t
2e0fef85
JS
756lpfc_cmpl_logo_unused_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
757 void *arg, uint32_t evt)
dea3101e 758{
c9f8735b 759 return NLP_STE_FREED_NODE;
dea3101e
JB
760}
761
762static uint32_t
2e0fef85
JS
763lpfc_device_rm_unused_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
764 void *arg, uint32_t evt)
dea3101e 765{
c9f8735b 766 return NLP_STE_FREED_NODE;
dea3101e
JB
767}
768
769static uint32_t
2e0fef85 770lpfc_rcv_plogi_plogi_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
dea3101e
JB
771 void *arg, uint32_t evt)
772{
0d2b6b83 773 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2e0fef85 774 struct lpfc_hba *phba = vport->phba;
dea3101e 775 struct lpfc_iocbq *cmdiocb = arg;
2e0fef85
JS
776 struct lpfc_dmabuf *pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
777 uint32_t *lp = (uint32_t *) pcmd->virt;
778 struct serv_parm *sp = (struct serv_parm *) (lp + 1);
dea3101e
JB
779 struct ls_rjt stat;
780 int port_cmp;
781
dea3101e
JB
782 memset(&stat, 0, sizeof (struct ls_rjt));
783
784 /* For a PLOGI, we only accept if our portname is less
785 * than the remote portname.
786 */
787 phba->fc_stat.elsLogiCol++;
2e0fef85 788 port_cmp = memcmp(&vport->fc_portname, &sp->portName,
92d7f7b0 789 sizeof(struct lpfc_name));
dea3101e
JB
790
791 if (port_cmp >= 0) {
792 /* Reject this request because the remote node will accept
793 ours */
794 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
795 stat.un.b.lsRjtRsnCodeExp = LSEXP_CMD_IN_PROGRESS;
858c9f6c
JS
796 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp,
797 NULL);
2fe165b6 798 } else {
0d2b6b83
JS
799 if (lpfc_rcv_plogi(vport, ndlp, cmdiocb) &&
800 (ndlp->nlp_flag & NLP_NPR_2B_DISC) &&
801 (vport->num_disc_nodes)) {
802 spin_lock_irq(shost->host_lock);
803 ndlp->nlp_flag &= ~NLP_NPR_2B_DISC;
804 spin_unlock_irq(shost->host_lock);
805 /* Check if there are more PLOGIs to be sent */
806 lpfc_more_plogi(vport);
807 if (vport->num_disc_nodes == 0) {
808 spin_lock_irq(shost->host_lock);
809 vport->fc_flag &= ~FC_NDISC_ACTIVE;
810 spin_unlock_irq(shost->host_lock);
811 lpfc_can_disctmo(vport);
812 lpfc_end_rscn(vport);
813 }
814 }
2e0fef85 815 } /* If our portname was less */
dea3101e 816
c9f8735b
JW
817 return ndlp->nlp_state;
818}
819
92d7f7b0
JS
820static uint32_t
821lpfc_rcv_prli_plogi_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
822 void *arg, uint32_t evt)
823{
824 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
825 struct ls_rjt stat;
826
827 memset(&stat, 0, sizeof (struct ls_rjt));
828 stat.un.b.lsRjtRsnCode = LSRJT_LOGICAL_BSY;
829 stat.un.b.lsRjtRsnCodeExp = LSEXP_NOTHING_MORE;
858c9f6c 830 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
92d7f7b0
JS
831 return ndlp->nlp_state;
832}
833
c9f8735b 834static uint32_t
2e0fef85
JS
835lpfc_rcv_logo_plogi_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
836 void *arg, uint32_t evt)
c9f8735b 837{
2e0fef85 838 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
c9f8735b 839
92d7f7b0 840 /* software abort outstanding PLOGI */
2e0fef85 841 lpfc_els_abort(vport->phba, ndlp);
c9f8735b 842
2e0fef85 843 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_LOGO);
c9f8735b 844 return ndlp->nlp_state;
dea3101e
JB
845}
846
847static uint32_t
2e0fef85
JS
848lpfc_rcv_els_plogi_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
849 void *arg, uint32_t evt)
dea3101e 850{
2e0fef85
JS
851 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
852 struct lpfc_hba *phba = vport->phba;
853 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea3101e
JB
854
855 /* software abort outstanding PLOGI */
07951076 856 lpfc_els_abort(phba, ndlp);
dea3101e
JB
857
858 if (evt == NLP_EVT_RCV_LOGO) {
51ef4c26 859 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
2fe165b6 860 } else {
2e0fef85 861 lpfc_issue_els_logo(vport, ndlp, 0);
dea3101e
JB
862 }
863
2e0fef85 864 /* Put ndlp in npr state set plogi timer for 1 sec */
5024ab17 865 mod_timer(&ndlp->nlp_delayfunc, jiffies + HZ * 1);
2e0fef85 866 spin_lock_irq(shost->host_lock);
5024ab17 867 ndlp->nlp_flag |= NLP_DELAY_TMO;
2e0fef85 868 spin_unlock_irq(shost->host_lock);
5024ab17
JW
869 ndlp->nlp_last_elscmd = ELS_CMD_PLOGI;
870 ndlp->nlp_prev_state = NLP_STE_PLOGI_ISSUE;
2e0fef85 871 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
dea3101e 872
c9f8735b 873 return ndlp->nlp_state;
dea3101e
JB
874}
875
876static uint32_t
2e0fef85
JS
877lpfc_cmpl_plogi_plogi_issue(struct lpfc_vport *vport,
878 struct lpfc_nodelist *ndlp,
879 void *arg,
dea3101e
JB
880 uint32_t evt)
881{
2e0fef85 882 struct lpfc_hba *phba = vport->phba;
0ff10d46 883 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2e0fef85 884 struct lpfc_iocbq *cmdiocb, *rspiocb;
14691150 885 struct lpfc_dmabuf *pcmd, *prsp, *mp;
dea3101e
JB
886 uint32_t *lp;
887 IOCB_t *irsp;
888 struct serv_parm *sp;
889 LPFC_MBOXQ_t *mbox;
890
891 cmdiocb = (struct lpfc_iocbq *) arg;
892 rspiocb = cmdiocb->context_un.rsp_iocb;
893
894 if (ndlp->nlp_flag & NLP_ACC_REGLOGIN) {
5024ab17 895 /* Recovery from PLOGI collision logic */
c9f8735b 896 return ndlp->nlp_state;
dea3101e
JB
897 }
898
899 irsp = &rspiocb->iocb;
900
901 if (irsp->ulpStatus)
902 goto out;
903
904 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
905
2e0fef85 906 prsp = list_get_first(&pcmd->list, struct lpfc_dmabuf, list);
dea3101e 907
2e0fef85 908 lp = (uint32_t *) prsp->virt;
dea3101e 909 sp = (struct serv_parm *) ((uint8_t *) lp + sizeof (uint32_t));
58da1ffb
JS
910
911 /* Some switches have FDMI servers returning 0 for WWN */
912 if ((ndlp->nlp_DID != FDMI_DID) &&
913 (wwn_to_u64(sp->portName.u.wwn) == 0 ||
914 wwn_to_u64(sp->nodeName.u.wwn) == 0)) {
a8adb832
JS
915 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
916 "0142 PLOGI RSP: Invalid WWN.\n");
917 goto out;
918 }
341af102 919 if (!lpfc_check_sparm(vport, ndlp, sp, CLASS3, 0))
dea3101e 920 goto out;
dea3101e 921 /* PLOGI chkparm OK */
e8b62011
JS
922 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
923 "0121 PLOGI chkparm OK Data: x%x x%x x%x x%x\n",
924 ndlp->nlp_DID, ndlp->nlp_state,
925 ndlp->nlp_flag, ndlp->nlp_rpi);
3de2a653 926 if (vport->cfg_fcp_class == 2 && (sp->cls2.classValid))
dea3101e 927 ndlp->nlp_fcp_info |= CLASS2;
2e0fef85 928 else
dea3101e 929 ndlp->nlp_fcp_info |= CLASS3;
2e0fef85 930
dea3101e
JB
931 ndlp->nlp_class_sup = 0;
932 if (sp->cls1.classValid)
933 ndlp->nlp_class_sup |= FC_COS_CLASS1;
934 if (sp->cls2.classValid)
935 ndlp->nlp_class_sup |= FC_COS_CLASS2;
936 if (sp->cls3.classValid)
937 ndlp->nlp_class_sup |= FC_COS_CLASS3;
938 if (sp->cls4.classValid)
939 ndlp->nlp_class_sup |= FC_COS_CLASS4;
940 ndlp->nlp_maxframe =
2e0fef85 941 ((sp->cmn.bbRcvSizeMsb & 0x0F) << 8) | sp->cmn.bbRcvSizeLsb;
dea3101e 942
2e0fef85 943 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
92d7f7b0 944 if (!mbox) {
e8b62011
JS
945 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
946 "0133 PLOGI: no memory for reg_login "
92d7f7b0 947 "Data: x%x x%x x%x x%x\n",
92d7f7b0
JS
948 ndlp->nlp_DID, ndlp->nlp_state,
949 ndlp->nlp_flag, ndlp->nlp_rpi);
dea3101e 950 goto out;
92d7f7b0 951 }
dea3101e 952
2e0fef85
JS
953 lpfc_unreg_rpi(vport, ndlp);
954
6fb120a7 955 if (lpfc_reg_rpi(phba, vport->vpi, irsp->un.elsreq64.remoteID,
92d7f7b0 956 (uint8_t *) sp, mbox, 0) == 0) {
2fe165b6 957 switch (ndlp->nlp_DID) {
dea3101e 958 case NameServer_DID:
de0c5b32 959 mbox->mbox_cmpl = lpfc_mbx_cmpl_ns_reg_login;
dea3101e
JB
960 break;
961 case FDMI_DID:
de0c5b32 962 mbox->mbox_cmpl = lpfc_mbx_cmpl_fdmi_reg_login;
dea3101e
JB
963 break;
964 default:
de0c5b32 965 mbox->mbox_cmpl = lpfc_mbx_cmpl_reg_login;
dea3101e 966 }
329f9bc7 967 mbox->context2 = lpfc_nlp_get(ndlp);
2e0fef85 968 mbox->vport = vport;
0b727fea 969 if (lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT)
dea3101e 970 != MBX_NOT_FINISHED) {
2e0fef85
JS
971 lpfc_nlp_set_state(vport, ndlp,
972 NLP_STE_REG_LOGIN_ISSUE);
c9f8735b 973 return ndlp->nlp_state;
dea3101e 974 }
fa4066b6
JS
975 /* decrement node reference count to the failed mbox
976 * command
977 */
329f9bc7 978 lpfc_nlp_put(ndlp);
92d7f7b0 979 mp = (struct lpfc_dmabuf *) mbox->context1;
14691150
JS
980 lpfc_mbuf_free(phba, mp->virt, mp->phys);
981 kfree(mp);
dea3101e 982 mempool_free(mbox, phba->mbox_mem_pool);
92d7f7b0 983
e8b62011
JS
984 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
985 "0134 PLOGI: cannot issue reg_login "
986 "Data: x%x x%x x%x x%x\n",
987 ndlp->nlp_DID, ndlp->nlp_state,
988 ndlp->nlp_flag, ndlp->nlp_rpi);
dea3101e
JB
989 } else {
990 mempool_free(mbox, phba->mbox_mem_pool);
92d7f7b0 991
e8b62011
JS
992 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
993 "0135 PLOGI: cannot format reg_login "
994 "Data: x%x x%x x%x x%x\n",
995 ndlp->nlp_DID, ndlp->nlp_state,
996 ndlp->nlp_flag, ndlp->nlp_rpi);
dea3101e
JB
997 }
998
999
92d7f7b0
JS
1000out:
1001 if (ndlp->nlp_DID == NameServer_DID) {
1002 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
e8b62011
JS
1003 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
1004 "0261 Cannot Register NameServer login\n");
92d7f7b0
JS
1005 }
1006
0ff10d46 1007 spin_lock_irq(shost->host_lock);
a8adb832 1008 ndlp->nlp_flag |= NLP_DEFER_RM;
0ff10d46 1009 spin_unlock_irq(shost->host_lock);
c9f8735b 1010 return NLP_STE_FREED_NODE;
dea3101e
JB
1011}
1012
0ff10d46
JS
1013static uint32_t
1014lpfc_cmpl_logo_plogi_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1015 void *arg, uint32_t evt)
1016{
1017 return ndlp->nlp_state;
1018}
1019
1020static uint32_t
1021lpfc_cmpl_reglogin_plogi_issue(struct lpfc_vport *vport,
1022 struct lpfc_nodelist *ndlp, void *arg, uint32_t evt)
1023{
78730cfe
JS
1024 struct lpfc_hba *phba;
1025 LPFC_MBOXQ_t *pmb = (LPFC_MBOXQ_t *) arg;
1026 MAILBOX_t *mb = &pmb->u.mb;
1027 uint16_t rpi;
1028
1029 phba = vport->phba;
1030 /* Release the RPI */
1031 if (!(phba->pport->load_flag & FC_UNLOADING) &&
1032 !mb->mbxStatus) {
1033 rpi = pmb->u.mb.un.varWords[0];
1034 lpfc_release_rpi(phba, vport, rpi);
1035 }
0ff10d46
JS
1036 return ndlp->nlp_state;
1037}
1038
dea3101e 1039static uint32_t
2e0fef85
JS
1040lpfc_device_rm_plogi_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1041 void *arg, uint32_t evt)
dea3101e 1042{
2e0fef85
JS
1043 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1044
1045 if (ndlp->nlp_flag & NLP_NPR_2B_DISC) {
1046 spin_lock_irq(shost->host_lock);
a0f9b48d 1047 ndlp->nlp_flag |= NLP_NODEV_REMOVE;
2e0fef85 1048 spin_unlock_irq(shost->host_lock);
a0f9b48d 1049 return ndlp->nlp_state;
2e0fef85 1050 } else {
a0f9b48d 1051 /* software abort outstanding PLOGI */
2e0fef85 1052 lpfc_els_abort(vport->phba, ndlp);
dea3101e 1053
2e0fef85 1054 lpfc_drop_node(vport, ndlp);
a0f9b48d
JS
1055 return NLP_STE_FREED_NODE;
1056 }
dea3101e
JB
1057}
1058
1059static uint32_t
2e0fef85
JS
1060lpfc_device_recov_plogi_issue(struct lpfc_vport *vport,
1061 struct lpfc_nodelist *ndlp,
1062 void *arg,
1063 uint32_t evt)
dea3101e 1064{
2e0fef85
JS
1065 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1066 struct lpfc_hba *phba = vport->phba;
1067
92d7f7b0
JS
1068 /* Don't do anything that will mess up processing of the
1069 * previous RSCN.
1070 */
1071 if (vport->fc_flag & FC_RSCN_DEFERRED)
1072 return ndlp->nlp_state;
1073
dea3101e 1074 /* software abort outstanding PLOGI */
07951076 1075 lpfc_els_abort(phba, ndlp);
dea3101e 1076
5024ab17 1077 ndlp->nlp_prev_state = NLP_STE_PLOGI_ISSUE;
2e0fef85 1078 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
92d7f7b0 1079 spin_lock_irq(shost->host_lock);
a0f9b48d 1080 ndlp->nlp_flag &= ~(NLP_NODEV_REMOVE | NLP_NPR_2B_DISC);
2e0fef85 1081 spin_unlock_irq(shost->host_lock);
dea3101e 1082
c9f8735b 1083 return ndlp->nlp_state;
dea3101e
JB
1084}
1085
1086static uint32_t
2e0fef85
JS
1087lpfc_rcv_plogi_adisc_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1088 void *arg, uint32_t evt)
dea3101e 1089{
0d2b6b83 1090 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2e0fef85 1091 struct lpfc_hba *phba = vport->phba;
dea3101e
JB
1092 struct lpfc_iocbq *cmdiocb;
1093
1094 /* software abort outstanding ADISC */
07951076 1095 lpfc_els_abort(phba, ndlp);
dea3101e
JB
1096
1097 cmdiocb = (struct lpfc_iocbq *) arg;
1098
0d2b6b83
JS
1099 if (lpfc_rcv_plogi(vport, ndlp, cmdiocb)) {
1100 if (ndlp->nlp_flag & NLP_NPR_2B_DISC) {
1101 spin_lock_irq(shost->host_lock);
1102 ndlp->nlp_flag &= ~NLP_NPR_2B_DISC;
1103 spin_unlock_irq(shost->host_lock);
90160e01 1104 if (vport->num_disc_nodes)
0d2b6b83 1105 lpfc_more_adisc(vport);
0d2b6b83
JS
1106 }
1107 return ndlp->nlp_state;
1108 }
5024ab17 1109 ndlp->nlp_prev_state = NLP_STE_ADISC_ISSUE;
2e0fef85
JS
1110 lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0);
1111 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
dea3101e 1112
c9f8735b 1113 return ndlp->nlp_state;
dea3101e
JB
1114}
1115
1116static uint32_t
2e0fef85
JS
1117lpfc_rcv_prli_adisc_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1118 void *arg, uint32_t evt)
dea3101e 1119{
2e0fef85 1120 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea3101e 1121
2e0fef85 1122 lpfc_els_rsp_prli_acc(vport, cmdiocb, ndlp);
c9f8735b 1123 return ndlp->nlp_state;
dea3101e
JB
1124}
1125
1126static uint32_t
2e0fef85
JS
1127lpfc_rcv_logo_adisc_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1128 void *arg, uint32_t evt)
dea3101e 1129{
2e0fef85 1130 struct lpfc_hba *phba = vport->phba;
dea3101e
JB
1131 struct lpfc_iocbq *cmdiocb;
1132
1133 cmdiocb = (struct lpfc_iocbq *) arg;
1134
1135 /* software abort outstanding ADISC */
07951076 1136 lpfc_els_abort(phba, ndlp);
dea3101e 1137
2e0fef85 1138 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_LOGO);
c9f8735b 1139 return ndlp->nlp_state;
dea3101e
JB
1140}
1141
1142static uint32_t
2e0fef85
JS
1143lpfc_rcv_padisc_adisc_issue(struct lpfc_vport *vport,
1144 struct lpfc_nodelist *ndlp,
1145 void *arg, uint32_t evt)
dea3101e
JB
1146{
1147 struct lpfc_iocbq *cmdiocb;
1148
1149 cmdiocb = (struct lpfc_iocbq *) arg;
1150
2e0fef85 1151 lpfc_rcv_padisc(vport, ndlp, cmdiocb);
c9f8735b 1152 return ndlp->nlp_state;
dea3101e
JB
1153}
1154
1155static uint32_t
2e0fef85
JS
1156lpfc_rcv_prlo_adisc_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1157 void *arg, uint32_t evt)
dea3101e
JB
1158{
1159 struct lpfc_iocbq *cmdiocb;
1160
1161 cmdiocb = (struct lpfc_iocbq *) arg;
1162
1163 /* Treat like rcv logo */
2e0fef85 1164 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_PRLO);
c9f8735b 1165 return ndlp->nlp_state;
dea3101e
JB
1166}
1167
1168static uint32_t
2e0fef85
JS
1169lpfc_cmpl_adisc_adisc_issue(struct lpfc_vport *vport,
1170 struct lpfc_nodelist *ndlp,
1171 void *arg, uint32_t evt)
dea3101e 1172{
2e0fef85
JS
1173 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1174 struct lpfc_hba *phba = vport->phba;
dea3101e
JB
1175 struct lpfc_iocbq *cmdiocb, *rspiocb;
1176 IOCB_t *irsp;
1177 ADISC *ap;
6fb120a7 1178 int rc;
dea3101e
JB
1179
1180 cmdiocb = (struct lpfc_iocbq *) arg;
1181 rspiocb = cmdiocb->context_un.rsp_iocb;
1182
1183 ap = (ADISC *)lpfc_check_elscmpl_iocb(phba, cmdiocb, rspiocb);
1184 irsp = &rspiocb->iocb;
1185
1186 if ((irsp->ulpStatus) ||
92d7f7b0 1187 (!lpfc_check_adisc(vport, ndlp, &ap->nodeName, &ap->portName))) {
dea3101e
JB
1188 /* 1 sec timeout */
1189 mod_timer(&ndlp->nlp_delayfunc, jiffies + HZ);
2e0fef85 1190 spin_lock_irq(shost->host_lock);
dea3101e 1191 ndlp->nlp_flag |= NLP_DELAY_TMO;
2e0fef85 1192 spin_unlock_irq(shost->host_lock);
5024ab17 1193 ndlp->nlp_last_elscmd = ELS_CMD_PLOGI;
dea3101e 1194
2e0fef85
JS
1195 memset(&ndlp->nlp_nodename, 0, sizeof(struct lpfc_name));
1196 memset(&ndlp->nlp_portname, 0, sizeof(struct lpfc_name));
dea3101e 1197
5024ab17 1198 ndlp->nlp_prev_state = NLP_STE_ADISC_ISSUE;
2e0fef85
JS
1199 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
1200 lpfc_unreg_rpi(vport, ndlp);
c9f8735b 1201 return ndlp->nlp_state;
dea3101e 1202 }
5024ab17 1203
6fb120a7
JS
1204 if (phba->sli_rev == LPFC_SLI_REV4) {
1205 rc = lpfc_sli4_resume_rpi(ndlp);
1206 if (rc) {
1207 /* Stay in state and retry. */
1208 ndlp->nlp_prev_state = NLP_STE_ADISC_ISSUE;
1209 return ndlp->nlp_state;
1210 }
1211 }
1212
2501322e 1213 if (ndlp->nlp_type & NLP_FCP_TARGET) {
5024ab17 1214 ndlp->nlp_prev_state = NLP_STE_ADISC_ISSUE;
2e0fef85 1215 lpfc_nlp_set_state(vport, ndlp, NLP_STE_MAPPED_NODE);
2501322e 1216 } else {
5024ab17 1217 ndlp->nlp_prev_state = NLP_STE_ADISC_ISSUE;
2e0fef85 1218 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
2501322e 1219 }
6fb120a7 1220
c9f8735b 1221 return ndlp->nlp_state;
dea3101e
JB
1222}
1223
1224static uint32_t
2e0fef85
JS
1225lpfc_device_rm_adisc_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1226 void *arg, uint32_t evt)
dea3101e 1227{
2e0fef85
JS
1228 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1229
1230 if (ndlp->nlp_flag & NLP_NPR_2B_DISC) {
1231 spin_lock_irq(shost->host_lock);
a0f9b48d 1232 ndlp->nlp_flag |= NLP_NODEV_REMOVE;
2e0fef85 1233 spin_unlock_irq(shost->host_lock);
a0f9b48d 1234 return ndlp->nlp_state;
2e0fef85 1235 } else {
a0f9b48d 1236 /* software abort outstanding ADISC */
2e0fef85 1237 lpfc_els_abort(vport->phba, ndlp);
dea3101e 1238
2e0fef85 1239 lpfc_drop_node(vport, ndlp);
a0f9b48d
JS
1240 return NLP_STE_FREED_NODE;
1241 }
dea3101e
JB
1242}
1243
1244static uint32_t
2e0fef85
JS
1245lpfc_device_recov_adisc_issue(struct lpfc_vport *vport,
1246 struct lpfc_nodelist *ndlp,
1247 void *arg,
1248 uint32_t evt)
dea3101e 1249{
2e0fef85
JS
1250 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1251 struct lpfc_hba *phba = vport->phba;
1252
92d7f7b0
JS
1253 /* Don't do anything that will mess up processing of the
1254 * previous RSCN.
1255 */
1256 if (vport->fc_flag & FC_RSCN_DEFERRED)
1257 return ndlp->nlp_state;
1258
dea3101e 1259 /* software abort outstanding ADISC */
07951076 1260 lpfc_els_abort(phba, ndlp);
dea3101e 1261
5024ab17 1262 ndlp->nlp_prev_state = NLP_STE_ADISC_ISSUE;
2e0fef85
JS
1263 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
1264 spin_lock_irq(shost->host_lock);
a0f9b48d 1265 ndlp->nlp_flag &= ~(NLP_NODEV_REMOVE | NLP_NPR_2B_DISC);
2e0fef85 1266 spin_unlock_irq(shost->host_lock);
92d7f7b0 1267 lpfc_disc_set_adisc(vport, ndlp);
c9f8735b 1268 return ndlp->nlp_state;
dea3101e
JB
1269}
1270
1271static uint32_t
2e0fef85
JS
1272lpfc_rcv_plogi_reglogin_issue(struct lpfc_vport *vport,
1273 struct lpfc_nodelist *ndlp,
1274 void *arg,
dea3101e
JB
1275 uint32_t evt)
1276{
2e0fef85 1277 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea3101e 1278
2e0fef85 1279 lpfc_rcv_plogi(vport, ndlp, cmdiocb);
c9f8735b 1280 return ndlp->nlp_state;
dea3101e
JB
1281}
1282
1283static uint32_t
2e0fef85
JS
1284lpfc_rcv_prli_reglogin_issue(struct lpfc_vport *vport,
1285 struct lpfc_nodelist *ndlp,
1286 void *arg,
dea3101e
JB
1287 uint32_t evt)
1288{
2e0fef85 1289 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea3101e 1290
2e0fef85 1291 lpfc_els_rsp_prli_acc(vport, cmdiocb, ndlp);
c9f8735b 1292 return ndlp->nlp_state;
dea3101e
JB
1293}
1294
1295static uint32_t
2e0fef85
JS
1296lpfc_rcv_logo_reglogin_issue(struct lpfc_vport *vport,
1297 struct lpfc_nodelist *ndlp,
1298 void *arg,
dea3101e
JB
1299 uint32_t evt)
1300{
2e0fef85
JS
1301 struct lpfc_hba *phba = vport->phba;
1302 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
7054a606
JS
1303 LPFC_MBOXQ_t *mb;
1304 LPFC_MBOXQ_t *nextmb;
1305 struct lpfc_dmabuf *mp;
dea3101e
JB
1306
1307 cmdiocb = (struct lpfc_iocbq *) arg;
1308
7054a606
JS
1309 /* cleanup any ndlp on mbox q waiting for reglogin cmpl */
1310 if ((mb = phba->sli.mbox_active)) {
04c68496 1311 if ((mb->u.mb.mbxCommand == MBX_REG_LOGIN64) &&
7054a606 1312 (ndlp == (struct lpfc_nodelist *) mb->context2)) {
92d7f7b0 1313 lpfc_nlp_put(ndlp);
7054a606
JS
1314 mb->context2 = NULL;
1315 mb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
1316 }
1317 }
1318
2e0fef85 1319 spin_lock_irq(&phba->hbalock);
7054a606 1320 list_for_each_entry_safe(mb, nextmb, &phba->sli.mboxq, list) {
04c68496 1321 if ((mb->u.mb.mbxCommand == MBX_REG_LOGIN64) &&
7054a606 1322 (ndlp == (struct lpfc_nodelist *) mb->context2)) {
5ffc266e
JS
1323 if (phba->sli_rev == LPFC_SLI_REV4) {
1324 spin_unlock_irq(&phba->hbalock);
1325 lpfc_sli4_free_rpi(phba,
1326 mb->u.mb.un.varRegLogin.rpi);
1327 spin_lock_irq(&phba->hbalock);
1328 }
7054a606
JS
1329 mp = (struct lpfc_dmabuf *) (mb->context1);
1330 if (mp) {
98c9ea5c 1331 __lpfc_mbuf_free(phba, mp->virt, mp->phys);
7054a606
JS
1332 kfree(mp);
1333 }
92d7f7b0 1334 lpfc_nlp_put(ndlp);
7054a606 1335 list_del(&mb->list);
5ffc266e 1336 phba->sli.mboxq_cnt--;
7054a606
JS
1337 mempool_free(mb, phba->mbox_mem_pool);
1338 }
1339 }
2e0fef85 1340 spin_unlock_irq(&phba->hbalock);
7054a606 1341
2e0fef85 1342 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_LOGO);
c9f8735b 1343 return ndlp->nlp_state;
dea3101e
JB
1344}
1345
1346static uint32_t
2e0fef85
JS
1347lpfc_rcv_padisc_reglogin_issue(struct lpfc_vport *vport,
1348 struct lpfc_nodelist *ndlp,
1349 void *arg,
dea3101e
JB
1350 uint32_t evt)
1351{
2e0fef85 1352 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea3101e 1353
2e0fef85 1354 lpfc_rcv_padisc(vport, ndlp, cmdiocb);
c9f8735b 1355 return ndlp->nlp_state;
dea3101e
JB
1356}
1357
1358static uint32_t
2e0fef85
JS
1359lpfc_rcv_prlo_reglogin_issue(struct lpfc_vport *vport,
1360 struct lpfc_nodelist *ndlp,
1361 void *arg,
dea3101e
JB
1362 uint32_t evt)
1363{
1364 struct lpfc_iocbq *cmdiocb;
1365
1366 cmdiocb = (struct lpfc_iocbq *) arg;
51ef4c26 1367 lpfc_els_rsp_acc(vport, ELS_CMD_PRLO, cmdiocb, ndlp, NULL);
c9f8735b 1368 return ndlp->nlp_state;
dea3101e
JB
1369}
1370
1371static uint32_t
2e0fef85
JS
1372lpfc_cmpl_reglogin_reglogin_issue(struct lpfc_vport *vport,
1373 struct lpfc_nodelist *ndlp,
1374 void *arg,
1375 uint32_t evt)
dea3101e 1376{
2e0fef85 1377 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2e0fef85 1378 LPFC_MBOXQ_t *pmb = (LPFC_MBOXQ_t *) arg;
04c68496 1379 MAILBOX_t *mb = &pmb->u.mb;
2e0fef85 1380 uint32_t did = mb->un.varWords[1];
dea3101e 1381
dea3101e
JB
1382 if (mb->mbxStatus) {
1383 /* RegLogin failed */
e8b62011
JS
1384 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
1385 "0246 RegLogin failed Data: x%x x%x x%x\n",
2e0fef85 1386 did, mb->mbxStatus, vport->port_state);
d0e56dad
JS
1387 /*
1388 * If RegLogin failed due to lack of HBA resources do not
1389 * retry discovery.
1390 */
1391 if (mb->mbxStatus == MBXERR_RPI_FULL) {
87af33fe
JS
1392 ndlp->nlp_prev_state = NLP_STE_REG_LOGIN_ISSUE;
1393 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
d0e56dad
JS
1394 return ndlp->nlp_state;
1395 }
1396
2e0fef85 1397 /* Put ndlp in npr state set plogi timer for 1 sec */
dea3101e 1398 mod_timer(&ndlp->nlp_delayfunc, jiffies + HZ * 1);
2e0fef85 1399 spin_lock_irq(shost->host_lock);
dea3101e 1400 ndlp->nlp_flag |= NLP_DELAY_TMO;
2e0fef85 1401 spin_unlock_irq(shost->host_lock);
5024ab17 1402 ndlp->nlp_last_elscmd = ELS_CMD_PLOGI;
dea3101e 1403
2e0fef85 1404 lpfc_issue_els_logo(vport, ndlp, 0);
5024ab17 1405 ndlp->nlp_prev_state = NLP_STE_REG_LOGIN_ISSUE;
2e0fef85 1406 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
c9f8735b 1407 return ndlp->nlp_state;
dea3101e
JB
1408 }
1409
dea3101e 1410 ndlp->nlp_rpi = mb->un.varWords[0];
6fb120a7 1411 ndlp->nlp_flag |= NLP_RPI_VALID;
dea3101e
JB
1412
1413 /* Only if we are not a fabric nport do we issue PRLI */
1414 if (!(ndlp->nlp_type & NLP_FABRIC)) {
5024ab17 1415 ndlp->nlp_prev_state = NLP_STE_REG_LOGIN_ISSUE;
2e0fef85
JS
1416 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PRLI_ISSUE);
1417 lpfc_issue_els_prli(vport, ndlp, 0);
dea3101e 1418 } else {
5024ab17 1419 ndlp->nlp_prev_state = NLP_STE_REG_LOGIN_ISSUE;
2e0fef85 1420 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
dea3101e 1421 }
c9f8735b 1422 return ndlp->nlp_state;
dea3101e
JB
1423}
1424
1425static uint32_t
2e0fef85
JS
1426lpfc_device_rm_reglogin_issue(struct lpfc_vport *vport,
1427 struct lpfc_nodelist *ndlp,
1428 void *arg,
dea3101e
JB
1429 uint32_t evt)
1430{
2e0fef85
JS
1431 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1432
1433 if (ndlp->nlp_flag & NLP_NPR_2B_DISC) {
1434 spin_lock_irq(shost->host_lock);
a0f9b48d 1435 ndlp->nlp_flag |= NLP_NODEV_REMOVE;
2e0fef85 1436 spin_unlock_irq(shost->host_lock);
a0f9b48d 1437 return ndlp->nlp_state;
2e0fef85
JS
1438 } else {
1439 lpfc_drop_node(vport, ndlp);
a0f9b48d
JS
1440 return NLP_STE_FREED_NODE;
1441 }
dea3101e
JB
1442}
1443
1444static uint32_t
2e0fef85
JS
1445lpfc_device_recov_reglogin_issue(struct lpfc_vport *vport,
1446 struct lpfc_nodelist *ndlp,
1447 void *arg,
1448 uint32_t evt)
dea3101e 1449{
2e0fef85
JS
1450 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1451
92d7f7b0
JS
1452 /* Don't do anything that will mess up processing of the
1453 * previous RSCN.
1454 */
1455 if (vport->fc_flag & FC_RSCN_DEFERRED)
1456 return ndlp->nlp_state;
1457
5024ab17 1458 ndlp->nlp_prev_state = NLP_STE_REG_LOGIN_ISSUE;
2e0fef85
JS
1459 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
1460 spin_lock_irq(shost->host_lock);
a0f9b48d 1461 ndlp->nlp_flag &= ~(NLP_NODEV_REMOVE | NLP_NPR_2B_DISC);
2e0fef85 1462 spin_unlock_irq(shost->host_lock);
92d7f7b0 1463 lpfc_disc_set_adisc(vport, ndlp);
c9f8735b 1464 return ndlp->nlp_state;
dea3101e
JB
1465}
1466
1467static uint32_t
2e0fef85
JS
1468lpfc_rcv_plogi_prli_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1469 void *arg, uint32_t evt)
dea3101e
JB
1470{
1471 struct lpfc_iocbq *cmdiocb;
1472
1473 cmdiocb = (struct lpfc_iocbq *) arg;
1474
2e0fef85 1475 lpfc_rcv_plogi(vport, ndlp, cmdiocb);
c9f8735b 1476 return ndlp->nlp_state;
dea3101e
JB
1477}
1478
1479static uint32_t
2e0fef85
JS
1480lpfc_rcv_prli_prli_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1481 void *arg, uint32_t evt)
dea3101e 1482{
2e0fef85 1483 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea3101e 1484
2e0fef85 1485 lpfc_els_rsp_prli_acc(vport, cmdiocb, ndlp);
c9f8735b 1486 return ndlp->nlp_state;
dea3101e
JB
1487}
1488
1489static uint32_t
2e0fef85
JS
1490lpfc_rcv_logo_prli_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1491 void *arg, uint32_t evt)
dea3101e 1492{
2e0fef85 1493 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea3101e
JB
1494
1495 /* Software abort outstanding PRLI before sending acc */
2e0fef85 1496 lpfc_els_abort(vport->phba, ndlp);
dea3101e 1497
2e0fef85 1498 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_LOGO);
c9f8735b 1499 return ndlp->nlp_state;
dea3101e
JB
1500}
1501
1502static uint32_t
2e0fef85
JS
1503lpfc_rcv_padisc_prli_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1504 void *arg, uint32_t evt)
dea3101e 1505{
2e0fef85 1506 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea3101e 1507
2e0fef85 1508 lpfc_rcv_padisc(vport, ndlp, cmdiocb);
c9f8735b 1509 return ndlp->nlp_state;
dea3101e
JB
1510}
1511
1512/* This routine is envoked when we rcv a PRLO request from a nport
1513 * we are logged into. We should send back a PRLO rsp setting the
1514 * appropriate bits.
1515 * NEXT STATE = PRLI_ISSUE
1516 */
1517static uint32_t
2e0fef85
JS
1518lpfc_rcv_prlo_prli_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1519 void *arg, uint32_t evt)
dea3101e 1520{
2e0fef85 1521 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea3101e 1522
51ef4c26 1523 lpfc_els_rsp_acc(vport, ELS_CMD_PRLO, cmdiocb, ndlp, NULL);
c9f8735b 1524 return ndlp->nlp_state;
dea3101e
JB
1525}
1526
1527static uint32_t
2e0fef85
JS
1528lpfc_cmpl_prli_prli_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1529 void *arg, uint32_t evt)
dea3101e 1530{
92d7f7b0 1531 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea3101e 1532 struct lpfc_iocbq *cmdiocb, *rspiocb;
2e0fef85 1533 struct lpfc_hba *phba = vport->phba;
dea3101e
JB
1534 IOCB_t *irsp;
1535 PRLI *npr;
1536
1537 cmdiocb = (struct lpfc_iocbq *) arg;
1538 rspiocb = cmdiocb->context_un.rsp_iocb;
1539 npr = (PRLI *)lpfc_check_elscmpl_iocb(phba, cmdiocb, rspiocb);
1540
1541 irsp = &rspiocb->iocb;
1542 if (irsp->ulpStatus) {
858c9f6c 1543 if ((vport->port_type == LPFC_NPIV_PORT) &&
3de2a653 1544 vport->cfg_restrict_login) {
858c9f6c
JS
1545 goto out;
1546 }
5024ab17 1547 ndlp->nlp_prev_state = NLP_STE_PRLI_ISSUE;
2e0fef85 1548 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
c9f8735b 1549 return ndlp->nlp_state;
dea3101e
JB
1550 }
1551
1552 /* Check out PRLI rsp */
1553 ndlp->nlp_type &= ~(NLP_FCP_TARGET | NLP_FCP_INITIATOR);
1554 ndlp->nlp_fcp_info &= ~NLP_FCP_2_DEVICE;
1555 if ((npr->acceptRspCode == PRLI_REQ_EXECUTED) &&
1556 (npr->prliType == PRLI_FCP_TYPE)) {
1557 if (npr->initiatorFunc)
1558 ndlp->nlp_type |= NLP_FCP_INITIATOR;
1559 if (npr->targetFunc)
1560 ndlp->nlp_type |= NLP_FCP_TARGET;
1561 if (npr->Retry)
1562 ndlp->nlp_fcp_info |= NLP_FCP_2_DEVICE;
1563 }
92d7f7b0
JS
1564 if (!(ndlp->nlp_type & NLP_FCP_TARGET) &&
1565 (vport->port_type == LPFC_NPIV_PORT) &&
3de2a653 1566 vport->cfg_restrict_login) {
858c9f6c 1567out:
92d7f7b0
JS
1568 spin_lock_irq(shost->host_lock);
1569 ndlp->nlp_flag |= NLP_TARGET_REMOVE;
1570 spin_unlock_irq(shost->host_lock);
1571 lpfc_issue_els_logo(vport, ndlp, 0);
1572
1573 ndlp->nlp_prev_state = NLP_STE_PRLI_ISSUE;
87af33fe 1574 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
92d7f7b0
JS
1575 return ndlp->nlp_state;
1576 }
dea3101e 1577
5024ab17 1578 ndlp->nlp_prev_state = NLP_STE_PRLI_ISSUE;
92d7f7b0
JS
1579 if (ndlp->nlp_type & NLP_FCP_TARGET)
1580 lpfc_nlp_set_state(vport, ndlp, NLP_STE_MAPPED_NODE);
1581 else
1582 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
c9f8735b 1583 return ndlp->nlp_state;
dea3101e
JB
1584}
1585
1586/*! lpfc_device_rm_prli_issue
92d7f7b0
JS
1587 *
1588 * \pre
1589 * \post
1590 * \param phba
1591 * \param ndlp
1592 * \param arg
1593 * \param evt
1594 * \return uint32_t
1595 *
1596 * \b Description:
1597 * This routine is envoked when we a request to remove a nport we are in the
1598 * process of PRLIing. We should software abort outstanding prli, unreg
1599 * login, send a logout. We will change node state to UNUSED_NODE, put it
1600 * on plogi list so it can be freed when LOGO completes.
1601 *
1602 */
1603
dea3101e 1604static uint32_t
2e0fef85
JS
1605lpfc_device_rm_prli_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1606 void *arg, uint32_t evt)
dea3101e 1607{
2e0fef85
JS
1608 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1609
1610 if (ndlp->nlp_flag & NLP_NPR_2B_DISC) {
1611 spin_lock_irq(shost->host_lock);
a0f9b48d 1612 ndlp->nlp_flag |= NLP_NODEV_REMOVE;
2e0fef85 1613 spin_unlock_irq(shost->host_lock);
a0f9b48d 1614 return ndlp->nlp_state;
2e0fef85 1615 } else {
a0f9b48d 1616 /* software abort outstanding PLOGI */
2e0fef85 1617 lpfc_els_abort(vport->phba, ndlp);
dea3101e 1618
2e0fef85 1619 lpfc_drop_node(vport, ndlp);
a0f9b48d
JS
1620 return NLP_STE_FREED_NODE;
1621 }
dea3101e
JB
1622}
1623
1624
1625/*! lpfc_device_recov_prli_issue
92d7f7b0
JS
1626 *
1627 * \pre
1628 * \post
1629 * \param phba
1630 * \param ndlp
1631 * \param arg
1632 * \param evt
1633 * \return uint32_t
1634 *
1635 * \b Description:
1636 * The routine is envoked when the state of a device is unknown, like
1637 * during a link down. We should remove the nodelist entry from the
1638 * unmapped list, issue a UNREG_LOGIN, do a software abort of the
1639 * outstanding PRLI command, then free the node entry.
1640 */
dea3101e 1641static uint32_t
2e0fef85
JS
1642lpfc_device_recov_prli_issue(struct lpfc_vport *vport,
1643 struct lpfc_nodelist *ndlp,
1644 void *arg,
1645 uint32_t evt)
dea3101e 1646{
2e0fef85
JS
1647 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1648 struct lpfc_hba *phba = vport->phba;
1649
92d7f7b0
JS
1650 /* Don't do anything that will mess up processing of the
1651 * previous RSCN.
1652 */
1653 if (vport->fc_flag & FC_RSCN_DEFERRED)
1654 return ndlp->nlp_state;
1655
dea3101e 1656 /* software abort outstanding PRLI */
07951076 1657 lpfc_els_abort(phba, ndlp);
dea3101e 1658
5024ab17 1659 ndlp->nlp_prev_state = NLP_STE_PRLI_ISSUE;
2e0fef85
JS
1660 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
1661 spin_lock_irq(shost->host_lock);
a0f9b48d 1662 ndlp->nlp_flag &= ~(NLP_NODEV_REMOVE | NLP_NPR_2B_DISC);
2e0fef85 1663 spin_unlock_irq(shost->host_lock);
92d7f7b0 1664 lpfc_disc_set_adisc(vport, ndlp);
c9f8735b 1665 return ndlp->nlp_state;
dea3101e
JB
1666}
1667
1668static uint32_t
2e0fef85
JS
1669lpfc_rcv_plogi_unmap_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1670 void *arg, uint32_t evt)
dea3101e 1671{
2e0fef85 1672 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea3101e 1673
2e0fef85 1674 lpfc_rcv_plogi(vport, ndlp, cmdiocb);
c9f8735b 1675 return ndlp->nlp_state;
dea3101e
JB
1676}
1677
1678static uint32_t
2e0fef85
JS
1679lpfc_rcv_prli_unmap_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1680 void *arg, uint32_t evt)
dea3101e 1681{
2e0fef85 1682 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea3101e 1683
2e0fef85
JS
1684 lpfc_rcv_prli(vport, ndlp, cmdiocb);
1685 lpfc_els_rsp_prli_acc(vport, cmdiocb, ndlp);
c9f8735b 1686 return ndlp->nlp_state;
dea3101e
JB
1687}
1688
1689static uint32_t
2e0fef85
JS
1690lpfc_rcv_logo_unmap_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1691 void *arg, uint32_t evt)
dea3101e 1692{
2e0fef85 1693 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea3101e 1694
2e0fef85 1695 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_LOGO);
c9f8735b 1696 return ndlp->nlp_state;
dea3101e
JB
1697}
1698
1699static uint32_t
2e0fef85
JS
1700lpfc_rcv_padisc_unmap_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1701 void *arg, uint32_t evt)
dea3101e 1702{
2e0fef85 1703 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea3101e 1704
2e0fef85 1705 lpfc_rcv_padisc(vport, ndlp, cmdiocb);
c9f8735b 1706 return ndlp->nlp_state;
dea3101e
JB
1707}
1708
1709static uint32_t
2e0fef85
JS
1710lpfc_rcv_prlo_unmap_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1711 void *arg, uint32_t evt)
dea3101e 1712{
2e0fef85 1713 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea3101e 1714
51ef4c26 1715 lpfc_els_rsp_acc(vport, ELS_CMD_PRLO, cmdiocb, ndlp, NULL);
c9f8735b 1716 return ndlp->nlp_state;
dea3101e
JB
1717}
1718
1719static uint32_t
2e0fef85
JS
1720lpfc_device_recov_unmap_node(struct lpfc_vport *vport,
1721 struct lpfc_nodelist *ndlp,
1722 void *arg,
1723 uint32_t evt)
dea3101e 1724{
2e0fef85
JS
1725 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1726
5024ab17 1727 ndlp->nlp_prev_state = NLP_STE_UNMAPPED_NODE;
2e0fef85
JS
1728 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
1729 spin_lock_irq(shost->host_lock);
a0f9b48d 1730 ndlp->nlp_flag &= ~(NLP_NODEV_REMOVE | NLP_NPR_2B_DISC);
2e0fef85
JS
1731 spin_unlock_irq(shost->host_lock);
1732 lpfc_disc_set_adisc(vport, ndlp);
dea3101e 1733
c9f8735b 1734 return ndlp->nlp_state;
dea3101e
JB
1735}
1736
1737static uint32_t
2e0fef85
JS
1738lpfc_rcv_plogi_mapped_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1739 void *arg, uint32_t evt)
dea3101e 1740{
2e0fef85 1741 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea3101e 1742
2e0fef85 1743 lpfc_rcv_plogi(vport, ndlp, cmdiocb);
c9f8735b 1744 return ndlp->nlp_state;
dea3101e
JB
1745}
1746
1747static uint32_t
2e0fef85
JS
1748lpfc_rcv_prli_mapped_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1749 void *arg, uint32_t evt)
dea3101e 1750{
2e0fef85 1751 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea3101e 1752
2e0fef85 1753 lpfc_els_rsp_prli_acc(vport, cmdiocb, ndlp);
c9f8735b 1754 return ndlp->nlp_state;
dea3101e
JB
1755}
1756
1757static uint32_t
2e0fef85
JS
1758lpfc_rcv_logo_mapped_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1759 void *arg, uint32_t evt)
dea3101e 1760{
2e0fef85 1761 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea3101e 1762
2e0fef85 1763 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_LOGO);
c9f8735b 1764 return ndlp->nlp_state;
dea3101e
JB
1765}
1766
1767static uint32_t
2e0fef85
JS
1768lpfc_rcv_padisc_mapped_node(struct lpfc_vport *vport,
1769 struct lpfc_nodelist *ndlp,
1770 void *arg, uint32_t evt)
dea3101e 1771{
2e0fef85 1772 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea3101e 1773
2e0fef85 1774 lpfc_rcv_padisc(vport, ndlp, cmdiocb);
c9f8735b 1775 return ndlp->nlp_state;
dea3101e
JB
1776}
1777
1778static uint32_t
2e0fef85
JS
1779lpfc_rcv_prlo_mapped_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1780 void *arg, uint32_t evt)
dea3101e 1781{
2e0fef85
JS
1782 struct lpfc_hba *phba = vport->phba;
1783 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea3101e
JB
1784
1785 /* flush the target */
51ef4c26
JS
1786 lpfc_sli_abort_iocb(vport, &phba->sli.ring[phba->sli.fcp_ring],
1787 ndlp->nlp_sid, 0, LPFC_CTX_TGT);
dea3101e
JB
1788
1789 /* Treat like rcv logo */
2e0fef85 1790 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_PRLO);
c9f8735b 1791 return ndlp->nlp_state;
dea3101e
JB
1792}
1793
1794static uint32_t
2e0fef85
JS
1795lpfc_device_recov_mapped_node(struct lpfc_vport *vport,
1796 struct lpfc_nodelist *ndlp,
1797 void *arg,
1798 uint32_t evt)
dea3101e 1799{
2e0fef85
JS
1800 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1801
5024ab17 1802 ndlp->nlp_prev_state = NLP_STE_MAPPED_NODE;
2e0fef85
JS
1803 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
1804 spin_lock_irq(shost->host_lock);
a0f9b48d 1805 ndlp->nlp_flag &= ~(NLP_NODEV_REMOVE | NLP_NPR_2B_DISC);
2e0fef85
JS
1806 spin_unlock_irq(shost->host_lock);
1807 lpfc_disc_set_adisc(vport, ndlp);
c9f8735b 1808 return ndlp->nlp_state;
dea3101e
JB
1809}
1810
1811static uint32_t
2e0fef85
JS
1812lpfc_rcv_plogi_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1813 void *arg, uint32_t evt)
dea3101e 1814{
2e0fef85
JS
1815 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1816 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea3101e
JB
1817
1818 /* Ignore PLOGI if we have an outstanding LOGO */
0d2b6b83 1819 if (ndlp->nlp_flag & (NLP_LOGO_SND | NLP_LOGO_ACC))
c9f8735b 1820 return ndlp->nlp_state;
2e0fef85 1821 if (lpfc_rcv_plogi(vport, ndlp, cmdiocb)) {
0d2b6b83 1822 lpfc_cancel_retry_delay_tmo(vport, ndlp);
2e0fef85 1823 spin_lock_irq(shost->host_lock);
0d2b6b83 1824 ndlp->nlp_flag &= ~(NLP_NPR_ADISC | NLP_NPR_2B_DISC);
2e0fef85 1825 spin_unlock_irq(shost->host_lock);
0d2b6b83
JS
1826 } else if (!(ndlp->nlp_flag & NLP_NPR_2B_DISC)) {
1827 /* send PLOGI immediately, move to PLOGI issue state */
1828 if (!(ndlp->nlp_flag & NLP_DELAY_TMO)) {
1829 ndlp->nlp_prev_state = NLP_STE_NPR_NODE;
1830 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
1831 lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0);
1832 }
dea3101e 1833 }
c9f8735b 1834 return ndlp->nlp_state;
dea3101e
JB
1835}
1836
1837static uint32_t
2e0fef85
JS
1838lpfc_rcv_prli_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1839 void *arg, uint32_t evt)
dea3101e 1840{
2e0fef85
JS
1841 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1842 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
1843 struct ls_rjt stat;
dea3101e
JB
1844
1845 memset(&stat, 0, sizeof (struct ls_rjt));
1846 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
1847 stat.un.b.lsRjtRsnCodeExp = LSEXP_NOTHING_MORE;
858c9f6c 1848 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
dea3101e
JB
1849
1850 if (!(ndlp->nlp_flag & NLP_DELAY_TMO)) {
1851 if (ndlp->nlp_flag & NLP_NPR_ADISC) {
2e0fef85 1852 spin_lock_irq(shost->host_lock);
c9f8735b 1853 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
5024ab17 1854 ndlp->nlp_prev_state = NLP_STE_NPR_NODE;
2e0fef85
JS
1855 spin_unlock_irq(shost->host_lock);
1856 lpfc_nlp_set_state(vport, ndlp, NLP_STE_ADISC_ISSUE);
1857 lpfc_issue_els_adisc(vport, ndlp, 0);
dea3101e 1858 } else {
5024ab17 1859 ndlp->nlp_prev_state = NLP_STE_NPR_NODE;
2e0fef85
JS
1860 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
1861 lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0);
dea3101e
JB
1862 }
1863 }
c9f8735b 1864 return ndlp->nlp_state;
dea3101e
JB
1865}
1866
1867static uint32_t
2e0fef85
JS
1868lpfc_rcv_logo_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1869 void *arg, uint32_t evt)
dea3101e 1870{
2e0fef85 1871 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea3101e 1872
2e0fef85 1873 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_LOGO);
c9f8735b 1874 return ndlp->nlp_state;
dea3101e
JB
1875}
1876
1877static uint32_t
2e0fef85
JS
1878lpfc_rcv_padisc_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1879 void *arg, uint32_t evt)
dea3101e 1880{
2e0fef85 1881 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea3101e 1882
2e0fef85 1883 lpfc_rcv_padisc(vport, ndlp, cmdiocb);
33ccf8d1
JS
1884 /*
1885 * Do not start discovery if discovery is about to start
1886 * or discovery in progress for this node. Starting discovery
1887 * here will affect the counting of discovery threads.
1888 */
2fb9bd8b 1889 if (!(ndlp->nlp_flag & NLP_DELAY_TMO) &&
92d7f7b0 1890 !(ndlp->nlp_flag & NLP_NPR_2B_DISC)) {
dea3101e 1891 if (ndlp->nlp_flag & NLP_NPR_ADISC) {
92d7f7b0 1892 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
5024ab17 1893 ndlp->nlp_prev_state = NLP_STE_NPR_NODE;
2e0fef85
JS
1894 lpfc_nlp_set_state(vport, ndlp, NLP_STE_ADISC_ISSUE);
1895 lpfc_issue_els_adisc(vport, ndlp, 0);
dea3101e 1896 } else {
5024ab17 1897 ndlp->nlp_prev_state = NLP_STE_NPR_NODE;
2e0fef85
JS
1898 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
1899 lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0);
dea3101e
JB
1900 }
1901 }
c9f8735b 1902 return ndlp->nlp_state;
dea3101e
JB
1903}
1904
1905static uint32_t
2e0fef85
JS
1906lpfc_rcv_prlo_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1907 void *arg, uint32_t evt)
dea3101e 1908{
2e0fef85
JS
1909 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1910 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea3101e 1911
2e0fef85 1912 spin_lock_irq(shost->host_lock);
c9f8735b 1913 ndlp->nlp_flag |= NLP_LOGO_ACC;
2e0fef85 1914 spin_unlock_irq(shost->host_lock);
c9f8735b 1915
51ef4c26 1916 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
dea3101e 1917
2e0fef85 1918 if ((ndlp->nlp_flag & NLP_DELAY_TMO) == 0) {
c9f8735b 1919 mod_timer(&ndlp->nlp_delayfunc, jiffies + HZ * 1);
2e0fef85 1920 spin_lock_irq(shost->host_lock);
c9f8735b
JW
1921 ndlp->nlp_flag |= NLP_DELAY_TMO;
1922 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
2e0fef85 1923 spin_unlock_irq(shost->host_lock);
5024ab17 1924 ndlp->nlp_last_elscmd = ELS_CMD_PLOGI;
c9f8735b 1925 } else {
2e0fef85 1926 spin_lock_irq(shost->host_lock);
c9f8735b 1927 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
2e0fef85 1928 spin_unlock_irq(shost->host_lock);
dea3101e 1929 }
c9f8735b
JW
1930 return ndlp->nlp_state;
1931}
dea3101e 1932
c9f8735b 1933static uint32_t
2e0fef85
JS
1934lpfc_cmpl_plogi_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1935 void *arg, uint32_t evt)
c9f8735b
JW
1936{
1937 struct lpfc_iocbq *cmdiocb, *rspiocb;
a0f9b48d 1938 IOCB_t *irsp;
c9f8735b
JW
1939
1940 cmdiocb = (struct lpfc_iocbq *) arg;
1941 rspiocb = cmdiocb->context_un.rsp_iocb;
a0f9b48d
JS
1942
1943 irsp = &rspiocb->iocb;
1944 if (irsp->ulpStatus) {
a8adb832 1945 ndlp->nlp_flag |= NLP_DEFER_RM;
a0f9b48d
JS
1946 return NLP_STE_FREED_NODE;
1947 }
c9f8735b
JW
1948 return ndlp->nlp_state;
1949}
1950
1951static uint32_t
2e0fef85
JS
1952lpfc_cmpl_prli_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1953 void *arg, uint32_t evt)
c9f8735b
JW
1954{
1955 struct lpfc_iocbq *cmdiocb, *rspiocb;
a0f9b48d 1956 IOCB_t *irsp;
c9f8735b
JW
1957
1958 cmdiocb = (struct lpfc_iocbq *) arg;
1959 rspiocb = cmdiocb->context_un.rsp_iocb;
a0f9b48d
JS
1960
1961 irsp = &rspiocb->iocb;
1962 if (irsp->ulpStatus && (ndlp->nlp_flag & NLP_NODEV_REMOVE)) {
2e0fef85 1963 lpfc_drop_node(vport, ndlp);
a0f9b48d
JS
1964 return NLP_STE_FREED_NODE;
1965 }
c9f8735b 1966 return ndlp->nlp_state;
dea3101e
JB
1967}
1968
1969static uint32_t
2e0fef85
JS
1970lpfc_cmpl_logo_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1971 void *arg, uint32_t evt)
dea3101e 1972{
d7c255b2
JS
1973 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1974 if (ndlp->nlp_DID == Fabric_DID) {
1975 spin_lock_irq(shost->host_lock);
1976 vport->fc_flag &= ~(FC_FABRIC | FC_PUBLIC_LOOP);
1977 spin_unlock_irq(shost->host_lock);
1978 }
2e0fef85 1979 lpfc_unreg_rpi(vport, ndlp);
c9f8735b
JW
1980 return ndlp->nlp_state;
1981}
1982
1983static uint32_t
2e0fef85
JS
1984lpfc_cmpl_adisc_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1985 void *arg, uint32_t evt)
c9f8735b
JW
1986{
1987 struct lpfc_iocbq *cmdiocb, *rspiocb;
a0f9b48d 1988 IOCB_t *irsp;
c9f8735b
JW
1989
1990 cmdiocb = (struct lpfc_iocbq *) arg;
1991 rspiocb = cmdiocb->context_un.rsp_iocb;
a0f9b48d
JS
1992
1993 irsp = &rspiocb->iocb;
1994 if (irsp->ulpStatus && (ndlp->nlp_flag & NLP_NODEV_REMOVE)) {
2e0fef85 1995 lpfc_drop_node(vport, ndlp);
a0f9b48d
JS
1996 return NLP_STE_FREED_NODE;
1997 }
c9f8735b 1998 return ndlp->nlp_state;
dea3101e
JB
1999}
2000
2001static uint32_t
2e0fef85
JS
2002lpfc_cmpl_reglogin_npr_node(struct lpfc_vport *vport,
2003 struct lpfc_nodelist *ndlp,
2004 void *arg, uint32_t evt)
dea3101e 2005{
2e0fef85 2006 LPFC_MBOXQ_t *pmb = (LPFC_MBOXQ_t *) arg;
04c68496 2007 MAILBOX_t *mb = &pmb->u.mb;
dea3101e 2008
04c68496 2009 if (!mb->mbxStatus) {
c9f8735b 2010 ndlp->nlp_rpi = mb->un.varWords[0];
04c68496
JS
2011 ndlp->nlp_flag |= NLP_RPI_VALID;
2012 } else {
a0f9b48d 2013 if (ndlp->nlp_flag & NLP_NODEV_REMOVE) {
2e0fef85 2014 lpfc_drop_node(vport, ndlp);
a0f9b48d
JS
2015 return NLP_STE_FREED_NODE;
2016 }
2017 }
c9f8735b 2018 return ndlp->nlp_state;
dea3101e
JB
2019}
2020
2021static uint32_t
2e0fef85
JS
2022lpfc_device_rm_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2023 void *arg, uint32_t evt)
dea3101e 2024{
2e0fef85
JS
2025 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2026
a0f9b48d 2027 if (ndlp->nlp_flag & NLP_NPR_2B_DISC) {
2e0fef85 2028 spin_lock_irq(shost->host_lock);
a0f9b48d 2029 ndlp->nlp_flag |= NLP_NODEV_REMOVE;
2e0fef85 2030 spin_unlock_irq(shost->host_lock);
a0f9b48d
JS
2031 return ndlp->nlp_state;
2032 }
2e0fef85 2033 lpfc_drop_node(vport, ndlp);
c9f8735b 2034 return NLP_STE_FREED_NODE;
dea3101e
JB
2035}
2036
2037static uint32_t
2e0fef85
JS
2038lpfc_device_recov_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2039 void *arg, uint32_t evt)
dea3101e 2040{
2e0fef85
JS
2041 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2042
92d7f7b0
JS
2043 /* Don't do anything that will mess up processing of the
2044 * previous RSCN.
2045 */
2046 if (vport->fc_flag & FC_RSCN_DEFERRED)
2047 return ndlp->nlp_state;
2048
eaf15d5b 2049 lpfc_cancel_retry_delay_tmo(vport, ndlp);
2e0fef85 2050 spin_lock_irq(shost->host_lock);
a0f9b48d 2051 ndlp->nlp_flag &= ~(NLP_NODEV_REMOVE | NLP_NPR_2B_DISC);
2e0fef85 2052 spin_unlock_irq(shost->host_lock);
c9f8735b 2053 return ndlp->nlp_state;
dea3101e
JB
2054}
2055
2056
2057/* This next section defines the NPort Discovery State Machine */
2058
2059/* There are 4 different double linked lists nodelist entries can reside on.
2060 * The plogi list and adisc list are used when Link Up discovery or RSCN
2061 * processing is needed. Each list holds the nodes that we will send PLOGI
2062 * or ADISC on. These lists will keep track of what nodes will be effected
2063 * by an RSCN, or a Link Up (Typically, all nodes are effected on Link Up).
2064 * The unmapped_list will contain all nodes that we have successfully logged
2065 * into at the Fibre Channel level. The mapped_list will contain all nodes
2066 * that are mapped FCP targets.
2067 */
2068/*
2069 * The bind list is a list of undiscovered (potentially non-existent) nodes
2070 * that we have saved binding information on. This information is used when
2071 * nodes transition from the unmapped to the mapped list.
2072 */
2073/* For UNUSED_NODE state, the node has just been allocated .
2074 * For PLOGI_ISSUE and REG_LOGIN_ISSUE, the node is on
2075 * the PLOGI list. For REG_LOGIN_COMPL, the node is taken off the PLOGI list
2076 * and put on the unmapped list. For ADISC processing, the node is taken off
2077 * the ADISC list and placed on either the mapped or unmapped list (depending
2078 * on its previous state). Once on the unmapped list, a PRLI is issued and the
2079 * state changed to PRLI_ISSUE. When the PRLI completion occurs, the state is
2080 * changed to UNMAPPED_NODE. If the completion indicates a mapped
2081 * node, the node is taken off the unmapped list. The binding list is checked
2082 * for a valid binding, or a binding is automatically assigned. If binding
2083 * assignment is unsuccessful, the node is left on the unmapped list. If
2084 * binding assignment is successful, the associated binding list entry (if
2085 * any) is removed, and the node is placed on the mapped list.
2086 */
2087/*
2088 * For a Link Down, all nodes on the ADISC, PLOGI, unmapped or mapped
c01f3208 2089 * lists will receive a DEVICE_RECOVERY event. If the linkdown or devloss timers
dea3101e
JB
2090 * expire, all effected nodes will receive a DEVICE_RM event.
2091 */
2092/*
2093 * For a Link Up or RSCN, all nodes will move from the mapped / unmapped lists
2094 * to either the ADISC or PLOGI list. After a Nameserver query or ALPA loopmap
2095 * check, additional nodes may be added or removed (via DEVICE_RM) to / from
2096 * the PLOGI or ADISC lists. Once the PLOGI and ADISC lists are populated,
2097 * we will first process the ADISC list. 32 entries are processed initially and
2098 * ADISC is initited for each one. Completions / Events for each node are
2099 * funnelled thru the state machine. As each node finishes ADISC processing, it
2100 * starts ADISC for any nodes waiting for ADISC processing. If no nodes are
2101 * waiting, and the ADISC list count is identically 0, then we are done. For
2102 * Link Up discovery, since all nodes on the PLOGI list are UNREG_LOGIN'ed, we
2103 * can issue a CLEAR_LA and reenable Link Events. Next we will process the PLOGI
2104 * list. 32 entries are processed initially and PLOGI is initited for each one.
2105 * Completions / Events for each node are funnelled thru the state machine. As
2106 * each node finishes PLOGI processing, it starts PLOGI for any nodes waiting
2107 * for PLOGI processing. If no nodes are waiting, and the PLOGI list count is
2108 * indentically 0, then we are done. We have now completed discovery / RSCN
2109 * handling. Upon completion, ALL nodes should be on either the mapped or
2110 * unmapped lists.
2111 */
2112
2113static uint32_t (*lpfc_disc_action[NLP_STE_MAX_STATE * NLP_EVT_MAX_EVENT])
2e0fef85 2114 (struct lpfc_vport *, struct lpfc_nodelist *, void *, uint32_t) = {
dea3101e
JB
2115 /* Action routine Event Current State */
2116 lpfc_rcv_plogi_unused_node, /* RCV_PLOGI UNUSED_NODE */
2117 lpfc_rcv_els_unused_node, /* RCV_PRLI */
2118 lpfc_rcv_logo_unused_node, /* RCV_LOGO */
2119 lpfc_rcv_els_unused_node, /* RCV_ADISC */
2120 lpfc_rcv_els_unused_node, /* RCV_PDISC */
2121 lpfc_rcv_els_unused_node, /* RCV_PRLO */
2122 lpfc_disc_illegal, /* CMPL_PLOGI */
2123 lpfc_disc_illegal, /* CMPL_PRLI */
2124 lpfc_cmpl_logo_unused_node, /* CMPL_LOGO */
2125 lpfc_disc_illegal, /* CMPL_ADISC */
2126 lpfc_disc_illegal, /* CMPL_REG_LOGIN */
2127 lpfc_device_rm_unused_node, /* DEVICE_RM */
2128 lpfc_disc_illegal, /* DEVICE_RECOVERY */
2129
2130 lpfc_rcv_plogi_plogi_issue, /* RCV_PLOGI PLOGI_ISSUE */
92d7f7b0 2131 lpfc_rcv_prli_plogi_issue, /* RCV_PRLI */
c9f8735b 2132 lpfc_rcv_logo_plogi_issue, /* RCV_LOGO */
dea3101e
JB
2133 lpfc_rcv_els_plogi_issue, /* RCV_ADISC */
2134 lpfc_rcv_els_plogi_issue, /* RCV_PDISC */
2135 lpfc_rcv_els_plogi_issue, /* RCV_PRLO */
2136 lpfc_cmpl_plogi_plogi_issue, /* CMPL_PLOGI */
2137 lpfc_disc_illegal, /* CMPL_PRLI */
0ff10d46 2138 lpfc_cmpl_logo_plogi_issue, /* CMPL_LOGO */
dea3101e 2139 lpfc_disc_illegal, /* CMPL_ADISC */
0ff10d46 2140 lpfc_cmpl_reglogin_plogi_issue,/* CMPL_REG_LOGIN */
dea3101e
JB
2141 lpfc_device_rm_plogi_issue, /* DEVICE_RM */
2142 lpfc_device_recov_plogi_issue, /* DEVICE_RECOVERY */
2143
2144 lpfc_rcv_plogi_adisc_issue, /* RCV_PLOGI ADISC_ISSUE */
2145 lpfc_rcv_prli_adisc_issue, /* RCV_PRLI */
2146 lpfc_rcv_logo_adisc_issue, /* RCV_LOGO */
2147 lpfc_rcv_padisc_adisc_issue, /* RCV_ADISC */
2148 lpfc_rcv_padisc_adisc_issue, /* RCV_PDISC */
2149 lpfc_rcv_prlo_adisc_issue, /* RCV_PRLO */
2150 lpfc_disc_illegal, /* CMPL_PLOGI */
2151 lpfc_disc_illegal, /* CMPL_PRLI */
2152 lpfc_disc_illegal, /* CMPL_LOGO */
2153 lpfc_cmpl_adisc_adisc_issue, /* CMPL_ADISC */
2154 lpfc_disc_illegal, /* CMPL_REG_LOGIN */
2155 lpfc_device_rm_adisc_issue, /* DEVICE_RM */
2156 lpfc_device_recov_adisc_issue, /* DEVICE_RECOVERY */
2157
2158 lpfc_rcv_plogi_reglogin_issue, /* RCV_PLOGI REG_LOGIN_ISSUE */
2159 lpfc_rcv_prli_reglogin_issue, /* RCV_PLOGI */
2160 lpfc_rcv_logo_reglogin_issue, /* RCV_LOGO */
2161 lpfc_rcv_padisc_reglogin_issue, /* RCV_ADISC */
2162 lpfc_rcv_padisc_reglogin_issue, /* RCV_PDISC */
2163 lpfc_rcv_prlo_reglogin_issue, /* RCV_PRLO */
87af33fe 2164 lpfc_cmpl_plogi_illegal, /* CMPL_PLOGI */
dea3101e
JB
2165 lpfc_disc_illegal, /* CMPL_PRLI */
2166 lpfc_disc_illegal, /* CMPL_LOGO */
2167 lpfc_disc_illegal, /* CMPL_ADISC */
2168 lpfc_cmpl_reglogin_reglogin_issue,/* CMPL_REG_LOGIN */
2169 lpfc_device_rm_reglogin_issue, /* DEVICE_RM */
2170 lpfc_device_recov_reglogin_issue,/* DEVICE_RECOVERY */
2171
2172 lpfc_rcv_plogi_prli_issue, /* RCV_PLOGI PRLI_ISSUE */
2173 lpfc_rcv_prli_prli_issue, /* RCV_PRLI */
2174 lpfc_rcv_logo_prli_issue, /* RCV_LOGO */
2175 lpfc_rcv_padisc_prli_issue, /* RCV_ADISC */
2176 lpfc_rcv_padisc_prli_issue, /* RCV_PDISC */
2177 lpfc_rcv_prlo_prli_issue, /* RCV_PRLO */
87af33fe 2178 lpfc_cmpl_plogi_illegal, /* CMPL_PLOGI */
dea3101e
JB
2179 lpfc_cmpl_prli_prli_issue, /* CMPL_PRLI */
2180 lpfc_disc_illegal, /* CMPL_LOGO */
2181 lpfc_disc_illegal, /* CMPL_ADISC */
2182 lpfc_disc_illegal, /* CMPL_REG_LOGIN */
2183 lpfc_device_rm_prli_issue, /* DEVICE_RM */
2184 lpfc_device_recov_prli_issue, /* DEVICE_RECOVERY */
2185
2186 lpfc_rcv_plogi_unmap_node, /* RCV_PLOGI UNMAPPED_NODE */
2187 lpfc_rcv_prli_unmap_node, /* RCV_PRLI */
2188 lpfc_rcv_logo_unmap_node, /* RCV_LOGO */
2189 lpfc_rcv_padisc_unmap_node, /* RCV_ADISC */
2190 lpfc_rcv_padisc_unmap_node, /* RCV_PDISC */
2191 lpfc_rcv_prlo_unmap_node, /* RCV_PRLO */
2192 lpfc_disc_illegal, /* CMPL_PLOGI */
2193 lpfc_disc_illegal, /* CMPL_PRLI */
2194 lpfc_disc_illegal, /* CMPL_LOGO */
2195 lpfc_disc_illegal, /* CMPL_ADISC */
2196 lpfc_disc_illegal, /* CMPL_REG_LOGIN */
2197 lpfc_disc_illegal, /* DEVICE_RM */
2198 lpfc_device_recov_unmap_node, /* DEVICE_RECOVERY */
2199
2200 lpfc_rcv_plogi_mapped_node, /* RCV_PLOGI MAPPED_NODE */
2201 lpfc_rcv_prli_mapped_node, /* RCV_PRLI */
2202 lpfc_rcv_logo_mapped_node, /* RCV_LOGO */
2203 lpfc_rcv_padisc_mapped_node, /* RCV_ADISC */
2204 lpfc_rcv_padisc_mapped_node, /* RCV_PDISC */
2205 lpfc_rcv_prlo_mapped_node, /* RCV_PRLO */
2206 lpfc_disc_illegal, /* CMPL_PLOGI */
2207 lpfc_disc_illegal, /* CMPL_PRLI */
2208 lpfc_disc_illegal, /* CMPL_LOGO */
2209 lpfc_disc_illegal, /* CMPL_ADISC */
2210 lpfc_disc_illegal, /* CMPL_REG_LOGIN */
2211 lpfc_disc_illegal, /* DEVICE_RM */
2212 lpfc_device_recov_mapped_node, /* DEVICE_RECOVERY */
2213
2214 lpfc_rcv_plogi_npr_node, /* RCV_PLOGI NPR_NODE */
2215 lpfc_rcv_prli_npr_node, /* RCV_PRLI */
2216 lpfc_rcv_logo_npr_node, /* RCV_LOGO */
2217 lpfc_rcv_padisc_npr_node, /* RCV_ADISC */
2218 lpfc_rcv_padisc_npr_node, /* RCV_PDISC */
2219 lpfc_rcv_prlo_npr_node, /* RCV_PRLO */
c9f8735b
JW
2220 lpfc_cmpl_plogi_npr_node, /* CMPL_PLOGI */
2221 lpfc_cmpl_prli_npr_node, /* CMPL_PRLI */
dea3101e 2222 lpfc_cmpl_logo_npr_node, /* CMPL_LOGO */
c9f8735b 2223 lpfc_cmpl_adisc_npr_node, /* CMPL_ADISC */
dea3101e
JB
2224 lpfc_cmpl_reglogin_npr_node, /* CMPL_REG_LOGIN */
2225 lpfc_device_rm_npr_node, /* DEVICE_RM */
2226 lpfc_device_recov_npr_node, /* DEVICE_RECOVERY */
2227};
2228
2229int
2e0fef85
JS
2230lpfc_disc_state_machine(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2231 void *arg, uint32_t evt)
dea3101e
JB
2232{
2233 uint32_t cur_state, rc;
2e0fef85 2234 uint32_t(*func) (struct lpfc_vport *, struct lpfc_nodelist *, void *,
dea3101e 2235 uint32_t);
e47c9093
JS
2236 uint32_t got_ndlp = 0;
2237
2238 if (lpfc_nlp_get(ndlp))
2239 got_ndlp = 1;
dea3101e 2240
dea3101e
JB
2241 cur_state = ndlp->nlp_state;
2242
2243 /* DSM in event <evt> on NPort <nlp_DID> in state <cur_state> */
e8b62011
JS
2244 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
2245 "0211 DSM in event x%x on NPort x%x in "
2246 "state %d Data: x%x\n",
2247 evt, ndlp->nlp_DID, cur_state, ndlp->nlp_flag);
dea3101e 2248
858c9f6c
JS
2249 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_DSM,
2250 "DSM in: evt:%d ste:%d did:x%x",
2251 evt, cur_state, ndlp->nlp_DID);
2252
dea3101e 2253 func = lpfc_disc_action[(cur_state * NLP_EVT_MAX_EVENT) + evt];
2e0fef85 2254 rc = (func) (vport, ndlp, arg, evt);
dea3101e
JB
2255
2256 /* DSM out state <rc> on NPort <nlp_DID> */
e47c9093
JS
2257 if (got_ndlp) {
2258 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
e8b62011
JS
2259 "0212 DSM out state %d on NPort x%x Data: x%x\n",
2260 rc, ndlp->nlp_DID, ndlp->nlp_flag);
dea3101e 2261
e47c9093
JS
2262 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_DSM,
2263 "DSM out: ste:%d did:x%x flg:x%x",
2264 rc, ndlp->nlp_DID, ndlp->nlp_flag);
2265 /* Decrement the ndlp reference count held for this function */
2266 lpfc_nlp_put(ndlp);
2267 } else {
2268 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
d7c255b2 2269 "0213 DSM out state %d on NPort free\n", rc);
858c9f6c 2270
e47c9093
JS
2271 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_DSM,
2272 "DSM out: ste:%d did:x%x flg:x%x",
2273 rc, 0, 0);
2274 }
dea3101e 2275
c9f8735b 2276 return rc;
dea3101e 2277}