blob: d513813f66975dfe59e09f8da95558f2e9661338 [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 Smarte47c9092008-02-08 18:49:26 -05004 * Copyright (C) 2004-2008 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;
James Smarte47c9092008-02-08 18:49:26 -0500252 struct lpfc_work_evt *evtp;
dea31012005-04-17 16:05:31 -0500253 uint32_t *lp;
254 IOCB_t *icmd;
255 struct serv_parm *sp;
256 LPFC_MBOXQ_t *mbox;
257 struct ls_rjt stat;
258 int rc;
259
260 memset(&stat, 0, sizeof (struct ls_rjt));
James Smart2e0fef82007-06-17 19:56:36 -0500261 if (vport->port_state <= LPFC_FLOGI) {
dea31012005-04-17 16:05:31 -0500262 /* Before responding to PLOGI, check for pt2pt mode.
263 * If we are pt2pt, with an outstanding FLOGI, abort
264 * the FLOGI and resend it first.
265 */
James Smart2e0fef82007-06-17 19:56:36 -0500266 if (vport->fc_flag & FC_PT2PT) {
James Smart92d7f7b2007-06-17 19:56:38 -0500267 lpfc_els_abort_flogi(phba);
James Smart2e0fef82007-06-17 19:56:36 -0500268 if (!(vport->fc_flag & FC_PT2PT_PLOGI)) {
dea31012005-04-17 16:05:31 -0500269 /* If the other side is supposed to initiate
270 * the PLOGI anyway, just ACC it now and
271 * move on with discovery.
272 */
273 phba->fc_edtov = FF_DEF_EDTOV;
274 phba->fc_ratov = FF_DEF_RATOV;
275 /* Start discovery - this should just do
276 CLEAR_LA */
James Smart2e0fef82007-06-17 19:56:36 -0500277 lpfc_disc_start(vport);
James Smarted957682007-06-17 19:56:37 -0500278 } else
James Smart2e0fef82007-06-17 19:56:36 -0500279 lpfc_initial_flogi(vport);
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -0500280 } else {
dea31012005-04-17 16:05:31 -0500281 stat.un.b.lsRjtRsnCode = LSRJT_LOGICAL_BSY;
282 stat.un.b.lsRjtRsnCodeExp = LSEXP_NOTHING_MORE;
James Smart2e0fef82007-06-17 19:56:36 -0500283 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb,
James Smart858c9f62007-06-17 19:56:39 -0500284 ndlp, NULL);
dea31012005-04-17 16:05:31 -0500285 return 0;
286 }
287 }
288 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
289 lp = (uint32_t *) pcmd->virt;
290 sp = (struct serv_parm *) ((uint8_t *) lp + sizeof (uint32_t));
James Smarta8adb832007-10-27 13:37:53 -0400291 if (wwn_to_u64(sp->portName.u.wwn) == 0) {
292 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
293 "0140 PLOGI Reject: invalid nname\n");
294 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
295 stat.un.b.lsRjtRsnCodeExp = LSEXP_INVALID_PNAME;
296 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp,
297 NULL);
298 return 0;
299 }
300 if (wwn_to_u64(sp->nodeName.u.wwn) == 0) {
301 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
302 "0141 PLOGI Reject: invalid pname\n");
303 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
304 stat.un.b.lsRjtRsnCodeExp = LSEXP_INVALID_NNAME;
305 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp,
306 NULL);
307 return 0;
308 }
James Smart2e0fef82007-06-17 19:56:36 -0500309 if ((lpfc_check_sparm(vport, ndlp, sp, CLASS3) == 0)) {
dea31012005-04-17 16:05:31 -0500310 /* Reject this request because invalid parameters */
311 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
312 stat.un.b.lsRjtRsnCodeExp = LSEXP_SPARM_OPTIONS;
James Smart858c9f62007-06-17 19:56:39 -0500313 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp,
314 NULL);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500315 return 0;
dea31012005-04-17 16:05:31 -0500316 }
317 icmd = &cmdiocb->iocb;
318
319 /* PLOGI chkparm OK */
James Smarte8b62012007-08-02 11:10:09 -0400320 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
321 "0114 PLOGI chkparm OK Data: x%x x%x x%x x%x\n",
322 ndlp->nlp_DID, ndlp->nlp_state, ndlp->nlp_flag,
323 ndlp->nlp_rpi);
dea31012005-04-17 16:05:31 -0500324
James Smart3de2a652007-08-02 11:09:59 -0400325 if (vport->cfg_fcp_class == 2 && sp->cls2.classValid)
dea31012005-04-17 16:05:31 -0500326 ndlp->nlp_fcp_info |= CLASS2;
James Smarted957682007-06-17 19:56:37 -0500327 else
dea31012005-04-17 16:05:31 -0500328 ndlp->nlp_fcp_info |= CLASS3;
James Smart2e0fef82007-06-17 19:56:36 -0500329
dea31012005-04-17 16:05:31 -0500330 ndlp->nlp_class_sup = 0;
331 if (sp->cls1.classValid)
332 ndlp->nlp_class_sup |= FC_COS_CLASS1;
333 if (sp->cls2.classValid)
334 ndlp->nlp_class_sup |= FC_COS_CLASS2;
335 if (sp->cls3.classValid)
336 ndlp->nlp_class_sup |= FC_COS_CLASS3;
337 if (sp->cls4.classValid)
338 ndlp->nlp_class_sup |= FC_COS_CLASS4;
339 ndlp->nlp_maxframe =
340 ((sp->cmn.bbRcvSizeMsb & 0x0F) << 8) | sp->cmn.bbRcvSizeLsb;
341
342 /* no need to reg_login if we are already in one of these states */
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -0500343 switch (ndlp->nlp_state) {
dea31012005-04-17 16:05:31 -0500344 case NLP_STE_NPR_NODE:
345 if (!(ndlp->nlp_flag & NLP_NPR_ADISC))
346 break;
347 case NLP_STE_REG_LOGIN_ISSUE:
348 case NLP_STE_PRLI_ISSUE:
349 case NLP_STE_UNMAPPED_NODE:
350 case NLP_STE_MAPPED_NODE:
James Smart51ef4c22007-08-02 11:10:31 -0400351 lpfc_els_rsp_acc(vport, ELS_CMD_PLOGI, cmdiocb, ndlp, NULL);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500352 return 1;
dea31012005-04-17 16:05:31 -0500353 }
354
James Smart92d7f7b2007-06-17 19:56:38 -0500355 if ((vport->fc_flag & FC_PT2PT) &&
356 !(vport->fc_flag & FC_PT2PT_PLOGI)) {
dea31012005-04-17 16:05:31 -0500357 /* rcv'ed PLOGI decides what our NPortId will be */
James Smart2e0fef82007-06-17 19:56:36 -0500358 vport->fc_myDID = icmd->un.rcvels.parmRo;
dea31012005-04-17 16:05:31 -0500359 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
360 if (mbox == NULL)
361 goto out;
362 lpfc_config_link(phba, mbox);
363 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
James Smarted957682007-06-17 19:56:37 -0500364 mbox->vport = vport;
James Smart0b727fe2007-10-27 13:37:25 -0400365 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
dea31012005-04-17 16:05:31 -0500366 if (rc == MBX_NOT_FINISHED) {
James Smart92d7f7b2007-06-17 19:56:38 -0500367 mempool_free(mbox, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -0500368 goto out;
369 }
370
James Smart2e0fef82007-06-17 19:56:36 -0500371 lpfc_can_disctmo(vport);
dea31012005-04-17 16:05:31 -0500372 }
373 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
James Smart2e0fef82007-06-17 19:56:36 -0500374 if (!mbox)
dea31012005-04-17 16:05:31 -0500375 goto out;
376
James Smart92d7f7b2007-06-17 19:56:38 -0500377 rc = lpfc_reg_login(phba, vport->vpi, icmd->un.rcvels.remoteID,
378 (uint8_t *) sp, mbox, 0);
James Smart2e0fef82007-06-17 19:56:36 -0500379 if (rc) {
380 mempool_free(mbox, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -0500381 goto out;
382 }
383
384 /* ACC PLOGI rsp command needs to execute first,
385 * queue this mbox command to be processed later.
386 */
387 mbox->mbox_cmpl = lpfc_mbx_cmpl_reg_login;
James Smart329f9bc2007-04-25 09:53:01 -0400388 /*
389 * mbox->context2 = lpfc_nlp_get(ndlp) deferred until mailbox
390 * command issued in lpfc_cmpl_els_acc().
391 */
James Smart2e0fef82007-06-17 19:56:36 -0500392 mbox->vport = vport;
393 spin_lock_irq(shost->host_lock);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -0500394 ndlp->nlp_flag |= (NLP_ACC_REGLOGIN | NLP_RCV_PLOGI);
James Smart2e0fef82007-06-17 19:56:36 -0500395 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500396
James Smart33ccf8d2006-08-17 11:57:58 -0400397 /*
398 * If there is an outstanding PLOGI issued, abort it before
399 * sending ACC rsp for received PLOGI. If pending plogi
400 * is not canceled here, the plogi will be rejected by
401 * remote port and will be retried. On a configuration with
402 * single discovery thread, this will cause a huge delay in
403 * discovery. Also this will cause multiple state machines
404 * running in parallel for this node.
405 */
406 if (ndlp->nlp_state == NLP_STE_PLOGI_ISSUE) {
407 /* software abort outstanding PLOGI */
James Smart07951072007-04-25 09:51:38 -0400408 lpfc_els_abort(phba, ndlp);
James Smart33ccf8d2006-08-17 11:57:58 -0400409 }
410
James Smart858c9f62007-06-17 19:56:39 -0500411 if ((vport->port_type == LPFC_NPIV_PORT &&
James Smart3de2a652007-08-02 11:09:59 -0400412 vport->cfg_restrict_login)) {
James Smart858c9f62007-06-17 19:56:39 -0500413
414 /* In order to preserve RPIs, we want to cleanup
415 * the default RPI the firmware created to rcv
416 * this ELS request. The only way to do this is
417 * to register, then unregister the RPI.
418 */
419 spin_lock_irq(shost->host_lock);
420 ndlp->nlp_flag |= NLP_RM_DFLT_RPI;
421 spin_unlock_irq(shost->host_lock);
422 stat.un.b.lsRjtRsnCode = LSRJT_INVALID_CMD;
423 stat.un.b.lsRjtRsnCodeExp = LSEXP_NOTHING_MORE;
424 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb,
425 ndlp, mbox);
426 return 1;
427 }
James Smart87af33f2007-10-27 13:37:43 -0400428
429 /* If the remote NPort logs into us, before we can initiate
430 * discovery to them, cleanup the NPort from discovery accordingly.
431 */
432 if (ndlp->nlp_state == NLP_STE_NPR_NODE) {
433 spin_lock_irq(shost->host_lock);
434 ndlp->nlp_flag &= ~NLP_DELAY_TMO;
435 spin_unlock_irq(shost->host_lock);
436 del_timer_sync(&ndlp->nlp_delayfunc);
437 ndlp->nlp_last_elscmd = 0;
438
James Smarte47c9092008-02-08 18:49:26 -0500439 if (!list_empty(&ndlp->els_retry_evt.evt_listp)) {
James Smart87af33f2007-10-27 13:37:43 -0400440 list_del_init(&ndlp->els_retry_evt.evt_listp);
James Smarte47c9092008-02-08 18:49:26 -0500441 /* Decrement ndlp reference count held for the
442 * delayed retry
443 */
444 evtp = &ndlp->els_retry_evt;
445 lpfc_nlp_put((struct lpfc_nodelist *)evtp->evt_arg1);
446 }
James Smart87af33f2007-10-27 13:37:43 -0400447
448 if (ndlp->nlp_flag & NLP_NPR_2B_DISC) {
449 spin_lock_irq(shost->host_lock);
450 ndlp->nlp_flag &= ~NLP_NPR_2B_DISC;
451 spin_unlock_irq(shost->host_lock);
James Smart0ff10d42008-01-11 01:52:36 -0500452
453 if ((ndlp->nlp_flag & NLP_ADISC_SND) &&
454 (vport->num_disc_nodes)) {
455 /* Check to see if there are more
456 * ADISCs to be sent
457 */
458 lpfc_more_adisc(vport);
459
460 if ((vport->num_disc_nodes == 0) &&
461 (vport->fc_npr_cnt))
462 lpfc_els_disc_plogi(vport);
463
464 if (vport->num_disc_nodes == 0) {
465 spin_lock_irq(shost->host_lock);
466 vport->fc_flag &= ~FC_NDISC_ACTIVE;
467 spin_unlock_irq(shost->host_lock);
468 lpfc_can_disctmo(vport);
469 lpfc_end_rscn(vport);
470 }
471 }
472 else if (vport->num_disc_nodes) {
James Smart87af33f2007-10-27 13:37:43 -0400473 /* Check to see if there are more
474 * PLOGIs to be sent
475 */
476 lpfc_more_plogi(vport);
477
478 if (vport->num_disc_nodes == 0) {
479 spin_lock_irq(shost->host_lock);
480 vport->fc_flag &= ~FC_NDISC_ACTIVE;
481 spin_unlock_irq(shost->host_lock);
482 lpfc_can_disctmo(vport);
483 lpfc_end_rscn(vport);
484 }
485 }
486 }
487 }
488
James Smart51ef4c22007-08-02 11:10:31 -0400489 lpfc_els_rsp_acc(vport, ELS_CMD_PLOGI, cmdiocb, ndlp, mbox);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500490 return 1;
dea31012005-04-17 16:05:31 -0500491
492out:
493 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
494 stat.un.b.lsRjtRsnCodeExp = LSEXP_OUT_OF_RESOURCE;
James Smart858c9f62007-06-17 19:56:39 -0500495 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500496 return 0;
dea31012005-04-17 16:05:31 -0500497}
498
499static int
James Smart2e0fef82007-06-17 19:56:36 -0500500lpfc_rcv_padisc(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
dea31012005-04-17 16:05:31 -0500501 struct lpfc_iocbq *cmdiocb)
502{
James Smart2e0fef82007-06-17 19:56:36 -0500503 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -0500504 struct lpfc_dmabuf *pcmd;
James Smart2e0fef82007-06-17 19:56:36 -0500505 struct serv_parm *sp;
506 struct lpfc_name *pnn, *ppn;
dea31012005-04-17 16:05:31 -0500507 struct ls_rjt stat;
508 ADISC *ap;
509 IOCB_t *icmd;
510 uint32_t *lp;
511 uint32_t cmd;
512
513 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
514 lp = (uint32_t *) pcmd->virt;
515
516 cmd = *lp++;
517 if (cmd == ELS_CMD_ADISC) {
518 ap = (ADISC *) lp;
519 pnn = (struct lpfc_name *) & ap->nodeName;
520 ppn = (struct lpfc_name *) & ap->portName;
521 } else {
522 sp = (struct serv_parm *) lp;
523 pnn = (struct lpfc_name *) & sp->nodeName;
524 ppn = (struct lpfc_name *) & sp->portName;
525 }
526
527 icmd = &cmdiocb->iocb;
James Smart2e0fef82007-06-17 19:56:36 -0500528 if (icmd->ulpStatus == 0 && lpfc_check_adisc(vport, ndlp, pnn, ppn)) {
dea31012005-04-17 16:05:31 -0500529 if (cmd == ELS_CMD_ADISC) {
James Smart2e0fef82007-06-17 19:56:36 -0500530 lpfc_els_rsp_adisc_acc(vport, cmdiocb, ndlp);
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -0500531 } else {
James Smart2e0fef82007-06-17 19:56:36 -0500532 lpfc_els_rsp_acc(vport, ELS_CMD_PLOGI, cmdiocb, ndlp,
James Smart51ef4c22007-08-02 11:10:31 -0400533 NULL);
dea31012005-04-17 16:05:31 -0500534 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500535 return 1;
dea31012005-04-17 16:05:31 -0500536 }
537 /* Reject this request because invalid parameters */
538 stat.un.b.lsRjtRsvd0 = 0;
539 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
540 stat.un.b.lsRjtRsnCodeExp = LSEXP_SPARM_OPTIONS;
541 stat.un.b.vendorUnique = 0;
James Smart858c9f62007-06-17 19:56:39 -0500542 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
dea31012005-04-17 16:05:31 -0500543
dea31012005-04-17 16:05:31 -0500544 /* 1 sec timeout */
545 mod_timer(&ndlp->nlp_delayfunc, jiffies + HZ);
546
James Smart2e0fef82007-06-17 19:56:36 -0500547 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500548 ndlp->nlp_flag |= NLP_DELAY_TMO;
James Smart2e0fef82007-06-17 19:56:36 -0500549 spin_unlock_irq(shost->host_lock);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -0500550 ndlp->nlp_last_elscmd = ELS_CMD_PLOGI;
551 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -0500552 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500553 return 0;
dea31012005-04-17 16:05:31 -0500554}
555
556static int
James Smart2e0fef82007-06-17 19:56:36 -0500557lpfc_rcv_logo(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
558 struct lpfc_iocbq *cmdiocb, uint32_t els_cmd)
dea31012005-04-17 16:05:31 -0500559{
James Smart2e0fef82007-06-17 19:56:36 -0500560 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
561
562 /* Put ndlp in NPR state with 1 sec timeout for plogi, ACC logo */
dea31012005-04-17 16:05:31 -0500563 /* Only call LOGO ACC for first LOGO, this avoids sending unnecessary
564 * PLOGIs during LOGO storms from a device.
565 */
James Smart2e0fef82007-06-17 19:56:36 -0500566 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500567 ndlp->nlp_flag |= NLP_LOGO_ACC;
James Smart2e0fef82007-06-17 19:56:36 -0500568 spin_unlock_irq(shost->host_lock);
James Smart82d9a2a2006-04-15 11:53:05 -0400569 if (els_cmd == ELS_CMD_PRLO)
James Smart51ef4c22007-08-02 11:10:31 -0400570 lpfc_els_rsp_acc(vport, ELS_CMD_PRLO, cmdiocb, ndlp, NULL);
James Smart82d9a2a2006-04-15 11:53:05 -0400571 else
James Smart51ef4c22007-08-02 11:10:31 -0400572 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
dea31012005-04-17 16:05:31 -0500573
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500574 if (!(ndlp->nlp_type & NLP_FABRIC) ||
James Smart92d7f7b2007-06-17 19:56:38 -0500575 (ndlp->nlp_state == NLP_STE_ADISC_ISSUE)) {
dea31012005-04-17 16:05:31 -0500576 /* Only try to re-login if this is NOT a Fabric Node */
dea31012005-04-17 16:05:31 -0500577 mod_timer(&ndlp->nlp_delayfunc, jiffies + HZ * 1);
James Smart2e0fef82007-06-17 19:56:36 -0500578 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500579 ndlp->nlp_flag |= NLP_DELAY_TMO;
James Smart2e0fef82007-06-17 19:56:36 -0500580 spin_unlock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500581
Jamie Wellnitz5024ab12006-02-28 19:25:28 -0500582 ndlp->nlp_last_elscmd = ELS_CMD_PLOGI;
dea31012005-04-17 16:05:31 -0500583 }
James Smart87af33f2007-10-27 13:37:43 -0400584 ndlp->nlp_prev_state = ndlp->nlp_state;
585 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
dea31012005-04-17 16:05:31 -0500586
James Smart2e0fef82007-06-17 19:56:36 -0500587 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500588 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
James Smart2e0fef82007-06-17 19:56:36 -0500589 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500590 /* The driver has to wait until the ACC completes before it continues
591 * processing the LOGO. The action will resume in
592 * lpfc_cmpl_els_logo_acc routine. Since part of processing includes an
593 * unreg_login, the driver waits so the ACC does not get aborted.
594 */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500595 return 0;
dea31012005-04-17 16:05:31 -0500596}
597
598static void
James Smart2e0fef82007-06-17 19:56:36 -0500599lpfc_rcv_prli(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
600 struct lpfc_iocbq *cmdiocb)
dea31012005-04-17 16:05:31 -0500601{
602 struct lpfc_dmabuf *pcmd;
603 uint32_t *lp;
604 PRLI *npr;
605 struct fc_rport *rport = ndlp->rport;
606 u32 roles;
607
608 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
609 lp = (uint32_t *) pcmd->virt;
610 npr = (PRLI *) ((uint8_t *) lp + sizeof (uint32_t));
611
612 ndlp->nlp_type &= ~(NLP_FCP_TARGET | NLP_FCP_INITIATOR);
613 ndlp->nlp_fcp_info &= ~NLP_FCP_2_DEVICE;
James Smart92d7f7b2007-06-17 19:56:38 -0500614 if (npr->prliType == PRLI_FCP_TYPE) {
dea31012005-04-17 16:05:31 -0500615 if (npr->initiatorFunc)
616 ndlp->nlp_type |= NLP_FCP_INITIATOR;
617 if (npr->targetFunc)
618 ndlp->nlp_type |= NLP_FCP_TARGET;
619 if (npr->Retry)
620 ndlp->nlp_fcp_info |= NLP_FCP_2_DEVICE;
621 }
622 if (rport) {
623 /* We need to update the rport role values */
624 roles = FC_RPORT_ROLE_UNKNOWN;
625 if (ndlp->nlp_type & NLP_FCP_INITIATOR)
626 roles |= FC_RPORT_ROLE_FCP_INITIATOR;
627 if (ndlp->nlp_type & NLP_FCP_TARGET)
628 roles |= FC_RPORT_ROLE_FCP_TARGET;
James Smart858c9f62007-06-17 19:56:39 -0500629
630 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_RPORT,
631 "rport rolechg: role:x%x did:x%x flg:x%x",
632 roles, ndlp->nlp_DID, ndlp->nlp_flag);
633
dea31012005-04-17 16:05:31 -0500634 fc_remote_port_rolechg(rport, roles);
635 }
636}
637
638static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500639lpfc_disc_set_adisc(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -0500640{
James Smart2e0fef82007-06-17 19:56:36 -0500641 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart2e0fef82007-06-17 19:56:36 -0500642
James Smart51ef4c22007-08-02 11:10:31 -0400643 if (!ndlp->nlp_rpi) {
644 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
645 return 0;
646 }
647
James Smart1b32f6a2008-02-08 18:49:39 -0500648 if (!(vport->fc_flag & FC_PT2PT)) {
649 /* Check config parameter use-adisc or FCP-2 */
650 if ((vport->cfg_use_adisc && (vport->fc_flag & FC_RSCN_MODE)) ||
651 ndlp->nlp_fcp_info & NLP_FCP_2_DEVICE) {
652 spin_lock_irq(shost->host_lock);
653 ndlp->nlp_flag |= NLP_NPR_ADISC;
654 spin_unlock_irq(shost->host_lock);
655 return 1;
656 }
James Smart92d7f7b2007-06-17 19:56:38 -0500657 }
658 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
659 lpfc_unreg_rpi(vport, ndlp);
660 return 0;
dea31012005-04-17 16:05:31 -0500661}
662
663static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500664lpfc_disc_illegal(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
665 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -0500666{
James Smarte8b62012007-08-02 11:10:09 -0400667 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
James Smarte47c9092008-02-08 18:49:26 -0500668 "0271 Illegal State Transition: node x%x "
James Smarte8b62012007-08-02 11:10:09 -0400669 "event x%x, state x%x Data: x%x x%x\n",
670 ndlp->nlp_DID, evt, ndlp->nlp_state, ndlp->nlp_rpi,
671 ndlp->nlp_flag);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500672 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -0500673}
674
James Smart87af33f2007-10-27 13:37:43 -0400675static uint32_t
676lpfc_cmpl_plogi_illegal(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
677 void *arg, uint32_t evt)
678{
679 /* This transition is only legal if we previously
680 * rcv'ed a PLOGI. Since we don't want 2 discovery threads
681 * working on the same NPortID, do nothing for this thread
682 * to stop it.
683 */
684 if (!(ndlp->nlp_flag & NLP_RCV_PLOGI)) {
685 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
James Smarte47c9092008-02-08 18:49:26 -0500686 "0272 Illegal State Transition: node x%x "
James Smart87af33f2007-10-27 13:37:43 -0400687 "event x%x, state x%x Data: x%x x%x\n",
688 ndlp->nlp_DID, evt, ndlp->nlp_state, ndlp->nlp_rpi,
689 ndlp->nlp_flag);
690 }
691 return ndlp->nlp_state;
692}
693
dea31012005-04-17 16:05:31 -0500694/* Start of Discovery State Machine routines */
695
696static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500697lpfc_rcv_plogi_unused_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
698 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -0500699{
700 struct lpfc_iocbq *cmdiocb;
701
702 cmdiocb = (struct lpfc_iocbq *) arg;
703
James Smart2e0fef82007-06-17 19:56:36 -0500704 if (lpfc_rcv_plogi(vport, ndlp, cmdiocb)) {
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500705 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -0500706 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500707 return NLP_STE_FREED_NODE;
dea31012005-04-17 16:05:31 -0500708}
709
710static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500711lpfc_rcv_els_unused_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
712 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -0500713{
James Smart2e0fef82007-06-17 19:56:36 -0500714 lpfc_issue_els_logo(vport, ndlp, 0);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500715 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -0500716}
717
718static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500719lpfc_rcv_logo_unused_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
720 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -0500721{
James Smart2e0fef82007-06-17 19:56:36 -0500722 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
723 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -0500724
James Smart2e0fef82007-06-17 19:56:36 -0500725 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500726 ndlp->nlp_flag |= NLP_LOGO_ACC;
James Smart2e0fef82007-06-17 19:56:36 -0500727 spin_unlock_irq(shost->host_lock);
James Smart51ef4c22007-08-02 11:10:31 -0400728 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
dea31012005-04-17 16:05:31 -0500729
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500730 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -0500731}
732
733static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500734lpfc_cmpl_logo_unused_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
dea31012005-04-17 16:05:31 -0500735 void *arg, uint32_t evt)
736{
James Smart2e0fef82007-06-17 19:56:36 -0500737 return NLP_STE_FREED_NODE;
738}
739
740static uint32_t
741lpfc_device_rm_unused_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
742 void *arg, uint32_t evt)
743{
James Smart2e0fef82007-06-17 19:56:36 -0500744 return NLP_STE_FREED_NODE;
745}
746
747static uint32_t
748lpfc_rcv_plogi_plogi_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
749 void *arg, uint32_t evt)
750{
751 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -0500752 struct lpfc_iocbq *cmdiocb = arg;
James Smart2e0fef82007-06-17 19:56:36 -0500753 struct lpfc_dmabuf *pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
754 uint32_t *lp = (uint32_t *) pcmd->virt;
755 struct serv_parm *sp = (struct serv_parm *) (lp + 1);
dea31012005-04-17 16:05:31 -0500756 struct ls_rjt stat;
757 int port_cmp;
758
dea31012005-04-17 16:05:31 -0500759 memset(&stat, 0, sizeof (struct ls_rjt));
760
761 /* For a PLOGI, we only accept if our portname is less
762 * than the remote portname.
763 */
764 phba->fc_stat.elsLogiCol++;
James Smart2e0fef82007-06-17 19:56:36 -0500765 port_cmp = memcmp(&vport->fc_portname, &sp->portName,
James Smart92d7f7b2007-06-17 19:56:38 -0500766 sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -0500767
768 if (port_cmp >= 0) {
769 /* Reject this request because the remote node will accept
770 ours */
771 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
772 stat.un.b.lsRjtRsnCodeExp = LSEXP_CMD_IN_PROGRESS;
James Smart858c9f62007-06-17 19:56:39 -0500773 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp,
774 NULL);
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -0500775 } else {
James Smart2e0fef82007-06-17 19:56:36 -0500776 lpfc_rcv_plogi(vport, ndlp, cmdiocb);
777 } /* If our portname was less */
dea31012005-04-17 16:05:31 -0500778
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500779 return ndlp->nlp_state;
780}
781
782static uint32_t
James Smart92d7f7b2007-06-17 19:56:38 -0500783lpfc_rcv_prli_plogi_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
784 void *arg, uint32_t evt)
785{
786 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
787 struct ls_rjt stat;
788
789 memset(&stat, 0, sizeof (struct ls_rjt));
790 stat.un.b.lsRjtRsnCode = LSRJT_LOGICAL_BSY;
791 stat.un.b.lsRjtRsnCodeExp = LSEXP_NOTHING_MORE;
James Smart858c9f62007-06-17 19:56:39 -0500792 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
James Smart92d7f7b2007-06-17 19:56:38 -0500793 return ndlp->nlp_state;
794}
795
796static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500797lpfc_rcv_logo_plogi_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
798 void *arg, uint32_t evt)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500799{
James Smart2e0fef82007-06-17 19:56:36 -0500800 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500801
James Smart92d7f7b2007-06-17 19:56:38 -0500802 /* software abort outstanding PLOGI */
James Smart2e0fef82007-06-17 19:56:36 -0500803 lpfc_els_abort(vport->phba, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500804
James Smart2e0fef82007-06-17 19:56:36 -0500805 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_LOGO);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500806 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -0500807}
808
809static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500810lpfc_rcv_els_plogi_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
811 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -0500812{
James Smart2e0fef82007-06-17 19:56:36 -0500813 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
814 struct lpfc_hba *phba = vport->phba;
815 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -0500816
817 /* software abort outstanding PLOGI */
James Smart07951072007-04-25 09:51:38 -0400818 lpfc_els_abort(phba, ndlp);
dea31012005-04-17 16:05:31 -0500819
820 if (evt == NLP_EVT_RCV_LOGO) {
James Smart51ef4c22007-08-02 11:10:31 -0400821 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -0500822 } else {
James Smart2e0fef82007-06-17 19:56:36 -0500823 lpfc_issue_els_logo(vport, ndlp, 0);
dea31012005-04-17 16:05:31 -0500824 }
825
James Smart2e0fef82007-06-17 19:56:36 -0500826 /* Put ndlp in npr state set plogi timer for 1 sec */
Jamie Wellnitz5024ab12006-02-28 19:25:28 -0500827 mod_timer(&ndlp->nlp_delayfunc, jiffies + HZ * 1);
James Smart2e0fef82007-06-17 19:56:36 -0500828 spin_lock_irq(shost->host_lock);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -0500829 ndlp->nlp_flag |= NLP_DELAY_TMO;
James Smart2e0fef82007-06-17 19:56:36 -0500830 spin_unlock_irq(shost->host_lock);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -0500831 ndlp->nlp_last_elscmd = ELS_CMD_PLOGI;
832 ndlp->nlp_prev_state = NLP_STE_PLOGI_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -0500833 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
dea31012005-04-17 16:05:31 -0500834
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500835 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -0500836}
837
838static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500839lpfc_cmpl_plogi_plogi_issue(struct lpfc_vport *vport,
840 struct lpfc_nodelist *ndlp,
841 void *arg,
dea31012005-04-17 16:05:31 -0500842 uint32_t evt)
843{
James Smart2e0fef82007-06-17 19:56:36 -0500844 struct lpfc_hba *phba = vport->phba;
James Smart0ff10d42008-01-11 01:52:36 -0500845 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart2e0fef82007-06-17 19:56:36 -0500846 struct lpfc_iocbq *cmdiocb, *rspiocb;
James Smart14691152006-12-02 13:34:28 -0500847 struct lpfc_dmabuf *pcmd, *prsp, *mp;
dea31012005-04-17 16:05:31 -0500848 uint32_t *lp;
849 IOCB_t *irsp;
850 struct serv_parm *sp;
851 LPFC_MBOXQ_t *mbox;
852
853 cmdiocb = (struct lpfc_iocbq *) arg;
854 rspiocb = cmdiocb->context_un.rsp_iocb;
855
856 if (ndlp->nlp_flag & NLP_ACC_REGLOGIN) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -0500857 /* Recovery from PLOGI collision logic */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500858 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -0500859 }
860
861 irsp = &rspiocb->iocb;
862
863 if (irsp->ulpStatus)
864 goto out;
865
866 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
867
James Smart2e0fef82007-06-17 19:56:36 -0500868 prsp = list_get_first(&pcmd->list, struct lpfc_dmabuf, list);
dea31012005-04-17 16:05:31 -0500869
James Smart2e0fef82007-06-17 19:56:36 -0500870 lp = (uint32_t *) prsp->virt;
dea31012005-04-17 16:05:31 -0500871 sp = (struct serv_parm *) ((uint8_t *) lp + sizeof (uint32_t));
James Smarta8adb832007-10-27 13:37:53 -0400872 if (wwn_to_u64(sp->portName.u.wwn) == 0 ||
873 wwn_to_u64(sp->nodeName.u.wwn) == 0) {
874 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
875 "0142 PLOGI RSP: Invalid WWN.\n");
876 goto out;
877 }
James Smart2e0fef82007-06-17 19:56:36 -0500878 if (!lpfc_check_sparm(vport, ndlp, sp, CLASS3))
dea31012005-04-17 16:05:31 -0500879 goto out;
dea31012005-04-17 16:05:31 -0500880 /* PLOGI chkparm OK */
James Smarte8b62012007-08-02 11:10:09 -0400881 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
882 "0121 PLOGI chkparm OK Data: x%x x%x x%x x%x\n",
883 ndlp->nlp_DID, ndlp->nlp_state,
884 ndlp->nlp_flag, ndlp->nlp_rpi);
James Smart3de2a652007-08-02 11:09:59 -0400885 if (vport->cfg_fcp_class == 2 && (sp->cls2.classValid))
dea31012005-04-17 16:05:31 -0500886 ndlp->nlp_fcp_info |= CLASS2;
James Smart2e0fef82007-06-17 19:56:36 -0500887 else
dea31012005-04-17 16:05:31 -0500888 ndlp->nlp_fcp_info |= CLASS3;
James Smart2e0fef82007-06-17 19:56:36 -0500889
dea31012005-04-17 16:05:31 -0500890 ndlp->nlp_class_sup = 0;
891 if (sp->cls1.classValid)
892 ndlp->nlp_class_sup |= FC_COS_CLASS1;
893 if (sp->cls2.classValid)
894 ndlp->nlp_class_sup |= FC_COS_CLASS2;
895 if (sp->cls3.classValid)
896 ndlp->nlp_class_sup |= FC_COS_CLASS3;
897 if (sp->cls4.classValid)
898 ndlp->nlp_class_sup |= FC_COS_CLASS4;
899 ndlp->nlp_maxframe =
James Smart2e0fef82007-06-17 19:56:36 -0500900 ((sp->cmn.bbRcvSizeMsb & 0x0F) << 8) | sp->cmn.bbRcvSizeLsb;
dea31012005-04-17 16:05:31 -0500901
James Smart2e0fef82007-06-17 19:56:36 -0500902 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
James Smart92d7f7b2007-06-17 19:56:38 -0500903 if (!mbox) {
James Smarte8b62012007-08-02 11:10:09 -0400904 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
905 "0133 PLOGI: no memory for reg_login "
James Smart92d7f7b2007-06-17 19:56:38 -0500906 "Data: x%x x%x x%x x%x\n",
James Smart92d7f7b2007-06-17 19:56:38 -0500907 ndlp->nlp_DID, ndlp->nlp_state,
908 ndlp->nlp_flag, ndlp->nlp_rpi);
dea31012005-04-17 16:05:31 -0500909 goto out;
James Smart92d7f7b2007-06-17 19:56:38 -0500910 }
dea31012005-04-17 16:05:31 -0500911
James Smart2e0fef82007-06-17 19:56:36 -0500912 lpfc_unreg_rpi(vport, ndlp);
913
James Smart92d7f7b2007-06-17 19:56:38 -0500914 if (lpfc_reg_login(phba, vport->vpi, irsp->un.elsreq64.remoteID,
915 (uint8_t *) sp, mbox, 0) == 0) {
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -0500916 switch (ndlp->nlp_DID) {
dea31012005-04-17 16:05:31 -0500917 case NameServer_DID:
James Smartde0c5b32007-04-25 09:52:27 -0400918 mbox->mbox_cmpl = lpfc_mbx_cmpl_ns_reg_login;
dea31012005-04-17 16:05:31 -0500919 break;
920 case FDMI_DID:
James Smartde0c5b32007-04-25 09:52:27 -0400921 mbox->mbox_cmpl = lpfc_mbx_cmpl_fdmi_reg_login;
dea31012005-04-17 16:05:31 -0500922 break;
923 default:
James Smartde0c5b32007-04-25 09:52:27 -0400924 mbox->mbox_cmpl = lpfc_mbx_cmpl_reg_login;
dea31012005-04-17 16:05:31 -0500925 }
James Smart329f9bc2007-04-25 09:53:01 -0400926 mbox->context2 = lpfc_nlp_get(ndlp);
James Smart2e0fef82007-06-17 19:56:36 -0500927 mbox->vport = vport;
James Smart0b727fe2007-10-27 13:37:25 -0400928 if (lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT)
dea31012005-04-17 16:05:31 -0500929 != MBX_NOT_FINISHED) {
James Smart2e0fef82007-06-17 19:56:36 -0500930 lpfc_nlp_set_state(vport, ndlp,
931 NLP_STE_REG_LOGIN_ISSUE);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500932 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -0500933 }
James Smartfa4066b2008-01-11 01:53:27 -0500934 /* decrement node reference count to the failed mbox
935 * command
936 */
James Smart329f9bc2007-04-25 09:53:01 -0400937 lpfc_nlp_put(ndlp);
James Smart92d7f7b2007-06-17 19:56:38 -0500938 mp = (struct lpfc_dmabuf *) mbox->context1;
James Smart14691152006-12-02 13:34:28 -0500939 lpfc_mbuf_free(phba, mp->virt, mp->phys);
940 kfree(mp);
dea31012005-04-17 16:05:31 -0500941 mempool_free(mbox, phba->mbox_mem_pool);
James Smart92d7f7b2007-06-17 19:56:38 -0500942
James Smarte8b62012007-08-02 11:10:09 -0400943 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
944 "0134 PLOGI: cannot issue reg_login "
945 "Data: x%x x%x x%x x%x\n",
946 ndlp->nlp_DID, ndlp->nlp_state,
947 ndlp->nlp_flag, ndlp->nlp_rpi);
dea31012005-04-17 16:05:31 -0500948 } else {
949 mempool_free(mbox, phba->mbox_mem_pool);
James Smart92d7f7b2007-06-17 19:56:38 -0500950
James Smarte8b62012007-08-02 11:10:09 -0400951 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
952 "0135 PLOGI: cannot format reg_login "
953 "Data: x%x x%x x%x x%x\n",
954 ndlp->nlp_DID, ndlp->nlp_state,
955 ndlp->nlp_flag, ndlp->nlp_rpi);
dea31012005-04-17 16:05:31 -0500956 }
957
958
James Smart92d7f7b2007-06-17 19:56:38 -0500959out:
960 if (ndlp->nlp_DID == NameServer_DID) {
961 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
James Smarte8b62012007-08-02 11:10:09 -0400962 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
963 "0261 Cannot Register NameServer login\n");
James Smart92d7f7b2007-06-17 19:56:38 -0500964 }
965
James Smart0ff10d42008-01-11 01:52:36 -0500966 spin_lock_irq(shost->host_lock);
James Smarta8adb832007-10-27 13:37:53 -0400967 ndlp->nlp_flag |= NLP_DEFER_RM;
James Smart0ff10d42008-01-11 01:52:36 -0500968 spin_unlock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500969 return NLP_STE_FREED_NODE;
dea31012005-04-17 16:05:31 -0500970}
971
972static uint32_t
James Smart0ff10d42008-01-11 01:52:36 -0500973lpfc_cmpl_logo_plogi_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
974 void *arg, uint32_t evt)
975{
976 return ndlp->nlp_state;
977}
978
979static uint32_t
980lpfc_cmpl_reglogin_plogi_issue(struct lpfc_vport *vport,
981 struct lpfc_nodelist *ndlp, void *arg, uint32_t evt)
982{
983 return ndlp->nlp_state;
984}
985
986static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500987lpfc_device_rm_plogi_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
988 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -0500989{
James Smart2e0fef82007-06-17 19:56:36 -0500990 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -0500991
James Smart2e0fef82007-06-17 19:56:36 -0500992 if (ndlp->nlp_flag & NLP_NPR_2B_DISC) {
993 spin_lock_irq(shost->host_lock);
994 ndlp->nlp_flag |= NLP_NODEV_REMOVE;
995 spin_unlock_irq(shost->host_lock);
996 return ndlp->nlp_state;
997 } else {
998 /* software abort outstanding PLOGI */
999 lpfc_els_abort(vport->phba, ndlp);
1000
1001 lpfc_drop_node(vport, ndlp);
James Smarta0f9b482006-04-15 11:52:56 -04001002 return NLP_STE_FREED_NODE;
1003 }
dea31012005-04-17 16:05:31 -05001004}
1005
1006static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001007lpfc_device_recov_plogi_issue(struct lpfc_vport *vport,
1008 struct lpfc_nodelist *ndlp,
1009 void *arg,
1010 uint32_t evt)
dea31012005-04-17 16:05:31 -05001011{
James Smart2e0fef82007-06-17 19:56:36 -05001012 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1013 struct lpfc_hba *phba = vport->phba;
1014
James Smart92d7f7b2007-06-17 19:56:38 -05001015 /* Don't do anything that will mess up processing of the
1016 * previous RSCN.
1017 */
1018 if (vport->fc_flag & FC_RSCN_DEFERRED)
1019 return ndlp->nlp_state;
1020
dea31012005-04-17 16:05:31 -05001021 /* software abort outstanding PLOGI */
James Smart07951072007-04-25 09:51:38 -04001022 lpfc_els_abort(phba, ndlp);
dea31012005-04-17 16:05:31 -05001023
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001024 ndlp->nlp_prev_state = NLP_STE_PLOGI_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001025 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
James Smart92d7f7b2007-06-17 19:56:38 -05001026 spin_lock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04001027 ndlp->nlp_flag &= ~(NLP_NODEV_REMOVE | NLP_NPR_2B_DISC);
James Smart2e0fef82007-06-17 19:56:36 -05001028 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001029
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001030 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001031}
1032
1033static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001034lpfc_rcv_plogi_adisc_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1035 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001036{
James Smart2e0fef82007-06-17 19:56:36 -05001037 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05001038 struct lpfc_iocbq *cmdiocb;
1039
1040 /* software abort outstanding ADISC */
James Smart07951072007-04-25 09:51:38 -04001041 lpfc_els_abort(phba, ndlp);
dea31012005-04-17 16:05:31 -05001042
1043 cmdiocb = (struct lpfc_iocbq *) arg;
1044
James Smart2e0fef82007-06-17 19:56:36 -05001045 if (lpfc_rcv_plogi(vport, ndlp, cmdiocb))
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001046 return ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05001047
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001048 ndlp->nlp_prev_state = NLP_STE_ADISC_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001049 lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0);
1050 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
dea31012005-04-17 16:05:31 -05001051
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001052 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001053}
1054
1055static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001056lpfc_rcv_prli_adisc_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1057 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001058{
James Smart2e0fef82007-06-17 19:56:36 -05001059 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001060
James Smart2e0fef82007-06-17 19:56:36 -05001061 lpfc_els_rsp_prli_acc(vport, cmdiocb, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001062 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001063}
1064
1065static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001066lpfc_rcv_logo_adisc_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1067 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001068{
James Smart2e0fef82007-06-17 19:56:36 -05001069 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05001070 struct lpfc_iocbq *cmdiocb;
1071
1072 cmdiocb = (struct lpfc_iocbq *) arg;
1073
1074 /* software abort outstanding ADISC */
James Smart07951072007-04-25 09:51:38 -04001075 lpfc_els_abort(phba, ndlp);
dea31012005-04-17 16:05:31 -05001076
James Smart2e0fef82007-06-17 19:56:36 -05001077 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_LOGO);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001078 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001079}
1080
1081static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001082lpfc_rcv_padisc_adisc_issue(struct lpfc_vport *vport,
1083 struct lpfc_nodelist *ndlp,
1084 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001085{
1086 struct lpfc_iocbq *cmdiocb;
1087
1088 cmdiocb = (struct lpfc_iocbq *) arg;
1089
James Smart2e0fef82007-06-17 19:56:36 -05001090 lpfc_rcv_padisc(vport, ndlp, cmdiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001091 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001092}
1093
1094static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001095lpfc_rcv_prlo_adisc_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1096 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001097{
1098 struct lpfc_iocbq *cmdiocb;
1099
1100 cmdiocb = (struct lpfc_iocbq *) arg;
1101
1102 /* Treat like rcv logo */
James Smart2e0fef82007-06-17 19:56:36 -05001103 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_PRLO);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001104 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001105}
1106
1107static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001108lpfc_cmpl_adisc_adisc_issue(struct lpfc_vport *vport,
1109 struct lpfc_nodelist *ndlp,
1110 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001111{
James Smart2e0fef82007-06-17 19:56:36 -05001112 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1113 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05001114 struct lpfc_iocbq *cmdiocb, *rspiocb;
1115 IOCB_t *irsp;
1116 ADISC *ap;
1117
1118 cmdiocb = (struct lpfc_iocbq *) arg;
1119 rspiocb = cmdiocb->context_un.rsp_iocb;
1120
1121 ap = (ADISC *)lpfc_check_elscmpl_iocb(phba, cmdiocb, rspiocb);
1122 irsp = &rspiocb->iocb;
1123
1124 if ((irsp->ulpStatus) ||
James Smart92d7f7b2007-06-17 19:56:38 -05001125 (!lpfc_check_adisc(vport, ndlp, &ap->nodeName, &ap->portName))) {
dea31012005-04-17 16:05:31 -05001126 /* 1 sec timeout */
1127 mod_timer(&ndlp->nlp_delayfunc, jiffies + HZ);
James Smart2e0fef82007-06-17 19:56:36 -05001128 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001129 ndlp->nlp_flag |= NLP_DELAY_TMO;
James Smart2e0fef82007-06-17 19:56:36 -05001130 spin_unlock_irq(shost->host_lock);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001131 ndlp->nlp_last_elscmd = ELS_CMD_PLOGI;
dea31012005-04-17 16:05:31 -05001132
James Smart2e0fef82007-06-17 19:56:36 -05001133 memset(&ndlp->nlp_nodename, 0, sizeof(struct lpfc_name));
1134 memset(&ndlp->nlp_portname, 0, sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -05001135
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001136 ndlp->nlp_prev_state = NLP_STE_ADISC_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001137 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
1138 lpfc_unreg_rpi(vport, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001139 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001140 }
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001141
James.Smart@Emulex.Com25013222005-06-25 10:34:33 -04001142 if (ndlp->nlp_type & NLP_FCP_TARGET) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001143 ndlp->nlp_prev_state = NLP_STE_ADISC_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001144 lpfc_nlp_set_state(vport, ndlp, NLP_STE_MAPPED_NODE);
James.Smart@Emulex.Com25013222005-06-25 10:34:33 -04001145 } else {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001146 ndlp->nlp_prev_state = NLP_STE_ADISC_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001147 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
James.Smart@Emulex.Com25013222005-06-25 10:34:33 -04001148 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001149 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001150}
1151
1152static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001153lpfc_device_rm_adisc_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1154 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001155{
James Smart2e0fef82007-06-17 19:56:36 -05001156 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05001157
James Smart2e0fef82007-06-17 19:56:36 -05001158 if (ndlp->nlp_flag & NLP_NPR_2B_DISC) {
1159 spin_lock_irq(shost->host_lock);
1160 ndlp->nlp_flag |= NLP_NODEV_REMOVE;
1161 spin_unlock_irq(shost->host_lock);
1162 return ndlp->nlp_state;
1163 } else {
1164 /* software abort outstanding ADISC */
1165 lpfc_els_abort(vport->phba, ndlp);
1166
1167 lpfc_drop_node(vport, ndlp);
James Smarta0f9b482006-04-15 11:52:56 -04001168 return NLP_STE_FREED_NODE;
1169 }
dea31012005-04-17 16:05:31 -05001170}
1171
1172static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001173lpfc_device_recov_adisc_issue(struct lpfc_vport *vport,
1174 struct lpfc_nodelist *ndlp,
1175 void *arg,
1176 uint32_t evt)
dea31012005-04-17 16:05:31 -05001177{
James Smart2e0fef82007-06-17 19:56:36 -05001178 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1179 struct lpfc_hba *phba = vport->phba;
1180
James Smart92d7f7b2007-06-17 19:56:38 -05001181 /* Don't do anything that will mess up processing of the
1182 * previous RSCN.
1183 */
1184 if (vport->fc_flag & FC_RSCN_DEFERRED)
1185 return ndlp->nlp_state;
1186
dea31012005-04-17 16:05:31 -05001187 /* software abort outstanding ADISC */
James Smart07951072007-04-25 09:51:38 -04001188 lpfc_els_abort(phba, ndlp);
dea31012005-04-17 16:05:31 -05001189
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001190 ndlp->nlp_prev_state = NLP_STE_ADISC_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001191 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
1192 spin_lock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04001193 ndlp->nlp_flag &= ~(NLP_NODEV_REMOVE | NLP_NPR_2B_DISC);
James Smart2e0fef82007-06-17 19:56:36 -05001194 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05001195 lpfc_disc_set_adisc(vport, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001196 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001197}
1198
1199static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001200lpfc_rcv_plogi_reglogin_issue(struct lpfc_vport *vport,
1201 struct lpfc_nodelist *ndlp,
1202 void *arg,
dea31012005-04-17 16:05:31 -05001203 uint32_t evt)
1204{
James Smart2e0fef82007-06-17 19:56:36 -05001205 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001206
James Smart2e0fef82007-06-17 19:56:36 -05001207 lpfc_rcv_plogi(vport, ndlp, cmdiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001208 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001209}
1210
1211static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001212lpfc_rcv_prli_reglogin_issue(struct lpfc_vport *vport,
1213 struct lpfc_nodelist *ndlp,
1214 void *arg,
dea31012005-04-17 16:05:31 -05001215 uint32_t evt)
1216{
James Smart2e0fef82007-06-17 19:56:36 -05001217 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001218
James Smart2e0fef82007-06-17 19:56:36 -05001219 lpfc_els_rsp_prli_acc(vport, cmdiocb, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001220 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001221}
1222
1223static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001224lpfc_rcv_logo_reglogin_issue(struct lpfc_vport *vport,
1225 struct lpfc_nodelist *ndlp,
1226 void *arg,
dea31012005-04-17 16:05:31 -05001227 uint32_t evt)
1228{
James Smart2e0fef82007-06-17 19:56:36 -05001229 struct lpfc_hba *phba = vport->phba;
1230 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
James Smart7054a602007-04-25 09:52:34 -04001231 LPFC_MBOXQ_t *mb;
1232 LPFC_MBOXQ_t *nextmb;
1233 struct lpfc_dmabuf *mp;
dea31012005-04-17 16:05:31 -05001234
1235 cmdiocb = (struct lpfc_iocbq *) arg;
1236
James Smart7054a602007-04-25 09:52:34 -04001237 /* cleanup any ndlp on mbox q waiting for reglogin cmpl */
1238 if ((mb = phba->sli.mbox_active)) {
1239 if ((mb->mb.mbxCommand == MBX_REG_LOGIN64) &&
1240 (ndlp == (struct lpfc_nodelist *) mb->context2)) {
James Smart92d7f7b2007-06-17 19:56:38 -05001241 lpfc_nlp_put(ndlp);
James Smart7054a602007-04-25 09:52:34 -04001242 mb->context2 = NULL;
1243 mb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
1244 }
1245 }
1246
James Smart2e0fef82007-06-17 19:56:36 -05001247 spin_lock_irq(&phba->hbalock);
James Smart7054a602007-04-25 09:52:34 -04001248 list_for_each_entry_safe(mb, nextmb, &phba->sli.mboxq, list) {
1249 if ((mb->mb.mbxCommand == MBX_REG_LOGIN64) &&
1250 (ndlp == (struct lpfc_nodelist *) mb->context2)) {
1251 mp = (struct lpfc_dmabuf *) (mb->context1);
1252 if (mp) {
James Smart98c9ea52007-10-27 13:37:33 -04001253 __lpfc_mbuf_free(phba, mp->virt, mp->phys);
James Smart7054a602007-04-25 09:52:34 -04001254 kfree(mp);
1255 }
James Smart92d7f7b2007-06-17 19:56:38 -05001256 lpfc_nlp_put(ndlp);
James Smart7054a602007-04-25 09:52:34 -04001257 list_del(&mb->list);
1258 mempool_free(mb, phba->mbox_mem_pool);
1259 }
1260 }
James Smart2e0fef82007-06-17 19:56:36 -05001261 spin_unlock_irq(&phba->hbalock);
James Smart7054a602007-04-25 09:52:34 -04001262
James Smart2e0fef82007-06-17 19:56:36 -05001263 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_LOGO);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001264 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001265}
1266
1267static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001268lpfc_rcv_padisc_reglogin_issue(struct lpfc_vport *vport,
1269 struct lpfc_nodelist *ndlp,
1270 void *arg,
dea31012005-04-17 16:05:31 -05001271 uint32_t evt)
1272{
James Smart2e0fef82007-06-17 19:56:36 -05001273 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001274
James Smart2e0fef82007-06-17 19:56:36 -05001275 lpfc_rcv_padisc(vport, ndlp, cmdiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001276 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001277}
1278
1279static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001280lpfc_rcv_prlo_reglogin_issue(struct lpfc_vport *vport,
1281 struct lpfc_nodelist *ndlp,
1282 void *arg,
dea31012005-04-17 16:05:31 -05001283 uint32_t evt)
1284{
1285 struct lpfc_iocbq *cmdiocb;
1286
1287 cmdiocb = (struct lpfc_iocbq *) arg;
James Smart51ef4c22007-08-02 11:10:31 -04001288 lpfc_els_rsp_acc(vport, ELS_CMD_PRLO, cmdiocb, ndlp, NULL);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001289 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001290}
1291
1292static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001293lpfc_cmpl_reglogin_reglogin_issue(struct lpfc_vport *vport,
1294 struct lpfc_nodelist *ndlp,
1295 void *arg,
1296 uint32_t evt)
dea31012005-04-17 16:05:31 -05001297{
James Smart2e0fef82007-06-17 19:56:36 -05001298 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart2e0fef82007-06-17 19:56:36 -05001299 LPFC_MBOXQ_t *pmb = (LPFC_MBOXQ_t *) arg;
1300 MAILBOX_t *mb = &pmb->mb;
1301 uint32_t did = mb->un.varWords[1];
dea31012005-04-17 16:05:31 -05001302
dea31012005-04-17 16:05:31 -05001303 if (mb->mbxStatus) {
1304 /* RegLogin failed */
James Smarte8b62012007-08-02 11:10:09 -04001305 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
1306 "0246 RegLogin failed Data: x%x x%x x%x\n",
James Smart2e0fef82007-06-17 19:56:36 -05001307 did, mb->mbxStatus, vport->port_state);
James Smartd0e56da2006-07-06 15:49:42 -04001308 /*
1309 * If RegLogin failed due to lack of HBA resources do not
1310 * retry discovery.
1311 */
1312 if (mb->mbxStatus == MBXERR_RPI_FULL) {
James Smart87af33f2007-10-27 13:37:43 -04001313 ndlp->nlp_prev_state = NLP_STE_REG_LOGIN_ISSUE;
1314 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
James Smartd0e56da2006-07-06 15:49:42 -04001315 return ndlp->nlp_state;
1316 }
1317
James Smart2e0fef82007-06-17 19:56:36 -05001318 /* Put ndlp in npr state set plogi timer for 1 sec */
dea31012005-04-17 16:05:31 -05001319 mod_timer(&ndlp->nlp_delayfunc, jiffies + HZ * 1);
James Smart2e0fef82007-06-17 19:56:36 -05001320 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001321 ndlp->nlp_flag |= NLP_DELAY_TMO;
James Smart2e0fef82007-06-17 19:56:36 -05001322 spin_unlock_irq(shost->host_lock);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001323 ndlp->nlp_last_elscmd = ELS_CMD_PLOGI;
dea31012005-04-17 16:05:31 -05001324
James Smart2e0fef82007-06-17 19:56:36 -05001325 lpfc_issue_els_logo(vport, ndlp, 0);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001326 ndlp->nlp_prev_state = NLP_STE_REG_LOGIN_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001327 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001328 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001329 }
1330
dea31012005-04-17 16:05:31 -05001331 ndlp->nlp_rpi = mb->un.varWords[0];
dea31012005-04-17 16:05:31 -05001332
1333 /* Only if we are not a fabric nport do we issue PRLI */
1334 if (!(ndlp->nlp_type & NLP_FABRIC)) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001335 ndlp->nlp_prev_state = NLP_STE_REG_LOGIN_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001336 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PRLI_ISSUE);
1337 lpfc_issue_els_prli(vport, ndlp, 0);
dea31012005-04-17 16:05:31 -05001338 } else {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001339 ndlp->nlp_prev_state = NLP_STE_REG_LOGIN_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001340 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
dea31012005-04-17 16:05:31 -05001341 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001342 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001343}
1344
1345static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001346lpfc_device_rm_reglogin_issue(struct lpfc_vport *vport,
1347 struct lpfc_nodelist *ndlp,
1348 void *arg,
dea31012005-04-17 16:05:31 -05001349 uint32_t evt)
1350{
James Smart2e0fef82007-06-17 19:56:36 -05001351 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1352
1353 if (ndlp->nlp_flag & NLP_NPR_2B_DISC) {
1354 spin_lock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04001355 ndlp->nlp_flag |= NLP_NODEV_REMOVE;
James Smart2e0fef82007-06-17 19:56:36 -05001356 spin_unlock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04001357 return ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05001358 } else {
1359 lpfc_drop_node(vport, ndlp);
James Smarta0f9b482006-04-15 11:52:56 -04001360 return NLP_STE_FREED_NODE;
1361 }
dea31012005-04-17 16:05:31 -05001362}
1363
1364static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001365lpfc_device_recov_reglogin_issue(struct lpfc_vport *vport,
1366 struct lpfc_nodelist *ndlp,
1367 void *arg,
1368 uint32_t evt)
dea31012005-04-17 16:05:31 -05001369{
James Smart2e0fef82007-06-17 19:56:36 -05001370 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1371
James Smart92d7f7b2007-06-17 19:56:38 -05001372 /* Don't do anything that will mess up processing of the
1373 * previous RSCN.
1374 */
1375 if (vport->fc_flag & FC_RSCN_DEFERRED)
1376 return ndlp->nlp_state;
1377
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001378 ndlp->nlp_prev_state = NLP_STE_REG_LOGIN_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001379 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
1380 spin_lock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04001381 ndlp->nlp_flag &= ~(NLP_NODEV_REMOVE | NLP_NPR_2B_DISC);
James Smart2e0fef82007-06-17 19:56:36 -05001382 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05001383 lpfc_disc_set_adisc(vport, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001384 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001385}
1386
1387static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001388lpfc_rcv_plogi_prli_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1389 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001390{
1391 struct lpfc_iocbq *cmdiocb;
1392
1393 cmdiocb = (struct lpfc_iocbq *) arg;
1394
James Smart2e0fef82007-06-17 19:56:36 -05001395 lpfc_rcv_plogi(vport, ndlp, cmdiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001396 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001397}
1398
1399static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001400lpfc_rcv_prli_prli_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1401 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001402{
James Smart2e0fef82007-06-17 19:56:36 -05001403 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001404
James Smart2e0fef82007-06-17 19:56:36 -05001405 lpfc_els_rsp_prli_acc(vport, cmdiocb, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001406 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001407}
1408
1409static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001410lpfc_rcv_logo_prli_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1411 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001412{
James Smart2e0fef82007-06-17 19:56:36 -05001413 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001414
1415 /* Software abort outstanding PRLI before sending acc */
James Smart2e0fef82007-06-17 19:56:36 -05001416 lpfc_els_abort(vport->phba, ndlp);
dea31012005-04-17 16:05:31 -05001417
James Smart2e0fef82007-06-17 19:56:36 -05001418 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_LOGO);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001419 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001420}
1421
1422static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001423lpfc_rcv_padisc_prli_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1424 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001425{
James Smart2e0fef82007-06-17 19:56:36 -05001426 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001427
James Smart2e0fef82007-06-17 19:56:36 -05001428 lpfc_rcv_padisc(vport, ndlp, cmdiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001429 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001430}
1431
1432/* This routine is envoked when we rcv a PRLO request from a nport
1433 * we are logged into. We should send back a PRLO rsp setting the
1434 * appropriate bits.
1435 * NEXT STATE = PRLI_ISSUE
1436 */
1437static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001438lpfc_rcv_prlo_prli_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1439 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001440{
James Smart2e0fef82007-06-17 19:56:36 -05001441 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001442
James Smart51ef4c22007-08-02 11:10:31 -04001443 lpfc_els_rsp_acc(vport, ELS_CMD_PRLO, cmdiocb, ndlp, NULL);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001444 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001445}
1446
1447static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001448lpfc_cmpl_prli_prli_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1449 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001450{
James Smart92d7f7b2007-06-17 19:56:38 -05001451 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05001452 struct lpfc_iocbq *cmdiocb, *rspiocb;
James Smart2e0fef82007-06-17 19:56:36 -05001453 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05001454 IOCB_t *irsp;
1455 PRLI *npr;
1456
1457 cmdiocb = (struct lpfc_iocbq *) arg;
1458 rspiocb = cmdiocb->context_un.rsp_iocb;
1459 npr = (PRLI *)lpfc_check_elscmpl_iocb(phba, cmdiocb, rspiocb);
1460
1461 irsp = &rspiocb->iocb;
1462 if (irsp->ulpStatus) {
James Smart858c9f62007-06-17 19:56:39 -05001463 if ((vport->port_type == LPFC_NPIV_PORT) &&
James Smart3de2a652007-08-02 11:09:59 -04001464 vport->cfg_restrict_login) {
James Smart858c9f62007-06-17 19:56:39 -05001465 goto out;
1466 }
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001467 ndlp->nlp_prev_state = NLP_STE_PRLI_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001468 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001469 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001470 }
1471
1472 /* Check out PRLI rsp */
1473 ndlp->nlp_type &= ~(NLP_FCP_TARGET | NLP_FCP_INITIATOR);
1474 ndlp->nlp_fcp_info &= ~NLP_FCP_2_DEVICE;
1475 if ((npr->acceptRspCode == PRLI_REQ_EXECUTED) &&
1476 (npr->prliType == PRLI_FCP_TYPE)) {
1477 if (npr->initiatorFunc)
1478 ndlp->nlp_type |= NLP_FCP_INITIATOR;
1479 if (npr->targetFunc)
1480 ndlp->nlp_type |= NLP_FCP_TARGET;
1481 if (npr->Retry)
1482 ndlp->nlp_fcp_info |= NLP_FCP_2_DEVICE;
1483 }
James Smart92d7f7b2007-06-17 19:56:38 -05001484 if (!(ndlp->nlp_type & NLP_FCP_TARGET) &&
1485 (vport->port_type == LPFC_NPIV_PORT) &&
James Smart3de2a652007-08-02 11:09:59 -04001486 vport->cfg_restrict_login) {
James Smart858c9f62007-06-17 19:56:39 -05001487out:
James Smart92d7f7b2007-06-17 19:56:38 -05001488 spin_lock_irq(shost->host_lock);
1489 ndlp->nlp_flag |= NLP_TARGET_REMOVE;
1490 spin_unlock_irq(shost->host_lock);
1491 lpfc_issue_els_logo(vport, ndlp, 0);
1492
1493 ndlp->nlp_prev_state = NLP_STE_PRLI_ISSUE;
James Smart87af33f2007-10-27 13:37:43 -04001494 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
James Smart92d7f7b2007-06-17 19:56:38 -05001495 return ndlp->nlp_state;
1496 }
dea31012005-04-17 16:05:31 -05001497
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001498 ndlp->nlp_prev_state = NLP_STE_PRLI_ISSUE;
James Smart92d7f7b2007-06-17 19:56:38 -05001499 if (ndlp->nlp_type & NLP_FCP_TARGET)
1500 lpfc_nlp_set_state(vport, ndlp, NLP_STE_MAPPED_NODE);
1501 else
1502 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001503 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001504}
1505
1506/*! lpfc_device_rm_prli_issue
James Smart92d7f7b2007-06-17 19:56:38 -05001507 *
1508 * \pre
1509 * \post
1510 * \param phba
1511 * \param ndlp
1512 * \param arg
1513 * \param evt
1514 * \return uint32_t
1515 *
1516 * \b Description:
1517 * This routine is envoked when we a request to remove a nport we are in the
1518 * process of PRLIing. We should software abort outstanding prli, unreg
1519 * login, send a logout. We will change node state to UNUSED_NODE, put it
1520 * on plogi list so it can be freed when LOGO completes.
1521 *
1522 */
1523
dea31012005-04-17 16:05:31 -05001524static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001525lpfc_device_rm_prli_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1526 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001527{
James Smart2e0fef82007-06-17 19:56:36 -05001528 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05001529
James Smart2e0fef82007-06-17 19:56:36 -05001530 if (ndlp->nlp_flag & NLP_NPR_2B_DISC) {
1531 spin_lock_irq(shost->host_lock);
1532 ndlp->nlp_flag |= NLP_NODEV_REMOVE;
1533 spin_unlock_irq(shost->host_lock);
1534 return ndlp->nlp_state;
1535 } else {
1536 /* software abort outstanding PLOGI */
1537 lpfc_els_abort(vport->phba, ndlp);
1538
1539 lpfc_drop_node(vport, ndlp);
James Smarta0f9b482006-04-15 11:52:56 -04001540 return NLP_STE_FREED_NODE;
1541 }
dea31012005-04-17 16:05:31 -05001542}
1543
1544
1545/*! lpfc_device_recov_prli_issue
James Smart92d7f7b2007-06-17 19:56:38 -05001546 *
1547 * \pre
1548 * \post
1549 * \param phba
1550 * \param ndlp
1551 * \param arg
1552 * \param evt
1553 * \return uint32_t
1554 *
1555 * \b Description:
1556 * The routine is envoked when the state of a device is unknown, like
1557 * during a link down. We should remove the nodelist entry from the
1558 * unmapped list, issue a UNREG_LOGIN, do a software abort of the
1559 * outstanding PRLI command, then free the node entry.
1560 */
dea31012005-04-17 16:05:31 -05001561static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001562lpfc_device_recov_prli_issue(struct lpfc_vport *vport,
1563 struct lpfc_nodelist *ndlp,
1564 void *arg,
1565 uint32_t evt)
dea31012005-04-17 16:05:31 -05001566{
James Smart2e0fef82007-06-17 19:56:36 -05001567 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1568 struct lpfc_hba *phba = vport->phba;
1569
James Smart92d7f7b2007-06-17 19:56:38 -05001570 /* Don't do anything that will mess up processing of the
1571 * previous RSCN.
1572 */
1573 if (vport->fc_flag & FC_RSCN_DEFERRED)
1574 return ndlp->nlp_state;
1575
dea31012005-04-17 16:05:31 -05001576 /* software abort outstanding PRLI */
James Smart07951072007-04-25 09:51:38 -04001577 lpfc_els_abort(phba, ndlp);
dea31012005-04-17 16:05:31 -05001578
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001579 ndlp->nlp_prev_state = NLP_STE_PRLI_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001580 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
1581 spin_lock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04001582 ndlp->nlp_flag &= ~(NLP_NODEV_REMOVE | NLP_NPR_2B_DISC);
James Smart2e0fef82007-06-17 19:56:36 -05001583 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05001584 lpfc_disc_set_adisc(vport, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001585 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001586}
1587
1588static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001589lpfc_rcv_plogi_unmap_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1590 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001591{
James Smart2e0fef82007-06-17 19:56:36 -05001592 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001593
James Smart2e0fef82007-06-17 19:56:36 -05001594 lpfc_rcv_plogi(vport, ndlp, cmdiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001595 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001596}
1597
1598static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001599lpfc_rcv_prli_unmap_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1600 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001601{
James Smart2e0fef82007-06-17 19:56:36 -05001602 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001603
James Smart2e0fef82007-06-17 19:56:36 -05001604 lpfc_rcv_prli(vport, ndlp, cmdiocb);
1605 lpfc_els_rsp_prli_acc(vport, cmdiocb, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001606 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001607}
1608
1609static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001610lpfc_rcv_logo_unmap_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1611 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001612{
James Smart2e0fef82007-06-17 19:56:36 -05001613 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001614
James Smart2e0fef82007-06-17 19:56:36 -05001615 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_LOGO);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001616 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001617}
1618
1619static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001620lpfc_rcv_padisc_unmap_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1621 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001622{
James Smart2e0fef82007-06-17 19:56:36 -05001623 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001624
James Smart2e0fef82007-06-17 19:56:36 -05001625 lpfc_rcv_padisc(vport, ndlp, cmdiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001626 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001627}
1628
1629static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001630lpfc_rcv_prlo_unmap_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1631 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001632{
James Smart2e0fef82007-06-17 19:56:36 -05001633 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001634
James Smart51ef4c22007-08-02 11:10:31 -04001635 lpfc_els_rsp_acc(vport, ELS_CMD_PRLO, cmdiocb, ndlp, NULL);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001636 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001637}
1638
1639static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001640lpfc_device_recov_unmap_node(struct lpfc_vport *vport,
1641 struct lpfc_nodelist *ndlp,
1642 void *arg,
1643 uint32_t evt)
dea31012005-04-17 16:05:31 -05001644{
James Smart2e0fef82007-06-17 19:56:36 -05001645 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1646
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001647 ndlp->nlp_prev_state = NLP_STE_UNMAPPED_NODE;
James Smart2e0fef82007-06-17 19:56:36 -05001648 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
1649 spin_lock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04001650 ndlp->nlp_flag &= ~(NLP_NODEV_REMOVE | NLP_NPR_2B_DISC);
James Smart2e0fef82007-06-17 19:56:36 -05001651 spin_unlock_irq(shost->host_lock);
1652 lpfc_disc_set_adisc(vport, ndlp);
dea31012005-04-17 16:05:31 -05001653
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001654 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001655}
1656
1657static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001658lpfc_rcv_plogi_mapped_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1659 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001660{
James Smart2e0fef82007-06-17 19:56:36 -05001661 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001662
James Smart2e0fef82007-06-17 19:56:36 -05001663 lpfc_rcv_plogi(vport, ndlp, cmdiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001664 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001665}
1666
1667static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001668lpfc_rcv_prli_mapped_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1669 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001670{
James Smart2e0fef82007-06-17 19:56:36 -05001671 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001672
James Smart2e0fef82007-06-17 19:56:36 -05001673 lpfc_els_rsp_prli_acc(vport, cmdiocb, ndlp);
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_mapped_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_mapped_node(struct lpfc_vport *vport,
1689 struct lpfc_nodelist *ndlp,
1690 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001691{
James Smart2e0fef82007-06-17 19:56:36 -05001692 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001693
James Smart2e0fef82007-06-17 19:56:36 -05001694 lpfc_rcv_padisc(vport, ndlp, cmdiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001695 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001696}
1697
1698static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001699lpfc_rcv_prlo_mapped_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1700 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001701{
James Smart2e0fef82007-06-17 19:56:36 -05001702 struct lpfc_hba *phba = vport->phba;
1703 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001704
1705 /* flush the target */
James Smart51ef4c22007-08-02 11:10:31 -04001706 lpfc_sli_abort_iocb(vport, &phba->sli.ring[phba->sli.fcp_ring],
1707 ndlp->nlp_sid, 0, LPFC_CTX_TGT);
dea31012005-04-17 16:05:31 -05001708
1709 /* Treat like rcv logo */
James Smart2e0fef82007-06-17 19:56:36 -05001710 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_PRLO);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001711 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001712}
1713
1714static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001715lpfc_device_recov_mapped_node(struct lpfc_vport *vport,
1716 struct lpfc_nodelist *ndlp,
1717 void *arg,
1718 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
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001722 ndlp->nlp_prev_state = NLP_STE_MAPPED_NODE;
James Smart2e0fef82007-06-17 19:56:36 -05001723 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
1724 spin_lock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04001725 ndlp->nlp_flag &= ~(NLP_NODEV_REMOVE | NLP_NPR_2B_DISC);
James Smart2e0fef82007-06-17 19:56:36 -05001726 spin_unlock_irq(shost->host_lock);
1727 lpfc_disc_set_adisc(vport, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001728 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001729}
1730
1731static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001732lpfc_rcv_plogi_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1733 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001734{
James Smart2e0fef82007-06-17 19:56:36 -05001735 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1736 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001737
1738 /* Ignore PLOGI if we have an outstanding LOGO */
James Smart858c9f62007-06-17 19:56:39 -05001739 if (ndlp->nlp_flag & (NLP_LOGO_SND | NLP_LOGO_ACC)) {
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001740 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001741 }
1742
James Smart2e0fef82007-06-17 19:56:36 -05001743 if (lpfc_rcv_plogi(vport, ndlp, cmdiocb)) {
1744 spin_lock_irq(shost->host_lock);
James Smartfdcebe22006-03-07 15:04:01 -05001745 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
James Smart2e0fef82007-06-17 19:56:36 -05001746 spin_unlock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001747 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001748 }
1749
1750 /* send PLOGI immediately, move to PLOGI issue state */
1751 if (!(ndlp->nlp_flag & NLP_DELAY_TMO)) {
James Smart488d1462006-03-07 15:02:37 -05001752 ndlp->nlp_prev_state = NLP_STE_NPR_NODE;
James Smart2e0fef82007-06-17 19:56:36 -05001753 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
1754 lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0);
dea31012005-04-17 16:05:31 -05001755 }
James Smart488d1462006-03-07 15:02:37 -05001756
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001757 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001758}
1759
1760static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001761lpfc_rcv_prli_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1762 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001763{
James Smart2e0fef82007-06-17 19:56:36 -05001764 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1765 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
1766 struct ls_rjt stat;
dea31012005-04-17 16:05:31 -05001767
1768 memset(&stat, 0, sizeof (struct ls_rjt));
1769 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
1770 stat.un.b.lsRjtRsnCodeExp = LSEXP_NOTHING_MORE;
James Smart858c9f62007-06-17 19:56:39 -05001771 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
dea31012005-04-17 16:05:31 -05001772
1773 if (!(ndlp->nlp_flag & NLP_DELAY_TMO)) {
1774 if (ndlp->nlp_flag & NLP_NPR_ADISC) {
James Smart2e0fef82007-06-17 19:56:36 -05001775 spin_lock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001776 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001777 ndlp->nlp_prev_state = NLP_STE_NPR_NODE;
James Smart2e0fef82007-06-17 19:56:36 -05001778 spin_unlock_irq(shost->host_lock);
1779 lpfc_nlp_set_state(vport, ndlp, NLP_STE_ADISC_ISSUE);
1780 lpfc_issue_els_adisc(vport, ndlp, 0);
dea31012005-04-17 16:05:31 -05001781 } else {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001782 ndlp->nlp_prev_state = NLP_STE_NPR_NODE;
James Smart2e0fef82007-06-17 19:56:36 -05001783 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
1784 lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0);
dea31012005-04-17 16:05:31 -05001785 }
1786 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001787 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001788}
1789
1790static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001791lpfc_rcv_logo_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1792 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001793{
James Smart2e0fef82007-06-17 19:56:36 -05001794 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001795
James Smart2e0fef82007-06-17 19:56:36 -05001796 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_LOGO);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001797 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001798}
1799
1800static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001801lpfc_rcv_padisc_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1802 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001803{
James Smart2e0fef82007-06-17 19:56:36 -05001804 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001805
James Smart2e0fef82007-06-17 19:56:36 -05001806 lpfc_rcv_padisc(vport, ndlp, cmdiocb);
dea31012005-04-17 16:05:31 -05001807
James Smart33ccf8d2006-08-17 11:57:58 -04001808 /*
1809 * Do not start discovery if discovery is about to start
1810 * or discovery in progress for this node. Starting discovery
1811 * here will affect the counting of discovery threads.
1812 */
James Smart2fb9bd82006-12-02 13:33:57 -05001813 if (!(ndlp->nlp_flag & NLP_DELAY_TMO) &&
James Smart92d7f7b2007-06-17 19:56:38 -05001814 !(ndlp->nlp_flag & NLP_NPR_2B_DISC)) {
dea31012005-04-17 16:05:31 -05001815 if (ndlp->nlp_flag & NLP_NPR_ADISC) {
James Smart92d7f7b2007-06-17 19:56:38 -05001816 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001817 ndlp->nlp_prev_state = NLP_STE_NPR_NODE;
James Smart2e0fef82007-06-17 19:56:36 -05001818 lpfc_nlp_set_state(vport, ndlp, NLP_STE_ADISC_ISSUE);
1819 lpfc_issue_els_adisc(vport, ndlp, 0);
dea31012005-04-17 16:05:31 -05001820 } else {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001821 ndlp->nlp_prev_state = NLP_STE_NPR_NODE;
James Smart2e0fef82007-06-17 19:56:36 -05001822 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
1823 lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0);
dea31012005-04-17 16:05:31 -05001824 }
1825 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001826 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001827}
1828
1829static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001830lpfc_rcv_prlo_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1831 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001832{
James Smart2e0fef82007-06-17 19:56:36 -05001833 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1834 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001835
James Smart2e0fef82007-06-17 19:56:36 -05001836 spin_lock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001837 ndlp->nlp_flag |= NLP_LOGO_ACC;
James Smart2e0fef82007-06-17 19:56:36 -05001838 spin_unlock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001839
James Smart51ef4c22007-08-02 11:10:31 -04001840 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
dea31012005-04-17 16:05:31 -05001841
James Smart2e0fef82007-06-17 19:56:36 -05001842 if ((ndlp->nlp_flag & NLP_DELAY_TMO) == 0) {
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001843 mod_timer(&ndlp->nlp_delayfunc, jiffies + HZ * 1);
James Smart2e0fef82007-06-17 19:56:36 -05001844 spin_lock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001845 ndlp->nlp_flag |= NLP_DELAY_TMO;
1846 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
James Smart2e0fef82007-06-17 19:56:36 -05001847 spin_unlock_irq(shost->host_lock);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001848 ndlp->nlp_last_elscmd = ELS_CMD_PLOGI;
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001849 } else {
James Smart2e0fef82007-06-17 19:56:36 -05001850 spin_lock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001851 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
James Smart2e0fef82007-06-17 19:56:36 -05001852 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001853 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001854 return ndlp->nlp_state;
1855}
dea31012005-04-17 16:05:31 -05001856
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001857static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001858lpfc_cmpl_plogi_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1859 void *arg, uint32_t evt)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001860{
1861 struct lpfc_iocbq *cmdiocb, *rspiocb;
James Smarta0f9b482006-04-15 11:52:56 -04001862 IOCB_t *irsp;
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001863
1864 cmdiocb = (struct lpfc_iocbq *) arg;
1865 rspiocb = cmdiocb->context_un.rsp_iocb;
James Smarta0f9b482006-04-15 11:52:56 -04001866
1867 irsp = &rspiocb->iocb;
1868 if (irsp->ulpStatus) {
James Smarta8adb832007-10-27 13:37:53 -04001869 ndlp->nlp_flag |= NLP_DEFER_RM;
James Smarta0f9b482006-04-15 11:52:56 -04001870 return NLP_STE_FREED_NODE;
1871 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001872 return ndlp->nlp_state;
1873}
1874
1875static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001876lpfc_cmpl_prli_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1877 void *arg, uint32_t evt)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001878{
1879 struct lpfc_iocbq *cmdiocb, *rspiocb;
James Smarta0f9b482006-04-15 11:52:56 -04001880 IOCB_t *irsp;
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001881
1882 cmdiocb = (struct lpfc_iocbq *) arg;
1883 rspiocb = cmdiocb->context_un.rsp_iocb;
James Smarta0f9b482006-04-15 11:52:56 -04001884
1885 irsp = &rspiocb->iocb;
1886 if (irsp->ulpStatus && (ndlp->nlp_flag & NLP_NODEV_REMOVE)) {
James Smart2e0fef82007-06-17 19:56:36 -05001887 lpfc_drop_node(vport, ndlp);
James Smarta0f9b482006-04-15 11:52:56 -04001888 return NLP_STE_FREED_NODE;
1889 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001890 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001891}
1892
1893static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001894lpfc_cmpl_logo_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1895 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001896{
James Smart2e0fef82007-06-17 19:56:36 -05001897 lpfc_unreg_rpi(vport, ndlp);
dea31012005-04-17 16:05:31 -05001898 /* This routine does nothing, just return the current state */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001899 return ndlp->nlp_state;
1900}
1901
1902static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001903lpfc_cmpl_adisc_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1904 void *arg, uint32_t evt)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001905{
1906 struct lpfc_iocbq *cmdiocb, *rspiocb;
James Smarta0f9b482006-04-15 11:52:56 -04001907 IOCB_t *irsp;
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001908
1909 cmdiocb = (struct lpfc_iocbq *) arg;
1910 rspiocb = cmdiocb->context_un.rsp_iocb;
James Smarta0f9b482006-04-15 11:52:56 -04001911
1912 irsp = &rspiocb->iocb;
1913 if (irsp->ulpStatus && (ndlp->nlp_flag & NLP_NODEV_REMOVE)) {
James Smart2e0fef82007-06-17 19:56:36 -05001914 lpfc_drop_node(vport, ndlp);
James Smarta0f9b482006-04-15 11:52:56 -04001915 return NLP_STE_FREED_NODE;
1916 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001917 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001918}
1919
1920static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001921lpfc_cmpl_reglogin_npr_node(struct lpfc_vport *vport,
1922 struct lpfc_nodelist *ndlp,
1923 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001924{
James Smart2e0fef82007-06-17 19:56:36 -05001925 LPFC_MBOXQ_t *pmb = (LPFC_MBOXQ_t *) arg;
1926 MAILBOX_t *mb = &pmb->mb;
dea31012005-04-17 16:05:31 -05001927
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001928 if (!mb->mbxStatus)
1929 ndlp->nlp_rpi = mb->un.varWords[0];
James Smarta0f9b482006-04-15 11:52:56 -04001930 else {
1931 if (ndlp->nlp_flag & NLP_NODEV_REMOVE) {
James Smart2e0fef82007-06-17 19:56:36 -05001932 lpfc_drop_node(vport, ndlp);
James Smarta0f9b482006-04-15 11:52:56 -04001933 return NLP_STE_FREED_NODE;
1934 }
1935 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001936 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001937}
1938
1939static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001940lpfc_device_rm_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1941 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001942{
James Smart2e0fef82007-06-17 19:56:36 -05001943 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1944
James Smarta0f9b482006-04-15 11:52:56 -04001945 if (ndlp->nlp_flag & NLP_NPR_2B_DISC) {
James Smart2e0fef82007-06-17 19:56:36 -05001946 spin_lock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04001947 ndlp->nlp_flag |= NLP_NODEV_REMOVE;
James Smart2e0fef82007-06-17 19:56:36 -05001948 spin_unlock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04001949 return ndlp->nlp_state;
1950 }
James Smart2e0fef82007-06-17 19:56:36 -05001951 lpfc_drop_node(vport, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001952 return NLP_STE_FREED_NODE;
dea31012005-04-17 16:05:31 -05001953}
1954
1955static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001956lpfc_device_recov_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1957 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001958{
James Smart2e0fef82007-06-17 19:56:36 -05001959 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1960
James Smart92d7f7b2007-06-17 19:56:38 -05001961 /* Don't do anything that will mess up processing of the
1962 * previous RSCN.
1963 */
1964 if (vport->fc_flag & FC_RSCN_DEFERRED)
1965 return ndlp->nlp_state;
1966
James Smart2e0fef82007-06-17 19:56:36 -05001967 spin_lock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04001968 ndlp->nlp_flag &= ~(NLP_NODEV_REMOVE | NLP_NPR_2B_DISC);
James Smart2e0fef82007-06-17 19:56:36 -05001969 spin_unlock_irq(shost->host_lock);
James Smartfdcebe22006-03-07 15:04:01 -05001970 if (ndlp->nlp_flag & NLP_DELAY_TMO) {
James Smart2e0fef82007-06-17 19:56:36 -05001971 lpfc_cancel_retry_delay_tmo(vport, ndlp);
James Smartfdcebe22006-03-07 15:04:01 -05001972 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001973 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001974}
1975
1976
1977/* This next section defines the NPort Discovery State Machine */
1978
1979/* There are 4 different double linked lists nodelist entries can reside on.
1980 * The plogi list and adisc list are used when Link Up discovery or RSCN
1981 * processing is needed. Each list holds the nodes that we will send PLOGI
1982 * or ADISC on. These lists will keep track of what nodes will be effected
1983 * by an RSCN, or a Link Up (Typically, all nodes are effected on Link Up).
1984 * The unmapped_list will contain all nodes that we have successfully logged
1985 * into at the Fibre Channel level. The mapped_list will contain all nodes
1986 * that are mapped FCP targets.
1987 */
1988/*
1989 * The bind list is a list of undiscovered (potentially non-existent) nodes
1990 * that we have saved binding information on. This information is used when
1991 * nodes transition from the unmapped to the mapped list.
1992 */
1993/* For UNUSED_NODE state, the node has just been allocated .
1994 * For PLOGI_ISSUE and REG_LOGIN_ISSUE, the node is on
1995 * the PLOGI list. For REG_LOGIN_COMPL, the node is taken off the PLOGI list
1996 * and put on the unmapped list. For ADISC processing, the node is taken off
1997 * the ADISC list and placed on either the mapped or unmapped list (depending
1998 * on its previous state). Once on the unmapped list, a PRLI is issued and the
1999 * state changed to PRLI_ISSUE. When the PRLI completion occurs, the state is
2000 * changed to UNMAPPED_NODE. If the completion indicates a mapped
2001 * node, the node is taken off the unmapped list. The binding list is checked
2002 * for a valid binding, or a binding is automatically assigned. If binding
2003 * assignment is unsuccessful, the node is left on the unmapped list. If
2004 * binding assignment is successful, the associated binding list entry (if
2005 * any) is removed, and the node is placed on the mapped list.
2006 */
2007/*
2008 * For a Link Down, all nodes on the ADISC, PLOGI, unmapped or mapped
James Smartc01f3202006-08-18 17:47:08 -04002009 * lists will receive a DEVICE_RECOVERY event. If the linkdown or devloss timers
dea31012005-04-17 16:05:31 -05002010 * expire, all effected nodes will receive a DEVICE_RM event.
2011 */
2012/*
2013 * For a Link Up or RSCN, all nodes will move from the mapped / unmapped lists
2014 * to either the ADISC or PLOGI list. After a Nameserver query or ALPA loopmap
2015 * check, additional nodes may be added or removed (via DEVICE_RM) to / from
2016 * the PLOGI or ADISC lists. Once the PLOGI and ADISC lists are populated,
2017 * we will first process the ADISC list. 32 entries are processed initially and
2018 * ADISC is initited for each one. Completions / Events for each node are
2019 * funnelled thru the state machine. As each node finishes ADISC processing, it
2020 * starts ADISC for any nodes waiting for ADISC processing. If no nodes are
2021 * waiting, and the ADISC list count is identically 0, then we are done. For
2022 * Link Up discovery, since all nodes on the PLOGI list are UNREG_LOGIN'ed, we
2023 * can issue a CLEAR_LA and reenable Link Events. Next we will process the PLOGI
2024 * list. 32 entries are processed initially and PLOGI is initited for each one.
2025 * Completions / Events for each node are funnelled thru the state machine. As
2026 * each node finishes PLOGI processing, it starts PLOGI for any nodes waiting
2027 * for PLOGI processing. If no nodes are waiting, and the PLOGI list count is
2028 * indentically 0, then we are done. We have now completed discovery / RSCN
2029 * handling. Upon completion, ALL nodes should be on either the mapped or
2030 * unmapped lists.
2031 */
2032
2033static uint32_t (*lpfc_disc_action[NLP_STE_MAX_STATE * NLP_EVT_MAX_EVENT])
James Smart2e0fef82007-06-17 19:56:36 -05002034 (struct lpfc_vport *, struct lpfc_nodelist *, void *, uint32_t) = {
dea31012005-04-17 16:05:31 -05002035 /* Action routine Event Current State */
2036 lpfc_rcv_plogi_unused_node, /* RCV_PLOGI UNUSED_NODE */
2037 lpfc_rcv_els_unused_node, /* RCV_PRLI */
2038 lpfc_rcv_logo_unused_node, /* RCV_LOGO */
2039 lpfc_rcv_els_unused_node, /* RCV_ADISC */
2040 lpfc_rcv_els_unused_node, /* RCV_PDISC */
2041 lpfc_rcv_els_unused_node, /* RCV_PRLO */
2042 lpfc_disc_illegal, /* CMPL_PLOGI */
2043 lpfc_disc_illegal, /* CMPL_PRLI */
2044 lpfc_cmpl_logo_unused_node, /* CMPL_LOGO */
2045 lpfc_disc_illegal, /* CMPL_ADISC */
2046 lpfc_disc_illegal, /* CMPL_REG_LOGIN */
2047 lpfc_device_rm_unused_node, /* DEVICE_RM */
2048 lpfc_disc_illegal, /* DEVICE_RECOVERY */
2049
2050 lpfc_rcv_plogi_plogi_issue, /* RCV_PLOGI PLOGI_ISSUE */
James Smart92d7f7b2007-06-17 19:56:38 -05002051 lpfc_rcv_prli_plogi_issue, /* RCV_PRLI */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002052 lpfc_rcv_logo_plogi_issue, /* RCV_LOGO */
dea31012005-04-17 16:05:31 -05002053 lpfc_rcv_els_plogi_issue, /* RCV_ADISC */
2054 lpfc_rcv_els_plogi_issue, /* RCV_PDISC */
2055 lpfc_rcv_els_plogi_issue, /* RCV_PRLO */
2056 lpfc_cmpl_plogi_plogi_issue, /* CMPL_PLOGI */
2057 lpfc_disc_illegal, /* CMPL_PRLI */
James Smart0ff10d42008-01-11 01:52:36 -05002058 lpfc_cmpl_logo_plogi_issue, /* CMPL_LOGO */
dea31012005-04-17 16:05:31 -05002059 lpfc_disc_illegal, /* CMPL_ADISC */
James Smart0ff10d42008-01-11 01:52:36 -05002060 lpfc_cmpl_reglogin_plogi_issue,/* CMPL_REG_LOGIN */
dea31012005-04-17 16:05:31 -05002061 lpfc_device_rm_plogi_issue, /* DEVICE_RM */
2062 lpfc_device_recov_plogi_issue, /* DEVICE_RECOVERY */
2063
2064 lpfc_rcv_plogi_adisc_issue, /* RCV_PLOGI ADISC_ISSUE */
2065 lpfc_rcv_prli_adisc_issue, /* RCV_PRLI */
2066 lpfc_rcv_logo_adisc_issue, /* RCV_LOGO */
2067 lpfc_rcv_padisc_adisc_issue, /* RCV_ADISC */
2068 lpfc_rcv_padisc_adisc_issue, /* RCV_PDISC */
2069 lpfc_rcv_prlo_adisc_issue, /* RCV_PRLO */
2070 lpfc_disc_illegal, /* CMPL_PLOGI */
2071 lpfc_disc_illegal, /* CMPL_PRLI */
2072 lpfc_disc_illegal, /* CMPL_LOGO */
2073 lpfc_cmpl_adisc_adisc_issue, /* CMPL_ADISC */
2074 lpfc_disc_illegal, /* CMPL_REG_LOGIN */
2075 lpfc_device_rm_adisc_issue, /* DEVICE_RM */
2076 lpfc_device_recov_adisc_issue, /* DEVICE_RECOVERY */
2077
2078 lpfc_rcv_plogi_reglogin_issue, /* RCV_PLOGI REG_LOGIN_ISSUE */
2079 lpfc_rcv_prli_reglogin_issue, /* RCV_PLOGI */
2080 lpfc_rcv_logo_reglogin_issue, /* RCV_LOGO */
2081 lpfc_rcv_padisc_reglogin_issue, /* RCV_ADISC */
2082 lpfc_rcv_padisc_reglogin_issue, /* RCV_PDISC */
2083 lpfc_rcv_prlo_reglogin_issue, /* RCV_PRLO */
James Smart87af33f2007-10-27 13:37:43 -04002084 lpfc_cmpl_plogi_illegal, /* CMPL_PLOGI */
dea31012005-04-17 16:05:31 -05002085 lpfc_disc_illegal, /* CMPL_PRLI */
2086 lpfc_disc_illegal, /* CMPL_LOGO */
2087 lpfc_disc_illegal, /* CMPL_ADISC */
2088 lpfc_cmpl_reglogin_reglogin_issue,/* CMPL_REG_LOGIN */
2089 lpfc_device_rm_reglogin_issue, /* DEVICE_RM */
2090 lpfc_device_recov_reglogin_issue,/* DEVICE_RECOVERY */
2091
2092 lpfc_rcv_plogi_prli_issue, /* RCV_PLOGI PRLI_ISSUE */
2093 lpfc_rcv_prli_prli_issue, /* RCV_PRLI */
2094 lpfc_rcv_logo_prli_issue, /* RCV_LOGO */
2095 lpfc_rcv_padisc_prli_issue, /* RCV_ADISC */
2096 lpfc_rcv_padisc_prli_issue, /* RCV_PDISC */
2097 lpfc_rcv_prlo_prli_issue, /* RCV_PRLO */
James Smart87af33f2007-10-27 13:37:43 -04002098 lpfc_cmpl_plogi_illegal, /* CMPL_PLOGI */
dea31012005-04-17 16:05:31 -05002099 lpfc_cmpl_prli_prli_issue, /* CMPL_PRLI */
2100 lpfc_disc_illegal, /* CMPL_LOGO */
2101 lpfc_disc_illegal, /* CMPL_ADISC */
2102 lpfc_disc_illegal, /* CMPL_REG_LOGIN */
2103 lpfc_device_rm_prli_issue, /* DEVICE_RM */
2104 lpfc_device_recov_prli_issue, /* DEVICE_RECOVERY */
2105
2106 lpfc_rcv_plogi_unmap_node, /* RCV_PLOGI UNMAPPED_NODE */
2107 lpfc_rcv_prli_unmap_node, /* RCV_PRLI */
2108 lpfc_rcv_logo_unmap_node, /* RCV_LOGO */
2109 lpfc_rcv_padisc_unmap_node, /* RCV_ADISC */
2110 lpfc_rcv_padisc_unmap_node, /* RCV_PDISC */
2111 lpfc_rcv_prlo_unmap_node, /* RCV_PRLO */
2112 lpfc_disc_illegal, /* CMPL_PLOGI */
2113 lpfc_disc_illegal, /* CMPL_PRLI */
2114 lpfc_disc_illegal, /* CMPL_LOGO */
2115 lpfc_disc_illegal, /* CMPL_ADISC */
2116 lpfc_disc_illegal, /* CMPL_REG_LOGIN */
2117 lpfc_disc_illegal, /* DEVICE_RM */
2118 lpfc_device_recov_unmap_node, /* DEVICE_RECOVERY */
2119
2120 lpfc_rcv_plogi_mapped_node, /* RCV_PLOGI MAPPED_NODE */
2121 lpfc_rcv_prli_mapped_node, /* RCV_PRLI */
2122 lpfc_rcv_logo_mapped_node, /* RCV_LOGO */
2123 lpfc_rcv_padisc_mapped_node, /* RCV_ADISC */
2124 lpfc_rcv_padisc_mapped_node, /* RCV_PDISC */
2125 lpfc_rcv_prlo_mapped_node, /* RCV_PRLO */
2126 lpfc_disc_illegal, /* CMPL_PLOGI */
2127 lpfc_disc_illegal, /* CMPL_PRLI */
2128 lpfc_disc_illegal, /* CMPL_LOGO */
2129 lpfc_disc_illegal, /* CMPL_ADISC */
2130 lpfc_disc_illegal, /* CMPL_REG_LOGIN */
2131 lpfc_disc_illegal, /* DEVICE_RM */
2132 lpfc_device_recov_mapped_node, /* DEVICE_RECOVERY */
2133
2134 lpfc_rcv_plogi_npr_node, /* RCV_PLOGI NPR_NODE */
2135 lpfc_rcv_prli_npr_node, /* RCV_PRLI */
2136 lpfc_rcv_logo_npr_node, /* RCV_LOGO */
2137 lpfc_rcv_padisc_npr_node, /* RCV_ADISC */
2138 lpfc_rcv_padisc_npr_node, /* RCV_PDISC */
2139 lpfc_rcv_prlo_npr_node, /* RCV_PRLO */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002140 lpfc_cmpl_plogi_npr_node, /* CMPL_PLOGI */
2141 lpfc_cmpl_prli_npr_node, /* CMPL_PRLI */
dea31012005-04-17 16:05:31 -05002142 lpfc_cmpl_logo_npr_node, /* CMPL_LOGO */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002143 lpfc_cmpl_adisc_npr_node, /* CMPL_ADISC */
dea31012005-04-17 16:05:31 -05002144 lpfc_cmpl_reglogin_npr_node, /* CMPL_REG_LOGIN */
2145 lpfc_device_rm_npr_node, /* DEVICE_RM */
2146 lpfc_device_recov_npr_node, /* DEVICE_RECOVERY */
2147};
2148
2149int
James Smart2e0fef82007-06-17 19:56:36 -05002150lpfc_disc_state_machine(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2151 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05002152{
2153 uint32_t cur_state, rc;
James Smart2e0fef82007-06-17 19:56:36 -05002154 uint32_t(*func) (struct lpfc_vport *, struct lpfc_nodelist *, void *,
dea31012005-04-17 16:05:31 -05002155 uint32_t);
James Smarte47c9092008-02-08 18:49:26 -05002156 uint32_t got_ndlp = 0;
dea31012005-04-17 16:05:31 -05002157
James Smarte47c9092008-02-08 18:49:26 -05002158 if (lpfc_nlp_get(ndlp))
2159 got_ndlp = 1;
2160
dea31012005-04-17 16:05:31 -05002161 cur_state = ndlp->nlp_state;
2162
2163 /* DSM in event <evt> on NPort <nlp_DID> in state <cur_state> */
James Smarte8b62012007-08-02 11:10:09 -04002164 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
2165 "0211 DSM in event x%x on NPort x%x in "
2166 "state %d Data: x%x\n",
2167 evt, ndlp->nlp_DID, cur_state, ndlp->nlp_flag);
dea31012005-04-17 16:05:31 -05002168
James Smart858c9f62007-06-17 19:56:39 -05002169 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_DSM,
2170 "DSM in: evt:%d ste:%d did:x%x",
2171 evt, cur_state, ndlp->nlp_DID);
2172
dea31012005-04-17 16:05:31 -05002173 func = lpfc_disc_action[(cur_state * NLP_EVT_MAX_EVENT) + evt];
James Smart2e0fef82007-06-17 19:56:36 -05002174 rc = (func) (vport, ndlp, arg, evt);
dea31012005-04-17 16:05:31 -05002175
2176 /* DSM out state <rc> on NPort <nlp_DID> */
James Smarte47c9092008-02-08 18:49:26 -05002177 if (got_ndlp) {
2178 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
James Smarte8b62012007-08-02 11:10:09 -04002179 "0212 DSM out state %d on NPort x%x Data: x%x\n",
2180 rc, ndlp->nlp_DID, ndlp->nlp_flag);
dea31012005-04-17 16:05:31 -05002181
James Smarte47c9092008-02-08 18:49:26 -05002182 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_DSM,
2183 "DSM out: ste:%d did:x%x flg:x%x",
2184 rc, ndlp->nlp_DID, ndlp->nlp_flag);
2185 /* Decrement the ndlp reference count held for this function */
2186 lpfc_nlp_put(ndlp);
2187 } else {
2188 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
2189 "0212 DSM out state %d on NPort free\n", rc);
James Smart858c9f62007-06-17 19:56:39 -05002190
James Smarte47c9092008-02-08 18:49:26 -05002191 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_DSM,
2192 "DSM out: ste:%d did:x%x flg:x%x",
2193 rc, 0, 0);
2194 }
dea31012005-04-17 16:05:31 -05002195
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002196 return rc;
dea31012005-04-17 16:05:31 -05002197}