blob: 880af0cd463dbbe163c43ec379fa68e903a2242e [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 Smart9413aff2007-04-25 09:53:35 -04004 * Copyright (C) 2004-2007 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>
24#include <linux/interrupt.h>
25
James.Smart@Emulex.Com91886522005-08-10 15:03:09 -040026#include <scsi/scsi.h>
dea31012005-04-17 16:05:31 -050027#include <scsi/scsi_device.h>
28#include <scsi/scsi_host.h>
29#include <scsi/scsi_transport_fc.h>
30
31#include "lpfc_hw.h"
32#include "lpfc_sli.h"
33#include "lpfc_disc.h"
34#include "lpfc_scsi.h"
35#include "lpfc.h"
36#include "lpfc_logmsg.h"
37#include "lpfc_crtn.h"
James Smart92d7f7b2007-06-17 19:56:38 -050038#include "lpfc_vport.h"
James Smart858c9f62007-06-17 19:56:39 -050039#include "lpfc_debugfs.h"
dea31012005-04-17 16:05:31 -050040
41
42/* Called to verify a rcv'ed ADISC was intended for us. */
43static int
James Smart2e0fef82007-06-17 19:56:36 -050044lpfc_check_adisc(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
45 struct lpfc_name *nn, struct lpfc_name *pn)
dea31012005-04-17 16:05:31 -050046{
47 /* Compare the ADISC rsp WWNN / WWPN matches our internal node
48 * table entry for that node.
49 */
James Smart2e0fef82007-06-17 19:56:36 -050050 if (memcmp(nn, &ndlp->nlp_nodename, sizeof (struct lpfc_name)))
Jamie Wellnitzc9f87352006-02-28 19:25:23 -050051 return 0;
dea31012005-04-17 16:05:31 -050052
James Smart2e0fef82007-06-17 19:56:36 -050053 if (memcmp(pn, &ndlp->nlp_portname, sizeof (struct lpfc_name)))
Jamie Wellnitzc9f87352006-02-28 19:25:23 -050054 return 0;
dea31012005-04-17 16:05:31 -050055
56 /* we match, return success */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -050057 return 1;
dea31012005-04-17 16:05:31 -050058}
59
dea31012005-04-17 16:05:31 -050060int
James Smart2e0fef82007-06-17 19:56:36 -050061lpfc_check_sparm(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
62 struct serv_parm * sp, uint32_t class)
dea31012005-04-17 16:05:31 -050063{
James Smart2e0fef82007-06-17 19:56:36 -050064 volatile struct serv_parm *hsp = &vport->fc_sparam;
James.Smart@Emulex.Com2fb70f72005-11-28 11:41:24 -050065 uint16_t hsp_value, ssp_value = 0;
dea31012005-04-17 16:05:31 -050066
James.Smart@Emulex.Com2fb70f72005-11-28 11:41:24 -050067 /*
68 * The receive data field size and buffer-to-buffer receive data field
69 * size entries are 16 bits but are represented as two 8-bit fields in
70 * the driver data structure to account for rsvd bits and other control
71 * bits. Reconstruct and compare the fields as a 16-bit values before
72 * correcting the byte values.
73 */
dea31012005-04-17 16:05:31 -050074 if (sp->cls1.classValid) {
James.Smart@Emulex.Com2fb70f72005-11-28 11:41:24 -050075 hsp_value = (hsp->cls1.rcvDataSizeMsb << 8) |
76 hsp->cls1.rcvDataSizeLsb;
77 ssp_value = (sp->cls1.rcvDataSizeMsb << 8) |
78 sp->cls1.rcvDataSizeLsb;
James Smart92d7f7b2007-06-17 19:56:38 -050079 if (!ssp_value)
80 goto bad_service_param;
James.Smart@Emulex.Com2fb70f72005-11-28 11:41:24 -050081 if (ssp_value > hsp_value) {
dea31012005-04-17 16:05:31 -050082 sp->cls1.rcvDataSizeLsb = hsp->cls1.rcvDataSizeLsb;
James.Smart@Emulex.Com2fb70f72005-11-28 11:41:24 -050083 sp->cls1.rcvDataSizeMsb = hsp->cls1.rcvDataSizeMsb;
84 }
dea31012005-04-17 16:05:31 -050085 } else if (class == CLASS1) {
James Smart92d7f7b2007-06-17 19:56:38 -050086 goto bad_service_param;
dea31012005-04-17 16:05:31 -050087 }
88
89 if (sp->cls2.classValid) {
James.Smart@Emulex.Com2fb70f72005-11-28 11:41:24 -050090 hsp_value = (hsp->cls2.rcvDataSizeMsb << 8) |
91 hsp->cls2.rcvDataSizeLsb;
92 ssp_value = (sp->cls2.rcvDataSizeMsb << 8) |
93 sp->cls2.rcvDataSizeLsb;
James Smart92d7f7b2007-06-17 19:56:38 -050094 if (!ssp_value)
95 goto bad_service_param;
James.Smart@Emulex.Com2fb70f72005-11-28 11:41:24 -050096 if (ssp_value > hsp_value) {
dea31012005-04-17 16:05:31 -050097 sp->cls2.rcvDataSizeLsb = hsp->cls2.rcvDataSizeLsb;
James.Smart@Emulex.Com2fb70f72005-11-28 11:41:24 -050098 sp->cls2.rcvDataSizeMsb = hsp->cls2.rcvDataSizeMsb;
99 }
dea31012005-04-17 16:05:31 -0500100 } else if (class == CLASS2) {
James Smart92d7f7b2007-06-17 19:56:38 -0500101 goto bad_service_param;
dea31012005-04-17 16:05:31 -0500102 }
103
104 if (sp->cls3.classValid) {
James.Smart@Emulex.Com2fb70f72005-11-28 11:41:24 -0500105 hsp_value = (hsp->cls3.rcvDataSizeMsb << 8) |
106 hsp->cls3.rcvDataSizeLsb;
107 ssp_value = (sp->cls3.rcvDataSizeMsb << 8) |
108 sp->cls3.rcvDataSizeLsb;
James Smart92d7f7b2007-06-17 19:56:38 -0500109 if (!ssp_value)
110 goto bad_service_param;
James.Smart@Emulex.Com2fb70f72005-11-28 11:41:24 -0500111 if (ssp_value > hsp_value) {
dea31012005-04-17 16:05:31 -0500112 sp->cls3.rcvDataSizeLsb = hsp->cls3.rcvDataSizeLsb;
James.Smart@Emulex.Com2fb70f72005-11-28 11:41:24 -0500113 sp->cls3.rcvDataSizeMsb = hsp->cls3.rcvDataSizeMsb;
114 }
dea31012005-04-17 16:05:31 -0500115 } else if (class == CLASS3) {
James Smart92d7f7b2007-06-17 19:56:38 -0500116 goto bad_service_param;
dea31012005-04-17 16:05:31 -0500117 }
118
James.Smart@Emulex.Com2fb70f72005-11-28 11:41:24 -0500119 /*
120 * Preserve the upper four bits of the MSB from the PLOGI response.
121 * These bits contain the Buffer-to-Buffer State Change Number
122 * from the target and need to be passed to the FW.
123 */
124 hsp_value = (hsp->cmn.bbRcvSizeMsb << 8) | hsp->cmn.bbRcvSizeLsb;
125 ssp_value = (sp->cmn.bbRcvSizeMsb << 8) | sp->cmn.bbRcvSizeLsb;
126 if (ssp_value > hsp_value) {
dea31012005-04-17 16:05:31 -0500127 sp->cmn.bbRcvSizeLsb = hsp->cmn.bbRcvSizeLsb;
James.Smart@Emulex.Com2fb70f72005-11-28 11:41:24 -0500128 sp->cmn.bbRcvSizeMsb = (sp->cmn.bbRcvSizeMsb & 0xF0) |
129 (hsp->cmn.bbRcvSizeMsb & 0x0F);
130 }
dea31012005-04-17 16:05:31 -0500131
dea31012005-04-17 16:05:31 -0500132 memcpy(&ndlp->nlp_nodename, &sp->nodeName, sizeof (struct lpfc_name));
133 memcpy(&ndlp->nlp_portname, &sp->portName, sizeof (struct lpfc_name));
James.Smart@Emulex.Com2fb70f72005-11-28 11:41:24 -0500134 return 1;
James Smart92d7f7b2007-06-17 19:56:38 -0500135bad_service_param:
James Smarte8b62012007-08-02 11:10:09 -0400136 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
137 "0207 Device %x "
138 "(%02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x) sent "
139 "invalid service parameters. Ignoring device.\n",
140 ndlp->nlp_DID,
141 sp->nodeName.u.wwn[0], sp->nodeName.u.wwn[1],
142 sp->nodeName.u.wwn[2], sp->nodeName.u.wwn[3],
143 sp->nodeName.u.wwn[4], sp->nodeName.u.wwn[5],
144 sp->nodeName.u.wwn[6], sp->nodeName.u.wwn[7]);
James Smart92d7f7b2007-06-17 19:56:38 -0500145 return 0;
dea31012005-04-17 16:05:31 -0500146}
147
148static void *
James Smart2e0fef82007-06-17 19:56:36 -0500149lpfc_check_elscmpl_iocb(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
James Smart92d7f7b2007-06-17 19:56:38 -0500150 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -0500151{
152 struct lpfc_dmabuf *pcmd, *prsp;
153 uint32_t *lp;
154 void *ptr = NULL;
155 IOCB_t *irsp;
156
157 irsp = &rspiocb->iocb;
158 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
159
160 /* For lpfc_els_abort, context2 could be zero'ed to delay
161 * freeing associated memory till after ABTS completes.
162 */
163 if (pcmd) {
164 prsp = list_get_first(&pcmd->list, struct lpfc_dmabuf,
165 list);
166 if (prsp) {
167 lp = (uint32_t *) prsp->virt;
168 ptr = (void *)((uint8_t *)lp + sizeof(uint32_t));
169 }
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -0500170 } else {
dea31012005-04-17 16:05:31 -0500171 /* Force ulpStatus error since we are returning NULL ptr */
172 if (!(irsp->ulpStatus)) {
173 irsp->ulpStatus = IOSTAT_LOCAL_REJECT;
174 irsp->un.ulpWord[4] = IOERR_SLI_ABORTED;
175 }
176 ptr = NULL;
177 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500178 return ptr;
dea31012005-04-17 16:05:31 -0500179}
180
181
182/*
183 * Free resources / clean up outstanding I/Os
184 * associated with a LPFC_NODELIST entry. This
185 * routine effectively results in a "software abort".
186 */
187int
James Smart2e0fef82007-06-17 19:56:36 -0500188lpfc_els_abort(struct lpfc_hba *phba, struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -0500189{
James Smart2534ba72007-04-25 09:52:20 -0400190 LIST_HEAD(completions);
James Smart2e0fef82007-06-17 19:56:36 -0500191 struct lpfc_sli *psli = &phba->sli;
192 struct lpfc_sli_ring *pring = &psli->ring[LPFC_ELS_RING];
dea31012005-04-17 16:05:31 -0500193 struct lpfc_iocbq *iocb, *next_iocb;
James Smart2534ba72007-04-25 09:52:20 -0400194 IOCB_t *cmd;
dea31012005-04-17 16:05:31 -0500195
196 /* Abort outstanding I/O on NPort <nlp_DID> */
James Smarte8b62012007-08-02 11:10:09 -0400197 lpfc_printf_vlog(ndlp->vport, KERN_INFO, LOG_DISCOVERY,
198 "0205 Abort outstanding I/O on NPort x%x "
199 "Data: x%x x%x x%x\n",
200 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
201 ndlp->nlp_rpi);
James Smart92d7f7b2007-06-17 19:56:38 -0500202
203 lpfc_fabric_abort_nport(ndlp);
dea31012005-04-17 16:05:31 -0500204
dea31012005-04-17 16:05:31 -0500205 /* First check the txq */
James Smart2e0fef82007-06-17 19:56:36 -0500206 spin_lock_irq(&phba->hbalock);
James Smart2534ba72007-04-25 09:52:20 -0400207 list_for_each_entry_safe(iocb, next_iocb, &pring->txq, list) {
James Smart858c9f62007-06-17 19:56:39 -0500208 /* Check to see if iocb matches the nport we are looking for */
James Smart2534ba72007-04-25 09:52:20 -0400209 if (lpfc_check_sli_ndlp(phba, pring, iocb, ndlp)) {
James Smart858c9f62007-06-17 19:56:39 -0500210 /* It matches, so deque and call compl with anp error */
James Smart2534ba72007-04-25 09:52:20 -0400211 list_move_tail(&iocb->list, &completions);
212 pring->txq_cnt--;
dea31012005-04-17 16:05:31 -0500213 }
James Smart2534ba72007-04-25 09:52:20 -0400214 }
dea31012005-04-17 16:05:31 -0500215
dea31012005-04-17 16:05:31 -0500216 /* Next check the txcmplq */
James Smart07951072007-04-25 09:51:38 -0400217 list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq, list) {
James Smart858c9f62007-06-17 19:56:39 -0500218 /* Check to see if iocb matches the nport we are looking for */
James Smart92d7f7b2007-06-17 19:56:38 -0500219 if (lpfc_check_sli_ndlp(phba, pring, iocb, ndlp)) {
James Smart07951072007-04-25 09:51:38 -0400220 lpfc_sli_issue_abort_iotag(phba, pring, iocb);
James Smart92d7f7b2007-06-17 19:56:38 -0500221 }
James Smart07951072007-04-25 09:51:38 -0400222 }
James Smart2e0fef82007-06-17 19:56:36 -0500223 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -0500224
James Smart2534ba72007-04-25 09:52:20 -0400225 while (!list_empty(&completions)) {
226 iocb = list_get_first(&completions, struct lpfc_iocbq, list);
227 cmd = &iocb->iocb;
James Smart92d7f7b2007-06-17 19:56:38 -0500228 list_del_init(&iocb->list);
James Smart2534ba72007-04-25 09:52:20 -0400229
James Smart2e0fef82007-06-17 19:56:36 -0500230 if (!iocb->iocb_cmpl)
231 lpfc_sli_release_iocbq(phba, iocb);
232 else {
James Smart2534ba72007-04-25 09:52:20 -0400233 cmd->ulpStatus = IOSTAT_LOCAL_REJECT;
234 cmd->un.ulpWord[4] = IOERR_SLI_ABORTED;
235 (iocb->iocb_cmpl) (phba, iocb, iocb);
James Smart2e0fef82007-06-17 19:56:36 -0500236 }
James Smart2534ba72007-04-25 09:52:20 -0400237 }
238
dea31012005-04-17 16:05:31 -0500239 /* If we are delaying issuing an ELS command, cancel it */
James Smartfdcebe22006-03-07 15:04:01 -0500240 if (ndlp->nlp_flag & NLP_DELAY_TMO)
James Smart2e0fef82007-06-17 19:56:36 -0500241 lpfc_cancel_retry_delay_tmo(phba->pport, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500242 return 0;
dea31012005-04-17 16:05:31 -0500243}
244
245static int
James Smart2e0fef82007-06-17 19:56:36 -0500246lpfc_rcv_plogi(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
James Smart92d7f7b2007-06-17 19:56:38 -0500247 struct lpfc_iocbq *cmdiocb)
dea31012005-04-17 16:05:31 -0500248{
James Smart2e0fef82007-06-17 19:56:36 -0500249 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
250 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -0500251 struct lpfc_dmabuf *pcmd;
252 uint32_t *lp;
253 IOCB_t *icmd;
254 struct serv_parm *sp;
255 LPFC_MBOXQ_t *mbox;
256 struct ls_rjt stat;
257 int rc;
258
259 memset(&stat, 0, sizeof (struct ls_rjt));
James Smart2e0fef82007-06-17 19:56:36 -0500260 if (vport->port_state <= LPFC_FLOGI) {
dea31012005-04-17 16:05:31 -0500261 /* Before responding to PLOGI, check for pt2pt mode.
262 * If we are pt2pt, with an outstanding FLOGI, abort
263 * the FLOGI and resend it first.
264 */
James Smart2e0fef82007-06-17 19:56:36 -0500265 if (vport->fc_flag & FC_PT2PT) {
James Smart92d7f7b2007-06-17 19:56:38 -0500266 lpfc_els_abort_flogi(phba);
James Smart2e0fef82007-06-17 19:56:36 -0500267 if (!(vport->fc_flag & FC_PT2PT_PLOGI)) {
dea31012005-04-17 16:05:31 -0500268 /* If the other side is supposed to initiate
269 * the PLOGI anyway, just ACC it now and
270 * move on with discovery.
271 */
272 phba->fc_edtov = FF_DEF_EDTOV;
273 phba->fc_ratov = FF_DEF_RATOV;
274 /* Start discovery - this should just do
275 CLEAR_LA */
James Smart2e0fef82007-06-17 19:56:36 -0500276 lpfc_disc_start(vport);
James Smarted957682007-06-17 19:56:37 -0500277 } else
James Smart2e0fef82007-06-17 19:56:36 -0500278 lpfc_initial_flogi(vport);
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -0500279 } else {
dea31012005-04-17 16:05:31 -0500280 stat.un.b.lsRjtRsnCode = LSRJT_LOGICAL_BSY;
281 stat.un.b.lsRjtRsnCodeExp = LSEXP_NOTHING_MORE;
James Smart2e0fef82007-06-17 19:56:36 -0500282 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb,
James Smart858c9f62007-06-17 19:56:39 -0500283 ndlp, NULL);
dea31012005-04-17 16:05:31 -0500284 return 0;
285 }
286 }
287 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
288 lp = (uint32_t *) pcmd->virt;
289 sp = (struct serv_parm *) ((uint8_t *) lp + sizeof (uint32_t));
James Smart2e0fef82007-06-17 19:56:36 -0500290 if ((lpfc_check_sparm(vport, ndlp, sp, CLASS3) == 0)) {
dea31012005-04-17 16:05:31 -0500291 /* Reject this request because invalid parameters */
292 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
293 stat.un.b.lsRjtRsnCodeExp = LSEXP_SPARM_OPTIONS;
James Smart858c9f62007-06-17 19:56:39 -0500294 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp,
295 NULL);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500296 return 0;
dea31012005-04-17 16:05:31 -0500297 }
298 icmd = &cmdiocb->iocb;
299
300 /* PLOGI chkparm OK */
James Smarte8b62012007-08-02 11:10:09 -0400301 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
302 "0114 PLOGI chkparm OK Data: x%x x%x x%x x%x\n",
303 ndlp->nlp_DID, ndlp->nlp_state, ndlp->nlp_flag,
304 ndlp->nlp_rpi);
dea31012005-04-17 16:05:31 -0500305
James Smart3de2a652007-08-02 11:09:59 -0400306 if (vport->cfg_fcp_class == 2 && sp->cls2.classValid)
dea31012005-04-17 16:05:31 -0500307 ndlp->nlp_fcp_info |= CLASS2;
James Smarted957682007-06-17 19:56:37 -0500308 else
dea31012005-04-17 16:05:31 -0500309 ndlp->nlp_fcp_info |= CLASS3;
James Smart2e0fef82007-06-17 19:56:36 -0500310
dea31012005-04-17 16:05:31 -0500311 ndlp->nlp_class_sup = 0;
312 if (sp->cls1.classValid)
313 ndlp->nlp_class_sup |= FC_COS_CLASS1;
314 if (sp->cls2.classValid)
315 ndlp->nlp_class_sup |= FC_COS_CLASS2;
316 if (sp->cls3.classValid)
317 ndlp->nlp_class_sup |= FC_COS_CLASS3;
318 if (sp->cls4.classValid)
319 ndlp->nlp_class_sup |= FC_COS_CLASS4;
320 ndlp->nlp_maxframe =
321 ((sp->cmn.bbRcvSizeMsb & 0x0F) << 8) | sp->cmn.bbRcvSizeLsb;
322
323 /* no need to reg_login if we are already in one of these states */
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -0500324 switch (ndlp->nlp_state) {
dea31012005-04-17 16:05:31 -0500325 case NLP_STE_NPR_NODE:
326 if (!(ndlp->nlp_flag & NLP_NPR_ADISC))
327 break;
328 case NLP_STE_REG_LOGIN_ISSUE:
329 case NLP_STE_PRLI_ISSUE:
330 case NLP_STE_UNMAPPED_NODE:
331 case NLP_STE_MAPPED_NODE:
James Smart51ef4c22007-08-02 11:10:31 -0400332 lpfc_els_rsp_acc(vport, ELS_CMD_PLOGI, cmdiocb, ndlp, NULL);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500333 return 1;
dea31012005-04-17 16:05:31 -0500334 }
335
James Smart92d7f7b2007-06-17 19:56:38 -0500336 if ((vport->fc_flag & FC_PT2PT) &&
337 !(vport->fc_flag & FC_PT2PT_PLOGI)) {
dea31012005-04-17 16:05:31 -0500338 /* rcv'ed PLOGI decides what our NPortId will be */
James Smart2e0fef82007-06-17 19:56:36 -0500339 vport->fc_myDID = icmd->un.rcvels.parmRo;
dea31012005-04-17 16:05:31 -0500340 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
341 if (mbox == NULL)
342 goto out;
343 lpfc_config_link(phba, mbox);
344 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
James Smarted957682007-06-17 19:56:37 -0500345 mbox->vport = vport;
dea31012005-04-17 16:05:31 -0500346 rc = lpfc_sli_issue_mbox
347 (phba, mbox, (MBX_NOWAIT | MBX_STOP_IOCB));
348 if (rc == MBX_NOT_FINISHED) {
James Smart92d7f7b2007-06-17 19:56:38 -0500349 mempool_free(mbox, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -0500350 goto out;
351 }
352
James Smart2e0fef82007-06-17 19:56:36 -0500353 lpfc_can_disctmo(vport);
dea31012005-04-17 16:05:31 -0500354 }
355 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
James Smart2e0fef82007-06-17 19:56:36 -0500356 if (!mbox)
dea31012005-04-17 16:05:31 -0500357 goto out;
358
James Smart92d7f7b2007-06-17 19:56:38 -0500359 rc = lpfc_reg_login(phba, vport->vpi, icmd->un.rcvels.remoteID,
360 (uint8_t *) sp, mbox, 0);
James Smart2e0fef82007-06-17 19:56:36 -0500361 if (rc) {
362 mempool_free(mbox, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -0500363 goto out;
364 }
365
366 /* ACC PLOGI rsp command needs to execute first,
367 * queue this mbox command to be processed later.
368 */
369 mbox->mbox_cmpl = lpfc_mbx_cmpl_reg_login;
James Smart329f9bc2007-04-25 09:53:01 -0400370 /*
371 * mbox->context2 = lpfc_nlp_get(ndlp) deferred until mailbox
372 * command issued in lpfc_cmpl_els_acc().
373 */
James Smart2e0fef82007-06-17 19:56:36 -0500374 mbox->vport = vport;
375 spin_lock_irq(shost->host_lock);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -0500376 ndlp->nlp_flag |= (NLP_ACC_REGLOGIN | NLP_RCV_PLOGI);
James Smart2e0fef82007-06-17 19:56:36 -0500377 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500378
James Smart33ccf8d2006-08-17 11:57:58 -0400379 /*
380 * If there is an outstanding PLOGI issued, abort it before
381 * sending ACC rsp for received PLOGI. If pending plogi
382 * is not canceled here, the plogi will be rejected by
383 * remote port and will be retried. On a configuration with
384 * single discovery thread, this will cause a huge delay in
385 * discovery. Also this will cause multiple state machines
386 * running in parallel for this node.
387 */
388 if (ndlp->nlp_state == NLP_STE_PLOGI_ISSUE) {
389 /* software abort outstanding PLOGI */
James Smart07951072007-04-25 09:51:38 -0400390 lpfc_els_abort(phba, ndlp);
James Smart33ccf8d2006-08-17 11:57:58 -0400391 }
392
James Smart858c9f62007-06-17 19:56:39 -0500393 if ((vport->port_type == LPFC_NPIV_PORT &&
James Smart3de2a652007-08-02 11:09:59 -0400394 vport->cfg_restrict_login)) {
James Smart858c9f62007-06-17 19:56:39 -0500395
396 /* In order to preserve RPIs, we want to cleanup
397 * the default RPI the firmware created to rcv
398 * this ELS request. The only way to do this is
399 * to register, then unregister the RPI.
400 */
401 spin_lock_irq(shost->host_lock);
402 ndlp->nlp_flag |= NLP_RM_DFLT_RPI;
403 spin_unlock_irq(shost->host_lock);
404 stat.un.b.lsRjtRsnCode = LSRJT_INVALID_CMD;
405 stat.un.b.lsRjtRsnCodeExp = LSEXP_NOTHING_MORE;
406 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb,
407 ndlp, mbox);
408 return 1;
409 }
James Smart51ef4c22007-08-02 11:10:31 -0400410 lpfc_els_rsp_acc(vport, ELS_CMD_PLOGI, cmdiocb, ndlp, mbox);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500411 return 1;
dea31012005-04-17 16:05:31 -0500412
413out:
414 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
415 stat.un.b.lsRjtRsnCodeExp = LSEXP_OUT_OF_RESOURCE;
James Smart858c9f62007-06-17 19:56:39 -0500416 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500417 return 0;
dea31012005-04-17 16:05:31 -0500418}
419
420static int
James Smart2e0fef82007-06-17 19:56:36 -0500421lpfc_rcv_padisc(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
dea31012005-04-17 16:05:31 -0500422 struct lpfc_iocbq *cmdiocb)
423{
James Smart2e0fef82007-06-17 19:56:36 -0500424 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -0500425 struct lpfc_dmabuf *pcmd;
James Smart2e0fef82007-06-17 19:56:36 -0500426 struct serv_parm *sp;
427 struct lpfc_name *pnn, *ppn;
dea31012005-04-17 16:05:31 -0500428 struct ls_rjt stat;
429 ADISC *ap;
430 IOCB_t *icmd;
431 uint32_t *lp;
432 uint32_t cmd;
433
434 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
435 lp = (uint32_t *) pcmd->virt;
436
437 cmd = *lp++;
438 if (cmd == ELS_CMD_ADISC) {
439 ap = (ADISC *) lp;
440 pnn = (struct lpfc_name *) & ap->nodeName;
441 ppn = (struct lpfc_name *) & ap->portName;
442 } else {
443 sp = (struct serv_parm *) lp;
444 pnn = (struct lpfc_name *) & sp->nodeName;
445 ppn = (struct lpfc_name *) & sp->portName;
446 }
447
448 icmd = &cmdiocb->iocb;
James Smart2e0fef82007-06-17 19:56:36 -0500449 if (icmd->ulpStatus == 0 && lpfc_check_adisc(vport, ndlp, pnn, ppn)) {
dea31012005-04-17 16:05:31 -0500450 if (cmd == ELS_CMD_ADISC) {
James Smart2e0fef82007-06-17 19:56:36 -0500451 lpfc_els_rsp_adisc_acc(vport, cmdiocb, ndlp);
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -0500452 } else {
James Smart2e0fef82007-06-17 19:56:36 -0500453 lpfc_els_rsp_acc(vport, ELS_CMD_PLOGI, cmdiocb, ndlp,
James Smart51ef4c22007-08-02 11:10:31 -0400454 NULL);
dea31012005-04-17 16:05:31 -0500455 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500456 return 1;
dea31012005-04-17 16:05:31 -0500457 }
458 /* Reject this request because invalid parameters */
459 stat.un.b.lsRjtRsvd0 = 0;
460 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
461 stat.un.b.lsRjtRsnCodeExp = LSEXP_SPARM_OPTIONS;
462 stat.un.b.vendorUnique = 0;
James Smart858c9f62007-06-17 19:56:39 -0500463 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
dea31012005-04-17 16:05:31 -0500464
dea31012005-04-17 16:05:31 -0500465 /* 1 sec timeout */
466 mod_timer(&ndlp->nlp_delayfunc, jiffies + HZ);
467
James Smart2e0fef82007-06-17 19:56:36 -0500468 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500469 ndlp->nlp_flag |= NLP_DELAY_TMO;
James Smart2e0fef82007-06-17 19:56:36 -0500470 spin_unlock_irq(shost->host_lock);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -0500471 ndlp->nlp_last_elscmd = ELS_CMD_PLOGI;
472 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -0500473 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500474 return 0;
dea31012005-04-17 16:05:31 -0500475}
476
477static int
James Smart2e0fef82007-06-17 19:56:36 -0500478lpfc_rcv_logo(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
479 struct lpfc_iocbq *cmdiocb, uint32_t els_cmd)
dea31012005-04-17 16:05:31 -0500480{
James Smart2e0fef82007-06-17 19:56:36 -0500481 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
482
483 /* Put ndlp in NPR state with 1 sec timeout for plogi, ACC logo */
dea31012005-04-17 16:05:31 -0500484 /* Only call LOGO ACC for first LOGO, this avoids sending unnecessary
485 * PLOGIs during LOGO storms from a device.
486 */
James Smart2e0fef82007-06-17 19:56:36 -0500487 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500488 ndlp->nlp_flag |= NLP_LOGO_ACC;
James Smart2e0fef82007-06-17 19:56:36 -0500489 spin_unlock_irq(shost->host_lock);
James Smart82d9a2a2006-04-15 11:53:05 -0400490 if (els_cmd == ELS_CMD_PRLO)
James Smart51ef4c22007-08-02 11:10:31 -0400491 lpfc_els_rsp_acc(vport, ELS_CMD_PRLO, cmdiocb, ndlp, NULL);
James Smart82d9a2a2006-04-15 11:53:05 -0400492 else
James Smart51ef4c22007-08-02 11:10:31 -0400493 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
dea31012005-04-17 16:05:31 -0500494
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500495 if (!(ndlp->nlp_type & NLP_FABRIC) ||
James Smart92d7f7b2007-06-17 19:56:38 -0500496 (ndlp->nlp_state == NLP_STE_ADISC_ISSUE)) {
dea31012005-04-17 16:05:31 -0500497 /* Only try to re-login if this is NOT a Fabric Node */
dea31012005-04-17 16:05:31 -0500498 mod_timer(&ndlp->nlp_delayfunc, jiffies + HZ * 1);
James Smart2e0fef82007-06-17 19:56:36 -0500499 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500500 ndlp->nlp_flag |= NLP_DELAY_TMO;
James Smart2e0fef82007-06-17 19:56:36 -0500501 spin_unlock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500502
Jamie Wellnitz5024ab12006-02-28 19:25:28 -0500503 ndlp->nlp_last_elscmd = ELS_CMD_PLOGI;
504 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -0500505 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500506 } else {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -0500507 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -0500508 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNUSED_NODE);
dea31012005-04-17 16:05:31 -0500509 }
510
James Smart2e0fef82007-06-17 19:56:36 -0500511 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500512 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
James Smart2e0fef82007-06-17 19:56:36 -0500513 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500514 /* The driver has to wait until the ACC completes before it continues
515 * processing the LOGO. The action will resume in
516 * lpfc_cmpl_els_logo_acc routine. Since part of processing includes an
517 * unreg_login, the driver waits so the ACC does not get aborted.
518 */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500519 return 0;
dea31012005-04-17 16:05:31 -0500520}
521
522static void
James Smart2e0fef82007-06-17 19:56:36 -0500523lpfc_rcv_prli(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
524 struct lpfc_iocbq *cmdiocb)
dea31012005-04-17 16:05:31 -0500525{
526 struct lpfc_dmabuf *pcmd;
527 uint32_t *lp;
528 PRLI *npr;
529 struct fc_rport *rport = ndlp->rport;
530 u32 roles;
531
532 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
533 lp = (uint32_t *) pcmd->virt;
534 npr = (PRLI *) ((uint8_t *) lp + sizeof (uint32_t));
535
536 ndlp->nlp_type &= ~(NLP_FCP_TARGET | NLP_FCP_INITIATOR);
537 ndlp->nlp_fcp_info &= ~NLP_FCP_2_DEVICE;
James Smart92d7f7b2007-06-17 19:56:38 -0500538 if (npr->prliType == PRLI_FCP_TYPE) {
dea31012005-04-17 16:05:31 -0500539 if (npr->initiatorFunc)
540 ndlp->nlp_type |= NLP_FCP_INITIATOR;
541 if (npr->targetFunc)
542 ndlp->nlp_type |= NLP_FCP_TARGET;
543 if (npr->Retry)
544 ndlp->nlp_fcp_info |= NLP_FCP_2_DEVICE;
545 }
546 if (rport) {
547 /* We need to update the rport role values */
548 roles = FC_RPORT_ROLE_UNKNOWN;
549 if (ndlp->nlp_type & NLP_FCP_INITIATOR)
550 roles |= FC_RPORT_ROLE_FCP_INITIATOR;
551 if (ndlp->nlp_type & NLP_FCP_TARGET)
552 roles |= FC_RPORT_ROLE_FCP_TARGET;
James Smart858c9f62007-06-17 19:56:39 -0500553
554 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_RPORT,
555 "rport rolechg: role:x%x did:x%x flg:x%x",
556 roles, ndlp->nlp_DID, ndlp->nlp_flag);
557
dea31012005-04-17 16:05:31 -0500558 fc_remote_port_rolechg(rport, roles);
559 }
560}
561
562static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500563lpfc_disc_set_adisc(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -0500564{
James Smart2e0fef82007-06-17 19:56:36 -0500565 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart2e0fef82007-06-17 19:56:36 -0500566
James Smart51ef4c22007-08-02 11:10:31 -0400567 if (!ndlp->nlp_rpi) {
568 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
569 return 0;
570 }
571
dea31012005-04-17 16:05:31 -0500572 /* Check config parameter use-adisc or FCP-2 */
James Smart3de2a652007-08-02 11:09:59 -0400573 if ((vport->cfg_use_adisc && (vport->fc_flag & FC_RSCN_MODE)) ||
James Smart92d7f7b2007-06-17 19:56:38 -0500574 ndlp->nlp_fcp_info & NLP_FCP_2_DEVICE) {
575 spin_lock_irq(shost->host_lock);
576 ndlp->nlp_flag |= NLP_NPR_ADISC;
577 spin_unlock_irq(shost->host_lock);
578 return 1;
579 }
580 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
581 lpfc_unreg_rpi(vport, ndlp);
582 return 0;
dea31012005-04-17 16:05:31 -0500583}
584
585static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500586lpfc_disc_illegal(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
587 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -0500588{
James Smarte8b62012007-08-02 11:10:09 -0400589 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
590 "0253 Illegal State Transition: node x%x "
591 "event x%x, state x%x Data: x%x x%x\n",
592 ndlp->nlp_DID, evt, ndlp->nlp_state, ndlp->nlp_rpi,
593 ndlp->nlp_flag);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500594 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -0500595}
596
597/* Start of Discovery State Machine routines */
598
599static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500600lpfc_rcv_plogi_unused_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
601 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -0500602{
603 struct lpfc_iocbq *cmdiocb;
604
605 cmdiocb = (struct lpfc_iocbq *) arg;
606
James Smart2e0fef82007-06-17 19:56:36 -0500607 if (lpfc_rcv_plogi(vport, ndlp, cmdiocb)) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -0500608 ndlp->nlp_prev_state = NLP_STE_UNUSED_NODE;
James Smart2e0fef82007-06-17 19:56:36 -0500609 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNUSED_NODE);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500610 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -0500611 }
James Smart2e0fef82007-06-17 19:56:36 -0500612 lpfc_drop_node(vport, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500613 return NLP_STE_FREED_NODE;
dea31012005-04-17 16:05:31 -0500614}
615
616static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500617lpfc_rcv_els_unused_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
618 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -0500619{
James Smart2e0fef82007-06-17 19:56:36 -0500620 lpfc_issue_els_logo(vport, ndlp, 0);
621 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNUSED_NODE);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500622 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -0500623}
624
625static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500626lpfc_rcv_logo_unused_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
627 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -0500628{
James Smart2e0fef82007-06-17 19:56:36 -0500629 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
630 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -0500631
James Smart2e0fef82007-06-17 19:56:36 -0500632 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500633 ndlp->nlp_flag |= NLP_LOGO_ACC;
James Smart2e0fef82007-06-17 19:56:36 -0500634 spin_unlock_irq(shost->host_lock);
James Smart51ef4c22007-08-02 11:10:31 -0400635 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
James Smart2e0fef82007-06-17 19:56:36 -0500636 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNUSED_NODE);
dea31012005-04-17 16:05:31 -0500637
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500638 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -0500639}
640
641static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500642lpfc_cmpl_logo_unused_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
dea31012005-04-17 16:05:31 -0500643 void *arg, uint32_t evt)
644{
James Smart2e0fef82007-06-17 19:56:36 -0500645 lpfc_drop_node(vport, ndlp);
646 return NLP_STE_FREED_NODE;
647}
648
649static uint32_t
650lpfc_device_rm_unused_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
651 void *arg, uint32_t evt)
652{
653 lpfc_drop_node(vport, ndlp);
654 return NLP_STE_FREED_NODE;
655}
656
657static uint32_t
658lpfc_rcv_plogi_plogi_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
659 void *arg, uint32_t evt)
660{
661 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -0500662 struct lpfc_iocbq *cmdiocb = arg;
James Smart2e0fef82007-06-17 19:56:36 -0500663 struct lpfc_dmabuf *pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
664 uint32_t *lp = (uint32_t *) pcmd->virt;
665 struct serv_parm *sp = (struct serv_parm *) (lp + 1);
dea31012005-04-17 16:05:31 -0500666 struct ls_rjt stat;
667 int port_cmp;
668
dea31012005-04-17 16:05:31 -0500669 memset(&stat, 0, sizeof (struct ls_rjt));
670
671 /* For a PLOGI, we only accept if our portname is less
672 * than the remote portname.
673 */
674 phba->fc_stat.elsLogiCol++;
James Smart2e0fef82007-06-17 19:56:36 -0500675 port_cmp = memcmp(&vport->fc_portname, &sp->portName,
James Smart92d7f7b2007-06-17 19:56:38 -0500676 sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -0500677
678 if (port_cmp >= 0) {
679 /* Reject this request because the remote node will accept
680 ours */
681 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
682 stat.un.b.lsRjtRsnCodeExp = LSEXP_CMD_IN_PROGRESS;
James Smart858c9f62007-06-17 19:56:39 -0500683 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp,
684 NULL);
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -0500685 } else {
James Smart2e0fef82007-06-17 19:56:36 -0500686 lpfc_rcv_plogi(vport, ndlp, cmdiocb);
687 } /* If our portname was less */
dea31012005-04-17 16:05:31 -0500688
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500689 return ndlp->nlp_state;
690}
691
692static uint32_t
James Smart92d7f7b2007-06-17 19:56:38 -0500693lpfc_rcv_prli_plogi_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
694 void *arg, uint32_t evt)
695{
696 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
697 struct ls_rjt stat;
698
699 memset(&stat, 0, sizeof (struct ls_rjt));
700 stat.un.b.lsRjtRsnCode = LSRJT_LOGICAL_BSY;
701 stat.un.b.lsRjtRsnCodeExp = LSEXP_NOTHING_MORE;
James Smart858c9f62007-06-17 19:56:39 -0500702 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
James Smart92d7f7b2007-06-17 19:56:38 -0500703 return ndlp->nlp_state;
704}
705
706static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500707lpfc_rcv_logo_plogi_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
708 void *arg, uint32_t evt)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500709{
James Smart2e0fef82007-06-17 19:56:36 -0500710 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500711
James Smart92d7f7b2007-06-17 19:56:38 -0500712 /* software abort outstanding PLOGI */
James Smart2e0fef82007-06-17 19:56:36 -0500713 lpfc_els_abort(vport->phba, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500714
James Smart2e0fef82007-06-17 19:56:36 -0500715 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_LOGO);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500716 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -0500717}
718
719static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500720lpfc_rcv_els_plogi_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
721 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -0500722{
James Smart2e0fef82007-06-17 19:56:36 -0500723 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
724 struct lpfc_hba *phba = vport->phba;
725 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -0500726
727 /* software abort outstanding PLOGI */
James Smart07951072007-04-25 09:51:38 -0400728 lpfc_els_abort(phba, ndlp);
dea31012005-04-17 16:05:31 -0500729
730 if (evt == NLP_EVT_RCV_LOGO) {
James Smart51ef4c22007-08-02 11:10:31 -0400731 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -0500732 } else {
James Smart2e0fef82007-06-17 19:56:36 -0500733 lpfc_issue_els_logo(vport, ndlp, 0);
dea31012005-04-17 16:05:31 -0500734 }
735
James Smart2e0fef82007-06-17 19:56:36 -0500736 /* Put ndlp in npr state set plogi timer for 1 sec */
Jamie Wellnitz5024ab12006-02-28 19:25:28 -0500737 mod_timer(&ndlp->nlp_delayfunc, jiffies + HZ * 1);
James Smart2e0fef82007-06-17 19:56:36 -0500738 spin_lock_irq(shost->host_lock);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -0500739 ndlp->nlp_flag |= NLP_DELAY_TMO;
James Smart2e0fef82007-06-17 19:56:36 -0500740 spin_unlock_irq(shost->host_lock);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -0500741 ndlp->nlp_last_elscmd = ELS_CMD_PLOGI;
742 ndlp->nlp_prev_state = NLP_STE_PLOGI_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -0500743 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
dea31012005-04-17 16:05:31 -0500744
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500745 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -0500746}
747
748static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500749lpfc_cmpl_plogi_plogi_issue(struct lpfc_vport *vport,
750 struct lpfc_nodelist *ndlp,
751 void *arg,
dea31012005-04-17 16:05:31 -0500752 uint32_t evt)
753{
James Smart2e0fef82007-06-17 19:56:36 -0500754 struct lpfc_hba *phba = vport->phba;
755 struct lpfc_iocbq *cmdiocb, *rspiocb;
James Smart14691152006-12-02 13:34:28 -0500756 struct lpfc_dmabuf *pcmd, *prsp, *mp;
dea31012005-04-17 16:05:31 -0500757 uint32_t *lp;
758 IOCB_t *irsp;
759 struct serv_parm *sp;
760 LPFC_MBOXQ_t *mbox;
761
762 cmdiocb = (struct lpfc_iocbq *) arg;
763 rspiocb = cmdiocb->context_un.rsp_iocb;
764
765 if (ndlp->nlp_flag & NLP_ACC_REGLOGIN) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -0500766 /* Recovery from PLOGI collision logic */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500767 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -0500768 }
769
770 irsp = &rspiocb->iocb;
771
772 if (irsp->ulpStatus)
773 goto out;
774
775 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
776
James Smart2e0fef82007-06-17 19:56:36 -0500777 prsp = list_get_first(&pcmd->list, struct lpfc_dmabuf, list);
dea31012005-04-17 16:05:31 -0500778
James Smart2e0fef82007-06-17 19:56:36 -0500779 lp = (uint32_t *) prsp->virt;
dea31012005-04-17 16:05:31 -0500780 sp = (struct serv_parm *) ((uint8_t *) lp + sizeof (uint32_t));
James Smart2e0fef82007-06-17 19:56:36 -0500781 if (!lpfc_check_sparm(vport, ndlp, sp, CLASS3))
dea31012005-04-17 16:05:31 -0500782 goto out;
dea31012005-04-17 16:05:31 -0500783 /* PLOGI chkparm OK */
James Smarte8b62012007-08-02 11:10:09 -0400784 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
785 "0121 PLOGI chkparm OK Data: x%x x%x x%x x%x\n",
786 ndlp->nlp_DID, ndlp->nlp_state,
787 ndlp->nlp_flag, ndlp->nlp_rpi);
James Smart3de2a652007-08-02 11:09:59 -0400788 if (vport->cfg_fcp_class == 2 && (sp->cls2.classValid))
dea31012005-04-17 16:05:31 -0500789 ndlp->nlp_fcp_info |= CLASS2;
James Smart2e0fef82007-06-17 19:56:36 -0500790 else
dea31012005-04-17 16:05:31 -0500791 ndlp->nlp_fcp_info |= CLASS3;
James Smart2e0fef82007-06-17 19:56:36 -0500792
dea31012005-04-17 16:05:31 -0500793 ndlp->nlp_class_sup = 0;
794 if (sp->cls1.classValid)
795 ndlp->nlp_class_sup |= FC_COS_CLASS1;
796 if (sp->cls2.classValid)
797 ndlp->nlp_class_sup |= FC_COS_CLASS2;
798 if (sp->cls3.classValid)
799 ndlp->nlp_class_sup |= FC_COS_CLASS3;
800 if (sp->cls4.classValid)
801 ndlp->nlp_class_sup |= FC_COS_CLASS4;
802 ndlp->nlp_maxframe =
James Smart2e0fef82007-06-17 19:56:36 -0500803 ((sp->cmn.bbRcvSizeMsb & 0x0F) << 8) | sp->cmn.bbRcvSizeLsb;
dea31012005-04-17 16:05:31 -0500804
James Smart2e0fef82007-06-17 19:56:36 -0500805 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
James Smart92d7f7b2007-06-17 19:56:38 -0500806 if (!mbox) {
James Smarte8b62012007-08-02 11:10:09 -0400807 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
808 "0133 PLOGI: no memory for reg_login "
James Smart92d7f7b2007-06-17 19:56:38 -0500809 "Data: x%x x%x x%x x%x\n",
James Smart92d7f7b2007-06-17 19:56:38 -0500810 ndlp->nlp_DID, ndlp->nlp_state,
811 ndlp->nlp_flag, ndlp->nlp_rpi);
dea31012005-04-17 16:05:31 -0500812 goto out;
James Smart92d7f7b2007-06-17 19:56:38 -0500813 }
dea31012005-04-17 16:05:31 -0500814
James Smart2e0fef82007-06-17 19:56:36 -0500815 lpfc_unreg_rpi(vport, ndlp);
816
James Smart92d7f7b2007-06-17 19:56:38 -0500817 if (lpfc_reg_login(phba, vport->vpi, irsp->un.elsreq64.remoteID,
818 (uint8_t *) sp, mbox, 0) == 0) {
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -0500819 switch (ndlp->nlp_DID) {
dea31012005-04-17 16:05:31 -0500820 case NameServer_DID:
James Smartde0c5b32007-04-25 09:52:27 -0400821 mbox->mbox_cmpl = lpfc_mbx_cmpl_ns_reg_login;
dea31012005-04-17 16:05:31 -0500822 break;
823 case FDMI_DID:
James Smartde0c5b32007-04-25 09:52:27 -0400824 mbox->mbox_cmpl = lpfc_mbx_cmpl_fdmi_reg_login;
dea31012005-04-17 16:05:31 -0500825 break;
826 default:
James Smartde0c5b32007-04-25 09:52:27 -0400827 mbox->mbox_cmpl = lpfc_mbx_cmpl_reg_login;
dea31012005-04-17 16:05:31 -0500828 }
James Smart329f9bc2007-04-25 09:53:01 -0400829 mbox->context2 = lpfc_nlp_get(ndlp);
James Smart2e0fef82007-06-17 19:56:36 -0500830 mbox->vport = vport;
dea31012005-04-17 16:05:31 -0500831 if (lpfc_sli_issue_mbox(phba, mbox,
832 (MBX_NOWAIT | MBX_STOP_IOCB))
833 != MBX_NOT_FINISHED) {
James Smart2e0fef82007-06-17 19:56:36 -0500834 lpfc_nlp_set_state(vport, ndlp,
835 NLP_STE_REG_LOGIN_ISSUE);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500836 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -0500837 }
James Smart329f9bc2007-04-25 09:53:01 -0400838 lpfc_nlp_put(ndlp);
James Smart92d7f7b2007-06-17 19:56:38 -0500839 mp = (struct lpfc_dmabuf *) mbox->context1;
James Smart14691152006-12-02 13:34:28 -0500840 lpfc_mbuf_free(phba, mp->virt, mp->phys);
841 kfree(mp);
dea31012005-04-17 16:05:31 -0500842 mempool_free(mbox, phba->mbox_mem_pool);
James Smart92d7f7b2007-06-17 19:56:38 -0500843
James Smarte8b62012007-08-02 11:10:09 -0400844 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
845 "0134 PLOGI: cannot issue reg_login "
846 "Data: x%x x%x x%x x%x\n",
847 ndlp->nlp_DID, ndlp->nlp_state,
848 ndlp->nlp_flag, ndlp->nlp_rpi);
dea31012005-04-17 16:05:31 -0500849 } else {
850 mempool_free(mbox, phba->mbox_mem_pool);
James Smart92d7f7b2007-06-17 19:56:38 -0500851
James Smarte8b62012007-08-02 11:10:09 -0400852 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
853 "0135 PLOGI: cannot format reg_login "
854 "Data: x%x x%x x%x x%x\n",
855 ndlp->nlp_DID, ndlp->nlp_state,
856 ndlp->nlp_flag, ndlp->nlp_rpi);
dea31012005-04-17 16:05:31 -0500857 }
858
859
James Smart92d7f7b2007-06-17 19:56:38 -0500860out:
861 if (ndlp->nlp_DID == NameServer_DID) {
862 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
James Smarte8b62012007-08-02 11:10:09 -0400863 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
864 "0261 Cannot Register NameServer login\n");
James Smart92d7f7b2007-06-17 19:56:38 -0500865 }
866
dea31012005-04-17 16:05:31 -0500867 /* Free this node since the driver cannot login or has the wrong
868 sparm */
James Smart2e0fef82007-06-17 19:56:36 -0500869 lpfc_drop_node(vport, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500870 return NLP_STE_FREED_NODE;
dea31012005-04-17 16:05:31 -0500871}
872
873static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500874lpfc_device_rm_plogi_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
875 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -0500876{
James Smart2e0fef82007-06-17 19:56:36 -0500877 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -0500878
James Smart2e0fef82007-06-17 19:56:36 -0500879 if (ndlp->nlp_flag & NLP_NPR_2B_DISC) {
880 spin_lock_irq(shost->host_lock);
881 ndlp->nlp_flag |= NLP_NODEV_REMOVE;
882 spin_unlock_irq(shost->host_lock);
883 return ndlp->nlp_state;
884 } else {
885 /* software abort outstanding PLOGI */
886 lpfc_els_abort(vport->phba, ndlp);
887
888 lpfc_drop_node(vport, ndlp);
James Smarta0f9b482006-04-15 11:52:56 -0400889 return NLP_STE_FREED_NODE;
890 }
dea31012005-04-17 16:05:31 -0500891}
892
893static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500894lpfc_device_recov_plogi_issue(struct lpfc_vport *vport,
895 struct lpfc_nodelist *ndlp,
896 void *arg,
897 uint32_t evt)
dea31012005-04-17 16:05:31 -0500898{
James Smart2e0fef82007-06-17 19:56:36 -0500899 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
900 struct lpfc_hba *phba = vport->phba;
901
James Smart92d7f7b2007-06-17 19:56:38 -0500902 /* Don't do anything that will mess up processing of the
903 * previous RSCN.
904 */
905 if (vport->fc_flag & FC_RSCN_DEFERRED)
906 return ndlp->nlp_state;
907
dea31012005-04-17 16:05:31 -0500908 /* software abort outstanding PLOGI */
James Smart07951072007-04-25 09:51:38 -0400909 lpfc_els_abort(phba, ndlp);
dea31012005-04-17 16:05:31 -0500910
Jamie Wellnitz5024ab12006-02-28 19:25:28 -0500911 ndlp->nlp_prev_state = NLP_STE_PLOGI_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -0500912 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
James Smart92d7f7b2007-06-17 19:56:38 -0500913 spin_lock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -0400914 ndlp->nlp_flag &= ~(NLP_NODEV_REMOVE | NLP_NPR_2B_DISC);
James Smart2e0fef82007-06-17 19:56:36 -0500915 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500916
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500917 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -0500918}
919
920static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500921lpfc_rcv_plogi_adisc_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
922 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -0500923{
James Smart2e0fef82007-06-17 19:56:36 -0500924 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -0500925 struct lpfc_iocbq *cmdiocb;
926
927 /* software abort outstanding ADISC */
James Smart07951072007-04-25 09:51:38 -0400928 lpfc_els_abort(phba, ndlp);
dea31012005-04-17 16:05:31 -0500929
930 cmdiocb = (struct lpfc_iocbq *) arg;
931
James Smart2e0fef82007-06-17 19:56:36 -0500932 if (lpfc_rcv_plogi(vport, ndlp, cmdiocb))
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500933 return ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -0500934
Jamie Wellnitz5024ab12006-02-28 19:25:28 -0500935 ndlp->nlp_prev_state = NLP_STE_ADISC_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -0500936 lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0);
937 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
dea31012005-04-17 16:05:31 -0500938
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500939 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -0500940}
941
942static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500943lpfc_rcv_prli_adisc_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
944 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -0500945{
James Smart2e0fef82007-06-17 19:56:36 -0500946 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -0500947
James Smart2e0fef82007-06-17 19:56:36 -0500948 lpfc_els_rsp_prli_acc(vport, cmdiocb, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500949 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -0500950}
951
952static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500953lpfc_rcv_logo_adisc_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
954 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -0500955{
James Smart2e0fef82007-06-17 19:56:36 -0500956 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -0500957 struct lpfc_iocbq *cmdiocb;
958
959 cmdiocb = (struct lpfc_iocbq *) arg;
960
961 /* software abort outstanding ADISC */
James Smart07951072007-04-25 09:51:38 -0400962 lpfc_els_abort(phba, ndlp);
dea31012005-04-17 16:05:31 -0500963
James Smart2e0fef82007-06-17 19:56:36 -0500964 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_LOGO);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500965 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -0500966}
967
968static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500969lpfc_rcv_padisc_adisc_issue(struct lpfc_vport *vport,
970 struct lpfc_nodelist *ndlp,
971 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -0500972{
973 struct lpfc_iocbq *cmdiocb;
974
975 cmdiocb = (struct lpfc_iocbq *) arg;
976
James Smart2e0fef82007-06-17 19:56:36 -0500977 lpfc_rcv_padisc(vport, ndlp, cmdiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500978 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -0500979}
980
981static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500982lpfc_rcv_prlo_adisc_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
983 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -0500984{
985 struct lpfc_iocbq *cmdiocb;
986
987 cmdiocb = (struct lpfc_iocbq *) arg;
988
989 /* Treat like rcv logo */
James Smart2e0fef82007-06-17 19:56:36 -0500990 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_PRLO);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500991 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -0500992}
993
994static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500995lpfc_cmpl_adisc_adisc_issue(struct lpfc_vport *vport,
996 struct lpfc_nodelist *ndlp,
997 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -0500998{
James Smart2e0fef82007-06-17 19:56:36 -0500999 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1000 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05001001 struct lpfc_iocbq *cmdiocb, *rspiocb;
1002 IOCB_t *irsp;
1003 ADISC *ap;
1004
1005 cmdiocb = (struct lpfc_iocbq *) arg;
1006 rspiocb = cmdiocb->context_un.rsp_iocb;
1007
1008 ap = (ADISC *)lpfc_check_elscmpl_iocb(phba, cmdiocb, rspiocb);
1009 irsp = &rspiocb->iocb;
1010
1011 if ((irsp->ulpStatus) ||
James Smart92d7f7b2007-06-17 19:56:38 -05001012 (!lpfc_check_adisc(vport, ndlp, &ap->nodeName, &ap->portName))) {
dea31012005-04-17 16:05:31 -05001013 /* 1 sec timeout */
1014 mod_timer(&ndlp->nlp_delayfunc, jiffies + HZ);
James Smart2e0fef82007-06-17 19:56:36 -05001015 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001016 ndlp->nlp_flag |= NLP_DELAY_TMO;
James Smart2e0fef82007-06-17 19:56:36 -05001017 spin_unlock_irq(shost->host_lock);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001018 ndlp->nlp_last_elscmd = ELS_CMD_PLOGI;
dea31012005-04-17 16:05:31 -05001019
James Smart2e0fef82007-06-17 19:56:36 -05001020 memset(&ndlp->nlp_nodename, 0, sizeof(struct lpfc_name));
1021 memset(&ndlp->nlp_portname, 0, sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -05001022
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001023 ndlp->nlp_prev_state = NLP_STE_ADISC_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001024 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
1025 lpfc_unreg_rpi(vport, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001026 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001027 }
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001028
James.Smart@Emulex.Com25013222005-06-25 10:34:33 -04001029 if (ndlp->nlp_type & NLP_FCP_TARGET) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001030 ndlp->nlp_prev_state = NLP_STE_ADISC_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001031 lpfc_nlp_set_state(vport, ndlp, NLP_STE_MAPPED_NODE);
James.Smart@Emulex.Com25013222005-06-25 10:34:33 -04001032 } else {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001033 ndlp->nlp_prev_state = NLP_STE_ADISC_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001034 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
James.Smart@Emulex.Com25013222005-06-25 10:34:33 -04001035 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001036 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001037}
1038
1039static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001040lpfc_device_rm_adisc_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1041 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001042{
James Smart2e0fef82007-06-17 19:56:36 -05001043 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05001044
James Smart2e0fef82007-06-17 19:56:36 -05001045 if (ndlp->nlp_flag & NLP_NPR_2B_DISC) {
1046 spin_lock_irq(shost->host_lock);
1047 ndlp->nlp_flag |= NLP_NODEV_REMOVE;
1048 spin_unlock_irq(shost->host_lock);
1049 return ndlp->nlp_state;
1050 } else {
1051 /* software abort outstanding ADISC */
1052 lpfc_els_abort(vport->phba, ndlp);
1053
1054 lpfc_drop_node(vport, ndlp);
James Smarta0f9b482006-04-15 11:52:56 -04001055 return NLP_STE_FREED_NODE;
1056 }
dea31012005-04-17 16:05:31 -05001057}
1058
1059static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001060lpfc_device_recov_adisc_issue(struct lpfc_vport *vport,
1061 struct lpfc_nodelist *ndlp,
1062 void *arg,
1063 uint32_t evt)
dea31012005-04-17 16:05:31 -05001064{
James Smart2e0fef82007-06-17 19:56:36 -05001065 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1066 struct lpfc_hba *phba = vport->phba;
1067
James Smart92d7f7b2007-06-17 19:56:38 -05001068 /* Don't do anything that will mess up processing of the
1069 * previous RSCN.
1070 */
1071 if (vport->fc_flag & FC_RSCN_DEFERRED)
1072 return ndlp->nlp_state;
1073
dea31012005-04-17 16:05:31 -05001074 /* software abort outstanding ADISC */
James Smart07951072007-04-25 09:51:38 -04001075 lpfc_els_abort(phba, ndlp);
dea31012005-04-17 16:05:31 -05001076
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001077 ndlp->nlp_prev_state = NLP_STE_ADISC_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001078 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
1079 spin_lock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04001080 ndlp->nlp_flag &= ~(NLP_NODEV_REMOVE | NLP_NPR_2B_DISC);
James Smart2e0fef82007-06-17 19:56:36 -05001081 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05001082 lpfc_disc_set_adisc(vport, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001083 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001084}
1085
1086static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001087lpfc_rcv_plogi_reglogin_issue(struct lpfc_vport *vport,
1088 struct lpfc_nodelist *ndlp,
1089 void *arg,
dea31012005-04-17 16:05:31 -05001090 uint32_t evt)
1091{
James Smart2e0fef82007-06-17 19:56:36 -05001092 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001093
James Smart2e0fef82007-06-17 19:56:36 -05001094 lpfc_rcv_plogi(vport, ndlp, cmdiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001095 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001096}
1097
1098static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001099lpfc_rcv_prli_reglogin_issue(struct lpfc_vport *vport,
1100 struct lpfc_nodelist *ndlp,
1101 void *arg,
dea31012005-04-17 16:05:31 -05001102 uint32_t evt)
1103{
James Smart2e0fef82007-06-17 19:56:36 -05001104 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001105
James Smart2e0fef82007-06-17 19:56:36 -05001106 lpfc_els_rsp_prli_acc(vport, cmdiocb, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001107 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001108}
1109
1110static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001111lpfc_rcv_logo_reglogin_issue(struct lpfc_vport *vport,
1112 struct lpfc_nodelist *ndlp,
1113 void *arg,
dea31012005-04-17 16:05:31 -05001114 uint32_t evt)
1115{
James Smart2e0fef82007-06-17 19:56:36 -05001116 struct lpfc_hba *phba = vport->phba;
1117 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
James Smart7054a602007-04-25 09:52:34 -04001118 LPFC_MBOXQ_t *mb;
1119 LPFC_MBOXQ_t *nextmb;
1120 struct lpfc_dmabuf *mp;
dea31012005-04-17 16:05:31 -05001121
1122 cmdiocb = (struct lpfc_iocbq *) arg;
1123
James Smart7054a602007-04-25 09:52:34 -04001124 /* cleanup any ndlp on mbox q waiting for reglogin cmpl */
1125 if ((mb = phba->sli.mbox_active)) {
1126 if ((mb->mb.mbxCommand == MBX_REG_LOGIN64) &&
1127 (ndlp == (struct lpfc_nodelist *) mb->context2)) {
James Smart92d7f7b2007-06-17 19:56:38 -05001128 lpfc_nlp_put(ndlp);
James Smart7054a602007-04-25 09:52:34 -04001129 mb->context2 = NULL;
1130 mb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
1131 }
1132 }
1133
James Smart2e0fef82007-06-17 19:56:36 -05001134 spin_lock_irq(&phba->hbalock);
James Smart7054a602007-04-25 09:52:34 -04001135 list_for_each_entry_safe(mb, nextmb, &phba->sli.mboxq, list) {
1136 if ((mb->mb.mbxCommand == MBX_REG_LOGIN64) &&
1137 (ndlp == (struct lpfc_nodelist *) mb->context2)) {
1138 mp = (struct lpfc_dmabuf *) (mb->context1);
1139 if (mp) {
1140 lpfc_mbuf_free(phba, mp->virt, mp->phys);
1141 kfree(mp);
1142 }
James Smart92d7f7b2007-06-17 19:56:38 -05001143 lpfc_nlp_put(ndlp);
James Smart7054a602007-04-25 09:52:34 -04001144 list_del(&mb->list);
1145 mempool_free(mb, phba->mbox_mem_pool);
1146 }
1147 }
James Smart2e0fef82007-06-17 19:56:36 -05001148 spin_unlock_irq(&phba->hbalock);
James Smart7054a602007-04-25 09:52:34 -04001149
James Smart2e0fef82007-06-17 19:56:36 -05001150 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_LOGO);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001151 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001152}
1153
1154static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001155lpfc_rcv_padisc_reglogin_issue(struct lpfc_vport *vport,
1156 struct lpfc_nodelist *ndlp,
1157 void *arg,
dea31012005-04-17 16:05:31 -05001158 uint32_t evt)
1159{
James Smart2e0fef82007-06-17 19:56:36 -05001160 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001161
James Smart2e0fef82007-06-17 19:56:36 -05001162 lpfc_rcv_padisc(vport, ndlp, cmdiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001163 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001164}
1165
1166static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001167lpfc_rcv_prlo_reglogin_issue(struct lpfc_vport *vport,
1168 struct lpfc_nodelist *ndlp,
1169 void *arg,
dea31012005-04-17 16:05:31 -05001170 uint32_t evt)
1171{
1172 struct lpfc_iocbq *cmdiocb;
1173
1174 cmdiocb = (struct lpfc_iocbq *) arg;
James Smart51ef4c22007-08-02 11:10:31 -04001175 lpfc_els_rsp_acc(vport, ELS_CMD_PRLO, cmdiocb, ndlp, NULL);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001176 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001177}
1178
1179static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001180lpfc_cmpl_reglogin_reglogin_issue(struct lpfc_vport *vport,
1181 struct lpfc_nodelist *ndlp,
1182 void *arg,
1183 uint32_t evt)
dea31012005-04-17 16:05:31 -05001184{
James Smart2e0fef82007-06-17 19:56:36 -05001185 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart2e0fef82007-06-17 19:56:36 -05001186 LPFC_MBOXQ_t *pmb = (LPFC_MBOXQ_t *) arg;
1187 MAILBOX_t *mb = &pmb->mb;
1188 uint32_t did = mb->un.varWords[1];
dea31012005-04-17 16:05:31 -05001189
dea31012005-04-17 16:05:31 -05001190 if (mb->mbxStatus) {
1191 /* RegLogin failed */
James Smarte8b62012007-08-02 11:10:09 -04001192 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
1193 "0246 RegLogin failed Data: x%x x%x x%x\n",
James Smart2e0fef82007-06-17 19:56:36 -05001194 did, mb->mbxStatus, vport->port_state);
James Smartd0e56da2006-07-06 15:49:42 -04001195 /*
1196 * If RegLogin failed due to lack of HBA resources do not
1197 * retry discovery.
1198 */
1199 if (mb->mbxStatus == MBXERR_RPI_FULL) {
1200 ndlp->nlp_prev_state = NLP_STE_UNUSED_NODE;
James Smart2e0fef82007-06-17 19:56:36 -05001201 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNUSED_NODE);
James Smartd0e56da2006-07-06 15:49:42 -04001202 return ndlp->nlp_state;
1203 }
1204
James Smart2e0fef82007-06-17 19:56:36 -05001205 /* Put ndlp in npr state set plogi timer for 1 sec */
dea31012005-04-17 16:05:31 -05001206 mod_timer(&ndlp->nlp_delayfunc, jiffies + HZ * 1);
James Smart2e0fef82007-06-17 19:56:36 -05001207 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001208 ndlp->nlp_flag |= NLP_DELAY_TMO;
James Smart2e0fef82007-06-17 19:56:36 -05001209 spin_unlock_irq(shost->host_lock);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001210 ndlp->nlp_last_elscmd = ELS_CMD_PLOGI;
dea31012005-04-17 16:05:31 -05001211
James Smart2e0fef82007-06-17 19:56:36 -05001212 lpfc_issue_els_logo(vport, ndlp, 0);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001213 ndlp->nlp_prev_state = NLP_STE_REG_LOGIN_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001214 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001215 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001216 }
1217
dea31012005-04-17 16:05:31 -05001218 ndlp->nlp_rpi = mb->un.varWords[0];
dea31012005-04-17 16:05:31 -05001219
1220 /* Only if we are not a fabric nport do we issue PRLI */
1221 if (!(ndlp->nlp_type & NLP_FABRIC)) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001222 ndlp->nlp_prev_state = NLP_STE_REG_LOGIN_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001223 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PRLI_ISSUE);
1224 lpfc_issue_els_prli(vport, ndlp, 0);
dea31012005-04-17 16:05:31 -05001225 } else {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001226 ndlp->nlp_prev_state = NLP_STE_REG_LOGIN_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001227 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
dea31012005-04-17 16:05:31 -05001228 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001229 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001230}
1231
1232static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001233lpfc_device_rm_reglogin_issue(struct lpfc_vport *vport,
1234 struct lpfc_nodelist *ndlp,
1235 void *arg,
dea31012005-04-17 16:05:31 -05001236 uint32_t evt)
1237{
James Smart2e0fef82007-06-17 19:56:36 -05001238 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1239
1240 if (ndlp->nlp_flag & NLP_NPR_2B_DISC) {
1241 spin_lock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04001242 ndlp->nlp_flag |= NLP_NODEV_REMOVE;
James Smart2e0fef82007-06-17 19:56:36 -05001243 spin_unlock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04001244 return ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05001245 } else {
1246 lpfc_drop_node(vport, ndlp);
James Smarta0f9b482006-04-15 11:52:56 -04001247 return NLP_STE_FREED_NODE;
1248 }
dea31012005-04-17 16:05:31 -05001249}
1250
1251static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001252lpfc_device_recov_reglogin_issue(struct lpfc_vport *vport,
1253 struct lpfc_nodelist *ndlp,
1254 void *arg,
1255 uint32_t evt)
dea31012005-04-17 16:05:31 -05001256{
James Smart2e0fef82007-06-17 19:56:36 -05001257 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1258
James Smart92d7f7b2007-06-17 19:56:38 -05001259 /* Don't do anything that will mess up processing of the
1260 * previous RSCN.
1261 */
1262 if (vport->fc_flag & FC_RSCN_DEFERRED)
1263 return ndlp->nlp_state;
1264
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001265 ndlp->nlp_prev_state = NLP_STE_REG_LOGIN_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001266 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
1267 spin_lock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04001268 ndlp->nlp_flag &= ~(NLP_NODEV_REMOVE | NLP_NPR_2B_DISC);
James Smart2e0fef82007-06-17 19:56:36 -05001269 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05001270 lpfc_disc_set_adisc(vport, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001271 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001272}
1273
1274static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001275lpfc_rcv_plogi_prli_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1276 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001277{
1278 struct lpfc_iocbq *cmdiocb;
1279
1280 cmdiocb = (struct lpfc_iocbq *) arg;
1281
James Smart2e0fef82007-06-17 19:56:36 -05001282 lpfc_rcv_plogi(vport, ndlp, cmdiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001283 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001284}
1285
1286static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001287lpfc_rcv_prli_prli_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1288 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001289{
James Smart2e0fef82007-06-17 19:56:36 -05001290 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001291
James Smart2e0fef82007-06-17 19:56:36 -05001292 lpfc_els_rsp_prli_acc(vport, cmdiocb, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001293 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001294}
1295
1296static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001297lpfc_rcv_logo_prli_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1298 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001299{
James Smart2e0fef82007-06-17 19:56:36 -05001300 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001301
1302 /* Software abort outstanding PRLI before sending acc */
James Smart2e0fef82007-06-17 19:56:36 -05001303 lpfc_els_abort(vport->phba, ndlp);
dea31012005-04-17 16:05:31 -05001304
James Smart2e0fef82007-06-17 19:56:36 -05001305 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_LOGO);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001306 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001307}
1308
1309static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001310lpfc_rcv_padisc_prli_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1311 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001312{
James Smart2e0fef82007-06-17 19:56:36 -05001313 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001314
James Smart2e0fef82007-06-17 19:56:36 -05001315 lpfc_rcv_padisc(vport, ndlp, cmdiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001316 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001317}
1318
1319/* This routine is envoked when we rcv a PRLO request from a nport
1320 * we are logged into. We should send back a PRLO rsp setting the
1321 * appropriate bits.
1322 * NEXT STATE = PRLI_ISSUE
1323 */
1324static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001325lpfc_rcv_prlo_prli_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1326 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001327{
James Smart2e0fef82007-06-17 19:56:36 -05001328 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001329
James Smart51ef4c22007-08-02 11:10:31 -04001330 lpfc_els_rsp_acc(vport, ELS_CMD_PRLO, cmdiocb, ndlp, NULL);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001331 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001332}
1333
1334static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001335lpfc_cmpl_prli_prli_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1336 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001337{
James Smart92d7f7b2007-06-17 19:56:38 -05001338 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05001339 struct lpfc_iocbq *cmdiocb, *rspiocb;
James Smart2e0fef82007-06-17 19:56:36 -05001340 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05001341 IOCB_t *irsp;
1342 PRLI *npr;
1343
1344 cmdiocb = (struct lpfc_iocbq *) arg;
1345 rspiocb = cmdiocb->context_un.rsp_iocb;
1346 npr = (PRLI *)lpfc_check_elscmpl_iocb(phba, cmdiocb, rspiocb);
1347
1348 irsp = &rspiocb->iocb;
1349 if (irsp->ulpStatus) {
James Smart858c9f62007-06-17 19:56:39 -05001350 if ((vport->port_type == LPFC_NPIV_PORT) &&
James Smart3de2a652007-08-02 11:09:59 -04001351 vport->cfg_restrict_login) {
James Smart858c9f62007-06-17 19:56:39 -05001352 goto out;
1353 }
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001354 ndlp->nlp_prev_state = NLP_STE_PRLI_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001355 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001356 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001357 }
1358
1359 /* Check out PRLI rsp */
1360 ndlp->nlp_type &= ~(NLP_FCP_TARGET | NLP_FCP_INITIATOR);
1361 ndlp->nlp_fcp_info &= ~NLP_FCP_2_DEVICE;
1362 if ((npr->acceptRspCode == PRLI_REQ_EXECUTED) &&
1363 (npr->prliType == PRLI_FCP_TYPE)) {
1364 if (npr->initiatorFunc)
1365 ndlp->nlp_type |= NLP_FCP_INITIATOR;
1366 if (npr->targetFunc)
1367 ndlp->nlp_type |= NLP_FCP_TARGET;
1368 if (npr->Retry)
1369 ndlp->nlp_fcp_info |= NLP_FCP_2_DEVICE;
1370 }
James Smart92d7f7b2007-06-17 19:56:38 -05001371 if (!(ndlp->nlp_type & NLP_FCP_TARGET) &&
1372 (vport->port_type == LPFC_NPIV_PORT) &&
James Smart3de2a652007-08-02 11:09:59 -04001373 vport->cfg_restrict_login) {
James Smart858c9f62007-06-17 19:56:39 -05001374out:
James Smart92d7f7b2007-06-17 19:56:38 -05001375 spin_lock_irq(shost->host_lock);
1376 ndlp->nlp_flag |= NLP_TARGET_REMOVE;
1377 spin_unlock_irq(shost->host_lock);
1378 lpfc_issue_els_logo(vport, ndlp, 0);
1379
1380 ndlp->nlp_prev_state = NLP_STE_PRLI_ISSUE;
1381 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNUSED_NODE);
1382 return ndlp->nlp_state;
1383 }
dea31012005-04-17 16:05:31 -05001384
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001385 ndlp->nlp_prev_state = NLP_STE_PRLI_ISSUE;
James Smart92d7f7b2007-06-17 19:56:38 -05001386 if (ndlp->nlp_type & NLP_FCP_TARGET)
1387 lpfc_nlp_set_state(vport, ndlp, NLP_STE_MAPPED_NODE);
1388 else
1389 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001390 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001391}
1392
1393/*! lpfc_device_rm_prli_issue
James Smart92d7f7b2007-06-17 19:56:38 -05001394 *
1395 * \pre
1396 * \post
1397 * \param phba
1398 * \param ndlp
1399 * \param arg
1400 * \param evt
1401 * \return uint32_t
1402 *
1403 * \b Description:
1404 * This routine is envoked when we a request to remove a nport we are in the
1405 * process of PRLIing. We should software abort outstanding prli, unreg
1406 * login, send a logout. We will change node state to UNUSED_NODE, put it
1407 * on plogi list so it can be freed when LOGO completes.
1408 *
1409 */
1410
dea31012005-04-17 16:05:31 -05001411static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001412lpfc_device_rm_prli_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1413 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001414{
James Smart2e0fef82007-06-17 19:56:36 -05001415 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05001416
James Smart2e0fef82007-06-17 19:56:36 -05001417 if (ndlp->nlp_flag & NLP_NPR_2B_DISC) {
1418 spin_lock_irq(shost->host_lock);
1419 ndlp->nlp_flag |= NLP_NODEV_REMOVE;
1420 spin_unlock_irq(shost->host_lock);
1421 return ndlp->nlp_state;
1422 } else {
1423 /* software abort outstanding PLOGI */
1424 lpfc_els_abort(vport->phba, ndlp);
1425
1426 lpfc_drop_node(vport, ndlp);
James Smarta0f9b482006-04-15 11:52:56 -04001427 return NLP_STE_FREED_NODE;
1428 }
dea31012005-04-17 16:05:31 -05001429}
1430
1431
1432/*! lpfc_device_recov_prli_issue
James Smart92d7f7b2007-06-17 19:56:38 -05001433 *
1434 * \pre
1435 * \post
1436 * \param phba
1437 * \param ndlp
1438 * \param arg
1439 * \param evt
1440 * \return uint32_t
1441 *
1442 * \b Description:
1443 * The routine is envoked when the state of a device is unknown, like
1444 * during a link down. We should remove the nodelist entry from the
1445 * unmapped list, issue a UNREG_LOGIN, do a software abort of the
1446 * outstanding PRLI command, then free the node entry.
1447 */
dea31012005-04-17 16:05:31 -05001448static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001449lpfc_device_recov_prli_issue(struct lpfc_vport *vport,
1450 struct lpfc_nodelist *ndlp,
1451 void *arg,
1452 uint32_t evt)
dea31012005-04-17 16:05:31 -05001453{
James Smart2e0fef82007-06-17 19:56:36 -05001454 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1455 struct lpfc_hba *phba = vport->phba;
1456
James Smart92d7f7b2007-06-17 19:56:38 -05001457 /* Don't do anything that will mess up processing of the
1458 * previous RSCN.
1459 */
1460 if (vport->fc_flag & FC_RSCN_DEFERRED)
1461 return ndlp->nlp_state;
1462
dea31012005-04-17 16:05:31 -05001463 /* software abort outstanding PRLI */
James Smart07951072007-04-25 09:51:38 -04001464 lpfc_els_abort(phba, ndlp);
dea31012005-04-17 16:05:31 -05001465
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001466 ndlp->nlp_prev_state = NLP_STE_PRLI_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001467 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
1468 spin_lock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04001469 ndlp->nlp_flag &= ~(NLP_NODEV_REMOVE | NLP_NPR_2B_DISC);
James Smart2e0fef82007-06-17 19:56:36 -05001470 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05001471 lpfc_disc_set_adisc(vport, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001472 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001473}
1474
1475static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001476lpfc_rcv_plogi_unmap_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1477 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001478{
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_unmap_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1487 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001488{
James Smart2e0fef82007-06-17 19:56:36 -05001489 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001490
James Smart2e0fef82007-06-17 19:56:36 -05001491 lpfc_rcv_prli(vport, ndlp, cmdiocb);
1492 lpfc_els_rsp_prli_acc(vport, cmdiocb, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001493 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001494}
1495
1496static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001497lpfc_rcv_logo_unmap_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1498 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001499{
James Smart2e0fef82007-06-17 19:56:36 -05001500 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001501
James Smart2e0fef82007-06-17 19:56:36 -05001502 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_LOGO);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001503 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001504}
1505
1506static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001507lpfc_rcv_padisc_unmap_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1508 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001509{
James Smart2e0fef82007-06-17 19:56:36 -05001510 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001511
James Smart2e0fef82007-06-17 19:56:36 -05001512 lpfc_rcv_padisc(vport, ndlp, cmdiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001513 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001514}
1515
1516static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001517lpfc_rcv_prlo_unmap_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1518 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001519{
James Smart2e0fef82007-06-17 19:56:36 -05001520 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001521
James Smart51ef4c22007-08-02 11:10:31 -04001522 lpfc_els_rsp_acc(vport, ELS_CMD_PRLO, cmdiocb, ndlp, NULL);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001523 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001524}
1525
1526static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001527lpfc_device_recov_unmap_node(struct lpfc_vport *vport,
1528 struct lpfc_nodelist *ndlp,
1529 void *arg,
1530 uint32_t evt)
dea31012005-04-17 16:05:31 -05001531{
James Smart2e0fef82007-06-17 19:56:36 -05001532 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1533
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001534 ndlp->nlp_prev_state = NLP_STE_UNMAPPED_NODE;
James Smart2e0fef82007-06-17 19:56:36 -05001535 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
1536 spin_lock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04001537 ndlp->nlp_flag &= ~(NLP_NODEV_REMOVE | NLP_NPR_2B_DISC);
James Smart2e0fef82007-06-17 19:56:36 -05001538 spin_unlock_irq(shost->host_lock);
1539 lpfc_disc_set_adisc(vport, ndlp);
dea31012005-04-17 16:05:31 -05001540
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001541 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001542}
1543
1544static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001545lpfc_rcv_plogi_mapped_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1546 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001547{
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_plogi(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_prli_mapped_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1556 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001557{
James Smart2e0fef82007-06-17 19:56:36 -05001558 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001559
James Smart2e0fef82007-06-17 19:56:36 -05001560 lpfc_els_rsp_prli_acc(vport, cmdiocb, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001561 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001562}
1563
1564static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001565lpfc_rcv_logo_mapped_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1566 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001567{
James Smart2e0fef82007-06-17 19:56:36 -05001568 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001569
James Smart2e0fef82007-06-17 19:56:36 -05001570 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_LOGO);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001571 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001572}
1573
1574static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001575lpfc_rcv_padisc_mapped_node(struct lpfc_vport *vport,
1576 struct lpfc_nodelist *ndlp,
1577 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001578{
James Smart2e0fef82007-06-17 19:56:36 -05001579 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001580
James Smart2e0fef82007-06-17 19:56:36 -05001581 lpfc_rcv_padisc(vport, ndlp, cmdiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001582 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001583}
1584
1585static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001586lpfc_rcv_prlo_mapped_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1587 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001588{
James Smart2e0fef82007-06-17 19:56:36 -05001589 struct lpfc_hba *phba = vport->phba;
1590 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001591
1592 /* flush the target */
James Smart51ef4c22007-08-02 11:10:31 -04001593 lpfc_sli_abort_iocb(vport, &phba->sli.ring[phba->sli.fcp_ring],
1594 ndlp->nlp_sid, 0, LPFC_CTX_TGT);
dea31012005-04-17 16:05:31 -05001595
1596 /* Treat like rcv logo */
James Smart2e0fef82007-06-17 19:56:36 -05001597 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_PRLO);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001598 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001599}
1600
1601static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001602lpfc_device_recov_mapped_node(struct lpfc_vport *vport,
1603 struct lpfc_nodelist *ndlp,
1604 void *arg,
1605 uint32_t evt)
dea31012005-04-17 16:05:31 -05001606{
James Smart2e0fef82007-06-17 19:56:36 -05001607 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1608
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001609 ndlp->nlp_prev_state = NLP_STE_MAPPED_NODE;
James Smart2e0fef82007-06-17 19:56:36 -05001610 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
1611 spin_lock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04001612 ndlp->nlp_flag &= ~(NLP_NODEV_REMOVE | NLP_NPR_2B_DISC);
James Smart2e0fef82007-06-17 19:56:36 -05001613 spin_unlock_irq(shost->host_lock);
1614 lpfc_disc_set_adisc(vport, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001615 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001616}
1617
1618static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001619lpfc_rcv_plogi_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1620 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001621{
James Smart2e0fef82007-06-17 19:56:36 -05001622 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1623 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001624
1625 /* Ignore PLOGI if we have an outstanding LOGO */
James Smart858c9f62007-06-17 19:56:39 -05001626 if (ndlp->nlp_flag & (NLP_LOGO_SND | NLP_LOGO_ACC)) {
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001627 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001628 }
1629
James Smart2e0fef82007-06-17 19:56:36 -05001630 if (lpfc_rcv_plogi(vport, ndlp, cmdiocb)) {
1631 spin_lock_irq(shost->host_lock);
James Smartfdcebe22006-03-07 15:04:01 -05001632 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
James Smart2e0fef82007-06-17 19:56:36 -05001633 spin_unlock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001634 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001635 }
1636
1637 /* send PLOGI immediately, move to PLOGI issue state */
1638 if (!(ndlp->nlp_flag & NLP_DELAY_TMO)) {
James Smart488d1462006-03-07 15:02:37 -05001639 ndlp->nlp_prev_state = NLP_STE_NPR_NODE;
James Smart2e0fef82007-06-17 19:56:36 -05001640 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
1641 lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0);
dea31012005-04-17 16:05:31 -05001642 }
James Smart488d1462006-03-07 15:02:37 -05001643
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001644 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001645}
1646
1647static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001648lpfc_rcv_prli_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1649 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001650{
James Smart2e0fef82007-06-17 19:56:36 -05001651 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1652 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
1653 struct ls_rjt stat;
dea31012005-04-17 16:05:31 -05001654
1655 memset(&stat, 0, sizeof (struct ls_rjt));
1656 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
1657 stat.un.b.lsRjtRsnCodeExp = LSEXP_NOTHING_MORE;
James Smart858c9f62007-06-17 19:56:39 -05001658 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
dea31012005-04-17 16:05:31 -05001659
1660 if (!(ndlp->nlp_flag & NLP_DELAY_TMO)) {
1661 if (ndlp->nlp_flag & NLP_NPR_ADISC) {
James Smart2e0fef82007-06-17 19:56:36 -05001662 spin_lock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001663 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001664 ndlp->nlp_prev_state = NLP_STE_NPR_NODE;
James Smart2e0fef82007-06-17 19:56:36 -05001665 spin_unlock_irq(shost->host_lock);
1666 lpfc_nlp_set_state(vport, ndlp, NLP_STE_ADISC_ISSUE);
1667 lpfc_issue_els_adisc(vport, ndlp, 0);
dea31012005-04-17 16:05:31 -05001668 } else {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001669 ndlp->nlp_prev_state = NLP_STE_NPR_NODE;
James Smart2e0fef82007-06-17 19:56:36 -05001670 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
1671 lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0);
dea31012005-04-17 16:05:31 -05001672 }
1673 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001674 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001675}
1676
1677static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001678lpfc_rcv_logo_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1679 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001680{
James Smart2e0fef82007-06-17 19:56:36 -05001681 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001682
James Smart2e0fef82007-06-17 19:56:36 -05001683 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_LOGO);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001684 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001685}
1686
1687static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001688lpfc_rcv_padisc_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1689 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001690{
James Smart2e0fef82007-06-17 19:56:36 -05001691 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001692
James Smart2e0fef82007-06-17 19:56:36 -05001693 lpfc_rcv_padisc(vport, ndlp, cmdiocb);
dea31012005-04-17 16:05:31 -05001694
James Smart33ccf8d2006-08-17 11:57:58 -04001695 /*
1696 * Do not start discovery if discovery is about to start
1697 * or discovery in progress for this node. Starting discovery
1698 * here will affect the counting of discovery threads.
1699 */
James Smart2fb9bd82006-12-02 13:33:57 -05001700 if (!(ndlp->nlp_flag & NLP_DELAY_TMO) &&
James Smart92d7f7b2007-06-17 19:56:38 -05001701 !(ndlp->nlp_flag & NLP_NPR_2B_DISC)) {
dea31012005-04-17 16:05:31 -05001702 if (ndlp->nlp_flag & NLP_NPR_ADISC) {
James Smart92d7f7b2007-06-17 19:56:38 -05001703 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001704 ndlp->nlp_prev_state = NLP_STE_NPR_NODE;
James Smart2e0fef82007-06-17 19:56:36 -05001705 lpfc_nlp_set_state(vport, ndlp, NLP_STE_ADISC_ISSUE);
1706 lpfc_issue_els_adisc(vport, ndlp, 0);
dea31012005-04-17 16:05:31 -05001707 } else {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001708 ndlp->nlp_prev_state = NLP_STE_NPR_NODE;
James Smart2e0fef82007-06-17 19:56:36 -05001709 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
1710 lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0);
dea31012005-04-17 16:05:31 -05001711 }
1712 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001713 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001714}
1715
1716static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001717lpfc_rcv_prlo_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1718 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001719{
James Smart2e0fef82007-06-17 19:56:36 -05001720 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1721 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001722
James Smart2e0fef82007-06-17 19:56:36 -05001723 spin_lock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001724 ndlp->nlp_flag |= NLP_LOGO_ACC;
James Smart2e0fef82007-06-17 19:56:36 -05001725 spin_unlock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001726
James Smart51ef4c22007-08-02 11:10:31 -04001727 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
dea31012005-04-17 16:05:31 -05001728
James Smart2e0fef82007-06-17 19:56:36 -05001729 if ((ndlp->nlp_flag & NLP_DELAY_TMO) == 0) {
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001730 mod_timer(&ndlp->nlp_delayfunc, jiffies + HZ * 1);
James Smart2e0fef82007-06-17 19:56:36 -05001731 spin_lock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001732 ndlp->nlp_flag |= NLP_DELAY_TMO;
1733 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
James Smart2e0fef82007-06-17 19:56:36 -05001734 spin_unlock_irq(shost->host_lock);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001735 ndlp->nlp_last_elscmd = ELS_CMD_PLOGI;
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001736 } else {
James Smart2e0fef82007-06-17 19:56:36 -05001737 spin_lock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001738 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
James Smart2e0fef82007-06-17 19:56:36 -05001739 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001740 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001741 return ndlp->nlp_state;
1742}
dea31012005-04-17 16:05:31 -05001743
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001744static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001745lpfc_cmpl_plogi_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1746 void *arg, uint32_t evt)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001747{
1748 struct lpfc_iocbq *cmdiocb, *rspiocb;
James Smarta0f9b482006-04-15 11:52:56 -04001749 IOCB_t *irsp;
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001750
1751 cmdiocb = (struct lpfc_iocbq *) arg;
1752 rspiocb = cmdiocb->context_un.rsp_iocb;
James Smarta0f9b482006-04-15 11:52:56 -04001753
1754 irsp = &rspiocb->iocb;
1755 if (irsp->ulpStatus) {
James Smart2e0fef82007-06-17 19:56:36 -05001756 lpfc_drop_node(vport, ndlp);
James Smarta0f9b482006-04-15 11:52:56 -04001757 return NLP_STE_FREED_NODE;
1758 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001759 return ndlp->nlp_state;
1760}
1761
1762static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001763lpfc_cmpl_prli_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1764 void *arg, uint32_t evt)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001765{
1766 struct lpfc_iocbq *cmdiocb, *rspiocb;
James Smarta0f9b482006-04-15 11:52:56 -04001767 IOCB_t *irsp;
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001768
1769 cmdiocb = (struct lpfc_iocbq *) arg;
1770 rspiocb = cmdiocb->context_un.rsp_iocb;
James Smarta0f9b482006-04-15 11:52:56 -04001771
1772 irsp = &rspiocb->iocb;
1773 if (irsp->ulpStatus && (ndlp->nlp_flag & NLP_NODEV_REMOVE)) {
James Smart2e0fef82007-06-17 19:56:36 -05001774 lpfc_drop_node(vport, ndlp);
James Smarta0f9b482006-04-15 11:52:56 -04001775 return NLP_STE_FREED_NODE;
1776 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001777 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001778}
1779
1780static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001781lpfc_cmpl_logo_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1782 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001783{
James Smart2e0fef82007-06-17 19:56:36 -05001784 lpfc_unreg_rpi(vport, ndlp);
dea31012005-04-17 16:05:31 -05001785 /* This routine does nothing, just return the current state */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001786 return ndlp->nlp_state;
1787}
1788
1789static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001790lpfc_cmpl_adisc_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1791 void *arg, uint32_t evt)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001792{
1793 struct lpfc_iocbq *cmdiocb, *rspiocb;
James Smarta0f9b482006-04-15 11:52:56 -04001794 IOCB_t *irsp;
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001795
1796 cmdiocb = (struct lpfc_iocbq *) arg;
1797 rspiocb = cmdiocb->context_un.rsp_iocb;
James Smarta0f9b482006-04-15 11:52:56 -04001798
1799 irsp = &rspiocb->iocb;
1800 if (irsp->ulpStatus && (ndlp->nlp_flag & NLP_NODEV_REMOVE)) {
James Smart2e0fef82007-06-17 19:56:36 -05001801 lpfc_drop_node(vport, ndlp);
James Smarta0f9b482006-04-15 11:52:56 -04001802 return NLP_STE_FREED_NODE;
1803 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001804 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001805}
1806
1807static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001808lpfc_cmpl_reglogin_npr_node(struct lpfc_vport *vport,
1809 struct lpfc_nodelist *ndlp,
1810 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001811{
James Smart2e0fef82007-06-17 19:56:36 -05001812 LPFC_MBOXQ_t *pmb = (LPFC_MBOXQ_t *) arg;
1813 MAILBOX_t *mb = &pmb->mb;
dea31012005-04-17 16:05:31 -05001814
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001815 if (!mb->mbxStatus)
1816 ndlp->nlp_rpi = mb->un.varWords[0];
James Smarta0f9b482006-04-15 11:52:56 -04001817 else {
1818 if (ndlp->nlp_flag & NLP_NODEV_REMOVE) {
James Smart2e0fef82007-06-17 19:56:36 -05001819 lpfc_drop_node(vport, ndlp);
James Smarta0f9b482006-04-15 11:52:56 -04001820 return NLP_STE_FREED_NODE;
1821 }
1822 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001823 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001824}
1825
1826static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001827lpfc_device_rm_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1828 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001829{
James Smart2e0fef82007-06-17 19:56:36 -05001830 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1831
James Smarta0f9b482006-04-15 11:52:56 -04001832 if (ndlp->nlp_flag & NLP_NPR_2B_DISC) {
James Smart2e0fef82007-06-17 19:56:36 -05001833 spin_lock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04001834 ndlp->nlp_flag |= NLP_NODEV_REMOVE;
James Smart2e0fef82007-06-17 19:56:36 -05001835 spin_unlock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04001836 return ndlp->nlp_state;
1837 }
James Smart2e0fef82007-06-17 19:56:36 -05001838 lpfc_drop_node(vport, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001839 return NLP_STE_FREED_NODE;
dea31012005-04-17 16:05:31 -05001840}
1841
1842static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001843lpfc_device_recov_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1844 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001845{
James Smart2e0fef82007-06-17 19:56:36 -05001846 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1847
James Smart92d7f7b2007-06-17 19:56:38 -05001848 /* Don't do anything that will mess up processing of the
1849 * previous RSCN.
1850 */
1851 if (vport->fc_flag & FC_RSCN_DEFERRED)
1852 return ndlp->nlp_state;
1853
James Smart2e0fef82007-06-17 19:56:36 -05001854 spin_lock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04001855 ndlp->nlp_flag &= ~(NLP_NODEV_REMOVE | NLP_NPR_2B_DISC);
James Smart2e0fef82007-06-17 19:56:36 -05001856 spin_unlock_irq(shost->host_lock);
James Smartfdcebe22006-03-07 15:04:01 -05001857 if (ndlp->nlp_flag & NLP_DELAY_TMO) {
James Smart2e0fef82007-06-17 19:56:36 -05001858 lpfc_cancel_retry_delay_tmo(vport, ndlp);
James Smartfdcebe22006-03-07 15:04:01 -05001859 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001860 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001861}
1862
1863
1864/* This next section defines the NPort Discovery State Machine */
1865
1866/* There are 4 different double linked lists nodelist entries can reside on.
1867 * The plogi list and adisc list are used when Link Up discovery or RSCN
1868 * processing is needed. Each list holds the nodes that we will send PLOGI
1869 * or ADISC on. These lists will keep track of what nodes will be effected
1870 * by an RSCN, or a Link Up (Typically, all nodes are effected on Link Up).
1871 * The unmapped_list will contain all nodes that we have successfully logged
1872 * into at the Fibre Channel level. The mapped_list will contain all nodes
1873 * that are mapped FCP targets.
1874 */
1875/*
1876 * The bind list is a list of undiscovered (potentially non-existent) nodes
1877 * that we have saved binding information on. This information is used when
1878 * nodes transition from the unmapped to the mapped list.
1879 */
1880/* For UNUSED_NODE state, the node has just been allocated .
1881 * For PLOGI_ISSUE and REG_LOGIN_ISSUE, the node is on
1882 * the PLOGI list. For REG_LOGIN_COMPL, the node is taken off the PLOGI list
1883 * and put on the unmapped list. For ADISC processing, the node is taken off
1884 * the ADISC list and placed on either the mapped or unmapped list (depending
1885 * on its previous state). Once on the unmapped list, a PRLI is issued and the
1886 * state changed to PRLI_ISSUE. When the PRLI completion occurs, the state is
1887 * changed to UNMAPPED_NODE. If the completion indicates a mapped
1888 * node, the node is taken off the unmapped list. The binding list is checked
1889 * for a valid binding, or a binding is automatically assigned. If binding
1890 * assignment is unsuccessful, the node is left on the unmapped list. If
1891 * binding assignment is successful, the associated binding list entry (if
1892 * any) is removed, and the node is placed on the mapped list.
1893 */
1894/*
1895 * For a Link Down, all nodes on the ADISC, PLOGI, unmapped or mapped
James Smartc01f3202006-08-18 17:47:08 -04001896 * lists will receive a DEVICE_RECOVERY event. If the linkdown or devloss timers
dea31012005-04-17 16:05:31 -05001897 * expire, all effected nodes will receive a DEVICE_RM event.
1898 */
1899/*
1900 * For a Link Up or RSCN, all nodes will move from the mapped / unmapped lists
1901 * to either the ADISC or PLOGI list. After a Nameserver query or ALPA loopmap
1902 * check, additional nodes may be added or removed (via DEVICE_RM) to / from
1903 * the PLOGI or ADISC lists. Once the PLOGI and ADISC lists are populated,
1904 * we will first process the ADISC list. 32 entries are processed initially and
1905 * ADISC is initited for each one. Completions / Events for each node are
1906 * funnelled thru the state machine. As each node finishes ADISC processing, it
1907 * starts ADISC for any nodes waiting for ADISC processing. If no nodes are
1908 * waiting, and the ADISC list count is identically 0, then we are done. For
1909 * Link Up discovery, since all nodes on the PLOGI list are UNREG_LOGIN'ed, we
1910 * can issue a CLEAR_LA and reenable Link Events. Next we will process the PLOGI
1911 * list. 32 entries are processed initially and PLOGI is initited for each one.
1912 * Completions / Events for each node are funnelled thru the state machine. As
1913 * each node finishes PLOGI processing, it starts PLOGI for any nodes waiting
1914 * for PLOGI processing. If no nodes are waiting, and the PLOGI list count is
1915 * indentically 0, then we are done. We have now completed discovery / RSCN
1916 * handling. Upon completion, ALL nodes should be on either the mapped or
1917 * unmapped lists.
1918 */
1919
1920static uint32_t (*lpfc_disc_action[NLP_STE_MAX_STATE * NLP_EVT_MAX_EVENT])
James Smart2e0fef82007-06-17 19:56:36 -05001921 (struct lpfc_vport *, struct lpfc_nodelist *, void *, uint32_t) = {
dea31012005-04-17 16:05:31 -05001922 /* Action routine Event Current State */
1923 lpfc_rcv_plogi_unused_node, /* RCV_PLOGI UNUSED_NODE */
1924 lpfc_rcv_els_unused_node, /* RCV_PRLI */
1925 lpfc_rcv_logo_unused_node, /* RCV_LOGO */
1926 lpfc_rcv_els_unused_node, /* RCV_ADISC */
1927 lpfc_rcv_els_unused_node, /* RCV_PDISC */
1928 lpfc_rcv_els_unused_node, /* RCV_PRLO */
1929 lpfc_disc_illegal, /* CMPL_PLOGI */
1930 lpfc_disc_illegal, /* CMPL_PRLI */
1931 lpfc_cmpl_logo_unused_node, /* CMPL_LOGO */
1932 lpfc_disc_illegal, /* CMPL_ADISC */
1933 lpfc_disc_illegal, /* CMPL_REG_LOGIN */
1934 lpfc_device_rm_unused_node, /* DEVICE_RM */
1935 lpfc_disc_illegal, /* DEVICE_RECOVERY */
1936
1937 lpfc_rcv_plogi_plogi_issue, /* RCV_PLOGI PLOGI_ISSUE */
James Smart92d7f7b2007-06-17 19:56:38 -05001938 lpfc_rcv_prli_plogi_issue, /* RCV_PRLI */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001939 lpfc_rcv_logo_plogi_issue, /* RCV_LOGO */
dea31012005-04-17 16:05:31 -05001940 lpfc_rcv_els_plogi_issue, /* RCV_ADISC */
1941 lpfc_rcv_els_plogi_issue, /* RCV_PDISC */
1942 lpfc_rcv_els_plogi_issue, /* RCV_PRLO */
1943 lpfc_cmpl_plogi_plogi_issue, /* CMPL_PLOGI */
1944 lpfc_disc_illegal, /* CMPL_PRLI */
1945 lpfc_disc_illegal, /* CMPL_LOGO */
1946 lpfc_disc_illegal, /* CMPL_ADISC */
1947 lpfc_disc_illegal, /* CMPL_REG_LOGIN */
1948 lpfc_device_rm_plogi_issue, /* DEVICE_RM */
1949 lpfc_device_recov_plogi_issue, /* DEVICE_RECOVERY */
1950
1951 lpfc_rcv_plogi_adisc_issue, /* RCV_PLOGI ADISC_ISSUE */
1952 lpfc_rcv_prli_adisc_issue, /* RCV_PRLI */
1953 lpfc_rcv_logo_adisc_issue, /* RCV_LOGO */
1954 lpfc_rcv_padisc_adisc_issue, /* RCV_ADISC */
1955 lpfc_rcv_padisc_adisc_issue, /* RCV_PDISC */
1956 lpfc_rcv_prlo_adisc_issue, /* RCV_PRLO */
1957 lpfc_disc_illegal, /* CMPL_PLOGI */
1958 lpfc_disc_illegal, /* CMPL_PRLI */
1959 lpfc_disc_illegal, /* CMPL_LOGO */
1960 lpfc_cmpl_adisc_adisc_issue, /* CMPL_ADISC */
1961 lpfc_disc_illegal, /* CMPL_REG_LOGIN */
1962 lpfc_device_rm_adisc_issue, /* DEVICE_RM */
1963 lpfc_device_recov_adisc_issue, /* DEVICE_RECOVERY */
1964
1965 lpfc_rcv_plogi_reglogin_issue, /* RCV_PLOGI REG_LOGIN_ISSUE */
1966 lpfc_rcv_prli_reglogin_issue, /* RCV_PLOGI */
1967 lpfc_rcv_logo_reglogin_issue, /* RCV_LOGO */
1968 lpfc_rcv_padisc_reglogin_issue, /* RCV_ADISC */
1969 lpfc_rcv_padisc_reglogin_issue, /* RCV_PDISC */
1970 lpfc_rcv_prlo_reglogin_issue, /* RCV_PRLO */
1971 lpfc_disc_illegal, /* CMPL_PLOGI */
1972 lpfc_disc_illegal, /* CMPL_PRLI */
1973 lpfc_disc_illegal, /* CMPL_LOGO */
1974 lpfc_disc_illegal, /* CMPL_ADISC */
1975 lpfc_cmpl_reglogin_reglogin_issue,/* CMPL_REG_LOGIN */
1976 lpfc_device_rm_reglogin_issue, /* DEVICE_RM */
1977 lpfc_device_recov_reglogin_issue,/* DEVICE_RECOVERY */
1978
1979 lpfc_rcv_plogi_prli_issue, /* RCV_PLOGI PRLI_ISSUE */
1980 lpfc_rcv_prli_prli_issue, /* RCV_PRLI */
1981 lpfc_rcv_logo_prli_issue, /* RCV_LOGO */
1982 lpfc_rcv_padisc_prli_issue, /* RCV_ADISC */
1983 lpfc_rcv_padisc_prli_issue, /* RCV_PDISC */
1984 lpfc_rcv_prlo_prli_issue, /* RCV_PRLO */
1985 lpfc_disc_illegal, /* CMPL_PLOGI */
1986 lpfc_cmpl_prli_prli_issue, /* CMPL_PRLI */
1987 lpfc_disc_illegal, /* CMPL_LOGO */
1988 lpfc_disc_illegal, /* CMPL_ADISC */
1989 lpfc_disc_illegal, /* CMPL_REG_LOGIN */
1990 lpfc_device_rm_prli_issue, /* DEVICE_RM */
1991 lpfc_device_recov_prli_issue, /* DEVICE_RECOVERY */
1992
1993 lpfc_rcv_plogi_unmap_node, /* RCV_PLOGI UNMAPPED_NODE */
1994 lpfc_rcv_prli_unmap_node, /* RCV_PRLI */
1995 lpfc_rcv_logo_unmap_node, /* RCV_LOGO */
1996 lpfc_rcv_padisc_unmap_node, /* RCV_ADISC */
1997 lpfc_rcv_padisc_unmap_node, /* RCV_PDISC */
1998 lpfc_rcv_prlo_unmap_node, /* RCV_PRLO */
1999 lpfc_disc_illegal, /* CMPL_PLOGI */
2000 lpfc_disc_illegal, /* CMPL_PRLI */
2001 lpfc_disc_illegal, /* CMPL_LOGO */
2002 lpfc_disc_illegal, /* CMPL_ADISC */
2003 lpfc_disc_illegal, /* CMPL_REG_LOGIN */
2004 lpfc_disc_illegal, /* DEVICE_RM */
2005 lpfc_device_recov_unmap_node, /* DEVICE_RECOVERY */
2006
2007 lpfc_rcv_plogi_mapped_node, /* RCV_PLOGI MAPPED_NODE */
2008 lpfc_rcv_prli_mapped_node, /* RCV_PRLI */
2009 lpfc_rcv_logo_mapped_node, /* RCV_LOGO */
2010 lpfc_rcv_padisc_mapped_node, /* RCV_ADISC */
2011 lpfc_rcv_padisc_mapped_node, /* RCV_PDISC */
2012 lpfc_rcv_prlo_mapped_node, /* RCV_PRLO */
2013 lpfc_disc_illegal, /* CMPL_PLOGI */
2014 lpfc_disc_illegal, /* CMPL_PRLI */
2015 lpfc_disc_illegal, /* CMPL_LOGO */
2016 lpfc_disc_illegal, /* CMPL_ADISC */
2017 lpfc_disc_illegal, /* CMPL_REG_LOGIN */
2018 lpfc_disc_illegal, /* DEVICE_RM */
2019 lpfc_device_recov_mapped_node, /* DEVICE_RECOVERY */
2020
2021 lpfc_rcv_plogi_npr_node, /* RCV_PLOGI NPR_NODE */
2022 lpfc_rcv_prli_npr_node, /* RCV_PRLI */
2023 lpfc_rcv_logo_npr_node, /* RCV_LOGO */
2024 lpfc_rcv_padisc_npr_node, /* RCV_ADISC */
2025 lpfc_rcv_padisc_npr_node, /* RCV_PDISC */
2026 lpfc_rcv_prlo_npr_node, /* RCV_PRLO */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002027 lpfc_cmpl_plogi_npr_node, /* CMPL_PLOGI */
2028 lpfc_cmpl_prli_npr_node, /* CMPL_PRLI */
dea31012005-04-17 16:05:31 -05002029 lpfc_cmpl_logo_npr_node, /* CMPL_LOGO */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002030 lpfc_cmpl_adisc_npr_node, /* CMPL_ADISC */
dea31012005-04-17 16:05:31 -05002031 lpfc_cmpl_reglogin_npr_node, /* CMPL_REG_LOGIN */
2032 lpfc_device_rm_npr_node, /* DEVICE_RM */
2033 lpfc_device_recov_npr_node, /* DEVICE_RECOVERY */
2034};
2035
2036int
James Smart2e0fef82007-06-17 19:56:36 -05002037lpfc_disc_state_machine(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2038 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05002039{
2040 uint32_t cur_state, rc;
James Smart2e0fef82007-06-17 19:56:36 -05002041 uint32_t(*func) (struct lpfc_vport *, struct lpfc_nodelist *, void *,
dea31012005-04-17 16:05:31 -05002042 uint32_t);
2043
James Smart329f9bc2007-04-25 09:53:01 -04002044 lpfc_nlp_get(ndlp);
dea31012005-04-17 16:05:31 -05002045 cur_state = ndlp->nlp_state;
2046
2047 /* DSM in event <evt> on NPort <nlp_DID> in state <cur_state> */
James Smarte8b62012007-08-02 11:10:09 -04002048 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
2049 "0211 DSM in event x%x on NPort x%x in "
2050 "state %d Data: x%x\n",
2051 evt, ndlp->nlp_DID, cur_state, ndlp->nlp_flag);
dea31012005-04-17 16:05:31 -05002052
James Smart858c9f62007-06-17 19:56:39 -05002053 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_DSM,
2054 "DSM in: evt:%d ste:%d did:x%x",
2055 evt, cur_state, ndlp->nlp_DID);
2056
dea31012005-04-17 16:05:31 -05002057 func = lpfc_disc_action[(cur_state * NLP_EVT_MAX_EVENT) + evt];
James Smart2e0fef82007-06-17 19:56:36 -05002058 rc = (func) (vport, ndlp, arg, evt);
dea31012005-04-17 16:05:31 -05002059
2060 /* DSM out state <rc> on NPort <nlp_DID> */
James Smarte8b62012007-08-02 11:10:09 -04002061 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
2062 "0212 DSM out state %d on NPort x%x Data: x%x\n",
2063 rc, ndlp->nlp_DID, ndlp->nlp_flag);
dea31012005-04-17 16:05:31 -05002064
James Smart858c9f62007-06-17 19:56:39 -05002065 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_DSM,
2066 "DSM out: ste:%d did:x%x flg:x%x",
2067 rc, ndlp->nlp_DID, ndlp->nlp_flag);
2068
James Smart329f9bc2007-04-25 09:53:01 -04002069 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05002070
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002071 return rc;
dea31012005-04-17 16:05:31 -05002072}