blob: 6b8ee7449f16a197b833591ffbc89ae31f21c61d [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 Smart92c13f22013-05-31 17:05:45 -04004 * Copyright (C) 2004-2013 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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/slab.h>
dea31012005-04-17 16:05:31 -050025#include <linux/interrupt.h>
26
James.Smart@Emulex.Com91886522005-08-10 15:03:09 -040027#include <scsi/scsi.h>
dea31012005-04-17 16:05:31 -050028#include <scsi/scsi_device.h>
29#include <scsi/scsi_host.h>
30#include <scsi/scsi_transport_fc.h>
31
James Smarte74c03c2013-04-17 20:15:19 -040032
James Smartda0436e2009-05-22 14:51:39 -040033#include "lpfc_hw4.h"
dea31012005-04-17 16:05:31 -050034#include "lpfc_hw.h"
35#include "lpfc_sli.h"
James Smartda0436e2009-05-22 14:51:39 -040036#include "lpfc_sli4.h"
James Smartea2151b2008-09-07 11:52:10 -040037#include "lpfc_nl.h"
dea31012005-04-17 16:05:31 -050038#include "lpfc_disc.h"
39#include "lpfc_scsi.h"
40#include "lpfc.h"
41#include "lpfc_logmsg.h"
42#include "lpfc_crtn.h"
James Smart92d7f7b2007-06-17 19:56:38 -050043#include "lpfc_vport.h"
James Smart858c9f62007-06-17 19:56:39 -050044#include "lpfc_debugfs.h"
dea31012005-04-17 16:05:31 -050045
46static int lpfc_els_retry(struct lpfc_hba *, struct lpfc_iocbq *,
47 struct lpfc_iocbq *);
James Smart92d7f7b2007-06-17 19:56:38 -050048static void lpfc_cmpl_fabric_iocb(struct lpfc_hba *, struct lpfc_iocbq *,
49 struct lpfc_iocbq *);
Adrian Bunka6ababd2007-11-05 18:07:33 +010050static void lpfc_fabric_abort_vport(struct lpfc_vport *vport);
51static int lpfc_issue_els_fdisc(struct lpfc_vport *vport,
52 struct lpfc_nodelist *ndlp, uint8_t retry);
53static int lpfc_issue_fabric_iocb(struct lpfc_hba *phba,
54 struct lpfc_iocbq *iocb);
James Smart92d7f7b2007-06-17 19:56:38 -050055
dea31012005-04-17 16:05:31 -050056static int lpfc_max_els_tries = 3;
57
James Smarte59058c2008-08-24 21:49:00 -040058/**
James Smart3621a712009-04-06 18:47:14 -040059 * lpfc_els_chk_latt - Check host link attention event for a vport
James Smarte59058c2008-08-24 21:49:00 -040060 * @vport: pointer to a host virtual N_Port data structure.
61 *
62 * This routine checks whether there is an outstanding host link
63 * attention event during the discovery process with the @vport. It is done
64 * by reading the HBA's Host Attention (HA) register. If there is any host
65 * link attention events during this @vport's discovery process, the @vport
66 * shall be marked as FC_ABORT_DISCOVERY, a host link attention clear shall
67 * be issued if the link state is not already in host link cleared state,
68 * and a return code shall indicate whether the host link attention event
69 * had happened.
70 *
71 * Note that, if either the host link is in state LPFC_LINK_DOWN or @vport
72 * state in LPFC_VPORT_READY, the request for checking host link attention
73 * event will be ignored and a return code shall indicate no host link
74 * attention event had happened.
75 *
76 * Return codes
77 * 0 - no host link attention event happened
78 * 1 - host link attention event happened
79 **/
James Smart858c9f62007-06-17 19:56:39 -050080int
James Smart2e0fef82007-06-17 19:56:36 -050081lpfc_els_chk_latt(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -050082{
James Smart2e0fef82007-06-17 19:56:36 -050083 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
84 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -050085 uint32_t ha_copy;
dea31012005-04-17 16:05:31 -050086
James Smart2e0fef82007-06-17 19:56:36 -050087 if (vport->port_state >= LPFC_VPORT_READY ||
James Smart3772a992009-05-22 14:50:54 -040088 phba->link_state == LPFC_LINK_DOWN ||
89 phba->sli_rev > LPFC_SLI_REV3)
dea31012005-04-17 16:05:31 -050090 return 0;
91
92 /* Read the HBA Host Attention Register */
James Smart9940b972011-03-11 16:06:12 -050093 if (lpfc_readl(phba->HAregaddr, &ha_copy))
94 return 1;
dea31012005-04-17 16:05:31 -050095
96 if (!(ha_copy & HA_LATT))
97 return 0;
98
99 /* Pending Link Event during Discovery */
James Smarte8b62012007-08-02 11:10:09 -0400100 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
101 "0237 Pending Link Event during "
102 "Discovery: State x%x\n",
103 phba->pport->port_state);
dea31012005-04-17 16:05:31 -0500104
105 /* CLEAR_LA should re-enable link attention events and
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300106 * we should then immediately take a LATT event. The
dea31012005-04-17 16:05:31 -0500107 * LATT processing should call lpfc_linkdown() which
108 * will cleanup any left over in-progress discovery
109 * events.
110 */
James Smart2e0fef82007-06-17 19:56:36 -0500111 spin_lock_irq(shost->host_lock);
112 vport->fc_flag |= FC_ABORT_DISCOVERY;
113 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500114
James Smart92d7f7b2007-06-17 19:56:38 -0500115 if (phba->link_state != LPFC_CLEAR_LA)
James Smarted957682007-06-17 19:56:37 -0500116 lpfc_issue_clear_la(phba, vport);
dea31012005-04-17 16:05:31 -0500117
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500118 return 1;
dea31012005-04-17 16:05:31 -0500119}
120
James Smarte59058c2008-08-24 21:49:00 -0400121/**
James Smart3621a712009-04-06 18:47:14 -0400122 * lpfc_prep_els_iocb - Allocate and prepare a lpfc iocb data structure
James Smarte59058c2008-08-24 21:49:00 -0400123 * @vport: pointer to a host virtual N_Port data structure.
124 * @expectRsp: flag indicating whether response is expected.
125 * @cmdSize: size of the ELS command.
126 * @retry: number of retries to the command IOCB when it fails.
127 * @ndlp: pointer to a node-list data structure.
128 * @did: destination identifier.
129 * @elscmd: the ELS command code.
130 *
131 * This routine is used for allocating a lpfc-IOCB data structure from
132 * the driver lpfc-IOCB free-list and prepare the IOCB with the parameters
133 * passed into the routine for discovery state machine to issue an Extended
134 * Link Service (ELS) commands. It is a generic lpfc-IOCB allocation
135 * and preparation routine that is used by all the discovery state machine
136 * routines and the ELS command-specific fields will be later set up by
137 * the individual discovery machine routines after calling this routine
138 * allocating and preparing a generic IOCB data structure. It fills in the
139 * Buffer Descriptor Entries (BDEs), allocates buffers for both command
140 * payload and response payload (if expected). The reference count on the
141 * ndlp is incremented by 1 and the reference to the ndlp is put into
142 * context1 of the IOCB data structure for this IOCB to hold the ndlp
143 * reference for the command's callback function to access later.
144 *
145 * Return code
146 * Pointer to the newly allocated/prepared els iocb data structure
147 * NULL - when els iocb data structure allocation/preparation failed
148 **/
James Smartf1c3b0f2009-07-19 10:01:32 -0400149struct lpfc_iocbq *
James Smart2e0fef82007-06-17 19:56:36 -0500150lpfc_prep_els_iocb(struct lpfc_vport *vport, uint8_t expectRsp,
151 uint16_t cmdSize, uint8_t retry,
152 struct lpfc_nodelist *ndlp, uint32_t did,
153 uint32_t elscmd)
dea31012005-04-17 16:05:31 -0500154{
James Smart2e0fef82007-06-17 19:56:36 -0500155 struct lpfc_hba *phba = vport->phba;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -0400156 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -0500157 struct lpfc_dmabuf *pcmd, *prsp, *pbuflist;
158 struct ulp_bde64 *bpl;
159 IOCB_t *icmd;
160
dea31012005-04-17 16:05:31 -0500161
James Smart2e0fef82007-06-17 19:56:36 -0500162 if (!lpfc_is_link_up(phba))
163 return NULL;
dea31012005-04-17 16:05:31 -0500164
dea31012005-04-17 16:05:31 -0500165 /* Allocate buffer for command iocb */
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -0400166 elsiocb = lpfc_sli_get_iocbq(phba);
dea31012005-04-17 16:05:31 -0500167
168 if (elsiocb == NULL)
169 return NULL;
James Smarte47c9092008-02-08 18:49:26 -0500170
James Smart0c287582009-06-10 17:22:56 -0400171 /*
172 * If this command is for fabric controller and HBA running
173 * in FIP mode send FLOGI, FDISC and LOGO as FIP frames.
174 */
175 if ((did == Fabric_DID) &&
James Smart45ed1192009-10-02 15:17:02 -0400176 (phba->hba_flag & HBA_FIP_SUPPORT) &&
James Smart0c287582009-06-10 17:22:56 -0400177 ((elscmd == ELS_CMD_FLOGI) ||
178 (elscmd == ELS_CMD_FDISC) ||
179 (elscmd == ELS_CMD_LOGO)))
James Smartc8685952009-11-18 15:39:16 -0500180 switch (elscmd) {
181 case ELS_CMD_FLOGI:
James Smartf0d9bcc2010-10-22 11:07:09 -0400182 elsiocb->iocb_flag |=
183 ((LPFC_ELS_ID_FLOGI << LPFC_FIP_ELS_ID_SHIFT)
James Smartc8685952009-11-18 15:39:16 -0500184 & LPFC_FIP_ELS_ID_MASK);
185 break;
186 case ELS_CMD_FDISC:
James Smartf0d9bcc2010-10-22 11:07:09 -0400187 elsiocb->iocb_flag |=
188 ((LPFC_ELS_ID_FDISC << LPFC_FIP_ELS_ID_SHIFT)
James Smartc8685952009-11-18 15:39:16 -0500189 & LPFC_FIP_ELS_ID_MASK);
190 break;
191 case ELS_CMD_LOGO:
James Smartf0d9bcc2010-10-22 11:07:09 -0400192 elsiocb->iocb_flag |=
193 ((LPFC_ELS_ID_LOGO << LPFC_FIP_ELS_ID_SHIFT)
James Smartc8685952009-11-18 15:39:16 -0500194 & LPFC_FIP_ELS_ID_MASK);
195 break;
196 }
James Smart0c287582009-06-10 17:22:56 -0400197 else
James Smartc8685952009-11-18 15:39:16 -0500198 elsiocb->iocb_flag &= ~LPFC_FIP_ELS_ID_MASK;
James Smart0c287582009-06-10 17:22:56 -0400199
dea31012005-04-17 16:05:31 -0500200 icmd = &elsiocb->iocb;
201
202 /* fill in BDEs for command */
203 /* Allocate buffer for command payload */
James Smart98c9ea52007-10-27 13:37:33 -0400204 pcmd = kmalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
205 if (pcmd)
206 pcmd->virt = lpfc_mbuf_alloc(phba, MEM_PRI, &pcmd->phys);
James Smartfa4066b2008-01-11 01:53:27 -0500207 if (!pcmd || !pcmd->virt)
208 goto els_iocb_free_pcmb_exit;
dea31012005-04-17 16:05:31 -0500209
210 INIT_LIST_HEAD(&pcmd->list);
211
212 /* Allocate buffer for response payload */
213 if (expectRsp) {
James Smart92d7f7b2007-06-17 19:56:38 -0500214 prsp = kmalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
dea31012005-04-17 16:05:31 -0500215 if (prsp)
216 prsp->virt = lpfc_mbuf_alloc(phba, MEM_PRI,
217 &prsp->phys);
James Smartfa4066b2008-01-11 01:53:27 -0500218 if (!prsp || !prsp->virt)
219 goto els_iocb_free_prsp_exit;
dea31012005-04-17 16:05:31 -0500220 INIT_LIST_HEAD(&prsp->list);
James Smarte47c9092008-02-08 18:49:26 -0500221 } else
dea31012005-04-17 16:05:31 -0500222 prsp = NULL;
dea31012005-04-17 16:05:31 -0500223
224 /* Allocate buffer for Buffer ptr list */
James Smart92d7f7b2007-06-17 19:56:38 -0500225 pbuflist = kmalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
dea31012005-04-17 16:05:31 -0500226 if (pbuflist)
James Smarted957682007-06-17 19:56:37 -0500227 pbuflist->virt = lpfc_mbuf_alloc(phba, MEM_PRI,
228 &pbuflist->phys);
James Smartfa4066b2008-01-11 01:53:27 -0500229 if (!pbuflist || !pbuflist->virt)
230 goto els_iocb_free_pbuf_exit;
dea31012005-04-17 16:05:31 -0500231
232 INIT_LIST_HEAD(&pbuflist->list);
233
dea31012005-04-17 16:05:31 -0500234 if (expectRsp) {
James Smart939723a2012-05-09 21:19:03 -0400235 icmd->un.elsreq64.bdl.addrHigh = putPaddrHigh(pbuflist->phys);
236 icmd->un.elsreq64.bdl.addrLow = putPaddrLow(pbuflist->phys);
237 icmd->un.elsreq64.bdl.bdeFlags = BUFF_TYPE_BLP_64;
James Smart92d7f7b2007-06-17 19:56:38 -0500238 icmd->un.elsreq64.bdl.bdeSize = (2 * sizeof(struct ulp_bde64));
James Smart939723a2012-05-09 21:19:03 -0400239
240 icmd->un.elsreq64.remoteID = did; /* DID */
dea31012005-04-17 16:05:31 -0500241 icmd->ulpCommand = CMD_ELS_REQUEST64_CR;
James Smart88f43a02013-04-17 20:19:44 -0400242 if (elscmd == ELS_CMD_FLOGI)
243 icmd->ulpTimeout = FF_DEF_RATOV * 2;
244 else
245 icmd->ulpTimeout = phba->fc_ratov * 2;
dea31012005-04-17 16:05:31 -0500246 } else {
James Smart939723a2012-05-09 21:19:03 -0400247 icmd->un.xseq64.bdl.addrHigh = putPaddrHigh(pbuflist->phys);
248 icmd->un.xseq64.bdl.addrLow = putPaddrLow(pbuflist->phys);
249 icmd->un.xseq64.bdl.bdeFlags = BUFF_TYPE_BLP_64;
250 icmd->un.xseq64.bdl.bdeSize = sizeof(struct ulp_bde64);
251 icmd->un.xseq64.xmit_els_remoteID = did; /* DID */
dea31012005-04-17 16:05:31 -0500252 icmd->ulpCommand = CMD_XMIT_ELS_RSP64_CX;
253 }
dea31012005-04-17 16:05:31 -0500254 icmd->ulpBdeCount = 1;
255 icmd->ulpLe = 1;
256 icmd->ulpClass = CLASS3;
257
James Smart939723a2012-05-09 21:19:03 -0400258 /*
259 * If we have NPIV enabled, we want to send ELS traffic by VPI.
260 * For SLI4, since the driver controls VPIs we also want to include
261 * all ELS pt2pt protocol traffic as well.
262 */
263 if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) ||
264 ((phba->sli_rev == LPFC_SLI_REV4) &&
265 (vport->fc_flag & FC_PT2PT))) {
James Smart92d7f7b2007-06-17 19:56:38 -0500266
James Smart939723a2012-05-09 21:19:03 -0400267 if (expectRsp) {
268 icmd->un.elsreq64.myID = vport->fc_myDID;
269
270 /* For ELS_REQUEST64_CR, use the VPI by default */
271 icmd->ulpContext = phba->vpi_ids[vport->vpi];
272 }
273
James Smart92d7f7b2007-06-17 19:56:38 -0500274 icmd->ulpCt_h = 0;
James Smarteada2722008-12-04 22:39:13 -0500275 /* The CT field must be 0=INVALID_RPI for the ECHO cmd */
276 if (elscmd == ELS_CMD_ECHO)
277 icmd->ulpCt_l = 0; /* context = invalid RPI */
278 else
279 icmd->ulpCt_l = 1; /* context = VPI */
James Smart92d7f7b2007-06-17 19:56:38 -0500280 }
281
dea31012005-04-17 16:05:31 -0500282 bpl = (struct ulp_bde64 *) pbuflist->virt;
283 bpl->addrLow = le32_to_cpu(putPaddrLow(pcmd->phys));
284 bpl->addrHigh = le32_to_cpu(putPaddrHigh(pcmd->phys));
285 bpl->tus.f.bdeSize = cmdSize;
286 bpl->tus.f.bdeFlags = 0;
287 bpl->tus.w = le32_to_cpu(bpl->tus.w);
288
289 if (expectRsp) {
290 bpl++;
291 bpl->addrLow = le32_to_cpu(putPaddrLow(prsp->phys));
292 bpl->addrHigh = le32_to_cpu(putPaddrHigh(prsp->phys));
293 bpl->tus.f.bdeSize = FCELSSIZE;
James Smart34b02dc2008-08-24 21:49:55 -0400294 bpl->tus.f.bdeFlags = BUFF_TYPE_BDE_64;
dea31012005-04-17 16:05:31 -0500295 bpl->tus.w = le32_to_cpu(bpl->tus.w);
296 }
297
James Smartfa4066b2008-01-11 01:53:27 -0500298 /* prevent preparing iocb with NULL ndlp reference */
James Smart51ef4c22007-08-02 11:10:31 -0400299 elsiocb->context1 = lpfc_nlp_get(ndlp);
James Smartfa4066b2008-01-11 01:53:27 -0500300 if (!elsiocb->context1)
301 goto els_iocb_free_pbuf_exit;
James Smart329f9bc2007-04-25 09:53:01 -0400302 elsiocb->context2 = pcmd;
303 elsiocb->context3 = pbuflist;
dea31012005-04-17 16:05:31 -0500304 elsiocb->retry = retry;
James Smart2e0fef82007-06-17 19:56:36 -0500305 elsiocb->vport = vport;
dea31012005-04-17 16:05:31 -0500306 elsiocb->drvrTimeout = (phba->fc_ratov << 1) + LPFC_DRVR_TIMEOUT;
307
308 if (prsp) {
309 list_add(&prsp->list, &pcmd->list);
310 }
dea31012005-04-17 16:05:31 -0500311 if (expectRsp) {
312 /* Xmit ELS command <elsCmd> to remote NPORT <did> */
James Smarte8b62012007-08-02 11:10:09 -0400313 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
314 "0116 Xmit ELS command x%x to remote "
James Smarte74c03c2013-04-17 20:15:19 -0400315 "NPORT x%x I/O tag: x%x, port state:x%x"
316 " fc_flag:x%x\n",
James Smarte8b62012007-08-02 11:10:09 -0400317 elscmd, did, elsiocb->iotag,
James Smarte74c03c2013-04-17 20:15:19 -0400318 vport->port_state,
319 vport->fc_flag);
dea31012005-04-17 16:05:31 -0500320 } else {
321 /* Xmit ELS response <elsCmd> to remote NPORT <did> */
James Smarte8b62012007-08-02 11:10:09 -0400322 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
323 "0117 Xmit ELS response x%x to remote "
James Smarte74c03c2013-04-17 20:15:19 -0400324 "NPORT x%x I/O tag: x%x, size: x%x "
325 "port_state x%x fc_flag x%x\n",
James Smarte8b62012007-08-02 11:10:09 -0400326 elscmd, ndlp->nlp_DID, elsiocb->iotag,
James Smarte74c03c2013-04-17 20:15:19 -0400327 cmdSize, vport->port_state,
328 vport->fc_flag);
dea31012005-04-17 16:05:31 -0500329 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500330 return elsiocb;
dea31012005-04-17 16:05:31 -0500331
James Smartfa4066b2008-01-11 01:53:27 -0500332els_iocb_free_pbuf_exit:
James Smarteaf15d52008-12-04 22:39:29 -0500333 if (expectRsp)
334 lpfc_mbuf_free(phba, prsp->virt, prsp->phys);
James Smartfa4066b2008-01-11 01:53:27 -0500335 kfree(pbuflist);
336
337els_iocb_free_prsp_exit:
338 lpfc_mbuf_free(phba, pcmd->virt, pcmd->phys);
339 kfree(prsp);
340
341els_iocb_free_pcmb_exit:
342 kfree(pcmd);
343 lpfc_sli_release_iocbq(phba, elsiocb);
344 return NULL;
345}
dea31012005-04-17 16:05:31 -0500346
James Smarte59058c2008-08-24 21:49:00 -0400347/**
James Smart3621a712009-04-06 18:47:14 -0400348 * lpfc_issue_fabric_reglogin - Issue fabric registration login for a vport
James Smarte59058c2008-08-24 21:49:00 -0400349 * @vport: pointer to a host virtual N_Port data structure.
350 *
351 * This routine issues a fabric registration login for a @vport. An
352 * active ndlp node with Fabric_DID must already exist for this @vport.
353 * The routine invokes two mailbox commands to carry out fabric registration
354 * login through the HBA firmware: the first mailbox command requests the
355 * HBA to perform link configuration for the @vport; and the second mailbox
356 * command requests the HBA to perform the actual fabric registration login
357 * with the @vport.
358 *
359 * Return code
360 * 0 - successfully issued fabric registration login for @vport
361 * -ENXIO -- failed to issue fabric registration login for @vport
362 **/
James Smart3772a992009-05-22 14:50:54 -0400363int
James Smart92d7f7b2007-06-17 19:56:38 -0500364lpfc_issue_fabric_reglogin(struct lpfc_vport *vport)
365{
366 struct lpfc_hba *phba = vport->phba;
367 LPFC_MBOXQ_t *mbox;
368 struct lpfc_dmabuf *mp;
369 struct lpfc_nodelist *ndlp;
370 struct serv_parm *sp;
371 int rc;
James Smart98c9ea52007-10-27 13:37:33 -0400372 int err = 0;
James Smart92d7f7b2007-06-17 19:56:38 -0500373
374 sp = &phba->fc_fabparam;
375 ndlp = lpfc_findnode_did(vport, Fabric_DID);
James Smarte47c9092008-02-08 18:49:26 -0500376 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp)) {
James Smart98c9ea52007-10-27 13:37:33 -0400377 err = 1;
James Smart92d7f7b2007-06-17 19:56:38 -0500378 goto fail;
James Smart98c9ea52007-10-27 13:37:33 -0400379 }
James Smart92d7f7b2007-06-17 19:56:38 -0500380
381 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
James Smart98c9ea52007-10-27 13:37:33 -0400382 if (!mbox) {
383 err = 2;
James Smart92d7f7b2007-06-17 19:56:38 -0500384 goto fail;
James Smart98c9ea52007-10-27 13:37:33 -0400385 }
James Smart92d7f7b2007-06-17 19:56:38 -0500386
387 vport->port_state = LPFC_FABRIC_CFG_LINK;
388 lpfc_config_link(phba, mbox);
389 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
390 mbox->vport = vport;
391
James Smart0b727fe2007-10-27 13:37:25 -0400392 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
James Smart98c9ea52007-10-27 13:37:33 -0400393 if (rc == MBX_NOT_FINISHED) {
394 err = 3;
James Smart92d7f7b2007-06-17 19:56:38 -0500395 goto fail_free_mbox;
James Smart98c9ea52007-10-27 13:37:33 -0400396 }
James Smart92d7f7b2007-06-17 19:56:38 -0500397
398 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
James Smart98c9ea52007-10-27 13:37:33 -0400399 if (!mbox) {
400 err = 4;
James Smart92d7f7b2007-06-17 19:56:38 -0500401 goto fail;
James Smart98c9ea52007-10-27 13:37:33 -0400402 }
James Smart40426292010-12-15 17:58:10 -0500403 rc = lpfc_reg_rpi(phba, vport->vpi, Fabric_DID, (uint8_t *)sp, mbox,
404 ndlp->nlp_rpi);
James Smart98c9ea52007-10-27 13:37:33 -0400405 if (rc) {
406 err = 5;
James Smart92d7f7b2007-06-17 19:56:38 -0500407 goto fail_free_mbox;
James Smart98c9ea52007-10-27 13:37:33 -0400408 }
James Smart92d7f7b2007-06-17 19:56:38 -0500409
410 mbox->mbox_cmpl = lpfc_mbx_cmpl_fabric_reg_login;
411 mbox->vport = vport;
James Smarte47c9092008-02-08 18:49:26 -0500412 /* increment the reference count on ndlp to hold reference
413 * for the callback routine.
414 */
James Smart92d7f7b2007-06-17 19:56:38 -0500415 mbox->context2 = lpfc_nlp_get(ndlp);
416
James Smart0b727fe2007-10-27 13:37:25 -0400417 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
James Smart98c9ea52007-10-27 13:37:33 -0400418 if (rc == MBX_NOT_FINISHED) {
419 err = 6;
James Smart92d7f7b2007-06-17 19:56:38 -0500420 goto fail_issue_reg_login;
James Smart98c9ea52007-10-27 13:37:33 -0400421 }
James Smart92d7f7b2007-06-17 19:56:38 -0500422
423 return 0;
424
425fail_issue_reg_login:
James Smarte47c9092008-02-08 18:49:26 -0500426 /* decrement the reference count on ndlp just incremented
427 * for the failed mbox command.
428 */
James Smart92d7f7b2007-06-17 19:56:38 -0500429 lpfc_nlp_put(ndlp);
430 mp = (struct lpfc_dmabuf *) mbox->context1;
431 lpfc_mbuf_free(phba, mp->virt, mp->phys);
432 kfree(mp);
433fail_free_mbox:
434 mempool_free(mbox, phba->mbox_mem_pool);
435
436fail:
437 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
James Smarte8b62012007-08-02 11:10:09 -0400438 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
James Smart98c9ea52007-10-27 13:37:33 -0400439 "0249 Cannot issue Register Fabric login: Err %d\n", err);
James Smart92d7f7b2007-06-17 19:56:38 -0500440 return -ENXIO;
441}
442
James Smarte59058c2008-08-24 21:49:00 -0400443/**
James Smart6fb120a2009-05-22 14:52:59 -0400444 * lpfc_issue_reg_vfi - Register VFI for this vport's fabric login
445 * @vport: pointer to a host virtual N_Port data structure.
446 *
447 * This routine issues a REG_VFI mailbox for the vfi, vpi, fcfi triplet for
James Smart1b511972011-12-13 13:23:09 -0500448 * the @vport. This mailbox command is necessary for SLI4 port only.
James Smart6fb120a2009-05-22 14:52:59 -0400449 *
450 * Return code
451 * 0 - successfully issued REG_VFI for @vport
452 * A failure code otherwise.
453 **/
James Smart1b511972011-12-13 13:23:09 -0500454int
James Smart6fb120a2009-05-22 14:52:59 -0400455lpfc_issue_reg_vfi(struct lpfc_vport *vport)
456{
457 struct lpfc_hba *phba = vport->phba;
458 LPFC_MBOXQ_t *mboxq;
459 struct lpfc_nodelist *ndlp;
460 struct serv_parm *sp;
461 struct lpfc_dmabuf *dmabuf;
462 int rc = 0;
463
464 sp = &phba->fc_fabparam;
James Smart939723a2012-05-09 21:19:03 -0400465 /* move forward in case of SLI4 FC port loopback test and pt2pt mode */
James Smart1b511972011-12-13 13:23:09 -0500466 if ((phba->sli_rev == LPFC_SLI_REV4) &&
James Smart939723a2012-05-09 21:19:03 -0400467 !(phba->link_flag & LS_LOOPBACK_MODE) &&
468 !(vport->fc_flag & FC_PT2PT)) {
James Smart1b511972011-12-13 13:23:09 -0500469 ndlp = lpfc_findnode_did(vport, Fabric_DID);
470 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp)) {
471 rc = -ENODEV;
472 goto fail;
473 }
James Smart6fb120a2009-05-22 14:52:59 -0400474 }
475
476 dmabuf = kzalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
477 if (!dmabuf) {
478 rc = -ENOMEM;
479 goto fail;
480 }
481 dmabuf->virt = lpfc_mbuf_alloc(phba, MEM_PRI, &dmabuf->phys);
482 if (!dmabuf->virt) {
483 rc = -ENOMEM;
484 goto fail_free_dmabuf;
485 }
James Smart6d368e52011-05-24 11:44:12 -0400486
James Smart6fb120a2009-05-22 14:52:59 -0400487 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
488 if (!mboxq) {
489 rc = -ENOMEM;
490 goto fail_free_coherent;
491 }
492 vport->port_state = LPFC_FABRIC_CFG_LINK;
493 memcpy(dmabuf->virt, &phba->fc_fabparam, sizeof(vport->fc_sparam));
494 lpfc_reg_vfi(mboxq, vport, dmabuf->phys);
James Smartae05ebe2013-03-01 16:35:38 -0500495
James Smart6fb120a2009-05-22 14:52:59 -0400496 mboxq->mbox_cmpl = lpfc_mbx_cmpl_reg_vfi;
497 mboxq->vport = vport;
498 mboxq->context1 = dmabuf;
499 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
500 if (rc == MBX_NOT_FINISHED) {
501 rc = -ENXIO;
502 goto fail_free_mbox;
503 }
504 return 0;
505
506fail_free_mbox:
507 mempool_free(mboxq, phba->mbox_mem_pool);
508fail_free_coherent:
509 lpfc_mbuf_free(phba, dmabuf->virt, dmabuf->phys);
510fail_free_dmabuf:
511 kfree(dmabuf);
512fail:
513 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
514 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
515 "0289 Issue Register VFI failed: Err %d\n", rc);
516 return rc;
517}
518
519/**
James Smart1b511972011-12-13 13:23:09 -0500520 * lpfc_issue_unreg_vfi - Unregister VFI for this vport's fabric login
521 * @vport: pointer to a host virtual N_Port data structure.
522 *
523 * This routine issues a UNREG_VFI mailbox with the vfi, vpi, fcfi triplet for
524 * the @vport. This mailbox command is necessary for SLI4 port only.
525 *
526 * Return code
527 * 0 - successfully issued REG_VFI for @vport
528 * A failure code otherwise.
529 **/
530int
531lpfc_issue_unreg_vfi(struct lpfc_vport *vport)
532{
533 struct lpfc_hba *phba = vport->phba;
534 struct Scsi_Host *shost;
535 LPFC_MBOXQ_t *mboxq;
536 int rc;
537
538 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
539 if (!mboxq) {
540 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY|LOG_MBOX,
541 "2556 UNREG_VFI mbox allocation failed"
542 "HBA state x%x\n", phba->pport->port_state);
543 return -ENOMEM;
544 }
545
546 lpfc_unreg_vfi(mboxq, vport);
547 mboxq->vport = vport;
548 mboxq->mbox_cmpl = lpfc_unregister_vfi_cmpl;
549
550 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
551 if (rc == MBX_NOT_FINISHED) {
552 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY|LOG_MBOX,
553 "2557 UNREG_VFI issue mbox failed rc x%x "
554 "HBA state x%x\n",
555 rc, phba->pport->port_state);
556 mempool_free(mboxq, phba->mbox_mem_pool);
557 return -EIO;
558 }
559
560 shost = lpfc_shost_from_vport(vport);
561 spin_lock_irq(shost->host_lock);
562 vport->fc_flag &= ~FC_VFI_REGISTERED;
563 spin_unlock_irq(shost->host_lock);
564 return 0;
565}
566
567/**
James Smart92494142011-02-16 12:39:44 -0500568 * lpfc_check_clean_addr_bit - Check whether assigned FCID is clean.
569 * @vport: pointer to a host virtual N_Port data structure.
570 * @sp: pointer to service parameter data structure.
571 *
572 * This routine is called from FLOGI/FDISC completion handler functions.
573 * lpfc_check_clean_addr_bit return 1 when FCID/Fabric portname/ Fabric
574 * node nodename is changed in the completion service parameter else return
575 * 0. This function also set flag in the vport data structure to delay
576 * NP_Port discovery after the FLOGI/FDISC completion if Clean address bit
577 * in FLOGI/FDISC response is cleared and FCID/Fabric portname/ Fabric
578 * node nodename is changed in the completion service parameter.
579 *
580 * Return code
581 * 0 - FCID and Fabric Nodename and Fabric portname is not changed.
582 * 1 - FCID or Fabric Nodename or Fabric portname is changed.
583 *
584 **/
585static uint8_t
586lpfc_check_clean_addr_bit(struct lpfc_vport *vport,
587 struct serv_parm *sp)
588{
589 uint8_t fabric_param_changed = 0;
590 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
591
592 if ((vport->fc_prevDID != vport->fc_myDID) ||
593 memcmp(&vport->fabric_portname, &sp->portName,
594 sizeof(struct lpfc_name)) ||
595 memcmp(&vport->fabric_nodename, &sp->nodeName,
596 sizeof(struct lpfc_name)))
597 fabric_param_changed = 1;
598
599 /*
600 * Word 1 Bit 31 in common service parameter is overloaded.
601 * Word 1 Bit 31 in FLOGI request is multiple NPort request
602 * Word 1 Bit 31 in FLOGI response is clean address bit
603 *
604 * If fabric parameter is changed and clean address bit is
605 * cleared delay nport discovery if
606 * - vport->fc_prevDID != 0 (not initial discovery) OR
607 * - lpfc_delay_discovery module parameter is set.
608 */
609 if (fabric_param_changed && !sp->cmn.clean_address_bit &&
610 (vport->fc_prevDID || lpfc_delay_discovery)) {
611 spin_lock_irq(shost->host_lock);
612 vport->fc_flag |= FC_DISC_DELAYED;
613 spin_unlock_irq(shost->host_lock);
614 }
615
616 return fabric_param_changed;
617}
618
619
620/**
James Smart3621a712009-04-06 18:47:14 -0400621 * lpfc_cmpl_els_flogi_fabric - Completion function for flogi to a fabric port
James Smarte59058c2008-08-24 21:49:00 -0400622 * @vport: pointer to a host virtual N_Port data structure.
623 * @ndlp: pointer to a node-list data structure.
624 * @sp: pointer to service parameter data structure.
625 * @irsp: pointer to the IOCB within the lpfc response IOCB.
626 *
627 * This routine is invoked by the lpfc_cmpl_els_flogi() completion callback
628 * function to handle the completion of a Fabric Login (FLOGI) into a fabric
629 * port in a fabric topology. It properly sets up the parameters to the @ndlp
630 * from the IOCB response. It also check the newly assigned N_Port ID to the
631 * @vport against the previously assigned N_Port ID. If it is different from
632 * the previously assigned Destination ID (DID), the lpfc_unreg_rpi() routine
633 * is invoked on all the remaining nodes with the @vport to unregister the
634 * Remote Port Indicators (RPIs). Finally, the lpfc_issue_fabric_reglogin()
635 * is invoked to register login to the fabric.
636 *
637 * Return code
638 * 0 - Success (currently, always return 0)
639 **/
James Smart92d7f7b2007-06-17 19:56:38 -0500640static int
James Smart2e0fef82007-06-17 19:56:36 -0500641lpfc_cmpl_els_flogi_fabric(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
642 struct serv_parm *sp, IOCB_t *irsp)
dea31012005-04-17 16:05:31 -0500643{
James Smart2e0fef82007-06-17 19:56:36 -0500644 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
645 struct lpfc_hba *phba = vport->phba;
James Smart92d7f7b2007-06-17 19:56:38 -0500646 struct lpfc_nodelist *np;
647 struct lpfc_nodelist *next_np;
James Smart92494142011-02-16 12:39:44 -0500648 uint8_t fabric_param_changed;
dea31012005-04-17 16:05:31 -0500649
James Smart2e0fef82007-06-17 19:56:36 -0500650 spin_lock_irq(shost->host_lock);
651 vport->fc_flag |= FC_FABRIC;
652 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500653
654 phba->fc_edtov = be32_to_cpu(sp->cmn.e_d_tov);
655 if (sp->cmn.edtovResolution) /* E_D_TOV ticks are in nanoseconds */
656 phba->fc_edtov = (phba->fc_edtov + 999999) / 1000000;
657
James Smart12265f62010-10-22 11:05:53 -0400658 phba->fc_edtovResol = sp->cmn.edtovResolution;
dea31012005-04-17 16:05:31 -0500659 phba->fc_ratov = (be32_to_cpu(sp->cmn.w2.r_a_tov) + 999) / 1000;
660
James Smart76a95d72010-11-20 23:11:48 -0500661 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
James Smart2e0fef82007-06-17 19:56:36 -0500662 spin_lock_irq(shost->host_lock);
663 vport->fc_flag |= FC_PUBLIC_LOOP;
664 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500665 }
666
James Smart2e0fef82007-06-17 19:56:36 -0500667 vport->fc_myDID = irsp->un.ulpWord[4] & Mask_DID;
dea31012005-04-17 16:05:31 -0500668 memcpy(&ndlp->nlp_portname, &sp->portName, sizeof(struct lpfc_name));
James Smart92d7f7b2007-06-17 19:56:38 -0500669 memcpy(&ndlp->nlp_nodename, &sp->nodeName, sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -0500670 ndlp->nlp_class_sup = 0;
671 if (sp->cls1.classValid)
672 ndlp->nlp_class_sup |= FC_COS_CLASS1;
673 if (sp->cls2.classValid)
674 ndlp->nlp_class_sup |= FC_COS_CLASS2;
675 if (sp->cls3.classValid)
676 ndlp->nlp_class_sup |= FC_COS_CLASS3;
677 if (sp->cls4.classValid)
678 ndlp->nlp_class_sup |= FC_COS_CLASS4;
679 ndlp->nlp_maxframe = ((sp->cmn.bbRcvSizeMsb & 0x0F) << 8) |
680 sp->cmn.bbRcvSizeLsb;
James Smart92494142011-02-16 12:39:44 -0500681
682 fabric_param_changed = lpfc_check_clean_addr_bit(vport, sp);
683 memcpy(&vport->fabric_portname, &sp->portName,
684 sizeof(struct lpfc_name));
685 memcpy(&vport->fabric_nodename, &sp->nodeName,
686 sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -0500687 memcpy(&phba->fc_fabparam, sp, sizeof(struct serv_parm));
688
James Smart92d7f7b2007-06-17 19:56:38 -0500689 if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) {
690 if (sp->cmn.response_multiple_NPort) {
James Smarte8b62012007-08-02 11:10:09 -0400691 lpfc_printf_vlog(vport, KERN_WARNING,
692 LOG_ELS | LOG_VPORT,
693 "1816 FLOGI NPIV supported, "
694 "response data 0x%x\n",
695 sp->cmn.response_multiple_NPort);
James Smart1b511972011-12-13 13:23:09 -0500696 spin_lock_irq(&phba->hbalock);
James Smart92d7f7b2007-06-17 19:56:38 -0500697 phba->link_flag |= LS_NPIV_FAB_SUPPORTED;
James Smart1b511972011-12-13 13:23:09 -0500698 spin_unlock_irq(&phba->hbalock);
James Smart92d7f7b2007-06-17 19:56:38 -0500699 } else {
700 /* Because we asked f/w for NPIV it still expects us
James Smarte8b62012007-08-02 11:10:09 -0400701 to call reg_vnpid atleast for the physcial host */
702 lpfc_printf_vlog(vport, KERN_WARNING,
703 LOG_ELS | LOG_VPORT,
704 "1817 Fabric does not support NPIV "
705 "- configuring single port mode.\n");
James Smart1b511972011-12-13 13:23:09 -0500706 spin_lock_irq(&phba->hbalock);
James Smart92d7f7b2007-06-17 19:56:38 -0500707 phba->link_flag &= ~LS_NPIV_FAB_SUPPORTED;
James Smart1b511972011-12-13 13:23:09 -0500708 spin_unlock_irq(&phba->hbalock);
James Smart92d7f7b2007-06-17 19:56:38 -0500709 }
710 }
711
James Smartae05ebe2013-03-01 16:35:38 -0500712 /*
713 * For FC we need to do some special processing because of the SLI
714 * Port's default settings of the Common Service Parameters.
715 */
716 if (phba->sli4_hba.lnk_info.lnk_tp == LPFC_LNK_TYPE_FC) {
717 /* If physical FC port changed, unreg VFI and ALL VPIs / RPIs */
718 if ((phba->sli_rev == LPFC_SLI_REV4) && fabric_param_changed)
719 lpfc_unregister_fcf_prep(phba);
720
721 /* This should just update the VFI CSPs*/
722 if (vport->fc_flag & FC_VFI_REGISTERED)
723 lpfc_issue_reg_vfi(vport);
724 }
725
James Smart92494142011-02-16 12:39:44 -0500726 if (fabric_param_changed &&
James Smart92d7f7b2007-06-17 19:56:38 -0500727 !(vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)) {
728
729 /* If our NportID changed, we need to ensure all
730 * remaining NPORTs get unreg_login'ed.
731 */
732 list_for_each_entry_safe(np, next_np,
733 &vport->fc_nodes, nlp_listp) {
James Smartd7c255b2008-08-24 21:50:00 -0400734 if (!NLP_CHK_NODE_ACT(np))
James Smarte47c9092008-02-08 18:49:26 -0500735 continue;
James Smart92d7f7b2007-06-17 19:56:38 -0500736 if ((np->nlp_state != NLP_STE_NPR_NODE) ||
737 !(np->nlp_flag & NLP_NPR_ADISC))
738 continue;
739 spin_lock_irq(shost->host_lock);
740 np->nlp_flag &= ~NLP_NPR_ADISC;
741 spin_unlock_irq(shost->host_lock);
742 lpfc_unreg_rpi(vport, np);
743 }
James Smart78730cf2010-04-06 15:06:30 -0400744 lpfc_cleanup_pending_mbox(vport);
James Smart5af5eee2010-10-22 11:06:38 -0400745
James Smart5248a742011-07-22 18:37:06 -0400746 if (phba->sli_rev == LPFC_SLI_REV4) {
James Smart5af5eee2010-10-22 11:06:38 -0400747 lpfc_sli4_unreg_all_rpis(vport);
James Smart92d7f7b2007-06-17 19:56:38 -0500748 lpfc_mbx_unreg_vpi(vport);
James Smart09372822008-01-11 01:52:54 -0500749 spin_lock_irq(shost->host_lock);
James Smartecfd03c2010-02-12 14:41:27 -0500750 vport->fc_flag |= FC_VPORT_NEEDS_INIT_VPI;
751 spin_unlock_irq(shost->host_lock);
752 }
James Smart27aa1b72012-05-09 21:18:49 -0400753
754 /*
755 * For SLI3 and SLI4, the VPI needs to be reregistered in
756 * response to this fabric parameter change event.
757 */
758 spin_lock_irq(shost->host_lock);
759 vport->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
760 spin_unlock_irq(shost->host_lock);
James Smart38b92ef2010-08-04 16:11:39 -0400761 } else if ((phba->sli_rev == LPFC_SLI_REV4) &&
762 !(vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)) {
763 /*
764 * Driver needs to re-reg VPI in order for f/w
765 * to update the MAC address.
766 */
James Smart9589b062011-04-16 11:03:17 -0400767 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
James Smart38b92ef2010-08-04 16:11:39 -0400768 lpfc_register_new_vport(phba, vport, ndlp);
769 return 0;
James Smart92d7f7b2007-06-17 19:56:38 -0500770 }
771
James Smart6fb120a2009-05-22 14:52:59 -0400772 if (phba->sli_rev < LPFC_SLI_REV4) {
773 lpfc_nlp_set_state(vport, ndlp, NLP_STE_REG_LOGIN_ISSUE);
774 if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED &&
775 vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)
776 lpfc_register_new_vport(phba, vport, ndlp);
777 else
778 lpfc_issue_fabric_reglogin(vport);
779 } else {
780 ndlp->nlp_type |= NLP_FABRIC;
781 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
James Smart695a8142010-01-26 23:08:03 -0500782 if ((!(vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)) &&
783 (vport->vpi_state & LPFC_VPI_REGISTERED)) {
James Smart6fb120a2009-05-22 14:52:59 -0400784 lpfc_start_fdiscs(phba);
785 lpfc_do_scr_ns_plogi(phba, vport);
James Smart695a8142010-01-26 23:08:03 -0500786 } else if (vport->fc_flag & FC_VFI_REGISTERED)
James Smartecfd03c2010-02-12 14:41:27 -0500787 lpfc_issue_init_vpi(vport);
James Smart1b511972011-12-13 13:23:09 -0500788 else {
789 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
790 "3135 Need register VFI: (x%x/%x)\n",
791 vport->fc_prevDID, vport->fc_myDID);
James Smart6fb120a2009-05-22 14:52:59 -0400792 lpfc_issue_reg_vfi(vport);
James Smart1b511972011-12-13 13:23:09 -0500793 }
James Smart92d7f7b2007-06-17 19:56:38 -0500794 }
dea31012005-04-17 16:05:31 -0500795 return 0;
dea31012005-04-17 16:05:31 -0500796}
James Smart1b511972011-12-13 13:23:09 -0500797
James Smarte59058c2008-08-24 21:49:00 -0400798/**
James Smart3621a712009-04-06 18:47:14 -0400799 * lpfc_cmpl_els_flogi_nport - Completion function for flogi to an N_Port
James Smarte59058c2008-08-24 21:49:00 -0400800 * @vport: pointer to a host virtual N_Port data structure.
801 * @ndlp: pointer to a node-list data structure.
802 * @sp: pointer to service parameter data structure.
803 *
804 * This routine is invoked by the lpfc_cmpl_els_flogi() completion callback
805 * function to handle the completion of a Fabric Login (FLOGI) into an N_Port
806 * in a point-to-point topology. First, the @vport's N_Port Name is compared
807 * with the received N_Port Name: if the @vport's N_Port Name is greater than
808 * the received N_Port Name lexicographically, this node shall assign local
809 * N_Port ID (PT2PT_LocalID: 1) and remote N_Port ID (PT2PT_RemoteID: 2) and
810 * will send out Port Login (PLOGI) with the N_Port IDs assigned. Otherwise,
811 * this node shall just wait for the remote node to issue PLOGI and assign
812 * N_Port IDs.
813 *
814 * Return code
815 * 0 - Success
816 * -ENXIO - Fail
817 **/
dea31012005-04-17 16:05:31 -0500818static int
James Smart2e0fef82007-06-17 19:56:36 -0500819lpfc_cmpl_els_flogi_nport(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
820 struct serv_parm *sp)
dea31012005-04-17 16:05:31 -0500821{
James Smart2e0fef82007-06-17 19:56:36 -0500822 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
823 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -0500824 LPFC_MBOXQ_t *mbox;
825 int rc;
826
James Smart2e0fef82007-06-17 19:56:36 -0500827 spin_lock_irq(shost->host_lock);
828 vport->fc_flag &= ~(FC_FABRIC | FC_PUBLIC_LOOP);
829 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500830
831 phba->fc_edtov = FF_DEF_EDTOV;
832 phba->fc_ratov = FF_DEF_RATOV;
James Smart2e0fef82007-06-17 19:56:36 -0500833 rc = memcmp(&vport->fc_portname, &sp->portName,
James Smart92d7f7b2007-06-17 19:56:38 -0500834 sizeof(vport->fc_portname));
James Smart2eb68622012-09-29 11:32:27 -0400835 memcpy(&phba->fc_fabparam, sp, sizeof(struct serv_parm));
836
dea31012005-04-17 16:05:31 -0500837 if (rc >= 0) {
838 /* This side will initiate the PLOGI */
James Smart2e0fef82007-06-17 19:56:36 -0500839 spin_lock_irq(shost->host_lock);
840 vport->fc_flag |= FC_PT2PT_PLOGI;
841 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500842
843 /*
844 * N_Port ID cannot be 0, set our to LocalID the other
845 * side will be RemoteID.
846 */
847
848 /* not equal */
849 if (rc)
James Smart2e0fef82007-06-17 19:56:36 -0500850 vport->fc_myDID = PT2PT_LocalID;
dea31012005-04-17 16:05:31 -0500851
852 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
853 if (!mbox)
854 goto fail;
855
856 lpfc_config_link(phba, mbox);
857
858 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
James Smarted957682007-06-17 19:56:37 -0500859 mbox->vport = vport;
James Smart0b727fe2007-10-27 13:37:25 -0400860 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
dea31012005-04-17 16:05:31 -0500861 if (rc == MBX_NOT_FINISHED) {
862 mempool_free(mbox, phba->mbox_mem_pool);
863 goto fail;
864 }
James Smart939723a2012-05-09 21:19:03 -0400865
866 /*
867 * For SLI4, the VFI/VPI are registered AFTER the
868 * Nport with the higher WWPN sends the PLOGI with
869 * an assigned NPortId.
870 */
871
872 /* not equal */
873 if ((phba->sli_rev == LPFC_SLI_REV4) && rc)
874 lpfc_issue_reg_vfi(vport);
875
James Smarte47c9092008-02-08 18:49:26 -0500876 /* Decrement ndlp reference count indicating that ndlp can be
877 * safely released when other references to it are done.
878 */
James Smart329f9bc2007-04-25 09:53:01 -0400879 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -0500880
James Smart2e0fef82007-06-17 19:56:36 -0500881 ndlp = lpfc_findnode_did(vport, PT2PT_RemoteID);
dea31012005-04-17 16:05:31 -0500882 if (!ndlp) {
883 /*
884 * Cannot find existing Fabric ndlp, so allocate a
885 * new one
886 */
887 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
888 if (!ndlp)
889 goto fail;
James Smart2e0fef82007-06-17 19:56:36 -0500890 lpfc_nlp_init(vport, ndlp, PT2PT_RemoteID);
James Smarte47c9092008-02-08 18:49:26 -0500891 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
892 ndlp = lpfc_enable_node(vport, ndlp,
893 NLP_STE_UNUSED_NODE);
894 if(!ndlp)
895 goto fail;
dea31012005-04-17 16:05:31 -0500896 }
897
898 memcpy(&ndlp->nlp_portname, &sp->portName,
James Smart2e0fef82007-06-17 19:56:36 -0500899 sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -0500900 memcpy(&ndlp->nlp_nodename, &sp->nodeName,
James Smart2e0fef82007-06-17 19:56:36 -0500901 sizeof(struct lpfc_name));
James Smarte47c9092008-02-08 18:49:26 -0500902 /* Set state will put ndlp onto node list if not already done */
James Smart2e0fef82007-06-17 19:56:36 -0500903 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
904 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500905 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
James Smart2e0fef82007-06-17 19:56:36 -0500906 spin_unlock_irq(shost->host_lock);
James Smarte47c9092008-02-08 18:49:26 -0500907 } else
908 /* This side will wait for the PLOGI, decrement ndlp reference
909 * count indicating that ndlp can be released when other
910 * references to it are done.
911 */
James Smart329f9bc2007-04-25 09:53:01 -0400912 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -0500913
James Smart09372822008-01-11 01:52:54 -0500914 /* If we are pt2pt with another NPort, force NPIV off! */
915 phba->sli3_options &= ~LPFC_SLI3_NPIV_ENABLED;
916
James Smart2e0fef82007-06-17 19:56:36 -0500917 spin_lock_irq(shost->host_lock);
918 vport->fc_flag |= FC_PT2PT;
919 spin_unlock_irq(shost->host_lock);
James Smarte74c03c2013-04-17 20:15:19 -0400920 /* If physical FC port changed, unreg VFI and ALL VPIs / RPIs */
921 if ((phba->sli_rev == LPFC_SLI_REV4) && phba->fc_topology_changed) {
922 lpfc_unregister_fcf_prep(phba);
923
924 /* The FC_VFI_REGISTERED flag will get clear in the cmpl
925 * handler for unreg_vfi, but if we don't force the
926 * FC_VFI_REGISTERED flag then the reg_vfi mailbox could be
927 * built with the update bit set instead of just the vp bit to
928 * change the Nport ID. We need to have the vp set and the
929 * Upd cleared on topology changes.
930 */
931 spin_lock_irq(shost->host_lock);
932 vport->fc_flag &= ~FC_VFI_REGISTERED;
933 spin_unlock_irq(shost->host_lock);
934 phba->fc_topology_changed = 0;
935 lpfc_issue_reg_vfi(vport);
936 }
dea31012005-04-17 16:05:31 -0500937
938 /* Start discovery - this should just do CLEAR_LA */
James Smart2e0fef82007-06-17 19:56:36 -0500939 lpfc_disc_start(vport);
dea31012005-04-17 16:05:31 -0500940 return 0;
James Smart92d7f7b2007-06-17 19:56:38 -0500941fail:
dea31012005-04-17 16:05:31 -0500942 return -ENXIO;
943}
944
James Smarte59058c2008-08-24 21:49:00 -0400945/**
James Smart3621a712009-04-06 18:47:14 -0400946 * lpfc_cmpl_els_flogi - Completion callback function for flogi
James Smarte59058c2008-08-24 21:49:00 -0400947 * @phba: pointer to lpfc hba data structure.
948 * @cmdiocb: pointer to lpfc command iocb data structure.
949 * @rspiocb: pointer to lpfc response iocb data structure.
950 *
951 * This routine is the top-level completion callback function for issuing
952 * a Fabric Login (FLOGI) command. If the response IOCB reported error,
953 * the lpfc_els_retry() routine shall be invoked to retry the FLOGI. If
954 * retry has been made (either immediately or delayed with lpfc_els_retry()
955 * returning 1), the command IOCB will be released and function returned.
956 * If the retry attempt has been given up (possibly reach the maximum
957 * number of retries), one additional decrement of ndlp reference shall be
958 * invoked before going out after releasing the command IOCB. This will
959 * actually release the remote node (Note, lpfc_els_free_iocb() will also
960 * invoke one decrement of ndlp reference count). If no error reported in
961 * the IOCB status, the command Port ID field is used to determine whether
962 * this is a point-to-point topology or a fabric topology: if the Port ID
963 * field is assigned, it is a fabric topology; otherwise, it is a
964 * point-to-point topology. The routine lpfc_cmpl_els_flogi_fabric() or
965 * lpfc_cmpl_els_flogi_nport() shall be invoked accordingly to handle the
966 * specific topology completion conditions.
967 **/
dea31012005-04-17 16:05:31 -0500968static void
James Smart329f9bc2007-04-25 09:53:01 -0400969lpfc_cmpl_els_flogi(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
970 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -0500971{
James Smart2e0fef82007-06-17 19:56:36 -0500972 struct lpfc_vport *vport = cmdiocb->vport;
973 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -0500974 IOCB_t *irsp = &rspiocb->iocb;
975 struct lpfc_nodelist *ndlp = cmdiocb->context1;
976 struct lpfc_dmabuf *pcmd = cmdiocb->context2, *prsp;
977 struct serv_parm *sp;
James Smart0c9ab6f2010-02-26 14:15:57 -0500978 uint16_t fcf_index;
dea31012005-04-17 16:05:31 -0500979 int rc;
980
981 /* Check to see if link went down during discovery */
James Smart2e0fef82007-06-17 19:56:36 -0500982 if (lpfc_els_chk_latt(vport)) {
James Smartfa4066b2008-01-11 01:53:27 -0500983 /* One additional decrement on node reference count to
984 * trigger the release of the node
985 */
James Smart329f9bc2007-04-25 09:53:01 -0400986 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -0500987 goto out;
988 }
989
James Smart858c9f62007-06-17 19:56:39 -0500990 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
991 "FLOGI cmpl: status:x%x/x%x state:x%x",
992 irsp->ulpStatus, irsp->un.ulpWord[4],
993 vport->port_state);
994
dea31012005-04-17 16:05:31 -0500995 if (irsp->ulpStatus) {
James Smart0c9ab6f2010-02-26 14:15:57 -0500996 /*
James Smarta93ff372010-10-22 11:06:08 -0400997 * In case of FIP mode, perform roundrobin FCF failover
James Smart0c9ab6f2010-02-26 14:15:57 -0500998 * due to new FCF discovery
999 */
1000 if ((phba->hba_flag & HBA_FIP_SUPPORT) &&
James Smart80c17842012-03-01 22:35:45 -05001001 (phba->fcf.fcf_flag & FCF_DISCOVERY)) {
1002 if (phba->link_state < LPFC_LINK_UP)
1003 goto stop_rr_fcf_flogi;
1004 if ((phba->fcoe_cvl_eventtag_attn ==
1005 phba->fcoe_cvl_eventtag) &&
1006 (irsp->ulpStatus == IOSTAT_LOCAL_REJECT) &&
James Smarte3d2b802012-08-14 14:25:43 -04001007 ((irsp->un.ulpWord[4] & IOERR_PARAM_MASK) ==
1008 IOERR_SLI_ABORTED))
James Smart80c17842012-03-01 22:35:45 -05001009 goto stop_rr_fcf_flogi;
1010 else
1011 phba->fcoe_cvl_eventtag_attn =
1012 phba->fcoe_cvl_eventtag;
James Smart0c9ab6f2010-02-26 14:15:57 -05001013 lpfc_printf_log(phba, KERN_WARNING, LOG_FIP | LOG_ELS,
James Smarta93ff372010-10-22 11:06:08 -04001014 "2611 FLOGI failed on FCF (x%x), "
1015 "status:x%x/x%x, tmo:x%x, perform "
1016 "roundrobin FCF failover\n",
James Smart38b92ef2010-08-04 16:11:39 -04001017 phba->fcf.current_rec.fcf_indx,
1018 irsp->ulpStatus, irsp->un.ulpWord[4],
1019 irsp->ulpTimeout);
James Smart7d791df2011-07-22 18:37:52 -04001020 lpfc_sli4_set_fcf_flogi_fail(phba,
1021 phba->fcf.current_rec.fcf_indx);
James Smart0c9ab6f2010-02-26 14:15:57 -05001022 fcf_index = lpfc_sli4_fcf_rr_next_index_get(phba);
James Smarta93ff372010-10-22 11:06:08 -04001023 rc = lpfc_sli4_fcf_rr_next_proc(vport, fcf_index);
1024 if (rc)
1025 goto out;
James Smart0c9ab6f2010-02-26 14:15:57 -05001026 }
1027
James Smart80c17842012-03-01 22:35:45 -05001028stop_rr_fcf_flogi:
James Smart38b92ef2010-08-04 16:11:39 -04001029 /* FLOGI failure */
1030 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
1031 "2858 FLOGI failure Status:x%x/x%x TMO:x%x\n",
1032 irsp->ulpStatus, irsp->un.ulpWord[4],
1033 irsp->ulpTimeout);
1034
dea31012005-04-17 16:05:31 -05001035 /* Check for retry */
James Smart2e0fef82007-06-17 19:56:36 -05001036 if (lpfc_els_retry(phba, cmdiocb, rspiocb))
dea31012005-04-17 16:05:31 -05001037 goto out;
James Smart2e0fef82007-06-17 19:56:36 -05001038
James Smart76a95d72010-11-20 23:11:48 -05001039 /* FLOGI failure */
1040 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
1041 "0100 FLOGI failure Status:x%x/x%x TMO:x%x\n",
1042 irsp->ulpStatus, irsp->un.ulpWord[4],
1043 irsp->ulpTimeout);
1044
dea31012005-04-17 16:05:31 -05001045 /* FLOGI failed, so there is no fabric */
James Smart2e0fef82007-06-17 19:56:36 -05001046 spin_lock_irq(shost->host_lock);
1047 vport->fc_flag &= ~(FC_FABRIC | FC_PUBLIC_LOOP);
1048 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001049
James Smart329f9bc2007-04-25 09:53:01 -04001050 /* If private loop, then allow max outstanding els to be
dea31012005-04-17 16:05:31 -05001051 * LPFC_MAX_DISC_THREADS (32). Scanning in the case of no
1052 * alpa map would take too long otherwise.
1053 */
James Smart1b511972011-12-13 13:23:09 -05001054 if (phba->alpa_map[0] == 0)
James Smart3de2a652007-08-02 11:09:59 -04001055 vport->cfg_discovery_threads = LPFC_MAX_DISC_THREADS;
James Smartff78d8f2011-12-13 13:21:35 -05001056 if ((phba->sli_rev == LPFC_SLI_REV4) &&
1057 (!(vport->fc_flag & FC_VFI_REGISTERED) ||
James Smarte74c03c2013-04-17 20:15:19 -04001058 (vport->fc_prevDID != vport->fc_myDID) ||
1059 phba->fc_topology_changed)) {
1060 if (vport->fc_flag & FC_VFI_REGISTERED) {
1061 if (phba->fc_topology_changed) {
1062 lpfc_unregister_fcf_prep(phba);
1063 spin_lock_irq(shost->host_lock);
1064 vport->fc_flag &= ~FC_VFI_REGISTERED;
1065 spin_unlock_irq(shost->host_lock);
1066 phba->fc_topology_changed = 0;
1067 } else {
1068 lpfc_sli4_unreg_all_rpis(vport);
1069 }
1070 }
James Smartff78d8f2011-12-13 13:21:35 -05001071 lpfc_issue_reg_vfi(vport);
1072 lpfc_nlp_put(ndlp);
1073 goto out;
dea31012005-04-17 16:05:31 -05001074 }
dea31012005-04-17 16:05:31 -05001075 goto flogifail;
1076 }
James Smart695a8142010-01-26 23:08:03 -05001077 spin_lock_irq(shost->host_lock);
1078 vport->fc_flag &= ~FC_VPORT_CVL_RCVD;
James Smart4b40c592010-03-15 11:25:44 -04001079 vport->fc_flag &= ~FC_VPORT_LOGO_RCVD;
James Smart695a8142010-01-26 23:08:03 -05001080 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001081
1082 /*
1083 * The FLogI succeeded. Sync the data for the CPU before
1084 * accessing it.
1085 */
1086 prsp = list_get_first(&pcmd->list, struct lpfc_dmabuf, list);
1087
1088 sp = prsp->virt + sizeof(uint32_t);
1089
1090 /* FLOGI completes successfully */
James Smarte8b62012007-08-02 11:10:09 -04001091 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
James Smart88f43a02013-04-17 20:19:44 -04001092 "0101 FLOGI completes successfully, I/O tag:x%x, "
1093 "Data: x%x x%x x%x x%x x%x x%x\n", cmdiocb->iotag,
James Smarte8b62012007-08-02 11:10:09 -04001094 irsp->un.ulpWord[4], sp->cmn.e_d_tov,
James Smarte74c03c2013-04-17 20:15:19 -04001095 sp->cmn.w2.r_a_tov, sp->cmn.edtovResolution,
1096 vport->port_state, vport->fc_flag);
dea31012005-04-17 16:05:31 -05001097
James Smart2e0fef82007-06-17 19:56:36 -05001098 if (vport->port_state == LPFC_FLOGI) {
dea31012005-04-17 16:05:31 -05001099 /*
1100 * If Common Service Parameters indicate Nport
1101 * we are point to point, if Fport we are Fabric.
1102 */
1103 if (sp->cmn.fPort)
James Smart2e0fef82007-06-17 19:56:36 -05001104 rc = lpfc_cmpl_els_flogi_fabric(vport, ndlp, sp, irsp);
James Smart76a95d72010-11-20 23:11:48 -05001105 else if (!(phba->hba_flag & HBA_FCOE_MODE))
James Smart2e0fef82007-06-17 19:56:36 -05001106 rc = lpfc_cmpl_els_flogi_nport(vport, ndlp, sp);
James Smartdbb6b3a2010-06-08 18:31:37 -04001107 else {
1108 lpfc_printf_vlog(vport, KERN_ERR,
1109 LOG_FIP | LOG_ELS,
1110 "2831 FLOGI response with cleared Fabric "
1111 "bit fcf_index 0x%x "
1112 "Switch Name %02x%02x%02x%02x%02x%02x%02x%02x "
1113 "Fabric Name "
1114 "%02x%02x%02x%02x%02x%02x%02x%02x\n",
1115 phba->fcf.current_rec.fcf_indx,
1116 phba->fcf.current_rec.switch_name[0],
1117 phba->fcf.current_rec.switch_name[1],
1118 phba->fcf.current_rec.switch_name[2],
1119 phba->fcf.current_rec.switch_name[3],
1120 phba->fcf.current_rec.switch_name[4],
1121 phba->fcf.current_rec.switch_name[5],
1122 phba->fcf.current_rec.switch_name[6],
1123 phba->fcf.current_rec.switch_name[7],
1124 phba->fcf.current_rec.fabric_name[0],
1125 phba->fcf.current_rec.fabric_name[1],
1126 phba->fcf.current_rec.fabric_name[2],
1127 phba->fcf.current_rec.fabric_name[3],
1128 phba->fcf.current_rec.fabric_name[4],
1129 phba->fcf.current_rec.fabric_name[5],
1130 phba->fcf.current_rec.fabric_name[6],
1131 phba->fcf.current_rec.fabric_name[7]);
1132 lpfc_nlp_put(ndlp);
1133 spin_lock_irq(&phba->hbalock);
1134 phba->fcf.fcf_flag &= ~FCF_DISCOVERY;
James Smarta93ff372010-10-22 11:06:08 -04001135 phba->hba_flag &= ~(FCF_RR_INPROG | HBA_DEVLOSS_TMO);
James Smartdbb6b3a2010-06-08 18:31:37 -04001136 spin_unlock_irq(&phba->hbalock);
1137 goto out;
1138 }
James Smart0c9ab6f2010-02-26 14:15:57 -05001139 if (!rc) {
1140 /* Mark the FCF discovery process done */
James Smart999d8132010-03-15 11:24:56 -04001141 if (phba->hba_flag & HBA_FIP_SUPPORT)
1142 lpfc_printf_vlog(vport, KERN_INFO, LOG_FIP |
1143 LOG_ELS,
James Smarta93ff372010-10-22 11:06:08 -04001144 "2769 FLOGI to FCF (x%x) "
1145 "completed successfully\n",
James Smart999d8132010-03-15 11:24:56 -04001146 phba->fcf.current_rec.fcf_indx);
James Smart0c9ab6f2010-02-26 14:15:57 -05001147 spin_lock_irq(&phba->hbalock);
1148 phba->fcf.fcf_flag &= ~FCF_DISCOVERY;
James Smarta93ff372010-10-22 11:06:08 -04001149 phba->hba_flag &= ~(FCF_RR_INPROG | HBA_DEVLOSS_TMO);
James Smart0c9ab6f2010-02-26 14:15:57 -05001150 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05001151 goto out;
James Smart0c9ab6f2010-02-26 14:15:57 -05001152 }
dea31012005-04-17 16:05:31 -05001153 }
1154
1155flogifail:
James Smart329f9bc2007-04-25 09:53:01 -04001156 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05001157
James Smart858c9f62007-06-17 19:56:39 -05001158 if (!lpfc_error_lost_link(irsp)) {
dea31012005-04-17 16:05:31 -05001159 /* FLOGI failed, so just use loop map to make discovery list */
James Smart2e0fef82007-06-17 19:56:36 -05001160 lpfc_disc_list_loopmap(vport);
dea31012005-04-17 16:05:31 -05001161
1162 /* Start discovery */
James Smart2e0fef82007-06-17 19:56:36 -05001163 lpfc_disc_start(vport);
James Smart87af33f2007-10-27 13:37:43 -04001164 } else if (((irsp->ulpStatus != IOSTAT_LOCAL_REJECT) ||
James Smarte3d2b802012-08-14 14:25:43 -04001165 (((irsp->un.ulpWord[4] & IOERR_PARAM_MASK) !=
1166 IOERR_SLI_ABORTED) &&
1167 ((irsp->un.ulpWord[4] & IOERR_PARAM_MASK) !=
1168 IOERR_SLI_DOWN))) &&
James Smart87af33f2007-10-27 13:37:43 -04001169 (phba->link_state != LPFC_CLEAR_LA)) {
1170 /* If FLOGI failed enable link interrupt. */
1171 lpfc_issue_clear_la(phba, vport);
dea31012005-04-17 16:05:31 -05001172 }
dea31012005-04-17 16:05:31 -05001173out:
1174 lpfc_els_free_iocb(phba, cmdiocb);
1175}
1176
James Smarte59058c2008-08-24 21:49:00 -04001177/**
James Smart3621a712009-04-06 18:47:14 -04001178 * lpfc_issue_els_flogi - Issue an flogi iocb command for a vport
James Smarte59058c2008-08-24 21:49:00 -04001179 * @vport: pointer to a host virtual N_Port data structure.
1180 * @ndlp: pointer to a node-list data structure.
1181 * @retry: number of retries to the command IOCB.
1182 *
1183 * This routine issues a Fabric Login (FLOGI) Request ELS command
1184 * for a @vport. The initiator service parameters are put into the payload
1185 * of the FLOGI Request IOCB and the top-level callback function pointer
1186 * to lpfc_cmpl_els_flogi() routine is put to the IOCB completion callback
1187 * function field. The lpfc_issue_fabric_iocb routine is invoked to send
1188 * out FLOGI ELS command with one outstanding fabric IOCB at a time.
1189 *
1190 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
1191 * will be incremented by 1 for holding the ndlp and the reference to ndlp
1192 * will be stored into the context1 field of the IOCB for the completion
1193 * callback function to the FLOGI ELS command.
1194 *
1195 * Return code
1196 * 0 - successfully issued flogi iocb for @vport
1197 * 1 - failed to issue flogi iocb for @vport
1198 **/
dea31012005-04-17 16:05:31 -05001199static int
James Smart2e0fef82007-06-17 19:56:36 -05001200lpfc_issue_els_flogi(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
dea31012005-04-17 16:05:31 -05001201 uint8_t retry)
1202{
James Smart2e0fef82007-06-17 19:56:36 -05001203 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05001204 struct serv_parm *sp;
1205 IOCB_t *icmd;
1206 struct lpfc_iocbq *elsiocb;
1207 struct lpfc_sli_ring *pring;
1208 uint8_t *pcmd;
1209 uint16_t cmdsize;
1210 uint32_t tmo;
1211 int rc;
1212
1213 pring = &phba->sli.ring[LPFC_ELS_RING];
1214
James Smart92d7f7b2007-06-17 19:56:38 -05001215 cmdsize = (sizeof(uint32_t) + sizeof(struct serv_parm));
James Smart2e0fef82007-06-17 19:56:36 -05001216 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
1217 ndlp->nlp_DID, ELS_CMD_FLOGI);
James Smart92d7f7b2007-06-17 19:56:38 -05001218
James Smart488d1462006-03-07 15:02:37 -05001219 if (!elsiocb)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001220 return 1;
dea31012005-04-17 16:05:31 -05001221
1222 icmd = &elsiocb->iocb;
1223 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
1224
1225 /* For FLOGI request, remainder of payload is service parameters */
1226 *((uint32_t *) (pcmd)) = ELS_CMD_FLOGI;
James Smart92d7f7b2007-06-17 19:56:38 -05001227 pcmd += sizeof(uint32_t);
1228 memcpy(pcmd, &vport->fc_sparam, sizeof(struct serv_parm));
dea31012005-04-17 16:05:31 -05001229 sp = (struct serv_parm *) pcmd;
1230
1231 /* Setup CSPs accordingly for Fabric */
1232 sp->cmn.e_d_tov = 0;
1233 sp->cmn.w2.r_a_tov = 0;
James Smartdf9e1b52011-12-13 13:22:17 -05001234 sp->cmn.virtual_fabric_support = 0;
dea31012005-04-17 16:05:31 -05001235 sp->cls1.classValid = 0;
dea31012005-04-17 16:05:31 -05001236 if (sp->cmn.fcphLow < FC_PH3)
1237 sp->cmn.fcphLow = FC_PH3;
1238 if (sp->cmn.fcphHigh < FC_PH3)
1239 sp->cmn.fcphHigh = FC_PH3;
1240
James Smartc31098c2011-04-16 11:03:33 -04001241 if (phba->sli_rev == LPFC_SLI_REV4) {
1242 if (bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf) ==
1243 LPFC_SLI_INTF_IF_TYPE_0) {
1244 elsiocb->iocb.ulpCt_h = ((SLI4_CT_FCFI >> 1) & 1);
1245 elsiocb->iocb.ulpCt_l = (SLI4_CT_FCFI & 1);
1246 /* FLOGI needs to be 3 for WQE FCFI */
1247 /* Set the fcfi to the fcfi we registered with */
1248 elsiocb->iocb.ulpContext = phba->fcf.fcfi;
1249 }
James Smart0f378872012-10-31 14:45:01 -04001250 /* Can't do SLI4 class2 without support sequence coalescing */
1251 sp->cls2.classValid = 0;
1252 sp->cls2.seqDelivery = 0;
James Smart5248a742011-07-22 18:37:06 -04001253 } else {
James Smart0f378872012-10-31 14:45:01 -04001254 /* Historical, setting sequential-delivery bit for SLI3 */
1255 sp->cls2.seqDelivery = (sp->cls2.classValid) ? 1 : 0;
1256 sp->cls3.seqDelivery = (sp->cls3.classValid) ? 1 : 0;
James Smart5248a742011-07-22 18:37:06 -04001257 if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) {
1258 sp->cmn.request_multiple_Nport = 1;
1259 /* For FLOGI, Let FLOGI rsp set the NPortID for VPI 0 */
1260 icmd->ulpCt_h = 1;
1261 icmd->ulpCt_l = 0;
1262 } else
1263 sp->cmn.request_multiple_Nport = 0;
James Smart92d7f7b2007-06-17 19:56:38 -05001264 }
1265
James Smart76a95d72010-11-20 23:11:48 -05001266 if (phba->fc_topology != LPFC_TOPOLOGY_LOOP) {
James Smart858c9f62007-06-17 19:56:39 -05001267 icmd->un.elsreq64.myID = 0;
1268 icmd->un.elsreq64.fl = 1;
1269 }
1270
dea31012005-04-17 16:05:31 -05001271 tmo = phba->fc_ratov;
1272 phba->fc_ratov = LPFC_DISC_FLOGI_TMO;
James Smart2e0fef82007-06-17 19:56:36 -05001273 lpfc_set_disctmo(vport);
dea31012005-04-17 16:05:31 -05001274 phba->fc_ratov = tmo;
1275
1276 phba->fc_stat.elsXmitFLOGI++;
1277 elsiocb->iocb_cmpl = lpfc_cmpl_els_flogi;
James Smart858c9f62007-06-17 19:56:39 -05001278
1279 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
1280 "Issue FLOGI: opt:x%x",
1281 phba->sli3_options, 0, 0);
1282
James Smart92d7f7b2007-06-17 19:56:38 -05001283 rc = lpfc_issue_fabric_iocb(phba, elsiocb);
dea31012005-04-17 16:05:31 -05001284 if (rc == IOCB_ERROR) {
1285 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001286 return 1;
dea31012005-04-17 16:05:31 -05001287 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001288 return 0;
dea31012005-04-17 16:05:31 -05001289}
1290
James Smarte59058c2008-08-24 21:49:00 -04001291/**
James Smart3621a712009-04-06 18:47:14 -04001292 * lpfc_els_abort_flogi - Abort all outstanding flogi iocbs
James Smarte59058c2008-08-24 21:49:00 -04001293 * @phba: pointer to lpfc hba data structure.
1294 *
1295 * This routine aborts all the outstanding Fabric Login (FLOGI) IOCBs
1296 * with a @phba. This routine walks all the outstanding IOCBs on the txcmplq
1297 * list and issues an abort IOCB commond on each outstanding IOCB that
1298 * contains a active Fabric_DID ndlp. Note that this function is to issue
1299 * the abort IOCB command on all the outstanding IOCBs, thus when this
1300 * function returns, it does not guarantee all the IOCBs are actually aborted.
1301 *
1302 * Return code
Daniel Mack3ad2f3f2010-02-03 08:01:28 +08001303 * 0 - Successfully issued abort iocb on all outstanding flogis (Always 0)
James Smarte59058c2008-08-24 21:49:00 -04001304 **/
dea31012005-04-17 16:05:31 -05001305int
James Smart2e0fef82007-06-17 19:56:36 -05001306lpfc_els_abort_flogi(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -05001307{
1308 struct lpfc_sli_ring *pring;
1309 struct lpfc_iocbq *iocb, *next_iocb;
1310 struct lpfc_nodelist *ndlp;
1311 IOCB_t *icmd;
1312
1313 /* Abort outstanding I/O on NPort <nlp_DID> */
1314 lpfc_printf_log(phba, KERN_INFO, LOG_DISCOVERY,
James Smarte8b62012007-08-02 11:10:09 -04001315 "0201 Abort outstanding I/O on NPort x%x\n",
1316 Fabric_DID);
dea31012005-04-17 16:05:31 -05001317
1318 pring = &phba->sli.ring[LPFC_ELS_RING];
1319
1320 /*
1321 * Check the txcmplq for an iocb that matches the nport the driver is
1322 * searching for.
1323 */
James Smart2e0fef82007-06-17 19:56:36 -05001324 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05001325 list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq, list) {
1326 icmd = &iocb->iocb;
James Smart1b511972011-12-13 13:23:09 -05001327 if (icmd->ulpCommand == CMD_ELS_REQUEST64_CR) {
dea31012005-04-17 16:05:31 -05001328 ndlp = (struct lpfc_nodelist *)(iocb->context1);
James Smart58da1ff2008-04-07 10:15:56 -04001329 if (ndlp && NLP_CHK_NODE_ACT(ndlp) &&
1330 (ndlp->nlp_DID == Fabric_DID))
James Smart07951072007-04-25 09:51:38 -04001331 lpfc_sli_issue_abort_iotag(phba, pring, iocb);
dea31012005-04-17 16:05:31 -05001332 }
1333 }
James Smart2e0fef82007-06-17 19:56:36 -05001334 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05001335
1336 return 0;
1337}
1338
James Smarte59058c2008-08-24 21:49:00 -04001339/**
James Smart3621a712009-04-06 18:47:14 -04001340 * lpfc_initial_flogi - Issue an initial fabric login for a vport
James Smarte59058c2008-08-24 21:49:00 -04001341 * @vport: pointer to a host virtual N_Port data structure.
1342 *
1343 * This routine issues an initial Fabric Login (FLOGI) for the @vport
1344 * specified. It first searches the ndlp with the Fabric_DID (0xfffffe) from
1345 * the @vport's ndlp list. If no such ndlp found, it will create an ndlp and
1346 * put it into the @vport's ndlp list. If an inactive ndlp found on the list,
1347 * it will just be enabled and made active. The lpfc_issue_els_flogi() routine
1348 * is then invoked with the @vport and the ndlp to perform the FLOGI for the
1349 * @vport.
1350 *
1351 * Return code
1352 * 0 - failed to issue initial flogi for @vport
1353 * 1 - successfully issued initial flogi for @vport
1354 **/
dea31012005-04-17 16:05:31 -05001355int
James Smart2e0fef82007-06-17 19:56:36 -05001356lpfc_initial_flogi(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05001357{
James Smart2e0fef82007-06-17 19:56:36 -05001358 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05001359 struct lpfc_nodelist *ndlp;
1360
James Smart98c9ea52007-10-27 13:37:33 -04001361 vport->port_state = LPFC_FLOGI;
1362 lpfc_set_disctmo(vport);
1363
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001364 /* First look for the Fabric ndlp */
James Smart2e0fef82007-06-17 19:56:36 -05001365 ndlp = lpfc_findnode_did(vport, Fabric_DID);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001366 if (!ndlp) {
dea31012005-04-17 16:05:31 -05001367 /* Cannot find existing Fabric ndlp, so allocate a new one */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001368 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
1369 if (!ndlp)
1370 return 0;
James Smart2e0fef82007-06-17 19:56:36 -05001371 lpfc_nlp_init(vport, ndlp, Fabric_DID);
James Smart6fb120a2009-05-22 14:52:59 -04001372 /* Set the node type */
1373 ndlp->nlp_type |= NLP_FABRIC;
James Smarte47c9092008-02-08 18:49:26 -05001374 /* Put ndlp onto node list */
1375 lpfc_enqueue_node(vport, ndlp);
1376 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
1377 /* re-setup ndlp without removing from node list */
1378 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
1379 if (!ndlp)
1380 return 0;
dea31012005-04-17 16:05:31 -05001381 }
James Smart87af33f2007-10-27 13:37:43 -04001382
James Smart5ac6b302010-10-22 11:05:36 -04001383 if (lpfc_issue_els_flogi(vport, ndlp, 0)) {
James Smartfa4066b2008-01-11 01:53:27 -05001384 /* This decrement of reference count to node shall kick off
1385 * the release of the node.
1386 */
James Smart329f9bc2007-04-25 09:53:01 -04001387 lpfc_nlp_put(ndlp);
James Smart5ac6b302010-10-22 11:05:36 -04001388 return 0;
1389 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001390 return 1;
dea31012005-04-17 16:05:31 -05001391}
1392
James Smarte59058c2008-08-24 21:49:00 -04001393/**
James Smart3621a712009-04-06 18:47:14 -04001394 * lpfc_initial_fdisc - Issue an initial fabric discovery for a vport
James Smarte59058c2008-08-24 21:49:00 -04001395 * @vport: pointer to a host virtual N_Port data structure.
1396 *
1397 * This routine issues an initial Fabric Discover (FDISC) for the @vport
1398 * specified. It first searches the ndlp with the Fabric_DID (0xfffffe) from
1399 * the @vport's ndlp list. If no such ndlp found, it will create an ndlp and
1400 * put it into the @vport's ndlp list. If an inactive ndlp found on the list,
1401 * it will just be enabled and made active. The lpfc_issue_els_fdisc() routine
1402 * is then invoked with the @vport and the ndlp to perform the FDISC for the
1403 * @vport.
1404 *
1405 * Return code
1406 * 0 - failed to issue initial fdisc for @vport
1407 * 1 - successfully issued initial fdisc for @vport
1408 **/
James Smart92d7f7b2007-06-17 19:56:38 -05001409int
1410lpfc_initial_fdisc(struct lpfc_vport *vport)
1411{
1412 struct lpfc_hba *phba = vport->phba;
1413 struct lpfc_nodelist *ndlp;
1414
1415 /* First look for the Fabric ndlp */
1416 ndlp = lpfc_findnode_did(vport, Fabric_DID);
1417 if (!ndlp) {
1418 /* Cannot find existing Fabric ndlp, so allocate a new one */
1419 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
1420 if (!ndlp)
1421 return 0;
1422 lpfc_nlp_init(vport, ndlp, Fabric_DID);
James Smarte47c9092008-02-08 18:49:26 -05001423 /* Put ndlp onto node list */
1424 lpfc_enqueue_node(vport, ndlp);
1425 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
1426 /* re-setup ndlp without removing from node list */
1427 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
1428 if (!ndlp)
1429 return 0;
James Smart92d7f7b2007-06-17 19:56:38 -05001430 }
James Smarte47c9092008-02-08 18:49:26 -05001431
James Smart92d7f7b2007-06-17 19:56:38 -05001432 if (lpfc_issue_els_fdisc(vport, ndlp, 0)) {
James Smartfa4066b2008-01-11 01:53:27 -05001433 /* decrement node reference count to trigger the release of
1434 * the node.
1435 */
James Smart92d7f7b2007-06-17 19:56:38 -05001436 lpfc_nlp_put(ndlp);
James Smartfa4066b2008-01-11 01:53:27 -05001437 return 0;
James Smart92d7f7b2007-06-17 19:56:38 -05001438 }
1439 return 1;
1440}
James Smart87af33f2007-10-27 13:37:43 -04001441
James Smarte59058c2008-08-24 21:49:00 -04001442/**
James Smart3621a712009-04-06 18:47:14 -04001443 * lpfc_more_plogi - Check and issue remaining plogis for a vport
James Smarte59058c2008-08-24 21:49:00 -04001444 * @vport: pointer to a host virtual N_Port data structure.
1445 *
1446 * This routine checks whether there are more remaining Port Logins
1447 * (PLOGI) to be issued for the @vport. If so, it will invoke the routine
1448 * lpfc_els_disc_plogi() to go through the Node Port Recovery (NPR) nodes
1449 * to issue ELS PLOGIs up to the configured discover threads with the
1450 * @vport (@vport->cfg_discovery_threads). The function also decrement
1451 * the @vport's num_disc_node by 1 if it is not already 0.
1452 **/
James Smart87af33f2007-10-27 13:37:43 -04001453void
James Smart2e0fef82007-06-17 19:56:36 -05001454lpfc_more_plogi(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05001455{
1456 int sentplogi;
1457
James Smart2e0fef82007-06-17 19:56:36 -05001458 if (vport->num_disc_nodes)
1459 vport->num_disc_nodes--;
dea31012005-04-17 16:05:31 -05001460
1461 /* Continue discovery with <num_disc_nodes> PLOGIs to go */
James Smarte8b62012007-08-02 11:10:09 -04001462 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
1463 "0232 Continue discovery with %d PLOGIs to go "
1464 "Data: x%x x%x x%x\n",
1465 vport->num_disc_nodes, vport->fc_plogi_cnt,
1466 vport->fc_flag, vport->port_state);
dea31012005-04-17 16:05:31 -05001467 /* Check to see if there are more PLOGIs to be sent */
James Smart2e0fef82007-06-17 19:56:36 -05001468 if (vport->fc_flag & FC_NLP_MORE)
1469 /* go thru NPR nodes and issue any remaining ELS PLOGIs */
1470 sentplogi = lpfc_els_disc_plogi(vport);
1471
dea31012005-04-17 16:05:31 -05001472 return;
1473}
1474
James Smarte59058c2008-08-24 21:49:00 -04001475/**
James Smart3621a712009-04-06 18:47:14 -04001476 * lpfc_plogi_confirm_nport - Confirm pologi wwpn matches stored ndlp
James Smarte59058c2008-08-24 21:49:00 -04001477 * @phba: pointer to lpfc hba data structure.
1478 * @prsp: pointer to response IOCB payload.
1479 * @ndlp: pointer to a node-list data structure.
1480 *
1481 * This routine checks and indicates whether the WWPN of an N_Port, retrieved
1482 * from a PLOGI, matches the WWPN that is stored in the @ndlp for that N_POrt.
1483 * The following cases are considered N_Port confirmed:
1484 * 1) The N_Port is a Fabric ndlp; 2) The @ndlp is on vport list and matches
1485 * the WWPN of the N_Port logged into; 3) The @ndlp is not on vport list but
1486 * it does not have WWPN assigned either. If the WWPN is confirmed, the
1487 * pointer to the @ndlp will be returned. If the WWPN is not confirmed:
1488 * 1) if there is a node on vport list other than the @ndlp with the same
1489 * WWPN of the N_Port PLOGI logged into, the lpfc_unreg_rpi() will be invoked
1490 * on that node to release the RPI associated with the node; 2) if there is
1491 * no node found on vport list with the same WWPN of the N_Port PLOGI logged
1492 * into, a new node shall be allocated (or activated). In either case, the
1493 * parameters of the @ndlp shall be copied to the new_ndlp, the @ndlp shall
1494 * be released and the new_ndlp shall be put on to the vport node list and
1495 * its pointer returned as the confirmed node.
1496 *
1497 * Note that before the @ndlp got "released", the keepDID from not-matching
1498 * or inactive "new_ndlp" on the vport node list is assigned to the nlp_DID
1499 * of the @ndlp. This is because the release of @ndlp is actually to put it
1500 * into an inactive state on the vport node list and the vport node list
1501 * management algorithm does not allow two node with a same DID.
1502 *
1503 * Return code
1504 * pointer to the PLOGI N_Port @ndlp
1505 **/
James Smart488d1462006-03-07 15:02:37 -05001506static struct lpfc_nodelist *
James Smart92d7f7b2007-06-17 19:56:38 -05001507lpfc_plogi_confirm_nport(struct lpfc_hba *phba, uint32_t *prsp,
James Smart488d1462006-03-07 15:02:37 -05001508 struct lpfc_nodelist *ndlp)
1509{
James Smart2e0fef82007-06-17 19:56:36 -05001510 struct lpfc_vport *vport = ndlp->vport;
James Smart488d1462006-03-07 15:02:37 -05001511 struct lpfc_nodelist *new_ndlp;
James Smart0ff10d42008-01-11 01:52:36 -05001512 struct lpfc_rport_data *rdata;
1513 struct fc_rport *rport;
James Smart488d1462006-03-07 15:02:37 -05001514 struct serv_parm *sp;
James Smart92d7f7b2007-06-17 19:56:38 -05001515 uint8_t name[sizeof(struct lpfc_name)];
James Smart58da1ff2008-04-07 10:15:56 -04001516 uint32_t rc, keepDID = 0;
James Smart38b92ef2010-08-04 16:11:39 -04001517 int put_node;
1518 int put_rport;
James Smart19ca7602010-11-20 23:11:55 -05001519 struct lpfc_node_rrqs rrq;
James Smart488d1462006-03-07 15:02:37 -05001520
James Smart2fb9bd82006-12-02 13:33:57 -05001521 /* Fabric nodes can have the same WWPN so we don't bother searching
1522 * by WWPN. Just return the ndlp that was given to us.
1523 */
1524 if (ndlp->nlp_type & NLP_FABRIC)
1525 return ndlp;
1526
James Smart92d7f7b2007-06-17 19:56:38 -05001527 sp = (struct serv_parm *) ((uint8_t *) prsp + sizeof(uint32_t));
James Smart685f0bf2007-04-25 09:53:08 -04001528 memset(name, 0, sizeof(struct lpfc_name));
James Smart488d1462006-03-07 15:02:37 -05001529
James Smart685f0bf2007-04-25 09:53:08 -04001530 /* Now we find out if the NPort we are logging into, matches the WWPN
James Smart488d1462006-03-07 15:02:37 -05001531 * we have for that ndlp. If not, we have some work to do.
1532 */
James Smart2e0fef82007-06-17 19:56:36 -05001533 new_ndlp = lpfc_findnode_wwpn(vport, &sp->portName);
James Smart488d1462006-03-07 15:02:37 -05001534
James Smarte47c9092008-02-08 18:49:26 -05001535 if (new_ndlp == ndlp && NLP_CHK_NODE_ACT(new_ndlp))
James Smart488d1462006-03-07 15:02:37 -05001536 return ndlp;
James Smart19ca7602010-11-20 23:11:55 -05001537 memset(&rrq.xri_bitmap, 0, sizeof(new_ndlp->active_rrqs.xri_bitmap));
James Smart488d1462006-03-07 15:02:37 -05001538
James Smart34f5ad82012-08-03 12:35:03 -04001539 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
1540 "3178 PLOGI confirm: ndlp %p x%x: new_ndlp %p\n",
1541 ndlp, ndlp->nlp_DID, new_ndlp);
1542
James Smart488d1462006-03-07 15:02:37 -05001543 if (!new_ndlp) {
James Smart2e0fef82007-06-17 19:56:36 -05001544 rc = memcmp(&ndlp->nlp_portname, name,
1545 sizeof(struct lpfc_name));
James Smart92795652006-07-06 15:50:02 -04001546 if (!rc)
1547 return ndlp;
James Smart488d1462006-03-07 15:02:37 -05001548 new_ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_ATOMIC);
1549 if (!new_ndlp)
1550 return ndlp;
James Smart2e0fef82007-06-17 19:56:36 -05001551 lpfc_nlp_init(vport, new_ndlp, ndlp->nlp_DID);
James Smarte47c9092008-02-08 18:49:26 -05001552 } else if (!NLP_CHK_NODE_ACT(new_ndlp)) {
James Smart58da1ff2008-04-07 10:15:56 -04001553 rc = memcmp(&ndlp->nlp_portname, name,
1554 sizeof(struct lpfc_name));
1555 if (!rc)
1556 return ndlp;
James Smarte47c9092008-02-08 18:49:26 -05001557 new_ndlp = lpfc_enable_node(vport, new_ndlp,
1558 NLP_STE_UNUSED_NODE);
1559 if (!new_ndlp)
1560 return ndlp;
James Smart58da1ff2008-04-07 10:15:56 -04001561 keepDID = new_ndlp->nlp_DID;
James Smart19ca7602010-11-20 23:11:55 -05001562 if (phba->sli_rev == LPFC_SLI_REV4)
1563 memcpy(&rrq.xri_bitmap,
1564 &new_ndlp->active_rrqs.xri_bitmap,
1565 sizeof(new_ndlp->active_rrqs.xri_bitmap));
1566 } else {
James Smart58da1ff2008-04-07 10:15:56 -04001567 keepDID = new_ndlp->nlp_DID;
James Smart19ca7602010-11-20 23:11:55 -05001568 if (phba->sli_rev == LPFC_SLI_REV4)
1569 memcpy(&rrq.xri_bitmap,
1570 &new_ndlp->active_rrqs.xri_bitmap,
1571 sizeof(new_ndlp->active_rrqs.xri_bitmap));
1572 }
James Smart488d1462006-03-07 15:02:37 -05001573
James Smart2e0fef82007-06-17 19:56:36 -05001574 lpfc_unreg_rpi(vport, new_ndlp);
James Smart488d1462006-03-07 15:02:37 -05001575 new_ndlp->nlp_DID = ndlp->nlp_DID;
James Smart92795652006-07-06 15:50:02 -04001576 new_ndlp->nlp_prev_state = ndlp->nlp_prev_state;
James Smart19ca7602010-11-20 23:11:55 -05001577 if (phba->sli_rev == LPFC_SLI_REV4)
1578 memcpy(new_ndlp->active_rrqs.xri_bitmap,
1579 &ndlp->active_rrqs.xri_bitmap,
1580 sizeof(ndlp->active_rrqs.xri_bitmap));
James Smart0ff10d42008-01-11 01:52:36 -05001581
1582 if (ndlp->nlp_flag & NLP_NPR_2B_DISC)
1583 new_ndlp->nlp_flag |= NLP_NPR_2B_DISC;
1584 ndlp->nlp_flag &= ~NLP_NPR_2B_DISC;
1585
James Smarte47c9092008-02-08 18:49:26 -05001586 /* Set state will put new_ndlp on to node list if not already done */
James Smart2e0fef82007-06-17 19:56:36 -05001587 lpfc_nlp_set_state(vport, new_ndlp, ndlp->nlp_state);
James Smart488d1462006-03-07 15:02:37 -05001588
James Smart2e0fef82007-06-17 19:56:36 -05001589 /* Move this back to NPR state */
James Smart87af33f2007-10-27 13:37:43 -04001590 if (memcmp(&ndlp->nlp_portname, name, sizeof(struct lpfc_name)) == 0) {
1591 /* The new_ndlp is replacing ndlp totally, so we need
1592 * to put ndlp on UNUSED list and try to free it.
1593 */
James Smart34f5ad82012-08-03 12:35:03 -04001594 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
1595 "3179 PLOGI confirm NEW: %x %x\n",
1596 new_ndlp->nlp_DID, keepDID);
James Smart0ff10d42008-01-11 01:52:36 -05001597
1598 /* Fix up the rport accordingly */
1599 rport = ndlp->rport;
1600 if (rport) {
1601 rdata = rport->dd_data;
1602 if (rdata->pnode == ndlp) {
1603 lpfc_nlp_put(ndlp);
1604 ndlp->rport = NULL;
1605 rdata->pnode = lpfc_nlp_get(new_ndlp);
1606 new_ndlp->rport = rport;
1607 }
1608 new_ndlp->nlp_type = ndlp->nlp_type;
1609 }
James Smart58da1ff2008-04-07 10:15:56 -04001610 /* We shall actually free the ndlp with both nlp_DID and
1611 * nlp_portname fields equals 0 to avoid any ndlp on the
1612 * nodelist never to be used.
1613 */
1614 if (ndlp->nlp_DID == 0) {
1615 spin_lock_irq(&phba->ndlp_lock);
1616 NLP_SET_FREE_REQ(ndlp);
1617 spin_unlock_irq(&phba->ndlp_lock);
1618 }
James Smart0ff10d42008-01-11 01:52:36 -05001619
James Smart58da1ff2008-04-07 10:15:56 -04001620 /* Two ndlps cannot have the same did on the nodelist */
1621 ndlp->nlp_DID = keepDID;
James Smart19ca7602010-11-20 23:11:55 -05001622 if (phba->sli_rev == LPFC_SLI_REV4)
1623 memcpy(&ndlp->active_rrqs.xri_bitmap,
1624 &rrq.xri_bitmap,
1625 sizeof(ndlp->active_rrqs.xri_bitmap));
James Smart2e0fef82007-06-17 19:56:36 -05001626 lpfc_drop_node(vport, ndlp);
James Smart87af33f2007-10-27 13:37:43 -04001627 }
James Smart92795652006-07-06 15:50:02 -04001628 else {
James Smart34f5ad82012-08-03 12:35:03 -04001629 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
1630 "3180 PLOGI confirm SWAP: %x %x\n",
1631 new_ndlp->nlp_DID, keepDID);
1632
James Smart2e0fef82007-06-17 19:56:36 -05001633 lpfc_unreg_rpi(vport, ndlp);
James Smart34f5ad82012-08-03 12:35:03 -04001634
James Smart58da1ff2008-04-07 10:15:56 -04001635 /* Two ndlps cannot have the same did */
1636 ndlp->nlp_DID = keepDID;
James Smart19ca7602010-11-20 23:11:55 -05001637 if (phba->sli_rev == LPFC_SLI_REV4)
1638 memcpy(&ndlp->active_rrqs.xri_bitmap,
1639 &rrq.xri_bitmap,
1640 sizeof(ndlp->active_rrqs.xri_bitmap));
James Smart34f5ad82012-08-03 12:35:03 -04001641
James Smart38b92ef2010-08-04 16:11:39 -04001642 /* Since we are swapping the ndlp passed in with the new one
James Smart34f5ad82012-08-03 12:35:03 -04001643 * and the did has already been swapped, copy over state.
1644 * The new WWNs are already in new_ndlp since thats what
1645 * we looked it up by in the begining of this routine.
James Smart38b92ef2010-08-04 16:11:39 -04001646 */
James Smart38b92ef2010-08-04 16:11:39 -04001647 new_ndlp->nlp_state = ndlp->nlp_state;
James Smart34f5ad82012-08-03 12:35:03 -04001648
1649 /* Since we are switching over to the new_ndlp, the old
1650 * ndlp should be put in the NPR state, unless we have
1651 * already started re-discovery on it.
1652 */
1653 if ((ndlp->nlp_state == NLP_STE_UNMAPPED_NODE) ||
1654 (ndlp->nlp_state == NLP_STE_MAPPED_NODE))
1655 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
1656
James Smart38b92ef2010-08-04 16:11:39 -04001657 /* Fix up the rport accordingly */
1658 rport = ndlp->rport;
1659 if (rport) {
1660 rdata = rport->dd_data;
1661 put_node = rdata->pnode != NULL;
1662 put_rport = ndlp->rport != NULL;
1663 rdata->pnode = NULL;
1664 ndlp->rport = NULL;
1665 if (put_node)
1666 lpfc_nlp_put(ndlp);
1667 if (put_rport)
1668 put_device(&rport->dev);
1669 }
James Smart92795652006-07-06 15:50:02 -04001670 }
James Smart488d1462006-03-07 15:02:37 -05001671 return new_ndlp;
1672}
1673
James Smarte59058c2008-08-24 21:49:00 -04001674/**
James Smart3621a712009-04-06 18:47:14 -04001675 * lpfc_end_rscn - Check and handle more rscn for a vport
James Smarte59058c2008-08-24 21:49:00 -04001676 * @vport: pointer to a host virtual N_Port data structure.
1677 *
1678 * This routine checks whether more Registration State Change
1679 * Notifications (RSCNs) came in while the discovery state machine was in
1680 * the FC_RSCN_MODE. If so, the lpfc_els_handle_rscn() routine will be
1681 * invoked to handle the additional RSCNs for the @vport. Otherwise, the
1682 * FC_RSCN_MODE bit will be cleared with the @vport to mark as the end of
1683 * handling the RSCNs.
1684 **/
James Smart87af33f2007-10-27 13:37:43 -04001685void
1686lpfc_end_rscn(struct lpfc_vport *vport)
1687{
1688 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1689
1690 if (vport->fc_flag & FC_RSCN_MODE) {
1691 /*
1692 * Check to see if more RSCNs came in while we were
1693 * processing this one.
1694 */
1695 if (vport->fc_rscn_id_cnt ||
1696 (vport->fc_flag & FC_RSCN_DISCOVERY) != 0)
1697 lpfc_els_handle_rscn(vport);
1698 else {
1699 spin_lock_irq(shost->host_lock);
1700 vport->fc_flag &= ~FC_RSCN_MODE;
1701 spin_unlock_irq(shost->host_lock);
1702 }
1703 }
1704}
1705
James Smarte59058c2008-08-24 21:49:00 -04001706/**
James Smart19ca7602010-11-20 23:11:55 -05001707 * lpfc_cmpl_els_rrq - Completion handled for els RRQs.
1708 * @phba: pointer to lpfc hba data structure.
1709 * @cmdiocb: pointer to lpfc command iocb data structure.
1710 * @rspiocb: pointer to lpfc response iocb data structure.
1711 *
1712 * This routine will call the clear rrq function to free the rrq and
1713 * clear the xri's bit in the ndlp's xri_bitmap. If the ndlp does not
1714 * exist then the clear_rrq is still called because the rrq needs to
1715 * be freed.
1716 **/
1717
1718static void
1719lpfc_cmpl_els_rrq(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
1720 struct lpfc_iocbq *rspiocb)
1721{
1722 struct lpfc_vport *vport = cmdiocb->vport;
1723 IOCB_t *irsp;
1724 struct lpfc_nodelist *ndlp;
1725 struct lpfc_node_rrq *rrq;
1726
1727 /* we pass cmdiocb to state machine which needs rspiocb as well */
1728 rrq = cmdiocb->context_un.rrq;
1729 cmdiocb->context_un.rsp_iocb = rspiocb;
1730
1731 irsp = &rspiocb->iocb;
1732 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
1733 "RRQ cmpl: status:x%x/x%x did:x%x",
1734 irsp->ulpStatus, irsp->un.ulpWord[4],
1735 irsp->un.elsreq64.remoteID);
1736
1737 ndlp = lpfc_findnode_did(vport, irsp->un.elsreq64.remoteID);
1738 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp) || ndlp != rrq->ndlp) {
1739 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
1740 "2882 RRQ completes to NPort x%x "
1741 "with no ndlp. Data: x%x x%x x%x\n",
1742 irsp->un.elsreq64.remoteID,
1743 irsp->ulpStatus, irsp->un.ulpWord[4],
1744 irsp->ulpIoTag);
1745 goto out;
1746 }
1747
1748 /* rrq completes to NPort <nlp_DID> */
1749 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
1750 "2880 RRQ completes to NPort x%x "
1751 "Data: x%x x%x x%x x%x x%x\n",
1752 ndlp->nlp_DID, irsp->ulpStatus, irsp->un.ulpWord[4],
1753 irsp->ulpTimeout, rrq->xritag, rrq->rxid);
1754
1755 if (irsp->ulpStatus) {
1756 /* Check for retry */
1757 /* RRQ failed Don't print the vport to vport rjts */
1758 if (irsp->ulpStatus != IOSTAT_LS_RJT ||
1759 (((irsp->un.ulpWord[4]) >> 16 != LSRJT_INVALID_CMD) &&
1760 ((irsp->un.ulpWord[4]) >> 16 != LSRJT_UNABLE_TPC)) ||
1761 (phba)->pport->cfg_log_verbose & LOG_ELS)
1762 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
1763 "2881 RRQ failure DID:%06X Status:x%x/x%x\n",
1764 ndlp->nlp_DID, irsp->ulpStatus,
1765 irsp->un.ulpWord[4]);
1766 }
1767out:
1768 if (rrq)
1769 lpfc_clr_rrq_active(phba, rrq->xritag, rrq);
1770 lpfc_els_free_iocb(phba, cmdiocb);
1771 return;
1772}
1773/**
James Smart3621a712009-04-06 18:47:14 -04001774 * lpfc_cmpl_els_plogi - Completion callback function for plogi
James Smarte59058c2008-08-24 21:49:00 -04001775 * @phba: pointer to lpfc hba data structure.
1776 * @cmdiocb: pointer to lpfc command iocb data structure.
1777 * @rspiocb: pointer to lpfc response iocb data structure.
1778 *
1779 * This routine is the completion callback function for issuing the Port
1780 * Login (PLOGI) command. For PLOGI completion, there must be an active
1781 * ndlp on the vport node list that matches the remote node ID from the
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001782 * PLOGI response IOCB. If such ndlp does not exist, the PLOGI is simply
James Smarte59058c2008-08-24 21:49:00 -04001783 * ignored and command IOCB released. The PLOGI response IOCB status is
1784 * checked for error conditons. If there is error status reported, PLOGI
1785 * retry shall be attempted by invoking the lpfc_els_retry() routine.
1786 * Otherwise, the lpfc_plogi_confirm_nport() routine shall be invoked on
1787 * the ndlp and the NLP_EVT_CMPL_PLOGI state to the Discover State Machine
1788 * (DSM) is set for this PLOGI completion. Finally, it checks whether
1789 * there are additional N_Port nodes with the vport that need to perform
1790 * PLOGI. If so, the lpfc_more_plogi() routine is invoked to issue addition
1791 * PLOGIs.
1792 **/
dea31012005-04-17 16:05:31 -05001793static void
James Smart2e0fef82007-06-17 19:56:36 -05001794lpfc_cmpl_els_plogi(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
1795 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05001796{
James Smart2e0fef82007-06-17 19:56:36 -05001797 struct lpfc_vport *vport = cmdiocb->vport;
1798 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05001799 IOCB_t *irsp;
dea31012005-04-17 16:05:31 -05001800 struct lpfc_nodelist *ndlp;
James Smart92795652006-07-06 15:50:02 -04001801 struct lpfc_dmabuf *prsp;
dea31012005-04-17 16:05:31 -05001802 int disc, rc, did, type;
1803
dea31012005-04-17 16:05:31 -05001804 /* we pass cmdiocb to state machine which needs rspiocb as well */
1805 cmdiocb->context_un.rsp_iocb = rspiocb;
1806
1807 irsp = &rspiocb->iocb;
James Smart858c9f62007-06-17 19:56:39 -05001808 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
1809 "PLOGI cmpl: status:x%x/x%x did:x%x",
1810 irsp->ulpStatus, irsp->un.ulpWord[4],
1811 irsp->un.elsreq64.remoteID);
1812
James Smart2e0fef82007-06-17 19:56:36 -05001813 ndlp = lpfc_findnode_did(vport, irsp->un.elsreq64.remoteID);
James Smarte47c9092008-02-08 18:49:26 -05001814 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp)) {
James Smarte8b62012007-08-02 11:10:09 -04001815 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
1816 "0136 PLOGI completes to NPort x%x "
1817 "with no ndlp. Data: x%x x%x x%x\n",
1818 irsp->un.elsreq64.remoteID,
1819 irsp->ulpStatus, irsp->un.ulpWord[4],
1820 irsp->ulpIoTag);
James Smart488d1462006-03-07 15:02:37 -05001821 goto out;
James Smarted957682007-06-17 19:56:37 -05001822 }
dea31012005-04-17 16:05:31 -05001823
1824 /* Since ndlp can be freed in the disc state machine, note if this node
1825 * is being used during discovery.
1826 */
James Smart2e0fef82007-06-17 19:56:36 -05001827 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001828 disc = (ndlp->nlp_flag & NLP_NPR_2B_DISC);
James Smart488d1462006-03-07 15:02:37 -05001829 ndlp->nlp_flag &= ~NLP_NPR_2B_DISC;
James Smart2e0fef82007-06-17 19:56:36 -05001830 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001831 rc = 0;
1832
1833 /* PLOGI completes to NPort <nlp_DID> */
James Smarte8b62012007-08-02 11:10:09 -04001834 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
1835 "0102 PLOGI completes to NPort x%x "
1836 "Data: x%x x%x x%x x%x x%x\n",
1837 ndlp->nlp_DID, irsp->ulpStatus, irsp->un.ulpWord[4],
1838 irsp->ulpTimeout, disc, vport->num_disc_nodes);
dea31012005-04-17 16:05:31 -05001839 /* Check to see if link went down during discovery */
James Smart2e0fef82007-06-17 19:56:36 -05001840 if (lpfc_els_chk_latt(vport)) {
1841 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001842 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
James Smart2e0fef82007-06-17 19:56:36 -05001843 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001844 goto out;
1845 }
1846
1847 /* ndlp could be freed in DSM, save these values now */
1848 type = ndlp->nlp_type;
1849 did = ndlp->nlp_DID;
1850
1851 if (irsp->ulpStatus) {
1852 /* Check for retry */
1853 if (lpfc_els_retry(phba, cmdiocb, rspiocb)) {
1854 /* ELS command is being retried */
1855 if (disc) {
James Smart2e0fef82007-06-17 19:56:36 -05001856 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001857 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
James Smart2e0fef82007-06-17 19:56:36 -05001858 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001859 }
1860 goto out;
1861 }
James Smart2a9bf3d2010-06-07 15:24:45 -04001862 /* PLOGI failed Don't print the vport to vport rjts */
1863 if (irsp->ulpStatus != IOSTAT_LS_RJT ||
1864 (((irsp->un.ulpWord[4]) >> 16 != LSRJT_INVALID_CMD) &&
1865 ((irsp->un.ulpWord[4]) >> 16 != LSRJT_UNABLE_TPC)) ||
1866 (phba)->pport->cfg_log_verbose & LOG_ELS)
1867 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
James Smarte40a02c2010-02-26 14:13:54 -05001868 "2753 PLOGI failure DID:%06X Status:x%x/x%x\n",
1869 ndlp->nlp_DID, irsp->ulpStatus,
1870 irsp->un.ulpWord[4]);
dea31012005-04-17 16:05:31 -05001871 /* Do not call DSM for lpfc_els_abort'ed ELS cmds */
James Smarte47c9092008-02-08 18:49:26 -05001872 if (lpfc_error_lost_link(irsp))
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001873 rc = NLP_STE_FREED_NODE;
James Smarte47c9092008-02-08 18:49:26 -05001874 else
James Smart2e0fef82007-06-17 19:56:36 -05001875 rc = lpfc_disc_state_machine(vport, ndlp, cmdiocb,
James Smart92d7f7b2007-06-17 19:56:38 -05001876 NLP_EVT_CMPL_PLOGI);
dea31012005-04-17 16:05:31 -05001877 } else {
1878 /* Good status, call state machine */
James Smart92795652006-07-06 15:50:02 -04001879 prsp = list_entry(((struct lpfc_dmabuf *)
James Smart92d7f7b2007-06-17 19:56:38 -05001880 cmdiocb->context2)->list.next,
1881 struct lpfc_dmabuf, list);
1882 ndlp = lpfc_plogi_confirm_nport(phba, prsp->virt, ndlp);
James Smart2e0fef82007-06-17 19:56:36 -05001883 rc = lpfc_disc_state_machine(vport, ndlp, cmdiocb,
James Smart92d7f7b2007-06-17 19:56:38 -05001884 NLP_EVT_CMPL_PLOGI);
dea31012005-04-17 16:05:31 -05001885 }
1886
James Smart2e0fef82007-06-17 19:56:36 -05001887 if (disc && vport->num_disc_nodes) {
dea31012005-04-17 16:05:31 -05001888 /* Check to see if there are more PLOGIs to be sent */
James Smart2e0fef82007-06-17 19:56:36 -05001889 lpfc_more_plogi(vport);
dea31012005-04-17 16:05:31 -05001890
James Smart2e0fef82007-06-17 19:56:36 -05001891 if (vport->num_disc_nodes == 0) {
1892 spin_lock_irq(shost->host_lock);
1893 vport->fc_flag &= ~FC_NDISC_ACTIVE;
1894 spin_unlock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001895
James Smart2e0fef82007-06-17 19:56:36 -05001896 lpfc_can_disctmo(vport);
James Smart87af33f2007-10-27 13:37:43 -04001897 lpfc_end_rscn(vport);
dea31012005-04-17 16:05:31 -05001898 }
1899 }
1900
1901out:
1902 lpfc_els_free_iocb(phba, cmdiocb);
1903 return;
1904}
1905
James Smarte59058c2008-08-24 21:49:00 -04001906/**
James Smart3621a712009-04-06 18:47:14 -04001907 * lpfc_issue_els_plogi - Issue an plogi iocb command for a vport
James Smarte59058c2008-08-24 21:49:00 -04001908 * @vport: pointer to a host virtual N_Port data structure.
1909 * @did: destination port identifier.
1910 * @retry: number of retries to the command IOCB.
1911 *
1912 * This routine issues a Port Login (PLOGI) command to a remote N_Port
1913 * (with the @did) for a @vport. Before issuing a PLOGI to a remote N_Port,
1914 * the ndlp with the remote N_Port DID must exist on the @vport's ndlp list.
1915 * This routine constructs the proper feilds of the PLOGI IOCB and invokes
1916 * the lpfc_sli_issue_iocb() routine to send out PLOGI ELS command.
1917 *
1918 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
1919 * will be incremented by 1 for holding the ndlp and the reference to ndlp
1920 * will be stored into the context1 field of the IOCB for the completion
1921 * callback function to the PLOGI ELS command.
1922 *
1923 * Return code
1924 * 0 - Successfully issued a plogi for @vport
1925 * 1 - failed to issue a plogi for @vport
1926 **/
dea31012005-04-17 16:05:31 -05001927int
James Smart2e0fef82007-06-17 19:56:36 -05001928lpfc_issue_els_plogi(struct lpfc_vport *vport, uint32_t did, uint8_t retry)
dea31012005-04-17 16:05:31 -05001929{
James Smart2e0fef82007-06-17 19:56:36 -05001930 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05001931 struct serv_parm *sp;
1932 IOCB_t *icmd;
James Smart98c9ea52007-10-27 13:37:33 -04001933 struct lpfc_nodelist *ndlp;
dea31012005-04-17 16:05:31 -05001934 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05001935 struct lpfc_sli *psli;
1936 uint8_t *pcmd;
1937 uint16_t cmdsize;
James Smart92d7f7b2007-06-17 19:56:38 -05001938 int ret;
dea31012005-04-17 16:05:31 -05001939
1940 psli = &phba->sli;
dea31012005-04-17 16:05:31 -05001941
James Smart98c9ea52007-10-27 13:37:33 -04001942 ndlp = lpfc_findnode_did(vport, did);
James Smarte47c9092008-02-08 18:49:26 -05001943 if (ndlp && !NLP_CHK_NODE_ACT(ndlp))
1944 ndlp = NULL;
James Smart98c9ea52007-10-27 13:37:33 -04001945
James Smarte47c9092008-02-08 18:49:26 -05001946 /* If ndlp is not NULL, we will bump the reference count on it */
James Smart92d7f7b2007-06-17 19:56:38 -05001947 cmdsize = (sizeof(uint32_t) + sizeof(struct serv_parm));
James Smart98c9ea52007-10-27 13:37:33 -04001948 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp, did,
James Smart2e0fef82007-06-17 19:56:36 -05001949 ELS_CMD_PLOGI);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001950 if (!elsiocb)
1951 return 1;
dea31012005-04-17 16:05:31 -05001952
1953 icmd = &elsiocb->iocb;
1954 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
1955
1956 /* For PLOGI request, remainder of payload is service parameters */
1957 *((uint32_t *) (pcmd)) = ELS_CMD_PLOGI;
James Smart92d7f7b2007-06-17 19:56:38 -05001958 pcmd += sizeof(uint32_t);
1959 memcpy(pcmd, &vport->fc_sparam, sizeof(struct serv_parm));
dea31012005-04-17 16:05:31 -05001960 sp = (struct serv_parm *) pcmd;
1961
James Smart5ac6b302010-10-22 11:05:36 -04001962 /*
1963 * If we are a N-port connected to a Fabric, fix-up paramm's so logins
1964 * to device on remote loops work.
1965 */
1966 if ((vport->fc_flag & FC_FABRIC) && !(vport->fc_flag & FC_PUBLIC_LOOP))
1967 sp->cmn.altBbCredit = 1;
1968
dea31012005-04-17 16:05:31 -05001969 if (sp->cmn.fcphLow < FC_PH_4_3)
1970 sp->cmn.fcphLow = FC_PH_4_3;
1971
1972 if (sp->cmn.fcphHigh < FC_PH3)
1973 sp->cmn.fcphHigh = FC_PH3;
1974
James Smart858c9f62007-06-17 19:56:39 -05001975 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
1976 "Issue PLOGI: did:x%x",
1977 did, 0, 0);
1978
dea31012005-04-17 16:05:31 -05001979 phba->fc_stat.elsXmitPLOGI++;
1980 elsiocb->iocb_cmpl = lpfc_cmpl_els_plogi;
James Smart3772a992009-05-22 14:50:54 -04001981 ret = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
James Smart92d7f7b2007-06-17 19:56:38 -05001982
1983 if (ret == IOCB_ERROR) {
dea31012005-04-17 16:05:31 -05001984 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001985 return 1;
dea31012005-04-17 16:05:31 -05001986 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001987 return 0;
dea31012005-04-17 16:05:31 -05001988}
1989
James Smarte59058c2008-08-24 21:49:00 -04001990/**
James Smart3621a712009-04-06 18:47:14 -04001991 * lpfc_cmpl_els_prli - Completion callback function for prli
James Smarte59058c2008-08-24 21:49:00 -04001992 * @phba: pointer to lpfc hba data structure.
1993 * @cmdiocb: pointer to lpfc command iocb data structure.
1994 * @rspiocb: pointer to lpfc response iocb data structure.
1995 *
1996 * This routine is the completion callback function for a Process Login
1997 * (PRLI) ELS command. The PRLI response IOCB status is checked for error
1998 * status. If there is error status reported, PRLI retry shall be attempted
1999 * by invoking the lpfc_els_retry() routine. Otherwise, the state
2000 * NLP_EVT_CMPL_PRLI is sent to the Discover State Machine (DSM) for this
2001 * ndlp to mark the PRLI completion.
2002 **/
dea31012005-04-17 16:05:31 -05002003static void
James Smart2e0fef82007-06-17 19:56:36 -05002004lpfc_cmpl_els_prli(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
2005 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05002006{
James Smart2e0fef82007-06-17 19:56:36 -05002007 struct lpfc_vport *vport = cmdiocb->vport;
2008 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05002009 IOCB_t *irsp;
2010 struct lpfc_sli *psli;
2011 struct lpfc_nodelist *ndlp;
2012
2013 psli = &phba->sli;
2014 /* we pass cmdiocb to state machine which needs rspiocb as well */
2015 cmdiocb->context_un.rsp_iocb = rspiocb;
2016
2017 irsp = &(rspiocb->iocb);
2018 ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
James Smart2e0fef82007-06-17 19:56:36 -05002019 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002020 ndlp->nlp_flag &= ~NLP_PRLI_SND;
James Smart2e0fef82007-06-17 19:56:36 -05002021 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002022
James Smart858c9f62007-06-17 19:56:39 -05002023 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2024 "PRLI cmpl: status:x%x/x%x did:x%x",
2025 irsp->ulpStatus, irsp->un.ulpWord[4],
2026 ndlp->nlp_DID);
dea31012005-04-17 16:05:31 -05002027 /* PRLI completes to NPort <nlp_DID> */
James Smarte8b62012007-08-02 11:10:09 -04002028 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
2029 "0103 PRLI completes to NPort x%x "
2030 "Data: x%x x%x x%x x%x\n",
2031 ndlp->nlp_DID, irsp->ulpStatus, irsp->un.ulpWord[4],
2032 irsp->ulpTimeout, vport->num_disc_nodes);
dea31012005-04-17 16:05:31 -05002033
James Smart2e0fef82007-06-17 19:56:36 -05002034 vport->fc_prli_sent--;
dea31012005-04-17 16:05:31 -05002035 /* Check to see if link went down during discovery */
James Smart2e0fef82007-06-17 19:56:36 -05002036 if (lpfc_els_chk_latt(vport))
dea31012005-04-17 16:05:31 -05002037 goto out;
2038
2039 if (irsp->ulpStatus) {
2040 /* Check for retry */
2041 if (lpfc_els_retry(phba, cmdiocb, rspiocb)) {
2042 /* ELS command is being retried */
2043 goto out;
2044 }
2045 /* PRLI failed */
James Smarte40a02c2010-02-26 14:13:54 -05002046 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
2047 "2754 PRLI failure DID:%06X Status:x%x/x%x\n",
2048 ndlp->nlp_DID, irsp->ulpStatus,
2049 irsp->un.ulpWord[4]);
dea31012005-04-17 16:05:31 -05002050 /* Do not call DSM for lpfc_els_abort'ed ELS cmds */
James Smarte47c9092008-02-08 18:49:26 -05002051 if (lpfc_error_lost_link(irsp))
dea31012005-04-17 16:05:31 -05002052 goto out;
James Smarte47c9092008-02-08 18:49:26 -05002053 else
James Smart2e0fef82007-06-17 19:56:36 -05002054 lpfc_disc_state_machine(vport, ndlp, cmdiocb,
James Smart92d7f7b2007-06-17 19:56:38 -05002055 NLP_EVT_CMPL_PRLI);
James Smarte47c9092008-02-08 18:49:26 -05002056 } else
dea31012005-04-17 16:05:31 -05002057 /* Good status, call state machine */
James Smart2e0fef82007-06-17 19:56:36 -05002058 lpfc_disc_state_machine(vport, ndlp, cmdiocb,
James Smart92d7f7b2007-06-17 19:56:38 -05002059 NLP_EVT_CMPL_PRLI);
dea31012005-04-17 16:05:31 -05002060out:
2061 lpfc_els_free_iocb(phba, cmdiocb);
2062 return;
2063}
2064
James Smarte59058c2008-08-24 21:49:00 -04002065/**
James Smart3621a712009-04-06 18:47:14 -04002066 * lpfc_issue_els_prli - Issue a prli iocb command for a vport
James Smarte59058c2008-08-24 21:49:00 -04002067 * @vport: pointer to a host virtual N_Port data structure.
2068 * @ndlp: pointer to a node-list data structure.
2069 * @retry: number of retries to the command IOCB.
2070 *
2071 * This routine issues a Process Login (PRLI) ELS command for the
2072 * @vport. The PRLI service parameters are set up in the payload of the
2073 * PRLI Request command and the pointer to lpfc_cmpl_els_prli() routine
2074 * is put to the IOCB completion callback func field before invoking the
2075 * routine lpfc_sli_issue_iocb() to send out PRLI command.
2076 *
2077 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
2078 * will be incremented by 1 for holding the ndlp and the reference to ndlp
2079 * will be stored into the context1 field of the IOCB for the completion
2080 * callback function to the PRLI ELS command.
2081 *
2082 * Return code
2083 * 0 - successfully issued prli iocb command for @vport
2084 * 1 - failed to issue prli iocb command for @vport
2085 **/
dea31012005-04-17 16:05:31 -05002086int
James Smart2e0fef82007-06-17 19:56:36 -05002087lpfc_issue_els_prli(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
dea31012005-04-17 16:05:31 -05002088 uint8_t retry)
2089{
James Smart2e0fef82007-06-17 19:56:36 -05002090 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2091 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05002092 PRLI *npr;
2093 IOCB_t *icmd;
2094 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05002095 uint8_t *pcmd;
2096 uint16_t cmdsize;
2097
James Smart92d7f7b2007-06-17 19:56:38 -05002098 cmdsize = (sizeof(uint32_t) + sizeof(PRLI));
James Smart2e0fef82007-06-17 19:56:36 -05002099 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
2100 ndlp->nlp_DID, ELS_CMD_PRLI);
James Smart488d1462006-03-07 15:02:37 -05002101 if (!elsiocb)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002102 return 1;
dea31012005-04-17 16:05:31 -05002103
2104 icmd = &elsiocb->iocb;
2105 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
2106
2107 /* For PRLI request, remainder of payload is service parameters */
James Smart92d7f7b2007-06-17 19:56:38 -05002108 memset(pcmd, 0, (sizeof(PRLI) + sizeof(uint32_t)));
dea31012005-04-17 16:05:31 -05002109 *((uint32_t *) (pcmd)) = ELS_CMD_PRLI;
James Smart92d7f7b2007-06-17 19:56:38 -05002110 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05002111
2112 /* For PRLI, remainder of payload is PRLI parameter page */
2113 npr = (PRLI *) pcmd;
2114 /*
2115 * If our firmware version is 3.20 or later,
2116 * set the following bits for FC-TAPE support.
2117 */
2118 if (phba->vpd.rev.feaLevelHigh >= 0x02) {
2119 npr->ConfmComplAllowed = 1;
2120 npr->Retry = 1;
2121 npr->TaskRetryIdReq = 1;
2122 }
2123 npr->estabImagePair = 1;
2124 npr->readXferRdyDis = 1;
2125
2126 /* For FCP support */
2127 npr->prliType = PRLI_FCP_TYPE;
2128 npr->initiatorFunc = 1;
2129
James Smart858c9f62007-06-17 19:56:39 -05002130 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2131 "Issue PRLI: did:x%x",
2132 ndlp->nlp_DID, 0, 0);
2133
dea31012005-04-17 16:05:31 -05002134 phba->fc_stat.elsXmitPRLI++;
2135 elsiocb->iocb_cmpl = lpfc_cmpl_els_prli;
James Smart2e0fef82007-06-17 19:56:36 -05002136 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002137 ndlp->nlp_flag |= NLP_PRLI_SND;
James Smart2e0fef82007-06-17 19:56:36 -05002138 spin_unlock_irq(shost->host_lock);
James Smart3772a992009-05-22 14:50:54 -04002139 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) ==
2140 IOCB_ERROR) {
James Smart2e0fef82007-06-17 19:56:36 -05002141 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002142 ndlp->nlp_flag &= ~NLP_PRLI_SND;
James Smart2e0fef82007-06-17 19:56:36 -05002143 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002144 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002145 return 1;
dea31012005-04-17 16:05:31 -05002146 }
James Smart2e0fef82007-06-17 19:56:36 -05002147 vport->fc_prli_sent++;
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002148 return 0;
dea31012005-04-17 16:05:31 -05002149}
2150
James Smarte59058c2008-08-24 21:49:00 -04002151/**
James Smart3621a712009-04-06 18:47:14 -04002152 * lpfc_rscn_disc - Perform rscn discovery for a vport
James Smart90160e02008-08-24 21:49:45 -04002153 * @vport: pointer to a host virtual N_Port data structure.
2154 *
2155 * This routine performs Registration State Change Notification (RSCN)
2156 * discovery for a @vport. If the @vport's node port recovery count is not
2157 * zero, it will invoke the lpfc_els_disc_plogi() to perform PLOGI for all
2158 * the nodes that need recovery. If none of the PLOGI were needed through
2159 * the lpfc_els_disc_plogi() routine, the lpfc_end_rscn() routine shall be
2160 * invoked to check and handle possible more RSCN came in during the period
2161 * of processing the current ones.
2162 **/
2163static void
2164lpfc_rscn_disc(struct lpfc_vport *vport)
2165{
2166 lpfc_can_disctmo(vport);
2167
2168 /* RSCN discovery */
2169 /* go thru NPR nodes and issue ELS PLOGIs */
2170 if (vport->fc_npr_cnt)
2171 if (lpfc_els_disc_plogi(vport))
2172 return;
2173
2174 lpfc_end_rscn(vport);
2175}
2176
2177/**
James Smart3621a712009-04-06 18:47:14 -04002178 * lpfc_adisc_done - Complete the adisc phase of discovery
James Smart90160e02008-08-24 21:49:45 -04002179 * @vport: pointer to lpfc_vport hba data structure that finished all ADISCs.
2180 *
2181 * This function is called when the final ADISC is completed during discovery.
2182 * This function handles clearing link attention or issuing reg_vpi depending
2183 * on whether npiv is enabled. This function also kicks off the PLOGI phase of
2184 * discovery.
2185 * This function is called with no locks held.
2186 **/
2187static void
2188lpfc_adisc_done(struct lpfc_vport *vport)
2189{
2190 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2191 struct lpfc_hba *phba = vport->phba;
2192
2193 /*
2194 * For NPIV, cmpl_reg_vpi will set port_state to READY,
2195 * and continue discovery.
2196 */
2197 if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
James Smart6fb120a2009-05-22 14:52:59 -04002198 !(vport->fc_flag & FC_RSCN_MODE) &&
2199 (phba->sli_rev < LPFC_SLI_REV4)) {
James Smart90160e02008-08-24 21:49:45 -04002200 lpfc_issue_reg_vpi(phba, vport);
2201 return;
2202 }
2203 /*
2204 * For SLI2, we need to set port_state to READY
2205 * and continue discovery.
2206 */
2207 if (vport->port_state < LPFC_VPORT_READY) {
2208 /* If we get here, there is nothing to ADISC */
2209 if (vport->port_type == LPFC_PHYSICAL_PORT)
2210 lpfc_issue_clear_la(phba, vport);
2211 if (!(vport->fc_flag & FC_ABORT_DISCOVERY)) {
2212 vport->num_disc_nodes = 0;
2213 /* go thru NPR list, issue ELS PLOGIs */
2214 if (vport->fc_npr_cnt)
2215 lpfc_els_disc_plogi(vport);
2216 if (!vport->num_disc_nodes) {
2217 spin_lock_irq(shost->host_lock);
2218 vport->fc_flag &= ~FC_NDISC_ACTIVE;
2219 spin_unlock_irq(shost->host_lock);
2220 lpfc_can_disctmo(vport);
2221 lpfc_end_rscn(vport);
2222 }
2223 }
2224 vport->port_state = LPFC_VPORT_READY;
2225 } else
2226 lpfc_rscn_disc(vport);
2227}
2228
2229/**
James Smart3621a712009-04-06 18:47:14 -04002230 * lpfc_more_adisc - Issue more adisc as needed
James Smarte59058c2008-08-24 21:49:00 -04002231 * @vport: pointer to a host virtual N_Port data structure.
2232 *
2233 * This routine determines whether there are more ndlps on a @vport
2234 * node list need to have Address Discover (ADISC) issued. If so, it will
2235 * invoke the lpfc_els_disc_adisc() routine to issue ADISC on the @vport's
2236 * remaining nodes which need to have ADISC sent.
2237 **/
James Smart0ff10d42008-01-11 01:52:36 -05002238void
James Smart2e0fef82007-06-17 19:56:36 -05002239lpfc_more_adisc(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05002240{
2241 int sentadisc;
2242
James Smart2e0fef82007-06-17 19:56:36 -05002243 if (vport->num_disc_nodes)
2244 vport->num_disc_nodes--;
dea31012005-04-17 16:05:31 -05002245 /* Continue discovery with <num_disc_nodes> ADISCs to go */
James Smarte8b62012007-08-02 11:10:09 -04002246 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
2247 "0210 Continue discovery with %d ADISCs to go "
2248 "Data: x%x x%x x%x\n",
2249 vport->num_disc_nodes, vport->fc_adisc_cnt,
2250 vport->fc_flag, vport->port_state);
dea31012005-04-17 16:05:31 -05002251 /* Check to see if there are more ADISCs to be sent */
James Smart2e0fef82007-06-17 19:56:36 -05002252 if (vport->fc_flag & FC_NLP_MORE) {
2253 lpfc_set_disctmo(vport);
2254 /* go thru NPR nodes and issue any remaining ELS ADISCs */
2255 sentadisc = lpfc_els_disc_adisc(vport);
dea31012005-04-17 16:05:31 -05002256 }
James Smart90160e02008-08-24 21:49:45 -04002257 if (!vport->num_disc_nodes)
2258 lpfc_adisc_done(vport);
dea31012005-04-17 16:05:31 -05002259 return;
2260}
2261
James Smarte59058c2008-08-24 21:49:00 -04002262/**
James Smart3621a712009-04-06 18:47:14 -04002263 * lpfc_cmpl_els_adisc - Completion callback function for adisc
James Smarte59058c2008-08-24 21:49:00 -04002264 * @phba: pointer to lpfc hba data structure.
2265 * @cmdiocb: pointer to lpfc command iocb data structure.
2266 * @rspiocb: pointer to lpfc response iocb data structure.
2267 *
2268 * This routine is the completion function for issuing the Address Discover
2269 * (ADISC) command. It first checks to see whether link went down during
2270 * the discovery process. If so, the node will be marked as node port
2271 * recovery for issuing discover IOCB by the link attention handler and
2272 * exit. Otherwise, the response status is checked. If error was reported
2273 * in the response status, the ADISC command shall be retried by invoking
2274 * the lpfc_els_retry() routine. Otherwise, if no error was reported in
2275 * the response status, the state machine is invoked to set transition
2276 * with respect to NLP_EVT_CMPL_ADISC event.
2277 **/
dea31012005-04-17 16:05:31 -05002278static void
James Smart2e0fef82007-06-17 19:56:36 -05002279lpfc_cmpl_els_adisc(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
2280 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05002281{
James Smart2e0fef82007-06-17 19:56:36 -05002282 struct lpfc_vport *vport = cmdiocb->vport;
2283 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05002284 IOCB_t *irsp;
dea31012005-04-17 16:05:31 -05002285 struct lpfc_nodelist *ndlp;
James Smart2e0fef82007-06-17 19:56:36 -05002286 int disc;
dea31012005-04-17 16:05:31 -05002287
2288 /* we pass cmdiocb to state machine which needs rspiocb as well */
2289 cmdiocb->context_un.rsp_iocb = rspiocb;
2290
2291 irsp = &(rspiocb->iocb);
2292 ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
dea31012005-04-17 16:05:31 -05002293
James Smart858c9f62007-06-17 19:56:39 -05002294 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2295 "ADISC cmpl: status:x%x/x%x did:x%x",
2296 irsp->ulpStatus, irsp->un.ulpWord[4],
2297 ndlp->nlp_DID);
2298
dea31012005-04-17 16:05:31 -05002299 /* Since ndlp can be freed in the disc state machine, note if this node
2300 * is being used during discovery.
2301 */
James Smart2e0fef82007-06-17 19:56:36 -05002302 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002303 disc = (ndlp->nlp_flag & NLP_NPR_2B_DISC);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002304 ndlp->nlp_flag &= ~(NLP_ADISC_SND | NLP_NPR_2B_DISC);
James Smart2e0fef82007-06-17 19:56:36 -05002305 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002306 /* ADISC completes to NPort <nlp_DID> */
James Smarte8b62012007-08-02 11:10:09 -04002307 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
2308 "0104 ADISC completes to NPort x%x "
2309 "Data: x%x x%x x%x x%x x%x\n",
2310 ndlp->nlp_DID, irsp->ulpStatus, irsp->un.ulpWord[4],
2311 irsp->ulpTimeout, disc, vport->num_disc_nodes);
dea31012005-04-17 16:05:31 -05002312 /* Check to see if link went down during discovery */
James Smart2e0fef82007-06-17 19:56:36 -05002313 if (lpfc_els_chk_latt(vport)) {
2314 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002315 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
James Smart2e0fef82007-06-17 19:56:36 -05002316 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002317 goto out;
2318 }
2319
2320 if (irsp->ulpStatus) {
2321 /* Check for retry */
2322 if (lpfc_els_retry(phba, cmdiocb, rspiocb)) {
2323 /* ELS command is being retried */
2324 if (disc) {
James Smart2e0fef82007-06-17 19:56:36 -05002325 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002326 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
James Smart2e0fef82007-06-17 19:56:36 -05002327 spin_unlock_irq(shost->host_lock);
2328 lpfc_set_disctmo(vport);
dea31012005-04-17 16:05:31 -05002329 }
2330 goto out;
2331 }
2332 /* ADISC failed */
James Smarte40a02c2010-02-26 14:13:54 -05002333 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
2334 "2755 ADISC failure DID:%06X Status:x%x/x%x\n",
2335 ndlp->nlp_DID, irsp->ulpStatus,
2336 irsp->un.ulpWord[4]);
dea31012005-04-17 16:05:31 -05002337 /* Do not call DSM for lpfc_els_abort'ed ELS cmds */
James Smarte47c9092008-02-08 18:49:26 -05002338 if (!lpfc_error_lost_link(irsp))
James Smart2e0fef82007-06-17 19:56:36 -05002339 lpfc_disc_state_machine(vport, ndlp, cmdiocb,
James Smart858c9f62007-06-17 19:56:39 -05002340 NLP_EVT_CMPL_ADISC);
James Smarte47c9092008-02-08 18:49:26 -05002341 } else
dea31012005-04-17 16:05:31 -05002342 /* Good status, call state machine */
James Smart2e0fef82007-06-17 19:56:36 -05002343 lpfc_disc_state_machine(vport, ndlp, cmdiocb,
dea31012005-04-17 16:05:31 -05002344 NLP_EVT_CMPL_ADISC);
dea31012005-04-17 16:05:31 -05002345
James Smart90160e02008-08-24 21:49:45 -04002346 /* Check to see if there are more ADISCs to be sent */
2347 if (disc && vport->num_disc_nodes)
James Smart2e0fef82007-06-17 19:56:36 -05002348 lpfc_more_adisc(vport);
dea31012005-04-17 16:05:31 -05002349out:
2350 lpfc_els_free_iocb(phba, cmdiocb);
2351 return;
2352}
2353
James Smarte59058c2008-08-24 21:49:00 -04002354/**
James Smart3621a712009-04-06 18:47:14 -04002355 * lpfc_issue_els_adisc - Issue an address discover iocb to an node on a vport
James Smarte59058c2008-08-24 21:49:00 -04002356 * @vport: pointer to a virtual N_Port data structure.
2357 * @ndlp: pointer to a node-list data structure.
2358 * @retry: number of retries to the command IOCB.
2359 *
2360 * This routine issues an Address Discover (ADISC) for an @ndlp on a
2361 * @vport. It prepares the payload of the ADISC ELS command, updates the
2362 * and states of the ndlp, and invokes the lpfc_sli_issue_iocb() routine
2363 * to issue the ADISC ELS command.
2364 *
2365 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
2366 * will be incremented by 1 for holding the ndlp and the reference to ndlp
2367 * will be stored into the context1 field of the IOCB for the completion
2368 * callback function to the ADISC ELS command.
2369 *
2370 * Return code
2371 * 0 - successfully issued adisc
2372 * 1 - failed to issue adisc
2373 **/
dea31012005-04-17 16:05:31 -05002374int
James Smart2e0fef82007-06-17 19:56:36 -05002375lpfc_issue_els_adisc(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
dea31012005-04-17 16:05:31 -05002376 uint8_t retry)
2377{
James Smart2e0fef82007-06-17 19:56:36 -05002378 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2379 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05002380 ADISC *ap;
2381 IOCB_t *icmd;
2382 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05002383 uint8_t *pcmd;
2384 uint16_t cmdsize;
2385
James Smart92d7f7b2007-06-17 19:56:38 -05002386 cmdsize = (sizeof(uint32_t) + sizeof(ADISC));
James Smart2e0fef82007-06-17 19:56:36 -05002387 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
2388 ndlp->nlp_DID, ELS_CMD_ADISC);
James Smart488d1462006-03-07 15:02:37 -05002389 if (!elsiocb)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002390 return 1;
dea31012005-04-17 16:05:31 -05002391
2392 icmd = &elsiocb->iocb;
2393 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
2394
2395 /* For ADISC request, remainder of payload is service parameters */
2396 *((uint32_t *) (pcmd)) = ELS_CMD_ADISC;
James Smart92d7f7b2007-06-17 19:56:38 -05002397 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05002398
2399 /* Fill in ADISC payload */
2400 ap = (ADISC *) pcmd;
2401 ap->hardAL_PA = phba->fc_pref_ALPA;
James Smart92d7f7b2007-06-17 19:56:38 -05002402 memcpy(&ap->portName, &vport->fc_portname, sizeof(struct lpfc_name));
2403 memcpy(&ap->nodeName, &vport->fc_nodename, sizeof(struct lpfc_name));
James Smart2e0fef82007-06-17 19:56:36 -05002404 ap->DID = be32_to_cpu(vport->fc_myDID);
dea31012005-04-17 16:05:31 -05002405
James Smart858c9f62007-06-17 19:56:39 -05002406 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2407 "Issue ADISC: did:x%x",
2408 ndlp->nlp_DID, 0, 0);
2409
dea31012005-04-17 16:05:31 -05002410 phba->fc_stat.elsXmitADISC++;
2411 elsiocb->iocb_cmpl = lpfc_cmpl_els_adisc;
James Smart2e0fef82007-06-17 19:56:36 -05002412 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002413 ndlp->nlp_flag |= NLP_ADISC_SND;
James Smart2e0fef82007-06-17 19:56:36 -05002414 spin_unlock_irq(shost->host_lock);
James Smart3772a992009-05-22 14:50:54 -04002415 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) ==
2416 IOCB_ERROR) {
James Smart2e0fef82007-06-17 19:56:36 -05002417 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002418 ndlp->nlp_flag &= ~NLP_ADISC_SND;
James Smart2e0fef82007-06-17 19:56:36 -05002419 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002420 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002421 return 1;
dea31012005-04-17 16:05:31 -05002422 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002423 return 0;
dea31012005-04-17 16:05:31 -05002424}
2425
James Smarte59058c2008-08-24 21:49:00 -04002426/**
James Smart3621a712009-04-06 18:47:14 -04002427 * lpfc_cmpl_els_logo - Completion callback function for logo
James Smarte59058c2008-08-24 21:49:00 -04002428 * @phba: pointer to lpfc hba data structure.
2429 * @cmdiocb: pointer to lpfc command iocb data structure.
2430 * @rspiocb: pointer to lpfc response iocb data structure.
2431 *
2432 * This routine is the completion function for issuing the ELS Logout (LOGO)
2433 * command. If no error status was reported from the LOGO response, the
2434 * state machine of the associated ndlp shall be invoked for transition with
2435 * respect to NLP_EVT_CMPL_LOGO event. Otherwise, if error status was reported,
2436 * the lpfc_els_retry() routine will be invoked to retry the LOGO command.
2437 **/
dea31012005-04-17 16:05:31 -05002438static void
James Smart2e0fef82007-06-17 19:56:36 -05002439lpfc_cmpl_els_logo(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
2440 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05002441{
James Smart2e0fef82007-06-17 19:56:36 -05002442 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
2443 struct lpfc_vport *vport = ndlp->vport;
2444 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05002445 IOCB_t *irsp;
2446 struct lpfc_sli *psli;
James Smart92494142011-02-16 12:39:44 -05002447 struct lpfcMboxq *mbox;
James Smart086a3452012-08-14 14:25:21 -04002448 unsigned long flags;
2449 uint32_t skip_recovery = 0;
dea31012005-04-17 16:05:31 -05002450
2451 psli = &phba->sli;
2452 /* we pass cmdiocb to state machine which needs rspiocb as well */
2453 cmdiocb->context_un.rsp_iocb = rspiocb;
2454
2455 irsp = &(rspiocb->iocb);
James Smart2e0fef82007-06-17 19:56:36 -05002456 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002457 ndlp->nlp_flag &= ~NLP_LOGO_SND;
James Smart2e0fef82007-06-17 19:56:36 -05002458 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002459
James Smart858c9f62007-06-17 19:56:39 -05002460 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2461 "LOGO cmpl: status:x%x/x%x did:x%x",
2462 irsp->ulpStatus, irsp->un.ulpWord[4],
2463 ndlp->nlp_DID);
James Smart086a3452012-08-14 14:25:21 -04002464
dea31012005-04-17 16:05:31 -05002465 /* LOGO completes to NPort <nlp_DID> */
James Smarte8b62012007-08-02 11:10:09 -04002466 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
2467 "0105 LOGO completes to NPort x%x "
2468 "Data: x%x x%x x%x x%x\n",
2469 ndlp->nlp_DID, irsp->ulpStatus, irsp->un.ulpWord[4],
2470 irsp->ulpTimeout, vport->num_disc_nodes);
dea31012005-04-17 16:05:31 -05002471
James Smart086a3452012-08-14 14:25:21 -04002472 if (lpfc_els_chk_latt(vport)) {
2473 skip_recovery = 1;
2474 goto out;
2475 }
2476
2477 /* Check to see if link went down during discovery */
James Smart92d7f7b2007-06-17 19:56:38 -05002478 if (ndlp->nlp_flag & NLP_TARGET_REMOVE) {
2479 /* NLP_EVT_DEVICE_RM should unregister the RPI
2480 * which should abort all outstanding IOs.
2481 */
2482 lpfc_disc_state_machine(vport, ndlp, cmdiocb,
2483 NLP_EVT_DEVICE_RM);
James Smart086a3452012-08-14 14:25:21 -04002484 skip_recovery = 1;
James Smart92d7f7b2007-06-17 19:56:38 -05002485 goto out;
2486 }
2487
dea31012005-04-17 16:05:31 -05002488 if (irsp->ulpStatus) {
2489 /* Check for retry */
James Smart086a3452012-08-14 14:25:21 -04002490 if (lpfc_els_retry(phba, cmdiocb, rspiocb)) {
dea31012005-04-17 16:05:31 -05002491 /* ELS command is being retried */
James Smart086a3452012-08-14 14:25:21 -04002492 skip_recovery = 1;
dea31012005-04-17 16:05:31 -05002493 goto out;
James Smart086a3452012-08-14 14:25:21 -04002494 }
dea31012005-04-17 16:05:31 -05002495 /* LOGO failed */
James Smarte40a02c2010-02-26 14:13:54 -05002496 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
2497 "2756 LOGO failure DID:%06X Status:x%x/x%x\n",
2498 ndlp->nlp_DID, irsp->ulpStatus,
2499 irsp->un.ulpWord[4]);
dea31012005-04-17 16:05:31 -05002500 /* Do not call DSM for lpfc_els_abort'ed ELS cmds */
James Smart086a3452012-08-14 14:25:21 -04002501 if (lpfc_error_lost_link(irsp)) {
2502 skip_recovery = 1;
dea31012005-04-17 16:05:31 -05002503 goto out;
James Smart086a3452012-08-14 14:25:21 -04002504 }
2505 }
2506
2507 /* Call state machine. This will unregister the rpi if needed. */
2508 lpfc_disc_state_machine(vport, ndlp, cmdiocb, NLP_EVT_CMPL_LOGO);
2509
dea31012005-04-17 16:05:31 -05002510out:
2511 lpfc_els_free_iocb(phba, cmdiocb);
James Smart92494142011-02-16 12:39:44 -05002512 /* If we are in pt2pt mode, we could rcv new S_ID on PLOGI */
2513 if ((vport->fc_flag & FC_PT2PT) &&
2514 !(vport->fc_flag & FC_PT2PT_PLOGI)) {
2515 phba->pport->fc_myDID = 0;
2516 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
2517 if (mbox) {
2518 lpfc_config_link(phba, mbox);
2519 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
2520 mbox->vport = vport;
2521 if (lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT) ==
2522 MBX_NOT_FINISHED) {
2523 mempool_free(mbox, phba->mbox_mem_pool);
James Smart086a3452012-08-14 14:25:21 -04002524 skip_recovery = 1;
James Smart92494142011-02-16 12:39:44 -05002525 }
2526 }
2527 }
James Smart086a3452012-08-14 14:25:21 -04002528
2529 /*
2530 * If the node is a target, the handling attempts to recover the port.
2531 * For any other port type, the rpi is unregistered as an implicit
2532 * LOGO.
2533 */
2534 if ((ndlp->nlp_type & NLP_FCP_TARGET) && (skip_recovery == 0)) {
2535 lpfc_cancel_retry_delay_tmo(vport, ndlp);
2536 spin_lock_irqsave(shost->host_lock, flags);
2537 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
2538 spin_unlock_irqrestore(shost->host_lock, flags);
2539
2540 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
2541 "3187 LOGO completes to NPort x%x: Start "
2542 "Recovery Data: x%x x%x x%x x%x\n",
2543 ndlp->nlp_DID, irsp->ulpStatus,
2544 irsp->un.ulpWord[4], irsp->ulpTimeout,
2545 vport->num_disc_nodes);
2546 lpfc_disc_start(vport);
2547 }
dea31012005-04-17 16:05:31 -05002548 return;
2549}
2550
James Smarte59058c2008-08-24 21:49:00 -04002551/**
James Smart3621a712009-04-06 18:47:14 -04002552 * lpfc_issue_els_logo - Issue a logo to an node on a vport
James Smarte59058c2008-08-24 21:49:00 -04002553 * @vport: pointer to a virtual N_Port data structure.
2554 * @ndlp: pointer to a node-list data structure.
2555 * @retry: number of retries to the command IOCB.
2556 *
2557 * This routine constructs and issues an ELS Logout (LOGO) iocb command
2558 * to a remote node, referred by an @ndlp on a @vport. It constructs the
2559 * payload of the IOCB, properly sets up the @ndlp state, and invokes the
2560 * lpfc_sli_issue_iocb() routine to send out the LOGO ELS command.
2561 *
2562 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
2563 * will be incremented by 1 for holding the ndlp and the reference to ndlp
2564 * will be stored into the context1 field of the IOCB for the completion
2565 * callback function to the LOGO ELS command.
2566 *
2567 * Return code
2568 * 0 - successfully issued logo
2569 * 1 - failed to issue logo
2570 **/
dea31012005-04-17 16:05:31 -05002571int
James Smart2e0fef82007-06-17 19:56:36 -05002572lpfc_issue_els_logo(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
dea31012005-04-17 16:05:31 -05002573 uint8_t retry)
2574{
James Smart2e0fef82007-06-17 19:56:36 -05002575 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2576 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05002577 IOCB_t *icmd;
2578 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05002579 uint8_t *pcmd;
2580 uint16_t cmdsize;
James Smart92d7f7b2007-06-17 19:56:38 -05002581 int rc;
dea31012005-04-17 16:05:31 -05002582
James Smart98c9ea52007-10-27 13:37:33 -04002583 spin_lock_irq(shost->host_lock);
2584 if (ndlp->nlp_flag & NLP_LOGO_SND) {
2585 spin_unlock_irq(shost->host_lock);
2586 return 0;
2587 }
2588 spin_unlock_irq(shost->host_lock);
2589
James Smart92d7f7b2007-06-17 19:56:38 -05002590 cmdsize = (2 * sizeof(uint32_t)) + sizeof(struct lpfc_name);
James Smart2e0fef82007-06-17 19:56:36 -05002591 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
2592 ndlp->nlp_DID, ELS_CMD_LOGO);
James Smart488d1462006-03-07 15:02:37 -05002593 if (!elsiocb)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002594 return 1;
dea31012005-04-17 16:05:31 -05002595
2596 icmd = &elsiocb->iocb;
2597 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
2598 *((uint32_t *) (pcmd)) = ELS_CMD_LOGO;
James Smart92d7f7b2007-06-17 19:56:38 -05002599 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05002600
2601 /* Fill in LOGO payload */
James Smart2e0fef82007-06-17 19:56:36 -05002602 *((uint32_t *) (pcmd)) = be32_to_cpu(vport->fc_myDID);
James Smart92d7f7b2007-06-17 19:56:38 -05002603 pcmd += sizeof(uint32_t);
2604 memcpy(pcmd, &vport->fc_portname, sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -05002605
James Smart858c9f62007-06-17 19:56:39 -05002606 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2607 "Issue LOGO: did:x%x",
2608 ndlp->nlp_DID, 0, 0);
2609
James Smart086a3452012-08-14 14:25:21 -04002610 /*
2611 * If we are issuing a LOGO, we may try to recover the remote NPort
2612 * by issuing a PLOGI later. Even though we issue ELS cmds by the
2613 * VPI, if we have a valid RPI, and that RPI gets unreg'ed while
2614 * that ELS command is in-flight, the HBA returns a IOERR_INVALID_RPI
2615 * for that ELS cmd. To avoid this situation, lets get rid of the
2616 * RPI right now, before any ELS cmds are sent.
2617 */
2618 spin_lock_irq(shost->host_lock);
2619 ndlp->nlp_flag |= NLP_ISSUE_LOGO;
2620 spin_unlock_irq(shost->host_lock);
2621 if (lpfc_unreg_rpi(vport, ndlp)) {
2622 lpfc_els_free_iocb(phba, elsiocb);
2623 return 0;
2624 }
2625
dea31012005-04-17 16:05:31 -05002626 phba->fc_stat.elsXmitLOGO++;
2627 elsiocb->iocb_cmpl = lpfc_cmpl_els_logo;
James Smart2e0fef82007-06-17 19:56:36 -05002628 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002629 ndlp->nlp_flag |= NLP_LOGO_SND;
James Smart086a3452012-08-14 14:25:21 -04002630 ndlp->nlp_flag &= ~NLP_ISSUE_LOGO;
James Smart2e0fef82007-06-17 19:56:36 -05002631 spin_unlock_irq(shost->host_lock);
James Smart3772a992009-05-22 14:50:54 -04002632 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
James Smart92d7f7b2007-06-17 19:56:38 -05002633
2634 if (rc == IOCB_ERROR) {
James Smart2e0fef82007-06-17 19:56:36 -05002635 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002636 ndlp->nlp_flag &= ~NLP_LOGO_SND;
James Smart2e0fef82007-06-17 19:56:36 -05002637 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002638 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002639 return 1;
dea31012005-04-17 16:05:31 -05002640 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002641 return 0;
dea31012005-04-17 16:05:31 -05002642}
2643
James Smarte59058c2008-08-24 21:49:00 -04002644/**
James Smart3621a712009-04-06 18:47:14 -04002645 * lpfc_cmpl_els_cmd - Completion callback function for generic els command
James Smarte59058c2008-08-24 21:49:00 -04002646 * @phba: pointer to lpfc hba data structure.
2647 * @cmdiocb: pointer to lpfc command iocb data structure.
2648 * @rspiocb: pointer to lpfc response iocb data structure.
2649 *
2650 * This routine is a generic completion callback function for ELS commands.
2651 * Specifically, it is the callback function which does not need to perform
2652 * any command specific operations. It is currently used by the ELS command
2653 * issuing routines for the ELS State Change Request (SCR),
2654 * lpfc_issue_els_scr(), and the ELS Fibre Channel Address Resolution
2655 * Protocol Response (FARPR) routine, lpfc_issue_els_farpr(). Other than
2656 * certain debug loggings, this callback function simply invokes the
2657 * lpfc_els_chk_latt() routine to check whether link went down during the
2658 * discovery process.
2659 **/
dea31012005-04-17 16:05:31 -05002660static void
James Smart2e0fef82007-06-17 19:56:36 -05002661lpfc_cmpl_els_cmd(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
2662 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05002663{
James Smart2e0fef82007-06-17 19:56:36 -05002664 struct lpfc_vport *vport = cmdiocb->vport;
dea31012005-04-17 16:05:31 -05002665 IOCB_t *irsp;
2666
2667 irsp = &rspiocb->iocb;
2668
James Smart858c9f62007-06-17 19:56:39 -05002669 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2670 "ELS cmd cmpl: status:x%x/x%x did:x%x",
2671 irsp->ulpStatus, irsp->un.ulpWord[4],
2672 irsp->un.elsreq64.remoteID);
dea31012005-04-17 16:05:31 -05002673 /* ELS cmd tag <ulpIoTag> completes */
James Smarte8b62012007-08-02 11:10:09 -04002674 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
2675 "0106 ELS cmd tag x%x completes Data: x%x x%x x%x\n",
2676 irsp->ulpIoTag, irsp->ulpStatus,
2677 irsp->un.ulpWord[4], irsp->ulpTimeout);
dea31012005-04-17 16:05:31 -05002678 /* Check to see if link went down during discovery */
James Smart2e0fef82007-06-17 19:56:36 -05002679 lpfc_els_chk_latt(vport);
dea31012005-04-17 16:05:31 -05002680 lpfc_els_free_iocb(phba, cmdiocb);
2681 return;
2682}
2683
James Smarte59058c2008-08-24 21:49:00 -04002684/**
James Smart3621a712009-04-06 18:47:14 -04002685 * lpfc_issue_els_scr - Issue a scr to an node on a vport
James Smarte59058c2008-08-24 21:49:00 -04002686 * @vport: pointer to a host virtual N_Port data structure.
2687 * @nportid: N_Port identifier to the remote node.
2688 * @retry: number of retries to the command IOCB.
2689 *
2690 * This routine issues a State Change Request (SCR) to a fabric node
2691 * on a @vport. The remote node @nportid is passed into the function. It
2692 * first search the @vport node list to find the matching ndlp. If no such
2693 * ndlp is found, a new ndlp shall be created for this (SCR) purpose. An
2694 * IOCB is allocated, payload prepared, and the lpfc_sli_issue_iocb()
2695 * routine is invoked to send the SCR IOCB.
2696 *
2697 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
2698 * will be incremented by 1 for holding the ndlp and the reference to ndlp
2699 * will be stored into the context1 field of the IOCB for the completion
2700 * callback function to the SCR ELS command.
2701 *
2702 * Return code
2703 * 0 - Successfully issued scr command
2704 * 1 - Failed to issue scr command
2705 **/
dea31012005-04-17 16:05:31 -05002706int
James Smart2e0fef82007-06-17 19:56:36 -05002707lpfc_issue_els_scr(struct lpfc_vport *vport, uint32_t nportid, uint8_t retry)
dea31012005-04-17 16:05:31 -05002708{
James Smart2e0fef82007-06-17 19:56:36 -05002709 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05002710 IOCB_t *icmd;
2711 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05002712 struct lpfc_sli *psli;
2713 uint8_t *pcmd;
2714 uint16_t cmdsize;
2715 struct lpfc_nodelist *ndlp;
2716
2717 psli = &phba->sli;
James Smart92d7f7b2007-06-17 19:56:38 -05002718 cmdsize = (sizeof(uint32_t) + sizeof(SCR));
dea31012005-04-17 16:05:31 -05002719
James Smarte47c9092008-02-08 18:49:26 -05002720 ndlp = lpfc_findnode_did(vport, nportid);
2721 if (!ndlp) {
2722 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
2723 if (!ndlp)
2724 return 1;
2725 lpfc_nlp_init(vport, ndlp, nportid);
2726 lpfc_enqueue_node(vport, ndlp);
2727 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
2728 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
2729 if (!ndlp)
2730 return 1;
2731 }
dea31012005-04-17 16:05:31 -05002732
James Smart2e0fef82007-06-17 19:56:36 -05002733 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
2734 ndlp->nlp_DID, ELS_CMD_SCR);
2735
James Smart488d1462006-03-07 15:02:37 -05002736 if (!elsiocb) {
James Smartfa4066b2008-01-11 01:53:27 -05002737 /* This will trigger the release of the node just
2738 * allocated
2739 */
James Smart329f9bc2007-04-25 09:53:01 -04002740 lpfc_nlp_put(ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002741 return 1;
dea31012005-04-17 16:05:31 -05002742 }
2743
2744 icmd = &elsiocb->iocb;
2745 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
2746
2747 *((uint32_t *) (pcmd)) = ELS_CMD_SCR;
James Smart92d7f7b2007-06-17 19:56:38 -05002748 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05002749
2750 /* For SCR, remainder of payload is SCR parameter page */
James Smart92d7f7b2007-06-17 19:56:38 -05002751 memset(pcmd, 0, sizeof(SCR));
dea31012005-04-17 16:05:31 -05002752 ((SCR *) pcmd)->Function = SCR_FUNC_FULL;
2753
James Smart858c9f62007-06-17 19:56:39 -05002754 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2755 "Issue SCR: did:x%x",
2756 ndlp->nlp_DID, 0, 0);
2757
dea31012005-04-17 16:05:31 -05002758 phba->fc_stat.elsXmitSCR++;
2759 elsiocb->iocb_cmpl = lpfc_cmpl_els_cmd;
James Smart3772a992009-05-22 14:50:54 -04002760 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) ==
2761 IOCB_ERROR) {
James Smartfa4066b2008-01-11 01:53:27 -05002762 /* The additional lpfc_nlp_put will cause the following
2763 * lpfc_els_free_iocb routine to trigger the rlease of
2764 * the node.
2765 */
James Smart329f9bc2007-04-25 09:53:01 -04002766 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05002767 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002768 return 1;
dea31012005-04-17 16:05:31 -05002769 }
James Smartfa4066b2008-01-11 01:53:27 -05002770 /* This will cause the callback-function lpfc_cmpl_els_cmd to
2771 * trigger the release of node.
2772 */
James Smart329f9bc2007-04-25 09:53:01 -04002773 lpfc_nlp_put(ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002774 return 0;
dea31012005-04-17 16:05:31 -05002775}
2776
James Smarte59058c2008-08-24 21:49:00 -04002777/**
James Smart3621a712009-04-06 18:47:14 -04002778 * lpfc_issue_els_farpr - Issue a farp to an node on a vport
James Smarte59058c2008-08-24 21:49:00 -04002779 * @vport: pointer to a host virtual N_Port data structure.
2780 * @nportid: N_Port identifier to the remote node.
2781 * @retry: number of retries to the command IOCB.
2782 *
2783 * This routine issues a Fibre Channel Address Resolution Response
2784 * (FARPR) to a node on a vport. The remote node N_Port identifier (@nportid)
2785 * is passed into the function. It first search the @vport node list to find
2786 * the matching ndlp. If no such ndlp is found, a new ndlp shall be created
2787 * for this (FARPR) purpose. An IOCB is allocated, payload prepared, and the
2788 * lpfc_sli_issue_iocb() routine is invoked to send the FARPR ELS command.
2789 *
2790 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
2791 * will be incremented by 1 for holding the ndlp and the reference to ndlp
2792 * will be stored into the context1 field of the IOCB for the completion
2793 * callback function to the PARPR ELS command.
2794 *
2795 * Return code
2796 * 0 - Successfully issued farpr command
2797 * 1 - Failed to issue farpr command
2798 **/
dea31012005-04-17 16:05:31 -05002799static int
James Smart2e0fef82007-06-17 19:56:36 -05002800lpfc_issue_els_farpr(struct lpfc_vport *vport, uint32_t nportid, uint8_t retry)
dea31012005-04-17 16:05:31 -05002801{
James Smart2e0fef82007-06-17 19:56:36 -05002802 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05002803 IOCB_t *icmd;
2804 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05002805 struct lpfc_sli *psli;
2806 FARP *fp;
2807 uint8_t *pcmd;
2808 uint32_t *lp;
2809 uint16_t cmdsize;
2810 struct lpfc_nodelist *ondlp;
2811 struct lpfc_nodelist *ndlp;
2812
2813 psli = &phba->sli;
James Smart92d7f7b2007-06-17 19:56:38 -05002814 cmdsize = (sizeof(uint32_t) + sizeof(FARP));
dea31012005-04-17 16:05:31 -05002815
James Smarte47c9092008-02-08 18:49:26 -05002816 ndlp = lpfc_findnode_did(vport, nportid);
2817 if (!ndlp) {
2818 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
2819 if (!ndlp)
2820 return 1;
2821 lpfc_nlp_init(vport, ndlp, nportid);
2822 lpfc_enqueue_node(vport, ndlp);
2823 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
2824 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
2825 if (!ndlp)
2826 return 1;
2827 }
James Smart2e0fef82007-06-17 19:56:36 -05002828
2829 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
2830 ndlp->nlp_DID, ELS_CMD_RNID);
James Smart488d1462006-03-07 15:02:37 -05002831 if (!elsiocb) {
James Smartfa4066b2008-01-11 01:53:27 -05002832 /* This will trigger the release of the node just
2833 * allocated
2834 */
James Smart329f9bc2007-04-25 09:53:01 -04002835 lpfc_nlp_put(ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002836 return 1;
dea31012005-04-17 16:05:31 -05002837 }
2838
2839 icmd = &elsiocb->iocb;
2840 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
2841
2842 *((uint32_t *) (pcmd)) = ELS_CMD_FARPR;
James Smart92d7f7b2007-06-17 19:56:38 -05002843 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05002844
2845 /* Fill in FARPR payload */
2846 fp = (FARP *) (pcmd);
James Smart92d7f7b2007-06-17 19:56:38 -05002847 memset(fp, 0, sizeof(FARP));
dea31012005-04-17 16:05:31 -05002848 lp = (uint32_t *) pcmd;
2849 *lp++ = be32_to_cpu(nportid);
James Smart2e0fef82007-06-17 19:56:36 -05002850 *lp++ = be32_to_cpu(vport->fc_myDID);
dea31012005-04-17 16:05:31 -05002851 fp->Rflags = 0;
2852 fp->Mflags = (FARP_MATCH_PORT | FARP_MATCH_NODE);
2853
James Smart92d7f7b2007-06-17 19:56:38 -05002854 memcpy(&fp->RportName, &vport->fc_portname, sizeof(struct lpfc_name));
2855 memcpy(&fp->RnodeName, &vport->fc_nodename, sizeof(struct lpfc_name));
James Smart2e0fef82007-06-17 19:56:36 -05002856 ondlp = lpfc_findnode_did(vport, nportid);
James Smarte47c9092008-02-08 18:49:26 -05002857 if (ondlp && NLP_CHK_NODE_ACT(ondlp)) {
dea31012005-04-17 16:05:31 -05002858 memcpy(&fp->OportName, &ondlp->nlp_portname,
James Smart92d7f7b2007-06-17 19:56:38 -05002859 sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -05002860 memcpy(&fp->OnodeName, &ondlp->nlp_nodename,
James Smart92d7f7b2007-06-17 19:56:38 -05002861 sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -05002862 }
2863
James Smart858c9f62007-06-17 19:56:39 -05002864 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2865 "Issue FARPR: did:x%x",
2866 ndlp->nlp_DID, 0, 0);
2867
dea31012005-04-17 16:05:31 -05002868 phba->fc_stat.elsXmitFARPR++;
2869 elsiocb->iocb_cmpl = lpfc_cmpl_els_cmd;
James Smart3772a992009-05-22 14:50:54 -04002870 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) ==
2871 IOCB_ERROR) {
James Smartfa4066b2008-01-11 01:53:27 -05002872 /* The additional lpfc_nlp_put will cause the following
2873 * lpfc_els_free_iocb routine to trigger the release of
2874 * the node.
2875 */
James Smart329f9bc2007-04-25 09:53:01 -04002876 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05002877 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002878 return 1;
dea31012005-04-17 16:05:31 -05002879 }
James Smartfa4066b2008-01-11 01:53:27 -05002880 /* This will cause the callback-function lpfc_cmpl_els_cmd to
2881 * trigger the release of the node.
2882 */
James Smart329f9bc2007-04-25 09:53:01 -04002883 lpfc_nlp_put(ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002884 return 0;
dea31012005-04-17 16:05:31 -05002885}
2886
James Smarte59058c2008-08-24 21:49:00 -04002887/**
James Smart3621a712009-04-06 18:47:14 -04002888 * lpfc_cancel_retry_delay_tmo - Cancel the timer with delayed iocb-cmd retry
James Smarte59058c2008-08-24 21:49:00 -04002889 * @vport: pointer to a host virtual N_Port data structure.
2890 * @nlp: pointer to a node-list data structure.
2891 *
2892 * This routine cancels the timer with a delayed IOCB-command retry for
2893 * a @vport's @ndlp. It stops the timer for the delayed function retrial and
2894 * removes the ELS retry event if it presents. In addition, if the
2895 * NLP_NPR_2B_DISC bit is set in the @nlp's nlp_flag bitmap, ADISC IOCB
2896 * commands are sent for the @vport's nodes that require issuing discovery
2897 * ADISC.
2898 **/
dea31012005-04-17 16:05:31 -05002899void
James Smart2e0fef82007-06-17 19:56:36 -05002900lpfc_cancel_retry_delay_tmo(struct lpfc_vport *vport, struct lpfc_nodelist *nlp)
James Smartfdcebe22006-03-07 15:04:01 -05002901{
James Smart2e0fef82007-06-17 19:56:36 -05002902 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smarte47c9092008-02-08 18:49:26 -05002903 struct lpfc_work_evt *evtp;
James Smart2e0fef82007-06-17 19:56:36 -05002904
James Smart0d2b6b82008-06-14 22:52:47 -04002905 if (!(nlp->nlp_flag & NLP_DELAY_TMO))
2906 return;
James Smart2e0fef82007-06-17 19:56:36 -05002907 spin_lock_irq(shost->host_lock);
James Smartfdcebe22006-03-07 15:04:01 -05002908 nlp->nlp_flag &= ~NLP_DELAY_TMO;
James Smart2e0fef82007-06-17 19:56:36 -05002909 spin_unlock_irq(shost->host_lock);
James Smartfdcebe22006-03-07 15:04:01 -05002910 del_timer_sync(&nlp->nlp_delayfunc);
2911 nlp->nlp_last_elscmd = 0;
James Smarte47c9092008-02-08 18:49:26 -05002912 if (!list_empty(&nlp->els_retry_evt.evt_listp)) {
James Smartfdcebe22006-03-07 15:04:01 -05002913 list_del_init(&nlp->els_retry_evt.evt_listp);
James Smarte47c9092008-02-08 18:49:26 -05002914 /* Decrement nlp reference count held for the delayed retry */
2915 evtp = &nlp->els_retry_evt;
2916 lpfc_nlp_put((struct lpfc_nodelist *)evtp->evt_arg1);
2917 }
James Smartfdcebe22006-03-07 15:04:01 -05002918 if (nlp->nlp_flag & NLP_NPR_2B_DISC) {
James Smart2e0fef82007-06-17 19:56:36 -05002919 spin_lock_irq(shost->host_lock);
James Smartfdcebe22006-03-07 15:04:01 -05002920 nlp->nlp_flag &= ~NLP_NPR_2B_DISC;
James Smart2e0fef82007-06-17 19:56:36 -05002921 spin_unlock_irq(shost->host_lock);
2922 if (vport->num_disc_nodes) {
James Smart0d2b6b82008-06-14 22:52:47 -04002923 if (vport->port_state < LPFC_VPORT_READY) {
2924 /* Check if there are more ADISCs to be sent */
2925 lpfc_more_adisc(vport);
James Smart0d2b6b82008-06-14 22:52:47 -04002926 } else {
2927 /* Check if there are more PLOGIs to be sent */
2928 lpfc_more_plogi(vport);
James Smart90160e02008-08-24 21:49:45 -04002929 if (vport->num_disc_nodes == 0) {
2930 spin_lock_irq(shost->host_lock);
2931 vport->fc_flag &= ~FC_NDISC_ACTIVE;
2932 spin_unlock_irq(shost->host_lock);
2933 lpfc_can_disctmo(vport);
2934 lpfc_end_rscn(vport);
2935 }
James Smartfdcebe22006-03-07 15:04:01 -05002936 }
2937 }
2938 }
2939 return;
2940}
2941
James Smarte59058c2008-08-24 21:49:00 -04002942/**
James Smart3621a712009-04-06 18:47:14 -04002943 * lpfc_els_retry_delay - Timer function with a ndlp delayed function timer
James Smarte59058c2008-08-24 21:49:00 -04002944 * @ptr: holder for the pointer to the timer function associated data (ndlp).
2945 *
2946 * This routine is invoked by the ndlp delayed-function timer to check
2947 * whether there is any pending ELS retry event(s) with the node. If not, it
2948 * simply returns. Otherwise, if there is at least one ELS delayed event, it
2949 * adds the delayed events to the HBA work list and invokes the
2950 * lpfc_worker_wake_up() routine to wake up worker thread to process the
2951 * event. Note that lpfc_nlp_get() is called before posting the event to
2952 * the work list to hold reference count of ndlp so that it guarantees the
2953 * reference to ndlp will still be available when the worker thread gets
2954 * to the event associated with the ndlp.
2955 **/
James Smartfdcebe22006-03-07 15:04:01 -05002956void
dea31012005-04-17 16:05:31 -05002957lpfc_els_retry_delay(unsigned long ptr)
2958{
James Smart2e0fef82007-06-17 19:56:36 -05002959 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) ptr;
2960 struct lpfc_vport *vport = ndlp->vport;
James Smart2e0fef82007-06-17 19:56:36 -05002961 struct lpfc_hba *phba = vport->phba;
James Smart92d7f7b2007-06-17 19:56:38 -05002962 unsigned long flags;
James Smart2e0fef82007-06-17 19:56:36 -05002963 struct lpfc_work_evt *evtp = &ndlp->els_retry_evt;
dea31012005-04-17 16:05:31 -05002964
James Smart92d7f7b2007-06-17 19:56:38 -05002965 spin_lock_irqsave(&phba->hbalock, flags);
dea31012005-04-17 16:05:31 -05002966 if (!list_empty(&evtp->evt_listp)) {
James Smart92d7f7b2007-06-17 19:56:38 -05002967 spin_unlock_irqrestore(&phba->hbalock, flags);
dea31012005-04-17 16:05:31 -05002968 return;
2969 }
2970
James Smartfa4066b2008-01-11 01:53:27 -05002971 /* We need to hold the node by incrementing the reference
2972 * count until the queued work is done
2973 */
2974 evtp->evt_arg1 = lpfc_nlp_get(ndlp);
James Smart5e9d9b82008-06-14 22:52:53 -04002975 if (evtp->evt_arg1) {
2976 evtp->evt = LPFC_EVT_ELS_RETRY;
2977 list_add_tail(&evtp->evt_listp, &phba->work_list);
James Smart92d7f7b2007-06-17 19:56:38 -05002978 lpfc_worker_wake_up(phba);
James Smart5e9d9b82008-06-14 22:52:53 -04002979 }
James Smart92d7f7b2007-06-17 19:56:38 -05002980 spin_unlock_irqrestore(&phba->hbalock, flags);
dea31012005-04-17 16:05:31 -05002981 return;
2982}
2983
James Smarte59058c2008-08-24 21:49:00 -04002984/**
James Smart3621a712009-04-06 18:47:14 -04002985 * lpfc_els_retry_delay_handler - Work thread handler for ndlp delayed function
James Smarte59058c2008-08-24 21:49:00 -04002986 * @ndlp: pointer to a node-list data structure.
2987 *
2988 * This routine is the worker-thread handler for processing the @ndlp delayed
2989 * event(s), posted by the lpfc_els_retry_delay() routine. It simply retrieves
2990 * the last ELS command from the associated ndlp and invokes the proper ELS
2991 * function according to the delayed ELS command to retry the command.
2992 **/
dea31012005-04-17 16:05:31 -05002993void
2994lpfc_els_retry_delay_handler(struct lpfc_nodelist *ndlp)
2995{
James Smart2e0fef82007-06-17 19:56:36 -05002996 struct lpfc_vport *vport = ndlp->vport;
2997 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2998 uint32_t cmd, did, retry;
dea31012005-04-17 16:05:31 -05002999
James Smart2e0fef82007-06-17 19:56:36 -05003000 spin_lock_irq(shost->host_lock);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003001 did = ndlp->nlp_DID;
3002 cmd = ndlp->nlp_last_elscmd;
3003 ndlp->nlp_last_elscmd = 0;
dea31012005-04-17 16:05:31 -05003004
3005 if (!(ndlp->nlp_flag & NLP_DELAY_TMO)) {
James Smart2e0fef82007-06-17 19:56:36 -05003006 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05003007 return;
3008 }
3009
3010 ndlp->nlp_flag &= ~NLP_DELAY_TMO;
James Smart2e0fef82007-06-17 19:56:36 -05003011 spin_unlock_irq(shost->host_lock);
James Smart1a169682006-03-07 15:04:06 -05003012 /*
3013 * If a discovery event readded nlp_delayfunc after timer
3014 * firing and before processing the timer, cancel the
3015 * nlp_delayfunc.
3016 */
3017 del_timer_sync(&ndlp->nlp_delayfunc);
dea31012005-04-17 16:05:31 -05003018 retry = ndlp->nlp_retry;
James Smart4d9ab992009-10-02 15:16:39 -04003019 ndlp->nlp_retry = 0;
dea31012005-04-17 16:05:31 -05003020
3021 switch (cmd) {
3022 case ELS_CMD_FLOGI:
James Smart2e0fef82007-06-17 19:56:36 -05003023 lpfc_issue_els_flogi(vport, ndlp, retry);
dea31012005-04-17 16:05:31 -05003024 break;
3025 case ELS_CMD_PLOGI:
James Smart2e0fef82007-06-17 19:56:36 -05003026 if (!lpfc_issue_els_plogi(vport, ndlp->nlp_DID, retry)) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003027 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05003028 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
Jamie Wellnitz6ad42532006-02-28 19:25:16 -05003029 }
dea31012005-04-17 16:05:31 -05003030 break;
3031 case ELS_CMD_ADISC:
James Smart2e0fef82007-06-17 19:56:36 -05003032 if (!lpfc_issue_els_adisc(vport, ndlp, retry)) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003033 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05003034 lpfc_nlp_set_state(vport, ndlp, NLP_STE_ADISC_ISSUE);
Jamie Wellnitz6ad42532006-02-28 19:25:16 -05003035 }
dea31012005-04-17 16:05:31 -05003036 break;
3037 case ELS_CMD_PRLI:
James Smart2e0fef82007-06-17 19:56:36 -05003038 if (!lpfc_issue_els_prli(vport, ndlp, retry)) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003039 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05003040 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PRLI_ISSUE);
Jamie Wellnitz6ad42532006-02-28 19:25:16 -05003041 }
dea31012005-04-17 16:05:31 -05003042 break;
3043 case ELS_CMD_LOGO:
James Smart2e0fef82007-06-17 19:56:36 -05003044 if (!lpfc_issue_els_logo(vport, ndlp, retry)) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003045 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart086a3452012-08-14 14:25:21 -04003046 lpfc_nlp_set_state(vport, ndlp, NLP_STE_LOGO_ISSUE);
Jamie Wellnitz6ad42532006-02-28 19:25:16 -05003047 }
dea31012005-04-17 16:05:31 -05003048 break;
James Smart92d7f7b2007-06-17 19:56:38 -05003049 case ELS_CMD_FDISC:
James Smartfedd3b72011-02-16 12:39:24 -05003050 if (!(vport->fc_flag & FC_VPORT_NEEDS_INIT_VPI))
3051 lpfc_issue_els_fdisc(vport, ndlp, retry);
James Smart92d7f7b2007-06-17 19:56:38 -05003052 break;
dea31012005-04-17 16:05:31 -05003053 }
3054 return;
3055}
3056
James Smarte59058c2008-08-24 21:49:00 -04003057/**
James Smart3621a712009-04-06 18:47:14 -04003058 * lpfc_els_retry - Make retry decision on an els command iocb
James Smarte59058c2008-08-24 21:49:00 -04003059 * @phba: pointer to lpfc hba data structure.
3060 * @cmdiocb: pointer to lpfc command iocb data structure.
3061 * @rspiocb: pointer to lpfc response iocb data structure.
3062 *
3063 * This routine makes a retry decision on an ELS command IOCB, which has
3064 * failed. The following ELS IOCBs use this function for retrying the command
3065 * when previously issued command responsed with error status: FLOGI, PLOGI,
3066 * PRLI, ADISC, LOGO, and FDISC. Based on the ELS command type and the
3067 * returned error status, it makes the decision whether a retry shall be
3068 * issued for the command, and whether a retry shall be made immediately or
3069 * delayed. In the former case, the corresponding ELS command issuing-function
3070 * is called to retry the command. In the later case, the ELS command shall
3071 * be posted to the ndlp delayed event and delayed function timer set to the
3072 * ndlp for the delayed command issusing.
3073 *
3074 * Return code
3075 * 0 - No retry of els command is made
3076 * 1 - Immediate or delayed retry of els command is made
3077 **/
dea31012005-04-17 16:05:31 -05003078static int
James Smart2e0fef82007-06-17 19:56:36 -05003079lpfc_els_retry(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
3080 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05003081{
James Smart2e0fef82007-06-17 19:56:36 -05003082 struct lpfc_vport *vport = cmdiocb->vport;
3083 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
3084 IOCB_t *irsp = &rspiocb->iocb;
3085 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
3086 struct lpfc_dmabuf *pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
dea31012005-04-17 16:05:31 -05003087 uint32_t *elscmd;
3088 struct ls_rjt stat;
James Smart2e0fef82007-06-17 19:56:36 -05003089 int retry = 0, maxretry = lpfc_max_els_tries, delay = 0;
James Smart98c9ea52007-10-27 13:37:33 -04003090 int logerr = 0;
James Smart2e0fef82007-06-17 19:56:36 -05003091 uint32_t cmd = 0;
James Smart488d1462006-03-07 15:02:37 -05003092 uint32_t did;
dea31012005-04-17 16:05:31 -05003093
James Smart488d1462006-03-07 15:02:37 -05003094
dea31012005-04-17 16:05:31 -05003095 /* Note: context2 may be 0 for internal driver abort
3096 * of delays ELS command.
3097 */
3098
3099 if (pcmd && pcmd->virt) {
3100 elscmd = (uint32_t *) (pcmd->virt);
3101 cmd = *elscmd++;
3102 }
3103
James Smarte47c9092008-02-08 18:49:26 -05003104 if (ndlp && NLP_CHK_NODE_ACT(ndlp))
James Smart488d1462006-03-07 15:02:37 -05003105 did = ndlp->nlp_DID;
3106 else {
3107 /* We should only hit this case for retrying PLOGI */
3108 did = irsp->un.elsreq64.remoteID;
James Smart2e0fef82007-06-17 19:56:36 -05003109 ndlp = lpfc_findnode_did(vport, did);
James Smarte47c9092008-02-08 18:49:26 -05003110 if ((!ndlp || !NLP_CHK_NODE_ACT(ndlp))
3111 && (cmd != ELS_CMD_PLOGI))
James Smart488d1462006-03-07 15:02:37 -05003112 return 1;
3113 }
3114
James Smart858c9f62007-06-17 19:56:39 -05003115 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
3116 "Retry ELS: wd7:x%x wd4:x%x did:x%x",
3117 *(((uint32_t *) irsp) + 7), irsp->un.ulpWord[4], ndlp->nlp_DID);
3118
dea31012005-04-17 16:05:31 -05003119 switch (irsp->ulpStatus) {
3120 case IOSTAT_FCP_RSP_ERROR:
dea31012005-04-17 16:05:31 -05003121 break;
James Smart1151e3e2011-02-16 12:39:35 -05003122 case IOSTAT_REMOTE_STOP:
3123 if (phba->sli_rev == LPFC_SLI_REV4) {
3124 /* This IO was aborted by the target, we don't
3125 * know the rxid and because we did not send the
3126 * ABTS we cannot generate and RRQ.
3127 */
3128 lpfc_set_rrq_active(phba, ndlp,
James Smartee0f4fe2012-05-09 21:19:14 -04003129 cmdiocb->sli4_lxritag, 0, 0);
James Smart1151e3e2011-02-16 12:39:35 -05003130 }
3131 break;
dea31012005-04-17 16:05:31 -05003132 case IOSTAT_LOCAL_REJECT:
James Smarte3d2b802012-08-14 14:25:43 -04003133 switch ((irsp->un.ulpWord[4] & IOERR_PARAM_MASK)) {
dea31012005-04-17 16:05:31 -05003134 case IOERR_LOOP_OPEN_FAILURE:
James Smarteaf15d52008-12-04 22:39:29 -05003135 if (cmd == ELS_CMD_FLOGI) {
3136 if (PCI_DEVICE_ID_HORNET ==
3137 phba->pcidev->device) {
James Smart76a95d72010-11-20 23:11:48 -05003138 phba->fc_topology = LPFC_TOPOLOGY_LOOP;
James Smarteaf15d52008-12-04 22:39:29 -05003139 phba->pport->fc_myDID = 0;
3140 phba->alpa_map[0] = 0;
3141 phba->alpa_map[1] = 0;
3142 }
3143 }
James Smart2e0fef82007-06-17 19:56:36 -05003144 if (cmd == ELS_CMD_PLOGI && cmdiocb->retry == 0)
James Smart92d7f7b2007-06-17 19:56:38 -05003145 delay = 1000;
dea31012005-04-17 16:05:31 -05003146 retry = 1;
3147 break;
3148
James Smart92d7f7b2007-06-17 19:56:38 -05003149 case IOERR_ILLEGAL_COMMAND:
James Smart7f5f3d02008-02-08 18:50:14 -05003150 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
3151 "0124 Retry illegal cmd x%x "
3152 "retry:x%x delay:x%x\n",
3153 cmd, cmdiocb->retry, delay);
3154 retry = 1;
3155 /* All command's retry policy */
3156 maxretry = 8;
3157 if (cmdiocb->retry > 2)
3158 delay = 1000;
James Smart92d7f7b2007-06-17 19:56:38 -05003159 break;
3160
dea31012005-04-17 16:05:31 -05003161 case IOERR_NO_RESOURCES:
James Smart98c9ea52007-10-27 13:37:33 -04003162 logerr = 1; /* HBA out of resources */
James Smart858c9f62007-06-17 19:56:39 -05003163 retry = 1;
3164 if (cmdiocb->retry > 100)
3165 delay = 100;
3166 maxretry = 250;
3167 break;
3168
3169 case IOERR_ILLEGAL_FRAME:
James Smart92d7f7b2007-06-17 19:56:38 -05003170 delay = 100;
dea31012005-04-17 16:05:31 -05003171 retry = 1;
3172 break;
3173
James Smart858c9f62007-06-17 19:56:39 -05003174 case IOERR_SEQUENCE_TIMEOUT:
dea31012005-04-17 16:05:31 -05003175 case IOERR_INVALID_RPI:
James Smart5b5b36a2013-01-03 15:43:19 -05003176 if (cmd == ELS_CMD_PLOGI &&
3177 did == NameServer_DID) {
3178 /* Continue forever if plogi to */
3179 /* the nameserver fails */
3180 maxretry = 0;
3181 delay = 100;
3182 }
dea31012005-04-17 16:05:31 -05003183 retry = 1;
3184 break;
3185 }
3186 break;
3187
3188 case IOSTAT_NPORT_RJT:
3189 case IOSTAT_FABRIC_RJT:
3190 if (irsp->un.ulpWord[4] & RJT_UNAVAIL_TEMP) {
3191 retry = 1;
3192 break;
3193 }
3194 break;
3195
3196 case IOSTAT_NPORT_BSY:
3197 case IOSTAT_FABRIC_BSY:
James Smart98c9ea52007-10-27 13:37:33 -04003198 logerr = 1; /* Fabric / Remote NPort out of resources */
dea31012005-04-17 16:05:31 -05003199 retry = 1;
3200 break;
3201
3202 case IOSTAT_LS_RJT:
3203 stat.un.lsRjtError = be32_to_cpu(irsp->un.ulpWord[4]);
3204 /* Added for Vendor specifc support
3205 * Just keep retrying for these Rsn / Exp codes
3206 */
3207 switch (stat.un.b.lsRjtRsnCode) {
3208 case LSRJT_UNABLE_TPC:
3209 if (stat.un.b.lsRjtRsnCodeExp ==
3210 LSEXP_CMD_IN_PROGRESS) {
3211 if (cmd == ELS_CMD_PLOGI) {
James Smart92d7f7b2007-06-17 19:56:38 -05003212 delay = 1000;
dea31012005-04-17 16:05:31 -05003213 maxretry = 48;
3214 }
3215 retry = 1;
3216 break;
3217 }
James Smartffc95492010-06-07 15:23:17 -04003218 if (stat.un.b.lsRjtRsnCodeExp ==
3219 LSEXP_CANT_GIVE_DATA) {
3220 if (cmd == ELS_CMD_PLOGI) {
3221 delay = 1000;
3222 maxretry = 48;
3223 }
3224 retry = 1;
3225 break;
3226 }
James Smart4c1b64b2012-09-29 11:31:11 -04003227 if ((cmd == ELS_CMD_PLOGI) ||
3228 (cmd == ELS_CMD_PRLI)) {
James Smart92d7f7b2007-06-17 19:56:38 -05003229 delay = 1000;
dea31012005-04-17 16:05:31 -05003230 maxretry = lpfc_max_els_tries + 1;
3231 retry = 1;
3232 break;
3233 }
James Smart92d7f7b2007-06-17 19:56:38 -05003234 if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
3235 (cmd == ELS_CMD_FDISC) &&
3236 (stat.un.b.lsRjtRsnCodeExp == LSEXP_OUT_OF_RESOURCE)){
James Smarte8b62012007-08-02 11:10:09 -04003237 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
3238 "0125 FDISC Failed (x%x). "
3239 "Fabric out of resources\n",
3240 stat.un.lsRjtError);
James Smart92d7f7b2007-06-17 19:56:38 -05003241 lpfc_vport_set_state(vport,
3242 FC_VPORT_NO_FABRIC_RSCS);
3243 }
dea31012005-04-17 16:05:31 -05003244 break;
3245
3246 case LSRJT_LOGICAL_BSY:
James Smart858c9f62007-06-17 19:56:39 -05003247 if ((cmd == ELS_CMD_PLOGI) ||
3248 (cmd == ELS_CMD_PRLI)) {
James Smart92d7f7b2007-06-17 19:56:38 -05003249 delay = 1000;
dea31012005-04-17 16:05:31 -05003250 maxretry = 48;
James Smart92d7f7b2007-06-17 19:56:38 -05003251 } else if (cmd == ELS_CMD_FDISC) {
James Smart51ef4c22007-08-02 11:10:31 -04003252 /* FDISC retry policy */
3253 maxretry = 48;
3254 if (cmdiocb->retry >= 32)
3255 delay = 1000;
dea31012005-04-17 16:05:31 -05003256 }
3257 retry = 1;
3258 break;
James Smart92d7f7b2007-06-17 19:56:38 -05003259
3260 case LSRJT_LOGICAL_ERR:
James Smart7f5f3d02008-02-08 18:50:14 -05003261 /* There are some cases where switches return this
3262 * error when they are not ready and should be returning
3263 * Logical Busy. We should delay every time.
3264 */
3265 if (cmd == ELS_CMD_FDISC &&
3266 stat.un.b.lsRjtRsnCodeExp == LSEXP_PORT_LOGIN_REQ) {
3267 maxretry = 3;
3268 delay = 1000;
3269 retry = 1;
3270 break;
3271 }
James Smart92d7f7b2007-06-17 19:56:38 -05003272 case LSRJT_PROTOCOL_ERR:
3273 if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
3274 (cmd == ELS_CMD_FDISC) &&
3275 ((stat.un.b.lsRjtRsnCodeExp == LSEXP_INVALID_PNAME) ||
3276 (stat.un.b.lsRjtRsnCodeExp == LSEXP_INVALID_NPORT_ID))
3277 ) {
James Smarte8b62012007-08-02 11:10:09 -04003278 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
James Smartd7c255b2008-08-24 21:50:00 -04003279 "0122 FDISC Failed (x%x). "
James Smarte8b62012007-08-02 11:10:09 -04003280 "Fabric Detected Bad WWN\n",
3281 stat.un.lsRjtError);
James Smart92d7f7b2007-06-17 19:56:38 -05003282 lpfc_vport_set_state(vport,
3283 FC_VPORT_FABRIC_REJ_WWN);
3284 }
3285 break;
dea31012005-04-17 16:05:31 -05003286 }
3287 break;
3288
3289 case IOSTAT_INTERMED_RSP:
3290 case IOSTAT_BA_RJT:
3291 break;
3292
3293 default:
3294 break;
3295 }
3296
James Smart488d1462006-03-07 15:02:37 -05003297 if (did == FDMI_DID)
dea31012005-04-17 16:05:31 -05003298 retry = 1;
dea31012005-04-17 16:05:31 -05003299
James Smartdf9e1b52011-12-13 13:22:17 -05003300 if ((cmd == ELS_CMD_FLOGI) &&
James Smart76a95d72010-11-20 23:11:48 -05003301 (phba->fc_topology != LPFC_TOPOLOGY_LOOP) &&
James Smart1b32f6a2008-02-08 18:49:39 -05003302 !lpfc_error_lost_link(irsp)) {
James Smart98c9ea52007-10-27 13:37:33 -04003303 /* FLOGI retry policy */
3304 retry = 1;
James Smartdf9e1b52011-12-13 13:22:17 -05003305 /* retry FLOGI forever */
James Smart6669f9b2009-10-02 15:16:45 -04003306 maxretry = 0;
3307 if (cmdiocb->retry >= 100)
3308 delay = 5000;
3309 else if (cmdiocb->retry >= 32)
James Smart98c9ea52007-10-27 13:37:33 -04003310 delay = 1000;
James Smartdf9e1b52011-12-13 13:22:17 -05003311 } else if ((cmd == ELS_CMD_FDISC) && !lpfc_error_lost_link(irsp)) {
3312 /* retry FDISCs every second up to devloss */
3313 retry = 1;
3314 maxretry = vport->cfg_devloss_tmo;
3315 delay = 1000;
James Smart98c9ea52007-10-27 13:37:33 -04003316 }
3317
James Smart6669f9b2009-10-02 15:16:45 -04003318 cmdiocb->retry++;
3319 if (maxretry && (cmdiocb->retry >= maxretry)) {
dea31012005-04-17 16:05:31 -05003320 phba->fc_stat.elsRetryExceeded++;
3321 retry = 0;
3322 }
3323
James Smarted957682007-06-17 19:56:37 -05003324 if ((vport->load_flag & FC_UNLOADING) != 0)
3325 retry = 0;
3326
dea31012005-04-17 16:05:31 -05003327 if (retry) {
James Smart38b92ef2010-08-04 16:11:39 -04003328 if ((cmd == ELS_CMD_PLOGI) || (cmd == ELS_CMD_FDISC)) {
3329 /* Stop retrying PLOGI and FDISC if in FCF discovery */
3330 if (phba->fcf.fcf_flag & FCF_DISCOVERY) {
3331 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
3332 "2849 Stop retry ELS command "
3333 "x%x to remote NPORT x%x, "
3334 "Data: x%x x%x\n", cmd, did,
3335 cmdiocb->retry, delay);
3336 return 0;
3337 }
3338 }
dea31012005-04-17 16:05:31 -05003339
3340 /* Retry ELS command <elsCmd> to remote NPORT <did> */
James Smarte8b62012007-08-02 11:10:09 -04003341 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
3342 "0107 Retry ELS command x%x to remote "
3343 "NPORT x%x Data: x%x x%x\n",
3344 cmd, did, cmdiocb->retry, delay);
dea31012005-04-17 16:05:31 -05003345
James Smart858c9f62007-06-17 19:56:39 -05003346 if (((cmd == ELS_CMD_PLOGI) || (cmd == ELS_CMD_ADISC)) &&
3347 ((irsp->ulpStatus != IOSTAT_LOCAL_REJECT) ||
James Smarte3d2b802012-08-14 14:25:43 -04003348 ((irsp->un.ulpWord[4] & IOERR_PARAM_MASK) !=
3349 IOERR_NO_RESOURCES))) {
James Smart858c9f62007-06-17 19:56:39 -05003350 /* Don't reset timer for no resources */
3351
dea31012005-04-17 16:05:31 -05003352 /* If discovery / RSCN timer is running, reset it */
James Smart2e0fef82007-06-17 19:56:36 -05003353 if (timer_pending(&vport->fc_disctmo) ||
James Smart92d7f7b2007-06-17 19:56:38 -05003354 (vport->fc_flag & FC_RSCN_MODE))
James Smart2e0fef82007-06-17 19:56:36 -05003355 lpfc_set_disctmo(vport);
dea31012005-04-17 16:05:31 -05003356 }
3357
3358 phba->fc_stat.elsXmitRetry++;
James Smart58da1ff2008-04-07 10:15:56 -04003359 if (ndlp && NLP_CHK_NODE_ACT(ndlp) && delay) {
dea31012005-04-17 16:05:31 -05003360 phba->fc_stat.elsDelayRetry++;
3361 ndlp->nlp_retry = cmdiocb->retry;
3362
James Smart92d7f7b2007-06-17 19:56:38 -05003363 /* delay is specified in milliseconds */
3364 mod_timer(&ndlp->nlp_delayfunc,
3365 jiffies + msecs_to_jiffies(delay));
James Smart2e0fef82007-06-17 19:56:36 -05003366 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05003367 ndlp->nlp_flag |= NLP_DELAY_TMO;
James Smart2e0fef82007-06-17 19:56:36 -05003368 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05003369
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003370 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart858c9f62007-06-17 19:56:39 -05003371 if (cmd == ELS_CMD_PRLI)
3372 lpfc_nlp_set_state(vport, ndlp,
James Smart4c1b64b2012-09-29 11:31:11 -04003373 NLP_STE_PRLI_ISSUE);
James Smart858c9f62007-06-17 19:56:39 -05003374 else
3375 lpfc_nlp_set_state(vport, ndlp,
3376 NLP_STE_NPR_NODE);
dea31012005-04-17 16:05:31 -05003377 ndlp->nlp_last_elscmd = cmd;
3378
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003379 return 1;
dea31012005-04-17 16:05:31 -05003380 }
3381 switch (cmd) {
3382 case ELS_CMD_FLOGI:
James Smart2e0fef82007-06-17 19:56:36 -05003383 lpfc_issue_els_flogi(vport, ndlp, cmdiocb->retry);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003384 return 1;
James Smart92d7f7b2007-06-17 19:56:38 -05003385 case ELS_CMD_FDISC:
3386 lpfc_issue_els_fdisc(vport, ndlp, cmdiocb->retry);
3387 return 1;
dea31012005-04-17 16:05:31 -05003388 case ELS_CMD_PLOGI:
James Smart58da1ff2008-04-07 10:15:56 -04003389 if (ndlp && NLP_CHK_NODE_ACT(ndlp)) {
James Smart488d1462006-03-07 15:02:37 -05003390 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05003391 lpfc_nlp_set_state(vport, ndlp,
James Smartde0c5b32007-04-25 09:52:27 -04003392 NLP_STE_PLOGI_ISSUE);
James Smart488d1462006-03-07 15:02:37 -05003393 }
James Smart2e0fef82007-06-17 19:56:36 -05003394 lpfc_issue_els_plogi(vport, did, cmdiocb->retry);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003395 return 1;
dea31012005-04-17 16:05:31 -05003396 case ELS_CMD_ADISC:
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003397 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05003398 lpfc_nlp_set_state(vport, ndlp, NLP_STE_ADISC_ISSUE);
3399 lpfc_issue_els_adisc(vport, ndlp, cmdiocb->retry);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003400 return 1;
dea31012005-04-17 16:05:31 -05003401 case ELS_CMD_PRLI:
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003402 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05003403 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PRLI_ISSUE);
3404 lpfc_issue_els_prli(vport, ndlp, cmdiocb->retry);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003405 return 1;
dea31012005-04-17 16:05:31 -05003406 case ELS_CMD_LOGO:
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003407 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart086a3452012-08-14 14:25:21 -04003408 lpfc_nlp_set_state(vport, ndlp, NLP_STE_LOGO_ISSUE);
James Smart2e0fef82007-06-17 19:56:36 -05003409 lpfc_issue_els_logo(vport, ndlp, cmdiocb->retry);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003410 return 1;
dea31012005-04-17 16:05:31 -05003411 }
3412 }
dea31012005-04-17 16:05:31 -05003413 /* No retry ELS command <elsCmd> to remote NPORT <did> */
James Smart98c9ea52007-10-27 13:37:33 -04003414 if (logerr) {
3415 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
3416 "0137 No retry ELS command x%x to remote "
3417 "NPORT x%x: Out of Resources: Error:x%x/%x\n",
3418 cmd, did, irsp->ulpStatus,
3419 irsp->un.ulpWord[4]);
3420 }
3421 else {
3422 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
James Smarta58cbd52007-08-02 11:09:43 -04003423 "0108 No retry ELS command x%x to remote "
3424 "NPORT x%x Retried:%d Error:x%x/%x\n",
3425 cmd, did, cmdiocb->retry, irsp->ulpStatus,
3426 irsp->un.ulpWord[4]);
James Smart98c9ea52007-10-27 13:37:33 -04003427 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003428 return 0;
dea31012005-04-17 16:05:31 -05003429}
3430
James Smarte59058c2008-08-24 21:49:00 -04003431/**
James Smart3621a712009-04-06 18:47:14 -04003432 * lpfc_els_free_data - Free lpfc dma buffer and data structure with an iocb
James Smarte59058c2008-08-24 21:49:00 -04003433 * @phba: pointer to lpfc hba data structure.
3434 * @buf_ptr1: pointer to the lpfc DMA buffer data structure.
3435 *
3436 * This routine releases the lpfc DMA (Direct Memory Access) buffer(s)
3437 * associated with a command IOCB back to the lpfc DMA buffer pool. It first
3438 * checks to see whether there is a lpfc DMA buffer associated with the
3439 * response of the command IOCB. If so, it will be released before releasing
3440 * the lpfc DMA buffer associated with the IOCB itself.
3441 *
3442 * Return code
3443 * 0 - Successfully released lpfc DMA buffer (currently, always return 0)
3444 **/
James Smart09372822008-01-11 01:52:54 -05003445static int
James Smart87af33f2007-10-27 13:37:43 -04003446lpfc_els_free_data(struct lpfc_hba *phba, struct lpfc_dmabuf *buf_ptr1)
3447{
3448 struct lpfc_dmabuf *buf_ptr;
3449
James Smarte59058c2008-08-24 21:49:00 -04003450 /* Free the response before processing the command. */
James Smart87af33f2007-10-27 13:37:43 -04003451 if (!list_empty(&buf_ptr1->list)) {
3452 list_remove_head(&buf_ptr1->list, buf_ptr,
3453 struct lpfc_dmabuf,
3454 list);
3455 lpfc_mbuf_free(phba, buf_ptr->virt, buf_ptr->phys);
3456 kfree(buf_ptr);
3457 }
3458 lpfc_mbuf_free(phba, buf_ptr1->virt, buf_ptr1->phys);
3459 kfree(buf_ptr1);
3460 return 0;
3461}
3462
James Smarte59058c2008-08-24 21:49:00 -04003463/**
James Smart3621a712009-04-06 18:47:14 -04003464 * lpfc_els_free_bpl - Free lpfc dma buffer and data structure with bpl
James Smarte59058c2008-08-24 21:49:00 -04003465 * @phba: pointer to lpfc hba data structure.
3466 * @buf_ptr: pointer to the lpfc dma buffer data structure.
3467 *
3468 * This routine releases the lpfc Direct Memory Access (DMA) buffer
3469 * associated with a Buffer Pointer List (BPL) back to the lpfc DMA buffer
3470 * pool.
3471 *
3472 * Return code
3473 * 0 - Successfully released lpfc DMA buffer (currently, always return 0)
3474 **/
James Smart09372822008-01-11 01:52:54 -05003475static int
James Smart87af33f2007-10-27 13:37:43 -04003476lpfc_els_free_bpl(struct lpfc_hba *phba, struct lpfc_dmabuf *buf_ptr)
3477{
3478 lpfc_mbuf_free(phba, buf_ptr->virt, buf_ptr->phys);
3479 kfree(buf_ptr);
3480 return 0;
3481}
3482
James Smarte59058c2008-08-24 21:49:00 -04003483/**
James Smart3621a712009-04-06 18:47:14 -04003484 * lpfc_els_free_iocb - Free a command iocb and its associated resources
James Smarte59058c2008-08-24 21:49:00 -04003485 * @phba: pointer to lpfc hba data structure.
3486 * @elsiocb: pointer to lpfc els command iocb data structure.
3487 *
3488 * This routine frees a command IOCB and its associated resources. The
3489 * command IOCB data structure contains the reference to various associated
3490 * resources, these fields must be set to NULL if the associated reference
3491 * not present:
3492 * context1 - reference to ndlp
3493 * context2 - reference to cmd
3494 * context2->next - reference to rsp
3495 * context3 - reference to bpl
3496 *
3497 * It first properly decrements the reference count held on ndlp for the
3498 * IOCB completion callback function. If LPFC_DELAY_MEM_FREE flag is not
3499 * set, it invokes the lpfc_els_free_data() routine to release the Direct
3500 * Memory Access (DMA) buffers associated with the IOCB. Otherwise, it
3501 * adds the DMA buffer the @phba data structure for the delayed release.
3502 * If reference to the Buffer Pointer List (BPL) is present, the
3503 * lpfc_els_free_bpl() routine is invoked to release the DMA memory
3504 * associated with BPL. Finally, the lpfc_sli_release_iocbq() routine is
3505 * invoked to release the IOCB data structure back to @phba IOCBQ list.
3506 *
3507 * Return code
3508 * 0 - Success (currently, always return 0)
3509 **/
James Smart87af33f2007-10-27 13:37:43 -04003510int
James Smart329f9bc2007-04-25 09:53:01 -04003511lpfc_els_free_iocb(struct lpfc_hba *phba, struct lpfc_iocbq *elsiocb)
dea31012005-04-17 16:05:31 -05003512{
3513 struct lpfc_dmabuf *buf_ptr, *buf_ptr1;
James Smarta8adb832007-10-27 13:37:53 -04003514 struct lpfc_nodelist *ndlp;
dea31012005-04-17 16:05:31 -05003515
James Smarta8adb832007-10-27 13:37:53 -04003516 ndlp = (struct lpfc_nodelist *)elsiocb->context1;
3517 if (ndlp) {
3518 if (ndlp->nlp_flag & NLP_DEFER_RM) {
3519 lpfc_nlp_put(ndlp);
3520
3521 /* If the ndlp is not being used by another discovery
3522 * thread, free it.
3523 */
3524 if (!lpfc_nlp_not_used(ndlp)) {
3525 /* If ndlp is being used by another discovery
3526 * thread, just clear NLP_DEFER_RM
3527 */
3528 ndlp->nlp_flag &= ~NLP_DEFER_RM;
3529 }
3530 }
3531 else
3532 lpfc_nlp_put(ndlp);
James Smart329f9bc2007-04-25 09:53:01 -04003533 elsiocb->context1 = NULL;
3534 }
dea31012005-04-17 16:05:31 -05003535 /* context2 = cmd, context2->next = rsp, context3 = bpl */
3536 if (elsiocb->context2) {
James Smart0ff10d42008-01-11 01:52:36 -05003537 if (elsiocb->iocb_flag & LPFC_DELAY_MEM_FREE) {
3538 /* Firmware could still be in progress of DMAing
3539 * payload, so don't free data buffer till after
3540 * a hbeat.
3541 */
3542 elsiocb->iocb_flag &= ~LPFC_DELAY_MEM_FREE;
3543 buf_ptr = elsiocb->context2;
3544 elsiocb->context2 = NULL;
3545 if (buf_ptr) {
3546 buf_ptr1 = NULL;
3547 spin_lock_irq(&phba->hbalock);
3548 if (!list_empty(&buf_ptr->list)) {
3549 list_remove_head(&buf_ptr->list,
3550 buf_ptr1, struct lpfc_dmabuf,
3551 list);
3552 INIT_LIST_HEAD(&buf_ptr1->list);
3553 list_add_tail(&buf_ptr1->list,
3554 &phba->elsbuf);
3555 phba->elsbuf_cnt++;
3556 }
3557 INIT_LIST_HEAD(&buf_ptr->list);
3558 list_add_tail(&buf_ptr->list, &phba->elsbuf);
3559 phba->elsbuf_cnt++;
3560 spin_unlock_irq(&phba->hbalock);
3561 }
3562 } else {
3563 buf_ptr1 = (struct lpfc_dmabuf *) elsiocb->context2;
3564 lpfc_els_free_data(phba, buf_ptr1);
3565 }
dea31012005-04-17 16:05:31 -05003566 }
3567
3568 if (elsiocb->context3) {
3569 buf_ptr = (struct lpfc_dmabuf *) elsiocb->context3;
James Smart87af33f2007-10-27 13:37:43 -04003570 lpfc_els_free_bpl(phba, buf_ptr);
dea31012005-04-17 16:05:31 -05003571 }
James Bottomley604a3e32005-10-29 10:28:33 -05003572 lpfc_sli_release_iocbq(phba, elsiocb);
dea31012005-04-17 16:05:31 -05003573 return 0;
3574}
3575
James Smarte59058c2008-08-24 21:49:00 -04003576/**
James Smart3621a712009-04-06 18:47:14 -04003577 * lpfc_cmpl_els_logo_acc - Completion callback function to logo acc response
James Smarte59058c2008-08-24 21:49:00 -04003578 * @phba: pointer to lpfc hba data structure.
3579 * @cmdiocb: pointer to lpfc command iocb data structure.
3580 * @rspiocb: pointer to lpfc response iocb data structure.
3581 *
3582 * This routine is the completion callback function to the Logout (LOGO)
3583 * Accept (ACC) Response ELS command. This routine is invoked to indicate
3584 * the completion of the LOGO process. It invokes the lpfc_nlp_not_used() to
3585 * release the ndlp if it has the last reference remaining (reference count
3586 * is 1). If succeeded (meaning ndlp released), it sets the IOCB context1
3587 * field to NULL to inform the following lpfc_els_free_iocb() routine no
3588 * ndlp reference count needs to be decremented. Otherwise, the ndlp
3589 * reference use-count shall be decremented by the lpfc_els_free_iocb()
3590 * routine. Finally, the lpfc_els_free_iocb() is invoked to release the
3591 * IOCB data structure.
3592 **/
dea31012005-04-17 16:05:31 -05003593static void
James Smart2e0fef82007-06-17 19:56:36 -05003594lpfc_cmpl_els_logo_acc(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
3595 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05003596{
James Smart2e0fef82007-06-17 19:56:36 -05003597 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
3598 struct lpfc_vport *vport = cmdiocb->vport;
James Smart858c9f62007-06-17 19:56:39 -05003599 IOCB_t *irsp;
3600
3601 irsp = &rspiocb->iocb;
3602 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
3603 "ACC LOGO cmpl: status:x%x/x%x did:x%x",
3604 irsp->ulpStatus, irsp->un.ulpWord[4], ndlp->nlp_DID);
dea31012005-04-17 16:05:31 -05003605 /* ACC to LOGO completes to NPort <nlp_DID> */
James Smarte8b62012007-08-02 11:10:09 -04003606 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
3607 "0109 ACC to LOGO completes to NPort x%x "
3608 "Data: x%x x%x x%x\n",
3609 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
3610 ndlp->nlp_rpi);
James Smart87af33f2007-10-27 13:37:43 -04003611
3612 if (ndlp->nlp_state == NLP_STE_NPR_NODE) {
3613 /* NPort Recovery mode or node is just allocated */
3614 if (!lpfc_nlp_not_used(ndlp)) {
3615 /* If the ndlp is being used by another discovery
3616 * thread, just unregister the RPI.
3617 */
3618 lpfc_unreg_rpi(vport, ndlp);
James Smartfa4066b2008-01-11 01:53:27 -05003619 } else {
3620 /* Indicate the node has already released, should
3621 * not reference to it from within lpfc_els_free_iocb.
3622 */
3623 cmdiocb->context1 = NULL;
James Smart87af33f2007-10-27 13:37:43 -04003624 }
dea31012005-04-17 16:05:31 -05003625 }
James Smart73d91e52011-10-10 21:32:10 -04003626
3627 /*
3628 * The driver received a LOGO from the rport and has ACK'd it.
James Smartdf9e1b52011-12-13 13:22:17 -05003629 * At this point, the driver is done so release the IOCB
James Smart73d91e52011-10-10 21:32:10 -04003630 */
dea31012005-04-17 16:05:31 -05003631 lpfc_els_free_iocb(phba, cmdiocb);
James Smartdf9e1b52011-12-13 13:22:17 -05003632
3633 /*
3634 * Remove the ndlp reference if it's a fabric node that has
3635 * sent us an unsolicted LOGO.
3636 */
3637 if (ndlp->nlp_type & NLP_FABRIC)
3638 lpfc_nlp_put(ndlp);
3639
dea31012005-04-17 16:05:31 -05003640 return;
3641}
3642
James Smarte59058c2008-08-24 21:49:00 -04003643/**
James Smart3621a712009-04-06 18:47:14 -04003644 * lpfc_mbx_cmpl_dflt_rpi - Completion callbk func for unreg dflt rpi mbox cmd
James Smarte59058c2008-08-24 21:49:00 -04003645 * @phba: pointer to lpfc hba data structure.
3646 * @pmb: pointer to the driver internal queue element for mailbox command.
3647 *
3648 * This routine is the completion callback function for unregister default
3649 * RPI (Remote Port Index) mailbox command to the @phba. It simply releases
3650 * the associated lpfc Direct Memory Access (DMA) buffer back to the pool and
3651 * decrements the ndlp reference count held for this completion callback
3652 * function. After that, it invokes the lpfc_nlp_not_used() to check
3653 * whether there is only one reference left on the ndlp. If so, it will
3654 * perform one more decrement and trigger the release of the ndlp.
3655 **/
James Smart858c9f62007-06-17 19:56:39 -05003656void
3657lpfc_mbx_cmpl_dflt_rpi(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
3658{
3659 struct lpfc_dmabuf *mp = (struct lpfc_dmabuf *) (pmb->context1);
3660 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) pmb->context2;
3661
3662 pmb->context1 = NULL;
James Smartd439d282010-09-29 11:18:45 -04003663 pmb->context2 = NULL;
3664
James Smart858c9f62007-06-17 19:56:39 -05003665 lpfc_mbuf_free(phba, mp->virt, mp->phys);
3666 kfree(mp);
3667 mempool_free(pmb, phba->mbox_mem_pool);
James Smart086a3452012-08-14 14:25:21 -04003668 if (ndlp) {
3669 if (NLP_CHK_NODE_ACT(ndlp)) {
3670 lpfc_nlp_put(ndlp);
3671 /* This is the end of the default RPI cleanup logic for
3672 * this ndlp. If no other discovery threads are using
3673 * this ndlp, free all resources associated with it.
3674 */
3675 lpfc_nlp_not_used(ndlp);
3676 } else {
3677 lpfc_drop_node(ndlp->vport, ndlp);
3678 }
James Smarta8adb832007-10-27 13:37:53 -04003679 }
James Smart3772a992009-05-22 14:50:54 -04003680
James Smart858c9f62007-06-17 19:56:39 -05003681 return;
3682}
3683
James Smarte59058c2008-08-24 21:49:00 -04003684/**
James Smart3621a712009-04-06 18:47:14 -04003685 * lpfc_cmpl_els_rsp - Completion callback function for els response iocb cmd
James Smarte59058c2008-08-24 21:49:00 -04003686 * @phba: pointer to lpfc hba data structure.
3687 * @cmdiocb: pointer to lpfc command iocb data structure.
3688 * @rspiocb: pointer to lpfc response iocb data structure.
3689 *
3690 * This routine is the completion callback function for ELS Response IOCB
3691 * command. In normal case, this callback function just properly sets the
3692 * nlp_flag bitmap in the ndlp data structure, if the mbox command reference
3693 * field in the command IOCB is not NULL, the referred mailbox command will
3694 * be send out, and then invokes the lpfc_els_free_iocb() routine to release
3695 * the IOCB. Under error conditions, such as when a LS_RJT is returned or a
3696 * link down event occurred during the discovery, the lpfc_nlp_not_used()
3697 * routine shall be invoked trying to release the ndlp if no other threads
3698 * are currently referring it.
3699 **/
dea31012005-04-17 16:05:31 -05003700static void
James Smart858c9f62007-06-17 19:56:39 -05003701lpfc_cmpl_els_rsp(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
James Smart329f9bc2007-04-25 09:53:01 -04003702 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05003703{
James Smart2e0fef82007-06-17 19:56:36 -05003704 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
3705 struct lpfc_vport *vport = ndlp ? ndlp->vport : NULL;
3706 struct Scsi_Host *shost = vport ? lpfc_shost_from_vport(vport) : NULL;
James Smart87af33f2007-10-27 13:37:43 -04003707 IOCB_t *irsp;
3708 uint8_t *pcmd;
dea31012005-04-17 16:05:31 -05003709 LPFC_MBOXQ_t *mbox = NULL;
James Smart2e0fef82007-06-17 19:56:36 -05003710 struct lpfc_dmabuf *mp = NULL;
James Smart87af33f2007-10-27 13:37:43 -04003711 uint32_t ls_rjt = 0;
dea31012005-04-17 16:05:31 -05003712
James Smart33ccf8d2006-08-17 11:57:58 -04003713 irsp = &rspiocb->iocb;
3714
dea31012005-04-17 16:05:31 -05003715 if (cmdiocb->context_un.mbox)
3716 mbox = cmdiocb->context_un.mbox;
3717
James Smartfa4066b2008-01-11 01:53:27 -05003718 /* First determine if this is a LS_RJT cmpl. Note, this callback
3719 * function can have cmdiocb->contest1 (ndlp) field set to NULL.
3720 */
James Smart87af33f2007-10-27 13:37:43 -04003721 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) cmdiocb->context2)->virt);
James Smart58da1ff2008-04-07 10:15:56 -04003722 if (ndlp && NLP_CHK_NODE_ACT(ndlp) &&
3723 (*((uint32_t *) (pcmd)) == ELS_CMD_LS_RJT)) {
James Smartfa4066b2008-01-11 01:53:27 -05003724 /* A LS_RJT associated with Default RPI cleanup has its own
Daniel Mack3ad2f3f2010-02-03 08:01:28 +08003725 * separate code path.
James Smart87af33f2007-10-27 13:37:43 -04003726 */
3727 if (!(ndlp->nlp_flag & NLP_RM_DFLT_RPI))
3728 ls_rjt = 1;
3729 }
3730
dea31012005-04-17 16:05:31 -05003731 /* Check to see if link went down during discovery */
James Smart58da1ff2008-04-07 10:15:56 -04003732 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp) || lpfc_els_chk_latt(vport)) {
dea31012005-04-17 16:05:31 -05003733 if (mbox) {
James Smart14691152006-12-02 13:34:28 -05003734 mp = (struct lpfc_dmabuf *) mbox->context1;
3735 if (mp) {
3736 lpfc_mbuf_free(phba, mp->virt, mp->phys);
3737 kfree(mp);
3738 }
James Smart329f9bc2007-04-25 09:53:01 -04003739 mempool_free(mbox, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -05003740 }
James Smart58da1ff2008-04-07 10:15:56 -04003741 if (ndlp && NLP_CHK_NODE_ACT(ndlp) &&
3742 (ndlp->nlp_flag & NLP_RM_DFLT_RPI))
James Smartfa4066b2008-01-11 01:53:27 -05003743 if (lpfc_nlp_not_used(ndlp)) {
James Smart98c9ea52007-10-27 13:37:33 -04003744 ndlp = NULL;
James Smartfa4066b2008-01-11 01:53:27 -05003745 /* Indicate the node has already released,
3746 * should not reference to it from within
3747 * the routine lpfc_els_free_iocb.
3748 */
3749 cmdiocb->context1 = NULL;
3750 }
dea31012005-04-17 16:05:31 -05003751 goto out;
3752 }
3753
James Smart858c9f62007-06-17 19:56:39 -05003754 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
James Smart51ef4c22007-08-02 11:10:31 -04003755 "ELS rsp cmpl: status:x%x/x%x did:x%x",
James Smart858c9f62007-06-17 19:56:39 -05003756 irsp->ulpStatus, irsp->un.ulpWord[4],
James Smart51ef4c22007-08-02 11:10:31 -04003757 cmdiocb->iocb.un.elsreq64.remoteID);
dea31012005-04-17 16:05:31 -05003758 /* ELS response tag <ulpIoTag> completes */
James Smarte8b62012007-08-02 11:10:09 -04003759 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
3760 "0110 ELS response tag x%x completes "
3761 "Data: x%x x%x x%x x%x x%x x%x x%x\n",
3762 cmdiocb->iocb.ulpIoTag, rspiocb->iocb.ulpStatus,
3763 rspiocb->iocb.un.ulpWord[4], rspiocb->iocb.ulpTimeout,
3764 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
3765 ndlp->nlp_rpi);
dea31012005-04-17 16:05:31 -05003766 if (mbox) {
3767 if ((rspiocb->iocb.ulpStatus == 0)
3768 && (ndlp->nlp_flag & NLP_ACC_REGLOGIN)) {
James Smart2e0fef82007-06-17 19:56:36 -05003769 lpfc_unreg_rpi(vport, ndlp);
James Smarte47c9092008-02-08 18:49:26 -05003770 /* Increment reference count to ndlp to hold the
3771 * reference to ndlp for the callback function.
3772 */
James Smart329f9bc2007-04-25 09:53:01 -04003773 mbox->context2 = lpfc_nlp_get(ndlp);
James Smart2e0fef82007-06-17 19:56:36 -05003774 mbox->vport = vport;
James Smart858c9f62007-06-17 19:56:39 -05003775 if (ndlp->nlp_flag & NLP_RM_DFLT_RPI) {
3776 mbox->mbox_flag |= LPFC_MBX_IMED_UNREG;
3777 mbox->mbox_cmpl = lpfc_mbx_cmpl_dflt_rpi;
3778 }
3779 else {
3780 mbox->mbox_cmpl = lpfc_mbx_cmpl_reg_login;
3781 ndlp->nlp_prev_state = ndlp->nlp_state;
3782 lpfc_nlp_set_state(vport, ndlp,
James Smart2e0fef82007-06-17 19:56:36 -05003783 NLP_STE_REG_LOGIN_ISSUE);
James Smart858c9f62007-06-17 19:56:39 -05003784 }
James Smart0b727fe2007-10-27 13:37:25 -04003785 if (lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT)
James Smarte47c9092008-02-08 18:49:26 -05003786 != MBX_NOT_FINISHED)
dea31012005-04-17 16:05:31 -05003787 goto out;
James Smarte47c9092008-02-08 18:49:26 -05003788 else
3789 /* Decrement the ndlp reference count we
3790 * set for this failed mailbox command.
3791 */
3792 lpfc_nlp_put(ndlp);
James Smart98c9ea52007-10-27 13:37:33 -04003793
3794 /* ELS rsp: Cannot issue reg_login for <NPortid> */
3795 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
3796 "0138 ELS rsp: Cannot issue reg_login for x%x "
3797 "Data: x%x x%x x%x\n",
3798 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
3799 ndlp->nlp_rpi);
3800
James Smartfa4066b2008-01-11 01:53:27 -05003801 if (lpfc_nlp_not_used(ndlp)) {
James Smart98c9ea52007-10-27 13:37:33 -04003802 ndlp = NULL;
James Smartfa4066b2008-01-11 01:53:27 -05003803 /* Indicate node has already been released,
3804 * should not reference to it from within
3805 * the routine lpfc_els_free_iocb.
3806 */
3807 cmdiocb->context1 = NULL;
3808 }
dea31012005-04-17 16:05:31 -05003809 } else {
James Smart858c9f62007-06-17 19:56:39 -05003810 /* Do not drop node for lpfc_els_abort'ed ELS cmds */
3811 if (!lpfc_error_lost_link(irsp) &&
3812 ndlp->nlp_flag & NLP_ACC_REGLOGIN) {
James Smartfa4066b2008-01-11 01:53:27 -05003813 if (lpfc_nlp_not_used(ndlp)) {
James Smart98c9ea52007-10-27 13:37:33 -04003814 ndlp = NULL;
James Smartfa4066b2008-01-11 01:53:27 -05003815 /* Indicate node has already been
3816 * released, should not reference
3817 * to it from within the routine
3818 * lpfc_els_free_iocb.
3819 */
3820 cmdiocb->context1 = NULL;
3821 }
dea31012005-04-17 16:05:31 -05003822 }
3823 }
James Smart14691152006-12-02 13:34:28 -05003824 mp = (struct lpfc_dmabuf *) mbox->context1;
3825 if (mp) {
3826 lpfc_mbuf_free(phba, mp->virt, mp->phys);
3827 kfree(mp);
3828 }
3829 mempool_free(mbox, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -05003830 }
3831out:
James Smart58da1ff2008-04-07 10:15:56 -04003832 if (ndlp && NLP_CHK_NODE_ACT(ndlp)) {
James Smart2e0fef82007-06-17 19:56:36 -05003833 spin_lock_irq(shost->host_lock);
James Smart858c9f62007-06-17 19:56:39 -05003834 ndlp->nlp_flag &= ~(NLP_ACC_REGLOGIN | NLP_RM_DFLT_RPI);
James Smart2e0fef82007-06-17 19:56:36 -05003835 spin_unlock_irq(shost->host_lock);
James Smart87af33f2007-10-27 13:37:43 -04003836
3837 /* If the node is not being used by another discovery thread,
3838 * and we are sending a reject, we are done with it.
3839 * Release driver reference count here and free associated
3840 * resources.
3841 */
3842 if (ls_rjt)
James Smartfa4066b2008-01-11 01:53:27 -05003843 if (lpfc_nlp_not_used(ndlp))
3844 /* Indicate node has already been released,
3845 * should not reference to it from within
3846 * the routine lpfc_els_free_iocb.
3847 */
3848 cmdiocb->context1 = NULL;
dea31012005-04-17 16:05:31 -05003849 }
James Smart87af33f2007-10-27 13:37:43 -04003850
dea31012005-04-17 16:05:31 -05003851 lpfc_els_free_iocb(phba, cmdiocb);
3852 return;
3853}
3854
James Smarte59058c2008-08-24 21:49:00 -04003855/**
James Smart3621a712009-04-06 18:47:14 -04003856 * lpfc_els_rsp_acc - Prepare and issue an acc response iocb command
James Smarte59058c2008-08-24 21:49:00 -04003857 * @vport: pointer to a host virtual N_Port data structure.
3858 * @flag: the els command code to be accepted.
3859 * @oldiocb: pointer to the original lpfc command iocb data structure.
3860 * @ndlp: pointer to a node-list data structure.
3861 * @mbox: pointer to the driver internal queue element for mailbox command.
3862 *
3863 * This routine prepares and issues an Accept (ACC) response IOCB
3864 * command. It uses the @flag to properly set up the IOCB field for the
3865 * specific ACC response command to be issued and invokes the
3866 * lpfc_sli_issue_iocb() routine to send out ACC response IOCB. If a
3867 * @mbox pointer is passed in, it will be put into the context_un.mbox
3868 * field of the IOCB for the completion callback function to issue the
3869 * mailbox command to the HBA later when callback is invoked.
3870 *
3871 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
3872 * will be incremented by 1 for holding the ndlp and the reference to ndlp
3873 * will be stored into the context1 field of the IOCB for the completion
3874 * callback function to the corresponding response ELS IOCB command.
3875 *
3876 * Return code
3877 * 0 - Successfully issued acc response
3878 * 1 - Failed to issue acc response
3879 **/
dea31012005-04-17 16:05:31 -05003880int
James Smart2e0fef82007-06-17 19:56:36 -05003881lpfc_els_rsp_acc(struct lpfc_vport *vport, uint32_t flag,
3882 struct lpfc_iocbq *oldiocb, struct lpfc_nodelist *ndlp,
James Smart51ef4c22007-08-02 11:10:31 -04003883 LPFC_MBOXQ_t *mbox)
dea31012005-04-17 16:05:31 -05003884{
James Smart2e0fef82007-06-17 19:56:36 -05003885 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
3886 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05003887 IOCB_t *icmd;
3888 IOCB_t *oldcmd;
3889 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05003890 struct lpfc_sli *psli;
3891 uint8_t *pcmd;
3892 uint16_t cmdsize;
3893 int rc;
James Smart82d9a2a2006-04-15 11:53:05 -04003894 ELS_PKT *els_pkt_ptr;
dea31012005-04-17 16:05:31 -05003895
3896 psli = &phba->sli;
dea31012005-04-17 16:05:31 -05003897 oldcmd = &oldiocb->iocb;
3898
3899 switch (flag) {
3900 case ELS_CMD_ACC:
James Smart92d7f7b2007-06-17 19:56:38 -05003901 cmdsize = sizeof(uint32_t);
James Smart2e0fef82007-06-17 19:56:36 -05003902 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry,
3903 ndlp, ndlp->nlp_DID, ELS_CMD_ACC);
James Smart488d1462006-03-07 15:02:37 -05003904 if (!elsiocb) {
James Smart2e0fef82007-06-17 19:56:36 -05003905 spin_lock_irq(shost->host_lock);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003906 ndlp->nlp_flag &= ~NLP_LOGO_ACC;
James Smart2e0fef82007-06-17 19:56:36 -05003907 spin_unlock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003908 return 1;
dea31012005-04-17 16:05:31 -05003909 }
James Smart2e0fef82007-06-17 19:56:36 -05003910
dea31012005-04-17 16:05:31 -05003911 icmd = &elsiocb->iocb;
James Smart7851fe22011-07-22 18:36:52 -04003912 icmd->ulpContext = oldcmd->ulpContext; /* Xri / rx_id */
3913 icmd->unsli3.rcvsli3.ox_id = oldcmd->unsli3.rcvsli3.ox_id;
dea31012005-04-17 16:05:31 -05003914 pcmd = (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
3915 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
James Smart92d7f7b2007-06-17 19:56:38 -05003916 pcmd += sizeof(uint32_t);
James Smart858c9f62007-06-17 19:56:39 -05003917
3918 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
3919 "Issue ACC: did:x%x flg:x%x",
3920 ndlp->nlp_DID, ndlp->nlp_flag, 0);
dea31012005-04-17 16:05:31 -05003921 break;
3922 case ELS_CMD_PLOGI:
James Smart92d7f7b2007-06-17 19:56:38 -05003923 cmdsize = (sizeof(struct serv_parm) + sizeof(uint32_t));
James Smart2e0fef82007-06-17 19:56:36 -05003924 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry,
3925 ndlp, ndlp->nlp_DID, ELS_CMD_ACC);
James Smart488d1462006-03-07 15:02:37 -05003926 if (!elsiocb)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003927 return 1;
James Smart488d1462006-03-07 15:02:37 -05003928
dea31012005-04-17 16:05:31 -05003929 icmd = &elsiocb->iocb;
James Smart7851fe22011-07-22 18:36:52 -04003930 icmd->ulpContext = oldcmd->ulpContext; /* Xri / rx_id */
3931 icmd->unsli3.rcvsli3.ox_id = oldcmd->unsli3.rcvsli3.ox_id;
dea31012005-04-17 16:05:31 -05003932 pcmd = (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
3933
3934 if (mbox)
3935 elsiocb->context_un.mbox = mbox;
3936
3937 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
James Smart92d7f7b2007-06-17 19:56:38 -05003938 pcmd += sizeof(uint32_t);
3939 memcpy(pcmd, &vport->fc_sparam, sizeof(struct serv_parm));
James Smart858c9f62007-06-17 19:56:39 -05003940
3941 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
3942 "Issue ACC PLOGI: did:x%x flg:x%x",
3943 ndlp->nlp_DID, ndlp->nlp_flag, 0);
dea31012005-04-17 16:05:31 -05003944 break;
James Smart82d9a2a2006-04-15 11:53:05 -04003945 case ELS_CMD_PRLO:
James Smart92d7f7b2007-06-17 19:56:38 -05003946 cmdsize = sizeof(uint32_t) + sizeof(PRLO);
James Smart2e0fef82007-06-17 19:56:36 -05003947 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry,
James Smart82d9a2a2006-04-15 11:53:05 -04003948 ndlp, ndlp->nlp_DID, ELS_CMD_PRLO);
3949 if (!elsiocb)
3950 return 1;
3951
3952 icmd = &elsiocb->iocb;
James Smart7851fe22011-07-22 18:36:52 -04003953 icmd->ulpContext = oldcmd->ulpContext; /* Xri / rx_id */
3954 icmd->unsli3.rcvsli3.ox_id = oldcmd->unsli3.rcvsli3.ox_id;
James Smart82d9a2a2006-04-15 11:53:05 -04003955 pcmd = (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
3956
3957 memcpy(pcmd, ((struct lpfc_dmabuf *) oldiocb->context2)->virt,
James Smart92d7f7b2007-06-17 19:56:38 -05003958 sizeof(uint32_t) + sizeof(PRLO));
James Smart82d9a2a2006-04-15 11:53:05 -04003959 *((uint32_t *) (pcmd)) = ELS_CMD_PRLO_ACC;
3960 els_pkt_ptr = (ELS_PKT *) pcmd;
3961 els_pkt_ptr->un.prlo.acceptRspCode = PRLO_REQ_EXECUTED;
James Smart858c9f62007-06-17 19:56:39 -05003962
3963 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
3964 "Issue ACC PRLO: did:x%x flg:x%x",
3965 ndlp->nlp_DID, ndlp->nlp_flag, 0);
James Smart82d9a2a2006-04-15 11:53:05 -04003966 break;
dea31012005-04-17 16:05:31 -05003967 default:
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003968 return 1;
dea31012005-04-17 16:05:31 -05003969 }
dea31012005-04-17 16:05:31 -05003970 /* Xmit ELS ACC response tag <ulpIoTag> */
James Smarte8b62012007-08-02 11:10:09 -04003971 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
3972 "0128 Xmit ELS ACC response tag x%x, XRI: x%x, "
James Smarte6446432012-05-09 21:16:42 -04003973 "DID: x%x, nlp_flag: x%x nlp_state: x%x RPI: x%x "
3974 "fc_flag x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04003975 elsiocb->iotag, elsiocb->iocb.ulpContext,
3976 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
James Smarte6446432012-05-09 21:16:42 -04003977 ndlp->nlp_rpi, vport->fc_flag);
dea31012005-04-17 16:05:31 -05003978 if (ndlp->nlp_flag & NLP_LOGO_ACC) {
James Smart2e0fef82007-06-17 19:56:36 -05003979 spin_lock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003980 ndlp->nlp_flag &= ~NLP_LOGO_ACC;
James Smart2e0fef82007-06-17 19:56:36 -05003981 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05003982 elsiocb->iocb_cmpl = lpfc_cmpl_els_logo_acc;
3983 } else {
James Smart858c9f62007-06-17 19:56:39 -05003984 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
dea31012005-04-17 16:05:31 -05003985 }
3986
3987 phba->fc_stat.elsXmitACC++;
James Smart3772a992009-05-22 14:50:54 -04003988 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
dea31012005-04-17 16:05:31 -05003989 if (rc == IOCB_ERROR) {
3990 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003991 return 1;
dea31012005-04-17 16:05:31 -05003992 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003993 return 0;
dea31012005-04-17 16:05:31 -05003994}
3995
James Smarte59058c2008-08-24 21:49:00 -04003996/**
James Smart3621a712009-04-06 18:47:14 -04003997 * lpfc_els_rsp_reject - Propare and issue a rjt response iocb command
James Smarte59058c2008-08-24 21:49:00 -04003998 * @vport: pointer to a virtual N_Port data structure.
3999 * @rejectError:
4000 * @oldiocb: pointer to the original lpfc command iocb data structure.
4001 * @ndlp: pointer to a node-list data structure.
4002 * @mbox: pointer to the driver internal queue element for mailbox command.
4003 *
4004 * This routine prepares and issue an Reject (RJT) response IOCB
4005 * command. If a @mbox pointer is passed in, it will be put into the
4006 * context_un.mbox field of the IOCB for the completion callback function
4007 * to issue to the HBA later.
4008 *
4009 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
4010 * will be incremented by 1 for holding the ndlp and the reference to ndlp
4011 * will be stored into the context1 field of the IOCB for the completion
4012 * callback function to the reject response ELS IOCB command.
4013 *
4014 * Return code
4015 * 0 - Successfully issued reject response
4016 * 1 - Failed to issue reject response
4017 **/
dea31012005-04-17 16:05:31 -05004018int
James Smart2e0fef82007-06-17 19:56:36 -05004019lpfc_els_rsp_reject(struct lpfc_vport *vport, uint32_t rejectError,
James Smart858c9f62007-06-17 19:56:39 -05004020 struct lpfc_iocbq *oldiocb, struct lpfc_nodelist *ndlp,
4021 LPFC_MBOXQ_t *mbox)
dea31012005-04-17 16:05:31 -05004022{
James Smart2e0fef82007-06-17 19:56:36 -05004023 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05004024 IOCB_t *icmd;
4025 IOCB_t *oldcmd;
4026 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05004027 struct lpfc_sli *psli;
4028 uint8_t *pcmd;
4029 uint16_t cmdsize;
4030 int rc;
4031
4032 psli = &phba->sli;
James Smart92d7f7b2007-06-17 19:56:38 -05004033 cmdsize = 2 * sizeof(uint32_t);
James Smart2e0fef82007-06-17 19:56:36 -05004034 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry, ndlp,
4035 ndlp->nlp_DID, ELS_CMD_LS_RJT);
James Smart488d1462006-03-07 15:02:37 -05004036 if (!elsiocb)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004037 return 1;
dea31012005-04-17 16:05:31 -05004038
4039 icmd = &elsiocb->iocb;
4040 oldcmd = &oldiocb->iocb;
James Smart7851fe22011-07-22 18:36:52 -04004041 icmd->ulpContext = oldcmd->ulpContext; /* Xri / rx_id */
4042 icmd->unsli3.rcvsli3.ox_id = oldcmd->unsli3.rcvsli3.ox_id;
dea31012005-04-17 16:05:31 -05004043 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
4044
4045 *((uint32_t *) (pcmd)) = ELS_CMD_LS_RJT;
James Smart92d7f7b2007-06-17 19:56:38 -05004046 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05004047 *((uint32_t *) (pcmd)) = rejectError;
4048
James Smart51ef4c22007-08-02 11:10:31 -04004049 if (mbox)
James Smart858c9f62007-06-17 19:56:39 -05004050 elsiocb->context_un.mbox = mbox;
James Smart858c9f62007-06-17 19:56:39 -05004051
dea31012005-04-17 16:05:31 -05004052 /* Xmit ELS RJT <err> response tag <ulpIoTag> */
James Smarte8b62012007-08-02 11:10:09 -04004053 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
4054 "0129 Xmit ELS RJT x%x response tag x%x "
4055 "xri x%x, did x%x, nlp_flag x%x, nlp_state x%x, "
4056 "rpi x%x\n",
4057 rejectError, elsiocb->iotag,
4058 elsiocb->iocb.ulpContext, ndlp->nlp_DID,
4059 ndlp->nlp_flag, ndlp->nlp_state, ndlp->nlp_rpi);
James Smart858c9f62007-06-17 19:56:39 -05004060 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
4061 "Issue LS_RJT: did:x%x flg:x%x err:x%x",
4062 ndlp->nlp_DID, ndlp->nlp_flag, rejectError);
4063
dea31012005-04-17 16:05:31 -05004064 phba->fc_stat.elsXmitLSRJT++;
James Smart858c9f62007-06-17 19:56:39 -05004065 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
James Smart3772a992009-05-22 14:50:54 -04004066 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
James Smart51ef4c22007-08-02 11:10:31 -04004067
dea31012005-04-17 16:05:31 -05004068 if (rc == IOCB_ERROR) {
4069 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004070 return 1;
dea31012005-04-17 16:05:31 -05004071 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004072 return 0;
dea31012005-04-17 16:05:31 -05004073}
4074
James Smarte59058c2008-08-24 21:49:00 -04004075/**
James Smart3621a712009-04-06 18:47:14 -04004076 * lpfc_els_rsp_adisc_acc - Prepare and issue acc response to adisc iocb cmd
James Smarte59058c2008-08-24 21:49:00 -04004077 * @vport: pointer to a virtual N_Port data structure.
4078 * @oldiocb: pointer to the original lpfc command iocb data structure.
4079 * @ndlp: pointer to a node-list data structure.
4080 *
4081 * This routine prepares and issues an Accept (ACC) response to Address
4082 * Discover (ADISC) ELS command. It simply prepares the payload of the IOCB
4083 * and invokes the lpfc_sli_issue_iocb() routine to send out the command.
4084 *
4085 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
4086 * will be incremented by 1 for holding the ndlp and the reference to ndlp
4087 * will be stored into the context1 field of the IOCB for the completion
4088 * callback function to the ADISC Accept response ELS IOCB command.
4089 *
4090 * Return code
4091 * 0 - Successfully issued acc adisc response
4092 * 1 - Failed to issue adisc acc response
4093 **/
dea31012005-04-17 16:05:31 -05004094int
James Smart2e0fef82007-06-17 19:56:36 -05004095lpfc_els_rsp_adisc_acc(struct lpfc_vport *vport, struct lpfc_iocbq *oldiocb,
4096 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05004097{
James Smart2e0fef82007-06-17 19:56:36 -05004098 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05004099 ADISC *ap;
James Smart2e0fef82007-06-17 19:56:36 -05004100 IOCB_t *icmd, *oldcmd;
dea31012005-04-17 16:05:31 -05004101 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05004102 uint8_t *pcmd;
4103 uint16_t cmdsize;
4104 int rc;
4105
James Smart92d7f7b2007-06-17 19:56:38 -05004106 cmdsize = sizeof(uint32_t) + sizeof(ADISC);
James Smart2e0fef82007-06-17 19:56:36 -05004107 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry, ndlp,
4108 ndlp->nlp_DID, ELS_CMD_ACC);
James Smart488d1462006-03-07 15:02:37 -05004109 if (!elsiocb)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004110 return 1;
dea31012005-04-17 16:05:31 -05004111
dea31012005-04-17 16:05:31 -05004112 icmd = &elsiocb->iocb;
4113 oldcmd = &oldiocb->iocb;
James Smart7851fe22011-07-22 18:36:52 -04004114 icmd->ulpContext = oldcmd->ulpContext; /* Xri / rx_id */
4115 icmd->unsli3.rcvsli3.ox_id = oldcmd->unsli3.rcvsli3.ox_id;
James Smart5b8bd0c2007-04-25 09:52:49 -04004116
4117 /* Xmit ADISC ACC response tag <ulpIoTag> */
James Smarte8b62012007-08-02 11:10:09 -04004118 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
4119 "0130 Xmit ADISC ACC response iotag x%x xri: "
4120 "x%x, did x%x, nlp_flag x%x, nlp_state x%x rpi x%x\n",
4121 elsiocb->iotag, elsiocb->iocb.ulpContext,
4122 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
4123 ndlp->nlp_rpi);
dea31012005-04-17 16:05:31 -05004124 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
4125
4126 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
James Smart92d7f7b2007-06-17 19:56:38 -05004127 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05004128
4129 ap = (ADISC *) (pcmd);
4130 ap->hardAL_PA = phba->fc_pref_ALPA;
James Smart92d7f7b2007-06-17 19:56:38 -05004131 memcpy(&ap->portName, &vport->fc_portname, sizeof(struct lpfc_name));
4132 memcpy(&ap->nodeName, &vport->fc_nodename, sizeof(struct lpfc_name));
James Smart2e0fef82007-06-17 19:56:36 -05004133 ap->DID = be32_to_cpu(vport->fc_myDID);
dea31012005-04-17 16:05:31 -05004134
James Smart858c9f62007-06-17 19:56:39 -05004135 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
4136 "Issue ACC ADISC: did:x%x flg:x%x",
4137 ndlp->nlp_DID, ndlp->nlp_flag, 0);
4138
dea31012005-04-17 16:05:31 -05004139 phba->fc_stat.elsXmitACC++;
James Smart858c9f62007-06-17 19:56:39 -05004140 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
James Smart3772a992009-05-22 14:50:54 -04004141 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
dea31012005-04-17 16:05:31 -05004142 if (rc == IOCB_ERROR) {
4143 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004144 return 1;
dea31012005-04-17 16:05:31 -05004145 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004146 return 0;
dea31012005-04-17 16:05:31 -05004147}
4148
James Smarte59058c2008-08-24 21:49:00 -04004149/**
James Smart3621a712009-04-06 18:47:14 -04004150 * lpfc_els_rsp_prli_acc - Prepare and issue acc response to prli iocb cmd
James Smarte59058c2008-08-24 21:49:00 -04004151 * @vport: pointer to a virtual N_Port data structure.
4152 * @oldiocb: pointer to the original lpfc command iocb data structure.
4153 * @ndlp: pointer to a node-list data structure.
4154 *
4155 * This routine prepares and issues an Accept (ACC) response to Process
4156 * Login (PRLI) ELS command. It simply prepares the payload of the IOCB
4157 * and invokes the lpfc_sli_issue_iocb() routine to send out the command.
4158 *
4159 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
4160 * will be incremented by 1 for holding the ndlp and the reference to ndlp
4161 * will be stored into the context1 field of the IOCB for the completion
4162 * callback function to the PRLI Accept response ELS IOCB command.
4163 *
4164 * Return code
4165 * 0 - Successfully issued acc prli response
4166 * 1 - Failed to issue acc prli response
4167 **/
dea31012005-04-17 16:05:31 -05004168int
James Smart2e0fef82007-06-17 19:56:36 -05004169lpfc_els_rsp_prli_acc(struct lpfc_vport *vport, struct lpfc_iocbq *oldiocb,
James Smart5b8bd0c2007-04-25 09:52:49 -04004170 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05004171{
James Smart2e0fef82007-06-17 19:56:36 -05004172 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05004173 PRLI *npr;
4174 lpfc_vpd_t *vpd;
4175 IOCB_t *icmd;
4176 IOCB_t *oldcmd;
4177 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05004178 struct lpfc_sli *psli;
4179 uint8_t *pcmd;
4180 uint16_t cmdsize;
4181 int rc;
4182
4183 psli = &phba->sli;
dea31012005-04-17 16:05:31 -05004184
James Smart92d7f7b2007-06-17 19:56:38 -05004185 cmdsize = sizeof(uint32_t) + sizeof(PRLI);
James Smart2e0fef82007-06-17 19:56:36 -05004186 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry, ndlp,
James Smart92d7f7b2007-06-17 19:56:38 -05004187 ndlp->nlp_DID, (ELS_CMD_ACC | (ELS_CMD_PRLI & ~ELS_RSP_MASK)));
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004188 if (!elsiocb)
4189 return 1;
dea31012005-04-17 16:05:31 -05004190
dea31012005-04-17 16:05:31 -05004191 icmd = &elsiocb->iocb;
4192 oldcmd = &oldiocb->iocb;
James Smart7851fe22011-07-22 18:36:52 -04004193 icmd->ulpContext = oldcmd->ulpContext; /* Xri / rx_id */
4194 icmd->unsli3.rcvsli3.ox_id = oldcmd->unsli3.rcvsli3.ox_id;
4195
James Smart5b8bd0c2007-04-25 09:52:49 -04004196 /* Xmit PRLI ACC response tag <ulpIoTag> */
James Smarte8b62012007-08-02 11:10:09 -04004197 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
4198 "0131 Xmit PRLI ACC response tag x%x xri x%x, "
4199 "did x%x, nlp_flag x%x, nlp_state x%x, rpi x%x\n",
4200 elsiocb->iotag, elsiocb->iocb.ulpContext,
4201 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
4202 ndlp->nlp_rpi);
dea31012005-04-17 16:05:31 -05004203 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
4204
4205 *((uint32_t *) (pcmd)) = (ELS_CMD_ACC | (ELS_CMD_PRLI & ~ELS_RSP_MASK));
James Smart92d7f7b2007-06-17 19:56:38 -05004206 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05004207
4208 /* For PRLI, remainder of payload is PRLI parameter page */
James Smart92d7f7b2007-06-17 19:56:38 -05004209 memset(pcmd, 0, sizeof(PRLI));
dea31012005-04-17 16:05:31 -05004210
4211 npr = (PRLI *) pcmd;
4212 vpd = &phba->vpd;
4213 /*
James Smart0d2b6b82008-06-14 22:52:47 -04004214 * If the remote port is a target and our firmware version is 3.20 or
4215 * later, set the following bits for FC-TAPE support.
dea31012005-04-17 16:05:31 -05004216 */
James Smart0d2b6b82008-06-14 22:52:47 -04004217 if ((ndlp->nlp_type & NLP_FCP_TARGET) &&
4218 (vpd->rev.feaLevelHigh >= 0x02)) {
dea31012005-04-17 16:05:31 -05004219 npr->ConfmComplAllowed = 1;
4220 npr->Retry = 1;
4221 npr->TaskRetryIdReq = 1;
4222 }
4223
4224 npr->acceptRspCode = PRLI_REQ_EXECUTED;
4225 npr->estabImagePair = 1;
4226 npr->readXferRdyDis = 1;
4227 npr->ConfmComplAllowed = 1;
4228
4229 npr->prliType = PRLI_FCP_TYPE;
4230 npr->initiatorFunc = 1;
4231
James Smart858c9f62007-06-17 19:56:39 -05004232 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
4233 "Issue ACC PRLI: did:x%x flg:x%x",
4234 ndlp->nlp_DID, ndlp->nlp_flag, 0);
4235
dea31012005-04-17 16:05:31 -05004236 phba->fc_stat.elsXmitACC++;
James Smart858c9f62007-06-17 19:56:39 -05004237 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
dea31012005-04-17 16:05:31 -05004238
James Smart3772a992009-05-22 14:50:54 -04004239 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
dea31012005-04-17 16:05:31 -05004240 if (rc == IOCB_ERROR) {
4241 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004242 return 1;
dea31012005-04-17 16:05:31 -05004243 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004244 return 0;
dea31012005-04-17 16:05:31 -05004245}
4246
James Smarte59058c2008-08-24 21:49:00 -04004247/**
James Smart3621a712009-04-06 18:47:14 -04004248 * lpfc_els_rsp_rnid_acc - Issue rnid acc response iocb command
James Smarte59058c2008-08-24 21:49:00 -04004249 * @vport: pointer to a virtual N_Port data structure.
4250 * @format: rnid command format.
4251 * @oldiocb: pointer to the original lpfc command iocb data structure.
4252 * @ndlp: pointer to a node-list data structure.
4253 *
4254 * This routine issues a Request Node Identification Data (RNID) Accept
4255 * (ACC) response. It constructs the RNID ACC response command according to
4256 * the proper @format and then calls the lpfc_sli_issue_iocb() routine to
4257 * issue the response. Note that this command does not need to hold the ndlp
4258 * reference count for the callback. So, the ndlp reference count taken by
4259 * the lpfc_prep_els_iocb() routine is put back and the context1 field of
4260 * IOCB is set to NULL to indicate to the lpfc_els_free_iocb() routine that
4261 * there is no ndlp reference available.
4262 *
4263 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
4264 * will be incremented by 1 for holding the ndlp and the reference to ndlp
4265 * will be stored into the context1 field of the IOCB for the completion
4266 * callback function. However, for the RNID Accept Response ELS command,
4267 * this is undone later by this routine after the IOCB is allocated.
4268 *
4269 * Return code
4270 * 0 - Successfully issued acc rnid response
4271 * 1 - Failed to issue acc rnid response
4272 **/
dea31012005-04-17 16:05:31 -05004273static int
James Smart2e0fef82007-06-17 19:56:36 -05004274lpfc_els_rsp_rnid_acc(struct lpfc_vport *vport, uint8_t format,
James Smart329f9bc2007-04-25 09:53:01 -04004275 struct lpfc_iocbq *oldiocb, struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05004276{
James Smart2e0fef82007-06-17 19:56:36 -05004277 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05004278 RNID *rn;
James Smart2e0fef82007-06-17 19:56:36 -05004279 IOCB_t *icmd, *oldcmd;
dea31012005-04-17 16:05:31 -05004280 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05004281 struct lpfc_sli *psli;
4282 uint8_t *pcmd;
4283 uint16_t cmdsize;
4284 int rc;
4285
4286 psli = &phba->sli;
James Smart92d7f7b2007-06-17 19:56:38 -05004287 cmdsize = sizeof(uint32_t) + sizeof(uint32_t)
4288 + (2 * sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -05004289 if (format)
James Smart92d7f7b2007-06-17 19:56:38 -05004290 cmdsize += sizeof(RNID_TOP_DISC);
dea31012005-04-17 16:05:31 -05004291
James Smart2e0fef82007-06-17 19:56:36 -05004292 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry, ndlp,
4293 ndlp->nlp_DID, ELS_CMD_ACC);
James Smart488d1462006-03-07 15:02:37 -05004294 if (!elsiocb)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004295 return 1;
dea31012005-04-17 16:05:31 -05004296
dea31012005-04-17 16:05:31 -05004297 icmd = &elsiocb->iocb;
4298 oldcmd = &oldiocb->iocb;
James Smart7851fe22011-07-22 18:36:52 -04004299 icmd->ulpContext = oldcmd->ulpContext; /* Xri / rx_id */
4300 icmd->unsli3.rcvsli3.ox_id = oldcmd->unsli3.rcvsli3.ox_id;
4301
James Smart5b8bd0c2007-04-25 09:52:49 -04004302 /* Xmit RNID ACC response tag <ulpIoTag> */
James Smarte8b62012007-08-02 11:10:09 -04004303 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
4304 "0132 Xmit RNID ACC response tag x%x xri x%x\n",
4305 elsiocb->iotag, elsiocb->iocb.ulpContext);
dea31012005-04-17 16:05:31 -05004306 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
dea31012005-04-17 16:05:31 -05004307 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
James Smart92d7f7b2007-06-17 19:56:38 -05004308 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05004309
James Smart92d7f7b2007-06-17 19:56:38 -05004310 memset(pcmd, 0, sizeof(RNID));
dea31012005-04-17 16:05:31 -05004311 rn = (RNID *) (pcmd);
4312 rn->Format = format;
James Smart92d7f7b2007-06-17 19:56:38 -05004313 rn->CommonLen = (2 * sizeof(struct lpfc_name));
4314 memcpy(&rn->portName, &vport->fc_portname, sizeof(struct lpfc_name));
4315 memcpy(&rn->nodeName, &vport->fc_nodename, sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -05004316 switch (format) {
4317 case 0:
4318 rn->SpecificLen = 0;
4319 break;
4320 case RNID_TOPOLOGY_DISC:
James Smart92d7f7b2007-06-17 19:56:38 -05004321 rn->SpecificLen = sizeof(RNID_TOP_DISC);
dea31012005-04-17 16:05:31 -05004322 memcpy(&rn->un.topologyDisc.portName,
James Smart92d7f7b2007-06-17 19:56:38 -05004323 &vport->fc_portname, sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -05004324 rn->un.topologyDisc.unitType = RNID_HBA;
4325 rn->un.topologyDisc.physPort = 0;
4326 rn->un.topologyDisc.attachedNodes = 0;
4327 break;
4328 default:
4329 rn->CommonLen = 0;
4330 rn->SpecificLen = 0;
4331 break;
4332 }
4333
James Smart858c9f62007-06-17 19:56:39 -05004334 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
4335 "Issue ACC RNID: did:x%x flg:x%x",
4336 ndlp->nlp_DID, ndlp->nlp_flag, 0);
4337
dea31012005-04-17 16:05:31 -05004338 phba->fc_stat.elsXmitACC++;
James Smart858c9f62007-06-17 19:56:39 -05004339 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
dea31012005-04-17 16:05:31 -05004340
James Smart3772a992009-05-22 14:50:54 -04004341 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
dea31012005-04-17 16:05:31 -05004342 if (rc == IOCB_ERROR) {
4343 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004344 return 1;
dea31012005-04-17 16:05:31 -05004345 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004346 return 0;
dea31012005-04-17 16:05:31 -05004347}
4348
James Smarte59058c2008-08-24 21:49:00 -04004349/**
James Smart19ca7602010-11-20 23:11:55 -05004350 * lpfc_els_clear_rrq - Clear the rq that this rrq describes.
4351 * @vport: pointer to a virtual N_Port data structure.
4352 * @iocb: pointer to the lpfc command iocb data structure.
4353 * @ndlp: pointer to a node-list data structure.
4354 *
4355 * Return
4356 **/
4357static void
4358lpfc_els_clear_rrq(struct lpfc_vport *vport,
4359 struct lpfc_iocbq *iocb, struct lpfc_nodelist *ndlp)
4360{
4361 struct lpfc_hba *phba = vport->phba;
4362 uint8_t *pcmd;
4363 struct RRQ *rrq;
4364 uint16_t rxid;
James Smart1151e3e2011-02-16 12:39:35 -05004365 uint16_t xri;
James Smart19ca7602010-11-20 23:11:55 -05004366 struct lpfc_node_rrq *prrq;
4367
4368
4369 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) iocb->context2)->virt);
4370 pcmd += sizeof(uint32_t);
4371 rrq = (struct RRQ *)pcmd;
James Smart1151e3e2011-02-16 12:39:35 -05004372 rrq->rrq_exchg = be32_to_cpu(rrq->rrq_exchg);
James Smart9589b062011-04-16 11:03:17 -04004373 rxid = bf_get(rrq_rxid, rrq);
James Smart19ca7602010-11-20 23:11:55 -05004374
4375 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
4376 "2883 Clear RRQ for SID:x%x OXID:x%x RXID:x%x"
4377 " x%x x%x\n",
James Smart1151e3e2011-02-16 12:39:35 -05004378 be32_to_cpu(bf_get(rrq_did, rrq)),
James Smart9589b062011-04-16 11:03:17 -04004379 bf_get(rrq_oxid, rrq),
James Smart19ca7602010-11-20 23:11:55 -05004380 rxid,
4381 iocb->iotag, iocb->iocb.ulpContext);
4382
4383 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
4384 "Clear RRQ: did:x%x flg:x%x exchg:x%.08x",
4385 ndlp->nlp_DID, ndlp->nlp_flag, rrq->rrq_exchg);
James Smart1151e3e2011-02-16 12:39:35 -05004386 if (vport->fc_myDID == be32_to_cpu(bf_get(rrq_did, rrq)))
James Smart9589b062011-04-16 11:03:17 -04004387 xri = bf_get(rrq_oxid, rrq);
James Smart1151e3e2011-02-16 12:39:35 -05004388 else
4389 xri = rxid;
4390 prrq = lpfc_get_active_rrq(vport, xri, ndlp->nlp_DID);
James Smart19ca7602010-11-20 23:11:55 -05004391 if (prrq)
James Smart1151e3e2011-02-16 12:39:35 -05004392 lpfc_clr_rrq_active(phba, xri, prrq);
James Smart19ca7602010-11-20 23:11:55 -05004393 return;
4394}
4395
4396/**
James Smart12265f62010-10-22 11:05:53 -04004397 * lpfc_els_rsp_echo_acc - Issue echo acc response
4398 * @vport: pointer to a virtual N_Port data structure.
4399 * @data: pointer to echo data to return in the accept.
4400 * @oldiocb: pointer to the original lpfc command iocb data structure.
4401 * @ndlp: pointer to a node-list data structure.
4402 *
4403 * Return code
4404 * 0 - Successfully issued acc echo response
4405 * 1 - Failed to issue acc echo response
4406 **/
4407static int
4408lpfc_els_rsp_echo_acc(struct lpfc_vport *vport, uint8_t *data,
4409 struct lpfc_iocbq *oldiocb, struct lpfc_nodelist *ndlp)
4410{
4411 struct lpfc_hba *phba = vport->phba;
4412 struct lpfc_iocbq *elsiocb;
4413 struct lpfc_sli *psli;
4414 uint8_t *pcmd;
4415 uint16_t cmdsize;
4416 int rc;
4417
4418 psli = &phba->sli;
4419 cmdsize = oldiocb->iocb.unsli3.rcvsli3.acc_len;
4420
James Smartbf086112011-08-21 21:48:13 -04004421 /* The accumulated length can exceed the BPL_SIZE. For
4422 * now, use this as the limit
4423 */
4424 if (cmdsize > LPFC_BPL_SIZE)
4425 cmdsize = LPFC_BPL_SIZE;
James Smart12265f62010-10-22 11:05:53 -04004426 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry, ndlp,
4427 ndlp->nlp_DID, ELS_CMD_ACC);
4428 if (!elsiocb)
4429 return 1;
4430
James Smart7851fe22011-07-22 18:36:52 -04004431 elsiocb->iocb.ulpContext = oldiocb->iocb.ulpContext; /* Xri / rx_id */
4432 elsiocb->iocb.unsli3.rcvsli3.ox_id = oldiocb->iocb.unsli3.rcvsli3.ox_id;
4433
James Smart12265f62010-10-22 11:05:53 -04004434 /* Xmit ECHO ACC response tag <ulpIoTag> */
4435 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
4436 "2876 Xmit ECHO ACC response tag x%x xri x%x\n",
4437 elsiocb->iotag, elsiocb->iocb.ulpContext);
4438 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
4439 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
4440 pcmd += sizeof(uint32_t);
4441 memcpy(pcmd, data, cmdsize - sizeof(uint32_t));
4442
4443 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
4444 "Issue ACC ECHO: did:x%x flg:x%x",
4445 ndlp->nlp_DID, ndlp->nlp_flag, 0);
4446
4447 phba->fc_stat.elsXmitACC++;
4448 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
James Smart12265f62010-10-22 11:05:53 -04004449
4450 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
4451 if (rc == IOCB_ERROR) {
4452 lpfc_els_free_iocb(phba, elsiocb);
4453 return 1;
4454 }
4455 return 0;
4456}
4457
4458/**
James Smart3621a712009-04-06 18:47:14 -04004459 * lpfc_els_disc_adisc - Issue remaining adisc iocbs to npr nodes of a vport
James Smarte59058c2008-08-24 21:49:00 -04004460 * @vport: pointer to a host virtual N_Port data structure.
4461 *
4462 * This routine issues Address Discover (ADISC) ELS commands to those
4463 * N_Ports which are in node port recovery state and ADISC has not been issued
4464 * for the @vport. Each time an ELS ADISC IOCB is issued by invoking the
4465 * lpfc_issue_els_adisc() routine, the per @vport number of discover count
4466 * (num_disc_nodes) shall be incremented. If the num_disc_nodes reaches a
4467 * pre-configured threshold (cfg_discovery_threads), the @vport fc_flag will
4468 * be marked with FC_NLP_MORE bit and the process of issuing remaining ADISC
4469 * IOCBs quit for later pick up. On the other hand, after walking through
4470 * all the ndlps with the @vport and there is none ADISC IOCB issued, the
4471 * @vport fc_flag shall be cleared with FC_NLP_MORE bit indicating there is
4472 * no more ADISC need to be sent.
4473 *
4474 * Return code
4475 * The number of N_Ports with adisc issued.
4476 **/
dea31012005-04-17 16:05:31 -05004477int
James Smart2e0fef82007-06-17 19:56:36 -05004478lpfc_els_disc_adisc(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05004479{
James Smart2e0fef82007-06-17 19:56:36 -05004480 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05004481 struct lpfc_nodelist *ndlp, *next_ndlp;
James Smart2e0fef82007-06-17 19:56:36 -05004482 int sentadisc = 0;
dea31012005-04-17 16:05:31 -05004483
James Smart685f0bf2007-04-25 09:53:08 -04004484 /* go thru NPR nodes and issue any remaining ELS ADISCs */
James Smart2e0fef82007-06-17 19:56:36 -05004485 list_for_each_entry_safe(ndlp, next_ndlp, &vport->fc_nodes, nlp_listp) {
James Smarte47c9092008-02-08 18:49:26 -05004486 if (!NLP_CHK_NODE_ACT(ndlp))
4487 continue;
James Smart685f0bf2007-04-25 09:53:08 -04004488 if (ndlp->nlp_state == NLP_STE_NPR_NODE &&
4489 (ndlp->nlp_flag & NLP_NPR_2B_DISC) != 0 &&
4490 (ndlp->nlp_flag & NLP_NPR_ADISC) != 0) {
James Smart2e0fef82007-06-17 19:56:36 -05004491 spin_lock_irq(shost->host_lock);
James Smart685f0bf2007-04-25 09:53:08 -04004492 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
James Smart2e0fef82007-06-17 19:56:36 -05004493 spin_unlock_irq(shost->host_lock);
James Smart685f0bf2007-04-25 09:53:08 -04004494 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05004495 lpfc_nlp_set_state(vport, ndlp, NLP_STE_ADISC_ISSUE);
4496 lpfc_issue_els_adisc(vport, ndlp, 0);
James Smart685f0bf2007-04-25 09:53:08 -04004497 sentadisc++;
James Smart2e0fef82007-06-17 19:56:36 -05004498 vport->num_disc_nodes++;
4499 if (vport->num_disc_nodes >=
James Smart3de2a652007-08-02 11:09:59 -04004500 vport->cfg_discovery_threads) {
James Smart2e0fef82007-06-17 19:56:36 -05004501 spin_lock_irq(shost->host_lock);
4502 vport->fc_flag |= FC_NLP_MORE;
4503 spin_unlock_irq(shost->host_lock);
James Smart685f0bf2007-04-25 09:53:08 -04004504 break;
dea31012005-04-17 16:05:31 -05004505 }
4506 }
4507 }
4508 if (sentadisc == 0) {
James Smart2e0fef82007-06-17 19:56:36 -05004509 spin_lock_irq(shost->host_lock);
4510 vport->fc_flag &= ~FC_NLP_MORE;
4511 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05004512 }
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004513 return sentadisc;
dea31012005-04-17 16:05:31 -05004514}
4515
James Smarte59058c2008-08-24 21:49:00 -04004516/**
James Smart3621a712009-04-06 18:47:14 -04004517 * lpfc_els_disc_plogi - Issue plogi for all npr nodes of a vport before adisc
James Smarte59058c2008-08-24 21:49:00 -04004518 * @vport: pointer to a host virtual N_Port data structure.
4519 *
4520 * This routine issues Port Login (PLOGI) ELS commands to all the N_Ports
4521 * which are in node port recovery state, with a @vport. Each time an ELS
4522 * ADISC PLOGI IOCB is issued by invoking the lpfc_issue_els_plogi() routine,
4523 * the per @vport number of discover count (num_disc_nodes) shall be
4524 * incremented. If the num_disc_nodes reaches a pre-configured threshold
4525 * (cfg_discovery_threads), the @vport fc_flag will be marked with FC_NLP_MORE
4526 * bit set and quit the process of issuing remaining ADISC PLOGIN IOCBs for
4527 * later pick up. On the other hand, after walking through all the ndlps with
4528 * the @vport and there is none ADISC PLOGI IOCB issued, the @vport fc_flag
4529 * shall be cleared with the FC_NLP_MORE bit indicating there is no more ADISC
4530 * PLOGI need to be sent.
4531 *
4532 * Return code
4533 * The number of N_Ports with plogi issued.
4534 **/
dea31012005-04-17 16:05:31 -05004535int
James Smart2e0fef82007-06-17 19:56:36 -05004536lpfc_els_disc_plogi(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05004537{
James Smart2e0fef82007-06-17 19:56:36 -05004538 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05004539 struct lpfc_nodelist *ndlp, *next_ndlp;
James Smart2e0fef82007-06-17 19:56:36 -05004540 int sentplogi = 0;
dea31012005-04-17 16:05:31 -05004541
James Smart2e0fef82007-06-17 19:56:36 -05004542 /* go thru NPR nodes and issue any remaining ELS PLOGIs */
4543 list_for_each_entry_safe(ndlp, next_ndlp, &vport->fc_nodes, nlp_listp) {
James Smarte47c9092008-02-08 18:49:26 -05004544 if (!NLP_CHK_NODE_ACT(ndlp))
4545 continue;
James Smart685f0bf2007-04-25 09:53:08 -04004546 if (ndlp->nlp_state == NLP_STE_NPR_NODE &&
4547 (ndlp->nlp_flag & NLP_NPR_2B_DISC) != 0 &&
4548 (ndlp->nlp_flag & NLP_DELAY_TMO) == 0 &&
4549 (ndlp->nlp_flag & NLP_NPR_ADISC) == 0) {
4550 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05004551 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
4552 lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0);
James Smart685f0bf2007-04-25 09:53:08 -04004553 sentplogi++;
James Smart2e0fef82007-06-17 19:56:36 -05004554 vport->num_disc_nodes++;
4555 if (vport->num_disc_nodes >=
James Smart3de2a652007-08-02 11:09:59 -04004556 vport->cfg_discovery_threads) {
James Smart2e0fef82007-06-17 19:56:36 -05004557 spin_lock_irq(shost->host_lock);
4558 vport->fc_flag |= FC_NLP_MORE;
4559 spin_unlock_irq(shost->host_lock);
James Smart685f0bf2007-04-25 09:53:08 -04004560 break;
dea31012005-04-17 16:05:31 -05004561 }
4562 }
4563 }
James Smart87af33f2007-10-27 13:37:43 -04004564 if (sentplogi) {
4565 lpfc_set_disctmo(vport);
4566 }
4567 else {
James Smart2e0fef82007-06-17 19:56:36 -05004568 spin_lock_irq(shost->host_lock);
4569 vport->fc_flag &= ~FC_NLP_MORE;
4570 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05004571 }
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004572 return sentplogi;
dea31012005-04-17 16:05:31 -05004573}
4574
James Smarte59058c2008-08-24 21:49:00 -04004575/**
James Smart3621a712009-04-06 18:47:14 -04004576 * lpfc_els_flush_rscn - Clean up any rscn activities with a vport
James Smarte59058c2008-08-24 21:49:00 -04004577 * @vport: pointer to a host virtual N_Port data structure.
4578 *
4579 * This routine cleans up any Registration State Change Notification
4580 * (RSCN) activity with a @vport. Note that the fc_rscn_flush flag of the
4581 * @vport together with the host_lock is used to prevent multiple thread
4582 * trying to access the RSCN array on a same @vport at the same time.
4583 **/
James Smart92d7f7b2007-06-17 19:56:38 -05004584void
James Smart2e0fef82007-06-17 19:56:36 -05004585lpfc_els_flush_rscn(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05004586{
James Smart2e0fef82007-06-17 19:56:36 -05004587 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
4588 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05004589 int i;
4590
James Smart7f5f3d02008-02-08 18:50:14 -05004591 spin_lock_irq(shost->host_lock);
4592 if (vport->fc_rscn_flush) {
4593 /* Another thread is walking fc_rscn_id_list on this vport */
4594 spin_unlock_irq(shost->host_lock);
4595 return;
4596 }
4597 /* Indicate we are walking lpfc_els_flush_rscn on this vport */
4598 vport->fc_rscn_flush = 1;
4599 spin_unlock_irq(shost->host_lock);
4600
James Smart2e0fef82007-06-17 19:56:36 -05004601 for (i = 0; i < vport->fc_rscn_id_cnt; i++) {
James Smart92d7f7b2007-06-17 19:56:38 -05004602 lpfc_in_buf_free(phba, vport->fc_rscn_id_list[i]);
James Smart2e0fef82007-06-17 19:56:36 -05004603 vport->fc_rscn_id_list[i] = NULL;
dea31012005-04-17 16:05:31 -05004604 }
James Smart2e0fef82007-06-17 19:56:36 -05004605 spin_lock_irq(shost->host_lock);
4606 vport->fc_rscn_id_cnt = 0;
4607 vport->fc_flag &= ~(FC_RSCN_MODE | FC_RSCN_DISCOVERY);
4608 spin_unlock_irq(shost->host_lock);
4609 lpfc_can_disctmo(vport);
James Smart7f5f3d02008-02-08 18:50:14 -05004610 /* Indicate we are done walking this fc_rscn_id_list */
4611 vport->fc_rscn_flush = 0;
dea31012005-04-17 16:05:31 -05004612}
4613
James Smarte59058c2008-08-24 21:49:00 -04004614/**
James Smart3621a712009-04-06 18:47:14 -04004615 * lpfc_rscn_payload_check - Check whether there is a pending rscn to a did
James Smarte59058c2008-08-24 21:49:00 -04004616 * @vport: pointer to a host virtual N_Port data structure.
4617 * @did: remote destination port identifier.
4618 *
4619 * This routine checks whether there is any pending Registration State
4620 * Configuration Notification (RSCN) to a @did on @vport.
4621 *
4622 * Return code
4623 * None zero - The @did matched with a pending rscn
4624 * 0 - not able to match @did with a pending rscn
4625 **/
dea31012005-04-17 16:05:31 -05004626int
James Smart2e0fef82007-06-17 19:56:36 -05004627lpfc_rscn_payload_check(struct lpfc_vport *vport, uint32_t did)
dea31012005-04-17 16:05:31 -05004628{
4629 D_ID ns_did;
4630 D_ID rscn_did;
dea31012005-04-17 16:05:31 -05004631 uint32_t *lp;
James Smart92d7f7b2007-06-17 19:56:38 -05004632 uint32_t payload_len, i;
James Smart7f5f3d02008-02-08 18:50:14 -05004633 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05004634
4635 ns_did.un.word = did;
dea31012005-04-17 16:05:31 -05004636
4637 /* Never match fabric nodes for RSCNs */
4638 if ((did & Fabric_DID_MASK) == Fabric_DID_MASK)
James Smart2e0fef82007-06-17 19:56:36 -05004639 return 0;
dea31012005-04-17 16:05:31 -05004640
4641 /* If we are doing a FULL RSCN rediscovery, match everything */
James Smart2e0fef82007-06-17 19:56:36 -05004642 if (vport->fc_flag & FC_RSCN_DISCOVERY)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004643 return did;
dea31012005-04-17 16:05:31 -05004644
James Smart7f5f3d02008-02-08 18:50:14 -05004645 spin_lock_irq(shost->host_lock);
4646 if (vport->fc_rscn_flush) {
4647 /* Another thread is walking fc_rscn_id_list on this vport */
4648 spin_unlock_irq(shost->host_lock);
4649 return 0;
4650 }
4651 /* Indicate we are walking fc_rscn_id_list on this vport */
4652 vport->fc_rscn_flush = 1;
4653 spin_unlock_irq(shost->host_lock);
James Smart2e0fef82007-06-17 19:56:36 -05004654 for (i = 0; i < vport->fc_rscn_id_cnt; i++) {
James Smart92d7f7b2007-06-17 19:56:38 -05004655 lp = vport->fc_rscn_id_list[i]->virt;
4656 payload_len = be32_to_cpu(*lp++ & ~ELS_CMD_MASK);
4657 payload_len -= sizeof(uint32_t); /* take off word 0 */
dea31012005-04-17 16:05:31 -05004658 while (payload_len) {
James Smart92d7f7b2007-06-17 19:56:38 -05004659 rscn_did.un.word = be32_to_cpu(*lp++);
4660 payload_len -= sizeof(uint32_t);
James Smarteaf15d52008-12-04 22:39:29 -05004661 switch (rscn_did.un.b.resv & RSCN_ADDRESS_FORMAT_MASK) {
4662 case RSCN_ADDRESS_FORMAT_PORT:
James Smart6fb120a2009-05-22 14:52:59 -04004663 if ((ns_did.un.b.domain == rscn_did.un.b.domain)
4664 && (ns_did.un.b.area == rscn_did.un.b.area)
4665 && (ns_did.un.b.id == rscn_did.un.b.id))
James Smart7f5f3d02008-02-08 18:50:14 -05004666 goto return_did_out;
dea31012005-04-17 16:05:31 -05004667 break;
James Smarteaf15d52008-12-04 22:39:29 -05004668 case RSCN_ADDRESS_FORMAT_AREA:
dea31012005-04-17 16:05:31 -05004669 if ((ns_did.un.b.domain == rscn_did.un.b.domain)
4670 && (ns_did.un.b.area == rscn_did.un.b.area))
James Smart7f5f3d02008-02-08 18:50:14 -05004671 goto return_did_out;
dea31012005-04-17 16:05:31 -05004672 break;
James Smarteaf15d52008-12-04 22:39:29 -05004673 case RSCN_ADDRESS_FORMAT_DOMAIN:
dea31012005-04-17 16:05:31 -05004674 if (ns_did.un.b.domain == rscn_did.un.b.domain)
James Smart7f5f3d02008-02-08 18:50:14 -05004675 goto return_did_out;
dea31012005-04-17 16:05:31 -05004676 break;
James Smarteaf15d52008-12-04 22:39:29 -05004677 case RSCN_ADDRESS_FORMAT_FABRIC:
James Smart7f5f3d02008-02-08 18:50:14 -05004678 goto return_did_out;
dea31012005-04-17 16:05:31 -05004679 }
4680 }
James Smart92d7f7b2007-06-17 19:56:38 -05004681 }
James Smart7f5f3d02008-02-08 18:50:14 -05004682 /* Indicate we are done with walking fc_rscn_id_list on this vport */
4683 vport->fc_rscn_flush = 0;
James Smart92d7f7b2007-06-17 19:56:38 -05004684 return 0;
James Smart7f5f3d02008-02-08 18:50:14 -05004685return_did_out:
4686 /* Indicate we are done with walking fc_rscn_id_list on this vport */
4687 vport->fc_rscn_flush = 0;
4688 return did;
dea31012005-04-17 16:05:31 -05004689}
4690
James Smarte59058c2008-08-24 21:49:00 -04004691/**
James Smart3621a712009-04-06 18:47:14 -04004692 * lpfc_rscn_recovery_check - Send recovery event to vport nodes matching rscn
James Smarte59058c2008-08-24 21:49:00 -04004693 * @vport: pointer to a host virtual N_Port data structure.
4694 *
4695 * This routine sends recovery (NLP_EVT_DEVICE_RECOVERY) event to the
4696 * state machine for a @vport's nodes that are with pending RSCN (Registration
4697 * State Change Notification).
4698 *
4699 * Return code
4700 * 0 - Successful (currently alway return 0)
4701 **/
dea31012005-04-17 16:05:31 -05004702static int
James Smart2e0fef82007-06-17 19:56:36 -05004703lpfc_rscn_recovery_check(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05004704{
James Smart685f0bf2007-04-25 09:53:08 -04004705 struct lpfc_nodelist *ndlp = NULL;
dea31012005-04-17 16:05:31 -05004706
James Smart0d2b6b82008-06-14 22:52:47 -04004707 /* Move all affected nodes by pending RSCNs to NPR state. */
James Smart2e0fef82007-06-17 19:56:36 -05004708 list_for_each_entry(ndlp, &vport->fc_nodes, nlp_listp) {
James Smarte47c9092008-02-08 18:49:26 -05004709 if (!NLP_CHK_NODE_ACT(ndlp) ||
James Smart0d2b6b82008-06-14 22:52:47 -04004710 (ndlp->nlp_state == NLP_STE_UNUSED_NODE) ||
4711 !lpfc_rscn_payload_check(vport, ndlp->nlp_DID))
dea31012005-04-17 16:05:31 -05004712 continue;
James Smart2e0fef82007-06-17 19:56:36 -05004713 lpfc_disc_state_machine(vport, ndlp, NULL,
James Smart0d2b6b82008-06-14 22:52:47 -04004714 NLP_EVT_DEVICE_RECOVERY);
4715 lpfc_cancel_retry_delay_tmo(vport, ndlp);
dea31012005-04-17 16:05:31 -05004716 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004717 return 0;
dea31012005-04-17 16:05:31 -05004718}
4719
James Smarte59058c2008-08-24 21:49:00 -04004720/**
James Smart3621a712009-04-06 18:47:14 -04004721 * lpfc_send_rscn_event - Send an RSCN event to management application
James Smartddcc50f2008-12-04 22:38:46 -05004722 * @vport: pointer to a host virtual N_Port data structure.
4723 * @cmdiocb: pointer to lpfc command iocb data structure.
4724 *
4725 * lpfc_send_rscn_event sends an RSCN netlink event to management
4726 * applications.
4727 */
4728static void
4729lpfc_send_rscn_event(struct lpfc_vport *vport,
4730 struct lpfc_iocbq *cmdiocb)
4731{
4732 struct lpfc_dmabuf *pcmd;
4733 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
4734 uint32_t *payload_ptr;
4735 uint32_t payload_len;
4736 struct lpfc_rscn_event_header *rscn_event_data;
4737
4738 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
4739 payload_ptr = (uint32_t *) pcmd->virt;
4740 payload_len = be32_to_cpu(*payload_ptr & ~ELS_CMD_MASK);
4741
4742 rscn_event_data = kmalloc(sizeof(struct lpfc_rscn_event_header) +
4743 payload_len, GFP_KERNEL);
4744 if (!rscn_event_data) {
4745 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
4746 "0147 Failed to allocate memory for RSCN event\n");
4747 return;
4748 }
4749 rscn_event_data->event_type = FC_REG_RSCN_EVENT;
4750 rscn_event_data->payload_length = payload_len;
4751 memcpy(rscn_event_data->rscn_payload, payload_ptr,
4752 payload_len);
4753
4754 fc_host_post_vendor_event(shost,
4755 fc_get_event_number(),
4756 sizeof(struct lpfc_els_event_header) + payload_len,
4757 (char *)rscn_event_data,
4758 LPFC_NL_VENDOR_ID);
4759
4760 kfree(rscn_event_data);
4761}
4762
4763/**
James Smart3621a712009-04-06 18:47:14 -04004764 * lpfc_els_rcv_rscn - Process an unsolicited rscn iocb
James Smarte59058c2008-08-24 21:49:00 -04004765 * @vport: pointer to a host virtual N_Port data structure.
4766 * @cmdiocb: pointer to lpfc command iocb data structure.
4767 * @ndlp: pointer to a node-list data structure.
4768 *
4769 * This routine processes an unsolicited RSCN (Registration State Change
4770 * Notification) IOCB. First, the payload of the unsolicited RSCN is walked
4771 * to invoke fc_host_post_event() routine to the FC transport layer. If the
4772 * discover state machine is about to begin discovery, it just accepts the
4773 * RSCN and the discovery process will satisfy the RSCN. If this RSCN only
4774 * contains N_Port IDs for other vports on this HBA, it just accepts the
4775 * RSCN and ignore processing it. If the state machine is in the recovery
4776 * state, the fc_rscn_id_list of this @vport is walked and the
4777 * lpfc_rscn_recovery_check() routine is invoked to send recovery event for
4778 * all nodes that match RSCN payload. Otherwise, the lpfc_els_handle_rscn()
4779 * routine is invoked to handle the RSCN event.
4780 *
4781 * Return code
4782 * 0 - Just sent the acc response
4783 * 1 - Sent the acc response and waited for name server completion
4784 **/
dea31012005-04-17 16:05:31 -05004785static int
James Smart2e0fef82007-06-17 19:56:36 -05004786lpfc_els_rcv_rscn(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
James Smart51ef4c22007-08-02 11:10:31 -04004787 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05004788{
James Smart2e0fef82007-06-17 19:56:36 -05004789 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
4790 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05004791 struct lpfc_dmabuf *pcmd;
James Smart92d7f7b2007-06-17 19:56:38 -05004792 uint32_t *lp, *datap;
dea31012005-04-17 16:05:31 -05004793 IOCB_t *icmd;
James Smart92d7f7b2007-06-17 19:56:38 -05004794 uint32_t payload_len, length, nportid, *cmd;
James Smart7f5f3d02008-02-08 18:50:14 -05004795 int rscn_cnt;
James Smart92d7f7b2007-06-17 19:56:38 -05004796 int rscn_id = 0, hba_id = 0;
James Smartd2873e42006-08-18 17:46:43 -04004797 int i;
dea31012005-04-17 16:05:31 -05004798
4799 icmd = &cmdiocb->iocb;
4800 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
4801 lp = (uint32_t *) pcmd->virt;
4802
James Smart92d7f7b2007-06-17 19:56:38 -05004803 payload_len = be32_to_cpu(*lp++ & ~ELS_CMD_MASK);
4804 payload_len -= sizeof(uint32_t); /* take off word 0 */
dea31012005-04-17 16:05:31 -05004805 /* RSCN received */
James Smarte8b62012007-08-02 11:10:09 -04004806 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
4807 "0214 RSCN received Data: x%x x%x x%x x%x\n",
James Smart7f5f3d02008-02-08 18:50:14 -05004808 vport->fc_flag, payload_len, *lp,
4809 vport->fc_rscn_id_cnt);
James Smartddcc50f2008-12-04 22:38:46 -05004810
4811 /* Send an RSCN event to the management application */
4812 lpfc_send_rscn_event(vport, cmdiocb);
4813
James Smartd2873e42006-08-18 17:46:43 -04004814 for (i = 0; i < payload_len/sizeof(uint32_t); i++)
James Smart2e0fef82007-06-17 19:56:36 -05004815 fc_host_post_event(shost, fc_get_event_number(),
James Smartd2873e42006-08-18 17:46:43 -04004816 FCH_EVT_RSCN, lp[i]);
4817
dea31012005-04-17 16:05:31 -05004818 /* If we are about to begin discovery, just ACC the RSCN.
4819 * Discovery processing will satisfy it.
4820 */
James Smart2e0fef82007-06-17 19:56:36 -05004821 if (vport->port_state <= LPFC_NS_QRY) {
James Smart858c9f62007-06-17 19:56:39 -05004822 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
4823 "RCV RSCN ignore: did:x%x/ste:x%x flg:x%x",
4824 ndlp->nlp_DID, vport->port_state, ndlp->nlp_flag);
4825
James Smart51ef4c22007-08-02 11:10:31 -04004826 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004827 return 0;
dea31012005-04-17 16:05:31 -05004828 }
4829
James Smart92d7f7b2007-06-17 19:56:38 -05004830 /* If this RSCN just contains NPortIDs for other vports on this HBA,
4831 * just ACC and ignore it.
4832 */
4833 if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
James Smart3de2a652007-08-02 11:09:59 -04004834 !(vport->cfg_peer_port_login)) {
James Smart92d7f7b2007-06-17 19:56:38 -05004835 i = payload_len;
4836 datap = lp;
4837 while (i > 0) {
4838 nportid = *datap++;
4839 nportid = ((be32_to_cpu(nportid)) & Mask_DID);
4840 i -= sizeof(uint32_t);
4841 rscn_id++;
James Smart549e55c2007-08-02 11:09:51 -04004842 if (lpfc_find_vport_by_did(phba, nportid))
4843 hba_id++;
James Smart92d7f7b2007-06-17 19:56:38 -05004844 }
4845 if (rscn_id == hba_id) {
4846 /* ALL NPortIDs in RSCN are on HBA */
James Smarte8b62012007-08-02 11:10:09 -04004847 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
James Smartd7c255b2008-08-24 21:50:00 -04004848 "0219 Ignore RSCN "
James Smarte8b62012007-08-02 11:10:09 -04004849 "Data: x%x x%x x%x x%x\n",
4850 vport->fc_flag, payload_len,
James Smart7f5f3d02008-02-08 18:50:14 -05004851 *lp, vport->fc_rscn_id_cnt);
James Smart858c9f62007-06-17 19:56:39 -05004852 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
4853 "RCV RSCN vport: did:x%x/ste:x%x flg:x%x",
4854 ndlp->nlp_DID, vport->port_state,
4855 ndlp->nlp_flag);
4856
James Smart92d7f7b2007-06-17 19:56:38 -05004857 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb,
James Smart51ef4c22007-08-02 11:10:31 -04004858 ndlp, NULL);
James Smart92d7f7b2007-06-17 19:56:38 -05004859 return 0;
4860 }
4861 }
4862
James Smart7f5f3d02008-02-08 18:50:14 -05004863 spin_lock_irq(shost->host_lock);
4864 if (vport->fc_rscn_flush) {
4865 /* Another thread is walking fc_rscn_id_list on this vport */
James Smart7f5f3d02008-02-08 18:50:14 -05004866 vport->fc_flag |= FC_RSCN_DISCOVERY;
James Smart97957242009-12-21 17:03:15 -05004867 spin_unlock_irq(shost->host_lock);
James Smart58da1ff2008-04-07 10:15:56 -04004868 /* Send back ACC */
4869 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
James Smart7f5f3d02008-02-08 18:50:14 -05004870 return 0;
4871 }
4872 /* Indicate we are walking fc_rscn_id_list on this vport */
4873 vport->fc_rscn_flush = 1;
4874 spin_unlock_irq(shost->host_lock);
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02004875 /* Get the array count after successfully have the token */
James Smart7f5f3d02008-02-08 18:50:14 -05004876 rscn_cnt = vport->fc_rscn_id_cnt;
dea31012005-04-17 16:05:31 -05004877 /* If we are already processing an RSCN, save the received
4878 * RSCN payload buffer, cmdiocb->context2 to process later.
4879 */
James Smart2e0fef82007-06-17 19:56:36 -05004880 if (vport->fc_flag & (FC_RSCN_MODE | FC_NDISC_ACTIVE)) {
James Smart858c9f62007-06-17 19:56:39 -05004881 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
4882 "RCV RSCN defer: did:x%x/ste:x%x flg:x%x",
4883 ndlp->nlp_DID, vport->port_state, ndlp->nlp_flag);
4884
James Smart09372822008-01-11 01:52:54 -05004885 spin_lock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05004886 vport->fc_flag |= FC_RSCN_DEFERRED;
4887 if ((rscn_cnt < FC_MAX_HOLD_RSCN) &&
James Smart2e0fef82007-06-17 19:56:36 -05004888 !(vport->fc_flag & FC_RSCN_DISCOVERY)) {
James Smart2e0fef82007-06-17 19:56:36 -05004889 vport->fc_flag |= FC_RSCN_MODE;
4890 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05004891 if (rscn_cnt) {
4892 cmd = vport->fc_rscn_id_list[rscn_cnt-1]->virt;
4893 length = be32_to_cpu(*cmd & ~ELS_CMD_MASK);
4894 }
4895 if ((rscn_cnt) &&
4896 (payload_len + length <= LPFC_BPL_SIZE)) {
4897 *cmd &= ELS_CMD_MASK;
James Smart7f5f3d02008-02-08 18:50:14 -05004898 *cmd |= cpu_to_be32(payload_len + length);
James Smart92d7f7b2007-06-17 19:56:38 -05004899 memcpy(((uint8_t *)cmd) + length, lp,
4900 payload_len);
4901 } else {
4902 vport->fc_rscn_id_list[rscn_cnt] = pcmd;
4903 vport->fc_rscn_id_cnt++;
4904 /* If we zero, cmdiocb->context2, the calling
4905 * routine will not try to free it.
4906 */
4907 cmdiocb->context2 = NULL;
4908 }
dea31012005-04-17 16:05:31 -05004909 /* Deferred RSCN */
James Smarte8b62012007-08-02 11:10:09 -04004910 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
4911 "0235 Deferred RSCN "
4912 "Data: x%x x%x x%x\n",
4913 vport->fc_rscn_id_cnt, vport->fc_flag,
4914 vport->port_state);
dea31012005-04-17 16:05:31 -05004915 } else {
James Smart2e0fef82007-06-17 19:56:36 -05004916 vport->fc_flag |= FC_RSCN_DISCOVERY;
4917 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05004918 /* ReDiscovery RSCN */
James Smarte8b62012007-08-02 11:10:09 -04004919 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
4920 "0234 ReDiscovery RSCN "
4921 "Data: x%x x%x x%x\n",
4922 vport->fc_rscn_id_cnt, vport->fc_flag,
4923 vport->port_state);
dea31012005-04-17 16:05:31 -05004924 }
James Smart7f5f3d02008-02-08 18:50:14 -05004925 /* Indicate we are done walking fc_rscn_id_list on this vport */
4926 vport->fc_rscn_flush = 0;
dea31012005-04-17 16:05:31 -05004927 /* Send back ACC */
James Smart51ef4c22007-08-02 11:10:31 -04004928 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
dea31012005-04-17 16:05:31 -05004929 /* send RECOVERY event for ALL nodes that match RSCN payload */
James Smart2e0fef82007-06-17 19:56:36 -05004930 lpfc_rscn_recovery_check(vport);
James Smart09372822008-01-11 01:52:54 -05004931 spin_lock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05004932 vport->fc_flag &= ~FC_RSCN_DEFERRED;
James Smart09372822008-01-11 01:52:54 -05004933 spin_unlock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004934 return 0;
dea31012005-04-17 16:05:31 -05004935 }
James Smart858c9f62007-06-17 19:56:39 -05004936 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
4937 "RCV RSCN: did:x%x/ste:x%x flg:x%x",
4938 ndlp->nlp_DID, vport->port_state, ndlp->nlp_flag);
4939
James Smart2e0fef82007-06-17 19:56:36 -05004940 spin_lock_irq(shost->host_lock);
4941 vport->fc_flag |= FC_RSCN_MODE;
4942 spin_unlock_irq(shost->host_lock);
4943 vport->fc_rscn_id_list[vport->fc_rscn_id_cnt++] = pcmd;
James Smart7f5f3d02008-02-08 18:50:14 -05004944 /* Indicate we are done walking fc_rscn_id_list on this vport */
4945 vport->fc_rscn_flush = 0;
dea31012005-04-17 16:05:31 -05004946 /*
4947 * If we zero, cmdiocb->context2, the calling routine will
4948 * not try to free it.
4949 */
4950 cmdiocb->context2 = NULL;
James Smart2e0fef82007-06-17 19:56:36 -05004951 lpfc_set_disctmo(vport);
dea31012005-04-17 16:05:31 -05004952 /* Send back ACC */
James Smart51ef4c22007-08-02 11:10:31 -04004953 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
dea31012005-04-17 16:05:31 -05004954 /* send RECOVERY event for ALL nodes that match RSCN payload */
James Smart2e0fef82007-06-17 19:56:36 -05004955 lpfc_rscn_recovery_check(vport);
James Smart2e0fef82007-06-17 19:56:36 -05004956 return lpfc_els_handle_rscn(vport);
dea31012005-04-17 16:05:31 -05004957}
4958
James Smarte59058c2008-08-24 21:49:00 -04004959/**
James Smart3621a712009-04-06 18:47:14 -04004960 * lpfc_els_handle_rscn - Handle rscn for a vport
James Smarte59058c2008-08-24 21:49:00 -04004961 * @vport: pointer to a host virtual N_Port data structure.
4962 *
4963 * This routine handles the Registration State Configuration Notification
4964 * (RSCN) for a @vport. If login to NameServer does not exist, a new ndlp shall
4965 * be created and a Port Login (PLOGI) to the NameServer is issued. Otherwise,
4966 * if the ndlp to NameServer exists, a Common Transport (CT) command to the
4967 * NameServer shall be issued. If CT command to the NameServer fails to be
4968 * issued, the lpfc_els_flush_rscn() routine shall be invoked to clean up any
4969 * RSCN activities with the @vport.
4970 *
4971 * Return code
4972 * 0 - Cleaned up rscn on the @vport
4973 * 1 - Wait for plogi to name server before proceed
4974 **/
dea31012005-04-17 16:05:31 -05004975int
James Smart2e0fef82007-06-17 19:56:36 -05004976lpfc_els_handle_rscn(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05004977{
4978 struct lpfc_nodelist *ndlp;
James Smart2e0fef82007-06-17 19:56:36 -05004979 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05004980
James Smart92d7f7b2007-06-17 19:56:38 -05004981 /* Ignore RSCN if the port is being torn down. */
4982 if (vport->load_flag & FC_UNLOADING) {
4983 lpfc_els_flush_rscn(vport);
4984 return 0;
4985 }
4986
dea31012005-04-17 16:05:31 -05004987 /* Start timer for RSCN processing */
James Smart2e0fef82007-06-17 19:56:36 -05004988 lpfc_set_disctmo(vport);
dea31012005-04-17 16:05:31 -05004989
4990 /* RSCN processed */
James Smarte8b62012007-08-02 11:10:09 -04004991 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
4992 "0215 RSCN processed Data: x%x x%x x%x x%x\n",
4993 vport->fc_flag, 0, vport->fc_rscn_id_cnt,
4994 vport->port_state);
dea31012005-04-17 16:05:31 -05004995
4996 /* To process RSCN, first compare RSCN data with NameServer */
James Smart2e0fef82007-06-17 19:56:36 -05004997 vport->fc_ns_retry = 0;
James Smart0ff10d42008-01-11 01:52:36 -05004998 vport->num_disc_nodes = 0;
4999
James Smart2e0fef82007-06-17 19:56:36 -05005000 ndlp = lpfc_findnode_did(vport, NameServer_DID);
James Smarte47c9092008-02-08 18:49:26 -05005001 if (ndlp && NLP_CHK_NODE_ACT(ndlp)
5002 && ndlp->nlp_state == NLP_STE_UNMAPPED_NODE) {
dea31012005-04-17 16:05:31 -05005003 /* Good ndlp, issue CT Request to NameServer */
James Smart92d7f7b2007-06-17 19:56:38 -05005004 if (lpfc_ns_cmd(vport, SLI_CTNS_GID_FT, 0, 0) == 0)
dea31012005-04-17 16:05:31 -05005005 /* Wait for NameServer query cmpl before we can
5006 continue */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05005007 return 1;
dea31012005-04-17 16:05:31 -05005008 } else {
5009 /* If login to NameServer does not exist, issue one */
5010 /* Good status, issue PLOGI to NameServer */
James Smart2e0fef82007-06-17 19:56:36 -05005011 ndlp = lpfc_findnode_did(vport, NameServer_DID);
James Smarte47c9092008-02-08 18:49:26 -05005012 if (ndlp && NLP_CHK_NODE_ACT(ndlp))
dea31012005-04-17 16:05:31 -05005013 /* Wait for NameServer login cmpl before we can
5014 continue */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05005015 return 1;
James Smart2e0fef82007-06-17 19:56:36 -05005016
James Smarte47c9092008-02-08 18:49:26 -05005017 if (ndlp) {
5018 ndlp = lpfc_enable_node(vport, ndlp,
5019 NLP_STE_PLOGI_ISSUE);
5020 if (!ndlp) {
5021 lpfc_els_flush_rscn(vport);
5022 return 0;
5023 }
5024 ndlp->nlp_prev_state = NLP_STE_UNUSED_NODE;
dea31012005-04-17 16:05:31 -05005025 } else {
James Smarte47c9092008-02-08 18:49:26 -05005026 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
5027 if (!ndlp) {
5028 lpfc_els_flush_rscn(vport);
5029 return 0;
5030 }
James Smart2e0fef82007-06-17 19:56:36 -05005031 lpfc_nlp_init(vport, ndlp, NameServer_DID);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05005032 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05005033 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
dea31012005-04-17 16:05:31 -05005034 }
James Smarte47c9092008-02-08 18:49:26 -05005035 ndlp->nlp_type |= NLP_FABRIC;
5036 lpfc_issue_els_plogi(vport, NameServer_DID, 0);
5037 /* Wait for NameServer login cmpl before we can
5038 * continue
5039 */
5040 return 1;
dea31012005-04-17 16:05:31 -05005041 }
5042
James Smart2e0fef82007-06-17 19:56:36 -05005043 lpfc_els_flush_rscn(vport);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05005044 return 0;
dea31012005-04-17 16:05:31 -05005045}
5046
James Smarte59058c2008-08-24 21:49:00 -04005047/**
James Smart3621a712009-04-06 18:47:14 -04005048 * lpfc_els_rcv_flogi - Process an unsolicited flogi iocb
James Smarte59058c2008-08-24 21:49:00 -04005049 * @vport: pointer to a host virtual N_Port data structure.
5050 * @cmdiocb: pointer to lpfc command iocb data structure.
5051 * @ndlp: pointer to a node-list data structure.
5052 *
5053 * This routine processes Fabric Login (FLOGI) IOCB received as an ELS
5054 * unsolicited event. An unsolicited FLOGI can be received in a point-to-
5055 * point topology. As an unsolicited FLOGI should not be received in a loop
5056 * mode, any unsolicited FLOGI received in loop mode shall be ignored. The
5057 * lpfc_check_sparm() routine is invoked to check the parameters in the
5058 * unsolicited FLOGI. If parameters validation failed, the routine
5059 * lpfc_els_rsp_reject() shall be called with reject reason code set to
5060 * LSEXP_SPARM_OPTIONS to reject the FLOGI. Otherwise, the Port WWN in the
5061 * FLOGI shall be compared with the Port WWN of the @vport to determine who
5062 * will initiate PLOGI. The higher lexicographical value party shall has
5063 * higher priority (as the winning port) and will initiate PLOGI and
5064 * communicate Port_IDs (Addresses) for both nodes in PLOGI. The result
5065 * of this will be marked in the @vport fc_flag field with FC_PT2PT_PLOGI
5066 * and then the lpfc_els_rsp_acc() routine is invoked to accept the FLOGI.
5067 *
5068 * Return code
5069 * 0 - Successfully processed the unsolicited flogi
5070 * 1 - Failed to process the unsolicited flogi
5071 **/
dea31012005-04-17 16:05:31 -05005072static int
James Smart2e0fef82007-06-17 19:56:36 -05005073lpfc_els_rcv_flogi(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
James Smart51ef4c22007-08-02 11:10:31 -04005074 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05005075{
James Smart2e0fef82007-06-17 19:56:36 -05005076 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
5077 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05005078 struct lpfc_dmabuf *pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
5079 uint32_t *lp = (uint32_t *) pcmd->virt;
5080 IOCB_t *icmd = &cmdiocb->iocb;
5081 struct serv_parm *sp;
5082 LPFC_MBOXQ_t *mbox;
5083 struct ls_rjt stat;
5084 uint32_t cmd, did;
5085 int rc;
James Smarte74c03c2013-04-17 20:15:19 -04005086 uint32_t fc_flag = 0;
5087 uint32_t port_state = 0;
dea31012005-04-17 16:05:31 -05005088
5089 cmd = *lp++;
5090 sp = (struct serv_parm *) lp;
5091
5092 /* FLOGI received */
5093
James Smart2e0fef82007-06-17 19:56:36 -05005094 lpfc_set_disctmo(vport);
dea31012005-04-17 16:05:31 -05005095
James Smart76a95d72010-11-20 23:11:48 -05005096 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
dea31012005-04-17 16:05:31 -05005097 /* We should never receive a FLOGI in loop mode, ignore it */
5098 did = icmd->un.elsreq64.remoteID;
5099
5100 /* An FLOGI ELS command <elsCmd> was received from DID <did> in
5101 Loop Mode */
James Smarte8b62012007-08-02 11:10:09 -04005102 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
5103 "0113 An FLOGI ELS command x%x was "
5104 "received from DID x%x in Loop Mode\n",
5105 cmd, did);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05005106 return 1;
dea31012005-04-17 16:05:31 -05005107 }
5108
James Smart341af102010-01-26 23:07:37 -05005109 if ((lpfc_check_sparm(vport, ndlp, sp, CLASS3, 1))) {
dea31012005-04-17 16:05:31 -05005110 /* For a FLOGI we accept, then if our portname is greater
5111 * then the remote portname we initiate Nport login.
5112 */
5113
James Smart2e0fef82007-06-17 19:56:36 -05005114 rc = memcmp(&vport->fc_portname, &sp->portName,
James Smart92d7f7b2007-06-17 19:56:38 -05005115 sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -05005116
5117 if (!rc) {
James Smart1b511972011-12-13 13:23:09 -05005118 if (phba->sli_rev < LPFC_SLI_REV4) {
5119 mbox = mempool_alloc(phba->mbox_mem_pool,
5120 GFP_KERNEL);
5121 if (!mbox)
5122 return 1;
5123 lpfc_linkdown(phba);
5124 lpfc_init_link(phba, mbox,
5125 phba->cfg_topology,
5126 phba->cfg_link_speed);
5127 mbox->u.mb.un.varInitLnk.lipsr_AL_PA = 0;
5128 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
5129 mbox->vport = vport;
5130 rc = lpfc_sli_issue_mbox(phba, mbox,
5131 MBX_NOWAIT);
5132 lpfc_set_loopback_flag(phba);
5133 if (rc == MBX_NOT_FINISHED)
5134 mempool_free(mbox, phba->mbox_mem_pool);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05005135 return 1;
James Smart1b511972011-12-13 13:23:09 -05005136 } else {
5137 /* abort the flogi coming back to ourselves
5138 * due to external loopback on the port.
5139 */
5140 lpfc_els_abort_flogi(phba);
5141 return 0;
dea31012005-04-17 16:05:31 -05005142 }
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05005143 } else if (rc > 0) { /* greater than */
James Smart2e0fef82007-06-17 19:56:36 -05005144 spin_lock_irq(shost->host_lock);
5145 vport->fc_flag |= FC_PT2PT_PLOGI;
5146 spin_unlock_irq(shost->host_lock);
James Smart939723a2012-05-09 21:19:03 -04005147
5148 /* If we have the high WWPN we can assign our own
5149 * myDID; otherwise, we have to WAIT for a PLOGI
5150 * from the remote NPort to find out what it
5151 * will be.
5152 */
James Smarte6446432012-05-09 21:16:42 -04005153 vport->fc_myDID = PT2PT_LocalID;
James Smarte74c03c2013-04-17 20:15:19 -04005154 } else
5155 vport->fc_myDID = PT2PT_RemoteID;
James Smart939723a2012-05-09 21:19:03 -04005156
5157 /*
5158 * The vport state should go to LPFC_FLOGI only
5159 * AFTER we issue a FLOGI, not receive one.
5160 */
James Smart2e0fef82007-06-17 19:56:36 -05005161 spin_lock_irq(shost->host_lock);
James Smarte74c03c2013-04-17 20:15:19 -04005162 fc_flag = vport->fc_flag;
5163 port_state = vport->port_state;
James Smart2e0fef82007-06-17 19:56:36 -05005164 vport->fc_flag |= FC_PT2PT;
5165 vport->fc_flag &= ~(FC_FABRIC | FC_PUBLIC_LOOP);
James Smarte74c03c2013-04-17 20:15:19 -04005166 vport->port_state = LPFC_FLOGI;
James Smart2e0fef82007-06-17 19:56:36 -05005167 spin_unlock_irq(shost->host_lock);
James Smarte74c03c2013-04-17 20:15:19 -04005168 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
5169 "3311 Rcv Flogi PS x%x new PS x%x "
5170 "fc_flag x%x new fc_flag x%x\n",
5171 port_state, vport->port_state,
5172 fc_flag, vport->fc_flag);
James Smart939723a2012-05-09 21:19:03 -04005173
5174 /*
5175 * We temporarily set fc_myDID to make it look like we are
5176 * a Fabric. This is done just so we end up with the right
5177 * did / sid on the FLOGI ACC rsp.
5178 */
5179 did = vport->fc_myDID;
5180 vport->fc_myDID = Fabric_DID;
5181
dea31012005-04-17 16:05:31 -05005182 } else {
5183 /* Reject this request because invalid parameters */
5184 stat.un.b.lsRjtRsvd0 = 0;
5185 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
5186 stat.un.b.lsRjtRsnCodeExp = LSEXP_SPARM_OPTIONS;
5187 stat.un.b.vendorUnique = 0;
James Smart939723a2012-05-09 21:19:03 -04005188
5189 /*
5190 * We temporarily set fc_myDID to make it look like we are
5191 * a Fabric. This is done just so we end up with the right
5192 * did / sid on the FLOGI LS_RJT rsp.
5193 */
5194 did = vport->fc_myDID;
5195 vport->fc_myDID = Fabric_DID;
5196
James Smart858c9f62007-06-17 19:56:39 -05005197 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp,
5198 NULL);
James Smart939723a2012-05-09 21:19:03 -04005199
5200 /* Now lets put fc_myDID back to what its supposed to be */
5201 vport->fc_myDID = did;
5202
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05005203 return 1;
dea31012005-04-17 16:05:31 -05005204 }
5205
5206 /* Send back ACC */
James Smart51ef4c22007-08-02 11:10:31 -04005207 lpfc_els_rsp_acc(vport, ELS_CMD_PLOGI, cmdiocb, ndlp, NULL);
dea31012005-04-17 16:05:31 -05005208
James Smart939723a2012-05-09 21:19:03 -04005209 /* Now lets put fc_myDID back to what its supposed to be */
5210 vport->fc_myDID = did;
5211
James Smarte6446432012-05-09 21:16:42 -04005212 if (!(vport->fc_flag & FC_PT2PT_PLOGI)) {
James Smart939723a2012-05-09 21:19:03 -04005213
James Smarte6446432012-05-09 21:16:42 -04005214 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5215 if (!mbox)
5216 goto fail;
5217
5218 lpfc_config_link(phba, mbox);
5219
5220 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
5221 mbox->vport = vport;
5222 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
5223 if (rc == MBX_NOT_FINISHED) {
5224 mempool_free(mbox, phba->mbox_mem_pool);
5225 goto fail;
5226 }
5227 }
5228
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05005229 return 0;
James Smarte6446432012-05-09 21:16:42 -04005230fail:
5231 return 1;
dea31012005-04-17 16:05:31 -05005232}
5233
James Smarte59058c2008-08-24 21:49:00 -04005234/**
James Smart3621a712009-04-06 18:47:14 -04005235 * lpfc_els_rcv_rnid - Process an unsolicited rnid iocb
James Smarte59058c2008-08-24 21:49:00 -04005236 * @vport: pointer to a host virtual N_Port data structure.
5237 * @cmdiocb: pointer to lpfc command iocb data structure.
5238 * @ndlp: pointer to a node-list data structure.
5239 *
5240 * This routine processes Request Node Identification Data (RNID) IOCB
5241 * received as an ELS unsolicited event. Only when the RNID specified format
5242 * 0x0 or 0xDF (Topology Discovery Specific Node Identification Data)
5243 * present, this routine will invoke the lpfc_els_rsp_rnid_acc() routine to
5244 * Accept (ACC) the RNID ELS command. All the other RNID formats are
5245 * rejected by invoking the lpfc_els_rsp_reject() routine.
5246 *
5247 * Return code
5248 * 0 - Successfully processed rnid iocb (currently always return 0)
5249 **/
dea31012005-04-17 16:05:31 -05005250static int
James Smart2e0fef82007-06-17 19:56:36 -05005251lpfc_els_rcv_rnid(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
5252 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05005253{
5254 struct lpfc_dmabuf *pcmd;
5255 uint32_t *lp;
5256 IOCB_t *icmd;
5257 RNID *rn;
5258 struct ls_rjt stat;
5259 uint32_t cmd, did;
5260
5261 icmd = &cmdiocb->iocb;
5262 did = icmd->un.elsreq64.remoteID;
5263 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
5264 lp = (uint32_t *) pcmd->virt;
5265
5266 cmd = *lp++;
5267 rn = (RNID *) lp;
5268
5269 /* RNID received */
5270
5271 switch (rn->Format) {
5272 case 0:
5273 case RNID_TOPOLOGY_DISC:
5274 /* Send back ACC */
James Smart2e0fef82007-06-17 19:56:36 -05005275 lpfc_els_rsp_rnid_acc(vport, rn->Format, cmdiocb, ndlp);
dea31012005-04-17 16:05:31 -05005276 break;
5277 default:
5278 /* Reject this request because format not supported */
5279 stat.un.b.lsRjtRsvd0 = 0;
5280 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
5281 stat.un.b.lsRjtRsnCodeExp = LSEXP_CANT_GIVE_DATA;
5282 stat.un.b.vendorUnique = 0;
James Smart858c9f62007-06-17 19:56:39 -05005283 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp,
5284 NULL);
dea31012005-04-17 16:05:31 -05005285 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05005286 return 0;
dea31012005-04-17 16:05:31 -05005287}
5288
James Smarte59058c2008-08-24 21:49:00 -04005289/**
James Smart12265f62010-10-22 11:05:53 -04005290 * lpfc_els_rcv_echo - Process an unsolicited echo iocb
5291 * @vport: pointer to a host virtual N_Port data structure.
5292 * @cmdiocb: pointer to lpfc command iocb data structure.
5293 * @ndlp: pointer to a node-list data structure.
5294 *
5295 * Return code
5296 * 0 - Successfully processed echo iocb (currently always return 0)
5297 **/
5298static int
5299lpfc_els_rcv_echo(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
5300 struct lpfc_nodelist *ndlp)
5301{
5302 uint8_t *pcmd;
5303
5304 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) cmdiocb->context2)->virt);
5305
5306 /* skip over first word of echo command to find echo data */
5307 pcmd += sizeof(uint32_t);
5308
5309 lpfc_els_rsp_echo_acc(vport, pcmd, cmdiocb, ndlp);
5310 return 0;
5311}
5312
5313/**
James Smart3621a712009-04-06 18:47:14 -04005314 * lpfc_els_rcv_lirr - Process an unsolicited lirr iocb
James Smarte59058c2008-08-24 21:49:00 -04005315 * @vport: pointer to a host virtual N_Port data structure.
5316 * @cmdiocb: pointer to lpfc command iocb data structure.
5317 * @ndlp: pointer to a node-list data structure.
5318 *
5319 * This routine processes a Link Incident Report Registration(LIRR) IOCB
5320 * received as an ELS unsolicited event. Currently, this function just invokes
5321 * the lpfc_els_rsp_reject() routine to reject the LIRR IOCB unconditionally.
5322 *
5323 * Return code
5324 * 0 - Successfully processed lirr iocb (currently always return 0)
5325 **/
dea31012005-04-17 16:05:31 -05005326static int
James Smart2e0fef82007-06-17 19:56:36 -05005327lpfc_els_rcv_lirr(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
5328 struct lpfc_nodelist *ndlp)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005329{
5330 struct ls_rjt stat;
5331
5332 /* For now, unconditionally reject this command */
5333 stat.un.b.lsRjtRsvd0 = 0;
5334 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
5335 stat.un.b.lsRjtRsnCodeExp = LSEXP_CANT_GIVE_DATA;
5336 stat.un.b.vendorUnique = 0;
James Smart858c9f62007-06-17 19:56:39 -05005337 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005338 return 0;
5339}
5340
James Smarte59058c2008-08-24 21:49:00 -04005341/**
James Smart5ffc2662009-11-18 15:39:44 -05005342 * lpfc_els_rcv_rrq - Process an unsolicited rrq iocb
5343 * @vport: pointer to a host virtual N_Port data structure.
5344 * @cmdiocb: pointer to lpfc command iocb data structure.
5345 * @ndlp: pointer to a node-list data structure.
5346 *
5347 * This routine processes a Reinstate Recovery Qualifier (RRQ) IOCB
5348 * received as an ELS unsolicited event. A request to RRQ shall only
5349 * be accepted if the Originator Nx_Port N_Port_ID or the Responder
5350 * Nx_Port N_Port_ID of the target Exchange is the same as the
5351 * N_Port_ID of the Nx_Port that makes the request. If the RRQ is
5352 * not accepted, an LS_RJT with reason code "Unable to perform
5353 * command request" and reason code explanation "Invalid Originator
5354 * S_ID" shall be returned. For now, we just unconditionally accept
5355 * RRQ from the target.
5356 **/
5357static void
5358lpfc_els_rcv_rrq(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
5359 struct lpfc_nodelist *ndlp)
5360{
5361 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
James Smart19ca7602010-11-20 23:11:55 -05005362 if (vport->phba->sli_rev == LPFC_SLI_REV4)
5363 lpfc_els_clear_rrq(vport, cmdiocb, ndlp);
James Smart5ffc2662009-11-18 15:39:44 -05005364}
5365
5366/**
James Smart12265f62010-10-22 11:05:53 -04005367 * lpfc_els_rsp_rls_acc - Completion callbk func for MBX_READ_LNK_STAT mbox cmd
5368 * @phba: pointer to lpfc hba data structure.
5369 * @pmb: pointer to the driver internal queue element for mailbox command.
5370 *
5371 * This routine is the completion callback function for the MBX_READ_LNK_STAT
5372 * mailbox command. This callback function is to actually send the Accept
5373 * (ACC) response to a Read Port Status (RPS) unsolicited IOCB event. It
5374 * collects the link statistics from the completion of the MBX_READ_LNK_STAT
5375 * mailbox command, constructs the RPS response with the link statistics
5376 * collected, and then invokes the lpfc_sli_issue_iocb() routine to send ACC
5377 * response to the RPS.
5378 *
5379 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
5380 * will be incremented by 1 for holding the ndlp and the reference to ndlp
5381 * will be stored into the context1 field of the IOCB for the completion
5382 * callback function to the RPS Accept Response ELS IOCB command.
5383 *
5384 **/
5385static void
5386lpfc_els_rsp_rls_acc(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
5387{
5388 MAILBOX_t *mb;
5389 IOCB_t *icmd;
5390 struct RLS_RSP *rls_rsp;
5391 uint8_t *pcmd;
5392 struct lpfc_iocbq *elsiocb;
5393 struct lpfc_nodelist *ndlp;
James Smart7851fe22011-07-22 18:36:52 -04005394 uint16_t oxid;
5395 uint16_t rxid;
James Smart12265f62010-10-22 11:05:53 -04005396 uint32_t cmdsize;
5397
5398 mb = &pmb->u.mb;
5399
5400 ndlp = (struct lpfc_nodelist *) pmb->context2;
James Smart7851fe22011-07-22 18:36:52 -04005401 rxid = (uint16_t) ((unsigned long)(pmb->context1) & 0xffff);
5402 oxid = (uint16_t) (((unsigned long)(pmb->context1) >> 16) & 0xffff);
James Smart12265f62010-10-22 11:05:53 -04005403 pmb->context1 = NULL;
5404 pmb->context2 = NULL;
5405
5406 if (mb->mbxStatus) {
5407 mempool_free(pmb, phba->mbox_mem_pool);
5408 return;
5409 }
5410
5411 cmdsize = sizeof(struct RLS_RSP) + sizeof(uint32_t);
James Smart12265f62010-10-22 11:05:53 -04005412 elsiocb = lpfc_prep_els_iocb(phba->pport, 0, cmdsize,
5413 lpfc_max_els_tries, ndlp,
5414 ndlp->nlp_DID, ELS_CMD_ACC);
5415
5416 /* Decrement the ndlp reference count from previous mbox command */
5417 lpfc_nlp_put(ndlp);
5418
James Smart37db57e2012-05-09 21:17:16 -04005419 if (!elsiocb) {
5420 mempool_free(pmb, phba->mbox_mem_pool);
James Smart12265f62010-10-22 11:05:53 -04005421 return;
James Smart37db57e2012-05-09 21:17:16 -04005422 }
James Smart12265f62010-10-22 11:05:53 -04005423
5424 icmd = &elsiocb->iocb;
James Smart7851fe22011-07-22 18:36:52 -04005425 icmd->ulpContext = rxid;
5426 icmd->unsli3.rcvsli3.ox_id = oxid;
James Smart12265f62010-10-22 11:05:53 -04005427
5428 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
5429 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
5430 pcmd += sizeof(uint32_t); /* Skip past command */
5431 rls_rsp = (struct RLS_RSP *)pcmd;
5432
5433 rls_rsp->linkFailureCnt = cpu_to_be32(mb->un.varRdLnk.linkFailureCnt);
5434 rls_rsp->lossSyncCnt = cpu_to_be32(mb->un.varRdLnk.lossSyncCnt);
5435 rls_rsp->lossSignalCnt = cpu_to_be32(mb->un.varRdLnk.lossSignalCnt);
5436 rls_rsp->primSeqErrCnt = cpu_to_be32(mb->un.varRdLnk.primSeqErrCnt);
5437 rls_rsp->invalidXmitWord = cpu_to_be32(mb->un.varRdLnk.invalidXmitWord);
5438 rls_rsp->crcCnt = cpu_to_be32(mb->un.varRdLnk.crcCnt);
James Smart37db57e2012-05-09 21:17:16 -04005439 mempool_free(pmb, phba->mbox_mem_pool);
James Smart12265f62010-10-22 11:05:53 -04005440 /* Xmit ELS RLS ACC response tag <ulpIoTag> */
5441 lpfc_printf_vlog(ndlp->vport, KERN_INFO, LOG_ELS,
5442 "2874 Xmit ELS RLS ACC response tag x%x xri x%x, "
5443 "did x%x, nlp_flag x%x, nlp_state x%x, rpi x%x\n",
5444 elsiocb->iotag, elsiocb->iocb.ulpContext,
5445 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
5446 ndlp->nlp_rpi);
5447 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
5448 phba->fc_stat.elsXmitACC++;
5449 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) == IOCB_ERROR)
5450 lpfc_els_free_iocb(phba, elsiocb);
5451}
5452
5453/**
James Smart3621a712009-04-06 18:47:14 -04005454 * lpfc_els_rsp_rps_acc - Completion callbk func for MBX_READ_LNK_STAT mbox cmd
James Smarte59058c2008-08-24 21:49:00 -04005455 * @phba: pointer to lpfc hba data structure.
5456 * @pmb: pointer to the driver internal queue element for mailbox command.
5457 *
5458 * This routine is the completion callback function for the MBX_READ_LNK_STAT
5459 * mailbox command. This callback function is to actually send the Accept
5460 * (ACC) response to a Read Port Status (RPS) unsolicited IOCB event. It
5461 * collects the link statistics from the completion of the MBX_READ_LNK_STAT
5462 * mailbox command, constructs the RPS response with the link statistics
5463 * collected, and then invokes the lpfc_sli_issue_iocb() routine to send ACC
5464 * response to the RPS.
5465 *
5466 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
5467 * will be incremented by 1 for holding the ndlp and the reference to ndlp
5468 * will be stored into the context1 field of the IOCB for the completion
5469 * callback function to the RPS Accept Response ELS IOCB command.
5470 *
5471 **/
Jamie Wellnitz082c0262006-02-28 19:25:30 -05005472static void
James Smart329f9bc2007-04-25 09:53:01 -04005473lpfc_els_rsp_rps_acc(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005474{
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005475 MAILBOX_t *mb;
5476 IOCB_t *icmd;
5477 RPS_RSP *rps_rsp;
5478 uint8_t *pcmd;
5479 struct lpfc_iocbq *elsiocb;
5480 struct lpfc_nodelist *ndlp;
James Smart7851fe22011-07-22 18:36:52 -04005481 uint16_t status;
5482 uint16_t oxid;
5483 uint16_t rxid;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005484 uint32_t cmdsize;
5485
James Smart04c68492009-05-22 14:52:52 -04005486 mb = &pmb->u.mb;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005487
5488 ndlp = (struct lpfc_nodelist *) pmb->context2;
James Smart7851fe22011-07-22 18:36:52 -04005489 rxid = (uint16_t) ((unsigned long)(pmb->context1) & 0xffff);
5490 oxid = (uint16_t) (((unsigned long)(pmb->context1) >> 16) & 0xffff);
Randy Dunlap041976f2006-06-25 01:58:51 -07005491 pmb->context1 = NULL;
5492 pmb->context2 = NULL;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005493
5494 if (mb->mbxStatus) {
James Smart329f9bc2007-04-25 09:53:01 -04005495 mempool_free(pmb, phba->mbox_mem_pool);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005496 return;
5497 }
5498
5499 cmdsize = sizeof(RPS_RSP) + sizeof(uint32_t);
James Smart329f9bc2007-04-25 09:53:01 -04005500 mempool_free(pmb, phba->mbox_mem_pool);
James Smart2e0fef82007-06-17 19:56:36 -05005501 elsiocb = lpfc_prep_els_iocb(phba->pport, 0, cmdsize,
5502 lpfc_max_els_tries, ndlp,
5503 ndlp->nlp_DID, ELS_CMD_ACC);
James Smartfa4066b2008-01-11 01:53:27 -05005504
5505 /* Decrement the ndlp reference count from previous mbox command */
James Smart329f9bc2007-04-25 09:53:01 -04005506 lpfc_nlp_put(ndlp);
James Smartfa4066b2008-01-11 01:53:27 -05005507
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05005508 if (!elsiocb)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005509 return;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005510
5511 icmd = &elsiocb->iocb;
James Smart7851fe22011-07-22 18:36:52 -04005512 icmd->ulpContext = rxid;
5513 icmd->unsli3.rcvsli3.ox_id = oxid;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005514
5515 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
5516 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
James Smart92d7f7b2007-06-17 19:56:38 -05005517 pcmd += sizeof(uint32_t); /* Skip past command */
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005518 rps_rsp = (RPS_RSP *)pcmd;
5519
James Smart76a95d72010-11-20 23:11:48 -05005520 if (phba->fc_topology != LPFC_TOPOLOGY_LOOP)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005521 status = 0x10;
5522 else
5523 status = 0x8;
James Smart2e0fef82007-06-17 19:56:36 -05005524 if (phba->pport->fc_flag & FC_FABRIC)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005525 status |= 0x4;
5526
5527 rps_rsp->rsvd1 = 0;
James Smart09372822008-01-11 01:52:54 -05005528 rps_rsp->portStatus = cpu_to_be16(status);
5529 rps_rsp->linkFailureCnt = cpu_to_be32(mb->un.varRdLnk.linkFailureCnt);
5530 rps_rsp->lossSyncCnt = cpu_to_be32(mb->un.varRdLnk.lossSyncCnt);
5531 rps_rsp->lossSignalCnt = cpu_to_be32(mb->un.varRdLnk.lossSignalCnt);
5532 rps_rsp->primSeqErrCnt = cpu_to_be32(mb->un.varRdLnk.primSeqErrCnt);
5533 rps_rsp->invalidXmitWord = cpu_to_be32(mb->un.varRdLnk.invalidXmitWord);
5534 rps_rsp->crcCnt = cpu_to_be32(mb->un.varRdLnk.crcCnt);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005535 /* Xmit ELS RPS ACC response tag <ulpIoTag> */
James Smarte8b62012007-08-02 11:10:09 -04005536 lpfc_printf_vlog(ndlp->vport, KERN_INFO, LOG_ELS,
5537 "0118 Xmit ELS RPS ACC response tag x%x xri x%x, "
5538 "did x%x, nlp_flag x%x, nlp_state x%x, rpi x%x\n",
5539 elsiocb->iotag, elsiocb->iocb.ulpContext,
5540 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
5541 ndlp->nlp_rpi);
James Smart858c9f62007-06-17 19:56:39 -05005542 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005543 phba->fc_stat.elsXmitACC++;
James Smart3772a992009-05-22 14:50:54 -04005544 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) == IOCB_ERROR)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005545 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005546 return;
5547}
5548
James Smarte59058c2008-08-24 21:49:00 -04005549/**
James Smart12265f62010-10-22 11:05:53 -04005550 * lpfc_els_rcv_rls - Process an unsolicited rls iocb
5551 * @vport: pointer to a host virtual N_Port data structure.
5552 * @cmdiocb: pointer to lpfc command iocb data structure.
5553 * @ndlp: pointer to a node-list data structure.
5554 *
5555 * This routine processes Read Port Status (RPL) IOCB received as an
5556 * ELS unsolicited event. It first checks the remote port state. If the
5557 * remote port is not in NLP_STE_UNMAPPED_NODE state or NLP_STE_MAPPED_NODE
5558 * state, it invokes the lpfc_els_rsl_reject() routine to send the reject
5559 * response. Otherwise, it issue the MBX_READ_LNK_STAT mailbox command
5560 * for reading the HBA link statistics. It is for the callback function,
5561 * lpfc_els_rsp_rls_acc(), set to the MBX_READ_LNK_STAT mailbox command
5562 * to actually sending out RPL Accept (ACC) response.
5563 *
5564 * Return codes
5565 * 0 - Successfully processed rls iocb (currently always return 0)
5566 **/
5567static int
5568lpfc_els_rcv_rls(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
5569 struct lpfc_nodelist *ndlp)
5570{
5571 struct lpfc_hba *phba = vport->phba;
5572 LPFC_MBOXQ_t *mbox;
5573 struct lpfc_dmabuf *pcmd;
5574 struct ls_rjt stat;
5575
5576 if ((ndlp->nlp_state != NLP_STE_UNMAPPED_NODE) &&
5577 (ndlp->nlp_state != NLP_STE_MAPPED_NODE))
5578 /* reject the unsolicited RPS request and done with it */
5579 goto reject_out;
5580
5581 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
5582
5583 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_ATOMIC);
5584 if (mbox) {
5585 lpfc_read_lnk_stat(phba, mbox);
James Smart7851fe22011-07-22 18:36:52 -04005586 mbox->context1 = (void *)((unsigned long)
5587 ((cmdiocb->iocb.unsli3.rcvsli3.ox_id << 16) |
5588 cmdiocb->iocb.ulpContext)); /* rx_id */
James Smart12265f62010-10-22 11:05:53 -04005589 mbox->context2 = lpfc_nlp_get(ndlp);
5590 mbox->vport = vport;
5591 mbox->mbox_cmpl = lpfc_els_rsp_rls_acc;
5592 if (lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT)
5593 != MBX_NOT_FINISHED)
5594 /* Mbox completion will send ELS Response */
5595 return 0;
5596 /* Decrement reference count used for the failed mbox
5597 * command.
5598 */
5599 lpfc_nlp_put(ndlp);
5600 mempool_free(mbox, phba->mbox_mem_pool);
5601 }
5602reject_out:
5603 /* issue rejection response */
5604 stat.un.b.lsRjtRsvd0 = 0;
5605 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
5606 stat.un.b.lsRjtRsnCodeExp = LSEXP_CANT_GIVE_DATA;
5607 stat.un.b.vendorUnique = 0;
5608 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
5609 return 0;
5610}
5611
5612/**
5613 * lpfc_els_rcv_rtv - Process an unsolicited rtv iocb
5614 * @vport: pointer to a host virtual N_Port data structure.
5615 * @cmdiocb: pointer to lpfc command iocb data structure.
5616 * @ndlp: pointer to a node-list data structure.
5617 *
5618 * This routine processes Read Timout Value (RTV) IOCB received as an
5619 * ELS unsolicited event. It first checks the remote port state. If the
5620 * remote port is not in NLP_STE_UNMAPPED_NODE state or NLP_STE_MAPPED_NODE
5621 * state, it invokes the lpfc_els_rsl_reject() routine to send the reject
5622 * response. Otherwise, it sends the Accept(ACC) response to a Read Timeout
5623 * Value (RTV) unsolicited IOCB event.
5624 *
5625 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
5626 * will be incremented by 1 for holding the ndlp and the reference to ndlp
5627 * will be stored into the context1 field of the IOCB for the completion
5628 * callback function to the RPS Accept Response ELS IOCB command.
5629 *
5630 * Return codes
5631 * 0 - Successfully processed rtv iocb (currently always return 0)
5632 **/
5633static int
5634lpfc_els_rcv_rtv(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
5635 struct lpfc_nodelist *ndlp)
5636{
5637 struct lpfc_hba *phba = vport->phba;
5638 struct ls_rjt stat;
5639 struct RTV_RSP *rtv_rsp;
5640 uint8_t *pcmd;
5641 struct lpfc_iocbq *elsiocb;
5642 uint32_t cmdsize;
5643
5644
5645 if ((ndlp->nlp_state != NLP_STE_UNMAPPED_NODE) &&
5646 (ndlp->nlp_state != NLP_STE_MAPPED_NODE))
5647 /* reject the unsolicited RPS request and done with it */
5648 goto reject_out;
5649
5650 cmdsize = sizeof(struct RTV_RSP) + sizeof(uint32_t);
5651 elsiocb = lpfc_prep_els_iocb(phba->pport, 0, cmdsize,
5652 lpfc_max_els_tries, ndlp,
5653 ndlp->nlp_DID, ELS_CMD_ACC);
5654
5655 if (!elsiocb)
5656 return 1;
5657
5658 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
5659 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
5660 pcmd += sizeof(uint32_t); /* Skip past command */
5661
5662 /* use the command's xri in the response */
James Smart7851fe22011-07-22 18:36:52 -04005663 elsiocb->iocb.ulpContext = cmdiocb->iocb.ulpContext; /* Xri / rx_id */
5664 elsiocb->iocb.unsli3.rcvsli3.ox_id = cmdiocb->iocb.unsli3.rcvsli3.ox_id;
James Smart12265f62010-10-22 11:05:53 -04005665
5666 rtv_rsp = (struct RTV_RSP *)pcmd;
5667
5668 /* populate RTV payload */
5669 rtv_rsp->ratov = cpu_to_be32(phba->fc_ratov * 1000); /* report msecs */
5670 rtv_rsp->edtov = cpu_to_be32(phba->fc_edtov);
5671 bf_set(qtov_edtovres, rtv_rsp, phba->fc_edtovResol ? 1 : 0);
5672 bf_set(qtov_rttov, rtv_rsp, 0); /* Field is for FC ONLY */
5673 rtv_rsp->qtov = cpu_to_be32(rtv_rsp->qtov);
5674
5675 /* Xmit ELS RLS ACC response tag <ulpIoTag> */
5676 lpfc_printf_vlog(ndlp->vport, KERN_INFO, LOG_ELS,
5677 "2875 Xmit ELS RTV ACC response tag x%x xri x%x, "
5678 "did x%x, nlp_flag x%x, nlp_state x%x, rpi x%x, "
5679 "Data: x%x x%x x%x\n",
5680 elsiocb->iotag, elsiocb->iocb.ulpContext,
5681 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
5682 ndlp->nlp_rpi,
5683 rtv_rsp->ratov, rtv_rsp->edtov, rtv_rsp->qtov);
5684 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
5685 phba->fc_stat.elsXmitACC++;
5686 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) == IOCB_ERROR)
5687 lpfc_els_free_iocb(phba, elsiocb);
5688 return 0;
5689
5690reject_out:
5691 /* issue rejection response */
5692 stat.un.b.lsRjtRsvd0 = 0;
5693 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
5694 stat.un.b.lsRjtRsnCodeExp = LSEXP_CANT_GIVE_DATA;
5695 stat.un.b.vendorUnique = 0;
5696 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
5697 return 0;
5698}
5699
5700/* lpfc_els_rcv_rps - Process an unsolicited rps iocb
James Smarte59058c2008-08-24 21:49:00 -04005701 * @vport: pointer to a host virtual N_Port data structure.
5702 * @cmdiocb: pointer to lpfc command iocb data structure.
5703 * @ndlp: pointer to a node-list data structure.
5704 *
5705 * This routine processes Read Port Status (RPS) IOCB received as an
5706 * ELS unsolicited event. It first checks the remote port state. If the
5707 * remote port is not in NLP_STE_UNMAPPED_NODE state or NLP_STE_MAPPED_NODE
5708 * state, it invokes the lpfc_els_rsp_reject() routine to send the reject
5709 * response. Otherwise, it issue the MBX_READ_LNK_STAT mailbox command
5710 * for reading the HBA link statistics. It is for the callback function,
5711 * lpfc_els_rsp_rps_acc(), set to the MBX_READ_LNK_STAT mailbox command
5712 * to actually sending out RPS Accept (ACC) response.
5713 *
5714 * Return codes
5715 * 0 - Successfully processed rps iocb (currently always return 0)
5716 **/
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005717static int
James Smart2e0fef82007-06-17 19:56:36 -05005718lpfc_els_rcv_rps(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
5719 struct lpfc_nodelist *ndlp)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005720{
James Smart2e0fef82007-06-17 19:56:36 -05005721 struct lpfc_hba *phba = vport->phba;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005722 uint32_t *lp;
5723 uint8_t flag;
5724 LPFC_MBOXQ_t *mbox;
5725 struct lpfc_dmabuf *pcmd;
5726 RPS *rps;
5727 struct ls_rjt stat;
5728
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05005729 if ((ndlp->nlp_state != NLP_STE_UNMAPPED_NODE) &&
James Smart90160e02008-08-24 21:49:45 -04005730 (ndlp->nlp_state != NLP_STE_MAPPED_NODE))
5731 /* reject the unsolicited RPS request and done with it */
5732 goto reject_out;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005733
5734 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
5735 lp = (uint32_t *) pcmd->virt;
5736 flag = (be32_to_cpu(*lp++) & 0xf);
5737 rps = (RPS *) lp;
5738
5739 if ((flag == 0) ||
5740 ((flag == 1) && (be32_to_cpu(rps->un.portNum) == 0)) ||
James Smart2e0fef82007-06-17 19:56:36 -05005741 ((flag == 2) && (memcmp(&rps->un.portName, &vport->fc_portname,
James Smart92d7f7b2007-06-17 19:56:38 -05005742 sizeof(struct lpfc_name)) == 0))) {
James Smart2e0fef82007-06-17 19:56:36 -05005743
James Smart92d7f7b2007-06-17 19:56:38 -05005744 printk("Fix me....\n");
5745 dump_stack();
James Smart2e0fef82007-06-17 19:56:36 -05005746 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_ATOMIC);
5747 if (mbox) {
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005748 lpfc_read_lnk_stat(phba, mbox);
James Smart7851fe22011-07-22 18:36:52 -04005749 mbox->context1 = (void *)((unsigned long)
5750 ((cmdiocb->iocb.unsli3.rcvsli3.ox_id << 16) |
5751 cmdiocb->iocb.ulpContext)); /* rx_id */
James Smart329f9bc2007-04-25 09:53:01 -04005752 mbox->context2 = lpfc_nlp_get(ndlp);
James Smart92d7f7b2007-06-17 19:56:38 -05005753 mbox->vport = vport;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005754 mbox->mbox_cmpl = lpfc_els_rsp_rps_acc;
James Smartfa4066b2008-01-11 01:53:27 -05005755 if (lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT)
James Smart0b727fe2007-10-27 13:37:25 -04005756 != MBX_NOT_FINISHED)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005757 /* Mbox completion will send ELS Response */
5758 return 0;
James Smartfa4066b2008-01-11 01:53:27 -05005759 /* Decrement reference count used for the failed mbox
5760 * command.
5761 */
James Smart329f9bc2007-04-25 09:53:01 -04005762 lpfc_nlp_put(ndlp);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005763 mempool_free(mbox, phba->mbox_mem_pool);
5764 }
5765 }
James Smart90160e02008-08-24 21:49:45 -04005766
5767reject_out:
5768 /* issue rejection response */
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005769 stat.un.b.lsRjtRsvd0 = 0;
5770 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
5771 stat.un.b.lsRjtRsnCodeExp = LSEXP_CANT_GIVE_DATA;
5772 stat.un.b.vendorUnique = 0;
James Smart858c9f62007-06-17 19:56:39 -05005773 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005774 return 0;
5775}
5776
James Smart19ca7602010-11-20 23:11:55 -05005777/* lpfc_issue_els_rrq - Process an unsolicited rps iocb
5778 * @vport: pointer to a host virtual N_Port data structure.
5779 * @ndlp: pointer to a node-list data structure.
5780 * @did: DID of the target.
5781 * @rrq: Pointer to the rrq struct.
5782 *
5783 * Build a ELS RRQ command and send it to the target. If the issue_iocb is
5784 * Successful the the completion handler will clear the RRQ.
5785 *
5786 * Return codes
5787 * 0 - Successfully sent rrq els iocb.
5788 * 1 - Failed to send rrq els iocb.
5789 **/
5790static int
5791lpfc_issue_els_rrq(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
5792 uint32_t did, struct lpfc_node_rrq *rrq)
5793{
5794 struct lpfc_hba *phba = vport->phba;
5795 struct RRQ *els_rrq;
5796 IOCB_t *icmd;
5797 struct lpfc_iocbq *elsiocb;
5798 uint8_t *pcmd;
5799 uint16_t cmdsize;
5800 int ret;
5801
5802
5803 if (ndlp != rrq->ndlp)
5804 ndlp = rrq->ndlp;
5805 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp))
5806 return 1;
5807
5808 /* If ndlp is not NULL, we will bump the reference count on it */
5809 cmdsize = (sizeof(uint32_t) + sizeof(struct RRQ));
5810 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, 0, ndlp, did,
5811 ELS_CMD_RRQ);
5812 if (!elsiocb)
5813 return 1;
5814
5815 icmd = &elsiocb->iocb;
5816 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
5817
5818 /* For RRQ request, remainder of payload is Exchange IDs */
5819 *((uint32_t *) (pcmd)) = ELS_CMD_RRQ;
5820 pcmd += sizeof(uint32_t);
5821 els_rrq = (struct RRQ *) pcmd;
5822
James Smartee0f4fe2012-05-09 21:19:14 -04005823 bf_set(rrq_oxid, els_rrq, phba->sli4_hba.xri_ids[rrq->xritag]);
James Smart19ca7602010-11-20 23:11:55 -05005824 bf_set(rrq_rxid, els_rrq, rrq->rxid);
5825 bf_set(rrq_did, els_rrq, vport->fc_myDID);
5826 els_rrq->rrq = cpu_to_be32(els_rrq->rrq);
5827 els_rrq->rrq_exchg = cpu_to_be32(els_rrq->rrq_exchg);
5828
5829
5830 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
5831 "Issue RRQ: did:x%x",
5832 did, rrq->xritag, rrq->rxid);
5833 elsiocb->context_un.rrq = rrq;
5834 elsiocb->iocb_cmpl = lpfc_cmpl_els_rrq;
5835 ret = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
5836
5837 if (ret == IOCB_ERROR) {
5838 lpfc_els_free_iocb(phba, elsiocb);
5839 return 1;
5840 }
5841 return 0;
5842}
5843
5844/**
5845 * lpfc_send_rrq - Sends ELS RRQ if needed.
5846 * @phba: pointer to lpfc hba data structure.
5847 * @rrq: pointer to the active rrq.
5848 *
5849 * This routine will call the lpfc_issue_els_rrq if the rrq is
5850 * still active for the xri. If this function returns a failure then
5851 * the caller needs to clean up the RRQ by calling lpfc_clr_active_rrq.
5852 *
5853 * Returns 0 Success.
5854 * 1 Failure.
5855 **/
5856int
5857lpfc_send_rrq(struct lpfc_hba *phba, struct lpfc_node_rrq *rrq)
5858{
5859 struct lpfc_nodelist *ndlp = lpfc_findnode_did(rrq->vport,
5860 rrq->nlp_DID);
5861 if (lpfc_test_rrq_active(phba, ndlp, rrq->xritag))
5862 return lpfc_issue_els_rrq(rrq->vport, ndlp,
5863 rrq->nlp_DID, rrq);
5864 else
5865 return 1;
5866}
5867
James Smarte59058c2008-08-24 21:49:00 -04005868/**
James Smart3621a712009-04-06 18:47:14 -04005869 * lpfc_els_rsp_rpl_acc - Issue an accept rpl els command
James Smarte59058c2008-08-24 21:49:00 -04005870 * @vport: pointer to a host virtual N_Port data structure.
5871 * @cmdsize: size of the ELS command.
5872 * @oldiocb: pointer to the original lpfc command iocb data structure.
5873 * @ndlp: pointer to a node-list data structure.
5874 *
5875 * This routine issuees an Accept (ACC) Read Port List (RPL) ELS command.
5876 * It is to be called by the lpfc_els_rcv_rpl() routine to accept the RPL.
5877 *
5878 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
5879 * will be incremented by 1 for holding the ndlp and the reference to ndlp
5880 * will be stored into the context1 field of the IOCB for the completion
5881 * callback function to the RPL Accept Response ELS command.
5882 *
5883 * Return code
5884 * 0 - Successfully issued ACC RPL ELS command
5885 * 1 - Failed to issue ACC RPL ELS command
5886 **/
Jamie Wellnitz082c0262006-02-28 19:25:30 -05005887static int
James Smart2e0fef82007-06-17 19:56:36 -05005888lpfc_els_rsp_rpl_acc(struct lpfc_vport *vport, uint16_t cmdsize,
5889 struct lpfc_iocbq *oldiocb, struct lpfc_nodelist *ndlp)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005890{
James Smart2e0fef82007-06-17 19:56:36 -05005891 struct lpfc_hba *phba = vport->phba;
5892 IOCB_t *icmd, *oldcmd;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005893 RPL_RSP rpl_rsp;
5894 struct lpfc_iocbq *elsiocb;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005895 uint8_t *pcmd;
5896
James Smart2e0fef82007-06-17 19:56:36 -05005897 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry, ndlp,
5898 ndlp->nlp_DID, ELS_CMD_ACC);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005899
James Smart488d1462006-03-07 15:02:37 -05005900 if (!elsiocb)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005901 return 1;
James Smart488d1462006-03-07 15:02:37 -05005902
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005903 icmd = &elsiocb->iocb;
5904 oldcmd = &oldiocb->iocb;
James Smart7851fe22011-07-22 18:36:52 -04005905 icmd->ulpContext = oldcmd->ulpContext; /* Xri / rx_id */
5906 icmd->unsli3.rcvsli3.ox_id = oldcmd->unsli3.rcvsli3.ox_id;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005907
5908 pcmd = (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
5909 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
James Smart92d7f7b2007-06-17 19:56:38 -05005910 pcmd += sizeof(uint16_t);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005911 *((uint16_t *)(pcmd)) = be16_to_cpu(cmdsize);
5912 pcmd += sizeof(uint16_t);
5913
5914 /* Setup the RPL ACC payload */
5915 rpl_rsp.listLen = be32_to_cpu(1);
5916 rpl_rsp.index = 0;
5917 rpl_rsp.port_num_blk.portNum = 0;
James Smart2e0fef82007-06-17 19:56:36 -05005918 rpl_rsp.port_num_blk.portID = be32_to_cpu(vport->fc_myDID);
5919 memcpy(&rpl_rsp.port_num_blk.portName, &vport->fc_portname,
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005920 sizeof(struct lpfc_name));
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005921 memcpy(pcmd, &rpl_rsp, cmdsize - sizeof(uint32_t));
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005922 /* Xmit ELS RPL ACC response tag <ulpIoTag> */
James Smarte8b62012007-08-02 11:10:09 -04005923 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
5924 "0120 Xmit ELS RPL ACC response tag x%x "
5925 "xri x%x, did x%x, nlp_flag x%x, nlp_state x%x, "
5926 "rpi x%x\n",
5927 elsiocb->iotag, elsiocb->iocb.ulpContext,
5928 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
5929 ndlp->nlp_rpi);
James Smart858c9f62007-06-17 19:56:39 -05005930 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005931 phba->fc_stat.elsXmitACC++;
James Smart3772a992009-05-22 14:50:54 -04005932 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) ==
5933 IOCB_ERROR) {
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005934 lpfc_els_free_iocb(phba, elsiocb);
5935 return 1;
5936 }
5937 return 0;
5938}
5939
James Smarte59058c2008-08-24 21:49:00 -04005940/**
James Smart3621a712009-04-06 18:47:14 -04005941 * lpfc_els_rcv_rpl - Process an unsolicited rpl iocb
James Smarte59058c2008-08-24 21:49:00 -04005942 * @vport: pointer to a host virtual N_Port data structure.
5943 * @cmdiocb: pointer to lpfc command iocb data structure.
5944 * @ndlp: pointer to a node-list data structure.
5945 *
5946 * This routine processes Read Port List (RPL) IOCB received as an ELS
5947 * unsolicited event. It first checks the remote port state. If the remote
5948 * port is not in NLP_STE_UNMAPPED_NODE and NLP_STE_MAPPED_NODE states, it
5949 * invokes the lpfc_els_rsp_reject() routine to send reject response.
5950 * Otherwise, this routine then invokes the lpfc_els_rsp_rpl_acc() routine
5951 * to accept the RPL.
5952 *
5953 * Return code
5954 * 0 - Successfully processed rpl iocb (currently always return 0)
5955 **/
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005956static int
James Smart2e0fef82007-06-17 19:56:36 -05005957lpfc_els_rcv_rpl(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
5958 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05005959{
5960 struct lpfc_dmabuf *pcmd;
5961 uint32_t *lp;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005962 uint32_t maxsize;
5963 uint16_t cmdsize;
5964 RPL *rpl;
5965 struct ls_rjt stat;
dea31012005-04-17 16:05:31 -05005966
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05005967 if ((ndlp->nlp_state != NLP_STE_UNMAPPED_NODE) &&
5968 (ndlp->nlp_state != NLP_STE_MAPPED_NODE)) {
James Smart90160e02008-08-24 21:49:45 -04005969 /* issue rejection response */
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005970 stat.un.b.lsRjtRsvd0 = 0;
5971 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
5972 stat.un.b.lsRjtRsnCodeExp = LSEXP_CANT_GIVE_DATA;
5973 stat.un.b.vendorUnique = 0;
James Smart858c9f62007-06-17 19:56:39 -05005974 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp,
5975 NULL);
James Smart90160e02008-08-24 21:49:45 -04005976 /* rejected the unsolicited RPL request and done with it */
5977 return 0;
dea31012005-04-17 16:05:31 -05005978 }
5979
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005980 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
5981 lp = (uint32_t *) pcmd->virt;
5982 rpl = (RPL *) (lp + 1);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005983 maxsize = be32_to_cpu(rpl->maxsize);
5984
5985 /* We support only one port */
5986 if ((rpl->index == 0) &&
5987 ((maxsize == 0) ||
5988 ((maxsize * sizeof(uint32_t)) >= sizeof(RPL_RSP)))) {
5989 cmdsize = sizeof(uint32_t) + sizeof(RPL_RSP);
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05005990 } else {
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005991 cmdsize = sizeof(uint32_t) + maxsize * sizeof(uint32_t);
5992 }
James Smart2e0fef82007-06-17 19:56:36 -05005993 lpfc_els_rsp_rpl_acc(vport, cmdsize, cmdiocb, ndlp);
dea31012005-04-17 16:05:31 -05005994
5995 return 0;
5996}
5997
James Smarte59058c2008-08-24 21:49:00 -04005998/**
James Smart3621a712009-04-06 18:47:14 -04005999 * lpfc_els_rcv_farp - Process an unsolicited farp request els command
James Smarte59058c2008-08-24 21:49:00 -04006000 * @vport: pointer to a virtual N_Port data structure.
6001 * @cmdiocb: pointer to lpfc command iocb data structure.
6002 * @ndlp: pointer to a node-list data structure.
6003 *
6004 * This routine processes Fibre Channel Address Resolution Protocol
6005 * (FARP) Request IOCB received as an ELS unsolicited event. Currently,
6006 * the lpfc driver only supports matching on WWPN or WWNN for FARP. As such,
6007 * FARP_MATCH_PORT flag and FARP_MATCH_NODE flag are checked against the
6008 * Match Flag in the FARP request IOCB: if FARP_MATCH_PORT flag is set, the
6009 * remote PortName is compared against the FC PortName stored in the @vport
6010 * data structure; if FARP_MATCH_NODE flag is set, the remote NodeName is
6011 * compared against the FC NodeName stored in the @vport data structure.
6012 * If any of these matches and the FARP_REQUEST_FARPR flag is set in the
6013 * FARP request IOCB Response Flag, the lpfc_issue_els_farpr() routine is
6014 * invoked to send out FARP Response to the remote node. Before sending the
6015 * FARP Response, however, the FARP_REQUEST_PLOGI flag is check in the FARP
6016 * request IOCB Response Flag and, if it is set, the lpfc_issue_els_plogi()
6017 * routine is invoked to log into the remote port first.
6018 *
6019 * Return code
6020 * 0 - Either the FARP Match Mode not supported or successfully processed
6021 **/
dea31012005-04-17 16:05:31 -05006022static int
James Smart2e0fef82007-06-17 19:56:36 -05006023lpfc_els_rcv_farp(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
6024 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05006025{
6026 struct lpfc_dmabuf *pcmd;
6027 uint32_t *lp;
6028 IOCB_t *icmd;
6029 FARP *fp;
6030 uint32_t cmd, cnt, did;
6031
6032 icmd = &cmdiocb->iocb;
6033 did = icmd->un.elsreq64.remoteID;
6034 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
6035 lp = (uint32_t *) pcmd->virt;
6036
6037 cmd = *lp++;
6038 fp = (FARP *) lp;
dea31012005-04-17 16:05:31 -05006039 /* FARP-REQ received from DID <did> */
James Smarte8b62012007-08-02 11:10:09 -04006040 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
6041 "0601 FARP-REQ received from DID x%x\n", did);
dea31012005-04-17 16:05:31 -05006042 /* We will only support match on WWPN or WWNN */
6043 if (fp->Mflags & ~(FARP_MATCH_NODE | FARP_MATCH_PORT)) {
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05006044 return 0;
dea31012005-04-17 16:05:31 -05006045 }
6046
6047 cnt = 0;
6048 /* If this FARP command is searching for my portname */
6049 if (fp->Mflags & FARP_MATCH_PORT) {
James Smart2e0fef82007-06-17 19:56:36 -05006050 if (memcmp(&fp->RportName, &vport->fc_portname,
James Smart92d7f7b2007-06-17 19:56:38 -05006051 sizeof(struct lpfc_name)) == 0)
dea31012005-04-17 16:05:31 -05006052 cnt = 1;
6053 }
6054
6055 /* If this FARP command is searching for my nodename */
6056 if (fp->Mflags & FARP_MATCH_NODE) {
James Smart2e0fef82007-06-17 19:56:36 -05006057 if (memcmp(&fp->RnodeName, &vport->fc_nodename,
James Smart92d7f7b2007-06-17 19:56:38 -05006058 sizeof(struct lpfc_name)) == 0)
dea31012005-04-17 16:05:31 -05006059 cnt = 1;
6060 }
6061
6062 if (cnt) {
6063 if ((ndlp->nlp_state == NLP_STE_UNMAPPED_NODE) ||
6064 (ndlp->nlp_state == NLP_STE_MAPPED_NODE)) {
6065 /* Log back into the node before sending the FARP. */
6066 if (fp->Rflags & FARP_REQUEST_PLOGI) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05006067 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05006068 lpfc_nlp_set_state(vport, ndlp,
James Smartde0c5b32007-04-25 09:52:27 -04006069 NLP_STE_PLOGI_ISSUE);
James Smart2e0fef82007-06-17 19:56:36 -05006070 lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0);
dea31012005-04-17 16:05:31 -05006071 }
6072
6073 /* Send a FARP response to that node */
James Smart2e0fef82007-06-17 19:56:36 -05006074 if (fp->Rflags & FARP_REQUEST_FARPR)
6075 lpfc_issue_els_farpr(vport, did, 0);
dea31012005-04-17 16:05:31 -05006076 }
6077 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05006078 return 0;
dea31012005-04-17 16:05:31 -05006079}
6080
James Smarte59058c2008-08-24 21:49:00 -04006081/**
James Smart3621a712009-04-06 18:47:14 -04006082 * lpfc_els_rcv_farpr - Process an unsolicited farp response iocb
James Smarte59058c2008-08-24 21:49:00 -04006083 * @vport: pointer to a host virtual N_Port data structure.
6084 * @cmdiocb: pointer to lpfc command iocb data structure.
6085 * @ndlp: pointer to a node-list data structure.
6086 *
6087 * This routine processes Fibre Channel Address Resolution Protocol
6088 * Response (FARPR) IOCB received as an ELS unsolicited event. It simply
6089 * invokes the lpfc_els_rsp_acc() routine to the remote node to accept
6090 * the FARP response request.
6091 *
6092 * Return code
6093 * 0 - Successfully processed FARPR IOCB (currently always return 0)
6094 **/
dea31012005-04-17 16:05:31 -05006095static int
James Smart2e0fef82007-06-17 19:56:36 -05006096lpfc_els_rcv_farpr(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
6097 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05006098{
6099 struct lpfc_dmabuf *pcmd;
6100 uint32_t *lp;
6101 IOCB_t *icmd;
6102 uint32_t cmd, did;
6103
6104 icmd = &cmdiocb->iocb;
6105 did = icmd->un.elsreq64.remoteID;
6106 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
6107 lp = (uint32_t *) pcmd->virt;
6108
6109 cmd = *lp++;
6110 /* FARP-RSP received from DID <did> */
James Smarte8b62012007-08-02 11:10:09 -04006111 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
6112 "0600 FARP-RSP received from DID x%x\n", did);
dea31012005-04-17 16:05:31 -05006113 /* ACCEPT the Farp resp request */
James Smart51ef4c22007-08-02 11:10:31 -04006114 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
dea31012005-04-17 16:05:31 -05006115
6116 return 0;
6117}
6118
James Smarte59058c2008-08-24 21:49:00 -04006119/**
James Smart3621a712009-04-06 18:47:14 -04006120 * lpfc_els_rcv_fan - Process an unsolicited fan iocb command
James Smarte59058c2008-08-24 21:49:00 -04006121 * @vport: pointer to a host virtual N_Port data structure.
6122 * @cmdiocb: pointer to lpfc command iocb data structure.
6123 * @fan_ndlp: pointer to a node-list data structure.
6124 *
6125 * This routine processes a Fabric Address Notification (FAN) IOCB
6126 * command received as an ELS unsolicited event. The FAN ELS command will
6127 * only be processed on a physical port (i.e., the @vport represents the
6128 * physical port). The fabric NodeName and PortName from the FAN IOCB are
6129 * compared against those in the phba data structure. If any of those is
6130 * different, the lpfc_initial_flogi() routine is invoked to initialize
6131 * Fabric Login (FLOGI) to the fabric to start the discover over. Otherwise,
6132 * if both of those are identical, the lpfc_issue_fabric_reglogin() routine
6133 * is invoked to register login to the fabric.
6134 *
6135 * Return code
6136 * 0 - Successfully processed fan iocb (currently always return 0).
6137 **/
dea31012005-04-17 16:05:31 -05006138static int
James Smart2e0fef82007-06-17 19:56:36 -05006139lpfc_els_rcv_fan(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
6140 struct lpfc_nodelist *fan_ndlp)
dea31012005-04-17 16:05:31 -05006141{
James Smart2e0fef82007-06-17 19:56:36 -05006142 struct lpfc_hba *phba = vport->phba;
James Smart0d2b6b82008-06-14 22:52:47 -04006143 uint32_t *lp;
6144 FAN *fp;
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05006145
James Smart0d2b6b82008-06-14 22:52:47 -04006146 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS, "0265 FAN received\n");
6147 lp = (uint32_t *)((struct lpfc_dmabuf *)cmdiocb->context2)->virt;
6148 fp = (FAN *) ++lp;
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05006149 /* FAN received; Fan does not have a reply sequence */
James Smart0d2b6b82008-06-14 22:52:47 -04006150 if ((vport == phba->pport) &&
6151 (vport->port_state == LPFC_LOCAL_CFG_LINK)) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05006152 if ((memcmp(&phba->fc_fabparam.nodeName, &fp->FnodeName,
James Smart0d2b6b82008-06-14 22:52:47 -04006153 sizeof(struct lpfc_name))) ||
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05006154 (memcmp(&phba->fc_fabparam.portName, &fp->FportName,
James Smart0d2b6b82008-06-14 22:52:47 -04006155 sizeof(struct lpfc_name)))) {
6156 /* This port has switched fabrics. FLOGI is required */
James Smart76a95d72010-11-20 23:11:48 -05006157 lpfc_issue_init_vfi(vport);
James Smart0d2b6b82008-06-14 22:52:47 -04006158 } else {
6159 /* FAN verified - skip FLOGI */
6160 vport->fc_myDID = vport->fc_prevDID;
James Smart6fb120a2009-05-22 14:52:59 -04006161 if (phba->sli_rev < LPFC_SLI_REV4)
6162 lpfc_issue_fabric_reglogin(vport);
James Smart1b511972011-12-13 13:23:09 -05006163 else {
6164 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
6165 "3138 Need register VFI: (x%x/%x)\n",
6166 vport->fc_prevDID, vport->fc_myDID);
James Smart6fb120a2009-05-22 14:52:59 -04006167 lpfc_issue_reg_vfi(vport);
James Smart1b511972011-12-13 13:23:09 -05006168 }
dea31012005-04-17 16:05:31 -05006169 }
dea31012005-04-17 16:05:31 -05006170 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05006171 return 0;
dea31012005-04-17 16:05:31 -05006172}
6173
James Smarte59058c2008-08-24 21:49:00 -04006174/**
James Smart3621a712009-04-06 18:47:14 -04006175 * lpfc_els_timeout - Handler funciton to the els timer
James Smarte59058c2008-08-24 21:49:00 -04006176 * @ptr: holder for the timer function associated data.
6177 *
6178 * This routine is invoked by the ELS timer after timeout. It posts the ELS
6179 * timer timeout event by setting the WORKER_ELS_TMO bit to the work port
6180 * event bitmap and then invokes the lpfc_worker_wake_up() routine to wake
6181 * up the worker thread. It is for the worker thread to invoke the routine
6182 * lpfc_els_timeout_handler() to work on the posted event WORKER_ELS_TMO.
6183 **/
dea31012005-04-17 16:05:31 -05006184void
6185lpfc_els_timeout(unsigned long ptr)
6186{
James Smart2e0fef82007-06-17 19:56:36 -05006187 struct lpfc_vport *vport = (struct lpfc_vport *) ptr;
6188 struct lpfc_hba *phba = vport->phba;
James Smart5e9d9b82008-06-14 22:52:53 -04006189 uint32_t tmo_posted;
dea31012005-04-17 16:05:31 -05006190 unsigned long iflag;
6191
James Smart2e0fef82007-06-17 19:56:36 -05006192 spin_lock_irqsave(&vport->work_port_lock, iflag);
James Smart5e9d9b82008-06-14 22:52:53 -04006193 tmo_posted = vport->work_port_events & WORKER_ELS_TMO;
6194 if (!tmo_posted)
James Smart2e0fef82007-06-17 19:56:36 -05006195 vport->work_port_events |= WORKER_ELS_TMO;
James Smart5e9d9b82008-06-14 22:52:53 -04006196 spin_unlock_irqrestore(&vport->work_port_lock, iflag);
James Smart92d7f7b2007-06-17 19:56:38 -05006197
James Smart5e9d9b82008-06-14 22:52:53 -04006198 if (!tmo_posted)
6199 lpfc_worker_wake_up(phba);
dea31012005-04-17 16:05:31 -05006200 return;
6201}
6202
James Smart2a9bf3d2010-06-07 15:24:45 -04006203
James Smarte59058c2008-08-24 21:49:00 -04006204/**
James Smart3621a712009-04-06 18:47:14 -04006205 * lpfc_els_timeout_handler - Process an els timeout event
James Smarte59058c2008-08-24 21:49:00 -04006206 * @vport: pointer to a virtual N_Port data structure.
6207 *
6208 * This routine is the actual handler function that processes an ELS timeout
6209 * event. It walks the ELS ring to get and abort all the IOCBs (except the
6210 * ABORT/CLOSE/FARP/FARPR/FDISC), which are associated with the @vport by
6211 * invoking the lpfc_sli_issue_abort_iotag() routine.
6212 **/
dea31012005-04-17 16:05:31 -05006213void
James Smart2e0fef82007-06-17 19:56:36 -05006214lpfc_els_timeout_handler(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05006215{
James Smart2e0fef82007-06-17 19:56:36 -05006216 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05006217 struct lpfc_sli_ring *pring;
6218 struct lpfc_iocbq *tmp_iocb, *piocb;
6219 IOCB_t *cmd = NULL;
6220 struct lpfc_dmabuf *pcmd;
James Smart2e0fef82007-06-17 19:56:36 -05006221 uint32_t els_command = 0;
dea31012005-04-17 16:05:31 -05006222 uint32_t timeout;
James Smart2e0fef82007-06-17 19:56:36 -05006223 uint32_t remote_ID = 0xffffffff;
James Smart2a9bf3d2010-06-07 15:24:45 -04006224 LIST_HEAD(txcmplq_completions);
6225 LIST_HEAD(abort_list);
dea31012005-04-17 16:05:31 -05006226
James Smart2a9bf3d2010-06-07 15:24:45 -04006227
dea31012005-04-17 16:05:31 -05006228 timeout = (uint32_t)(phba->fc_ratov << 1);
6229
6230 pring = &phba->sli.ring[LPFC_ELS_RING];
dea31012005-04-17 16:05:31 -05006231
James Smart2a9bf3d2010-06-07 15:24:45 -04006232 spin_lock_irq(&phba->hbalock);
6233 list_splice_init(&pring->txcmplq, &txcmplq_completions);
6234 spin_unlock_irq(&phba->hbalock);
6235
6236 list_for_each_entry_safe(piocb, tmp_iocb, &txcmplq_completions, list) {
dea31012005-04-17 16:05:31 -05006237 cmd = &piocb->iocb;
6238
James Smart2e0fef82007-06-17 19:56:36 -05006239 if ((piocb->iocb_flag & LPFC_IO_LIBDFC) != 0 ||
6240 piocb->iocb.ulpCommand == CMD_ABORT_XRI_CN ||
6241 piocb->iocb.ulpCommand == CMD_CLOSE_XRI_CN)
dea31012005-04-17 16:05:31 -05006242 continue;
James Smart2e0fef82007-06-17 19:56:36 -05006243
6244 if (piocb->vport != vport)
6245 continue;
6246
dea31012005-04-17 16:05:31 -05006247 pcmd = (struct lpfc_dmabuf *) piocb->context2;
James Smart2e0fef82007-06-17 19:56:36 -05006248 if (pcmd)
6249 els_command = *(uint32_t *) (pcmd->virt);
dea31012005-04-17 16:05:31 -05006250
James Smart92d7f7b2007-06-17 19:56:38 -05006251 if (els_command == ELS_CMD_FARP ||
6252 els_command == ELS_CMD_FARPR ||
6253 els_command == ELS_CMD_FDISC)
dea31012005-04-17 16:05:31 -05006254 continue;
James Smart92d7f7b2007-06-17 19:56:38 -05006255
dea31012005-04-17 16:05:31 -05006256 if (piocb->drvrTimeout > 0) {
James Smart92d7f7b2007-06-17 19:56:38 -05006257 if (piocb->drvrTimeout >= timeout)
dea31012005-04-17 16:05:31 -05006258 piocb->drvrTimeout -= timeout;
James Smart92d7f7b2007-06-17 19:56:38 -05006259 else
dea31012005-04-17 16:05:31 -05006260 piocb->drvrTimeout = 0;
dea31012005-04-17 16:05:31 -05006261 continue;
6262 }
6263
James Smart2e0fef82007-06-17 19:56:36 -05006264 remote_ID = 0xffffffff;
6265 if (cmd->ulpCommand != CMD_GEN_REQUEST64_CR)
dea31012005-04-17 16:05:31 -05006266 remote_ID = cmd->un.elsreq64.remoteID;
James Smart2e0fef82007-06-17 19:56:36 -05006267 else {
6268 struct lpfc_nodelist *ndlp;
6269 ndlp = __lpfc_findnode_rpi(vport, cmd->ulpContext);
James Smart58da1ff2008-04-07 10:15:56 -04006270 if (ndlp && NLP_CHK_NODE_ACT(ndlp))
James Smart2e0fef82007-06-17 19:56:36 -05006271 remote_ID = ndlp->nlp_DID;
dea31012005-04-17 16:05:31 -05006272 }
James Smart2a9bf3d2010-06-07 15:24:45 -04006273 list_add_tail(&piocb->dlist, &abort_list);
dea31012005-04-17 16:05:31 -05006274 }
James Smart2a9bf3d2010-06-07 15:24:45 -04006275 spin_lock_irq(&phba->hbalock);
6276 list_splice(&txcmplq_completions, &pring->txcmplq);
James Smart2e0fef82007-06-17 19:56:36 -05006277 spin_unlock_irq(&phba->hbalock);
James Smart5a0e3262006-07-06 15:49:16 -04006278
James Smart2a9bf3d2010-06-07 15:24:45 -04006279 list_for_each_entry_safe(piocb, tmp_iocb, &abort_list, dlist) {
6280 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
6281 "0127 ELS timeout Data: x%x x%x x%x "
6282 "x%x\n", els_command,
6283 remote_ID, cmd->ulpCommand, cmd->ulpIoTag);
6284 spin_lock_irq(&phba->hbalock);
6285 list_del_init(&piocb->dlist);
6286 lpfc_sli_issue_abort_iotag(phba, pring, piocb);
6287 spin_unlock_irq(&phba->hbalock);
6288 }
6289
James Smart0e9bb8d2013-03-01 16:35:12 -05006290 if (!list_empty(&phba->sli.ring[LPFC_ELS_RING].txcmplq))
James Smart256ec0d2013-04-17 20:14:58 -04006291 mod_timer(&vport->els_tmofunc,
6292 jiffies + msecs_to_jiffies(1000 * timeout));
dea31012005-04-17 16:05:31 -05006293}
6294
James Smarte59058c2008-08-24 21:49:00 -04006295/**
James Smart3621a712009-04-06 18:47:14 -04006296 * lpfc_els_flush_cmd - Clean up the outstanding els commands to a vport
James Smarte59058c2008-08-24 21:49:00 -04006297 * @vport: pointer to a host virtual N_Port data structure.
6298 *
6299 * This routine is used to clean up all the outstanding ELS commands on a
6300 * @vport. It first aborts the @vport by invoking lpfc_fabric_abort_vport()
6301 * routine. After that, it walks the ELS transmit queue to remove all the
6302 * IOCBs with the @vport other than the QUE_RING and ABORT/CLOSE IOCBs. For
6303 * the IOCBs with a non-NULL completion callback function, the callback
6304 * function will be invoked with the status set to IOSTAT_LOCAL_REJECT and
6305 * un.ulpWord[4] set to IOERR_SLI_ABORTED. For IOCBs with a NULL completion
6306 * callback function, the IOCB will simply be released. Finally, it walks
6307 * the ELS transmit completion queue to issue an abort IOCB to any transmit
6308 * completion queue IOCB that is associated with the @vport and is not
6309 * an IOCB from libdfc (i.e., the management plane IOCBs that are not
6310 * part of the discovery state machine) out to HBA by invoking the
6311 * lpfc_sli_issue_abort_iotag() routine. Note that this function issues the
6312 * abort IOCB to any transmit completion queueed IOCB, it does not guarantee
6313 * the IOCBs are aborted when this function returns.
6314 **/
dea31012005-04-17 16:05:31 -05006315void
James Smart2e0fef82007-06-17 19:56:36 -05006316lpfc_els_flush_cmd(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05006317{
James Smart2534ba72007-04-25 09:52:20 -04006318 LIST_HEAD(completions);
James Smart2e0fef82007-06-17 19:56:36 -05006319 struct lpfc_hba *phba = vport->phba;
James Smart329f9bc2007-04-25 09:53:01 -04006320 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
dea31012005-04-17 16:05:31 -05006321 struct lpfc_iocbq *tmp_iocb, *piocb;
6322 IOCB_t *cmd = NULL;
James Smart92d7f7b2007-06-17 19:56:38 -05006323
6324 lpfc_fabric_abort_vport(vport);
dea31012005-04-17 16:05:31 -05006325
James Smart2e0fef82007-06-17 19:56:36 -05006326 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05006327 list_for_each_entry_safe(piocb, tmp_iocb, &pring->txq, list) {
6328 cmd = &piocb->iocb;
6329
6330 if (piocb->iocb_flag & LPFC_IO_LIBDFC) {
6331 continue;
6332 }
6333
6334 /* Do not flush out the QUE_RING and ABORT/CLOSE iocbs */
James Smart329f9bc2007-04-25 09:53:01 -04006335 if (cmd->ulpCommand == CMD_QUE_RING_BUF_CN ||
6336 cmd->ulpCommand == CMD_QUE_RING_BUF64_CN ||
6337 cmd->ulpCommand == CMD_CLOSE_XRI_CN ||
6338 cmd->ulpCommand == CMD_ABORT_XRI_CN)
dea31012005-04-17 16:05:31 -05006339 continue;
dea31012005-04-17 16:05:31 -05006340
James Smart2e0fef82007-06-17 19:56:36 -05006341 if (piocb->vport != vport)
6342 continue;
6343
James Smart2534ba72007-04-25 09:52:20 -04006344 list_move_tail(&piocb->list, &completions);
dea31012005-04-17 16:05:31 -05006345 }
6346
6347 list_for_each_entry_safe(piocb, tmp_iocb, &pring->txcmplq, list) {
dea31012005-04-17 16:05:31 -05006348 if (piocb->iocb_flag & LPFC_IO_LIBDFC) {
6349 continue;
6350 }
dea31012005-04-17 16:05:31 -05006351
James Smart2e0fef82007-06-17 19:56:36 -05006352 if (piocb->vport != vport)
6353 continue;
6354
James Smart07951072007-04-25 09:51:38 -04006355 lpfc_sli_issue_abort_iotag(phba, pring, piocb);
dea31012005-04-17 16:05:31 -05006356 }
James Smart2e0fef82007-06-17 19:56:36 -05006357 spin_unlock_irq(&phba->hbalock);
James Smart2534ba72007-04-25 09:52:20 -04006358
James Smarta257bf92009-04-06 18:48:10 -04006359 /* Cancell all the IOCBs from the completions list */
6360 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
6361 IOERR_SLI_ABORTED);
James Smart2534ba72007-04-25 09:52:20 -04006362
dea31012005-04-17 16:05:31 -05006363 return;
6364}
6365
James Smarte59058c2008-08-24 21:49:00 -04006366/**
James Smart3621a712009-04-06 18:47:14 -04006367 * lpfc_els_flush_all_cmd - Clean up all the outstanding els commands to a HBA
James Smarte59058c2008-08-24 21:49:00 -04006368 * @phba: pointer to lpfc hba data structure.
6369 *
6370 * This routine is used to clean up all the outstanding ELS commands on a
6371 * @phba. It first aborts the @phba by invoking the lpfc_fabric_abort_hba()
6372 * routine. After that, it walks the ELS transmit queue to remove all the
6373 * IOCBs to the @phba other than the QUE_RING and ABORT/CLOSE IOCBs. For
6374 * the IOCBs with the completion callback function associated, the callback
6375 * function will be invoked with the status set to IOSTAT_LOCAL_REJECT and
6376 * un.ulpWord[4] set to IOERR_SLI_ABORTED. For IOCBs without the completion
6377 * callback function associated, the IOCB will simply be released. Finally,
6378 * it walks the ELS transmit completion queue to issue an abort IOCB to any
6379 * transmit completion queue IOCB that is not an IOCB from libdfc (i.e., the
6380 * management plane IOCBs that are not part of the discovery state machine)
6381 * out to HBA by invoking the lpfc_sli_issue_abort_iotag() routine.
6382 **/
James Smart549e55c2007-08-02 11:09:51 -04006383void
6384lpfc_els_flush_all_cmd(struct lpfc_hba *phba)
6385{
6386 LIST_HEAD(completions);
6387 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
6388 struct lpfc_iocbq *tmp_iocb, *piocb;
6389 IOCB_t *cmd = NULL;
6390
6391 lpfc_fabric_abort_hba(phba);
6392 spin_lock_irq(&phba->hbalock);
6393 list_for_each_entry_safe(piocb, tmp_iocb, &pring->txq, list) {
6394 cmd = &piocb->iocb;
6395 if (piocb->iocb_flag & LPFC_IO_LIBDFC)
6396 continue;
6397 /* Do not flush out the QUE_RING and ABORT/CLOSE iocbs */
6398 if (cmd->ulpCommand == CMD_QUE_RING_BUF_CN ||
6399 cmd->ulpCommand == CMD_QUE_RING_BUF64_CN ||
6400 cmd->ulpCommand == CMD_CLOSE_XRI_CN ||
6401 cmd->ulpCommand == CMD_ABORT_XRI_CN)
6402 continue;
6403 list_move_tail(&piocb->list, &completions);
James Smart549e55c2007-08-02 11:09:51 -04006404 }
6405 list_for_each_entry_safe(piocb, tmp_iocb, &pring->txcmplq, list) {
6406 if (piocb->iocb_flag & LPFC_IO_LIBDFC)
6407 continue;
6408 lpfc_sli_issue_abort_iotag(phba, pring, piocb);
6409 }
6410 spin_unlock_irq(&phba->hbalock);
James Smarta257bf92009-04-06 18:48:10 -04006411
6412 /* Cancel all the IOCBs from the completions list */
6413 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
6414 IOERR_SLI_ABORTED);
6415
James Smart549e55c2007-08-02 11:09:51 -04006416 return;
6417}
6418
James Smarte59058c2008-08-24 21:49:00 -04006419/**
James Smart3621a712009-04-06 18:47:14 -04006420 * lpfc_send_els_failure_event - Posts an ELS command failure event
James Smartea2151b2008-09-07 11:52:10 -04006421 * @phba: Pointer to hba context object.
6422 * @cmdiocbp: Pointer to command iocb which reported error.
6423 * @rspiocbp: Pointer to response iocb which reported error.
6424 *
6425 * This function sends an event when there is an ELS command
6426 * failure.
6427 **/
6428void
6429lpfc_send_els_failure_event(struct lpfc_hba *phba,
6430 struct lpfc_iocbq *cmdiocbp,
6431 struct lpfc_iocbq *rspiocbp)
6432{
6433 struct lpfc_vport *vport = cmdiocbp->vport;
6434 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
6435 struct lpfc_lsrjt_event lsrjt_event;
6436 struct lpfc_fabric_event_header fabric_event;
6437 struct ls_rjt stat;
6438 struct lpfc_nodelist *ndlp;
6439 uint32_t *pcmd;
6440
6441 ndlp = cmdiocbp->context1;
6442 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp))
6443 return;
6444
6445 if (rspiocbp->iocb.ulpStatus == IOSTAT_LS_RJT) {
6446 lsrjt_event.header.event_type = FC_REG_ELS_EVENT;
6447 lsrjt_event.header.subcategory = LPFC_EVENT_LSRJT_RCV;
6448 memcpy(lsrjt_event.header.wwpn, &ndlp->nlp_portname,
6449 sizeof(struct lpfc_name));
6450 memcpy(lsrjt_event.header.wwnn, &ndlp->nlp_nodename,
6451 sizeof(struct lpfc_name));
6452 pcmd = (uint32_t *) (((struct lpfc_dmabuf *)
6453 cmdiocbp->context2)->virt);
James Smart49198b32010-04-06 15:04:33 -04006454 lsrjt_event.command = (pcmd != NULL) ? *pcmd : 0;
James Smartea2151b2008-09-07 11:52:10 -04006455 stat.un.lsRjtError = be32_to_cpu(rspiocbp->iocb.un.ulpWord[4]);
6456 lsrjt_event.reason_code = stat.un.b.lsRjtRsnCode;
6457 lsrjt_event.explanation = stat.un.b.lsRjtRsnCodeExp;
6458 fc_host_post_vendor_event(shost,
6459 fc_get_event_number(),
6460 sizeof(lsrjt_event),
6461 (char *)&lsrjt_event,
James Smartddcc50f2008-12-04 22:38:46 -05006462 LPFC_NL_VENDOR_ID);
James Smartea2151b2008-09-07 11:52:10 -04006463 return;
6464 }
6465 if ((rspiocbp->iocb.ulpStatus == IOSTAT_NPORT_BSY) ||
6466 (rspiocbp->iocb.ulpStatus == IOSTAT_FABRIC_BSY)) {
6467 fabric_event.event_type = FC_REG_FABRIC_EVENT;
6468 if (rspiocbp->iocb.ulpStatus == IOSTAT_NPORT_BSY)
6469 fabric_event.subcategory = LPFC_EVENT_PORT_BUSY;
6470 else
6471 fabric_event.subcategory = LPFC_EVENT_FABRIC_BUSY;
6472 memcpy(fabric_event.wwpn, &ndlp->nlp_portname,
6473 sizeof(struct lpfc_name));
6474 memcpy(fabric_event.wwnn, &ndlp->nlp_nodename,
6475 sizeof(struct lpfc_name));
6476 fc_host_post_vendor_event(shost,
6477 fc_get_event_number(),
6478 sizeof(fabric_event),
6479 (char *)&fabric_event,
James Smartddcc50f2008-12-04 22:38:46 -05006480 LPFC_NL_VENDOR_ID);
James Smartea2151b2008-09-07 11:52:10 -04006481 return;
6482 }
6483
6484}
6485
6486/**
James Smart3621a712009-04-06 18:47:14 -04006487 * lpfc_send_els_event - Posts unsolicited els event
James Smartea2151b2008-09-07 11:52:10 -04006488 * @vport: Pointer to vport object.
6489 * @ndlp: Pointer FC node object.
6490 * @cmd: ELS command code.
6491 *
6492 * This function posts an event when there is an incoming
6493 * unsolicited ELS command.
6494 **/
6495static void
6496lpfc_send_els_event(struct lpfc_vport *vport,
6497 struct lpfc_nodelist *ndlp,
James Smartddcc50f2008-12-04 22:38:46 -05006498 uint32_t *payload)
James Smartea2151b2008-09-07 11:52:10 -04006499{
James Smartddcc50f2008-12-04 22:38:46 -05006500 struct lpfc_els_event_header *els_data = NULL;
6501 struct lpfc_logo_event *logo_data = NULL;
James Smartea2151b2008-09-07 11:52:10 -04006502 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
6503
James Smartddcc50f2008-12-04 22:38:46 -05006504 if (*payload == ELS_CMD_LOGO) {
6505 logo_data = kmalloc(sizeof(struct lpfc_logo_event), GFP_KERNEL);
6506 if (!logo_data) {
6507 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
6508 "0148 Failed to allocate memory "
6509 "for LOGO event\n");
6510 return;
6511 }
6512 els_data = &logo_data->header;
6513 } else {
6514 els_data = kmalloc(sizeof(struct lpfc_els_event_header),
6515 GFP_KERNEL);
6516 if (!els_data) {
6517 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
6518 "0149 Failed to allocate memory "
6519 "for ELS event\n");
6520 return;
6521 }
6522 }
6523 els_data->event_type = FC_REG_ELS_EVENT;
6524 switch (*payload) {
James Smartea2151b2008-09-07 11:52:10 -04006525 case ELS_CMD_PLOGI:
James Smartddcc50f2008-12-04 22:38:46 -05006526 els_data->subcategory = LPFC_EVENT_PLOGI_RCV;
James Smartea2151b2008-09-07 11:52:10 -04006527 break;
6528 case ELS_CMD_PRLO:
James Smartddcc50f2008-12-04 22:38:46 -05006529 els_data->subcategory = LPFC_EVENT_PRLO_RCV;
James Smartea2151b2008-09-07 11:52:10 -04006530 break;
6531 case ELS_CMD_ADISC:
James Smartddcc50f2008-12-04 22:38:46 -05006532 els_data->subcategory = LPFC_EVENT_ADISC_RCV;
6533 break;
6534 case ELS_CMD_LOGO:
6535 els_data->subcategory = LPFC_EVENT_LOGO_RCV;
6536 /* Copy the WWPN in the LOGO payload */
6537 memcpy(logo_data->logo_wwpn, &payload[2],
6538 sizeof(struct lpfc_name));
James Smartea2151b2008-09-07 11:52:10 -04006539 break;
6540 default:
Julia Lawalle9161412009-02-08 22:43:19 +01006541 kfree(els_data);
James Smartea2151b2008-09-07 11:52:10 -04006542 return;
6543 }
James Smartddcc50f2008-12-04 22:38:46 -05006544 memcpy(els_data->wwpn, &ndlp->nlp_portname, sizeof(struct lpfc_name));
6545 memcpy(els_data->wwnn, &ndlp->nlp_nodename, sizeof(struct lpfc_name));
6546 if (*payload == ELS_CMD_LOGO) {
6547 fc_host_post_vendor_event(shost,
6548 fc_get_event_number(),
6549 sizeof(struct lpfc_logo_event),
6550 (char *)logo_data,
6551 LPFC_NL_VENDOR_ID);
6552 kfree(logo_data);
6553 } else {
6554 fc_host_post_vendor_event(shost,
6555 fc_get_event_number(),
6556 sizeof(struct lpfc_els_event_header),
6557 (char *)els_data,
6558 LPFC_NL_VENDOR_ID);
6559 kfree(els_data);
6560 }
James Smartea2151b2008-09-07 11:52:10 -04006561
6562 return;
6563}
6564
6565
6566/**
James Smart3621a712009-04-06 18:47:14 -04006567 * lpfc_els_unsol_buffer - Process an unsolicited event data buffer
James Smarte59058c2008-08-24 21:49:00 -04006568 * @phba: pointer to lpfc hba data structure.
6569 * @pring: pointer to a SLI ring.
6570 * @vport: pointer to a host virtual N_Port data structure.
6571 * @elsiocb: pointer to lpfc els command iocb data structure.
6572 *
6573 * This routine is used for processing the IOCB associated with a unsolicited
6574 * event. It first determines whether there is an existing ndlp that matches
6575 * the DID from the unsolicited IOCB. If not, it will create a new one with
6576 * the DID from the unsolicited IOCB. The ELS command from the unsolicited
6577 * IOCB is then used to invoke the proper routine and to set up proper state
6578 * of the discovery state machine.
6579 **/
James Smarted957682007-06-17 19:56:37 -05006580static void
6581lpfc_els_unsol_buffer(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
James Smart92d7f7b2007-06-17 19:56:38 -05006582 struct lpfc_vport *vport, struct lpfc_iocbq *elsiocb)
dea31012005-04-17 16:05:31 -05006583{
James Smart87af33f2007-10-27 13:37:43 -04006584 struct Scsi_Host *shost;
dea31012005-04-17 16:05:31 -05006585 struct lpfc_nodelist *ndlp;
dea31012005-04-17 16:05:31 -05006586 struct ls_rjt stat;
James Smart92d7f7b2007-06-17 19:56:38 -05006587 uint32_t *payload;
James Smart303f2f92013-01-03 15:43:11 -05006588 uint32_t cmd, did, newnode;
6589 uint8_t rjt_exp, rjt_err = 0;
James Smarted957682007-06-17 19:56:37 -05006590 IOCB_t *icmd = &elsiocb->iocb;
dea31012005-04-17 16:05:31 -05006591
James Smarte47c9092008-02-08 18:49:26 -05006592 if (!vport || !(elsiocb->context2))
dea31012005-04-17 16:05:31 -05006593 goto dropit;
James Smart2e0fef82007-06-17 19:56:36 -05006594
dea31012005-04-17 16:05:31 -05006595 newnode = 0;
James Smart92d7f7b2007-06-17 19:56:38 -05006596 payload = ((struct lpfc_dmabuf *)elsiocb->context2)->virt;
6597 cmd = *payload;
James Smarted957682007-06-17 19:56:37 -05006598 if ((phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) == 0)
James Smart495a7142008-06-14 22:52:59 -04006599 lpfc_post_buffer(phba, pring, 1);
dea31012005-04-17 16:05:31 -05006600
James Smart858c9f62007-06-17 19:56:39 -05006601 did = icmd->un.rcvels.remoteID;
6602 if (icmd->ulpStatus) {
6603 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6604 "RCV Unsol ELS: status:x%x/x%x did:x%x",
6605 icmd->ulpStatus, icmd->un.ulpWord[4], did);
dea31012005-04-17 16:05:31 -05006606 goto dropit;
James Smart858c9f62007-06-17 19:56:39 -05006607 }
dea31012005-04-17 16:05:31 -05006608
6609 /* Check to see if link went down during discovery */
James Smarted957682007-06-17 19:56:37 -05006610 if (lpfc_els_chk_latt(vport))
dea31012005-04-17 16:05:31 -05006611 goto dropit;
dea31012005-04-17 16:05:31 -05006612
James Smartc8685952009-11-18 15:39:16 -05006613 /* Ignore traffic received during vport shutdown. */
James Smart92d7f7b2007-06-17 19:56:38 -05006614 if (vport->load_flag & FC_UNLOADING)
6615 goto dropit;
6616
James Smart92494142011-02-16 12:39:44 -05006617 /* If NPort discovery is delayed drop incoming ELS */
6618 if ((vport->fc_flag & FC_DISC_DELAYED) &&
6619 (cmd != ELS_CMD_PLOGI))
6620 goto dropit;
6621
James Smart2e0fef82007-06-17 19:56:36 -05006622 ndlp = lpfc_findnode_did(vport, did);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05006623 if (!ndlp) {
dea31012005-04-17 16:05:31 -05006624 /* Cannot find existing Fabric ndlp, so allocate a new one */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05006625 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
James Smarted957682007-06-17 19:56:37 -05006626 if (!ndlp)
dea31012005-04-17 16:05:31 -05006627 goto dropit;
dea31012005-04-17 16:05:31 -05006628
James Smart2e0fef82007-06-17 19:56:36 -05006629 lpfc_nlp_init(vport, ndlp, did);
James Smart98c9ea52007-10-27 13:37:33 -04006630 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
dea31012005-04-17 16:05:31 -05006631 newnode = 1;
James Smarte47c9092008-02-08 18:49:26 -05006632 if ((did & Fabric_DID_MASK) == Fabric_DID_MASK)
dea31012005-04-17 16:05:31 -05006633 ndlp->nlp_type |= NLP_FABRIC;
James Smart58da1ff2008-04-07 10:15:56 -04006634 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
6635 ndlp = lpfc_enable_node(vport, ndlp,
6636 NLP_STE_UNUSED_NODE);
6637 if (!ndlp)
6638 goto dropit;
6639 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
6640 newnode = 1;
6641 if ((did & Fabric_DID_MASK) == Fabric_DID_MASK)
6642 ndlp->nlp_type |= NLP_FABRIC;
6643 } else if (ndlp->nlp_state == NLP_STE_UNUSED_NODE) {
6644 /* This is similar to the new node path */
6645 ndlp = lpfc_nlp_get(ndlp);
6646 if (!ndlp)
6647 goto dropit;
6648 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
6649 newnode = 1;
James Smart87af33f2007-10-27 13:37:43 -04006650 }
dea31012005-04-17 16:05:31 -05006651
6652 phba->fc_stat.elsRcvFrame++;
James Smarte47c9092008-02-08 18:49:26 -05006653
James Smart329f9bc2007-04-25 09:53:01 -04006654 elsiocb->context1 = lpfc_nlp_get(ndlp);
James Smart2e0fef82007-06-17 19:56:36 -05006655 elsiocb->vport = vport;
dea31012005-04-17 16:05:31 -05006656
6657 if ((cmd & ELS_CMD_MASK) == ELS_CMD_RSCN) {
6658 cmd &= ELS_CMD_MASK;
6659 }
6660 /* ELS command <elsCmd> received from NPORT <did> */
James Smarte8b62012007-08-02 11:10:09 -04006661 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
6662 "0112 ELS command x%x received from NPORT x%x "
James Smarte74c03c2013-04-17 20:15:19 -04006663 "Data: x%x x%x x%x x%x\n",
6664 cmd, did, vport->port_state, vport->fc_flag,
6665 vport->fc_myDID, vport->fc_prevDID);
dea31012005-04-17 16:05:31 -05006666 switch (cmd) {
6667 case ELS_CMD_PLOGI:
James Smart858c9f62007-06-17 19:56:39 -05006668 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6669 "RCV PLOGI: did:x%x/ste:x%x flg:x%x",
6670 did, vport->port_state, ndlp->nlp_flag);
6671
dea31012005-04-17 16:05:31 -05006672 phba->fc_stat.elsRcvPLOGI++;
James Smart858c9f62007-06-17 19:56:39 -05006673 ndlp = lpfc_plogi_confirm_nport(phba, payload, ndlp);
James Smarte74c03c2013-04-17 20:15:19 -04006674 if (phba->sli_rev == LPFC_SLI_REV4 &&
6675 (phba->pport->fc_flag & FC_PT2PT)) {
6676 vport->fc_prevDID = vport->fc_myDID;
6677 /* Our DID needs to be updated before registering
6678 * the vfi. This is done in lpfc_rcv_plogi but
6679 * that is called after the reg_vfi.
6680 */
6681 vport->fc_myDID = elsiocb->iocb.un.rcvels.parmRo;
6682 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
6683 "3312 Remote port assigned DID x%x "
6684 "%x\n", vport->fc_myDID,
6685 vport->fc_prevDID);
6686 }
James Smart858c9f62007-06-17 19:56:39 -05006687
James Smartddcc50f2008-12-04 22:38:46 -05006688 lpfc_send_els_event(vport, ndlp, payload);
James Smart92494142011-02-16 12:39:44 -05006689
6690 /* If Nport discovery is delayed, reject PLOGIs */
6691 if (vport->fc_flag & FC_DISC_DELAYED) {
6692 rjt_err = LSRJT_UNABLE_TPC;
James Smart303f2f92013-01-03 15:43:11 -05006693 rjt_exp = LSEXP_NOTHING_MORE;
James Smart92494142011-02-16 12:39:44 -05006694 break;
6695 }
James Smarte74c03c2013-04-17 20:15:19 -04006696 shost = lpfc_shost_from_vport(vport);
James Smart858c9f62007-06-17 19:56:39 -05006697 if (vport->port_state < LPFC_DISC_AUTH) {
James Smart1b32f6a2008-02-08 18:49:39 -05006698 if (!(phba->pport->fc_flag & FC_PT2PT) ||
6699 (phba->pport->fc_flag & FC_PT2PT_PLOGI)) {
6700 rjt_err = LSRJT_UNABLE_TPC;
James Smart303f2f92013-01-03 15:43:11 -05006701 rjt_exp = LSEXP_NOTHING_MORE;
James Smart1b32f6a2008-02-08 18:49:39 -05006702 break;
6703 }
6704 /* We get here, and drop thru, if we are PT2PT with
6705 * another NPort and the other side has initiated
6706 * the PLOGI before responding to our FLOGI.
6707 */
James Smarte74c03c2013-04-17 20:15:19 -04006708 if (phba->sli_rev == LPFC_SLI_REV4 &&
6709 (phba->fc_topology_changed ||
6710 vport->fc_myDID != vport->fc_prevDID)) {
6711 lpfc_unregister_fcf_prep(phba);
6712 spin_lock_irq(shost->host_lock);
6713 vport->fc_flag &= ~FC_VFI_REGISTERED;
6714 spin_unlock_irq(shost->host_lock);
6715 phba->fc_topology_changed = 0;
6716 lpfc_issue_reg_vfi(vport);
6717 }
dea31012005-04-17 16:05:31 -05006718 }
James Smart87af33f2007-10-27 13:37:43 -04006719
James Smart87af33f2007-10-27 13:37:43 -04006720 spin_lock_irq(shost->host_lock);
6721 ndlp->nlp_flag &= ~NLP_TARGET_REMOVE;
6722 spin_unlock_irq(shost->host_lock);
6723
James Smart2e0fef82007-06-17 19:56:36 -05006724 lpfc_disc_state_machine(vport, ndlp, elsiocb,
6725 NLP_EVT_RCV_PLOGI);
James Smart858c9f62007-06-17 19:56:39 -05006726
dea31012005-04-17 16:05:31 -05006727 break;
6728 case ELS_CMD_FLOGI:
James Smart858c9f62007-06-17 19:56:39 -05006729 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6730 "RCV FLOGI: did:x%x/ste:x%x flg:x%x",
6731 did, vport->port_state, ndlp->nlp_flag);
6732
dea31012005-04-17 16:05:31 -05006733 phba->fc_stat.elsRcvFLOGI++;
James Smart51ef4c22007-08-02 11:10:31 -04006734 lpfc_els_rcv_flogi(vport, elsiocb, ndlp);
James Smart87af33f2007-10-27 13:37:43 -04006735 if (newnode)
James Smart98c9ea52007-10-27 13:37:33 -04006736 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05006737 break;
6738 case ELS_CMD_LOGO:
James Smart858c9f62007-06-17 19:56:39 -05006739 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6740 "RCV LOGO: did:x%x/ste:x%x flg:x%x",
6741 did, vport->port_state, ndlp->nlp_flag);
6742
dea31012005-04-17 16:05:31 -05006743 phba->fc_stat.elsRcvLOGO++;
James Smartddcc50f2008-12-04 22:38:46 -05006744 lpfc_send_els_event(vport, ndlp, payload);
James Smart2e0fef82007-06-17 19:56:36 -05006745 if (vport->port_state < LPFC_DISC_AUTH) {
James Smart858c9f62007-06-17 19:56:39 -05006746 rjt_err = LSRJT_UNABLE_TPC;
James Smart303f2f92013-01-03 15:43:11 -05006747 rjt_exp = LSEXP_NOTHING_MORE;
dea31012005-04-17 16:05:31 -05006748 break;
6749 }
James Smart2e0fef82007-06-17 19:56:36 -05006750 lpfc_disc_state_machine(vport, ndlp, elsiocb, NLP_EVT_RCV_LOGO);
dea31012005-04-17 16:05:31 -05006751 break;
6752 case ELS_CMD_PRLO:
James Smart858c9f62007-06-17 19:56:39 -05006753 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6754 "RCV PRLO: did:x%x/ste:x%x flg:x%x",
6755 did, vport->port_state, ndlp->nlp_flag);
6756
dea31012005-04-17 16:05:31 -05006757 phba->fc_stat.elsRcvPRLO++;
James Smartddcc50f2008-12-04 22:38:46 -05006758 lpfc_send_els_event(vport, ndlp, payload);
James Smart2e0fef82007-06-17 19:56:36 -05006759 if (vport->port_state < LPFC_DISC_AUTH) {
James Smart858c9f62007-06-17 19:56:39 -05006760 rjt_err = LSRJT_UNABLE_TPC;
James Smart303f2f92013-01-03 15:43:11 -05006761 rjt_exp = LSEXP_NOTHING_MORE;
dea31012005-04-17 16:05:31 -05006762 break;
6763 }
James Smart2e0fef82007-06-17 19:56:36 -05006764 lpfc_disc_state_machine(vport, ndlp, elsiocb, NLP_EVT_RCV_PRLO);
dea31012005-04-17 16:05:31 -05006765 break;
6766 case ELS_CMD_RSCN:
6767 phba->fc_stat.elsRcvRSCN++;
James Smart51ef4c22007-08-02 11:10:31 -04006768 lpfc_els_rcv_rscn(vport, elsiocb, ndlp);
James Smart87af33f2007-10-27 13:37:43 -04006769 if (newnode)
James Smart98c9ea52007-10-27 13:37:33 -04006770 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05006771 break;
6772 case ELS_CMD_ADISC:
James Smart858c9f62007-06-17 19:56:39 -05006773 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6774 "RCV ADISC: did:x%x/ste:x%x flg:x%x",
6775 did, vport->port_state, ndlp->nlp_flag);
6776
James Smartddcc50f2008-12-04 22:38:46 -05006777 lpfc_send_els_event(vport, ndlp, payload);
dea31012005-04-17 16:05:31 -05006778 phba->fc_stat.elsRcvADISC++;
James Smart2e0fef82007-06-17 19:56:36 -05006779 if (vport->port_state < LPFC_DISC_AUTH) {
James Smart858c9f62007-06-17 19:56:39 -05006780 rjt_err = LSRJT_UNABLE_TPC;
James Smart303f2f92013-01-03 15:43:11 -05006781 rjt_exp = LSEXP_NOTHING_MORE;
dea31012005-04-17 16:05:31 -05006782 break;
6783 }
James Smart2e0fef82007-06-17 19:56:36 -05006784 lpfc_disc_state_machine(vport, ndlp, elsiocb,
6785 NLP_EVT_RCV_ADISC);
dea31012005-04-17 16:05:31 -05006786 break;
6787 case ELS_CMD_PDISC:
James Smart858c9f62007-06-17 19:56:39 -05006788 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6789 "RCV PDISC: did:x%x/ste:x%x flg:x%x",
6790 did, vport->port_state, ndlp->nlp_flag);
6791
dea31012005-04-17 16:05:31 -05006792 phba->fc_stat.elsRcvPDISC++;
James Smart2e0fef82007-06-17 19:56:36 -05006793 if (vport->port_state < LPFC_DISC_AUTH) {
James Smart858c9f62007-06-17 19:56:39 -05006794 rjt_err = LSRJT_UNABLE_TPC;
James Smart303f2f92013-01-03 15:43:11 -05006795 rjt_exp = LSEXP_NOTHING_MORE;
dea31012005-04-17 16:05:31 -05006796 break;
6797 }
James Smart2e0fef82007-06-17 19:56:36 -05006798 lpfc_disc_state_machine(vport, ndlp, elsiocb,
6799 NLP_EVT_RCV_PDISC);
dea31012005-04-17 16:05:31 -05006800 break;
6801 case ELS_CMD_FARPR:
James Smart858c9f62007-06-17 19:56:39 -05006802 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6803 "RCV FARPR: did:x%x/ste:x%x flg:x%x",
6804 did, vport->port_state, ndlp->nlp_flag);
6805
dea31012005-04-17 16:05:31 -05006806 phba->fc_stat.elsRcvFARPR++;
James Smart2e0fef82007-06-17 19:56:36 -05006807 lpfc_els_rcv_farpr(vport, elsiocb, ndlp);
dea31012005-04-17 16:05:31 -05006808 break;
6809 case ELS_CMD_FARP:
James Smart858c9f62007-06-17 19:56:39 -05006810 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6811 "RCV FARP: did:x%x/ste:x%x flg:x%x",
6812 did, vport->port_state, ndlp->nlp_flag);
6813
dea31012005-04-17 16:05:31 -05006814 phba->fc_stat.elsRcvFARP++;
James Smart2e0fef82007-06-17 19:56:36 -05006815 lpfc_els_rcv_farp(vport, elsiocb, ndlp);
dea31012005-04-17 16:05:31 -05006816 break;
6817 case ELS_CMD_FAN:
James Smart858c9f62007-06-17 19:56:39 -05006818 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6819 "RCV FAN: did:x%x/ste:x%x flg:x%x",
6820 did, vport->port_state, ndlp->nlp_flag);
6821
dea31012005-04-17 16:05:31 -05006822 phba->fc_stat.elsRcvFAN++;
James Smart2e0fef82007-06-17 19:56:36 -05006823 lpfc_els_rcv_fan(vport, elsiocb, ndlp);
dea31012005-04-17 16:05:31 -05006824 break;
dea31012005-04-17 16:05:31 -05006825 case ELS_CMD_PRLI:
James Smart858c9f62007-06-17 19:56:39 -05006826 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6827 "RCV PRLI: did:x%x/ste:x%x flg:x%x",
6828 did, vport->port_state, ndlp->nlp_flag);
6829
dea31012005-04-17 16:05:31 -05006830 phba->fc_stat.elsRcvPRLI++;
James Smart2e0fef82007-06-17 19:56:36 -05006831 if (vport->port_state < LPFC_DISC_AUTH) {
James Smart858c9f62007-06-17 19:56:39 -05006832 rjt_err = LSRJT_UNABLE_TPC;
James Smart303f2f92013-01-03 15:43:11 -05006833 rjt_exp = LSEXP_NOTHING_MORE;
dea31012005-04-17 16:05:31 -05006834 break;
6835 }
James Smart2e0fef82007-06-17 19:56:36 -05006836 lpfc_disc_state_machine(vport, ndlp, elsiocb, NLP_EVT_RCV_PRLI);
dea31012005-04-17 16:05:31 -05006837 break;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006838 case ELS_CMD_LIRR:
James Smart858c9f62007-06-17 19:56:39 -05006839 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6840 "RCV LIRR: did:x%x/ste:x%x flg:x%x",
6841 did, vport->port_state, ndlp->nlp_flag);
6842
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006843 phba->fc_stat.elsRcvLIRR++;
James Smart2e0fef82007-06-17 19:56:36 -05006844 lpfc_els_rcv_lirr(vport, elsiocb, ndlp);
James Smart87af33f2007-10-27 13:37:43 -04006845 if (newnode)
James Smart98c9ea52007-10-27 13:37:33 -04006846 lpfc_nlp_put(ndlp);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006847 break;
James Smart12265f62010-10-22 11:05:53 -04006848 case ELS_CMD_RLS:
6849 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6850 "RCV RLS: did:x%x/ste:x%x flg:x%x",
6851 did, vport->port_state, ndlp->nlp_flag);
6852
6853 phba->fc_stat.elsRcvRLS++;
6854 lpfc_els_rcv_rls(vport, elsiocb, ndlp);
6855 if (newnode)
6856 lpfc_nlp_put(ndlp);
6857 break;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006858 case ELS_CMD_RPS:
James Smart858c9f62007-06-17 19:56:39 -05006859 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6860 "RCV RPS: did:x%x/ste:x%x flg:x%x",
6861 did, vport->port_state, ndlp->nlp_flag);
6862
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006863 phba->fc_stat.elsRcvRPS++;
James Smart2e0fef82007-06-17 19:56:36 -05006864 lpfc_els_rcv_rps(vport, elsiocb, ndlp);
James Smart87af33f2007-10-27 13:37:43 -04006865 if (newnode)
James Smart98c9ea52007-10-27 13:37:33 -04006866 lpfc_nlp_put(ndlp);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006867 break;
6868 case ELS_CMD_RPL:
James Smart858c9f62007-06-17 19:56:39 -05006869 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6870 "RCV RPL: did:x%x/ste:x%x flg:x%x",
6871 did, vport->port_state, ndlp->nlp_flag);
6872
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006873 phba->fc_stat.elsRcvRPL++;
James Smart2e0fef82007-06-17 19:56:36 -05006874 lpfc_els_rcv_rpl(vport, elsiocb, ndlp);
James Smart87af33f2007-10-27 13:37:43 -04006875 if (newnode)
James Smart98c9ea52007-10-27 13:37:33 -04006876 lpfc_nlp_put(ndlp);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006877 break;
dea31012005-04-17 16:05:31 -05006878 case ELS_CMD_RNID:
James Smart858c9f62007-06-17 19:56:39 -05006879 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6880 "RCV RNID: did:x%x/ste:x%x flg:x%x",
6881 did, vport->port_state, ndlp->nlp_flag);
6882
dea31012005-04-17 16:05:31 -05006883 phba->fc_stat.elsRcvRNID++;
James Smart2e0fef82007-06-17 19:56:36 -05006884 lpfc_els_rcv_rnid(vport, elsiocb, ndlp);
James Smart87af33f2007-10-27 13:37:43 -04006885 if (newnode)
James Smart98c9ea52007-10-27 13:37:33 -04006886 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05006887 break;
James Smart12265f62010-10-22 11:05:53 -04006888 case ELS_CMD_RTV:
6889 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6890 "RCV RTV: did:x%x/ste:x%x flg:x%x",
6891 did, vport->port_state, ndlp->nlp_flag);
6892 phba->fc_stat.elsRcvRTV++;
6893 lpfc_els_rcv_rtv(vport, elsiocb, ndlp);
6894 if (newnode)
6895 lpfc_nlp_put(ndlp);
6896 break;
James Smart5ffc2662009-11-18 15:39:44 -05006897 case ELS_CMD_RRQ:
6898 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6899 "RCV RRQ: did:x%x/ste:x%x flg:x%x",
6900 did, vport->port_state, ndlp->nlp_flag);
6901
6902 phba->fc_stat.elsRcvRRQ++;
6903 lpfc_els_rcv_rrq(vport, elsiocb, ndlp);
6904 if (newnode)
6905 lpfc_nlp_put(ndlp);
6906 break;
James Smart12265f62010-10-22 11:05:53 -04006907 case ELS_CMD_ECHO:
6908 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6909 "RCV ECHO: did:x%x/ste:x%x flg:x%x",
6910 did, vport->port_state, ndlp->nlp_flag);
6911
6912 phba->fc_stat.elsRcvECHO++;
6913 lpfc_els_rcv_echo(vport, elsiocb, ndlp);
6914 if (newnode)
6915 lpfc_nlp_put(ndlp);
6916 break;
James Smart303f2f92013-01-03 15:43:11 -05006917 case ELS_CMD_REC:
6918 /* receive this due to exchange closed */
6919 rjt_err = LSRJT_UNABLE_TPC;
6920 rjt_exp = LSEXP_INVALID_OX_RX;
6921 break;
dea31012005-04-17 16:05:31 -05006922 default:
James Smart858c9f62007-06-17 19:56:39 -05006923 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6924 "RCV ELS cmd: cmd:x%x did:x%x/ste:x%x",
6925 cmd, did, vport->port_state);
6926
dea31012005-04-17 16:05:31 -05006927 /* Unsupported ELS command, reject */
James Smart63e801c2010-11-20 23:14:19 -05006928 rjt_err = LSRJT_CMD_UNSUPPORTED;
James Smart303f2f92013-01-03 15:43:11 -05006929 rjt_exp = LSEXP_NOTHING_MORE;
dea31012005-04-17 16:05:31 -05006930
6931 /* Unknown ELS command <elsCmd> received from NPORT <did> */
James Smarte8b62012007-08-02 11:10:09 -04006932 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
6933 "0115 Unknown ELS command x%x "
6934 "received from NPORT x%x\n", cmd, did);
James Smart87af33f2007-10-27 13:37:43 -04006935 if (newnode)
James Smart98c9ea52007-10-27 13:37:33 -04006936 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05006937 break;
6938 }
6939
6940 /* check if need to LS_RJT received ELS cmd */
6941 if (rjt_err) {
James Smart92d7f7b2007-06-17 19:56:38 -05006942 memset(&stat, 0, sizeof(stat));
James Smart858c9f62007-06-17 19:56:39 -05006943 stat.un.b.lsRjtRsnCode = rjt_err;
James Smart303f2f92013-01-03 15:43:11 -05006944 stat.un.b.lsRjtRsnCodeExp = rjt_exp;
James Smart858c9f62007-06-17 19:56:39 -05006945 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, elsiocb, ndlp,
6946 NULL);
dea31012005-04-17 16:05:31 -05006947 }
6948
James Smartd7c255b2008-08-24 21:50:00 -04006949 lpfc_nlp_put(elsiocb->context1);
6950 elsiocb->context1 = NULL;
James Smarted957682007-06-17 19:56:37 -05006951 return;
6952
6953dropit:
James Smart98c9ea52007-10-27 13:37:33 -04006954 if (vport && !(vport->load_flag & FC_UNLOADING))
James Smart6fb120a2009-05-22 14:52:59 -04006955 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
6956 "0111 Dropping received ELS cmd "
James Smarted957682007-06-17 19:56:37 -05006957 "Data: x%x x%x x%x\n",
James Smart6fb120a2009-05-22 14:52:59 -04006958 icmd->ulpStatus, icmd->un.ulpWord[4], icmd->ulpTimeout);
James Smarted957682007-06-17 19:56:37 -05006959 phba->fc_stat.elsRcvDrop++;
6960}
6961
James Smarte59058c2008-08-24 21:49:00 -04006962/**
James Smart3621a712009-04-06 18:47:14 -04006963 * lpfc_els_unsol_event - Process an unsolicited event from an els sli ring
James Smarte59058c2008-08-24 21:49:00 -04006964 * @phba: pointer to lpfc hba data structure.
6965 * @pring: pointer to a SLI ring.
6966 * @elsiocb: pointer to lpfc els iocb data structure.
6967 *
6968 * This routine is used to process an unsolicited event received from a SLI
6969 * (Service Level Interface) ring. The actual processing of the data buffer
6970 * associated with the unsolicited event is done by invoking the routine
6971 * lpfc_els_unsol_buffer() after properly set up the iocb buffer from the
6972 * SLI ring on which the unsolicited event was received.
6973 **/
James Smarted957682007-06-17 19:56:37 -05006974void
6975lpfc_els_unsol_event(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
6976 struct lpfc_iocbq *elsiocb)
6977{
6978 struct lpfc_vport *vport = phba->pport;
James Smarted957682007-06-17 19:56:37 -05006979 IOCB_t *icmd = &elsiocb->iocb;
James Smarted957682007-06-17 19:56:37 -05006980 dma_addr_t paddr;
James Smart92d7f7b2007-06-17 19:56:38 -05006981 struct lpfc_dmabuf *bdeBuf1 = elsiocb->context2;
6982 struct lpfc_dmabuf *bdeBuf2 = elsiocb->context3;
James Smarted957682007-06-17 19:56:37 -05006983
James Smartd7c255b2008-08-24 21:50:00 -04006984 elsiocb->context1 = NULL;
James Smart92d7f7b2007-06-17 19:56:38 -05006985 elsiocb->context2 = NULL;
6986 elsiocb->context3 = NULL;
6987
6988 if (icmd->ulpStatus == IOSTAT_NEED_BUFFER) {
6989 lpfc_sli_hbqbuf_add_hbqs(phba, LPFC_ELS_HBQ);
6990 } else if (icmd->ulpStatus == IOSTAT_LOCAL_REJECT &&
James Smarte3d2b802012-08-14 14:25:43 -04006991 (icmd->un.ulpWord[4] & IOERR_PARAM_MASK) ==
6992 IOERR_RCV_BUFFER_WAITING) {
James Smarted957682007-06-17 19:56:37 -05006993 phba->fc_stat.NoRcvBuf++;
6994 /* Not enough posted buffers; Try posting more buffers */
James Smart92d7f7b2007-06-17 19:56:38 -05006995 if (!(phba->sli3_options & LPFC_SLI3_HBQ_ENABLED))
James Smart495a7142008-06-14 22:52:59 -04006996 lpfc_post_buffer(phba, pring, 0);
James Smarted957682007-06-17 19:56:37 -05006997 return;
6998 }
6999
James Smart92d7f7b2007-06-17 19:56:38 -05007000 if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
7001 (icmd->ulpCommand == CMD_IOCB_RCV_ELS64_CX ||
7002 icmd->ulpCommand == CMD_IOCB_RCV_SEQ64_CX)) {
7003 if (icmd->unsli3.rcvsli3.vpi == 0xffff)
7004 vport = phba->pport;
James Smart6fb120a2009-05-22 14:52:59 -04007005 else
7006 vport = lpfc_find_vport_by_vpid(phba,
James Smart6d368e52011-05-24 11:44:12 -04007007 icmd->unsli3.rcvsli3.vpi);
James Smart92d7f7b2007-06-17 19:56:38 -05007008 }
James Smart6d368e52011-05-24 11:44:12 -04007009
James Smart7f5f3d02008-02-08 18:50:14 -05007010 /* If there are no BDEs associated
7011 * with this IOCB, there is nothing to do.
7012 */
James Smarted957682007-06-17 19:56:37 -05007013 if (icmd->ulpBdeCount == 0)
7014 return;
7015
James Smart7f5f3d02008-02-08 18:50:14 -05007016 /* type of ELS cmd is first 32bit word
7017 * in packet
7018 */
James Smarted957682007-06-17 19:56:37 -05007019 if (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) {
James Smart92d7f7b2007-06-17 19:56:38 -05007020 elsiocb->context2 = bdeBuf1;
James Smarted957682007-06-17 19:56:37 -05007021 } else {
7022 paddr = getPaddr(icmd->un.cont64[0].addrHigh,
7023 icmd->un.cont64[0].addrLow);
James Smart92d7f7b2007-06-17 19:56:38 -05007024 elsiocb->context2 = lpfc_sli_ringpostbuf_get(phba, pring,
7025 paddr);
James Smarted957682007-06-17 19:56:37 -05007026 }
7027
James Smart92d7f7b2007-06-17 19:56:38 -05007028 lpfc_els_unsol_buffer(phba, pring, vport, elsiocb);
7029 /*
7030 * The different unsolicited event handlers would tell us
7031 * if they are done with "mp" by setting context2 to NULL.
7032 */
dea31012005-04-17 16:05:31 -05007033 if (elsiocb->context2) {
James Smart92d7f7b2007-06-17 19:56:38 -05007034 lpfc_in_buf_free(phba, (struct lpfc_dmabuf *)elsiocb->context2);
7035 elsiocb->context2 = NULL;
dea31012005-04-17 16:05:31 -05007036 }
James Smarted957682007-06-17 19:56:37 -05007037
7038 /* RCV_ELS64_CX provide for 2 BDEs - process 2nd if included */
James Smart92d7f7b2007-06-17 19:56:38 -05007039 if ((phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) &&
James Smarted957682007-06-17 19:56:37 -05007040 icmd->ulpBdeCount == 2) {
James Smart92d7f7b2007-06-17 19:56:38 -05007041 elsiocb->context2 = bdeBuf2;
7042 lpfc_els_unsol_buffer(phba, pring, vport, elsiocb);
James Smarted957682007-06-17 19:56:37 -05007043 /* free mp if we are done with it */
7044 if (elsiocb->context2) {
James Smart92d7f7b2007-06-17 19:56:38 -05007045 lpfc_in_buf_free(phba, elsiocb->context2);
7046 elsiocb->context2 = NULL;
James Smarted957682007-06-17 19:56:37 -05007047 }
dea31012005-04-17 16:05:31 -05007048 }
dea31012005-04-17 16:05:31 -05007049}
James Smart92d7f7b2007-06-17 19:56:38 -05007050
James Smarte59058c2008-08-24 21:49:00 -04007051/**
James Smart3621a712009-04-06 18:47:14 -04007052 * lpfc_do_scr_ns_plogi - Issue a plogi to the name server for scr
James Smarte59058c2008-08-24 21:49:00 -04007053 * @phba: pointer to lpfc hba data structure.
7054 * @vport: pointer to a virtual N_Port data structure.
7055 *
7056 * This routine issues a Port Login (PLOGI) to the Name Server with
7057 * State Change Request (SCR) for a @vport. This routine will create an
7058 * ndlp for the Name Server associated to the @vport if such node does
7059 * not already exist. The PLOGI to Name Server is issued by invoking the
7060 * lpfc_issue_els_plogi() routine. If Fabric-Device Management Interface
7061 * (FDMI) is configured to the @vport, a FDMI node will be created and
7062 * the PLOGI to FDMI is issued by invoking lpfc_issue_els_plogi() routine.
7063 **/
James Smart92d7f7b2007-06-17 19:56:38 -05007064void
7065lpfc_do_scr_ns_plogi(struct lpfc_hba *phba, struct lpfc_vport *vport)
7066{
7067 struct lpfc_nodelist *ndlp, *ndlp_fdmi;
James Smart92494142011-02-16 12:39:44 -05007068 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
7069
7070 /*
7071 * If lpfc_delay_discovery parameter is set and the clean address
7072 * bit is cleared and fc fabric parameters chenged, delay FC NPort
7073 * discovery.
7074 */
7075 spin_lock_irq(shost->host_lock);
7076 if (vport->fc_flag & FC_DISC_DELAYED) {
7077 spin_unlock_irq(shost->host_lock);
James Smart18775702013-04-17 20:19:25 -04007078 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY,
7079 "3334 Delay fc port discovery for %d seconds\n",
7080 phba->fc_ratov);
James Smart92494142011-02-16 12:39:44 -05007081 mod_timer(&vport->delayed_disc_tmo,
James Smart256ec0d2013-04-17 20:14:58 -04007082 jiffies + msecs_to_jiffies(1000 * phba->fc_ratov));
James Smart92494142011-02-16 12:39:44 -05007083 return;
7084 }
7085 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05007086
7087 ndlp = lpfc_findnode_did(vport, NameServer_DID);
7088 if (!ndlp) {
7089 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
7090 if (!ndlp) {
James Smart76a95d72010-11-20 23:11:48 -05007091 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
James Smart92d7f7b2007-06-17 19:56:38 -05007092 lpfc_disc_start(vport);
7093 return;
7094 }
7095 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
James Smarte8b62012007-08-02 11:10:09 -04007096 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
7097 "0251 NameServer login: no memory\n");
James Smart92d7f7b2007-06-17 19:56:38 -05007098 return;
7099 }
7100 lpfc_nlp_init(vport, ndlp, NameServer_DID);
James Smarte47c9092008-02-08 18:49:26 -05007101 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
7102 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
7103 if (!ndlp) {
James Smart76a95d72010-11-20 23:11:48 -05007104 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
James Smarte47c9092008-02-08 18:49:26 -05007105 lpfc_disc_start(vport);
7106 return;
7107 }
7108 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
7109 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
7110 "0348 NameServer login: node freed\n");
7111 return;
7112 }
James Smart92d7f7b2007-06-17 19:56:38 -05007113 }
James Smart58da1ff2008-04-07 10:15:56 -04007114 ndlp->nlp_type |= NLP_FABRIC;
James Smart92d7f7b2007-06-17 19:56:38 -05007115
7116 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
7117
7118 if (lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0)) {
7119 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
James Smarte8b62012007-08-02 11:10:09 -04007120 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
7121 "0252 Cannot issue NameServer login\n");
James Smart92d7f7b2007-06-17 19:56:38 -05007122 return;
7123 }
7124
James Smart3de2a652007-08-02 11:09:59 -04007125 if (vport->cfg_fdmi_on) {
James Smart63e801c2010-11-20 23:14:19 -05007126 /* If this is the first time, allocate an ndlp and initialize
7127 * it. Otherwise, make sure the node is enabled and then do the
7128 * login.
7129 */
7130 ndlp_fdmi = lpfc_findnode_did(vport, FDMI_DID);
7131 if (!ndlp_fdmi) {
7132 ndlp_fdmi = mempool_alloc(phba->nlp_mem_pool,
7133 GFP_KERNEL);
7134 if (ndlp_fdmi) {
7135 lpfc_nlp_init(vport, ndlp_fdmi, FDMI_DID);
7136 ndlp_fdmi->nlp_type |= NLP_FABRIC;
7137 } else
7138 return;
7139 }
7140 if (!NLP_CHK_NODE_ACT(ndlp_fdmi))
7141 ndlp_fdmi = lpfc_enable_node(vport,
7142 ndlp_fdmi,
7143 NLP_STE_NPR_NODE);
7144
James Smart92d7f7b2007-06-17 19:56:38 -05007145 if (ndlp_fdmi) {
James Smart58da1ff2008-04-07 10:15:56 -04007146 lpfc_nlp_set_state(vport, ndlp_fdmi,
James Smart63e801c2010-11-20 23:14:19 -05007147 NLP_STE_PLOGI_ISSUE);
7148 lpfc_issue_els_plogi(vport, ndlp_fdmi->nlp_DID, 0);
James Smart92d7f7b2007-06-17 19:56:38 -05007149 }
7150 }
James Smart92d7f7b2007-06-17 19:56:38 -05007151}
7152
James Smarte59058c2008-08-24 21:49:00 -04007153/**
James Smart3621a712009-04-06 18:47:14 -04007154 * lpfc_cmpl_reg_new_vport - Completion callback function to register new vport
James Smarte59058c2008-08-24 21:49:00 -04007155 * @phba: pointer to lpfc hba data structure.
7156 * @pmb: pointer to the driver internal queue element for mailbox command.
7157 *
7158 * This routine is the completion callback function to register new vport
7159 * mailbox command. If the new vport mailbox command completes successfully,
7160 * the fabric registration login shall be performed on physical port (the
7161 * new vport created is actually a physical port, with VPI 0) or the port
7162 * login to Name Server for State Change Request (SCR) will be performed
7163 * on virtual port (real virtual port, with VPI greater than 0).
7164 **/
James Smart92d7f7b2007-06-17 19:56:38 -05007165static void
7166lpfc_cmpl_reg_new_vport(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
7167{
7168 struct lpfc_vport *vport = pmb->vport;
7169 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
7170 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) pmb->context2;
James Smart04c68492009-05-22 14:52:52 -04007171 MAILBOX_t *mb = &pmb->u.mb;
James Smart695a8142010-01-26 23:08:03 -05007172 int rc;
James Smart92d7f7b2007-06-17 19:56:38 -05007173
James Smart09372822008-01-11 01:52:54 -05007174 spin_lock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05007175 vport->fc_flag &= ~FC_VPORT_NEEDS_REG_VPI;
James Smart09372822008-01-11 01:52:54 -05007176 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05007177
7178 if (mb->mbxStatus) {
James Smarte8b62012007-08-02 11:10:09 -04007179 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
James Smart38b92ef2010-08-04 16:11:39 -04007180 "0915 Register VPI failed : Status: x%x"
7181 " upd bit: x%x \n", mb->mbxStatus,
7182 mb->un.varRegVpi.upd);
7183 if (phba->sli_rev == LPFC_SLI_REV4 &&
7184 mb->un.varRegVpi.upd)
7185 goto mbox_err_exit ;
James Smart92d7f7b2007-06-17 19:56:38 -05007186
7187 switch (mb->mbxStatus) {
7188 case 0x11: /* unsupported feature */
7189 case 0x9603: /* max_vpi exceeded */
James Smart7f5f3d02008-02-08 18:50:14 -05007190 case 0x9602: /* Link event since CLEAR_LA */
James Smart92d7f7b2007-06-17 19:56:38 -05007191 /* giving up on vport registration */
7192 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
7193 spin_lock_irq(shost->host_lock);
7194 vport->fc_flag &= ~(FC_FABRIC | FC_PUBLIC_LOOP);
7195 spin_unlock_irq(shost->host_lock);
7196 lpfc_can_disctmo(vport);
7197 break;
James Smart695a8142010-01-26 23:08:03 -05007198 /* If reg_vpi fail with invalid VPI status, re-init VPI */
7199 case 0x20:
7200 spin_lock_irq(shost->host_lock);
7201 vport->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
7202 spin_unlock_irq(shost->host_lock);
7203 lpfc_init_vpi(phba, pmb, vport->vpi);
7204 pmb->vport = vport;
7205 pmb->mbox_cmpl = lpfc_init_vpi_cmpl;
7206 rc = lpfc_sli_issue_mbox(phba, pmb,
7207 MBX_NOWAIT);
7208 if (rc == MBX_NOT_FINISHED) {
7209 lpfc_printf_vlog(vport,
7210 KERN_ERR, LOG_MBOX,
7211 "2732 Failed to issue INIT_VPI"
7212 " mailbox command\n");
7213 } else {
7214 lpfc_nlp_put(ndlp);
7215 return;
7216 }
7217
James Smart92d7f7b2007-06-17 19:56:38 -05007218 default:
7219 /* Try to recover from this error */
James Smart5af5eee2010-10-22 11:06:38 -04007220 if (phba->sli_rev == LPFC_SLI_REV4)
7221 lpfc_sli4_unreg_all_rpis(vport);
James Smart92d7f7b2007-06-17 19:56:38 -05007222 lpfc_mbx_unreg_vpi(vport);
James Smart09372822008-01-11 01:52:54 -05007223 spin_lock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05007224 vport->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
James Smart09372822008-01-11 01:52:54 -05007225 spin_unlock_irq(shost->host_lock);
James Smart4b40c592010-03-15 11:25:44 -04007226 if (vport->port_type == LPFC_PHYSICAL_PORT
7227 && !(vport->fc_flag & FC_LOGO_RCVD_DID_CHNG))
James Smart76a95d72010-11-20 23:11:48 -05007228 lpfc_issue_init_vfi(vport);
James Smart7f5f3d02008-02-08 18:50:14 -05007229 else
7230 lpfc_initial_fdisc(vport);
James Smart92d7f7b2007-06-17 19:56:38 -05007231 break;
7232 }
James Smart92d7f7b2007-06-17 19:56:38 -05007233 } else {
James Smart695a8142010-01-26 23:08:03 -05007234 spin_lock_irq(shost->host_lock);
James Smart19878072009-12-21 17:02:00 -05007235 vport->vpi_state |= LPFC_VPI_REGISTERED;
James Smart695a8142010-01-26 23:08:03 -05007236 spin_unlock_irq(shost->host_lock);
7237 if (vport == phba->pport) {
James Smart6fb120a2009-05-22 14:52:59 -04007238 if (phba->sli_rev < LPFC_SLI_REV4)
7239 lpfc_issue_fabric_reglogin(vport);
James Smart695a8142010-01-26 23:08:03 -05007240 else {
James Smartfc2b9892010-02-26 14:15:29 -05007241 /*
7242 * If the physical port is instantiated using
7243 * FDISC, do not start vport discovery.
7244 */
7245 if (vport->port_state != LPFC_FDISC)
7246 lpfc_start_fdiscs(phba);
James Smart695a8142010-01-26 23:08:03 -05007247 lpfc_do_scr_ns_plogi(phba, vport);
7248 }
7249 } else
James Smart92d7f7b2007-06-17 19:56:38 -05007250 lpfc_do_scr_ns_plogi(phba, vport);
7251 }
James Smart38b92ef2010-08-04 16:11:39 -04007252mbox_err_exit:
James Smartfa4066b2008-01-11 01:53:27 -05007253 /* Now, we decrement the ndlp reference count held for this
7254 * callback function
7255 */
7256 lpfc_nlp_put(ndlp);
7257
James Smart92d7f7b2007-06-17 19:56:38 -05007258 mempool_free(pmb, phba->mbox_mem_pool);
7259 return;
7260}
7261
James Smarte59058c2008-08-24 21:49:00 -04007262/**
James Smart3621a712009-04-06 18:47:14 -04007263 * lpfc_register_new_vport - Register a new vport with a HBA
James Smarte59058c2008-08-24 21:49:00 -04007264 * @phba: pointer to lpfc hba data structure.
7265 * @vport: pointer to a host virtual N_Port data structure.
7266 * @ndlp: pointer to a node-list data structure.
7267 *
7268 * This routine registers the @vport as a new virtual port with a HBA.
7269 * It is done through a registering vpi mailbox command.
7270 **/
James Smart695a8142010-01-26 23:08:03 -05007271void
James Smart92d7f7b2007-06-17 19:56:38 -05007272lpfc_register_new_vport(struct lpfc_hba *phba, struct lpfc_vport *vport,
7273 struct lpfc_nodelist *ndlp)
7274{
James Smart09372822008-01-11 01:52:54 -05007275 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart92d7f7b2007-06-17 19:56:38 -05007276 LPFC_MBOXQ_t *mbox;
7277
7278 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
7279 if (mbox) {
James Smart6fb120a2009-05-22 14:52:59 -04007280 lpfc_reg_vpi(vport, mbox);
James Smart92d7f7b2007-06-17 19:56:38 -05007281 mbox->vport = vport;
7282 mbox->context2 = lpfc_nlp_get(ndlp);
7283 mbox->mbox_cmpl = lpfc_cmpl_reg_new_vport;
James Smart0b727fe2007-10-27 13:37:25 -04007284 if (lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT)
James Smart92d7f7b2007-06-17 19:56:38 -05007285 == MBX_NOT_FINISHED) {
James Smartfa4066b2008-01-11 01:53:27 -05007286 /* mailbox command not success, decrement ndlp
7287 * reference count for this command
7288 */
7289 lpfc_nlp_put(ndlp);
James Smart92d7f7b2007-06-17 19:56:38 -05007290 mempool_free(mbox, phba->mbox_mem_pool);
James Smart92d7f7b2007-06-17 19:56:38 -05007291
James Smarte8b62012007-08-02 11:10:09 -04007292 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
7293 "0253 Register VPI: Can't send mbox\n");
James Smartfa4066b2008-01-11 01:53:27 -05007294 goto mbox_err_exit;
James Smart92d7f7b2007-06-17 19:56:38 -05007295 }
7296 } else {
James Smarte8b62012007-08-02 11:10:09 -04007297 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
7298 "0254 Register VPI: no memory\n");
James Smartfa4066b2008-01-11 01:53:27 -05007299 goto mbox_err_exit;
James Smart92d7f7b2007-06-17 19:56:38 -05007300 }
James Smartfa4066b2008-01-11 01:53:27 -05007301 return;
7302
7303mbox_err_exit:
7304 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
7305 spin_lock_irq(shost->host_lock);
7306 vport->fc_flag &= ~FC_VPORT_NEEDS_REG_VPI;
7307 spin_unlock_irq(shost->host_lock);
7308 return;
James Smart92d7f7b2007-06-17 19:56:38 -05007309}
7310
James Smarte59058c2008-08-24 21:49:00 -04007311/**
James Smart0c9ab6f2010-02-26 14:15:57 -05007312 * lpfc_cancel_all_vport_retry_delay_timer - Cancel all vport retry delay timer
James Smart695a8142010-01-26 23:08:03 -05007313 * @phba: pointer to lpfc hba data structure.
7314 *
James Smart0c9ab6f2010-02-26 14:15:57 -05007315 * This routine cancels the retry delay timers to all the vports.
James Smart695a8142010-01-26 23:08:03 -05007316 **/
7317void
James Smart0c9ab6f2010-02-26 14:15:57 -05007318lpfc_cancel_all_vport_retry_delay_timer(struct lpfc_hba *phba)
James Smart695a8142010-01-26 23:08:03 -05007319{
7320 struct lpfc_vport **vports;
7321 struct lpfc_nodelist *ndlp;
James Smart695a8142010-01-26 23:08:03 -05007322 uint32_t link_state;
James Smart0c9ab6f2010-02-26 14:15:57 -05007323 int i;
James Smart695a8142010-01-26 23:08:03 -05007324
7325 /* Treat this failure as linkdown for all vports */
7326 link_state = phba->link_state;
7327 lpfc_linkdown(phba);
7328 phba->link_state = link_state;
7329
7330 vports = lpfc_create_vport_work_array(phba);
7331
7332 if (vports) {
7333 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
7334 ndlp = lpfc_findnode_did(vports[i], Fabric_DID);
7335 if (ndlp)
7336 lpfc_cancel_retry_delay_tmo(vports[i], ndlp);
7337 lpfc_els_flush_cmd(vports[i]);
7338 }
7339 lpfc_destroy_vport_work_array(phba, vports);
7340 }
James Smart0c9ab6f2010-02-26 14:15:57 -05007341}
7342
7343/**
7344 * lpfc_retry_pport_discovery - Start timer to retry FLOGI.
7345 * @phba: pointer to lpfc hba data structure.
7346 *
7347 * This routine abort all pending discovery commands and
7348 * start a timer to retry FLOGI for the physical port
7349 * discovery.
7350 **/
7351void
7352lpfc_retry_pport_discovery(struct lpfc_hba *phba)
7353{
7354 struct lpfc_nodelist *ndlp;
7355 struct Scsi_Host *shost;
7356
7357 /* Cancel the all vports retry delay retry timers */
7358 lpfc_cancel_all_vport_retry_delay_timer(phba);
James Smart695a8142010-01-26 23:08:03 -05007359
7360 /* If fabric require FLOGI, then re-instantiate physical login */
7361 ndlp = lpfc_findnode_did(phba->pport, Fabric_DID);
7362 if (!ndlp)
7363 return;
7364
James Smart695a8142010-01-26 23:08:03 -05007365 shost = lpfc_shost_from_vport(phba->pport);
James Smart256ec0d2013-04-17 20:14:58 -04007366 mod_timer(&ndlp->nlp_delayfunc, jiffies + msecs_to_jiffies(1000));
James Smart695a8142010-01-26 23:08:03 -05007367 spin_lock_irq(shost->host_lock);
7368 ndlp->nlp_flag |= NLP_DELAY_TMO;
7369 spin_unlock_irq(shost->host_lock);
7370 ndlp->nlp_last_elscmd = ELS_CMD_FLOGI;
7371 phba->pport->port_state = LPFC_FLOGI;
7372 return;
7373}
7374
7375/**
7376 * lpfc_fabric_login_reqd - Check if FLOGI required.
7377 * @phba: pointer to lpfc hba data structure.
7378 * @cmdiocb: pointer to FDISC command iocb.
7379 * @rspiocb: pointer to FDISC response iocb.
7380 *
7381 * This routine checks if a FLOGI is reguired for FDISC
7382 * to succeed.
7383 **/
7384static int
7385lpfc_fabric_login_reqd(struct lpfc_hba *phba,
7386 struct lpfc_iocbq *cmdiocb,
7387 struct lpfc_iocbq *rspiocb)
7388{
7389
7390 if ((rspiocb->iocb.ulpStatus != IOSTAT_FABRIC_RJT) ||
7391 (rspiocb->iocb.un.ulpWord[4] != RJT_LOGIN_REQUIRED))
7392 return 0;
7393 else
7394 return 1;
7395}
7396
7397/**
James Smart3621a712009-04-06 18:47:14 -04007398 * lpfc_cmpl_els_fdisc - Completion function for fdisc iocb command
James Smarte59058c2008-08-24 21:49:00 -04007399 * @phba: pointer to lpfc hba data structure.
7400 * @cmdiocb: pointer to lpfc command iocb data structure.
7401 * @rspiocb: pointer to lpfc response iocb data structure.
7402 *
7403 * This routine is the completion callback function to a Fabric Discover
7404 * (FDISC) ELS command. Since all the FDISC ELS commands are issued
7405 * single threaded, each FDISC completion callback function will reset
7406 * the discovery timer for all vports such that the timers will not get
7407 * unnecessary timeout. The function checks the FDISC IOCB status. If error
7408 * detected, the vport will be set to FC_VPORT_FAILED state. Otherwise,the
7409 * vport will set to FC_VPORT_ACTIVE state. It then checks whether the DID
7410 * assigned to the vport has been changed with the completion of the FDISC
7411 * command. If so, both RPI (Remote Port Index) and VPI (Virtual Port Index)
7412 * are unregistered from the HBA, and then the lpfc_register_new_vport()
7413 * routine is invoked to register new vport with the HBA. Otherwise, the
7414 * lpfc_do_scr_ns_plogi() routine is invoked to issue a PLOGI to the Name
7415 * Server for State Change Request (SCR).
7416 **/
James Smart92d7f7b2007-06-17 19:56:38 -05007417static void
7418lpfc_cmpl_els_fdisc(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
7419 struct lpfc_iocbq *rspiocb)
7420{
7421 struct lpfc_vport *vport = cmdiocb->vport;
7422 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
7423 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
7424 struct lpfc_nodelist *np;
7425 struct lpfc_nodelist *next_np;
7426 IOCB_t *irsp = &rspiocb->iocb;
7427 struct lpfc_iocbq *piocb;
James Smart92494142011-02-16 12:39:44 -05007428 struct lpfc_dmabuf *pcmd = cmdiocb->context2, *prsp;
7429 struct serv_parm *sp;
7430 uint8_t fabric_param_changed;
James Smart92d7f7b2007-06-17 19:56:38 -05007431
James Smarte8b62012007-08-02 11:10:09 -04007432 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
7433 "0123 FDISC completes. x%x/x%x prevDID: x%x\n",
7434 irsp->ulpStatus, irsp->un.ulpWord[4],
7435 vport->fc_prevDID);
James Smart92d7f7b2007-06-17 19:56:38 -05007436 /* Since all FDISCs are being single threaded, we
7437 * must reset the discovery timer for ALL vports
7438 * waiting to send FDISC when one completes.
7439 */
7440 list_for_each_entry(piocb, &phba->fabric_iocb_list, list) {
7441 lpfc_set_disctmo(piocb->vport);
7442 }
7443
James Smart858c9f62007-06-17 19:56:39 -05007444 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
7445 "FDISC cmpl: status:x%x/x%x prevdid:x%x",
7446 irsp->ulpStatus, irsp->un.ulpWord[4], vport->fc_prevDID);
7447
James Smart92d7f7b2007-06-17 19:56:38 -05007448 if (irsp->ulpStatus) {
James Smart695a8142010-01-26 23:08:03 -05007449
7450 if (lpfc_fabric_login_reqd(phba, cmdiocb, rspiocb)) {
7451 lpfc_retry_pport_discovery(phba);
7452 goto out;
7453 }
7454
James Smart92d7f7b2007-06-17 19:56:38 -05007455 /* Check for retry */
7456 if (lpfc_els_retry(phba, cmdiocb, rspiocb))
7457 goto out;
James Smart92d7f7b2007-06-17 19:56:38 -05007458 /* FDISC failed */
James Smarte8b62012007-08-02 11:10:09 -04007459 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
James Smart6b5151f2012-01-18 16:24:06 -05007460 "0126 FDISC failed. (x%x/x%x)\n",
James Smarte8b62012007-08-02 11:10:09 -04007461 irsp->ulpStatus, irsp->un.ulpWord[4]);
James Smartd7c255b2008-08-24 21:50:00 -04007462 goto fdisc_failed;
7463 }
James Smartd7c255b2008-08-24 21:50:00 -04007464 spin_lock_irq(shost->host_lock);
James Smart695a8142010-01-26 23:08:03 -05007465 vport->fc_flag &= ~FC_VPORT_CVL_RCVD;
James Smart4b40c592010-03-15 11:25:44 -04007466 vport->fc_flag &= ~FC_VPORT_LOGO_RCVD;
James Smartd7c255b2008-08-24 21:50:00 -04007467 vport->fc_flag |= FC_FABRIC;
James Smart76a95d72010-11-20 23:11:48 -05007468 if (vport->phba->fc_topology == LPFC_TOPOLOGY_LOOP)
James Smartd7c255b2008-08-24 21:50:00 -04007469 vport->fc_flag |= FC_PUBLIC_LOOP;
7470 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05007471
James Smartd7c255b2008-08-24 21:50:00 -04007472 vport->fc_myDID = irsp->un.ulpWord[4] & Mask_DID;
7473 lpfc_vport_set_state(vport, FC_VPORT_ACTIVE);
James Smart92494142011-02-16 12:39:44 -05007474 prsp = list_get_first(&pcmd->list, struct lpfc_dmabuf, list);
7475 sp = prsp->virt + sizeof(uint32_t);
7476 fabric_param_changed = lpfc_check_clean_addr_bit(vport, sp);
7477 memcpy(&vport->fabric_portname, &sp->portName,
7478 sizeof(struct lpfc_name));
7479 memcpy(&vport->fabric_nodename, &sp->nodeName,
7480 sizeof(struct lpfc_name));
7481 if (fabric_param_changed &&
James Smartd7c255b2008-08-24 21:50:00 -04007482 !(vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)) {
7483 /* If our NportID changed, we need to ensure all
7484 * remaining NPORTs get unreg_login'ed so we can
7485 * issue unreg_vpi.
7486 */
7487 list_for_each_entry_safe(np, next_np,
7488 &vport->fc_nodes, nlp_listp) {
7489 if (!NLP_CHK_NODE_ACT(ndlp) ||
7490 (np->nlp_state != NLP_STE_NPR_NODE) ||
7491 !(np->nlp_flag & NLP_NPR_ADISC))
7492 continue;
James Smart09372822008-01-11 01:52:54 -05007493 spin_lock_irq(shost->host_lock);
James Smartd7c255b2008-08-24 21:50:00 -04007494 np->nlp_flag &= ~NLP_NPR_ADISC;
James Smart09372822008-01-11 01:52:54 -05007495 spin_unlock_irq(shost->host_lock);
James Smartd7c255b2008-08-24 21:50:00 -04007496 lpfc_unreg_rpi(vport, np);
James Smart92d7f7b2007-06-17 19:56:38 -05007497 }
James Smart78730cf2010-04-06 15:06:30 -04007498 lpfc_cleanup_pending_mbox(vport);
James Smart5af5eee2010-10-22 11:06:38 -04007499
7500 if (phba->sli_rev == LPFC_SLI_REV4)
7501 lpfc_sli4_unreg_all_rpis(vport);
7502
James Smartd7c255b2008-08-24 21:50:00 -04007503 lpfc_mbx_unreg_vpi(vport);
7504 spin_lock_irq(shost->host_lock);
7505 vport->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
James Smart0f65ff62010-02-26 14:14:23 -05007506 if (phba->sli_rev == LPFC_SLI_REV4)
7507 vport->fc_flag |= FC_VPORT_NEEDS_INIT_VPI;
James Smart4b40c592010-03-15 11:25:44 -04007508 else
7509 vport->fc_flag |= FC_LOGO_RCVD_DID_CHNG;
James Smartd7c255b2008-08-24 21:50:00 -04007510 spin_unlock_irq(shost->host_lock);
James Smart38b92ef2010-08-04 16:11:39 -04007511 } else if ((phba->sli_rev == LPFC_SLI_REV4) &&
7512 !(vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)) {
7513 /*
7514 * Driver needs to re-reg VPI in order for f/w
7515 * to update the MAC address.
7516 */
7517 lpfc_register_new_vport(phba, vport, ndlp);
James Smart5ac6b302010-10-22 11:05:36 -04007518 goto out;
James Smart92d7f7b2007-06-17 19:56:38 -05007519 }
7520
James Smartecfd03c2010-02-12 14:41:27 -05007521 if (vport->fc_flag & FC_VPORT_NEEDS_INIT_VPI)
7522 lpfc_issue_init_vpi(vport);
7523 else if (vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)
James Smartd7c255b2008-08-24 21:50:00 -04007524 lpfc_register_new_vport(phba, vport, ndlp);
7525 else
7526 lpfc_do_scr_ns_plogi(phba, vport);
7527 goto out;
7528fdisc_failed:
7529 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
7530 /* Cancel discovery timer */
7531 lpfc_can_disctmo(vport);
7532 lpfc_nlp_put(ndlp);
James Smart92d7f7b2007-06-17 19:56:38 -05007533out:
7534 lpfc_els_free_iocb(phba, cmdiocb);
7535}
7536
James Smarte59058c2008-08-24 21:49:00 -04007537/**
James Smart3621a712009-04-06 18:47:14 -04007538 * lpfc_issue_els_fdisc - Issue a fdisc iocb command
James Smarte59058c2008-08-24 21:49:00 -04007539 * @vport: pointer to a virtual N_Port data structure.
7540 * @ndlp: pointer to a node-list data structure.
7541 * @retry: number of retries to the command IOCB.
7542 *
7543 * This routine prepares and issues a Fabric Discover (FDISC) IOCB to
7544 * a remote node (@ndlp) off a @vport. It uses the lpfc_issue_fabric_iocb()
7545 * routine to issue the IOCB, which makes sure only one outstanding fabric
7546 * IOCB will be sent off HBA at any given time.
7547 *
7548 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
7549 * will be incremented by 1 for holding the ndlp and the reference to ndlp
7550 * will be stored into the context1 field of the IOCB for the completion
7551 * callback function to the FDISC ELS command.
7552 *
7553 * Return code
7554 * 0 - Successfully issued fdisc iocb command
7555 * 1 - Failed to issue fdisc iocb command
7556 **/
Adrian Bunka6ababd2007-11-05 18:07:33 +01007557static int
James Smart92d7f7b2007-06-17 19:56:38 -05007558lpfc_issue_els_fdisc(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
7559 uint8_t retry)
7560{
7561 struct lpfc_hba *phba = vport->phba;
7562 IOCB_t *icmd;
7563 struct lpfc_iocbq *elsiocb;
7564 struct serv_parm *sp;
7565 uint8_t *pcmd;
7566 uint16_t cmdsize;
7567 int did = ndlp->nlp_DID;
7568 int rc;
James Smart92d7f7b2007-06-17 19:56:38 -05007569
James Smart5ffc2662009-11-18 15:39:44 -05007570 vport->port_state = LPFC_FDISC;
James Smart6b5151f2012-01-18 16:24:06 -05007571 vport->fc_myDID = 0;
James Smart92d7f7b2007-06-17 19:56:38 -05007572 cmdsize = (sizeof(uint32_t) + sizeof(struct serv_parm));
7573 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp, did,
7574 ELS_CMD_FDISC);
7575 if (!elsiocb) {
James Smart92d7f7b2007-06-17 19:56:38 -05007576 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
James Smarte8b62012007-08-02 11:10:09 -04007577 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
7578 "0255 Issue FDISC: no IOCB\n");
James Smart92d7f7b2007-06-17 19:56:38 -05007579 return 1;
7580 }
7581
7582 icmd = &elsiocb->iocb;
7583 icmd->un.elsreq64.myID = 0;
7584 icmd->un.elsreq64.fl = 1;
7585
James Smart73d91e52011-10-10 21:32:10 -04007586 /*
7587 * SLI3 ports require a different context type value than SLI4.
7588 * Catch SLI3 ports here and override the prep.
7589 */
7590 if (phba->sli_rev == LPFC_SLI_REV3) {
James Smartf1126682009-06-10 17:22:44 -04007591 icmd->ulpCt_h = 1;
7592 icmd->ulpCt_l = 0;
7593 }
James Smart92d7f7b2007-06-17 19:56:38 -05007594
7595 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
7596 *((uint32_t *) (pcmd)) = ELS_CMD_FDISC;
7597 pcmd += sizeof(uint32_t); /* CSP Word 1 */
7598 memcpy(pcmd, &vport->phba->pport->fc_sparam, sizeof(struct serv_parm));
7599 sp = (struct serv_parm *) pcmd;
7600 /* Setup CSPs accordingly for Fabric */
7601 sp->cmn.e_d_tov = 0;
7602 sp->cmn.w2.r_a_tov = 0;
James Smartdf9e1b52011-12-13 13:22:17 -05007603 sp->cmn.virtual_fabric_support = 0;
James Smart92d7f7b2007-06-17 19:56:38 -05007604 sp->cls1.classValid = 0;
7605 sp->cls2.seqDelivery = 1;
7606 sp->cls3.seqDelivery = 1;
7607
7608 pcmd += sizeof(uint32_t); /* CSP Word 2 */
7609 pcmd += sizeof(uint32_t); /* CSP Word 3 */
7610 pcmd += sizeof(uint32_t); /* CSP Word 4 */
7611 pcmd += sizeof(uint32_t); /* Port Name */
7612 memcpy(pcmd, &vport->fc_portname, 8);
7613 pcmd += sizeof(uint32_t); /* Node Name */
7614 pcmd += sizeof(uint32_t); /* Node Name */
7615 memcpy(pcmd, &vport->fc_nodename, 8);
7616
7617 lpfc_set_disctmo(vport);
7618
7619 phba->fc_stat.elsXmitFDISC++;
7620 elsiocb->iocb_cmpl = lpfc_cmpl_els_fdisc;
7621
James Smart858c9f62007-06-17 19:56:39 -05007622 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
7623 "Issue FDISC: did:x%x",
7624 did, 0, 0);
7625
James Smart92d7f7b2007-06-17 19:56:38 -05007626 rc = lpfc_issue_fabric_iocb(phba, elsiocb);
7627 if (rc == IOCB_ERROR) {
7628 lpfc_els_free_iocb(phba, elsiocb);
James Smart92d7f7b2007-06-17 19:56:38 -05007629 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
James Smarte8b62012007-08-02 11:10:09 -04007630 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
7631 "0256 Issue FDISC: Cannot send IOCB\n");
James Smart92d7f7b2007-06-17 19:56:38 -05007632 return 1;
7633 }
7634 lpfc_vport_set_state(vport, FC_VPORT_INITIALIZING);
James Smart92d7f7b2007-06-17 19:56:38 -05007635 return 0;
7636}
7637
James Smarte59058c2008-08-24 21:49:00 -04007638/**
James Smart3621a712009-04-06 18:47:14 -04007639 * lpfc_cmpl_els_npiv_logo - Completion function with vport logo
James Smarte59058c2008-08-24 21:49:00 -04007640 * @phba: pointer to lpfc hba data structure.
7641 * @cmdiocb: pointer to lpfc command iocb data structure.
7642 * @rspiocb: pointer to lpfc response iocb data structure.
7643 *
7644 * This routine is the completion callback function to the issuing of a LOGO
7645 * ELS command off a vport. It frees the command IOCB and then decrement the
7646 * reference count held on ndlp for this completion function, indicating that
7647 * the reference to the ndlp is no long needed. Note that the
7648 * lpfc_els_free_iocb() routine decrements the ndlp reference held for this
7649 * callback function and an additional explicit ndlp reference decrementation
7650 * will trigger the actual release of the ndlp.
7651 **/
James Smart92d7f7b2007-06-17 19:56:38 -05007652static void
7653lpfc_cmpl_els_npiv_logo(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
7654 struct lpfc_iocbq *rspiocb)
7655{
7656 struct lpfc_vport *vport = cmdiocb->vport;
James Smart858c9f62007-06-17 19:56:39 -05007657 IOCB_t *irsp;
James Smarte47c9092008-02-08 18:49:26 -05007658 struct lpfc_nodelist *ndlp;
James Smart9589b062011-04-16 11:03:17 -04007659 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart858c9f62007-06-17 19:56:39 -05007660
James Smart9589b062011-04-16 11:03:17 -04007661 ndlp = (struct lpfc_nodelist *)cmdiocb->context1;
James Smart858c9f62007-06-17 19:56:39 -05007662 irsp = &rspiocb->iocb;
7663 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
7664 "LOGO npiv cmpl: status:x%x/x%x did:x%x",
7665 irsp->ulpStatus, irsp->un.ulpWord[4], irsp->un.rcvels.remoteID);
James Smart92d7f7b2007-06-17 19:56:38 -05007666
7667 lpfc_els_free_iocb(phba, cmdiocb);
7668 vport->unreg_vpi_cmpl = VPORT_ERROR;
James Smarte47c9092008-02-08 18:49:26 -05007669
7670 /* Trigger the release of the ndlp after logo */
7671 lpfc_nlp_put(ndlp);
James Smart9589b062011-04-16 11:03:17 -04007672
7673 /* NPIV LOGO completes to NPort <nlp_DID> */
7674 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
7675 "2928 NPIV LOGO completes to NPort x%x "
7676 "Data: x%x x%x x%x x%x\n",
7677 ndlp->nlp_DID, irsp->ulpStatus, irsp->un.ulpWord[4],
7678 irsp->ulpTimeout, vport->num_disc_nodes);
7679
7680 if (irsp->ulpStatus == IOSTAT_SUCCESS) {
7681 spin_lock_irq(shost->host_lock);
7682 vport->fc_flag &= ~FC_FABRIC;
7683 spin_unlock_irq(shost->host_lock);
7684 }
James Smart92d7f7b2007-06-17 19:56:38 -05007685}
7686
James Smarte59058c2008-08-24 21:49:00 -04007687/**
James Smart3621a712009-04-06 18:47:14 -04007688 * lpfc_issue_els_npiv_logo - Issue a logo off a vport
James Smarte59058c2008-08-24 21:49:00 -04007689 * @vport: pointer to a virtual N_Port data structure.
7690 * @ndlp: pointer to a node-list data structure.
7691 *
7692 * This routine issues a LOGO ELS command to an @ndlp off a @vport.
7693 *
7694 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
7695 * will be incremented by 1 for holding the ndlp and the reference to ndlp
7696 * will be stored into the context1 field of the IOCB for the completion
7697 * callback function to the LOGO ELS command.
7698 *
7699 * Return codes
7700 * 0 - Successfully issued logo off the @vport
7701 * 1 - Failed to issue logo off the @vport
7702 **/
James Smart92d7f7b2007-06-17 19:56:38 -05007703int
7704lpfc_issue_els_npiv_logo(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
7705{
7706 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
7707 struct lpfc_hba *phba = vport->phba;
James Smart92d7f7b2007-06-17 19:56:38 -05007708 IOCB_t *icmd;
7709 struct lpfc_iocbq *elsiocb;
7710 uint8_t *pcmd;
7711 uint16_t cmdsize;
7712
7713 cmdsize = 2 * sizeof(uint32_t) + sizeof(struct lpfc_name);
7714 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, 0, ndlp, ndlp->nlp_DID,
7715 ELS_CMD_LOGO);
7716 if (!elsiocb)
7717 return 1;
7718
7719 icmd = &elsiocb->iocb;
7720 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
7721 *((uint32_t *) (pcmd)) = ELS_CMD_LOGO;
7722 pcmd += sizeof(uint32_t);
7723
7724 /* Fill in LOGO payload */
7725 *((uint32_t *) (pcmd)) = be32_to_cpu(vport->fc_myDID);
7726 pcmd += sizeof(uint32_t);
7727 memcpy(pcmd, &vport->fc_portname, sizeof(struct lpfc_name));
7728
James Smart858c9f62007-06-17 19:56:39 -05007729 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
7730 "Issue LOGO npiv did:x%x flg:x%x",
7731 ndlp->nlp_DID, ndlp->nlp_flag, 0);
7732
James Smart92d7f7b2007-06-17 19:56:38 -05007733 elsiocb->iocb_cmpl = lpfc_cmpl_els_npiv_logo;
7734 spin_lock_irq(shost->host_lock);
7735 ndlp->nlp_flag |= NLP_LOGO_SND;
7736 spin_unlock_irq(shost->host_lock);
James Smart3772a992009-05-22 14:50:54 -04007737 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) ==
7738 IOCB_ERROR) {
James Smart92d7f7b2007-06-17 19:56:38 -05007739 spin_lock_irq(shost->host_lock);
7740 ndlp->nlp_flag &= ~NLP_LOGO_SND;
7741 spin_unlock_irq(shost->host_lock);
7742 lpfc_els_free_iocb(phba, elsiocb);
7743 return 1;
7744 }
7745 return 0;
7746}
7747
James Smarte59058c2008-08-24 21:49:00 -04007748/**
James Smart3621a712009-04-06 18:47:14 -04007749 * lpfc_fabric_block_timeout - Handler function to the fabric block timer
James Smarte59058c2008-08-24 21:49:00 -04007750 * @ptr: holder for the timer function associated data.
7751 *
7752 * This routine is invoked by the fabric iocb block timer after
7753 * timeout. It posts the fabric iocb block timeout event by setting the
7754 * WORKER_FABRIC_BLOCK_TMO bit to work port event bitmap and then invokes
7755 * lpfc_worker_wake_up() routine to wake up the worker thread. It is for
7756 * the worker thread to invoke the lpfc_unblock_fabric_iocbs() on the
7757 * posted event WORKER_FABRIC_BLOCK_TMO.
7758 **/
James Smart92d7f7b2007-06-17 19:56:38 -05007759void
7760lpfc_fabric_block_timeout(unsigned long ptr)
7761{
7762 struct lpfc_hba *phba = (struct lpfc_hba *) ptr;
7763 unsigned long iflags;
7764 uint32_t tmo_posted;
James Smart5e9d9b82008-06-14 22:52:53 -04007765
James Smart92d7f7b2007-06-17 19:56:38 -05007766 spin_lock_irqsave(&phba->pport->work_port_lock, iflags);
7767 tmo_posted = phba->pport->work_port_events & WORKER_FABRIC_BLOCK_TMO;
7768 if (!tmo_posted)
7769 phba->pport->work_port_events |= WORKER_FABRIC_BLOCK_TMO;
7770 spin_unlock_irqrestore(&phba->pport->work_port_lock, iflags);
7771
James Smart5e9d9b82008-06-14 22:52:53 -04007772 if (!tmo_posted)
7773 lpfc_worker_wake_up(phba);
7774 return;
James Smart92d7f7b2007-06-17 19:56:38 -05007775}
7776
James Smarte59058c2008-08-24 21:49:00 -04007777/**
James Smart3621a712009-04-06 18:47:14 -04007778 * lpfc_resume_fabric_iocbs - Issue a fabric iocb from driver internal list
James Smarte59058c2008-08-24 21:49:00 -04007779 * @phba: pointer to lpfc hba data structure.
7780 *
7781 * This routine issues one fabric iocb from the driver internal list to
7782 * the HBA. It first checks whether it's ready to issue one fabric iocb to
7783 * the HBA (whether there is no outstanding fabric iocb). If so, it shall
7784 * remove one pending fabric iocb from the driver internal list and invokes
7785 * lpfc_sli_issue_iocb() routine to send the fabric iocb to the HBA.
7786 **/
James Smart92d7f7b2007-06-17 19:56:38 -05007787static void
7788lpfc_resume_fabric_iocbs(struct lpfc_hba *phba)
7789{
7790 struct lpfc_iocbq *iocb;
7791 unsigned long iflags;
7792 int ret;
James Smart92d7f7b2007-06-17 19:56:38 -05007793 IOCB_t *cmd;
7794
7795repeat:
7796 iocb = NULL;
7797 spin_lock_irqsave(&phba->hbalock, iflags);
James Smart7f5f3d02008-02-08 18:50:14 -05007798 /* Post any pending iocb to the SLI layer */
James Smart92d7f7b2007-06-17 19:56:38 -05007799 if (atomic_read(&phba->fabric_iocb_count) == 0) {
7800 list_remove_head(&phba->fabric_iocb_list, iocb, typeof(*iocb),
7801 list);
7802 if (iocb)
James Smart7f5f3d02008-02-08 18:50:14 -05007803 /* Increment fabric iocb count to hold the position */
James Smart92d7f7b2007-06-17 19:56:38 -05007804 atomic_inc(&phba->fabric_iocb_count);
7805 }
7806 spin_unlock_irqrestore(&phba->hbalock, iflags);
7807 if (iocb) {
7808 iocb->fabric_iocb_cmpl = iocb->iocb_cmpl;
7809 iocb->iocb_cmpl = lpfc_cmpl_fabric_iocb;
7810 iocb->iocb_flag |= LPFC_IO_FABRIC;
7811
James Smart858c9f62007-06-17 19:56:39 -05007812 lpfc_debugfs_disc_trc(iocb->vport, LPFC_DISC_TRC_ELS_CMD,
7813 "Fabric sched1: ste:x%x",
7814 iocb->vport->port_state, 0, 0);
7815
James Smart3772a992009-05-22 14:50:54 -04007816 ret = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, iocb, 0);
James Smart92d7f7b2007-06-17 19:56:38 -05007817
7818 if (ret == IOCB_ERROR) {
7819 iocb->iocb_cmpl = iocb->fabric_iocb_cmpl;
7820 iocb->fabric_iocb_cmpl = NULL;
7821 iocb->iocb_flag &= ~LPFC_IO_FABRIC;
7822 cmd = &iocb->iocb;
7823 cmd->ulpStatus = IOSTAT_LOCAL_REJECT;
7824 cmd->un.ulpWord[4] = IOERR_SLI_ABORTED;
7825 iocb->iocb_cmpl(phba, iocb, iocb);
7826
7827 atomic_dec(&phba->fabric_iocb_count);
7828 goto repeat;
7829 }
7830 }
7831
7832 return;
7833}
7834
James Smarte59058c2008-08-24 21:49:00 -04007835/**
James Smart3621a712009-04-06 18:47:14 -04007836 * lpfc_unblock_fabric_iocbs - Unblock issuing fabric iocb command
James Smarte59058c2008-08-24 21:49:00 -04007837 * @phba: pointer to lpfc hba data structure.
7838 *
7839 * This routine unblocks the issuing fabric iocb command. The function
7840 * will clear the fabric iocb block bit and then invoke the routine
7841 * lpfc_resume_fabric_iocbs() to issue one of the pending fabric iocb
7842 * from the driver internal fabric iocb list.
7843 **/
James Smart92d7f7b2007-06-17 19:56:38 -05007844void
7845lpfc_unblock_fabric_iocbs(struct lpfc_hba *phba)
7846{
7847 clear_bit(FABRIC_COMANDS_BLOCKED, &phba->bit_flags);
7848
7849 lpfc_resume_fabric_iocbs(phba);
7850 return;
7851}
7852
James Smarte59058c2008-08-24 21:49:00 -04007853/**
James Smart3621a712009-04-06 18:47:14 -04007854 * lpfc_block_fabric_iocbs - Block issuing fabric iocb command
James Smarte59058c2008-08-24 21:49:00 -04007855 * @phba: pointer to lpfc hba data structure.
7856 *
7857 * This routine blocks the issuing fabric iocb for a specified amount of
7858 * time (currently 100 ms). This is done by set the fabric iocb block bit
7859 * and set up a timeout timer for 100ms. When the block bit is set, no more
7860 * fabric iocb will be issued out of the HBA.
7861 **/
James Smart92d7f7b2007-06-17 19:56:38 -05007862static void
7863lpfc_block_fabric_iocbs(struct lpfc_hba *phba)
7864{
7865 int blocked;
7866
7867 blocked = test_and_set_bit(FABRIC_COMANDS_BLOCKED, &phba->bit_flags);
James Smart7f5f3d02008-02-08 18:50:14 -05007868 /* Start a timer to unblock fabric iocbs after 100ms */
James Smart92d7f7b2007-06-17 19:56:38 -05007869 if (!blocked)
James Smart256ec0d2013-04-17 20:14:58 -04007870 mod_timer(&phba->fabric_block_timer,
7871 jiffies + msecs_to_jiffies(100));
James Smart92d7f7b2007-06-17 19:56:38 -05007872
7873 return;
7874}
7875
James Smarte59058c2008-08-24 21:49:00 -04007876/**
James Smart3621a712009-04-06 18:47:14 -04007877 * lpfc_cmpl_fabric_iocb - Completion callback function for fabric iocb
James Smarte59058c2008-08-24 21:49:00 -04007878 * @phba: pointer to lpfc hba data structure.
7879 * @cmdiocb: pointer to lpfc command iocb data structure.
7880 * @rspiocb: pointer to lpfc response iocb data structure.
7881 *
7882 * This routine is the callback function that is put to the fabric iocb's
7883 * callback function pointer (iocb->iocb_cmpl). The original iocb's callback
7884 * function pointer has been stored in iocb->fabric_iocb_cmpl. This callback
7885 * function first restores and invokes the original iocb's callback function
7886 * and then invokes the lpfc_resume_fabric_iocbs() routine to issue the next
7887 * fabric bound iocb from the driver internal fabric iocb list onto the wire.
7888 **/
James Smart92d7f7b2007-06-17 19:56:38 -05007889static void
7890lpfc_cmpl_fabric_iocb(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
7891 struct lpfc_iocbq *rspiocb)
7892{
7893 struct ls_rjt stat;
7894
7895 if ((cmdiocb->iocb_flag & LPFC_IO_FABRIC) != LPFC_IO_FABRIC)
7896 BUG();
7897
7898 switch (rspiocb->iocb.ulpStatus) {
7899 case IOSTAT_NPORT_RJT:
7900 case IOSTAT_FABRIC_RJT:
7901 if (rspiocb->iocb.un.ulpWord[4] & RJT_UNAVAIL_TEMP) {
7902 lpfc_block_fabric_iocbs(phba);
7903 }
7904 break;
7905
7906 case IOSTAT_NPORT_BSY:
7907 case IOSTAT_FABRIC_BSY:
7908 lpfc_block_fabric_iocbs(phba);
7909 break;
7910
7911 case IOSTAT_LS_RJT:
7912 stat.un.lsRjtError =
7913 be32_to_cpu(rspiocb->iocb.un.ulpWord[4]);
7914 if ((stat.un.b.lsRjtRsnCode == LSRJT_UNABLE_TPC) ||
7915 (stat.un.b.lsRjtRsnCode == LSRJT_LOGICAL_BSY))
7916 lpfc_block_fabric_iocbs(phba);
7917 break;
7918 }
7919
7920 if (atomic_read(&phba->fabric_iocb_count) == 0)
7921 BUG();
7922
7923 cmdiocb->iocb_cmpl = cmdiocb->fabric_iocb_cmpl;
7924 cmdiocb->fabric_iocb_cmpl = NULL;
7925 cmdiocb->iocb_flag &= ~LPFC_IO_FABRIC;
7926 cmdiocb->iocb_cmpl(phba, cmdiocb, rspiocb);
7927
7928 atomic_dec(&phba->fabric_iocb_count);
7929 if (!test_bit(FABRIC_COMANDS_BLOCKED, &phba->bit_flags)) {
James Smart7f5f3d02008-02-08 18:50:14 -05007930 /* Post any pending iocbs to HBA */
7931 lpfc_resume_fabric_iocbs(phba);
James Smart92d7f7b2007-06-17 19:56:38 -05007932 }
7933}
7934
James Smarte59058c2008-08-24 21:49:00 -04007935/**
James Smart3621a712009-04-06 18:47:14 -04007936 * lpfc_issue_fabric_iocb - Issue a fabric iocb command
James Smarte59058c2008-08-24 21:49:00 -04007937 * @phba: pointer to lpfc hba data structure.
7938 * @iocb: pointer to lpfc command iocb data structure.
7939 *
7940 * This routine is used as the top-level API for issuing a fabric iocb command
7941 * such as FLOGI and FDISC. To accommodate certain switch fabric, this driver
7942 * function makes sure that only one fabric bound iocb will be outstanding at
7943 * any given time. As such, this function will first check to see whether there
7944 * is already an outstanding fabric iocb on the wire. If so, it will put the
7945 * newly issued iocb onto the driver internal fabric iocb list, waiting to be
7946 * issued later. Otherwise, it will issue the iocb on the wire and update the
7947 * fabric iocb count it indicate that there is one fabric iocb on the wire.
7948 *
7949 * Note, this implementation has a potential sending out fabric IOCBs out of
7950 * order. The problem is caused by the construction of the "ready" boolen does
7951 * not include the condition that the internal fabric IOCB list is empty. As
7952 * such, it is possible a fabric IOCB issued by this routine might be "jump"
7953 * ahead of the fabric IOCBs in the internal list.
7954 *
7955 * Return code
7956 * IOCB_SUCCESS - either fabric iocb put on the list or issued successfully
7957 * IOCB_ERROR - failed to issue fabric iocb
7958 **/
Adrian Bunka6ababd2007-11-05 18:07:33 +01007959static int
James Smart92d7f7b2007-06-17 19:56:38 -05007960lpfc_issue_fabric_iocb(struct lpfc_hba *phba, struct lpfc_iocbq *iocb)
7961{
7962 unsigned long iflags;
James Smart92d7f7b2007-06-17 19:56:38 -05007963 int ready;
7964 int ret;
7965
7966 if (atomic_read(&phba->fabric_iocb_count) > 1)
7967 BUG();
7968
7969 spin_lock_irqsave(&phba->hbalock, iflags);
7970 ready = atomic_read(&phba->fabric_iocb_count) == 0 &&
7971 !test_bit(FABRIC_COMANDS_BLOCKED, &phba->bit_flags);
7972
James Smart7f5f3d02008-02-08 18:50:14 -05007973 if (ready)
7974 /* Increment fabric iocb count to hold the position */
7975 atomic_inc(&phba->fabric_iocb_count);
James Smart92d7f7b2007-06-17 19:56:38 -05007976 spin_unlock_irqrestore(&phba->hbalock, iflags);
7977 if (ready) {
7978 iocb->fabric_iocb_cmpl = iocb->iocb_cmpl;
7979 iocb->iocb_cmpl = lpfc_cmpl_fabric_iocb;
7980 iocb->iocb_flag |= LPFC_IO_FABRIC;
7981
James Smart858c9f62007-06-17 19:56:39 -05007982 lpfc_debugfs_disc_trc(iocb->vport, LPFC_DISC_TRC_ELS_CMD,
7983 "Fabric sched2: ste:x%x",
7984 iocb->vport->port_state, 0, 0);
7985
James Smart3772a992009-05-22 14:50:54 -04007986 ret = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, iocb, 0);
James Smart92d7f7b2007-06-17 19:56:38 -05007987
7988 if (ret == IOCB_ERROR) {
7989 iocb->iocb_cmpl = iocb->fabric_iocb_cmpl;
7990 iocb->fabric_iocb_cmpl = NULL;
7991 iocb->iocb_flag &= ~LPFC_IO_FABRIC;
7992 atomic_dec(&phba->fabric_iocb_count);
7993 }
7994 } else {
7995 spin_lock_irqsave(&phba->hbalock, iflags);
7996 list_add_tail(&iocb->list, &phba->fabric_iocb_list);
7997 spin_unlock_irqrestore(&phba->hbalock, iflags);
7998 ret = IOCB_SUCCESS;
7999 }
8000 return ret;
8001}
8002
James Smarte59058c2008-08-24 21:49:00 -04008003/**
James Smart3621a712009-04-06 18:47:14 -04008004 * lpfc_fabric_abort_vport - Abort a vport's iocbs from driver fabric iocb list
James Smarte59058c2008-08-24 21:49:00 -04008005 * @vport: pointer to a virtual N_Port data structure.
8006 *
8007 * This routine aborts all the IOCBs associated with a @vport from the
8008 * driver internal fabric IOCB list. The list contains fabric IOCBs to be
8009 * issued to the ELS IOCB ring. This abort function walks the fabric IOCB
8010 * list, removes each IOCB associated with the @vport off the list, set the
8011 * status feild to IOSTAT_LOCAL_REJECT, and invokes the callback function
8012 * associated with the IOCB.
8013 **/
Adrian Bunka6ababd2007-11-05 18:07:33 +01008014static void lpfc_fabric_abort_vport(struct lpfc_vport *vport)
James Smart92d7f7b2007-06-17 19:56:38 -05008015{
8016 LIST_HEAD(completions);
8017 struct lpfc_hba *phba = vport->phba;
8018 struct lpfc_iocbq *tmp_iocb, *piocb;
James Smart92d7f7b2007-06-17 19:56:38 -05008019
8020 spin_lock_irq(&phba->hbalock);
8021 list_for_each_entry_safe(piocb, tmp_iocb, &phba->fabric_iocb_list,
8022 list) {
8023
8024 if (piocb->vport != vport)
8025 continue;
8026
8027 list_move_tail(&piocb->list, &completions);
8028 }
8029 spin_unlock_irq(&phba->hbalock);
8030
James Smarta257bf92009-04-06 18:48:10 -04008031 /* Cancel all the IOCBs from the completions list */
8032 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
8033 IOERR_SLI_ABORTED);
James Smart92d7f7b2007-06-17 19:56:38 -05008034}
8035
James Smarte59058c2008-08-24 21:49:00 -04008036/**
James Smart3621a712009-04-06 18:47:14 -04008037 * lpfc_fabric_abort_nport - Abort a ndlp's iocbs from driver fabric iocb list
James Smarte59058c2008-08-24 21:49:00 -04008038 * @ndlp: pointer to a node-list data structure.
8039 *
8040 * This routine aborts all the IOCBs associated with an @ndlp from the
8041 * driver internal fabric IOCB list. The list contains fabric IOCBs to be
8042 * issued to the ELS IOCB ring. This abort function walks the fabric IOCB
8043 * list, removes each IOCB associated with the @ndlp off the list, set the
8044 * status feild to IOSTAT_LOCAL_REJECT, and invokes the callback function
8045 * associated with the IOCB.
8046 **/
James Smart92d7f7b2007-06-17 19:56:38 -05008047void lpfc_fabric_abort_nport(struct lpfc_nodelist *ndlp)
8048{
8049 LIST_HEAD(completions);
James Smarta257bf92009-04-06 18:48:10 -04008050 struct lpfc_hba *phba = ndlp->phba;
James Smart92d7f7b2007-06-17 19:56:38 -05008051 struct lpfc_iocbq *tmp_iocb, *piocb;
8052 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
James Smart92d7f7b2007-06-17 19:56:38 -05008053
8054 spin_lock_irq(&phba->hbalock);
8055 list_for_each_entry_safe(piocb, tmp_iocb, &phba->fabric_iocb_list,
8056 list) {
8057 if ((lpfc_check_sli_ndlp(phba, pring, piocb, ndlp))) {
8058
8059 list_move_tail(&piocb->list, &completions);
8060 }
8061 }
8062 spin_unlock_irq(&phba->hbalock);
8063
James Smarta257bf92009-04-06 18:48:10 -04008064 /* Cancel all the IOCBs from the completions list */
8065 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
8066 IOERR_SLI_ABORTED);
James Smart92d7f7b2007-06-17 19:56:38 -05008067}
8068
James Smarte59058c2008-08-24 21:49:00 -04008069/**
James Smart3621a712009-04-06 18:47:14 -04008070 * lpfc_fabric_abort_hba - Abort all iocbs on driver fabric iocb list
James Smarte59058c2008-08-24 21:49:00 -04008071 * @phba: pointer to lpfc hba data structure.
8072 *
8073 * This routine aborts all the IOCBs currently on the driver internal
8074 * fabric IOCB list. The list contains fabric IOCBs to be issued to the ELS
8075 * IOCB ring. This function takes the entire IOCB list off the fabric IOCB
8076 * list, removes IOCBs off the list, set the status feild to
8077 * IOSTAT_LOCAL_REJECT, and invokes the callback function associated with
8078 * the IOCB.
8079 **/
James Smart92d7f7b2007-06-17 19:56:38 -05008080void lpfc_fabric_abort_hba(struct lpfc_hba *phba)
8081{
8082 LIST_HEAD(completions);
James Smart92d7f7b2007-06-17 19:56:38 -05008083
8084 spin_lock_irq(&phba->hbalock);
8085 list_splice_init(&phba->fabric_iocb_list, &completions);
8086 spin_unlock_irq(&phba->hbalock);
8087
James Smarta257bf92009-04-06 18:48:10 -04008088 /* Cancel all the IOCBs from the completions list */
8089 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
8090 IOERR_SLI_ABORTED);
James Smart92d7f7b2007-06-17 19:56:38 -05008091}
James Smart6fb120a2009-05-22 14:52:59 -04008092
8093/**
James Smart1151e3e2011-02-16 12:39:35 -05008094 * lpfc_sli4_vport_delete_els_xri_aborted -Remove all ndlp references for vport
8095 * @vport: pointer to lpfc vport data structure.
8096 *
8097 * This routine is invoked by the vport cleanup for deletions and the cleanup
8098 * for an ndlp on removal.
8099 **/
8100void
8101lpfc_sli4_vport_delete_els_xri_aborted(struct lpfc_vport *vport)
8102{
8103 struct lpfc_hba *phba = vport->phba;
8104 struct lpfc_sglq *sglq_entry = NULL, *sglq_next = NULL;
8105 unsigned long iflag = 0;
8106
8107 spin_lock_irqsave(&phba->hbalock, iflag);
8108 spin_lock(&phba->sli4_hba.abts_sgl_list_lock);
8109 list_for_each_entry_safe(sglq_entry, sglq_next,
8110 &phba->sli4_hba.lpfc_abts_els_sgl_list, list) {
8111 if (sglq_entry->ndlp && sglq_entry->ndlp->vport == vport)
8112 sglq_entry->ndlp = NULL;
8113 }
8114 spin_unlock(&phba->sli4_hba.abts_sgl_list_lock);
8115 spin_unlock_irqrestore(&phba->hbalock, iflag);
8116 return;
8117}
8118
8119/**
James Smart6fb120a2009-05-22 14:52:59 -04008120 * lpfc_sli4_els_xri_aborted - Slow-path process of els xri abort
8121 * @phba: pointer to lpfc hba data structure.
8122 * @axri: pointer to the els xri abort wcqe structure.
8123 *
8124 * This routine is invoked by the worker thread to process a SLI4 slow-path
8125 * ELS aborted xri.
8126 **/
8127void
8128lpfc_sli4_els_xri_aborted(struct lpfc_hba *phba,
8129 struct sli4_wcqe_xri_aborted *axri)
8130{
8131 uint16_t xri = bf_get(lpfc_wcqe_xa_xri, axri);
James Smart19ca7602010-11-20 23:11:55 -05008132 uint16_t rxid = bf_get(lpfc_wcqe_xa_remote_xid, axri);
James Smart7851fe22011-07-22 18:36:52 -04008133 uint16_t lxri = 0;
James Smart19ca7602010-11-20 23:11:55 -05008134
James Smart6fb120a2009-05-22 14:52:59 -04008135 struct lpfc_sglq *sglq_entry = NULL, *sglq_next = NULL;
8136 unsigned long iflag = 0;
James Smart19ca7602010-11-20 23:11:55 -05008137 struct lpfc_nodelist *ndlp;
James Smart589a52d2010-07-14 15:30:54 -04008138 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
James Smart6fb120a2009-05-22 14:52:59 -04008139
James Smart0f65ff62010-02-26 14:14:23 -05008140 spin_lock_irqsave(&phba->hbalock, iflag);
8141 spin_lock(&phba->sli4_hba.abts_sgl_list_lock);
James Smart6fb120a2009-05-22 14:52:59 -04008142 list_for_each_entry_safe(sglq_entry, sglq_next,
8143 &phba->sli4_hba.lpfc_abts_els_sgl_list, list) {
8144 if (sglq_entry->sli4_xritag == xri) {
8145 list_del(&sglq_entry->list);
James Smart19ca7602010-11-20 23:11:55 -05008146 ndlp = sglq_entry->ndlp;
8147 sglq_entry->ndlp = NULL;
James Smart6fb120a2009-05-22 14:52:59 -04008148 list_add_tail(&sglq_entry->list,
8149 &phba->sli4_hba.lpfc_sgl_list);
James Smart0f65ff62010-02-26 14:14:23 -05008150 sglq_entry->state = SGL_FREED;
8151 spin_unlock(&phba->sli4_hba.abts_sgl_list_lock);
James Smart6fb120a2009-05-22 14:52:59 -04008152 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smartee0f4fe2012-05-09 21:19:14 -04008153 lpfc_set_rrq_active(phba, ndlp,
8154 sglq_entry->sli4_lxritag,
8155 rxid, 1);
James Smart589a52d2010-07-14 15:30:54 -04008156
8157 /* Check if TXQ queue needs to be serviced */
James Smart0e9bb8d2013-03-01 16:35:12 -05008158 if (!(list_empty(&pring->txq)))
James Smart589a52d2010-07-14 15:30:54 -04008159 lpfc_worker_wake_up(phba);
James Smart6fb120a2009-05-22 14:52:59 -04008160 return;
8161 }
8162 }
James Smart0f65ff62010-02-26 14:14:23 -05008163 spin_unlock(&phba->sli4_hba.abts_sgl_list_lock);
James Smart7851fe22011-07-22 18:36:52 -04008164 lxri = lpfc_sli4_xri_inrange(phba, xri);
8165 if (lxri == NO_XRI) {
8166 spin_unlock_irqrestore(&phba->hbalock, iflag);
8167 return;
8168 }
8169 sglq_entry = __lpfc_get_active_sglq(phba, lxri);
James Smart0f65ff62010-02-26 14:14:23 -05008170 if (!sglq_entry || (sglq_entry->sli4_xritag != xri)) {
8171 spin_unlock_irqrestore(&phba->hbalock, iflag);
8172 return;
8173 }
8174 sglq_entry->state = SGL_XRI_ABORTED;
8175 spin_unlock_irqrestore(&phba->hbalock, iflag);
8176 return;
James Smart6fb120a2009-05-22 14:52:59 -04008177}
James Smart086a3452012-08-14 14:25:21 -04008178
8179/* lpfc_sli_abts_recover_port - Recover a port that failed a BLS_ABORT req.
8180 * @vport: pointer to virtual port object.
8181 * @ndlp: nodelist pointer for the impacted node.
8182 *
8183 * The driver calls this routine in response to an SLI4 XRI ABORT CQE
8184 * or an SLI3 ASYNC_STATUS_CN event from the port. For either event,
8185 * the driver is required to send a LOGO to the remote node before it
8186 * attempts to recover its login to the remote node.
8187 */
8188void
8189lpfc_sli_abts_recover_port(struct lpfc_vport *vport,
8190 struct lpfc_nodelist *ndlp)
8191{
8192 struct Scsi_Host *shost;
8193 struct lpfc_hba *phba;
8194 unsigned long flags = 0;
8195
8196 shost = lpfc_shost_from_vport(vport);
8197 phba = vport->phba;
8198 if (ndlp->nlp_state != NLP_STE_MAPPED_NODE) {
8199 lpfc_printf_log(phba, KERN_INFO,
8200 LOG_SLI, "3093 No rport recovery needed. "
8201 "rport in state 0x%x\n", ndlp->nlp_state);
8202 return;
8203 }
8204 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
8205 "3094 Start rport recovery on shost id 0x%x "
8206 "fc_id 0x%06x vpi 0x%x rpi 0x%x state 0x%x "
8207 "flags 0x%x\n",
8208 shost->host_no, ndlp->nlp_DID,
8209 vport->vpi, ndlp->nlp_rpi, ndlp->nlp_state,
8210 ndlp->nlp_flag);
8211 /*
8212 * The rport is not responding. Remove the FCP-2 flag to prevent
8213 * an ADISC in the follow-up recovery code.
8214 */
8215 spin_lock_irqsave(shost->host_lock, flags);
8216 ndlp->nlp_fcp_info &= ~NLP_FCP_2_DEVICE;
8217 spin_unlock_irqrestore(shost->host_lock, flags);
8218 lpfc_issue_els_logo(vport, ndlp, 0);
8219 lpfc_nlp_set_state(vport, ndlp, NLP_STE_LOGO_ISSUE);
8220}
8221