blob: 4cb9882af15723aca8cbb34d611a722400c40935 [file] [log] [blame]
James Smart92d7f7b2007-06-17 19:56:38 -05001 /*******************************************************************
dea31012005-04-17 16:05:31 -05002 * This file is part of the Emulex Linux Device Driver for *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -04003 * Fibre Channel Host Bus Adapters. *
James Smartf25e8e72015-04-07 15:07:28 -04004 * Copyright (C) 2004-2015 Emulex. All rights reserved. *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -04005 * EMULEX and SLI are trademarks of Emulex. *
dea31012005-04-17 16:05:31 -05006 * www.emulex.com *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -04007 * Portions Copyright (C) 2004-2005 Christoph Hellwig *
dea31012005-04-17 16:05:31 -05008 * *
9 * This program is free software; you can redistribute it and/or *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -040010 * 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. *
dea31012005-04-17 16:05:31 -050020 *******************************************************************/
21
dea31012005-04-17 16:05:31 -050022#include <linux/blkdev.h>
23#include <linux/pci.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/slab.h>
dea31012005-04-17 16:05:31 -050025#include <linux/interrupt.h>
26
James.Smart@Emulex.Com91886522005-08-10 15:03:09 -040027#include <scsi/scsi.h>
dea31012005-04-17 16:05:31 -050028#include <scsi/scsi_device.h>
29#include <scsi/scsi_host.h>
30#include <scsi/scsi_transport_fc.h>
31
James Smartda0436e2009-05-22 14:51:39 -040032#include "lpfc_hw4.h"
dea31012005-04-17 16:05:31 -050033#include "lpfc_hw.h"
34#include "lpfc_sli.h"
James Smartda0436e2009-05-22 14:51:39 -040035#include "lpfc_sli4.h"
James Smartea2151b2008-09-07 11:52:10 -040036#include "lpfc_nl.h"
dea31012005-04-17 16:05:31 -050037#include "lpfc_disc.h"
38#include "lpfc_scsi.h"
39#include "lpfc.h"
40#include "lpfc_logmsg.h"
41#include "lpfc_crtn.h"
James Smart92d7f7b2007-06-17 19:56:38 -050042#include "lpfc_vport.h"
James Smart858c9f62007-06-17 19:56:39 -050043#include "lpfc_debugfs.h"
dea31012005-04-17 16:05:31 -050044
45
46/* Called to verify a rcv'ed ADISC was intended for us. */
47static int
James Smart2e0fef82007-06-17 19:56:36 -050048lpfc_check_adisc(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
49 struct lpfc_name *nn, struct lpfc_name *pn)
dea31012005-04-17 16:05:31 -050050{
James Smart6b5151f2012-01-18 16:24:06 -050051 /* First, we MUST have a RPI registered */
52 if (!(ndlp->nlp_flag & NLP_RPI_REGISTERED))
53 return 0;
54
dea31012005-04-17 16:05:31 -050055 /* Compare the ADISC rsp WWNN / WWPN matches our internal node
56 * table entry for that node.
57 */
James Smart2e0fef82007-06-17 19:56:36 -050058 if (memcmp(nn, &ndlp->nlp_nodename, sizeof (struct lpfc_name)))
Jamie Wellnitzc9f87352006-02-28 19:25:23 -050059 return 0;
dea31012005-04-17 16:05:31 -050060
James Smart2e0fef82007-06-17 19:56:36 -050061 if (memcmp(pn, &ndlp->nlp_portname, sizeof (struct lpfc_name)))
Jamie Wellnitzc9f87352006-02-28 19:25:23 -050062 return 0;
dea31012005-04-17 16:05:31 -050063
64 /* we match, return success */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -050065 return 1;
dea31012005-04-17 16:05:31 -050066}
67
dea31012005-04-17 16:05:31 -050068int
James Smart2e0fef82007-06-17 19:56:36 -050069lpfc_check_sparm(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
James Smart341af102010-01-26 23:07:37 -050070 struct serv_parm *sp, uint32_t class, int flogi)
dea31012005-04-17 16:05:31 -050071{
James Smart2e0fef82007-06-17 19:56:36 -050072 volatile struct serv_parm *hsp = &vport->fc_sparam;
James.Smart@Emulex.Com2fb70f72005-11-28 11:41:24 -050073 uint16_t hsp_value, ssp_value = 0;
dea31012005-04-17 16:05:31 -050074
James.Smart@Emulex.Com2fb70f72005-11-28 11:41:24 -050075 /*
76 * The receive data field size and buffer-to-buffer receive data field
77 * size entries are 16 bits but are represented as two 8-bit fields in
78 * the driver data structure to account for rsvd bits and other control
79 * bits. Reconstruct and compare the fields as a 16-bit values before
80 * correcting the byte values.
81 */
dea31012005-04-17 16:05:31 -050082 if (sp->cls1.classValid) {
James Smart341af102010-01-26 23:07:37 -050083 if (!flogi) {
84 hsp_value = ((hsp->cls1.rcvDataSizeMsb << 8) |
85 hsp->cls1.rcvDataSizeLsb);
86 ssp_value = ((sp->cls1.rcvDataSizeMsb << 8) |
87 sp->cls1.rcvDataSizeLsb);
88 if (!ssp_value)
89 goto bad_service_param;
90 if (ssp_value > hsp_value) {
91 sp->cls1.rcvDataSizeLsb =
92 hsp->cls1.rcvDataSizeLsb;
93 sp->cls1.rcvDataSizeMsb =
94 hsp->cls1.rcvDataSizeMsb;
95 }
James.Smart@Emulex.Com2fb70f72005-11-28 11:41:24 -050096 }
James Smart341af102010-01-26 23:07:37 -050097 } else if (class == CLASS1)
James Smart92d7f7b2007-06-17 19:56:38 -050098 goto bad_service_param;
dea31012005-04-17 16:05:31 -050099 if (sp->cls2.classValid) {
James Smart341af102010-01-26 23:07:37 -0500100 if (!flogi) {
101 hsp_value = ((hsp->cls2.rcvDataSizeMsb << 8) |
102 hsp->cls2.rcvDataSizeLsb);
103 ssp_value = ((sp->cls2.rcvDataSizeMsb << 8) |
104 sp->cls2.rcvDataSizeLsb);
105 if (!ssp_value)
106 goto bad_service_param;
107 if (ssp_value > hsp_value) {
108 sp->cls2.rcvDataSizeLsb =
109 hsp->cls2.rcvDataSizeLsb;
110 sp->cls2.rcvDataSizeMsb =
111 hsp->cls2.rcvDataSizeMsb;
112 }
James.Smart@Emulex.Com2fb70f72005-11-28 11:41:24 -0500113 }
James Smart341af102010-01-26 23:07:37 -0500114 } else if (class == CLASS2)
James Smart92d7f7b2007-06-17 19:56:38 -0500115 goto bad_service_param;
dea31012005-04-17 16:05:31 -0500116 if (sp->cls3.classValid) {
James Smart341af102010-01-26 23:07:37 -0500117 if (!flogi) {
118 hsp_value = ((hsp->cls3.rcvDataSizeMsb << 8) |
119 hsp->cls3.rcvDataSizeLsb);
120 ssp_value = ((sp->cls3.rcvDataSizeMsb << 8) |
121 sp->cls3.rcvDataSizeLsb);
122 if (!ssp_value)
123 goto bad_service_param;
124 if (ssp_value > hsp_value) {
125 sp->cls3.rcvDataSizeLsb =
126 hsp->cls3.rcvDataSizeLsb;
127 sp->cls3.rcvDataSizeMsb =
128 hsp->cls3.rcvDataSizeMsb;
129 }
James.Smart@Emulex.Com2fb70f72005-11-28 11:41:24 -0500130 }
James Smart341af102010-01-26 23:07:37 -0500131 } else if (class == CLASS3)
James Smart92d7f7b2007-06-17 19:56:38 -0500132 goto bad_service_param;
dea31012005-04-17 16:05:31 -0500133
James.Smart@Emulex.Com2fb70f72005-11-28 11:41:24 -0500134 /*
135 * Preserve the upper four bits of the MSB from the PLOGI response.
136 * These bits contain the Buffer-to-Buffer State Change Number
137 * from the target and need to be passed to the FW.
138 */
139 hsp_value = (hsp->cmn.bbRcvSizeMsb << 8) | hsp->cmn.bbRcvSizeLsb;
140 ssp_value = (sp->cmn.bbRcvSizeMsb << 8) | sp->cmn.bbRcvSizeLsb;
141 if (ssp_value > hsp_value) {
dea31012005-04-17 16:05:31 -0500142 sp->cmn.bbRcvSizeLsb = hsp->cmn.bbRcvSizeLsb;
James.Smart@Emulex.Com2fb70f72005-11-28 11:41:24 -0500143 sp->cmn.bbRcvSizeMsb = (sp->cmn.bbRcvSizeMsb & 0xF0) |
144 (hsp->cmn.bbRcvSizeMsb & 0x0F);
145 }
dea31012005-04-17 16:05:31 -0500146
dea31012005-04-17 16:05:31 -0500147 memcpy(&ndlp->nlp_nodename, &sp->nodeName, sizeof (struct lpfc_name));
148 memcpy(&ndlp->nlp_portname, &sp->portName, sizeof (struct lpfc_name));
James.Smart@Emulex.Com2fb70f72005-11-28 11:41:24 -0500149 return 1;
James Smart92d7f7b2007-06-17 19:56:38 -0500150bad_service_param:
James Smarte8b62012007-08-02 11:10:09 -0400151 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
152 "0207 Device %x "
153 "(%02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x) sent "
154 "invalid service parameters. Ignoring device.\n",
155 ndlp->nlp_DID,
156 sp->nodeName.u.wwn[0], sp->nodeName.u.wwn[1],
157 sp->nodeName.u.wwn[2], sp->nodeName.u.wwn[3],
158 sp->nodeName.u.wwn[4], sp->nodeName.u.wwn[5],
159 sp->nodeName.u.wwn[6], sp->nodeName.u.wwn[7]);
James Smart92d7f7b2007-06-17 19:56:38 -0500160 return 0;
dea31012005-04-17 16:05:31 -0500161}
162
163static void *
James Smart2e0fef82007-06-17 19:56:36 -0500164lpfc_check_elscmpl_iocb(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
James Smart92d7f7b2007-06-17 19:56:38 -0500165 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -0500166{
167 struct lpfc_dmabuf *pcmd, *prsp;
168 uint32_t *lp;
169 void *ptr = NULL;
170 IOCB_t *irsp;
171
172 irsp = &rspiocb->iocb;
173 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
174
175 /* For lpfc_els_abort, context2 could be zero'ed to delay
176 * freeing associated memory till after ABTS completes.
177 */
178 if (pcmd) {
179 prsp = list_get_first(&pcmd->list, struct lpfc_dmabuf,
180 list);
181 if (prsp) {
182 lp = (uint32_t *) prsp->virt;
183 ptr = (void *)((uint8_t *)lp + sizeof(uint32_t));
184 }
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -0500185 } else {
dea31012005-04-17 16:05:31 -0500186 /* Force ulpStatus error since we are returning NULL ptr */
187 if (!(irsp->ulpStatus)) {
188 irsp->ulpStatus = IOSTAT_LOCAL_REJECT;
189 irsp->un.ulpWord[4] = IOERR_SLI_ABORTED;
190 }
191 ptr = NULL;
192 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500193 return ptr;
dea31012005-04-17 16:05:31 -0500194}
195
196
James Smart2a9bf3d2010-06-07 15:24:45 -0400197
dea31012005-04-17 16:05:31 -0500198/*
199 * Free resources / clean up outstanding I/Os
200 * associated with a LPFC_NODELIST entry. This
201 * routine effectively results in a "software abort".
202 */
203int
James Smart2e0fef82007-06-17 19:56:36 -0500204lpfc_els_abort(struct lpfc_hba *phba, struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -0500205{
James Smart2a9bf3d2010-06-07 15:24:45 -0400206 LIST_HEAD(abort_list);
James Smart2e0fef82007-06-17 19:56:36 -0500207 struct lpfc_sli *psli = &phba->sli;
208 struct lpfc_sli_ring *pring = &psli->ring[LPFC_ELS_RING];
dea31012005-04-17 16:05:31 -0500209 struct lpfc_iocbq *iocb, *next_iocb;
dea31012005-04-17 16:05:31 -0500210
211 /* Abort outstanding I/O on NPort <nlp_DID> */
James Smarte8b62012007-08-02 11:10:09 -0400212 lpfc_printf_vlog(ndlp->vport, KERN_INFO, LOG_DISCOVERY,
James Smart2a9bf3d2010-06-07 15:24:45 -0400213 "2819 Abort outstanding I/O on NPort x%x "
James Smarte8b62012007-08-02 11:10:09 -0400214 "Data: x%x x%x x%x\n",
215 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
216 ndlp->nlp_rpi);
James Smart0976e1a2013-12-17 20:29:36 -0500217 /* Clean up all fabric IOs first.*/
James Smart92d7f7b2007-06-17 19:56:38 -0500218 lpfc_fabric_abort_nport(ndlp);
dea31012005-04-17 16:05:31 -0500219
James Smart0976e1a2013-12-17 20:29:36 -0500220 /*
221 * Lock the ELS ring txcmplq for SLI3/SLI4 and build a local list
222 * of all ELS IOs that need an ABTS. The IOs need to stay on the
223 * txcmplq so that the abort operation completes them successfully.
224 */
James Smart2e0fef82007-06-17 19:56:36 -0500225 spin_lock_irq(&phba->hbalock);
James Smart0976e1a2013-12-17 20:29:36 -0500226 if (phba->sli_rev == LPFC_SLI_REV4)
227 spin_lock(&pring->ring_lock);
228 list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq, list) {
229 /* Add to abort_list on on NDLP match. */
James Smart2a9bf3d2010-06-07 15:24:45 -0400230 if (lpfc_check_sli_ndlp(phba, pring, iocb, ndlp))
231 list_add_tail(&iocb->dlist, &abort_list);
232 }
James Smart0976e1a2013-12-17 20:29:36 -0500233 if (phba->sli_rev == LPFC_SLI_REV4)
234 spin_unlock(&pring->ring_lock);
James Smart2a9bf3d2010-06-07 15:24:45 -0400235 spin_unlock_irq(&phba->hbalock);
236
James Smart0976e1a2013-12-17 20:29:36 -0500237 /* Abort the targeted IOs and remove them from the abort list. */
James Smart2a9bf3d2010-06-07 15:24:45 -0400238 list_for_each_entry_safe(iocb, next_iocb, &abort_list, dlist) {
239 spin_lock_irq(&phba->hbalock);
240 list_del_init(&iocb->dlist);
241 lpfc_sli_issue_abort_iotag(phba, pring, iocb);
242 spin_unlock_irq(&phba->hbalock);
243 }
244
James Smart0976e1a2013-12-17 20:29:36 -0500245 INIT_LIST_HEAD(&abort_list);
246
247 /* Now process the txq */
248 spin_lock_irq(&phba->hbalock);
249 if (phba->sli_rev == LPFC_SLI_REV4)
250 spin_lock(&pring->ring_lock);
251
252 list_for_each_entry_safe(iocb, next_iocb, &pring->txq, list) {
253 /* Check to see if iocb matches the nport we are looking for */
254 if (lpfc_check_sli_ndlp(phba, pring, iocb, ndlp)) {
255 list_del_init(&iocb->list);
256 list_add_tail(&iocb->list, &abort_list);
257 }
258 }
259
260 if (phba->sli_rev == LPFC_SLI_REV4)
261 spin_unlock(&pring->ring_lock);
262 spin_unlock_irq(&phba->hbalock);
263
James Smarta257bf92009-04-06 18:48:10 -0400264 /* Cancel all the IOCBs from the completions list */
James Smart0976e1a2013-12-17 20:29:36 -0500265 lpfc_sli_cancel_iocbs(phba, &abort_list,
266 IOSTAT_LOCAL_REJECT, IOERR_SLI_ABORTED);
James Smart2534ba72007-04-25 09:52:20 -0400267
James Smart0d2b6b82008-06-14 22:52:47 -0400268 lpfc_cancel_retry_delay_tmo(phba->pport, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500269 return 0;
dea31012005-04-17 16:05:31 -0500270}
271
272static int
James Smart2e0fef82007-06-17 19:56:36 -0500273lpfc_rcv_plogi(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
James Smart92d7f7b2007-06-17 19:56:38 -0500274 struct lpfc_iocbq *cmdiocb)
dea31012005-04-17 16:05:31 -0500275{
James Smart2e0fef82007-06-17 19:56:36 -0500276 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
277 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -0500278 struct lpfc_dmabuf *pcmd;
James Smarted4afe742015-04-07 15:07:11 -0400279 uint64_t nlp_portwwn = 0;
dea31012005-04-17 16:05:31 -0500280 uint32_t *lp;
281 IOCB_t *icmd;
282 struct serv_parm *sp;
283 LPFC_MBOXQ_t *mbox;
284 struct ls_rjt stat;
285 int rc;
286
287 memset(&stat, 0, sizeof (struct ls_rjt));
James Smart695a8142010-01-26 23:08:03 -0500288 if (vport->port_state <= LPFC_FDISC) {
dea31012005-04-17 16:05:31 -0500289 /* Before responding to PLOGI, check for pt2pt mode.
290 * If we are pt2pt, with an outstanding FLOGI, abort
291 * the FLOGI and resend it first.
292 */
James Smart2e0fef82007-06-17 19:56:36 -0500293 if (vport->fc_flag & FC_PT2PT) {
James Smart92d7f7b2007-06-17 19:56:38 -0500294 lpfc_els_abort_flogi(phba);
James Smart2e0fef82007-06-17 19:56:36 -0500295 if (!(vport->fc_flag & FC_PT2PT_PLOGI)) {
dea31012005-04-17 16:05:31 -0500296 /* If the other side is supposed to initiate
297 * the PLOGI anyway, just ACC it now and
298 * move on with discovery.
299 */
300 phba->fc_edtov = FF_DEF_EDTOV;
301 phba->fc_ratov = FF_DEF_RATOV;
302 /* Start discovery - this should just do
303 CLEAR_LA */
James Smart2e0fef82007-06-17 19:56:36 -0500304 lpfc_disc_start(vport);
James Smarted957682007-06-17 19:56:37 -0500305 } else
James Smart2e0fef82007-06-17 19:56:36 -0500306 lpfc_initial_flogi(vport);
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -0500307 } else {
dea31012005-04-17 16:05:31 -0500308 stat.un.b.lsRjtRsnCode = LSRJT_LOGICAL_BSY;
309 stat.un.b.lsRjtRsnCodeExp = LSEXP_NOTHING_MORE;
James Smart2e0fef82007-06-17 19:56:36 -0500310 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb,
James Smart858c9f62007-06-17 19:56:39 -0500311 ndlp, NULL);
dea31012005-04-17 16:05:31 -0500312 return 0;
313 }
314 }
315 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
316 lp = (uint32_t *) pcmd->virt;
317 sp = (struct serv_parm *) ((uint8_t *) lp + sizeof (uint32_t));
James Smarta8adb832007-10-27 13:37:53 -0400318 if (wwn_to_u64(sp->portName.u.wwn) == 0) {
319 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
320 "0140 PLOGI Reject: invalid nname\n");
321 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
322 stat.un.b.lsRjtRsnCodeExp = LSEXP_INVALID_PNAME;
323 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp,
324 NULL);
325 return 0;
326 }
327 if (wwn_to_u64(sp->nodeName.u.wwn) == 0) {
328 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
329 "0141 PLOGI Reject: invalid pname\n");
330 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
331 stat.un.b.lsRjtRsnCodeExp = LSEXP_INVALID_NNAME;
332 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp,
333 NULL);
334 return 0;
335 }
James Smarted4afe742015-04-07 15:07:11 -0400336
337 nlp_portwwn = wwn_to_u64(ndlp->nlp_portname.u.wwn);
James Smart341af102010-01-26 23:07:37 -0500338 if ((lpfc_check_sparm(vport, ndlp, sp, CLASS3, 0) == 0)) {
dea31012005-04-17 16:05:31 -0500339 /* Reject this request because invalid parameters */
340 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
341 stat.un.b.lsRjtRsnCodeExp = LSEXP_SPARM_OPTIONS;
James Smart858c9f62007-06-17 19:56:39 -0500342 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp,
343 NULL);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500344 return 0;
dea31012005-04-17 16:05:31 -0500345 }
346 icmd = &cmdiocb->iocb;
347
348 /* PLOGI chkparm OK */
James Smarte8b62012007-08-02 11:10:09 -0400349 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
James Smarte74c03c2013-04-17 20:15:19 -0400350 "0114 PLOGI chkparm OK Data: x%x x%x x%x "
351 "x%x x%x x%x\n",
James Smarte8b62012007-08-02 11:10:09 -0400352 ndlp->nlp_DID, ndlp->nlp_state, ndlp->nlp_flag,
James Smarte74c03c2013-04-17 20:15:19 -0400353 ndlp->nlp_rpi, vport->port_state,
354 vport->fc_flag);
dea31012005-04-17 16:05:31 -0500355
James Smart3de2a652007-08-02 11:09:59 -0400356 if (vport->cfg_fcp_class == 2 && sp->cls2.classValid)
dea31012005-04-17 16:05:31 -0500357 ndlp->nlp_fcp_info |= CLASS2;
James Smarted957682007-06-17 19:56:37 -0500358 else
dea31012005-04-17 16:05:31 -0500359 ndlp->nlp_fcp_info |= CLASS3;
James Smart2e0fef82007-06-17 19:56:36 -0500360
dea31012005-04-17 16:05:31 -0500361 ndlp->nlp_class_sup = 0;
362 if (sp->cls1.classValid)
363 ndlp->nlp_class_sup |= FC_COS_CLASS1;
364 if (sp->cls2.classValid)
365 ndlp->nlp_class_sup |= FC_COS_CLASS2;
366 if (sp->cls3.classValid)
367 ndlp->nlp_class_sup |= FC_COS_CLASS3;
368 if (sp->cls4.classValid)
369 ndlp->nlp_class_sup |= FC_COS_CLASS4;
370 ndlp->nlp_maxframe =
371 ((sp->cmn.bbRcvSizeMsb & 0x0F) << 8) | sp->cmn.bbRcvSizeLsb;
372
James Smarted4afe742015-04-07 15:07:11 -0400373 /* if already logged in, do implicit logout */
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -0500374 switch (ndlp->nlp_state) {
dea31012005-04-17 16:05:31 -0500375 case NLP_STE_NPR_NODE:
376 if (!(ndlp->nlp_flag & NLP_NPR_ADISC))
377 break;
378 case NLP_STE_REG_LOGIN_ISSUE:
379 case NLP_STE_PRLI_ISSUE:
380 case NLP_STE_UNMAPPED_NODE:
381 case NLP_STE_MAPPED_NODE:
James Smarted4afe742015-04-07 15:07:11 -0400382 /* lpfc_plogi_confirm_nport skips fabric did, handle it here */
383 if (!(ndlp->nlp_type & NLP_FABRIC)) {
384 lpfc_els_rsp_acc(vport, ELS_CMD_PLOGI, cmdiocb,
385 ndlp, NULL);
386 return 1;
387 }
388 if (nlp_portwwn != 0 &&
389 nlp_portwwn != wwn_to_u64(sp->portName.u.wwn))
390 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
391 "0143 PLOGI recv'd from DID: x%x "
392 "WWPN changed: old %llx new %llx\n",
393 ndlp->nlp_DID,
394 (unsigned long long)nlp_portwwn,
395 (unsigned long long)
396 wwn_to_u64(sp->portName.u.wwn));
397
398 ndlp->nlp_prev_state = ndlp->nlp_state;
399 /* rport needs to be unregistered first */
400 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
401 break;
dea31012005-04-17 16:05:31 -0500402 }
403
James Smart939723a2012-05-09 21:19:03 -0400404 /* Check for Nport to NPort pt2pt protocol */
James Smart92d7f7b2007-06-17 19:56:38 -0500405 if ((vport->fc_flag & FC_PT2PT) &&
406 !(vport->fc_flag & FC_PT2PT_PLOGI)) {
James Smart939723a2012-05-09 21:19:03 -0400407
dea31012005-04-17 16:05:31 -0500408 /* rcv'ed PLOGI decides what our NPortId will be */
James Smart2e0fef82007-06-17 19:56:36 -0500409 vport->fc_myDID = icmd->un.rcvels.parmRo;
dea31012005-04-17 16:05:31 -0500410 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
411 if (mbox == NULL)
412 goto out;
413 lpfc_config_link(phba, mbox);
414 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
James Smarted957682007-06-17 19:56:37 -0500415 mbox->vport = vport;
James Smart0b727fe2007-10-27 13:37:25 -0400416 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
dea31012005-04-17 16:05:31 -0500417 if (rc == MBX_NOT_FINISHED) {
James Smart92d7f7b2007-06-17 19:56:38 -0500418 mempool_free(mbox, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -0500419 goto out;
420 }
James Smart939723a2012-05-09 21:19:03 -0400421 /*
422 * For SLI4, the VFI/VPI are registered AFTER the
423 * Nport with the higher WWPN sends us a PLOGI with
424 * our assigned NPortId.
425 */
426 if (phba->sli_rev == LPFC_SLI_REV4)
427 lpfc_issue_reg_vfi(vport);
dea31012005-04-17 16:05:31 -0500428
James Smart2e0fef82007-06-17 19:56:36 -0500429 lpfc_can_disctmo(vport);
dea31012005-04-17 16:05:31 -0500430 }
431 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
James Smart2e0fef82007-06-17 19:56:36 -0500432 if (!mbox)
dea31012005-04-17 16:05:31 -0500433 goto out;
434
James Smart6b5151f2012-01-18 16:24:06 -0500435 /* Registering an existing RPI behaves differently for SLI3 vs SLI4 */
436 if (phba->sli_rev == LPFC_SLI_REV4)
437 lpfc_unreg_rpi(vport, ndlp);
438
James Smart6fb120a2009-05-22 14:52:59 -0400439 rc = lpfc_reg_rpi(phba, vport->vpi, icmd->un.rcvels.remoteID,
James Smart40426292010-12-15 17:58:10 -0500440 (uint8_t *) sp, mbox, ndlp->nlp_rpi);
James Smart2e0fef82007-06-17 19:56:36 -0500441 if (rc) {
442 mempool_free(mbox, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -0500443 goto out;
444 }
445
446 /* ACC PLOGI rsp command needs to execute first,
447 * queue this mbox command to be processed later.
448 */
449 mbox->mbox_cmpl = lpfc_mbx_cmpl_reg_login;
James Smart329f9bc2007-04-25 09:53:01 -0400450 /*
451 * mbox->context2 = lpfc_nlp_get(ndlp) deferred until mailbox
452 * command issued in lpfc_cmpl_els_acc().
453 */
James Smart2e0fef82007-06-17 19:56:36 -0500454 mbox->vport = vport;
455 spin_lock_irq(shost->host_lock);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -0500456 ndlp->nlp_flag |= (NLP_ACC_REGLOGIN | NLP_RCV_PLOGI);
James Smart2e0fef82007-06-17 19:56:36 -0500457 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500458
James Smart33ccf8d2006-08-17 11:57:58 -0400459 /*
460 * If there is an outstanding PLOGI issued, abort it before
461 * sending ACC rsp for received PLOGI. If pending plogi
462 * is not canceled here, the plogi will be rejected by
463 * remote port and will be retried. On a configuration with
464 * single discovery thread, this will cause a huge delay in
465 * discovery. Also this will cause multiple state machines
466 * running in parallel for this node.
467 */
468 if (ndlp->nlp_state == NLP_STE_PLOGI_ISSUE) {
469 /* software abort outstanding PLOGI */
James Smart07951072007-04-25 09:51:38 -0400470 lpfc_els_abort(phba, ndlp);
James Smart33ccf8d2006-08-17 11:57:58 -0400471 }
472
James Smart858c9f62007-06-17 19:56:39 -0500473 if ((vport->port_type == LPFC_NPIV_PORT &&
James Smart3de2a652007-08-02 11:09:59 -0400474 vport->cfg_restrict_login)) {
James Smart858c9f62007-06-17 19:56:39 -0500475
476 /* In order to preserve RPIs, we want to cleanup
477 * the default RPI the firmware created to rcv
478 * this ELS request. The only way to do this is
479 * to register, then unregister the RPI.
480 */
481 spin_lock_irq(shost->host_lock);
482 ndlp->nlp_flag |= NLP_RM_DFLT_RPI;
483 spin_unlock_irq(shost->host_lock);
484 stat.un.b.lsRjtRsnCode = LSRJT_INVALID_CMD;
485 stat.un.b.lsRjtRsnCodeExp = LSEXP_NOTHING_MORE;
James Smart0a8a86f2012-03-01 22:36:15 -0500486 rc = lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb,
James Smart858c9f62007-06-17 19:56:39 -0500487 ndlp, mbox);
James Smart0a8a86f2012-03-01 22:36:15 -0500488 if (rc)
489 mempool_free(mbox, phba->mbox_mem_pool);
James Smart858c9f62007-06-17 19:56:39 -0500490 return 1;
491 }
James Smart0a8a86f2012-03-01 22:36:15 -0500492 rc = lpfc_els_rsp_acc(vport, ELS_CMD_PLOGI, cmdiocb, ndlp, mbox);
493 if (rc)
494 mempool_free(mbox, phba->mbox_mem_pool);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500495 return 1;
dea31012005-04-17 16:05:31 -0500496out:
497 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
498 stat.un.b.lsRjtRsnCodeExp = LSEXP_OUT_OF_RESOURCE;
James Smart858c9f62007-06-17 19:56:39 -0500499 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500500 return 0;
dea31012005-04-17 16:05:31 -0500501}
502
James Smart6b5151f2012-01-18 16:24:06 -0500503/**
504 * lpfc_mbx_cmpl_resume_rpi - Resume RPI completion routine
505 * @phba: pointer to lpfc hba data structure.
506 * @mboxq: pointer to mailbox object
507 *
508 * This routine is invoked to issue a completion to a rcv'ed
509 * ADISC or PDISC after the paused RPI has been resumed.
510 **/
511static void
512lpfc_mbx_cmpl_resume_rpi(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
513{
514 struct lpfc_vport *vport;
515 struct lpfc_iocbq *elsiocb;
516 struct lpfc_nodelist *ndlp;
517 uint32_t cmd;
518
519 elsiocb = (struct lpfc_iocbq *)mboxq->context1;
520 ndlp = (struct lpfc_nodelist *) mboxq->context2;
521 vport = mboxq->vport;
522 cmd = elsiocb->drvrTimeout;
523
524 if (cmd == ELS_CMD_ADISC) {
525 lpfc_els_rsp_adisc_acc(vport, elsiocb, ndlp);
526 } else {
527 lpfc_els_rsp_acc(vport, ELS_CMD_PLOGI, elsiocb,
528 ndlp, NULL);
529 }
530 kfree(elsiocb);
James Smart72859902012-01-18 16:25:38 -0500531 mempool_free(mboxq, phba->mbox_mem_pool);
James Smart6b5151f2012-01-18 16:24:06 -0500532}
533
dea31012005-04-17 16:05:31 -0500534static int
James Smart2e0fef82007-06-17 19:56:36 -0500535lpfc_rcv_padisc(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
dea31012005-04-17 16:05:31 -0500536 struct lpfc_iocbq *cmdiocb)
537{
James Smart2e0fef82007-06-17 19:56:36 -0500538 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart6b5151f2012-01-18 16:24:06 -0500539 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -0500540 struct lpfc_dmabuf *pcmd;
James Smart2e0fef82007-06-17 19:56:36 -0500541 struct serv_parm *sp;
542 struct lpfc_name *pnn, *ppn;
dea31012005-04-17 16:05:31 -0500543 struct ls_rjt stat;
544 ADISC *ap;
545 IOCB_t *icmd;
546 uint32_t *lp;
547 uint32_t cmd;
548
549 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
550 lp = (uint32_t *) pcmd->virt;
551
552 cmd = *lp++;
553 if (cmd == ELS_CMD_ADISC) {
554 ap = (ADISC *) lp;
555 pnn = (struct lpfc_name *) & ap->nodeName;
556 ppn = (struct lpfc_name *) & ap->portName;
557 } else {
558 sp = (struct serv_parm *) lp;
559 pnn = (struct lpfc_name *) & sp->nodeName;
560 ppn = (struct lpfc_name *) & sp->portName;
561 }
562
563 icmd = &cmdiocb->iocb;
James Smart2e0fef82007-06-17 19:56:36 -0500564 if (icmd->ulpStatus == 0 && lpfc_check_adisc(vport, ndlp, pnn, ppn)) {
James Smart6b5151f2012-01-18 16:24:06 -0500565
566 /*
567 * As soon as we send ACC, the remote NPort can
568 * start sending us data. Thus, for SLI4 we must
569 * resume the RPI before the ACC goes out.
570 */
571 if (vport->phba->sli_rev == LPFC_SLI_REV4) {
572 elsiocb = kmalloc(sizeof(struct lpfc_iocbq),
573 GFP_KERNEL);
574 if (elsiocb) {
575
576 /* Save info from cmd IOCB used in rsp */
577 memcpy((uint8_t *)elsiocb, (uint8_t *)cmdiocb,
578 sizeof(struct lpfc_iocbq));
579
580 /* Save the ELS cmd */
581 elsiocb->drvrTimeout = cmd;
582
583 lpfc_sli4_resume_rpi(ndlp,
584 lpfc_mbx_cmpl_resume_rpi, elsiocb);
585 goto out;
586 }
587 }
588
dea31012005-04-17 16:05:31 -0500589 if (cmd == ELS_CMD_ADISC) {
James Smart2e0fef82007-06-17 19:56:36 -0500590 lpfc_els_rsp_adisc_acc(vport, cmdiocb, ndlp);
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -0500591 } else {
James Smart6b5151f2012-01-18 16:24:06 -0500592 lpfc_els_rsp_acc(vport, ELS_CMD_PLOGI, cmdiocb,
593 ndlp, NULL);
dea31012005-04-17 16:05:31 -0500594 }
James Smart6b5151f2012-01-18 16:24:06 -0500595out:
596 /* If we are authenticated, move to the proper state */
597 if (ndlp->nlp_type & NLP_FCP_TARGET)
598 lpfc_nlp_set_state(vport, ndlp, NLP_STE_MAPPED_NODE);
599 else
600 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
601
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500602 return 1;
dea31012005-04-17 16:05:31 -0500603 }
604 /* Reject this request because invalid parameters */
605 stat.un.b.lsRjtRsvd0 = 0;
606 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
607 stat.un.b.lsRjtRsnCodeExp = LSEXP_SPARM_OPTIONS;
608 stat.un.b.vendorUnique = 0;
James Smart858c9f62007-06-17 19:56:39 -0500609 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
dea31012005-04-17 16:05:31 -0500610
dea31012005-04-17 16:05:31 -0500611 /* 1 sec timeout */
James Smart256ec0d2013-04-17 20:14:58 -0400612 mod_timer(&ndlp->nlp_delayfunc, jiffies + msecs_to_jiffies(1000));
dea31012005-04-17 16:05:31 -0500613
James Smart2e0fef82007-06-17 19:56:36 -0500614 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500615 ndlp->nlp_flag |= NLP_DELAY_TMO;
James Smart2e0fef82007-06-17 19:56:36 -0500616 spin_unlock_irq(shost->host_lock);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -0500617 ndlp->nlp_last_elscmd = ELS_CMD_PLOGI;
618 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -0500619 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500620 return 0;
dea31012005-04-17 16:05:31 -0500621}
622
623static int
James Smart2e0fef82007-06-17 19:56:36 -0500624lpfc_rcv_logo(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
625 struct lpfc_iocbq *cmdiocb, uint32_t els_cmd)
dea31012005-04-17 16:05:31 -0500626{
James Smart2e0fef82007-06-17 19:56:36 -0500627 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart4b40c592010-03-15 11:25:44 -0400628 struct lpfc_hba *phba = vport->phba;
629 struct lpfc_vport **vports;
630 int i, active_vlink_present = 0 ;
James Smart2e0fef82007-06-17 19:56:36 -0500631
632 /* Put ndlp in NPR state with 1 sec timeout for plogi, ACC logo */
dea31012005-04-17 16:05:31 -0500633 /* Only call LOGO ACC for first LOGO, this avoids sending unnecessary
634 * PLOGIs during LOGO storms from a device.
635 */
James Smart2e0fef82007-06-17 19:56:36 -0500636 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500637 ndlp->nlp_flag |= NLP_LOGO_ACC;
James Smart2e0fef82007-06-17 19:56:36 -0500638 spin_unlock_irq(shost->host_lock);
James Smart82d9a2a2006-04-15 11:53:05 -0400639 if (els_cmd == ELS_CMD_PRLO)
James Smart51ef4c22007-08-02 11:10:31 -0400640 lpfc_els_rsp_acc(vport, ELS_CMD_PRLO, cmdiocb, ndlp, NULL);
James Smart82d9a2a2006-04-15 11:53:05 -0400641 else
James Smart51ef4c22007-08-02 11:10:31 -0400642 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
James Smart4b40c592010-03-15 11:25:44 -0400643 if (ndlp->nlp_DID == Fabric_DID) {
644 if (vport->port_state <= LPFC_FDISC)
645 goto out;
James Smart6fb120a2009-05-22 14:52:59 -0400646 lpfc_linkdown_port(vport);
James Smart6fb120a2009-05-22 14:52:59 -0400647 spin_lock_irq(shost->host_lock);
James Smart4b40c592010-03-15 11:25:44 -0400648 vport->fc_flag |= FC_VPORT_LOGO_RCVD;
James Smart6fb120a2009-05-22 14:52:59 -0400649 spin_unlock_irq(shost->host_lock);
James Smart4b40c592010-03-15 11:25:44 -0400650 vports = lpfc_create_vport_work_array(phba);
651 if (vports) {
652 for (i = 0; i <= phba->max_vports && vports[i] != NULL;
653 i++) {
654 if ((!(vports[i]->fc_flag &
655 FC_VPORT_LOGO_RCVD)) &&
656 (vports[i]->port_state > LPFC_FDISC)) {
657 active_vlink_present = 1;
658 break;
659 }
660 }
661 lpfc_destroy_vport_work_array(phba, vports);
662 }
dea31012005-04-17 16:05:31 -0500663
James Smart4b40c592010-03-15 11:25:44 -0400664 if (active_vlink_present) {
665 /*
666 * If there are other active VLinks present,
667 * re-instantiate the Vlink using FDISC.
668 */
James Smart256ec0d2013-04-17 20:14:58 -0400669 mod_timer(&ndlp->nlp_delayfunc,
670 jiffies + msecs_to_jiffies(1000));
James Smart4b40c592010-03-15 11:25:44 -0400671 spin_lock_irq(shost->host_lock);
672 ndlp->nlp_flag |= NLP_DELAY_TMO;
673 spin_unlock_irq(shost->host_lock);
674 ndlp->nlp_last_elscmd = ELS_CMD_FDISC;
675 vport->port_state = LPFC_FDISC;
676 } else {
677 spin_lock_irq(shost->host_lock);
678 phba->pport->fc_flag &= ~FC_LOGO_RCVD_DID_CHNG;
679 spin_unlock_irq(shost->host_lock);
680 lpfc_retry_pport_discovery(phba);
681 }
James Smart6fb120a2009-05-22 14:52:59 -0400682 } else if ((!(ndlp->nlp_type & NLP_FABRIC) &&
683 ((ndlp->nlp_type & NLP_FCP_TARGET) ||
684 !(ndlp->nlp_type & NLP_FCP_INITIATOR))) ||
685 (ndlp->nlp_state == NLP_STE_ADISC_ISSUE)) {
dea31012005-04-17 16:05:31 -0500686 /* Only try to re-login if this is NOT a Fabric Node */
James Smart256ec0d2013-04-17 20:14:58 -0400687 mod_timer(&ndlp->nlp_delayfunc,
688 jiffies + msecs_to_jiffies(1000 * 1));
James Smart2e0fef82007-06-17 19:56:36 -0500689 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500690 ndlp->nlp_flag |= NLP_DELAY_TMO;
James Smart2e0fef82007-06-17 19:56:36 -0500691 spin_unlock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500692
Jamie Wellnitz5024ab12006-02-28 19:25:28 -0500693 ndlp->nlp_last_elscmd = ELS_CMD_PLOGI;
dea31012005-04-17 16:05:31 -0500694 }
James Smart4b40c592010-03-15 11:25:44 -0400695out:
James Smart87af33f2007-10-27 13:37:43 -0400696 ndlp->nlp_prev_state = ndlp->nlp_state;
697 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
dea31012005-04-17 16:05:31 -0500698
James Smart2e0fef82007-06-17 19:56:36 -0500699 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500700 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
James Smart2e0fef82007-06-17 19:56:36 -0500701 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500702 /* The driver has to wait until the ACC completes before it continues
703 * processing the LOGO. The action will resume in
704 * lpfc_cmpl_els_logo_acc routine. Since part of processing includes an
705 * unreg_login, the driver waits so the ACC does not get aborted.
706 */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500707 return 0;
dea31012005-04-17 16:05:31 -0500708}
709
710static void
James Smart2e0fef82007-06-17 19:56:36 -0500711lpfc_rcv_prli(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
712 struct lpfc_iocbq *cmdiocb)
dea31012005-04-17 16:05:31 -0500713{
714 struct lpfc_dmabuf *pcmd;
715 uint32_t *lp;
716 PRLI *npr;
717 struct fc_rport *rport = ndlp->rport;
718 u32 roles;
719
720 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
721 lp = (uint32_t *) pcmd->virt;
722 npr = (PRLI *) ((uint8_t *) lp + sizeof (uint32_t));
723
724 ndlp->nlp_type &= ~(NLP_FCP_TARGET | NLP_FCP_INITIATOR);
725 ndlp->nlp_fcp_info &= ~NLP_FCP_2_DEVICE;
James Smart3cb01c52013-07-15 18:35:04 -0400726 ndlp->nlp_flag &= ~NLP_FIRSTBURST;
James Smart92d7f7b2007-06-17 19:56:38 -0500727 if (npr->prliType == PRLI_FCP_TYPE) {
dea31012005-04-17 16:05:31 -0500728 if (npr->initiatorFunc)
729 ndlp->nlp_type |= NLP_FCP_INITIATOR;
James Smart3cb01c52013-07-15 18:35:04 -0400730 if (npr->targetFunc) {
dea31012005-04-17 16:05:31 -0500731 ndlp->nlp_type |= NLP_FCP_TARGET;
James Smart3cb01c52013-07-15 18:35:04 -0400732 if (npr->writeXferRdyDis)
733 ndlp->nlp_flag |= NLP_FIRSTBURST;
734 }
dea31012005-04-17 16:05:31 -0500735 if (npr->Retry)
736 ndlp->nlp_fcp_info |= NLP_FCP_2_DEVICE;
737 }
738 if (rport) {
739 /* We need to update the rport role values */
740 roles = FC_RPORT_ROLE_UNKNOWN;
741 if (ndlp->nlp_type & NLP_FCP_INITIATOR)
742 roles |= FC_RPORT_ROLE_FCP_INITIATOR;
743 if (ndlp->nlp_type & NLP_FCP_TARGET)
744 roles |= FC_RPORT_ROLE_FCP_TARGET;
James Smart858c9f62007-06-17 19:56:39 -0500745
746 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_RPORT,
747 "rport rolechg: role:x%x did:x%x flg:x%x",
748 roles, ndlp->nlp_DID, ndlp->nlp_flag);
749
dea31012005-04-17 16:05:31 -0500750 fc_remote_port_rolechg(rport, roles);
751 }
752}
753
754static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500755lpfc_disc_set_adisc(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -0500756{
James Smart2e0fef82007-06-17 19:56:36 -0500757 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart2e0fef82007-06-17 19:56:36 -0500758
James Smart40426292010-12-15 17:58:10 -0500759 if (!(ndlp->nlp_flag & NLP_RPI_REGISTERED)) {
James Smart51ef4c22007-08-02 11:10:31 -0400760 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
761 return 0;
762 }
763
James Smart1b32f6a2008-02-08 18:49:39 -0500764 if (!(vport->fc_flag & FC_PT2PT)) {
765 /* Check config parameter use-adisc or FCP-2 */
766 if ((vport->cfg_use_adisc && (vport->fc_flag & FC_RSCN_MODE)) ||
James Smartffc95492010-06-07 15:23:17 -0400767 ((ndlp->nlp_fcp_info & NLP_FCP_2_DEVICE) &&
768 (ndlp->nlp_type & NLP_FCP_TARGET))) {
James Smart1b32f6a2008-02-08 18:49:39 -0500769 spin_lock_irq(shost->host_lock);
770 ndlp->nlp_flag |= NLP_NPR_ADISC;
771 spin_unlock_irq(shost->host_lock);
772 return 1;
773 }
James Smart92d7f7b2007-06-17 19:56:38 -0500774 }
775 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
776 lpfc_unreg_rpi(vport, ndlp);
777 return 0;
dea31012005-04-17 16:05:31 -0500778}
James Smart6d368e52011-05-24 11:44:12 -0400779
James Smart78730cf2010-04-06 15:06:30 -0400780/**
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300781 * lpfc_release_rpi - Release a RPI by issuing unreg_login mailbox cmd.
James Smart78730cf2010-04-06 15:06:30 -0400782 * @phba : Pointer to lpfc_hba structure.
783 * @vport: Pointer to lpfc_vport structure.
784 * @rpi : rpi to be release.
785 *
786 * This function will send a unreg_login mailbox command to the firmware
787 * to release a rpi.
788 **/
789void
790lpfc_release_rpi(struct lpfc_hba *phba,
791 struct lpfc_vport *vport,
792 uint16_t rpi)
793{
794 LPFC_MBOXQ_t *pmb;
795 int rc;
796
797 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool,
798 GFP_KERNEL);
799 if (!pmb)
800 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
801 "2796 mailbox memory allocation failed \n");
802 else {
803 lpfc_unreg_login(phba, vport->vpi, rpi, pmb);
804 pmb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
805 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
806 if (rc == MBX_NOT_FINISHED)
807 mempool_free(pmb, phba->mbox_mem_pool);
808 }
809}
dea31012005-04-17 16:05:31 -0500810
811static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500812lpfc_disc_illegal(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
813 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -0500814{
James Smart78730cf2010-04-06 15:06:30 -0400815 struct lpfc_hba *phba;
816 LPFC_MBOXQ_t *pmb = (LPFC_MBOXQ_t *) arg;
817 MAILBOX_t *mb;
818 uint16_t rpi;
819
820 phba = vport->phba;
821 /* Release the RPI if reglogin completing */
822 if (!(phba->pport->load_flag & FC_UNLOADING) &&
823 (evt == NLP_EVT_CMPL_REG_LOGIN) &&
824 (!pmb->u.mb.mbxStatus)) {
825 mb = &pmb->u.mb;
826 rpi = pmb->u.mb.un.varWords[0];
827 lpfc_release_rpi(phba, vport, rpi);
828 }
James Smarte8b62012007-08-02 11:10:09 -0400829 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
James Smarte47c9092008-02-08 18:49:26 -0500830 "0271 Illegal State Transition: node x%x "
James Smarte8b62012007-08-02 11:10:09 -0400831 "event x%x, state x%x Data: x%x x%x\n",
832 ndlp->nlp_DID, evt, ndlp->nlp_state, ndlp->nlp_rpi,
833 ndlp->nlp_flag);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500834 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -0500835}
836
James Smart87af33f2007-10-27 13:37:43 -0400837static uint32_t
838lpfc_cmpl_plogi_illegal(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
839 void *arg, uint32_t evt)
840{
841 /* This transition is only legal if we previously
842 * rcv'ed a PLOGI. Since we don't want 2 discovery threads
843 * working on the same NPortID, do nothing for this thread
844 * to stop it.
845 */
846 if (!(ndlp->nlp_flag & NLP_RCV_PLOGI)) {
847 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
James Smarte47c9092008-02-08 18:49:26 -0500848 "0272 Illegal State Transition: node x%x "
James Smart87af33f2007-10-27 13:37:43 -0400849 "event x%x, state x%x Data: x%x x%x\n",
850 ndlp->nlp_DID, evt, ndlp->nlp_state, ndlp->nlp_rpi,
851 ndlp->nlp_flag);
852 }
853 return ndlp->nlp_state;
854}
855
dea31012005-04-17 16:05:31 -0500856/* Start of Discovery State Machine routines */
857
858static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500859lpfc_rcv_plogi_unused_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
860 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -0500861{
862 struct lpfc_iocbq *cmdiocb;
863
864 cmdiocb = (struct lpfc_iocbq *) arg;
865
James Smart2e0fef82007-06-17 19:56:36 -0500866 if (lpfc_rcv_plogi(vport, ndlp, cmdiocb)) {
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500867 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -0500868 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500869 return NLP_STE_FREED_NODE;
dea31012005-04-17 16:05:31 -0500870}
871
872static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500873lpfc_rcv_els_unused_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
874 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -0500875{
James Smart2e0fef82007-06-17 19:56:36 -0500876 lpfc_issue_els_logo(vport, ndlp, 0);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500877 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -0500878}
879
880static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500881lpfc_rcv_logo_unused_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
882 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -0500883{
James Smart2e0fef82007-06-17 19:56:36 -0500884 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
885 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -0500886
James Smart2e0fef82007-06-17 19:56:36 -0500887 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500888 ndlp->nlp_flag |= NLP_LOGO_ACC;
James Smart2e0fef82007-06-17 19:56:36 -0500889 spin_unlock_irq(shost->host_lock);
James Smart51ef4c22007-08-02 11:10:31 -0400890 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
dea31012005-04-17 16:05:31 -0500891
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500892 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -0500893}
894
895static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500896lpfc_cmpl_logo_unused_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
dea31012005-04-17 16:05:31 -0500897 void *arg, uint32_t evt)
898{
James Smart2e0fef82007-06-17 19:56:36 -0500899 return NLP_STE_FREED_NODE;
900}
901
902static uint32_t
903lpfc_device_rm_unused_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
904 void *arg, uint32_t evt)
905{
James Smart2e0fef82007-06-17 19:56:36 -0500906 return NLP_STE_FREED_NODE;
907}
908
909static uint32_t
James Smartdf9e1b52011-12-13 13:22:17 -0500910lpfc_device_recov_unused_node(struct lpfc_vport *vport,
911 struct lpfc_nodelist *ndlp,
912 void *arg, uint32_t evt)
913{
914 return ndlp->nlp_state;
915}
916
917static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500918lpfc_rcv_plogi_plogi_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
919 void *arg, uint32_t evt)
920{
James Smart0d2b6b82008-06-14 22:52:47 -0400921 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart2e0fef82007-06-17 19:56:36 -0500922 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -0500923 struct lpfc_iocbq *cmdiocb = arg;
James Smart2e0fef82007-06-17 19:56:36 -0500924 struct lpfc_dmabuf *pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
925 uint32_t *lp = (uint32_t *) pcmd->virt;
926 struct serv_parm *sp = (struct serv_parm *) (lp + 1);
dea31012005-04-17 16:05:31 -0500927 struct ls_rjt stat;
928 int port_cmp;
929
dea31012005-04-17 16:05:31 -0500930 memset(&stat, 0, sizeof (struct ls_rjt));
931
932 /* For a PLOGI, we only accept if our portname is less
933 * than the remote portname.
934 */
935 phba->fc_stat.elsLogiCol++;
James Smart2e0fef82007-06-17 19:56:36 -0500936 port_cmp = memcmp(&vport->fc_portname, &sp->portName,
James Smart92d7f7b2007-06-17 19:56:38 -0500937 sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -0500938
939 if (port_cmp >= 0) {
940 /* Reject this request because the remote node will accept
941 ours */
942 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
943 stat.un.b.lsRjtRsnCodeExp = LSEXP_CMD_IN_PROGRESS;
James Smart858c9f62007-06-17 19:56:39 -0500944 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp,
945 NULL);
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -0500946 } else {
James Smart0d2b6b82008-06-14 22:52:47 -0400947 if (lpfc_rcv_plogi(vport, ndlp, cmdiocb) &&
948 (ndlp->nlp_flag & NLP_NPR_2B_DISC) &&
949 (vport->num_disc_nodes)) {
950 spin_lock_irq(shost->host_lock);
951 ndlp->nlp_flag &= ~NLP_NPR_2B_DISC;
952 spin_unlock_irq(shost->host_lock);
953 /* Check if there are more PLOGIs to be sent */
954 lpfc_more_plogi(vport);
955 if (vport->num_disc_nodes == 0) {
956 spin_lock_irq(shost->host_lock);
957 vport->fc_flag &= ~FC_NDISC_ACTIVE;
958 spin_unlock_irq(shost->host_lock);
959 lpfc_can_disctmo(vport);
960 lpfc_end_rscn(vport);
961 }
962 }
James Smart2e0fef82007-06-17 19:56:36 -0500963 } /* If our portname was less */
dea31012005-04-17 16:05:31 -0500964
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500965 return ndlp->nlp_state;
966}
967
968static uint32_t
James Smart92d7f7b2007-06-17 19:56:38 -0500969lpfc_rcv_prli_plogi_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
970 void *arg, uint32_t evt)
971{
972 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
973 struct ls_rjt stat;
974
975 memset(&stat, 0, sizeof (struct ls_rjt));
976 stat.un.b.lsRjtRsnCode = LSRJT_LOGICAL_BSY;
977 stat.un.b.lsRjtRsnCodeExp = LSEXP_NOTHING_MORE;
James Smart858c9f62007-06-17 19:56:39 -0500978 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
James Smart92d7f7b2007-06-17 19:56:38 -0500979 return ndlp->nlp_state;
980}
981
982static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500983lpfc_rcv_logo_plogi_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
984 void *arg, uint32_t evt)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500985{
James Smart2e0fef82007-06-17 19:56:36 -0500986 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500987
James Smart92d7f7b2007-06-17 19:56:38 -0500988 /* software abort outstanding PLOGI */
James Smart2e0fef82007-06-17 19:56:36 -0500989 lpfc_els_abort(vport->phba, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500990
James Smart2e0fef82007-06-17 19:56:36 -0500991 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_LOGO);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500992 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -0500993}
994
995static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500996lpfc_rcv_els_plogi_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
997 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -0500998{
James Smart2e0fef82007-06-17 19:56:36 -0500999 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1000 struct lpfc_hba *phba = vport->phba;
1001 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001002
1003 /* software abort outstanding PLOGI */
James Smart07951072007-04-25 09:51:38 -04001004 lpfc_els_abort(phba, ndlp);
dea31012005-04-17 16:05:31 -05001005
1006 if (evt == NLP_EVT_RCV_LOGO) {
James Smart51ef4c22007-08-02 11:10:31 -04001007 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05001008 } else {
James Smart2e0fef82007-06-17 19:56:36 -05001009 lpfc_issue_els_logo(vport, ndlp, 0);
dea31012005-04-17 16:05:31 -05001010 }
1011
James Smart2e0fef82007-06-17 19:56:36 -05001012 /* Put ndlp in npr state set plogi timer for 1 sec */
James Smart256ec0d2013-04-17 20:14:58 -04001013 mod_timer(&ndlp->nlp_delayfunc, jiffies + msecs_to_jiffies(1000 * 1));
James Smart2e0fef82007-06-17 19:56:36 -05001014 spin_lock_irq(shost->host_lock);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001015 ndlp->nlp_flag |= NLP_DELAY_TMO;
James Smart2e0fef82007-06-17 19:56:36 -05001016 spin_unlock_irq(shost->host_lock);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001017 ndlp->nlp_last_elscmd = ELS_CMD_PLOGI;
1018 ndlp->nlp_prev_state = NLP_STE_PLOGI_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001019 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
dea31012005-04-17 16:05:31 -05001020
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001021 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001022}
1023
1024static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001025lpfc_cmpl_plogi_plogi_issue(struct lpfc_vport *vport,
1026 struct lpfc_nodelist *ndlp,
1027 void *arg,
dea31012005-04-17 16:05:31 -05001028 uint32_t evt)
1029{
James Smart2e0fef82007-06-17 19:56:36 -05001030 struct lpfc_hba *phba = vport->phba;
James Smart0ff10d42008-01-11 01:52:36 -05001031 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart2e0fef82007-06-17 19:56:36 -05001032 struct lpfc_iocbq *cmdiocb, *rspiocb;
James Smart14691152006-12-02 13:34:28 -05001033 struct lpfc_dmabuf *pcmd, *prsp, *mp;
dea31012005-04-17 16:05:31 -05001034 uint32_t *lp;
1035 IOCB_t *irsp;
1036 struct serv_parm *sp;
1037 LPFC_MBOXQ_t *mbox;
1038
1039 cmdiocb = (struct lpfc_iocbq *) arg;
1040 rspiocb = cmdiocb->context_un.rsp_iocb;
1041
1042 if (ndlp->nlp_flag & NLP_ACC_REGLOGIN) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001043 /* Recovery from PLOGI collision logic */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001044 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001045 }
1046
1047 irsp = &rspiocb->iocb;
1048
1049 if (irsp->ulpStatus)
1050 goto out;
1051
1052 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
1053
James Smart2e0fef82007-06-17 19:56:36 -05001054 prsp = list_get_first(&pcmd->list, struct lpfc_dmabuf, list);
James Smarta2fc4aef2014-09-03 12:57:55 -04001055 if (!prsp)
1056 goto out;
dea31012005-04-17 16:05:31 -05001057
James Smart2e0fef82007-06-17 19:56:36 -05001058 lp = (uint32_t *) prsp->virt;
dea31012005-04-17 16:05:31 -05001059 sp = (struct serv_parm *) ((uint8_t *) lp + sizeof (uint32_t));
James Smart58da1ff2008-04-07 10:15:56 -04001060
1061 /* Some switches have FDMI servers returning 0 for WWN */
1062 if ((ndlp->nlp_DID != FDMI_DID) &&
1063 (wwn_to_u64(sp->portName.u.wwn) == 0 ||
1064 wwn_to_u64(sp->nodeName.u.wwn) == 0)) {
James Smarta8adb832007-10-27 13:37:53 -04001065 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
1066 "0142 PLOGI RSP: Invalid WWN.\n");
1067 goto out;
1068 }
James Smart341af102010-01-26 23:07:37 -05001069 if (!lpfc_check_sparm(vport, ndlp, sp, CLASS3, 0))
dea31012005-04-17 16:05:31 -05001070 goto out;
dea31012005-04-17 16:05:31 -05001071 /* PLOGI chkparm OK */
James Smarte8b62012007-08-02 11:10:09 -04001072 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
1073 "0121 PLOGI chkparm OK Data: x%x x%x x%x x%x\n",
1074 ndlp->nlp_DID, ndlp->nlp_state,
1075 ndlp->nlp_flag, ndlp->nlp_rpi);
James Smart3de2a652007-08-02 11:09:59 -04001076 if (vport->cfg_fcp_class == 2 && (sp->cls2.classValid))
dea31012005-04-17 16:05:31 -05001077 ndlp->nlp_fcp_info |= CLASS2;
James Smart2e0fef82007-06-17 19:56:36 -05001078 else
dea31012005-04-17 16:05:31 -05001079 ndlp->nlp_fcp_info |= CLASS3;
James Smart2e0fef82007-06-17 19:56:36 -05001080
dea31012005-04-17 16:05:31 -05001081 ndlp->nlp_class_sup = 0;
1082 if (sp->cls1.classValid)
1083 ndlp->nlp_class_sup |= FC_COS_CLASS1;
1084 if (sp->cls2.classValid)
1085 ndlp->nlp_class_sup |= FC_COS_CLASS2;
1086 if (sp->cls3.classValid)
1087 ndlp->nlp_class_sup |= FC_COS_CLASS3;
1088 if (sp->cls4.classValid)
1089 ndlp->nlp_class_sup |= FC_COS_CLASS4;
1090 ndlp->nlp_maxframe =
James Smart2e0fef82007-06-17 19:56:36 -05001091 ((sp->cmn.bbRcvSizeMsb & 0x0F) << 8) | sp->cmn.bbRcvSizeLsb;
dea31012005-04-17 16:05:31 -05001092
James Smart2e0fef82007-06-17 19:56:36 -05001093 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
James Smart92d7f7b2007-06-17 19:56:38 -05001094 if (!mbox) {
James Smarte8b62012007-08-02 11:10:09 -04001095 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
1096 "0133 PLOGI: no memory for reg_login "
James Smart92d7f7b2007-06-17 19:56:38 -05001097 "Data: x%x x%x x%x x%x\n",
James Smart92d7f7b2007-06-17 19:56:38 -05001098 ndlp->nlp_DID, ndlp->nlp_state,
1099 ndlp->nlp_flag, ndlp->nlp_rpi);
dea31012005-04-17 16:05:31 -05001100 goto out;
James Smart92d7f7b2007-06-17 19:56:38 -05001101 }
dea31012005-04-17 16:05:31 -05001102
James Smart2e0fef82007-06-17 19:56:36 -05001103 lpfc_unreg_rpi(vport, ndlp);
1104
James Smart6fb120a2009-05-22 14:52:59 -04001105 if (lpfc_reg_rpi(phba, vport->vpi, irsp->un.elsreq64.remoteID,
James Smart40426292010-12-15 17:58:10 -05001106 (uint8_t *) sp, mbox, ndlp->nlp_rpi) == 0) {
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05001107 switch (ndlp->nlp_DID) {
dea31012005-04-17 16:05:31 -05001108 case NameServer_DID:
James Smartde0c5b32007-04-25 09:52:27 -04001109 mbox->mbox_cmpl = lpfc_mbx_cmpl_ns_reg_login;
dea31012005-04-17 16:05:31 -05001110 break;
1111 case FDMI_DID:
James Smartde0c5b32007-04-25 09:52:27 -04001112 mbox->mbox_cmpl = lpfc_mbx_cmpl_fdmi_reg_login;
dea31012005-04-17 16:05:31 -05001113 break;
1114 default:
James Smartffc95492010-06-07 15:23:17 -04001115 ndlp->nlp_flag |= NLP_REG_LOGIN_SEND;
James Smartde0c5b32007-04-25 09:52:27 -04001116 mbox->mbox_cmpl = lpfc_mbx_cmpl_reg_login;
dea31012005-04-17 16:05:31 -05001117 }
James Smart329f9bc2007-04-25 09:53:01 -04001118 mbox->context2 = lpfc_nlp_get(ndlp);
James Smart2e0fef82007-06-17 19:56:36 -05001119 mbox->vport = vport;
James Smart0b727fe2007-10-27 13:37:25 -04001120 if (lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT)
dea31012005-04-17 16:05:31 -05001121 != MBX_NOT_FINISHED) {
James Smart2e0fef82007-06-17 19:56:36 -05001122 lpfc_nlp_set_state(vport, ndlp,
1123 NLP_STE_REG_LOGIN_ISSUE);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001124 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001125 }
James Smartffc95492010-06-07 15:23:17 -04001126 if (ndlp->nlp_flag & NLP_REG_LOGIN_SEND)
1127 ndlp->nlp_flag &= ~NLP_REG_LOGIN_SEND;
James Smartfa4066b2008-01-11 01:53:27 -05001128 /* decrement node reference count to the failed mbox
1129 * command
1130 */
James Smart329f9bc2007-04-25 09:53:01 -04001131 lpfc_nlp_put(ndlp);
James Smart92d7f7b2007-06-17 19:56:38 -05001132 mp = (struct lpfc_dmabuf *) mbox->context1;
James Smart14691152006-12-02 13:34:28 -05001133 lpfc_mbuf_free(phba, mp->virt, mp->phys);
1134 kfree(mp);
dea31012005-04-17 16:05:31 -05001135 mempool_free(mbox, phba->mbox_mem_pool);
James Smart92d7f7b2007-06-17 19:56:38 -05001136
James Smarte8b62012007-08-02 11:10:09 -04001137 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
1138 "0134 PLOGI: cannot issue reg_login "
1139 "Data: x%x x%x x%x x%x\n",
1140 ndlp->nlp_DID, ndlp->nlp_state,
1141 ndlp->nlp_flag, ndlp->nlp_rpi);
dea31012005-04-17 16:05:31 -05001142 } else {
1143 mempool_free(mbox, phba->mbox_mem_pool);
James Smart92d7f7b2007-06-17 19:56:38 -05001144
James Smarte8b62012007-08-02 11:10:09 -04001145 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
1146 "0135 PLOGI: cannot format reg_login "
1147 "Data: x%x x%x x%x x%x\n",
1148 ndlp->nlp_DID, ndlp->nlp_state,
1149 ndlp->nlp_flag, ndlp->nlp_rpi);
dea31012005-04-17 16:05:31 -05001150 }
1151
1152
James Smart92d7f7b2007-06-17 19:56:38 -05001153out:
1154 if (ndlp->nlp_DID == NameServer_DID) {
1155 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
James Smarte8b62012007-08-02 11:10:09 -04001156 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
1157 "0261 Cannot Register NameServer login\n");
James Smart92d7f7b2007-06-17 19:56:38 -05001158 }
1159
James Smart8b455cf2013-01-03 15:43:53 -05001160 /*
1161 ** In case the node reference counter does not go to zero, ensure that
1162 ** the stale state for the node is not processed.
1163 */
1164
1165 ndlp->nlp_prev_state = ndlp->nlp_state;
1166 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
James Smart0ff10d42008-01-11 01:52:36 -05001167 spin_lock_irq(shost->host_lock);
James Smarta8adb832007-10-27 13:37:53 -04001168 ndlp->nlp_flag |= NLP_DEFER_RM;
James Smart0ff10d42008-01-11 01:52:36 -05001169 spin_unlock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001170 return NLP_STE_FREED_NODE;
dea31012005-04-17 16:05:31 -05001171}
1172
1173static uint32_t
James Smart0ff10d42008-01-11 01:52:36 -05001174lpfc_cmpl_logo_plogi_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1175 void *arg, uint32_t evt)
1176{
1177 return ndlp->nlp_state;
1178}
1179
1180static uint32_t
1181lpfc_cmpl_reglogin_plogi_issue(struct lpfc_vport *vport,
1182 struct lpfc_nodelist *ndlp, void *arg, uint32_t evt)
1183{
James Smart78730cf2010-04-06 15:06:30 -04001184 struct lpfc_hba *phba;
1185 LPFC_MBOXQ_t *pmb = (LPFC_MBOXQ_t *) arg;
1186 MAILBOX_t *mb = &pmb->u.mb;
1187 uint16_t rpi;
1188
1189 phba = vport->phba;
1190 /* Release the RPI */
1191 if (!(phba->pport->load_flag & FC_UNLOADING) &&
1192 !mb->mbxStatus) {
1193 rpi = pmb->u.mb.un.varWords[0];
1194 lpfc_release_rpi(phba, vport, rpi);
1195 }
James Smart0ff10d42008-01-11 01:52:36 -05001196 return ndlp->nlp_state;
1197}
1198
1199static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001200lpfc_device_rm_plogi_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1201 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001202{
James Smart2e0fef82007-06-17 19:56:36 -05001203 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05001204
James Smart2e0fef82007-06-17 19:56:36 -05001205 if (ndlp->nlp_flag & NLP_NPR_2B_DISC) {
1206 spin_lock_irq(shost->host_lock);
1207 ndlp->nlp_flag |= NLP_NODEV_REMOVE;
1208 spin_unlock_irq(shost->host_lock);
1209 return ndlp->nlp_state;
1210 } else {
1211 /* software abort outstanding PLOGI */
1212 lpfc_els_abort(vport->phba, ndlp);
1213
1214 lpfc_drop_node(vport, ndlp);
James Smarta0f9b482006-04-15 11:52:56 -04001215 return NLP_STE_FREED_NODE;
1216 }
dea31012005-04-17 16:05:31 -05001217}
1218
1219static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001220lpfc_device_recov_plogi_issue(struct lpfc_vport *vport,
1221 struct lpfc_nodelist *ndlp,
1222 void *arg,
1223 uint32_t evt)
dea31012005-04-17 16:05:31 -05001224{
James Smart2e0fef82007-06-17 19:56:36 -05001225 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1226 struct lpfc_hba *phba = vport->phba;
1227
James Smart92d7f7b2007-06-17 19:56:38 -05001228 /* Don't do anything that will mess up processing of the
1229 * previous RSCN.
1230 */
1231 if (vport->fc_flag & FC_RSCN_DEFERRED)
1232 return ndlp->nlp_state;
1233
dea31012005-04-17 16:05:31 -05001234 /* software abort outstanding PLOGI */
James Smart07951072007-04-25 09:51:38 -04001235 lpfc_els_abort(phba, ndlp);
dea31012005-04-17 16:05:31 -05001236
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001237 ndlp->nlp_prev_state = NLP_STE_PLOGI_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001238 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
James Smart92d7f7b2007-06-17 19:56:38 -05001239 spin_lock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04001240 ndlp->nlp_flag &= ~(NLP_NODEV_REMOVE | NLP_NPR_2B_DISC);
James Smart2e0fef82007-06-17 19:56:36 -05001241 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001242
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001243 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001244}
1245
1246static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001247lpfc_rcv_plogi_adisc_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1248 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001249{
James Smart0d2b6b82008-06-14 22:52:47 -04001250 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart2e0fef82007-06-17 19:56:36 -05001251 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05001252 struct lpfc_iocbq *cmdiocb;
1253
1254 /* software abort outstanding ADISC */
James Smart07951072007-04-25 09:51:38 -04001255 lpfc_els_abort(phba, ndlp);
dea31012005-04-17 16:05:31 -05001256
1257 cmdiocb = (struct lpfc_iocbq *) arg;
1258
James Smart0d2b6b82008-06-14 22:52:47 -04001259 if (lpfc_rcv_plogi(vport, ndlp, cmdiocb)) {
1260 if (ndlp->nlp_flag & NLP_NPR_2B_DISC) {
1261 spin_lock_irq(shost->host_lock);
1262 ndlp->nlp_flag &= ~NLP_NPR_2B_DISC;
1263 spin_unlock_irq(shost->host_lock);
James Smart90160e02008-08-24 21:49:45 -04001264 if (vport->num_disc_nodes)
James Smart0d2b6b82008-06-14 22:52:47 -04001265 lpfc_more_adisc(vport);
James Smart0d2b6b82008-06-14 22:52:47 -04001266 }
1267 return ndlp->nlp_state;
1268 }
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001269 ndlp->nlp_prev_state = NLP_STE_ADISC_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001270 lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0);
1271 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
dea31012005-04-17 16:05:31 -05001272
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001273 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001274}
1275
1276static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001277lpfc_rcv_prli_adisc_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1278 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001279{
James Smart2e0fef82007-06-17 19:56:36 -05001280 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001281
James Smart2e0fef82007-06-17 19:56:36 -05001282 lpfc_els_rsp_prli_acc(vport, cmdiocb, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001283 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001284}
1285
1286static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001287lpfc_rcv_logo_adisc_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1288 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001289{
James Smart2e0fef82007-06-17 19:56:36 -05001290 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05001291 struct lpfc_iocbq *cmdiocb;
1292
1293 cmdiocb = (struct lpfc_iocbq *) arg;
1294
1295 /* software abort outstanding ADISC */
James Smart07951072007-04-25 09:51:38 -04001296 lpfc_els_abort(phba, ndlp);
dea31012005-04-17 16:05:31 -05001297
James Smart2e0fef82007-06-17 19:56:36 -05001298 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_LOGO);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001299 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001300}
1301
1302static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001303lpfc_rcv_padisc_adisc_issue(struct lpfc_vport *vport,
1304 struct lpfc_nodelist *ndlp,
1305 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001306{
1307 struct lpfc_iocbq *cmdiocb;
1308
1309 cmdiocb = (struct lpfc_iocbq *) arg;
1310
James Smart2e0fef82007-06-17 19:56:36 -05001311 lpfc_rcv_padisc(vport, ndlp, cmdiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001312 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001313}
1314
1315static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001316lpfc_rcv_prlo_adisc_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1317 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001318{
1319 struct lpfc_iocbq *cmdiocb;
1320
1321 cmdiocb = (struct lpfc_iocbq *) arg;
1322
1323 /* Treat like rcv logo */
James Smart2e0fef82007-06-17 19:56:36 -05001324 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_PRLO);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001325 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001326}
1327
1328static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001329lpfc_cmpl_adisc_adisc_issue(struct lpfc_vport *vport,
1330 struct lpfc_nodelist *ndlp,
1331 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001332{
James Smart2e0fef82007-06-17 19:56:36 -05001333 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1334 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05001335 struct lpfc_iocbq *cmdiocb, *rspiocb;
1336 IOCB_t *irsp;
1337 ADISC *ap;
James Smart6fb120a2009-05-22 14:52:59 -04001338 int rc;
dea31012005-04-17 16:05:31 -05001339
1340 cmdiocb = (struct lpfc_iocbq *) arg;
1341 rspiocb = cmdiocb->context_un.rsp_iocb;
1342
1343 ap = (ADISC *)lpfc_check_elscmpl_iocb(phba, cmdiocb, rspiocb);
1344 irsp = &rspiocb->iocb;
1345
1346 if ((irsp->ulpStatus) ||
James Smart92d7f7b2007-06-17 19:56:38 -05001347 (!lpfc_check_adisc(vport, ndlp, &ap->nodeName, &ap->portName))) {
dea31012005-04-17 16:05:31 -05001348 /* 1 sec timeout */
James Smart256ec0d2013-04-17 20:14:58 -04001349 mod_timer(&ndlp->nlp_delayfunc,
1350 jiffies + msecs_to_jiffies(1000));
James Smart2e0fef82007-06-17 19:56:36 -05001351 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001352 ndlp->nlp_flag |= NLP_DELAY_TMO;
James Smart2e0fef82007-06-17 19:56:36 -05001353 spin_unlock_irq(shost->host_lock);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001354 ndlp->nlp_last_elscmd = ELS_CMD_PLOGI;
dea31012005-04-17 16:05:31 -05001355
James Smart2e0fef82007-06-17 19:56:36 -05001356 memset(&ndlp->nlp_nodename, 0, sizeof(struct lpfc_name));
1357 memset(&ndlp->nlp_portname, 0, sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -05001358
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001359 ndlp->nlp_prev_state = NLP_STE_ADISC_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001360 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
1361 lpfc_unreg_rpi(vport, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001362 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001363 }
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001364
James Smart6fb120a2009-05-22 14:52:59 -04001365 if (phba->sli_rev == LPFC_SLI_REV4) {
James Smart6b5151f2012-01-18 16:24:06 -05001366 rc = lpfc_sli4_resume_rpi(ndlp, NULL, NULL);
James Smart6fb120a2009-05-22 14:52:59 -04001367 if (rc) {
1368 /* Stay in state and retry. */
1369 ndlp->nlp_prev_state = NLP_STE_ADISC_ISSUE;
1370 return ndlp->nlp_state;
1371 }
1372 }
1373
James.Smart@Emulex.Com25013222005-06-25 10:34:33 -04001374 if (ndlp->nlp_type & NLP_FCP_TARGET) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001375 ndlp->nlp_prev_state = NLP_STE_ADISC_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001376 lpfc_nlp_set_state(vport, ndlp, NLP_STE_MAPPED_NODE);
James.Smart@Emulex.Com25013222005-06-25 10:34:33 -04001377 } else {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001378 ndlp->nlp_prev_state = NLP_STE_ADISC_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001379 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
James.Smart@Emulex.Com25013222005-06-25 10:34:33 -04001380 }
James Smart6fb120a2009-05-22 14:52:59 -04001381
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001382 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001383}
1384
1385static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001386lpfc_device_rm_adisc_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1387 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001388{
James Smart2e0fef82007-06-17 19:56:36 -05001389 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05001390
James Smart2e0fef82007-06-17 19:56:36 -05001391 if (ndlp->nlp_flag & NLP_NPR_2B_DISC) {
1392 spin_lock_irq(shost->host_lock);
1393 ndlp->nlp_flag |= NLP_NODEV_REMOVE;
1394 spin_unlock_irq(shost->host_lock);
1395 return ndlp->nlp_state;
1396 } else {
1397 /* software abort outstanding ADISC */
1398 lpfc_els_abort(vport->phba, ndlp);
1399
1400 lpfc_drop_node(vport, ndlp);
James Smarta0f9b482006-04-15 11:52:56 -04001401 return NLP_STE_FREED_NODE;
1402 }
dea31012005-04-17 16:05:31 -05001403}
1404
1405static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001406lpfc_device_recov_adisc_issue(struct lpfc_vport *vport,
1407 struct lpfc_nodelist *ndlp,
1408 void *arg,
1409 uint32_t evt)
dea31012005-04-17 16:05:31 -05001410{
James Smart2e0fef82007-06-17 19:56:36 -05001411 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1412 struct lpfc_hba *phba = vport->phba;
1413
James Smart92d7f7b2007-06-17 19:56:38 -05001414 /* Don't do anything that will mess up processing of the
1415 * previous RSCN.
1416 */
1417 if (vport->fc_flag & FC_RSCN_DEFERRED)
1418 return ndlp->nlp_state;
1419
dea31012005-04-17 16:05:31 -05001420 /* software abort outstanding ADISC */
James Smart07951072007-04-25 09:51:38 -04001421 lpfc_els_abort(phba, ndlp);
dea31012005-04-17 16:05:31 -05001422
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001423 ndlp->nlp_prev_state = NLP_STE_ADISC_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001424 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
1425 spin_lock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04001426 ndlp->nlp_flag &= ~(NLP_NODEV_REMOVE | NLP_NPR_2B_DISC);
James Smart2e0fef82007-06-17 19:56:36 -05001427 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05001428 lpfc_disc_set_adisc(vport, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001429 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001430}
1431
1432static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001433lpfc_rcv_plogi_reglogin_issue(struct lpfc_vport *vport,
1434 struct lpfc_nodelist *ndlp,
1435 void *arg,
dea31012005-04-17 16:05:31 -05001436 uint32_t evt)
1437{
James Smart2e0fef82007-06-17 19:56:36 -05001438 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001439
James Smart2e0fef82007-06-17 19:56:36 -05001440 lpfc_rcv_plogi(vport, ndlp, cmdiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001441 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001442}
1443
1444static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001445lpfc_rcv_prli_reglogin_issue(struct lpfc_vport *vport,
1446 struct lpfc_nodelist *ndlp,
1447 void *arg,
dea31012005-04-17 16:05:31 -05001448 uint32_t evt)
1449{
James Smart2e0fef82007-06-17 19:56:36 -05001450 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001451
James Smart2e0fef82007-06-17 19:56:36 -05001452 lpfc_els_rsp_prli_acc(vport, cmdiocb, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001453 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001454}
1455
1456static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001457lpfc_rcv_logo_reglogin_issue(struct lpfc_vport *vport,
1458 struct lpfc_nodelist *ndlp,
1459 void *arg,
dea31012005-04-17 16:05:31 -05001460 uint32_t evt)
1461{
James Smart2e0fef82007-06-17 19:56:36 -05001462 struct lpfc_hba *phba = vport->phba;
1463 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
James Smart7054a602007-04-25 09:52:34 -04001464 LPFC_MBOXQ_t *mb;
1465 LPFC_MBOXQ_t *nextmb;
1466 struct lpfc_dmabuf *mp;
dea31012005-04-17 16:05:31 -05001467
1468 cmdiocb = (struct lpfc_iocbq *) arg;
1469
James Smart7054a602007-04-25 09:52:34 -04001470 /* cleanup any ndlp on mbox q waiting for reglogin cmpl */
1471 if ((mb = phba->sli.mbox_active)) {
James Smart04c68492009-05-22 14:52:52 -04001472 if ((mb->u.mb.mbxCommand == MBX_REG_LOGIN64) &&
James Smart7054a602007-04-25 09:52:34 -04001473 (ndlp == (struct lpfc_nodelist *) mb->context2)) {
James Smart92d7f7b2007-06-17 19:56:38 -05001474 lpfc_nlp_put(ndlp);
James Smart7054a602007-04-25 09:52:34 -04001475 mb->context2 = NULL;
1476 mb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
1477 }
1478 }
1479
James Smart2e0fef82007-06-17 19:56:36 -05001480 spin_lock_irq(&phba->hbalock);
James Smart7054a602007-04-25 09:52:34 -04001481 list_for_each_entry_safe(mb, nextmb, &phba->sli.mboxq, list) {
James Smart04c68492009-05-22 14:52:52 -04001482 if ((mb->u.mb.mbxCommand == MBX_REG_LOGIN64) &&
James Smart7054a602007-04-25 09:52:34 -04001483 (ndlp == (struct lpfc_nodelist *) mb->context2)) {
1484 mp = (struct lpfc_dmabuf *) (mb->context1);
1485 if (mp) {
James Smart98c9ea52007-10-27 13:37:33 -04001486 __lpfc_mbuf_free(phba, mp->virt, mp->phys);
James Smart7054a602007-04-25 09:52:34 -04001487 kfree(mp);
1488 }
James Smart92d7f7b2007-06-17 19:56:38 -05001489 lpfc_nlp_put(ndlp);
James Smart7054a602007-04-25 09:52:34 -04001490 list_del(&mb->list);
James Smart5ffc2662009-11-18 15:39:44 -05001491 phba->sli.mboxq_cnt--;
James Smart7054a602007-04-25 09:52:34 -04001492 mempool_free(mb, phba->mbox_mem_pool);
1493 }
1494 }
James Smart2e0fef82007-06-17 19:56:36 -05001495 spin_unlock_irq(&phba->hbalock);
James Smart7054a602007-04-25 09:52:34 -04001496
James Smart2e0fef82007-06-17 19:56:36 -05001497 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_LOGO);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001498 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001499}
1500
1501static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001502lpfc_rcv_padisc_reglogin_issue(struct lpfc_vport *vport,
1503 struct lpfc_nodelist *ndlp,
1504 void *arg,
dea31012005-04-17 16:05:31 -05001505 uint32_t evt)
1506{
James Smart2e0fef82007-06-17 19:56:36 -05001507 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001508
James Smart2e0fef82007-06-17 19:56:36 -05001509 lpfc_rcv_padisc(vport, ndlp, cmdiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001510 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001511}
1512
1513static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001514lpfc_rcv_prlo_reglogin_issue(struct lpfc_vport *vport,
1515 struct lpfc_nodelist *ndlp,
1516 void *arg,
dea31012005-04-17 16:05:31 -05001517 uint32_t evt)
1518{
1519 struct lpfc_iocbq *cmdiocb;
1520
1521 cmdiocb = (struct lpfc_iocbq *) arg;
James Smart51ef4c22007-08-02 11:10:31 -04001522 lpfc_els_rsp_acc(vport, ELS_CMD_PRLO, cmdiocb, ndlp, NULL);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001523 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001524}
1525
1526static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001527lpfc_cmpl_reglogin_reglogin_issue(struct lpfc_vport *vport,
1528 struct lpfc_nodelist *ndlp,
1529 void *arg,
1530 uint32_t evt)
dea31012005-04-17 16:05:31 -05001531{
James Smart2e0fef82007-06-17 19:56:36 -05001532 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart2e0fef82007-06-17 19:56:36 -05001533 LPFC_MBOXQ_t *pmb = (LPFC_MBOXQ_t *) arg;
James Smart04c68492009-05-22 14:52:52 -04001534 MAILBOX_t *mb = &pmb->u.mb;
James Smart2e0fef82007-06-17 19:56:36 -05001535 uint32_t did = mb->un.varWords[1];
dea31012005-04-17 16:05:31 -05001536
dea31012005-04-17 16:05:31 -05001537 if (mb->mbxStatus) {
1538 /* RegLogin failed */
James Smarte8b62012007-08-02 11:10:09 -04001539 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
James Smart6d368e52011-05-24 11:44:12 -04001540 "0246 RegLogin failed Data: x%x x%x x%x x%x "
1541 "x%x\n",
1542 did, mb->mbxStatus, vport->port_state,
1543 mb->un.varRegLogin.vpi,
1544 mb->un.varRegLogin.rpi);
James Smartd0e56da2006-07-06 15:49:42 -04001545 /*
1546 * If RegLogin failed due to lack of HBA resources do not
1547 * retry discovery.
1548 */
1549 if (mb->mbxStatus == MBXERR_RPI_FULL) {
James Smart87af33f2007-10-27 13:37:43 -04001550 ndlp->nlp_prev_state = NLP_STE_REG_LOGIN_ISSUE;
1551 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
James Smartd0e56da2006-07-06 15:49:42 -04001552 return ndlp->nlp_state;
1553 }
1554
James Smart2e0fef82007-06-17 19:56:36 -05001555 /* Put ndlp in npr state set plogi timer for 1 sec */
James Smart256ec0d2013-04-17 20:14:58 -04001556 mod_timer(&ndlp->nlp_delayfunc,
1557 jiffies + msecs_to_jiffies(1000 * 1));
James Smart2e0fef82007-06-17 19:56:36 -05001558 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001559 ndlp->nlp_flag |= NLP_DELAY_TMO;
James Smart2e0fef82007-06-17 19:56:36 -05001560 spin_unlock_irq(shost->host_lock);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001561 ndlp->nlp_last_elscmd = ELS_CMD_PLOGI;
dea31012005-04-17 16:05:31 -05001562
James Smart2e0fef82007-06-17 19:56:36 -05001563 lpfc_issue_els_logo(vport, ndlp, 0);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001564 ndlp->nlp_prev_state = NLP_STE_REG_LOGIN_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001565 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001566 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001567 }
1568
James Smart6d368e52011-05-24 11:44:12 -04001569 /* SLI4 ports have preallocated logical rpis. */
1570 if (vport->phba->sli_rev < LPFC_SLI_REV4)
1571 ndlp->nlp_rpi = mb->un.varWords[0];
1572
James Smart40426292010-12-15 17:58:10 -05001573 ndlp->nlp_flag |= NLP_RPI_REGISTERED;
dea31012005-04-17 16:05:31 -05001574
1575 /* Only if we are not a fabric nport do we issue PRLI */
1576 if (!(ndlp->nlp_type & NLP_FABRIC)) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001577 ndlp->nlp_prev_state = NLP_STE_REG_LOGIN_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001578 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PRLI_ISSUE);
1579 lpfc_issue_els_prli(vport, ndlp, 0);
dea31012005-04-17 16:05:31 -05001580 } else {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001581 ndlp->nlp_prev_state = NLP_STE_REG_LOGIN_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001582 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
dea31012005-04-17 16:05:31 -05001583 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001584 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001585}
1586
1587static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001588lpfc_device_rm_reglogin_issue(struct lpfc_vport *vport,
1589 struct lpfc_nodelist *ndlp,
1590 void *arg,
dea31012005-04-17 16:05:31 -05001591 uint32_t evt)
1592{
James Smart2e0fef82007-06-17 19:56:36 -05001593 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1594
1595 if (ndlp->nlp_flag & NLP_NPR_2B_DISC) {
1596 spin_lock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04001597 ndlp->nlp_flag |= NLP_NODEV_REMOVE;
James Smart2e0fef82007-06-17 19:56:36 -05001598 spin_unlock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04001599 return ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05001600 } else {
1601 lpfc_drop_node(vport, ndlp);
James Smarta0f9b482006-04-15 11:52:56 -04001602 return NLP_STE_FREED_NODE;
1603 }
dea31012005-04-17 16:05:31 -05001604}
1605
1606static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001607lpfc_device_recov_reglogin_issue(struct lpfc_vport *vport,
1608 struct lpfc_nodelist *ndlp,
1609 void *arg,
1610 uint32_t evt)
dea31012005-04-17 16:05:31 -05001611{
James Smart2e0fef82007-06-17 19:56:36 -05001612 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1613
James Smart92d7f7b2007-06-17 19:56:38 -05001614 /* Don't do anything that will mess up processing of the
1615 * previous RSCN.
1616 */
1617 if (vport->fc_flag & FC_RSCN_DEFERRED)
1618 return ndlp->nlp_state;
1619
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001620 ndlp->nlp_prev_state = NLP_STE_REG_LOGIN_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001621 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
1622 spin_lock_irq(shost->host_lock);
James Smartffc95492010-06-07 15:23:17 -04001623 ndlp->nlp_flag |= NLP_IGNR_REG_CMPL;
James Smarta0f9b482006-04-15 11:52:56 -04001624 ndlp->nlp_flag &= ~(NLP_NODEV_REMOVE | NLP_NPR_2B_DISC);
James Smart2e0fef82007-06-17 19:56:36 -05001625 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05001626 lpfc_disc_set_adisc(vport, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001627 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001628}
1629
1630static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001631lpfc_rcv_plogi_prli_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1632 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001633{
1634 struct lpfc_iocbq *cmdiocb;
1635
1636 cmdiocb = (struct lpfc_iocbq *) arg;
1637
James Smart2e0fef82007-06-17 19:56:36 -05001638 lpfc_rcv_plogi(vport, ndlp, cmdiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001639 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001640}
1641
1642static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001643lpfc_rcv_prli_prli_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1644 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001645{
James Smart2e0fef82007-06-17 19:56:36 -05001646 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001647
James Smart2e0fef82007-06-17 19:56:36 -05001648 lpfc_els_rsp_prli_acc(vport, cmdiocb, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001649 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001650}
1651
1652static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001653lpfc_rcv_logo_prli_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1654 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001655{
James Smart2e0fef82007-06-17 19:56:36 -05001656 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001657
1658 /* Software abort outstanding PRLI before sending acc */
James Smart2e0fef82007-06-17 19:56:36 -05001659 lpfc_els_abort(vport->phba, ndlp);
dea31012005-04-17 16:05:31 -05001660
James Smart2e0fef82007-06-17 19:56:36 -05001661 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_LOGO);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001662 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001663}
1664
1665static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001666lpfc_rcv_padisc_prli_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1667 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001668{
James Smart2e0fef82007-06-17 19:56:36 -05001669 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001670
James Smart2e0fef82007-06-17 19:56:36 -05001671 lpfc_rcv_padisc(vport, ndlp, cmdiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001672 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001673}
1674
1675/* This routine is envoked when we rcv a PRLO request from a nport
1676 * we are logged into. We should send back a PRLO rsp setting the
1677 * appropriate bits.
1678 * NEXT STATE = PRLI_ISSUE
1679 */
1680static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001681lpfc_rcv_prlo_prli_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1682 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001683{
James Smart2e0fef82007-06-17 19:56:36 -05001684 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001685
James Smart51ef4c22007-08-02 11:10:31 -04001686 lpfc_els_rsp_acc(vport, ELS_CMD_PRLO, cmdiocb, ndlp, NULL);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001687 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001688}
1689
1690static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001691lpfc_cmpl_prli_prli_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1692 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001693{
James Smart92d7f7b2007-06-17 19:56:38 -05001694 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05001695 struct lpfc_iocbq *cmdiocb, *rspiocb;
James Smart2e0fef82007-06-17 19:56:36 -05001696 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05001697 IOCB_t *irsp;
1698 PRLI *npr;
1699
1700 cmdiocb = (struct lpfc_iocbq *) arg;
1701 rspiocb = cmdiocb->context_un.rsp_iocb;
1702 npr = (PRLI *)lpfc_check_elscmpl_iocb(phba, cmdiocb, rspiocb);
1703
1704 irsp = &rspiocb->iocb;
1705 if (irsp->ulpStatus) {
James Smart858c9f62007-06-17 19:56:39 -05001706 if ((vport->port_type == LPFC_NPIV_PORT) &&
James Smart3de2a652007-08-02 11:09:59 -04001707 vport->cfg_restrict_login) {
James Smart858c9f62007-06-17 19:56:39 -05001708 goto out;
1709 }
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001710 ndlp->nlp_prev_state = NLP_STE_PRLI_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001711 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001712 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001713 }
1714
1715 /* Check out PRLI rsp */
1716 ndlp->nlp_type &= ~(NLP_FCP_TARGET | NLP_FCP_INITIATOR);
1717 ndlp->nlp_fcp_info &= ~NLP_FCP_2_DEVICE;
James Smart3cb01c52013-07-15 18:35:04 -04001718 ndlp->nlp_flag &= ~NLP_FIRSTBURST;
dea31012005-04-17 16:05:31 -05001719 if ((npr->acceptRspCode == PRLI_REQ_EXECUTED) &&
1720 (npr->prliType == PRLI_FCP_TYPE)) {
1721 if (npr->initiatorFunc)
1722 ndlp->nlp_type |= NLP_FCP_INITIATOR;
James Smart3cb01c52013-07-15 18:35:04 -04001723 if (npr->targetFunc) {
dea31012005-04-17 16:05:31 -05001724 ndlp->nlp_type |= NLP_FCP_TARGET;
James Smart3cb01c52013-07-15 18:35:04 -04001725 if (npr->writeXferRdyDis)
1726 ndlp->nlp_flag |= NLP_FIRSTBURST;
1727 }
dea31012005-04-17 16:05:31 -05001728 if (npr->Retry)
1729 ndlp->nlp_fcp_info |= NLP_FCP_2_DEVICE;
1730 }
James Smart92d7f7b2007-06-17 19:56:38 -05001731 if (!(ndlp->nlp_type & NLP_FCP_TARGET) &&
1732 (vport->port_type == LPFC_NPIV_PORT) &&
James Smart3de2a652007-08-02 11:09:59 -04001733 vport->cfg_restrict_login) {
James Smart858c9f62007-06-17 19:56:39 -05001734out:
James Smart92d7f7b2007-06-17 19:56:38 -05001735 spin_lock_irq(shost->host_lock);
1736 ndlp->nlp_flag |= NLP_TARGET_REMOVE;
1737 spin_unlock_irq(shost->host_lock);
1738 lpfc_issue_els_logo(vport, ndlp, 0);
1739
1740 ndlp->nlp_prev_state = NLP_STE_PRLI_ISSUE;
James Smart87af33f2007-10-27 13:37:43 -04001741 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
James Smart92d7f7b2007-06-17 19:56:38 -05001742 return ndlp->nlp_state;
1743 }
dea31012005-04-17 16:05:31 -05001744
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001745 ndlp->nlp_prev_state = NLP_STE_PRLI_ISSUE;
James Smart92d7f7b2007-06-17 19:56:38 -05001746 if (ndlp->nlp_type & NLP_FCP_TARGET)
1747 lpfc_nlp_set_state(vport, ndlp, NLP_STE_MAPPED_NODE);
1748 else
1749 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001750 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001751}
1752
1753/*! lpfc_device_rm_prli_issue
James Smart92d7f7b2007-06-17 19:56:38 -05001754 *
1755 * \pre
1756 * \post
1757 * \param phba
1758 * \param ndlp
1759 * \param arg
1760 * \param evt
1761 * \return uint32_t
1762 *
1763 * \b Description:
1764 * This routine is envoked when we a request to remove a nport we are in the
1765 * process of PRLIing. We should software abort outstanding prli, unreg
1766 * login, send a logout. We will change node state to UNUSED_NODE, put it
1767 * on plogi list so it can be freed when LOGO completes.
1768 *
1769 */
1770
dea31012005-04-17 16:05:31 -05001771static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001772lpfc_device_rm_prli_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1773 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001774{
James Smart2e0fef82007-06-17 19:56:36 -05001775 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05001776
James Smart2e0fef82007-06-17 19:56:36 -05001777 if (ndlp->nlp_flag & NLP_NPR_2B_DISC) {
1778 spin_lock_irq(shost->host_lock);
1779 ndlp->nlp_flag |= NLP_NODEV_REMOVE;
1780 spin_unlock_irq(shost->host_lock);
1781 return ndlp->nlp_state;
1782 } else {
1783 /* software abort outstanding PLOGI */
1784 lpfc_els_abort(vport->phba, ndlp);
1785
1786 lpfc_drop_node(vport, ndlp);
James Smarta0f9b482006-04-15 11:52:56 -04001787 return NLP_STE_FREED_NODE;
1788 }
dea31012005-04-17 16:05:31 -05001789}
1790
1791
1792/*! lpfc_device_recov_prli_issue
James Smart92d7f7b2007-06-17 19:56:38 -05001793 *
1794 * \pre
1795 * \post
1796 * \param phba
1797 * \param ndlp
1798 * \param arg
1799 * \param evt
1800 * \return uint32_t
1801 *
1802 * \b Description:
1803 * The routine is envoked when the state of a device is unknown, like
1804 * during a link down. We should remove the nodelist entry from the
1805 * unmapped list, issue a UNREG_LOGIN, do a software abort of the
1806 * outstanding PRLI command, then free the node entry.
1807 */
dea31012005-04-17 16:05:31 -05001808static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001809lpfc_device_recov_prli_issue(struct lpfc_vport *vport,
1810 struct lpfc_nodelist *ndlp,
1811 void *arg,
1812 uint32_t evt)
dea31012005-04-17 16:05:31 -05001813{
James Smart2e0fef82007-06-17 19:56:36 -05001814 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1815 struct lpfc_hba *phba = vport->phba;
1816
James Smart92d7f7b2007-06-17 19:56:38 -05001817 /* Don't do anything that will mess up processing of the
1818 * previous RSCN.
1819 */
1820 if (vport->fc_flag & FC_RSCN_DEFERRED)
1821 return ndlp->nlp_state;
1822
dea31012005-04-17 16:05:31 -05001823 /* software abort outstanding PRLI */
James Smart07951072007-04-25 09:51:38 -04001824 lpfc_els_abort(phba, ndlp);
dea31012005-04-17 16:05:31 -05001825
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001826 ndlp->nlp_prev_state = NLP_STE_PRLI_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001827 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
1828 spin_lock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04001829 ndlp->nlp_flag &= ~(NLP_NODEV_REMOVE | NLP_NPR_2B_DISC);
James Smart2e0fef82007-06-17 19:56:36 -05001830 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05001831 lpfc_disc_set_adisc(vport, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001832 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001833}
1834
1835static uint32_t
James Smart086a3452012-08-14 14:25:21 -04001836lpfc_rcv_plogi_logo_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1837 void *arg, uint32_t evt)
1838{
1839 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *)arg;
1840 struct ls_rjt stat;
1841
1842 memset(&stat, 0, sizeof(struct ls_rjt));
1843 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
1844 stat.un.b.lsRjtRsnCodeExp = LSEXP_NOTHING_MORE;
1845 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
1846 return ndlp->nlp_state;
1847}
1848
1849static uint32_t
1850lpfc_rcv_prli_logo_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1851 void *arg, uint32_t evt)
1852{
1853 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *)arg;
1854 struct ls_rjt stat;
1855
1856 memset(&stat, 0, sizeof(struct ls_rjt));
1857 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
1858 stat.un.b.lsRjtRsnCodeExp = LSEXP_NOTHING_MORE;
1859 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
1860 return ndlp->nlp_state;
1861}
1862
1863static uint32_t
1864lpfc_rcv_logo_logo_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1865 void *arg, uint32_t evt)
1866{
1867 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1868 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *)arg;
1869
1870 spin_lock_irq(shost->host_lock);
1871 ndlp->nlp_flag &= NLP_LOGO_ACC;
1872 spin_unlock_irq(shost->host_lock);
1873 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
1874 return ndlp->nlp_state;
1875}
1876
1877static uint32_t
1878lpfc_rcv_padisc_logo_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1879 void *arg, uint32_t evt)
1880{
1881 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *)arg;
1882 struct ls_rjt stat;
1883
1884 memset(&stat, 0, sizeof(struct ls_rjt));
1885 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
1886 stat.un.b.lsRjtRsnCodeExp = LSEXP_NOTHING_MORE;
1887 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
1888 return ndlp->nlp_state;
1889}
1890
1891static uint32_t
1892lpfc_rcv_prlo_logo_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1893 void *arg, uint32_t evt)
1894{
1895 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *)arg;
1896 struct ls_rjt stat;
1897
1898 memset(&stat, 0, sizeof(struct ls_rjt));
1899 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
1900 stat.un.b.lsRjtRsnCodeExp = LSEXP_NOTHING_MORE;
1901 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
1902 return ndlp->nlp_state;
1903}
1904
1905static uint32_t
1906lpfc_cmpl_logo_logo_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1907 void *arg, uint32_t evt)
1908{
1909 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1910
1911 ndlp->nlp_prev_state = NLP_STE_LOGO_ISSUE;
1912 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
1913 spin_lock_irq(shost->host_lock);
1914 ndlp->nlp_flag &= ~(NLP_NODEV_REMOVE | NLP_NPR_2B_DISC);
1915 spin_unlock_irq(shost->host_lock);
1916 lpfc_disc_set_adisc(vport, ndlp);
1917 return ndlp->nlp_state;
1918}
1919
1920static uint32_t
1921lpfc_device_rm_logo_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1922 void *arg, uint32_t evt)
1923{
1924 /*
1925 * Take no action. If a LOGO is outstanding, then possibly DevLoss has
1926 * timed out and is calling for Device Remove. In this case, the LOGO
1927 * must be allowed to complete in state LOGO_ISSUE so that the rpi
1928 * and other NLP flags are correctly cleaned up.
1929 */
1930 return ndlp->nlp_state;
1931}
1932
1933static uint32_t
1934lpfc_device_recov_logo_issue(struct lpfc_vport *vport,
1935 struct lpfc_nodelist *ndlp,
1936 void *arg, uint32_t evt)
1937{
1938 /*
1939 * Device Recovery events have no meaning for a node with a LOGO
1940 * outstanding. The LOGO has to complete first and handle the
1941 * node from that point.
1942 */
1943 return ndlp->nlp_state;
1944}
1945
1946static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001947lpfc_rcv_plogi_unmap_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1948 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001949{
James Smart2e0fef82007-06-17 19:56:36 -05001950 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001951
James Smart2e0fef82007-06-17 19:56:36 -05001952 lpfc_rcv_plogi(vport, ndlp, cmdiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001953 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001954}
1955
1956static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001957lpfc_rcv_prli_unmap_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1958 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001959{
James Smart2e0fef82007-06-17 19:56:36 -05001960 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001961
James Smart2e0fef82007-06-17 19:56:36 -05001962 lpfc_rcv_prli(vport, ndlp, cmdiocb);
1963 lpfc_els_rsp_prli_acc(vport, cmdiocb, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001964 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001965}
1966
1967static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001968lpfc_rcv_logo_unmap_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1969 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001970{
James Smart2e0fef82007-06-17 19:56:36 -05001971 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001972
James Smart2e0fef82007-06-17 19:56:36 -05001973 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_LOGO);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001974 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001975}
1976
1977static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001978lpfc_rcv_padisc_unmap_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1979 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001980{
James Smart2e0fef82007-06-17 19:56:36 -05001981 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001982
James Smart2e0fef82007-06-17 19:56:36 -05001983 lpfc_rcv_padisc(vport, ndlp, cmdiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001984 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001985}
1986
1987static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001988lpfc_rcv_prlo_unmap_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1989 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001990{
James Smart2e0fef82007-06-17 19:56:36 -05001991 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001992
James Smart51ef4c22007-08-02 11:10:31 -04001993 lpfc_els_rsp_acc(vport, ELS_CMD_PRLO, cmdiocb, ndlp, NULL);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001994 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001995}
1996
1997static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001998lpfc_device_recov_unmap_node(struct lpfc_vport *vport,
1999 struct lpfc_nodelist *ndlp,
2000 void *arg,
2001 uint32_t evt)
dea31012005-04-17 16:05:31 -05002002{
James Smart2e0fef82007-06-17 19:56:36 -05002003 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2004
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05002005 ndlp->nlp_prev_state = NLP_STE_UNMAPPED_NODE;
James Smart2e0fef82007-06-17 19:56:36 -05002006 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
2007 spin_lock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04002008 ndlp->nlp_flag &= ~(NLP_NODEV_REMOVE | NLP_NPR_2B_DISC);
James Smart2e0fef82007-06-17 19:56:36 -05002009 spin_unlock_irq(shost->host_lock);
2010 lpfc_disc_set_adisc(vport, ndlp);
dea31012005-04-17 16:05:31 -05002011
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002012 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05002013}
2014
2015static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05002016lpfc_rcv_plogi_mapped_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2017 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05002018{
James Smart2e0fef82007-06-17 19:56:36 -05002019 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05002020
James Smart2e0fef82007-06-17 19:56:36 -05002021 lpfc_rcv_plogi(vport, ndlp, cmdiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002022 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05002023}
2024
2025static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05002026lpfc_rcv_prli_mapped_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2027 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05002028{
James Smart2e0fef82007-06-17 19:56:36 -05002029 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05002030
James Smart2e0fef82007-06-17 19:56:36 -05002031 lpfc_els_rsp_prli_acc(vport, cmdiocb, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002032 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05002033}
2034
2035static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05002036lpfc_rcv_logo_mapped_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2037 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05002038{
James Smart2e0fef82007-06-17 19:56:36 -05002039 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05002040
James Smart2e0fef82007-06-17 19:56:36 -05002041 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_LOGO);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002042 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05002043}
2044
2045static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05002046lpfc_rcv_padisc_mapped_node(struct lpfc_vport *vport,
2047 struct lpfc_nodelist *ndlp,
2048 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05002049{
James Smart2e0fef82007-06-17 19:56:36 -05002050 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05002051
James Smart2e0fef82007-06-17 19:56:36 -05002052 lpfc_rcv_padisc(vport, ndlp, cmdiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002053 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05002054}
2055
2056static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05002057lpfc_rcv_prlo_mapped_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2058 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05002059{
James Smart2e0fef82007-06-17 19:56:36 -05002060 struct lpfc_hba *phba = vport->phba;
2061 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05002062
2063 /* flush the target */
James Smart51ef4c22007-08-02 11:10:31 -04002064 lpfc_sli_abort_iocb(vport, &phba->sli.ring[phba->sli.fcp_ring],
2065 ndlp->nlp_sid, 0, LPFC_CTX_TGT);
dea31012005-04-17 16:05:31 -05002066
2067 /* Treat like rcv logo */
James Smart2e0fef82007-06-17 19:56:36 -05002068 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_PRLO);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002069 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05002070}
2071
2072static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05002073lpfc_device_recov_mapped_node(struct lpfc_vport *vport,
2074 struct lpfc_nodelist *ndlp,
2075 void *arg,
2076 uint32_t evt)
dea31012005-04-17 16:05:31 -05002077{
James Smart2e0fef82007-06-17 19:56:36 -05002078 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2079
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05002080 ndlp->nlp_prev_state = NLP_STE_MAPPED_NODE;
James Smart2e0fef82007-06-17 19:56:36 -05002081 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
2082 spin_lock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04002083 ndlp->nlp_flag &= ~(NLP_NODEV_REMOVE | NLP_NPR_2B_DISC);
James Smart2e0fef82007-06-17 19:56:36 -05002084 spin_unlock_irq(shost->host_lock);
2085 lpfc_disc_set_adisc(vport, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002086 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05002087}
2088
2089static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05002090lpfc_rcv_plogi_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2091 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05002092{
James Smart2e0fef82007-06-17 19:56:36 -05002093 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2094 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05002095
2096 /* Ignore PLOGI if we have an outstanding LOGO */
James Smart0d2b6b82008-06-14 22:52:47 -04002097 if (ndlp->nlp_flag & (NLP_LOGO_SND | NLP_LOGO_ACC))
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002098 return ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05002099 if (lpfc_rcv_plogi(vport, ndlp, cmdiocb)) {
James Smart0d2b6b82008-06-14 22:52:47 -04002100 lpfc_cancel_retry_delay_tmo(vport, ndlp);
James Smart2e0fef82007-06-17 19:56:36 -05002101 spin_lock_irq(shost->host_lock);
James Smart0d2b6b82008-06-14 22:52:47 -04002102 ndlp->nlp_flag &= ~(NLP_NPR_ADISC | NLP_NPR_2B_DISC);
James Smart2e0fef82007-06-17 19:56:36 -05002103 spin_unlock_irq(shost->host_lock);
James Smart0d2b6b82008-06-14 22:52:47 -04002104 } else if (!(ndlp->nlp_flag & NLP_NPR_2B_DISC)) {
2105 /* send PLOGI immediately, move to PLOGI issue state */
2106 if (!(ndlp->nlp_flag & NLP_DELAY_TMO)) {
2107 ndlp->nlp_prev_state = NLP_STE_NPR_NODE;
2108 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
2109 lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0);
2110 }
dea31012005-04-17 16:05:31 -05002111 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002112 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05002113}
2114
2115static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05002116lpfc_rcv_prli_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2117 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05002118{
James Smart2e0fef82007-06-17 19:56:36 -05002119 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2120 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
2121 struct ls_rjt stat;
dea31012005-04-17 16:05:31 -05002122
2123 memset(&stat, 0, sizeof (struct ls_rjt));
2124 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
2125 stat.un.b.lsRjtRsnCodeExp = LSEXP_NOTHING_MORE;
James Smart858c9f62007-06-17 19:56:39 -05002126 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
dea31012005-04-17 16:05:31 -05002127
2128 if (!(ndlp->nlp_flag & NLP_DELAY_TMO)) {
2129 if (ndlp->nlp_flag & NLP_NPR_ADISC) {
James Smart2e0fef82007-06-17 19:56:36 -05002130 spin_lock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002131 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05002132 ndlp->nlp_prev_state = NLP_STE_NPR_NODE;
James Smart2e0fef82007-06-17 19:56:36 -05002133 spin_unlock_irq(shost->host_lock);
2134 lpfc_nlp_set_state(vport, ndlp, NLP_STE_ADISC_ISSUE);
2135 lpfc_issue_els_adisc(vport, ndlp, 0);
dea31012005-04-17 16:05:31 -05002136 } else {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05002137 ndlp->nlp_prev_state = NLP_STE_NPR_NODE;
James Smart2e0fef82007-06-17 19:56:36 -05002138 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
2139 lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0);
dea31012005-04-17 16:05:31 -05002140 }
2141 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002142 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05002143}
2144
2145static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05002146lpfc_rcv_logo_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2147 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05002148{
James Smart2e0fef82007-06-17 19:56:36 -05002149 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05002150
James Smart2e0fef82007-06-17 19:56:36 -05002151 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_LOGO);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002152 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05002153}
2154
2155static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05002156lpfc_rcv_padisc_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2157 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05002158{
James Smart2e0fef82007-06-17 19:56:36 -05002159 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05002160
James Smart2e0fef82007-06-17 19:56:36 -05002161 lpfc_rcv_padisc(vport, ndlp, cmdiocb);
James Smart33ccf8d2006-08-17 11:57:58 -04002162 /*
2163 * Do not start discovery if discovery is about to start
2164 * or discovery in progress for this node. Starting discovery
2165 * here will affect the counting of discovery threads.
2166 */
James Smart2fb9bd82006-12-02 13:33:57 -05002167 if (!(ndlp->nlp_flag & NLP_DELAY_TMO) &&
James Smart92d7f7b2007-06-17 19:56:38 -05002168 !(ndlp->nlp_flag & NLP_NPR_2B_DISC)) {
dea31012005-04-17 16:05:31 -05002169 if (ndlp->nlp_flag & NLP_NPR_ADISC) {
James Smart92d7f7b2007-06-17 19:56:38 -05002170 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05002171 ndlp->nlp_prev_state = NLP_STE_NPR_NODE;
James Smart2e0fef82007-06-17 19:56:36 -05002172 lpfc_nlp_set_state(vport, ndlp, NLP_STE_ADISC_ISSUE);
2173 lpfc_issue_els_adisc(vport, ndlp, 0);
dea31012005-04-17 16:05:31 -05002174 } else {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05002175 ndlp->nlp_prev_state = NLP_STE_NPR_NODE;
James Smart2e0fef82007-06-17 19:56:36 -05002176 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
2177 lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0);
dea31012005-04-17 16:05:31 -05002178 }
2179 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002180 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05002181}
2182
2183static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05002184lpfc_rcv_prlo_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2185 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05002186{
James Smart2e0fef82007-06-17 19:56:36 -05002187 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2188 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05002189
James Smart2e0fef82007-06-17 19:56:36 -05002190 spin_lock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002191 ndlp->nlp_flag |= NLP_LOGO_ACC;
James Smart2e0fef82007-06-17 19:56:36 -05002192 spin_unlock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002193
James Smart51ef4c22007-08-02 11:10:31 -04002194 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
dea31012005-04-17 16:05:31 -05002195
James Smart2e0fef82007-06-17 19:56:36 -05002196 if ((ndlp->nlp_flag & NLP_DELAY_TMO) == 0) {
James Smart256ec0d2013-04-17 20:14:58 -04002197 mod_timer(&ndlp->nlp_delayfunc,
2198 jiffies + msecs_to_jiffies(1000 * 1));
James Smart2e0fef82007-06-17 19:56:36 -05002199 spin_lock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002200 ndlp->nlp_flag |= NLP_DELAY_TMO;
2201 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
James Smart2e0fef82007-06-17 19:56:36 -05002202 spin_unlock_irq(shost->host_lock);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05002203 ndlp->nlp_last_elscmd = ELS_CMD_PLOGI;
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002204 } else {
James Smart2e0fef82007-06-17 19:56:36 -05002205 spin_lock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002206 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
James Smart2e0fef82007-06-17 19:56:36 -05002207 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002208 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002209 return ndlp->nlp_state;
2210}
dea31012005-04-17 16:05:31 -05002211
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002212static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05002213lpfc_cmpl_plogi_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2214 void *arg, uint32_t evt)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002215{
2216 struct lpfc_iocbq *cmdiocb, *rspiocb;
James Smarta0f9b482006-04-15 11:52:56 -04002217 IOCB_t *irsp;
James Smart8b455cf2013-01-03 15:43:53 -05002218 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002219
2220 cmdiocb = (struct lpfc_iocbq *) arg;
2221 rspiocb = cmdiocb->context_un.rsp_iocb;
James Smarta0f9b482006-04-15 11:52:56 -04002222
2223 irsp = &rspiocb->iocb;
2224 if (irsp->ulpStatus) {
James Smart8b455cf2013-01-03 15:43:53 -05002225 spin_lock_irq(shost->host_lock);
James Smarta8adb832007-10-27 13:37:53 -04002226 ndlp->nlp_flag |= NLP_DEFER_RM;
James Smart8b455cf2013-01-03 15:43:53 -05002227 spin_unlock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04002228 return NLP_STE_FREED_NODE;
2229 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002230 return ndlp->nlp_state;
2231}
2232
2233static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05002234lpfc_cmpl_prli_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2235 void *arg, uint32_t evt)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002236{
2237 struct lpfc_iocbq *cmdiocb, *rspiocb;
James Smarta0f9b482006-04-15 11:52:56 -04002238 IOCB_t *irsp;
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002239
2240 cmdiocb = (struct lpfc_iocbq *) arg;
2241 rspiocb = cmdiocb->context_un.rsp_iocb;
James Smarta0f9b482006-04-15 11:52:56 -04002242
2243 irsp = &rspiocb->iocb;
2244 if (irsp->ulpStatus && (ndlp->nlp_flag & NLP_NODEV_REMOVE)) {
James Smart2e0fef82007-06-17 19:56:36 -05002245 lpfc_drop_node(vport, ndlp);
James Smarta0f9b482006-04-15 11:52:56 -04002246 return NLP_STE_FREED_NODE;
2247 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002248 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05002249}
2250
2251static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05002252lpfc_cmpl_logo_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2253 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05002254{
James Smartd7c255b2008-08-24 21:50:00 -04002255 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart086a3452012-08-14 14:25:21 -04002256
2257 /* For the fabric port just clear the fc flags. */
James Smartd7c255b2008-08-24 21:50:00 -04002258 if (ndlp->nlp_DID == Fabric_DID) {
2259 spin_lock_irq(shost->host_lock);
2260 vport->fc_flag &= ~(FC_FABRIC | FC_PUBLIC_LOOP);
2261 spin_unlock_irq(shost->host_lock);
2262 }
James Smart2e0fef82007-06-17 19:56:36 -05002263 lpfc_unreg_rpi(vport, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002264 return ndlp->nlp_state;
2265}
2266
2267static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05002268lpfc_cmpl_adisc_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2269 void *arg, uint32_t evt)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002270{
2271 struct lpfc_iocbq *cmdiocb, *rspiocb;
James Smarta0f9b482006-04-15 11:52:56 -04002272 IOCB_t *irsp;
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002273
2274 cmdiocb = (struct lpfc_iocbq *) arg;
2275 rspiocb = cmdiocb->context_un.rsp_iocb;
James Smarta0f9b482006-04-15 11:52:56 -04002276
2277 irsp = &rspiocb->iocb;
2278 if (irsp->ulpStatus && (ndlp->nlp_flag & NLP_NODEV_REMOVE)) {
James Smart2e0fef82007-06-17 19:56:36 -05002279 lpfc_drop_node(vport, ndlp);
James Smarta0f9b482006-04-15 11:52:56 -04002280 return NLP_STE_FREED_NODE;
2281 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002282 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05002283}
2284
2285static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05002286lpfc_cmpl_reglogin_npr_node(struct lpfc_vport *vport,
2287 struct lpfc_nodelist *ndlp,
2288 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05002289{
James Smart2e0fef82007-06-17 19:56:36 -05002290 LPFC_MBOXQ_t *pmb = (LPFC_MBOXQ_t *) arg;
James Smart04c68492009-05-22 14:52:52 -04002291 MAILBOX_t *mb = &pmb->u.mb;
dea31012005-04-17 16:05:31 -05002292
James Smart04c68492009-05-22 14:52:52 -04002293 if (!mb->mbxStatus) {
James Smart6d368e52011-05-24 11:44:12 -04002294 /* SLI4 ports have preallocated logical rpis. */
2295 if (vport->phba->sli_rev < LPFC_SLI_REV4)
2296 ndlp->nlp_rpi = mb->un.varWords[0];
James Smart40426292010-12-15 17:58:10 -05002297 ndlp->nlp_flag |= NLP_RPI_REGISTERED;
James Smart04c68492009-05-22 14:52:52 -04002298 } else {
James Smarta0f9b482006-04-15 11:52:56 -04002299 if (ndlp->nlp_flag & NLP_NODEV_REMOVE) {
James Smart2e0fef82007-06-17 19:56:36 -05002300 lpfc_drop_node(vport, ndlp);
James Smarta0f9b482006-04-15 11:52:56 -04002301 return NLP_STE_FREED_NODE;
2302 }
2303 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002304 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05002305}
2306
2307static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05002308lpfc_device_rm_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2309 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05002310{
James Smart2e0fef82007-06-17 19:56:36 -05002311 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2312
James Smarta0f9b482006-04-15 11:52:56 -04002313 if (ndlp->nlp_flag & NLP_NPR_2B_DISC) {
James Smart2e0fef82007-06-17 19:56:36 -05002314 spin_lock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04002315 ndlp->nlp_flag |= NLP_NODEV_REMOVE;
James Smart2e0fef82007-06-17 19:56:36 -05002316 spin_unlock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04002317 return ndlp->nlp_state;
2318 }
James Smart2e0fef82007-06-17 19:56:36 -05002319 lpfc_drop_node(vport, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002320 return NLP_STE_FREED_NODE;
dea31012005-04-17 16:05:31 -05002321}
2322
2323static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05002324lpfc_device_recov_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2325 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05002326{
James Smart2e0fef82007-06-17 19:56:36 -05002327 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2328
James Smart92d7f7b2007-06-17 19:56:38 -05002329 /* Don't do anything that will mess up processing of the
2330 * previous RSCN.
2331 */
2332 if (vport->fc_flag & FC_RSCN_DEFERRED)
2333 return ndlp->nlp_state;
2334
James Smarteaf15d52008-12-04 22:39:29 -05002335 lpfc_cancel_retry_delay_tmo(vport, ndlp);
James Smart2e0fef82007-06-17 19:56:36 -05002336 spin_lock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04002337 ndlp->nlp_flag &= ~(NLP_NODEV_REMOVE | NLP_NPR_2B_DISC);
James Smart2e0fef82007-06-17 19:56:36 -05002338 spin_unlock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002339 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05002340}
2341
2342
2343/* This next section defines the NPort Discovery State Machine */
2344
2345/* There are 4 different double linked lists nodelist entries can reside on.
2346 * The plogi list and adisc list are used when Link Up discovery or RSCN
2347 * processing is needed. Each list holds the nodes that we will send PLOGI
2348 * or ADISC on. These lists will keep track of what nodes will be effected
2349 * by an RSCN, or a Link Up (Typically, all nodes are effected on Link Up).
2350 * The unmapped_list will contain all nodes that we have successfully logged
2351 * into at the Fibre Channel level. The mapped_list will contain all nodes
2352 * that are mapped FCP targets.
2353 */
2354/*
2355 * The bind list is a list of undiscovered (potentially non-existent) nodes
2356 * that we have saved binding information on. This information is used when
2357 * nodes transition from the unmapped to the mapped list.
2358 */
2359/* For UNUSED_NODE state, the node has just been allocated .
2360 * For PLOGI_ISSUE and REG_LOGIN_ISSUE, the node is on
2361 * the PLOGI list. For REG_LOGIN_COMPL, the node is taken off the PLOGI list
2362 * and put on the unmapped list. For ADISC processing, the node is taken off
2363 * the ADISC list and placed on either the mapped or unmapped list (depending
2364 * on its previous state). Once on the unmapped list, a PRLI is issued and the
2365 * state changed to PRLI_ISSUE. When the PRLI completion occurs, the state is
2366 * changed to UNMAPPED_NODE. If the completion indicates a mapped
2367 * node, the node is taken off the unmapped list. The binding list is checked
2368 * for a valid binding, or a binding is automatically assigned. If binding
2369 * assignment is unsuccessful, the node is left on the unmapped list. If
2370 * binding assignment is successful, the associated binding list entry (if
2371 * any) is removed, and the node is placed on the mapped list.
2372 */
2373/*
2374 * For a Link Down, all nodes on the ADISC, PLOGI, unmapped or mapped
James Smartc01f3202006-08-18 17:47:08 -04002375 * lists will receive a DEVICE_RECOVERY event. If the linkdown or devloss timers
dea31012005-04-17 16:05:31 -05002376 * expire, all effected nodes will receive a DEVICE_RM event.
2377 */
2378/*
2379 * For a Link Up or RSCN, all nodes will move from the mapped / unmapped lists
2380 * to either the ADISC or PLOGI list. After a Nameserver query or ALPA loopmap
2381 * check, additional nodes may be added or removed (via DEVICE_RM) to / from
2382 * the PLOGI or ADISC lists. Once the PLOGI and ADISC lists are populated,
2383 * we will first process the ADISC list. 32 entries are processed initially and
2384 * ADISC is initited for each one. Completions / Events for each node are
2385 * funnelled thru the state machine. As each node finishes ADISC processing, it
2386 * starts ADISC for any nodes waiting for ADISC processing. If no nodes are
2387 * waiting, and the ADISC list count is identically 0, then we are done. For
2388 * Link Up discovery, since all nodes on the PLOGI list are UNREG_LOGIN'ed, we
2389 * can issue a CLEAR_LA and reenable Link Events. Next we will process the PLOGI
2390 * list. 32 entries are processed initially and PLOGI is initited for each one.
2391 * Completions / Events for each node are funnelled thru the state machine. As
2392 * each node finishes PLOGI processing, it starts PLOGI for any nodes waiting
2393 * for PLOGI processing. If no nodes are waiting, and the PLOGI list count is
2394 * indentically 0, then we are done. We have now completed discovery / RSCN
2395 * handling. Upon completion, ALL nodes should be on either the mapped or
2396 * unmapped lists.
2397 */
2398
2399static uint32_t (*lpfc_disc_action[NLP_STE_MAX_STATE * NLP_EVT_MAX_EVENT])
James Smart2e0fef82007-06-17 19:56:36 -05002400 (struct lpfc_vport *, struct lpfc_nodelist *, void *, uint32_t) = {
dea31012005-04-17 16:05:31 -05002401 /* Action routine Event Current State */
2402 lpfc_rcv_plogi_unused_node, /* RCV_PLOGI UNUSED_NODE */
2403 lpfc_rcv_els_unused_node, /* RCV_PRLI */
2404 lpfc_rcv_logo_unused_node, /* RCV_LOGO */
2405 lpfc_rcv_els_unused_node, /* RCV_ADISC */
2406 lpfc_rcv_els_unused_node, /* RCV_PDISC */
2407 lpfc_rcv_els_unused_node, /* RCV_PRLO */
2408 lpfc_disc_illegal, /* CMPL_PLOGI */
2409 lpfc_disc_illegal, /* CMPL_PRLI */
2410 lpfc_cmpl_logo_unused_node, /* CMPL_LOGO */
2411 lpfc_disc_illegal, /* CMPL_ADISC */
2412 lpfc_disc_illegal, /* CMPL_REG_LOGIN */
2413 lpfc_device_rm_unused_node, /* DEVICE_RM */
James Smartdf9e1b52011-12-13 13:22:17 -05002414 lpfc_device_recov_unused_node, /* DEVICE_RECOVERY */
dea31012005-04-17 16:05:31 -05002415
2416 lpfc_rcv_plogi_plogi_issue, /* RCV_PLOGI PLOGI_ISSUE */
James Smart92d7f7b2007-06-17 19:56:38 -05002417 lpfc_rcv_prli_plogi_issue, /* RCV_PRLI */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002418 lpfc_rcv_logo_plogi_issue, /* RCV_LOGO */
dea31012005-04-17 16:05:31 -05002419 lpfc_rcv_els_plogi_issue, /* RCV_ADISC */
2420 lpfc_rcv_els_plogi_issue, /* RCV_PDISC */
2421 lpfc_rcv_els_plogi_issue, /* RCV_PRLO */
2422 lpfc_cmpl_plogi_plogi_issue, /* CMPL_PLOGI */
2423 lpfc_disc_illegal, /* CMPL_PRLI */
James Smart0ff10d42008-01-11 01:52:36 -05002424 lpfc_cmpl_logo_plogi_issue, /* CMPL_LOGO */
dea31012005-04-17 16:05:31 -05002425 lpfc_disc_illegal, /* CMPL_ADISC */
James Smart0ff10d42008-01-11 01:52:36 -05002426 lpfc_cmpl_reglogin_plogi_issue,/* CMPL_REG_LOGIN */
dea31012005-04-17 16:05:31 -05002427 lpfc_device_rm_plogi_issue, /* DEVICE_RM */
2428 lpfc_device_recov_plogi_issue, /* DEVICE_RECOVERY */
2429
2430 lpfc_rcv_plogi_adisc_issue, /* RCV_PLOGI ADISC_ISSUE */
2431 lpfc_rcv_prli_adisc_issue, /* RCV_PRLI */
2432 lpfc_rcv_logo_adisc_issue, /* RCV_LOGO */
2433 lpfc_rcv_padisc_adisc_issue, /* RCV_ADISC */
2434 lpfc_rcv_padisc_adisc_issue, /* RCV_PDISC */
2435 lpfc_rcv_prlo_adisc_issue, /* RCV_PRLO */
2436 lpfc_disc_illegal, /* CMPL_PLOGI */
2437 lpfc_disc_illegal, /* CMPL_PRLI */
2438 lpfc_disc_illegal, /* CMPL_LOGO */
2439 lpfc_cmpl_adisc_adisc_issue, /* CMPL_ADISC */
2440 lpfc_disc_illegal, /* CMPL_REG_LOGIN */
2441 lpfc_device_rm_adisc_issue, /* DEVICE_RM */
2442 lpfc_device_recov_adisc_issue, /* DEVICE_RECOVERY */
2443
2444 lpfc_rcv_plogi_reglogin_issue, /* RCV_PLOGI REG_LOGIN_ISSUE */
2445 lpfc_rcv_prli_reglogin_issue, /* RCV_PLOGI */
2446 lpfc_rcv_logo_reglogin_issue, /* RCV_LOGO */
2447 lpfc_rcv_padisc_reglogin_issue, /* RCV_ADISC */
2448 lpfc_rcv_padisc_reglogin_issue, /* RCV_PDISC */
2449 lpfc_rcv_prlo_reglogin_issue, /* RCV_PRLO */
James Smart87af33f2007-10-27 13:37:43 -04002450 lpfc_cmpl_plogi_illegal, /* CMPL_PLOGI */
dea31012005-04-17 16:05:31 -05002451 lpfc_disc_illegal, /* CMPL_PRLI */
2452 lpfc_disc_illegal, /* CMPL_LOGO */
2453 lpfc_disc_illegal, /* CMPL_ADISC */
2454 lpfc_cmpl_reglogin_reglogin_issue,/* CMPL_REG_LOGIN */
2455 lpfc_device_rm_reglogin_issue, /* DEVICE_RM */
2456 lpfc_device_recov_reglogin_issue,/* DEVICE_RECOVERY */
2457
2458 lpfc_rcv_plogi_prli_issue, /* RCV_PLOGI PRLI_ISSUE */
2459 lpfc_rcv_prli_prli_issue, /* RCV_PRLI */
2460 lpfc_rcv_logo_prli_issue, /* RCV_LOGO */
2461 lpfc_rcv_padisc_prli_issue, /* RCV_ADISC */
2462 lpfc_rcv_padisc_prli_issue, /* RCV_PDISC */
2463 lpfc_rcv_prlo_prli_issue, /* RCV_PRLO */
James Smart87af33f2007-10-27 13:37:43 -04002464 lpfc_cmpl_plogi_illegal, /* CMPL_PLOGI */
dea31012005-04-17 16:05:31 -05002465 lpfc_cmpl_prli_prli_issue, /* CMPL_PRLI */
2466 lpfc_disc_illegal, /* CMPL_LOGO */
2467 lpfc_disc_illegal, /* CMPL_ADISC */
2468 lpfc_disc_illegal, /* CMPL_REG_LOGIN */
2469 lpfc_device_rm_prli_issue, /* DEVICE_RM */
2470 lpfc_device_recov_prli_issue, /* DEVICE_RECOVERY */
2471
James Smart086a3452012-08-14 14:25:21 -04002472 lpfc_rcv_plogi_logo_issue, /* RCV_PLOGI LOGO_ISSUE */
2473 lpfc_rcv_prli_logo_issue, /* RCV_PRLI */
2474 lpfc_rcv_logo_logo_issue, /* RCV_LOGO */
2475 lpfc_rcv_padisc_logo_issue, /* RCV_ADISC */
2476 lpfc_rcv_padisc_logo_issue, /* RCV_PDISC */
2477 lpfc_rcv_prlo_logo_issue, /* RCV_PRLO */
2478 lpfc_cmpl_plogi_illegal, /* CMPL_PLOGI */
2479 lpfc_disc_illegal, /* CMPL_PRLI */
2480 lpfc_cmpl_logo_logo_issue, /* CMPL_LOGO */
2481 lpfc_disc_illegal, /* CMPL_ADISC */
2482 lpfc_disc_illegal, /* CMPL_REG_LOGIN */
2483 lpfc_device_rm_logo_issue, /* DEVICE_RM */
2484 lpfc_device_recov_logo_issue, /* DEVICE_RECOVERY */
2485
dea31012005-04-17 16:05:31 -05002486 lpfc_rcv_plogi_unmap_node, /* RCV_PLOGI UNMAPPED_NODE */
2487 lpfc_rcv_prli_unmap_node, /* RCV_PRLI */
2488 lpfc_rcv_logo_unmap_node, /* RCV_LOGO */
2489 lpfc_rcv_padisc_unmap_node, /* RCV_ADISC */
2490 lpfc_rcv_padisc_unmap_node, /* RCV_PDISC */
2491 lpfc_rcv_prlo_unmap_node, /* RCV_PRLO */
2492 lpfc_disc_illegal, /* CMPL_PLOGI */
2493 lpfc_disc_illegal, /* CMPL_PRLI */
2494 lpfc_disc_illegal, /* CMPL_LOGO */
2495 lpfc_disc_illegal, /* CMPL_ADISC */
2496 lpfc_disc_illegal, /* CMPL_REG_LOGIN */
2497 lpfc_disc_illegal, /* DEVICE_RM */
2498 lpfc_device_recov_unmap_node, /* DEVICE_RECOVERY */
2499
2500 lpfc_rcv_plogi_mapped_node, /* RCV_PLOGI MAPPED_NODE */
2501 lpfc_rcv_prli_mapped_node, /* RCV_PRLI */
2502 lpfc_rcv_logo_mapped_node, /* RCV_LOGO */
2503 lpfc_rcv_padisc_mapped_node, /* RCV_ADISC */
2504 lpfc_rcv_padisc_mapped_node, /* RCV_PDISC */
2505 lpfc_rcv_prlo_mapped_node, /* RCV_PRLO */
2506 lpfc_disc_illegal, /* CMPL_PLOGI */
2507 lpfc_disc_illegal, /* CMPL_PRLI */
2508 lpfc_disc_illegal, /* CMPL_LOGO */
2509 lpfc_disc_illegal, /* CMPL_ADISC */
2510 lpfc_disc_illegal, /* CMPL_REG_LOGIN */
2511 lpfc_disc_illegal, /* DEVICE_RM */
2512 lpfc_device_recov_mapped_node, /* DEVICE_RECOVERY */
2513
2514 lpfc_rcv_plogi_npr_node, /* RCV_PLOGI NPR_NODE */
2515 lpfc_rcv_prli_npr_node, /* RCV_PRLI */
2516 lpfc_rcv_logo_npr_node, /* RCV_LOGO */
2517 lpfc_rcv_padisc_npr_node, /* RCV_ADISC */
2518 lpfc_rcv_padisc_npr_node, /* RCV_PDISC */
2519 lpfc_rcv_prlo_npr_node, /* RCV_PRLO */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002520 lpfc_cmpl_plogi_npr_node, /* CMPL_PLOGI */
2521 lpfc_cmpl_prli_npr_node, /* CMPL_PRLI */
dea31012005-04-17 16:05:31 -05002522 lpfc_cmpl_logo_npr_node, /* CMPL_LOGO */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002523 lpfc_cmpl_adisc_npr_node, /* CMPL_ADISC */
dea31012005-04-17 16:05:31 -05002524 lpfc_cmpl_reglogin_npr_node, /* CMPL_REG_LOGIN */
2525 lpfc_device_rm_npr_node, /* DEVICE_RM */
2526 lpfc_device_recov_npr_node, /* DEVICE_RECOVERY */
2527};
2528
2529int
James Smart2e0fef82007-06-17 19:56:36 -05002530lpfc_disc_state_machine(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2531 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05002532{
2533 uint32_t cur_state, rc;
James Smart2e0fef82007-06-17 19:56:36 -05002534 uint32_t(*func) (struct lpfc_vport *, struct lpfc_nodelist *, void *,
dea31012005-04-17 16:05:31 -05002535 uint32_t);
James Smarte47c9092008-02-08 18:49:26 -05002536 uint32_t got_ndlp = 0;
dea31012005-04-17 16:05:31 -05002537
James Smarte47c9092008-02-08 18:49:26 -05002538 if (lpfc_nlp_get(ndlp))
2539 got_ndlp = 1;
2540
dea31012005-04-17 16:05:31 -05002541 cur_state = ndlp->nlp_state;
2542
2543 /* DSM in event <evt> on NPort <nlp_DID> in state <cur_state> */
James Smarte8b62012007-08-02 11:10:09 -04002544 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
2545 "0211 DSM in event x%x on NPort x%x in "
2546 "state %d Data: x%x\n",
2547 evt, ndlp->nlp_DID, cur_state, ndlp->nlp_flag);
dea31012005-04-17 16:05:31 -05002548
James Smart858c9f62007-06-17 19:56:39 -05002549 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_DSM,
2550 "DSM in: evt:%d ste:%d did:x%x",
2551 evt, cur_state, ndlp->nlp_DID);
2552
dea31012005-04-17 16:05:31 -05002553 func = lpfc_disc_action[(cur_state * NLP_EVT_MAX_EVENT) + evt];
James Smart2e0fef82007-06-17 19:56:36 -05002554 rc = (func) (vport, ndlp, arg, evt);
dea31012005-04-17 16:05:31 -05002555
2556 /* DSM out state <rc> on NPort <nlp_DID> */
James Smarte47c9092008-02-08 18:49:26 -05002557 if (got_ndlp) {
2558 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
James Smarte8b62012007-08-02 11:10:09 -04002559 "0212 DSM out state %d on NPort x%x Data: x%x\n",
2560 rc, ndlp->nlp_DID, ndlp->nlp_flag);
dea31012005-04-17 16:05:31 -05002561
James Smarte47c9092008-02-08 18:49:26 -05002562 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_DSM,
2563 "DSM out: ste:%d did:x%x flg:x%x",
2564 rc, ndlp->nlp_DID, ndlp->nlp_flag);
2565 /* Decrement the ndlp reference count held for this function */
2566 lpfc_nlp_put(ndlp);
2567 } else {
2568 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
James Smartd7c255b2008-08-24 21:50:00 -04002569 "0213 DSM out state %d on NPort free\n", rc);
James Smart858c9f62007-06-17 19:56:39 -05002570
James Smarte47c9092008-02-08 18:49:26 -05002571 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_DSM,
2572 "DSM out: ste:%d did:x%x flg:x%x",
2573 rc, 0, 0);
2574 }
dea31012005-04-17 16:05:31 -05002575
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002576 return rc;
dea31012005-04-17 16:05:31 -05002577}