blob: 15ca2a9a0cdd3122850fac7fbd3ca2991949a31b [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 Smartd4379ac2012-03-01 22:37:07 -05004 * Copyright (C) 2004-2012 Emulex. All rights reserved. *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -04005 * EMULEX and SLI are trademarks of Emulex. *
dea31012005-04-17 16:05:31 -05006 * www.emulex.com *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -04007 * Portions Copyright (C) 2004-2005 Christoph Hellwig *
dea31012005-04-17 16:05:31 -05008 * *
9 * This program is free software; you can redistribute it and/or *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -040010 * modify it under the terms of version 2 of the GNU General *
11 * Public License as published by the Free Software Foundation. *
12 * This program is distributed in the hope that it will be useful. *
13 * ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND *
14 * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, *
15 * FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE *
16 * DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD *
17 * TO BE LEGALLY INVALID. See the GNU General Public License for *
18 * more details, a copy of which can be found in the file COPYING *
19 * included with this package. *
dea31012005-04-17 16:05:31 -050020 *******************************************************************/
21
dea31012005-04-17 16:05:31 -050022#include <linux/blkdev.h>
23#include <linux/pci.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/slab.h>
dea31012005-04-17 16:05:31 -050025#include <linux/interrupt.h>
26
James.Smart@Emulex.Com91886522005-08-10 15:03:09 -040027#include <scsi/scsi.h>
dea31012005-04-17 16:05:31 -050028#include <scsi/scsi_device.h>
29#include <scsi/scsi_host.h>
30#include <scsi/scsi_transport_fc.h>
31
James Smartda0436e2009-05-22 14:51:39 -040032#include "lpfc_hw4.h"
dea31012005-04-17 16:05:31 -050033#include "lpfc_hw.h"
34#include "lpfc_sli.h"
James Smartda0436e2009-05-22 14:51:39 -040035#include "lpfc_sli4.h"
James Smartea2151b2008-09-07 11:52:10 -040036#include "lpfc_nl.h"
dea31012005-04-17 16:05:31 -050037#include "lpfc_disc.h"
38#include "lpfc_scsi.h"
39#include "lpfc.h"
40#include "lpfc_logmsg.h"
41#include "lpfc_crtn.h"
James Smart92d7f7b2007-06-17 19:56:38 -050042#include "lpfc_vport.h"
James Smart858c9f62007-06-17 19:56:39 -050043#include "lpfc_debugfs.h"
dea31012005-04-17 16:05:31 -050044
45
46/* Called to verify a rcv'ed ADISC was intended for us. */
47static int
James Smart2e0fef82007-06-17 19:56:36 -050048lpfc_check_adisc(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
49 struct lpfc_name *nn, struct lpfc_name *pn)
dea31012005-04-17 16:05:31 -050050{
James Smart6b5151f2012-01-18 16:24:06 -050051 /* First, we MUST have a RPI registered */
52 if (!(ndlp->nlp_flag & NLP_RPI_REGISTERED))
53 return 0;
54
dea31012005-04-17 16:05:31 -050055 /* Compare the ADISC rsp WWNN / WWPN matches our internal node
56 * table entry for that node.
57 */
James Smart2e0fef82007-06-17 19:56:36 -050058 if (memcmp(nn, &ndlp->nlp_nodename, sizeof (struct lpfc_name)))
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -050059 return 0;
dea31012005-04-17 16:05:31 -050060
James Smart2e0fef82007-06-17 19:56:36 -050061 if (memcmp(pn, &ndlp->nlp_portname, sizeof (struct lpfc_name)))
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -050062 return 0;
dea31012005-04-17 16:05:31 -050063
64 /* we match, return success */
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -050065 return 1;
dea31012005-04-17 16:05:31 -050066}
67
dea31012005-04-17 16:05:31 -050068int
James Smart2e0fef82007-06-17 19:56:36 -050069lpfc_check_sparm(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
James Smart341af102010-01-26 23:07:37 -050070 struct serv_parm *sp, uint32_t class, int flogi)
dea31012005-04-17 16:05:31 -050071{
James Smart2e0fef82007-06-17 19:56:36 -050072 volatile struct serv_parm *hsp = &vport->fc_sparam;
James.Smart@Emulex.Com2fb70f72005-11-28 11:41:24 -050073 uint16_t hsp_value, ssp_value = 0;
dea31012005-04-17 16:05:31 -050074
James.Smart@Emulex.Com2fb70f72005-11-28 11:41:24 -050075 /*
76 * The receive data field size and buffer-to-buffer receive data field
77 * size entries are 16 bits but are represented as two 8-bit fields in
78 * the driver data structure to account for rsvd bits and other control
79 * bits. Reconstruct and compare the fields as a 16-bit values before
80 * correcting the byte values.
81 */
dea31012005-04-17 16:05:31 -050082 if (sp->cls1.classValid) {
James Smart341af102010-01-26 23:07:37 -050083 if (!flogi) {
84 hsp_value = ((hsp->cls1.rcvDataSizeMsb << 8) |
85 hsp->cls1.rcvDataSizeLsb);
86 ssp_value = ((sp->cls1.rcvDataSizeMsb << 8) |
87 sp->cls1.rcvDataSizeLsb);
88 if (!ssp_value)
89 goto bad_service_param;
90 if (ssp_value > hsp_value) {
91 sp->cls1.rcvDataSizeLsb =
92 hsp->cls1.rcvDataSizeLsb;
93 sp->cls1.rcvDataSizeMsb =
94 hsp->cls1.rcvDataSizeMsb;
95 }
James.Smart@Emulex.Com2fb70f72005-11-28 11:41:24 -050096 }
James Smart341af102010-01-26 23:07:37 -050097 } else if (class == CLASS1)
James Smart92d7f7b2007-06-17 19:56:38 -050098 goto bad_service_param;
dea31012005-04-17 16:05:31 -050099 if (sp->cls2.classValid) {
James Smart341af102010-01-26 23:07:37 -0500100 if (!flogi) {
101 hsp_value = ((hsp->cls2.rcvDataSizeMsb << 8) |
102 hsp->cls2.rcvDataSizeLsb);
103 ssp_value = ((sp->cls2.rcvDataSizeMsb << 8) |
104 sp->cls2.rcvDataSizeLsb);
105 if (!ssp_value)
106 goto bad_service_param;
107 if (ssp_value > hsp_value) {
108 sp->cls2.rcvDataSizeLsb =
109 hsp->cls2.rcvDataSizeLsb;
110 sp->cls2.rcvDataSizeMsb =
111 hsp->cls2.rcvDataSizeMsb;
112 }
James.Smart@Emulex.Com2fb70f72005-11-28 11:41:24 -0500113 }
James Smart341af102010-01-26 23:07:37 -0500114 } else if (class == CLASS2)
James Smart92d7f7b2007-06-17 19:56:38 -0500115 goto bad_service_param;
dea31012005-04-17 16:05:31 -0500116 if (sp->cls3.classValid) {
James Smart341af102010-01-26 23:07:37 -0500117 if (!flogi) {
118 hsp_value = ((hsp->cls3.rcvDataSizeMsb << 8) |
119 hsp->cls3.rcvDataSizeLsb);
120 ssp_value = ((sp->cls3.rcvDataSizeMsb << 8) |
121 sp->cls3.rcvDataSizeLsb);
122 if (!ssp_value)
123 goto bad_service_param;
124 if (ssp_value > hsp_value) {
125 sp->cls3.rcvDataSizeLsb =
126 hsp->cls3.rcvDataSizeLsb;
127 sp->cls3.rcvDataSizeMsb =
128 hsp->cls3.rcvDataSizeMsb;
129 }
James.Smart@Emulex.Com2fb70f72005-11-28 11:41:24 -0500130 }
James Smart341af102010-01-26 23:07:37 -0500131 } else if (class == CLASS3)
James Smart92d7f7b2007-06-17 19:56:38 -0500132 goto bad_service_param;
dea31012005-04-17 16:05:31 -0500133
James.Smart@Emulex.Com2fb70f72005-11-28 11:41:24 -0500134 /*
135 * Preserve the upper four bits of the MSB from the PLOGI response.
136 * These bits contain the Buffer-to-Buffer State Change Number
137 * from the target and need to be passed to the FW.
138 */
139 hsp_value = (hsp->cmn.bbRcvSizeMsb << 8) | hsp->cmn.bbRcvSizeLsb;
140 ssp_value = (sp->cmn.bbRcvSizeMsb << 8) | sp->cmn.bbRcvSizeLsb;
141 if (ssp_value > hsp_value) {
dea31012005-04-17 16:05:31 -0500142 sp->cmn.bbRcvSizeLsb = hsp->cmn.bbRcvSizeLsb;
James.Smart@Emulex.Com2fb70f72005-11-28 11:41:24 -0500143 sp->cmn.bbRcvSizeMsb = (sp->cmn.bbRcvSizeMsb & 0xF0) |
144 (hsp->cmn.bbRcvSizeMsb & 0x0F);
145 }
dea31012005-04-17 16:05:31 -0500146
dea31012005-04-17 16:05:31 -0500147 memcpy(&ndlp->nlp_nodename, &sp->nodeName, sizeof (struct lpfc_name));
148 memcpy(&ndlp->nlp_portname, &sp->portName, sizeof (struct lpfc_name));
James.Smart@Emulex.Com2fb70f72005-11-28 11:41:24 -0500149 return 1;
James Smart92d7f7b2007-06-17 19:56:38 -0500150bad_service_param:
James Smarte8b62012007-08-02 11:10:09 -0400151 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
152 "0207 Device %x "
153 "(%02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x) sent "
154 "invalid service parameters. Ignoring device.\n",
155 ndlp->nlp_DID,
156 sp->nodeName.u.wwn[0], sp->nodeName.u.wwn[1],
157 sp->nodeName.u.wwn[2], sp->nodeName.u.wwn[3],
158 sp->nodeName.u.wwn[4], sp->nodeName.u.wwn[5],
159 sp->nodeName.u.wwn[6], sp->nodeName.u.wwn[7]);
James Smart92d7f7b2007-06-17 19:56:38 -0500160 return 0;
dea31012005-04-17 16:05:31 -0500161}
162
163static void *
James Smart2e0fef82007-06-17 19:56:36 -0500164lpfc_check_elscmpl_iocb(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
James Smart92d7f7b2007-06-17 19:56:38 -0500165 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -0500166{
167 struct lpfc_dmabuf *pcmd, *prsp;
168 uint32_t *lp;
169 void *ptr = NULL;
170 IOCB_t *irsp;
171
172 irsp = &rspiocb->iocb;
173 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
174
175 /* For lpfc_els_abort, context2 could be zero'ed to delay
176 * freeing associated memory till after ABTS completes.
177 */
178 if (pcmd) {
179 prsp = list_get_first(&pcmd->list, struct lpfc_dmabuf,
180 list);
181 if (prsp) {
182 lp = (uint32_t *) prsp->virt;
183 ptr = (void *)((uint8_t *)lp + sizeof(uint32_t));
184 }
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -0500185 } else {
dea31012005-04-17 16:05:31 -0500186 /* Force ulpStatus error since we are returning NULL ptr */
187 if (!(irsp->ulpStatus)) {
188 irsp->ulpStatus = IOSTAT_LOCAL_REJECT;
189 irsp->un.ulpWord[4] = IOERR_SLI_ABORTED;
190 }
191 ptr = NULL;
192 }
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -0500193 return ptr;
dea31012005-04-17 16:05:31 -0500194}
195
196
James Smart2a9bf3d2010-06-07 15:24:45 -0400197
dea31012005-04-17 16:05:31 -0500198/*
199 * Free resources / clean up outstanding I/Os
200 * associated with a LPFC_NODELIST entry. This
201 * routine effectively results in a "software abort".
202 */
203int
James Smart2e0fef82007-06-17 19:56:36 -0500204lpfc_els_abort(struct lpfc_hba *phba, struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -0500205{
James Smart2534ba72007-04-25 09:52:20 -0400206 LIST_HEAD(completions);
James Smart2a9bf3d2010-06-07 15:24:45 -0400207 LIST_HEAD(txcmplq_completions);
208 LIST_HEAD(abort_list);
James Smart2e0fef82007-06-17 19:56:36 -0500209 struct lpfc_sli *psli = &phba->sli;
210 struct lpfc_sli_ring *pring = &psli->ring[LPFC_ELS_RING];
dea31012005-04-17 16:05:31 -0500211 struct lpfc_iocbq *iocb, *next_iocb;
dea31012005-04-17 16:05:31 -0500212
213 /* Abort outstanding I/O on NPort <nlp_DID> */
James Smarte8b62012007-08-02 11:10:09 -0400214 lpfc_printf_vlog(ndlp->vport, KERN_INFO, LOG_DISCOVERY,
James Smart2a9bf3d2010-06-07 15:24:45 -0400215 "2819 Abort outstanding I/O on NPort x%x "
James Smarte8b62012007-08-02 11:10:09 -0400216 "Data: x%x x%x x%x\n",
217 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
218 ndlp->nlp_rpi);
James Smart92d7f7b2007-06-17 19:56:38 -0500219
220 lpfc_fabric_abort_nport(ndlp);
dea31012005-04-17 16:05:31 -0500221
dea31012005-04-17 16:05:31 -0500222 /* First check the txq */
James Smart2e0fef82007-06-17 19:56:36 -0500223 spin_lock_irq(&phba->hbalock);
James Smart2534ba72007-04-25 09:52:20 -0400224 list_for_each_entry_safe(iocb, next_iocb, &pring->txq, list) {
James Smart858c9f62007-06-17 19:56:39 -0500225 /* Check to see if iocb matches the nport we are looking for */
James Smart2534ba72007-04-25 09:52:20 -0400226 if (lpfc_check_sli_ndlp(phba, pring, iocb, ndlp)) {
James Smart858c9f62007-06-17 19:56:39 -0500227 /* It matches, so deque and call compl with anp error */
James Smart2534ba72007-04-25 09:52:20 -0400228 list_move_tail(&iocb->list, &completions);
229 pring->txq_cnt--;
dea31012005-04-17 16:05:31 -0500230 }
James Smart2534ba72007-04-25 09:52:20 -0400231 }
dea31012005-04-17 16:05:31 -0500232
dea31012005-04-17 16:05:31 -0500233 /* Next check the txcmplq */
James Smart2a9bf3d2010-06-07 15:24:45 -0400234 list_splice_init(&pring->txcmplq, &txcmplq_completions);
James Smart2e0fef82007-06-17 19:56:36 -0500235 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -0500236
James Smart2a9bf3d2010-06-07 15:24:45 -0400237 list_for_each_entry_safe(iocb, next_iocb, &txcmplq_completions, list) {
238 /* Check to see if iocb matches the nport we are looking for */
239 if (lpfc_check_sli_ndlp(phba, pring, iocb, ndlp))
240 list_add_tail(&iocb->dlist, &abort_list);
241 }
242 spin_lock_irq(&phba->hbalock);
243 list_splice(&txcmplq_completions, &pring->txcmplq);
244 spin_unlock_irq(&phba->hbalock);
245
246 list_for_each_entry_safe(iocb, next_iocb, &abort_list, dlist) {
247 spin_lock_irq(&phba->hbalock);
248 list_del_init(&iocb->dlist);
249 lpfc_sli_issue_abort_iotag(phba, pring, iocb);
250 spin_unlock_irq(&phba->hbalock);
251 }
252
James Smarta257bf92009-04-06 18:48:10 -0400253 /* Cancel all the IOCBs from the completions list */
254 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
255 IOERR_SLI_ABORTED);
James Smart2534ba72007-04-25 09:52:20 -0400256
James Smart0d2b6b82008-06-14 22:52:47 -0400257 lpfc_cancel_retry_delay_tmo(phba->pport, ndlp);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -0500258 return 0;
dea31012005-04-17 16:05:31 -0500259}
260
261static int
James Smart2e0fef82007-06-17 19:56:36 -0500262lpfc_rcv_plogi(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
James Smart92d7f7b2007-06-17 19:56:38 -0500263 struct lpfc_iocbq *cmdiocb)
dea31012005-04-17 16:05:31 -0500264{
James Smart2e0fef82007-06-17 19:56:36 -0500265 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
266 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -0500267 struct lpfc_dmabuf *pcmd;
268 uint32_t *lp;
269 IOCB_t *icmd;
270 struct serv_parm *sp;
271 LPFC_MBOXQ_t *mbox;
272 struct ls_rjt stat;
273 int rc;
274
275 memset(&stat, 0, sizeof (struct ls_rjt));
James Smart695a8142010-01-26 23:08:03 -0500276 if (vport->port_state <= LPFC_FDISC) {
dea31012005-04-17 16:05:31 -0500277 /* Before responding to PLOGI, check for pt2pt mode.
278 * If we are pt2pt, with an outstanding FLOGI, abort
279 * the FLOGI and resend it first.
280 */
James Smart2e0fef82007-06-17 19:56:36 -0500281 if (vport->fc_flag & FC_PT2PT) {
James Smart92d7f7b2007-06-17 19:56:38 -0500282 lpfc_els_abort_flogi(phba);
James Smart2e0fef82007-06-17 19:56:36 -0500283 if (!(vport->fc_flag & FC_PT2PT_PLOGI)) {
dea31012005-04-17 16:05:31 -0500284 /* If the other side is supposed to initiate
285 * the PLOGI anyway, just ACC it now and
286 * move on with discovery.
287 */
288 phba->fc_edtov = FF_DEF_EDTOV;
289 phba->fc_ratov = FF_DEF_RATOV;
290 /* Start discovery - this should just do
291 CLEAR_LA */
James Smart2e0fef82007-06-17 19:56:36 -0500292 lpfc_disc_start(vport);
James Smarted957682007-06-17 19:56:37 -0500293 } else
James Smart2e0fef82007-06-17 19:56:36 -0500294 lpfc_initial_flogi(vport);
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -0500295 } else {
dea31012005-04-17 16:05:31 -0500296 stat.un.b.lsRjtRsnCode = LSRJT_LOGICAL_BSY;
297 stat.un.b.lsRjtRsnCodeExp = LSEXP_NOTHING_MORE;
James Smart2e0fef82007-06-17 19:56:36 -0500298 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb,
James Smart858c9f62007-06-17 19:56:39 -0500299 ndlp, NULL);
dea31012005-04-17 16:05:31 -0500300 return 0;
301 }
302 }
303 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
304 lp = (uint32_t *) pcmd->virt;
305 sp = (struct serv_parm *) ((uint8_t *) lp + sizeof (uint32_t));
James Smarta8adb832007-10-27 13:37:53 -0400306 if (wwn_to_u64(sp->portName.u.wwn) == 0) {
307 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
308 "0140 PLOGI Reject: invalid nname\n");
309 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
310 stat.un.b.lsRjtRsnCodeExp = LSEXP_INVALID_PNAME;
311 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp,
312 NULL);
313 return 0;
314 }
315 if (wwn_to_u64(sp->nodeName.u.wwn) == 0) {
316 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
317 "0141 PLOGI Reject: invalid pname\n");
318 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
319 stat.un.b.lsRjtRsnCodeExp = LSEXP_INVALID_NNAME;
320 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp,
321 NULL);
322 return 0;
323 }
James Smart341af102010-01-26 23:07:37 -0500324 if ((lpfc_check_sparm(vport, ndlp, sp, CLASS3, 0) == 0)) {
dea31012005-04-17 16:05:31 -0500325 /* Reject this request because invalid parameters */
326 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
327 stat.un.b.lsRjtRsnCodeExp = LSEXP_SPARM_OPTIONS;
James Smart858c9f62007-06-17 19:56:39 -0500328 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp,
329 NULL);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -0500330 return 0;
dea31012005-04-17 16:05:31 -0500331 }
332 icmd = &cmdiocb->iocb;
333
334 /* PLOGI chkparm OK */
James Smarte8b62012007-08-02 11:10:09 -0400335 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
336 "0114 PLOGI chkparm OK Data: x%x x%x x%x x%x\n",
337 ndlp->nlp_DID, ndlp->nlp_state, ndlp->nlp_flag,
338 ndlp->nlp_rpi);
dea31012005-04-17 16:05:31 -0500339
James Smart3de2a652007-08-02 11:09:59 -0400340 if (vport->cfg_fcp_class == 2 && sp->cls2.classValid)
dea31012005-04-17 16:05:31 -0500341 ndlp->nlp_fcp_info |= CLASS2;
James Smarted957682007-06-17 19:56:37 -0500342 else
dea31012005-04-17 16:05:31 -0500343 ndlp->nlp_fcp_info |= CLASS3;
James Smart2e0fef82007-06-17 19:56:36 -0500344
dea31012005-04-17 16:05:31 -0500345 ndlp->nlp_class_sup = 0;
346 if (sp->cls1.classValid)
347 ndlp->nlp_class_sup |= FC_COS_CLASS1;
348 if (sp->cls2.classValid)
349 ndlp->nlp_class_sup |= FC_COS_CLASS2;
350 if (sp->cls3.classValid)
351 ndlp->nlp_class_sup |= FC_COS_CLASS3;
352 if (sp->cls4.classValid)
353 ndlp->nlp_class_sup |= FC_COS_CLASS4;
354 ndlp->nlp_maxframe =
355 ((sp->cmn.bbRcvSizeMsb & 0x0F) << 8) | sp->cmn.bbRcvSizeLsb;
356
James Smart05580562011-05-24 11:40:48 -0400357 /* no need to reg_login if we are already in one of these states */
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -0500358 switch (ndlp->nlp_state) {
dea31012005-04-17 16:05:31 -0500359 case NLP_STE_NPR_NODE:
360 if (!(ndlp->nlp_flag & NLP_NPR_ADISC))
361 break;
362 case NLP_STE_REG_LOGIN_ISSUE:
363 case NLP_STE_PRLI_ISSUE:
364 case NLP_STE_UNMAPPED_NODE:
365 case NLP_STE_MAPPED_NODE:
James Smart05580562011-05-24 11:40:48 -0400366 lpfc_els_rsp_acc(vport, ELS_CMD_PLOGI, cmdiocb, ndlp, NULL);
367 return 1;
dea31012005-04-17 16:05:31 -0500368 }
369
James Smart92d7f7b2007-06-17 19:56:38 -0500370 if ((vport->fc_flag & FC_PT2PT) &&
371 !(vport->fc_flag & FC_PT2PT_PLOGI)) {
dea31012005-04-17 16:05:31 -0500372 /* rcv'ed PLOGI decides what our NPortId will be */
James Smart2e0fef82007-06-17 19:56:36 -0500373 vport->fc_myDID = icmd->un.rcvels.parmRo;
dea31012005-04-17 16:05:31 -0500374 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
375 if (mbox == NULL)
376 goto out;
377 lpfc_config_link(phba, mbox);
378 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
James Smarted957682007-06-17 19:56:37 -0500379 mbox->vport = vport;
James Smart0b727fe2007-10-27 13:37:25 -0400380 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
dea31012005-04-17 16:05:31 -0500381 if (rc == MBX_NOT_FINISHED) {
James Smart92d7f7b2007-06-17 19:56:38 -0500382 mempool_free(mbox, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -0500383 goto out;
384 }
385
James Smart2e0fef82007-06-17 19:56:36 -0500386 lpfc_can_disctmo(vport);
dea31012005-04-17 16:05:31 -0500387 }
388 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
James Smart2e0fef82007-06-17 19:56:36 -0500389 if (!mbox)
dea31012005-04-17 16:05:31 -0500390 goto out;
391
James Smart6b5151f2012-01-18 16:24:06 -0500392 /* Registering an existing RPI behaves differently for SLI3 vs SLI4 */
393 if (phba->sli_rev == LPFC_SLI_REV4)
394 lpfc_unreg_rpi(vport, ndlp);
395
James Smart6fb120a2009-05-22 14:52:59 -0400396 rc = lpfc_reg_rpi(phba, vport->vpi, icmd->un.rcvels.remoteID,
James Smart40426292010-12-15 17:58:10 -0500397 (uint8_t *) sp, mbox, ndlp->nlp_rpi);
James Smart2e0fef82007-06-17 19:56:36 -0500398 if (rc) {
399 mempool_free(mbox, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -0500400 goto out;
401 }
402
403 /* ACC PLOGI rsp command needs to execute first,
404 * queue this mbox command to be processed later.
405 */
406 mbox->mbox_cmpl = lpfc_mbx_cmpl_reg_login;
James Smart329f9bc2007-04-25 09:53:01 -0400407 /*
408 * mbox->context2 = lpfc_nlp_get(ndlp) deferred until mailbox
409 * command issued in lpfc_cmpl_els_acc().
410 */
James Smart2e0fef82007-06-17 19:56:36 -0500411 mbox->vport = vport;
412 spin_lock_irq(shost->host_lock);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -0500413 ndlp->nlp_flag |= (NLP_ACC_REGLOGIN | NLP_RCV_PLOGI);
James Smart2e0fef82007-06-17 19:56:36 -0500414 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500415
James Smart33ccf8d2006-08-17 11:57:58 -0400416 /*
417 * If there is an outstanding PLOGI issued, abort it before
418 * sending ACC rsp for received PLOGI. If pending plogi
419 * is not canceled here, the plogi will be rejected by
420 * remote port and will be retried. On a configuration with
421 * single discovery thread, this will cause a huge delay in
422 * discovery. Also this will cause multiple state machines
423 * running in parallel for this node.
424 */
425 if (ndlp->nlp_state == NLP_STE_PLOGI_ISSUE) {
426 /* software abort outstanding PLOGI */
James Smart07951072007-04-25 09:51:38 -0400427 lpfc_els_abort(phba, ndlp);
James Smart33ccf8d2006-08-17 11:57:58 -0400428 }
429
James Smart858c9f62007-06-17 19:56:39 -0500430 if ((vport->port_type == LPFC_NPIV_PORT &&
James Smart3de2a652007-08-02 11:09:59 -0400431 vport->cfg_restrict_login)) {
James Smart858c9f62007-06-17 19:56:39 -0500432
433 /* In order to preserve RPIs, we want to cleanup
434 * the default RPI the firmware created to rcv
435 * this ELS request. The only way to do this is
436 * to register, then unregister the RPI.
437 */
438 spin_lock_irq(shost->host_lock);
439 ndlp->nlp_flag |= NLP_RM_DFLT_RPI;
440 spin_unlock_irq(shost->host_lock);
441 stat.un.b.lsRjtRsnCode = LSRJT_INVALID_CMD;
442 stat.un.b.lsRjtRsnCodeExp = LSEXP_NOTHING_MORE;
James Smart0a8a86f2012-03-01 22:36:15 -0500443 rc = lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb,
James Smart858c9f62007-06-17 19:56:39 -0500444 ndlp, mbox);
James Smart0a8a86f2012-03-01 22:36:15 -0500445 if (rc)
446 mempool_free(mbox, phba->mbox_mem_pool);
James Smart858c9f62007-06-17 19:56:39 -0500447 return 1;
448 }
James Smart0a8a86f2012-03-01 22:36:15 -0500449 rc = lpfc_els_rsp_acc(vport, ELS_CMD_PLOGI, cmdiocb, ndlp, mbox);
450 if (rc)
451 mempool_free(mbox, phba->mbox_mem_pool);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -0500452 return 1;
dea31012005-04-17 16:05:31 -0500453out:
454 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
455 stat.un.b.lsRjtRsnCodeExp = LSEXP_OUT_OF_RESOURCE;
James Smart858c9f62007-06-17 19:56:39 -0500456 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -0500457 return 0;
dea31012005-04-17 16:05:31 -0500458}
459
James Smart6b5151f2012-01-18 16:24:06 -0500460/**
461 * lpfc_mbx_cmpl_resume_rpi - Resume RPI completion routine
462 * @phba: pointer to lpfc hba data structure.
463 * @mboxq: pointer to mailbox object
464 *
465 * This routine is invoked to issue a completion to a rcv'ed
466 * ADISC or PDISC after the paused RPI has been resumed.
467 **/
468static void
469lpfc_mbx_cmpl_resume_rpi(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
470{
471 struct lpfc_vport *vport;
472 struct lpfc_iocbq *elsiocb;
473 struct lpfc_nodelist *ndlp;
474 uint32_t cmd;
475
476 elsiocb = (struct lpfc_iocbq *)mboxq->context1;
477 ndlp = (struct lpfc_nodelist *) mboxq->context2;
478 vport = mboxq->vport;
479 cmd = elsiocb->drvrTimeout;
480
481 if (cmd == ELS_CMD_ADISC) {
482 lpfc_els_rsp_adisc_acc(vport, elsiocb, ndlp);
483 } else {
484 lpfc_els_rsp_acc(vport, ELS_CMD_PLOGI, elsiocb,
485 ndlp, NULL);
486 }
487 kfree(elsiocb);
James Smart72859902012-01-18 16:25:38 -0500488 mempool_free(mboxq, phba->mbox_mem_pool);
James Smart6b5151f2012-01-18 16:24:06 -0500489}
490
dea31012005-04-17 16:05:31 -0500491static int
James Smart2e0fef82007-06-17 19:56:36 -0500492lpfc_rcv_padisc(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
dea31012005-04-17 16:05:31 -0500493 struct lpfc_iocbq *cmdiocb)
494{
James Smart2e0fef82007-06-17 19:56:36 -0500495 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart6b5151f2012-01-18 16:24:06 -0500496 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -0500497 struct lpfc_dmabuf *pcmd;
James Smart2e0fef82007-06-17 19:56:36 -0500498 struct serv_parm *sp;
499 struct lpfc_name *pnn, *ppn;
dea31012005-04-17 16:05:31 -0500500 struct ls_rjt stat;
501 ADISC *ap;
502 IOCB_t *icmd;
503 uint32_t *lp;
504 uint32_t cmd;
505
506 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
507 lp = (uint32_t *) pcmd->virt;
508
509 cmd = *lp++;
510 if (cmd == ELS_CMD_ADISC) {
511 ap = (ADISC *) lp;
512 pnn = (struct lpfc_name *) & ap->nodeName;
513 ppn = (struct lpfc_name *) & ap->portName;
514 } else {
515 sp = (struct serv_parm *) lp;
516 pnn = (struct lpfc_name *) & sp->nodeName;
517 ppn = (struct lpfc_name *) & sp->portName;
518 }
519
520 icmd = &cmdiocb->iocb;
James Smart2e0fef82007-06-17 19:56:36 -0500521 if (icmd->ulpStatus == 0 && lpfc_check_adisc(vport, ndlp, pnn, ppn)) {
James Smart6b5151f2012-01-18 16:24:06 -0500522
523 /*
524 * As soon as we send ACC, the remote NPort can
525 * start sending us data. Thus, for SLI4 we must
526 * resume the RPI before the ACC goes out.
527 */
528 if (vport->phba->sli_rev == LPFC_SLI_REV4) {
529 elsiocb = kmalloc(sizeof(struct lpfc_iocbq),
530 GFP_KERNEL);
531 if (elsiocb) {
532
533 /* Save info from cmd IOCB used in rsp */
534 memcpy((uint8_t *)elsiocb, (uint8_t *)cmdiocb,
535 sizeof(struct lpfc_iocbq));
536
537 /* Save the ELS cmd */
538 elsiocb->drvrTimeout = cmd;
539
540 lpfc_sli4_resume_rpi(ndlp,
541 lpfc_mbx_cmpl_resume_rpi, elsiocb);
542 goto out;
543 }
544 }
545
dea31012005-04-17 16:05:31 -0500546 if (cmd == ELS_CMD_ADISC) {
James Smart2e0fef82007-06-17 19:56:36 -0500547 lpfc_els_rsp_adisc_acc(vport, cmdiocb, ndlp);
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -0500548 } else {
James Smart6b5151f2012-01-18 16:24:06 -0500549 lpfc_els_rsp_acc(vport, ELS_CMD_PLOGI, cmdiocb,
550 ndlp, NULL);
dea31012005-04-17 16:05:31 -0500551 }
James Smart6b5151f2012-01-18 16:24:06 -0500552out:
553 /* If we are authenticated, move to the proper state */
554 if (ndlp->nlp_type & NLP_FCP_TARGET)
555 lpfc_nlp_set_state(vport, ndlp, NLP_STE_MAPPED_NODE);
556 else
557 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
558
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -0500559 return 1;
dea31012005-04-17 16:05:31 -0500560 }
561 /* Reject this request because invalid parameters */
562 stat.un.b.lsRjtRsvd0 = 0;
563 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
564 stat.un.b.lsRjtRsnCodeExp = LSEXP_SPARM_OPTIONS;
565 stat.un.b.vendorUnique = 0;
James Smart858c9f62007-06-17 19:56:39 -0500566 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
dea31012005-04-17 16:05:31 -0500567
dea31012005-04-17 16:05:31 -0500568 /* 1 sec timeout */
569 mod_timer(&ndlp->nlp_delayfunc, jiffies + HZ);
570
James Smart2e0fef82007-06-17 19:56:36 -0500571 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500572 ndlp->nlp_flag |= NLP_DELAY_TMO;
James Smart2e0fef82007-06-17 19:56:36 -0500573 spin_unlock_irq(shost->host_lock);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -0500574 ndlp->nlp_last_elscmd = ELS_CMD_PLOGI;
575 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -0500576 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -0500577 return 0;
dea31012005-04-17 16:05:31 -0500578}
579
580static int
James Smart2e0fef82007-06-17 19:56:36 -0500581lpfc_rcv_logo(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
582 struct lpfc_iocbq *cmdiocb, uint32_t els_cmd)
dea31012005-04-17 16:05:31 -0500583{
James Smart2e0fef82007-06-17 19:56:36 -0500584 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart4b40c592010-03-15 11:25:44 -0400585 struct lpfc_hba *phba = vport->phba;
586 struct lpfc_vport **vports;
587 int i, active_vlink_present = 0 ;
James Smart2e0fef82007-06-17 19:56:36 -0500588
589 /* Put ndlp in NPR state with 1 sec timeout for plogi, ACC logo */
dea31012005-04-17 16:05:31 -0500590 /* Only call LOGO ACC for first LOGO, this avoids sending unnecessary
591 * PLOGIs during LOGO storms from a device.
592 */
James Smart2e0fef82007-06-17 19:56:36 -0500593 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500594 ndlp->nlp_flag |= NLP_LOGO_ACC;
James Smart2e0fef82007-06-17 19:56:36 -0500595 spin_unlock_irq(shost->host_lock);
James Smart82d9a2a2006-04-15 11:53:05 -0400596 if (els_cmd == ELS_CMD_PRLO)
James Smart51ef4c22007-08-02 11:10:31 -0400597 lpfc_els_rsp_acc(vport, ELS_CMD_PRLO, cmdiocb, ndlp, NULL);
James Smart82d9a2a2006-04-15 11:53:05 -0400598 else
James Smart51ef4c22007-08-02 11:10:31 -0400599 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
James Smart4b40c592010-03-15 11:25:44 -0400600 if (ndlp->nlp_DID == Fabric_DID) {
601 if (vport->port_state <= LPFC_FDISC)
602 goto out;
James Smart6fb120a2009-05-22 14:52:59 -0400603 lpfc_linkdown_port(vport);
James Smart6fb120a2009-05-22 14:52:59 -0400604 spin_lock_irq(shost->host_lock);
James Smart4b40c592010-03-15 11:25:44 -0400605 vport->fc_flag |= FC_VPORT_LOGO_RCVD;
James Smart6fb120a2009-05-22 14:52:59 -0400606 spin_unlock_irq(shost->host_lock);
James Smart4b40c592010-03-15 11:25:44 -0400607 vports = lpfc_create_vport_work_array(phba);
608 if (vports) {
609 for (i = 0; i <= phba->max_vports && vports[i] != NULL;
610 i++) {
611 if ((!(vports[i]->fc_flag &
612 FC_VPORT_LOGO_RCVD)) &&
613 (vports[i]->port_state > LPFC_FDISC)) {
614 active_vlink_present = 1;
615 break;
616 }
617 }
618 lpfc_destroy_vport_work_array(phba, vports);
619 }
dea31012005-04-17 16:05:31 -0500620
James Smart4b40c592010-03-15 11:25:44 -0400621 if (active_vlink_present) {
622 /*
623 * If there are other active VLinks present,
624 * re-instantiate the Vlink using FDISC.
625 */
626 mod_timer(&ndlp->nlp_delayfunc, jiffies + HZ);
627 spin_lock_irq(shost->host_lock);
628 ndlp->nlp_flag |= NLP_DELAY_TMO;
629 spin_unlock_irq(shost->host_lock);
630 ndlp->nlp_last_elscmd = ELS_CMD_FDISC;
631 vport->port_state = LPFC_FDISC;
632 } else {
633 spin_lock_irq(shost->host_lock);
634 phba->pport->fc_flag &= ~FC_LOGO_RCVD_DID_CHNG;
635 spin_unlock_irq(shost->host_lock);
636 lpfc_retry_pport_discovery(phba);
637 }
James Smart6fb120a2009-05-22 14:52:59 -0400638 } else if ((!(ndlp->nlp_type & NLP_FABRIC) &&
639 ((ndlp->nlp_type & NLP_FCP_TARGET) ||
640 !(ndlp->nlp_type & NLP_FCP_INITIATOR))) ||
641 (ndlp->nlp_state == NLP_STE_ADISC_ISSUE)) {
dea31012005-04-17 16:05:31 -0500642 /* Only try to re-login if this is NOT a Fabric Node */
dea31012005-04-17 16:05:31 -0500643 mod_timer(&ndlp->nlp_delayfunc, jiffies + HZ * 1);
James Smart2e0fef82007-06-17 19:56:36 -0500644 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500645 ndlp->nlp_flag |= NLP_DELAY_TMO;
James Smart2e0fef82007-06-17 19:56:36 -0500646 spin_unlock_irq(shost->host_lock);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -0500647
Jamie Wellnitz5024ab12006-02-28 19:25:28 -0500648 ndlp->nlp_last_elscmd = ELS_CMD_PLOGI;
dea31012005-04-17 16:05:31 -0500649 }
James Smart4b40c592010-03-15 11:25:44 -0400650out:
James Smart87af33f2007-10-27 13:37:43 -0400651 ndlp->nlp_prev_state = ndlp->nlp_state;
652 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
dea31012005-04-17 16:05:31 -0500653
James Smart2e0fef82007-06-17 19:56:36 -0500654 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500655 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
James Smart2e0fef82007-06-17 19:56:36 -0500656 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500657 /* The driver has to wait until the ACC completes before it continues
658 * processing the LOGO. The action will resume in
659 * lpfc_cmpl_els_logo_acc routine. Since part of processing includes an
660 * unreg_login, the driver waits so the ACC does not get aborted.
661 */
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -0500662 return 0;
dea31012005-04-17 16:05:31 -0500663}
664
665static void
James Smart2e0fef82007-06-17 19:56:36 -0500666lpfc_rcv_prli(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
667 struct lpfc_iocbq *cmdiocb)
dea31012005-04-17 16:05:31 -0500668{
669 struct lpfc_dmabuf *pcmd;
670 uint32_t *lp;
671 PRLI *npr;
672 struct fc_rport *rport = ndlp->rport;
673 u32 roles;
674
675 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
676 lp = (uint32_t *) pcmd->virt;
677 npr = (PRLI *) ((uint8_t *) lp + sizeof (uint32_t));
678
679 ndlp->nlp_type &= ~(NLP_FCP_TARGET | NLP_FCP_INITIATOR);
680 ndlp->nlp_fcp_info &= ~NLP_FCP_2_DEVICE;
James Smart92d7f7b2007-06-17 19:56:38 -0500681 if (npr->prliType == PRLI_FCP_TYPE) {
dea31012005-04-17 16:05:31 -0500682 if (npr->initiatorFunc)
683 ndlp->nlp_type |= NLP_FCP_INITIATOR;
684 if (npr->targetFunc)
685 ndlp->nlp_type |= NLP_FCP_TARGET;
686 if (npr->Retry)
687 ndlp->nlp_fcp_info |= NLP_FCP_2_DEVICE;
688 }
689 if (rport) {
690 /* We need to update the rport role values */
691 roles = FC_RPORT_ROLE_UNKNOWN;
692 if (ndlp->nlp_type & NLP_FCP_INITIATOR)
693 roles |= FC_RPORT_ROLE_FCP_INITIATOR;
694 if (ndlp->nlp_type & NLP_FCP_TARGET)
695 roles |= FC_RPORT_ROLE_FCP_TARGET;
James Smart858c9f62007-06-17 19:56:39 -0500696
697 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_RPORT,
698 "rport rolechg: role:x%x did:x%x flg:x%x",
699 roles, ndlp->nlp_DID, ndlp->nlp_flag);
700
dea31012005-04-17 16:05:31 -0500701 fc_remote_port_rolechg(rport, roles);
702 }
703}
704
705static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500706lpfc_disc_set_adisc(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -0500707{
James Smart2e0fef82007-06-17 19:56:36 -0500708 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart2e0fef82007-06-17 19:56:36 -0500709
James Smart40426292010-12-15 17:58:10 -0500710 if (!(ndlp->nlp_flag & NLP_RPI_REGISTERED)) {
James Smart51ef4c22007-08-02 11:10:31 -0400711 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
712 return 0;
713 }
714
James Smart1b32f6a2008-02-08 18:49:39 -0500715 if (!(vport->fc_flag & FC_PT2PT)) {
716 /* Check config parameter use-adisc or FCP-2 */
717 if ((vport->cfg_use_adisc && (vport->fc_flag & FC_RSCN_MODE)) ||
James Smartffc95492010-06-07 15:23:17 -0400718 ((ndlp->nlp_fcp_info & NLP_FCP_2_DEVICE) &&
719 (ndlp->nlp_type & NLP_FCP_TARGET))) {
James Smart1b32f6a2008-02-08 18:49:39 -0500720 spin_lock_irq(shost->host_lock);
721 ndlp->nlp_flag |= NLP_NPR_ADISC;
722 spin_unlock_irq(shost->host_lock);
723 return 1;
724 }
James Smart92d7f7b2007-06-17 19:56:38 -0500725 }
726 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
727 lpfc_unreg_rpi(vport, ndlp);
728 return 0;
dea31012005-04-17 16:05:31 -0500729}
James Smart6d368e52011-05-24 11:44:12 -0400730
James Smart78730cf2010-04-06 15:06:30 -0400731/**
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300732 * lpfc_release_rpi - Release a RPI by issuing unreg_login mailbox cmd.
James Smart78730cf2010-04-06 15:06:30 -0400733 * @phba : Pointer to lpfc_hba structure.
734 * @vport: Pointer to lpfc_vport structure.
735 * @rpi : rpi to be release.
736 *
737 * This function will send a unreg_login mailbox command to the firmware
738 * to release a rpi.
739 **/
740void
741lpfc_release_rpi(struct lpfc_hba *phba,
742 struct lpfc_vport *vport,
743 uint16_t rpi)
744{
745 LPFC_MBOXQ_t *pmb;
746 int rc;
747
748 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool,
749 GFP_KERNEL);
750 if (!pmb)
751 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
752 "2796 mailbox memory allocation failed \n");
753 else {
754 lpfc_unreg_login(phba, vport->vpi, rpi, pmb);
755 pmb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
756 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
757 if (rc == MBX_NOT_FINISHED)
758 mempool_free(pmb, phba->mbox_mem_pool);
759 }
760}
dea31012005-04-17 16:05:31 -0500761
762static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500763lpfc_disc_illegal(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
764 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -0500765{
James Smart78730cf2010-04-06 15:06:30 -0400766 struct lpfc_hba *phba;
767 LPFC_MBOXQ_t *pmb = (LPFC_MBOXQ_t *) arg;
768 MAILBOX_t *mb;
769 uint16_t rpi;
770
771 phba = vport->phba;
772 /* Release the RPI if reglogin completing */
773 if (!(phba->pport->load_flag & FC_UNLOADING) &&
774 (evt == NLP_EVT_CMPL_REG_LOGIN) &&
775 (!pmb->u.mb.mbxStatus)) {
776 mb = &pmb->u.mb;
777 rpi = pmb->u.mb.un.varWords[0];
778 lpfc_release_rpi(phba, vport, rpi);
779 }
James Smarte8b62012007-08-02 11:10:09 -0400780 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
James Smarte47c9092008-02-08 18:49:26 -0500781 "0271 Illegal State Transition: node x%x "
James Smarte8b62012007-08-02 11:10:09 -0400782 "event x%x, state x%x Data: x%x x%x\n",
783 ndlp->nlp_DID, evt, ndlp->nlp_state, ndlp->nlp_rpi,
784 ndlp->nlp_flag);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -0500785 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -0500786}
787
James Smart87af33f2007-10-27 13:37:43 -0400788static uint32_t
789lpfc_cmpl_plogi_illegal(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
790 void *arg, uint32_t evt)
791{
792 /* This transition is only legal if we previously
793 * rcv'ed a PLOGI. Since we don't want 2 discovery threads
794 * working on the same NPortID, do nothing for this thread
795 * to stop it.
796 */
797 if (!(ndlp->nlp_flag & NLP_RCV_PLOGI)) {
798 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
James Smarte47c9092008-02-08 18:49:26 -0500799 "0272 Illegal State Transition: node x%x "
James Smart87af33f2007-10-27 13:37:43 -0400800 "event x%x, state x%x Data: x%x x%x\n",
801 ndlp->nlp_DID, evt, ndlp->nlp_state, ndlp->nlp_rpi,
802 ndlp->nlp_flag);
803 }
804 return ndlp->nlp_state;
805}
806
dea31012005-04-17 16:05:31 -0500807/* Start of Discovery State Machine routines */
808
809static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500810lpfc_rcv_plogi_unused_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
811 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -0500812{
813 struct lpfc_iocbq *cmdiocb;
814
815 cmdiocb = (struct lpfc_iocbq *) arg;
816
James Smart2e0fef82007-06-17 19:56:36 -0500817 if (lpfc_rcv_plogi(vport, ndlp, cmdiocb)) {
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -0500818 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -0500819 }
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -0500820 return NLP_STE_FREED_NODE;
dea31012005-04-17 16:05:31 -0500821}
822
823static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500824lpfc_rcv_els_unused_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
825 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -0500826{
James Smart2e0fef82007-06-17 19:56:36 -0500827 lpfc_issue_els_logo(vport, ndlp, 0);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -0500828 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -0500829}
830
831static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500832lpfc_rcv_logo_unused_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
833 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -0500834{
James Smart2e0fef82007-06-17 19:56:36 -0500835 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
836 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -0500837
James Smart2e0fef82007-06-17 19:56:36 -0500838 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500839 ndlp->nlp_flag |= NLP_LOGO_ACC;
James Smart2e0fef82007-06-17 19:56:36 -0500840 spin_unlock_irq(shost->host_lock);
James Smart51ef4c22007-08-02 11:10:31 -0400841 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
dea31012005-04-17 16:05:31 -0500842
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -0500843 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -0500844}
845
846static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500847lpfc_cmpl_logo_unused_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
dea31012005-04-17 16:05:31 -0500848 void *arg, uint32_t evt)
849{
James Smart2e0fef82007-06-17 19:56:36 -0500850 return NLP_STE_FREED_NODE;
851}
852
853static uint32_t
854lpfc_device_rm_unused_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
855 void *arg, uint32_t evt)
856{
James Smart2e0fef82007-06-17 19:56:36 -0500857 return NLP_STE_FREED_NODE;
858}
859
860static uint32_t
James Smartdf9e1b52011-12-13 13:22:17 -0500861lpfc_device_recov_unused_node(struct lpfc_vport *vport,
862 struct lpfc_nodelist *ndlp,
863 void *arg, uint32_t evt)
864{
865 return ndlp->nlp_state;
866}
867
868static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500869lpfc_rcv_plogi_plogi_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
870 void *arg, uint32_t evt)
871{
James Smart0d2b6b82008-06-14 22:52:47 -0400872 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart2e0fef82007-06-17 19:56:36 -0500873 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -0500874 struct lpfc_iocbq *cmdiocb = arg;
James Smart2e0fef82007-06-17 19:56:36 -0500875 struct lpfc_dmabuf *pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
876 uint32_t *lp = (uint32_t *) pcmd->virt;
877 struct serv_parm *sp = (struct serv_parm *) (lp + 1);
dea31012005-04-17 16:05:31 -0500878 struct ls_rjt stat;
879 int port_cmp;
880
dea31012005-04-17 16:05:31 -0500881 memset(&stat, 0, sizeof (struct ls_rjt));
882
883 /* For a PLOGI, we only accept if our portname is less
884 * than the remote portname.
885 */
886 phba->fc_stat.elsLogiCol++;
James Smart2e0fef82007-06-17 19:56:36 -0500887 port_cmp = memcmp(&vport->fc_portname, &sp->portName,
James Smart92d7f7b2007-06-17 19:56:38 -0500888 sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -0500889
890 if (port_cmp >= 0) {
891 /* Reject this request because the remote node will accept
892 ours */
893 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
894 stat.un.b.lsRjtRsnCodeExp = LSEXP_CMD_IN_PROGRESS;
James Smart858c9f62007-06-17 19:56:39 -0500895 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp,
896 NULL);
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -0500897 } else {
James Smart0d2b6b82008-06-14 22:52:47 -0400898 if (lpfc_rcv_plogi(vport, ndlp, cmdiocb) &&
899 (ndlp->nlp_flag & NLP_NPR_2B_DISC) &&
900 (vport->num_disc_nodes)) {
901 spin_lock_irq(shost->host_lock);
902 ndlp->nlp_flag &= ~NLP_NPR_2B_DISC;
903 spin_unlock_irq(shost->host_lock);
904 /* Check if there are more PLOGIs to be sent */
905 lpfc_more_plogi(vport);
906 if (vport->num_disc_nodes == 0) {
907 spin_lock_irq(shost->host_lock);
908 vport->fc_flag &= ~FC_NDISC_ACTIVE;
909 spin_unlock_irq(shost->host_lock);
910 lpfc_can_disctmo(vport);
911 lpfc_end_rscn(vport);
912 }
913 }
James Smart2e0fef82007-06-17 19:56:36 -0500914 } /* If our portname was less */
dea31012005-04-17 16:05:31 -0500915
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -0500916 return ndlp->nlp_state;
917}
918
919static uint32_t
James Smart92d7f7b2007-06-17 19:56:38 -0500920lpfc_rcv_prli_plogi_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
921 void *arg, uint32_t evt)
922{
923 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
924 struct ls_rjt stat;
925
926 memset(&stat, 0, sizeof (struct ls_rjt));
927 stat.un.b.lsRjtRsnCode = LSRJT_LOGICAL_BSY;
928 stat.un.b.lsRjtRsnCodeExp = LSEXP_NOTHING_MORE;
James Smart858c9f62007-06-17 19:56:39 -0500929 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
James Smart92d7f7b2007-06-17 19:56:38 -0500930 return ndlp->nlp_state;
931}
932
933static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500934lpfc_rcv_logo_plogi_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
935 void *arg, uint32_t evt)
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -0500936{
James Smart2e0fef82007-06-17 19:56:36 -0500937 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -0500938
James Smart92d7f7b2007-06-17 19:56:38 -0500939 /* software abort outstanding PLOGI */
James Smart2e0fef82007-06-17 19:56:36 -0500940 lpfc_els_abort(vport->phba, ndlp);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -0500941
James Smart2e0fef82007-06-17 19:56:36 -0500942 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_LOGO);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -0500943 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -0500944}
945
946static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500947lpfc_rcv_els_plogi_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
948 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -0500949{
James Smart2e0fef82007-06-17 19:56:36 -0500950 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
951 struct lpfc_hba *phba = vport->phba;
952 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -0500953
954 /* software abort outstanding PLOGI */
James Smart07951072007-04-25 09:51:38 -0400955 lpfc_els_abort(phba, ndlp);
dea31012005-04-17 16:05:31 -0500956
957 if (evt == NLP_EVT_RCV_LOGO) {
James Smart51ef4c22007-08-02 11:10:31 -0400958 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -0500959 } else {
James Smart2e0fef82007-06-17 19:56:36 -0500960 lpfc_issue_els_logo(vport, ndlp, 0);
dea31012005-04-17 16:05:31 -0500961 }
962
James Smart2e0fef82007-06-17 19:56:36 -0500963 /* Put ndlp in npr state set plogi timer for 1 sec */
Jamie Wellnitz5024ab12006-02-28 19:25:28 -0500964 mod_timer(&ndlp->nlp_delayfunc, jiffies + HZ * 1);
James Smart2e0fef82007-06-17 19:56:36 -0500965 spin_lock_irq(shost->host_lock);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -0500966 ndlp->nlp_flag |= NLP_DELAY_TMO;
James Smart2e0fef82007-06-17 19:56:36 -0500967 spin_unlock_irq(shost->host_lock);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -0500968 ndlp->nlp_last_elscmd = ELS_CMD_PLOGI;
969 ndlp->nlp_prev_state = NLP_STE_PLOGI_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -0500970 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
dea31012005-04-17 16:05:31 -0500971
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -0500972 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -0500973}
974
975static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -0500976lpfc_cmpl_plogi_plogi_issue(struct lpfc_vport *vport,
977 struct lpfc_nodelist *ndlp,
978 void *arg,
dea31012005-04-17 16:05:31 -0500979 uint32_t evt)
980{
James Smart2e0fef82007-06-17 19:56:36 -0500981 struct lpfc_hba *phba = vport->phba;
James Smart0ff10d42008-01-11 01:52:36 -0500982 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart2e0fef82007-06-17 19:56:36 -0500983 struct lpfc_iocbq *cmdiocb, *rspiocb;
James Smart14691152006-12-02 13:34:28 -0500984 struct lpfc_dmabuf *pcmd, *prsp, *mp;
dea31012005-04-17 16:05:31 -0500985 uint32_t *lp;
986 IOCB_t *irsp;
987 struct serv_parm *sp;
988 LPFC_MBOXQ_t *mbox;
989
990 cmdiocb = (struct lpfc_iocbq *) arg;
991 rspiocb = cmdiocb->context_un.rsp_iocb;
992
993 if (ndlp->nlp_flag & NLP_ACC_REGLOGIN) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -0500994 /* Recovery from PLOGI collision logic */
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -0500995 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -0500996 }
997
998 irsp = &rspiocb->iocb;
999
1000 if (irsp->ulpStatus)
1001 goto out;
1002
1003 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
1004
James Smart2e0fef82007-06-17 19:56:36 -05001005 prsp = list_get_first(&pcmd->list, struct lpfc_dmabuf, list);
dea31012005-04-17 16:05:31 -05001006
James Smart2e0fef82007-06-17 19:56:36 -05001007 lp = (uint32_t *) prsp->virt;
dea31012005-04-17 16:05:31 -05001008 sp = (struct serv_parm *) ((uint8_t *) lp + sizeof (uint32_t));
James Smart58da1ff2008-04-07 10:15:56 -04001009
1010 /* Some switches have FDMI servers returning 0 for WWN */
1011 if ((ndlp->nlp_DID != FDMI_DID) &&
1012 (wwn_to_u64(sp->portName.u.wwn) == 0 ||
1013 wwn_to_u64(sp->nodeName.u.wwn) == 0)) {
James Smarta8adb832007-10-27 13:37:53 -04001014 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
1015 "0142 PLOGI RSP: Invalid WWN.\n");
1016 goto out;
1017 }
James Smart341af102010-01-26 23:07:37 -05001018 if (!lpfc_check_sparm(vport, ndlp, sp, CLASS3, 0))
dea31012005-04-17 16:05:31 -05001019 goto out;
dea31012005-04-17 16:05:31 -05001020 /* PLOGI chkparm OK */
James Smarte8b62012007-08-02 11:10:09 -04001021 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
1022 "0121 PLOGI chkparm OK Data: x%x x%x x%x x%x\n",
1023 ndlp->nlp_DID, ndlp->nlp_state,
1024 ndlp->nlp_flag, ndlp->nlp_rpi);
James Smart3de2a652007-08-02 11:09:59 -04001025 if (vport->cfg_fcp_class == 2 && (sp->cls2.classValid))
dea31012005-04-17 16:05:31 -05001026 ndlp->nlp_fcp_info |= CLASS2;
James Smart2e0fef82007-06-17 19:56:36 -05001027 else
dea31012005-04-17 16:05:31 -05001028 ndlp->nlp_fcp_info |= CLASS3;
James Smart2e0fef82007-06-17 19:56:36 -05001029
dea31012005-04-17 16:05:31 -05001030 ndlp->nlp_class_sup = 0;
1031 if (sp->cls1.classValid)
1032 ndlp->nlp_class_sup |= FC_COS_CLASS1;
1033 if (sp->cls2.classValid)
1034 ndlp->nlp_class_sup |= FC_COS_CLASS2;
1035 if (sp->cls3.classValid)
1036 ndlp->nlp_class_sup |= FC_COS_CLASS3;
1037 if (sp->cls4.classValid)
1038 ndlp->nlp_class_sup |= FC_COS_CLASS4;
1039 ndlp->nlp_maxframe =
James Smart2e0fef82007-06-17 19:56:36 -05001040 ((sp->cmn.bbRcvSizeMsb & 0x0F) << 8) | sp->cmn.bbRcvSizeLsb;
dea31012005-04-17 16:05:31 -05001041
James Smart2e0fef82007-06-17 19:56:36 -05001042 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
James Smart92d7f7b2007-06-17 19:56:38 -05001043 if (!mbox) {
James Smarte8b62012007-08-02 11:10:09 -04001044 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
1045 "0133 PLOGI: no memory for reg_login "
James Smart92d7f7b2007-06-17 19:56:38 -05001046 "Data: x%x x%x x%x x%x\n",
James Smart92d7f7b2007-06-17 19:56:38 -05001047 ndlp->nlp_DID, ndlp->nlp_state,
1048 ndlp->nlp_flag, ndlp->nlp_rpi);
dea31012005-04-17 16:05:31 -05001049 goto out;
James Smart92d7f7b2007-06-17 19:56:38 -05001050 }
dea31012005-04-17 16:05:31 -05001051
James Smart2e0fef82007-06-17 19:56:36 -05001052 lpfc_unreg_rpi(vport, ndlp);
1053
James Smart6fb120a2009-05-22 14:52:59 -04001054 if (lpfc_reg_rpi(phba, vport->vpi, irsp->un.elsreq64.remoteID,
James Smart40426292010-12-15 17:58:10 -05001055 (uint8_t *) sp, mbox, ndlp->nlp_rpi) == 0) {
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05001056 switch (ndlp->nlp_DID) {
dea31012005-04-17 16:05:31 -05001057 case NameServer_DID:
James Smartde0c5b32007-04-25 09:52:27 -04001058 mbox->mbox_cmpl = lpfc_mbx_cmpl_ns_reg_login;
dea31012005-04-17 16:05:31 -05001059 break;
1060 case FDMI_DID:
James Smartde0c5b32007-04-25 09:52:27 -04001061 mbox->mbox_cmpl = lpfc_mbx_cmpl_fdmi_reg_login;
dea31012005-04-17 16:05:31 -05001062 break;
1063 default:
James Smartffc95492010-06-07 15:23:17 -04001064 ndlp->nlp_flag |= NLP_REG_LOGIN_SEND;
James Smartde0c5b32007-04-25 09:52:27 -04001065 mbox->mbox_cmpl = lpfc_mbx_cmpl_reg_login;
dea31012005-04-17 16:05:31 -05001066 }
James Smart329f9bc2007-04-25 09:53:01 -04001067 mbox->context2 = lpfc_nlp_get(ndlp);
James Smart2e0fef82007-06-17 19:56:36 -05001068 mbox->vport = vport;
James Smart0b727fe2007-10-27 13:37:25 -04001069 if (lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT)
dea31012005-04-17 16:05:31 -05001070 != MBX_NOT_FINISHED) {
James Smart2e0fef82007-06-17 19:56:36 -05001071 lpfc_nlp_set_state(vport, ndlp,
1072 NLP_STE_REG_LOGIN_ISSUE);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05001073 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001074 }
James Smartffc95492010-06-07 15:23:17 -04001075 if (ndlp->nlp_flag & NLP_REG_LOGIN_SEND)
1076 ndlp->nlp_flag &= ~NLP_REG_LOGIN_SEND;
James Smartfa4066b2008-01-11 01:53:27 -05001077 /* decrement node reference count to the failed mbox
1078 * command
1079 */
James Smart329f9bc2007-04-25 09:53:01 -04001080 lpfc_nlp_put(ndlp);
James Smart92d7f7b2007-06-17 19:56:38 -05001081 mp = (struct lpfc_dmabuf *) mbox->context1;
James Smart14691152006-12-02 13:34:28 -05001082 lpfc_mbuf_free(phba, mp->virt, mp->phys);
1083 kfree(mp);
dea31012005-04-17 16:05:31 -05001084 mempool_free(mbox, phba->mbox_mem_pool);
James Smart92d7f7b2007-06-17 19:56:38 -05001085
James Smarte8b62012007-08-02 11:10:09 -04001086 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
1087 "0134 PLOGI: cannot issue reg_login "
1088 "Data: x%x x%x x%x x%x\n",
1089 ndlp->nlp_DID, ndlp->nlp_state,
1090 ndlp->nlp_flag, ndlp->nlp_rpi);
dea31012005-04-17 16:05:31 -05001091 } else {
1092 mempool_free(mbox, phba->mbox_mem_pool);
James Smart92d7f7b2007-06-17 19:56:38 -05001093
James Smarte8b62012007-08-02 11:10:09 -04001094 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
1095 "0135 PLOGI: cannot format reg_login "
1096 "Data: x%x x%x x%x x%x\n",
1097 ndlp->nlp_DID, ndlp->nlp_state,
1098 ndlp->nlp_flag, ndlp->nlp_rpi);
dea31012005-04-17 16:05:31 -05001099 }
1100
1101
James Smart92d7f7b2007-06-17 19:56:38 -05001102out:
1103 if (ndlp->nlp_DID == NameServer_DID) {
1104 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
James Smarte8b62012007-08-02 11:10:09 -04001105 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
1106 "0261 Cannot Register NameServer login\n");
James Smart92d7f7b2007-06-17 19:56:38 -05001107 }
1108
James Smart0ff10d42008-01-11 01:52:36 -05001109 spin_lock_irq(shost->host_lock);
James Smarta8adb832007-10-27 13:37:53 -04001110 ndlp->nlp_flag |= NLP_DEFER_RM;
James Smart0ff10d42008-01-11 01:52:36 -05001111 spin_unlock_irq(shost->host_lock);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05001112 return NLP_STE_FREED_NODE;
dea31012005-04-17 16:05:31 -05001113}
1114
1115static uint32_t
James Smart0ff10d42008-01-11 01:52:36 -05001116lpfc_cmpl_logo_plogi_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1117 void *arg, uint32_t evt)
1118{
1119 return ndlp->nlp_state;
1120}
1121
1122static uint32_t
1123lpfc_cmpl_reglogin_plogi_issue(struct lpfc_vport *vport,
1124 struct lpfc_nodelist *ndlp, void *arg, uint32_t evt)
1125{
James Smart78730cf2010-04-06 15:06:30 -04001126 struct lpfc_hba *phba;
1127 LPFC_MBOXQ_t *pmb = (LPFC_MBOXQ_t *) arg;
1128 MAILBOX_t *mb = &pmb->u.mb;
1129 uint16_t rpi;
1130
1131 phba = vport->phba;
1132 /* Release the RPI */
1133 if (!(phba->pport->load_flag & FC_UNLOADING) &&
1134 !mb->mbxStatus) {
1135 rpi = pmb->u.mb.un.varWords[0];
1136 lpfc_release_rpi(phba, vport, rpi);
1137 }
James Smart0ff10d42008-01-11 01:52:36 -05001138 return ndlp->nlp_state;
1139}
1140
1141static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001142lpfc_device_rm_plogi_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1143 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001144{
James Smart2e0fef82007-06-17 19:56:36 -05001145 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05001146
James Smart2e0fef82007-06-17 19:56:36 -05001147 if (ndlp->nlp_flag & NLP_NPR_2B_DISC) {
1148 spin_lock_irq(shost->host_lock);
1149 ndlp->nlp_flag |= NLP_NODEV_REMOVE;
1150 spin_unlock_irq(shost->host_lock);
1151 return ndlp->nlp_state;
1152 } else {
1153 /* software abort outstanding PLOGI */
1154 lpfc_els_abort(vport->phba, ndlp);
1155
1156 lpfc_drop_node(vport, ndlp);
James Smarta0f9b482006-04-15 11:52:56 -04001157 return NLP_STE_FREED_NODE;
1158 }
dea31012005-04-17 16:05:31 -05001159}
1160
1161static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001162lpfc_device_recov_plogi_issue(struct lpfc_vport *vport,
1163 struct lpfc_nodelist *ndlp,
1164 void *arg,
1165 uint32_t evt)
dea31012005-04-17 16:05:31 -05001166{
James Smart2e0fef82007-06-17 19:56:36 -05001167 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1168 struct lpfc_hba *phba = vport->phba;
1169
James Smart92d7f7b2007-06-17 19:56:38 -05001170 /* Don't do anything that will mess up processing of the
1171 * previous RSCN.
1172 */
1173 if (vport->fc_flag & FC_RSCN_DEFERRED)
1174 return ndlp->nlp_state;
1175
dea31012005-04-17 16:05:31 -05001176 /* software abort outstanding PLOGI */
James Smart07951072007-04-25 09:51:38 -04001177 lpfc_els_abort(phba, ndlp);
dea31012005-04-17 16:05:31 -05001178
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001179 ndlp->nlp_prev_state = NLP_STE_PLOGI_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001180 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
James Smart92d7f7b2007-06-17 19:56:38 -05001181 spin_lock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04001182 ndlp->nlp_flag &= ~(NLP_NODEV_REMOVE | NLP_NPR_2B_DISC);
James Smart2e0fef82007-06-17 19:56:36 -05001183 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001184
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05001185 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001186}
1187
1188static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001189lpfc_rcv_plogi_adisc_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1190 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001191{
James Smart0d2b6b82008-06-14 22:52:47 -04001192 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart2e0fef82007-06-17 19:56:36 -05001193 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05001194 struct lpfc_iocbq *cmdiocb;
1195
1196 /* software abort outstanding ADISC */
James Smart07951072007-04-25 09:51:38 -04001197 lpfc_els_abort(phba, ndlp);
dea31012005-04-17 16:05:31 -05001198
1199 cmdiocb = (struct lpfc_iocbq *) arg;
1200
James Smart0d2b6b82008-06-14 22:52:47 -04001201 if (lpfc_rcv_plogi(vport, ndlp, cmdiocb)) {
1202 if (ndlp->nlp_flag & NLP_NPR_2B_DISC) {
1203 spin_lock_irq(shost->host_lock);
1204 ndlp->nlp_flag &= ~NLP_NPR_2B_DISC;
1205 spin_unlock_irq(shost->host_lock);
James Smart90160e02008-08-24 21:49:45 -04001206 if (vport->num_disc_nodes)
James Smart0d2b6b82008-06-14 22:52:47 -04001207 lpfc_more_adisc(vport);
James Smart0d2b6b82008-06-14 22:52:47 -04001208 }
1209 return ndlp->nlp_state;
1210 }
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001211 ndlp->nlp_prev_state = NLP_STE_ADISC_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001212 lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0);
1213 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
dea31012005-04-17 16:05:31 -05001214
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05001215 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001216}
1217
1218static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001219lpfc_rcv_prli_adisc_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1220 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001221{
James Smart2e0fef82007-06-17 19:56:36 -05001222 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001223
James Smart2e0fef82007-06-17 19:56:36 -05001224 lpfc_els_rsp_prli_acc(vport, cmdiocb, ndlp);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05001225 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001226}
1227
1228static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001229lpfc_rcv_logo_adisc_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1230 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001231{
James Smart2e0fef82007-06-17 19:56:36 -05001232 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05001233 struct lpfc_iocbq *cmdiocb;
1234
1235 cmdiocb = (struct lpfc_iocbq *) arg;
1236
1237 /* software abort outstanding ADISC */
James Smart07951072007-04-25 09:51:38 -04001238 lpfc_els_abort(phba, ndlp);
dea31012005-04-17 16:05:31 -05001239
James Smart2e0fef82007-06-17 19:56:36 -05001240 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_LOGO);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05001241 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001242}
1243
1244static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001245lpfc_rcv_padisc_adisc_issue(struct lpfc_vport *vport,
1246 struct lpfc_nodelist *ndlp,
1247 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001248{
1249 struct lpfc_iocbq *cmdiocb;
1250
1251 cmdiocb = (struct lpfc_iocbq *) arg;
1252
James Smart2e0fef82007-06-17 19:56:36 -05001253 lpfc_rcv_padisc(vport, ndlp, cmdiocb);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05001254 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001255}
1256
1257static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001258lpfc_rcv_prlo_adisc_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1259 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001260{
1261 struct lpfc_iocbq *cmdiocb;
1262
1263 cmdiocb = (struct lpfc_iocbq *) arg;
1264
1265 /* Treat like rcv logo */
James Smart2e0fef82007-06-17 19:56:36 -05001266 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_PRLO);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05001267 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001268}
1269
1270static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001271lpfc_cmpl_adisc_adisc_issue(struct lpfc_vport *vport,
1272 struct lpfc_nodelist *ndlp,
1273 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001274{
James Smart2e0fef82007-06-17 19:56:36 -05001275 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1276 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05001277 struct lpfc_iocbq *cmdiocb, *rspiocb;
1278 IOCB_t *irsp;
1279 ADISC *ap;
James Smart6fb120a2009-05-22 14:52:59 -04001280 int rc;
dea31012005-04-17 16:05:31 -05001281
1282 cmdiocb = (struct lpfc_iocbq *) arg;
1283 rspiocb = cmdiocb->context_un.rsp_iocb;
1284
1285 ap = (ADISC *)lpfc_check_elscmpl_iocb(phba, cmdiocb, rspiocb);
1286 irsp = &rspiocb->iocb;
1287
1288 if ((irsp->ulpStatus) ||
James Smart92d7f7b2007-06-17 19:56:38 -05001289 (!lpfc_check_adisc(vport, ndlp, &ap->nodeName, &ap->portName))) {
dea31012005-04-17 16:05:31 -05001290 /* 1 sec timeout */
1291 mod_timer(&ndlp->nlp_delayfunc, jiffies + HZ);
James Smart2e0fef82007-06-17 19:56:36 -05001292 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001293 ndlp->nlp_flag |= NLP_DELAY_TMO;
James Smart2e0fef82007-06-17 19:56:36 -05001294 spin_unlock_irq(shost->host_lock);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001295 ndlp->nlp_last_elscmd = ELS_CMD_PLOGI;
dea31012005-04-17 16:05:31 -05001296
James Smart2e0fef82007-06-17 19:56:36 -05001297 memset(&ndlp->nlp_nodename, 0, sizeof(struct lpfc_name));
1298 memset(&ndlp->nlp_portname, 0, sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -05001299
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001300 ndlp->nlp_prev_state = NLP_STE_ADISC_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001301 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
1302 lpfc_unreg_rpi(vport, ndlp);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05001303 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001304 }
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001305
James Smart6fb120a2009-05-22 14:52:59 -04001306 if (phba->sli_rev == LPFC_SLI_REV4) {
James Smart6b5151f2012-01-18 16:24:06 -05001307 rc = lpfc_sli4_resume_rpi(ndlp, NULL, NULL);
James Smart6fb120a2009-05-22 14:52:59 -04001308 if (rc) {
1309 /* Stay in state and retry. */
1310 ndlp->nlp_prev_state = NLP_STE_ADISC_ISSUE;
1311 return ndlp->nlp_state;
1312 }
1313 }
1314
James.Smart@Emulex.Com25013222005-06-25 10:34:33 -04001315 if (ndlp->nlp_type & NLP_FCP_TARGET) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001316 ndlp->nlp_prev_state = NLP_STE_ADISC_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001317 lpfc_nlp_set_state(vport, ndlp, NLP_STE_MAPPED_NODE);
James.Smart@Emulex.Com25013222005-06-25 10:34:33 -04001318 } else {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001319 ndlp->nlp_prev_state = NLP_STE_ADISC_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001320 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
James.Smart@Emulex.Com25013222005-06-25 10:34:33 -04001321 }
James Smart6fb120a2009-05-22 14:52:59 -04001322
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05001323 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001324}
1325
1326static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001327lpfc_device_rm_adisc_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1328 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001329{
James Smart2e0fef82007-06-17 19:56:36 -05001330 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05001331
James Smart2e0fef82007-06-17 19:56:36 -05001332 if (ndlp->nlp_flag & NLP_NPR_2B_DISC) {
1333 spin_lock_irq(shost->host_lock);
1334 ndlp->nlp_flag |= NLP_NODEV_REMOVE;
1335 spin_unlock_irq(shost->host_lock);
1336 return ndlp->nlp_state;
1337 } else {
1338 /* software abort outstanding ADISC */
1339 lpfc_els_abort(vport->phba, ndlp);
1340
1341 lpfc_drop_node(vport, ndlp);
James Smarta0f9b482006-04-15 11:52:56 -04001342 return NLP_STE_FREED_NODE;
1343 }
dea31012005-04-17 16:05:31 -05001344}
1345
1346static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001347lpfc_device_recov_adisc_issue(struct lpfc_vport *vport,
1348 struct lpfc_nodelist *ndlp,
1349 void *arg,
1350 uint32_t evt)
dea31012005-04-17 16:05:31 -05001351{
James Smart2e0fef82007-06-17 19:56:36 -05001352 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1353 struct lpfc_hba *phba = vport->phba;
1354
James Smart92d7f7b2007-06-17 19:56:38 -05001355 /* Don't do anything that will mess up processing of the
1356 * previous RSCN.
1357 */
1358 if (vport->fc_flag & FC_RSCN_DEFERRED)
1359 return ndlp->nlp_state;
1360
dea31012005-04-17 16:05:31 -05001361 /* software abort outstanding ADISC */
James Smart07951072007-04-25 09:51:38 -04001362 lpfc_els_abort(phba, ndlp);
dea31012005-04-17 16:05:31 -05001363
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001364 ndlp->nlp_prev_state = NLP_STE_ADISC_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001365 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
1366 spin_lock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04001367 ndlp->nlp_flag &= ~(NLP_NODEV_REMOVE | NLP_NPR_2B_DISC);
James Smart2e0fef82007-06-17 19:56:36 -05001368 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05001369 lpfc_disc_set_adisc(vport, ndlp);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05001370 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001371}
1372
1373static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001374lpfc_rcv_plogi_reglogin_issue(struct lpfc_vport *vport,
1375 struct lpfc_nodelist *ndlp,
1376 void *arg,
dea31012005-04-17 16:05:31 -05001377 uint32_t evt)
1378{
James Smart2e0fef82007-06-17 19:56:36 -05001379 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001380
James Smart2e0fef82007-06-17 19:56:36 -05001381 lpfc_rcv_plogi(vport, ndlp, cmdiocb);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05001382 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001383}
1384
1385static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001386lpfc_rcv_prli_reglogin_issue(struct lpfc_vport *vport,
1387 struct lpfc_nodelist *ndlp,
1388 void *arg,
dea31012005-04-17 16:05:31 -05001389 uint32_t evt)
1390{
James Smart2e0fef82007-06-17 19:56:36 -05001391 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001392
James Smart2e0fef82007-06-17 19:56:36 -05001393 lpfc_els_rsp_prli_acc(vport, cmdiocb, ndlp);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05001394 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001395}
1396
1397static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001398lpfc_rcv_logo_reglogin_issue(struct lpfc_vport *vport,
1399 struct lpfc_nodelist *ndlp,
1400 void *arg,
dea31012005-04-17 16:05:31 -05001401 uint32_t evt)
1402{
James Smart2e0fef82007-06-17 19:56:36 -05001403 struct lpfc_hba *phba = vport->phba;
1404 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
James Smart7054a602007-04-25 09:52:34 -04001405 LPFC_MBOXQ_t *mb;
1406 LPFC_MBOXQ_t *nextmb;
1407 struct lpfc_dmabuf *mp;
dea31012005-04-17 16:05:31 -05001408
1409 cmdiocb = (struct lpfc_iocbq *) arg;
1410
James Smart7054a602007-04-25 09:52:34 -04001411 /* cleanup any ndlp on mbox q waiting for reglogin cmpl */
1412 if ((mb = phba->sli.mbox_active)) {
James Smart04c68492009-05-22 14:52:52 -04001413 if ((mb->u.mb.mbxCommand == MBX_REG_LOGIN64) &&
James Smart7054a602007-04-25 09:52:34 -04001414 (ndlp == (struct lpfc_nodelist *) mb->context2)) {
James Smart92d7f7b2007-06-17 19:56:38 -05001415 lpfc_nlp_put(ndlp);
James Smart7054a602007-04-25 09:52:34 -04001416 mb->context2 = NULL;
1417 mb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
1418 }
1419 }
1420
James Smart2e0fef82007-06-17 19:56:36 -05001421 spin_lock_irq(&phba->hbalock);
James Smart7054a602007-04-25 09:52:34 -04001422 list_for_each_entry_safe(mb, nextmb, &phba->sli.mboxq, list) {
James Smart04c68492009-05-22 14:52:52 -04001423 if ((mb->u.mb.mbxCommand == MBX_REG_LOGIN64) &&
James Smart7054a602007-04-25 09:52:34 -04001424 (ndlp == (struct lpfc_nodelist *) mb->context2)) {
1425 mp = (struct lpfc_dmabuf *) (mb->context1);
1426 if (mp) {
James Smart98c9ea52007-10-27 13:37:33 -04001427 __lpfc_mbuf_free(phba, mp->virt, mp->phys);
James Smart7054a602007-04-25 09:52:34 -04001428 kfree(mp);
1429 }
James Smart92d7f7b2007-06-17 19:56:38 -05001430 lpfc_nlp_put(ndlp);
James Smart7054a602007-04-25 09:52:34 -04001431 list_del(&mb->list);
James Smart5ffc2662009-11-18 15:39:44 -05001432 phba->sli.mboxq_cnt--;
James Smart7054a602007-04-25 09:52:34 -04001433 mempool_free(mb, phba->mbox_mem_pool);
1434 }
1435 }
James Smart2e0fef82007-06-17 19:56:36 -05001436 spin_unlock_irq(&phba->hbalock);
James Smart7054a602007-04-25 09:52:34 -04001437
James Smart2e0fef82007-06-17 19:56:36 -05001438 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_LOGO);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05001439 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001440}
1441
1442static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001443lpfc_rcv_padisc_reglogin_issue(struct lpfc_vport *vport,
1444 struct lpfc_nodelist *ndlp,
1445 void *arg,
dea31012005-04-17 16:05:31 -05001446 uint32_t evt)
1447{
James Smart2e0fef82007-06-17 19:56:36 -05001448 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001449
James Smart2e0fef82007-06-17 19:56:36 -05001450 lpfc_rcv_padisc(vport, ndlp, cmdiocb);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05001451 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001452}
1453
1454static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001455lpfc_rcv_prlo_reglogin_issue(struct lpfc_vport *vport,
1456 struct lpfc_nodelist *ndlp,
1457 void *arg,
dea31012005-04-17 16:05:31 -05001458 uint32_t evt)
1459{
1460 struct lpfc_iocbq *cmdiocb;
1461
1462 cmdiocb = (struct lpfc_iocbq *) arg;
James Smart51ef4c22007-08-02 11:10:31 -04001463 lpfc_els_rsp_acc(vport, ELS_CMD_PRLO, cmdiocb, ndlp, NULL);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05001464 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001465}
1466
1467static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001468lpfc_cmpl_reglogin_reglogin_issue(struct lpfc_vport *vport,
1469 struct lpfc_nodelist *ndlp,
1470 void *arg,
1471 uint32_t evt)
dea31012005-04-17 16:05:31 -05001472{
James Smart2e0fef82007-06-17 19:56:36 -05001473 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart2e0fef82007-06-17 19:56:36 -05001474 LPFC_MBOXQ_t *pmb = (LPFC_MBOXQ_t *) arg;
James Smart04c68492009-05-22 14:52:52 -04001475 MAILBOX_t *mb = &pmb->u.mb;
James Smart2e0fef82007-06-17 19:56:36 -05001476 uint32_t did = mb->un.varWords[1];
dea31012005-04-17 16:05:31 -05001477
dea31012005-04-17 16:05:31 -05001478 if (mb->mbxStatus) {
1479 /* RegLogin failed */
James Smarte8b62012007-08-02 11:10:09 -04001480 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
James Smart6d368e52011-05-24 11:44:12 -04001481 "0246 RegLogin failed Data: x%x x%x x%x x%x "
1482 "x%x\n",
1483 did, mb->mbxStatus, vport->port_state,
1484 mb->un.varRegLogin.vpi,
1485 mb->un.varRegLogin.rpi);
James Smartd0e56da2006-07-06 15:49:42 -04001486 /*
1487 * If RegLogin failed due to lack of HBA resources do not
1488 * retry discovery.
1489 */
1490 if (mb->mbxStatus == MBXERR_RPI_FULL) {
James Smart87af33f2007-10-27 13:37:43 -04001491 ndlp->nlp_prev_state = NLP_STE_REG_LOGIN_ISSUE;
1492 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
James Smartd0e56da2006-07-06 15:49:42 -04001493 return ndlp->nlp_state;
1494 }
1495
James Smart2e0fef82007-06-17 19:56:36 -05001496 /* Put ndlp in npr state set plogi timer for 1 sec */
dea31012005-04-17 16:05:31 -05001497 mod_timer(&ndlp->nlp_delayfunc, jiffies + HZ * 1);
James Smart2e0fef82007-06-17 19:56:36 -05001498 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001499 ndlp->nlp_flag |= NLP_DELAY_TMO;
James Smart2e0fef82007-06-17 19:56:36 -05001500 spin_unlock_irq(shost->host_lock);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001501 ndlp->nlp_last_elscmd = ELS_CMD_PLOGI;
dea31012005-04-17 16:05:31 -05001502
James Smart2e0fef82007-06-17 19:56:36 -05001503 lpfc_issue_els_logo(vport, ndlp, 0);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001504 ndlp->nlp_prev_state = NLP_STE_REG_LOGIN_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001505 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05001506 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001507 }
1508
James Smart6d368e52011-05-24 11:44:12 -04001509 /* SLI4 ports have preallocated logical rpis. */
1510 if (vport->phba->sli_rev < LPFC_SLI_REV4)
1511 ndlp->nlp_rpi = mb->un.varWords[0];
1512
James Smart40426292010-12-15 17:58:10 -05001513 ndlp->nlp_flag |= NLP_RPI_REGISTERED;
dea31012005-04-17 16:05:31 -05001514
1515 /* Only if we are not a fabric nport do we issue PRLI */
1516 if (!(ndlp->nlp_type & NLP_FABRIC)) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001517 ndlp->nlp_prev_state = NLP_STE_REG_LOGIN_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001518 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PRLI_ISSUE);
1519 lpfc_issue_els_prli(vport, ndlp, 0);
dea31012005-04-17 16:05:31 -05001520 } else {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001521 ndlp->nlp_prev_state = NLP_STE_REG_LOGIN_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001522 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
dea31012005-04-17 16:05:31 -05001523 }
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05001524 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001525}
1526
1527static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001528lpfc_device_rm_reglogin_issue(struct lpfc_vport *vport,
1529 struct lpfc_nodelist *ndlp,
1530 void *arg,
dea31012005-04-17 16:05:31 -05001531 uint32_t evt)
1532{
James Smart2e0fef82007-06-17 19:56:36 -05001533 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1534
1535 if (ndlp->nlp_flag & NLP_NPR_2B_DISC) {
1536 spin_lock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04001537 ndlp->nlp_flag |= NLP_NODEV_REMOVE;
James Smart2e0fef82007-06-17 19:56:36 -05001538 spin_unlock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04001539 return ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05001540 } else {
1541 lpfc_drop_node(vport, ndlp);
James Smarta0f9b482006-04-15 11:52:56 -04001542 return NLP_STE_FREED_NODE;
1543 }
dea31012005-04-17 16:05:31 -05001544}
1545
1546static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001547lpfc_device_recov_reglogin_issue(struct lpfc_vport *vport,
1548 struct lpfc_nodelist *ndlp,
1549 void *arg,
1550 uint32_t evt)
dea31012005-04-17 16:05:31 -05001551{
James Smart2e0fef82007-06-17 19:56:36 -05001552 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1553
James Smart92d7f7b2007-06-17 19:56:38 -05001554 /* Don't do anything that will mess up processing of the
1555 * previous RSCN.
1556 */
1557 if (vport->fc_flag & FC_RSCN_DEFERRED)
1558 return ndlp->nlp_state;
1559
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001560 ndlp->nlp_prev_state = NLP_STE_REG_LOGIN_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001561 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
1562 spin_lock_irq(shost->host_lock);
James Smartffc95492010-06-07 15:23:17 -04001563 ndlp->nlp_flag |= NLP_IGNR_REG_CMPL;
James Smarta0f9b482006-04-15 11:52:56 -04001564 ndlp->nlp_flag &= ~(NLP_NODEV_REMOVE | NLP_NPR_2B_DISC);
James Smart2e0fef82007-06-17 19:56:36 -05001565 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05001566 lpfc_disc_set_adisc(vport, ndlp);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05001567 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001568}
1569
1570static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001571lpfc_rcv_plogi_prli_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1572 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001573{
1574 struct lpfc_iocbq *cmdiocb;
1575
1576 cmdiocb = (struct lpfc_iocbq *) arg;
1577
James Smart2e0fef82007-06-17 19:56:36 -05001578 lpfc_rcv_plogi(vport, ndlp, cmdiocb);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05001579 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001580}
1581
1582static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001583lpfc_rcv_prli_prli_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1584 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001585{
James Smart2e0fef82007-06-17 19:56:36 -05001586 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001587
James Smart2e0fef82007-06-17 19:56:36 -05001588 lpfc_els_rsp_prli_acc(vport, cmdiocb, ndlp);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05001589 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001590}
1591
1592static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001593lpfc_rcv_logo_prli_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1594 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001595{
James Smart2e0fef82007-06-17 19:56:36 -05001596 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001597
1598 /* Software abort outstanding PRLI before sending acc */
James Smart2e0fef82007-06-17 19:56:36 -05001599 lpfc_els_abort(vport->phba, ndlp);
dea31012005-04-17 16:05:31 -05001600
James Smart2e0fef82007-06-17 19:56:36 -05001601 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_LOGO);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05001602 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001603}
1604
1605static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001606lpfc_rcv_padisc_prli_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1607 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001608{
James Smart2e0fef82007-06-17 19:56:36 -05001609 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001610
James Smart2e0fef82007-06-17 19:56:36 -05001611 lpfc_rcv_padisc(vport, ndlp, cmdiocb);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05001612 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001613}
1614
1615/* This routine is envoked when we rcv a PRLO request from a nport
1616 * we are logged into. We should send back a PRLO rsp setting the
1617 * appropriate bits.
1618 * NEXT STATE = PRLI_ISSUE
1619 */
1620static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001621lpfc_rcv_prlo_prli_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1622 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001623{
James Smart2e0fef82007-06-17 19:56:36 -05001624 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001625
James Smart51ef4c22007-08-02 11:10:31 -04001626 lpfc_els_rsp_acc(vport, ELS_CMD_PRLO, cmdiocb, ndlp, NULL);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05001627 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001628}
1629
1630static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001631lpfc_cmpl_prli_prli_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1632 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001633{
James Smart92d7f7b2007-06-17 19:56:38 -05001634 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05001635 struct lpfc_iocbq *cmdiocb, *rspiocb;
James Smart2e0fef82007-06-17 19:56:36 -05001636 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05001637 IOCB_t *irsp;
1638 PRLI *npr;
1639
1640 cmdiocb = (struct lpfc_iocbq *) arg;
1641 rspiocb = cmdiocb->context_un.rsp_iocb;
1642 npr = (PRLI *)lpfc_check_elscmpl_iocb(phba, cmdiocb, rspiocb);
1643
1644 irsp = &rspiocb->iocb;
1645 if (irsp->ulpStatus) {
James Smart858c9f62007-06-17 19:56:39 -05001646 if ((vport->port_type == LPFC_NPIV_PORT) &&
James Smart3de2a652007-08-02 11:09:59 -04001647 vport->cfg_restrict_login) {
James Smart858c9f62007-06-17 19:56:39 -05001648 goto out;
1649 }
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001650 ndlp->nlp_prev_state = NLP_STE_PRLI_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001651 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05001652 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001653 }
1654
1655 /* Check out PRLI rsp */
1656 ndlp->nlp_type &= ~(NLP_FCP_TARGET | NLP_FCP_INITIATOR);
1657 ndlp->nlp_fcp_info &= ~NLP_FCP_2_DEVICE;
1658 if ((npr->acceptRspCode == PRLI_REQ_EXECUTED) &&
1659 (npr->prliType == PRLI_FCP_TYPE)) {
1660 if (npr->initiatorFunc)
1661 ndlp->nlp_type |= NLP_FCP_INITIATOR;
1662 if (npr->targetFunc)
1663 ndlp->nlp_type |= NLP_FCP_TARGET;
1664 if (npr->Retry)
1665 ndlp->nlp_fcp_info |= NLP_FCP_2_DEVICE;
1666 }
James Smart92d7f7b2007-06-17 19:56:38 -05001667 if (!(ndlp->nlp_type & NLP_FCP_TARGET) &&
1668 (vport->port_type == LPFC_NPIV_PORT) &&
James Smart3de2a652007-08-02 11:09:59 -04001669 vport->cfg_restrict_login) {
James Smart858c9f62007-06-17 19:56:39 -05001670out:
James Smart92d7f7b2007-06-17 19:56:38 -05001671 spin_lock_irq(shost->host_lock);
1672 ndlp->nlp_flag |= NLP_TARGET_REMOVE;
1673 spin_unlock_irq(shost->host_lock);
1674 lpfc_issue_els_logo(vport, ndlp, 0);
1675
1676 ndlp->nlp_prev_state = NLP_STE_PRLI_ISSUE;
James Smart87af33f2007-10-27 13:37:43 -04001677 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
James Smart92d7f7b2007-06-17 19:56:38 -05001678 return ndlp->nlp_state;
1679 }
dea31012005-04-17 16:05:31 -05001680
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001681 ndlp->nlp_prev_state = NLP_STE_PRLI_ISSUE;
James Smart92d7f7b2007-06-17 19:56:38 -05001682 if (ndlp->nlp_type & NLP_FCP_TARGET)
1683 lpfc_nlp_set_state(vport, ndlp, NLP_STE_MAPPED_NODE);
1684 else
1685 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05001686 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001687}
1688
1689/*! lpfc_device_rm_prli_issue
James Smart92d7f7b2007-06-17 19:56:38 -05001690 *
1691 * \pre
1692 * \post
1693 * \param phba
1694 * \param ndlp
1695 * \param arg
1696 * \param evt
1697 * \return uint32_t
1698 *
1699 * \b Description:
1700 * This routine is envoked when we a request to remove a nport we are in the
1701 * process of PRLIing. We should software abort outstanding prli, unreg
1702 * login, send a logout. We will change node state to UNUSED_NODE, put it
1703 * on plogi list so it can be freed when LOGO completes.
1704 *
1705 */
1706
dea31012005-04-17 16:05:31 -05001707static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001708lpfc_device_rm_prli_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1709 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001710{
James Smart2e0fef82007-06-17 19:56:36 -05001711 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05001712
James Smart2e0fef82007-06-17 19:56:36 -05001713 if (ndlp->nlp_flag & NLP_NPR_2B_DISC) {
1714 spin_lock_irq(shost->host_lock);
1715 ndlp->nlp_flag |= NLP_NODEV_REMOVE;
1716 spin_unlock_irq(shost->host_lock);
1717 return ndlp->nlp_state;
1718 } else {
1719 /* software abort outstanding PLOGI */
1720 lpfc_els_abort(vport->phba, ndlp);
1721
1722 lpfc_drop_node(vport, ndlp);
James Smarta0f9b482006-04-15 11:52:56 -04001723 return NLP_STE_FREED_NODE;
1724 }
dea31012005-04-17 16:05:31 -05001725}
1726
1727
1728/*! lpfc_device_recov_prli_issue
James Smart92d7f7b2007-06-17 19:56:38 -05001729 *
1730 * \pre
1731 * \post
1732 * \param phba
1733 * \param ndlp
1734 * \param arg
1735 * \param evt
1736 * \return uint32_t
1737 *
1738 * \b Description:
1739 * The routine is envoked when the state of a device is unknown, like
1740 * during a link down. We should remove the nodelist entry from the
1741 * unmapped list, issue a UNREG_LOGIN, do a software abort of the
1742 * outstanding PRLI command, then free the node entry.
1743 */
dea31012005-04-17 16:05:31 -05001744static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001745lpfc_device_recov_prli_issue(struct lpfc_vport *vport,
1746 struct lpfc_nodelist *ndlp,
1747 void *arg,
1748 uint32_t evt)
dea31012005-04-17 16:05:31 -05001749{
James Smart2e0fef82007-06-17 19:56:36 -05001750 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1751 struct lpfc_hba *phba = vport->phba;
1752
James Smart92d7f7b2007-06-17 19:56:38 -05001753 /* Don't do anything that will mess up processing of the
1754 * previous RSCN.
1755 */
1756 if (vport->fc_flag & FC_RSCN_DEFERRED)
1757 return ndlp->nlp_state;
1758
dea31012005-04-17 16:05:31 -05001759 /* software abort outstanding PRLI */
James Smart07951072007-04-25 09:51:38 -04001760 lpfc_els_abort(phba, ndlp);
dea31012005-04-17 16:05:31 -05001761
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001762 ndlp->nlp_prev_state = NLP_STE_PRLI_ISSUE;
James Smart2e0fef82007-06-17 19:56:36 -05001763 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
1764 spin_lock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04001765 ndlp->nlp_flag &= ~(NLP_NODEV_REMOVE | NLP_NPR_2B_DISC);
James Smart2e0fef82007-06-17 19:56:36 -05001766 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05001767 lpfc_disc_set_adisc(vport, ndlp);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05001768 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001769}
1770
1771static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001772lpfc_rcv_plogi_unmap_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1773 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001774{
James Smart2e0fef82007-06-17 19:56:36 -05001775 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001776
James Smart2e0fef82007-06-17 19:56:36 -05001777 lpfc_rcv_plogi(vport, ndlp, cmdiocb);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05001778 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001779}
1780
1781static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001782lpfc_rcv_prli_unmap_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1783 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001784{
James Smart2e0fef82007-06-17 19:56:36 -05001785 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001786
James Smart2e0fef82007-06-17 19:56:36 -05001787 lpfc_rcv_prli(vport, ndlp, cmdiocb);
1788 lpfc_els_rsp_prli_acc(vport, cmdiocb, ndlp);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05001789 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001790}
1791
1792static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001793lpfc_rcv_logo_unmap_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1794 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001795{
James Smart2e0fef82007-06-17 19:56:36 -05001796 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001797
James Smart2e0fef82007-06-17 19:56:36 -05001798 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_LOGO);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05001799 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001800}
1801
1802static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001803lpfc_rcv_padisc_unmap_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1804 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001805{
James Smart2e0fef82007-06-17 19:56:36 -05001806 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001807
James Smart2e0fef82007-06-17 19:56:36 -05001808 lpfc_rcv_padisc(vport, ndlp, cmdiocb);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05001809 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001810}
1811
1812static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001813lpfc_rcv_prlo_unmap_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1814 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001815{
James Smart2e0fef82007-06-17 19:56:36 -05001816 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001817
James Smart51ef4c22007-08-02 11:10:31 -04001818 lpfc_els_rsp_acc(vport, ELS_CMD_PRLO, cmdiocb, ndlp, NULL);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05001819 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001820}
1821
1822static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001823lpfc_device_recov_unmap_node(struct lpfc_vport *vport,
1824 struct lpfc_nodelist *ndlp,
1825 void *arg,
1826 uint32_t evt)
dea31012005-04-17 16:05:31 -05001827{
James Smart2e0fef82007-06-17 19:56:36 -05001828 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1829
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001830 ndlp->nlp_prev_state = NLP_STE_UNMAPPED_NODE;
James Smart2e0fef82007-06-17 19:56:36 -05001831 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
1832 spin_lock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04001833 ndlp->nlp_flag &= ~(NLP_NODEV_REMOVE | NLP_NPR_2B_DISC);
James Smart2e0fef82007-06-17 19:56:36 -05001834 spin_unlock_irq(shost->host_lock);
1835 lpfc_disc_set_adisc(vport, ndlp);
dea31012005-04-17 16:05:31 -05001836
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05001837 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001838}
1839
1840static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001841lpfc_rcv_plogi_mapped_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1842 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001843{
James Smart2e0fef82007-06-17 19:56:36 -05001844 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001845
James Smart2e0fef82007-06-17 19:56:36 -05001846 lpfc_rcv_plogi(vport, ndlp, cmdiocb);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05001847 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001848}
1849
1850static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001851lpfc_rcv_prli_mapped_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1852 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001853{
James Smart2e0fef82007-06-17 19:56:36 -05001854 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001855
James Smart2e0fef82007-06-17 19:56:36 -05001856 lpfc_els_rsp_prli_acc(vport, cmdiocb, ndlp);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05001857 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001858}
1859
1860static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001861lpfc_rcv_logo_mapped_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1862 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001863{
James Smart2e0fef82007-06-17 19:56:36 -05001864 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001865
James Smart2e0fef82007-06-17 19:56:36 -05001866 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_LOGO);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05001867 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001868}
1869
1870static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001871lpfc_rcv_padisc_mapped_node(struct lpfc_vport *vport,
1872 struct lpfc_nodelist *ndlp,
1873 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001874{
James Smart2e0fef82007-06-17 19:56:36 -05001875 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001876
James Smart2e0fef82007-06-17 19:56:36 -05001877 lpfc_rcv_padisc(vport, ndlp, cmdiocb);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05001878 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001879}
1880
1881static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001882lpfc_rcv_prlo_mapped_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1883 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001884{
James Smart2e0fef82007-06-17 19:56:36 -05001885 struct lpfc_hba *phba = vport->phba;
1886 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001887
1888 /* flush the target */
James Smart51ef4c22007-08-02 11:10:31 -04001889 lpfc_sli_abort_iocb(vport, &phba->sli.ring[phba->sli.fcp_ring],
1890 ndlp->nlp_sid, 0, LPFC_CTX_TGT);
dea31012005-04-17 16:05:31 -05001891
1892 /* Treat like rcv logo */
James Smart2e0fef82007-06-17 19:56:36 -05001893 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_PRLO);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05001894 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001895}
1896
1897static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001898lpfc_device_recov_mapped_node(struct lpfc_vport *vport,
1899 struct lpfc_nodelist *ndlp,
1900 void *arg,
1901 uint32_t evt)
dea31012005-04-17 16:05:31 -05001902{
James Smart2e0fef82007-06-17 19:56:36 -05001903 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1904
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001905 ndlp->nlp_prev_state = NLP_STE_MAPPED_NODE;
James Smart2e0fef82007-06-17 19:56:36 -05001906 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
1907 spin_lock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04001908 ndlp->nlp_flag &= ~(NLP_NODEV_REMOVE | NLP_NPR_2B_DISC);
James Smart2e0fef82007-06-17 19:56:36 -05001909 spin_unlock_irq(shost->host_lock);
1910 lpfc_disc_set_adisc(vport, ndlp);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05001911 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001912}
1913
1914static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001915lpfc_rcv_plogi_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1916 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001917{
James Smart2e0fef82007-06-17 19:56:36 -05001918 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1919 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001920
1921 /* Ignore PLOGI if we have an outstanding LOGO */
James Smart0d2b6b82008-06-14 22:52:47 -04001922 if (ndlp->nlp_flag & (NLP_LOGO_SND | NLP_LOGO_ACC))
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05001923 return ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05001924 if (lpfc_rcv_plogi(vport, ndlp, cmdiocb)) {
James Smart0d2b6b82008-06-14 22:52:47 -04001925 lpfc_cancel_retry_delay_tmo(vport, ndlp);
James Smart2e0fef82007-06-17 19:56:36 -05001926 spin_lock_irq(shost->host_lock);
James Smart0d2b6b82008-06-14 22:52:47 -04001927 ndlp->nlp_flag &= ~(NLP_NPR_ADISC | NLP_NPR_2B_DISC);
James Smart2e0fef82007-06-17 19:56:36 -05001928 spin_unlock_irq(shost->host_lock);
James Smart0d2b6b82008-06-14 22:52:47 -04001929 } else if (!(ndlp->nlp_flag & NLP_NPR_2B_DISC)) {
1930 /* send PLOGI immediately, move to PLOGI issue state */
1931 if (!(ndlp->nlp_flag & NLP_DELAY_TMO)) {
1932 ndlp->nlp_prev_state = NLP_STE_NPR_NODE;
1933 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
1934 lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0);
1935 }
dea31012005-04-17 16:05:31 -05001936 }
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05001937 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001938}
1939
1940static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001941lpfc_rcv_prli_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1942 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001943{
James Smart2e0fef82007-06-17 19:56:36 -05001944 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1945 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
1946 struct ls_rjt stat;
dea31012005-04-17 16:05:31 -05001947
1948 memset(&stat, 0, sizeof (struct ls_rjt));
1949 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
1950 stat.un.b.lsRjtRsnCodeExp = LSEXP_NOTHING_MORE;
James Smart858c9f62007-06-17 19:56:39 -05001951 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
dea31012005-04-17 16:05:31 -05001952
1953 if (!(ndlp->nlp_flag & NLP_DELAY_TMO)) {
1954 if (ndlp->nlp_flag & NLP_NPR_ADISC) {
James Smart2e0fef82007-06-17 19:56:36 -05001955 spin_lock_irq(shost->host_lock);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05001956 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001957 ndlp->nlp_prev_state = NLP_STE_NPR_NODE;
James Smart2e0fef82007-06-17 19:56:36 -05001958 spin_unlock_irq(shost->host_lock);
1959 lpfc_nlp_set_state(vport, ndlp, NLP_STE_ADISC_ISSUE);
1960 lpfc_issue_els_adisc(vport, ndlp, 0);
dea31012005-04-17 16:05:31 -05001961 } else {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001962 ndlp->nlp_prev_state = NLP_STE_NPR_NODE;
James Smart2e0fef82007-06-17 19:56:36 -05001963 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
1964 lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0);
dea31012005-04-17 16:05:31 -05001965 }
1966 }
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05001967 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001968}
1969
1970static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001971lpfc_rcv_logo_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1972 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001973{
James Smart2e0fef82007-06-17 19:56:36 -05001974 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001975
James Smart2e0fef82007-06-17 19:56:36 -05001976 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_LOGO);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05001977 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05001978}
1979
1980static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05001981lpfc_rcv_padisc_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1982 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05001983{
James Smart2e0fef82007-06-17 19:56:36 -05001984 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05001985
James Smart2e0fef82007-06-17 19:56:36 -05001986 lpfc_rcv_padisc(vport, ndlp, cmdiocb);
James Smart33ccf8d2006-08-17 11:57:58 -04001987 /*
1988 * Do not start discovery if discovery is about to start
1989 * or discovery in progress for this node. Starting discovery
1990 * here will affect the counting of discovery threads.
1991 */
James Smart2fb9bd82006-12-02 13:33:57 -05001992 if (!(ndlp->nlp_flag & NLP_DELAY_TMO) &&
James Smart92d7f7b2007-06-17 19:56:38 -05001993 !(ndlp->nlp_flag & NLP_NPR_2B_DISC)) {
dea31012005-04-17 16:05:31 -05001994 if (ndlp->nlp_flag & NLP_NPR_ADISC) {
James Smart92d7f7b2007-06-17 19:56:38 -05001995 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001996 ndlp->nlp_prev_state = NLP_STE_NPR_NODE;
James Smart2e0fef82007-06-17 19:56:36 -05001997 lpfc_nlp_set_state(vport, ndlp, NLP_STE_ADISC_ISSUE);
1998 lpfc_issue_els_adisc(vport, ndlp, 0);
dea31012005-04-17 16:05:31 -05001999 } else {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05002000 ndlp->nlp_prev_state = NLP_STE_NPR_NODE;
James Smart2e0fef82007-06-17 19:56:36 -05002001 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
2002 lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0);
dea31012005-04-17 16:05:31 -05002003 }
2004 }
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05002005 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05002006}
2007
2008static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05002009lpfc_rcv_prlo_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2010 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05002011{
James Smart2e0fef82007-06-17 19:56:36 -05002012 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2013 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
dea31012005-04-17 16:05:31 -05002014
James Smart2e0fef82007-06-17 19:56:36 -05002015 spin_lock_irq(shost->host_lock);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05002016 ndlp->nlp_flag |= NLP_LOGO_ACC;
James Smart2e0fef82007-06-17 19:56:36 -05002017 spin_unlock_irq(shost->host_lock);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05002018
James Smart51ef4c22007-08-02 11:10:31 -04002019 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
dea31012005-04-17 16:05:31 -05002020
James Smart2e0fef82007-06-17 19:56:36 -05002021 if ((ndlp->nlp_flag & NLP_DELAY_TMO) == 0) {
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05002022 mod_timer(&ndlp->nlp_delayfunc, jiffies + HZ * 1);
James Smart2e0fef82007-06-17 19:56:36 -05002023 spin_lock_irq(shost->host_lock);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05002024 ndlp->nlp_flag |= NLP_DELAY_TMO;
2025 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
James Smart2e0fef82007-06-17 19:56:36 -05002026 spin_unlock_irq(shost->host_lock);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05002027 ndlp->nlp_last_elscmd = ELS_CMD_PLOGI;
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05002028 } else {
James Smart2e0fef82007-06-17 19:56:36 -05002029 spin_lock_irq(shost->host_lock);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05002030 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
James Smart2e0fef82007-06-17 19:56:36 -05002031 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002032 }
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05002033 return ndlp->nlp_state;
2034}
dea31012005-04-17 16:05:31 -05002035
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05002036static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05002037lpfc_cmpl_plogi_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2038 void *arg, uint32_t evt)
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05002039{
2040 struct lpfc_iocbq *cmdiocb, *rspiocb;
James Smarta0f9b482006-04-15 11:52:56 -04002041 IOCB_t *irsp;
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05002042
2043 cmdiocb = (struct lpfc_iocbq *) arg;
2044 rspiocb = cmdiocb->context_un.rsp_iocb;
James Smarta0f9b482006-04-15 11:52:56 -04002045
2046 irsp = &rspiocb->iocb;
2047 if (irsp->ulpStatus) {
James Smarta8adb832007-10-27 13:37:53 -04002048 ndlp->nlp_flag |= NLP_DEFER_RM;
James Smarta0f9b482006-04-15 11:52:56 -04002049 return NLP_STE_FREED_NODE;
2050 }
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05002051 return ndlp->nlp_state;
2052}
2053
2054static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05002055lpfc_cmpl_prli_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2056 void *arg, uint32_t evt)
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05002057{
2058 struct lpfc_iocbq *cmdiocb, *rspiocb;
James Smarta0f9b482006-04-15 11:52:56 -04002059 IOCB_t *irsp;
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05002060
2061 cmdiocb = (struct lpfc_iocbq *) arg;
2062 rspiocb = cmdiocb->context_un.rsp_iocb;
James Smarta0f9b482006-04-15 11:52:56 -04002063
2064 irsp = &rspiocb->iocb;
2065 if (irsp->ulpStatus && (ndlp->nlp_flag & NLP_NODEV_REMOVE)) {
James Smart2e0fef82007-06-17 19:56:36 -05002066 lpfc_drop_node(vport, ndlp);
James Smarta0f9b482006-04-15 11:52:56 -04002067 return NLP_STE_FREED_NODE;
2068 }
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05002069 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05002070}
2071
2072static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05002073lpfc_cmpl_logo_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2074 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05002075{
James Smartd7c255b2008-08-24 21:50:00 -04002076 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2077 if (ndlp->nlp_DID == Fabric_DID) {
2078 spin_lock_irq(shost->host_lock);
2079 vport->fc_flag &= ~(FC_FABRIC | FC_PUBLIC_LOOP);
2080 spin_unlock_irq(shost->host_lock);
2081 }
James Smart2e0fef82007-06-17 19:56:36 -05002082 lpfc_unreg_rpi(vport, ndlp);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05002083 return ndlp->nlp_state;
2084}
2085
2086static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05002087lpfc_cmpl_adisc_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2088 void *arg, uint32_t evt)
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05002089{
2090 struct lpfc_iocbq *cmdiocb, *rspiocb;
James Smarta0f9b482006-04-15 11:52:56 -04002091 IOCB_t *irsp;
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05002092
2093 cmdiocb = (struct lpfc_iocbq *) arg;
2094 rspiocb = cmdiocb->context_un.rsp_iocb;
James Smarta0f9b482006-04-15 11:52:56 -04002095
2096 irsp = &rspiocb->iocb;
2097 if (irsp->ulpStatus && (ndlp->nlp_flag & NLP_NODEV_REMOVE)) {
James Smart2e0fef82007-06-17 19:56:36 -05002098 lpfc_drop_node(vport, ndlp);
James Smarta0f9b482006-04-15 11:52:56 -04002099 return NLP_STE_FREED_NODE;
2100 }
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05002101 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05002102}
2103
2104static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05002105lpfc_cmpl_reglogin_npr_node(struct lpfc_vport *vport,
2106 struct lpfc_nodelist *ndlp,
2107 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05002108{
James Smart2e0fef82007-06-17 19:56:36 -05002109 LPFC_MBOXQ_t *pmb = (LPFC_MBOXQ_t *) arg;
James Smart04c68492009-05-22 14:52:52 -04002110 MAILBOX_t *mb = &pmb->u.mb;
dea31012005-04-17 16:05:31 -05002111
James Smart04c68492009-05-22 14:52:52 -04002112 if (!mb->mbxStatus) {
James Smart6d368e52011-05-24 11:44:12 -04002113 /* SLI4 ports have preallocated logical rpis. */
2114 if (vport->phba->sli_rev < LPFC_SLI_REV4)
2115 ndlp->nlp_rpi = mb->un.varWords[0];
James Smart40426292010-12-15 17:58:10 -05002116 ndlp->nlp_flag |= NLP_RPI_REGISTERED;
James Smart04c68492009-05-22 14:52:52 -04002117 } else {
James Smarta0f9b482006-04-15 11:52:56 -04002118 if (ndlp->nlp_flag & NLP_NODEV_REMOVE) {
James Smart2e0fef82007-06-17 19:56:36 -05002119 lpfc_drop_node(vport, ndlp);
James Smarta0f9b482006-04-15 11:52:56 -04002120 return NLP_STE_FREED_NODE;
2121 }
2122 }
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05002123 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05002124}
2125
2126static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05002127lpfc_device_rm_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2128 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05002129{
James Smart2e0fef82007-06-17 19:56:36 -05002130 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2131
James Smarta0f9b482006-04-15 11:52:56 -04002132 if (ndlp->nlp_flag & NLP_NPR_2B_DISC) {
James Smart2e0fef82007-06-17 19:56:36 -05002133 spin_lock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04002134 ndlp->nlp_flag |= NLP_NODEV_REMOVE;
James Smart2e0fef82007-06-17 19:56:36 -05002135 spin_unlock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04002136 return ndlp->nlp_state;
2137 }
James Smart2e0fef82007-06-17 19:56:36 -05002138 lpfc_drop_node(vport, ndlp);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05002139 return NLP_STE_FREED_NODE;
dea31012005-04-17 16:05:31 -05002140}
2141
2142static uint32_t
James Smart2e0fef82007-06-17 19:56:36 -05002143lpfc_device_recov_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2144 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05002145{
James Smart2e0fef82007-06-17 19:56:36 -05002146 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2147
James Smart92d7f7b2007-06-17 19:56:38 -05002148 /* Don't do anything that will mess up processing of the
2149 * previous RSCN.
2150 */
2151 if (vport->fc_flag & FC_RSCN_DEFERRED)
2152 return ndlp->nlp_state;
2153
James Smarteaf15d52008-12-04 22:39:29 -05002154 lpfc_cancel_retry_delay_tmo(vport, ndlp);
James Smart2e0fef82007-06-17 19:56:36 -05002155 spin_lock_irq(shost->host_lock);
James Smarta0f9b482006-04-15 11:52:56 -04002156 ndlp->nlp_flag &= ~(NLP_NODEV_REMOVE | NLP_NPR_2B_DISC);
James Smart2e0fef82007-06-17 19:56:36 -05002157 spin_unlock_irq(shost->host_lock);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05002158 return ndlp->nlp_state;
dea31012005-04-17 16:05:31 -05002159}
2160
2161
2162/* This next section defines the NPort Discovery State Machine */
2163
2164/* There are 4 different double linked lists nodelist entries can reside on.
2165 * The plogi list and adisc list are used when Link Up discovery or RSCN
2166 * processing is needed. Each list holds the nodes that we will send PLOGI
2167 * or ADISC on. These lists will keep track of what nodes will be effected
2168 * by an RSCN, or a Link Up (Typically, all nodes are effected on Link Up).
2169 * The unmapped_list will contain all nodes that we have successfully logged
2170 * into at the Fibre Channel level. The mapped_list will contain all nodes
2171 * that are mapped FCP targets.
2172 */
2173/*
2174 * The bind list is a list of undiscovered (potentially non-existent) nodes
2175 * that we have saved binding information on. This information is used when
2176 * nodes transition from the unmapped to the mapped list.
2177 */
2178/* For UNUSED_NODE state, the node has just been allocated .
2179 * For PLOGI_ISSUE and REG_LOGIN_ISSUE, the node is on
2180 * the PLOGI list. For REG_LOGIN_COMPL, the node is taken off the PLOGI list
2181 * and put on the unmapped list. For ADISC processing, the node is taken off
2182 * the ADISC list and placed on either the mapped or unmapped list (depending
2183 * on its previous state). Once on the unmapped list, a PRLI is issued and the
2184 * state changed to PRLI_ISSUE. When the PRLI completion occurs, the state is
2185 * changed to UNMAPPED_NODE. If the completion indicates a mapped
2186 * node, the node is taken off the unmapped list. The binding list is checked
2187 * for a valid binding, or a binding is automatically assigned. If binding
2188 * assignment is unsuccessful, the node is left on the unmapped list. If
2189 * binding assignment is successful, the associated binding list entry (if
2190 * any) is removed, and the node is placed on the mapped list.
2191 */
2192/*
2193 * For a Link Down, all nodes on the ADISC, PLOGI, unmapped or mapped
James Smartc01f3202006-08-18 17:47:08 -04002194 * lists will receive a DEVICE_RECOVERY event. If the linkdown or devloss timers
dea31012005-04-17 16:05:31 -05002195 * expire, all effected nodes will receive a DEVICE_RM event.
2196 */
2197/*
2198 * For a Link Up or RSCN, all nodes will move from the mapped / unmapped lists
2199 * to either the ADISC or PLOGI list. After a Nameserver query or ALPA loopmap
2200 * check, additional nodes may be added or removed (via DEVICE_RM) to / from
2201 * the PLOGI or ADISC lists. Once the PLOGI and ADISC lists are populated,
2202 * we will first process the ADISC list. 32 entries are processed initially and
2203 * ADISC is initited for each one. Completions / Events for each node are
2204 * funnelled thru the state machine. As each node finishes ADISC processing, it
2205 * starts ADISC for any nodes waiting for ADISC processing. If no nodes are
2206 * waiting, and the ADISC list count is identically 0, then we are done. For
2207 * Link Up discovery, since all nodes on the PLOGI list are UNREG_LOGIN'ed, we
2208 * can issue a CLEAR_LA and reenable Link Events. Next we will process the PLOGI
2209 * list. 32 entries are processed initially and PLOGI is initited for each one.
2210 * Completions / Events for each node are funnelled thru the state machine. As
2211 * each node finishes PLOGI processing, it starts PLOGI for any nodes waiting
2212 * for PLOGI processing. If no nodes are waiting, and the PLOGI list count is
2213 * indentically 0, then we are done. We have now completed discovery / RSCN
2214 * handling. Upon completion, ALL nodes should be on either the mapped or
2215 * unmapped lists.
2216 */
2217
2218static uint32_t (*lpfc_disc_action[NLP_STE_MAX_STATE * NLP_EVT_MAX_EVENT])
James Smart2e0fef82007-06-17 19:56:36 -05002219 (struct lpfc_vport *, struct lpfc_nodelist *, void *, uint32_t) = {
dea31012005-04-17 16:05:31 -05002220 /* Action routine Event Current State */
2221 lpfc_rcv_plogi_unused_node, /* RCV_PLOGI UNUSED_NODE */
2222 lpfc_rcv_els_unused_node, /* RCV_PRLI */
2223 lpfc_rcv_logo_unused_node, /* RCV_LOGO */
2224 lpfc_rcv_els_unused_node, /* RCV_ADISC */
2225 lpfc_rcv_els_unused_node, /* RCV_PDISC */
2226 lpfc_rcv_els_unused_node, /* RCV_PRLO */
2227 lpfc_disc_illegal, /* CMPL_PLOGI */
2228 lpfc_disc_illegal, /* CMPL_PRLI */
2229 lpfc_cmpl_logo_unused_node, /* CMPL_LOGO */
2230 lpfc_disc_illegal, /* CMPL_ADISC */
2231 lpfc_disc_illegal, /* CMPL_REG_LOGIN */
2232 lpfc_device_rm_unused_node, /* DEVICE_RM */
James Smartdf9e1b52011-12-13 13:22:17 -05002233 lpfc_device_recov_unused_node, /* DEVICE_RECOVERY */
dea31012005-04-17 16:05:31 -05002234
2235 lpfc_rcv_plogi_plogi_issue, /* RCV_PLOGI PLOGI_ISSUE */
James Smart92d7f7b2007-06-17 19:56:38 -05002236 lpfc_rcv_prli_plogi_issue, /* RCV_PRLI */
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05002237 lpfc_rcv_logo_plogi_issue, /* RCV_LOGO */
dea31012005-04-17 16:05:31 -05002238 lpfc_rcv_els_plogi_issue, /* RCV_ADISC */
2239 lpfc_rcv_els_plogi_issue, /* RCV_PDISC */
2240 lpfc_rcv_els_plogi_issue, /* RCV_PRLO */
2241 lpfc_cmpl_plogi_plogi_issue, /* CMPL_PLOGI */
2242 lpfc_disc_illegal, /* CMPL_PRLI */
James Smart0ff10d42008-01-11 01:52:36 -05002243 lpfc_cmpl_logo_plogi_issue, /* CMPL_LOGO */
dea31012005-04-17 16:05:31 -05002244 lpfc_disc_illegal, /* CMPL_ADISC */
James Smart0ff10d42008-01-11 01:52:36 -05002245 lpfc_cmpl_reglogin_plogi_issue,/* CMPL_REG_LOGIN */
dea31012005-04-17 16:05:31 -05002246 lpfc_device_rm_plogi_issue, /* DEVICE_RM */
2247 lpfc_device_recov_plogi_issue, /* DEVICE_RECOVERY */
2248
2249 lpfc_rcv_plogi_adisc_issue, /* RCV_PLOGI ADISC_ISSUE */
2250 lpfc_rcv_prli_adisc_issue, /* RCV_PRLI */
2251 lpfc_rcv_logo_adisc_issue, /* RCV_LOGO */
2252 lpfc_rcv_padisc_adisc_issue, /* RCV_ADISC */
2253 lpfc_rcv_padisc_adisc_issue, /* RCV_PDISC */
2254 lpfc_rcv_prlo_adisc_issue, /* RCV_PRLO */
2255 lpfc_disc_illegal, /* CMPL_PLOGI */
2256 lpfc_disc_illegal, /* CMPL_PRLI */
2257 lpfc_disc_illegal, /* CMPL_LOGO */
2258 lpfc_cmpl_adisc_adisc_issue, /* CMPL_ADISC */
2259 lpfc_disc_illegal, /* CMPL_REG_LOGIN */
2260 lpfc_device_rm_adisc_issue, /* DEVICE_RM */
2261 lpfc_device_recov_adisc_issue, /* DEVICE_RECOVERY */
2262
2263 lpfc_rcv_plogi_reglogin_issue, /* RCV_PLOGI REG_LOGIN_ISSUE */
2264 lpfc_rcv_prli_reglogin_issue, /* RCV_PLOGI */
2265 lpfc_rcv_logo_reglogin_issue, /* RCV_LOGO */
2266 lpfc_rcv_padisc_reglogin_issue, /* RCV_ADISC */
2267 lpfc_rcv_padisc_reglogin_issue, /* RCV_PDISC */
2268 lpfc_rcv_prlo_reglogin_issue, /* RCV_PRLO */
James Smart87af33f2007-10-27 13:37:43 -04002269 lpfc_cmpl_plogi_illegal, /* CMPL_PLOGI */
dea31012005-04-17 16:05:31 -05002270 lpfc_disc_illegal, /* CMPL_PRLI */
2271 lpfc_disc_illegal, /* CMPL_LOGO */
2272 lpfc_disc_illegal, /* CMPL_ADISC */
2273 lpfc_cmpl_reglogin_reglogin_issue,/* CMPL_REG_LOGIN */
2274 lpfc_device_rm_reglogin_issue, /* DEVICE_RM */
2275 lpfc_device_recov_reglogin_issue,/* DEVICE_RECOVERY */
2276
2277 lpfc_rcv_plogi_prli_issue, /* RCV_PLOGI PRLI_ISSUE */
2278 lpfc_rcv_prli_prli_issue, /* RCV_PRLI */
2279 lpfc_rcv_logo_prli_issue, /* RCV_LOGO */
2280 lpfc_rcv_padisc_prli_issue, /* RCV_ADISC */
2281 lpfc_rcv_padisc_prli_issue, /* RCV_PDISC */
2282 lpfc_rcv_prlo_prli_issue, /* RCV_PRLO */
James Smart87af33f2007-10-27 13:37:43 -04002283 lpfc_cmpl_plogi_illegal, /* CMPL_PLOGI */
dea31012005-04-17 16:05:31 -05002284 lpfc_cmpl_prli_prli_issue, /* CMPL_PRLI */
2285 lpfc_disc_illegal, /* CMPL_LOGO */
2286 lpfc_disc_illegal, /* CMPL_ADISC */
2287 lpfc_disc_illegal, /* CMPL_REG_LOGIN */
2288 lpfc_device_rm_prli_issue, /* DEVICE_RM */
2289 lpfc_device_recov_prli_issue, /* DEVICE_RECOVERY */
2290
2291 lpfc_rcv_plogi_unmap_node, /* RCV_PLOGI UNMAPPED_NODE */
2292 lpfc_rcv_prli_unmap_node, /* RCV_PRLI */
2293 lpfc_rcv_logo_unmap_node, /* RCV_LOGO */
2294 lpfc_rcv_padisc_unmap_node, /* RCV_ADISC */
2295 lpfc_rcv_padisc_unmap_node, /* RCV_PDISC */
2296 lpfc_rcv_prlo_unmap_node, /* RCV_PRLO */
2297 lpfc_disc_illegal, /* CMPL_PLOGI */
2298 lpfc_disc_illegal, /* CMPL_PRLI */
2299 lpfc_disc_illegal, /* CMPL_LOGO */
2300 lpfc_disc_illegal, /* CMPL_ADISC */
2301 lpfc_disc_illegal, /* CMPL_REG_LOGIN */
2302 lpfc_disc_illegal, /* DEVICE_RM */
2303 lpfc_device_recov_unmap_node, /* DEVICE_RECOVERY */
2304
2305 lpfc_rcv_plogi_mapped_node, /* RCV_PLOGI MAPPED_NODE */
2306 lpfc_rcv_prli_mapped_node, /* RCV_PRLI */
2307 lpfc_rcv_logo_mapped_node, /* RCV_LOGO */
2308 lpfc_rcv_padisc_mapped_node, /* RCV_ADISC */
2309 lpfc_rcv_padisc_mapped_node, /* RCV_PDISC */
2310 lpfc_rcv_prlo_mapped_node, /* RCV_PRLO */
2311 lpfc_disc_illegal, /* CMPL_PLOGI */
2312 lpfc_disc_illegal, /* CMPL_PRLI */
2313 lpfc_disc_illegal, /* CMPL_LOGO */
2314 lpfc_disc_illegal, /* CMPL_ADISC */
2315 lpfc_disc_illegal, /* CMPL_REG_LOGIN */
2316 lpfc_disc_illegal, /* DEVICE_RM */
2317 lpfc_device_recov_mapped_node, /* DEVICE_RECOVERY */
2318
2319 lpfc_rcv_plogi_npr_node, /* RCV_PLOGI NPR_NODE */
2320 lpfc_rcv_prli_npr_node, /* RCV_PRLI */
2321 lpfc_rcv_logo_npr_node, /* RCV_LOGO */
2322 lpfc_rcv_padisc_npr_node, /* RCV_ADISC */
2323 lpfc_rcv_padisc_npr_node, /* RCV_PDISC */
2324 lpfc_rcv_prlo_npr_node, /* RCV_PRLO */
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05002325 lpfc_cmpl_plogi_npr_node, /* CMPL_PLOGI */
2326 lpfc_cmpl_prli_npr_node, /* CMPL_PRLI */
dea31012005-04-17 16:05:31 -05002327 lpfc_cmpl_logo_npr_node, /* CMPL_LOGO */
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05002328 lpfc_cmpl_adisc_npr_node, /* CMPL_ADISC */
dea31012005-04-17 16:05:31 -05002329 lpfc_cmpl_reglogin_npr_node, /* CMPL_REG_LOGIN */
2330 lpfc_device_rm_npr_node, /* DEVICE_RM */
2331 lpfc_device_recov_npr_node, /* DEVICE_RECOVERY */
2332};
2333
2334int
James Smart2e0fef82007-06-17 19:56:36 -05002335lpfc_disc_state_machine(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2336 void *arg, uint32_t evt)
dea31012005-04-17 16:05:31 -05002337{
2338 uint32_t cur_state, rc;
James Smart2e0fef82007-06-17 19:56:36 -05002339 uint32_t(*func) (struct lpfc_vport *, struct lpfc_nodelist *, void *,
dea31012005-04-17 16:05:31 -05002340 uint32_t);
James Smarte47c9092008-02-08 18:49:26 -05002341 uint32_t got_ndlp = 0;
dea31012005-04-17 16:05:31 -05002342
James Smarte47c9092008-02-08 18:49:26 -05002343 if (lpfc_nlp_get(ndlp))
2344 got_ndlp = 1;
2345
dea31012005-04-17 16:05:31 -05002346 cur_state = ndlp->nlp_state;
2347
2348 /* DSM in event <evt> on NPort <nlp_DID> in state <cur_state> */
James Smarte8b62012007-08-02 11:10:09 -04002349 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
2350 "0211 DSM in event x%x on NPort x%x in "
2351 "state %d Data: x%x\n",
2352 evt, ndlp->nlp_DID, cur_state, ndlp->nlp_flag);
dea31012005-04-17 16:05:31 -05002353
James Smart858c9f62007-06-17 19:56:39 -05002354 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_DSM,
2355 "DSM in: evt:%d ste:%d did:x%x",
2356 evt, cur_state, ndlp->nlp_DID);
2357
dea31012005-04-17 16:05:31 -05002358 func = lpfc_disc_action[(cur_state * NLP_EVT_MAX_EVENT) + evt];
James Smart2e0fef82007-06-17 19:56:36 -05002359 rc = (func) (vport, ndlp, arg, evt);
dea31012005-04-17 16:05:31 -05002360
2361 /* DSM out state <rc> on NPort <nlp_DID> */
James Smarte47c9092008-02-08 18:49:26 -05002362 if (got_ndlp) {
2363 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
James Smarte8b62012007-08-02 11:10:09 -04002364 "0212 DSM out state %d on NPort x%x Data: x%x\n",
2365 rc, ndlp->nlp_DID, ndlp->nlp_flag);
dea31012005-04-17 16:05:31 -05002366
James Smarte47c9092008-02-08 18:49:26 -05002367 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_DSM,
2368 "DSM out: ste:%d did:x%x flg:x%x",
2369 rc, ndlp->nlp_DID, ndlp->nlp_flag);
2370 /* Decrement the ndlp reference count held for this function */
2371 lpfc_nlp_put(ndlp);
2372 } else {
2373 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
James Smartd7c255b2008-08-24 21:50:00 -04002374 "0213 DSM out state %d on NPort free\n", rc);
James Smart858c9f62007-06-17 19:56:39 -05002375
James Smarte47c9092008-02-08 18:49:26 -05002376 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_DSM,
2377 "DSM out: ste:%d did:x%x flg:x%x",
2378 rc, 0, 0);
2379 }
dea31012005-04-17 16:05:31 -05002380
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05002381 return rc;
dea31012005-04-17 16:05:31 -05002382}