blob: 193733e8c8235ac23469493b312f31a6c128e11e [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;
James Smartd6de08c2015-12-16 18:11:53 -0500283 uint32_t ed_tov;
dea31012005-04-17 16:05:31 -0500284 LPFC_MBOXQ_t *mbox;
285 struct ls_rjt stat;
286 int rc;
287
288 memset(&stat, 0, sizeof (struct ls_rjt));
dea31012005-04-17 16:05:31 -0500289 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
290 lp = (uint32_t *) pcmd->virt;
291 sp = (struct serv_parm *) ((uint8_t *) lp + sizeof (uint32_t));
James Smarta8adb832007-10-27 13:37:53 -0400292 if (wwn_to_u64(sp->portName.u.wwn) == 0) {
293 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
294 "0140 PLOGI Reject: invalid nname\n");
295 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
296 stat.un.b.lsRjtRsnCodeExp = LSEXP_INVALID_PNAME;
297 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp,
298 NULL);
299 return 0;
300 }
301 if (wwn_to_u64(sp->nodeName.u.wwn) == 0) {
302 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
303 "0141 PLOGI Reject: invalid pname\n");
304 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
305 stat.un.b.lsRjtRsnCodeExp = LSEXP_INVALID_NNAME;
306 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp,
307 NULL);
308 return 0;
309 }
James Smarted4afe742015-04-07 15:07:11 -0400310
311 nlp_portwwn = wwn_to_u64(ndlp->nlp_portname.u.wwn);
James Smart341af102010-01-26 23:07:37 -0500312 if ((lpfc_check_sparm(vport, ndlp, sp, CLASS3, 0) == 0)) {
dea31012005-04-17 16:05:31 -0500313 /* Reject this request because invalid parameters */
314 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
315 stat.un.b.lsRjtRsnCodeExp = LSEXP_SPARM_OPTIONS;
James Smart858c9f62007-06-17 19:56:39 -0500316 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp,
317 NULL);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500318 return 0;
dea31012005-04-17 16:05:31 -0500319 }
320 icmd = &cmdiocb->iocb;
321
322 /* PLOGI chkparm OK */
James Smarte8b62012007-08-02 11:10:09 -0400323 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
James Smarte74c03c2013-04-17 20:15:19 -0400324 "0114 PLOGI chkparm OK Data: x%x x%x x%x "
325 "x%x x%x x%x\n",
James Smarte8b62012007-08-02 11:10:09 -0400326 ndlp->nlp_DID, ndlp->nlp_state, ndlp->nlp_flag,
James Smarte74c03c2013-04-17 20:15:19 -0400327 ndlp->nlp_rpi, vport->port_state,
328 vport->fc_flag);
dea31012005-04-17 16:05:31 -0500329
James Smart3de2a652007-08-02 11:09:59 -0400330 if (vport->cfg_fcp_class == 2 && sp->cls2.classValid)
dea31012005-04-17 16:05:31 -0500331 ndlp->nlp_fcp_info |= CLASS2;
James Smarted957682007-06-17 19:56:37 -0500332 else
dea31012005-04-17 16:05:31 -0500333 ndlp->nlp_fcp_info |= CLASS3;
James Smart2e0fef82007-06-17 19:56:36 -0500334
dea31012005-04-17 16:05:31 -0500335 ndlp->nlp_class_sup = 0;
336 if (sp->cls1.classValid)
337 ndlp->nlp_class_sup |= FC_COS_CLASS1;
338 if (sp->cls2.classValid)
339 ndlp->nlp_class_sup |= FC_COS_CLASS2;
340 if (sp->cls3.classValid)
341 ndlp->nlp_class_sup |= FC_COS_CLASS3;
342 if (sp->cls4.classValid)
343 ndlp->nlp_class_sup |= FC_COS_CLASS4;
344 ndlp->nlp_maxframe =
345 ((sp->cmn.bbRcvSizeMsb & 0x0F) << 8) | sp->cmn.bbRcvSizeLsb;
346
James Smarted4afe742015-04-07 15:07:11 -0400347 /* if already logged in, do implicit logout */
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -0500348 switch (ndlp->nlp_state) {
dea31012005-04-17 16:05:31 -0500349 case NLP_STE_NPR_NODE:
350 if (!(ndlp->nlp_flag & NLP_NPR_ADISC))
351 break;
352 case NLP_STE_REG_LOGIN_ISSUE:
353 case NLP_STE_PRLI_ISSUE:
354 case NLP_STE_UNMAPPED_NODE:
355 case NLP_STE_MAPPED_NODE:
James Smarted4afe742015-04-07 15:07:11 -0400356 /* lpfc_plogi_confirm_nport skips fabric did, handle it here */
357 if (!(ndlp->nlp_type & NLP_FABRIC)) {
358 lpfc_els_rsp_acc(vport, ELS_CMD_PLOGI, cmdiocb,
359 ndlp, NULL);
360 return 1;
361 }
362 if (nlp_portwwn != 0 &&
363 nlp_portwwn != wwn_to_u64(sp->portName.u.wwn))
364 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
365 "0143 PLOGI recv'd from DID: x%x "
366 "WWPN changed: old %llx new %llx\n",
367 ndlp->nlp_DID,
368 (unsigned long long)nlp_portwwn,
369 (unsigned long long)
370 wwn_to_u64(sp->portName.u.wwn));
371
372 ndlp->nlp_prev_state = ndlp->nlp_state;
373 /* rport needs to be unregistered first */
374 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
375 break;
dea31012005-04-17 16:05:31 -0500376 }
377
James Smart939723a2012-05-09 21:19:03 -0400378 /* Check for Nport to NPort pt2pt protocol */
James Smart92d7f7b2007-06-17 19:56:38 -0500379 if ((vport->fc_flag & FC_PT2PT) &&
380 !(vport->fc_flag & FC_PT2PT_PLOGI)) {
dea31012005-04-17 16:05:31 -0500381 /* rcv'ed PLOGI decides what our NPortId will be */
James Smart2e0fef82007-06-17 19:56:36 -0500382 vport->fc_myDID = icmd->un.rcvels.parmRo;
James Smartd6de08c2015-12-16 18:11:53 -0500383
384 ed_tov = be32_to_cpu(sp->cmn.e_d_tov);
385 if (sp->cmn.edtovResolution) {
386 /* E_D_TOV ticks are in nanoseconds */
387 ed_tov = (phba->fc_edtov + 999999) / 1000000;
dea31012005-04-17 16:05:31 -0500388 }
James Smartd6de08c2015-12-16 18:11:53 -0500389
James Smart939723a2012-05-09 21:19:03 -0400390 /*
James Smartd6de08c2015-12-16 18:11:53 -0500391 * For pt-to-pt, use the larger EDTOV
392 * RATOV = 2 * EDTOV
James Smart939723a2012-05-09 21:19:03 -0400393 */
James Smartd6de08c2015-12-16 18:11:53 -0500394 if (ed_tov > phba->fc_edtov)
395 phba->fc_edtov = ed_tov;
396 phba->fc_ratov = (2 * phba->fc_edtov) / 1000;
397
398 memcpy(&phba->fc_fabparam, sp, sizeof(struct serv_parm));
399
400 /* Issue config_link / reg_vfi to account for updated TOV's */
401
James Smart939723a2012-05-09 21:19:03 -0400402 if (phba->sli_rev == LPFC_SLI_REV4)
403 lpfc_issue_reg_vfi(vport);
James Smartd6de08c2015-12-16 18:11:53 -0500404 else {
405 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
406 if (mbox == NULL)
407 goto out;
408 lpfc_config_link(phba, mbox);
409 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
410 mbox->vport = vport;
411 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
412 if (rc == MBX_NOT_FINISHED) {
413 mempool_free(mbox, phba->mbox_mem_pool);
414 goto out;
415 }
416 }
dea31012005-04-17 16:05:31 -0500417
James Smart2e0fef82007-06-17 19:56:36 -0500418 lpfc_can_disctmo(vport);
dea31012005-04-17 16:05:31 -0500419 }
James Smartd6de08c2015-12-16 18:11:53 -0500420
dea31012005-04-17 16:05:31 -0500421 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
James Smart2e0fef82007-06-17 19:56:36 -0500422 if (!mbox)
dea31012005-04-17 16:05:31 -0500423 goto out;
424
James Smart6b5151f2012-01-18 16:24:06 -0500425 /* Registering an existing RPI behaves differently for SLI3 vs SLI4 */
426 if (phba->sli_rev == LPFC_SLI_REV4)
427 lpfc_unreg_rpi(vport, ndlp);
428
James Smart6fb120a2009-05-22 14:52:59 -0400429 rc = lpfc_reg_rpi(phba, vport->vpi, icmd->un.rcvels.remoteID,
James Smart40426292010-12-15 17:58:10 -0500430 (uint8_t *) sp, mbox, ndlp->nlp_rpi);
James Smart2e0fef82007-06-17 19:56:36 -0500431 if (rc) {
432 mempool_free(mbox, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -0500433 goto out;
434 }
435
436 /* ACC PLOGI rsp command needs to execute first,
437 * queue this mbox command to be processed later.
438 */
439 mbox->mbox_cmpl = lpfc_mbx_cmpl_reg_login;
James Smart329f9bc2007-04-25 09:53:01 -0400440 /*
441 * mbox->context2 = lpfc_nlp_get(ndlp) deferred until mailbox
442 * command issued in lpfc_cmpl_els_acc().
443 */
James Smart2e0fef82007-06-17 19:56:36 -0500444 mbox->vport = vport;
445 spin_lock_irq(shost->host_lock);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -0500446 ndlp->nlp_flag |= (NLP_ACC_REGLOGIN | NLP_RCV_PLOGI);
James Smart2e0fef82007-06-17 19:56:36 -0500447 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500448
James Smart33ccf8d2006-08-17 11:57:58 -0400449 /*
450 * If there is an outstanding PLOGI issued, abort it before
451 * sending ACC rsp for received PLOGI. If pending plogi
452 * is not canceled here, the plogi will be rejected by
453 * remote port and will be retried. On a configuration with
454 * single discovery thread, this will cause a huge delay in
455 * discovery. Also this will cause multiple state machines
456 * running in parallel for this node.
457 */
458 if (ndlp->nlp_state == NLP_STE_PLOGI_ISSUE) {
459 /* software abort outstanding PLOGI */
James Smart07951072007-04-25 09:51:38 -0400460 lpfc_els_abort(phba, ndlp);
James Smart33ccf8d2006-08-17 11:57:58 -0400461 }
462
James Smart858c9f62007-06-17 19:56:39 -0500463 if ((vport->port_type == LPFC_NPIV_PORT &&
James Smart3de2a652007-08-02 11:09:59 -0400464 vport->cfg_restrict_login)) {
James Smart858c9f62007-06-17 19:56:39 -0500465
466 /* In order to preserve RPIs, we want to cleanup
467 * the default RPI the firmware created to rcv
468 * this ELS request. The only way to do this is
469 * to register, then unregister the RPI.
470 */
471 spin_lock_irq(shost->host_lock);
472 ndlp->nlp_flag |= NLP_RM_DFLT_RPI;
473 spin_unlock_irq(shost->host_lock);
474 stat.un.b.lsRjtRsnCode = LSRJT_INVALID_CMD;
475 stat.un.b.lsRjtRsnCodeExp = LSEXP_NOTHING_MORE;
James Smart0a8a86f2012-03-01 22:36:15 -0500476 rc = lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb,
James Smart858c9f62007-06-17 19:56:39 -0500477 ndlp, mbox);
James Smart0a8a86f2012-03-01 22:36:15 -0500478 if (rc)
479 mempool_free(mbox, phba->mbox_mem_pool);
James Smart858c9f62007-06-17 19:56:39 -0500480 return 1;
481 }
James Smart0a8a86f2012-03-01 22:36:15 -0500482 rc = lpfc_els_rsp_acc(vport, ELS_CMD_PLOGI, cmdiocb, ndlp, mbox);
483 if (rc)
484 mempool_free(mbox, phba->mbox_mem_pool);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500485 return 1;
dea31012005-04-17 16:05:31 -0500486out:
487 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
488 stat.un.b.lsRjtRsnCodeExp = LSEXP_OUT_OF_RESOURCE;
James Smart858c9f62007-06-17 19:56:39 -0500489 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500490 return 0;
dea31012005-04-17 16:05:31 -0500491}
492
James Smart6b5151f2012-01-18 16:24:06 -0500493/**
494 * lpfc_mbx_cmpl_resume_rpi - Resume RPI completion routine
495 * @phba: pointer to lpfc hba data structure.
496 * @mboxq: pointer to mailbox object
497 *
498 * This routine is invoked to issue a completion to a rcv'ed
499 * ADISC or PDISC after the paused RPI has been resumed.
500 **/
501static void
502lpfc_mbx_cmpl_resume_rpi(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
503{
504 struct lpfc_vport *vport;
505 struct lpfc_iocbq *elsiocb;
506 struct lpfc_nodelist *ndlp;
507 uint32_t cmd;
508
509 elsiocb = (struct lpfc_iocbq *)mboxq->context1;
510 ndlp = (struct lpfc_nodelist *) mboxq->context2;
511 vport = mboxq->vport;
512 cmd = elsiocb->drvrTimeout;
513
514 if (cmd == ELS_CMD_ADISC) {
515 lpfc_els_rsp_adisc_acc(vport, elsiocb, ndlp);
516 } else {
517 lpfc_els_rsp_acc(vport, ELS_CMD_PLOGI, elsiocb,
518 ndlp, NULL);
519 }
520 kfree(elsiocb);
James Smart72859902012-01-18 16:25:38 -0500521 mempool_free(mboxq, phba->mbox_mem_pool);
James Smart6b5151f2012-01-18 16:24:06 -0500522}
523
dea31012005-04-17 16:05:31 -0500524static int
James Smart2e0fef82007-06-17 19:56:36 -0500525lpfc_rcv_padisc(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
dea31012005-04-17 16:05:31 -0500526 struct lpfc_iocbq *cmdiocb)
527{
James Smart2e0fef82007-06-17 19:56:36 -0500528 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart6b5151f2012-01-18 16:24:06 -0500529 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -0500530 struct lpfc_dmabuf *pcmd;
James Smart2e0fef82007-06-17 19:56:36 -0500531 struct serv_parm *sp;
532 struct lpfc_name *pnn, *ppn;
dea31012005-04-17 16:05:31 -0500533 struct ls_rjt stat;
534 ADISC *ap;
535 IOCB_t *icmd;
536 uint32_t *lp;
537 uint32_t cmd;
538
539 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
540 lp = (uint32_t *) pcmd->virt;
541
542 cmd = *lp++;
543 if (cmd == ELS_CMD_ADISC) {
544 ap = (ADISC *) lp;
545 pnn = (struct lpfc_name *) & ap->nodeName;
546 ppn = (struct lpfc_name *) & ap->portName;
547 } else {
548 sp = (struct serv_parm *) lp;
549 pnn = (struct lpfc_name *) & sp->nodeName;
550 ppn = (struct lpfc_name *) & sp->portName;
551 }
552
553 icmd = &cmdiocb->iocb;
James Smart2e0fef82007-06-17 19:56:36 -0500554 if (icmd->ulpStatus == 0 && lpfc_check_adisc(vport, ndlp, pnn, ppn)) {
James Smart6b5151f2012-01-18 16:24:06 -0500555
556 /*
557 * As soon as we send ACC, the remote NPort can
558 * start sending us data. Thus, for SLI4 we must
559 * resume the RPI before the ACC goes out.
560 */
561 if (vport->phba->sli_rev == LPFC_SLI_REV4) {
562 elsiocb = kmalloc(sizeof(struct lpfc_iocbq),
563 GFP_KERNEL);
564 if (elsiocb) {
565
566 /* Save info from cmd IOCB used in rsp */
567 memcpy((uint8_t *)elsiocb, (uint8_t *)cmdiocb,
568 sizeof(struct lpfc_iocbq));
569
570 /* Save the ELS cmd */
571 elsiocb->drvrTimeout = cmd;
572
573 lpfc_sli4_resume_rpi(ndlp,
574 lpfc_mbx_cmpl_resume_rpi, elsiocb);
575 goto out;
576 }
577 }
578
dea31012005-04-17 16:05:31 -0500579 if (cmd == ELS_CMD_ADISC) {
James Smart2e0fef82007-06-17 19:56:36 -0500580 lpfc_els_rsp_adisc_acc(vport, cmdiocb, ndlp);
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -0500581 } else {
James Smart6b5151f2012-01-18 16:24:06 -0500582 lpfc_els_rsp_acc(vport, ELS_CMD_PLOGI, cmdiocb,
583 ndlp, NULL);
dea31012005-04-17 16:05:31 -0500584 }
James Smart6b5151f2012-01-18 16:24:06 -0500585out:
586 /* If we are authenticated, move to the proper state */
587 if (ndlp->nlp_type & NLP_FCP_TARGET)
588 lpfc_nlp_set_state(vport, ndlp, NLP_STE_MAPPED_NODE);
589 else
590 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
591
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500592 return 1;
dea31012005-04-17 16:05:31 -0500593 }
594 /* Reject this request because invalid parameters */
595 stat.un.b.lsRjtRsvd0 = 0;
596 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
597 stat.un.b.lsRjtRsnCodeExp = LSEXP_SPARM_OPTIONS;
598 stat.un.b.vendorUnique = 0;
James Smart858c9f62007-06-17 19:56:39 -0500599 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
dea31012005-04-17 16:05:31 -0500600
dea31012005-04-17 16:05:31 -0500601 /* 1 sec timeout */
James Smart256ec0d2013-04-17 20:14:58 -0400602 mod_timer(&ndlp->nlp_delayfunc, jiffies + msecs_to_jiffies(1000));
dea31012005-04-17 16:05:31 -0500603
James Smart2e0fef82007-06-17 19:56:36 -0500604 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500605 ndlp->nlp_flag |= NLP_DELAY_TMO;
James Smart2e0fef82007-06-17 19:56:36 -0500606 spin_unlock_irq(shost->host_lock);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -0500607 ndlp->nlp_last_elscmd = ELS_CMD_PLOGI;
608 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -0500609 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500610 return 0;
dea31012005-04-17 16:05:31 -0500611}
612
613static int
James Smart2e0fef82007-06-17 19:56:36 -0500614lpfc_rcv_logo(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
615 struct lpfc_iocbq *cmdiocb, uint32_t els_cmd)
dea31012005-04-17 16:05:31 -0500616{
James Smart2e0fef82007-06-17 19:56:36 -0500617 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart4b40c592010-03-15 11:25:44 -0400618 struct lpfc_hba *phba = vport->phba;
619 struct lpfc_vport **vports;
620 int i, active_vlink_present = 0 ;
James Smart2e0fef82007-06-17 19:56:36 -0500621
622 /* Put ndlp in NPR state with 1 sec timeout for plogi, ACC logo */
dea31012005-04-17 16:05:31 -0500623 /* Only call LOGO ACC for first LOGO, this avoids sending unnecessary
624 * PLOGIs during LOGO storms from a device.
625 */
James Smart2e0fef82007-06-17 19:56:36 -0500626 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500627 ndlp->nlp_flag |= NLP_LOGO_ACC;
James Smart2e0fef82007-06-17 19:56:36 -0500628 spin_unlock_irq(shost->host_lock);
James Smart82d9a2a2006-04-15 11:53:05 -0400629 if (els_cmd == ELS_CMD_PRLO)
James Smart51ef4c22007-08-02 11:10:31 -0400630 lpfc_els_rsp_acc(vport, ELS_CMD_PRLO, cmdiocb, ndlp, NULL);
James Smart82d9a2a2006-04-15 11:53:05 -0400631 else
James Smart51ef4c22007-08-02 11:10:31 -0400632 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
James Smart4b40c592010-03-15 11:25:44 -0400633 if (ndlp->nlp_DID == Fabric_DID) {
634 if (vport->port_state <= LPFC_FDISC)
635 goto out;
James Smart6fb120a2009-05-22 14:52:59 -0400636 lpfc_linkdown_port(vport);
James Smart6fb120a2009-05-22 14:52:59 -0400637 spin_lock_irq(shost->host_lock);
James Smart4b40c592010-03-15 11:25:44 -0400638 vport->fc_flag |= FC_VPORT_LOGO_RCVD;
James Smart6fb120a2009-05-22 14:52:59 -0400639 spin_unlock_irq(shost->host_lock);
James Smart4b40c592010-03-15 11:25:44 -0400640 vports = lpfc_create_vport_work_array(phba);
641 if (vports) {
642 for (i = 0; i <= phba->max_vports && vports[i] != NULL;
643 i++) {
644 if ((!(vports[i]->fc_flag &
645 FC_VPORT_LOGO_RCVD)) &&
646 (vports[i]->port_state > LPFC_FDISC)) {
647 active_vlink_present = 1;
648 break;
649 }
650 }
651 lpfc_destroy_vport_work_array(phba, vports);
652 }
dea31012005-04-17 16:05:31 -0500653
James Smartcc823552015-05-21 13:55:26 -0400654 /*
655 * Don't re-instantiate if vport is marked for deletion.
656 * If we are here first then vport_delete is going to wait
657 * for discovery to complete.
658 */
659 if (!(vport->load_flag & FC_UNLOADING) &&
660 active_vlink_present) {
James Smart4b40c592010-03-15 11:25:44 -0400661 /*
662 * If there are other active VLinks present,
663 * re-instantiate the Vlink using FDISC.
664 */
James Smart256ec0d2013-04-17 20:14:58 -0400665 mod_timer(&ndlp->nlp_delayfunc,
666 jiffies + msecs_to_jiffies(1000));
James Smart4b40c592010-03-15 11:25:44 -0400667 spin_lock_irq(shost->host_lock);
668 ndlp->nlp_flag |= NLP_DELAY_TMO;
669 spin_unlock_irq(shost->host_lock);
670 ndlp->nlp_last_elscmd = ELS_CMD_FDISC;
671 vport->port_state = LPFC_FDISC;
672 } else {
673 spin_lock_irq(shost->host_lock);
674 phba->pport->fc_flag &= ~FC_LOGO_RCVD_DID_CHNG;
675 spin_unlock_irq(shost->host_lock);
676 lpfc_retry_pport_discovery(phba);
677 }
James Smart6fb120a2009-05-22 14:52:59 -0400678 } else if ((!(ndlp->nlp_type & NLP_FABRIC) &&
679 ((ndlp->nlp_type & NLP_FCP_TARGET) ||
680 !(ndlp->nlp_type & NLP_FCP_INITIATOR))) ||
681 (ndlp->nlp_state == NLP_STE_ADISC_ISSUE)) {
dea31012005-04-17 16:05:31 -0500682 /* Only try to re-login if this is NOT a Fabric Node */
James Smart256ec0d2013-04-17 20:14:58 -0400683 mod_timer(&ndlp->nlp_delayfunc,
684 jiffies + msecs_to_jiffies(1000 * 1));
James Smart2e0fef82007-06-17 19:56:36 -0500685 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500686 ndlp->nlp_flag |= NLP_DELAY_TMO;
James Smart2e0fef82007-06-17 19:56:36 -0500687 spin_unlock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500688
Jamie Wellnitz5024ab12006-02-28 19:25:28 -0500689 ndlp->nlp_last_elscmd = ELS_CMD_PLOGI;
dea31012005-04-17 16:05:31 -0500690 }
James Smart4b40c592010-03-15 11:25:44 -0400691out:
James Smart87af33f2007-10-27 13:37:43 -0400692 ndlp->nlp_prev_state = ndlp->nlp_state;
693 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
dea31012005-04-17 16:05:31 -0500694
James Smart2e0fef82007-06-17 19:56:36 -0500695 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500696 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
James Smart2e0fef82007-06-17 19:56:36 -0500697 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500698 /* The driver has to wait until the ACC completes before it continues
699 * processing the LOGO. The action will resume in
700 * lpfc_cmpl_els_logo_acc routine. Since part of processing includes an
701 * unreg_login, the driver waits so the ACC does not get aborted.
702 */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500703 return 0;
dea31012005-04-17 16:05:31 -0500704}
705
706static void
James Smart2e0fef82007-06-17 19:56:36 -0500707lpfc_rcv_prli(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
708 struct lpfc_iocbq *cmdiocb)
dea31012005-04-17 16:05:31 -0500709{
710 struct lpfc_dmabuf *pcmd;
711 uint32_t *lp;
712 PRLI *npr;
713 struct fc_rport *rport = ndlp->rport;
714 u32 roles;
715
716 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
717 lp = (uint32_t *) pcmd->virt;
718 npr = (PRLI *) ((uint8_t *) lp + sizeof (uint32_t));
719
720 ndlp->nlp_type &= ~(NLP_FCP_TARGET | NLP_FCP_INITIATOR);
721 ndlp->nlp_fcp_info &= ~NLP_FCP_2_DEVICE;
James Smart3cb01c52013-07-15 18:35:04 -0400722 ndlp->nlp_flag &= ~NLP_FIRSTBURST;
James Smart92d7f7b2007-06-17 19:56:38 -0500723 if (npr->prliType == PRLI_FCP_TYPE) {
dea31012005-04-17 16:05:31 -0500724 if (npr->initiatorFunc)
725 ndlp->nlp_type |= NLP_FCP_INITIATOR;
James Smart3cb01c52013-07-15 18:35:04 -0400726 if (npr->targetFunc) {
dea31012005-04-17 16:05:31 -0500727 ndlp->nlp_type |= NLP_FCP_TARGET;
James Smart3cb01c52013-07-15 18:35:04 -0400728 if (npr->writeXferRdyDis)
729 ndlp->nlp_flag |= NLP_FIRSTBURST;
730 }
dea31012005-04-17 16:05:31 -0500731 if (npr->Retry)
732 ndlp->nlp_fcp_info |= NLP_FCP_2_DEVICE;
733 }
734 if (rport) {
735 /* We need to update the rport role values */
736 roles = FC_RPORT_ROLE_UNKNOWN;
737 if (ndlp->nlp_type & NLP_FCP_INITIATOR)
738 roles |= FC_RPORT_ROLE_FCP_INITIATOR;
739 if (ndlp->nlp_type & NLP_FCP_TARGET)
740 roles |= FC_RPORT_ROLE_FCP_TARGET;
James Smart858c9f62007-06-17 19:56:39 -0500741
742 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_RPORT,
743 "rport rolechg: role:x%x did:x%x flg:x%x",
744 roles, ndlp->nlp_DID, ndlp->nlp_flag);
745
dea31012005-04-17 16:05:31 -0500746 fc_remote_port_rolechg(rport, roles);
747 }
748}
749
750static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500751lpfc_disc_set_adisc(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -0500752{
James Smart2e0fef82007-06-17 19:56:36 -0500753 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart2e0fef82007-06-17 19:56:36 -0500754
James Smart40426292010-12-15 17:58:10 -0500755 if (!(ndlp->nlp_flag & NLP_RPI_REGISTERED)) {
James Smart51ef4c22007-08-02 11:10:31 -0400756 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
757 return 0;
758 }
759
James Smart1b32f6a2008-02-08 18:49:39 -0500760 if (!(vport->fc_flag & FC_PT2PT)) {
761 /* Check config parameter use-adisc or FCP-2 */
762 if ((vport->cfg_use_adisc && (vport->fc_flag & FC_RSCN_MODE)) ||
James Smartffc95492010-06-07 15:23:17 -0400763 ((ndlp->nlp_fcp_info & NLP_FCP_2_DEVICE) &&
764 (ndlp->nlp_type & NLP_FCP_TARGET))) {
James Smart1b32f6a2008-02-08 18:49:39 -0500765 spin_lock_irq(shost->host_lock);
766 ndlp->nlp_flag |= NLP_NPR_ADISC;
767 spin_unlock_irq(shost->host_lock);
768 return 1;
769 }
James Smart92d7f7b2007-06-17 19:56:38 -0500770 }
771 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
772 lpfc_unreg_rpi(vport, ndlp);
773 return 0;
dea31012005-04-17 16:05:31 -0500774}
James Smart6d368e52011-05-24 11:44:12 -0400775
James Smart78730cf2010-04-06 15:06:30 -0400776/**
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300777 * lpfc_release_rpi - Release a RPI by issuing unreg_login mailbox cmd.
James Smart78730cf2010-04-06 15:06:30 -0400778 * @phba : Pointer to lpfc_hba structure.
779 * @vport: Pointer to lpfc_vport structure.
780 * @rpi : rpi to be release.
781 *
782 * This function will send a unreg_login mailbox command to the firmware
783 * to release a rpi.
784 **/
785void
786lpfc_release_rpi(struct lpfc_hba *phba,
787 struct lpfc_vport *vport,
788 uint16_t rpi)
789{
790 LPFC_MBOXQ_t *pmb;
791 int rc;
792
793 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool,
794 GFP_KERNEL);
795 if (!pmb)
796 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
797 "2796 mailbox memory allocation failed \n");
798 else {
799 lpfc_unreg_login(phba, vport->vpi, rpi, pmb);
800 pmb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
801 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
802 if (rc == MBX_NOT_FINISHED)
803 mempool_free(pmb, phba->mbox_mem_pool);
804 }
805}
dea31012005-04-17 16:05:31 -0500806
807static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500808lpfc_disc_illegal(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
809 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -0500810{
James Smart78730cf2010-04-06 15:06:30 -0400811 struct lpfc_hba *phba;
812 LPFC_MBOXQ_t *pmb = (LPFC_MBOXQ_t *) arg;
James Smart78730cf2010-04-06 15:06:30 -0400813 uint16_t rpi;
814
815 phba = vport->phba;
816 /* Release the RPI if reglogin completing */
817 if (!(phba->pport->load_flag & FC_UNLOADING) &&
818 (evt == NLP_EVT_CMPL_REG_LOGIN) &&
819 (!pmb->u.mb.mbxStatus)) {
James Smart78730cf2010-04-06 15:06:30 -0400820 rpi = pmb->u.mb.un.varWords[0];
821 lpfc_release_rpi(phba, vport, rpi);
822 }
James Smarte8b62012007-08-02 11:10:09 -0400823 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
James Smarte47c9092008-02-08 18:49:26 -0500824 "0271 Illegal State Transition: node x%x "
James Smarte8b62012007-08-02 11:10:09 -0400825 "event x%x, state x%x Data: x%x x%x\n",
826 ndlp->nlp_DID, evt, ndlp->nlp_state, ndlp->nlp_rpi,
827 ndlp->nlp_flag);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500828 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -0500829}
830
James Smart87af33f2007-10-27 13:37:43 -0400831static uint32_t
832lpfc_cmpl_plogi_illegal(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
833 void *arg, uint32_t evt)
834{
835 /* This transition is only legal if we previously
836 * rcv'ed a PLOGI. Since we don't want 2 discovery threads
837 * working on the same NPortID, do nothing for this thread
838 * to stop it.
839 */
840 if (!(ndlp->nlp_flag & NLP_RCV_PLOGI)) {
841 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
James Smarte47c9092008-02-08 18:49:26 -0500842 "0272 Illegal State Transition: node x%x "
James Smart87af33f2007-10-27 13:37:43 -0400843 "event x%x, state x%x Data: x%x x%x\n",
844 ndlp->nlp_DID, evt, ndlp->nlp_state, ndlp->nlp_rpi,
845 ndlp->nlp_flag);
846 }
847 return ndlp->nlp_state;
848}
849
dea31012005-04-17 16:05:31 -0500850/* Start of Discovery State Machine routines */
851
852static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500853lpfc_rcv_plogi_unused_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
854 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -0500855{
856 struct lpfc_iocbq *cmdiocb;
857
858 cmdiocb = (struct lpfc_iocbq *) arg;
859
James Smart2e0fef82007-06-17 19:56:36 -0500860 if (lpfc_rcv_plogi(vport, ndlp, cmdiocb)) {
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500861 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -0500862 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500863 return NLP_STE_FREED_NODE;
dea31012005-04-17 16:05:31 -0500864}
865
866static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500867lpfc_rcv_els_unused_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
868 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -0500869{
James Smart2e0fef82007-06-17 19:56:36 -0500870 lpfc_issue_els_logo(vport, ndlp, 0);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500871 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -0500872}
873
874static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500875lpfc_rcv_logo_unused_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
876 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -0500877{
James Smart2e0fef82007-06-17 19:56:36 -0500878 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
879 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -0500880
James Smart2e0fef82007-06-17 19:56:36 -0500881 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500882 ndlp->nlp_flag |= NLP_LOGO_ACC;
James Smart2e0fef82007-06-17 19:56:36 -0500883 spin_unlock_irq(shost->host_lock);
James Smart51ef4c22007-08-02 11:10:31 -0400884 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
dea31012005-04-17 16:05:31 -0500885
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500886 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -0500887}
888
889static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500890lpfc_cmpl_logo_unused_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
dea31012005-04-17 16:05:31 -0500891 void *arg, uint32_t evt)
892{
James Smart2e0fef82007-06-17 19:56:36 -0500893 return NLP_STE_FREED_NODE;
894}
895
896static uint32_t
897lpfc_device_rm_unused_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
898 void *arg, uint32_t evt)
899{
James Smart2e0fef82007-06-17 19:56:36 -0500900 return NLP_STE_FREED_NODE;
901}
902
903static uint32_t
James Smartdf9e1b52011-12-13 13:22:17 -0500904lpfc_device_recov_unused_node(struct lpfc_vport *vport,
905 struct lpfc_nodelist *ndlp,
906 void *arg, uint32_t evt)
907{
908 return ndlp->nlp_state;
909}
910
911static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500912lpfc_rcv_plogi_plogi_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
913 void *arg, uint32_t evt)
914{
James Smart0d2b6b82008-06-14 22:52:47 -0400915 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart2e0fef82007-06-17 19:56:36 -0500916 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -0500917 struct lpfc_iocbq *cmdiocb = arg;
James Smart2e0fef82007-06-17 19:56:36 -0500918 struct lpfc_dmabuf *pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
919 uint32_t *lp = (uint32_t *) pcmd->virt;
920 struct serv_parm *sp = (struct serv_parm *) (lp + 1);
dea31012005-04-17 16:05:31 -0500921 struct ls_rjt stat;
922 int port_cmp;
923
dea31012005-04-17 16:05:31 -0500924 memset(&stat, 0, sizeof (struct ls_rjt));
925
926 /* For a PLOGI, we only accept if our portname is less
927 * than the remote portname.
928 */
929 phba->fc_stat.elsLogiCol++;
James Smart2e0fef82007-06-17 19:56:36 -0500930 port_cmp = memcmp(&vport->fc_portname, &sp->portName,
James Smart92d7f7b2007-06-17 19:56:38 -0500931 sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -0500932
933 if (port_cmp >= 0) {
934 /* Reject this request because the remote node will accept
935 ours */
936 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
937 stat.un.b.lsRjtRsnCodeExp = LSEXP_CMD_IN_PROGRESS;
James Smart858c9f62007-06-17 19:56:39 -0500938 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp,
939 NULL);
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -0500940 } else {
James Smart0d2b6b82008-06-14 22:52:47 -0400941 if (lpfc_rcv_plogi(vport, ndlp, cmdiocb) &&
942 (ndlp->nlp_flag & NLP_NPR_2B_DISC) &&
943 (vport->num_disc_nodes)) {
944 spin_lock_irq(shost->host_lock);
945 ndlp->nlp_flag &= ~NLP_NPR_2B_DISC;
946 spin_unlock_irq(shost->host_lock);
947 /* Check if there are more PLOGIs to be sent */
948 lpfc_more_plogi(vport);
949 if (vport->num_disc_nodes == 0) {
950 spin_lock_irq(shost->host_lock);
951 vport->fc_flag &= ~FC_NDISC_ACTIVE;
952 spin_unlock_irq(shost->host_lock);
953 lpfc_can_disctmo(vport);
954 lpfc_end_rscn(vport);
955 }
956 }
James Smart2e0fef82007-06-17 19:56:36 -0500957 } /* If our portname was less */
dea31012005-04-17 16:05:31 -0500958
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500959 return ndlp->nlp_state;
960}
961
962static uint32_t
James Smart92d7f7b2007-06-17 19:56:38 -0500963lpfc_rcv_prli_plogi_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
964 void *arg, uint32_t evt)
965{
966 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
967 struct ls_rjt stat;
968
969 memset(&stat, 0, sizeof (struct ls_rjt));
970 stat.un.b.lsRjtRsnCode = LSRJT_LOGICAL_BSY;
971 stat.un.b.lsRjtRsnCodeExp = LSEXP_NOTHING_MORE;
James Smart858c9f62007-06-17 19:56:39 -0500972 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
James Smart92d7f7b2007-06-17 19:56:38 -0500973 return ndlp->nlp_state;
974}
975
976static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500977lpfc_rcv_logo_plogi_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
978 void *arg, uint32_t evt)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500979{
James Smart2e0fef82007-06-17 19:56:36 -0500980 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500981
James Smart92d7f7b2007-06-17 19:56:38 -0500982 /* software abort outstanding PLOGI */
James Smart2e0fef82007-06-17 19:56:36 -0500983 lpfc_els_abort(vport->phba, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500984
James Smart2e0fef82007-06-17 19:56:36 -0500985 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_LOGO);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500986 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -0500987}
988
989static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500990lpfc_rcv_els_plogi_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
991 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -0500992{
James Smart2e0fef82007-06-17 19:56:36 -0500993 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
994 struct lpfc_hba *phba = vport->phba;
995 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -0500996
997 /* software abort outstanding PLOGI */
James Smart07951072007-04-25 09:51:38 -0400998 lpfc_els_abort(phba, ndlp);
dea31012005-04-17 16:05:31 -0500999
1000 if (evt == NLP_EVT_RCV_LOGO) {
James Smart51ef4c22007-08-02 11:10:31 -04001001 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05001002 } else {
James Smart2e0fef82007-06-17 19:56:36 -05001003 lpfc_issue_els_logo(vport, ndlp, 0);
dea31012005-04-17 16:05:31 -05001004 }
1005
James Smart2e0fef82007-06-17 19:56:36 -05001006 /* Put ndlp in npr state set plogi timer for 1 sec */
James Smart256ec0d2013-04-17 20:14:58 -04001007 mod_timer(&ndlp->nlp_delayfunc, jiffies + msecs_to_jiffies(1000 * 1));
James Smart2e0fef82007-06-17 19:56:36 -05001008 spin_lock_irq(shost->host_lock);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001009 ndlp->nlp_flag |= NLP_DELAY_TMO;
James Smart2e0fef82007-06-17 19:56:36 -05001010 spin_unlock_irq(shost->host_lock);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001011 ndlp->nlp_last_elscmd = ELS_CMD_PLOGI;
1012 ndlp->nlp_prev_state = NLP_STE_PLOGI_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001013 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
dea31012005-04-17 16:05:31 -05001014
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001015 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001016}
1017
1018static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001019lpfc_cmpl_plogi_plogi_issue(struct lpfc_vport *vport,
1020 struct lpfc_nodelist *ndlp,
1021 void *arg,
dea31012005-04-17 16:05:31 -05001022 uint32_t evt)
1023{
James Smart2e0fef82007-06-17 19:56:36 -05001024 struct lpfc_hba *phba = vport->phba;
James Smart0ff10d42008-01-11 01:52:36 -05001025 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart2e0fef82007-06-17 19:56:36 -05001026 struct lpfc_iocbq *cmdiocb, *rspiocb;
James Smart14691152006-12-02 13:34:28 -05001027 struct lpfc_dmabuf *pcmd, *prsp, *mp;
dea31012005-04-17 16:05:31 -05001028 uint32_t *lp;
1029 IOCB_t *irsp;
1030 struct serv_parm *sp;
James Smartd6de08c2015-12-16 18:11:53 -05001031 uint32_t ed_tov;
dea31012005-04-17 16:05:31 -05001032 LPFC_MBOXQ_t *mbox;
James Smartd6de08c2015-12-16 18:11:53 -05001033 int rc;
dea31012005-04-17 16:05:31 -05001034
1035 cmdiocb = (struct lpfc_iocbq *) arg;
1036 rspiocb = cmdiocb->context_un.rsp_iocb;
1037
1038 if (ndlp->nlp_flag & NLP_ACC_REGLOGIN) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001039 /* Recovery from PLOGI collision logic */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001040 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001041 }
1042
1043 irsp = &rspiocb->iocb;
1044
1045 if (irsp->ulpStatus)
1046 goto out;
1047
1048 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
1049
James Smart2e0fef82007-06-17 19:56:36 -05001050 prsp = list_get_first(&pcmd->list, struct lpfc_dmabuf, list);
James Smarta2fc4aef2014-09-03 12:57:55 -04001051 if (!prsp)
1052 goto out;
dea31012005-04-17 16:05:31 -05001053
James Smart2e0fef82007-06-17 19:56:36 -05001054 lp = (uint32_t *) prsp->virt;
dea31012005-04-17 16:05:31 -05001055 sp = (struct serv_parm *) ((uint8_t *) lp + sizeof (uint32_t));
James Smart58da1ff2008-04-07 10:15:56 -04001056
1057 /* Some switches have FDMI servers returning 0 for WWN */
1058 if ((ndlp->nlp_DID != FDMI_DID) &&
1059 (wwn_to_u64(sp->portName.u.wwn) == 0 ||
1060 wwn_to_u64(sp->nodeName.u.wwn) == 0)) {
James Smarta8adb832007-10-27 13:37:53 -04001061 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
1062 "0142 PLOGI RSP: Invalid WWN.\n");
1063 goto out;
1064 }
James Smart341af102010-01-26 23:07:37 -05001065 if (!lpfc_check_sparm(vport, ndlp, sp, CLASS3, 0))
dea31012005-04-17 16:05:31 -05001066 goto out;
dea31012005-04-17 16:05:31 -05001067 /* PLOGI chkparm OK */
James Smarte8b62012007-08-02 11:10:09 -04001068 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
1069 "0121 PLOGI chkparm OK Data: x%x x%x x%x x%x\n",
1070 ndlp->nlp_DID, ndlp->nlp_state,
1071 ndlp->nlp_flag, ndlp->nlp_rpi);
James Smart3de2a652007-08-02 11:09:59 -04001072 if (vport->cfg_fcp_class == 2 && (sp->cls2.classValid))
dea31012005-04-17 16:05:31 -05001073 ndlp->nlp_fcp_info |= CLASS2;
James Smart2e0fef82007-06-17 19:56:36 -05001074 else
dea31012005-04-17 16:05:31 -05001075 ndlp->nlp_fcp_info |= CLASS3;
James Smart2e0fef82007-06-17 19:56:36 -05001076
dea31012005-04-17 16:05:31 -05001077 ndlp->nlp_class_sup = 0;
1078 if (sp->cls1.classValid)
1079 ndlp->nlp_class_sup |= FC_COS_CLASS1;
1080 if (sp->cls2.classValid)
1081 ndlp->nlp_class_sup |= FC_COS_CLASS2;
1082 if (sp->cls3.classValid)
1083 ndlp->nlp_class_sup |= FC_COS_CLASS3;
1084 if (sp->cls4.classValid)
1085 ndlp->nlp_class_sup |= FC_COS_CLASS4;
1086 ndlp->nlp_maxframe =
James Smart2e0fef82007-06-17 19:56:36 -05001087 ((sp->cmn.bbRcvSizeMsb & 0x0F) << 8) | sp->cmn.bbRcvSizeLsb;
dea31012005-04-17 16:05:31 -05001088
James Smartd6de08c2015-12-16 18:11:53 -05001089 if ((vport->fc_flag & FC_PT2PT) &&
1090 (vport->fc_flag & FC_PT2PT_PLOGI)) {
1091 ed_tov = be32_to_cpu(sp->cmn.e_d_tov);
1092 if (sp->cmn.edtovResolution) {
1093 /* E_D_TOV ticks are in nanoseconds */
1094 ed_tov = (phba->fc_edtov + 999999) / 1000000;
1095 }
1096
1097 /*
1098 * Use the larger EDTOV
1099 * RATOV = 2 * EDTOV for pt-to-pt
1100 */
1101 if (ed_tov > phba->fc_edtov)
1102 phba->fc_edtov = ed_tov;
1103 phba->fc_ratov = (2 * phba->fc_edtov) / 1000;
1104
1105 memcpy(&phba->fc_fabparam, sp, sizeof(struct serv_parm));
1106
1107 /* Issue config_link / reg_vfi to account for updated TOV's */
1108 if (phba->sli_rev == LPFC_SLI_REV4) {
1109 lpfc_issue_reg_vfi(vport);
1110 } else {
James Smart01c73bb2015-12-16 18:12:03 -05001111 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
1112 if (!mbox) {
1113 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
1114 "0133 PLOGI: no memory "
1115 "for config_link "
1116 "Data: x%x x%x x%x x%x\n",
1117 ndlp->nlp_DID, ndlp->nlp_state,
1118 ndlp->nlp_flag, ndlp->nlp_rpi);
1119 goto out;
1120 }
1121
James Smartd6de08c2015-12-16 18:11:53 -05001122 lpfc_config_link(phba, mbox);
1123
1124 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
1125 mbox->vport = vport;
1126 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
1127 if (rc == MBX_NOT_FINISHED) {
1128 mempool_free(mbox, phba->mbox_mem_pool);
1129 goto out;
1130 }
1131 }
James Smart92d7f7b2007-06-17 19:56:38 -05001132 }
dea31012005-04-17 16:05:31 -05001133
James Smart2e0fef82007-06-17 19:56:36 -05001134 lpfc_unreg_rpi(vport, ndlp);
1135
James Smart01c73bb2015-12-16 18:12:03 -05001136 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
1137 if (!mbox) {
1138 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
1139 "0018 PLOGI: no memory for reg_login "
1140 "Data: x%x x%x x%x x%x\n",
1141 ndlp->nlp_DID, ndlp->nlp_state,
1142 ndlp->nlp_flag, ndlp->nlp_rpi);
1143 goto out;
1144 }
1145
James Smart6fb120a2009-05-22 14:52:59 -04001146 if (lpfc_reg_rpi(phba, vport->vpi, irsp->un.elsreq64.remoteID,
James Smart40426292010-12-15 17:58:10 -05001147 (uint8_t *) sp, mbox, ndlp->nlp_rpi) == 0) {
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05001148 switch (ndlp->nlp_DID) {
dea31012005-04-17 16:05:31 -05001149 case NameServer_DID:
James Smartde0c5b32007-04-25 09:52:27 -04001150 mbox->mbox_cmpl = lpfc_mbx_cmpl_ns_reg_login;
dea31012005-04-17 16:05:31 -05001151 break;
1152 case FDMI_DID:
James Smartde0c5b32007-04-25 09:52:27 -04001153 mbox->mbox_cmpl = lpfc_mbx_cmpl_fdmi_reg_login;
dea31012005-04-17 16:05:31 -05001154 break;
1155 default:
James Smartffc95492010-06-07 15:23:17 -04001156 ndlp->nlp_flag |= NLP_REG_LOGIN_SEND;
James Smartde0c5b32007-04-25 09:52:27 -04001157 mbox->mbox_cmpl = lpfc_mbx_cmpl_reg_login;
dea31012005-04-17 16:05:31 -05001158 }
James Smart329f9bc2007-04-25 09:53:01 -04001159 mbox->context2 = lpfc_nlp_get(ndlp);
James Smart2e0fef82007-06-17 19:56:36 -05001160 mbox->vport = vport;
James Smart0b727fe2007-10-27 13:37:25 -04001161 if (lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT)
dea31012005-04-17 16:05:31 -05001162 != MBX_NOT_FINISHED) {
James Smart2e0fef82007-06-17 19:56:36 -05001163 lpfc_nlp_set_state(vport, ndlp,
1164 NLP_STE_REG_LOGIN_ISSUE);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001165 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001166 }
James Smartffc95492010-06-07 15:23:17 -04001167 if (ndlp->nlp_flag & NLP_REG_LOGIN_SEND)
1168 ndlp->nlp_flag &= ~NLP_REG_LOGIN_SEND;
James Smartfa4066b2008-01-11 01:53:27 -05001169 /* decrement node reference count to the failed mbox
1170 * command
1171 */
James Smart329f9bc2007-04-25 09:53:01 -04001172 lpfc_nlp_put(ndlp);
James Smart92d7f7b2007-06-17 19:56:38 -05001173 mp = (struct lpfc_dmabuf *) mbox->context1;
James Smart14691152006-12-02 13:34:28 -05001174 lpfc_mbuf_free(phba, mp->virt, mp->phys);
1175 kfree(mp);
dea31012005-04-17 16:05:31 -05001176 mempool_free(mbox, phba->mbox_mem_pool);
James Smart92d7f7b2007-06-17 19:56:38 -05001177
James Smarte8b62012007-08-02 11:10:09 -04001178 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
1179 "0134 PLOGI: cannot issue reg_login "
1180 "Data: x%x x%x x%x x%x\n",
1181 ndlp->nlp_DID, ndlp->nlp_state,
1182 ndlp->nlp_flag, ndlp->nlp_rpi);
dea31012005-04-17 16:05:31 -05001183 } else {
1184 mempool_free(mbox, phba->mbox_mem_pool);
James Smart92d7f7b2007-06-17 19:56:38 -05001185
James Smarte8b62012007-08-02 11:10:09 -04001186 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
1187 "0135 PLOGI: cannot format reg_login "
1188 "Data: x%x x%x x%x x%x\n",
1189 ndlp->nlp_DID, ndlp->nlp_state,
1190 ndlp->nlp_flag, ndlp->nlp_rpi);
dea31012005-04-17 16:05:31 -05001191 }
1192
1193
James Smart92d7f7b2007-06-17 19:56:38 -05001194out:
1195 if (ndlp->nlp_DID == NameServer_DID) {
1196 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
James Smarte8b62012007-08-02 11:10:09 -04001197 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
1198 "0261 Cannot Register NameServer login\n");
James Smart92d7f7b2007-06-17 19:56:38 -05001199 }
1200
James Smart8b455cf2013-01-03 15:43:53 -05001201 /*
1202 ** In case the node reference counter does not go to zero, ensure that
1203 ** the stale state for the node is not processed.
1204 */
1205
1206 ndlp->nlp_prev_state = ndlp->nlp_state;
1207 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
James Smart0ff10d42008-01-11 01:52:36 -05001208 spin_lock_irq(shost->host_lock);
James Smarta8adb832007-10-27 13:37:53 -04001209 ndlp->nlp_flag |= NLP_DEFER_RM;
James Smart0ff10d42008-01-11 01:52:36 -05001210 spin_unlock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001211 return NLP_STE_FREED_NODE;
dea31012005-04-17 16:05:31 -05001212}
1213
1214static uint32_t
James Smart0ff10d42008-01-11 01:52:36 -05001215lpfc_cmpl_logo_plogi_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1216 void *arg, uint32_t evt)
1217{
1218 return ndlp->nlp_state;
1219}
1220
1221static uint32_t
1222lpfc_cmpl_reglogin_plogi_issue(struct lpfc_vport *vport,
1223 struct lpfc_nodelist *ndlp, void *arg, uint32_t evt)
1224{
James Smart78730cf2010-04-06 15:06:30 -04001225 struct lpfc_hba *phba;
1226 LPFC_MBOXQ_t *pmb = (LPFC_MBOXQ_t *) arg;
1227 MAILBOX_t *mb = &pmb->u.mb;
1228 uint16_t rpi;
1229
1230 phba = vport->phba;
1231 /* Release the RPI */
1232 if (!(phba->pport->load_flag & FC_UNLOADING) &&
1233 !mb->mbxStatus) {
1234 rpi = pmb->u.mb.un.varWords[0];
1235 lpfc_release_rpi(phba, vport, rpi);
1236 }
James Smart0ff10d42008-01-11 01:52:36 -05001237 return ndlp->nlp_state;
1238}
1239
1240static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001241lpfc_device_rm_plogi_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1242 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001243{
James Smart2e0fef82007-06-17 19:56:36 -05001244 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05001245
James Smart2e0fef82007-06-17 19:56:36 -05001246 if (ndlp->nlp_flag & NLP_NPR_2B_DISC) {
1247 spin_lock_irq(shost->host_lock);
1248 ndlp->nlp_flag |= NLP_NODEV_REMOVE;
1249 spin_unlock_irq(shost->host_lock);
1250 return ndlp->nlp_state;
1251 } else {
1252 /* software abort outstanding PLOGI */
1253 lpfc_els_abort(vport->phba, ndlp);
1254
1255 lpfc_drop_node(vport, ndlp);
James Smarta0f9b482006-04-15 11:52:56 -04001256 return NLP_STE_FREED_NODE;
1257 }
dea31012005-04-17 16:05:31 -05001258}
1259
1260static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001261lpfc_device_recov_plogi_issue(struct lpfc_vport *vport,
1262 struct lpfc_nodelist *ndlp,
1263 void *arg,
1264 uint32_t evt)
dea31012005-04-17 16:05:31 -05001265{
James Smart2e0fef82007-06-17 19:56:36 -05001266 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1267 struct lpfc_hba *phba = vport->phba;
1268
James Smart92d7f7b2007-06-17 19:56:38 -05001269 /* Don't do anything that will mess up processing of the
1270 * previous RSCN.
1271 */
1272 if (vport->fc_flag & FC_RSCN_DEFERRED)
1273 return ndlp->nlp_state;
1274
dea31012005-04-17 16:05:31 -05001275 /* software abort outstanding PLOGI */
James Smart07951072007-04-25 09:51:38 -04001276 lpfc_els_abort(phba, ndlp);
dea31012005-04-17 16:05:31 -05001277
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001278 ndlp->nlp_prev_state = NLP_STE_PLOGI_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001279 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
James Smart92d7f7b2007-06-17 19:56:38 -05001280 spin_lock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04001281 ndlp->nlp_flag &= ~(NLP_NODEV_REMOVE | NLP_NPR_2B_DISC);
James Smart2e0fef82007-06-17 19:56:36 -05001282 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001283
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001284 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001285}
1286
1287static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001288lpfc_rcv_plogi_adisc_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1289 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001290{
James Smart0d2b6b82008-06-14 22:52:47 -04001291 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart2e0fef82007-06-17 19:56:36 -05001292 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05001293 struct lpfc_iocbq *cmdiocb;
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
1298 cmdiocb = (struct lpfc_iocbq *) arg;
1299
James Smart0d2b6b82008-06-14 22:52:47 -04001300 if (lpfc_rcv_plogi(vport, ndlp, cmdiocb)) {
1301 if (ndlp->nlp_flag & NLP_NPR_2B_DISC) {
1302 spin_lock_irq(shost->host_lock);
1303 ndlp->nlp_flag &= ~NLP_NPR_2B_DISC;
1304 spin_unlock_irq(shost->host_lock);
James Smart90160e02008-08-24 21:49:45 -04001305 if (vport->num_disc_nodes)
James Smart0d2b6b82008-06-14 22:52:47 -04001306 lpfc_more_adisc(vport);
James Smart0d2b6b82008-06-14 22:52:47 -04001307 }
1308 return ndlp->nlp_state;
1309 }
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001310 ndlp->nlp_prev_state = NLP_STE_ADISC_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001311 lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0);
1312 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
dea31012005-04-17 16:05:31 -05001313
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001314 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001315}
1316
1317static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001318lpfc_rcv_prli_adisc_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1319 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001320{
James Smart2e0fef82007-06-17 19:56:36 -05001321 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001322
James Smart2e0fef82007-06-17 19:56:36 -05001323 lpfc_els_rsp_prli_acc(vport, cmdiocb, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001324 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001325}
1326
1327static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001328lpfc_rcv_logo_adisc_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1329 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001330{
James Smart2e0fef82007-06-17 19:56:36 -05001331 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05001332 struct lpfc_iocbq *cmdiocb;
1333
1334 cmdiocb = (struct lpfc_iocbq *) arg;
1335
1336 /* software abort outstanding ADISC */
James Smart07951072007-04-25 09:51:38 -04001337 lpfc_els_abort(phba, ndlp);
dea31012005-04-17 16:05:31 -05001338
James Smart2e0fef82007-06-17 19:56:36 -05001339 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_LOGO);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001340 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001341}
1342
1343static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001344lpfc_rcv_padisc_adisc_issue(struct lpfc_vport *vport,
1345 struct lpfc_nodelist *ndlp,
1346 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001347{
1348 struct lpfc_iocbq *cmdiocb;
1349
1350 cmdiocb = (struct lpfc_iocbq *) arg;
1351
James Smart2e0fef82007-06-17 19:56:36 -05001352 lpfc_rcv_padisc(vport, ndlp, cmdiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001353 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001354}
1355
1356static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001357lpfc_rcv_prlo_adisc_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1358 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001359{
1360 struct lpfc_iocbq *cmdiocb;
1361
1362 cmdiocb = (struct lpfc_iocbq *) arg;
1363
1364 /* Treat like rcv logo */
James Smart2e0fef82007-06-17 19:56:36 -05001365 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_PRLO);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001366 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001367}
1368
1369static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001370lpfc_cmpl_adisc_adisc_issue(struct lpfc_vport *vport,
1371 struct lpfc_nodelist *ndlp,
1372 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001373{
James Smart2e0fef82007-06-17 19:56:36 -05001374 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1375 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05001376 struct lpfc_iocbq *cmdiocb, *rspiocb;
1377 IOCB_t *irsp;
1378 ADISC *ap;
James Smart6fb120a2009-05-22 14:52:59 -04001379 int rc;
dea31012005-04-17 16:05:31 -05001380
1381 cmdiocb = (struct lpfc_iocbq *) arg;
1382 rspiocb = cmdiocb->context_un.rsp_iocb;
1383
1384 ap = (ADISC *)lpfc_check_elscmpl_iocb(phba, cmdiocb, rspiocb);
1385 irsp = &rspiocb->iocb;
1386
1387 if ((irsp->ulpStatus) ||
James Smart92d7f7b2007-06-17 19:56:38 -05001388 (!lpfc_check_adisc(vport, ndlp, &ap->nodeName, &ap->portName))) {
dea31012005-04-17 16:05:31 -05001389 /* 1 sec timeout */
James Smart256ec0d2013-04-17 20:14:58 -04001390 mod_timer(&ndlp->nlp_delayfunc,
1391 jiffies + msecs_to_jiffies(1000));
James Smart2e0fef82007-06-17 19:56:36 -05001392 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001393 ndlp->nlp_flag |= NLP_DELAY_TMO;
James Smart2e0fef82007-06-17 19:56:36 -05001394 spin_unlock_irq(shost->host_lock);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001395 ndlp->nlp_last_elscmd = ELS_CMD_PLOGI;
dea31012005-04-17 16:05:31 -05001396
James Smart2e0fef82007-06-17 19:56:36 -05001397 memset(&ndlp->nlp_nodename, 0, sizeof(struct lpfc_name));
1398 memset(&ndlp->nlp_portname, 0, sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -05001399
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001400 ndlp->nlp_prev_state = NLP_STE_ADISC_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001401 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
1402 lpfc_unreg_rpi(vport, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001403 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001404 }
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001405
James Smart6fb120a2009-05-22 14:52:59 -04001406 if (phba->sli_rev == LPFC_SLI_REV4) {
James Smart6b5151f2012-01-18 16:24:06 -05001407 rc = lpfc_sli4_resume_rpi(ndlp, NULL, NULL);
James Smart6fb120a2009-05-22 14:52:59 -04001408 if (rc) {
1409 /* Stay in state and retry. */
1410 ndlp->nlp_prev_state = NLP_STE_ADISC_ISSUE;
1411 return ndlp->nlp_state;
1412 }
1413 }
1414
James.Smart@Emulex.Com25013222005-06-25 10:34:33 -04001415 if (ndlp->nlp_type & NLP_FCP_TARGET) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001416 ndlp->nlp_prev_state = NLP_STE_ADISC_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001417 lpfc_nlp_set_state(vport, ndlp, NLP_STE_MAPPED_NODE);
James.Smart@Emulex.Com25013222005-06-25 10:34:33 -04001418 } else {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001419 ndlp->nlp_prev_state = NLP_STE_ADISC_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001420 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
James.Smart@Emulex.Com25013222005-06-25 10:34:33 -04001421 }
James Smart6fb120a2009-05-22 14:52:59 -04001422
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001423 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001424}
1425
1426static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001427lpfc_device_rm_adisc_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1428 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001429{
James Smart2e0fef82007-06-17 19:56:36 -05001430 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05001431
James Smart2e0fef82007-06-17 19:56:36 -05001432 if (ndlp->nlp_flag & NLP_NPR_2B_DISC) {
1433 spin_lock_irq(shost->host_lock);
1434 ndlp->nlp_flag |= NLP_NODEV_REMOVE;
1435 spin_unlock_irq(shost->host_lock);
1436 return ndlp->nlp_state;
1437 } else {
1438 /* software abort outstanding ADISC */
1439 lpfc_els_abort(vport->phba, ndlp);
1440
1441 lpfc_drop_node(vport, ndlp);
James Smarta0f9b482006-04-15 11:52:56 -04001442 return NLP_STE_FREED_NODE;
1443 }
dea31012005-04-17 16:05:31 -05001444}
1445
1446static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001447lpfc_device_recov_adisc_issue(struct lpfc_vport *vport,
1448 struct lpfc_nodelist *ndlp,
1449 void *arg,
1450 uint32_t evt)
dea31012005-04-17 16:05:31 -05001451{
James Smart2e0fef82007-06-17 19:56:36 -05001452 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1453 struct lpfc_hba *phba = vport->phba;
1454
James Smart92d7f7b2007-06-17 19:56:38 -05001455 /* Don't do anything that will mess up processing of the
1456 * previous RSCN.
1457 */
1458 if (vport->fc_flag & FC_RSCN_DEFERRED)
1459 return ndlp->nlp_state;
1460
dea31012005-04-17 16:05:31 -05001461 /* software abort outstanding ADISC */
James Smart07951072007-04-25 09:51:38 -04001462 lpfc_els_abort(phba, ndlp);
dea31012005-04-17 16:05:31 -05001463
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001464 ndlp->nlp_prev_state = NLP_STE_ADISC_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001465 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
1466 spin_lock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04001467 ndlp->nlp_flag &= ~(NLP_NODEV_REMOVE | NLP_NPR_2B_DISC);
James Smart2e0fef82007-06-17 19:56:36 -05001468 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05001469 lpfc_disc_set_adisc(vport, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001470 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001471}
1472
1473static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001474lpfc_rcv_plogi_reglogin_issue(struct lpfc_vport *vport,
1475 struct lpfc_nodelist *ndlp,
1476 void *arg,
dea31012005-04-17 16:05:31 -05001477 uint32_t evt)
1478{
James Smart2e0fef82007-06-17 19:56:36 -05001479 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001480
James Smart2e0fef82007-06-17 19:56:36 -05001481 lpfc_rcv_plogi(vport, ndlp, cmdiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001482 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001483}
1484
1485static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001486lpfc_rcv_prli_reglogin_issue(struct lpfc_vport *vport,
1487 struct lpfc_nodelist *ndlp,
1488 void *arg,
dea31012005-04-17 16:05:31 -05001489 uint32_t evt)
1490{
James Smart2e0fef82007-06-17 19:56:36 -05001491 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001492
James Smart2e0fef82007-06-17 19:56:36 -05001493 lpfc_els_rsp_prli_acc(vport, cmdiocb, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001494 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001495}
1496
1497static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001498lpfc_rcv_logo_reglogin_issue(struct lpfc_vport *vport,
1499 struct lpfc_nodelist *ndlp,
1500 void *arg,
dea31012005-04-17 16:05:31 -05001501 uint32_t evt)
1502{
James Smart2e0fef82007-06-17 19:56:36 -05001503 struct lpfc_hba *phba = vport->phba;
1504 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
James Smart7054a602007-04-25 09:52:34 -04001505 LPFC_MBOXQ_t *mb;
1506 LPFC_MBOXQ_t *nextmb;
1507 struct lpfc_dmabuf *mp;
dea31012005-04-17 16:05:31 -05001508
1509 cmdiocb = (struct lpfc_iocbq *) arg;
1510
James Smart7054a602007-04-25 09:52:34 -04001511 /* cleanup any ndlp on mbox q waiting for reglogin cmpl */
1512 if ((mb = phba->sli.mbox_active)) {
James Smart04c68492009-05-22 14:52:52 -04001513 if ((mb->u.mb.mbxCommand == MBX_REG_LOGIN64) &&
James Smart7054a602007-04-25 09:52:34 -04001514 (ndlp == (struct lpfc_nodelist *) mb->context2)) {
James Smart92d7f7b2007-06-17 19:56:38 -05001515 lpfc_nlp_put(ndlp);
James Smart7054a602007-04-25 09:52:34 -04001516 mb->context2 = NULL;
1517 mb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
1518 }
1519 }
1520
James Smart2e0fef82007-06-17 19:56:36 -05001521 spin_lock_irq(&phba->hbalock);
James Smart7054a602007-04-25 09:52:34 -04001522 list_for_each_entry_safe(mb, nextmb, &phba->sli.mboxq, list) {
James Smart04c68492009-05-22 14:52:52 -04001523 if ((mb->u.mb.mbxCommand == MBX_REG_LOGIN64) &&
James Smart7054a602007-04-25 09:52:34 -04001524 (ndlp == (struct lpfc_nodelist *) mb->context2)) {
1525 mp = (struct lpfc_dmabuf *) (mb->context1);
1526 if (mp) {
James Smart98c9ea52007-10-27 13:37:33 -04001527 __lpfc_mbuf_free(phba, mp->virt, mp->phys);
James Smart7054a602007-04-25 09:52:34 -04001528 kfree(mp);
1529 }
James Smart92d7f7b2007-06-17 19:56:38 -05001530 lpfc_nlp_put(ndlp);
James Smart7054a602007-04-25 09:52:34 -04001531 list_del(&mb->list);
James Smart5ffc2662009-11-18 15:39:44 -05001532 phba->sli.mboxq_cnt--;
James Smart7054a602007-04-25 09:52:34 -04001533 mempool_free(mb, phba->mbox_mem_pool);
1534 }
1535 }
James Smart2e0fef82007-06-17 19:56:36 -05001536 spin_unlock_irq(&phba->hbalock);
James Smart7054a602007-04-25 09:52:34 -04001537
James Smart2e0fef82007-06-17 19:56:36 -05001538 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_LOGO);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001539 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001540}
1541
1542static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001543lpfc_rcv_padisc_reglogin_issue(struct lpfc_vport *vport,
1544 struct lpfc_nodelist *ndlp,
1545 void *arg,
dea31012005-04-17 16:05:31 -05001546 uint32_t evt)
1547{
James Smart2e0fef82007-06-17 19:56:36 -05001548 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001549
James Smart2e0fef82007-06-17 19:56:36 -05001550 lpfc_rcv_padisc(vport, ndlp, cmdiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001551 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001552}
1553
1554static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001555lpfc_rcv_prlo_reglogin_issue(struct lpfc_vport *vport,
1556 struct lpfc_nodelist *ndlp,
1557 void *arg,
dea31012005-04-17 16:05:31 -05001558 uint32_t evt)
1559{
1560 struct lpfc_iocbq *cmdiocb;
1561
1562 cmdiocb = (struct lpfc_iocbq *) arg;
James Smart51ef4c22007-08-02 11:10:31 -04001563 lpfc_els_rsp_acc(vport, ELS_CMD_PRLO, cmdiocb, ndlp, NULL);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001564 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001565}
1566
1567static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001568lpfc_cmpl_reglogin_reglogin_issue(struct lpfc_vport *vport,
1569 struct lpfc_nodelist *ndlp,
1570 void *arg,
1571 uint32_t evt)
dea31012005-04-17 16:05:31 -05001572{
James Smart2e0fef82007-06-17 19:56:36 -05001573 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart2e0fef82007-06-17 19:56:36 -05001574 LPFC_MBOXQ_t *pmb = (LPFC_MBOXQ_t *) arg;
James Smart04c68492009-05-22 14:52:52 -04001575 MAILBOX_t *mb = &pmb->u.mb;
James Smart2e0fef82007-06-17 19:56:36 -05001576 uint32_t did = mb->un.varWords[1];
dea31012005-04-17 16:05:31 -05001577
dea31012005-04-17 16:05:31 -05001578 if (mb->mbxStatus) {
1579 /* RegLogin failed */
James Smarte8b62012007-08-02 11:10:09 -04001580 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
James Smart6d368e52011-05-24 11:44:12 -04001581 "0246 RegLogin failed Data: x%x x%x x%x x%x "
1582 "x%x\n",
1583 did, mb->mbxStatus, vport->port_state,
1584 mb->un.varRegLogin.vpi,
1585 mb->un.varRegLogin.rpi);
James Smartd0e56da2006-07-06 15:49:42 -04001586 /*
1587 * If RegLogin failed due to lack of HBA resources do not
1588 * retry discovery.
1589 */
1590 if (mb->mbxStatus == MBXERR_RPI_FULL) {
James Smart87af33f2007-10-27 13:37:43 -04001591 ndlp->nlp_prev_state = NLP_STE_REG_LOGIN_ISSUE;
1592 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
James Smartd0e56da2006-07-06 15:49:42 -04001593 return ndlp->nlp_state;
1594 }
1595
James Smart2e0fef82007-06-17 19:56:36 -05001596 /* Put ndlp in npr state set plogi timer for 1 sec */
James Smart256ec0d2013-04-17 20:14:58 -04001597 mod_timer(&ndlp->nlp_delayfunc,
1598 jiffies + msecs_to_jiffies(1000 * 1));
James Smart2e0fef82007-06-17 19:56:36 -05001599 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001600 ndlp->nlp_flag |= NLP_DELAY_TMO;
James Smart2e0fef82007-06-17 19:56:36 -05001601 spin_unlock_irq(shost->host_lock);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001602 ndlp->nlp_last_elscmd = ELS_CMD_PLOGI;
dea31012005-04-17 16:05:31 -05001603
James Smart2e0fef82007-06-17 19:56:36 -05001604 lpfc_issue_els_logo(vport, ndlp, 0);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001605 ndlp->nlp_prev_state = NLP_STE_REG_LOGIN_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001606 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001607 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001608 }
1609
James Smart6d368e52011-05-24 11:44:12 -04001610 /* SLI4 ports have preallocated logical rpis. */
1611 if (vport->phba->sli_rev < LPFC_SLI_REV4)
1612 ndlp->nlp_rpi = mb->un.varWords[0];
1613
James Smart40426292010-12-15 17:58:10 -05001614 ndlp->nlp_flag |= NLP_RPI_REGISTERED;
dea31012005-04-17 16:05:31 -05001615
1616 /* Only if we are not a fabric nport do we issue PRLI */
1617 if (!(ndlp->nlp_type & NLP_FABRIC)) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001618 ndlp->nlp_prev_state = NLP_STE_REG_LOGIN_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001619 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PRLI_ISSUE);
1620 lpfc_issue_els_prli(vport, ndlp, 0);
dea31012005-04-17 16:05:31 -05001621 } else {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001622 ndlp->nlp_prev_state = NLP_STE_REG_LOGIN_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001623 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
dea31012005-04-17 16:05:31 -05001624 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001625 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001626}
1627
1628static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001629lpfc_device_rm_reglogin_issue(struct lpfc_vport *vport,
1630 struct lpfc_nodelist *ndlp,
1631 void *arg,
dea31012005-04-17 16:05:31 -05001632 uint32_t evt)
1633{
James Smart2e0fef82007-06-17 19:56:36 -05001634 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1635
1636 if (ndlp->nlp_flag & NLP_NPR_2B_DISC) {
1637 spin_lock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04001638 ndlp->nlp_flag |= NLP_NODEV_REMOVE;
James Smart2e0fef82007-06-17 19:56:36 -05001639 spin_unlock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04001640 return ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05001641 } else {
1642 lpfc_drop_node(vport, ndlp);
James Smarta0f9b482006-04-15 11:52:56 -04001643 return NLP_STE_FREED_NODE;
1644 }
dea31012005-04-17 16:05:31 -05001645}
1646
1647static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001648lpfc_device_recov_reglogin_issue(struct lpfc_vport *vport,
1649 struct lpfc_nodelist *ndlp,
1650 void *arg,
1651 uint32_t evt)
dea31012005-04-17 16:05:31 -05001652{
James Smart2e0fef82007-06-17 19:56:36 -05001653 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1654
James Smart92d7f7b2007-06-17 19:56:38 -05001655 /* Don't do anything that will mess up processing of the
1656 * previous RSCN.
1657 */
1658 if (vport->fc_flag & FC_RSCN_DEFERRED)
1659 return ndlp->nlp_state;
1660
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001661 ndlp->nlp_prev_state = NLP_STE_REG_LOGIN_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001662 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
1663 spin_lock_irq(shost->host_lock);
James Smartffc95492010-06-07 15:23:17 -04001664 ndlp->nlp_flag |= NLP_IGNR_REG_CMPL;
James Smarta0f9b482006-04-15 11:52:56 -04001665 ndlp->nlp_flag &= ~(NLP_NODEV_REMOVE | NLP_NPR_2B_DISC);
James Smart2e0fef82007-06-17 19:56:36 -05001666 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05001667 lpfc_disc_set_adisc(vport, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001668 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001669}
1670
1671static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001672lpfc_rcv_plogi_prli_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1673 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001674{
1675 struct lpfc_iocbq *cmdiocb;
1676
1677 cmdiocb = (struct lpfc_iocbq *) arg;
1678
James Smart2e0fef82007-06-17 19:56:36 -05001679 lpfc_rcv_plogi(vport, ndlp, cmdiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001680 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001681}
1682
1683static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001684lpfc_rcv_prli_prli_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1685 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001686{
James Smart2e0fef82007-06-17 19:56:36 -05001687 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001688
James Smart2e0fef82007-06-17 19:56:36 -05001689 lpfc_els_rsp_prli_acc(vport, cmdiocb, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001690 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001691}
1692
1693static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001694lpfc_rcv_logo_prli_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1695 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001696{
James Smart2e0fef82007-06-17 19:56:36 -05001697 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001698
1699 /* Software abort outstanding PRLI before sending acc */
James Smart2e0fef82007-06-17 19:56:36 -05001700 lpfc_els_abort(vport->phba, ndlp);
dea31012005-04-17 16:05:31 -05001701
James Smart2e0fef82007-06-17 19:56:36 -05001702 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_LOGO);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001703 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001704}
1705
1706static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001707lpfc_rcv_padisc_prli_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1708 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001709{
James Smart2e0fef82007-06-17 19:56:36 -05001710 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001711
James Smart2e0fef82007-06-17 19:56:36 -05001712 lpfc_rcv_padisc(vport, ndlp, cmdiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001713 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001714}
1715
1716/* This routine is envoked when we rcv a PRLO request from a nport
1717 * we are logged into. We should send back a PRLO rsp setting the
1718 * appropriate bits.
1719 * NEXT STATE = PRLI_ISSUE
1720 */
1721static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001722lpfc_rcv_prlo_prli_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1723 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001724{
James Smart2e0fef82007-06-17 19:56:36 -05001725 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001726
James Smart51ef4c22007-08-02 11:10:31 -04001727 lpfc_els_rsp_acc(vport, ELS_CMD_PRLO, cmdiocb, ndlp, NULL);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001728 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001729}
1730
1731static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001732lpfc_cmpl_prli_prli_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1733 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001734{
James Smart92d7f7b2007-06-17 19:56:38 -05001735 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05001736 struct lpfc_iocbq *cmdiocb, *rspiocb;
James Smart2e0fef82007-06-17 19:56:36 -05001737 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05001738 IOCB_t *irsp;
1739 PRLI *npr;
1740
1741 cmdiocb = (struct lpfc_iocbq *) arg;
1742 rspiocb = cmdiocb->context_un.rsp_iocb;
1743 npr = (PRLI *)lpfc_check_elscmpl_iocb(phba, cmdiocb, rspiocb);
1744
1745 irsp = &rspiocb->iocb;
1746 if (irsp->ulpStatus) {
James Smart858c9f62007-06-17 19:56:39 -05001747 if ((vport->port_type == LPFC_NPIV_PORT) &&
James Smart3de2a652007-08-02 11:09:59 -04001748 vport->cfg_restrict_login) {
James Smart858c9f62007-06-17 19:56:39 -05001749 goto out;
1750 }
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001751 ndlp->nlp_prev_state = NLP_STE_PRLI_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001752 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001753 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001754 }
1755
1756 /* Check out PRLI rsp */
1757 ndlp->nlp_type &= ~(NLP_FCP_TARGET | NLP_FCP_INITIATOR);
1758 ndlp->nlp_fcp_info &= ~NLP_FCP_2_DEVICE;
James Smart3cb01c52013-07-15 18:35:04 -04001759 ndlp->nlp_flag &= ~NLP_FIRSTBURST;
dea31012005-04-17 16:05:31 -05001760 if ((npr->acceptRspCode == PRLI_REQ_EXECUTED) &&
1761 (npr->prliType == PRLI_FCP_TYPE)) {
1762 if (npr->initiatorFunc)
1763 ndlp->nlp_type |= NLP_FCP_INITIATOR;
James Smart3cb01c52013-07-15 18:35:04 -04001764 if (npr->targetFunc) {
dea31012005-04-17 16:05:31 -05001765 ndlp->nlp_type |= NLP_FCP_TARGET;
James Smart3cb01c52013-07-15 18:35:04 -04001766 if (npr->writeXferRdyDis)
1767 ndlp->nlp_flag |= NLP_FIRSTBURST;
1768 }
dea31012005-04-17 16:05:31 -05001769 if (npr->Retry)
1770 ndlp->nlp_fcp_info |= NLP_FCP_2_DEVICE;
1771 }
James Smart92d7f7b2007-06-17 19:56:38 -05001772 if (!(ndlp->nlp_type & NLP_FCP_TARGET) &&
1773 (vport->port_type == LPFC_NPIV_PORT) &&
James Smart3de2a652007-08-02 11:09:59 -04001774 vport->cfg_restrict_login) {
James Smart858c9f62007-06-17 19:56:39 -05001775out:
James Smart92d7f7b2007-06-17 19:56:38 -05001776 spin_lock_irq(shost->host_lock);
1777 ndlp->nlp_flag |= NLP_TARGET_REMOVE;
1778 spin_unlock_irq(shost->host_lock);
1779 lpfc_issue_els_logo(vport, ndlp, 0);
1780
1781 ndlp->nlp_prev_state = NLP_STE_PRLI_ISSUE;
James Smart87af33f2007-10-27 13:37:43 -04001782 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
James Smart92d7f7b2007-06-17 19:56:38 -05001783 return ndlp->nlp_state;
1784 }
dea31012005-04-17 16:05:31 -05001785
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001786 ndlp->nlp_prev_state = NLP_STE_PRLI_ISSUE;
James Smart92d7f7b2007-06-17 19:56:38 -05001787 if (ndlp->nlp_type & NLP_FCP_TARGET)
1788 lpfc_nlp_set_state(vport, ndlp, NLP_STE_MAPPED_NODE);
1789 else
1790 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001791 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001792}
1793
1794/*! lpfc_device_rm_prli_issue
James Smart92d7f7b2007-06-17 19:56:38 -05001795 *
1796 * \pre
1797 * \post
1798 * \param phba
1799 * \param ndlp
1800 * \param arg
1801 * \param evt
1802 * \return uint32_t
1803 *
1804 * \b Description:
1805 * This routine is envoked when we a request to remove a nport we are in the
1806 * process of PRLIing. We should software abort outstanding prli, unreg
1807 * login, send a logout. We will change node state to UNUSED_NODE, put it
1808 * on plogi list so it can be freed when LOGO completes.
1809 *
1810 */
1811
dea31012005-04-17 16:05:31 -05001812static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001813lpfc_device_rm_prli_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1814 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001815{
James Smart2e0fef82007-06-17 19:56:36 -05001816 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05001817
James Smart2e0fef82007-06-17 19:56:36 -05001818 if (ndlp->nlp_flag & NLP_NPR_2B_DISC) {
1819 spin_lock_irq(shost->host_lock);
1820 ndlp->nlp_flag |= NLP_NODEV_REMOVE;
1821 spin_unlock_irq(shost->host_lock);
1822 return ndlp->nlp_state;
1823 } else {
1824 /* software abort outstanding PLOGI */
1825 lpfc_els_abort(vport->phba, ndlp);
1826
1827 lpfc_drop_node(vport, ndlp);
James Smarta0f9b482006-04-15 11:52:56 -04001828 return NLP_STE_FREED_NODE;
1829 }
dea31012005-04-17 16:05:31 -05001830}
1831
1832
1833/*! lpfc_device_recov_prli_issue
James Smart92d7f7b2007-06-17 19:56:38 -05001834 *
1835 * \pre
1836 * \post
1837 * \param phba
1838 * \param ndlp
1839 * \param arg
1840 * \param evt
1841 * \return uint32_t
1842 *
1843 * \b Description:
1844 * The routine is envoked when the state of a device is unknown, like
1845 * during a link down. We should remove the nodelist entry from the
1846 * unmapped list, issue a UNREG_LOGIN, do a software abort of the
1847 * outstanding PRLI command, then free the node entry.
1848 */
dea31012005-04-17 16:05:31 -05001849static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001850lpfc_device_recov_prli_issue(struct lpfc_vport *vport,
1851 struct lpfc_nodelist *ndlp,
1852 void *arg,
1853 uint32_t evt)
dea31012005-04-17 16:05:31 -05001854{
James Smart2e0fef82007-06-17 19:56:36 -05001855 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1856 struct lpfc_hba *phba = vport->phba;
1857
James Smart92d7f7b2007-06-17 19:56:38 -05001858 /* Don't do anything that will mess up processing of the
1859 * previous RSCN.
1860 */
1861 if (vport->fc_flag & FC_RSCN_DEFERRED)
1862 return ndlp->nlp_state;
1863
dea31012005-04-17 16:05:31 -05001864 /* software abort outstanding PRLI */
James Smart07951072007-04-25 09:51:38 -04001865 lpfc_els_abort(phba, ndlp);
dea31012005-04-17 16:05:31 -05001866
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001867 ndlp->nlp_prev_state = NLP_STE_PRLI_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001868 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
1869 spin_lock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04001870 ndlp->nlp_flag &= ~(NLP_NODEV_REMOVE | NLP_NPR_2B_DISC);
James Smart2e0fef82007-06-17 19:56:36 -05001871 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05001872 lpfc_disc_set_adisc(vport, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001873 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001874}
1875
1876static uint32_t
James Smart086a3452012-08-14 14:25:21 -04001877lpfc_rcv_plogi_logo_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1878 void *arg, uint32_t evt)
1879{
1880 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *)arg;
1881 struct ls_rjt stat;
1882
1883 memset(&stat, 0, sizeof(struct ls_rjt));
1884 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
1885 stat.un.b.lsRjtRsnCodeExp = LSEXP_NOTHING_MORE;
1886 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
1887 return ndlp->nlp_state;
1888}
1889
1890static uint32_t
1891lpfc_rcv_prli_logo_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1892 void *arg, uint32_t evt)
1893{
1894 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *)arg;
1895 struct ls_rjt stat;
1896
1897 memset(&stat, 0, sizeof(struct ls_rjt));
1898 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
1899 stat.un.b.lsRjtRsnCodeExp = LSEXP_NOTHING_MORE;
1900 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
1901 return ndlp->nlp_state;
1902}
1903
1904static uint32_t
1905lpfc_rcv_logo_logo_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1906 void *arg, uint32_t evt)
1907{
1908 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1909 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *)arg;
1910
1911 spin_lock_irq(shost->host_lock);
James Smart7c5e5182015-05-22 10:42:43 -04001912 ndlp->nlp_flag |= NLP_LOGO_ACC;
James Smart086a3452012-08-14 14:25:21 -04001913 spin_unlock_irq(shost->host_lock);
1914 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
1915 return ndlp->nlp_state;
1916}
1917
1918static uint32_t
1919lpfc_rcv_padisc_logo_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1920 void *arg, uint32_t evt)
1921{
1922 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *)arg;
1923 struct ls_rjt stat;
1924
1925 memset(&stat, 0, sizeof(struct ls_rjt));
1926 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
1927 stat.un.b.lsRjtRsnCodeExp = LSEXP_NOTHING_MORE;
1928 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
1929 return ndlp->nlp_state;
1930}
1931
1932static uint32_t
1933lpfc_rcv_prlo_logo_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1934 void *arg, uint32_t evt)
1935{
1936 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *)arg;
1937 struct ls_rjt stat;
1938
1939 memset(&stat, 0, sizeof(struct ls_rjt));
1940 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
1941 stat.un.b.lsRjtRsnCodeExp = LSEXP_NOTHING_MORE;
1942 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
1943 return ndlp->nlp_state;
1944}
1945
1946static uint32_t
1947lpfc_cmpl_logo_logo_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1948 void *arg, uint32_t evt)
1949{
1950 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1951
1952 ndlp->nlp_prev_state = NLP_STE_LOGO_ISSUE;
1953 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
1954 spin_lock_irq(shost->host_lock);
1955 ndlp->nlp_flag &= ~(NLP_NODEV_REMOVE | NLP_NPR_2B_DISC);
1956 spin_unlock_irq(shost->host_lock);
1957 lpfc_disc_set_adisc(vport, ndlp);
1958 return ndlp->nlp_state;
1959}
1960
1961static uint32_t
1962lpfc_device_rm_logo_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1963 void *arg, uint32_t evt)
1964{
1965 /*
1966 * Take no action. If a LOGO is outstanding, then possibly DevLoss has
1967 * timed out and is calling for Device Remove. In this case, the LOGO
1968 * must be allowed to complete in state LOGO_ISSUE so that the rpi
1969 * and other NLP flags are correctly cleaned up.
1970 */
1971 return ndlp->nlp_state;
1972}
1973
1974static uint32_t
1975lpfc_device_recov_logo_issue(struct lpfc_vport *vport,
1976 struct lpfc_nodelist *ndlp,
1977 void *arg, uint32_t evt)
1978{
1979 /*
1980 * Device Recovery events have no meaning for a node with a LOGO
1981 * outstanding. The LOGO has to complete first and handle the
1982 * node from that point.
1983 */
1984 return ndlp->nlp_state;
1985}
1986
1987static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001988lpfc_rcv_plogi_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 Smart2e0fef82007-06-17 19:56:36 -05001993 lpfc_rcv_plogi(vport, ndlp, cmdiocb);
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_rcv_prli_unmap_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1999 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05002000{
James Smart2e0fef82007-06-17 19:56:36 -05002001 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05002002
James Smart2e0fef82007-06-17 19:56:36 -05002003 lpfc_rcv_prli(vport, ndlp, cmdiocb);
2004 lpfc_els_rsp_prli_acc(vport, cmdiocb, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002005 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05002006}
2007
2008static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05002009lpfc_rcv_logo_unmap_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2010 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05002011{
James Smart2e0fef82007-06-17 19:56:36 -05002012 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05002013
James Smart2e0fef82007-06-17 19:56:36 -05002014 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_LOGO);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002015 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05002016}
2017
2018static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05002019lpfc_rcv_padisc_unmap_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2020 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05002021{
James Smart2e0fef82007-06-17 19:56:36 -05002022 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05002023
James Smart2e0fef82007-06-17 19:56:36 -05002024 lpfc_rcv_padisc(vport, ndlp, cmdiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002025 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05002026}
2027
2028static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05002029lpfc_rcv_prlo_unmap_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2030 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05002031{
James Smart2e0fef82007-06-17 19:56:36 -05002032 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05002033
James Smart51ef4c22007-08-02 11:10:31 -04002034 lpfc_els_rsp_acc(vport, ELS_CMD_PRLO, cmdiocb, ndlp, NULL);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002035 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05002036}
2037
2038static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05002039lpfc_device_recov_unmap_node(struct lpfc_vport *vport,
2040 struct lpfc_nodelist *ndlp,
2041 void *arg,
2042 uint32_t evt)
dea31012005-04-17 16:05:31 -05002043{
James Smart2e0fef82007-06-17 19:56:36 -05002044 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2045
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05002046 ndlp->nlp_prev_state = NLP_STE_UNMAPPED_NODE;
James Smart2e0fef82007-06-17 19:56:36 -05002047 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
2048 spin_lock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04002049 ndlp->nlp_flag &= ~(NLP_NODEV_REMOVE | NLP_NPR_2B_DISC);
James Smart2e0fef82007-06-17 19:56:36 -05002050 spin_unlock_irq(shost->host_lock);
2051 lpfc_disc_set_adisc(vport, ndlp);
dea31012005-04-17 16:05:31 -05002052
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_plogi_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_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05002061
James Smart2e0fef82007-06-17 19:56:36 -05002062 lpfc_rcv_plogi(vport, ndlp, cmdiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002063 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05002064}
2065
2066static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05002067lpfc_rcv_prli_mapped_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2068 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05002069{
James Smart2e0fef82007-06-17 19:56:36 -05002070 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05002071
James Smart2e0fef82007-06-17 19:56:36 -05002072 lpfc_els_rsp_prli_acc(vport, cmdiocb, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002073 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05002074}
2075
2076static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05002077lpfc_rcv_logo_mapped_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2078 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05002079{
James Smart2e0fef82007-06-17 19:56:36 -05002080 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05002081
James Smart2e0fef82007-06-17 19:56:36 -05002082 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_LOGO);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002083 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05002084}
2085
2086static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05002087lpfc_rcv_padisc_mapped_node(struct lpfc_vport *vport,
2088 struct lpfc_nodelist *ndlp,
2089 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05002090{
James Smart2e0fef82007-06-17 19:56:36 -05002091 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05002092
James Smart2e0fef82007-06-17 19:56:36 -05002093 lpfc_rcv_padisc(vport, ndlp, cmdiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002094 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05002095}
2096
2097static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05002098lpfc_rcv_prlo_mapped_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2099 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05002100{
James Smart2e0fef82007-06-17 19:56:36 -05002101 struct lpfc_hba *phba = vport->phba;
2102 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05002103
2104 /* flush the target */
James Smart51ef4c22007-08-02 11:10:31 -04002105 lpfc_sli_abort_iocb(vport, &phba->sli.ring[phba->sli.fcp_ring],
2106 ndlp->nlp_sid, 0, LPFC_CTX_TGT);
dea31012005-04-17 16:05:31 -05002107
2108 /* Treat like rcv logo */
James Smart2e0fef82007-06-17 19:56:36 -05002109 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_PRLO);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002110 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05002111}
2112
2113static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05002114lpfc_device_recov_mapped_node(struct lpfc_vport *vport,
2115 struct lpfc_nodelist *ndlp,
2116 void *arg,
2117 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
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05002121 ndlp->nlp_prev_state = NLP_STE_MAPPED_NODE;
James Smart2e0fef82007-06-17 19:56:36 -05002122 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
2123 spin_lock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04002124 ndlp->nlp_flag &= ~(NLP_NODEV_REMOVE | NLP_NPR_2B_DISC);
James Smart2e0fef82007-06-17 19:56:36 -05002125 spin_unlock_irq(shost->host_lock);
2126 lpfc_disc_set_adisc(vport, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002127 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05002128}
2129
2130static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05002131lpfc_rcv_plogi_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2132 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05002133{
James Smart2e0fef82007-06-17 19:56:36 -05002134 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2135 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05002136
2137 /* Ignore PLOGI if we have an outstanding LOGO */
James Smart0d2b6b82008-06-14 22:52:47 -04002138 if (ndlp->nlp_flag & (NLP_LOGO_SND | NLP_LOGO_ACC))
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002139 return ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05002140 if (lpfc_rcv_plogi(vport, ndlp, cmdiocb)) {
James Smart0d2b6b82008-06-14 22:52:47 -04002141 lpfc_cancel_retry_delay_tmo(vport, ndlp);
James Smart2e0fef82007-06-17 19:56:36 -05002142 spin_lock_irq(shost->host_lock);
James Smart0d2b6b82008-06-14 22:52:47 -04002143 ndlp->nlp_flag &= ~(NLP_NPR_ADISC | NLP_NPR_2B_DISC);
James Smart2e0fef82007-06-17 19:56:36 -05002144 spin_unlock_irq(shost->host_lock);
James Smart0d2b6b82008-06-14 22:52:47 -04002145 } else if (!(ndlp->nlp_flag & NLP_NPR_2B_DISC)) {
2146 /* send PLOGI immediately, move to PLOGI issue state */
2147 if (!(ndlp->nlp_flag & NLP_DELAY_TMO)) {
2148 ndlp->nlp_prev_state = NLP_STE_NPR_NODE;
2149 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
2150 lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0);
2151 }
dea31012005-04-17 16:05:31 -05002152 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002153 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05002154}
2155
2156static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05002157lpfc_rcv_prli_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2158 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05002159{
James Smart2e0fef82007-06-17 19:56:36 -05002160 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2161 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
2162 struct ls_rjt stat;
dea31012005-04-17 16:05:31 -05002163
2164 memset(&stat, 0, sizeof (struct ls_rjt));
2165 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
2166 stat.un.b.lsRjtRsnCodeExp = LSEXP_NOTHING_MORE;
James Smart858c9f62007-06-17 19:56:39 -05002167 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
dea31012005-04-17 16:05:31 -05002168
2169 if (!(ndlp->nlp_flag & NLP_DELAY_TMO)) {
2170 if (ndlp->nlp_flag & NLP_NPR_ADISC) {
James Smart2e0fef82007-06-17 19:56:36 -05002171 spin_lock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002172 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05002173 ndlp->nlp_prev_state = NLP_STE_NPR_NODE;
James Smart2e0fef82007-06-17 19:56:36 -05002174 spin_unlock_irq(shost->host_lock);
2175 lpfc_nlp_set_state(vport, ndlp, NLP_STE_ADISC_ISSUE);
2176 lpfc_issue_els_adisc(vport, ndlp, 0);
dea31012005-04-17 16:05:31 -05002177 } else {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05002178 ndlp->nlp_prev_state = NLP_STE_NPR_NODE;
James Smart2e0fef82007-06-17 19:56:36 -05002179 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
2180 lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0);
dea31012005-04-17 16:05:31 -05002181 }
2182 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002183 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05002184}
2185
2186static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05002187lpfc_rcv_logo_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2188 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05002189{
James Smart2e0fef82007-06-17 19:56:36 -05002190 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05002191
James Smart2e0fef82007-06-17 19:56:36 -05002192 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_LOGO);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002193 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05002194}
2195
2196static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05002197lpfc_rcv_padisc_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2198 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05002199{
James Smart2e0fef82007-06-17 19:56:36 -05002200 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05002201
James Smart2e0fef82007-06-17 19:56:36 -05002202 lpfc_rcv_padisc(vport, ndlp, cmdiocb);
James Smart33ccf8d2006-08-17 11:57:58 -04002203 /*
2204 * Do not start discovery if discovery is about to start
2205 * or discovery in progress for this node. Starting discovery
2206 * here will affect the counting of discovery threads.
2207 */
James Smart2fb9bd82006-12-02 13:33:57 -05002208 if (!(ndlp->nlp_flag & NLP_DELAY_TMO) &&
James Smart92d7f7b2007-06-17 19:56:38 -05002209 !(ndlp->nlp_flag & NLP_NPR_2B_DISC)) {
dea31012005-04-17 16:05:31 -05002210 if (ndlp->nlp_flag & NLP_NPR_ADISC) {
James Smart92d7f7b2007-06-17 19:56:38 -05002211 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05002212 ndlp->nlp_prev_state = NLP_STE_NPR_NODE;
James Smart2e0fef82007-06-17 19:56:36 -05002213 lpfc_nlp_set_state(vport, ndlp, NLP_STE_ADISC_ISSUE);
2214 lpfc_issue_els_adisc(vport, ndlp, 0);
dea31012005-04-17 16:05:31 -05002215 } else {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05002216 ndlp->nlp_prev_state = NLP_STE_NPR_NODE;
James Smart2e0fef82007-06-17 19:56:36 -05002217 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
2218 lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0);
dea31012005-04-17 16:05:31 -05002219 }
2220 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002221 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05002222}
2223
2224static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05002225lpfc_rcv_prlo_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2226 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05002227{
James Smart2e0fef82007-06-17 19:56:36 -05002228 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2229 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05002230
James Smart2e0fef82007-06-17 19:56:36 -05002231 spin_lock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002232 ndlp->nlp_flag |= NLP_LOGO_ACC;
James Smart2e0fef82007-06-17 19:56:36 -05002233 spin_unlock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002234
James Smart51ef4c22007-08-02 11:10:31 -04002235 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
dea31012005-04-17 16:05:31 -05002236
James Smart2e0fef82007-06-17 19:56:36 -05002237 if ((ndlp->nlp_flag & NLP_DELAY_TMO) == 0) {
James Smart256ec0d2013-04-17 20:14:58 -04002238 mod_timer(&ndlp->nlp_delayfunc,
2239 jiffies + msecs_to_jiffies(1000 * 1));
James Smart2e0fef82007-06-17 19:56:36 -05002240 spin_lock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002241 ndlp->nlp_flag |= NLP_DELAY_TMO;
2242 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
James Smart2e0fef82007-06-17 19:56:36 -05002243 spin_unlock_irq(shost->host_lock);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05002244 ndlp->nlp_last_elscmd = ELS_CMD_PLOGI;
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002245 } else {
James Smart2e0fef82007-06-17 19:56:36 -05002246 spin_lock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002247 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
James Smart2e0fef82007-06-17 19:56:36 -05002248 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002249 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002250 return ndlp->nlp_state;
2251}
dea31012005-04-17 16:05:31 -05002252
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002253static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05002254lpfc_cmpl_plogi_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2255 void *arg, uint32_t evt)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002256{
2257 struct lpfc_iocbq *cmdiocb, *rspiocb;
James Smarta0f9b482006-04-15 11:52:56 -04002258 IOCB_t *irsp;
James Smart8b455cf2013-01-03 15:43:53 -05002259 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002260
2261 cmdiocb = (struct lpfc_iocbq *) arg;
2262 rspiocb = cmdiocb->context_un.rsp_iocb;
James Smarta0f9b482006-04-15 11:52:56 -04002263
2264 irsp = &rspiocb->iocb;
2265 if (irsp->ulpStatus) {
James Smart8b455cf2013-01-03 15:43:53 -05002266 spin_lock_irq(shost->host_lock);
James Smarta8adb832007-10-27 13:37:53 -04002267 ndlp->nlp_flag |= NLP_DEFER_RM;
James Smart8b455cf2013-01-03 15:43:53 -05002268 spin_unlock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04002269 return NLP_STE_FREED_NODE;
2270 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002271 return ndlp->nlp_state;
2272}
2273
2274static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05002275lpfc_cmpl_prli_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2276 void *arg, uint32_t evt)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002277{
2278 struct lpfc_iocbq *cmdiocb, *rspiocb;
James Smarta0f9b482006-04-15 11:52:56 -04002279 IOCB_t *irsp;
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002280
2281 cmdiocb = (struct lpfc_iocbq *) arg;
2282 rspiocb = cmdiocb->context_un.rsp_iocb;
James Smarta0f9b482006-04-15 11:52:56 -04002283
2284 irsp = &rspiocb->iocb;
2285 if (irsp->ulpStatus && (ndlp->nlp_flag & NLP_NODEV_REMOVE)) {
James Smart2e0fef82007-06-17 19:56:36 -05002286 lpfc_drop_node(vport, ndlp);
James Smarta0f9b482006-04-15 11:52:56 -04002287 return NLP_STE_FREED_NODE;
2288 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002289 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05002290}
2291
2292static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05002293lpfc_cmpl_logo_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2294 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05002295{
James Smartd7c255b2008-08-24 21:50:00 -04002296 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart086a3452012-08-14 14:25:21 -04002297
2298 /* For the fabric port just clear the fc flags. */
James Smartd7c255b2008-08-24 21:50:00 -04002299 if (ndlp->nlp_DID == Fabric_DID) {
2300 spin_lock_irq(shost->host_lock);
2301 vport->fc_flag &= ~(FC_FABRIC | FC_PUBLIC_LOOP);
2302 spin_unlock_irq(shost->host_lock);
2303 }
James Smart2e0fef82007-06-17 19:56:36 -05002304 lpfc_unreg_rpi(vport, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002305 return ndlp->nlp_state;
2306}
2307
2308static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05002309lpfc_cmpl_adisc_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2310 void *arg, uint32_t evt)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002311{
2312 struct lpfc_iocbq *cmdiocb, *rspiocb;
James Smarta0f9b482006-04-15 11:52:56 -04002313 IOCB_t *irsp;
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002314
2315 cmdiocb = (struct lpfc_iocbq *) arg;
2316 rspiocb = cmdiocb->context_un.rsp_iocb;
James Smarta0f9b482006-04-15 11:52:56 -04002317
2318 irsp = &rspiocb->iocb;
2319 if (irsp->ulpStatus && (ndlp->nlp_flag & NLP_NODEV_REMOVE)) {
James Smart2e0fef82007-06-17 19:56:36 -05002320 lpfc_drop_node(vport, ndlp);
James Smarta0f9b482006-04-15 11:52:56 -04002321 return NLP_STE_FREED_NODE;
2322 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002323 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05002324}
2325
2326static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05002327lpfc_cmpl_reglogin_npr_node(struct lpfc_vport *vport,
2328 struct lpfc_nodelist *ndlp,
2329 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05002330{
James Smart2e0fef82007-06-17 19:56:36 -05002331 LPFC_MBOXQ_t *pmb = (LPFC_MBOXQ_t *) arg;
James Smart04c68492009-05-22 14:52:52 -04002332 MAILBOX_t *mb = &pmb->u.mb;
dea31012005-04-17 16:05:31 -05002333
James Smart04c68492009-05-22 14:52:52 -04002334 if (!mb->mbxStatus) {
James Smart6d368e52011-05-24 11:44:12 -04002335 /* SLI4 ports have preallocated logical rpis. */
2336 if (vport->phba->sli_rev < LPFC_SLI_REV4)
2337 ndlp->nlp_rpi = mb->un.varWords[0];
James Smart40426292010-12-15 17:58:10 -05002338 ndlp->nlp_flag |= NLP_RPI_REGISTERED;
James Smart4b7789b2015-12-16 18:11:55 -05002339 if (ndlp->nlp_flag & NLP_LOGO_ACC) {
2340 lpfc_unreg_rpi(vport, ndlp);
2341 }
James Smart04c68492009-05-22 14:52:52 -04002342 } else {
James Smarta0f9b482006-04-15 11:52:56 -04002343 if (ndlp->nlp_flag & NLP_NODEV_REMOVE) {
James Smart2e0fef82007-06-17 19:56:36 -05002344 lpfc_drop_node(vport, ndlp);
James Smarta0f9b482006-04-15 11:52:56 -04002345 return NLP_STE_FREED_NODE;
2346 }
2347 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002348 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05002349}
2350
2351static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05002352lpfc_device_rm_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2353 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05002354{
James Smart2e0fef82007-06-17 19:56:36 -05002355 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2356
James Smarta0f9b482006-04-15 11:52:56 -04002357 if (ndlp->nlp_flag & NLP_NPR_2B_DISC) {
James Smart2e0fef82007-06-17 19:56:36 -05002358 spin_lock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04002359 ndlp->nlp_flag |= NLP_NODEV_REMOVE;
James Smart2e0fef82007-06-17 19:56:36 -05002360 spin_unlock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04002361 return ndlp->nlp_state;
2362 }
James Smart2e0fef82007-06-17 19:56:36 -05002363 lpfc_drop_node(vport, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002364 return NLP_STE_FREED_NODE;
dea31012005-04-17 16:05:31 -05002365}
2366
2367static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05002368lpfc_device_recov_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2369 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05002370{
James Smart2e0fef82007-06-17 19:56:36 -05002371 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2372
James Smart92d7f7b2007-06-17 19:56:38 -05002373 /* Don't do anything that will mess up processing of the
2374 * previous RSCN.
2375 */
2376 if (vport->fc_flag & FC_RSCN_DEFERRED)
2377 return ndlp->nlp_state;
2378
James Smarteaf15d52008-12-04 22:39:29 -05002379 lpfc_cancel_retry_delay_tmo(vport, ndlp);
James Smart2e0fef82007-06-17 19:56:36 -05002380 spin_lock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04002381 ndlp->nlp_flag &= ~(NLP_NODEV_REMOVE | NLP_NPR_2B_DISC);
James Smart2e0fef82007-06-17 19:56:36 -05002382 spin_unlock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002383 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05002384}
2385
2386
2387/* This next section defines the NPort Discovery State Machine */
2388
2389/* There are 4 different double linked lists nodelist entries can reside on.
2390 * The plogi list and adisc list are used when Link Up discovery or RSCN
2391 * processing is needed. Each list holds the nodes that we will send PLOGI
2392 * or ADISC on. These lists will keep track of what nodes will be effected
2393 * by an RSCN, or a Link Up (Typically, all nodes are effected on Link Up).
2394 * The unmapped_list will contain all nodes that we have successfully logged
2395 * into at the Fibre Channel level. The mapped_list will contain all nodes
2396 * that are mapped FCP targets.
2397 */
2398/*
2399 * The bind list is a list of undiscovered (potentially non-existent) nodes
2400 * that we have saved binding information on. This information is used when
2401 * nodes transition from the unmapped to the mapped list.
2402 */
2403/* For UNUSED_NODE state, the node has just been allocated .
2404 * For PLOGI_ISSUE and REG_LOGIN_ISSUE, the node is on
2405 * the PLOGI list. For REG_LOGIN_COMPL, the node is taken off the PLOGI list
2406 * and put on the unmapped list. For ADISC processing, the node is taken off
2407 * the ADISC list and placed on either the mapped or unmapped list (depending
2408 * on its previous state). Once on the unmapped list, a PRLI is issued and the
2409 * state changed to PRLI_ISSUE. When the PRLI completion occurs, the state is
2410 * changed to UNMAPPED_NODE. If the completion indicates a mapped
2411 * node, the node is taken off the unmapped list. The binding list is checked
2412 * for a valid binding, or a binding is automatically assigned. If binding
2413 * assignment is unsuccessful, the node is left on the unmapped list. If
2414 * binding assignment is successful, the associated binding list entry (if
2415 * any) is removed, and the node is placed on the mapped list.
2416 */
2417/*
2418 * For a Link Down, all nodes on the ADISC, PLOGI, unmapped or mapped
James Smartc01f3202006-08-18 17:47:08 -04002419 * lists will receive a DEVICE_RECOVERY event. If the linkdown or devloss timers
dea31012005-04-17 16:05:31 -05002420 * expire, all effected nodes will receive a DEVICE_RM event.
2421 */
2422/*
2423 * For a Link Up or RSCN, all nodes will move from the mapped / unmapped lists
2424 * to either the ADISC or PLOGI list. After a Nameserver query or ALPA loopmap
2425 * check, additional nodes may be added or removed (via DEVICE_RM) to / from
2426 * the PLOGI or ADISC lists. Once the PLOGI and ADISC lists are populated,
2427 * we will first process the ADISC list. 32 entries are processed initially and
2428 * ADISC is initited for each one. Completions / Events for each node are
2429 * funnelled thru the state machine. As each node finishes ADISC processing, it
2430 * starts ADISC for any nodes waiting for ADISC processing. If no nodes are
2431 * waiting, and the ADISC list count is identically 0, then we are done. For
2432 * Link Up discovery, since all nodes on the PLOGI list are UNREG_LOGIN'ed, we
2433 * can issue a CLEAR_LA and reenable Link Events. Next we will process the PLOGI
2434 * list. 32 entries are processed initially and PLOGI is initited for each one.
2435 * Completions / Events for each node are funnelled thru the state machine. As
2436 * each node finishes PLOGI processing, it starts PLOGI for any nodes waiting
2437 * for PLOGI processing. If no nodes are waiting, and the PLOGI list count is
2438 * indentically 0, then we are done. We have now completed discovery / RSCN
2439 * handling. Upon completion, ALL nodes should be on either the mapped or
2440 * unmapped lists.
2441 */
2442
2443static uint32_t (*lpfc_disc_action[NLP_STE_MAX_STATE * NLP_EVT_MAX_EVENT])
James Smart2e0fef82007-06-17 19:56:36 -05002444 (struct lpfc_vport *, struct lpfc_nodelist *, void *, uint32_t) = {
dea31012005-04-17 16:05:31 -05002445 /* Action routine Event Current State */
2446 lpfc_rcv_plogi_unused_node, /* RCV_PLOGI UNUSED_NODE */
2447 lpfc_rcv_els_unused_node, /* RCV_PRLI */
2448 lpfc_rcv_logo_unused_node, /* RCV_LOGO */
2449 lpfc_rcv_els_unused_node, /* RCV_ADISC */
2450 lpfc_rcv_els_unused_node, /* RCV_PDISC */
2451 lpfc_rcv_els_unused_node, /* RCV_PRLO */
2452 lpfc_disc_illegal, /* CMPL_PLOGI */
2453 lpfc_disc_illegal, /* CMPL_PRLI */
2454 lpfc_cmpl_logo_unused_node, /* CMPL_LOGO */
2455 lpfc_disc_illegal, /* CMPL_ADISC */
2456 lpfc_disc_illegal, /* CMPL_REG_LOGIN */
2457 lpfc_device_rm_unused_node, /* DEVICE_RM */
James Smartdf9e1b52011-12-13 13:22:17 -05002458 lpfc_device_recov_unused_node, /* DEVICE_RECOVERY */
dea31012005-04-17 16:05:31 -05002459
2460 lpfc_rcv_plogi_plogi_issue, /* RCV_PLOGI PLOGI_ISSUE */
James Smart92d7f7b2007-06-17 19:56:38 -05002461 lpfc_rcv_prli_plogi_issue, /* RCV_PRLI */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002462 lpfc_rcv_logo_plogi_issue, /* RCV_LOGO */
dea31012005-04-17 16:05:31 -05002463 lpfc_rcv_els_plogi_issue, /* RCV_ADISC */
2464 lpfc_rcv_els_plogi_issue, /* RCV_PDISC */
2465 lpfc_rcv_els_plogi_issue, /* RCV_PRLO */
2466 lpfc_cmpl_plogi_plogi_issue, /* CMPL_PLOGI */
2467 lpfc_disc_illegal, /* CMPL_PRLI */
James Smart0ff10d42008-01-11 01:52:36 -05002468 lpfc_cmpl_logo_plogi_issue, /* CMPL_LOGO */
dea31012005-04-17 16:05:31 -05002469 lpfc_disc_illegal, /* CMPL_ADISC */
James Smart0ff10d42008-01-11 01:52:36 -05002470 lpfc_cmpl_reglogin_plogi_issue,/* CMPL_REG_LOGIN */
dea31012005-04-17 16:05:31 -05002471 lpfc_device_rm_plogi_issue, /* DEVICE_RM */
2472 lpfc_device_recov_plogi_issue, /* DEVICE_RECOVERY */
2473
2474 lpfc_rcv_plogi_adisc_issue, /* RCV_PLOGI ADISC_ISSUE */
2475 lpfc_rcv_prli_adisc_issue, /* RCV_PRLI */
2476 lpfc_rcv_logo_adisc_issue, /* RCV_LOGO */
2477 lpfc_rcv_padisc_adisc_issue, /* RCV_ADISC */
2478 lpfc_rcv_padisc_adisc_issue, /* RCV_PDISC */
2479 lpfc_rcv_prlo_adisc_issue, /* RCV_PRLO */
2480 lpfc_disc_illegal, /* CMPL_PLOGI */
2481 lpfc_disc_illegal, /* CMPL_PRLI */
2482 lpfc_disc_illegal, /* CMPL_LOGO */
2483 lpfc_cmpl_adisc_adisc_issue, /* CMPL_ADISC */
2484 lpfc_disc_illegal, /* CMPL_REG_LOGIN */
2485 lpfc_device_rm_adisc_issue, /* DEVICE_RM */
2486 lpfc_device_recov_adisc_issue, /* DEVICE_RECOVERY */
2487
2488 lpfc_rcv_plogi_reglogin_issue, /* RCV_PLOGI REG_LOGIN_ISSUE */
2489 lpfc_rcv_prli_reglogin_issue, /* RCV_PLOGI */
2490 lpfc_rcv_logo_reglogin_issue, /* RCV_LOGO */
2491 lpfc_rcv_padisc_reglogin_issue, /* RCV_ADISC */
2492 lpfc_rcv_padisc_reglogin_issue, /* RCV_PDISC */
2493 lpfc_rcv_prlo_reglogin_issue, /* RCV_PRLO */
James Smart87af33f2007-10-27 13:37:43 -04002494 lpfc_cmpl_plogi_illegal, /* CMPL_PLOGI */
dea31012005-04-17 16:05:31 -05002495 lpfc_disc_illegal, /* CMPL_PRLI */
2496 lpfc_disc_illegal, /* CMPL_LOGO */
2497 lpfc_disc_illegal, /* CMPL_ADISC */
2498 lpfc_cmpl_reglogin_reglogin_issue,/* CMPL_REG_LOGIN */
2499 lpfc_device_rm_reglogin_issue, /* DEVICE_RM */
2500 lpfc_device_recov_reglogin_issue,/* DEVICE_RECOVERY */
2501
2502 lpfc_rcv_plogi_prli_issue, /* RCV_PLOGI PRLI_ISSUE */
2503 lpfc_rcv_prli_prli_issue, /* RCV_PRLI */
2504 lpfc_rcv_logo_prli_issue, /* RCV_LOGO */
2505 lpfc_rcv_padisc_prli_issue, /* RCV_ADISC */
2506 lpfc_rcv_padisc_prli_issue, /* RCV_PDISC */
2507 lpfc_rcv_prlo_prli_issue, /* RCV_PRLO */
James Smart87af33f2007-10-27 13:37:43 -04002508 lpfc_cmpl_plogi_illegal, /* CMPL_PLOGI */
dea31012005-04-17 16:05:31 -05002509 lpfc_cmpl_prli_prli_issue, /* CMPL_PRLI */
2510 lpfc_disc_illegal, /* CMPL_LOGO */
2511 lpfc_disc_illegal, /* CMPL_ADISC */
2512 lpfc_disc_illegal, /* CMPL_REG_LOGIN */
2513 lpfc_device_rm_prli_issue, /* DEVICE_RM */
2514 lpfc_device_recov_prli_issue, /* DEVICE_RECOVERY */
2515
James Smart086a3452012-08-14 14:25:21 -04002516 lpfc_rcv_plogi_logo_issue, /* RCV_PLOGI LOGO_ISSUE */
2517 lpfc_rcv_prli_logo_issue, /* RCV_PRLI */
2518 lpfc_rcv_logo_logo_issue, /* RCV_LOGO */
2519 lpfc_rcv_padisc_logo_issue, /* RCV_ADISC */
2520 lpfc_rcv_padisc_logo_issue, /* RCV_PDISC */
2521 lpfc_rcv_prlo_logo_issue, /* RCV_PRLO */
2522 lpfc_cmpl_plogi_illegal, /* CMPL_PLOGI */
2523 lpfc_disc_illegal, /* CMPL_PRLI */
2524 lpfc_cmpl_logo_logo_issue, /* CMPL_LOGO */
2525 lpfc_disc_illegal, /* CMPL_ADISC */
2526 lpfc_disc_illegal, /* CMPL_REG_LOGIN */
2527 lpfc_device_rm_logo_issue, /* DEVICE_RM */
2528 lpfc_device_recov_logo_issue, /* DEVICE_RECOVERY */
2529
dea31012005-04-17 16:05:31 -05002530 lpfc_rcv_plogi_unmap_node, /* RCV_PLOGI UNMAPPED_NODE */
2531 lpfc_rcv_prli_unmap_node, /* RCV_PRLI */
2532 lpfc_rcv_logo_unmap_node, /* RCV_LOGO */
2533 lpfc_rcv_padisc_unmap_node, /* RCV_ADISC */
2534 lpfc_rcv_padisc_unmap_node, /* RCV_PDISC */
2535 lpfc_rcv_prlo_unmap_node, /* RCV_PRLO */
2536 lpfc_disc_illegal, /* CMPL_PLOGI */
2537 lpfc_disc_illegal, /* CMPL_PRLI */
2538 lpfc_disc_illegal, /* CMPL_LOGO */
2539 lpfc_disc_illegal, /* CMPL_ADISC */
2540 lpfc_disc_illegal, /* CMPL_REG_LOGIN */
2541 lpfc_disc_illegal, /* DEVICE_RM */
2542 lpfc_device_recov_unmap_node, /* DEVICE_RECOVERY */
2543
2544 lpfc_rcv_plogi_mapped_node, /* RCV_PLOGI MAPPED_NODE */
2545 lpfc_rcv_prli_mapped_node, /* RCV_PRLI */
2546 lpfc_rcv_logo_mapped_node, /* RCV_LOGO */
2547 lpfc_rcv_padisc_mapped_node, /* RCV_ADISC */
2548 lpfc_rcv_padisc_mapped_node, /* RCV_PDISC */
2549 lpfc_rcv_prlo_mapped_node, /* RCV_PRLO */
2550 lpfc_disc_illegal, /* CMPL_PLOGI */
2551 lpfc_disc_illegal, /* CMPL_PRLI */
2552 lpfc_disc_illegal, /* CMPL_LOGO */
2553 lpfc_disc_illegal, /* CMPL_ADISC */
2554 lpfc_disc_illegal, /* CMPL_REG_LOGIN */
2555 lpfc_disc_illegal, /* DEVICE_RM */
2556 lpfc_device_recov_mapped_node, /* DEVICE_RECOVERY */
2557
2558 lpfc_rcv_plogi_npr_node, /* RCV_PLOGI NPR_NODE */
2559 lpfc_rcv_prli_npr_node, /* RCV_PRLI */
2560 lpfc_rcv_logo_npr_node, /* RCV_LOGO */
2561 lpfc_rcv_padisc_npr_node, /* RCV_ADISC */
2562 lpfc_rcv_padisc_npr_node, /* RCV_PDISC */
2563 lpfc_rcv_prlo_npr_node, /* RCV_PRLO */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002564 lpfc_cmpl_plogi_npr_node, /* CMPL_PLOGI */
2565 lpfc_cmpl_prli_npr_node, /* CMPL_PRLI */
dea31012005-04-17 16:05:31 -05002566 lpfc_cmpl_logo_npr_node, /* CMPL_LOGO */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002567 lpfc_cmpl_adisc_npr_node, /* CMPL_ADISC */
dea31012005-04-17 16:05:31 -05002568 lpfc_cmpl_reglogin_npr_node, /* CMPL_REG_LOGIN */
2569 lpfc_device_rm_npr_node, /* DEVICE_RM */
2570 lpfc_device_recov_npr_node, /* DEVICE_RECOVERY */
2571};
2572
2573int
James Smart2e0fef82007-06-17 19:56:36 -05002574lpfc_disc_state_machine(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2575 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05002576{
2577 uint32_t cur_state, rc;
James Smart2e0fef82007-06-17 19:56:36 -05002578 uint32_t(*func) (struct lpfc_vport *, struct lpfc_nodelist *, void *,
dea31012005-04-17 16:05:31 -05002579 uint32_t);
James Smarte47c9092008-02-08 18:49:26 -05002580 uint32_t got_ndlp = 0;
dea31012005-04-17 16:05:31 -05002581
James Smarte47c9092008-02-08 18:49:26 -05002582 if (lpfc_nlp_get(ndlp))
2583 got_ndlp = 1;
2584
dea31012005-04-17 16:05:31 -05002585 cur_state = ndlp->nlp_state;
2586
2587 /* DSM in event <evt> on NPort <nlp_DID> in state <cur_state> */
James Smarte8b62012007-08-02 11:10:09 -04002588 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
2589 "0211 DSM in event x%x on NPort x%x in "
2590 "state %d Data: x%x\n",
2591 evt, ndlp->nlp_DID, cur_state, ndlp->nlp_flag);
dea31012005-04-17 16:05:31 -05002592
James Smart858c9f62007-06-17 19:56:39 -05002593 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_DSM,
2594 "DSM in: evt:%d ste:%d did:x%x",
2595 evt, cur_state, ndlp->nlp_DID);
2596
dea31012005-04-17 16:05:31 -05002597 func = lpfc_disc_action[(cur_state * NLP_EVT_MAX_EVENT) + evt];
James Smart2e0fef82007-06-17 19:56:36 -05002598 rc = (func) (vport, ndlp, arg, evt);
dea31012005-04-17 16:05:31 -05002599
2600 /* DSM out state <rc> on NPort <nlp_DID> */
James Smarte47c9092008-02-08 18:49:26 -05002601 if (got_ndlp) {
2602 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
James Smarte8b62012007-08-02 11:10:09 -04002603 "0212 DSM out state %d on NPort x%x Data: x%x\n",
2604 rc, ndlp->nlp_DID, ndlp->nlp_flag);
dea31012005-04-17 16:05:31 -05002605
James Smarte47c9092008-02-08 18:49:26 -05002606 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_DSM,
2607 "DSM out: ste:%d did:x%x flg:x%x",
2608 rc, ndlp->nlp_DID, ndlp->nlp_flag);
2609 /* Decrement the ndlp reference count held for this function */
2610 lpfc_nlp_put(ndlp);
2611 } else {
2612 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
James Smartd7c255b2008-08-24 21:50:00 -04002613 "0213 DSM out state %d on NPort free\n", rc);
James Smart858c9f62007-06-17 19:56:39 -05002614
James Smarte47c9092008-02-08 18:49:26 -05002615 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_DSM,
2616 "DSM out: ste:%d did:x%x flg:x%x",
2617 rc, 0, 0);
2618 }
dea31012005-04-17 16:05:31 -05002619
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002620 return rc;
dea31012005-04-17 16:05:31 -05002621}