blob: 6e0e991c644563af4249541a3838215c0e8635f9 [file] [log] [blame]
dea31012005-04-17 16:05:31 -05001/*******************************************************************
2 * This file is part of the Emulex Linux Device Driver for *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -04003 * Fibre Channel Host Bus Adapters. *
James Smarte47c9092008-02-08 18:49:26 -05004 * Copyright (C) 2004-2008 Emulex. All rights reserved. *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -04005 * EMULEX and SLI are trademarks of Emulex. *
dea31012005-04-17 16:05:31 -05006 * www.emulex.com *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -04007 * Portions Copyright (C) 2004-2005 Christoph Hellwig *
dea31012005-04-17 16:05:31 -05008 * *
9 * This program is free software; you can redistribute it and/or *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -040010 * modify it under the terms of version 2 of the GNU General *
11 * Public License as published by the Free Software Foundation. *
12 * This program is distributed in the hope that it will be useful. *
13 * ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND *
14 * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, *
15 * FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE *
16 * DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD *
17 * TO BE LEGALLY INVALID. See the GNU General Public License for *
18 * more details, a copy of which can be found in the file COPYING *
19 * included with this package. *
dea31012005-04-17 16:05:31 -050020 *******************************************************************/
James Smart09372822008-01-11 01:52:54 -050021/* See Fibre Channel protocol T11 FC-LS for details */
dea31012005-04-17 16:05:31 -050022#include <linux/blkdev.h>
23#include <linux/pci.h>
24#include <linux/interrupt.h>
25
James.Smart@Emulex.Com91886522005-08-10 15:03:09 -040026#include <scsi/scsi.h>
dea31012005-04-17 16:05:31 -050027#include <scsi/scsi_device.h>
28#include <scsi/scsi_host.h>
29#include <scsi/scsi_transport_fc.h>
30
31#include "lpfc_hw.h"
32#include "lpfc_sli.h"
33#include "lpfc_disc.h"
34#include "lpfc_scsi.h"
35#include "lpfc.h"
36#include "lpfc_logmsg.h"
37#include "lpfc_crtn.h"
James Smart92d7f7b2007-06-17 19:56:38 -050038#include "lpfc_vport.h"
James Smart858c9f62007-06-17 19:56:39 -050039#include "lpfc_debugfs.h"
dea31012005-04-17 16:05:31 -050040
41static int lpfc_els_retry(struct lpfc_hba *, struct lpfc_iocbq *,
42 struct lpfc_iocbq *);
James Smart92d7f7b2007-06-17 19:56:38 -050043static void lpfc_cmpl_fabric_iocb(struct lpfc_hba *, struct lpfc_iocbq *,
44 struct lpfc_iocbq *);
Adrian Bunka6ababd2007-11-05 18:07:33 +010045static void lpfc_fabric_abort_vport(struct lpfc_vport *vport);
46static int lpfc_issue_els_fdisc(struct lpfc_vport *vport,
47 struct lpfc_nodelist *ndlp, uint8_t retry);
48static int lpfc_issue_fabric_iocb(struct lpfc_hba *phba,
49 struct lpfc_iocbq *iocb);
50static void lpfc_register_new_vport(struct lpfc_hba *phba,
51 struct lpfc_vport *vport,
52 struct lpfc_nodelist *ndlp);
James Smart92d7f7b2007-06-17 19:56:38 -050053
dea31012005-04-17 16:05:31 -050054static int lpfc_max_els_tries = 3;
55
James Smart858c9f62007-06-17 19:56:39 -050056int
James Smart2e0fef82007-06-17 19:56:36 -050057lpfc_els_chk_latt(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -050058{
James Smart2e0fef82007-06-17 19:56:36 -050059 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
60 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -050061 uint32_t ha_copy;
dea31012005-04-17 16:05:31 -050062
James Smart2e0fef82007-06-17 19:56:36 -050063 if (vport->port_state >= LPFC_VPORT_READY ||
64 phba->link_state == LPFC_LINK_DOWN)
dea31012005-04-17 16:05:31 -050065 return 0;
66
67 /* Read the HBA Host Attention Register */
dea31012005-04-17 16:05:31 -050068 ha_copy = readl(phba->HAregaddr);
dea31012005-04-17 16:05:31 -050069
70 if (!(ha_copy & HA_LATT))
71 return 0;
72
73 /* Pending Link Event during Discovery */
James Smarte8b62012007-08-02 11:10:09 -040074 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
75 "0237 Pending Link Event during "
76 "Discovery: State x%x\n",
77 phba->pport->port_state);
dea31012005-04-17 16:05:31 -050078
79 /* CLEAR_LA should re-enable link attention events and
80 * we should then imediately take a LATT event. The
81 * LATT processing should call lpfc_linkdown() which
82 * will cleanup any left over in-progress discovery
83 * events.
84 */
James Smart2e0fef82007-06-17 19:56:36 -050085 spin_lock_irq(shost->host_lock);
86 vport->fc_flag |= FC_ABORT_DISCOVERY;
87 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -050088
James Smart92d7f7b2007-06-17 19:56:38 -050089 if (phba->link_state != LPFC_CLEAR_LA)
James Smarted957682007-06-17 19:56:37 -050090 lpfc_issue_clear_la(phba, vport);
dea31012005-04-17 16:05:31 -050091
Jamie Wellnitzc9f87352006-02-28 19:25:23 -050092 return 1;
dea31012005-04-17 16:05:31 -050093}
94
95static struct lpfc_iocbq *
James Smart2e0fef82007-06-17 19:56:36 -050096lpfc_prep_els_iocb(struct lpfc_vport *vport, uint8_t expectRsp,
97 uint16_t cmdSize, uint8_t retry,
98 struct lpfc_nodelist *ndlp, uint32_t did,
99 uint32_t elscmd)
dea31012005-04-17 16:05:31 -0500100{
James Smart2e0fef82007-06-17 19:56:36 -0500101 struct lpfc_hba *phba = vport->phba;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -0400102 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -0500103 struct lpfc_dmabuf *pcmd, *prsp, *pbuflist;
104 struct ulp_bde64 *bpl;
105 IOCB_t *icmd;
106
dea31012005-04-17 16:05:31 -0500107
James Smart2e0fef82007-06-17 19:56:36 -0500108 if (!lpfc_is_link_up(phba))
109 return NULL;
dea31012005-04-17 16:05:31 -0500110
dea31012005-04-17 16:05:31 -0500111 /* Allocate buffer for command iocb */
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -0400112 elsiocb = lpfc_sli_get_iocbq(phba);
dea31012005-04-17 16:05:31 -0500113
114 if (elsiocb == NULL)
115 return NULL;
James Smarte47c9092008-02-08 18:49:26 -0500116
dea31012005-04-17 16:05:31 -0500117 icmd = &elsiocb->iocb;
118
119 /* fill in BDEs for command */
120 /* Allocate buffer for command payload */
James Smart98c9ea52007-10-27 13:37:33 -0400121 pcmd = kmalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
122 if (pcmd)
123 pcmd->virt = lpfc_mbuf_alloc(phba, MEM_PRI, &pcmd->phys);
James Smartfa4066b2008-01-11 01:53:27 -0500124 if (!pcmd || !pcmd->virt)
125 goto els_iocb_free_pcmb_exit;
dea31012005-04-17 16:05:31 -0500126
127 INIT_LIST_HEAD(&pcmd->list);
128
129 /* Allocate buffer for response payload */
130 if (expectRsp) {
James Smart92d7f7b2007-06-17 19:56:38 -0500131 prsp = kmalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
dea31012005-04-17 16:05:31 -0500132 if (prsp)
133 prsp->virt = lpfc_mbuf_alloc(phba, MEM_PRI,
134 &prsp->phys);
James Smartfa4066b2008-01-11 01:53:27 -0500135 if (!prsp || !prsp->virt)
136 goto els_iocb_free_prsp_exit;
dea31012005-04-17 16:05:31 -0500137 INIT_LIST_HEAD(&prsp->list);
James Smarte47c9092008-02-08 18:49:26 -0500138 } else
dea31012005-04-17 16:05:31 -0500139 prsp = NULL;
dea31012005-04-17 16:05:31 -0500140
141 /* Allocate buffer for Buffer ptr list */
James Smart92d7f7b2007-06-17 19:56:38 -0500142 pbuflist = kmalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
dea31012005-04-17 16:05:31 -0500143 if (pbuflist)
James Smarted957682007-06-17 19:56:37 -0500144 pbuflist->virt = lpfc_mbuf_alloc(phba, MEM_PRI,
145 &pbuflist->phys);
James Smartfa4066b2008-01-11 01:53:27 -0500146 if (!pbuflist || !pbuflist->virt)
147 goto els_iocb_free_pbuf_exit;
dea31012005-04-17 16:05:31 -0500148
149 INIT_LIST_HEAD(&pbuflist->list);
150
151 icmd->un.elsreq64.bdl.addrHigh = putPaddrHigh(pbuflist->phys);
152 icmd->un.elsreq64.bdl.addrLow = putPaddrLow(pbuflist->phys);
153 icmd->un.elsreq64.bdl.bdeFlags = BUFF_TYPE_BDL;
James Smart2e0fef82007-06-17 19:56:36 -0500154 icmd->un.elsreq64.remoteID = did; /* DID */
dea31012005-04-17 16:05:31 -0500155 if (expectRsp) {
James Smart92d7f7b2007-06-17 19:56:38 -0500156 icmd->un.elsreq64.bdl.bdeSize = (2 * sizeof(struct ulp_bde64));
dea31012005-04-17 16:05:31 -0500157 icmd->ulpCommand = CMD_ELS_REQUEST64_CR;
James Smart2680eea2007-04-25 09:52:55 -0400158 icmd->ulpTimeout = phba->fc_ratov * 2;
dea31012005-04-17 16:05:31 -0500159 } else {
James Smart92d7f7b2007-06-17 19:56:38 -0500160 icmd->un.elsreq64.bdl.bdeSize = sizeof(struct ulp_bde64);
dea31012005-04-17 16:05:31 -0500161 icmd->ulpCommand = CMD_XMIT_ELS_RSP64_CX;
162 }
dea31012005-04-17 16:05:31 -0500163 icmd->ulpBdeCount = 1;
164 icmd->ulpLe = 1;
165 icmd->ulpClass = CLASS3;
166
James Smart92d7f7b2007-06-17 19:56:38 -0500167 if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) {
168 icmd->un.elsreq64.myID = vport->fc_myDID;
169
170 /* For ELS_REQUEST64_CR, use the VPI by default */
171 icmd->ulpContext = vport->vpi;
172 icmd->ulpCt_h = 0;
173 icmd->ulpCt_l = 1;
174 }
175
dea31012005-04-17 16:05:31 -0500176 bpl = (struct ulp_bde64 *) pbuflist->virt;
177 bpl->addrLow = le32_to_cpu(putPaddrLow(pcmd->phys));
178 bpl->addrHigh = le32_to_cpu(putPaddrHigh(pcmd->phys));
179 bpl->tus.f.bdeSize = cmdSize;
180 bpl->tus.f.bdeFlags = 0;
181 bpl->tus.w = le32_to_cpu(bpl->tus.w);
182
183 if (expectRsp) {
184 bpl++;
185 bpl->addrLow = le32_to_cpu(putPaddrLow(prsp->phys));
186 bpl->addrHigh = le32_to_cpu(putPaddrHigh(prsp->phys));
187 bpl->tus.f.bdeSize = FCELSSIZE;
188 bpl->tus.f.bdeFlags = BUFF_USE_RCV;
189 bpl->tus.w = le32_to_cpu(bpl->tus.w);
190 }
191
James Smartfa4066b2008-01-11 01:53:27 -0500192 /* prevent preparing iocb with NULL ndlp reference */
James Smart51ef4c22007-08-02 11:10:31 -0400193 elsiocb->context1 = lpfc_nlp_get(ndlp);
James Smartfa4066b2008-01-11 01:53:27 -0500194 if (!elsiocb->context1)
195 goto els_iocb_free_pbuf_exit;
James Smart329f9bc2007-04-25 09:53:01 -0400196 elsiocb->context2 = pcmd;
197 elsiocb->context3 = pbuflist;
dea31012005-04-17 16:05:31 -0500198 elsiocb->retry = retry;
James Smart2e0fef82007-06-17 19:56:36 -0500199 elsiocb->vport = vport;
dea31012005-04-17 16:05:31 -0500200 elsiocb->drvrTimeout = (phba->fc_ratov << 1) + LPFC_DRVR_TIMEOUT;
201
202 if (prsp) {
203 list_add(&prsp->list, &pcmd->list);
204 }
dea31012005-04-17 16:05:31 -0500205 if (expectRsp) {
206 /* Xmit ELS command <elsCmd> to remote NPORT <did> */
James Smarte8b62012007-08-02 11:10:09 -0400207 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
208 "0116 Xmit ELS command x%x to remote "
209 "NPORT x%x I/O tag: x%x, port state: x%x\n",
210 elscmd, did, elsiocb->iotag,
211 vport->port_state);
dea31012005-04-17 16:05:31 -0500212 } else {
213 /* Xmit ELS response <elsCmd> to remote NPORT <did> */
James Smarte8b62012007-08-02 11:10:09 -0400214 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
215 "0117 Xmit ELS response x%x to remote "
216 "NPORT x%x I/O tag: x%x, size: x%x\n",
217 elscmd, ndlp->nlp_DID, elsiocb->iotag,
218 cmdSize);
dea31012005-04-17 16:05:31 -0500219 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500220 return elsiocb;
dea31012005-04-17 16:05:31 -0500221
James Smartfa4066b2008-01-11 01:53:27 -0500222els_iocb_free_pbuf_exit:
223 lpfc_mbuf_free(phba, prsp->virt, prsp->phys);
224 kfree(pbuflist);
225
226els_iocb_free_prsp_exit:
227 lpfc_mbuf_free(phba, pcmd->virt, pcmd->phys);
228 kfree(prsp);
229
230els_iocb_free_pcmb_exit:
231 kfree(pcmd);
232 lpfc_sli_release_iocbq(phba, elsiocb);
233 return NULL;
234}
dea31012005-04-17 16:05:31 -0500235
236static int
James Smart92d7f7b2007-06-17 19:56:38 -0500237lpfc_issue_fabric_reglogin(struct lpfc_vport *vport)
238{
239 struct lpfc_hba *phba = vport->phba;
240 LPFC_MBOXQ_t *mbox;
241 struct lpfc_dmabuf *mp;
242 struct lpfc_nodelist *ndlp;
243 struct serv_parm *sp;
244 int rc;
James Smart98c9ea52007-10-27 13:37:33 -0400245 int err = 0;
James Smart92d7f7b2007-06-17 19:56:38 -0500246
247 sp = &phba->fc_fabparam;
248 ndlp = lpfc_findnode_did(vport, Fabric_DID);
James Smarte47c9092008-02-08 18:49:26 -0500249 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp)) {
James Smart98c9ea52007-10-27 13:37:33 -0400250 err = 1;
James Smart92d7f7b2007-06-17 19:56:38 -0500251 goto fail;
James Smart98c9ea52007-10-27 13:37:33 -0400252 }
James Smart92d7f7b2007-06-17 19:56:38 -0500253
254 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
James Smart98c9ea52007-10-27 13:37:33 -0400255 if (!mbox) {
256 err = 2;
James Smart92d7f7b2007-06-17 19:56:38 -0500257 goto fail;
James Smart98c9ea52007-10-27 13:37:33 -0400258 }
James Smart92d7f7b2007-06-17 19:56:38 -0500259
260 vport->port_state = LPFC_FABRIC_CFG_LINK;
261 lpfc_config_link(phba, mbox);
262 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
263 mbox->vport = vport;
264
James Smart0b727fe2007-10-27 13:37:25 -0400265 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
James Smart98c9ea52007-10-27 13:37:33 -0400266 if (rc == MBX_NOT_FINISHED) {
267 err = 3;
James Smart92d7f7b2007-06-17 19:56:38 -0500268 goto fail_free_mbox;
James Smart98c9ea52007-10-27 13:37:33 -0400269 }
James Smart92d7f7b2007-06-17 19:56:38 -0500270
271 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
James Smart98c9ea52007-10-27 13:37:33 -0400272 if (!mbox) {
273 err = 4;
James Smart92d7f7b2007-06-17 19:56:38 -0500274 goto fail;
James Smart98c9ea52007-10-27 13:37:33 -0400275 }
James Smart92d7f7b2007-06-17 19:56:38 -0500276 rc = lpfc_reg_login(phba, vport->vpi, Fabric_DID, (uint8_t *)sp, mbox,
277 0);
James Smart98c9ea52007-10-27 13:37:33 -0400278 if (rc) {
279 err = 5;
James Smart92d7f7b2007-06-17 19:56:38 -0500280 goto fail_free_mbox;
James Smart98c9ea52007-10-27 13:37:33 -0400281 }
James Smart92d7f7b2007-06-17 19:56:38 -0500282
283 mbox->mbox_cmpl = lpfc_mbx_cmpl_fabric_reg_login;
284 mbox->vport = vport;
James Smarte47c9092008-02-08 18:49:26 -0500285 /* increment the reference count on ndlp to hold reference
286 * for the callback routine.
287 */
James Smart92d7f7b2007-06-17 19:56:38 -0500288 mbox->context2 = lpfc_nlp_get(ndlp);
289
James Smart0b727fe2007-10-27 13:37:25 -0400290 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
James Smart98c9ea52007-10-27 13:37:33 -0400291 if (rc == MBX_NOT_FINISHED) {
292 err = 6;
James Smart92d7f7b2007-06-17 19:56:38 -0500293 goto fail_issue_reg_login;
James Smart98c9ea52007-10-27 13:37:33 -0400294 }
James Smart92d7f7b2007-06-17 19:56:38 -0500295
296 return 0;
297
298fail_issue_reg_login:
James Smarte47c9092008-02-08 18:49:26 -0500299 /* decrement the reference count on ndlp just incremented
300 * for the failed mbox command.
301 */
James Smart92d7f7b2007-06-17 19:56:38 -0500302 lpfc_nlp_put(ndlp);
303 mp = (struct lpfc_dmabuf *) mbox->context1;
304 lpfc_mbuf_free(phba, mp->virt, mp->phys);
305 kfree(mp);
306fail_free_mbox:
307 mempool_free(mbox, phba->mbox_mem_pool);
308
309fail:
310 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
James Smarte8b62012007-08-02 11:10:09 -0400311 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
James Smart98c9ea52007-10-27 13:37:33 -0400312 "0249 Cannot issue Register Fabric login: Err %d\n", err);
James Smart92d7f7b2007-06-17 19:56:38 -0500313 return -ENXIO;
314}
315
316static int
James Smart2e0fef82007-06-17 19:56:36 -0500317lpfc_cmpl_els_flogi_fabric(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
318 struct serv_parm *sp, IOCB_t *irsp)
dea31012005-04-17 16:05:31 -0500319{
James Smart2e0fef82007-06-17 19:56:36 -0500320 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
321 struct lpfc_hba *phba = vport->phba;
James Smart92d7f7b2007-06-17 19:56:38 -0500322 struct lpfc_nodelist *np;
323 struct lpfc_nodelist *next_np;
dea31012005-04-17 16:05:31 -0500324
James Smart2e0fef82007-06-17 19:56:36 -0500325 spin_lock_irq(shost->host_lock);
326 vport->fc_flag |= FC_FABRIC;
327 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500328
329 phba->fc_edtov = be32_to_cpu(sp->cmn.e_d_tov);
330 if (sp->cmn.edtovResolution) /* E_D_TOV ticks are in nanoseconds */
331 phba->fc_edtov = (phba->fc_edtov + 999999) / 1000000;
332
333 phba->fc_ratov = (be32_to_cpu(sp->cmn.w2.r_a_tov) + 999) / 1000;
334
335 if (phba->fc_topology == TOPOLOGY_LOOP) {
James Smart2e0fef82007-06-17 19:56:36 -0500336 spin_lock_irq(shost->host_lock);
337 vport->fc_flag |= FC_PUBLIC_LOOP;
338 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500339 } else {
340 /*
341 * If we are a N-port connected to a Fabric, fixup sparam's so
342 * logins to devices on remote loops work.
343 */
James Smart2e0fef82007-06-17 19:56:36 -0500344 vport->fc_sparam.cmn.altBbCredit = 1;
dea31012005-04-17 16:05:31 -0500345 }
346
James Smart2e0fef82007-06-17 19:56:36 -0500347 vport->fc_myDID = irsp->un.ulpWord[4] & Mask_DID;
dea31012005-04-17 16:05:31 -0500348 memcpy(&ndlp->nlp_portname, &sp->portName, sizeof(struct lpfc_name));
James Smart92d7f7b2007-06-17 19:56:38 -0500349 memcpy(&ndlp->nlp_nodename, &sp->nodeName, sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -0500350 ndlp->nlp_class_sup = 0;
351 if (sp->cls1.classValid)
352 ndlp->nlp_class_sup |= FC_COS_CLASS1;
353 if (sp->cls2.classValid)
354 ndlp->nlp_class_sup |= FC_COS_CLASS2;
355 if (sp->cls3.classValid)
356 ndlp->nlp_class_sup |= FC_COS_CLASS3;
357 if (sp->cls4.classValid)
358 ndlp->nlp_class_sup |= FC_COS_CLASS4;
359 ndlp->nlp_maxframe = ((sp->cmn.bbRcvSizeMsb & 0x0F) << 8) |
360 sp->cmn.bbRcvSizeLsb;
361 memcpy(&phba->fc_fabparam, sp, sizeof(struct serv_parm));
362
James Smart92d7f7b2007-06-17 19:56:38 -0500363 if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) {
364 if (sp->cmn.response_multiple_NPort) {
James Smarte8b62012007-08-02 11:10:09 -0400365 lpfc_printf_vlog(vport, KERN_WARNING,
366 LOG_ELS | LOG_VPORT,
367 "1816 FLOGI NPIV supported, "
368 "response data 0x%x\n",
369 sp->cmn.response_multiple_NPort);
James Smart92d7f7b2007-06-17 19:56:38 -0500370 phba->link_flag |= LS_NPIV_FAB_SUPPORTED;
James Smart92d7f7b2007-06-17 19:56:38 -0500371 } else {
372 /* Because we asked f/w for NPIV it still expects us
James Smarte8b62012007-08-02 11:10:09 -0400373 to call reg_vnpid atleast for the physcial host */
374 lpfc_printf_vlog(vport, KERN_WARNING,
375 LOG_ELS | LOG_VPORT,
376 "1817 Fabric does not support NPIV "
377 "- configuring single port mode.\n");
James Smart92d7f7b2007-06-17 19:56:38 -0500378 phba->link_flag &= ~LS_NPIV_FAB_SUPPORTED;
379 }
380 }
381
382 if ((vport->fc_prevDID != vport->fc_myDID) &&
383 !(vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)) {
384
385 /* If our NportID changed, we need to ensure all
386 * remaining NPORTs get unreg_login'ed.
387 */
388 list_for_each_entry_safe(np, next_np,
389 &vport->fc_nodes, nlp_listp) {
James Smarte47c9092008-02-08 18:49:26 -0500390 if (!NLP_CHK_NODE_ACT(ndlp))
391 continue;
James Smart92d7f7b2007-06-17 19:56:38 -0500392 if ((np->nlp_state != NLP_STE_NPR_NODE) ||
393 !(np->nlp_flag & NLP_NPR_ADISC))
394 continue;
395 spin_lock_irq(shost->host_lock);
396 np->nlp_flag &= ~NLP_NPR_ADISC;
397 spin_unlock_irq(shost->host_lock);
398 lpfc_unreg_rpi(vport, np);
399 }
400 if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) {
401 lpfc_mbx_unreg_vpi(vport);
James Smart09372822008-01-11 01:52:54 -0500402 spin_lock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -0500403 vport->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
James Smart09372822008-01-11 01:52:54 -0500404 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -0500405 }
406 }
407
James Smart92d7f7b2007-06-17 19:56:38 -0500408 lpfc_nlp_set_state(vport, ndlp, NLP_STE_REG_LOGIN_ISSUE);
James Smart2e0fef82007-06-17 19:56:36 -0500409
James Smart92d7f7b2007-06-17 19:56:38 -0500410 if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED &&
411 vport->fc_flag & FC_VPORT_NEEDS_REG_VPI) {
412 lpfc_register_new_vport(phba, vport, ndlp);
413 return 0;
414 }
415 lpfc_issue_fabric_reglogin(vport);
dea31012005-04-17 16:05:31 -0500416 return 0;
dea31012005-04-17 16:05:31 -0500417}
418
419/*
420 * We FLOGIed into an NPort, initiate pt2pt protocol
421 */
422static int
James Smart2e0fef82007-06-17 19:56:36 -0500423lpfc_cmpl_els_flogi_nport(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
424 struct serv_parm *sp)
dea31012005-04-17 16:05:31 -0500425{
James Smart2e0fef82007-06-17 19:56:36 -0500426 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
427 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -0500428 LPFC_MBOXQ_t *mbox;
429 int rc;
430
James Smart2e0fef82007-06-17 19:56:36 -0500431 spin_lock_irq(shost->host_lock);
432 vport->fc_flag &= ~(FC_FABRIC | FC_PUBLIC_LOOP);
433 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500434
435 phba->fc_edtov = FF_DEF_EDTOV;
436 phba->fc_ratov = FF_DEF_RATOV;
James Smart2e0fef82007-06-17 19:56:36 -0500437 rc = memcmp(&vport->fc_portname, &sp->portName,
James Smart92d7f7b2007-06-17 19:56:38 -0500438 sizeof(vport->fc_portname));
dea31012005-04-17 16:05:31 -0500439 if (rc >= 0) {
440 /* This side will initiate the PLOGI */
James Smart2e0fef82007-06-17 19:56:36 -0500441 spin_lock_irq(shost->host_lock);
442 vport->fc_flag |= FC_PT2PT_PLOGI;
443 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500444
445 /*
446 * N_Port ID cannot be 0, set our to LocalID the other
447 * side will be RemoteID.
448 */
449
450 /* not equal */
451 if (rc)
James Smart2e0fef82007-06-17 19:56:36 -0500452 vport->fc_myDID = PT2PT_LocalID;
dea31012005-04-17 16:05:31 -0500453
454 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
455 if (!mbox)
456 goto fail;
457
458 lpfc_config_link(phba, mbox);
459
460 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
James Smarted957682007-06-17 19:56:37 -0500461 mbox->vport = vport;
James Smart0b727fe2007-10-27 13:37:25 -0400462 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
dea31012005-04-17 16:05:31 -0500463 if (rc == MBX_NOT_FINISHED) {
464 mempool_free(mbox, phba->mbox_mem_pool);
465 goto fail;
466 }
James Smarte47c9092008-02-08 18:49:26 -0500467 /* Decrement ndlp reference count indicating that ndlp can be
468 * safely released when other references to it are done.
469 */
James Smart329f9bc2007-04-25 09:53:01 -0400470 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -0500471
James Smart2e0fef82007-06-17 19:56:36 -0500472 ndlp = lpfc_findnode_did(vport, PT2PT_RemoteID);
dea31012005-04-17 16:05:31 -0500473 if (!ndlp) {
474 /*
475 * Cannot find existing Fabric ndlp, so allocate a
476 * new one
477 */
478 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
479 if (!ndlp)
480 goto fail;
James Smart2e0fef82007-06-17 19:56:36 -0500481 lpfc_nlp_init(vport, ndlp, PT2PT_RemoteID);
James Smarte47c9092008-02-08 18:49:26 -0500482 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
483 ndlp = lpfc_enable_node(vport, ndlp,
484 NLP_STE_UNUSED_NODE);
485 if(!ndlp)
486 goto fail;
dea31012005-04-17 16:05:31 -0500487 }
488
489 memcpy(&ndlp->nlp_portname, &sp->portName,
James Smart2e0fef82007-06-17 19:56:36 -0500490 sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -0500491 memcpy(&ndlp->nlp_nodename, &sp->nodeName,
James Smart2e0fef82007-06-17 19:56:36 -0500492 sizeof(struct lpfc_name));
James Smarte47c9092008-02-08 18:49:26 -0500493 /* Set state will put ndlp onto node list if not already done */
James Smart2e0fef82007-06-17 19:56:36 -0500494 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
495 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500496 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
James Smart2e0fef82007-06-17 19:56:36 -0500497 spin_unlock_irq(shost->host_lock);
James Smarte47c9092008-02-08 18:49:26 -0500498 } else
499 /* This side will wait for the PLOGI, decrement ndlp reference
500 * count indicating that ndlp can be released when other
501 * references to it are done.
502 */
James Smart329f9bc2007-04-25 09:53:01 -0400503 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -0500504
James Smart09372822008-01-11 01:52:54 -0500505 /* If we are pt2pt with another NPort, force NPIV off! */
506 phba->sli3_options &= ~LPFC_SLI3_NPIV_ENABLED;
507
James Smart2e0fef82007-06-17 19:56:36 -0500508 spin_lock_irq(shost->host_lock);
509 vport->fc_flag |= FC_PT2PT;
510 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500511
512 /* Start discovery - this should just do CLEAR_LA */
James Smart2e0fef82007-06-17 19:56:36 -0500513 lpfc_disc_start(vport);
dea31012005-04-17 16:05:31 -0500514 return 0;
James Smart92d7f7b2007-06-17 19:56:38 -0500515fail:
dea31012005-04-17 16:05:31 -0500516 return -ENXIO;
517}
518
519static void
James Smart329f9bc2007-04-25 09:53:01 -0400520lpfc_cmpl_els_flogi(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
521 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -0500522{
James Smart2e0fef82007-06-17 19:56:36 -0500523 struct lpfc_vport *vport = cmdiocb->vport;
524 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -0500525 IOCB_t *irsp = &rspiocb->iocb;
526 struct lpfc_nodelist *ndlp = cmdiocb->context1;
527 struct lpfc_dmabuf *pcmd = cmdiocb->context2, *prsp;
528 struct serv_parm *sp;
529 int rc;
530
531 /* Check to see if link went down during discovery */
James Smart2e0fef82007-06-17 19:56:36 -0500532 if (lpfc_els_chk_latt(vport)) {
James Smartfa4066b2008-01-11 01:53:27 -0500533 /* One additional decrement on node reference count to
534 * trigger the release of the node
535 */
James Smart329f9bc2007-04-25 09:53:01 -0400536 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -0500537 goto out;
538 }
539
James Smart858c9f62007-06-17 19:56:39 -0500540 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
541 "FLOGI cmpl: status:x%x/x%x state:x%x",
542 irsp->ulpStatus, irsp->un.ulpWord[4],
543 vport->port_state);
544
dea31012005-04-17 16:05:31 -0500545 if (irsp->ulpStatus) {
546 /* Check for retry */
James Smart2e0fef82007-06-17 19:56:36 -0500547 if (lpfc_els_retry(phba, cmdiocb, rspiocb))
dea31012005-04-17 16:05:31 -0500548 goto out;
James Smart2e0fef82007-06-17 19:56:36 -0500549
dea31012005-04-17 16:05:31 -0500550 /* FLOGI failed, so there is no fabric */
James Smart2e0fef82007-06-17 19:56:36 -0500551 spin_lock_irq(shost->host_lock);
552 vport->fc_flag &= ~(FC_FABRIC | FC_PUBLIC_LOOP);
553 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500554
James Smart329f9bc2007-04-25 09:53:01 -0400555 /* If private loop, then allow max outstanding els to be
dea31012005-04-17 16:05:31 -0500556 * LPFC_MAX_DISC_THREADS (32). Scanning in the case of no
557 * alpa map would take too long otherwise.
558 */
559 if (phba->alpa_map[0] == 0) {
James Smart3de2a652007-08-02 11:09:59 -0400560 vport->cfg_discovery_threads = LPFC_MAX_DISC_THREADS;
dea31012005-04-17 16:05:31 -0500561 }
562
563 /* FLOGI failure */
James Smarte8b62012007-08-02 11:10:09 -0400564 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
565 "0100 FLOGI failure Data: x%x x%x "
566 "x%x\n",
567 irsp->ulpStatus, irsp->un.ulpWord[4],
568 irsp->ulpTimeout);
dea31012005-04-17 16:05:31 -0500569 goto flogifail;
570 }
571
572 /*
573 * The FLogI succeeded. Sync the data for the CPU before
574 * accessing it.
575 */
576 prsp = list_get_first(&pcmd->list, struct lpfc_dmabuf, list);
577
578 sp = prsp->virt + sizeof(uint32_t);
579
580 /* FLOGI completes successfully */
James Smarte8b62012007-08-02 11:10:09 -0400581 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
582 "0101 FLOGI completes sucessfully "
583 "Data: x%x x%x x%x x%x\n",
584 irsp->un.ulpWord[4], sp->cmn.e_d_tov,
585 sp->cmn.w2.r_a_tov, sp->cmn.edtovResolution);
dea31012005-04-17 16:05:31 -0500586
James Smart2e0fef82007-06-17 19:56:36 -0500587 if (vport->port_state == LPFC_FLOGI) {
dea31012005-04-17 16:05:31 -0500588 /*
589 * If Common Service Parameters indicate Nport
590 * we are point to point, if Fport we are Fabric.
591 */
592 if (sp->cmn.fPort)
James Smart2e0fef82007-06-17 19:56:36 -0500593 rc = lpfc_cmpl_els_flogi_fabric(vport, ndlp, sp, irsp);
dea31012005-04-17 16:05:31 -0500594 else
James Smart2e0fef82007-06-17 19:56:36 -0500595 rc = lpfc_cmpl_els_flogi_nport(vport, ndlp, sp);
dea31012005-04-17 16:05:31 -0500596
597 if (!rc)
598 goto out;
599 }
600
601flogifail:
James Smart329f9bc2007-04-25 09:53:01 -0400602 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -0500603
James Smart858c9f62007-06-17 19:56:39 -0500604 if (!lpfc_error_lost_link(irsp)) {
dea31012005-04-17 16:05:31 -0500605 /* FLOGI failed, so just use loop map to make discovery list */
James Smart2e0fef82007-06-17 19:56:36 -0500606 lpfc_disc_list_loopmap(vport);
dea31012005-04-17 16:05:31 -0500607
608 /* Start discovery */
James Smart2e0fef82007-06-17 19:56:36 -0500609 lpfc_disc_start(vport);
James Smart87af33f2007-10-27 13:37:43 -0400610 } else if (((irsp->ulpStatus != IOSTAT_LOCAL_REJECT) ||
611 ((irsp->un.ulpWord[4] != IOERR_SLI_ABORTED) &&
612 (irsp->un.ulpWord[4] != IOERR_SLI_DOWN))) &&
613 (phba->link_state != LPFC_CLEAR_LA)) {
614 /* If FLOGI failed enable link interrupt. */
615 lpfc_issue_clear_la(phba, vport);
dea31012005-04-17 16:05:31 -0500616 }
dea31012005-04-17 16:05:31 -0500617out:
618 lpfc_els_free_iocb(phba, cmdiocb);
619}
620
621static int
James Smart2e0fef82007-06-17 19:56:36 -0500622lpfc_issue_els_flogi(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
dea31012005-04-17 16:05:31 -0500623 uint8_t retry)
624{
James Smart2e0fef82007-06-17 19:56:36 -0500625 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -0500626 struct serv_parm *sp;
627 IOCB_t *icmd;
628 struct lpfc_iocbq *elsiocb;
629 struct lpfc_sli_ring *pring;
630 uint8_t *pcmd;
631 uint16_t cmdsize;
632 uint32_t tmo;
633 int rc;
634
635 pring = &phba->sli.ring[LPFC_ELS_RING];
636
James Smart92d7f7b2007-06-17 19:56:38 -0500637 cmdsize = (sizeof(uint32_t) + sizeof(struct serv_parm));
James Smart2e0fef82007-06-17 19:56:36 -0500638 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
639 ndlp->nlp_DID, ELS_CMD_FLOGI);
James Smart92d7f7b2007-06-17 19:56:38 -0500640
James Smart488d1462006-03-07 15:02:37 -0500641 if (!elsiocb)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500642 return 1;
dea31012005-04-17 16:05:31 -0500643
644 icmd = &elsiocb->iocb;
645 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
646
647 /* For FLOGI request, remainder of payload is service parameters */
648 *((uint32_t *) (pcmd)) = ELS_CMD_FLOGI;
James Smart92d7f7b2007-06-17 19:56:38 -0500649 pcmd += sizeof(uint32_t);
650 memcpy(pcmd, &vport->fc_sparam, sizeof(struct serv_parm));
dea31012005-04-17 16:05:31 -0500651 sp = (struct serv_parm *) pcmd;
652
653 /* Setup CSPs accordingly for Fabric */
654 sp->cmn.e_d_tov = 0;
655 sp->cmn.w2.r_a_tov = 0;
656 sp->cls1.classValid = 0;
657 sp->cls2.seqDelivery = 1;
658 sp->cls3.seqDelivery = 1;
659 if (sp->cmn.fcphLow < FC_PH3)
660 sp->cmn.fcphLow = FC_PH3;
661 if (sp->cmn.fcphHigh < FC_PH3)
662 sp->cmn.fcphHigh = FC_PH3;
663
James Smart92d7f7b2007-06-17 19:56:38 -0500664 if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) {
665 sp->cmn.request_multiple_Nport = 1;
666
667 /* For FLOGI, Let FLOGI rsp set the NPortID for VPI 0 */
668 icmd->ulpCt_h = 1;
669 icmd->ulpCt_l = 0;
670 }
671
James Smart858c9f62007-06-17 19:56:39 -0500672 if (phba->fc_topology != TOPOLOGY_LOOP) {
673 icmd->un.elsreq64.myID = 0;
674 icmd->un.elsreq64.fl = 1;
675 }
676
dea31012005-04-17 16:05:31 -0500677 tmo = phba->fc_ratov;
678 phba->fc_ratov = LPFC_DISC_FLOGI_TMO;
James Smart2e0fef82007-06-17 19:56:36 -0500679 lpfc_set_disctmo(vport);
dea31012005-04-17 16:05:31 -0500680 phba->fc_ratov = tmo;
681
682 phba->fc_stat.elsXmitFLOGI++;
683 elsiocb->iocb_cmpl = lpfc_cmpl_els_flogi;
James Smart858c9f62007-06-17 19:56:39 -0500684
685 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
686 "Issue FLOGI: opt:x%x",
687 phba->sli3_options, 0, 0);
688
James Smart92d7f7b2007-06-17 19:56:38 -0500689 rc = lpfc_issue_fabric_iocb(phba, elsiocb);
dea31012005-04-17 16:05:31 -0500690 if (rc == IOCB_ERROR) {
691 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500692 return 1;
dea31012005-04-17 16:05:31 -0500693 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500694 return 0;
dea31012005-04-17 16:05:31 -0500695}
696
697int
James Smart2e0fef82007-06-17 19:56:36 -0500698lpfc_els_abort_flogi(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -0500699{
700 struct lpfc_sli_ring *pring;
701 struct lpfc_iocbq *iocb, *next_iocb;
702 struct lpfc_nodelist *ndlp;
703 IOCB_t *icmd;
704
705 /* Abort outstanding I/O on NPort <nlp_DID> */
706 lpfc_printf_log(phba, KERN_INFO, LOG_DISCOVERY,
James Smarte8b62012007-08-02 11:10:09 -0400707 "0201 Abort outstanding I/O on NPort x%x\n",
708 Fabric_DID);
dea31012005-04-17 16:05:31 -0500709
710 pring = &phba->sli.ring[LPFC_ELS_RING];
711
712 /*
713 * Check the txcmplq for an iocb that matches the nport the driver is
714 * searching for.
715 */
James Smart2e0fef82007-06-17 19:56:36 -0500716 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -0500717 list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq, list) {
718 icmd = &iocb->iocb;
James Smart2e0fef82007-06-17 19:56:36 -0500719 if (icmd->ulpCommand == CMD_ELS_REQUEST64_CR &&
720 icmd->un.elsreq64.bdl.ulpIoTag32) {
dea31012005-04-17 16:05:31 -0500721 ndlp = (struct lpfc_nodelist *)(iocb->context1);
James Smart58da1ff2008-04-07 10:15:56 -0400722 if (ndlp && NLP_CHK_NODE_ACT(ndlp) &&
723 (ndlp->nlp_DID == Fabric_DID))
James Smart07951072007-04-25 09:51:38 -0400724 lpfc_sli_issue_abort_iotag(phba, pring, iocb);
dea31012005-04-17 16:05:31 -0500725 }
726 }
James Smart2e0fef82007-06-17 19:56:36 -0500727 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -0500728
729 return 0;
730}
731
732int
James Smart2e0fef82007-06-17 19:56:36 -0500733lpfc_initial_flogi(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -0500734{
James Smart2e0fef82007-06-17 19:56:36 -0500735 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -0500736 struct lpfc_nodelist *ndlp;
737
James Smart98c9ea52007-10-27 13:37:33 -0400738 vport->port_state = LPFC_FLOGI;
739 lpfc_set_disctmo(vport);
740
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500741 /* First look for the Fabric ndlp */
James Smart2e0fef82007-06-17 19:56:36 -0500742 ndlp = lpfc_findnode_did(vport, Fabric_DID);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500743 if (!ndlp) {
dea31012005-04-17 16:05:31 -0500744 /* Cannot find existing Fabric ndlp, so allocate a new one */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500745 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
746 if (!ndlp)
747 return 0;
James Smart2e0fef82007-06-17 19:56:36 -0500748 lpfc_nlp_init(vport, ndlp, Fabric_DID);
James Smarte47c9092008-02-08 18:49:26 -0500749 /* Put ndlp onto node list */
750 lpfc_enqueue_node(vport, ndlp);
751 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
752 /* re-setup ndlp without removing from node list */
753 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
754 if (!ndlp)
755 return 0;
dea31012005-04-17 16:05:31 -0500756 }
James Smart87af33f2007-10-27 13:37:43 -0400757
James Smarte47c9092008-02-08 18:49:26 -0500758 if (lpfc_issue_els_flogi(vport, ndlp, 0))
James Smartfa4066b2008-01-11 01:53:27 -0500759 /* This decrement of reference count to node shall kick off
760 * the release of the node.
761 */
James Smart329f9bc2007-04-25 09:53:01 -0400762 lpfc_nlp_put(ndlp);
James Smarte47c9092008-02-08 18:49:26 -0500763
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500764 return 1;
dea31012005-04-17 16:05:31 -0500765}
766
James Smart92d7f7b2007-06-17 19:56:38 -0500767int
768lpfc_initial_fdisc(struct lpfc_vport *vport)
769{
770 struct lpfc_hba *phba = vport->phba;
771 struct lpfc_nodelist *ndlp;
772
773 /* First look for the Fabric ndlp */
774 ndlp = lpfc_findnode_did(vport, Fabric_DID);
775 if (!ndlp) {
776 /* Cannot find existing Fabric ndlp, so allocate a new one */
777 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
778 if (!ndlp)
779 return 0;
780 lpfc_nlp_init(vport, ndlp, Fabric_DID);
James Smarte47c9092008-02-08 18:49:26 -0500781 /* Put ndlp onto node list */
782 lpfc_enqueue_node(vport, ndlp);
783 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
784 /* re-setup ndlp without removing from node list */
785 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
786 if (!ndlp)
787 return 0;
James Smart92d7f7b2007-06-17 19:56:38 -0500788 }
James Smarte47c9092008-02-08 18:49:26 -0500789
James Smart92d7f7b2007-06-17 19:56:38 -0500790 if (lpfc_issue_els_fdisc(vport, ndlp, 0)) {
James Smartfa4066b2008-01-11 01:53:27 -0500791 /* decrement node reference count to trigger the release of
792 * the node.
793 */
James Smart92d7f7b2007-06-17 19:56:38 -0500794 lpfc_nlp_put(ndlp);
James Smartfa4066b2008-01-11 01:53:27 -0500795 return 0;
James Smart92d7f7b2007-06-17 19:56:38 -0500796 }
797 return 1;
798}
James Smart87af33f2007-10-27 13:37:43 -0400799
800void
James Smart2e0fef82007-06-17 19:56:36 -0500801lpfc_more_plogi(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -0500802{
803 int sentplogi;
804
James Smart2e0fef82007-06-17 19:56:36 -0500805 if (vport->num_disc_nodes)
806 vport->num_disc_nodes--;
dea31012005-04-17 16:05:31 -0500807
808 /* Continue discovery with <num_disc_nodes> PLOGIs to go */
James Smarte8b62012007-08-02 11:10:09 -0400809 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
810 "0232 Continue discovery with %d PLOGIs to go "
811 "Data: x%x x%x x%x\n",
812 vport->num_disc_nodes, vport->fc_plogi_cnt,
813 vport->fc_flag, vport->port_state);
dea31012005-04-17 16:05:31 -0500814 /* Check to see if there are more PLOGIs to be sent */
James Smart2e0fef82007-06-17 19:56:36 -0500815 if (vport->fc_flag & FC_NLP_MORE)
816 /* go thru NPR nodes and issue any remaining ELS PLOGIs */
817 sentplogi = lpfc_els_disc_plogi(vport);
818
dea31012005-04-17 16:05:31 -0500819 return;
820}
821
James Smart488d1462006-03-07 15:02:37 -0500822static struct lpfc_nodelist *
James Smart92d7f7b2007-06-17 19:56:38 -0500823lpfc_plogi_confirm_nport(struct lpfc_hba *phba, uint32_t *prsp,
James Smart488d1462006-03-07 15:02:37 -0500824 struct lpfc_nodelist *ndlp)
825{
James Smart2e0fef82007-06-17 19:56:36 -0500826 struct lpfc_vport *vport = ndlp->vport;
James Smart488d1462006-03-07 15:02:37 -0500827 struct lpfc_nodelist *new_ndlp;
James Smart0ff10d42008-01-11 01:52:36 -0500828 struct lpfc_rport_data *rdata;
829 struct fc_rport *rport;
James Smart488d1462006-03-07 15:02:37 -0500830 struct serv_parm *sp;
James Smart92d7f7b2007-06-17 19:56:38 -0500831 uint8_t name[sizeof(struct lpfc_name)];
James Smart58da1ff2008-04-07 10:15:56 -0400832 uint32_t rc, keepDID = 0;
James Smart488d1462006-03-07 15:02:37 -0500833
James Smart2fb9bd82006-12-02 13:33:57 -0500834 /* Fabric nodes can have the same WWPN so we don't bother searching
835 * by WWPN. Just return the ndlp that was given to us.
836 */
837 if (ndlp->nlp_type & NLP_FABRIC)
838 return ndlp;
839
James Smart92d7f7b2007-06-17 19:56:38 -0500840 sp = (struct serv_parm *) ((uint8_t *) prsp + sizeof(uint32_t));
James Smart685f0bf2007-04-25 09:53:08 -0400841 memset(name, 0, sizeof(struct lpfc_name));
James Smart488d1462006-03-07 15:02:37 -0500842
James Smart685f0bf2007-04-25 09:53:08 -0400843 /* Now we find out if the NPort we are logging into, matches the WWPN
James Smart488d1462006-03-07 15:02:37 -0500844 * we have for that ndlp. If not, we have some work to do.
845 */
James Smart2e0fef82007-06-17 19:56:36 -0500846 new_ndlp = lpfc_findnode_wwpn(vport, &sp->portName);
James Smart488d1462006-03-07 15:02:37 -0500847
James Smarte47c9092008-02-08 18:49:26 -0500848 if (new_ndlp == ndlp && NLP_CHK_NODE_ACT(new_ndlp))
James Smart488d1462006-03-07 15:02:37 -0500849 return ndlp;
James Smart488d1462006-03-07 15:02:37 -0500850
851 if (!new_ndlp) {
James Smart2e0fef82007-06-17 19:56:36 -0500852 rc = memcmp(&ndlp->nlp_portname, name,
853 sizeof(struct lpfc_name));
James Smart92795652006-07-06 15:50:02 -0400854 if (!rc)
855 return ndlp;
James Smart488d1462006-03-07 15:02:37 -0500856 new_ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_ATOMIC);
857 if (!new_ndlp)
858 return ndlp;
James Smart2e0fef82007-06-17 19:56:36 -0500859 lpfc_nlp_init(vport, new_ndlp, ndlp->nlp_DID);
James Smarte47c9092008-02-08 18:49:26 -0500860 } else if (!NLP_CHK_NODE_ACT(new_ndlp)) {
James Smart58da1ff2008-04-07 10:15:56 -0400861 rc = memcmp(&ndlp->nlp_portname, name,
862 sizeof(struct lpfc_name));
863 if (!rc)
864 return ndlp;
James Smarte47c9092008-02-08 18:49:26 -0500865 new_ndlp = lpfc_enable_node(vport, new_ndlp,
866 NLP_STE_UNUSED_NODE);
867 if (!new_ndlp)
868 return ndlp;
James Smart58da1ff2008-04-07 10:15:56 -0400869 keepDID = new_ndlp->nlp_DID;
870 } else
871 keepDID = new_ndlp->nlp_DID;
James Smart488d1462006-03-07 15:02:37 -0500872
James Smart2e0fef82007-06-17 19:56:36 -0500873 lpfc_unreg_rpi(vport, new_ndlp);
James Smart488d1462006-03-07 15:02:37 -0500874 new_ndlp->nlp_DID = ndlp->nlp_DID;
James Smart92795652006-07-06 15:50:02 -0400875 new_ndlp->nlp_prev_state = ndlp->nlp_prev_state;
James Smart0ff10d42008-01-11 01:52:36 -0500876
877 if (ndlp->nlp_flag & NLP_NPR_2B_DISC)
878 new_ndlp->nlp_flag |= NLP_NPR_2B_DISC;
879 ndlp->nlp_flag &= ~NLP_NPR_2B_DISC;
880
James Smarte47c9092008-02-08 18:49:26 -0500881 /* Set state will put new_ndlp on to node list if not already done */
James Smart2e0fef82007-06-17 19:56:36 -0500882 lpfc_nlp_set_state(vport, new_ndlp, ndlp->nlp_state);
James Smart488d1462006-03-07 15:02:37 -0500883
James Smart2e0fef82007-06-17 19:56:36 -0500884 /* Move this back to NPR state */
James Smart87af33f2007-10-27 13:37:43 -0400885 if (memcmp(&ndlp->nlp_portname, name, sizeof(struct lpfc_name)) == 0) {
886 /* The new_ndlp is replacing ndlp totally, so we need
887 * to put ndlp on UNUSED list and try to free it.
888 */
James Smart0ff10d42008-01-11 01:52:36 -0500889
890 /* Fix up the rport accordingly */
891 rport = ndlp->rport;
892 if (rport) {
893 rdata = rport->dd_data;
894 if (rdata->pnode == ndlp) {
895 lpfc_nlp_put(ndlp);
896 ndlp->rport = NULL;
897 rdata->pnode = lpfc_nlp_get(new_ndlp);
898 new_ndlp->rport = rport;
899 }
900 new_ndlp->nlp_type = ndlp->nlp_type;
901 }
James Smart58da1ff2008-04-07 10:15:56 -0400902 /* We shall actually free the ndlp with both nlp_DID and
903 * nlp_portname fields equals 0 to avoid any ndlp on the
904 * nodelist never to be used.
905 */
906 if (ndlp->nlp_DID == 0) {
907 spin_lock_irq(&phba->ndlp_lock);
908 NLP_SET_FREE_REQ(ndlp);
909 spin_unlock_irq(&phba->ndlp_lock);
910 }
James Smart0ff10d42008-01-11 01:52:36 -0500911
James Smart58da1ff2008-04-07 10:15:56 -0400912 /* Two ndlps cannot have the same did on the nodelist */
913 ndlp->nlp_DID = keepDID;
James Smart2e0fef82007-06-17 19:56:36 -0500914 lpfc_drop_node(vport, ndlp);
James Smart87af33f2007-10-27 13:37:43 -0400915 }
James Smart92795652006-07-06 15:50:02 -0400916 else {
James Smart2e0fef82007-06-17 19:56:36 -0500917 lpfc_unreg_rpi(vport, ndlp);
James Smart58da1ff2008-04-07 10:15:56 -0400918 /* Two ndlps cannot have the same did */
919 ndlp->nlp_DID = keepDID;
James Smart2e0fef82007-06-17 19:56:36 -0500920 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
James Smart92795652006-07-06 15:50:02 -0400921 }
James Smart488d1462006-03-07 15:02:37 -0500922 return new_ndlp;
923}
924
James Smart87af33f2007-10-27 13:37:43 -0400925void
926lpfc_end_rscn(struct lpfc_vport *vport)
927{
928 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
929
930 if (vport->fc_flag & FC_RSCN_MODE) {
931 /*
932 * Check to see if more RSCNs came in while we were
933 * processing this one.
934 */
935 if (vport->fc_rscn_id_cnt ||
936 (vport->fc_flag & FC_RSCN_DISCOVERY) != 0)
937 lpfc_els_handle_rscn(vport);
938 else {
939 spin_lock_irq(shost->host_lock);
940 vport->fc_flag &= ~FC_RSCN_MODE;
941 spin_unlock_irq(shost->host_lock);
942 }
943 }
944}
945
dea31012005-04-17 16:05:31 -0500946static void
James Smart2e0fef82007-06-17 19:56:36 -0500947lpfc_cmpl_els_plogi(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
948 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -0500949{
James Smart2e0fef82007-06-17 19:56:36 -0500950 struct lpfc_vport *vport = cmdiocb->vport;
951 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -0500952 IOCB_t *irsp;
dea31012005-04-17 16:05:31 -0500953 struct lpfc_nodelist *ndlp;
James Smart92795652006-07-06 15:50:02 -0400954 struct lpfc_dmabuf *prsp;
dea31012005-04-17 16:05:31 -0500955 int disc, rc, did, type;
956
dea31012005-04-17 16:05:31 -0500957 /* we pass cmdiocb to state machine which needs rspiocb as well */
958 cmdiocb->context_un.rsp_iocb = rspiocb;
959
960 irsp = &rspiocb->iocb;
James Smart858c9f62007-06-17 19:56:39 -0500961 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
962 "PLOGI cmpl: status:x%x/x%x did:x%x",
963 irsp->ulpStatus, irsp->un.ulpWord[4],
964 irsp->un.elsreq64.remoteID);
965
James Smart2e0fef82007-06-17 19:56:36 -0500966 ndlp = lpfc_findnode_did(vport, irsp->un.elsreq64.remoteID);
James Smarte47c9092008-02-08 18:49:26 -0500967 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp)) {
James Smarte8b62012007-08-02 11:10:09 -0400968 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
969 "0136 PLOGI completes to NPort x%x "
970 "with no ndlp. Data: x%x x%x x%x\n",
971 irsp->un.elsreq64.remoteID,
972 irsp->ulpStatus, irsp->un.ulpWord[4],
973 irsp->ulpIoTag);
James Smart488d1462006-03-07 15:02:37 -0500974 goto out;
James Smarted957682007-06-17 19:56:37 -0500975 }
dea31012005-04-17 16:05:31 -0500976
977 /* Since ndlp can be freed in the disc state machine, note if this node
978 * is being used during discovery.
979 */
James Smart2e0fef82007-06-17 19:56:36 -0500980 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500981 disc = (ndlp->nlp_flag & NLP_NPR_2B_DISC);
James Smart488d1462006-03-07 15:02:37 -0500982 ndlp->nlp_flag &= ~NLP_NPR_2B_DISC;
James Smart2e0fef82007-06-17 19:56:36 -0500983 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500984 rc = 0;
985
986 /* PLOGI completes to NPort <nlp_DID> */
James Smarte8b62012007-08-02 11:10:09 -0400987 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
988 "0102 PLOGI completes to NPort x%x "
989 "Data: x%x x%x x%x x%x x%x\n",
990 ndlp->nlp_DID, irsp->ulpStatus, irsp->un.ulpWord[4],
991 irsp->ulpTimeout, disc, vport->num_disc_nodes);
dea31012005-04-17 16:05:31 -0500992 /* Check to see if link went down during discovery */
James Smart2e0fef82007-06-17 19:56:36 -0500993 if (lpfc_els_chk_latt(vport)) {
994 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500995 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
James Smart2e0fef82007-06-17 19:56:36 -0500996 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500997 goto out;
998 }
999
1000 /* ndlp could be freed in DSM, save these values now */
1001 type = ndlp->nlp_type;
1002 did = ndlp->nlp_DID;
1003
1004 if (irsp->ulpStatus) {
1005 /* Check for retry */
1006 if (lpfc_els_retry(phba, cmdiocb, rspiocb)) {
1007 /* ELS command is being retried */
1008 if (disc) {
James Smart2e0fef82007-06-17 19:56:36 -05001009 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001010 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
James Smart2e0fef82007-06-17 19:56:36 -05001011 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001012 }
1013 goto out;
1014 }
dea31012005-04-17 16:05:31 -05001015 /* PLOGI failed */
1016 /* Do not call DSM for lpfc_els_abort'ed ELS cmds */
James Smarte47c9092008-02-08 18:49:26 -05001017 if (lpfc_error_lost_link(irsp))
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001018 rc = NLP_STE_FREED_NODE;
James Smarte47c9092008-02-08 18:49:26 -05001019 else
James Smart2e0fef82007-06-17 19:56:36 -05001020 rc = lpfc_disc_state_machine(vport, ndlp, cmdiocb,
James Smart92d7f7b2007-06-17 19:56:38 -05001021 NLP_EVT_CMPL_PLOGI);
dea31012005-04-17 16:05:31 -05001022 } else {
1023 /* Good status, call state machine */
James Smart92795652006-07-06 15:50:02 -04001024 prsp = list_entry(((struct lpfc_dmabuf *)
James Smart92d7f7b2007-06-17 19:56:38 -05001025 cmdiocb->context2)->list.next,
1026 struct lpfc_dmabuf, list);
1027 ndlp = lpfc_plogi_confirm_nport(phba, prsp->virt, ndlp);
James Smart2e0fef82007-06-17 19:56:36 -05001028 rc = lpfc_disc_state_machine(vport, ndlp, cmdiocb,
James Smart92d7f7b2007-06-17 19:56:38 -05001029 NLP_EVT_CMPL_PLOGI);
dea31012005-04-17 16:05:31 -05001030 }
1031
James Smart2e0fef82007-06-17 19:56:36 -05001032 if (disc && vport->num_disc_nodes) {
dea31012005-04-17 16:05:31 -05001033 /* Check to see if there are more PLOGIs to be sent */
James Smart2e0fef82007-06-17 19:56:36 -05001034 lpfc_more_plogi(vport);
dea31012005-04-17 16:05:31 -05001035
James Smart2e0fef82007-06-17 19:56:36 -05001036 if (vport->num_disc_nodes == 0) {
1037 spin_lock_irq(shost->host_lock);
1038 vport->fc_flag &= ~FC_NDISC_ACTIVE;
1039 spin_unlock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001040
James Smart2e0fef82007-06-17 19:56:36 -05001041 lpfc_can_disctmo(vport);
James Smart87af33f2007-10-27 13:37:43 -04001042 lpfc_end_rscn(vport);
dea31012005-04-17 16:05:31 -05001043 }
1044 }
1045
1046out:
1047 lpfc_els_free_iocb(phba, cmdiocb);
1048 return;
1049}
1050
1051int
James Smart2e0fef82007-06-17 19:56:36 -05001052lpfc_issue_els_plogi(struct lpfc_vport *vport, uint32_t did, uint8_t retry)
dea31012005-04-17 16:05:31 -05001053{
James Smart2e0fef82007-06-17 19:56:36 -05001054 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05001055 struct serv_parm *sp;
1056 IOCB_t *icmd;
James Smart98c9ea52007-10-27 13:37:33 -04001057 struct lpfc_nodelist *ndlp;
dea31012005-04-17 16:05:31 -05001058 struct lpfc_iocbq *elsiocb;
1059 struct lpfc_sli_ring *pring;
1060 struct lpfc_sli *psli;
1061 uint8_t *pcmd;
1062 uint16_t cmdsize;
James Smart92d7f7b2007-06-17 19:56:38 -05001063 int ret;
dea31012005-04-17 16:05:31 -05001064
1065 psli = &phba->sli;
1066 pring = &psli->ring[LPFC_ELS_RING]; /* ELS ring */
1067
James Smart98c9ea52007-10-27 13:37:33 -04001068 ndlp = lpfc_findnode_did(vport, did);
James Smarte47c9092008-02-08 18:49:26 -05001069 if (ndlp && !NLP_CHK_NODE_ACT(ndlp))
1070 ndlp = NULL;
James Smart98c9ea52007-10-27 13:37:33 -04001071
James Smarte47c9092008-02-08 18:49:26 -05001072 /* If ndlp is not NULL, we will bump the reference count on it */
James Smart92d7f7b2007-06-17 19:56:38 -05001073 cmdsize = (sizeof(uint32_t) + sizeof(struct serv_parm));
James Smart98c9ea52007-10-27 13:37:33 -04001074 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp, did,
James Smart2e0fef82007-06-17 19:56:36 -05001075 ELS_CMD_PLOGI);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001076 if (!elsiocb)
1077 return 1;
dea31012005-04-17 16:05:31 -05001078
1079 icmd = &elsiocb->iocb;
1080 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
1081
1082 /* For PLOGI request, remainder of payload is service parameters */
1083 *((uint32_t *) (pcmd)) = ELS_CMD_PLOGI;
James Smart92d7f7b2007-06-17 19:56:38 -05001084 pcmd += sizeof(uint32_t);
1085 memcpy(pcmd, &vport->fc_sparam, sizeof(struct serv_parm));
dea31012005-04-17 16:05:31 -05001086 sp = (struct serv_parm *) pcmd;
1087
1088 if (sp->cmn.fcphLow < FC_PH_4_3)
1089 sp->cmn.fcphLow = FC_PH_4_3;
1090
1091 if (sp->cmn.fcphHigh < FC_PH3)
1092 sp->cmn.fcphHigh = FC_PH3;
1093
James Smart858c9f62007-06-17 19:56:39 -05001094 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
1095 "Issue PLOGI: did:x%x",
1096 did, 0, 0);
1097
dea31012005-04-17 16:05:31 -05001098 phba->fc_stat.elsXmitPLOGI++;
1099 elsiocb->iocb_cmpl = lpfc_cmpl_els_plogi;
James Smart92d7f7b2007-06-17 19:56:38 -05001100 ret = lpfc_sli_issue_iocb(phba, pring, elsiocb, 0);
1101
1102 if (ret == IOCB_ERROR) {
dea31012005-04-17 16:05:31 -05001103 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001104 return 1;
dea31012005-04-17 16:05:31 -05001105 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001106 return 0;
dea31012005-04-17 16:05:31 -05001107}
1108
1109static void
James Smart2e0fef82007-06-17 19:56:36 -05001110lpfc_cmpl_els_prli(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
1111 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05001112{
James Smart2e0fef82007-06-17 19:56:36 -05001113 struct lpfc_vport *vport = cmdiocb->vport;
1114 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05001115 IOCB_t *irsp;
1116 struct lpfc_sli *psli;
1117 struct lpfc_nodelist *ndlp;
1118
1119 psli = &phba->sli;
1120 /* we pass cmdiocb to state machine which needs rspiocb as well */
1121 cmdiocb->context_un.rsp_iocb = rspiocb;
1122
1123 irsp = &(rspiocb->iocb);
1124 ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
James Smart2e0fef82007-06-17 19:56:36 -05001125 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001126 ndlp->nlp_flag &= ~NLP_PRLI_SND;
James Smart2e0fef82007-06-17 19:56:36 -05001127 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001128
James Smart858c9f62007-06-17 19:56:39 -05001129 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
1130 "PRLI cmpl: status:x%x/x%x did:x%x",
1131 irsp->ulpStatus, irsp->un.ulpWord[4],
1132 ndlp->nlp_DID);
dea31012005-04-17 16:05:31 -05001133 /* PRLI completes to NPort <nlp_DID> */
James Smarte8b62012007-08-02 11:10:09 -04001134 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
1135 "0103 PRLI completes to NPort x%x "
1136 "Data: x%x x%x x%x x%x\n",
1137 ndlp->nlp_DID, irsp->ulpStatus, irsp->un.ulpWord[4],
1138 irsp->ulpTimeout, vport->num_disc_nodes);
dea31012005-04-17 16:05:31 -05001139
James Smart2e0fef82007-06-17 19:56:36 -05001140 vport->fc_prli_sent--;
dea31012005-04-17 16:05:31 -05001141 /* Check to see if link went down during discovery */
James Smart2e0fef82007-06-17 19:56:36 -05001142 if (lpfc_els_chk_latt(vport))
dea31012005-04-17 16:05:31 -05001143 goto out;
1144
1145 if (irsp->ulpStatus) {
1146 /* Check for retry */
1147 if (lpfc_els_retry(phba, cmdiocb, rspiocb)) {
1148 /* ELS command is being retried */
1149 goto out;
1150 }
1151 /* PRLI failed */
1152 /* Do not call DSM for lpfc_els_abort'ed ELS cmds */
James Smarte47c9092008-02-08 18:49:26 -05001153 if (lpfc_error_lost_link(irsp))
dea31012005-04-17 16:05:31 -05001154 goto out;
James Smarte47c9092008-02-08 18:49:26 -05001155 else
James Smart2e0fef82007-06-17 19:56:36 -05001156 lpfc_disc_state_machine(vport, ndlp, cmdiocb,
James Smart92d7f7b2007-06-17 19:56:38 -05001157 NLP_EVT_CMPL_PRLI);
James Smarte47c9092008-02-08 18:49:26 -05001158 } else
dea31012005-04-17 16:05:31 -05001159 /* Good status, call state machine */
James Smart2e0fef82007-06-17 19:56:36 -05001160 lpfc_disc_state_machine(vport, ndlp, cmdiocb,
James Smart92d7f7b2007-06-17 19:56:38 -05001161 NLP_EVT_CMPL_PRLI);
dea31012005-04-17 16:05:31 -05001162out:
1163 lpfc_els_free_iocb(phba, cmdiocb);
1164 return;
1165}
1166
1167int
James Smart2e0fef82007-06-17 19:56:36 -05001168lpfc_issue_els_prli(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
dea31012005-04-17 16:05:31 -05001169 uint8_t retry)
1170{
James Smart2e0fef82007-06-17 19:56:36 -05001171 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1172 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05001173 PRLI *npr;
1174 IOCB_t *icmd;
1175 struct lpfc_iocbq *elsiocb;
1176 struct lpfc_sli_ring *pring;
1177 struct lpfc_sli *psli;
1178 uint8_t *pcmd;
1179 uint16_t cmdsize;
1180
1181 psli = &phba->sli;
1182 pring = &psli->ring[LPFC_ELS_RING]; /* ELS ring */
1183
James Smart92d7f7b2007-06-17 19:56:38 -05001184 cmdsize = (sizeof(uint32_t) + sizeof(PRLI));
James Smart2e0fef82007-06-17 19:56:36 -05001185 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
1186 ndlp->nlp_DID, ELS_CMD_PRLI);
James Smart488d1462006-03-07 15:02:37 -05001187 if (!elsiocb)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001188 return 1;
dea31012005-04-17 16:05:31 -05001189
1190 icmd = &elsiocb->iocb;
1191 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
1192
1193 /* For PRLI request, remainder of payload is service parameters */
James Smart92d7f7b2007-06-17 19:56:38 -05001194 memset(pcmd, 0, (sizeof(PRLI) + sizeof(uint32_t)));
dea31012005-04-17 16:05:31 -05001195 *((uint32_t *) (pcmd)) = ELS_CMD_PRLI;
James Smart92d7f7b2007-06-17 19:56:38 -05001196 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05001197
1198 /* For PRLI, remainder of payload is PRLI parameter page */
1199 npr = (PRLI *) pcmd;
1200 /*
1201 * If our firmware version is 3.20 or later,
1202 * set the following bits for FC-TAPE support.
1203 */
1204 if (phba->vpd.rev.feaLevelHigh >= 0x02) {
1205 npr->ConfmComplAllowed = 1;
1206 npr->Retry = 1;
1207 npr->TaskRetryIdReq = 1;
1208 }
1209 npr->estabImagePair = 1;
1210 npr->readXferRdyDis = 1;
1211
1212 /* For FCP support */
1213 npr->prliType = PRLI_FCP_TYPE;
1214 npr->initiatorFunc = 1;
1215
James Smart858c9f62007-06-17 19:56:39 -05001216 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
1217 "Issue PRLI: did:x%x",
1218 ndlp->nlp_DID, 0, 0);
1219
dea31012005-04-17 16:05:31 -05001220 phba->fc_stat.elsXmitPRLI++;
1221 elsiocb->iocb_cmpl = lpfc_cmpl_els_prli;
James Smart2e0fef82007-06-17 19:56:36 -05001222 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001223 ndlp->nlp_flag |= NLP_PRLI_SND;
James Smart2e0fef82007-06-17 19:56:36 -05001224 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001225 if (lpfc_sli_issue_iocb(phba, pring, elsiocb, 0) == IOCB_ERROR) {
James Smart2e0fef82007-06-17 19:56:36 -05001226 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001227 ndlp->nlp_flag &= ~NLP_PRLI_SND;
James Smart2e0fef82007-06-17 19:56:36 -05001228 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001229 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001230 return 1;
dea31012005-04-17 16:05:31 -05001231 }
James Smart2e0fef82007-06-17 19:56:36 -05001232 vport->fc_prli_sent++;
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001233 return 0;
dea31012005-04-17 16:05:31 -05001234}
1235
James Smart0ff10d42008-01-11 01:52:36 -05001236void
James Smart2e0fef82007-06-17 19:56:36 -05001237lpfc_more_adisc(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05001238{
1239 int sentadisc;
1240
James Smart2e0fef82007-06-17 19:56:36 -05001241 if (vport->num_disc_nodes)
1242 vport->num_disc_nodes--;
dea31012005-04-17 16:05:31 -05001243 /* Continue discovery with <num_disc_nodes> ADISCs to go */
James Smarte8b62012007-08-02 11:10:09 -04001244 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
1245 "0210 Continue discovery with %d ADISCs to go "
1246 "Data: x%x x%x x%x\n",
1247 vport->num_disc_nodes, vport->fc_adisc_cnt,
1248 vport->fc_flag, vport->port_state);
dea31012005-04-17 16:05:31 -05001249 /* Check to see if there are more ADISCs to be sent */
James Smart2e0fef82007-06-17 19:56:36 -05001250 if (vport->fc_flag & FC_NLP_MORE) {
1251 lpfc_set_disctmo(vport);
1252 /* go thru NPR nodes and issue any remaining ELS ADISCs */
1253 sentadisc = lpfc_els_disc_adisc(vport);
dea31012005-04-17 16:05:31 -05001254 }
1255 return;
1256}
1257
1258static void
James Smart2e0fef82007-06-17 19:56:36 -05001259lpfc_rscn_disc(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05001260{
James Smart858c9f62007-06-17 19:56:39 -05001261 lpfc_can_disctmo(vport);
1262
dea31012005-04-17 16:05:31 -05001263 /* RSCN discovery */
James Smart2e0fef82007-06-17 19:56:36 -05001264 /* go thru NPR nodes and issue ELS PLOGIs */
1265 if (vport->fc_npr_cnt)
1266 if (lpfc_els_disc_plogi(vport))
dea31012005-04-17 16:05:31 -05001267 return;
James Smart2e0fef82007-06-17 19:56:36 -05001268
James Smart87af33f2007-10-27 13:37:43 -04001269 lpfc_end_rscn(vport);
dea31012005-04-17 16:05:31 -05001270}
1271
1272static void
James Smart2e0fef82007-06-17 19:56:36 -05001273lpfc_cmpl_els_adisc(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
1274 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05001275{
James Smart2e0fef82007-06-17 19:56:36 -05001276 struct lpfc_vport *vport = cmdiocb->vport;
1277 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05001278 IOCB_t *irsp;
dea31012005-04-17 16:05:31 -05001279 struct lpfc_nodelist *ndlp;
James Smart2e0fef82007-06-17 19:56:36 -05001280 int disc;
dea31012005-04-17 16:05:31 -05001281
1282 /* we pass cmdiocb to state machine which needs rspiocb as well */
1283 cmdiocb->context_un.rsp_iocb = rspiocb;
1284
1285 irsp = &(rspiocb->iocb);
1286 ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
dea31012005-04-17 16:05:31 -05001287
James Smart858c9f62007-06-17 19:56:39 -05001288 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
1289 "ADISC cmpl: status:x%x/x%x did:x%x",
1290 irsp->ulpStatus, irsp->un.ulpWord[4],
1291 ndlp->nlp_DID);
1292
dea31012005-04-17 16:05:31 -05001293 /* Since ndlp can be freed in the disc state machine, note if this node
1294 * is being used during discovery.
1295 */
James Smart2e0fef82007-06-17 19:56:36 -05001296 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001297 disc = (ndlp->nlp_flag & NLP_NPR_2B_DISC);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001298 ndlp->nlp_flag &= ~(NLP_ADISC_SND | NLP_NPR_2B_DISC);
James Smart2e0fef82007-06-17 19:56:36 -05001299 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001300 /* ADISC completes to NPort <nlp_DID> */
James Smarte8b62012007-08-02 11:10:09 -04001301 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
1302 "0104 ADISC completes to NPort x%x "
1303 "Data: x%x x%x x%x x%x x%x\n",
1304 ndlp->nlp_DID, irsp->ulpStatus, irsp->un.ulpWord[4],
1305 irsp->ulpTimeout, disc, vport->num_disc_nodes);
dea31012005-04-17 16:05:31 -05001306 /* Check to see if link went down during discovery */
James Smart2e0fef82007-06-17 19:56:36 -05001307 if (lpfc_els_chk_latt(vport)) {
1308 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001309 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
James Smart2e0fef82007-06-17 19:56:36 -05001310 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001311 goto out;
1312 }
1313
1314 if (irsp->ulpStatus) {
1315 /* Check for retry */
1316 if (lpfc_els_retry(phba, cmdiocb, rspiocb)) {
1317 /* ELS command is being retried */
1318 if (disc) {
James Smart2e0fef82007-06-17 19:56:36 -05001319 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001320 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
James Smart2e0fef82007-06-17 19:56:36 -05001321 spin_unlock_irq(shost->host_lock);
1322 lpfc_set_disctmo(vport);
dea31012005-04-17 16:05:31 -05001323 }
1324 goto out;
1325 }
1326 /* ADISC failed */
1327 /* Do not call DSM for lpfc_els_abort'ed ELS cmds */
James Smarte47c9092008-02-08 18:49:26 -05001328 if (!lpfc_error_lost_link(irsp))
James Smart2e0fef82007-06-17 19:56:36 -05001329 lpfc_disc_state_machine(vport, ndlp, cmdiocb,
James Smart858c9f62007-06-17 19:56:39 -05001330 NLP_EVT_CMPL_ADISC);
James Smarte47c9092008-02-08 18:49:26 -05001331 } else
dea31012005-04-17 16:05:31 -05001332 /* Good status, call state machine */
James Smart2e0fef82007-06-17 19:56:36 -05001333 lpfc_disc_state_machine(vport, ndlp, cmdiocb,
dea31012005-04-17 16:05:31 -05001334 NLP_EVT_CMPL_ADISC);
dea31012005-04-17 16:05:31 -05001335
James Smart2e0fef82007-06-17 19:56:36 -05001336 if (disc && vport->num_disc_nodes) {
dea31012005-04-17 16:05:31 -05001337 /* Check to see if there are more ADISCs to be sent */
James Smart2e0fef82007-06-17 19:56:36 -05001338 lpfc_more_adisc(vport);
dea31012005-04-17 16:05:31 -05001339
1340 /* Check to see if we are done with ADISC authentication */
James Smart2e0fef82007-06-17 19:56:36 -05001341 if (vport->num_disc_nodes == 0) {
James Smart92d7f7b2007-06-17 19:56:38 -05001342 /* If we get here, there is nothing left to ADISC */
1343 /*
1344 * For NPIV, cmpl_reg_vpi will set port_state to READY,
1345 * and continue discovery.
1346 */
1347 if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
1348 !(vport->fc_flag & FC_RSCN_MODE)) {
1349 lpfc_issue_reg_vpi(phba, vport);
1350 goto out;
1351 }
1352 /*
1353 * For SLI2, we need to set port_state to READY
1354 * and continue discovery.
1355 */
1356 if (vport->port_state < LPFC_VPORT_READY) {
1357 /* If we get here, there is nothing to ADISC */
James Smarted957682007-06-17 19:56:37 -05001358 if (vport->port_type == LPFC_PHYSICAL_PORT)
James Smart2e0fef82007-06-17 19:56:36 -05001359 lpfc_issue_clear_la(phba, vport);
James Smart92d7f7b2007-06-17 19:56:38 -05001360
1361 if (!(vport->fc_flag & FC_ABORT_DISCOVERY)) {
1362 vport->num_disc_nodes = 0;
1363 /* go thru NPR list, issue ELS PLOGIs */
1364 if (vport->fc_npr_cnt)
1365 lpfc_els_disc_plogi(vport);
1366
1367 if (!vport->num_disc_nodes) {
1368 spin_lock_irq(shost->host_lock);
1369 vport->fc_flag &=
1370 ~FC_NDISC_ACTIVE;
1371 spin_unlock_irq(
1372 shost->host_lock);
1373 lpfc_can_disctmo(vport);
1374 }
1375 }
1376 vport->port_state = LPFC_VPORT_READY;
dea31012005-04-17 16:05:31 -05001377 } else {
James Smart2e0fef82007-06-17 19:56:36 -05001378 lpfc_rscn_disc(vport);
dea31012005-04-17 16:05:31 -05001379 }
1380 }
1381 }
dea31012005-04-17 16:05:31 -05001382out:
1383 lpfc_els_free_iocb(phba, cmdiocb);
1384 return;
1385}
1386
1387int
James Smart2e0fef82007-06-17 19:56:36 -05001388lpfc_issue_els_adisc(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
dea31012005-04-17 16:05:31 -05001389 uint8_t retry)
1390{
James Smart2e0fef82007-06-17 19:56:36 -05001391 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1392 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05001393 ADISC *ap;
1394 IOCB_t *icmd;
1395 struct lpfc_iocbq *elsiocb;
James Smart2e0fef82007-06-17 19:56:36 -05001396 struct lpfc_sli *psli = &phba->sli;
1397 struct lpfc_sli_ring *pring = &psli->ring[LPFC_ELS_RING];
dea31012005-04-17 16:05:31 -05001398 uint8_t *pcmd;
1399 uint16_t cmdsize;
1400
James Smart92d7f7b2007-06-17 19:56:38 -05001401 cmdsize = (sizeof(uint32_t) + sizeof(ADISC));
James Smart2e0fef82007-06-17 19:56:36 -05001402 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
1403 ndlp->nlp_DID, ELS_CMD_ADISC);
James Smart488d1462006-03-07 15:02:37 -05001404 if (!elsiocb)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001405 return 1;
dea31012005-04-17 16:05:31 -05001406
1407 icmd = &elsiocb->iocb;
1408 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
1409
1410 /* For ADISC request, remainder of payload is service parameters */
1411 *((uint32_t *) (pcmd)) = ELS_CMD_ADISC;
James Smart92d7f7b2007-06-17 19:56:38 -05001412 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05001413
1414 /* Fill in ADISC payload */
1415 ap = (ADISC *) pcmd;
1416 ap->hardAL_PA = phba->fc_pref_ALPA;
James Smart92d7f7b2007-06-17 19:56:38 -05001417 memcpy(&ap->portName, &vport->fc_portname, sizeof(struct lpfc_name));
1418 memcpy(&ap->nodeName, &vport->fc_nodename, sizeof(struct lpfc_name));
James Smart2e0fef82007-06-17 19:56:36 -05001419 ap->DID = be32_to_cpu(vport->fc_myDID);
dea31012005-04-17 16:05:31 -05001420
James Smart858c9f62007-06-17 19:56:39 -05001421 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
1422 "Issue ADISC: did:x%x",
1423 ndlp->nlp_DID, 0, 0);
1424
dea31012005-04-17 16:05:31 -05001425 phba->fc_stat.elsXmitADISC++;
1426 elsiocb->iocb_cmpl = lpfc_cmpl_els_adisc;
James Smart2e0fef82007-06-17 19:56:36 -05001427 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001428 ndlp->nlp_flag |= NLP_ADISC_SND;
James Smart2e0fef82007-06-17 19:56:36 -05001429 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001430 if (lpfc_sli_issue_iocb(phba, pring, elsiocb, 0) == IOCB_ERROR) {
James Smart2e0fef82007-06-17 19:56:36 -05001431 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001432 ndlp->nlp_flag &= ~NLP_ADISC_SND;
James Smart2e0fef82007-06-17 19:56:36 -05001433 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001434 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001435 return 1;
dea31012005-04-17 16:05:31 -05001436 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001437 return 0;
dea31012005-04-17 16:05:31 -05001438}
1439
1440static void
James Smart2e0fef82007-06-17 19:56:36 -05001441lpfc_cmpl_els_logo(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
1442 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05001443{
James Smart2e0fef82007-06-17 19:56:36 -05001444 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
1445 struct lpfc_vport *vport = ndlp->vport;
1446 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05001447 IOCB_t *irsp;
1448 struct lpfc_sli *psli;
dea31012005-04-17 16:05:31 -05001449
1450 psli = &phba->sli;
1451 /* we pass cmdiocb to state machine which needs rspiocb as well */
1452 cmdiocb->context_un.rsp_iocb = rspiocb;
1453
1454 irsp = &(rspiocb->iocb);
James Smart2e0fef82007-06-17 19:56:36 -05001455 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001456 ndlp->nlp_flag &= ~NLP_LOGO_SND;
James Smart2e0fef82007-06-17 19:56:36 -05001457 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001458
James Smart858c9f62007-06-17 19:56:39 -05001459 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
1460 "LOGO cmpl: status:x%x/x%x did:x%x",
1461 irsp->ulpStatus, irsp->un.ulpWord[4],
1462 ndlp->nlp_DID);
dea31012005-04-17 16:05:31 -05001463 /* LOGO completes to NPort <nlp_DID> */
James Smarte8b62012007-08-02 11:10:09 -04001464 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
1465 "0105 LOGO completes to NPort x%x "
1466 "Data: x%x x%x x%x x%x\n",
1467 ndlp->nlp_DID, irsp->ulpStatus, irsp->un.ulpWord[4],
1468 irsp->ulpTimeout, vport->num_disc_nodes);
dea31012005-04-17 16:05:31 -05001469 /* Check to see if link went down during discovery */
James Smart2e0fef82007-06-17 19:56:36 -05001470 if (lpfc_els_chk_latt(vport))
dea31012005-04-17 16:05:31 -05001471 goto out;
1472
James Smart92d7f7b2007-06-17 19:56:38 -05001473 if (ndlp->nlp_flag & NLP_TARGET_REMOVE) {
1474 /* NLP_EVT_DEVICE_RM should unregister the RPI
1475 * which should abort all outstanding IOs.
1476 */
1477 lpfc_disc_state_machine(vport, ndlp, cmdiocb,
1478 NLP_EVT_DEVICE_RM);
1479 goto out;
1480 }
1481
dea31012005-04-17 16:05:31 -05001482 if (irsp->ulpStatus) {
1483 /* Check for retry */
James Smart2e0fef82007-06-17 19:56:36 -05001484 if (lpfc_els_retry(phba, cmdiocb, rspiocb))
dea31012005-04-17 16:05:31 -05001485 /* ELS command is being retried */
1486 goto out;
dea31012005-04-17 16:05:31 -05001487 /* LOGO failed */
1488 /* Do not call DSM for lpfc_els_abort'ed ELS cmds */
James Smart858c9f62007-06-17 19:56:39 -05001489 if (lpfc_error_lost_link(irsp))
dea31012005-04-17 16:05:31 -05001490 goto out;
James Smart858c9f62007-06-17 19:56:39 -05001491 else
James Smart2e0fef82007-06-17 19:56:36 -05001492 lpfc_disc_state_machine(vport, ndlp, cmdiocb,
James Smart92d7f7b2007-06-17 19:56:38 -05001493 NLP_EVT_CMPL_LOGO);
James Smarte47c9092008-02-08 18:49:26 -05001494 } else
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001495 /* Good status, call state machine.
1496 * This will unregister the rpi if needed.
1497 */
James Smart2e0fef82007-06-17 19:56:36 -05001498 lpfc_disc_state_machine(vport, ndlp, cmdiocb,
James Smart92d7f7b2007-06-17 19:56:38 -05001499 NLP_EVT_CMPL_LOGO);
dea31012005-04-17 16:05:31 -05001500out:
1501 lpfc_els_free_iocb(phba, cmdiocb);
1502 return;
1503}
1504
1505int
James Smart2e0fef82007-06-17 19:56:36 -05001506lpfc_issue_els_logo(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
dea31012005-04-17 16:05:31 -05001507 uint8_t retry)
1508{
James Smart2e0fef82007-06-17 19:56:36 -05001509 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1510 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05001511 IOCB_t *icmd;
1512 struct lpfc_iocbq *elsiocb;
1513 struct lpfc_sli_ring *pring;
1514 struct lpfc_sli *psli;
1515 uint8_t *pcmd;
1516 uint16_t cmdsize;
James Smart92d7f7b2007-06-17 19:56:38 -05001517 int rc;
dea31012005-04-17 16:05:31 -05001518
1519 psli = &phba->sli;
1520 pring = &psli->ring[LPFC_ELS_RING];
1521
James Smart98c9ea52007-10-27 13:37:33 -04001522 spin_lock_irq(shost->host_lock);
1523 if (ndlp->nlp_flag & NLP_LOGO_SND) {
1524 spin_unlock_irq(shost->host_lock);
1525 return 0;
1526 }
1527 spin_unlock_irq(shost->host_lock);
1528
James Smart92d7f7b2007-06-17 19:56:38 -05001529 cmdsize = (2 * sizeof(uint32_t)) + sizeof(struct lpfc_name);
James Smart2e0fef82007-06-17 19:56:36 -05001530 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
1531 ndlp->nlp_DID, ELS_CMD_LOGO);
James Smart488d1462006-03-07 15:02:37 -05001532 if (!elsiocb)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001533 return 1;
dea31012005-04-17 16:05:31 -05001534
1535 icmd = &elsiocb->iocb;
1536 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
1537 *((uint32_t *) (pcmd)) = ELS_CMD_LOGO;
James Smart92d7f7b2007-06-17 19:56:38 -05001538 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05001539
1540 /* Fill in LOGO payload */
James Smart2e0fef82007-06-17 19:56:36 -05001541 *((uint32_t *) (pcmd)) = be32_to_cpu(vport->fc_myDID);
James Smart92d7f7b2007-06-17 19:56:38 -05001542 pcmd += sizeof(uint32_t);
1543 memcpy(pcmd, &vport->fc_portname, sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -05001544
James Smart858c9f62007-06-17 19:56:39 -05001545 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
1546 "Issue LOGO: did:x%x",
1547 ndlp->nlp_DID, 0, 0);
1548
dea31012005-04-17 16:05:31 -05001549 phba->fc_stat.elsXmitLOGO++;
1550 elsiocb->iocb_cmpl = lpfc_cmpl_els_logo;
James Smart2e0fef82007-06-17 19:56:36 -05001551 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001552 ndlp->nlp_flag |= NLP_LOGO_SND;
James Smart2e0fef82007-06-17 19:56:36 -05001553 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05001554 rc = lpfc_sli_issue_iocb(phba, pring, elsiocb, 0);
1555
1556 if (rc == IOCB_ERROR) {
James Smart2e0fef82007-06-17 19:56:36 -05001557 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001558 ndlp->nlp_flag &= ~NLP_LOGO_SND;
James Smart2e0fef82007-06-17 19:56:36 -05001559 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001560 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001561 return 1;
dea31012005-04-17 16:05:31 -05001562 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001563 return 0;
dea31012005-04-17 16:05:31 -05001564}
1565
1566static void
James Smart2e0fef82007-06-17 19:56:36 -05001567lpfc_cmpl_els_cmd(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
1568 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05001569{
James Smart2e0fef82007-06-17 19:56:36 -05001570 struct lpfc_vport *vport = cmdiocb->vport;
dea31012005-04-17 16:05:31 -05001571 IOCB_t *irsp;
1572
1573 irsp = &rspiocb->iocb;
1574
James Smart858c9f62007-06-17 19:56:39 -05001575 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
1576 "ELS cmd cmpl: status:x%x/x%x did:x%x",
1577 irsp->ulpStatus, irsp->un.ulpWord[4],
1578 irsp->un.elsreq64.remoteID);
dea31012005-04-17 16:05:31 -05001579 /* ELS cmd tag <ulpIoTag> completes */
James Smarte8b62012007-08-02 11:10:09 -04001580 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
1581 "0106 ELS cmd tag x%x completes Data: x%x x%x x%x\n",
1582 irsp->ulpIoTag, irsp->ulpStatus,
1583 irsp->un.ulpWord[4], irsp->ulpTimeout);
dea31012005-04-17 16:05:31 -05001584 /* Check to see if link went down during discovery */
James Smart2e0fef82007-06-17 19:56:36 -05001585 lpfc_els_chk_latt(vport);
dea31012005-04-17 16:05:31 -05001586 lpfc_els_free_iocb(phba, cmdiocb);
1587 return;
1588}
1589
1590int
James Smart2e0fef82007-06-17 19:56:36 -05001591lpfc_issue_els_scr(struct lpfc_vport *vport, uint32_t nportid, uint8_t retry)
dea31012005-04-17 16:05:31 -05001592{
James Smart2e0fef82007-06-17 19:56:36 -05001593 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05001594 IOCB_t *icmd;
1595 struct lpfc_iocbq *elsiocb;
1596 struct lpfc_sli_ring *pring;
1597 struct lpfc_sli *psli;
1598 uint8_t *pcmd;
1599 uint16_t cmdsize;
1600 struct lpfc_nodelist *ndlp;
1601
1602 psli = &phba->sli;
1603 pring = &psli->ring[LPFC_ELS_RING]; /* ELS ring */
James Smart92d7f7b2007-06-17 19:56:38 -05001604 cmdsize = (sizeof(uint32_t) + sizeof(SCR));
dea31012005-04-17 16:05:31 -05001605
James Smarte47c9092008-02-08 18:49:26 -05001606 ndlp = lpfc_findnode_did(vport, nportid);
1607 if (!ndlp) {
1608 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
1609 if (!ndlp)
1610 return 1;
1611 lpfc_nlp_init(vport, ndlp, nportid);
1612 lpfc_enqueue_node(vport, ndlp);
1613 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
1614 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
1615 if (!ndlp)
1616 return 1;
1617 }
dea31012005-04-17 16:05:31 -05001618
James Smart2e0fef82007-06-17 19:56:36 -05001619 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
1620 ndlp->nlp_DID, ELS_CMD_SCR);
1621
James Smart488d1462006-03-07 15:02:37 -05001622 if (!elsiocb) {
James Smartfa4066b2008-01-11 01:53:27 -05001623 /* This will trigger the release of the node just
1624 * allocated
1625 */
James Smart329f9bc2007-04-25 09:53:01 -04001626 lpfc_nlp_put(ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001627 return 1;
dea31012005-04-17 16:05:31 -05001628 }
1629
1630 icmd = &elsiocb->iocb;
1631 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
1632
1633 *((uint32_t *) (pcmd)) = ELS_CMD_SCR;
James Smart92d7f7b2007-06-17 19:56:38 -05001634 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05001635
1636 /* For SCR, remainder of payload is SCR parameter page */
James Smart92d7f7b2007-06-17 19:56:38 -05001637 memset(pcmd, 0, sizeof(SCR));
dea31012005-04-17 16:05:31 -05001638 ((SCR *) pcmd)->Function = SCR_FUNC_FULL;
1639
James Smart858c9f62007-06-17 19:56:39 -05001640 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
1641 "Issue SCR: did:x%x",
1642 ndlp->nlp_DID, 0, 0);
1643
dea31012005-04-17 16:05:31 -05001644 phba->fc_stat.elsXmitSCR++;
1645 elsiocb->iocb_cmpl = lpfc_cmpl_els_cmd;
dea31012005-04-17 16:05:31 -05001646 if (lpfc_sli_issue_iocb(phba, pring, elsiocb, 0) == IOCB_ERROR) {
James Smartfa4066b2008-01-11 01:53:27 -05001647 /* The additional lpfc_nlp_put will cause the following
1648 * lpfc_els_free_iocb routine to trigger the rlease of
1649 * the node.
1650 */
James Smart329f9bc2007-04-25 09:53:01 -04001651 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05001652 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001653 return 1;
dea31012005-04-17 16:05:31 -05001654 }
James Smartfa4066b2008-01-11 01:53:27 -05001655 /* This will cause the callback-function lpfc_cmpl_els_cmd to
1656 * trigger the release of node.
1657 */
James Smart329f9bc2007-04-25 09:53:01 -04001658 lpfc_nlp_put(ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001659 return 0;
dea31012005-04-17 16:05:31 -05001660}
1661
1662static int
James Smart2e0fef82007-06-17 19:56:36 -05001663lpfc_issue_els_farpr(struct lpfc_vport *vport, uint32_t nportid, uint8_t retry)
dea31012005-04-17 16:05:31 -05001664{
James Smart2e0fef82007-06-17 19:56:36 -05001665 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05001666 IOCB_t *icmd;
1667 struct lpfc_iocbq *elsiocb;
1668 struct lpfc_sli_ring *pring;
1669 struct lpfc_sli *psli;
1670 FARP *fp;
1671 uint8_t *pcmd;
1672 uint32_t *lp;
1673 uint16_t cmdsize;
1674 struct lpfc_nodelist *ondlp;
1675 struct lpfc_nodelist *ndlp;
1676
1677 psli = &phba->sli;
1678 pring = &psli->ring[LPFC_ELS_RING]; /* ELS ring */
James Smart92d7f7b2007-06-17 19:56:38 -05001679 cmdsize = (sizeof(uint32_t) + sizeof(FARP));
dea31012005-04-17 16:05:31 -05001680
James Smarte47c9092008-02-08 18:49:26 -05001681 ndlp = lpfc_findnode_did(vport, nportid);
1682 if (!ndlp) {
1683 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
1684 if (!ndlp)
1685 return 1;
1686 lpfc_nlp_init(vport, ndlp, nportid);
1687 lpfc_enqueue_node(vport, ndlp);
1688 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
1689 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
1690 if (!ndlp)
1691 return 1;
1692 }
James Smart2e0fef82007-06-17 19:56:36 -05001693
1694 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
1695 ndlp->nlp_DID, ELS_CMD_RNID);
James Smart488d1462006-03-07 15:02:37 -05001696 if (!elsiocb) {
James Smartfa4066b2008-01-11 01:53:27 -05001697 /* This will trigger the release of the node just
1698 * allocated
1699 */
James Smart329f9bc2007-04-25 09:53:01 -04001700 lpfc_nlp_put(ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001701 return 1;
dea31012005-04-17 16:05:31 -05001702 }
1703
1704 icmd = &elsiocb->iocb;
1705 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
1706
1707 *((uint32_t *) (pcmd)) = ELS_CMD_FARPR;
James Smart92d7f7b2007-06-17 19:56:38 -05001708 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05001709
1710 /* Fill in FARPR payload */
1711 fp = (FARP *) (pcmd);
James Smart92d7f7b2007-06-17 19:56:38 -05001712 memset(fp, 0, sizeof(FARP));
dea31012005-04-17 16:05:31 -05001713 lp = (uint32_t *) pcmd;
1714 *lp++ = be32_to_cpu(nportid);
James Smart2e0fef82007-06-17 19:56:36 -05001715 *lp++ = be32_to_cpu(vport->fc_myDID);
dea31012005-04-17 16:05:31 -05001716 fp->Rflags = 0;
1717 fp->Mflags = (FARP_MATCH_PORT | FARP_MATCH_NODE);
1718
James Smart92d7f7b2007-06-17 19:56:38 -05001719 memcpy(&fp->RportName, &vport->fc_portname, sizeof(struct lpfc_name));
1720 memcpy(&fp->RnodeName, &vport->fc_nodename, sizeof(struct lpfc_name));
James Smart2e0fef82007-06-17 19:56:36 -05001721 ondlp = lpfc_findnode_did(vport, nportid);
James Smarte47c9092008-02-08 18:49:26 -05001722 if (ondlp && NLP_CHK_NODE_ACT(ondlp)) {
dea31012005-04-17 16:05:31 -05001723 memcpy(&fp->OportName, &ondlp->nlp_portname,
James Smart92d7f7b2007-06-17 19:56:38 -05001724 sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -05001725 memcpy(&fp->OnodeName, &ondlp->nlp_nodename,
James Smart92d7f7b2007-06-17 19:56:38 -05001726 sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -05001727 }
1728
James Smart858c9f62007-06-17 19:56:39 -05001729 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
1730 "Issue FARPR: did:x%x",
1731 ndlp->nlp_DID, 0, 0);
1732
dea31012005-04-17 16:05:31 -05001733 phba->fc_stat.elsXmitFARPR++;
1734 elsiocb->iocb_cmpl = lpfc_cmpl_els_cmd;
dea31012005-04-17 16:05:31 -05001735 if (lpfc_sli_issue_iocb(phba, pring, elsiocb, 0) == IOCB_ERROR) {
James Smartfa4066b2008-01-11 01:53:27 -05001736 /* The additional lpfc_nlp_put will cause the following
1737 * lpfc_els_free_iocb routine to trigger the release of
1738 * the node.
1739 */
James Smart329f9bc2007-04-25 09:53:01 -04001740 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05001741 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001742 return 1;
dea31012005-04-17 16:05:31 -05001743 }
James Smartfa4066b2008-01-11 01:53:27 -05001744 /* This will cause the callback-function lpfc_cmpl_els_cmd to
1745 * trigger the release of the node.
1746 */
James Smart329f9bc2007-04-25 09:53:01 -04001747 lpfc_nlp_put(ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001748 return 0;
dea31012005-04-17 16:05:31 -05001749}
1750
1751void
James Smart2e0fef82007-06-17 19:56:36 -05001752lpfc_cancel_retry_delay_tmo(struct lpfc_vport *vport, struct lpfc_nodelist *nlp)
James Smartfdcebe22006-03-07 15:04:01 -05001753{
James Smart2e0fef82007-06-17 19:56:36 -05001754 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smarte47c9092008-02-08 18:49:26 -05001755 struct lpfc_work_evt *evtp;
James Smart2e0fef82007-06-17 19:56:36 -05001756
1757 spin_lock_irq(shost->host_lock);
James Smartfdcebe22006-03-07 15:04:01 -05001758 nlp->nlp_flag &= ~NLP_DELAY_TMO;
James Smart2e0fef82007-06-17 19:56:36 -05001759 spin_unlock_irq(shost->host_lock);
James Smartfdcebe22006-03-07 15:04:01 -05001760 del_timer_sync(&nlp->nlp_delayfunc);
1761 nlp->nlp_last_elscmd = 0;
1762
James Smarte47c9092008-02-08 18:49:26 -05001763 if (!list_empty(&nlp->els_retry_evt.evt_listp)) {
James Smartfdcebe22006-03-07 15:04:01 -05001764 list_del_init(&nlp->els_retry_evt.evt_listp);
James Smarte47c9092008-02-08 18:49:26 -05001765 /* Decrement nlp reference count held for the delayed retry */
1766 evtp = &nlp->els_retry_evt;
1767 lpfc_nlp_put((struct lpfc_nodelist *)evtp->evt_arg1);
1768 }
James Smartfdcebe22006-03-07 15:04:01 -05001769
1770 if (nlp->nlp_flag & NLP_NPR_2B_DISC) {
James Smart2e0fef82007-06-17 19:56:36 -05001771 spin_lock_irq(shost->host_lock);
James Smartfdcebe22006-03-07 15:04:01 -05001772 nlp->nlp_flag &= ~NLP_NPR_2B_DISC;
James Smart2e0fef82007-06-17 19:56:36 -05001773 spin_unlock_irq(shost->host_lock);
1774 if (vport->num_disc_nodes) {
James Smartfdcebe22006-03-07 15:04:01 -05001775 /* Check to see if there are more
1776 * PLOGIs to be sent
1777 */
James Smart2e0fef82007-06-17 19:56:36 -05001778 lpfc_more_plogi(vport);
James Smartfdcebe22006-03-07 15:04:01 -05001779
James Smart2e0fef82007-06-17 19:56:36 -05001780 if (vport->num_disc_nodes == 0) {
1781 spin_lock_irq(shost->host_lock);
1782 vport->fc_flag &= ~FC_NDISC_ACTIVE;
1783 spin_unlock_irq(shost->host_lock);
1784 lpfc_can_disctmo(vport);
James Smarted957682007-06-17 19:56:37 -05001785 lpfc_end_rscn(vport);
James Smartfdcebe22006-03-07 15:04:01 -05001786 }
1787 }
1788 }
1789 return;
1790}
1791
1792void
dea31012005-04-17 16:05:31 -05001793lpfc_els_retry_delay(unsigned long ptr)
1794{
James Smart2e0fef82007-06-17 19:56:36 -05001795 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) ptr;
1796 struct lpfc_vport *vport = ndlp->vport;
James Smart2e0fef82007-06-17 19:56:36 -05001797 struct lpfc_hba *phba = vport->phba;
James Smart92d7f7b2007-06-17 19:56:38 -05001798 unsigned long flags;
James Smart2e0fef82007-06-17 19:56:36 -05001799 struct lpfc_work_evt *evtp = &ndlp->els_retry_evt;
dea31012005-04-17 16:05:31 -05001800
James Smart2e0fef82007-06-17 19:56:36 -05001801 ndlp = (struct lpfc_nodelist *) ptr;
1802 phba = ndlp->vport->phba;
dea31012005-04-17 16:05:31 -05001803 evtp = &ndlp->els_retry_evt;
1804
James Smart92d7f7b2007-06-17 19:56:38 -05001805 spin_lock_irqsave(&phba->hbalock, flags);
dea31012005-04-17 16:05:31 -05001806 if (!list_empty(&evtp->evt_listp)) {
James Smart92d7f7b2007-06-17 19:56:38 -05001807 spin_unlock_irqrestore(&phba->hbalock, flags);
dea31012005-04-17 16:05:31 -05001808 return;
1809 }
1810
James Smartfa4066b2008-01-11 01:53:27 -05001811 /* We need to hold the node by incrementing the reference
1812 * count until the queued work is done
1813 */
1814 evtp->evt_arg1 = lpfc_nlp_get(ndlp);
dea31012005-04-17 16:05:31 -05001815 evtp->evt = LPFC_EVT_ELS_RETRY;
1816 list_add_tail(&evtp->evt_listp, &phba->work_list);
1817 if (phba->work_wait)
James Smart92d7f7b2007-06-17 19:56:38 -05001818 lpfc_worker_wake_up(phba);
dea31012005-04-17 16:05:31 -05001819
James Smart92d7f7b2007-06-17 19:56:38 -05001820 spin_unlock_irqrestore(&phba->hbalock, flags);
dea31012005-04-17 16:05:31 -05001821 return;
1822}
1823
1824void
1825lpfc_els_retry_delay_handler(struct lpfc_nodelist *ndlp)
1826{
James Smart2e0fef82007-06-17 19:56:36 -05001827 struct lpfc_vport *vport = ndlp->vport;
1828 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1829 uint32_t cmd, did, retry;
dea31012005-04-17 16:05:31 -05001830
James Smart2e0fef82007-06-17 19:56:36 -05001831 spin_lock_irq(shost->host_lock);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001832 did = ndlp->nlp_DID;
1833 cmd = ndlp->nlp_last_elscmd;
1834 ndlp->nlp_last_elscmd = 0;
dea31012005-04-17 16:05:31 -05001835
1836 if (!(ndlp->nlp_flag & NLP_DELAY_TMO)) {
James Smart2e0fef82007-06-17 19:56:36 -05001837 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001838 return;
1839 }
1840
1841 ndlp->nlp_flag &= ~NLP_DELAY_TMO;
James Smart2e0fef82007-06-17 19:56:36 -05001842 spin_unlock_irq(shost->host_lock);
James Smart1a169682006-03-07 15:04:06 -05001843 /*
1844 * If a discovery event readded nlp_delayfunc after timer
1845 * firing and before processing the timer, cancel the
1846 * nlp_delayfunc.
1847 */
1848 del_timer_sync(&ndlp->nlp_delayfunc);
dea31012005-04-17 16:05:31 -05001849 retry = ndlp->nlp_retry;
1850
1851 switch (cmd) {
1852 case ELS_CMD_FLOGI:
James Smart2e0fef82007-06-17 19:56:36 -05001853 lpfc_issue_els_flogi(vport, ndlp, retry);
dea31012005-04-17 16:05:31 -05001854 break;
1855 case ELS_CMD_PLOGI:
James Smart2e0fef82007-06-17 19:56:36 -05001856 if (!lpfc_issue_els_plogi(vport, ndlp->nlp_DID, retry)) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001857 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05001858 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
Jamie Wellnitz6ad42532006-02-28 19:25:16 -05001859 }
dea31012005-04-17 16:05:31 -05001860 break;
1861 case ELS_CMD_ADISC:
James Smart2e0fef82007-06-17 19:56:36 -05001862 if (!lpfc_issue_els_adisc(vport, ndlp, retry)) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001863 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05001864 lpfc_nlp_set_state(vport, ndlp, NLP_STE_ADISC_ISSUE);
Jamie Wellnitz6ad42532006-02-28 19:25:16 -05001865 }
dea31012005-04-17 16:05:31 -05001866 break;
1867 case ELS_CMD_PRLI:
James Smart2e0fef82007-06-17 19:56:36 -05001868 if (!lpfc_issue_els_prli(vport, ndlp, retry)) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001869 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05001870 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PRLI_ISSUE);
Jamie Wellnitz6ad42532006-02-28 19:25:16 -05001871 }
dea31012005-04-17 16:05:31 -05001872 break;
1873 case ELS_CMD_LOGO:
James Smart2e0fef82007-06-17 19:56:36 -05001874 if (!lpfc_issue_els_logo(vport, ndlp, retry)) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05001875 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05001876 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
Jamie Wellnitz6ad42532006-02-28 19:25:16 -05001877 }
dea31012005-04-17 16:05:31 -05001878 break;
James Smart92d7f7b2007-06-17 19:56:38 -05001879 case ELS_CMD_FDISC:
1880 lpfc_issue_els_fdisc(vport, ndlp, retry);
1881 break;
dea31012005-04-17 16:05:31 -05001882 }
1883 return;
1884}
1885
1886static int
James Smart2e0fef82007-06-17 19:56:36 -05001887lpfc_els_retry(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
1888 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05001889{
James Smart2e0fef82007-06-17 19:56:36 -05001890 struct lpfc_vport *vport = cmdiocb->vport;
1891 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1892 IOCB_t *irsp = &rspiocb->iocb;
1893 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
1894 struct lpfc_dmabuf *pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
dea31012005-04-17 16:05:31 -05001895 uint32_t *elscmd;
1896 struct ls_rjt stat;
James Smart2e0fef82007-06-17 19:56:36 -05001897 int retry = 0, maxretry = lpfc_max_els_tries, delay = 0;
James Smart98c9ea52007-10-27 13:37:33 -04001898 int logerr = 0;
James Smart2e0fef82007-06-17 19:56:36 -05001899 uint32_t cmd = 0;
James Smart488d1462006-03-07 15:02:37 -05001900 uint32_t did;
dea31012005-04-17 16:05:31 -05001901
James Smart488d1462006-03-07 15:02:37 -05001902
dea31012005-04-17 16:05:31 -05001903 /* Note: context2 may be 0 for internal driver abort
1904 * of delays ELS command.
1905 */
1906
1907 if (pcmd && pcmd->virt) {
1908 elscmd = (uint32_t *) (pcmd->virt);
1909 cmd = *elscmd++;
1910 }
1911
James Smarte47c9092008-02-08 18:49:26 -05001912 if (ndlp && NLP_CHK_NODE_ACT(ndlp))
James Smart488d1462006-03-07 15:02:37 -05001913 did = ndlp->nlp_DID;
1914 else {
1915 /* We should only hit this case for retrying PLOGI */
1916 did = irsp->un.elsreq64.remoteID;
James Smart2e0fef82007-06-17 19:56:36 -05001917 ndlp = lpfc_findnode_did(vport, did);
James Smarte47c9092008-02-08 18:49:26 -05001918 if ((!ndlp || !NLP_CHK_NODE_ACT(ndlp))
1919 && (cmd != ELS_CMD_PLOGI))
James Smart488d1462006-03-07 15:02:37 -05001920 return 1;
1921 }
1922
James Smart858c9f62007-06-17 19:56:39 -05001923 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
1924 "Retry ELS: wd7:x%x wd4:x%x did:x%x",
1925 *(((uint32_t *) irsp) + 7), irsp->un.ulpWord[4], ndlp->nlp_DID);
1926
dea31012005-04-17 16:05:31 -05001927 switch (irsp->ulpStatus) {
1928 case IOSTAT_FCP_RSP_ERROR:
1929 case IOSTAT_REMOTE_STOP:
1930 break;
1931
1932 case IOSTAT_LOCAL_REJECT:
1933 switch ((irsp->un.ulpWord[4] & 0xff)) {
1934 case IOERR_LOOP_OPEN_FAILURE:
James Smart2e0fef82007-06-17 19:56:36 -05001935 if (cmd == ELS_CMD_PLOGI && cmdiocb->retry == 0)
James Smart92d7f7b2007-06-17 19:56:38 -05001936 delay = 1000;
dea31012005-04-17 16:05:31 -05001937 retry = 1;
1938 break;
1939
James Smart92d7f7b2007-06-17 19:56:38 -05001940 case IOERR_ILLEGAL_COMMAND:
James Smart7f5f3d02008-02-08 18:50:14 -05001941 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
1942 "0124 Retry illegal cmd x%x "
1943 "retry:x%x delay:x%x\n",
1944 cmd, cmdiocb->retry, delay);
1945 retry = 1;
1946 /* All command's retry policy */
1947 maxretry = 8;
1948 if (cmdiocb->retry > 2)
1949 delay = 1000;
James Smart92d7f7b2007-06-17 19:56:38 -05001950 break;
1951
dea31012005-04-17 16:05:31 -05001952 case IOERR_NO_RESOURCES:
James Smart98c9ea52007-10-27 13:37:33 -04001953 logerr = 1; /* HBA out of resources */
James Smart858c9f62007-06-17 19:56:39 -05001954 retry = 1;
1955 if (cmdiocb->retry > 100)
1956 delay = 100;
1957 maxretry = 250;
1958 break;
1959
1960 case IOERR_ILLEGAL_FRAME:
James Smart92d7f7b2007-06-17 19:56:38 -05001961 delay = 100;
dea31012005-04-17 16:05:31 -05001962 retry = 1;
1963 break;
1964
James Smart858c9f62007-06-17 19:56:39 -05001965 case IOERR_SEQUENCE_TIMEOUT:
dea31012005-04-17 16:05:31 -05001966 case IOERR_INVALID_RPI:
1967 retry = 1;
1968 break;
1969 }
1970 break;
1971
1972 case IOSTAT_NPORT_RJT:
1973 case IOSTAT_FABRIC_RJT:
1974 if (irsp->un.ulpWord[4] & RJT_UNAVAIL_TEMP) {
1975 retry = 1;
1976 break;
1977 }
1978 break;
1979
1980 case IOSTAT_NPORT_BSY:
1981 case IOSTAT_FABRIC_BSY:
James Smart98c9ea52007-10-27 13:37:33 -04001982 logerr = 1; /* Fabric / Remote NPort out of resources */
dea31012005-04-17 16:05:31 -05001983 retry = 1;
1984 break;
1985
1986 case IOSTAT_LS_RJT:
1987 stat.un.lsRjtError = be32_to_cpu(irsp->un.ulpWord[4]);
1988 /* Added for Vendor specifc support
1989 * Just keep retrying for these Rsn / Exp codes
1990 */
1991 switch (stat.un.b.lsRjtRsnCode) {
1992 case LSRJT_UNABLE_TPC:
1993 if (stat.un.b.lsRjtRsnCodeExp ==
1994 LSEXP_CMD_IN_PROGRESS) {
1995 if (cmd == ELS_CMD_PLOGI) {
James Smart92d7f7b2007-06-17 19:56:38 -05001996 delay = 1000;
dea31012005-04-17 16:05:31 -05001997 maxretry = 48;
1998 }
1999 retry = 1;
2000 break;
2001 }
2002 if (cmd == ELS_CMD_PLOGI) {
James Smart92d7f7b2007-06-17 19:56:38 -05002003 delay = 1000;
dea31012005-04-17 16:05:31 -05002004 maxretry = lpfc_max_els_tries + 1;
2005 retry = 1;
2006 break;
2007 }
James Smart92d7f7b2007-06-17 19:56:38 -05002008 if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
2009 (cmd == ELS_CMD_FDISC) &&
2010 (stat.un.b.lsRjtRsnCodeExp == LSEXP_OUT_OF_RESOURCE)){
James Smarte8b62012007-08-02 11:10:09 -04002011 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
2012 "0125 FDISC Failed (x%x). "
2013 "Fabric out of resources\n",
2014 stat.un.lsRjtError);
James Smart92d7f7b2007-06-17 19:56:38 -05002015 lpfc_vport_set_state(vport,
2016 FC_VPORT_NO_FABRIC_RSCS);
2017 }
dea31012005-04-17 16:05:31 -05002018 break;
2019
2020 case LSRJT_LOGICAL_BSY:
James Smart858c9f62007-06-17 19:56:39 -05002021 if ((cmd == ELS_CMD_PLOGI) ||
2022 (cmd == ELS_CMD_PRLI)) {
James Smart92d7f7b2007-06-17 19:56:38 -05002023 delay = 1000;
dea31012005-04-17 16:05:31 -05002024 maxretry = 48;
James Smart92d7f7b2007-06-17 19:56:38 -05002025 } else if (cmd == ELS_CMD_FDISC) {
James Smart51ef4c22007-08-02 11:10:31 -04002026 /* FDISC retry policy */
2027 maxretry = 48;
2028 if (cmdiocb->retry >= 32)
2029 delay = 1000;
dea31012005-04-17 16:05:31 -05002030 }
2031 retry = 1;
2032 break;
James Smart92d7f7b2007-06-17 19:56:38 -05002033
2034 case LSRJT_LOGICAL_ERR:
James Smart7f5f3d02008-02-08 18:50:14 -05002035 /* There are some cases where switches return this
2036 * error when they are not ready and should be returning
2037 * Logical Busy. We should delay every time.
2038 */
2039 if (cmd == ELS_CMD_FDISC &&
2040 stat.un.b.lsRjtRsnCodeExp == LSEXP_PORT_LOGIN_REQ) {
2041 maxretry = 3;
2042 delay = 1000;
2043 retry = 1;
2044 break;
2045 }
James Smart92d7f7b2007-06-17 19:56:38 -05002046 case LSRJT_PROTOCOL_ERR:
2047 if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
2048 (cmd == ELS_CMD_FDISC) &&
2049 ((stat.un.b.lsRjtRsnCodeExp == LSEXP_INVALID_PNAME) ||
2050 (stat.un.b.lsRjtRsnCodeExp == LSEXP_INVALID_NPORT_ID))
2051 ) {
James Smarte8b62012007-08-02 11:10:09 -04002052 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
2053 "0123 FDISC Failed (x%x). "
2054 "Fabric Detected Bad WWN\n",
2055 stat.un.lsRjtError);
James Smart92d7f7b2007-06-17 19:56:38 -05002056 lpfc_vport_set_state(vport,
2057 FC_VPORT_FABRIC_REJ_WWN);
2058 }
2059 break;
dea31012005-04-17 16:05:31 -05002060 }
2061 break;
2062
2063 case IOSTAT_INTERMED_RSP:
2064 case IOSTAT_BA_RJT:
2065 break;
2066
2067 default:
2068 break;
2069 }
2070
James Smart488d1462006-03-07 15:02:37 -05002071 if (did == FDMI_DID)
dea31012005-04-17 16:05:31 -05002072 retry = 1;
dea31012005-04-17 16:05:31 -05002073
James Smart98c9ea52007-10-27 13:37:33 -04002074 if ((cmd == ELS_CMD_FLOGI) &&
James Smart1b32f6a2008-02-08 18:49:39 -05002075 (phba->fc_topology != TOPOLOGY_LOOP) &&
2076 !lpfc_error_lost_link(irsp)) {
James Smart98c9ea52007-10-27 13:37:33 -04002077 /* FLOGI retry policy */
2078 retry = 1;
2079 maxretry = 48;
2080 if (cmdiocb->retry >= 32)
2081 delay = 1000;
2082 }
2083
dea31012005-04-17 16:05:31 -05002084 if ((++cmdiocb->retry) >= maxretry) {
2085 phba->fc_stat.elsRetryExceeded++;
2086 retry = 0;
2087 }
2088
James Smarted957682007-06-17 19:56:37 -05002089 if ((vport->load_flag & FC_UNLOADING) != 0)
2090 retry = 0;
2091
dea31012005-04-17 16:05:31 -05002092 if (retry) {
2093
2094 /* Retry ELS command <elsCmd> to remote NPORT <did> */
James Smarte8b62012007-08-02 11:10:09 -04002095 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
2096 "0107 Retry ELS command x%x to remote "
2097 "NPORT x%x Data: x%x x%x\n",
2098 cmd, did, cmdiocb->retry, delay);
dea31012005-04-17 16:05:31 -05002099
James Smart858c9f62007-06-17 19:56:39 -05002100 if (((cmd == ELS_CMD_PLOGI) || (cmd == ELS_CMD_ADISC)) &&
2101 ((irsp->ulpStatus != IOSTAT_LOCAL_REJECT) ||
2102 ((irsp->un.ulpWord[4] & 0xff) != IOERR_NO_RESOURCES))) {
2103 /* Don't reset timer for no resources */
2104
dea31012005-04-17 16:05:31 -05002105 /* If discovery / RSCN timer is running, reset it */
James Smart2e0fef82007-06-17 19:56:36 -05002106 if (timer_pending(&vport->fc_disctmo) ||
James Smart92d7f7b2007-06-17 19:56:38 -05002107 (vport->fc_flag & FC_RSCN_MODE))
James Smart2e0fef82007-06-17 19:56:36 -05002108 lpfc_set_disctmo(vport);
dea31012005-04-17 16:05:31 -05002109 }
2110
2111 phba->fc_stat.elsXmitRetry++;
James Smart58da1ff2008-04-07 10:15:56 -04002112 if (ndlp && NLP_CHK_NODE_ACT(ndlp) && delay) {
dea31012005-04-17 16:05:31 -05002113 phba->fc_stat.elsDelayRetry++;
2114 ndlp->nlp_retry = cmdiocb->retry;
2115
James Smart92d7f7b2007-06-17 19:56:38 -05002116 /* delay is specified in milliseconds */
2117 mod_timer(&ndlp->nlp_delayfunc,
2118 jiffies + msecs_to_jiffies(delay));
James Smart2e0fef82007-06-17 19:56:36 -05002119 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002120 ndlp->nlp_flag |= NLP_DELAY_TMO;
James Smart2e0fef82007-06-17 19:56:36 -05002121 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002122
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05002123 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart858c9f62007-06-17 19:56:39 -05002124 if (cmd == ELS_CMD_PRLI)
2125 lpfc_nlp_set_state(vport, ndlp,
2126 NLP_STE_REG_LOGIN_ISSUE);
2127 else
2128 lpfc_nlp_set_state(vport, ndlp,
2129 NLP_STE_NPR_NODE);
dea31012005-04-17 16:05:31 -05002130 ndlp->nlp_last_elscmd = cmd;
2131
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002132 return 1;
dea31012005-04-17 16:05:31 -05002133 }
2134 switch (cmd) {
2135 case ELS_CMD_FLOGI:
James Smart2e0fef82007-06-17 19:56:36 -05002136 lpfc_issue_els_flogi(vport, ndlp, cmdiocb->retry);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002137 return 1;
James Smart92d7f7b2007-06-17 19:56:38 -05002138 case ELS_CMD_FDISC:
2139 lpfc_issue_els_fdisc(vport, ndlp, cmdiocb->retry);
2140 return 1;
dea31012005-04-17 16:05:31 -05002141 case ELS_CMD_PLOGI:
James Smart58da1ff2008-04-07 10:15:56 -04002142 if (ndlp && NLP_CHK_NODE_ACT(ndlp)) {
James Smart488d1462006-03-07 15:02:37 -05002143 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05002144 lpfc_nlp_set_state(vport, ndlp,
James Smartde0c5b32007-04-25 09:52:27 -04002145 NLP_STE_PLOGI_ISSUE);
James Smart488d1462006-03-07 15:02:37 -05002146 }
James Smart2e0fef82007-06-17 19:56:36 -05002147 lpfc_issue_els_plogi(vport, did, cmdiocb->retry);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002148 return 1;
dea31012005-04-17 16:05:31 -05002149 case ELS_CMD_ADISC:
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05002150 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05002151 lpfc_nlp_set_state(vport, ndlp, NLP_STE_ADISC_ISSUE);
2152 lpfc_issue_els_adisc(vport, ndlp, cmdiocb->retry);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002153 return 1;
dea31012005-04-17 16:05:31 -05002154 case ELS_CMD_PRLI:
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05002155 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05002156 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PRLI_ISSUE);
2157 lpfc_issue_els_prli(vport, ndlp, cmdiocb->retry);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002158 return 1;
dea31012005-04-17 16:05:31 -05002159 case ELS_CMD_LOGO:
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05002160 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05002161 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
2162 lpfc_issue_els_logo(vport, ndlp, cmdiocb->retry);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002163 return 1;
dea31012005-04-17 16:05:31 -05002164 }
2165 }
dea31012005-04-17 16:05:31 -05002166 /* No retry ELS command <elsCmd> to remote NPORT <did> */
James Smart98c9ea52007-10-27 13:37:33 -04002167 if (logerr) {
2168 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
2169 "0137 No retry ELS command x%x to remote "
2170 "NPORT x%x: Out of Resources: Error:x%x/%x\n",
2171 cmd, did, irsp->ulpStatus,
2172 irsp->un.ulpWord[4]);
2173 }
2174 else {
2175 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
James Smarta58cbd52007-08-02 11:09:43 -04002176 "0108 No retry ELS command x%x to remote "
2177 "NPORT x%x Retried:%d Error:x%x/%x\n",
2178 cmd, did, cmdiocb->retry, irsp->ulpStatus,
2179 irsp->un.ulpWord[4]);
James Smart98c9ea52007-10-27 13:37:33 -04002180 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002181 return 0;
dea31012005-04-17 16:05:31 -05002182}
2183
James Smart09372822008-01-11 01:52:54 -05002184static int
James Smart87af33f2007-10-27 13:37:43 -04002185lpfc_els_free_data(struct lpfc_hba *phba, struct lpfc_dmabuf *buf_ptr1)
2186{
2187 struct lpfc_dmabuf *buf_ptr;
2188
2189 /* Free the response before processing the command. */
2190 if (!list_empty(&buf_ptr1->list)) {
2191 list_remove_head(&buf_ptr1->list, buf_ptr,
2192 struct lpfc_dmabuf,
2193 list);
2194 lpfc_mbuf_free(phba, buf_ptr->virt, buf_ptr->phys);
2195 kfree(buf_ptr);
2196 }
2197 lpfc_mbuf_free(phba, buf_ptr1->virt, buf_ptr1->phys);
2198 kfree(buf_ptr1);
2199 return 0;
2200}
2201
James Smart09372822008-01-11 01:52:54 -05002202static int
James Smart87af33f2007-10-27 13:37:43 -04002203lpfc_els_free_bpl(struct lpfc_hba *phba, struct lpfc_dmabuf *buf_ptr)
2204{
2205 lpfc_mbuf_free(phba, buf_ptr->virt, buf_ptr->phys);
2206 kfree(buf_ptr);
2207 return 0;
2208}
2209
2210int
James Smart329f9bc2007-04-25 09:53:01 -04002211lpfc_els_free_iocb(struct lpfc_hba *phba, struct lpfc_iocbq *elsiocb)
dea31012005-04-17 16:05:31 -05002212{
2213 struct lpfc_dmabuf *buf_ptr, *buf_ptr1;
James Smarta8adb832007-10-27 13:37:53 -04002214 struct lpfc_nodelist *ndlp;
dea31012005-04-17 16:05:31 -05002215
James Smarta8adb832007-10-27 13:37:53 -04002216 ndlp = (struct lpfc_nodelist *)elsiocb->context1;
2217 if (ndlp) {
2218 if (ndlp->nlp_flag & NLP_DEFER_RM) {
2219 lpfc_nlp_put(ndlp);
2220
2221 /* If the ndlp is not being used by another discovery
2222 * thread, free it.
2223 */
2224 if (!lpfc_nlp_not_used(ndlp)) {
2225 /* If ndlp is being used by another discovery
2226 * thread, just clear NLP_DEFER_RM
2227 */
2228 ndlp->nlp_flag &= ~NLP_DEFER_RM;
2229 }
2230 }
2231 else
2232 lpfc_nlp_put(ndlp);
James Smart329f9bc2007-04-25 09:53:01 -04002233 elsiocb->context1 = NULL;
2234 }
dea31012005-04-17 16:05:31 -05002235 /* context2 = cmd, context2->next = rsp, context3 = bpl */
2236 if (elsiocb->context2) {
James Smart0ff10d42008-01-11 01:52:36 -05002237 if (elsiocb->iocb_flag & LPFC_DELAY_MEM_FREE) {
2238 /* Firmware could still be in progress of DMAing
2239 * payload, so don't free data buffer till after
2240 * a hbeat.
2241 */
2242 elsiocb->iocb_flag &= ~LPFC_DELAY_MEM_FREE;
2243 buf_ptr = elsiocb->context2;
2244 elsiocb->context2 = NULL;
2245 if (buf_ptr) {
2246 buf_ptr1 = NULL;
2247 spin_lock_irq(&phba->hbalock);
2248 if (!list_empty(&buf_ptr->list)) {
2249 list_remove_head(&buf_ptr->list,
2250 buf_ptr1, struct lpfc_dmabuf,
2251 list);
2252 INIT_LIST_HEAD(&buf_ptr1->list);
2253 list_add_tail(&buf_ptr1->list,
2254 &phba->elsbuf);
2255 phba->elsbuf_cnt++;
2256 }
2257 INIT_LIST_HEAD(&buf_ptr->list);
2258 list_add_tail(&buf_ptr->list, &phba->elsbuf);
2259 phba->elsbuf_cnt++;
2260 spin_unlock_irq(&phba->hbalock);
2261 }
2262 } else {
2263 buf_ptr1 = (struct lpfc_dmabuf *) elsiocb->context2;
2264 lpfc_els_free_data(phba, buf_ptr1);
2265 }
dea31012005-04-17 16:05:31 -05002266 }
2267
2268 if (elsiocb->context3) {
2269 buf_ptr = (struct lpfc_dmabuf *) elsiocb->context3;
James Smart87af33f2007-10-27 13:37:43 -04002270 lpfc_els_free_bpl(phba, buf_ptr);
dea31012005-04-17 16:05:31 -05002271 }
James Bottomley604a3e32005-10-29 10:28:33 -05002272 lpfc_sli_release_iocbq(phba, elsiocb);
dea31012005-04-17 16:05:31 -05002273 return 0;
2274}
2275
2276static void
James Smart2e0fef82007-06-17 19:56:36 -05002277lpfc_cmpl_els_logo_acc(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
2278 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05002279{
James Smart2e0fef82007-06-17 19:56:36 -05002280 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
2281 struct lpfc_vport *vport = cmdiocb->vport;
James Smart858c9f62007-06-17 19:56:39 -05002282 IOCB_t *irsp;
2283
2284 irsp = &rspiocb->iocb;
2285 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
2286 "ACC LOGO cmpl: status:x%x/x%x did:x%x",
2287 irsp->ulpStatus, irsp->un.ulpWord[4], ndlp->nlp_DID);
dea31012005-04-17 16:05:31 -05002288 /* ACC to LOGO completes to NPort <nlp_DID> */
James Smarte8b62012007-08-02 11:10:09 -04002289 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
2290 "0109 ACC to LOGO completes to NPort x%x "
2291 "Data: x%x x%x x%x\n",
2292 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
2293 ndlp->nlp_rpi);
James Smart87af33f2007-10-27 13:37:43 -04002294
2295 if (ndlp->nlp_state == NLP_STE_NPR_NODE) {
2296 /* NPort Recovery mode or node is just allocated */
2297 if (!lpfc_nlp_not_used(ndlp)) {
2298 /* If the ndlp is being used by another discovery
2299 * thread, just unregister the RPI.
2300 */
2301 lpfc_unreg_rpi(vport, ndlp);
James Smartfa4066b2008-01-11 01:53:27 -05002302 } else {
2303 /* Indicate the node has already released, should
2304 * not reference to it from within lpfc_els_free_iocb.
2305 */
2306 cmdiocb->context1 = NULL;
James Smart87af33f2007-10-27 13:37:43 -04002307 }
dea31012005-04-17 16:05:31 -05002308 }
2309 lpfc_els_free_iocb(phba, cmdiocb);
2310 return;
2311}
2312
James Smart858c9f62007-06-17 19:56:39 -05002313void
2314lpfc_mbx_cmpl_dflt_rpi(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
2315{
2316 struct lpfc_dmabuf *mp = (struct lpfc_dmabuf *) (pmb->context1);
2317 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) pmb->context2;
2318
2319 pmb->context1 = NULL;
2320 lpfc_mbuf_free(phba, mp->virt, mp->phys);
2321 kfree(mp);
2322 mempool_free(pmb, phba->mbox_mem_pool);
James Smart58da1ff2008-04-07 10:15:56 -04002323 if (ndlp && NLP_CHK_NODE_ACT(ndlp)) {
James Smarta8adb832007-10-27 13:37:53 -04002324 lpfc_nlp_put(ndlp);
James Smarta8adb832007-10-27 13:37:53 -04002325 /* This is the end of the default RPI cleanup logic for this
2326 * ndlp. If no other discovery threads are using this ndlp.
2327 * we should free all resources associated with it.
2328 */
2329 lpfc_nlp_not_used(ndlp);
2330 }
James Smart858c9f62007-06-17 19:56:39 -05002331 return;
2332}
2333
dea31012005-04-17 16:05:31 -05002334static void
James Smart858c9f62007-06-17 19:56:39 -05002335lpfc_cmpl_els_rsp(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
James Smart329f9bc2007-04-25 09:53:01 -04002336 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05002337{
James Smart2e0fef82007-06-17 19:56:36 -05002338 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
2339 struct lpfc_vport *vport = ndlp ? ndlp->vport : NULL;
2340 struct Scsi_Host *shost = vport ? lpfc_shost_from_vport(vport) : NULL;
James Smart87af33f2007-10-27 13:37:43 -04002341 IOCB_t *irsp;
2342 uint8_t *pcmd;
dea31012005-04-17 16:05:31 -05002343 LPFC_MBOXQ_t *mbox = NULL;
James Smart2e0fef82007-06-17 19:56:36 -05002344 struct lpfc_dmabuf *mp = NULL;
James Smart87af33f2007-10-27 13:37:43 -04002345 uint32_t ls_rjt = 0;
dea31012005-04-17 16:05:31 -05002346
James Smart33ccf8d2006-08-17 11:57:58 -04002347 irsp = &rspiocb->iocb;
2348
dea31012005-04-17 16:05:31 -05002349 if (cmdiocb->context_un.mbox)
2350 mbox = cmdiocb->context_un.mbox;
2351
James Smartfa4066b2008-01-11 01:53:27 -05002352 /* First determine if this is a LS_RJT cmpl. Note, this callback
2353 * function can have cmdiocb->contest1 (ndlp) field set to NULL.
2354 */
James Smart87af33f2007-10-27 13:37:43 -04002355 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) cmdiocb->context2)->virt);
James Smart58da1ff2008-04-07 10:15:56 -04002356 if (ndlp && NLP_CHK_NODE_ACT(ndlp) &&
2357 (*((uint32_t *) (pcmd)) == ELS_CMD_LS_RJT)) {
James Smartfa4066b2008-01-11 01:53:27 -05002358 /* A LS_RJT associated with Default RPI cleanup has its own
2359 * seperate code path.
James Smart87af33f2007-10-27 13:37:43 -04002360 */
2361 if (!(ndlp->nlp_flag & NLP_RM_DFLT_RPI))
2362 ls_rjt = 1;
2363 }
2364
dea31012005-04-17 16:05:31 -05002365 /* Check to see if link went down during discovery */
James Smart58da1ff2008-04-07 10:15:56 -04002366 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp) || lpfc_els_chk_latt(vport)) {
dea31012005-04-17 16:05:31 -05002367 if (mbox) {
James Smart14691152006-12-02 13:34:28 -05002368 mp = (struct lpfc_dmabuf *) mbox->context1;
2369 if (mp) {
2370 lpfc_mbuf_free(phba, mp->virt, mp->phys);
2371 kfree(mp);
2372 }
James Smart329f9bc2007-04-25 09:53:01 -04002373 mempool_free(mbox, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -05002374 }
James Smart58da1ff2008-04-07 10:15:56 -04002375 if (ndlp && NLP_CHK_NODE_ACT(ndlp) &&
2376 (ndlp->nlp_flag & NLP_RM_DFLT_RPI))
James Smartfa4066b2008-01-11 01:53:27 -05002377 if (lpfc_nlp_not_used(ndlp)) {
James Smart98c9ea52007-10-27 13:37:33 -04002378 ndlp = NULL;
James Smartfa4066b2008-01-11 01:53:27 -05002379 /* Indicate the node has already released,
2380 * should not reference to it from within
2381 * the routine lpfc_els_free_iocb.
2382 */
2383 cmdiocb->context1 = NULL;
2384 }
dea31012005-04-17 16:05:31 -05002385 goto out;
2386 }
2387
James Smart858c9f62007-06-17 19:56:39 -05002388 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
James Smart51ef4c22007-08-02 11:10:31 -04002389 "ELS rsp cmpl: status:x%x/x%x did:x%x",
James Smart858c9f62007-06-17 19:56:39 -05002390 irsp->ulpStatus, irsp->un.ulpWord[4],
James Smart51ef4c22007-08-02 11:10:31 -04002391 cmdiocb->iocb.un.elsreq64.remoteID);
dea31012005-04-17 16:05:31 -05002392 /* ELS response tag <ulpIoTag> completes */
James Smarte8b62012007-08-02 11:10:09 -04002393 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
2394 "0110 ELS response tag x%x completes "
2395 "Data: x%x x%x x%x x%x x%x x%x x%x\n",
2396 cmdiocb->iocb.ulpIoTag, rspiocb->iocb.ulpStatus,
2397 rspiocb->iocb.un.ulpWord[4], rspiocb->iocb.ulpTimeout,
2398 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
2399 ndlp->nlp_rpi);
dea31012005-04-17 16:05:31 -05002400 if (mbox) {
2401 if ((rspiocb->iocb.ulpStatus == 0)
2402 && (ndlp->nlp_flag & NLP_ACC_REGLOGIN)) {
James Smart2e0fef82007-06-17 19:56:36 -05002403 lpfc_unreg_rpi(vport, ndlp);
James Smarte47c9092008-02-08 18:49:26 -05002404 /* Increment reference count to ndlp to hold the
2405 * reference to ndlp for the callback function.
2406 */
James Smart329f9bc2007-04-25 09:53:01 -04002407 mbox->context2 = lpfc_nlp_get(ndlp);
James Smart2e0fef82007-06-17 19:56:36 -05002408 mbox->vport = vport;
James Smart858c9f62007-06-17 19:56:39 -05002409 if (ndlp->nlp_flag & NLP_RM_DFLT_RPI) {
2410 mbox->mbox_flag |= LPFC_MBX_IMED_UNREG;
2411 mbox->mbox_cmpl = lpfc_mbx_cmpl_dflt_rpi;
2412 }
2413 else {
2414 mbox->mbox_cmpl = lpfc_mbx_cmpl_reg_login;
2415 ndlp->nlp_prev_state = ndlp->nlp_state;
2416 lpfc_nlp_set_state(vport, ndlp,
James Smart2e0fef82007-06-17 19:56:36 -05002417 NLP_STE_REG_LOGIN_ISSUE);
James Smart858c9f62007-06-17 19:56:39 -05002418 }
James Smart0b727fe2007-10-27 13:37:25 -04002419 if (lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT)
James Smarte47c9092008-02-08 18:49:26 -05002420 != MBX_NOT_FINISHED)
dea31012005-04-17 16:05:31 -05002421 goto out;
James Smarte47c9092008-02-08 18:49:26 -05002422 else
2423 /* Decrement the ndlp reference count we
2424 * set for this failed mailbox command.
2425 */
2426 lpfc_nlp_put(ndlp);
James Smart98c9ea52007-10-27 13:37:33 -04002427
2428 /* ELS rsp: Cannot issue reg_login for <NPortid> */
2429 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
2430 "0138 ELS rsp: Cannot issue reg_login for x%x "
2431 "Data: x%x x%x x%x\n",
2432 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
2433 ndlp->nlp_rpi);
2434
James Smartfa4066b2008-01-11 01:53:27 -05002435 if (lpfc_nlp_not_used(ndlp)) {
James Smart98c9ea52007-10-27 13:37:33 -04002436 ndlp = NULL;
James Smartfa4066b2008-01-11 01:53:27 -05002437 /* Indicate node has already been released,
2438 * should not reference to it from within
2439 * the routine lpfc_els_free_iocb.
2440 */
2441 cmdiocb->context1 = NULL;
2442 }
dea31012005-04-17 16:05:31 -05002443 } else {
James Smart858c9f62007-06-17 19:56:39 -05002444 /* Do not drop node for lpfc_els_abort'ed ELS cmds */
2445 if (!lpfc_error_lost_link(irsp) &&
2446 ndlp->nlp_flag & NLP_ACC_REGLOGIN) {
James Smartfa4066b2008-01-11 01:53:27 -05002447 if (lpfc_nlp_not_used(ndlp)) {
James Smart98c9ea52007-10-27 13:37:33 -04002448 ndlp = NULL;
James Smartfa4066b2008-01-11 01:53:27 -05002449 /* Indicate node has already been
2450 * released, should not reference
2451 * to it from within the routine
2452 * lpfc_els_free_iocb.
2453 */
2454 cmdiocb->context1 = NULL;
2455 }
dea31012005-04-17 16:05:31 -05002456 }
2457 }
James Smart14691152006-12-02 13:34:28 -05002458 mp = (struct lpfc_dmabuf *) mbox->context1;
2459 if (mp) {
2460 lpfc_mbuf_free(phba, mp->virt, mp->phys);
2461 kfree(mp);
2462 }
2463 mempool_free(mbox, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -05002464 }
2465out:
James Smart58da1ff2008-04-07 10:15:56 -04002466 if (ndlp && NLP_CHK_NODE_ACT(ndlp)) {
James Smart2e0fef82007-06-17 19:56:36 -05002467 spin_lock_irq(shost->host_lock);
James Smart858c9f62007-06-17 19:56:39 -05002468 ndlp->nlp_flag &= ~(NLP_ACC_REGLOGIN | NLP_RM_DFLT_RPI);
James Smart2e0fef82007-06-17 19:56:36 -05002469 spin_unlock_irq(shost->host_lock);
James Smart87af33f2007-10-27 13:37:43 -04002470
2471 /* If the node is not being used by another discovery thread,
2472 * and we are sending a reject, we are done with it.
2473 * Release driver reference count here and free associated
2474 * resources.
2475 */
2476 if (ls_rjt)
James Smartfa4066b2008-01-11 01:53:27 -05002477 if (lpfc_nlp_not_used(ndlp))
2478 /* Indicate node has already been released,
2479 * should not reference to it from within
2480 * the routine lpfc_els_free_iocb.
2481 */
2482 cmdiocb->context1 = NULL;
dea31012005-04-17 16:05:31 -05002483 }
James Smart87af33f2007-10-27 13:37:43 -04002484
dea31012005-04-17 16:05:31 -05002485 lpfc_els_free_iocb(phba, cmdiocb);
2486 return;
2487}
2488
2489int
James Smart2e0fef82007-06-17 19:56:36 -05002490lpfc_els_rsp_acc(struct lpfc_vport *vport, uint32_t flag,
2491 struct lpfc_iocbq *oldiocb, struct lpfc_nodelist *ndlp,
James Smart51ef4c22007-08-02 11:10:31 -04002492 LPFC_MBOXQ_t *mbox)
dea31012005-04-17 16:05:31 -05002493{
James Smart2e0fef82007-06-17 19:56:36 -05002494 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2495 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05002496 IOCB_t *icmd;
2497 IOCB_t *oldcmd;
2498 struct lpfc_iocbq *elsiocb;
2499 struct lpfc_sli_ring *pring;
2500 struct lpfc_sli *psli;
2501 uint8_t *pcmd;
2502 uint16_t cmdsize;
2503 int rc;
James Smart82d9a2a2006-04-15 11:53:05 -04002504 ELS_PKT *els_pkt_ptr;
dea31012005-04-17 16:05:31 -05002505
2506 psli = &phba->sli;
2507 pring = &psli->ring[LPFC_ELS_RING]; /* ELS ring */
2508 oldcmd = &oldiocb->iocb;
2509
2510 switch (flag) {
2511 case ELS_CMD_ACC:
James Smart92d7f7b2007-06-17 19:56:38 -05002512 cmdsize = sizeof(uint32_t);
James Smart2e0fef82007-06-17 19:56:36 -05002513 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry,
2514 ndlp, ndlp->nlp_DID, ELS_CMD_ACC);
James Smart488d1462006-03-07 15:02:37 -05002515 if (!elsiocb) {
James Smart2e0fef82007-06-17 19:56:36 -05002516 spin_lock_irq(shost->host_lock);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05002517 ndlp->nlp_flag &= ~NLP_LOGO_ACC;
James Smart2e0fef82007-06-17 19:56:36 -05002518 spin_unlock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002519 return 1;
dea31012005-04-17 16:05:31 -05002520 }
James Smart2e0fef82007-06-17 19:56:36 -05002521
dea31012005-04-17 16:05:31 -05002522 icmd = &elsiocb->iocb;
2523 icmd->ulpContext = oldcmd->ulpContext; /* Xri */
2524 pcmd = (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
2525 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
James Smart92d7f7b2007-06-17 19:56:38 -05002526 pcmd += sizeof(uint32_t);
James Smart858c9f62007-06-17 19:56:39 -05002527
2528 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
2529 "Issue ACC: did:x%x flg:x%x",
2530 ndlp->nlp_DID, ndlp->nlp_flag, 0);
dea31012005-04-17 16:05:31 -05002531 break;
2532 case ELS_CMD_PLOGI:
James Smart92d7f7b2007-06-17 19:56:38 -05002533 cmdsize = (sizeof(struct serv_parm) + sizeof(uint32_t));
James Smart2e0fef82007-06-17 19:56:36 -05002534 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry,
2535 ndlp, ndlp->nlp_DID, ELS_CMD_ACC);
James Smart488d1462006-03-07 15:02:37 -05002536 if (!elsiocb)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002537 return 1;
James Smart488d1462006-03-07 15:02:37 -05002538
dea31012005-04-17 16:05:31 -05002539 icmd = &elsiocb->iocb;
2540 icmd->ulpContext = oldcmd->ulpContext; /* Xri */
2541 pcmd = (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
2542
2543 if (mbox)
2544 elsiocb->context_un.mbox = mbox;
2545
2546 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
James Smart92d7f7b2007-06-17 19:56:38 -05002547 pcmd += sizeof(uint32_t);
2548 memcpy(pcmd, &vport->fc_sparam, sizeof(struct serv_parm));
James Smart858c9f62007-06-17 19:56:39 -05002549
2550 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
2551 "Issue ACC PLOGI: did:x%x flg:x%x",
2552 ndlp->nlp_DID, ndlp->nlp_flag, 0);
dea31012005-04-17 16:05:31 -05002553 break;
James Smart82d9a2a2006-04-15 11:53:05 -04002554 case ELS_CMD_PRLO:
James Smart92d7f7b2007-06-17 19:56:38 -05002555 cmdsize = sizeof(uint32_t) + sizeof(PRLO);
James Smart2e0fef82007-06-17 19:56:36 -05002556 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry,
James Smart82d9a2a2006-04-15 11:53:05 -04002557 ndlp, ndlp->nlp_DID, ELS_CMD_PRLO);
2558 if (!elsiocb)
2559 return 1;
2560
2561 icmd = &elsiocb->iocb;
2562 icmd->ulpContext = oldcmd->ulpContext; /* Xri */
2563 pcmd = (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
2564
2565 memcpy(pcmd, ((struct lpfc_dmabuf *) oldiocb->context2)->virt,
James Smart92d7f7b2007-06-17 19:56:38 -05002566 sizeof(uint32_t) + sizeof(PRLO));
James Smart82d9a2a2006-04-15 11:53:05 -04002567 *((uint32_t *) (pcmd)) = ELS_CMD_PRLO_ACC;
2568 els_pkt_ptr = (ELS_PKT *) pcmd;
2569 els_pkt_ptr->un.prlo.acceptRspCode = PRLO_REQ_EXECUTED;
James Smart858c9f62007-06-17 19:56:39 -05002570
2571 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
2572 "Issue ACC PRLO: did:x%x flg:x%x",
2573 ndlp->nlp_DID, ndlp->nlp_flag, 0);
James Smart82d9a2a2006-04-15 11:53:05 -04002574 break;
dea31012005-04-17 16:05:31 -05002575 default:
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002576 return 1;
dea31012005-04-17 16:05:31 -05002577 }
dea31012005-04-17 16:05:31 -05002578 /* Xmit ELS ACC response tag <ulpIoTag> */
James Smarte8b62012007-08-02 11:10:09 -04002579 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
2580 "0128 Xmit ELS ACC response tag x%x, XRI: x%x, "
2581 "DID: x%x, nlp_flag: x%x nlp_state: x%x RPI: x%x\n",
2582 elsiocb->iotag, elsiocb->iocb.ulpContext,
2583 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
2584 ndlp->nlp_rpi);
dea31012005-04-17 16:05:31 -05002585 if (ndlp->nlp_flag & NLP_LOGO_ACC) {
James Smart2e0fef82007-06-17 19:56:36 -05002586 spin_lock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002587 ndlp->nlp_flag &= ~NLP_LOGO_ACC;
James Smart2e0fef82007-06-17 19:56:36 -05002588 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002589 elsiocb->iocb_cmpl = lpfc_cmpl_els_logo_acc;
2590 } else {
James Smart858c9f62007-06-17 19:56:39 -05002591 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
dea31012005-04-17 16:05:31 -05002592 }
2593
2594 phba->fc_stat.elsXmitACC++;
dea31012005-04-17 16:05:31 -05002595 rc = lpfc_sli_issue_iocb(phba, pring, elsiocb, 0);
dea31012005-04-17 16:05:31 -05002596 if (rc == IOCB_ERROR) {
2597 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002598 return 1;
dea31012005-04-17 16:05:31 -05002599 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002600 return 0;
dea31012005-04-17 16:05:31 -05002601}
2602
2603int
James Smart2e0fef82007-06-17 19:56:36 -05002604lpfc_els_rsp_reject(struct lpfc_vport *vport, uint32_t rejectError,
James Smart858c9f62007-06-17 19:56:39 -05002605 struct lpfc_iocbq *oldiocb, struct lpfc_nodelist *ndlp,
2606 LPFC_MBOXQ_t *mbox)
dea31012005-04-17 16:05:31 -05002607{
James Smart2e0fef82007-06-17 19:56:36 -05002608 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05002609 IOCB_t *icmd;
2610 IOCB_t *oldcmd;
2611 struct lpfc_iocbq *elsiocb;
2612 struct lpfc_sli_ring *pring;
2613 struct lpfc_sli *psli;
2614 uint8_t *pcmd;
2615 uint16_t cmdsize;
2616 int rc;
2617
2618 psli = &phba->sli;
2619 pring = &psli->ring[LPFC_ELS_RING]; /* ELS ring */
2620
James Smart92d7f7b2007-06-17 19:56:38 -05002621 cmdsize = 2 * sizeof(uint32_t);
James Smart2e0fef82007-06-17 19:56:36 -05002622 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry, ndlp,
2623 ndlp->nlp_DID, ELS_CMD_LS_RJT);
James Smart488d1462006-03-07 15:02:37 -05002624 if (!elsiocb)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002625 return 1;
dea31012005-04-17 16:05:31 -05002626
2627 icmd = &elsiocb->iocb;
2628 oldcmd = &oldiocb->iocb;
2629 icmd->ulpContext = oldcmd->ulpContext; /* Xri */
2630 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
2631
2632 *((uint32_t *) (pcmd)) = ELS_CMD_LS_RJT;
James Smart92d7f7b2007-06-17 19:56:38 -05002633 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05002634 *((uint32_t *) (pcmd)) = rejectError;
2635
James Smart51ef4c22007-08-02 11:10:31 -04002636 if (mbox)
James Smart858c9f62007-06-17 19:56:39 -05002637 elsiocb->context_un.mbox = mbox;
James Smart858c9f62007-06-17 19:56:39 -05002638
dea31012005-04-17 16:05:31 -05002639 /* Xmit ELS RJT <err> response tag <ulpIoTag> */
James Smarte8b62012007-08-02 11:10:09 -04002640 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
2641 "0129 Xmit ELS RJT x%x response tag x%x "
2642 "xri x%x, did x%x, nlp_flag x%x, nlp_state x%x, "
2643 "rpi x%x\n",
2644 rejectError, elsiocb->iotag,
2645 elsiocb->iocb.ulpContext, ndlp->nlp_DID,
2646 ndlp->nlp_flag, ndlp->nlp_state, ndlp->nlp_rpi);
James Smart858c9f62007-06-17 19:56:39 -05002647 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
2648 "Issue LS_RJT: did:x%x flg:x%x err:x%x",
2649 ndlp->nlp_DID, ndlp->nlp_flag, rejectError);
2650
dea31012005-04-17 16:05:31 -05002651 phba->fc_stat.elsXmitLSRJT++;
James Smart858c9f62007-06-17 19:56:39 -05002652 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
dea31012005-04-17 16:05:31 -05002653 rc = lpfc_sli_issue_iocb(phba, pring, elsiocb, 0);
James Smart51ef4c22007-08-02 11:10:31 -04002654
dea31012005-04-17 16:05:31 -05002655 if (rc == IOCB_ERROR) {
2656 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002657 return 1;
dea31012005-04-17 16:05:31 -05002658 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002659 return 0;
dea31012005-04-17 16:05:31 -05002660}
2661
2662int
James Smart2e0fef82007-06-17 19:56:36 -05002663lpfc_els_rsp_adisc_acc(struct lpfc_vport *vport, struct lpfc_iocbq *oldiocb,
2664 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05002665{
James Smart2e0fef82007-06-17 19:56:36 -05002666 struct lpfc_hba *phba = vport->phba;
2667 struct lpfc_sli *psli = &phba->sli;
2668 struct lpfc_sli_ring *pring = &psli->ring[LPFC_ELS_RING];
dea31012005-04-17 16:05:31 -05002669 ADISC *ap;
James Smart2e0fef82007-06-17 19:56:36 -05002670 IOCB_t *icmd, *oldcmd;
dea31012005-04-17 16:05:31 -05002671 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05002672 uint8_t *pcmd;
2673 uint16_t cmdsize;
2674 int rc;
2675
James Smart92d7f7b2007-06-17 19:56:38 -05002676 cmdsize = sizeof(uint32_t) + sizeof(ADISC);
James Smart2e0fef82007-06-17 19:56:36 -05002677 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry, ndlp,
2678 ndlp->nlp_DID, ELS_CMD_ACC);
James Smart488d1462006-03-07 15:02:37 -05002679 if (!elsiocb)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002680 return 1;
dea31012005-04-17 16:05:31 -05002681
dea31012005-04-17 16:05:31 -05002682 icmd = &elsiocb->iocb;
2683 oldcmd = &oldiocb->iocb;
2684 icmd->ulpContext = oldcmd->ulpContext; /* Xri */
James Smart5b8bd0c2007-04-25 09:52:49 -04002685
2686 /* Xmit ADISC ACC response tag <ulpIoTag> */
James Smarte8b62012007-08-02 11:10:09 -04002687 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
2688 "0130 Xmit ADISC ACC response iotag x%x xri: "
2689 "x%x, did x%x, nlp_flag x%x, nlp_state x%x rpi x%x\n",
2690 elsiocb->iotag, elsiocb->iocb.ulpContext,
2691 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
2692 ndlp->nlp_rpi);
dea31012005-04-17 16:05:31 -05002693 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
2694
2695 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
James Smart92d7f7b2007-06-17 19:56:38 -05002696 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05002697
2698 ap = (ADISC *) (pcmd);
2699 ap->hardAL_PA = phba->fc_pref_ALPA;
James Smart92d7f7b2007-06-17 19:56:38 -05002700 memcpy(&ap->portName, &vport->fc_portname, sizeof(struct lpfc_name));
2701 memcpy(&ap->nodeName, &vport->fc_nodename, sizeof(struct lpfc_name));
James Smart2e0fef82007-06-17 19:56:36 -05002702 ap->DID = be32_to_cpu(vport->fc_myDID);
dea31012005-04-17 16:05:31 -05002703
James Smart858c9f62007-06-17 19:56:39 -05002704 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
2705 "Issue ACC ADISC: did:x%x flg:x%x",
2706 ndlp->nlp_DID, ndlp->nlp_flag, 0);
2707
dea31012005-04-17 16:05:31 -05002708 phba->fc_stat.elsXmitACC++;
James Smart858c9f62007-06-17 19:56:39 -05002709 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
dea31012005-04-17 16:05:31 -05002710 rc = lpfc_sli_issue_iocb(phba, pring, elsiocb, 0);
dea31012005-04-17 16:05:31 -05002711 if (rc == IOCB_ERROR) {
2712 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002713 return 1;
dea31012005-04-17 16:05:31 -05002714 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002715 return 0;
dea31012005-04-17 16:05:31 -05002716}
2717
2718int
James Smart2e0fef82007-06-17 19:56:36 -05002719lpfc_els_rsp_prli_acc(struct lpfc_vport *vport, struct lpfc_iocbq *oldiocb,
James Smart5b8bd0c2007-04-25 09:52:49 -04002720 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05002721{
James Smart2e0fef82007-06-17 19:56:36 -05002722 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05002723 PRLI *npr;
2724 lpfc_vpd_t *vpd;
2725 IOCB_t *icmd;
2726 IOCB_t *oldcmd;
2727 struct lpfc_iocbq *elsiocb;
2728 struct lpfc_sli_ring *pring;
2729 struct lpfc_sli *psli;
2730 uint8_t *pcmd;
2731 uint16_t cmdsize;
2732 int rc;
2733
2734 psli = &phba->sli;
2735 pring = &psli->ring[LPFC_ELS_RING]; /* ELS ring */
2736
James Smart92d7f7b2007-06-17 19:56:38 -05002737 cmdsize = sizeof(uint32_t) + sizeof(PRLI);
James Smart2e0fef82007-06-17 19:56:36 -05002738 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry, ndlp,
James Smart92d7f7b2007-06-17 19:56:38 -05002739 ndlp->nlp_DID, (ELS_CMD_ACC | (ELS_CMD_PRLI & ~ELS_RSP_MASK)));
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002740 if (!elsiocb)
2741 return 1;
dea31012005-04-17 16:05:31 -05002742
dea31012005-04-17 16:05:31 -05002743 icmd = &elsiocb->iocb;
2744 oldcmd = &oldiocb->iocb;
2745 icmd->ulpContext = oldcmd->ulpContext; /* Xri */
James Smart5b8bd0c2007-04-25 09:52:49 -04002746 /* Xmit PRLI ACC response tag <ulpIoTag> */
James Smarte8b62012007-08-02 11:10:09 -04002747 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
2748 "0131 Xmit PRLI ACC response tag x%x xri x%x, "
2749 "did x%x, nlp_flag x%x, nlp_state x%x, rpi x%x\n",
2750 elsiocb->iotag, elsiocb->iocb.ulpContext,
2751 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
2752 ndlp->nlp_rpi);
dea31012005-04-17 16:05:31 -05002753 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
2754
2755 *((uint32_t *) (pcmd)) = (ELS_CMD_ACC | (ELS_CMD_PRLI & ~ELS_RSP_MASK));
James Smart92d7f7b2007-06-17 19:56:38 -05002756 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05002757
2758 /* For PRLI, remainder of payload is PRLI parameter page */
James Smart92d7f7b2007-06-17 19:56:38 -05002759 memset(pcmd, 0, sizeof(PRLI));
dea31012005-04-17 16:05:31 -05002760
2761 npr = (PRLI *) pcmd;
2762 vpd = &phba->vpd;
2763 /*
2764 * If our firmware version is 3.20 or later,
2765 * set the following bits for FC-TAPE support.
2766 */
2767 if (vpd->rev.feaLevelHigh >= 0x02) {
2768 npr->ConfmComplAllowed = 1;
2769 npr->Retry = 1;
2770 npr->TaskRetryIdReq = 1;
2771 }
2772
2773 npr->acceptRspCode = PRLI_REQ_EXECUTED;
2774 npr->estabImagePair = 1;
2775 npr->readXferRdyDis = 1;
2776 npr->ConfmComplAllowed = 1;
2777
2778 npr->prliType = PRLI_FCP_TYPE;
2779 npr->initiatorFunc = 1;
2780
James Smart858c9f62007-06-17 19:56:39 -05002781 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
2782 "Issue ACC PRLI: did:x%x flg:x%x",
2783 ndlp->nlp_DID, ndlp->nlp_flag, 0);
2784
dea31012005-04-17 16:05:31 -05002785 phba->fc_stat.elsXmitACC++;
James Smart858c9f62007-06-17 19:56:39 -05002786 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
dea31012005-04-17 16:05:31 -05002787
dea31012005-04-17 16:05:31 -05002788 rc = lpfc_sli_issue_iocb(phba, pring, elsiocb, 0);
dea31012005-04-17 16:05:31 -05002789 if (rc == IOCB_ERROR) {
2790 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002791 return 1;
dea31012005-04-17 16:05:31 -05002792 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002793 return 0;
dea31012005-04-17 16:05:31 -05002794}
2795
2796static int
James Smart2e0fef82007-06-17 19:56:36 -05002797lpfc_els_rsp_rnid_acc(struct lpfc_vport *vport, uint8_t format,
James Smart329f9bc2007-04-25 09:53:01 -04002798 struct lpfc_iocbq *oldiocb, struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05002799{
James Smart2e0fef82007-06-17 19:56:36 -05002800 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05002801 RNID *rn;
James Smart2e0fef82007-06-17 19:56:36 -05002802 IOCB_t *icmd, *oldcmd;
dea31012005-04-17 16:05:31 -05002803 struct lpfc_iocbq *elsiocb;
2804 struct lpfc_sli_ring *pring;
2805 struct lpfc_sli *psli;
2806 uint8_t *pcmd;
2807 uint16_t cmdsize;
2808 int rc;
2809
2810 psli = &phba->sli;
2811 pring = &psli->ring[LPFC_ELS_RING];
2812
James Smart92d7f7b2007-06-17 19:56:38 -05002813 cmdsize = sizeof(uint32_t) + sizeof(uint32_t)
2814 + (2 * sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -05002815 if (format)
James Smart92d7f7b2007-06-17 19:56:38 -05002816 cmdsize += sizeof(RNID_TOP_DISC);
dea31012005-04-17 16:05:31 -05002817
James Smart2e0fef82007-06-17 19:56:36 -05002818 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry, ndlp,
2819 ndlp->nlp_DID, ELS_CMD_ACC);
James Smart488d1462006-03-07 15:02:37 -05002820 if (!elsiocb)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002821 return 1;
dea31012005-04-17 16:05:31 -05002822
dea31012005-04-17 16:05:31 -05002823 icmd = &elsiocb->iocb;
2824 oldcmd = &oldiocb->iocb;
2825 icmd->ulpContext = oldcmd->ulpContext; /* Xri */
James Smart5b8bd0c2007-04-25 09:52:49 -04002826 /* Xmit RNID ACC response tag <ulpIoTag> */
James Smarte8b62012007-08-02 11:10:09 -04002827 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
2828 "0132 Xmit RNID ACC response tag x%x xri x%x\n",
2829 elsiocb->iotag, elsiocb->iocb.ulpContext);
dea31012005-04-17 16:05:31 -05002830 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
dea31012005-04-17 16:05:31 -05002831 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
James Smart92d7f7b2007-06-17 19:56:38 -05002832 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05002833
James Smart92d7f7b2007-06-17 19:56:38 -05002834 memset(pcmd, 0, sizeof(RNID));
dea31012005-04-17 16:05:31 -05002835 rn = (RNID *) (pcmd);
2836 rn->Format = format;
James Smart92d7f7b2007-06-17 19:56:38 -05002837 rn->CommonLen = (2 * sizeof(struct lpfc_name));
2838 memcpy(&rn->portName, &vport->fc_portname, sizeof(struct lpfc_name));
2839 memcpy(&rn->nodeName, &vport->fc_nodename, sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -05002840 switch (format) {
2841 case 0:
2842 rn->SpecificLen = 0;
2843 break;
2844 case RNID_TOPOLOGY_DISC:
James Smart92d7f7b2007-06-17 19:56:38 -05002845 rn->SpecificLen = sizeof(RNID_TOP_DISC);
dea31012005-04-17 16:05:31 -05002846 memcpy(&rn->un.topologyDisc.portName,
James Smart92d7f7b2007-06-17 19:56:38 -05002847 &vport->fc_portname, sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -05002848 rn->un.topologyDisc.unitType = RNID_HBA;
2849 rn->un.topologyDisc.physPort = 0;
2850 rn->un.topologyDisc.attachedNodes = 0;
2851 break;
2852 default:
2853 rn->CommonLen = 0;
2854 rn->SpecificLen = 0;
2855 break;
2856 }
2857
James Smart858c9f62007-06-17 19:56:39 -05002858 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
2859 "Issue ACC RNID: did:x%x flg:x%x",
2860 ndlp->nlp_DID, ndlp->nlp_flag, 0);
2861
dea31012005-04-17 16:05:31 -05002862 phba->fc_stat.elsXmitACC++;
James Smart858c9f62007-06-17 19:56:39 -05002863 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
James Smart329f9bc2007-04-25 09:53:01 -04002864 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05002865 elsiocb->context1 = NULL; /* Don't need ndlp for cmpl,
2866 * it could be freed */
2867
dea31012005-04-17 16:05:31 -05002868 rc = lpfc_sli_issue_iocb(phba, pring, elsiocb, 0);
dea31012005-04-17 16:05:31 -05002869 if (rc == IOCB_ERROR) {
2870 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002871 return 1;
dea31012005-04-17 16:05:31 -05002872 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002873 return 0;
dea31012005-04-17 16:05:31 -05002874}
2875
2876int
James Smart2e0fef82007-06-17 19:56:36 -05002877lpfc_els_disc_adisc(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05002878{
James Smart2e0fef82007-06-17 19:56:36 -05002879 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05002880 struct lpfc_nodelist *ndlp, *next_ndlp;
James Smart2e0fef82007-06-17 19:56:36 -05002881 int sentadisc = 0;
dea31012005-04-17 16:05:31 -05002882
James Smart685f0bf2007-04-25 09:53:08 -04002883 /* go thru NPR nodes and issue any remaining ELS ADISCs */
James Smart2e0fef82007-06-17 19:56:36 -05002884 list_for_each_entry_safe(ndlp, next_ndlp, &vport->fc_nodes, nlp_listp) {
James Smarte47c9092008-02-08 18:49:26 -05002885 if (!NLP_CHK_NODE_ACT(ndlp))
2886 continue;
James Smart685f0bf2007-04-25 09:53:08 -04002887 if (ndlp->nlp_state == NLP_STE_NPR_NODE &&
2888 (ndlp->nlp_flag & NLP_NPR_2B_DISC) != 0 &&
2889 (ndlp->nlp_flag & NLP_NPR_ADISC) != 0) {
James Smart2e0fef82007-06-17 19:56:36 -05002890 spin_lock_irq(shost->host_lock);
James Smart685f0bf2007-04-25 09:53:08 -04002891 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
James Smart2e0fef82007-06-17 19:56:36 -05002892 spin_unlock_irq(shost->host_lock);
James Smart685f0bf2007-04-25 09:53:08 -04002893 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05002894 lpfc_nlp_set_state(vport, ndlp, NLP_STE_ADISC_ISSUE);
2895 lpfc_issue_els_adisc(vport, ndlp, 0);
James Smart685f0bf2007-04-25 09:53:08 -04002896 sentadisc++;
James Smart2e0fef82007-06-17 19:56:36 -05002897 vport->num_disc_nodes++;
2898 if (vport->num_disc_nodes >=
James Smart3de2a652007-08-02 11:09:59 -04002899 vport->cfg_discovery_threads) {
James Smart2e0fef82007-06-17 19:56:36 -05002900 spin_lock_irq(shost->host_lock);
2901 vport->fc_flag |= FC_NLP_MORE;
2902 spin_unlock_irq(shost->host_lock);
James Smart685f0bf2007-04-25 09:53:08 -04002903 break;
dea31012005-04-17 16:05:31 -05002904 }
2905 }
2906 }
2907 if (sentadisc == 0) {
James Smart2e0fef82007-06-17 19:56:36 -05002908 spin_lock_irq(shost->host_lock);
2909 vport->fc_flag &= ~FC_NLP_MORE;
2910 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002911 }
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05002912 return sentadisc;
dea31012005-04-17 16:05:31 -05002913}
2914
2915int
James Smart2e0fef82007-06-17 19:56:36 -05002916lpfc_els_disc_plogi(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05002917{
James Smart2e0fef82007-06-17 19:56:36 -05002918 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05002919 struct lpfc_nodelist *ndlp, *next_ndlp;
James Smart2e0fef82007-06-17 19:56:36 -05002920 int sentplogi = 0;
dea31012005-04-17 16:05:31 -05002921
James Smart2e0fef82007-06-17 19:56:36 -05002922 /* go thru NPR nodes and issue any remaining ELS PLOGIs */
2923 list_for_each_entry_safe(ndlp, next_ndlp, &vport->fc_nodes, nlp_listp) {
James Smarte47c9092008-02-08 18:49:26 -05002924 if (!NLP_CHK_NODE_ACT(ndlp))
2925 continue;
James Smart685f0bf2007-04-25 09:53:08 -04002926 if (ndlp->nlp_state == NLP_STE_NPR_NODE &&
2927 (ndlp->nlp_flag & NLP_NPR_2B_DISC) != 0 &&
2928 (ndlp->nlp_flag & NLP_DELAY_TMO) == 0 &&
2929 (ndlp->nlp_flag & NLP_NPR_ADISC) == 0) {
2930 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05002931 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
2932 lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0);
James Smart685f0bf2007-04-25 09:53:08 -04002933 sentplogi++;
James Smart2e0fef82007-06-17 19:56:36 -05002934 vport->num_disc_nodes++;
2935 if (vport->num_disc_nodes >=
James Smart3de2a652007-08-02 11:09:59 -04002936 vport->cfg_discovery_threads) {
James Smart2e0fef82007-06-17 19:56:36 -05002937 spin_lock_irq(shost->host_lock);
2938 vport->fc_flag |= FC_NLP_MORE;
2939 spin_unlock_irq(shost->host_lock);
James Smart685f0bf2007-04-25 09:53:08 -04002940 break;
dea31012005-04-17 16:05:31 -05002941 }
2942 }
2943 }
James Smart87af33f2007-10-27 13:37:43 -04002944 if (sentplogi) {
2945 lpfc_set_disctmo(vport);
2946 }
2947 else {
James Smart2e0fef82007-06-17 19:56:36 -05002948 spin_lock_irq(shost->host_lock);
2949 vport->fc_flag &= ~FC_NLP_MORE;
2950 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002951 }
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05002952 return sentplogi;
dea31012005-04-17 16:05:31 -05002953}
2954
James Smart92d7f7b2007-06-17 19:56:38 -05002955void
James Smart2e0fef82007-06-17 19:56:36 -05002956lpfc_els_flush_rscn(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05002957{
James Smart2e0fef82007-06-17 19:56:36 -05002958 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2959 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05002960 int i;
2961
James Smart7f5f3d02008-02-08 18:50:14 -05002962 spin_lock_irq(shost->host_lock);
2963 if (vport->fc_rscn_flush) {
2964 /* Another thread is walking fc_rscn_id_list on this vport */
2965 spin_unlock_irq(shost->host_lock);
2966 return;
2967 }
2968 /* Indicate we are walking lpfc_els_flush_rscn on this vport */
2969 vport->fc_rscn_flush = 1;
2970 spin_unlock_irq(shost->host_lock);
2971
James Smart2e0fef82007-06-17 19:56:36 -05002972 for (i = 0; i < vport->fc_rscn_id_cnt; i++) {
James Smart92d7f7b2007-06-17 19:56:38 -05002973 lpfc_in_buf_free(phba, vport->fc_rscn_id_list[i]);
James Smart2e0fef82007-06-17 19:56:36 -05002974 vport->fc_rscn_id_list[i] = NULL;
dea31012005-04-17 16:05:31 -05002975 }
James Smart2e0fef82007-06-17 19:56:36 -05002976 spin_lock_irq(shost->host_lock);
2977 vport->fc_rscn_id_cnt = 0;
2978 vport->fc_flag &= ~(FC_RSCN_MODE | FC_RSCN_DISCOVERY);
2979 spin_unlock_irq(shost->host_lock);
2980 lpfc_can_disctmo(vport);
James Smart7f5f3d02008-02-08 18:50:14 -05002981 /* Indicate we are done walking this fc_rscn_id_list */
2982 vport->fc_rscn_flush = 0;
dea31012005-04-17 16:05:31 -05002983}
2984
2985int
James Smart2e0fef82007-06-17 19:56:36 -05002986lpfc_rscn_payload_check(struct lpfc_vport *vport, uint32_t did)
dea31012005-04-17 16:05:31 -05002987{
2988 D_ID ns_did;
2989 D_ID rscn_did;
dea31012005-04-17 16:05:31 -05002990 uint32_t *lp;
James Smart92d7f7b2007-06-17 19:56:38 -05002991 uint32_t payload_len, i;
James Smart7f5f3d02008-02-08 18:50:14 -05002992 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05002993
2994 ns_did.un.word = did;
dea31012005-04-17 16:05:31 -05002995
2996 /* Never match fabric nodes for RSCNs */
2997 if ((did & Fabric_DID_MASK) == Fabric_DID_MASK)
James Smart2e0fef82007-06-17 19:56:36 -05002998 return 0;
dea31012005-04-17 16:05:31 -05002999
3000 /* If we are doing a FULL RSCN rediscovery, match everything */
James Smart2e0fef82007-06-17 19:56:36 -05003001 if (vport->fc_flag & FC_RSCN_DISCOVERY)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003002 return did;
dea31012005-04-17 16:05:31 -05003003
James Smart7f5f3d02008-02-08 18:50:14 -05003004 spin_lock_irq(shost->host_lock);
3005 if (vport->fc_rscn_flush) {
3006 /* Another thread is walking fc_rscn_id_list on this vport */
3007 spin_unlock_irq(shost->host_lock);
3008 return 0;
3009 }
3010 /* Indicate we are walking fc_rscn_id_list on this vport */
3011 vport->fc_rscn_flush = 1;
3012 spin_unlock_irq(shost->host_lock);
James Smart2e0fef82007-06-17 19:56:36 -05003013 for (i = 0; i < vport->fc_rscn_id_cnt; i++) {
James Smart92d7f7b2007-06-17 19:56:38 -05003014 lp = vport->fc_rscn_id_list[i]->virt;
3015 payload_len = be32_to_cpu(*lp++ & ~ELS_CMD_MASK);
3016 payload_len -= sizeof(uint32_t); /* take off word 0 */
dea31012005-04-17 16:05:31 -05003017 while (payload_len) {
James Smart92d7f7b2007-06-17 19:56:38 -05003018 rscn_did.un.word = be32_to_cpu(*lp++);
3019 payload_len -= sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05003020 switch (rscn_did.un.b.resv) {
3021 case 0: /* Single N_Port ID effected */
James Smart2e0fef82007-06-17 19:56:36 -05003022 if (ns_did.un.word == rscn_did.un.word)
James Smart7f5f3d02008-02-08 18:50:14 -05003023 goto return_did_out;
dea31012005-04-17 16:05:31 -05003024 break;
3025 case 1: /* Whole N_Port Area effected */
3026 if ((ns_did.un.b.domain == rscn_did.un.b.domain)
3027 && (ns_did.un.b.area == rscn_did.un.b.area))
James Smart7f5f3d02008-02-08 18:50:14 -05003028 goto return_did_out;
dea31012005-04-17 16:05:31 -05003029 break;
3030 case 2: /* Whole N_Port Domain effected */
3031 if (ns_did.un.b.domain == rscn_did.un.b.domain)
James Smart7f5f3d02008-02-08 18:50:14 -05003032 goto return_did_out;
dea31012005-04-17 16:05:31 -05003033 break;
3034 default:
James Smart2e0fef82007-06-17 19:56:36 -05003035 /* Unknown Identifier in RSCN node */
James Smarte8b62012007-08-02 11:10:09 -04003036 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
3037 "0217 Unknown Identifier in "
3038 "RSCN payload Data: x%x\n",
3039 rscn_did.un.word);
James Smart92d7f7b2007-06-17 19:56:38 -05003040 case 3: /* Whole Fabric effected */
James Smart7f5f3d02008-02-08 18:50:14 -05003041 goto return_did_out;
dea31012005-04-17 16:05:31 -05003042 }
3043 }
James Smart92d7f7b2007-06-17 19:56:38 -05003044 }
James Smart7f5f3d02008-02-08 18:50:14 -05003045 /* Indicate we are done with walking fc_rscn_id_list on this vport */
3046 vport->fc_rscn_flush = 0;
James Smart92d7f7b2007-06-17 19:56:38 -05003047 return 0;
James Smart7f5f3d02008-02-08 18:50:14 -05003048return_did_out:
3049 /* Indicate we are done with walking fc_rscn_id_list on this vport */
3050 vport->fc_rscn_flush = 0;
3051 return did;
dea31012005-04-17 16:05:31 -05003052}
3053
3054static int
James Smart2e0fef82007-06-17 19:56:36 -05003055lpfc_rscn_recovery_check(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05003056{
James Smart685f0bf2007-04-25 09:53:08 -04003057 struct lpfc_nodelist *ndlp = NULL;
dea31012005-04-17 16:05:31 -05003058
3059 /* Look at all nodes effected by pending RSCNs and move
James Smart685f0bf2007-04-25 09:53:08 -04003060 * them to NPR state.
dea31012005-04-17 16:05:31 -05003061 */
James Smart685f0bf2007-04-25 09:53:08 -04003062
James Smart2e0fef82007-06-17 19:56:36 -05003063 list_for_each_entry(ndlp, &vport->fc_nodes, nlp_listp) {
James Smarte47c9092008-02-08 18:49:26 -05003064 if (!NLP_CHK_NODE_ACT(ndlp) ||
3065 ndlp->nlp_state == NLP_STE_UNUSED_NODE ||
James Smart2e0fef82007-06-17 19:56:36 -05003066 lpfc_rscn_payload_check(vport, ndlp->nlp_DID) == 0)
dea31012005-04-17 16:05:31 -05003067 continue;
3068
James Smart2e0fef82007-06-17 19:56:36 -05003069 lpfc_disc_state_machine(vport, ndlp, NULL,
James Smart92d7f7b2007-06-17 19:56:38 -05003070 NLP_EVT_DEVICE_RECOVERY);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003071
James Smart685f0bf2007-04-25 09:53:08 -04003072 /*
3073 * Make sure NLP_DELAY_TMO is NOT running after a device
3074 * recovery event.
3075 */
3076 if (ndlp->nlp_flag & NLP_DELAY_TMO)
James Smart2e0fef82007-06-17 19:56:36 -05003077 lpfc_cancel_retry_delay_tmo(vport, ndlp);
dea31012005-04-17 16:05:31 -05003078 }
James Smart685f0bf2007-04-25 09:53:08 -04003079
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003080 return 0;
dea31012005-04-17 16:05:31 -05003081}
3082
3083static int
James Smart2e0fef82007-06-17 19:56:36 -05003084lpfc_els_rcv_rscn(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
James Smart51ef4c22007-08-02 11:10:31 -04003085 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05003086{
James Smart2e0fef82007-06-17 19:56:36 -05003087 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
3088 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05003089 struct lpfc_dmabuf *pcmd;
James Smart92d7f7b2007-06-17 19:56:38 -05003090 uint32_t *lp, *datap;
dea31012005-04-17 16:05:31 -05003091 IOCB_t *icmd;
James Smart92d7f7b2007-06-17 19:56:38 -05003092 uint32_t payload_len, length, nportid, *cmd;
James Smart7f5f3d02008-02-08 18:50:14 -05003093 int rscn_cnt;
James Smart92d7f7b2007-06-17 19:56:38 -05003094 int rscn_id = 0, hba_id = 0;
James Smartd2873e42006-08-18 17:46:43 -04003095 int i;
dea31012005-04-17 16:05:31 -05003096
3097 icmd = &cmdiocb->iocb;
3098 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
3099 lp = (uint32_t *) pcmd->virt;
3100
James Smart92d7f7b2007-06-17 19:56:38 -05003101 payload_len = be32_to_cpu(*lp++ & ~ELS_CMD_MASK);
3102 payload_len -= sizeof(uint32_t); /* take off word 0 */
dea31012005-04-17 16:05:31 -05003103 /* RSCN received */
James Smarte8b62012007-08-02 11:10:09 -04003104 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
3105 "0214 RSCN received Data: x%x x%x x%x x%x\n",
James Smart7f5f3d02008-02-08 18:50:14 -05003106 vport->fc_flag, payload_len, *lp,
3107 vport->fc_rscn_id_cnt);
James Smartd2873e42006-08-18 17:46:43 -04003108 for (i = 0; i < payload_len/sizeof(uint32_t); i++)
James Smart2e0fef82007-06-17 19:56:36 -05003109 fc_host_post_event(shost, fc_get_event_number(),
James Smartd2873e42006-08-18 17:46:43 -04003110 FCH_EVT_RSCN, lp[i]);
3111
dea31012005-04-17 16:05:31 -05003112 /* If we are about to begin discovery, just ACC the RSCN.
3113 * Discovery processing will satisfy it.
3114 */
James Smart2e0fef82007-06-17 19:56:36 -05003115 if (vport->port_state <= LPFC_NS_QRY) {
James Smart858c9f62007-06-17 19:56:39 -05003116 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
3117 "RCV RSCN ignore: did:x%x/ste:x%x flg:x%x",
3118 ndlp->nlp_DID, vport->port_state, ndlp->nlp_flag);
3119
James Smart51ef4c22007-08-02 11:10:31 -04003120 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003121 return 0;
dea31012005-04-17 16:05:31 -05003122 }
3123
James Smart92d7f7b2007-06-17 19:56:38 -05003124 /* If this RSCN just contains NPortIDs for other vports on this HBA,
3125 * just ACC and ignore it.
3126 */
3127 if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
James Smart3de2a652007-08-02 11:09:59 -04003128 !(vport->cfg_peer_port_login)) {
James Smart92d7f7b2007-06-17 19:56:38 -05003129 i = payload_len;
3130 datap = lp;
3131 while (i > 0) {
3132 nportid = *datap++;
3133 nportid = ((be32_to_cpu(nportid)) & Mask_DID);
3134 i -= sizeof(uint32_t);
3135 rscn_id++;
James Smart549e55c2007-08-02 11:09:51 -04003136 if (lpfc_find_vport_by_did(phba, nportid))
3137 hba_id++;
James Smart92d7f7b2007-06-17 19:56:38 -05003138 }
3139 if (rscn_id == hba_id) {
3140 /* ALL NPortIDs in RSCN are on HBA */
James Smarte8b62012007-08-02 11:10:09 -04003141 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
3142 "0214 Ignore RSCN "
3143 "Data: x%x x%x x%x x%x\n",
3144 vport->fc_flag, payload_len,
James Smart7f5f3d02008-02-08 18:50:14 -05003145 *lp, vport->fc_rscn_id_cnt);
James Smart858c9f62007-06-17 19:56:39 -05003146 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
3147 "RCV RSCN vport: did:x%x/ste:x%x flg:x%x",
3148 ndlp->nlp_DID, vport->port_state,
3149 ndlp->nlp_flag);
3150
James Smart92d7f7b2007-06-17 19:56:38 -05003151 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb,
James Smart51ef4c22007-08-02 11:10:31 -04003152 ndlp, NULL);
James Smart92d7f7b2007-06-17 19:56:38 -05003153 return 0;
3154 }
3155 }
3156
James Smart7f5f3d02008-02-08 18:50:14 -05003157 spin_lock_irq(shost->host_lock);
3158 if (vport->fc_rscn_flush) {
3159 /* Another thread is walking fc_rscn_id_list on this vport */
3160 spin_unlock_irq(shost->host_lock);
3161 vport->fc_flag |= FC_RSCN_DISCOVERY;
James Smart58da1ff2008-04-07 10:15:56 -04003162 /* Send back ACC */
3163 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
James Smart7f5f3d02008-02-08 18:50:14 -05003164 return 0;
3165 }
3166 /* Indicate we are walking fc_rscn_id_list on this vport */
3167 vport->fc_rscn_flush = 1;
3168 spin_unlock_irq(shost->host_lock);
3169 /* Get the array count after sucessfully have the token */
3170 rscn_cnt = vport->fc_rscn_id_cnt;
dea31012005-04-17 16:05:31 -05003171 /* If we are already processing an RSCN, save the received
3172 * RSCN payload buffer, cmdiocb->context2 to process later.
3173 */
James Smart2e0fef82007-06-17 19:56:36 -05003174 if (vport->fc_flag & (FC_RSCN_MODE | FC_NDISC_ACTIVE)) {
James Smart858c9f62007-06-17 19:56:39 -05003175 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
3176 "RCV RSCN defer: did:x%x/ste:x%x flg:x%x",
3177 ndlp->nlp_DID, vport->port_state, ndlp->nlp_flag);
3178
James Smart09372822008-01-11 01:52:54 -05003179 spin_lock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05003180 vport->fc_flag |= FC_RSCN_DEFERRED;
3181 if ((rscn_cnt < FC_MAX_HOLD_RSCN) &&
James Smart2e0fef82007-06-17 19:56:36 -05003182 !(vport->fc_flag & FC_RSCN_DISCOVERY)) {
James Smart2e0fef82007-06-17 19:56:36 -05003183 vport->fc_flag |= FC_RSCN_MODE;
3184 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05003185 if (rscn_cnt) {
3186 cmd = vport->fc_rscn_id_list[rscn_cnt-1]->virt;
3187 length = be32_to_cpu(*cmd & ~ELS_CMD_MASK);
3188 }
3189 if ((rscn_cnt) &&
3190 (payload_len + length <= LPFC_BPL_SIZE)) {
3191 *cmd &= ELS_CMD_MASK;
James Smart7f5f3d02008-02-08 18:50:14 -05003192 *cmd |= cpu_to_be32(payload_len + length);
James Smart92d7f7b2007-06-17 19:56:38 -05003193 memcpy(((uint8_t *)cmd) + length, lp,
3194 payload_len);
3195 } else {
3196 vport->fc_rscn_id_list[rscn_cnt] = pcmd;
3197 vport->fc_rscn_id_cnt++;
3198 /* If we zero, cmdiocb->context2, the calling
3199 * routine will not try to free it.
3200 */
3201 cmdiocb->context2 = NULL;
3202 }
dea31012005-04-17 16:05:31 -05003203 /* Deferred RSCN */
James Smarte8b62012007-08-02 11:10:09 -04003204 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
3205 "0235 Deferred RSCN "
3206 "Data: x%x x%x x%x\n",
3207 vport->fc_rscn_id_cnt, vport->fc_flag,
3208 vport->port_state);
dea31012005-04-17 16:05:31 -05003209 } else {
James Smart2e0fef82007-06-17 19:56:36 -05003210 vport->fc_flag |= FC_RSCN_DISCOVERY;
3211 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05003212 /* ReDiscovery RSCN */
James Smarte8b62012007-08-02 11:10:09 -04003213 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
3214 "0234 ReDiscovery RSCN "
3215 "Data: x%x x%x x%x\n",
3216 vport->fc_rscn_id_cnt, vport->fc_flag,
3217 vport->port_state);
dea31012005-04-17 16:05:31 -05003218 }
James Smart7f5f3d02008-02-08 18:50:14 -05003219 /* Indicate we are done walking fc_rscn_id_list on this vport */
3220 vport->fc_rscn_flush = 0;
dea31012005-04-17 16:05:31 -05003221 /* Send back ACC */
James Smart51ef4c22007-08-02 11:10:31 -04003222 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
dea31012005-04-17 16:05:31 -05003223 /* send RECOVERY event for ALL nodes that match RSCN payload */
James Smart2e0fef82007-06-17 19:56:36 -05003224 lpfc_rscn_recovery_check(vport);
James Smart09372822008-01-11 01:52:54 -05003225 spin_lock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05003226 vport->fc_flag &= ~FC_RSCN_DEFERRED;
James Smart09372822008-01-11 01:52:54 -05003227 spin_unlock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003228 return 0;
dea31012005-04-17 16:05:31 -05003229 }
James Smart858c9f62007-06-17 19:56:39 -05003230 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
3231 "RCV RSCN: did:x%x/ste:x%x flg:x%x",
3232 ndlp->nlp_DID, vport->port_state, ndlp->nlp_flag);
3233
James Smart2e0fef82007-06-17 19:56:36 -05003234 spin_lock_irq(shost->host_lock);
3235 vport->fc_flag |= FC_RSCN_MODE;
3236 spin_unlock_irq(shost->host_lock);
3237 vport->fc_rscn_id_list[vport->fc_rscn_id_cnt++] = pcmd;
James Smart7f5f3d02008-02-08 18:50:14 -05003238 /* Indicate we are done walking fc_rscn_id_list on this vport */
3239 vport->fc_rscn_flush = 0;
dea31012005-04-17 16:05:31 -05003240 /*
3241 * If we zero, cmdiocb->context2, the calling routine will
3242 * not try to free it.
3243 */
3244 cmdiocb->context2 = NULL;
James Smart2e0fef82007-06-17 19:56:36 -05003245 lpfc_set_disctmo(vport);
dea31012005-04-17 16:05:31 -05003246 /* Send back ACC */
James Smart51ef4c22007-08-02 11:10:31 -04003247 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
dea31012005-04-17 16:05:31 -05003248 /* send RECOVERY event for ALL nodes that match RSCN payload */
James Smart2e0fef82007-06-17 19:56:36 -05003249 lpfc_rscn_recovery_check(vport);
James Smart2e0fef82007-06-17 19:56:36 -05003250 return lpfc_els_handle_rscn(vport);
dea31012005-04-17 16:05:31 -05003251}
3252
3253int
James Smart2e0fef82007-06-17 19:56:36 -05003254lpfc_els_handle_rscn(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05003255{
3256 struct lpfc_nodelist *ndlp;
James Smart2e0fef82007-06-17 19:56:36 -05003257 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05003258
James Smart92d7f7b2007-06-17 19:56:38 -05003259 /* Ignore RSCN if the port is being torn down. */
3260 if (vport->load_flag & FC_UNLOADING) {
3261 lpfc_els_flush_rscn(vport);
3262 return 0;
3263 }
3264
dea31012005-04-17 16:05:31 -05003265 /* Start timer for RSCN processing */
James Smart2e0fef82007-06-17 19:56:36 -05003266 lpfc_set_disctmo(vport);
dea31012005-04-17 16:05:31 -05003267
3268 /* RSCN processed */
James Smarte8b62012007-08-02 11:10:09 -04003269 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
3270 "0215 RSCN processed Data: x%x x%x x%x x%x\n",
3271 vport->fc_flag, 0, vport->fc_rscn_id_cnt,
3272 vport->port_state);
dea31012005-04-17 16:05:31 -05003273
3274 /* To process RSCN, first compare RSCN data with NameServer */
James Smart2e0fef82007-06-17 19:56:36 -05003275 vport->fc_ns_retry = 0;
James Smart0ff10d42008-01-11 01:52:36 -05003276 vport->num_disc_nodes = 0;
3277
James Smart2e0fef82007-06-17 19:56:36 -05003278 ndlp = lpfc_findnode_did(vport, NameServer_DID);
James Smarte47c9092008-02-08 18:49:26 -05003279 if (ndlp && NLP_CHK_NODE_ACT(ndlp)
3280 && ndlp->nlp_state == NLP_STE_UNMAPPED_NODE) {
dea31012005-04-17 16:05:31 -05003281 /* Good ndlp, issue CT Request to NameServer */
James Smart92d7f7b2007-06-17 19:56:38 -05003282 if (lpfc_ns_cmd(vport, SLI_CTNS_GID_FT, 0, 0) == 0)
dea31012005-04-17 16:05:31 -05003283 /* Wait for NameServer query cmpl before we can
3284 continue */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003285 return 1;
dea31012005-04-17 16:05:31 -05003286 } else {
3287 /* If login to NameServer does not exist, issue one */
3288 /* Good status, issue PLOGI to NameServer */
James Smart2e0fef82007-06-17 19:56:36 -05003289 ndlp = lpfc_findnode_did(vport, NameServer_DID);
James Smarte47c9092008-02-08 18:49:26 -05003290 if (ndlp && NLP_CHK_NODE_ACT(ndlp))
dea31012005-04-17 16:05:31 -05003291 /* Wait for NameServer login cmpl before we can
3292 continue */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003293 return 1;
James Smart2e0fef82007-06-17 19:56:36 -05003294
James Smarte47c9092008-02-08 18:49:26 -05003295 if (ndlp) {
3296 ndlp = lpfc_enable_node(vport, ndlp,
3297 NLP_STE_PLOGI_ISSUE);
3298 if (!ndlp) {
3299 lpfc_els_flush_rscn(vport);
3300 return 0;
3301 }
3302 ndlp->nlp_prev_state = NLP_STE_UNUSED_NODE;
dea31012005-04-17 16:05:31 -05003303 } else {
James Smarte47c9092008-02-08 18:49:26 -05003304 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
3305 if (!ndlp) {
3306 lpfc_els_flush_rscn(vport);
3307 return 0;
3308 }
James Smart2e0fef82007-06-17 19:56:36 -05003309 lpfc_nlp_init(vport, ndlp, NameServer_DID);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003310 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05003311 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
dea31012005-04-17 16:05:31 -05003312 }
James Smarte47c9092008-02-08 18:49:26 -05003313 ndlp->nlp_type |= NLP_FABRIC;
3314 lpfc_issue_els_plogi(vport, NameServer_DID, 0);
3315 /* Wait for NameServer login cmpl before we can
3316 * continue
3317 */
3318 return 1;
dea31012005-04-17 16:05:31 -05003319 }
3320
James Smart2e0fef82007-06-17 19:56:36 -05003321 lpfc_els_flush_rscn(vport);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003322 return 0;
dea31012005-04-17 16:05:31 -05003323}
3324
3325static int
James Smart2e0fef82007-06-17 19:56:36 -05003326lpfc_els_rcv_flogi(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
James Smart51ef4c22007-08-02 11:10:31 -04003327 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05003328{
James Smart2e0fef82007-06-17 19:56:36 -05003329 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
3330 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05003331 struct lpfc_dmabuf *pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
3332 uint32_t *lp = (uint32_t *) pcmd->virt;
3333 IOCB_t *icmd = &cmdiocb->iocb;
3334 struct serv_parm *sp;
3335 LPFC_MBOXQ_t *mbox;
3336 struct ls_rjt stat;
3337 uint32_t cmd, did;
3338 int rc;
3339
3340 cmd = *lp++;
3341 sp = (struct serv_parm *) lp;
3342
3343 /* FLOGI received */
3344
James Smart2e0fef82007-06-17 19:56:36 -05003345 lpfc_set_disctmo(vport);
dea31012005-04-17 16:05:31 -05003346
3347 if (phba->fc_topology == TOPOLOGY_LOOP) {
3348 /* We should never receive a FLOGI in loop mode, ignore it */
3349 did = icmd->un.elsreq64.remoteID;
3350
3351 /* An FLOGI ELS command <elsCmd> was received from DID <did> in
3352 Loop Mode */
James Smarte8b62012007-08-02 11:10:09 -04003353 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
3354 "0113 An FLOGI ELS command x%x was "
3355 "received from DID x%x in Loop Mode\n",
3356 cmd, did);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003357 return 1;
dea31012005-04-17 16:05:31 -05003358 }
3359
3360 did = Fabric_DID;
3361
James Smart2e0fef82007-06-17 19:56:36 -05003362 if ((lpfc_check_sparm(vport, ndlp, sp, CLASS3))) {
dea31012005-04-17 16:05:31 -05003363 /* For a FLOGI we accept, then if our portname is greater
3364 * then the remote portname we initiate Nport login.
3365 */
3366
James Smart2e0fef82007-06-17 19:56:36 -05003367 rc = memcmp(&vport->fc_portname, &sp->portName,
James Smart92d7f7b2007-06-17 19:56:38 -05003368 sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -05003369
3370 if (!rc) {
James Smart2e0fef82007-06-17 19:56:36 -05003371 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
3372 if (!mbox)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003373 return 1;
James Smart2e0fef82007-06-17 19:56:36 -05003374
dea31012005-04-17 16:05:31 -05003375 lpfc_linkdown(phba);
3376 lpfc_init_link(phba, mbox,
3377 phba->cfg_topology,
3378 phba->cfg_link_speed);
3379 mbox->mb.un.varInitLnk.lipsr_AL_PA = 0;
3380 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
James Smarted957682007-06-17 19:56:37 -05003381 mbox->vport = vport;
James Smart0b727fe2007-10-27 13:37:25 -04003382 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
James Smart5b8bd0c2007-04-25 09:52:49 -04003383 lpfc_set_loopback_flag(phba);
dea31012005-04-17 16:05:31 -05003384 if (rc == MBX_NOT_FINISHED) {
James Smart329f9bc2007-04-25 09:53:01 -04003385 mempool_free(mbox, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -05003386 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003387 return 1;
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05003388 } else if (rc > 0) { /* greater than */
James Smart2e0fef82007-06-17 19:56:36 -05003389 spin_lock_irq(shost->host_lock);
3390 vport->fc_flag |= FC_PT2PT_PLOGI;
3391 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05003392 }
James Smart2e0fef82007-06-17 19:56:36 -05003393 spin_lock_irq(shost->host_lock);
3394 vport->fc_flag |= FC_PT2PT;
3395 vport->fc_flag &= ~(FC_FABRIC | FC_PUBLIC_LOOP);
3396 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05003397 } else {
3398 /* Reject this request because invalid parameters */
3399 stat.un.b.lsRjtRsvd0 = 0;
3400 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
3401 stat.un.b.lsRjtRsnCodeExp = LSEXP_SPARM_OPTIONS;
3402 stat.un.b.vendorUnique = 0;
James Smart858c9f62007-06-17 19:56:39 -05003403 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp,
3404 NULL);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003405 return 1;
dea31012005-04-17 16:05:31 -05003406 }
3407
3408 /* Send back ACC */
James Smart51ef4c22007-08-02 11:10:31 -04003409 lpfc_els_rsp_acc(vport, ELS_CMD_PLOGI, cmdiocb, ndlp, NULL);
dea31012005-04-17 16:05:31 -05003410
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003411 return 0;
dea31012005-04-17 16:05:31 -05003412}
3413
3414static int
James Smart2e0fef82007-06-17 19:56:36 -05003415lpfc_els_rcv_rnid(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
3416 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05003417{
3418 struct lpfc_dmabuf *pcmd;
3419 uint32_t *lp;
3420 IOCB_t *icmd;
3421 RNID *rn;
3422 struct ls_rjt stat;
3423 uint32_t cmd, did;
3424
3425 icmd = &cmdiocb->iocb;
3426 did = icmd->un.elsreq64.remoteID;
3427 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
3428 lp = (uint32_t *) pcmd->virt;
3429
3430 cmd = *lp++;
3431 rn = (RNID *) lp;
3432
3433 /* RNID received */
3434
3435 switch (rn->Format) {
3436 case 0:
3437 case RNID_TOPOLOGY_DISC:
3438 /* Send back ACC */
James Smart2e0fef82007-06-17 19:56:36 -05003439 lpfc_els_rsp_rnid_acc(vport, rn->Format, cmdiocb, ndlp);
dea31012005-04-17 16:05:31 -05003440 break;
3441 default:
3442 /* Reject this request because format not supported */
3443 stat.un.b.lsRjtRsvd0 = 0;
3444 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
3445 stat.un.b.lsRjtRsnCodeExp = LSEXP_CANT_GIVE_DATA;
3446 stat.un.b.vendorUnique = 0;
James Smart858c9f62007-06-17 19:56:39 -05003447 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp,
3448 NULL);
dea31012005-04-17 16:05:31 -05003449 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003450 return 0;
dea31012005-04-17 16:05:31 -05003451}
3452
3453static int
James Smart2e0fef82007-06-17 19:56:36 -05003454lpfc_els_rcv_lirr(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
3455 struct lpfc_nodelist *ndlp)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05003456{
3457 struct ls_rjt stat;
3458
3459 /* For now, unconditionally reject this command */
3460 stat.un.b.lsRjtRsvd0 = 0;
3461 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
3462 stat.un.b.lsRjtRsnCodeExp = LSEXP_CANT_GIVE_DATA;
3463 stat.un.b.vendorUnique = 0;
James Smart858c9f62007-06-17 19:56:39 -05003464 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05003465 return 0;
3466}
3467
Jamie Wellnitz082c0262006-02-28 19:25:30 -05003468static void
James Smart329f9bc2007-04-25 09:53:01 -04003469lpfc_els_rsp_rps_acc(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05003470{
James Smart2e0fef82007-06-17 19:56:36 -05003471 struct lpfc_sli *psli = &phba->sli;
3472 struct lpfc_sli_ring *pring = &psli->ring[LPFC_ELS_RING];
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05003473 MAILBOX_t *mb;
3474 IOCB_t *icmd;
3475 RPS_RSP *rps_rsp;
3476 uint8_t *pcmd;
3477 struct lpfc_iocbq *elsiocb;
3478 struct lpfc_nodelist *ndlp;
3479 uint16_t xri, status;
3480 uint32_t cmdsize;
3481
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05003482 mb = &pmb->mb;
3483
3484 ndlp = (struct lpfc_nodelist *) pmb->context2;
3485 xri = (uint16_t) ((unsigned long)(pmb->context1));
Randy Dunlap041976f2006-06-25 01:58:51 -07003486 pmb->context1 = NULL;
3487 pmb->context2 = NULL;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05003488
3489 if (mb->mbxStatus) {
James Smart329f9bc2007-04-25 09:53:01 -04003490 mempool_free(pmb, phba->mbox_mem_pool);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05003491 return;
3492 }
3493
3494 cmdsize = sizeof(RPS_RSP) + sizeof(uint32_t);
James Smart329f9bc2007-04-25 09:53:01 -04003495 mempool_free(pmb, phba->mbox_mem_pool);
James Smart2e0fef82007-06-17 19:56:36 -05003496 elsiocb = lpfc_prep_els_iocb(phba->pport, 0, cmdsize,
3497 lpfc_max_els_tries, ndlp,
3498 ndlp->nlp_DID, ELS_CMD_ACC);
James Smartfa4066b2008-01-11 01:53:27 -05003499
3500 /* Decrement the ndlp reference count from previous mbox command */
James Smart329f9bc2007-04-25 09:53:01 -04003501 lpfc_nlp_put(ndlp);
James Smartfa4066b2008-01-11 01:53:27 -05003502
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003503 if (!elsiocb)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05003504 return;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05003505
3506 icmd = &elsiocb->iocb;
3507 icmd->ulpContext = xri;
3508
3509 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
3510 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
James Smart92d7f7b2007-06-17 19:56:38 -05003511 pcmd += sizeof(uint32_t); /* Skip past command */
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05003512 rps_rsp = (RPS_RSP *)pcmd;
3513
3514 if (phba->fc_topology != TOPOLOGY_LOOP)
3515 status = 0x10;
3516 else
3517 status = 0x8;
James Smart2e0fef82007-06-17 19:56:36 -05003518 if (phba->pport->fc_flag & FC_FABRIC)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05003519 status |= 0x4;
3520
3521 rps_rsp->rsvd1 = 0;
James Smart09372822008-01-11 01:52:54 -05003522 rps_rsp->portStatus = cpu_to_be16(status);
3523 rps_rsp->linkFailureCnt = cpu_to_be32(mb->un.varRdLnk.linkFailureCnt);
3524 rps_rsp->lossSyncCnt = cpu_to_be32(mb->un.varRdLnk.lossSyncCnt);
3525 rps_rsp->lossSignalCnt = cpu_to_be32(mb->un.varRdLnk.lossSignalCnt);
3526 rps_rsp->primSeqErrCnt = cpu_to_be32(mb->un.varRdLnk.primSeqErrCnt);
3527 rps_rsp->invalidXmitWord = cpu_to_be32(mb->un.varRdLnk.invalidXmitWord);
3528 rps_rsp->crcCnt = cpu_to_be32(mb->un.varRdLnk.crcCnt);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05003529 /* Xmit ELS RPS ACC response tag <ulpIoTag> */
James Smarte8b62012007-08-02 11:10:09 -04003530 lpfc_printf_vlog(ndlp->vport, KERN_INFO, LOG_ELS,
3531 "0118 Xmit ELS RPS ACC response tag x%x xri x%x, "
3532 "did x%x, nlp_flag x%x, nlp_state x%x, rpi x%x\n",
3533 elsiocb->iotag, elsiocb->iocb.ulpContext,
3534 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
3535 ndlp->nlp_rpi);
James Smart858c9f62007-06-17 19:56:39 -05003536 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05003537 phba->fc_stat.elsXmitACC++;
James Smarted957682007-06-17 19:56:37 -05003538 if (lpfc_sli_issue_iocb(phba, pring, elsiocb, 0) == IOCB_ERROR)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05003539 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05003540 return;
3541}
3542
3543static int
James Smart2e0fef82007-06-17 19:56:36 -05003544lpfc_els_rcv_rps(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
3545 struct lpfc_nodelist *ndlp)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05003546{
James Smart2e0fef82007-06-17 19:56:36 -05003547 struct lpfc_hba *phba = vport->phba;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05003548 uint32_t *lp;
3549 uint8_t flag;
3550 LPFC_MBOXQ_t *mbox;
3551 struct lpfc_dmabuf *pcmd;
3552 RPS *rps;
3553 struct ls_rjt stat;
3554
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05003555 if ((ndlp->nlp_state != NLP_STE_UNMAPPED_NODE) &&
3556 (ndlp->nlp_state != NLP_STE_MAPPED_NODE)) {
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05003557 stat.un.b.lsRjtRsvd0 = 0;
3558 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
3559 stat.un.b.lsRjtRsnCodeExp = LSEXP_CANT_GIVE_DATA;
3560 stat.un.b.vendorUnique = 0;
James Smart858c9f62007-06-17 19:56:39 -05003561 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp,
3562 NULL);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05003563 }
3564
3565 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
3566 lp = (uint32_t *) pcmd->virt;
3567 flag = (be32_to_cpu(*lp++) & 0xf);
3568 rps = (RPS *) lp;
3569
3570 if ((flag == 0) ||
3571 ((flag == 1) && (be32_to_cpu(rps->un.portNum) == 0)) ||
James Smart2e0fef82007-06-17 19:56:36 -05003572 ((flag == 2) && (memcmp(&rps->un.portName, &vport->fc_portname,
James Smart92d7f7b2007-06-17 19:56:38 -05003573 sizeof(struct lpfc_name)) == 0))) {
James Smart2e0fef82007-06-17 19:56:36 -05003574
James Smart92d7f7b2007-06-17 19:56:38 -05003575 printk("Fix me....\n");
3576 dump_stack();
James Smart2e0fef82007-06-17 19:56:36 -05003577 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_ATOMIC);
3578 if (mbox) {
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05003579 lpfc_read_lnk_stat(phba, mbox);
3580 mbox->context1 =
James Smart92d7f7b2007-06-17 19:56:38 -05003581 (void *)((unsigned long) cmdiocb->iocb.ulpContext);
James Smart329f9bc2007-04-25 09:53:01 -04003582 mbox->context2 = lpfc_nlp_get(ndlp);
James Smart92d7f7b2007-06-17 19:56:38 -05003583 mbox->vport = vport;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05003584 mbox->mbox_cmpl = lpfc_els_rsp_rps_acc;
James Smartfa4066b2008-01-11 01:53:27 -05003585 if (lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT)
James Smart0b727fe2007-10-27 13:37:25 -04003586 != MBX_NOT_FINISHED)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05003587 /* Mbox completion will send ELS Response */
3588 return 0;
James Smartfa4066b2008-01-11 01:53:27 -05003589 /* Decrement reference count used for the failed mbox
3590 * command.
3591 */
James Smart329f9bc2007-04-25 09:53:01 -04003592 lpfc_nlp_put(ndlp);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05003593 mempool_free(mbox, phba->mbox_mem_pool);
3594 }
3595 }
3596 stat.un.b.lsRjtRsvd0 = 0;
3597 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
3598 stat.un.b.lsRjtRsnCodeExp = LSEXP_CANT_GIVE_DATA;
3599 stat.un.b.vendorUnique = 0;
James Smart858c9f62007-06-17 19:56:39 -05003600 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05003601 return 0;
3602}
3603
Jamie Wellnitz082c0262006-02-28 19:25:30 -05003604static int
James Smart2e0fef82007-06-17 19:56:36 -05003605lpfc_els_rsp_rpl_acc(struct lpfc_vport *vport, uint16_t cmdsize,
3606 struct lpfc_iocbq *oldiocb, struct lpfc_nodelist *ndlp)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05003607{
James Smart2e0fef82007-06-17 19:56:36 -05003608 struct lpfc_hba *phba = vport->phba;
3609 IOCB_t *icmd, *oldcmd;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05003610 RPL_RSP rpl_rsp;
3611 struct lpfc_iocbq *elsiocb;
James Smart2e0fef82007-06-17 19:56:36 -05003612 struct lpfc_sli *psli = &phba->sli;
3613 struct lpfc_sli_ring *pring = &psli->ring[LPFC_ELS_RING];
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05003614 uint8_t *pcmd;
3615
James Smart2e0fef82007-06-17 19:56:36 -05003616 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry, ndlp,
3617 ndlp->nlp_DID, ELS_CMD_ACC);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05003618
James Smart488d1462006-03-07 15:02:37 -05003619 if (!elsiocb)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05003620 return 1;
James Smart488d1462006-03-07 15:02:37 -05003621
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05003622 icmd = &elsiocb->iocb;
3623 oldcmd = &oldiocb->iocb;
3624 icmd->ulpContext = oldcmd->ulpContext; /* Xri */
3625
3626 pcmd = (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
3627 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
James Smart92d7f7b2007-06-17 19:56:38 -05003628 pcmd += sizeof(uint16_t);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05003629 *((uint16_t *)(pcmd)) = be16_to_cpu(cmdsize);
3630 pcmd += sizeof(uint16_t);
3631
3632 /* Setup the RPL ACC payload */
3633 rpl_rsp.listLen = be32_to_cpu(1);
3634 rpl_rsp.index = 0;
3635 rpl_rsp.port_num_blk.portNum = 0;
James Smart2e0fef82007-06-17 19:56:36 -05003636 rpl_rsp.port_num_blk.portID = be32_to_cpu(vport->fc_myDID);
3637 memcpy(&rpl_rsp.port_num_blk.portName, &vport->fc_portname,
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05003638 sizeof(struct lpfc_name));
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05003639 memcpy(pcmd, &rpl_rsp, cmdsize - sizeof(uint32_t));
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05003640 /* Xmit ELS RPL ACC response tag <ulpIoTag> */
James Smarte8b62012007-08-02 11:10:09 -04003641 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
3642 "0120 Xmit ELS RPL ACC response tag x%x "
3643 "xri x%x, did x%x, nlp_flag x%x, nlp_state x%x, "
3644 "rpi x%x\n",
3645 elsiocb->iotag, elsiocb->iocb.ulpContext,
3646 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
3647 ndlp->nlp_rpi);
James Smart858c9f62007-06-17 19:56:39 -05003648 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05003649 phba->fc_stat.elsXmitACC++;
3650 if (lpfc_sli_issue_iocb(phba, pring, elsiocb, 0) == IOCB_ERROR) {
3651 lpfc_els_free_iocb(phba, elsiocb);
3652 return 1;
3653 }
3654 return 0;
3655}
3656
3657static int
James Smart2e0fef82007-06-17 19:56:36 -05003658lpfc_els_rcv_rpl(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
3659 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05003660{
3661 struct lpfc_dmabuf *pcmd;
3662 uint32_t *lp;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05003663 uint32_t maxsize;
3664 uint16_t cmdsize;
3665 RPL *rpl;
3666 struct ls_rjt stat;
dea31012005-04-17 16:05:31 -05003667
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05003668 if ((ndlp->nlp_state != NLP_STE_UNMAPPED_NODE) &&
3669 (ndlp->nlp_state != NLP_STE_MAPPED_NODE)) {
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05003670 stat.un.b.lsRjtRsvd0 = 0;
3671 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
3672 stat.un.b.lsRjtRsnCodeExp = LSEXP_CANT_GIVE_DATA;
3673 stat.un.b.vendorUnique = 0;
James Smart858c9f62007-06-17 19:56:39 -05003674 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp,
3675 NULL);
dea31012005-04-17 16:05:31 -05003676 }
3677
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05003678 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
3679 lp = (uint32_t *) pcmd->virt;
3680 rpl = (RPL *) (lp + 1);
3681
3682 maxsize = be32_to_cpu(rpl->maxsize);
3683
3684 /* We support only one port */
3685 if ((rpl->index == 0) &&
3686 ((maxsize == 0) ||
3687 ((maxsize * sizeof(uint32_t)) >= sizeof(RPL_RSP)))) {
3688 cmdsize = sizeof(uint32_t) + sizeof(RPL_RSP);
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05003689 } else {
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05003690 cmdsize = sizeof(uint32_t) + maxsize * sizeof(uint32_t);
3691 }
James Smart2e0fef82007-06-17 19:56:36 -05003692 lpfc_els_rsp_rpl_acc(vport, cmdsize, cmdiocb, ndlp);
dea31012005-04-17 16:05:31 -05003693
3694 return 0;
3695}
3696
3697static int
James Smart2e0fef82007-06-17 19:56:36 -05003698lpfc_els_rcv_farp(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
3699 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05003700{
3701 struct lpfc_dmabuf *pcmd;
3702 uint32_t *lp;
3703 IOCB_t *icmd;
3704 FARP *fp;
3705 uint32_t cmd, cnt, did;
3706
3707 icmd = &cmdiocb->iocb;
3708 did = icmd->un.elsreq64.remoteID;
3709 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
3710 lp = (uint32_t *) pcmd->virt;
3711
3712 cmd = *lp++;
3713 fp = (FARP *) lp;
dea31012005-04-17 16:05:31 -05003714 /* FARP-REQ received from DID <did> */
James Smarte8b62012007-08-02 11:10:09 -04003715 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
3716 "0601 FARP-REQ received from DID x%x\n", did);
dea31012005-04-17 16:05:31 -05003717 /* We will only support match on WWPN or WWNN */
3718 if (fp->Mflags & ~(FARP_MATCH_NODE | FARP_MATCH_PORT)) {
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003719 return 0;
dea31012005-04-17 16:05:31 -05003720 }
3721
3722 cnt = 0;
3723 /* If this FARP command is searching for my portname */
3724 if (fp->Mflags & FARP_MATCH_PORT) {
James Smart2e0fef82007-06-17 19:56:36 -05003725 if (memcmp(&fp->RportName, &vport->fc_portname,
James Smart92d7f7b2007-06-17 19:56:38 -05003726 sizeof(struct lpfc_name)) == 0)
dea31012005-04-17 16:05:31 -05003727 cnt = 1;
3728 }
3729
3730 /* If this FARP command is searching for my nodename */
3731 if (fp->Mflags & FARP_MATCH_NODE) {
James Smart2e0fef82007-06-17 19:56:36 -05003732 if (memcmp(&fp->RnodeName, &vport->fc_nodename,
James Smart92d7f7b2007-06-17 19:56:38 -05003733 sizeof(struct lpfc_name)) == 0)
dea31012005-04-17 16:05:31 -05003734 cnt = 1;
3735 }
3736
3737 if (cnt) {
3738 if ((ndlp->nlp_state == NLP_STE_UNMAPPED_NODE) ||
3739 (ndlp->nlp_state == NLP_STE_MAPPED_NODE)) {
3740 /* Log back into the node before sending the FARP. */
3741 if (fp->Rflags & FARP_REQUEST_PLOGI) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003742 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05003743 lpfc_nlp_set_state(vport, ndlp,
James Smartde0c5b32007-04-25 09:52:27 -04003744 NLP_STE_PLOGI_ISSUE);
James Smart2e0fef82007-06-17 19:56:36 -05003745 lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0);
dea31012005-04-17 16:05:31 -05003746 }
3747
3748 /* Send a FARP response to that node */
James Smart2e0fef82007-06-17 19:56:36 -05003749 if (fp->Rflags & FARP_REQUEST_FARPR)
3750 lpfc_issue_els_farpr(vport, did, 0);
dea31012005-04-17 16:05:31 -05003751 }
3752 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003753 return 0;
dea31012005-04-17 16:05:31 -05003754}
3755
3756static int
James Smart2e0fef82007-06-17 19:56:36 -05003757lpfc_els_rcv_farpr(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
3758 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05003759{
3760 struct lpfc_dmabuf *pcmd;
3761 uint32_t *lp;
3762 IOCB_t *icmd;
3763 uint32_t cmd, did;
3764
3765 icmd = &cmdiocb->iocb;
3766 did = icmd->un.elsreq64.remoteID;
3767 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
3768 lp = (uint32_t *) pcmd->virt;
3769
3770 cmd = *lp++;
3771 /* FARP-RSP received from DID <did> */
James Smarte8b62012007-08-02 11:10:09 -04003772 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
3773 "0600 FARP-RSP received from DID x%x\n", did);
dea31012005-04-17 16:05:31 -05003774 /* ACCEPT the Farp resp request */
James Smart51ef4c22007-08-02 11:10:31 -04003775 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
dea31012005-04-17 16:05:31 -05003776
3777 return 0;
3778}
3779
3780static int
James Smart2e0fef82007-06-17 19:56:36 -05003781lpfc_els_rcv_fan(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
3782 struct lpfc_nodelist *fan_ndlp)
dea31012005-04-17 16:05:31 -05003783{
3784 struct lpfc_dmabuf *pcmd;
3785 uint32_t *lp;
3786 IOCB_t *icmd;
dea31012005-04-17 16:05:31 -05003787 uint32_t cmd, did;
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003788 FAN *fp;
3789 struct lpfc_nodelist *ndlp, *next_ndlp;
James Smart2e0fef82007-06-17 19:56:36 -05003790 struct lpfc_hba *phba = vport->phba;
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003791
3792 /* FAN received */
James Smarte8b62012007-08-02 11:10:09 -04003793 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
3794 "0265 FAN received\n");
dea31012005-04-17 16:05:31 -05003795 icmd = &cmdiocb->iocb;
3796 did = icmd->un.elsreq64.remoteID;
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003797 pcmd = (struct lpfc_dmabuf *)cmdiocb->context2;
3798 lp = (uint32_t *)pcmd->virt;
dea31012005-04-17 16:05:31 -05003799
3800 cmd = *lp++;
James Smart92d7f7b2007-06-17 19:56:38 -05003801 fp = (FAN *) lp;
dea31012005-04-17 16:05:31 -05003802
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003803 /* FAN received; Fan does not have a reply sequence */
dea31012005-04-17 16:05:31 -05003804
James Smart2e0fef82007-06-17 19:56:36 -05003805 if (phba->pport->port_state == LPFC_LOCAL_CFG_LINK) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003806 if ((memcmp(&phba->fc_fabparam.nodeName, &fp->FnodeName,
3807 sizeof(struct lpfc_name)) != 0) ||
3808 (memcmp(&phba->fc_fabparam.portName, &fp->FportName,
3809 sizeof(struct lpfc_name)) != 0)) {
3810 /*
3811 * This node has switched fabrics. FLOGI is required
3812 * Clean up the old rpi's
dea31012005-04-17 16:05:31 -05003813 */
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003814
3815 list_for_each_entry_safe(ndlp, next_ndlp,
James Smart2e0fef82007-06-17 19:56:36 -05003816 &vport->fc_nodes, nlp_listp) {
James Smarte47c9092008-02-08 18:49:26 -05003817 if (!NLP_CHK_NODE_ACT(ndlp))
3818 continue;
James Smart685f0bf2007-04-25 09:53:08 -04003819 if (ndlp->nlp_state != NLP_STE_NPR_NODE)
3820 continue;
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003821 if (ndlp->nlp_type & NLP_FABRIC) {
3822 /*
3823 * Clean up old Fabric, Nameserver and
3824 * other NLP_FABRIC logins
3825 */
James Smart2e0fef82007-06-17 19:56:36 -05003826 lpfc_drop_node(vport, ndlp);
James Smart87af33f2007-10-27 13:37:43 -04003827
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05003828 } else if (!(ndlp->nlp_flag & NLP_NPR_ADISC)) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003829 /* Fail outstanding I/O now since this
3830 * device is marked for PLOGI
3831 */
James Smart2e0fef82007-06-17 19:56:36 -05003832 lpfc_unreg_rpi(vport, ndlp);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003833 }
3834 }
3835
James Smart2e0fef82007-06-17 19:56:36 -05003836 lpfc_initial_flogi(vport);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003837 return 0;
dea31012005-04-17 16:05:31 -05003838 }
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003839 /* Discovery not needed,
3840 * move the nodes to their original state.
3841 */
James Smart2e0fef82007-06-17 19:56:36 -05003842 list_for_each_entry_safe(ndlp, next_ndlp, &vport->fc_nodes,
James Smart685f0bf2007-04-25 09:53:08 -04003843 nlp_listp) {
James Smarte47c9092008-02-08 18:49:26 -05003844 if (!NLP_CHK_NODE_ACT(ndlp))
3845 continue;
James Smart685f0bf2007-04-25 09:53:08 -04003846 if (ndlp->nlp_state != NLP_STE_NPR_NODE)
3847 continue;
dea31012005-04-17 16:05:31 -05003848
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003849 switch (ndlp->nlp_prev_state) {
3850 case NLP_STE_UNMAPPED_NODE:
3851 ndlp->nlp_prev_state = NLP_STE_NPR_NODE;
James Smart2e0fef82007-06-17 19:56:36 -05003852 lpfc_nlp_set_state(vport, ndlp,
James Smartde0c5b32007-04-25 09:52:27 -04003853 NLP_STE_UNMAPPED_NODE);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003854 break;
3855
3856 case NLP_STE_MAPPED_NODE:
3857 ndlp->nlp_prev_state = NLP_STE_NPR_NODE;
James Smart2e0fef82007-06-17 19:56:36 -05003858 lpfc_nlp_set_state(vport, ndlp,
James Smartde0c5b32007-04-25 09:52:27 -04003859 NLP_STE_MAPPED_NODE);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003860 break;
3861
3862 default:
3863 break;
3864 }
3865 }
3866
3867 /* Start discovery - this should just do CLEAR_LA */
James Smart2e0fef82007-06-17 19:56:36 -05003868 lpfc_disc_start(vport);
dea31012005-04-17 16:05:31 -05003869 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003870 return 0;
dea31012005-04-17 16:05:31 -05003871}
3872
3873void
3874lpfc_els_timeout(unsigned long ptr)
3875{
James Smart2e0fef82007-06-17 19:56:36 -05003876 struct lpfc_vport *vport = (struct lpfc_vport *) ptr;
3877 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05003878 unsigned long iflag;
3879
James Smart2e0fef82007-06-17 19:56:36 -05003880 spin_lock_irqsave(&vport->work_port_lock, iflag);
3881 if ((vport->work_port_events & WORKER_ELS_TMO) == 0) {
3882 vport->work_port_events |= WORKER_ELS_TMO;
James Smart92d7f7b2007-06-17 19:56:38 -05003883 spin_unlock_irqrestore(&vport->work_port_lock, iflag);
3884
3885 spin_lock_irqsave(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -05003886 if (phba->work_wait)
James Smart92d7f7b2007-06-17 19:56:38 -05003887 lpfc_worker_wake_up(phba);
3888 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -05003889 }
James Smart92d7f7b2007-06-17 19:56:38 -05003890 else
3891 spin_unlock_irqrestore(&vport->work_port_lock, iflag);
dea31012005-04-17 16:05:31 -05003892 return;
3893}
3894
3895void
James Smart2e0fef82007-06-17 19:56:36 -05003896lpfc_els_timeout_handler(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05003897{
James Smart2e0fef82007-06-17 19:56:36 -05003898 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05003899 struct lpfc_sli_ring *pring;
3900 struct lpfc_iocbq *tmp_iocb, *piocb;
3901 IOCB_t *cmd = NULL;
3902 struct lpfc_dmabuf *pcmd;
James Smart2e0fef82007-06-17 19:56:36 -05003903 uint32_t els_command = 0;
dea31012005-04-17 16:05:31 -05003904 uint32_t timeout;
James Smart2e0fef82007-06-17 19:56:36 -05003905 uint32_t remote_ID = 0xffffffff;
dea31012005-04-17 16:05:31 -05003906
dea31012005-04-17 16:05:31 -05003907 /* If the timer is already canceled do nothing */
James Smart2e0fef82007-06-17 19:56:36 -05003908 if ((vport->work_port_events & WORKER_ELS_TMO) == 0) {
dea31012005-04-17 16:05:31 -05003909 return;
3910 }
James Smart2e0fef82007-06-17 19:56:36 -05003911 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05003912 timeout = (uint32_t)(phba->fc_ratov << 1);
3913
3914 pring = &phba->sli.ring[LPFC_ELS_RING];
dea31012005-04-17 16:05:31 -05003915
3916 list_for_each_entry_safe(piocb, tmp_iocb, &pring->txcmplq, list) {
3917 cmd = &piocb->iocb;
3918
James Smart2e0fef82007-06-17 19:56:36 -05003919 if ((piocb->iocb_flag & LPFC_IO_LIBDFC) != 0 ||
3920 piocb->iocb.ulpCommand == CMD_ABORT_XRI_CN ||
3921 piocb->iocb.ulpCommand == CMD_CLOSE_XRI_CN)
dea31012005-04-17 16:05:31 -05003922 continue;
James Smart2e0fef82007-06-17 19:56:36 -05003923
3924 if (piocb->vport != vport)
3925 continue;
3926
dea31012005-04-17 16:05:31 -05003927 pcmd = (struct lpfc_dmabuf *) piocb->context2;
James Smart2e0fef82007-06-17 19:56:36 -05003928 if (pcmd)
3929 els_command = *(uint32_t *) (pcmd->virt);
dea31012005-04-17 16:05:31 -05003930
James Smart92d7f7b2007-06-17 19:56:38 -05003931 if (els_command == ELS_CMD_FARP ||
3932 els_command == ELS_CMD_FARPR ||
3933 els_command == ELS_CMD_FDISC)
dea31012005-04-17 16:05:31 -05003934 continue;
James Smart92d7f7b2007-06-17 19:56:38 -05003935
3936 if (vport != piocb->vport)
3937 continue;
dea31012005-04-17 16:05:31 -05003938
3939 if (piocb->drvrTimeout > 0) {
James Smart92d7f7b2007-06-17 19:56:38 -05003940 if (piocb->drvrTimeout >= timeout)
dea31012005-04-17 16:05:31 -05003941 piocb->drvrTimeout -= timeout;
James Smart92d7f7b2007-06-17 19:56:38 -05003942 else
dea31012005-04-17 16:05:31 -05003943 piocb->drvrTimeout = 0;
dea31012005-04-17 16:05:31 -05003944 continue;
3945 }
3946
James Smart2e0fef82007-06-17 19:56:36 -05003947 remote_ID = 0xffffffff;
3948 if (cmd->ulpCommand != CMD_GEN_REQUEST64_CR)
dea31012005-04-17 16:05:31 -05003949 remote_ID = cmd->un.elsreq64.remoteID;
James Smart2e0fef82007-06-17 19:56:36 -05003950 else {
3951 struct lpfc_nodelist *ndlp;
3952 ndlp = __lpfc_findnode_rpi(vport, cmd->ulpContext);
James Smart58da1ff2008-04-07 10:15:56 -04003953 if (ndlp && NLP_CHK_NODE_ACT(ndlp))
James Smart2e0fef82007-06-17 19:56:36 -05003954 remote_ID = ndlp->nlp_DID;
dea31012005-04-17 16:05:31 -05003955 }
James Smarte8b62012007-08-02 11:10:09 -04003956 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
3957 "0127 ELS timeout Data: x%x x%x x%x "
3958 "x%x\n", els_command,
3959 remote_ID, cmd->ulpCommand, cmd->ulpIoTag);
James Smart07951072007-04-25 09:51:38 -04003960 lpfc_sli_issue_abort_iotag(phba, pring, piocb);
dea31012005-04-17 16:05:31 -05003961 }
James Smart2e0fef82007-06-17 19:56:36 -05003962 spin_unlock_irq(&phba->hbalock);
James Smart5a0e3262006-07-06 15:49:16 -04003963
James Smart2e0fef82007-06-17 19:56:36 -05003964 if (phba->sli.ring[LPFC_ELS_RING].txcmplq_cnt)
3965 mod_timer(&vport->els_tmofunc, jiffies + HZ * timeout);
dea31012005-04-17 16:05:31 -05003966}
3967
3968void
James Smart2e0fef82007-06-17 19:56:36 -05003969lpfc_els_flush_cmd(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05003970{
James Smart2534ba72007-04-25 09:52:20 -04003971 LIST_HEAD(completions);
James Smart2e0fef82007-06-17 19:56:36 -05003972 struct lpfc_hba *phba = vport->phba;
James Smart329f9bc2007-04-25 09:53:01 -04003973 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
dea31012005-04-17 16:05:31 -05003974 struct lpfc_iocbq *tmp_iocb, *piocb;
3975 IOCB_t *cmd = NULL;
James Smart92d7f7b2007-06-17 19:56:38 -05003976
3977 lpfc_fabric_abort_vport(vport);
dea31012005-04-17 16:05:31 -05003978
James Smart2e0fef82007-06-17 19:56:36 -05003979 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05003980 list_for_each_entry_safe(piocb, tmp_iocb, &pring->txq, list) {
3981 cmd = &piocb->iocb;
3982
3983 if (piocb->iocb_flag & LPFC_IO_LIBDFC) {
3984 continue;
3985 }
3986
3987 /* Do not flush out the QUE_RING and ABORT/CLOSE iocbs */
James Smart329f9bc2007-04-25 09:53:01 -04003988 if (cmd->ulpCommand == CMD_QUE_RING_BUF_CN ||
3989 cmd->ulpCommand == CMD_QUE_RING_BUF64_CN ||
3990 cmd->ulpCommand == CMD_CLOSE_XRI_CN ||
3991 cmd->ulpCommand == CMD_ABORT_XRI_CN)
dea31012005-04-17 16:05:31 -05003992 continue;
dea31012005-04-17 16:05:31 -05003993
James Smart2e0fef82007-06-17 19:56:36 -05003994 if (piocb->vport != vport)
3995 continue;
3996
James Smart2534ba72007-04-25 09:52:20 -04003997 list_move_tail(&piocb->list, &completions);
James Smart1dcb58e2007-04-25 09:51:30 -04003998 pring->txq_cnt--;
dea31012005-04-17 16:05:31 -05003999 }
4000
4001 list_for_each_entry_safe(piocb, tmp_iocb, &pring->txcmplq, list) {
dea31012005-04-17 16:05:31 -05004002 if (piocb->iocb_flag & LPFC_IO_LIBDFC) {
4003 continue;
4004 }
dea31012005-04-17 16:05:31 -05004005
James Smart2e0fef82007-06-17 19:56:36 -05004006 if (piocb->vport != vport)
4007 continue;
4008
James Smart07951072007-04-25 09:51:38 -04004009 lpfc_sli_issue_abort_iotag(phba, pring, piocb);
dea31012005-04-17 16:05:31 -05004010 }
James Smart2e0fef82007-06-17 19:56:36 -05004011 spin_unlock_irq(&phba->hbalock);
James Smart2534ba72007-04-25 09:52:20 -04004012
James Smart2e0fef82007-06-17 19:56:36 -05004013 while (!list_empty(&completions)) {
James Smart2534ba72007-04-25 09:52:20 -04004014 piocb = list_get_first(&completions, struct lpfc_iocbq, list);
4015 cmd = &piocb->iocb;
James Smart92d7f7b2007-06-17 19:56:38 -05004016 list_del_init(&piocb->list);
James Smart2534ba72007-04-25 09:52:20 -04004017
James Smart2e0fef82007-06-17 19:56:36 -05004018 if (!piocb->iocb_cmpl)
4019 lpfc_sli_release_iocbq(phba, piocb);
4020 else {
James Smart2534ba72007-04-25 09:52:20 -04004021 cmd->ulpStatus = IOSTAT_LOCAL_REJECT;
4022 cmd->un.ulpWord[4] = IOERR_SLI_ABORTED;
4023 (piocb->iocb_cmpl) (phba, piocb, piocb);
James Smart2e0fef82007-06-17 19:56:36 -05004024 }
James Smart2534ba72007-04-25 09:52:20 -04004025 }
4026
dea31012005-04-17 16:05:31 -05004027 return;
4028}
4029
James Smart549e55c2007-08-02 11:09:51 -04004030void
4031lpfc_els_flush_all_cmd(struct lpfc_hba *phba)
4032{
4033 LIST_HEAD(completions);
4034 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
4035 struct lpfc_iocbq *tmp_iocb, *piocb;
4036 IOCB_t *cmd = NULL;
4037
4038 lpfc_fabric_abort_hba(phba);
4039 spin_lock_irq(&phba->hbalock);
4040 list_for_each_entry_safe(piocb, tmp_iocb, &pring->txq, list) {
4041 cmd = &piocb->iocb;
4042 if (piocb->iocb_flag & LPFC_IO_LIBDFC)
4043 continue;
4044 /* Do not flush out the QUE_RING and ABORT/CLOSE iocbs */
4045 if (cmd->ulpCommand == CMD_QUE_RING_BUF_CN ||
4046 cmd->ulpCommand == CMD_QUE_RING_BUF64_CN ||
4047 cmd->ulpCommand == CMD_CLOSE_XRI_CN ||
4048 cmd->ulpCommand == CMD_ABORT_XRI_CN)
4049 continue;
4050 list_move_tail(&piocb->list, &completions);
4051 pring->txq_cnt--;
4052 }
4053 list_for_each_entry_safe(piocb, tmp_iocb, &pring->txcmplq, list) {
4054 if (piocb->iocb_flag & LPFC_IO_LIBDFC)
4055 continue;
4056 lpfc_sli_issue_abort_iotag(phba, pring, piocb);
4057 }
4058 spin_unlock_irq(&phba->hbalock);
4059 while (!list_empty(&completions)) {
4060 piocb = list_get_first(&completions, struct lpfc_iocbq, list);
4061 cmd = &piocb->iocb;
4062 list_del_init(&piocb->list);
4063 if (!piocb->iocb_cmpl)
4064 lpfc_sli_release_iocbq(phba, piocb);
4065 else {
4066 cmd->ulpStatus = IOSTAT_LOCAL_REJECT;
4067 cmd->un.ulpWord[4] = IOERR_SLI_ABORTED;
4068 (piocb->iocb_cmpl) (phba, piocb, piocb);
4069 }
4070 }
4071 return;
4072}
4073
James Smarted957682007-06-17 19:56:37 -05004074static void
4075lpfc_els_unsol_buffer(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
James Smart92d7f7b2007-06-17 19:56:38 -05004076 struct lpfc_vport *vport, struct lpfc_iocbq *elsiocb)
dea31012005-04-17 16:05:31 -05004077{
James Smart87af33f2007-10-27 13:37:43 -04004078 struct Scsi_Host *shost;
dea31012005-04-17 16:05:31 -05004079 struct lpfc_nodelist *ndlp;
dea31012005-04-17 16:05:31 -05004080 struct ls_rjt stat;
James Smart92d7f7b2007-06-17 19:56:38 -05004081 uint32_t *payload;
James Smart2e0fef82007-06-17 19:56:36 -05004082 uint32_t cmd, did, newnode, rjt_err = 0;
James Smarted957682007-06-17 19:56:37 -05004083 IOCB_t *icmd = &elsiocb->iocb;
dea31012005-04-17 16:05:31 -05004084
James Smarte47c9092008-02-08 18:49:26 -05004085 if (!vport || !(elsiocb->context2))
dea31012005-04-17 16:05:31 -05004086 goto dropit;
James Smart2e0fef82007-06-17 19:56:36 -05004087
dea31012005-04-17 16:05:31 -05004088 newnode = 0;
James Smart92d7f7b2007-06-17 19:56:38 -05004089 payload = ((struct lpfc_dmabuf *)elsiocb->context2)->virt;
4090 cmd = *payload;
James Smarted957682007-06-17 19:56:37 -05004091 if ((phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) == 0)
4092 lpfc_post_buffer(phba, pring, 1, 1);
dea31012005-04-17 16:05:31 -05004093
James Smart858c9f62007-06-17 19:56:39 -05004094 did = icmd->un.rcvels.remoteID;
4095 if (icmd->ulpStatus) {
4096 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
4097 "RCV Unsol ELS: status:x%x/x%x did:x%x",
4098 icmd->ulpStatus, icmd->un.ulpWord[4], did);
dea31012005-04-17 16:05:31 -05004099 goto dropit;
James Smart858c9f62007-06-17 19:56:39 -05004100 }
dea31012005-04-17 16:05:31 -05004101
4102 /* Check to see if link went down during discovery */
James Smarted957682007-06-17 19:56:37 -05004103 if (lpfc_els_chk_latt(vport))
dea31012005-04-17 16:05:31 -05004104 goto dropit;
dea31012005-04-17 16:05:31 -05004105
James Smart92d7f7b2007-06-17 19:56:38 -05004106 /* Ignore traffic recevied during vport shutdown. */
4107 if (vport->load_flag & FC_UNLOADING)
4108 goto dropit;
4109
James Smart2e0fef82007-06-17 19:56:36 -05004110 ndlp = lpfc_findnode_did(vport, did);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004111 if (!ndlp) {
dea31012005-04-17 16:05:31 -05004112 /* Cannot find existing Fabric ndlp, so allocate a new one */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004113 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
James Smarted957682007-06-17 19:56:37 -05004114 if (!ndlp)
dea31012005-04-17 16:05:31 -05004115 goto dropit;
dea31012005-04-17 16:05:31 -05004116
James Smart2e0fef82007-06-17 19:56:36 -05004117 lpfc_nlp_init(vport, ndlp, did);
James Smart98c9ea52007-10-27 13:37:33 -04004118 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
dea31012005-04-17 16:05:31 -05004119 newnode = 1;
James Smarte47c9092008-02-08 18:49:26 -05004120 if ((did & Fabric_DID_MASK) == Fabric_DID_MASK)
dea31012005-04-17 16:05:31 -05004121 ndlp->nlp_type |= NLP_FABRIC;
James Smart58da1ff2008-04-07 10:15:56 -04004122 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
4123 ndlp = lpfc_enable_node(vport, ndlp,
4124 NLP_STE_UNUSED_NODE);
4125 if (!ndlp)
4126 goto dropit;
4127 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
4128 newnode = 1;
4129 if ((did & Fabric_DID_MASK) == Fabric_DID_MASK)
4130 ndlp->nlp_type |= NLP_FABRIC;
4131 } else if (ndlp->nlp_state == NLP_STE_UNUSED_NODE) {
4132 /* This is similar to the new node path */
4133 ndlp = lpfc_nlp_get(ndlp);
4134 if (!ndlp)
4135 goto dropit;
4136 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
4137 newnode = 1;
James Smart87af33f2007-10-27 13:37:43 -04004138 }
dea31012005-04-17 16:05:31 -05004139
4140 phba->fc_stat.elsRcvFrame++;
James Smart329f9bc2007-04-25 09:53:01 -04004141 if (elsiocb->context1)
4142 lpfc_nlp_put(elsiocb->context1);
James Smarte47c9092008-02-08 18:49:26 -05004143
James Smart329f9bc2007-04-25 09:53:01 -04004144 elsiocb->context1 = lpfc_nlp_get(ndlp);
James Smart2e0fef82007-06-17 19:56:36 -05004145 elsiocb->vport = vport;
dea31012005-04-17 16:05:31 -05004146
4147 if ((cmd & ELS_CMD_MASK) == ELS_CMD_RSCN) {
4148 cmd &= ELS_CMD_MASK;
4149 }
4150 /* ELS command <elsCmd> received from NPORT <did> */
James Smarte8b62012007-08-02 11:10:09 -04004151 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
4152 "0112 ELS command x%x received from NPORT x%x "
4153 "Data: x%x\n", cmd, did, vport->port_state);
dea31012005-04-17 16:05:31 -05004154 switch (cmd) {
4155 case ELS_CMD_PLOGI:
James Smart858c9f62007-06-17 19:56:39 -05004156 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
4157 "RCV PLOGI: did:x%x/ste:x%x flg:x%x",
4158 did, vport->port_state, ndlp->nlp_flag);
4159
dea31012005-04-17 16:05:31 -05004160 phba->fc_stat.elsRcvPLOGI++;
James Smart858c9f62007-06-17 19:56:39 -05004161 ndlp = lpfc_plogi_confirm_nport(phba, payload, ndlp);
4162
4163 if (vport->port_state < LPFC_DISC_AUTH) {
James Smart1b32f6a2008-02-08 18:49:39 -05004164 if (!(phba->pport->fc_flag & FC_PT2PT) ||
4165 (phba->pport->fc_flag & FC_PT2PT_PLOGI)) {
4166 rjt_err = LSRJT_UNABLE_TPC;
4167 break;
4168 }
4169 /* We get here, and drop thru, if we are PT2PT with
4170 * another NPort and the other side has initiated
4171 * the PLOGI before responding to our FLOGI.
4172 */
dea31012005-04-17 16:05:31 -05004173 }
James Smart87af33f2007-10-27 13:37:43 -04004174
4175 shost = lpfc_shost_from_vport(vport);
4176 spin_lock_irq(shost->host_lock);
4177 ndlp->nlp_flag &= ~NLP_TARGET_REMOVE;
4178 spin_unlock_irq(shost->host_lock);
4179
James Smart2e0fef82007-06-17 19:56:36 -05004180 lpfc_disc_state_machine(vport, ndlp, elsiocb,
4181 NLP_EVT_RCV_PLOGI);
James Smart858c9f62007-06-17 19:56:39 -05004182
dea31012005-04-17 16:05:31 -05004183 break;
4184 case ELS_CMD_FLOGI:
James Smart858c9f62007-06-17 19:56:39 -05004185 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
4186 "RCV FLOGI: did:x%x/ste:x%x flg:x%x",
4187 did, vport->port_state, ndlp->nlp_flag);
4188
dea31012005-04-17 16:05:31 -05004189 phba->fc_stat.elsRcvFLOGI++;
James Smart51ef4c22007-08-02 11:10:31 -04004190 lpfc_els_rcv_flogi(vport, elsiocb, ndlp);
James Smart87af33f2007-10-27 13:37:43 -04004191 if (newnode)
James Smart98c9ea52007-10-27 13:37:33 -04004192 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05004193 break;
4194 case ELS_CMD_LOGO:
James Smart858c9f62007-06-17 19:56:39 -05004195 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
4196 "RCV LOGO: did:x%x/ste:x%x flg:x%x",
4197 did, vport->port_state, ndlp->nlp_flag);
4198
dea31012005-04-17 16:05:31 -05004199 phba->fc_stat.elsRcvLOGO++;
James Smart2e0fef82007-06-17 19:56:36 -05004200 if (vport->port_state < LPFC_DISC_AUTH) {
James Smart858c9f62007-06-17 19:56:39 -05004201 rjt_err = LSRJT_UNABLE_TPC;
dea31012005-04-17 16:05:31 -05004202 break;
4203 }
James Smart2e0fef82007-06-17 19:56:36 -05004204 lpfc_disc_state_machine(vport, ndlp, elsiocb, NLP_EVT_RCV_LOGO);
dea31012005-04-17 16:05:31 -05004205 break;
4206 case ELS_CMD_PRLO:
James Smart858c9f62007-06-17 19:56:39 -05004207 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
4208 "RCV PRLO: did:x%x/ste:x%x flg:x%x",
4209 did, vport->port_state, ndlp->nlp_flag);
4210
dea31012005-04-17 16:05:31 -05004211 phba->fc_stat.elsRcvPRLO++;
James Smart2e0fef82007-06-17 19:56:36 -05004212 if (vport->port_state < LPFC_DISC_AUTH) {
James Smart858c9f62007-06-17 19:56:39 -05004213 rjt_err = LSRJT_UNABLE_TPC;
dea31012005-04-17 16:05:31 -05004214 break;
4215 }
James Smart2e0fef82007-06-17 19:56:36 -05004216 lpfc_disc_state_machine(vport, ndlp, elsiocb, NLP_EVT_RCV_PRLO);
dea31012005-04-17 16:05:31 -05004217 break;
4218 case ELS_CMD_RSCN:
4219 phba->fc_stat.elsRcvRSCN++;
James Smart51ef4c22007-08-02 11:10:31 -04004220 lpfc_els_rcv_rscn(vport, elsiocb, ndlp);
James Smart87af33f2007-10-27 13:37:43 -04004221 if (newnode)
James Smart98c9ea52007-10-27 13:37:33 -04004222 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05004223 break;
4224 case ELS_CMD_ADISC:
James Smart858c9f62007-06-17 19:56:39 -05004225 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
4226 "RCV ADISC: did:x%x/ste:x%x flg:x%x",
4227 did, vport->port_state, ndlp->nlp_flag);
4228
dea31012005-04-17 16:05:31 -05004229 phba->fc_stat.elsRcvADISC++;
James Smart2e0fef82007-06-17 19:56:36 -05004230 if (vport->port_state < LPFC_DISC_AUTH) {
James Smart858c9f62007-06-17 19:56:39 -05004231 rjt_err = LSRJT_UNABLE_TPC;
dea31012005-04-17 16:05:31 -05004232 break;
4233 }
James Smart2e0fef82007-06-17 19:56:36 -05004234 lpfc_disc_state_machine(vport, ndlp, elsiocb,
4235 NLP_EVT_RCV_ADISC);
dea31012005-04-17 16:05:31 -05004236 break;
4237 case ELS_CMD_PDISC:
James Smart858c9f62007-06-17 19:56:39 -05004238 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
4239 "RCV PDISC: did:x%x/ste:x%x flg:x%x",
4240 did, vport->port_state, ndlp->nlp_flag);
4241
dea31012005-04-17 16:05:31 -05004242 phba->fc_stat.elsRcvPDISC++;
James Smart2e0fef82007-06-17 19:56:36 -05004243 if (vport->port_state < LPFC_DISC_AUTH) {
James Smart858c9f62007-06-17 19:56:39 -05004244 rjt_err = LSRJT_UNABLE_TPC;
dea31012005-04-17 16:05:31 -05004245 break;
4246 }
James Smart2e0fef82007-06-17 19:56:36 -05004247 lpfc_disc_state_machine(vport, ndlp, elsiocb,
4248 NLP_EVT_RCV_PDISC);
dea31012005-04-17 16:05:31 -05004249 break;
4250 case ELS_CMD_FARPR:
James Smart858c9f62007-06-17 19:56:39 -05004251 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
4252 "RCV FARPR: did:x%x/ste:x%x flg:x%x",
4253 did, vport->port_state, ndlp->nlp_flag);
4254
dea31012005-04-17 16:05:31 -05004255 phba->fc_stat.elsRcvFARPR++;
James Smart2e0fef82007-06-17 19:56:36 -05004256 lpfc_els_rcv_farpr(vport, elsiocb, ndlp);
dea31012005-04-17 16:05:31 -05004257 break;
4258 case ELS_CMD_FARP:
James Smart858c9f62007-06-17 19:56:39 -05004259 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
4260 "RCV FARP: did:x%x/ste:x%x flg:x%x",
4261 did, vport->port_state, ndlp->nlp_flag);
4262
dea31012005-04-17 16:05:31 -05004263 phba->fc_stat.elsRcvFARP++;
James Smart2e0fef82007-06-17 19:56:36 -05004264 lpfc_els_rcv_farp(vport, elsiocb, ndlp);
dea31012005-04-17 16:05:31 -05004265 break;
4266 case ELS_CMD_FAN:
James Smart858c9f62007-06-17 19:56:39 -05004267 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
4268 "RCV FAN: did:x%x/ste:x%x flg:x%x",
4269 did, vport->port_state, ndlp->nlp_flag);
4270
dea31012005-04-17 16:05:31 -05004271 phba->fc_stat.elsRcvFAN++;
James Smart2e0fef82007-06-17 19:56:36 -05004272 lpfc_els_rcv_fan(vport, elsiocb, ndlp);
dea31012005-04-17 16:05:31 -05004273 break;
dea31012005-04-17 16:05:31 -05004274 case ELS_CMD_PRLI:
James Smart858c9f62007-06-17 19:56:39 -05004275 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
4276 "RCV PRLI: did:x%x/ste:x%x flg:x%x",
4277 did, vport->port_state, ndlp->nlp_flag);
4278
dea31012005-04-17 16:05:31 -05004279 phba->fc_stat.elsRcvPRLI++;
James Smart2e0fef82007-06-17 19:56:36 -05004280 if (vport->port_state < LPFC_DISC_AUTH) {
James Smart858c9f62007-06-17 19:56:39 -05004281 rjt_err = LSRJT_UNABLE_TPC;
dea31012005-04-17 16:05:31 -05004282 break;
4283 }
James Smart2e0fef82007-06-17 19:56:36 -05004284 lpfc_disc_state_machine(vport, ndlp, elsiocb, NLP_EVT_RCV_PRLI);
dea31012005-04-17 16:05:31 -05004285 break;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05004286 case ELS_CMD_LIRR:
James Smart858c9f62007-06-17 19:56:39 -05004287 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
4288 "RCV LIRR: did:x%x/ste:x%x flg:x%x",
4289 did, vport->port_state, ndlp->nlp_flag);
4290
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05004291 phba->fc_stat.elsRcvLIRR++;
James Smart2e0fef82007-06-17 19:56:36 -05004292 lpfc_els_rcv_lirr(vport, elsiocb, ndlp);
James Smart87af33f2007-10-27 13:37:43 -04004293 if (newnode)
James Smart98c9ea52007-10-27 13:37:33 -04004294 lpfc_nlp_put(ndlp);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05004295 break;
4296 case ELS_CMD_RPS:
James Smart858c9f62007-06-17 19:56:39 -05004297 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
4298 "RCV RPS: did:x%x/ste:x%x flg:x%x",
4299 did, vport->port_state, ndlp->nlp_flag);
4300
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05004301 phba->fc_stat.elsRcvRPS++;
James Smart2e0fef82007-06-17 19:56:36 -05004302 lpfc_els_rcv_rps(vport, elsiocb, ndlp);
James Smart87af33f2007-10-27 13:37:43 -04004303 if (newnode)
James Smart98c9ea52007-10-27 13:37:33 -04004304 lpfc_nlp_put(ndlp);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05004305 break;
4306 case ELS_CMD_RPL:
James Smart858c9f62007-06-17 19:56:39 -05004307 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
4308 "RCV RPL: did:x%x/ste:x%x flg:x%x",
4309 did, vport->port_state, ndlp->nlp_flag);
4310
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05004311 phba->fc_stat.elsRcvRPL++;
James Smart2e0fef82007-06-17 19:56:36 -05004312 lpfc_els_rcv_rpl(vport, elsiocb, ndlp);
James Smart87af33f2007-10-27 13:37:43 -04004313 if (newnode)
James Smart98c9ea52007-10-27 13:37:33 -04004314 lpfc_nlp_put(ndlp);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05004315 break;
dea31012005-04-17 16:05:31 -05004316 case ELS_CMD_RNID:
James Smart858c9f62007-06-17 19:56:39 -05004317 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
4318 "RCV RNID: did:x%x/ste:x%x flg:x%x",
4319 did, vport->port_state, ndlp->nlp_flag);
4320
dea31012005-04-17 16:05:31 -05004321 phba->fc_stat.elsRcvRNID++;
James Smart2e0fef82007-06-17 19:56:36 -05004322 lpfc_els_rcv_rnid(vport, elsiocb, ndlp);
James Smart87af33f2007-10-27 13:37:43 -04004323 if (newnode)
James Smart98c9ea52007-10-27 13:37:33 -04004324 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05004325 break;
4326 default:
James Smart858c9f62007-06-17 19:56:39 -05004327 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
4328 "RCV ELS cmd: cmd:x%x did:x%x/ste:x%x",
4329 cmd, did, vport->port_state);
4330
dea31012005-04-17 16:05:31 -05004331 /* Unsupported ELS command, reject */
James Smart858c9f62007-06-17 19:56:39 -05004332 rjt_err = LSRJT_INVALID_CMD;
dea31012005-04-17 16:05:31 -05004333
4334 /* Unknown ELS command <elsCmd> received from NPORT <did> */
James Smarte8b62012007-08-02 11:10:09 -04004335 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
4336 "0115 Unknown ELS command x%x "
4337 "received from NPORT x%x\n", cmd, did);
James Smart87af33f2007-10-27 13:37:43 -04004338 if (newnode)
James Smart98c9ea52007-10-27 13:37:33 -04004339 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05004340 break;
4341 }
4342
4343 /* check if need to LS_RJT received ELS cmd */
4344 if (rjt_err) {
James Smart92d7f7b2007-06-17 19:56:38 -05004345 memset(&stat, 0, sizeof(stat));
James Smart858c9f62007-06-17 19:56:39 -05004346 stat.un.b.lsRjtRsnCode = rjt_err;
James.Smart@Emulex.Com1f679ca2005-06-25 10:34:27 -04004347 stat.un.b.lsRjtRsnCodeExp = LSEXP_NOTHING_MORE;
James Smart858c9f62007-06-17 19:56:39 -05004348 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, elsiocb, ndlp,
4349 NULL);
dea31012005-04-17 16:05:31 -05004350 }
4351
James Smarted957682007-06-17 19:56:37 -05004352 return;
4353
4354dropit:
James Smart98c9ea52007-10-27 13:37:33 -04004355 if (vport && !(vport->load_flag & FC_UNLOADING))
4356 lpfc_printf_log(phba, KERN_ERR, LOG_ELS,
James Smarte8b62012007-08-02 11:10:09 -04004357 "(%d):0111 Dropping received ELS cmd "
James Smarted957682007-06-17 19:56:37 -05004358 "Data: x%x x%x x%x\n",
James Smart98c9ea52007-10-27 13:37:33 -04004359 vport->vpi, icmd->ulpStatus,
James Smarte8b62012007-08-02 11:10:09 -04004360 icmd->un.ulpWord[4], icmd->ulpTimeout);
James Smarted957682007-06-17 19:56:37 -05004361 phba->fc_stat.elsRcvDrop++;
4362}
4363
James Smart92d7f7b2007-06-17 19:56:38 -05004364static struct lpfc_vport *
4365lpfc_find_vport_by_vpid(struct lpfc_hba *phba, uint16_t vpi)
4366{
4367 struct lpfc_vport *vport;
James Smart549e55c2007-08-02 11:09:51 -04004368 unsigned long flags;
James Smart92d7f7b2007-06-17 19:56:38 -05004369
James Smart549e55c2007-08-02 11:09:51 -04004370 spin_lock_irqsave(&phba->hbalock, flags);
James Smart92d7f7b2007-06-17 19:56:38 -05004371 list_for_each_entry(vport, &phba->port_list, listentry) {
James Smart549e55c2007-08-02 11:09:51 -04004372 if (vport->vpi == vpi) {
4373 spin_unlock_irqrestore(&phba->hbalock, flags);
James Smart92d7f7b2007-06-17 19:56:38 -05004374 return vport;
James Smart549e55c2007-08-02 11:09:51 -04004375 }
James Smart92d7f7b2007-06-17 19:56:38 -05004376 }
James Smart549e55c2007-08-02 11:09:51 -04004377 spin_unlock_irqrestore(&phba->hbalock, flags);
James Smart92d7f7b2007-06-17 19:56:38 -05004378 return NULL;
4379}
James Smarted957682007-06-17 19:56:37 -05004380
4381void
4382lpfc_els_unsol_event(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
4383 struct lpfc_iocbq *elsiocb)
4384{
4385 struct lpfc_vport *vport = phba->pport;
James Smarted957682007-06-17 19:56:37 -05004386 IOCB_t *icmd = &elsiocb->iocb;
James Smarted957682007-06-17 19:56:37 -05004387 dma_addr_t paddr;
James Smart92d7f7b2007-06-17 19:56:38 -05004388 struct lpfc_dmabuf *bdeBuf1 = elsiocb->context2;
4389 struct lpfc_dmabuf *bdeBuf2 = elsiocb->context3;
James Smarted957682007-06-17 19:56:37 -05004390
James Smart92d7f7b2007-06-17 19:56:38 -05004391 elsiocb->context2 = NULL;
4392 elsiocb->context3 = NULL;
4393
4394 if (icmd->ulpStatus == IOSTAT_NEED_BUFFER) {
4395 lpfc_sli_hbqbuf_add_hbqs(phba, LPFC_ELS_HBQ);
4396 } else if (icmd->ulpStatus == IOSTAT_LOCAL_REJECT &&
4397 (icmd->un.ulpWord[4] & 0xff) == IOERR_RCV_BUFFER_WAITING) {
James Smarted957682007-06-17 19:56:37 -05004398 phba->fc_stat.NoRcvBuf++;
4399 /* Not enough posted buffers; Try posting more buffers */
James Smart92d7f7b2007-06-17 19:56:38 -05004400 if (!(phba->sli3_options & LPFC_SLI3_HBQ_ENABLED))
James Smarted957682007-06-17 19:56:37 -05004401 lpfc_post_buffer(phba, pring, 0, 1);
4402 return;
4403 }
4404
James Smart92d7f7b2007-06-17 19:56:38 -05004405 if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
4406 (icmd->ulpCommand == CMD_IOCB_RCV_ELS64_CX ||
4407 icmd->ulpCommand == CMD_IOCB_RCV_SEQ64_CX)) {
4408 if (icmd->unsli3.rcvsli3.vpi == 0xffff)
4409 vport = phba->pport;
4410 else {
4411 uint16_t vpi = icmd->unsli3.rcvsli3.vpi;
4412 vport = lpfc_find_vport_by_vpid(phba, vpi);
4413 }
4414 }
James Smart7f5f3d02008-02-08 18:50:14 -05004415 /* If there are no BDEs associated
4416 * with this IOCB, there is nothing to do.
4417 */
James Smarted957682007-06-17 19:56:37 -05004418 if (icmd->ulpBdeCount == 0)
4419 return;
4420
James Smart7f5f3d02008-02-08 18:50:14 -05004421 /* type of ELS cmd is first 32bit word
4422 * in packet
4423 */
James Smarted957682007-06-17 19:56:37 -05004424 if (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) {
James Smart92d7f7b2007-06-17 19:56:38 -05004425 elsiocb->context2 = bdeBuf1;
James Smarted957682007-06-17 19:56:37 -05004426 } else {
4427 paddr = getPaddr(icmd->un.cont64[0].addrHigh,
4428 icmd->un.cont64[0].addrLow);
James Smart92d7f7b2007-06-17 19:56:38 -05004429 elsiocb->context2 = lpfc_sli_ringpostbuf_get(phba, pring,
4430 paddr);
James Smarted957682007-06-17 19:56:37 -05004431 }
4432
James Smart92d7f7b2007-06-17 19:56:38 -05004433 lpfc_els_unsol_buffer(phba, pring, vport, elsiocb);
4434 /*
4435 * The different unsolicited event handlers would tell us
4436 * if they are done with "mp" by setting context2 to NULL.
4437 */
James Smart329f9bc2007-04-25 09:53:01 -04004438 lpfc_nlp_put(elsiocb->context1);
4439 elsiocb->context1 = NULL;
dea31012005-04-17 16:05:31 -05004440 if (elsiocb->context2) {
James Smart92d7f7b2007-06-17 19:56:38 -05004441 lpfc_in_buf_free(phba, (struct lpfc_dmabuf *)elsiocb->context2);
4442 elsiocb->context2 = NULL;
dea31012005-04-17 16:05:31 -05004443 }
James Smarted957682007-06-17 19:56:37 -05004444
4445 /* RCV_ELS64_CX provide for 2 BDEs - process 2nd if included */
James Smart92d7f7b2007-06-17 19:56:38 -05004446 if ((phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) &&
James Smarted957682007-06-17 19:56:37 -05004447 icmd->ulpBdeCount == 2) {
James Smart92d7f7b2007-06-17 19:56:38 -05004448 elsiocb->context2 = bdeBuf2;
4449 lpfc_els_unsol_buffer(phba, pring, vport, elsiocb);
James Smarted957682007-06-17 19:56:37 -05004450 /* free mp if we are done with it */
4451 if (elsiocb->context2) {
James Smart92d7f7b2007-06-17 19:56:38 -05004452 lpfc_in_buf_free(phba, elsiocb->context2);
4453 elsiocb->context2 = NULL;
James Smarted957682007-06-17 19:56:37 -05004454 }
dea31012005-04-17 16:05:31 -05004455 }
dea31012005-04-17 16:05:31 -05004456}
James Smart92d7f7b2007-06-17 19:56:38 -05004457
4458void
4459lpfc_do_scr_ns_plogi(struct lpfc_hba *phba, struct lpfc_vport *vport)
4460{
4461 struct lpfc_nodelist *ndlp, *ndlp_fdmi;
4462
4463 ndlp = lpfc_findnode_did(vport, NameServer_DID);
4464 if (!ndlp) {
4465 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
4466 if (!ndlp) {
4467 if (phba->fc_topology == TOPOLOGY_LOOP) {
4468 lpfc_disc_start(vport);
4469 return;
4470 }
4471 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
James Smarte8b62012007-08-02 11:10:09 -04004472 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
4473 "0251 NameServer login: no memory\n");
James Smart92d7f7b2007-06-17 19:56:38 -05004474 return;
4475 }
4476 lpfc_nlp_init(vport, ndlp, NameServer_DID);
James Smarte47c9092008-02-08 18:49:26 -05004477 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
4478 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
4479 if (!ndlp) {
4480 if (phba->fc_topology == TOPOLOGY_LOOP) {
4481 lpfc_disc_start(vport);
4482 return;
4483 }
4484 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
4485 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
4486 "0348 NameServer login: node freed\n");
4487 return;
4488 }
James Smart92d7f7b2007-06-17 19:56:38 -05004489 }
James Smart58da1ff2008-04-07 10:15:56 -04004490 ndlp->nlp_type |= NLP_FABRIC;
James Smart92d7f7b2007-06-17 19:56:38 -05004491
4492 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
4493
4494 if (lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0)) {
4495 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
James Smarte8b62012007-08-02 11:10:09 -04004496 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
4497 "0252 Cannot issue NameServer login\n");
James Smart92d7f7b2007-06-17 19:56:38 -05004498 return;
4499 }
4500
James Smart3de2a652007-08-02 11:09:59 -04004501 if (vport->cfg_fdmi_on) {
James Smart92d7f7b2007-06-17 19:56:38 -05004502 ndlp_fdmi = mempool_alloc(phba->nlp_mem_pool,
4503 GFP_KERNEL);
4504 if (ndlp_fdmi) {
4505 lpfc_nlp_init(vport, ndlp_fdmi, FDMI_DID);
4506 ndlp_fdmi->nlp_type |= NLP_FABRIC;
James Smart58da1ff2008-04-07 10:15:56 -04004507 lpfc_nlp_set_state(vport, ndlp_fdmi,
4508 NLP_STE_PLOGI_ISSUE);
James Smart92d7f7b2007-06-17 19:56:38 -05004509 lpfc_issue_els_plogi(vport, ndlp_fdmi->nlp_DID,
4510 0);
4511 }
4512 }
4513 return;
4514}
4515
4516static void
4517lpfc_cmpl_reg_new_vport(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
4518{
4519 struct lpfc_vport *vport = pmb->vport;
4520 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
4521 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) pmb->context2;
4522 MAILBOX_t *mb = &pmb->mb;
4523
James Smart09372822008-01-11 01:52:54 -05004524 spin_lock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05004525 vport->fc_flag &= ~FC_VPORT_NEEDS_REG_VPI;
James Smart09372822008-01-11 01:52:54 -05004526 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05004527
4528 if (mb->mbxStatus) {
James Smarte8b62012007-08-02 11:10:09 -04004529 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
4530 "0915 Register VPI failed: 0x%x\n",
4531 mb->mbxStatus);
James Smart92d7f7b2007-06-17 19:56:38 -05004532
4533 switch (mb->mbxStatus) {
4534 case 0x11: /* unsupported feature */
4535 case 0x9603: /* max_vpi exceeded */
James Smart7f5f3d02008-02-08 18:50:14 -05004536 case 0x9602: /* Link event since CLEAR_LA */
James Smart92d7f7b2007-06-17 19:56:38 -05004537 /* giving up on vport registration */
4538 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
4539 spin_lock_irq(shost->host_lock);
4540 vport->fc_flag &= ~(FC_FABRIC | FC_PUBLIC_LOOP);
4541 spin_unlock_irq(shost->host_lock);
4542 lpfc_can_disctmo(vport);
4543 break;
4544 default:
4545 /* Try to recover from this error */
4546 lpfc_mbx_unreg_vpi(vport);
James Smart09372822008-01-11 01:52:54 -05004547 spin_lock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05004548 vport->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
James Smart09372822008-01-11 01:52:54 -05004549 spin_unlock_irq(shost->host_lock);
James Smart7f5f3d02008-02-08 18:50:14 -05004550 if (vport->port_type == LPFC_PHYSICAL_PORT)
4551 lpfc_initial_flogi(vport);
4552 else
4553 lpfc_initial_fdisc(vport);
James Smart92d7f7b2007-06-17 19:56:38 -05004554 break;
4555 }
4556
4557 } else {
4558 if (vport == phba->pport)
4559 lpfc_issue_fabric_reglogin(vport);
4560 else
4561 lpfc_do_scr_ns_plogi(phba, vport);
4562 }
James Smartfa4066b2008-01-11 01:53:27 -05004563
4564 /* Now, we decrement the ndlp reference count held for this
4565 * callback function
4566 */
4567 lpfc_nlp_put(ndlp);
4568
James Smart92d7f7b2007-06-17 19:56:38 -05004569 mempool_free(pmb, phba->mbox_mem_pool);
4570 return;
4571}
4572
Adrian Bunka6ababd2007-11-05 18:07:33 +01004573static void
James Smart92d7f7b2007-06-17 19:56:38 -05004574lpfc_register_new_vport(struct lpfc_hba *phba, struct lpfc_vport *vport,
4575 struct lpfc_nodelist *ndlp)
4576{
James Smart09372822008-01-11 01:52:54 -05004577 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart92d7f7b2007-06-17 19:56:38 -05004578 LPFC_MBOXQ_t *mbox;
4579
4580 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4581 if (mbox) {
4582 lpfc_reg_vpi(phba, vport->vpi, vport->fc_myDID, mbox);
4583 mbox->vport = vport;
4584 mbox->context2 = lpfc_nlp_get(ndlp);
4585 mbox->mbox_cmpl = lpfc_cmpl_reg_new_vport;
James Smart0b727fe2007-10-27 13:37:25 -04004586 if (lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT)
James Smart92d7f7b2007-06-17 19:56:38 -05004587 == MBX_NOT_FINISHED) {
James Smartfa4066b2008-01-11 01:53:27 -05004588 /* mailbox command not success, decrement ndlp
4589 * reference count for this command
4590 */
4591 lpfc_nlp_put(ndlp);
James Smart92d7f7b2007-06-17 19:56:38 -05004592 mempool_free(mbox, phba->mbox_mem_pool);
James Smart92d7f7b2007-06-17 19:56:38 -05004593
James Smarte8b62012007-08-02 11:10:09 -04004594 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
4595 "0253 Register VPI: Can't send mbox\n");
James Smartfa4066b2008-01-11 01:53:27 -05004596 goto mbox_err_exit;
James Smart92d7f7b2007-06-17 19:56:38 -05004597 }
4598 } else {
James Smarte8b62012007-08-02 11:10:09 -04004599 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
4600 "0254 Register VPI: no memory\n");
James Smartfa4066b2008-01-11 01:53:27 -05004601 goto mbox_err_exit;
James Smart92d7f7b2007-06-17 19:56:38 -05004602 }
James Smartfa4066b2008-01-11 01:53:27 -05004603 return;
4604
4605mbox_err_exit:
4606 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
4607 spin_lock_irq(shost->host_lock);
4608 vport->fc_flag &= ~FC_VPORT_NEEDS_REG_VPI;
4609 spin_unlock_irq(shost->host_lock);
4610 return;
James Smart92d7f7b2007-06-17 19:56:38 -05004611}
4612
4613static void
4614lpfc_cmpl_els_fdisc(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
4615 struct lpfc_iocbq *rspiocb)
4616{
4617 struct lpfc_vport *vport = cmdiocb->vport;
4618 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
4619 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
4620 struct lpfc_nodelist *np;
4621 struct lpfc_nodelist *next_np;
4622 IOCB_t *irsp = &rspiocb->iocb;
4623 struct lpfc_iocbq *piocb;
4624
James Smarte8b62012007-08-02 11:10:09 -04004625 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
4626 "0123 FDISC completes. x%x/x%x prevDID: x%x\n",
4627 irsp->ulpStatus, irsp->un.ulpWord[4],
4628 vport->fc_prevDID);
James Smart92d7f7b2007-06-17 19:56:38 -05004629 /* Since all FDISCs are being single threaded, we
4630 * must reset the discovery timer for ALL vports
4631 * waiting to send FDISC when one completes.
4632 */
4633 list_for_each_entry(piocb, &phba->fabric_iocb_list, list) {
4634 lpfc_set_disctmo(piocb->vport);
4635 }
4636
James Smart858c9f62007-06-17 19:56:39 -05004637 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
4638 "FDISC cmpl: status:x%x/x%x prevdid:x%x",
4639 irsp->ulpStatus, irsp->un.ulpWord[4], vport->fc_prevDID);
4640
James Smart92d7f7b2007-06-17 19:56:38 -05004641 if (irsp->ulpStatus) {
4642 /* Check for retry */
4643 if (lpfc_els_retry(phba, cmdiocb, rspiocb))
4644 goto out;
James Smart92d7f7b2007-06-17 19:56:38 -05004645 /* FDISC failed */
James Smarte8b62012007-08-02 11:10:09 -04004646 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
4647 "0124 FDISC failed. (%d/%d)\n",
4648 irsp->ulpStatus, irsp->un.ulpWord[4]);
James Smart92d7f7b2007-06-17 19:56:38 -05004649 if (vport->fc_vport->vport_state == FC_VPORT_INITIALIZING)
4650 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
James Smart92d7f7b2007-06-17 19:56:38 -05004651 lpfc_nlp_put(ndlp);
4652 /* giving up on FDISC. Cancel discovery timer */
4653 lpfc_can_disctmo(vport);
4654 } else {
4655 spin_lock_irq(shost->host_lock);
4656 vport->fc_flag |= FC_FABRIC;
4657 if (vport->phba->fc_topology == TOPOLOGY_LOOP)
4658 vport->fc_flag |= FC_PUBLIC_LOOP;
4659 spin_unlock_irq(shost->host_lock);
4660
4661 vport->fc_myDID = irsp->un.ulpWord[4] & Mask_DID;
4662 lpfc_vport_set_state(vport, FC_VPORT_ACTIVE);
4663 if ((vport->fc_prevDID != vport->fc_myDID) &&
4664 !(vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)) {
4665 /* If our NportID changed, we need to ensure all
4666 * remaining NPORTs get unreg_login'ed so we can
4667 * issue unreg_vpi.
4668 */
4669 list_for_each_entry_safe(np, next_np,
4670 &vport->fc_nodes, nlp_listp) {
James Smarte47c9092008-02-08 18:49:26 -05004671 if (!NLP_CHK_NODE_ACT(ndlp) ||
4672 (np->nlp_state != NLP_STE_NPR_NODE) ||
4673 !(np->nlp_flag & NLP_NPR_ADISC))
James Smart92d7f7b2007-06-17 19:56:38 -05004674 continue;
4675 spin_lock_irq(shost->host_lock);
4676 np->nlp_flag &= ~NLP_NPR_ADISC;
4677 spin_unlock_irq(shost->host_lock);
4678 lpfc_unreg_rpi(vport, np);
4679 }
4680 lpfc_mbx_unreg_vpi(vport);
James Smart09372822008-01-11 01:52:54 -05004681 spin_lock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05004682 vport->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
James Smart09372822008-01-11 01:52:54 -05004683 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05004684 }
4685
4686 if (vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)
4687 lpfc_register_new_vport(phba, vport, ndlp);
4688 else
4689 lpfc_do_scr_ns_plogi(phba, vport);
4690
James Smartfa4066b2008-01-11 01:53:27 -05004691 /* Unconditionaly kick off releasing fabric node for vports */
4692 lpfc_nlp_put(ndlp);
James Smart92d7f7b2007-06-17 19:56:38 -05004693 }
4694
4695out:
4696 lpfc_els_free_iocb(phba, cmdiocb);
4697}
4698
Adrian Bunka6ababd2007-11-05 18:07:33 +01004699static int
James Smart92d7f7b2007-06-17 19:56:38 -05004700lpfc_issue_els_fdisc(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
4701 uint8_t retry)
4702{
4703 struct lpfc_hba *phba = vport->phba;
4704 IOCB_t *icmd;
4705 struct lpfc_iocbq *elsiocb;
4706 struct serv_parm *sp;
4707 uint8_t *pcmd;
4708 uint16_t cmdsize;
4709 int did = ndlp->nlp_DID;
4710 int rc;
James Smart92d7f7b2007-06-17 19:56:38 -05004711
4712 cmdsize = (sizeof(uint32_t) + sizeof(struct serv_parm));
4713 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp, did,
4714 ELS_CMD_FDISC);
4715 if (!elsiocb) {
James Smart92d7f7b2007-06-17 19:56:38 -05004716 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
James Smarte8b62012007-08-02 11:10:09 -04004717 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
4718 "0255 Issue FDISC: no IOCB\n");
James Smart92d7f7b2007-06-17 19:56:38 -05004719 return 1;
4720 }
4721
4722 icmd = &elsiocb->iocb;
4723 icmd->un.elsreq64.myID = 0;
4724 icmd->un.elsreq64.fl = 1;
4725
4726 /* For FDISC, Let FDISC rsp set the NPortID for this VPI */
4727 icmd->ulpCt_h = 1;
4728 icmd->ulpCt_l = 0;
4729
4730 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
4731 *((uint32_t *) (pcmd)) = ELS_CMD_FDISC;
4732 pcmd += sizeof(uint32_t); /* CSP Word 1 */
4733 memcpy(pcmd, &vport->phba->pport->fc_sparam, sizeof(struct serv_parm));
4734 sp = (struct serv_parm *) pcmd;
4735 /* Setup CSPs accordingly for Fabric */
4736 sp->cmn.e_d_tov = 0;
4737 sp->cmn.w2.r_a_tov = 0;
4738 sp->cls1.classValid = 0;
4739 sp->cls2.seqDelivery = 1;
4740 sp->cls3.seqDelivery = 1;
4741
4742 pcmd += sizeof(uint32_t); /* CSP Word 2 */
4743 pcmd += sizeof(uint32_t); /* CSP Word 3 */
4744 pcmd += sizeof(uint32_t); /* CSP Word 4 */
4745 pcmd += sizeof(uint32_t); /* Port Name */
4746 memcpy(pcmd, &vport->fc_portname, 8);
4747 pcmd += sizeof(uint32_t); /* Node Name */
4748 pcmd += sizeof(uint32_t); /* Node Name */
4749 memcpy(pcmd, &vport->fc_nodename, 8);
4750
4751 lpfc_set_disctmo(vport);
4752
4753 phba->fc_stat.elsXmitFDISC++;
4754 elsiocb->iocb_cmpl = lpfc_cmpl_els_fdisc;
4755
James Smart858c9f62007-06-17 19:56:39 -05004756 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
4757 "Issue FDISC: did:x%x",
4758 did, 0, 0);
4759
James Smart92d7f7b2007-06-17 19:56:38 -05004760 rc = lpfc_issue_fabric_iocb(phba, elsiocb);
4761 if (rc == IOCB_ERROR) {
4762 lpfc_els_free_iocb(phba, elsiocb);
James Smart92d7f7b2007-06-17 19:56:38 -05004763 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
James Smarte8b62012007-08-02 11:10:09 -04004764 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
4765 "0256 Issue FDISC: Cannot send IOCB\n");
James Smart92d7f7b2007-06-17 19:56:38 -05004766 return 1;
4767 }
4768 lpfc_vport_set_state(vport, FC_VPORT_INITIALIZING);
4769 vport->port_state = LPFC_FDISC;
4770 return 0;
4771}
4772
4773static void
4774lpfc_cmpl_els_npiv_logo(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
4775 struct lpfc_iocbq *rspiocb)
4776{
4777 struct lpfc_vport *vport = cmdiocb->vport;
James Smart858c9f62007-06-17 19:56:39 -05004778 IOCB_t *irsp;
James Smarte47c9092008-02-08 18:49:26 -05004779 struct lpfc_nodelist *ndlp;
4780 ndlp = (struct lpfc_nodelist *)cmdiocb->context1;
James Smart858c9f62007-06-17 19:56:39 -05004781
4782 irsp = &rspiocb->iocb;
4783 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
4784 "LOGO npiv cmpl: status:x%x/x%x did:x%x",
4785 irsp->ulpStatus, irsp->un.ulpWord[4], irsp->un.rcvels.remoteID);
James Smart92d7f7b2007-06-17 19:56:38 -05004786
4787 lpfc_els_free_iocb(phba, cmdiocb);
4788 vport->unreg_vpi_cmpl = VPORT_ERROR;
James Smarte47c9092008-02-08 18:49:26 -05004789
4790 /* Trigger the release of the ndlp after logo */
4791 lpfc_nlp_put(ndlp);
James Smart92d7f7b2007-06-17 19:56:38 -05004792}
4793
4794int
4795lpfc_issue_els_npiv_logo(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
4796{
4797 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
4798 struct lpfc_hba *phba = vport->phba;
4799 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
4800 IOCB_t *icmd;
4801 struct lpfc_iocbq *elsiocb;
4802 uint8_t *pcmd;
4803 uint16_t cmdsize;
4804
4805 cmdsize = 2 * sizeof(uint32_t) + sizeof(struct lpfc_name);
4806 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, 0, ndlp, ndlp->nlp_DID,
4807 ELS_CMD_LOGO);
4808 if (!elsiocb)
4809 return 1;
4810
4811 icmd = &elsiocb->iocb;
4812 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
4813 *((uint32_t *) (pcmd)) = ELS_CMD_LOGO;
4814 pcmd += sizeof(uint32_t);
4815
4816 /* Fill in LOGO payload */
4817 *((uint32_t *) (pcmd)) = be32_to_cpu(vport->fc_myDID);
4818 pcmd += sizeof(uint32_t);
4819 memcpy(pcmd, &vport->fc_portname, sizeof(struct lpfc_name));
4820
James Smart858c9f62007-06-17 19:56:39 -05004821 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
4822 "Issue LOGO npiv did:x%x flg:x%x",
4823 ndlp->nlp_DID, ndlp->nlp_flag, 0);
4824
James Smart92d7f7b2007-06-17 19:56:38 -05004825 elsiocb->iocb_cmpl = lpfc_cmpl_els_npiv_logo;
4826 spin_lock_irq(shost->host_lock);
4827 ndlp->nlp_flag |= NLP_LOGO_SND;
4828 spin_unlock_irq(shost->host_lock);
4829 if (lpfc_sli_issue_iocb(phba, pring, elsiocb, 0) == IOCB_ERROR) {
4830 spin_lock_irq(shost->host_lock);
4831 ndlp->nlp_flag &= ~NLP_LOGO_SND;
4832 spin_unlock_irq(shost->host_lock);
4833 lpfc_els_free_iocb(phba, elsiocb);
4834 return 1;
4835 }
4836 return 0;
4837}
4838
4839void
4840lpfc_fabric_block_timeout(unsigned long ptr)
4841{
4842 struct lpfc_hba *phba = (struct lpfc_hba *) ptr;
4843 unsigned long iflags;
4844 uint32_t tmo_posted;
4845 spin_lock_irqsave(&phba->pport->work_port_lock, iflags);
4846 tmo_posted = phba->pport->work_port_events & WORKER_FABRIC_BLOCK_TMO;
4847 if (!tmo_posted)
4848 phba->pport->work_port_events |= WORKER_FABRIC_BLOCK_TMO;
4849 spin_unlock_irqrestore(&phba->pport->work_port_lock, iflags);
4850
4851 if (!tmo_posted) {
4852 spin_lock_irqsave(&phba->hbalock, iflags);
4853 if (phba->work_wait)
4854 lpfc_worker_wake_up(phba);
4855 spin_unlock_irqrestore(&phba->hbalock, iflags);
4856 }
4857}
4858
4859static void
4860lpfc_resume_fabric_iocbs(struct lpfc_hba *phba)
4861{
4862 struct lpfc_iocbq *iocb;
4863 unsigned long iflags;
4864 int ret;
4865 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
4866 IOCB_t *cmd;
4867
4868repeat:
4869 iocb = NULL;
4870 spin_lock_irqsave(&phba->hbalock, iflags);
James Smart7f5f3d02008-02-08 18:50:14 -05004871 /* Post any pending iocb to the SLI layer */
James Smart92d7f7b2007-06-17 19:56:38 -05004872 if (atomic_read(&phba->fabric_iocb_count) == 0) {
4873 list_remove_head(&phba->fabric_iocb_list, iocb, typeof(*iocb),
4874 list);
4875 if (iocb)
James Smart7f5f3d02008-02-08 18:50:14 -05004876 /* Increment fabric iocb count to hold the position */
James Smart92d7f7b2007-06-17 19:56:38 -05004877 atomic_inc(&phba->fabric_iocb_count);
4878 }
4879 spin_unlock_irqrestore(&phba->hbalock, iflags);
4880 if (iocb) {
4881 iocb->fabric_iocb_cmpl = iocb->iocb_cmpl;
4882 iocb->iocb_cmpl = lpfc_cmpl_fabric_iocb;
4883 iocb->iocb_flag |= LPFC_IO_FABRIC;
4884
James Smart858c9f62007-06-17 19:56:39 -05004885 lpfc_debugfs_disc_trc(iocb->vport, LPFC_DISC_TRC_ELS_CMD,
4886 "Fabric sched1: ste:x%x",
4887 iocb->vport->port_state, 0, 0);
4888
James Smart92d7f7b2007-06-17 19:56:38 -05004889 ret = lpfc_sli_issue_iocb(phba, pring, iocb, 0);
4890
4891 if (ret == IOCB_ERROR) {
4892 iocb->iocb_cmpl = iocb->fabric_iocb_cmpl;
4893 iocb->fabric_iocb_cmpl = NULL;
4894 iocb->iocb_flag &= ~LPFC_IO_FABRIC;
4895 cmd = &iocb->iocb;
4896 cmd->ulpStatus = IOSTAT_LOCAL_REJECT;
4897 cmd->un.ulpWord[4] = IOERR_SLI_ABORTED;
4898 iocb->iocb_cmpl(phba, iocb, iocb);
4899
4900 atomic_dec(&phba->fabric_iocb_count);
4901 goto repeat;
4902 }
4903 }
4904
4905 return;
4906}
4907
4908void
4909lpfc_unblock_fabric_iocbs(struct lpfc_hba *phba)
4910{
4911 clear_bit(FABRIC_COMANDS_BLOCKED, &phba->bit_flags);
4912
4913 lpfc_resume_fabric_iocbs(phba);
4914 return;
4915}
4916
4917static void
4918lpfc_block_fabric_iocbs(struct lpfc_hba *phba)
4919{
4920 int blocked;
4921
4922 blocked = test_and_set_bit(FABRIC_COMANDS_BLOCKED, &phba->bit_flags);
James Smart7f5f3d02008-02-08 18:50:14 -05004923 /* Start a timer to unblock fabric iocbs after 100ms */
James Smart92d7f7b2007-06-17 19:56:38 -05004924 if (!blocked)
4925 mod_timer(&phba->fabric_block_timer, jiffies + HZ/10 );
4926
4927 return;
4928}
4929
4930static void
4931lpfc_cmpl_fabric_iocb(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
4932 struct lpfc_iocbq *rspiocb)
4933{
4934 struct ls_rjt stat;
4935
4936 if ((cmdiocb->iocb_flag & LPFC_IO_FABRIC) != LPFC_IO_FABRIC)
4937 BUG();
4938
4939 switch (rspiocb->iocb.ulpStatus) {
4940 case IOSTAT_NPORT_RJT:
4941 case IOSTAT_FABRIC_RJT:
4942 if (rspiocb->iocb.un.ulpWord[4] & RJT_UNAVAIL_TEMP) {
4943 lpfc_block_fabric_iocbs(phba);
4944 }
4945 break;
4946
4947 case IOSTAT_NPORT_BSY:
4948 case IOSTAT_FABRIC_BSY:
4949 lpfc_block_fabric_iocbs(phba);
4950 break;
4951
4952 case IOSTAT_LS_RJT:
4953 stat.un.lsRjtError =
4954 be32_to_cpu(rspiocb->iocb.un.ulpWord[4]);
4955 if ((stat.un.b.lsRjtRsnCode == LSRJT_UNABLE_TPC) ||
4956 (stat.un.b.lsRjtRsnCode == LSRJT_LOGICAL_BSY))
4957 lpfc_block_fabric_iocbs(phba);
4958 break;
4959 }
4960
4961 if (atomic_read(&phba->fabric_iocb_count) == 0)
4962 BUG();
4963
4964 cmdiocb->iocb_cmpl = cmdiocb->fabric_iocb_cmpl;
4965 cmdiocb->fabric_iocb_cmpl = NULL;
4966 cmdiocb->iocb_flag &= ~LPFC_IO_FABRIC;
4967 cmdiocb->iocb_cmpl(phba, cmdiocb, rspiocb);
4968
4969 atomic_dec(&phba->fabric_iocb_count);
4970 if (!test_bit(FABRIC_COMANDS_BLOCKED, &phba->bit_flags)) {
James Smart7f5f3d02008-02-08 18:50:14 -05004971 /* Post any pending iocbs to HBA */
4972 lpfc_resume_fabric_iocbs(phba);
James Smart92d7f7b2007-06-17 19:56:38 -05004973 }
4974}
4975
Adrian Bunka6ababd2007-11-05 18:07:33 +01004976static int
James Smart92d7f7b2007-06-17 19:56:38 -05004977lpfc_issue_fabric_iocb(struct lpfc_hba *phba, struct lpfc_iocbq *iocb)
4978{
4979 unsigned long iflags;
4980 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
4981 int ready;
4982 int ret;
4983
4984 if (atomic_read(&phba->fabric_iocb_count) > 1)
4985 BUG();
4986
4987 spin_lock_irqsave(&phba->hbalock, iflags);
4988 ready = atomic_read(&phba->fabric_iocb_count) == 0 &&
4989 !test_bit(FABRIC_COMANDS_BLOCKED, &phba->bit_flags);
4990
James Smart7f5f3d02008-02-08 18:50:14 -05004991 if (ready)
4992 /* Increment fabric iocb count to hold the position */
4993 atomic_inc(&phba->fabric_iocb_count);
James Smart92d7f7b2007-06-17 19:56:38 -05004994 spin_unlock_irqrestore(&phba->hbalock, iflags);
4995 if (ready) {
4996 iocb->fabric_iocb_cmpl = iocb->iocb_cmpl;
4997 iocb->iocb_cmpl = lpfc_cmpl_fabric_iocb;
4998 iocb->iocb_flag |= LPFC_IO_FABRIC;
4999
James Smart858c9f62007-06-17 19:56:39 -05005000 lpfc_debugfs_disc_trc(iocb->vport, LPFC_DISC_TRC_ELS_CMD,
5001 "Fabric sched2: ste:x%x",
5002 iocb->vport->port_state, 0, 0);
5003
James Smart92d7f7b2007-06-17 19:56:38 -05005004 ret = lpfc_sli_issue_iocb(phba, pring, iocb, 0);
5005
5006 if (ret == IOCB_ERROR) {
5007 iocb->iocb_cmpl = iocb->fabric_iocb_cmpl;
5008 iocb->fabric_iocb_cmpl = NULL;
5009 iocb->iocb_flag &= ~LPFC_IO_FABRIC;
5010 atomic_dec(&phba->fabric_iocb_count);
5011 }
5012 } else {
5013 spin_lock_irqsave(&phba->hbalock, iflags);
5014 list_add_tail(&iocb->list, &phba->fabric_iocb_list);
5015 spin_unlock_irqrestore(&phba->hbalock, iflags);
5016 ret = IOCB_SUCCESS;
5017 }
5018 return ret;
5019}
5020
5021
Adrian Bunka6ababd2007-11-05 18:07:33 +01005022static void lpfc_fabric_abort_vport(struct lpfc_vport *vport)
James Smart92d7f7b2007-06-17 19:56:38 -05005023{
5024 LIST_HEAD(completions);
5025 struct lpfc_hba *phba = vport->phba;
5026 struct lpfc_iocbq *tmp_iocb, *piocb;
5027 IOCB_t *cmd;
5028
5029 spin_lock_irq(&phba->hbalock);
5030 list_for_each_entry_safe(piocb, tmp_iocb, &phba->fabric_iocb_list,
5031 list) {
5032
5033 if (piocb->vport != vport)
5034 continue;
5035
5036 list_move_tail(&piocb->list, &completions);
5037 }
5038 spin_unlock_irq(&phba->hbalock);
5039
5040 while (!list_empty(&completions)) {
5041 piocb = list_get_first(&completions, struct lpfc_iocbq, list);
5042 list_del_init(&piocb->list);
5043
5044 cmd = &piocb->iocb;
5045 cmd->ulpStatus = IOSTAT_LOCAL_REJECT;
5046 cmd->un.ulpWord[4] = IOERR_SLI_ABORTED;
5047 (piocb->iocb_cmpl) (phba, piocb, piocb);
5048 }
5049}
5050
5051void lpfc_fabric_abort_nport(struct lpfc_nodelist *ndlp)
5052{
5053 LIST_HEAD(completions);
5054 struct lpfc_hba *phba = ndlp->vport->phba;
5055 struct lpfc_iocbq *tmp_iocb, *piocb;
5056 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
5057 IOCB_t *cmd;
5058
5059 spin_lock_irq(&phba->hbalock);
5060 list_for_each_entry_safe(piocb, tmp_iocb, &phba->fabric_iocb_list,
5061 list) {
5062 if ((lpfc_check_sli_ndlp(phba, pring, piocb, ndlp))) {
5063
5064 list_move_tail(&piocb->list, &completions);
5065 }
5066 }
5067 spin_unlock_irq(&phba->hbalock);
5068
5069 while (!list_empty(&completions)) {
5070 piocb = list_get_first(&completions, struct lpfc_iocbq, list);
5071 list_del_init(&piocb->list);
5072
5073 cmd = &piocb->iocb;
5074 cmd->ulpStatus = IOSTAT_LOCAL_REJECT;
5075 cmd->un.ulpWord[4] = IOERR_SLI_ABORTED;
5076 (piocb->iocb_cmpl) (phba, piocb, piocb);
5077 }
5078}
5079
5080void lpfc_fabric_abort_hba(struct lpfc_hba *phba)
5081{
5082 LIST_HEAD(completions);
5083 struct lpfc_iocbq *piocb;
5084 IOCB_t *cmd;
5085
5086 spin_lock_irq(&phba->hbalock);
5087 list_splice_init(&phba->fabric_iocb_list, &completions);
5088 spin_unlock_irq(&phba->hbalock);
5089
5090 while (!list_empty(&completions)) {
5091 piocb = list_get_first(&completions, struct lpfc_iocbq, list);
5092 list_del_init(&piocb->list);
5093
5094 cmd = &piocb->iocb;
5095 cmd->ulpStatus = IOSTAT_LOCAL_REJECT;
5096 cmd->un.ulpWord[4] = IOERR_SLI_ABORTED;
5097 (piocb->iocb_cmpl) (phba, piocb, piocb);
5098 }
5099}
5100
5101
Adrian Bunka6ababd2007-11-05 18:07:33 +01005102#if 0
James Smart92d7f7b2007-06-17 19:56:38 -05005103void lpfc_fabric_abort_flogi(struct lpfc_hba *phba)
5104{
5105 LIST_HEAD(completions);
5106 struct lpfc_iocbq *tmp_iocb, *piocb;
5107 IOCB_t *cmd;
5108 struct lpfc_nodelist *ndlp;
5109
5110 spin_lock_irq(&phba->hbalock);
5111 list_for_each_entry_safe(piocb, tmp_iocb, &phba->fabric_iocb_list,
5112 list) {
5113
5114 cmd = &piocb->iocb;
5115 ndlp = (struct lpfc_nodelist *) piocb->context1;
5116 if (cmd->ulpCommand == CMD_ELS_REQUEST64_CR &&
5117 ndlp != NULL &&
5118 ndlp->nlp_DID == Fabric_DID)
5119 list_move_tail(&piocb->list, &completions);
5120 }
5121 spin_unlock_irq(&phba->hbalock);
5122
5123 while (!list_empty(&completions)) {
5124 piocb = list_get_first(&completions, struct lpfc_iocbq, list);
5125 list_del_init(&piocb->list);
5126
5127 cmd = &piocb->iocb;
5128 cmd->ulpStatus = IOSTAT_LOCAL_REJECT;
5129 cmd->un.ulpWord[4] = IOERR_SLI_ABORTED;
5130 (piocb->iocb_cmpl) (phba, piocb, piocb);
5131 }
5132}
Adrian Bunka6ababd2007-11-05 18:07:33 +01005133#endif /* 0 */
James Smart92d7f7b2007-06-17 19:56:38 -05005134
5135