1 /*******************************************************************
2 * This file is part of the Emulex Linux Device Driver for *
3 * Fibre Channel Host Bus Adapters. *
4 * Copyright (C) 2004-2008 Emulex. All rights reserved. *
5 * EMULEX and SLI are trademarks of Emulex. *
7 * Portions Copyright (C) 2004-2005 Christoph Hellwig *
9 * This program is free software; you can redistribute it and/or *
10 * 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. *
20 *******************************************************************/
22 #include <linux/blkdev.h>
23 #include <linux/pci.h>
24 #include <linux/interrupt.h>
26 #include <scsi/scsi.h>
27 #include <scsi/scsi_device.h>
28 #include <scsi/scsi_host.h>
29 #include <scsi/scsi_transport_fc.h>
33 #include "lpfc_disc.h"
34 #include "lpfc_scsi.h"
36 #include "lpfc_logmsg.h"
37 #include "lpfc_crtn.h"
38 #include "lpfc_vport.h"
39 #include "lpfc_debugfs.h"
42 /* Called to verify a rcv'ed ADISC was intended for us. */
44 lpfc_check_adisc(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
45 struct lpfc_name *nn, struct lpfc_name *pn)
47 /* Compare the ADISC rsp WWNN / WWPN matches our internal node
48 * table entry for that node.
50 if (memcmp(nn, &ndlp->nlp_nodename, sizeof (struct lpfc_name)))
53 if (memcmp(pn, &ndlp->nlp_portname, sizeof (struct lpfc_name)))
56 /* we match, return success */
61 lpfc_check_sparm(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
62 struct serv_parm * sp, uint32_t class)
64 volatile struct serv_parm *hsp = &vport->fc_sparam;
65 uint16_t hsp_value, ssp_value = 0;
68 * The receive data field size and buffer-to-buffer receive data field
69 * size entries are 16 bits but are represented as two 8-bit fields in
70 * the driver data structure to account for rsvd bits and other control
71 * bits. Reconstruct and compare the fields as a 16-bit values before
72 * correcting the byte values.
74 if (sp->cls1.classValid) {
75 hsp_value = (hsp->cls1.rcvDataSizeMsb << 8) |
76 hsp->cls1.rcvDataSizeLsb;
77 ssp_value = (sp->cls1.rcvDataSizeMsb << 8) |
78 sp->cls1.rcvDataSizeLsb;
80 goto bad_service_param;
81 if (ssp_value > hsp_value) {
82 sp->cls1.rcvDataSizeLsb = hsp->cls1.rcvDataSizeLsb;
83 sp->cls1.rcvDataSizeMsb = hsp->cls1.rcvDataSizeMsb;
85 } else if (class == CLASS1) {
86 goto bad_service_param;
89 if (sp->cls2.classValid) {
90 hsp_value = (hsp->cls2.rcvDataSizeMsb << 8) |
91 hsp->cls2.rcvDataSizeLsb;
92 ssp_value = (sp->cls2.rcvDataSizeMsb << 8) |
93 sp->cls2.rcvDataSizeLsb;
95 goto bad_service_param;
96 if (ssp_value > hsp_value) {
97 sp->cls2.rcvDataSizeLsb = hsp->cls2.rcvDataSizeLsb;
98 sp->cls2.rcvDataSizeMsb = hsp->cls2.rcvDataSizeMsb;
100 } else if (class == CLASS2) {
101 goto bad_service_param;
104 if (sp->cls3.classValid) {
105 hsp_value = (hsp->cls3.rcvDataSizeMsb << 8) |
106 hsp->cls3.rcvDataSizeLsb;
107 ssp_value = (sp->cls3.rcvDataSizeMsb << 8) |
108 sp->cls3.rcvDataSizeLsb;
110 goto bad_service_param;
111 if (ssp_value > hsp_value) {
112 sp->cls3.rcvDataSizeLsb = hsp->cls3.rcvDataSizeLsb;
113 sp->cls3.rcvDataSizeMsb = hsp->cls3.rcvDataSizeMsb;
115 } else if (class == CLASS3) {
116 goto bad_service_param;
120 * Preserve the upper four bits of the MSB from the PLOGI response.
121 * These bits contain the Buffer-to-Buffer State Change Number
122 * from the target and need to be passed to the FW.
124 hsp_value = (hsp->cmn.bbRcvSizeMsb << 8) | hsp->cmn.bbRcvSizeLsb;
125 ssp_value = (sp->cmn.bbRcvSizeMsb << 8) | sp->cmn.bbRcvSizeLsb;
126 if (ssp_value > hsp_value) {
127 sp->cmn.bbRcvSizeLsb = hsp->cmn.bbRcvSizeLsb;
128 sp->cmn.bbRcvSizeMsb = (sp->cmn.bbRcvSizeMsb & 0xF0) |
129 (hsp->cmn.bbRcvSizeMsb & 0x0F);
132 memcpy(&ndlp->nlp_nodename, &sp->nodeName, sizeof (struct lpfc_name));
133 memcpy(&ndlp->nlp_portname, &sp->portName, sizeof (struct lpfc_name));
136 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
138 "(%02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x) sent "
139 "invalid service parameters. Ignoring device.\n",
141 sp->nodeName.u.wwn[0], sp->nodeName.u.wwn[1],
142 sp->nodeName.u.wwn[2], sp->nodeName.u.wwn[3],
143 sp->nodeName.u.wwn[4], sp->nodeName.u.wwn[5],
144 sp->nodeName.u.wwn[6], sp->nodeName.u.wwn[7]);
149 lpfc_check_elscmpl_iocb(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
150 struct lpfc_iocbq *rspiocb)
152 struct lpfc_dmabuf *pcmd, *prsp;
157 irsp = &rspiocb->iocb;
158 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
160 /* For lpfc_els_abort, context2 could be zero'ed to delay
161 * freeing associated memory till after ABTS completes.
164 prsp = list_get_first(&pcmd->list, struct lpfc_dmabuf,
167 lp = (uint32_t *) prsp->virt;
168 ptr = (void *)((uint8_t *)lp + sizeof(uint32_t));
171 /* Force ulpStatus error since we are returning NULL ptr */
172 if (!(irsp->ulpStatus)) {
173 irsp->ulpStatus = IOSTAT_LOCAL_REJECT;
174 irsp->un.ulpWord[4] = IOERR_SLI_ABORTED;
183 * Free resources / clean up outstanding I/Os
184 * associated with a LPFC_NODELIST entry. This
185 * routine effectively results in a "software abort".
188 lpfc_els_abort(struct lpfc_hba *phba, struct lpfc_nodelist *ndlp)
190 LIST_HEAD(completions);
191 struct lpfc_sli *psli = &phba->sli;
192 struct lpfc_sli_ring *pring = &psli->ring[LPFC_ELS_RING];
193 struct lpfc_iocbq *iocb, *next_iocb;
196 /* Abort outstanding I/O on NPort <nlp_DID> */
197 lpfc_printf_vlog(ndlp->vport, KERN_INFO, LOG_DISCOVERY,
198 "0205 Abort outstanding I/O on NPort x%x "
199 "Data: x%x x%x x%x\n",
200 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
203 lpfc_fabric_abort_nport(ndlp);
205 /* First check the txq */
206 spin_lock_irq(&phba->hbalock);
207 list_for_each_entry_safe(iocb, next_iocb, &pring->txq, list) {
208 /* Check to see if iocb matches the nport we are looking for */
209 if (lpfc_check_sli_ndlp(phba, pring, iocb, ndlp)) {
210 /* It matches, so deque and call compl with anp error */
211 list_move_tail(&iocb->list, &completions);
216 /* Next check the txcmplq */
217 list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq, list) {
218 /* Check to see if iocb matches the nport we are looking for */
219 if (lpfc_check_sli_ndlp(phba, pring, iocb, ndlp)) {
220 lpfc_sli_issue_abort_iotag(phba, pring, iocb);
223 spin_unlock_irq(&phba->hbalock);
225 while (!list_empty(&completions)) {
226 iocb = list_get_first(&completions, struct lpfc_iocbq, list);
228 list_del_init(&iocb->list);
230 if (!iocb->iocb_cmpl)
231 lpfc_sli_release_iocbq(phba, iocb);
233 cmd->ulpStatus = IOSTAT_LOCAL_REJECT;
234 cmd->un.ulpWord[4] = IOERR_SLI_ABORTED;
235 (iocb->iocb_cmpl) (phba, iocb, iocb);
238 lpfc_cancel_retry_delay_tmo(phba->pport, ndlp);
243 lpfc_rcv_plogi(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
244 struct lpfc_iocbq *cmdiocb)
246 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
247 struct lpfc_hba *phba = vport->phba;
248 struct lpfc_dmabuf *pcmd;
251 struct serv_parm *sp;
256 memset(&stat, 0, sizeof (struct ls_rjt));
257 if (vport->port_state <= LPFC_FLOGI) {
258 /* Before responding to PLOGI, check for pt2pt mode.
259 * If we are pt2pt, with an outstanding FLOGI, abort
260 * the FLOGI and resend it first.
262 if (vport->fc_flag & FC_PT2PT) {
263 lpfc_els_abort_flogi(phba);
264 if (!(vport->fc_flag & FC_PT2PT_PLOGI)) {
265 /* If the other side is supposed to initiate
266 * the PLOGI anyway, just ACC it now and
267 * move on with discovery.
269 phba->fc_edtov = FF_DEF_EDTOV;
270 phba->fc_ratov = FF_DEF_RATOV;
271 /* Start discovery - this should just do
273 lpfc_disc_start(vport);
275 lpfc_initial_flogi(vport);
277 stat.un.b.lsRjtRsnCode = LSRJT_LOGICAL_BSY;
278 stat.un.b.lsRjtRsnCodeExp = LSEXP_NOTHING_MORE;
279 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb,
284 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
285 lp = (uint32_t *) pcmd->virt;
286 sp = (struct serv_parm *) ((uint8_t *) lp + sizeof (uint32_t));
287 if (wwn_to_u64(sp->portName.u.wwn) == 0) {
288 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
289 "0140 PLOGI Reject: invalid nname\n");
290 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
291 stat.un.b.lsRjtRsnCodeExp = LSEXP_INVALID_PNAME;
292 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp,
296 if (wwn_to_u64(sp->nodeName.u.wwn) == 0) {
297 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
298 "0141 PLOGI Reject: invalid pname\n");
299 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
300 stat.un.b.lsRjtRsnCodeExp = LSEXP_INVALID_NNAME;
301 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp,
305 if ((lpfc_check_sparm(vport, ndlp, sp, CLASS3) == 0)) {
306 /* Reject this request because invalid parameters */
307 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
308 stat.un.b.lsRjtRsnCodeExp = LSEXP_SPARM_OPTIONS;
309 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp,
313 icmd = &cmdiocb->iocb;
315 /* PLOGI chkparm OK */
316 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
317 "0114 PLOGI chkparm OK Data: x%x x%x x%x x%x\n",
318 ndlp->nlp_DID, ndlp->nlp_state, ndlp->nlp_flag,
321 if (vport->cfg_fcp_class == 2 && sp->cls2.classValid)
322 ndlp->nlp_fcp_info |= CLASS2;
324 ndlp->nlp_fcp_info |= CLASS3;
326 ndlp->nlp_class_sup = 0;
327 if (sp->cls1.classValid)
328 ndlp->nlp_class_sup |= FC_COS_CLASS1;
329 if (sp->cls2.classValid)
330 ndlp->nlp_class_sup |= FC_COS_CLASS2;
331 if (sp->cls3.classValid)
332 ndlp->nlp_class_sup |= FC_COS_CLASS3;
333 if (sp->cls4.classValid)
334 ndlp->nlp_class_sup |= FC_COS_CLASS4;
336 ((sp->cmn.bbRcvSizeMsb & 0x0F) << 8) | sp->cmn.bbRcvSizeLsb;
338 /* no need to reg_login if we are already in one of these states */
339 switch (ndlp->nlp_state) {
340 case NLP_STE_NPR_NODE:
341 if (!(ndlp->nlp_flag & NLP_NPR_ADISC))
343 case NLP_STE_REG_LOGIN_ISSUE:
344 case NLP_STE_PRLI_ISSUE:
345 case NLP_STE_UNMAPPED_NODE:
346 case NLP_STE_MAPPED_NODE:
347 lpfc_els_rsp_acc(vport, ELS_CMD_PLOGI, cmdiocb, ndlp, NULL);
351 if ((vport->fc_flag & FC_PT2PT) &&
352 !(vport->fc_flag & FC_PT2PT_PLOGI)) {
353 /* rcv'ed PLOGI decides what our NPortId will be */
354 vport->fc_myDID = icmd->un.rcvels.parmRo;
355 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
358 lpfc_config_link(phba, mbox);
359 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
361 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
362 if (rc == MBX_NOT_FINISHED) {
363 mempool_free(mbox, phba->mbox_mem_pool);
367 lpfc_can_disctmo(vport);
369 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
373 rc = lpfc_reg_login(phba, vport->vpi, icmd->un.rcvels.remoteID,
374 (uint8_t *) sp, mbox, 0);
376 mempool_free(mbox, phba->mbox_mem_pool);
380 /* ACC PLOGI rsp command needs to execute first,
381 * queue this mbox command to be processed later.
383 mbox->mbox_cmpl = lpfc_mbx_cmpl_reg_login;
385 * mbox->context2 = lpfc_nlp_get(ndlp) deferred until mailbox
386 * command issued in lpfc_cmpl_els_acc().
389 spin_lock_irq(shost->host_lock);
390 ndlp->nlp_flag |= (NLP_ACC_REGLOGIN | NLP_RCV_PLOGI);
391 spin_unlock_irq(shost->host_lock);
394 * If there is an outstanding PLOGI issued, abort it before
395 * sending ACC rsp for received PLOGI. If pending plogi
396 * is not canceled here, the plogi will be rejected by
397 * remote port and will be retried. On a configuration with
398 * single discovery thread, this will cause a huge delay in
399 * discovery. Also this will cause multiple state machines
400 * running in parallel for this node.
402 if (ndlp->nlp_state == NLP_STE_PLOGI_ISSUE) {
403 /* software abort outstanding PLOGI */
404 lpfc_els_abort(phba, ndlp);
407 if ((vport->port_type == LPFC_NPIV_PORT &&
408 vport->cfg_restrict_login)) {
410 /* In order to preserve RPIs, we want to cleanup
411 * the default RPI the firmware created to rcv
412 * this ELS request. The only way to do this is
413 * to register, then unregister the RPI.
415 spin_lock_irq(shost->host_lock);
416 ndlp->nlp_flag |= NLP_RM_DFLT_RPI;
417 spin_unlock_irq(shost->host_lock);
418 stat.un.b.lsRjtRsnCode = LSRJT_INVALID_CMD;
419 stat.un.b.lsRjtRsnCodeExp = LSEXP_NOTHING_MORE;
420 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb,
424 lpfc_els_rsp_acc(vport, ELS_CMD_PLOGI, cmdiocb, ndlp, mbox);
427 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
428 stat.un.b.lsRjtRsnCodeExp = LSEXP_OUT_OF_RESOURCE;
429 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
434 lpfc_rcv_padisc(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
435 struct lpfc_iocbq *cmdiocb)
437 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
438 struct lpfc_dmabuf *pcmd;
439 struct serv_parm *sp;
440 struct lpfc_name *pnn, *ppn;
447 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
448 lp = (uint32_t *) pcmd->virt;
451 if (cmd == ELS_CMD_ADISC) {
453 pnn = (struct lpfc_name *) & ap->nodeName;
454 ppn = (struct lpfc_name *) & ap->portName;
456 sp = (struct serv_parm *) lp;
457 pnn = (struct lpfc_name *) & sp->nodeName;
458 ppn = (struct lpfc_name *) & sp->portName;
461 icmd = &cmdiocb->iocb;
462 if (icmd->ulpStatus == 0 && lpfc_check_adisc(vport, ndlp, pnn, ppn)) {
463 if (cmd == ELS_CMD_ADISC) {
464 lpfc_els_rsp_adisc_acc(vport, cmdiocb, ndlp);
466 lpfc_els_rsp_acc(vport, ELS_CMD_PLOGI, cmdiocb, ndlp,
471 /* Reject this request because invalid parameters */
472 stat.un.b.lsRjtRsvd0 = 0;
473 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
474 stat.un.b.lsRjtRsnCodeExp = LSEXP_SPARM_OPTIONS;
475 stat.un.b.vendorUnique = 0;
476 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
479 mod_timer(&ndlp->nlp_delayfunc, jiffies + HZ);
481 spin_lock_irq(shost->host_lock);
482 ndlp->nlp_flag |= NLP_DELAY_TMO;
483 spin_unlock_irq(shost->host_lock);
484 ndlp->nlp_last_elscmd = ELS_CMD_PLOGI;
485 ndlp->nlp_prev_state = ndlp->nlp_state;
486 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
491 lpfc_rcv_logo(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
492 struct lpfc_iocbq *cmdiocb, uint32_t els_cmd)
494 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
496 /* Put ndlp in NPR state with 1 sec timeout for plogi, ACC logo */
497 /* Only call LOGO ACC for first LOGO, this avoids sending unnecessary
498 * PLOGIs during LOGO storms from a device.
500 spin_lock_irq(shost->host_lock);
501 ndlp->nlp_flag |= NLP_LOGO_ACC;
502 spin_unlock_irq(shost->host_lock);
503 if (els_cmd == ELS_CMD_PRLO)
504 lpfc_els_rsp_acc(vport, ELS_CMD_PRLO, cmdiocb, ndlp, NULL);
506 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
508 if ((!(ndlp->nlp_type & NLP_FABRIC) &&
509 ((ndlp->nlp_type & NLP_FCP_TARGET) ||
510 !(ndlp->nlp_type & NLP_FCP_INITIATOR))) ||
511 (ndlp->nlp_state == NLP_STE_ADISC_ISSUE)) {
512 /* Only try to re-login if this is NOT a Fabric Node */
513 mod_timer(&ndlp->nlp_delayfunc, jiffies + HZ * 1);
514 spin_lock_irq(shost->host_lock);
515 ndlp->nlp_flag |= NLP_DELAY_TMO;
516 spin_unlock_irq(shost->host_lock);
518 ndlp->nlp_last_elscmd = ELS_CMD_PLOGI;
520 ndlp->nlp_prev_state = ndlp->nlp_state;
521 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
523 spin_lock_irq(shost->host_lock);
524 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
525 spin_unlock_irq(shost->host_lock);
526 /* The driver has to wait until the ACC completes before it continues
527 * processing the LOGO. The action will resume in
528 * lpfc_cmpl_els_logo_acc routine. Since part of processing includes an
529 * unreg_login, the driver waits so the ACC does not get aborted.
535 lpfc_rcv_prli(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
536 struct lpfc_iocbq *cmdiocb)
538 struct lpfc_dmabuf *pcmd;
541 struct fc_rport *rport = ndlp->rport;
544 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
545 lp = (uint32_t *) pcmd->virt;
546 npr = (PRLI *) ((uint8_t *) lp + sizeof (uint32_t));
548 ndlp->nlp_type &= ~(NLP_FCP_TARGET | NLP_FCP_INITIATOR);
549 ndlp->nlp_fcp_info &= ~NLP_FCP_2_DEVICE;
550 if (npr->prliType == PRLI_FCP_TYPE) {
551 if (npr->initiatorFunc)
552 ndlp->nlp_type |= NLP_FCP_INITIATOR;
554 ndlp->nlp_type |= NLP_FCP_TARGET;
556 ndlp->nlp_fcp_info |= NLP_FCP_2_DEVICE;
559 /* We need to update the rport role values */
560 roles = FC_RPORT_ROLE_UNKNOWN;
561 if (ndlp->nlp_type & NLP_FCP_INITIATOR)
562 roles |= FC_RPORT_ROLE_FCP_INITIATOR;
563 if (ndlp->nlp_type & NLP_FCP_TARGET)
564 roles |= FC_RPORT_ROLE_FCP_TARGET;
566 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_RPORT,
567 "rport rolechg: role:x%x did:x%x flg:x%x",
568 roles, ndlp->nlp_DID, ndlp->nlp_flag);
570 fc_remote_port_rolechg(rport, roles);
575 lpfc_disc_set_adisc(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
577 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
579 if (!ndlp->nlp_rpi) {
580 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
584 if (!(vport->fc_flag & FC_PT2PT)) {
585 /* Check config parameter use-adisc or FCP-2 */
586 if ((vport->cfg_use_adisc && (vport->fc_flag & FC_RSCN_MODE)) ||
587 ndlp->nlp_fcp_info & NLP_FCP_2_DEVICE) {
588 spin_lock_irq(shost->host_lock);
589 ndlp->nlp_flag |= NLP_NPR_ADISC;
590 spin_unlock_irq(shost->host_lock);
594 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
595 lpfc_unreg_rpi(vport, ndlp);
600 lpfc_disc_illegal(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
601 void *arg, uint32_t evt)
603 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
604 "0271 Illegal State Transition: node x%x "
605 "event x%x, state x%x Data: x%x x%x\n",
606 ndlp->nlp_DID, evt, ndlp->nlp_state, ndlp->nlp_rpi,
608 return ndlp->nlp_state;
612 lpfc_cmpl_plogi_illegal(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
613 void *arg, uint32_t evt)
615 /* This transition is only legal if we previously
616 * rcv'ed a PLOGI. Since we don't want 2 discovery threads
617 * working on the same NPortID, do nothing for this thread
620 if (!(ndlp->nlp_flag & NLP_RCV_PLOGI)) {
621 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
622 "0272 Illegal State Transition: node x%x "
623 "event x%x, state x%x Data: x%x x%x\n",
624 ndlp->nlp_DID, evt, ndlp->nlp_state, ndlp->nlp_rpi,
627 return ndlp->nlp_state;
630 /* Start of Discovery State Machine routines */
633 lpfc_rcv_plogi_unused_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
634 void *arg, uint32_t evt)
636 struct lpfc_iocbq *cmdiocb;
638 cmdiocb = (struct lpfc_iocbq *) arg;
640 if (lpfc_rcv_plogi(vport, ndlp, cmdiocb)) {
641 return ndlp->nlp_state;
643 return NLP_STE_FREED_NODE;
647 lpfc_rcv_els_unused_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
648 void *arg, uint32_t evt)
650 lpfc_issue_els_logo(vport, ndlp, 0);
651 return ndlp->nlp_state;
655 lpfc_rcv_logo_unused_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
656 void *arg, uint32_t evt)
658 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
659 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
661 spin_lock_irq(shost->host_lock);
662 ndlp->nlp_flag |= NLP_LOGO_ACC;
663 spin_unlock_irq(shost->host_lock);
664 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
666 return ndlp->nlp_state;
670 lpfc_cmpl_logo_unused_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
671 void *arg, uint32_t evt)
673 return NLP_STE_FREED_NODE;
677 lpfc_device_rm_unused_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
678 void *arg, uint32_t evt)
680 return NLP_STE_FREED_NODE;
684 lpfc_rcv_plogi_plogi_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
685 void *arg, uint32_t evt)
687 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
688 struct lpfc_hba *phba = vport->phba;
689 struct lpfc_iocbq *cmdiocb = arg;
690 struct lpfc_dmabuf *pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
691 uint32_t *lp = (uint32_t *) pcmd->virt;
692 struct serv_parm *sp = (struct serv_parm *) (lp + 1);
696 memset(&stat, 0, sizeof (struct ls_rjt));
698 /* For a PLOGI, we only accept if our portname is less
699 * than the remote portname.
701 phba->fc_stat.elsLogiCol++;
702 port_cmp = memcmp(&vport->fc_portname, &sp->portName,
703 sizeof(struct lpfc_name));
706 /* Reject this request because the remote node will accept
708 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
709 stat.un.b.lsRjtRsnCodeExp = LSEXP_CMD_IN_PROGRESS;
710 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp,
713 if (lpfc_rcv_plogi(vport, ndlp, cmdiocb) &&
714 (ndlp->nlp_flag & NLP_NPR_2B_DISC) &&
715 (vport->num_disc_nodes)) {
716 spin_lock_irq(shost->host_lock);
717 ndlp->nlp_flag &= ~NLP_NPR_2B_DISC;
718 spin_unlock_irq(shost->host_lock);
719 /* Check if there are more PLOGIs to be sent */
720 lpfc_more_plogi(vport);
721 if (vport->num_disc_nodes == 0) {
722 spin_lock_irq(shost->host_lock);
723 vport->fc_flag &= ~FC_NDISC_ACTIVE;
724 spin_unlock_irq(shost->host_lock);
725 lpfc_can_disctmo(vport);
726 lpfc_end_rscn(vport);
729 } /* If our portname was less */
731 return ndlp->nlp_state;
735 lpfc_rcv_prli_plogi_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
736 void *arg, uint32_t evt)
738 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
741 memset(&stat, 0, sizeof (struct ls_rjt));
742 stat.un.b.lsRjtRsnCode = LSRJT_LOGICAL_BSY;
743 stat.un.b.lsRjtRsnCodeExp = LSEXP_NOTHING_MORE;
744 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
745 return ndlp->nlp_state;
749 lpfc_rcv_logo_plogi_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
750 void *arg, uint32_t evt)
752 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
754 /* software abort outstanding PLOGI */
755 lpfc_els_abort(vport->phba, ndlp);
757 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_LOGO);
758 return ndlp->nlp_state;
762 lpfc_rcv_els_plogi_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
763 void *arg, uint32_t evt)
765 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
766 struct lpfc_hba *phba = vport->phba;
767 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
769 /* software abort outstanding PLOGI */
770 lpfc_els_abort(phba, ndlp);
772 if (evt == NLP_EVT_RCV_LOGO) {
773 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
775 lpfc_issue_els_logo(vport, ndlp, 0);
778 /* Put ndlp in npr state set plogi timer for 1 sec */
779 mod_timer(&ndlp->nlp_delayfunc, jiffies + HZ * 1);
780 spin_lock_irq(shost->host_lock);
781 ndlp->nlp_flag |= NLP_DELAY_TMO;
782 spin_unlock_irq(shost->host_lock);
783 ndlp->nlp_last_elscmd = ELS_CMD_PLOGI;
784 ndlp->nlp_prev_state = NLP_STE_PLOGI_ISSUE;
785 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
787 return ndlp->nlp_state;
791 lpfc_cmpl_plogi_plogi_issue(struct lpfc_vport *vport,
792 struct lpfc_nodelist *ndlp,
796 struct lpfc_hba *phba = vport->phba;
797 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
798 struct lpfc_iocbq *cmdiocb, *rspiocb;
799 struct lpfc_dmabuf *pcmd, *prsp, *mp;
802 struct serv_parm *sp;
805 cmdiocb = (struct lpfc_iocbq *) arg;
806 rspiocb = cmdiocb->context_un.rsp_iocb;
808 if (ndlp->nlp_flag & NLP_ACC_REGLOGIN) {
809 /* Recovery from PLOGI collision logic */
810 return ndlp->nlp_state;
813 irsp = &rspiocb->iocb;
818 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
820 prsp = list_get_first(&pcmd->list, struct lpfc_dmabuf, list);
822 lp = (uint32_t *) prsp->virt;
823 sp = (struct serv_parm *) ((uint8_t *) lp + sizeof (uint32_t));
825 /* Some switches have FDMI servers returning 0 for WWN */
826 if ((ndlp->nlp_DID != FDMI_DID) &&
827 (wwn_to_u64(sp->portName.u.wwn) == 0 ||
828 wwn_to_u64(sp->nodeName.u.wwn) == 0)) {
829 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
830 "0142 PLOGI RSP: Invalid WWN.\n");
833 if (!lpfc_check_sparm(vport, ndlp, sp, CLASS3))
835 /* PLOGI chkparm OK */
836 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
837 "0121 PLOGI chkparm OK Data: x%x x%x x%x x%x\n",
838 ndlp->nlp_DID, ndlp->nlp_state,
839 ndlp->nlp_flag, ndlp->nlp_rpi);
840 if (vport->cfg_fcp_class == 2 && (sp->cls2.classValid))
841 ndlp->nlp_fcp_info |= CLASS2;
843 ndlp->nlp_fcp_info |= CLASS3;
845 ndlp->nlp_class_sup = 0;
846 if (sp->cls1.classValid)
847 ndlp->nlp_class_sup |= FC_COS_CLASS1;
848 if (sp->cls2.classValid)
849 ndlp->nlp_class_sup |= FC_COS_CLASS2;
850 if (sp->cls3.classValid)
851 ndlp->nlp_class_sup |= FC_COS_CLASS3;
852 if (sp->cls4.classValid)
853 ndlp->nlp_class_sup |= FC_COS_CLASS4;
855 ((sp->cmn.bbRcvSizeMsb & 0x0F) << 8) | sp->cmn.bbRcvSizeLsb;
857 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
859 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
860 "0133 PLOGI: no memory for reg_login "
861 "Data: x%x x%x x%x x%x\n",
862 ndlp->nlp_DID, ndlp->nlp_state,
863 ndlp->nlp_flag, ndlp->nlp_rpi);
867 lpfc_unreg_rpi(vport, ndlp);
869 if (lpfc_reg_login(phba, vport->vpi, irsp->un.elsreq64.remoteID,
870 (uint8_t *) sp, mbox, 0) == 0) {
871 switch (ndlp->nlp_DID) {
873 mbox->mbox_cmpl = lpfc_mbx_cmpl_ns_reg_login;
876 mbox->mbox_cmpl = lpfc_mbx_cmpl_fdmi_reg_login;
879 mbox->mbox_cmpl = lpfc_mbx_cmpl_reg_login;
881 mbox->context2 = lpfc_nlp_get(ndlp);
883 if (lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT)
884 != MBX_NOT_FINISHED) {
885 lpfc_nlp_set_state(vport, ndlp,
886 NLP_STE_REG_LOGIN_ISSUE);
887 return ndlp->nlp_state;
889 /* decrement node reference count to the failed mbox
893 mp = (struct lpfc_dmabuf *) mbox->context1;
894 lpfc_mbuf_free(phba, mp->virt, mp->phys);
896 mempool_free(mbox, phba->mbox_mem_pool);
898 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
899 "0134 PLOGI: cannot issue reg_login "
900 "Data: x%x x%x x%x x%x\n",
901 ndlp->nlp_DID, ndlp->nlp_state,
902 ndlp->nlp_flag, ndlp->nlp_rpi);
904 mempool_free(mbox, phba->mbox_mem_pool);
906 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
907 "0135 PLOGI: cannot format reg_login "
908 "Data: x%x x%x x%x x%x\n",
909 ndlp->nlp_DID, ndlp->nlp_state,
910 ndlp->nlp_flag, ndlp->nlp_rpi);
915 if (ndlp->nlp_DID == NameServer_DID) {
916 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
917 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
918 "0261 Cannot Register NameServer login\n");
921 spin_lock_irq(shost->host_lock);
922 ndlp->nlp_flag |= NLP_DEFER_RM;
923 spin_unlock_irq(shost->host_lock);
924 return NLP_STE_FREED_NODE;
928 lpfc_cmpl_logo_plogi_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
929 void *arg, uint32_t evt)
931 return ndlp->nlp_state;
935 lpfc_cmpl_reglogin_plogi_issue(struct lpfc_vport *vport,
936 struct lpfc_nodelist *ndlp, void *arg, uint32_t evt)
938 return ndlp->nlp_state;
942 lpfc_device_rm_plogi_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
943 void *arg, uint32_t evt)
945 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
947 if (ndlp->nlp_flag & NLP_NPR_2B_DISC) {
948 spin_lock_irq(shost->host_lock);
949 ndlp->nlp_flag |= NLP_NODEV_REMOVE;
950 spin_unlock_irq(shost->host_lock);
951 return ndlp->nlp_state;
953 /* software abort outstanding PLOGI */
954 lpfc_els_abort(vport->phba, ndlp);
956 lpfc_drop_node(vport, ndlp);
957 return NLP_STE_FREED_NODE;
962 lpfc_device_recov_plogi_issue(struct lpfc_vport *vport,
963 struct lpfc_nodelist *ndlp,
967 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
968 struct lpfc_hba *phba = vport->phba;
970 /* Don't do anything that will mess up processing of the
973 if (vport->fc_flag & FC_RSCN_DEFERRED)
974 return ndlp->nlp_state;
976 /* software abort outstanding PLOGI */
977 lpfc_els_abort(phba, ndlp);
979 ndlp->nlp_prev_state = NLP_STE_PLOGI_ISSUE;
980 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
981 spin_lock_irq(shost->host_lock);
982 ndlp->nlp_flag &= ~(NLP_NODEV_REMOVE | NLP_NPR_2B_DISC);
983 spin_unlock_irq(shost->host_lock);
985 return ndlp->nlp_state;
989 lpfc_rcv_plogi_adisc_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
990 void *arg, uint32_t evt)
992 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
993 struct lpfc_hba *phba = vport->phba;
994 struct lpfc_iocbq *cmdiocb;
996 /* software abort outstanding ADISC */
997 lpfc_els_abort(phba, ndlp);
999 cmdiocb = (struct lpfc_iocbq *) arg;
1001 if (lpfc_rcv_plogi(vport, ndlp, cmdiocb)) {
1002 if (ndlp->nlp_flag & NLP_NPR_2B_DISC) {
1003 spin_lock_irq(shost->host_lock);
1004 ndlp->nlp_flag &= ~NLP_NPR_2B_DISC;
1005 spin_unlock_irq(shost->host_lock);
1007 if (vport->num_disc_nodes) {
1008 lpfc_more_adisc(vport);
1009 if ((vport->num_disc_nodes == 0) &&
1010 (vport->fc_npr_cnt))
1011 lpfc_els_disc_plogi(vport);
1012 if (vport->num_disc_nodes == 0) {
1013 spin_lock_irq(shost->host_lock);
1014 vport->fc_flag &= ~FC_NDISC_ACTIVE;
1015 spin_unlock_irq(shost->host_lock);
1016 lpfc_can_disctmo(vport);
1017 lpfc_end_rscn(vport);
1021 return ndlp->nlp_state;
1023 ndlp->nlp_prev_state = NLP_STE_ADISC_ISSUE;
1024 lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0);
1025 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
1027 return ndlp->nlp_state;
1031 lpfc_rcv_prli_adisc_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1032 void *arg, uint32_t evt)
1034 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
1036 lpfc_els_rsp_prli_acc(vport, cmdiocb, ndlp);
1037 return ndlp->nlp_state;
1041 lpfc_rcv_logo_adisc_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1042 void *arg, uint32_t evt)
1044 struct lpfc_hba *phba = vport->phba;
1045 struct lpfc_iocbq *cmdiocb;
1047 cmdiocb = (struct lpfc_iocbq *) arg;
1049 /* software abort outstanding ADISC */
1050 lpfc_els_abort(phba, ndlp);
1052 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_LOGO);
1053 return ndlp->nlp_state;
1057 lpfc_rcv_padisc_adisc_issue(struct lpfc_vport *vport,
1058 struct lpfc_nodelist *ndlp,
1059 void *arg, uint32_t evt)
1061 struct lpfc_iocbq *cmdiocb;
1063 cmdiocb = (struct lpfc_iocbq *) arg;
1065 lpfc_rcv_padisc(vport, ndlp, cmdiocb);
1066 return ndlp->nlp_state;
1070 lpfc_rcv_prlo_adisc_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1071 void *arg, uint32_t evt)
1073 struct lpfc_iocbq *cmdiocb;
1075 cmdiocb = (struct lpfc_iocbq *) arg;
1077 /* Treat like rcv logo */
1078 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_PRLO);
1079 return ndlp->nlp_state;
1083 lpfc_cmpl_adisc_adisc_issue(struct lpfc_vport *vport,
1084 struct lpfc_nodelist *ndlp,
1085 void *arg, uint32_t evt)
1087 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1088 struct lpfc_hba *phba = vport->phba;
1089 struct lpfc_iocbq *cmdiocb, *rspiocb;
1093 cmdiocb = (struct lpfc_iocbq *) arg;
1094 rspiocb = cmdiocb->context_un.rsp_iocb;
1096 ap = (ADISC *)lpfc_check_elscmpl_iocb(phba, cmdiocb, rspiocb);
1097 irsp = &rspiocb->iocb;
1099 if ((irsp->ulpStatus) ||
1100 (!lpfc_check_adisc(vport, ndlp, &ap->nodeName, &ap->portName))) {
1102 mod_timer(&ndlp->nlp_delayfunc, jiffies + HZ);
1103 spin_lock_irq(shost->host_lock);
1104 ndlp->nlp_flag |= NLP_DELAY_TMO;
1105 spin_unlock_irq(shost->host_lock);
1106 ndlp->nlp_last_elscmd = ELS_CMD_PLOGI;
1108 memset(&ndlp->nlp_nodename, 0, sizeof(struct lpfc_name));
1109 memset(&ndlp->nlp_portname, 0, sizeof(struct lpfc_name));
1111 ndlp->nlp_prev_state = NLP_STE_ADISC_ISSUE;
1112 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
1113 lpfc_unreg_rpi(vport, ndlp);
1114 return ndlp->nlp_state;
1117 if (ndlp->nlp_type & NLP_FCP_TARGET) {
1118 ndlp->nlp_prev_state = NLP_STE_ADISC_ISSUE;
1119 lpfc_nlp_set_state(vport, ndlp, NLP_STE_MAPPED_NODE);
1121 ndlp->nlp_prev_state = NLP_STE_ADISC_ISSUE;
1122 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
1124 return ndlp->nlp_state;
1128 lpfc_device_rm_adisc_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1129 void *arg, uint32_t evt)
1131 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1133 if (ndlp->nlp_flag & NLP_NPR_2B_DISC) {
1134 spin_lock_irq(shost->host_lock);
1135 ndlp->nlp_flag |= NLP_NODEV_REMOVE;
1136 spin_unlock_irq(shost->host_lock);
1137 return ndlp->nlp_state;
1139 /* software abort outstanding ADISC */
1140 lpfc_els_abort(vport->phba, ndlp);
1142 lpfc_drop_node(vport, ndlp);
1143 return NLP_STE_FREED_NODE;
1148 lpfc_device_recov_adisc_issue(struct lpfc_vport *vport,
1149 struct lpfc_nodelist *ndlp,
1153 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1154 struct lpfc_hba *phba = vport->phba;
1156 /* Don't do anything that will mess up processing of the
1159 if (vport->fc_flag & FC_RSCN_DEFERRED)
1160 return ndlp->nlp_state;
1162 /* software abort outstanding ADISC */
1163 lpfc_els_abort(phba, ndlp);
1165 ndlp->nlp_prev_state = NLP_STE_ADISC_ISSUE;
1166 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
1167 spin_lock_irq(shost->host_lock);
1168 ndlp->nlp_flag &= ~(NLP_NODEV_REMOVE | NLP_NPR_2B_DISC);
1169 spin_unlock_irq(shost->host_lock);
1170 lpfc_disc_set_adisc(vport, ndlp);
1171 return ndlp->nlp_state;
1175 lpfc_rcv_plogi_reglogin_issue(struct lpfc_vport *vport,
1176 struct lpfc_nodelist *ndlp,
1180 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
1182 lpfc_rcv_plogi(vport, ndlp, cmdiocb);
1183 return ndlp->nlp_state;
1187 lpfc_rcv_prli_reglogin_issue(struct lpfc_vport *vport,
1188 struct lpfc_nodelist *ndlp,
1192 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
1194 lpfc_els_rsp_prli_acc(vport, cmdiocb, ndlp);
1195 return ndlp->nlp_state;
1199 lpfc_rcv_logo_reglogin_issue(struct lpfc_vport *vport,
1200 struct lpfc_nodelist *ndlp,
1204 struct lpfc_hba *phba = vport->phba;
1205 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
1207 LPFC_MBOXQ_t *nextmb;
1208 struct lpfc_dmabuf *mp;
1210 cmdiocb = (struct lpfc_iocbq *) arg;
1212 /* cleanup any ndlp on mbox q waiting for reglogin cmpl */
1213 if ((mb = phba->sli.mbox_active)) {
1214 if ((mb->mb.mbxCommand == MBX_REG_LOGIN64) &&
1215 (ndlp == (struct lpfc_nodelist *) mb->context2)) {
1217 mb->context2 = NULL;
1218 mb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
1222 spin_lock_irq(&phba->hbalock);
1223 list_for_each_entry_safe(mb, nextmb, &phba->sli.mboxq, list) {
1224 if ((mb->mb.mbxCommand == MBX_REG_LOGIN64) &&
1225 (ndlp == (struct lpfc_nodelist *) mb->context2)) {
1226 mp = (struct lpfc_dmabuf *) (mb->context1);
1228 __lpfc_mbuf_free(phba, mp->virt, mp->phys);
1232 list_del(&mb->list);
1233 mempool_free(mb, phba->mbox_mem_pool);
1236 spin_unlock_irq(&phba->hbalock);
1238 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_LOGO);
1239 return ndlp->nlp_state;
1243 lpfc_rcv_padisc_reglogin_issue(struct lpfc_vport *vport,
1244 struct lpfc_nodelist *ndlp,
1248 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
1250 lpfc_rcv_padisc(vport, ndlp, cmdiocb);
1251 return ndlp->nlp_state;
1255 lpfc_rcv_prlo_reglogin_issue(struct lpfc_vport *vport,
1256 struct lpfc_nodelist *ndlp,
1260 struct lpfc_iocbq *cmdiocb;
1262 cmdiocb = (struct lpfc_iocbq *) arg;
1263 lpfc_els_rsp_acc(vport, ELS_CMD_PRLO, cmdiocb, ndlp, NULL);
1264 return ndlp->nlp_state;
1268 lpfc_cmpl_reglogin_reglogin_issue(struct lpfc_vport *vport,
1269 struct lpfc_nodelist *ndlp,
1273 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1274 LPFC_MBOXQ_t *pmb = (LPFC_MBOXQ_t *) arg;
1275 MAILBOX_t *mb = &pmb->mb;
1276 uint32_t did = mb->un.varWords[1];
1278 if (mb->mbxStatus) {
1279 /* RegLogin failed */
1280 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
1281 "0246 RegLogin failed Data: x%x x%x x%x\n",
1282 did, mb->mbxStatus, vport->port_state);
1284 * If RegLogin failed due to lack of HBA resources do not
1287 if (mb->mbxStatus == MBXERR_RPI_FULL) {
1288 ndlp->nlp_prev_state = NLP_STE_REG_LOGIN_ISSUE;
1289 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
1290 return ndlp->nlp_state;
1293 /* Put ndlp in npr state set plogi timer for 1 sec */
1294 mod_timer(&ndlp->nlp_delayfunc, jiffies + HZ * 1);
1295 spin_lock_irq(shost->host_lock);
1296 ndlp->nlp_flag |= NLP_DELAY_TMO;
1297 spin_unlock_irq(shost->host_lock);
1298 ndlp->nlp_last_elscmd = ELS_CMD_PLOGI;
1300 lpfc_issue_els_logo(vport, ndlp, 0);
1301 ndlp->nlp_prev_state = NLP_STE_REG_LOGIN_ISSUE;
1302 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
1303 return ndlp->nlp_state;
1306 ndlp->nlp_rpi = mb->un.varWords[0];
1308 /* Only if we are not a fabric nport do we issue PRLI */
1309 if (!(ndlp->nlp_type & NLP_FABRIC)) {
1310 ndlp->nlp_prev_state = NLP_STE_REG_LOGIN_ISSUE;
1311 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PRLI_ISSUE);
1312 lpfc_issue_els_prli(vport, ndlp, 0);
1314 ndlp->nlp_prev_state = NLP_STE_REG_LOGIN_ISSUE;
1315 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
1317 return ndlp->nlp_state;
1321 lpfc_device_rm_reglogin_issue(struct lpfc_vport *vport,
1322 struct lpfc_nodelist *ndlp,
1326 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1328 if (ndlp->nlp_flag & NLP_NPR_2B_DISC) {
1329 spin_lock_irq(shost->host_lock);
1330 ndlp->nlp_flag |= NLP_NODEV_REMOVE;
1331 spin_unlock_irq(shost->host_lock);
1332 return ndlp->nlp_state;
1334 lpfc_drop_node(vport, ndlp);
1335 return NLP_STE_FREED_NODE;
1340 lpfc_device_recov_reglogin_issue(struct lpfc_vport *vport,
1341 struct lpfc_nodelist *ndlp,
1345 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1347 /* Don't do anything that will mess up processing of the
1350 if (vport->fc_flag & FC_RSCN_DEFERRED)
1351 return ndlp->nlp_state;
1353 ndlp->nlp_prev_state = NLP_STE_REG_LOGIN_ISSUE;
1354 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
1355 spin_lock_irq(shost->host_lock);
1356 ndlp->nlp_flag &= ~(NLP_NODEV_REMOVE | NLP_NPR_2B_DISC);
1357 spin_unlock_irq(shost->host_lock);
1358 lpfc_disc_set_adisc(vport, ndlp);
1359 return ndlp->nlp_state;
1363 lpfc_rcv_plogi_prli_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1364 void *arg, uint32_t evt)
1366 struct lpfc_iocbq *cmdiocb;
1368 cmdiocb = (struct lpfc_iocbq *) arg;
1370 lpfc_rcv_plogi(vport, ndlp, cmdiocb);
1371 return ndlp->nlp_state;
1375 lpfc_rcv_prli_prli_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1376 void *arg, uint32_t evt)
1378 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
1380 lpfc_els_rsp_prli_acc(vport, cmdiocb, ndlp);
1381 return ndlp->nlp_state;
1385 lpfc_rcv_logo_prli_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1386 void *arg, uint32_t evt)
1388 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
1390 /* Software abort outstanding PRLI before sending acc */
1391 lpfc_els_abort(vport->phba, ndlp);
1393 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_LOGO);
1394 return ndlp->nlp_state;
1398 lpfc_rcv_padisc_prli_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1399 void *arg, uint32_t evt)
1401 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
1403 lpfc_rcv_padisc(vport, ndlp, cmdiocb);
1404 return ndlp->nlp_state;
1407 /* This routine is envoked when we rcv a PRLO request from a nport
1408 * we are logged into. We should send back a PRLO rsp setting the
1410 * NEXT STATE = PRLI_ISSUE
1413 lpfc_rcv_prlo_prli_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1414 void *arg, uint32_t evt)
1416 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
1418 lpfc_els_rsp_acc(vport, ELS_CMD_PRLO, cmdiocb, ndlp, NULL);
1419 return ndlp->nlp_state;
1423 lpfc_cmpl_prli_prli_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1424 void *arg, uint32_t evt)
1426 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1427 struct lpfc_iocbq *cmdiocb, *rspiocb;
1428 struct lpfc_hba *phba = vport->phba;
1432 cmdiocb = (struct lpfc_iocbq *) arg;
1433 rspiocb = cmdiocb->context_un.rsp_iocb;
1434 npr = (PRLI *)lpfc_check_elscmpl_iocb(phba, cmdiocb, rspiocb);
1436 irsp = &rspiocb->iocb;
1437 if (irsp->ulpStatus) {
1438 if ((vport->port_type == LPFC_NPIV_PORT) &&
1439 vport->cfg_restrict_login) {
1442 ndlp->nlp_prev_state = NLP_STE_PRLI_ISSUE;
1443 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
1444 return ndlp->nlp_state;
1447 /* Check out PRLI rsp */
1448 ndlp->nlp_type &= ~(NLP_FCP_TARGET | NLP_FCP_INITIATOR);
1449 ndlp->nlp_fcp_info &= ~NLP_FCP_2_DEVICE;
1450 if ((npr->acceptRspCode == PRLI_REQ_EXECUTED) &&
1451 (npr->prliType == PRLI_FCP_TYPE)) {
1452 if (npr->initiatorFunc)
1453 ndlp->nlp_type |= NLP_FCP_INITIATOR;
1454 if (npr->targetFunc)
1455 ndlp->nlp_type |= NLP_FCP_TARGET;
1457 ndlp->nlp_fcp_info |= NLP_FCP_2_DEVICE;
1459 if (!(ndlp->nlp_type & NLP_FCP_TARGET) &&
1460 (vport->port_type == LPFC_NPIV_PORT) &&
1461 vport->cfg_restrict_login) {
1463 spin_lock_irq(shost->host_lock);
1464 ndlp->nlp_flag |= NLP_TARGET_REMOVE;
1465 spin_unlock_irq(shost->host_lock);
1466 lpfc_issue_els_logo(vport, ndlp, 0);
1468 ndlp->nlp_prev_state = NLP_STE_PRLI_ISSUE;
1469 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
1470 return ndlp->nlp_state;
1473 ndlp->nlp_prev_state = NLP_STE_PRLI_ISSUE;
1474 if (ndlp->nlp_type & NLP_FCP_TARGET)
1475 lpfc_nlp_set_state(vport, ndlp, NLP_STE_MAPPED_NODE);
1477 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
1478 return ndlp->nlp_state;
1481 /*! lpfc_device_rm_prli_issue
1492 * This routine is envoked when we a request to remove a nport we are in the
1493 * process of PRLIing. We should software abort outstanding prli, unreg
1494 * login, send a logout. We will change node state to UNUSED_NODE, put it
1495 * on plogi list so it can be freed when LOGO completes.
1500 lpfc_device_rm_prli_issue(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1501 void *arg, uint32_t evt)
1503 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1505 if (ndlp->nlp_flag & NLP_NPR_2B_DISC) {
1506 spin_lock_irq(shost->host_lock);
1507 ndlp->nlp_flag |= NLP_NODEV_REMOVE;
1508 spin_unlock_irq(shost->host_lock);
1509 return ndlp->nlp_state;
1511 /* software abort outstanding PLOGI */
1512 lpfc_els_abort(vport->phba, ndlp);
1514 lpfc_drop_node(vport, ndlp);
1515 return NLP_STE_FREED_NODE;
1520 /*! lpfc_device_recov_prli_issue
1531 * The routine is envoked when the state of a device is unknown, like
1532 * during a link down. We should remove the nodelist entry from the
1533 * unmapped list, issue a UNREG_LOGIN, do a software abort of the
1534 * outstanding PRLI command, then free the node entry.
1537 lpfc_device_recov_prli_issue(struct lpfc_vport *vport,
1538 struct lpfc_nodelist *ndlp,
1542 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1543 struct lpfc_hba *phba = vport->phba;
1545 /* Don't do anything that will mess up processing of the
1548 if (vport->fc_flag & FC_RSCN_DEFERRED)
1549 return ndlp->nlp_state;
1551 /* software abort outstanding PRLI */
1552 lpfc_els_abort(phba, ndlp);
1554 ndlp->nlp_prev_state = NLP_STE_PRLI_ISSUE;
1555 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
1556 spin_lock_irq(shost->host_lock);
1557 ndlp->nlp_flag &= ~(NLP_NODEV_REMOVE | NLP_NPR_2B_DISC);
1558 spin_unlock_irq(shost->host_lock);
1559 lpfc_disc_set_adisc(vport, ndlp);
1560 return ndlp->nlp_state;
1564 lpfc_rcv_plogi_unmap_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1565 void *arg, uint32_t evt)
1567 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
1569 lpfc_rcv_plogi(vport, ndlp, cmdiocb);
1570 return ndlp->nlp_state;
1574 lpfc_rcv_prli_unmap_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1575 void *arg, uint32_t evt)
1577 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
1579 lpfc_rcv_prli(vport, ndlp, cmdiocb);
1580 lpfc_els_rsp_prli_acc(vport, cmdiocb, ndlp);
1581 return ndlp->nlp_state;
1585 lpfc_rcv_logo_unmap_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1586 void *arg, uint32_t evt)
1588 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
1590 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_LOGO);
1591 return ndlp->nlp_state;
1595 lpfc_rcv_padisc_unmap_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1596 void *arg, uint32_t evt)
1598 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
1600 lpfc_rcv_padisc(vport, ndlp, cmdiocb);
1601 return ndlp->nlp_state;
1605 lpfc_rcv_prlo_unmap_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1606 void *arg, uint32_t evt)
1608 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
1610 lpfc_els_rsp_acc(vport, ELS_CMD_PRLO, cmdiocb, ndlp, NULL);
1611 return ndlp->nlp_state;
1615 lpfc_device_recov_unmap_node(struct lpfc_vport *vport,
1616 struct lpfc_nodelist *ndlp,
1620 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1622 ndlp->nlp_prev_state = NLP_STE_UNMAPPED_NODE;
1623 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
1624 spin_lock_irq(shost->host_lock);
1625 ndlp->nlp_flag &= ~(NLP_NODEV_REMOVE | NLP_NPR_2B_DISC);
1626 spin_unlock_irq(shost->host_lock);
1627 lpfc_disc_set_adisc(vport, ndlp);
1629 return ndlp->nlp_state;
1633 lpfc_rcv_plogi_mapped_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1634 void *arg, uint32_t evt)
1636 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
1638 lpfc_rcv_plogi(vport, ndlp, cmdiocb);
1639 return ndlp->nlp_state;
1643 lpfc_rcv_prli_mapped_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1644 void *arg, uint32_t evt)
1646 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
1648 lpfc_els_rsp_prli_acc(vport, cmdiocb, ndlp);
1649 return ndlp->nlp_state;
1653 lpfc_rcv_logo_mapped_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1654 void *arg, uint32_t evt)
1656 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
1658 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_LOGO);
1659 return ndlp->nlp_state;
1663 lpfc_rcv_padisc_mapped_node(struct lpfc_vport *vport,
1664 struct lpfc_nodelist *ndlp,
1665 void *arg, uint32_t evt)
1667 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
1669 lpfc_rcv_padisc(vport, ndlp, cmdiocb);
1670 return ndlp->nlp_state;
1674 lpfc_rcv_prlo_mapped_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1675 void *arg, uint32_t evt)
1677 struct lpfc_hba *phba = vport->phba;
1678 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
1680 /* flush the target */
1681 lpfc_sli_abort_iocb(vport, &phba->sli.ring[phba->sli.fcp_ring],
1682 ndlp->nlp_sid, 0, LPFC_CTX_TGT);
1684 /* Treat like rcv logo */
1685 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_PRLO);
1686 return ndlp->nlp_state;
1690 lpfc_device_recov_mapped_node(struct lpfc_vport *vport,
1691 struct lpfc_nodelist *ndlp,
1695 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1697 ndlp->nlp_prev_state = NLP_STE_MAPPED_NODE;
1698 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
1699 spin_lock_irq(shost->host_lock);
1700 ndlp->nlp_flag &= ~(NLP_NODEV_REMOVE | NLP_NPR_2B_DISC);
1701 spin_unlock_irq(shost->host_lock);
1702 lpfc_disc_set_adisc(vport, ndlp);
1703 return ndlp->nlp_state;
1707 lpfc_rcv_plogi_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1708 void *arg, uint32_t evt)
1710 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1711 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
1713 /* Ignore PLOGI if we have an outstanding LOGO */
1714 if (ndlp->nlp_flag & (NLP_LOGO_SND | NLP_LOGO_ACC))
1715 return ndlp->nlp_state;
1716 if (lpfc_rcv_plogi(vport, ndlp, cmdiocb)) {
1717 lpfc_cancel_retry_delay_tmo(vport, ndlp);
1718 spin_lock_irq(shost->host_lock);
1719 ndlp->nlp_flag &= ~(NLP_NPR_ADISC | NLP_NPR_2B_DISC);
1720 spin_unlock_irq(shost->host_lock);
1721 } else if (!(ndlp->nlp_flag & NLP_NPR_2B_DISC)) {
1722 /* send PLOGI immediately, move to PLOGI issue state */
1723 if (!(ndlp->nlp_flag & NLP_DELAY_TMO)) {
1724 ndlp->nlp_prev_state = NLP_STE_NPR_NODE;
1725 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
1726 lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0);
1729 return ndlp->nlp_state;
1733 lpfc_rcv_prli_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1734 void *arg, uint32_t evt)
1736 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1737 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
1740 memset(&stat, 0, sizeof (struct ls_rjt));
1741 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
1742 stat.un.b.lsRjtRsnCodeExp = LSEXP_NOTHING_MORE;
1743 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
1745 if (!(ndlp->nlp_flag & NLP_DELAY_TMO)) {
1746 if (ndlp->nlp_flag & NLP_NPR_ADISC) {
1747 spin_lock_irq(shost->host_lock);
1748 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
1749 ndlp->nlp_prev_state = NLP_STE_NPR_NODE;
1750 spin_unlock_irq(shost->host_lock);
1751 lpfc_nlp_set_state(vport, ndlp, NLP_STE_ADISC_ISSUE);
1752 lpfc_issue_els_adisc(vport, ndlp, 0);
1754 ndlp->nlp_prev_state = NLP_STE_NPR_NODE;
1755 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
1756 lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0);
1759 return ndlp->nlp_state;
1763 lpfc_rcv_logo_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1764 void *arg, uint32_t evt)
1766 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
1768 lpfc_rcv_logo(vport, ndlp, cmdiocb, ELS_CMD_LOGO);
1769 return ndlp->nlp_state;
1773 lpfc_rcv_padisc_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1774 void *arg, uint32_t evt)
1776 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
1778 lpfc_rcv_padisc(vport, ndlp, cmdiocb);
1780 * Do not start discovery if discovery is about to start
1781 * or discovery in progress for this node. Starting discovery
1782 * here will affect the counting of discovery threads.
1784 if (!(ndlp->nlp_flag & NLP_DELAY_TMO) &&
1785 !(ndlp->nlp_flag & NLP_NPR_2B_DISC)) {
1786 if (ndlp->nlp_flag & NLP_NPR_ADISC) {
1787 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
1788 ndlp->nlp_prev_state = NLP_STE_NPR_NODE;
1789 lpfc_nlp_set_state(vport, ndlp, NLP_STE_ADISC_ISSUE);
1790 lpfc_issue_els_adisc(vport, ndlp, 0);
1792 ndlp->nlp_prev_state = NLP_STE_NPR_NODE;
1793 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
1794 lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0);
1797 return ndlp->nlp_state;
1801 lpfc_rcv_prlo_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1802 void *arg, uint32_t evt)
1804 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1805 struct lpfc_iocbq *cmdiocb = (struct lpfc_iocbq *) arg;
1807 spin_lock_irq(shost->host_lock);
1808 ndlp->nlp_flag |= NLP_LOGO_ACC;
1809 spin_unlock_irq(shost->host_lock);
1811 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
1813 if ((ndlp->nlp_flag & NLP_DELAY_TMO) == 0) {
1814 mod_timer(&ndlp->nlp_delayfunc, jiffies + HZ * 1);
1815 spin_lock_irq(shost->host_lock);
1816 ndlp->nlp_flag |= NLP_DELAY_TMO;
1817 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
1818 spin_unlock_irq(shost->host_lock);
1819 ndlp->nlp_last_elscmd = ELS_CMD_PLOGI;
1821 spin_lock_irq(shost->host_lock);
1822 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
1823 spin_unlock_irq(shost->host_lock);
1825 return ndlp->nlp_state;
1829 lpfc_cmpl_plogi_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1830 void *arg, uint32_t evt)
1832 struct lpfc_iocbq *cmdiocb, *rspiocb;
1835 cmdiocb = (struct lpfc_iocbq *) arg;
1836 rspiocb = cmdiocb->context_un.rsp_iocb;
1838 irsp = &rspiocb->iocb;
1839 if (irsp->ulpStatus) {
1840 ndlp->nlp_flag |= NLP_DEFER_RM;
1841 return NLP_STE_FREED_NODE;
1843 return ndlp->nlp_state;
1847 lpfc_cmpl_prli_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1848 void *arg, uint32_t evt)
1850 struct lpfc_iocbq *cmdiocb, *rspiocb;
1853 cmdiocb = (struct lpfc_iocbq *) arg;
1854 rspiocb = cmdiocb->context_un.rsp_iocb;
1856 irsp = &rspiocb->iocb;
1857 if (irsp->ulpStatus && (ndlp->nlp_flag & NLP_NODEV_REMOVE)) {
1858 lpfc_drop_node(vport, ndlp);
1859 return NLP_STE_FREED_NODE;
1861 return ndlp->nlp_state;
1865 lpfc_cmpl_logo_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1866 void *arg, uint32_t evt)
1868 lpfc_unreg_rpi(vport, ndlp);
1869 /* This routine does nothing, just return the current state */
1870 return ndlp->nlp_state;
1874 lpfc_cmpl_adisc_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1875 void *arg, uint32_t evt)
1877 struct lpfc_iocbq *cmdiocb, *rspiocb;
1880 cmdiocb = (struct lpfc_iocbq *) arg;
1881 rspiocb = cmdiocb->context_un.rsp_iocb;
1883 irsp = &rspiocb->iocb;
1884 if (irsp->ulpStatus && (ndlp->nlp_flag & NLP_NODEV_REMOVE)) {
1885 lpfc_drop_node(vport, ndlp);
1886 return NLP_STE_FREED_NODE;
1888 return ndlp->nlp_state;
1892 lpfc_cmpl_reglogin_npr_node(struct lpfc_vport *vport,
1893 struct lpfc_nodelist *ndlp,
1894 void *arg, uint32_t evt)
1896 LPFC_MBOXQ_t *pmb = (LPFC_MBOXQ_t *) arg;
1897 MAILBOX_t *mb = &pmb->mb;
1900 ndlp->nlp_rpi = mb->un.varWords[0];
1902 if (ndlp->nlp_flag & NLP_NODEV_REMOVE) {
1903 lpfc_drop_node(vport, ndlp);
1904 return NLP_STE_FREED_NODE;
1907 return ndlp->nlp_state;
1911 lpfc_device_rm_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1912 void *arg, uint32_t evt)
1914 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1916 if (ndlp->nlp_flag & NLP_NPR_2B_DISC) {
1917 spin_lock_irq(shost->host_lock);
1918 ndlp->nlp_flag |= NLP_NODEV_REMOVE;
1919 spin_unlock_irq(shost->host_lock);
1920 return ndlp->nlp_state;
1922 lpfc_drop_node(vport, ndlp);
1923 return NLP_STE_FREED_NODE;
1927 lpfc_device_recov_npr_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1928 void *arg, uint32_t evt)
1930 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1932 /* Don't do anything that will mess up processing of the
1935 if (vport->fc_flag & FC_RSCN_DEFERRED)
1936 return ndlp->nlp_state;
1938 spin_lock_irq(shost->host_lock);
1939 ndlp->nlp_flag &= ~(NLP_NODEV_REMOVE | NLP_NPR_2B_DISC);
1940 spin_unlock_irq(shost->host_lock);
1941 lpfc_cancel_retry_delay_tmo(vport, ndlp);
1942 return ndlp->nlp_state;
1946 /* This next section defines the NPort Discovery State Machine */
1948 /* There are 4 different double linked lists nodelist entries can reside on.
1949 * The plogi list and adisc list are used when Link Up discovery or RSCN
1950 * processing is needed. Each list holds the nodes that we will send PLOGI
1951 * or ADISC on. These lists will keep track of what nodes will be effected
1952 * by an RSCN, or a Link Up (Typically, all nodes are effected on Link Up).
1953 * The unmapped_list will contain all nodes that we have successfully logged
1954 * into at the Fibre Channel level. The mapped_list will contain all nodes
1955 * that are mapped FCP targets.
1958 * The bind list is a list of undiscovered (potentially non-existent) nodes
1959 * that we have saved binding information on. This information is used when
1960 * nodes transition from the unmapped to the mapped list.
1962 /* For UNUSED_NODE state, the node has just been allocated .
1963 * For PLOGI_ISSUE and REG_LOGIN_ISSUE, the node is on
1964 * the PLOGI list. For REG_LOGIN_COMPL, the node is taken off the PLOGI list
1965 * and put on the unmapped list. For ADISC processing, the node is taken off
1966 * the ADISC list and placed on either the mapped or unmapped list (depending
1967 * on its previous state). Once on the unmapped list, a PRLI is issued and the
1968 * state changed to PRLI_ISSUE. When the PRLI completion occurs, the state is
1969 * changed to UNMAPPED_NODE. If the completion indicates a mapped
1970 * node, the node is taken off the unmapped list. The binding list is checked
1971 * for a valid binding, or a binding is automatically assigned. If binding
1972 * assignment is unsuccessful, the node is left on the unmapped list. If
1973 * binding assignment is successful, the associated binding list entry (if
1974 * any) is removed, and the node is placed on the mapped list.
1977 * For a Link Down, all nodes on the ADISC, PLOGI, unmapped or mapped
1978 * lists will receive a DEVICE_RECOVERY event. If the linkdown or devloss timers
1979 * expire, all effected nodes will receive a DEVICE_RM event.
1982 * For a Link Up or RSCN, all nodes will move from the mapped / unmapped lists
1983 * to either the ADISC or PLOGI list. After a Nameserver query or ALPA loopmap
1984 * check, additional nodes may be added or removed (via DEVICE_RM) to / from
1985 * the PLOGI or ADISC lists. Once the PLOGI and ADISC lists are populated,
1986 * we will first process the ADISC list. 32 entries are processed initially and
1987 * ADISC is initited for each one. Completions / Events for each node are
1988 * funnelled thru the state machine. As each node finishes ADISC processing, it
1989 * starts ADISC for any nodes waiting for ADISC processing. If no nodes are
1990 * waiting, and the ADISC list count is identically 0, then we are done. For
1991 * Link Up discovery, since all nodes on the PLOGI list are UNREG_LOGIN'ed, we
1992 * can issue a CLEAR_LA and reenable Link Events. Next we will process the PLOGI
1993 * list. 32 entries are processed initially and PLOGI is initited for each one.
1994 * Completions / Events for each node are funnelled thru the state machine. As
1995 * each node finishes PLOGI processing, it starts PLOGI for any nodes waiting
1996 * for PLOGI processing. If no nodes are waiting, and the PLOGI list count is
1997 * indentically 0, then we are done. We have now completed discovery / RSCN
1998 * handling. Upon completion, ALL nodes should be on either the mapped or
2002 static uint32_t (*lpfc_disc_action[NLP_STE_MAX_STATE * NLP_EVT_MAX_EVENT])
2003 (struct lpfc_vport *, struct lpfc_nodelist *, void *, uint32_t) = {
2004 /* Action routine Event Current State */
2005 lpfc_rcv_plogi_unused_node, /* RCV_PLOGI UNUSED_NODE */
2006 lpfc_rcv_els_unused_node, /* RCV_PRLI */
2007 lpfc_rcv_logo_unused_node, /* RCV_LOGO */
2008 lpfc_rcv_els_unused_node, /* RCV_ADISC */
2009 lpfc_rcv_els_unused_node, /* RCV_PDISC */
2010 lpfc_rcv_els_unused_node, /* RCV_PRLO */
2011 lpfc_disc_illegal, /* CMPL_PLOGI */
2012 lpfc_disc_illegal, /* CMPL_PRLI */
2013 lpfc_cmpl_logo_unused_node, /* CMPL_LOGO */
2014 lpfc_disc_illegal, /* CMPL_ADISC */
2015 lpfc_disc_illegal, /* CMPL_REG_LOGIN */
2016 lpfc_device_rm_unused_node, /* DEVICE_RM */
2017 lpfc_disc_illegal, /* DEVICE_RECOVERY */
2019 lpfc_rcv_plogi_plogi_issue, /* RCV_PLOGI PLOGI_ISSUE */
2020 lpfc_rcv_prli_plogi_issue, /* RCV_PRLI */
2021 lpfc_rcv_logo_plogi_issue, /* RCV_LOGO */
2022 lpfc_rcv_els_plogi_issue, /* RCV_ADISC */
2023 lpfc_rcv_els_plogi_issue, /* RCV_PDISC */
2024 lpfc_rcv_els_plogi_issue, /* RCV_PRLO */
2025 lpfc_cmpl_plogi_plogi_issue, /* CMPL_PLOGI */
2026 lpfc_disc_illegal, /* CMPL_PRLI */
2027 lpfc_cmpl_logo_plogi_issue, /* CMPL_LOGO */
2028 lpfc_disc_illegal, /* CMPL_ADISC */
2029 lpfc_cmpl_reglogin_plogi_issue,/* CMPL_REG_LOGIN */
2030 lpfc_device_rm_plogi_issue, /* DEVICE_RM */
2031 lpfc_device_recov_plogi_issue, /* DEVICE_RECOVERY */
2033 lpfc_rcv_plogi_adisc_issue, /* RCV_PLOGI ADISC_ISSUE */
2034 lpfc_rcv_prli_adisc_issue, /* RCV_PRLI */
2035 lpfc_rcv_logo_adisc_issue, /* RCV_LOGO */
2036 lpfc_rcv_padisc_adisc_issue, /* RCV_ADISC */
2037 lpfc_rcv_padisc_adisc_issue, /* RCV_PDISC */
2038 lpfc_rcv_prlo_adisc_issue, /* RCV_PRLO */
2039 lpfc_disc_illegal, /* CMPL_PLOGI */
2040 lpfc_disc_illegal, /* CMPL_PRLI */
2041 lpfc_disc_illegal, /* CMPL_LOGO */
2042 lpfc_cmpl_adisc_adisc_issue, /* CMPL_ADISC */
2043 lpfc_disc_illegal, /* CMPL_REG_LOGIN */
2044 lpfc_device_rm_adisc_issue, /* DEVICE_RM */
2045 lpfc_device_recov_adisc_issue, /* DEVICE_RECOVERY */
2047 lpfc_rcv_plogi_reglogin_issue, /* RCV_PLOGI REG_LOGIN_ISSUE */
2048 lpfc_rcv_prli_reglogin_issue, /* RCV_PLOGI */
2049 lpfc_rcv_logo_reglogin_issue, /* RCV_LOGO */
2050 lpfc_rcv_padisc_reglogin_issue, /* RCV_ADISC */
2051 lpfc_rcv_padisc_reglogin_issue, /* RCV_PDISC */
2052 lpfc_rcv_prlo_reglogin_issue, /* RCV_PRLO */
2053 lpfc_cmpl_plogi_illegal, /* CMPL_PLOGI */
2054 lpfc_disc_illegal, /* CMPL_PRLI */
2055 lpfc_disc_illegal, /* CMPL_LOGO */
2056 lpfc_disc_illegal, /* CMPL_ADISC */
2057 lpfc_cmpl_reglogin_reglogin_issue,/* CMPL_REG_LOGIN */
2058 lpfc_device_rm_reglogin_issue, /* DEVICE_RM */
2059 lpfc_device_recov_reglogin_issue,/* DEVICE_RECOVERY */
2061 lpfc_rcv_plogi_prli_issue, /* RCV_PLOGI PRLI_ISSUE */
2062 lpfc_rcv_prli_prli_issue, /* RCV_PRLI */
2063 lpfc_rcv_logo_prli_issue, /* RCV_LOGO */
2064 lpfc_rcv_padisc_prli_issue, /* RCV_ADISC */
2065 lpfc_rcv_padisc_prli_issue, /* RCV_PDISC */
2066 lpfc_rcv_prlo_prli_issue, /* RCV_PRLO */
2067 lpfc_cmpl_plogi_illegal, /* CMPL_PLOGI */
2068 lpfc_cmpl_prli_prli_issue, /* CMPL_PRLI */
2069 lpfc_disc_illegal, /* CMPL_LOGO */
2070 lpfc_disc_illegal, /* CMPL_ADISC */
2071 lpfc_disc_illegal, /* CMPL_REG_LOGIN */
2072 lpfc_device_rm_prli_issue, /* DEVICE_RM */
2073 lpfc_device_recov_prli_issue, /* DEVICE_RECOVERY */
2075 lpfc_rcv_plogi_unmap_node, /* RCV_PLOGI UNMAPPED_NODE */
2076 lpfc_rcv_prli_unmap_node, /* RCV_PRLI */
2077 lpfc_rcv_logo_unmap_node, /* RCV_LOGO */
2078 lpfc_rcv_padisc_unmap_node, /* RCV_ADISC */
2079 lpfc_rcv_padisc_unmap_node, /* RCV_PDISC */
2080 lpfc_rcv_prlo_unmap_node, /* RCV_PRLO */
2081 lpfc_disc_illegal, /* CMPL_PLOGI */
2082 lpfc_disc_illegal, /* CMPL_PRLI */
2083 lpfc_disc_illegal, /* CMPL_LOGO */
2084 lpfc_disc_illegal, /* CMPL_ADISC */
2085 lpfc_disc_illegal, /* CMPL_REG_LOGIN */
2086 lpfc_disc_illegal, /* DEVICE_RM */
2087 lpfc_device_recov_unmap_node, /* DEVICE_RECOVERY */
2089 lpfc_rcv_plogi_mapped_node, /* RCV_PLOGI MAPPED_NODE */
2090 lpfc_rcv_prli_mapped_node, /* RCV_PRLI */
2091 lpfc_rcv_logo_mapped_node, /* RCV_LOGO */
2092 lpfc_rcv_padisc_mapped_node, /* RCV_ADISC */
2093 lpfc_rcv_padisc_mapped_node, /* RCV_PDISC */
2094 lpfc_rcv_prlo_mapped_node, /* RCV_PRLO */
2095 lpfc_disc_illegal, /* CMPL_PLOGI */
2096 lpfc_disc_illegal, /* CMPL_PRLI */
2097 lpfc_disc_illegal, /* CMPL_LOGO */
2098 lpfc_disc_illegal, /* CMPL_ADISC */
2099 lpfc_disc_illegal, /* CMPL_REG_LOGIN */
2100 lpfc_disc_illegal, /* DEVICE_RM */
2101 lpfc_device_recov_mapped_node, /* DEVICE_RECOVERY */
2103 lpfc_rcv_plogi_npr_node, /* RCV_PLOGI NPR_NODE */
2104 lpfc_rcv_prli_npr_node, /* RCV_PRLI */
2105 lpfc_rcv_logo_npr_node, /* RCV_LOGO */
2106 lpfc_rcv_padisc_npr_node, /* RCV_ADISC */
2107 lpfc_rcv_padisc_npr_node, /* RCV_PDISC */
2108 lpfc_rcv_prlo_npr_node, /* RCV_PRLO */
2109 lpfc_cmpl_plogi_npr_node, /* CMPL_PLOGI */
2110 lpfc_cmpl_prli_npr_node, /* CMPL_PRLI */
2111 lpfc_cmpl_logo_npr_node, /* CMPL_LOGO */
2112 lpfc_cmpl_adisc_npr_node, /* CMPL_ADISC */
2113 lpfc_cmpl_reglogin_npr_node, /* CMPL_REG_LOGIN */
2114 lpfc_device_rm_npr_node, /* DEVICE_RM */
2115 lpfc_device_recov_npr_node, /* DEVICE_RECOVERY */
2119 lpfc_disc_state_machine(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2120 void *arg, uint32_t evt)
2122 uint32_t cur_state, rc;
2123 uint32_t(*func) (struct lpfc_vport *, struct lpfc_nodelist *, void *,
2125 uint32_t got_ndlp = 0;
2127 if (lpfc_nlp_get(ndlp))
2130 cur_state = ndlp->nlp_state;
2132 /* DSM in event <evt> on NPort <nlp_DID> in state <cur_state> */
2133 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
2134 "0211 DSM in event x%x on NPort x%x in "
2135 "state %d Data: x%x\n",
2136 evt, ndlp->nlp_DID, cur_state, ndlp->nlp_flag);
2138 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_DSM,
2139 "DSM in: evt:%d ste:%d did:x%x",
2140 evt, cur_state, ndlp->nlp_DID);
2142 func = lpfc_disc_action[(cur_state * NLP_EVT_MAX_EVENT) + evt];
2143 rc = (func) (vport, ndlp, arg, evt);
2145 /* DSM out state <rc> on NPort <nlp_DID> */
2147 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
2148 "0212 DSM out state %d on NPort x%x Data: x%x\n",
2149 rc, ndlp->nlp_DID, ndlp->nlp_flag);
2151 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_DSM,
2152 "DSM out: ste:%d did:x%x flg:x%x",
2153 rc, ndlp->nlp_DID, ndlp->nlp_flag);
2154 /* Decrement the ndlp reference count held for this function */
2157 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
2158 "0212 DSM out state %d on NPort free\n", rc);
2160 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_DSM,
2161 "DSM out: ste:%d did:x%x flg:x%x",