blob: 4c25485aa934973742efe76fa34dd8aa00af17db [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 Smart16a59fb2014-04-04 13:52:41 -04004 * Copyright (C) 2004-2014 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 Smart9589b0622011-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);
James Smarta2fc4aef2014-09-03 12:57:55 -04001087 if (!prsp)
1088 goto out;
dea31012005-04-17 16:05:31 -05001089 sp = prsp->virt + sizeof(uint32_t);
1090
1091 /* FLOGI completes successfully */
James Smarte8b62012007-08-02 11:10:09 -04001092 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
James Smart88f43a02013-04-17 20:19:44 -04001093 "0101 FLOGI completes successfully, I/O tag:x%x, "
1094 "Data: x%x x%x x%x x%x x%x x%x\n", cmdiocb->iotag,
James Smarte8b62012007-08-02 11:10:09 -04001095 irsp->un.ulpWord[4], sp->cmn.e_d_tov,
James Smarte74c03c2013-04-17 20:15:19 -04001096 sp->cmn.w2.r_a_tov, sp->cmn.edtovResolution,
1097 vport->port_state, vport->fc_flag);
dea31012005-04-17 16:05:31 -05001098
James Smart2e0fef82007-06-17 19:56:36 -05001099 if (vport->port_state == LPFC_FLOGI) {
dea31012005-04-17 16:05:31 -05001100 /*
1101 * If Common Service Parameters indicate Nport
1102 * we are point to point, if Fport we are Fabric.
1103 */
1104 if (sp->cmn.fPort)
James Smart2e0fef82007-06-17 19:56:36 -05001105 rc = lpfc_cmpl_els_flogi_fabric(vport, ndlp, sp, irsp);
James Smart76a95d72010-11-20 23:11:48 -05001106 else if (!(phba->hba_flag & HBA_FCOE_MODE))
James Smart2e0fef82007-06-17 19:56:36 -05001107 rc = lpfc_cmpl_els_flogi_nport(vport, ndlp, sp);
James Smartdbb6b3a2010-06-08 18:31:37 -04001108 else {
1109 lpfc_printf_vlog(vport, KERN_ERR,
1110 LOG_FIP | LOG_ELS,
1111 "2831 FLOGI response with cleared Fabric "
1112 "bit fcf_index 0x%x "
1113 "Switch Name %02x%02x%02x%02x%02x%02x%02x%02x "
1114 "Fabric Name "
1115 "%02x%02x%02x%02x%02x%02x%02x%02x\n",
1116 phba->fcf.current_rec.fcf_indx,
1117 phba->fcf.current_rec.switch_name[0],
1118 phba->fcf.current_rec.switch_name[1],
1119 phba->fcf.current_rec.switch_name[2],
1120 phba->fcf.current_rec.switch_name[3],
1121 phba->fcf.current_rec.switch_name[4],
1122 phba->fcf.current_rec.switch_name[5],
1123 phba->fcf.current_rec.switch_name[6],
1124 phba->fcf.current_rec.switch_name[7],
1125 phba->fcf.current_rec.fabric_name[0],
1126 phba->fcf.current_rec.fabric_name[1],
1127 phba->fcf.current_rec.fabric_name[2],
1128 phba->fcf.current_rec.fabric_name[3],
1129 phba->fcf.current_rec.fabric_name[4],
1130 phba->fcf.current_rec.fabric_name[5],
1131 phba->fcf.current_rec.fabric_name[6],
1132 phba->fcf.current_rec.fabric_name[7]);
1133 lpfc_nlp_put(ndlp);
1134 spin_lock_irq(&phba->hbalock);
1135 phba->fcf.fcf_flag &= ~FCF_DISCOVERY;
James Smarta93ff372010-10-22 11:06:08 -04001136 phba->hba_flag &= ~(FCF_RR_INPROG | HBA_DEVLOSS_TMO);
James Smartdbb6b3a2010-06-08 18:31:37 -04001137 spin_unlock_irq(&phba->hbalock);
1138 goto out;
1139 }
James Smart0c9ab6f2010-02-26 14:15:57 -05001140 if (!rc) {
1141 /* Mark the FCF discovery process done */
James Smart999d8132010-03-15 11:24:56 -04001142 if (phba->hba_flag & HBA_FIP_SUPPORT)
1143 lpfc_printf_vlog(vport, KERN_INFO, LOG_FIP |
1144 LOG_ELS,
James Smarta93ff372010-10-22 11:06:08 -04001145 "2769 FLOGI to FCF (x%x) "
1146 "completed successfully\n",
James Smart999d8132010-03-15 11:24:56 -04001147 phba->fcf.current_rec.fcf_indx);
James Smart0c9ab6f2010-02-26 14:15:57 -05001148 spin_lock_irq(&phba->hbalock);
1149 phba->fcf.fcf_flag &= ~FCF_DISCOVERY;
James Smarta93ff372010-10-22 11:06:08 -04001150 phba->hba_flag &= ~(FCF_RR_INPROG | HBA_DEVLOSS_TMO);
James Smart0c9ab6f2010-02-26 14:15:57 -05001151 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05001152 goto out;
James Smart0c9ab6f2010-02-26 14:15:57 -05001153 }
dea31012005-04-17 16:05:31 -05001154 }
1155
1156flogifail:
James Smart329f9bc2007-04-25 09:53:01 -04001157 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05001158
James Smart858c9f62007-06-17 19:56:39 -05001159 if (!lpfc_error_lost_link(irsp)) {
dea31012005-04-17 16:05:31 -05001160 /* FLOGI failed, so just use loop map to make discovery list */
James Smart2e0fef82007-06-17 19:56:36 -05001161 lpfc_disc_list_loopmap(vport);
dea31012005-04-17 16:05:31 -05001162
1163 /* Start discovery */
James Smart2e0fef82007-06-17 19:56:36 -05001164 lpfc_disc_start(vport);
James Smart87af33f2007-10-27 13:37:43 -04001165 } else if (((irsp->ulpStatus != IOSTAT_LOCAL_REJECT) ||
James Smarte3d2b802012-08-14 14:25:43 -04001166 (((irsp->un.ulpWord[4] & IOERR_PARAM_MASK) !=
1167 IOERR_SLI_ABORTED) &&
1168 ((irsp->un.ulpWord[4] & IOERR_PARAM_MASK) !=
1169 IOERR_SLI_DOWN))) &&
James Smart87af33f2007-10-27 13:37:43 -04001170 (phba->link_state != LPFC_CLEAR_LA)) {
1171 /* If FLOGI failed enable link interrupt. */
1172 lpfc_issue_clear_la(phba, vport);
dea31012005-04-17 16:05:31 -05001173 }
dea31012005-04-17 16:05:31 -05001174out:
1175 lpfc_els_free_iocb(phba, cmdiocb);
1176}
1177
James Smarte59058c2008-08-24 21:49:00 -04001178/**
James Smart3621a712009-04-06 18:47:14 -04001179 * lpfc_issue_els_flogi - Issue an flogi iocb command for a vport
James Smarte59058c2008-08-24 21:49:00 -04001180 * @vport: pointer to a host virtual N_Port data structure.
1181 * @ndlp: pointer to a node-list data structure.
1182 * @retry: number of retries to the command IOCB.
1183 *
1184 * This routine issues a Fabric Login (FLOGI) Request ELS command
1185 * for a @vport. The initiator service parameters are put into the payload
1186 * of the FLOGI Request IOCB and the top-level callback function pointer
1187 * to lpfc_cmpl_els_flogi() routine is put to the IOCB completion callback
1188 * function field. The lpfc_issue_fabric_iocb routine is invoked to send
1189 * out FLOGI ELS command with one outstanding fabric IOCB at a time.
1190 *
1191 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
1192 * will be incremented by 1 for holding the ndlp and the reference to ndlp
1193 * will be stored into the context1 field of the IOCB for the completion
1194 * callback function to the FLOGI ELS command.
1195 *
1196 * Return code
1197 * 0 - successfully issued flogi iocb for @vport
1198 * 1 - failed to issue flogi iocb for @vport
1199 **/
dea31012005-04-17 16:05:31 -05001200static int
James Smart2e0fef82007-06-17 19:56:36 -05001201lpfc_issue_els_flogi(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
dea31012005-04-17 16:05:31 -05001202 uint8_t retry)
1203{
James Smart2e0fef82007-06-17 19:56:36 -05001204 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05001205 struct serv_parm *sp;
1206 IOCB_t *icmd;
1207 struct lpfc_iocbq *elsiocb;
1208 struct lpfc_sli_ring *pring;
1209 uint8_t *pcmd;
1210 uint16_t cmdsize;
1211 uint32_t tmo;
1212 int rc;
1213
1214 pring = &phba->sli.ring[LPFC_ELS_RING];
1215
James Smart92d7f7b2007-06-17 19:56:38 -05001216 cmdsize = (sizeof(uint32_t) + sizeof(struct serv_parm));
James Smart2e0fef82007-06-17 19:56:36 -05001217 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
1218 ndlp->nlp_DID, ELS_CMD_FLOGI);
James Smart92d7f7b2007-06-17 19:56:38 -05001219
James Smart488d1462006-03-07 15:02:37 -05001220 if (!elsiocb)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001221 return 1;
dea31012005-04-17 16:05:31 -05001222
1223 icmd = &elsiocb->iocb;
1224 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
1225
1226 /* For FLOGI request, remainder of payload is service parameters */
1227 *((uint32_t *) (pcmd)) = ELS_CMD_FLOGI;
James Smart92d7f7b2007-06-17 19:56:38 -05001228 pcmd += sizeof(uint32_t);
1229 memcpy(pcmd, &vport->fc_sparam, sizeof(struct serv_parm));
dea31012005-04-17 16:05:31 -05001230 sp = (struct serv_parm *) pcmd;
1231
1232 /* Setup CSPs accordingly for Fabric */
1233 sp->cmn.e_d_tov = 0;
1234 sp->cmn.w2.r_a_tov = 0;
James Smartdf9e1b52011-12-13 13:22:17 -05001235 sp->cmn.virtual_fabric_support = 0;
dea31012005-04-17 16:05:31 -05001236 sp->cls1.classValid = 0;
dea31012005-04-17 16:05:31 -05001237 if (sp->cmn.fcphLow < FC_PH3)
1238 sp->cmn.fcphLow = FC_PH3;
1239 if (sp->cmn.fcphHigh < FC_PH3)
1240 sp->cmn.fcphHigh = FC_PH3;
1241
James Smartc31098c2011-04-16 11:03:33 -04001242 if (phba->sli_rev == LPFC_SLI_REV4) {
1243 if (bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf) ==
1244 LPFC_SLI_INTF_IF_TYPE_0) {
1245 elsiocb->iocb.ulpCt_h = ((SLI4_CT_FCFI >> 1) & 1);
1246 elsiocb->iocb.ulpCt_l = (SLI4_CT_FCFI & 1);
1247 /* FLOGI needs to be 3 for WQE FCFI */
1248 /* Set the fcfi to the fcfi we registered with */
1249 elsiocb->iocb.ulpContext = phba->fcf.fcfi;
1250 }
James Smart0f378872012-10-31 14:45:01 -04001251 /* Can't do SLI4 class2 without support sequence coalescing */
1252 sp->cls2.classValid = 0;
1253 sp->cls2.seqDelivery = 0;
James Smart5248a742011-07-22 18:37:06 -04001254 } else {
James Smart0f378872012-10-31 14:45:01 -04001255 /* Historical, setting sequential-delivery bit for SLI3 */
1256 sp->cls2.seqDelivery = (sp->cls2.classValid) ? 1 : 0;
1257 sp->cls3.seqDelivery = (sp->cls3.classValid) ? 1 : 0;
James Smart5248a742011-07-22 18:37:06 -04001258 if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) {
1259 sp->cmn.request_multiple_Nport = 1;
1260 /* For FLOGI, Let FLOGI rsp set the NPortID for VPI 0 */
1261 icmd->ulpCt_h = 1;
1262 icmd->ulpCt_l = 0;
1263 } else
1264 sp->cmn.request_multiple_Nport = 0;
James Smart92d7f7b2007-06-17 19:56:38 -05001265 }
1266
James Smart76a95d72010-11-20 23:11:48 -05001267 if (phba->fc_topology != LPFC_TOPOLOGY_LOOP) {
James Smart858c9f62007-06-17 19:56:39 -05001268 icmd->un.elsreq64.myID = 0;
1269 icmd->un.elsreq64.fl = 1;
1270 }
1271
dea31012005-04-17 16:05:31 -05001272 tmo = phba->fc_ratov;
1273 phba->fc_ratov = LPFC_DISC_FLOGI_TMO;
James Smart2e0fef82007-06-17 19:56:36 -05001274 lpfc_set_disctmo(vport);
dea31012005-04-17 16:05:31 -05001275 phba->fc_ratov = tmo;
1276
1277 phba->fc_stat.elsXmitFLOGI++;
1278 elsiocb->iocb_cmpl = lpfc_cmpl_els_flogi;
James Smart858c9f62007-06-17 19:56:39 -05001279
1280 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
1281 "Issue FLOGI: opt:x%x",
1282 phba->sli3_options, 0, 0);
1283
James Smart92d7f7b2007-06-17 19:56:38 -05001284 rc = lpfc_issue_fabric_iocb(phba, elsiocb);
dea31012005-04-17 16:05:31 -05001285 if (rc == IOCB_ERROR) {
1286 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001287 return 1;
dea31012005-04-17 16:05:31 -05001288 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001289 return 0;
dea31012005-04-17 16:05:31 -05001290}
1291
James Smarte59058c2008-08-24 21:49:00 -04001292/**
James Smart3621a712009-04-06 18:47:14 -04001293 * lpfc_els_abort_flogi - Abort all outstanding flogi iocbs
James Smarte59058c2008-08-24 21:49:00 -04001294 * @phba: pointer to lpfc hba data structure.
1295 *
1296 * This routine aborts all the outstanding Fabric Login (FLOGI) IOCBs
1297 * with a @phba. This routine walks all the outstanding IOCBs on the txcmplq
1298 * list and issues an abort IOCB commond on each outstanding IOCB that
1299 * contains a active Fabric_DID ndlp. Note that this function is to issue
1300 * the abort IOCB command on all the outstanding IOCBs, thus when this
1301 * function returns, it does not guarantee all the IOCBs are actually aborted.
1302 *
1303 * Return code
Daniel Mack3ad2f3f2010-02-03 08:01:28 +08001304 * 0 - Successfully issued abort iocb on all outstanding flogis (Always 0)
James Smarte59058c2008-08-24 21:49:00 -04001305 **/
dea31012005-04-17 16:05:31 -05001306int
James Smart2e0fef82007-06-17 19:56:36 -05001307lpfc_els_abort_flogi(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -05001308{
1309 struct lpfc_sli_ring *pring;
1310 struct lpfc_iocbq *iocb, *next_iocb;
1311 struct lpfc_nodelist *ndlp;
1312 IOCB_t *icmd;
1313
1314 /* Abort outstanding I/O on NPort <nlp_DID> */
1315 lpfc_printf_log(phba, KERN_INFO, LOG_DISCOVERY,
James Smarte8b62012007-08-02 11:10:09 -04001316 "0201 Abort outstanding I/O on NPort x%x\n",
1317 Fabric_DID);
dea31012005-04-17 16:05:31 -05001318
1319 pring = &phba->sli.ring[LPFC_ELS_RING];
1320
1321 /*
1322 * Check the txcmplq for an iocb that matches the nport the driver is
1323 * searching for.
1324 */
James Smart2e0fef82007-06-17 19:56:36 -05001325 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05001326 list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq, list) {
1327 icmd = &iocb->iocb;
James Smart1b511972011-12-13 13:23:09 -05001328 if (icmd->ulpCommand == CMD_ELS_REQUEST64_CR) {
dea31012005-04-17 16:05:31 -05001329 ndlp = (struct lpfc_nodelist *)(iocb->context1);
James Smart58da1ff2008-04-07 10:15:56 -04001330 if (ndlp && NLP_CHK_NODE_ACT(ndlp) &&
1331 (ndlp->nlp_DID == Fabric_DID))
James Smart07951072007-04-25 09:51:38 -04001332 lpfc_sli_issue_abort_iotag(phba, pring, iocb);
dea31012005-04-17 16:05:31 -05001333 }
1334 }
James Smart2e0fef82007-06-17 19:56:36 -05001335 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05001336
1337 return 0;
1338}
1339
James Smarte59058c2008-08-24 21:49:00 -04001340/**
James Smart3621a712009-04-06 18:47:14 -04001341 * lpfc_initial_flogi - Issue an initial fabric login for a vport
James Smarte59058c2008-08-24 21:49:00 -04001342 * @vport: pointer to a host virtual N_Port data structure.
1343 *
1344 * This routine issues an initial Fabric Login (FLOGI) for the @vport
1345 * specified. It first searches the ndlp with the Fabric_DID (0xfffffe) from
1346 * the @vport's ndlp list. If no such ndlp found, it will create an ndlp and
1347 * put it into the @vport's ndlp list. If an inactive ndlp found on the list,
1348 * it will just be enabled and made active. The lpfc_issue_els_flogi() routine
1349 * is then invoked with the @vport and the ndlp to perform the FLOGI for the
1350 * @vport.
1351 *
1352 * Return code
1353 * 0 - failed to issue initial flogi for @vport
1354 * 1 - successfully issued initial flogi for @vport
1355 **/
dea31012005-04-17 16:05:31 -05001356int
James Smart2e0fef82007-06-17 19:56:36 -05001357lpfc_initial_flogi(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05001358{
James Smart2e0fef82007-06-17 19:56:36 -05001359 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05001360 struct lpfc_nodelist *ndlp;
1361
James Smart98c9ea52007-10-27 13:37:33 -04001362 vport->port_state = LPFC_FLOGI;
1363 lpfc_set_disctmo(vport);
1364
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001365 /* First look for the Fabric ndlp */
James Smart2e0fef82007-06-17 19:56:36 -05001366 ndlp = lpfc_findnode_did(vport, Fabric_DID);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001367 if (!ndlp) {
dea31012005-04-17 16:05:31 -05001368 /* Cannot find existing Fabric ndlp, so allocate a new one */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001369 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
1370 if (!ndlp)
1371 return 0;
James Smart2e0fef82007-06-17 19:56:36 -05001372 lpfc_nlp_init(vport, ndlp, Fabric_DID);
James Smart6fb120a2009-05-22 14:52:59 -04001373 /* Set the node type */
1374 ndlp->nlp_type |= NLP_FABRIC;
James Smarte47c9092008-02-08 18:49:26 -05001375 /* Put ndlp onto node list */
1376 lpfc_enqueue_node(vport, ndlp);
1377 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
1378 /* re-setup ndlp without removing from node list */
1379 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
1380 if (!ndlp)
1381 return 0;
dea31012005-04-17 16:05:31 -05001382 }
James Smart87af33f2007-10-27 13:37:43 -04001383
James Smart5ac6b302010-10-22 11:05:36 -04001384 if (lpfc_issue_els_flogi(vport, ndlp, 0)) {
James Smartfa4066b2008-01-11 01:53:27 -05001385 /* This decrement of reference count to node shall kick off
1386 * the release of the node.
1387 */
James Smart329f9bc2007-04-25 09:53:01 -04001388 lpfc_nlp_put(ndlp);
James Smart5ac6b302010-10-22 11:05:36 -04001389 return 0;
1390 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001391 return 1;
dea31012005-04-17 16:05:31 -05001392}
1393
James Smarte59058c2008-08-24 21:49:00 -04001394/**
James Smart3621a712009-04-06 18:47:14 -04001395 * lpfc_initial_fdisc - Issue an initial fabric discovery for a vport
James Smarte59058c2008-08-24 21:49:00 -04001396 * @vport: pointer to a host virtual N_Port data structure.
1397 *
1398 * This routine issues an initial Fabric Discover (FDISC) for the @vport
1399 * specified. It first searches the ndlp with the Fabric_DID (0xfffffe) from
1400 * the @vport's ndlp list. If no such ndlp found, it will create an ndlp and
1401 * put it into the @vport's ndlp list. If an inactive ndlp found on the list,
1402 * it will just be enabled and made active. The lpfc_issue_els_fdisc() routine
1403 * is then invoked with the @vport and the ndlp to perform the FDISC for the
1404 * @vport.
1405 *
1406 * Return code
1407 * 0 - failed to issue initial fdisc for @vport
1408 * 1 - successfully issued initial fdisc for @vport
1409 **/
James Smart92d7f7b2007-06-17 19:56:38 -05001410int
1411lpfc_initial_fdisc(struct lpfc_vport *vport)
1412{
1413 struct lpfc_hba *phba = vport->phba;
1414 struct lpfc_nodelist *ndlp;
1415
1416 /* First look for the Fabric ndlp */
1417 ndlp = lpfc_findnode_did(vport, Fabric_DID);
1418 if (!ndlp) {
1419 /* Cannot find existing Fabric ndlp, so allocate a new one */
1420 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
1421 if (!ndlp)
1422 return 0;
1423 lpfc_nlp_init(vport, ndlp, Fabric_DID);
James Smarte47c9092008-02-08 18:49:26 -05001424 /* Put ndlp onto node list */
1425 lpfc_enqueue_node(vport, ndlp);
1426 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
1427 /* re-setup ndlp without removing from node list */
1428 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
1429 if (!ndlp)
1430 return 0;
James Smart92d7f7b2007-06-17 19:56:38 -05001431 }
James Smarte47c9092008-02-08 18:49:26 -05001432
James Smart92d7f7b2007-06-17 19:56:38 -05001433 if (lpfc_issue_els_fdisc(vport, ndlp, 0)) {
James Smartfa4066b2008-01-11 01:53:27 -05001434 /* decrement node reference count to trigger the release of
1435 * the node.
1436 */
James Smart92d7f7b2007-06-17 19:56:38 -05001437 lpfc_nlp_put(ndlp);
James Smartfa4066b2008-01-11 01:53:27 -05001438 return 0;
James Smart92d7f7b2007-06-17 19:56:38 -05001439 }
1440 return 1;
1441}
James Smart87af33f2007-10-27 13:37:43 -04001442
James Smarte59058c2008-08-24 21:49:00 -04001443/**
James Smart3621a712009-04-06 18:47:14 -04001444 * lpfc_more_plogi - Check and issue remaining plogis for a vport
James Smarte59058c2008-08-24 21:49:00 -04001445 * @vport: pointer to a host virtual N_Port data structure.
1446 *
1447 * This routine checks whether there are more remaining Port Logins
1448 * (PLOGI) to be issued for the @vport. If so, it will invoke the routine
1449 * lpfc_els_disc_plogi() to go through the Node Port Recovery (NPR) nodes
1450 * to issue ELS PLOGIs up to the configured discover threads with the
1451 * @vport (@vport->cfg_discovery_threads). The function also decrement
1452 * the @vport's num_disc_node by 1 if it is not already 0.
1453 **/
James Smart87af33f2007-10-27 13:37:43 -04001454void
James Smart2e0fef82007-06-17 19:56:36 -05001455lpfc_more_plogi(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05001456{
1457 int sentplogi;
1458
James Smart2e0fef82007-06-17 19:56:36 -05001459 if (vport->num_disc_nodes)
1460 vport->num_disc_nodes--;
dea31012005-04-17 16:05:31 -05001461
1462 /* Continue discovery with <num_disc_nodes> PLOGIs to go */
James Smarte8b62012007-08-02 11:10:09 -04001463 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
1464 "0232 Continue discovery with %d PLOGIs to go "
1465 "Data: x%x x%x x%x\n",
1466 vport->num_disc_nodes, vport->fc_plogi_cnt,
1467 vport->fc_flag, vport->port_state);
dea31012005-04-17 16:05:31 -05001468 /* Check to see if there are more PLOGIs to be sent */
James Smart2e0fef82007-06-17 19:56:36 -05001469 if (vport->fc_flag & FC_NLP_MORE)
1470 /* go thru NPR nodes and issue any remaining ELS PLOGIs */
1471 sentplogi = lpfc_els_disc_plogi(vport);
1472
dea31012005-04-17 16:05:31 -05001473 return;
1474}
1475
James Smarte59058c2008-08-24 21:49:00 -04001476/**
James Smart3621a712009-04-06 18:47:14 -04001477 * lpfc_plogi_confirm_nport - Confirm pologi wwpn matches stored ndlp
James Smarte59058c2008-08-24 21:49:00 -04001478 * @phba: pointer to lpfc hba data structure.
1479 * @prsp: pointer to response IOCB payload.
1480 * @ndlp: pointer to a node-list data structure.
1481 *
1482 * This routine checks and indicates whether the WWPN of an N_Port, retrieved
1483 * from a PLOGI, matches the WWPN that is stored in the @ndlp for that N_POrt.
1484 * The following cases are considered N_Port confirmed:
1485 * 1) The N_Port is a Fabric ndlp; 2) The @ndlp is on vport list and matches
1486 * the WWPN of the N_Port logged into; 3) The @ndlp is not on vport list but
1487 * it does not have WWPN assigned either. If the WWPN is confirmed, the
1488 * pointer to the @ndlp will be returned. If the WWPN is not confirmed:
1489 * 1) if there is a node on vport list other than the @ndlp with the same
1490 * WWPN of the N_Port PLOGI logged into, the lpfc_unreg_rpi() will be invoked
1491 * on that node to release the RPI associated with the node; 2) if there is
1492 * no node found on vport list with the same WWPN of the N_Port PLOGI logged
1493 * into, a new node shall be allocated (or activated). In either case, the
1494 * parameters of the @ndlp shall be copied to the new_ndlp, the @ndlp shall
1495 * be released and the new_ndlp shall be put on to the vport node list and
1496 * its pointer returned as the confirmed node.
1497 *
1498 * Note that before the @ndlp got "released", the keepDID from not-matching
1499 * or inactive "new_ndlp" on the vport node list is assigned to the nlp_DID
1500 * of the @ndlp. This is because the release of @ndlp is actually to put it
1501 * into an inactive state on the vport node list and the vport node list
1502 * management algorithm does not allow two node with a same DID.
1503 *
1504 * Return code
1505 * pointer to the PLOGI N_Port @ndlp
1506 **/
James Smart488d1462006-03-07 15:02:37 -05001507static struct lpfc_nodelist *
James Smart92d7f7b2007-06-17 19:56:38 -05001508lpfc_plogi_confirm_nport(struct lpfc_hba *phba, uint32_t *prsp,
James Smart488d1462006-03-07 15:02:37 -05001509 struct lpfc_nodelist *ndlp)
1510{
James Smart2e0fef82007-06-17 19:56:36 -05001511 struct lpfc_vport *vport = ndlp->vport;
James Smart488d1462006-03-07 15:02:37 -05001512 struct lpfc_nodelist *new_ndlp;
James Smart0ff10d42008-01-11 01:52:36 -05001513 struct lpfc_rport_data *rdata;
1514 struct fc_rport *rport;
James Smart488d1462006-03-07 15:02:37 -05001515 struct serv_parm *sp;
James Smart92d7f7b2007-06-17 19:56:38 -05001516 uint8_t name[sizeof(struct lpfc_name)];
James Smart58da1ff2008-04-07 10:15:56 -04001517 uint32_t rc, keepDID = 0;
James Smart38b92ef2010-08-04 16:11:39 -04001518 int put_node;
1519 int put_rport;
James Smartcff261f2013-12-17 20:29:47 -05001520 unsigned long *active_rrqs_xri_bitmap = NULL;
James Smart488d1462006-03-07 15:02:37 -05001521
James Smart2fb9bd82006-12-02 13:33:57 -05001522 /* Fabric nodes can have the same WWPN so we don't bother searching
1523 * by WWPN. Just return the ndlp that was given to us.
1524 */
1525 if (ndlp->nlp_type & NLP_FABRIC)
1526 return ndlp;
1527
James Smart92d7f7b2007-06-17 19:56:38 -05001528 sp = (struct serv_parm *) ((uint8_t *) prsp + sizeof(uint32_t));
James Smart685f0bf2007-04-25 09:53:08 -04001529 memset(name, 0, sizeof(struct lpfc_name));
James Smart488d1462006-03-07 15:02:37 -05001530
James Smart685f0bf2007-04-25 09:53:08 -04001531 /* Now we find out if the NPort we are logging into, matches the WWPN
James Smart488d1462006-03-07 15:02:37 -05001532 * we have for that ndlp. If not, we have some work to do.
1533 */
James Smart2e0fef82007-06-17 19:56:36 -05001534 new_ndlp = lpfc_findnode_wwpn(vport, &sp->portName);
James Smart488d1462006-03-07 15:02:37 -05001535
James Smarte47c9092008-02-08 18:49:26 -05001536 if (new_ndlp == ndlp && NLP_CHK_NODE_ACT(new_ndlp))
James Smart488d1462006-03-07 15:02:37 -05001537 return ndlp;
James Smartcff261f2013-12-17 20:29:47 -05001538 if (phba->sli_rev == LPFC_SLI_REV4) {
1539 active_rrqs_xri_bitmap = mempool_alloc(phba->active_rrq_pool,
1540 GFP_KERNEL);
1541 if (active_rrqs_xri_bitmap)
1542 memset(active_rrqs_xri_bitmap, 0,
1543 phba->cfg_rrq_xri_bitmap_sz);
1544 }
James Smart488d1462006-03-07 15:02:37 -05001545
James Smart34f5ad82012-08-03 12:35:03 -04001546 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
1547 "3178 PLOGI confirm: ndlp %p x%x: new_ndlp %p\n",
1548 ndlp, ndlp->nlp_DID, new_ndlp);
1549
James Smart488d1462006-03-07 15:02:37 -05001550 if (!new_ndlp) {
James Smart2e0fef82007-06-17 19:56:36 -05001551 rc = memcmp(&ndlp->nlp_portname, name,
1552 sizeof(struct lpfc_name));
James Smartcff261f2013-12-17 20:29:47 -05001553 if (!rc) {
1554 if (active_rrqs_xri_bitmap)
1555 mempool_free(active_rrqs_xri_bitmap,
1556 phba->active_rrq_pool);
James Smart92795652006-07-06 15:50:02 -04001557 return ndlp;
James Smartcff261f2013-12-17 20:29:47 -05001558 }
James Smart488d1462006-03-07 15:02:37 -05001559 new_ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_ATOMIC);
James Smartcff261f2013-12-17 20:29:47 -05001560 if (!new_ndlp) {
1561 if (active_rrqs_xri_bitmap)
1562 mempool_free(active_rrqs_xri_bitmap,
1563 phba->active_rrq_pool);
James Smart488d1462006-03-07 15:02:37 -05001564 return ndlp;
James Smartcff261f2013-12-17 20:29:47 -05001565 }
James Smart2e0fef82007-06-17 19:56:36 -05001566 lpfc_nlp_init(vport, new_ndlp, ndlp->nlp_DID);
James Smarte47c9092008-02-08 18:49:26 -05001567 } else if (!NLP_CHK_NODE_ACT(new_ndlp)) {
James Smart58da1ff2008-04-07 10:15:56 -04001568 rc = memcmp(&ndlp->nlp_portname, name,
1569 sizeof(struct lpfc_name));
James Smartcff261f2013-12-17 20:29:47 -05001570 if (!rc) {
1571 if (active_rrqs_xri_bitmap)
1572 mempool_free(active_rrqs_xri_bitmap,
1573 phba->active_rrq_pool);
James Smart58da1ff2008-04-07 10:15:56 -04001574 return ndlp;
James Smartcff261f2013-12-17 20:29:47 -05001575 }
James Smarte47c9092008-02-08 18:49:26 -05001576 new_ndlp = lpfc_enable_node(vport, new_ndlp,
1577 NLP_STE_UNUSED_NODE);
James Smartcff261f2013-12-17 20:29:47 -05001578 if (!new_ndlp) {
1579 if (active_rrqs_xri_bitmap)
1580 mempool_free(active_rrqs_xri_bitmap,
1581 phba->active_rrq_pool);
James Smarte47c9092008-02-08 18:49:26 -05001582 return ndlp;
James Smartcff261f2013-12-17 20:29:47 -05001583 }
James Smart58da1ff2008-04-07 10:15:56 -04001584 keepDID = new_ndlp->nlp_DID;
James Smartcff261f2013-12-17 20:29:47 -05001585 if ((phba->sli_rev == LPFC_SLI_REV4) && active_rrqs_xri_bitmap)
1586 memcpy(active_rrqs_xri_bitmap,
1587 new_ndlp->active_rrqs_xri_bitmap,
1588 phba->cfg_rrq_xri_bitmap_sz);
James Smart19ca7602010-11-20 23:11:55 -05001589 } else {
James Smart58da1ff2008-04-07 10:15:56 -04001590 keepDID = new_ndlp->nlp_DID;
James Smartcff261f2013-12-17 20:29:47 -05001591 if (phba->sli_rev == LPFC_SLI_REV4 &&
1592 active_rrqs_xri_bitmap)
1593 memcpy(active_rrqs_xri_bitmap,
1594 new_ndlp->active_rrqs_xri_bitmap,
1595 phba->cfg_rrq_xri_bitmap_sz);
James Smart19ca7602010-11-20 23:11:55 -05001596 }
James Smart488d1462006-03-07 15:02:37 -05001597
James Smart2e0fef82007-06-17 19:56:36 -05001598 lpfc_unreg_rpi(vport, new_ndlp);
James Smart488d1462006-03-07 15:02:37 -05001599 new_ndlp->nlp_DID = ndlp->nlp_DID;
James Smart92795652006-07-06 15:50:02 -04001600 new_ndlp->nlp_prev_state = ndlp->nlp_prev_state;
James Smart19ca7602010-11-20 23:11:55 -05001601 if (phba->sli_rev == LPFC_SLI_REV4)
James Smartcff261f2013-12-17 20:29:47 -05001602 memcpy(new_ndlp->active_rrqs_xri_bitmap,
1603 ndlp->active_rrqs_xri_bitmap,
1604 phba->cfg_rrq_xri_bitmap_sz);
James Smart0ff10d42008-01-11 01:52:36 -05001605
1606 if (ndlp->nlp_flag & NLP_NPR_2B_DISC)
1607 new_ndlp->nlp_flag |= NLP_NPR_2B_DISC;
1608 ndlp->nlp_flag &= ~NLP_NPR_2B_DISC;
1609
James Smarte47c9092008-02-08 18:49:26 -05001610 /* Set state will put new_ndlp on to node list if not already done */
James Smart2e0fef82007-06-17 19:56:36 -05001611 lpfc_nlp_set_state(vport, new_ndlp, ndlp->nlp_state);
James Smart488d1462006-03-07 15:02:37 -05001612
James Smart2e0fef82007-06-17 19:56:36 -05001613 /* Move this back to NPR state */
James Smart87af33f2007-10-27 13:37:43 -04001614 if (memcmp(&ndlp->nlp_portname, name, sizeof(struct lpfc_name)) == 0) {
1615 /* The new_ndlp is replacing ndlp totally, so we need
1616 * to put ndlp on UNUSED list and try to free it.
1617 */
James Smart34f5ad82012-08-03 12:35:03 -04001618 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
1619 "3179 PLOGI confirm NEW: %x %x\n",
1620 new_ndlp->nlp_DID, keepDID);
James Smart0ff10d42008-01-11 01:52:36 -05001621
1622 /* Fix up the rport accordingly */
1623 rport = ndlp->rport;
1624 if (rport) {
1625 rdata = rport->dd_data;
1626 if (rdata->pnode == ndlp) {
1627 lpfc_nlp_put(ndlp);
1628 ndlp->rport = NULL;
1629 rdata->pnode = lpfc_nlp_get(new_ndlp);
1630 new_ndlp->rport = rport;
1631 }
1632 new_ndlp->nlp_type = ndlp->nlp_type;
1633 }
James Smart58da1ff2008-04-07 10:15:56 -04001634 /* We shall actually free the ndlp with both nlp_DID and
1635 * nlp_portname fields equals 0 to avoid any ndlp on the
1636 * nodelist never to be used.
1637 */
1638 if (ndlp->nlp_DID == 0) {
1639 spin_lock_irq(&phba->ndlp_lock);
1640 NLP_SET_FREE_REQ(ndlp);
1641 spin_unlock_irq(&phba->ndlp_lock);
1642 }
James Smart0ff10d42008-01-11 01:52:36 -05001643
James Smart58da1ff2008-04-07 10:15:56 -04001644 /* Two ndlps cannot have the same did on the nodelist */
1645 ndlp->nlp_DID = keepDID;
James Smartcff261f2013-12-17 20:29:47 -05001646 if (phba->sli_rev == LPFC_SLI_REV4 &&
1647 active_rrqs_xri_bitmap)
1648 memcpy(ndlp->active_rrqs_xri_bitmap,
1649 active_rrqs_xri_bitmap,
1650 phba->cfg_rrq_xri_bitmap_sz);
James Smart2e0fef82007-06-17 19:56:36 -05001651 lpfc_drop_node(vport, ndlp);
James Smart87af33f2007-10-27 13:37:43 -04001652 }
James Smart92795652006-07-06 15:50:02 -04001653 else {
James Smart34f5ad82012-08-03 12:35:03 -04001654 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
1655 "3180 PLOGI confirm SWAP: %x %x\n",
1656 new_ndlp->nlp_DID, keepDID);
1657
James Smart2e0fef82007-06-17 19:56:36 -05001658 lpfc_unreg_rpi(vport, ndlp);
James Smart34f5ad82012-08-03 12:35:03 -04001659
James Smart58da1ff2008-04-07 10:15:56 -04001660 /* Two ndlps cannot have the same did */
1661 ndlp->nlp_DID = keepDID;
James Smartcff261f2013-12-17 20:29:47 -05001662 if (phba->sli_rev == LPFC_SLI_REV4 &&
1663 active_rrqs_xri_bitmap)
1664 memcpy(ndlp->active_rrqs_xri_bitmap,
1665 active_rrqs_xri_bitmap,
1666 phba->cfg_rrq_xri_bitmap_sz);
James Smart34f5ad82012-08-03 12:35:03 -04001667
James Smart38b92ef2010-08-04 16:11:39 -04001668 /* Since we are swapping the ndlp passed in with the new one
James Smart34f5ad82012-08-03 12:35:03 -04001669 * and the did has already been swapped, copy over state.
1670 * The new WWNs are already in new_ndlp since thats what
1671 * we looked it up by in the begining of this routine.
James Smart38b92ef2010-08-04 16:11:39 -04001672 */
James Smart38b92ef2010-08-04 16:11:39 -04001673 new_ndlp->nlp_state = ndlp->nlp_state;
James Smart34f5ad82012-08-03 12:35:03 -04001674
1675 /* Since we are switching over to the new_ndlp, the old
1676 * ndlp should be put in the NPR state, unless we have
1677 * already started re-discovery on it.
1678 */
1679 if ((ndlp->nlp_state == NLP_STE_UNMAPPED_NODE) ||
1680 (ndlp->nlp_state == NLP_STE_MAPPED_NODE))
1681 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
1682
James Smart38b92ef2010-08-04 16:11:39 -04001683 /* Fix up the rport accordingly */
1684 rport = ndlp->rport;
1685 if (rport) {
1686 rdata = rport->dd_data;
1687 put_node = rdata->pnode != NULL;
1688 put_rport = ndlp->rport != NULL;
1689 rdata->pnode = NULL;
1690 ndlp->rport = NULL;
1691 if (put_node)
1692 lpfc_nlp_put(ndlp);
1693 if (put_rport)
1694 put_device(&rport->dev);
1695 }
James Smart92795652006-07-06 15:50:02 -04001696 }
James Smartcff261f2013-12-17 20:29:47 -05001697 if (phba->sli_rev == LPFC_SLI_REV4 &&
1698 active_rrqs_xri_bitmap)
1699 mempool_free(active_rrqs_xri_bitmap,
1700 phba->active_rrq_pool);
James Smart488d1462006-03-07 15:02:37 -05001701 return new_ndlp;
1702}
1703
James Smarte59058c2008-08-24 21:49:00 -04001704/**
James Smart3621a712009-04-06 18:47:14 -04001705 * lpfc_end_rscn - Check and handle more rscn for a vport
James Smarte59058c2008-08-24 21:49:00 -04001706 * @vport: pointer to a host virtual N_Port data structure.
1707 *
1708 * This routine checks whether more Registration State Change
1709 * Notifications (RSCNs) came in while the discovery state machine was in
1710 * the FC_RSCN_MODE. If so, the lpfc_els_handle_rscn() routine will be
1711 * invoked to handle the additional RSCNs for the @vport. Otherwise, the
1712 * FC_RSCN_MODE bit will be cleared with the @vport to mark as the end of
1713 * handling the RSCNs.
1714 **/
James Smart87af33f2007-10-27 13:37:43 -04001715void
1716lpfc_end_rscn(struct lpfc_vport *vport)
1717{
1718 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1719
1720 if (vport->fc_flag & FC_RSCN_MODE) {
1721 /*
1722 * Check to see if more RSCNs came in while we were
1723 * processing this one.
1724 */
1725 if (vport->fc_rscn_id_cnt ||
1726 (vport->fc_flag & FC_RSCN_DISCOVERY) != 0)
1727 lpfc_els_handle_rscn(vport);
1728 else {
1729 spin_lock_irq(shost->host_lock);
1730 vport->fc_flag &= ~FC_RSCN_MODE;
1731 spin_unlock_irq(shost->host_lock);
1732 }
1733 }
1734}
1735
James Smarte59058c2008-08-24 21:49:00 -04001736/**
James Smart19ca7602010-11-20 23:11:55 -05001737 * lpfc_cmpl_els_rrq - Completion handled for els RRQs.
1738 * @phba: pointer to lpfc hba data structure.
1739 * @cmdiocb: pointer to lpfc command iocb data structure.
1740 * @rspiocb: pointer to lpfc response iocb data structure.
1741 *
1742 * This routine will call the clear rrq function to free the rrq and
1743 * clear the xri's bit in the ndlp's xri_bitmap. If the ndlp does not
1744 * exist then the clear_rrq is still called because the rrq needs to
1745 * be freed.
1746 **/
1747
1748static void
1749lpfc_cmpl_els_rrq(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
1750 struct lpfc_iocbq *rspiocb)
1751{
1752 struct lpfc_vport *vport = cmdiocb->vport;
1753 IOCB_t *irsp;
1754 struct lpfc_nodelist *ndlp;
1755 struct lpfc_node_rrq *rrq;
1756
1757 /* we pass cmdiocb to state machine which needs rspiocb as well */
1758 rrq = cmdiocb->context_un.rrq;
1759 cmdiocb->context_un.rsp_iocb = rspiocb;
1760
1761 irsp = &rspiocb->iocb;
1762 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
1763 "RRQ cmpl: status:x%x/x%x did:x%x",
1764 irsp->ulpStatus, irsp->un.ulpWord[4],
1765 irsp->un.elsreq64.remoteID);
1766
1767 ndlp = lpfc_findnode_did(vport, irsp->un.elsreq64.remoteID);
1768 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp) || ndlp != rrq->ndlp) {
1769 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
1770 "2882 RRQ completes to NPort x%x "
1771 "with no ndlp. Data: x%x x%x x%x\n",
1772 irsp->un.elsreq64.remoteID,
1773 irsp->ulpStatus, irsp->un.ulpWord[4],
1774 irsp->ulpIoTag);
1775 goto out;
1776 }
1777
1778 /* rrq completes to NPort <nlp_DID> */
1779 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
1780 "2880 RRQ completes to NPort x%x "
1781 "Data: x%x x%x x%x x%x x%x\n",
1782 ndlp->nlp_DID, irsp->ulpStatus, irsp->un.ulpWord[4],
1783 irsp->ulpTimeout, rrq->xritag, rrq->rxid);
1784
1785 if (irsp->ulpStatus) {
1786 /* Check for retry */
1787 /* RRQ failed Don't print the vport to vport rjts */
1788 if (irsp->ulpStatus != IOSTAT_LS_RJT ||
1789 (((irsp->un.ulpWord[4]) >> 16 != LSRJT_INVALID_CMD) &&
1790 ((irsp->un.ulpWord[4]) >> 16 != LSRJT_UNABLE_TPC)) ||
1791 (phba)->pport->cfg_log_verbose & LOG_ELS)
1792 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
1793 "2881 RRQ failure DID:%06X Status:x%x/x%x\n",
1794 ndlp->nlp_DID, irsp->ulpStatus,
1795 irsp->un.ulpWord[4]);
1796 }
1797out:
1798 if (rrq)
1799 lpfc_clr_rrq_active(phba, rrq->xritag, rrq);
1800 lpfc_els_free_iocb(phba, cmdiocb);
1801 return;
1802}
1803/**
James Smart3621a712009-04-06 18:47:14 -04001804 * lpfc_cmpl_els_plogi - Completion callback function for plogi
James Smarte59058c2008-08-24 21:49:00 -04001805 * @phba: pointer to lpfc hba data structure.
1806 * @cmdiocb: pointer to lpfc command iocb data structure.
1807 * @rspiocb: pointer to lpfc response iocb data structure.
1808 *
1809 * This routine is the completion callback function for issuing the Port
1810 * Login (PLOGI) command. For PLOGI completion, there must be an active
1811 * ndlp on the vport node list that matches the remote node ID from the
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001812 * PLOGI response IOCB. If such ndlp does not exist, the PLOGI is simply
James Smarte59058c2008-08-24 21:49:00 -04001813 * ignored and command IOCB released. The PLOGI response IOCB status is
1814 * checked for error conditons. If there is error status reported, PLOGI
1815 * retry shall be attempted by invoking the lpfc_els_retry() routine.
1816 * Otherwise, the lpfc_plogi_confirm_nport() routine shall be invoked on
1817 * the ndlp and the NLP_EVT_CMPL_PLOGI state to the Discover State Machine
1818 * (DSM) is set for this PLOGI completion. Finally, it checks whether
1819 * there are additional N_Port nodes with the vport that need to perform
1820 * PLOGI. If so, the lpfc_more_plogi() routine is invoked to issue addition
1821 * PLOGIs.
1822 **/
dea31012005-04-17 16:05:31 -05001823static void
James Smart2e0fef82007-06-17 19:56:36 -05001824lpfc_cmpl_els_plogi(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
1825 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05001826{
James Smart2e0fef82007-06-17 19:56:36 -05001827 struct lpfc_vport *vport = cmdiocb->vport;
1828 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05001829 IOCB_t *irsp;
dea31012005-04-17 16:05:31 -05001830 struct lpfc_nodelist *ndlp;
James Smart92795652006-07-06 15:50:02 -04001831 struct lpfc_dmabuf *prsp;
James Smarteb016562014-09-03 12:58:06 -04001832 int disc, rc;
dea31012005-04-17 16:05:31 -05001833
dea31012005-04-17 16:05:31 -05001834 /* we pass cmdiocb to state machine which needs rspiocb as well */
1835 cmdiocb->context_un.rsp_iocb = rspiocb;
1836
1837 irsp = &rspiocb->iocb;
James Smart858c9f62007-06-17 19:56:39 -05001838 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
1839 "PLOGI cmpl: status:x%x/x%x did:x%x",
1840 irsp->ulpStatus, irsp->un.ulpWord[4],
1841 irsp->un.elsreq64.remoteID);
1842
James Smart2e0fef82007-06-17 19:56:36 -05001843 ndlp = lpfc_findnode_did(vport, irsp->un.elsreq64.remoteID);
James Smarte47c9092008-02-08 18:49:26 -05001844 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp)) {
James Smarte8b62012007-08-02 11:10:09 -04001845 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
1846 "0136 PLOGI completes to NPort x%x "
1847 "with no ndlp. Data: x%x x%x x%x\n",
1848 irsp->un.elsreq64.remoteID,
1849 irsp->ulpStatus, irsp->un.ulpWord[4],
1850 irsp->ulpIoTag);
James Smart488d1462006-03-07 15:02:37 -05001851 goto out;
James Smarted957682007-06-17 19:56:37 -05001852 }
dea31012005-04-17 16:05:31 -05001853
1854 /* Since ndlp can be freed in the disc state machine, note if this node
1855 * is being used during discovery.
1856 */
James Smart2e0fef82007-06-17 19:56:36 -05001857 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001858 disc = (ndlp->nlp_flag & NLP_NPR_2B_DISC);
James Smart488d1462006-03-07 15:02:37 -05001859 ndlp->nlp_flag &= ~NLP_NPR_2B_DISC;
James Smart2e0fef82007-06-17 19:56:36 -05001860 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001861 rc = 0;
1862
1863 /* PLOGI completes to NPort <nlp_DID> */
James Smarte8b62012007-08-02 11:10:09 -04001864 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
1865 "0102 PLOGI completes to NPort x%x "
1866 "Data: x%x x%x x%x x%x x%x\n",
1867 ndlp->nlp_DID, irsp->ulpStatus, irsp->un.ulpWord[4],
1868 irsp->ulpTimeout, disc, vport->num_disc_nodes);
dea31012005-04-17 16:05:31 -05001869 /* Check to see if link went down during discovery */
James Smart2e0fef82007-06-17 19:56:36 -05001870 if (lpfc_els_chk_latt(vport)) {
1871 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001872 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
James Smart2e0fef82007-06-17 19:56:36 -05001873 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001874 goto out;
1875 }
1876
dea31012005-04-17 16:05:31 -05001877 if (irsp->ulpStatus) {
1878 /* Check for retry */
1879 if (lpfc_els_retry(phba, cmdiocb, rspiocb)) {
1880 /* ELS command is being retried */
1881 if (disc) {
James Smart2e0fef82007-06-17 19:56:36 -05001882 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001883 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
James Smart2e0fef82007-06-17 19:56:36 -05001884 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001885 }
1886 goto out;
1887 }
James Smart2a9bf3d2010-06-07 15:24:45 -04001888 /* PLOGI failed Don't print the vport to vport rjts */
1889 if (irsp->ulpStatus != IOSTAT_LS_RJT ||
1890 (((irsp->un.ulpWord[4]) >> 16 != LSRJT_INVALID_CMD) &&
1891 ((irsp->un.ulpWord[4]) >> 16 != LSRJT_UNABLE_TPC)) ||
1892 (phba)->pport->cfg_log_verbose & LOG_ELS)
1893 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
James Smarte40a02c2010-02-26 14:13:54 -05001894 "2753 PLOGI failure DID:%06X Status:x%x/x%x\n",
1895 ndlp->nlp_DID, irsp->ulpStatus,
1896 irsp->un.ulpWord[4]);
dea31012005-04-17 16:05:31 -05001897 /* Do not call DSM for lpfc_els_abort'ed ELS cmds */
James Smarte47c9092008-02-08 18:49:26 -05001898 if (lpfc_error_lost_link(irsp))
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001899 rc = NLP_STE_FREED_NODE;
James Smarte47c9092008-02-08 18:49:26 -05001900 else
James Smart2e0fef82007-06-17 19:56:36 -05001901 rc = lpfc_disc_state_machine(vport, ndlp, cmdiocb,
James Smart92d7f7b2007-06-17 19:56:38 -05001902 NLP_EVT_CMPL_PLOGI);
dea31012005-04-17 16:05:31 -05001903 } else {
1904 /* Good status, call state machine */
James Smart92795652006-07-06 15:50:02 -04001905 prsp = list_entry(((struct lpfc_dmabuf *)
James Smart92d7f7b2007-06-17 19:56:38 -05001906 cmdiocb->context2)->list.next,
1907 struct lpfc_dmabuf, list);
1908 ndlp = lpfc_plogi_confirm_nport(phba, prsp->virt, ndlp);
James Smart2e0fef82007-06-17 19:56:36 -05001909 rc = lpfc_disc_state_machine(vport, ndlp, cmdiocb,
James Smart92d7f7b2007-06-17 19:56:38 -05001910 NLP_EVT_CMPL_PLOGI);
dea31012005-04-17 16:05:31 -05001911 }
1912
James Smart2e0fef82007-06-17 19:56:36 -05001913 if (disc && vport->num_disc_nodes) {
dea31012005-04-17 16:05:31 -05001914 /* Check to see if there are more PLOGIs to be sent */
James Smart2e0fef82007-06-17 19:56:36 -05001915 lpfc_more_plogi(vport);
dea31012005-04-17 16:05:31 -05001916
James Smart2e0fef82007-06-17 19:56:36 -05001917 if (vport->num_disc_nodes == 0) {
1918 spin_lock_irq(shost->host_lock);
1919 vport->fc_flag &= ~FC_NDISC_ACTIVE;
1920 spin_unlock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001921
James Smart2e0fef82007-06-17 19:56:36 -05001922 lpfc_can_disctmo(vport);
James Smart87af33f2007-10-27 13:37:43 -04001923 lpfc_end_rscn(vport);
dea31012005-04-17 16:05:31 -05001924 }
1925 }
1926
1927out:
1928 lpfc_els_free_iocb(phba, cmdiocb);
1929 return;
1930}
1931
James Smarte59058c2008-08-24 21:49:00 -04001932/**
James Smart3621a712009-04-06 18:47:14 -04001933 * lpfc_issue_els_plogi - Issue an plogi iocb command for a vport
James Smarte59058c2008-08-24 21:49:00 -04001934 * @vport: pointer to a host virtual N_Port data structure.
1935 * @did: destination port identifier.
1936 * @retry: number of retries to the command IOCB.
1937 *
1938 * This routine issues a Port Login (PLOGI) command to a remote N_Port
1939 * (with the @did) for a @vport. Before issuing a PLOGI to a remote N_Port,
1940 * the ndlp with the remote N_Port DID must exist on the @vport's ndlp list.
1941 * This routine constructs the proper feilds of the PLOGI IOCB and invokes
1942 * the lpfc_sli_issue_iocb() routine to send out PLOGI ELS command.
1943 *
1944 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
1945 * will be incremented by 1 for holding the ndlp and the reference to ndlp
1946 * will be stored into the context1 field of the IOCB for the completion
1947 * callback function to the PLOGI ELS command.
1948 *
1949 * Return code
1950 * 0 - Successfully issued a plogi for @vport
1951 * 1 - failed to issue a plogi for @vport
1952 **/
dea31012005-04-17 16:05:31 -05001953int
James Smart2e0fef82007-06-17 19:56:36 -05001954lpfc_issue_els_plogi(struct lpfc_vport *vport, uint32_t did, uint8_t retry)
dea31012005-04-17 16:05:31 -05001955{
James Smart2e0fef82007-06-17 19:56:36 -05001956 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05001957 struct serv_parm *sp;
1958 IOCB_t *icmd;
James Smart98c9ea52007-10-27 13:37:33 -04001959 struct lpfc_nodelist *ndlp;
dea31012005-04-17 16:05:31 -05001960 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05001961 struct lpfc_sli *psli;
1962 uint8_t *pcmd;
1963 uint16_t cmdsize;
James Smart92d7f7b2007-06-17 19:56:38 -05001964 int ret;
dea31012005-04-17 16:05:31 -05001965
1966 psli = &phba->sli;
dea31012005-04-17 16:05:31 -05001967
James Smart98c9ea52007-10-27 13:37:33 -04001968 ndlp = lpfc_findnode_did(vport, did);
James Smarte47c9092008-02-08 18:49:26 -05001969 if (ndlp && !NLP_CHK_NODE_ACT(ndlp))
1970 ndlp = NULL;
James Smart98c9ea52007-10-27 13:37:33 -04001971
James Smarte47c9092008-02-08 18:49:26 -05001972 /* If ndlp is not NULL, we will bump the reference count on it */
James Smart92d7f7b2007-06-17 19:56:38 -05001973 cmdsize = (sizeof(uint32_t) + sizeof(struct serv_parm));
James Smart98c9ea52007-10-27 13:37:33 -04001974 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp, did,
James Smart2e0fef82007-06-17 19:56:36 -05001975 ELS_CMD_PLOGI);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001976 if (!elsiocb)
1977 return 1;
dea31012005-04-17 16:05:31 -05001978
1979 icmd = &elsiocb->iocb;
1980 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
1981
1982 /* For PLOGI request, remainder of payload is service parameters */
1983 *((uint32_t *) (pcmd)) = ELS_CMD_PLOGI;
James Smart92d7f7b2007-06-17 19:56:38 -05001984 pcmd += sizeof(uint32_t);
1985 memcpy(pcmd, &vport->fc_sparam, sizeof(struct serv_parm));
dea31012005-04-17 16:05:31 -05001986 sp = (struct serv_parm *) pcmd;
1987
James Smart5ac6b302010-10-22 11:05:36 -04001988 /*
1989 * If we are a N-port connected to a Fabric, fix-up paramm's so logins
1990 * to device on remote loops work.
1991 */
1992 if ((vport->fc_flag & FC_FABRIC) && !(vport->fc_flag & FC_PUBLIC_LOOP))
1993 sp->cmn.altBbCredit = 1;
1994
dea31012005-04-17 16:05:31 -05001995 if (sp->cmn.fcphLow < FC_PH_4_3)
1996 sp->cmn.fcphLow = FC_PH_4_3;
1997
1998 if (sp->cmn.fcphHigh < FC_PH3)
1999 sp->cmn.fcphHigh = FC_PH3;
2000
James Smart858c9f62007-06-17 19:56:39 -05002001 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2002 "Issue PLOGI: did:x%x",
2003 did, 0, 0);
2004
dea31012005-04-17 16:05:31 -05002005 phba->fc_stat.elsXmitPLOGI++;
2006 elsiocb->iocb_cmpl = lpfc_cmpl_els_plogi;
James Smart3772a992009-05-22 14:50:54 -04002007 ret = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
James Smart92d7f7b2007-06-17 19:56:38 -05002008
2009 if (ret == IOCB_ERROR) {
dea31012005-04-17 16:05:31 -05002010 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002011 return 1;
dea31012005-04-17 16:05:31 -05002012 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002013 return 0;
dea31012005-04-17 16:05:31 -05002014}
2015
James Smarte59058c2008-08-24 21:49:00 -04002016/**
James Smart3621a712009-04-06 18:47:14 -04002017 * lpfc_cmpl_els_prli - Completion callback function for prli
James Smarte59058c2008-08-24 21:49:00 -04002018 * @phba: pointer to lpfc hba data structure.
2019 * @cmdiocb: pointer to lpfc command iocb data structure.
2020 * @rspiocb: pointer to lpfc response iocb data structure.
2021 *
2022 * This routine is the completion callback function for a Process Login
2023 * (PRLI) ELS command. The PRLI response IOCB status is checked for error
2024 * status. If there is error status reported, PRLI retry shall be attempted
2025 * by invoking the lpfc_els_retry() routine. Otherwise, the state
2026 * NLP_EVT_CMPL_PRLI is sent to the Discover State Machine (DSM) for this
2027 * ndlp to mark the PRLI completion.
2028 **/
dea31012005-04-17 16:05:31 -05002029static void
James Smart2e0fef82007-06-17 19:56:36 -05002030lpfc_cmpl_els_prli(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
2031 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05002032{
James Smart2e0fef82007-06-17 19:56:36 -05002033 struct lpfc_vport *vport = cmdiocb->vport;
2034 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05002035 IOCB_t *irsp;
2036 struct lpfc_sli *psli;
2037 struct lpfc_nodelist *ndlp;
2038
2039 psli = &phba->sli;
2040 /* we pass cmdiocb to state machine which needs rspiocb as well */
2041 cmdiocb->context_un.rsp_iocb = rspiocb;
2042
2043 irsp = &(rspiocb->iocb);
2044 ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
James Smart2e0fef82007-06-17 19:56:36 -05002045 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002046 ndlp->nlp_flag &= ~NLP_PRLI_SND;
James Smart2e0fef82007-06-17 19:56:36 -05002047 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002048
James Smart858c9f62007-06-17 19:56:39 -05002049 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2050 "PRLI cmpl: status:x%x/x%x did:x%x",
2051 irsp->ulpStatus, irsp->un.ulpWord[4],
2052 ndlp->nlp_DID);
dea31012005-04-17 16:05:31 -05002053 /* PRLI completes to NPort <nlp_DID> */
James Smarte8b62012007-08-02 11:10:09 -04002054 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
2055 "0103 PRLI completes to NPort x%x "
2056 "Data: x%x x%x x%x x%x\n",
2057 ndlp->nlp_DID, irsp->ulpStatus, irsp->un.ulpWord[4],
2058 irsp->ulpTimeout, vport->num_disc_nodes);
dea31012005-04-17 16:05:31 -05002059
James Smart2e0fef82007-06-17 19:56:36 -05002060 vport->fc_prli_sent--;
dea31012005-04-17 16:05:31 -05002061 /* Check to see if link went down during discovery */
James Smart2e0fef82007-06-17 19:56:36 -05002062 if (lpfc_els_chk_latt(vport))
dea31012005-04-17 16:05:31 -05002063 goto out;
2064
2065 if (irsp->ulpStatus) {
2066 /* Check for retry */
2067 if (lpfc_els_retry(phba, cmdiocb, rspiocb)) {
2068 /* ELS command is being retried */
2069 goto out;
2070 }
2071 /* PRLI failed */
James Smarte40a02c2010-02-26 14:13:54 -05002072 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
2073 "2754 PRLI failure DID:%06X Status:x%x/x%x\n",
2074 ndlp->nlp_DID, irsp->ulpStatus,
2075 irsp->un.ulpWord[4]);
dea31012005-04-17 16:05:31 -05002076 /* Do not call DSM for lpfc_els_abort'ed ELS cmds */
James Smarte47c9092008-02-08 18:49:26 -05002077 if (lpfc_error_lost_link(irsp))
dea31012005-04-17 16:05:31 -05002078 goto out;
James Smarte47c9092008-02-08 18:49:26 -05002079 else
James Smart2e0fef82007-06-17 19:56:36 -05002080 lpfc_disc_state_machine(vport, ndlp, cmdiocb,
James Smart92d7f7b2007-06-17 19:56:38 -05002081 NLP_EVT_CMPL_PRLI);
James Smarte47c9092008-02-08 18:49:26 -05002082 } else
dea31012005-04-17 16:05:31 -05002083 /* Good status, call state machine */
James Smart2e0fef82007-06-17 19:56:36 -05002084 lpfc_disc_state_machine(vport, ndlp, cmdiocb,
James Smart92d7f7b2007-06-17 19:56:38 -05002085 NLP_EVT_CMPL_PRLI);
dea31012005-04-17 16:05:31 -05002086out:
2087 lpfc_els_free_iocb(phba, cmdiocb);
2088 return;
2089}
2090
James Smarte59058c2008-08-24 21:49:00 -04002091/**
James Smart3621a712009-04-06 18:47:14 -04002092 * lpfc_issue_els_prli - Issue a prli iocb command for a vport
James Smarte59058c2008-08-24 21:49:00 -04002093 * @vport: pointer to a host virtual N_Port data structure.
2094 * @ndlp: pointer to a node-list data structure.
2095 * @retry: number of retries to the command IOCB.
2096 *
2097 * This routine issues a Process Login (PRLI) ELS command for the
2098 * @vport. The PRLI service parameters are set up in the payload of the
2099 * PRLI Request command and the pointer to lpfc_cmpl_els_prli() routine
2100 * is put to the IOCB completion callback func field before invoking the
2101 * routine lpfc_sli_issue_iocb() to send out PRLI command.
2102 *
2103 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
2104 * will be incremented by 1 for holding the ndlp and the reference to ndlp
2105 * will be stored into the context1 field of the IOCB for the completion
2106 * callback function to the PRLI ELS command.
2107 *
2108 * Return code
2109 * 0 - successfully issued prli iocb command for @vport
2110 * 1 - failed to issue prli iocb command for @vport
2111 **/
dea31012005-04-17 16:05:31 -05002112int
James Smart2e0fef82007-06-17 19:56:36 -05002113lpfc_issue_els_prli(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
dea31012005-04-17 16:05:31 -05002114 uint8_t retry)
2115{
James Smart2e0fef82007-06-17 19:56:36 -05002116 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2117 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05002118 PRLI *npr;
2119 IOCB_t *icmd;
2120 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05002121 uint8_t *pcmd;
2122 uint16_t cmdsize;
2123
James Smart92d7f7b2007-06-17 19:56:38 -05002124 cmdsize = (sizeof(uint32_t) + sizeof(PRLI));
James Smart2e0fef82007-06-17 19:56:36 -05002125 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
2126 ndlp->nlp_DID, ELS_CMD_PRLI);
James Smart488d1462006-03-07 15:02:37 -05002127 if (!elsiocb)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002128 return 1;
dea31012005-04-17 16:05:31 -05002129
2130 icmd = &elsiocb->iocb;
2131 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
2132
2133 /* For PRLI request, remainder of payload is service parameters */
James Smart92d7f7b2007-06-17 19:56:38 -05002134 memset(pcmd, 0, (sizeof(PRLI) + sizeof(uint32_t)));
dea31012005-04-17 16:05:31 -05002135 *((uint32_t *) (pcmd)) = ELS_CMD_PRLI;
James Smart92d7f7b2007-06-17 19:56:38 -05002136 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05002137
2138 /* For PRLI, remainder of payload is PRLI parameter page */
2139 npr = (PRLI *) pcmd;
2140 /*
2141 * If our firmware version is 3.20 or later,
2142 * set the following bits for FC-TAPE support.
2143 */
2144 if (phba->vpd.rev.feaLevelHigh >= 0x02) {
2145 npr->ConfmComplAllowed = 1;
2146 npr->Retry = 1;
2147 npr->TaskRetryIdReq = 1;
2148 }
2149 npr->estabImagePair = 1;
2150 npr->readXferRdyDis = 1;
James Smart3cb01c52013-07-15 18:35:04 -04002151 if (vport->cfg_first_burst_size)
2152 npr->writeXferRdyDis = 1;
dea31012005-04-17 16:05:31 -05002153
2154 /* For FCP support */
2155 npr->prliType = PRLI_FCP_TYPE;
2156 npr->initiatorFunc = 1;
2157
James Smart858c9f62007-06-17 19:56:39 -05002158 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2159 "Issue PRLI: did:x%x",
2160 ndlp->nlp_DID, 0, 0);
2161
dea31012005-04-17 16:05:31 -05002162 phba->fc_stat.elsXmitPRLI++;
2163 elsiocb->iocb_cmpl = lpfc_cmpl_els_prli;
James Smart2e0fef82007-06-17 19:56:36 -05002164 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002165 ndlp->nlp_flag |= NLP_PRLI_SND;
James Smart2e0fef82007-06-17 19:56:36 -05002166 spin_unlock_irq(shost->host_lock);
James Smart3772a992009-05-22 14:50:54 -04002167 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) ==
2168 IOCB_ERROR) {
James Smart2e0fef82007-06-17 19:56:36 -05002169 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002170 ndlp->nlp_flag &= ~NLP_PRLI_SND;
James Smart2e0fef82007-06-17 19:56:36 -05002171 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002172 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002173 return 1;
dea31012005-04-17 16:05:31 -05002174 }
James Smart2e0fef82007-06-17 19:56:36 -05002175 vport->fc_prli_sent++;
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002176 return 0;
dea31012005-04-17 16:05:31 -05002177}
2178
James Smarte59058c2008-08-24 21:49:00 -04002179/**
James Smart3621a712009-04-06 18:47:14 -04002180 * lpfc_rscn_disc - Perform rscn discovery for a vport
James Smart90160e02008-08-24 21:49:45 -04002181 * @vport: pointer to a host virtual N_Port data structure.
2182 *
2183 * This routine performs Registration State Change Notification (RSCN)
2184 * discovery for a @vport. If the @vport's node port recovery count is not
2185 * zero, it will invoke the lpfc_els_disc_plogi() to perform PLOGI for all
2186 * the nodes that need recovery. If none of the PLOGI were needed through
2187 * the lpfc_els_disc_plogi() routine, the lpfc_end_rscn() routine shall be
2188 * invoked to check and handle possible more RSCN came in during the period
2189 * of processing the current ones.
2190 **/
2191static void
2192lpfc_rscn_disc(struct lpfc_vport *vport)
2193{
2194 lpfc_can_disctmo(vport);
2195
2196 /* RSCN discovery */
2197 /* go thru NPR nodes and issue ELS PLOGIs */
2198 if (vport->fc_npr_cnt)
2199 if (lpfc_els_disc_plogi(vport))
2200 return;
2201
2202 lpfc_end_rscn(vport);
2203}
2204
2205/**
James Smart3621a712009-04-06 18:47:14 -04002206 * lpfc_adisc_done - Complete the adisc phase of discovery
James Smart90160e02008-08-24 21:49:45 -04002207 * @vport: pointer to lpfc_vport hba data structure that finished all ADISCs.
2208 *
2209 * This function is called when the final ADISC is completed during discovery.
2210 * This function handles clearing link attention or issuing reg_vpi depending
2211 * on whether npiv is enabled. This function also kicks off the PLOGI phase of
2212 * discovery.
2213 * This function is called with no locks held.
2214 **/
2215static void
2216lpfc_adisc_done(struct lpfc_vport *vport)
2217{
2218 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2219 struct lpfc_hba *phba = vport->phba;
2220
2221 /*
2222 * For NPIV, cmpl_reg_vpi will set port_state to READY,
2223 * and continue discovery.
2224 */
2225 if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
James Smart6fb120a2009-05-22 14:52:59 -04002226 !(vport->fc_flag & FC_RSCN_MODE) &&
2227 (phba->sli_rev < LPFC_SLI_REV4)) {
James Smart90160e02008-08-24 21:49:45 -04002228 lpfc_issue_reg_vpi(phba, vport);
2229 return;
2230 }
2231 /*
2232 * For SLI2, we need to set port_state to READY
2233 * and continue discovery.
2234 */
2235 if (vport->port_state < LPFC_VPORT_READY) {
2236 /* If we get here, there is nothing to ADISC */
2237 if (vport->port_type == LPFC_PHYSICAL_PORT)
2238 lpfc_issue_clear_la(phba, vport);
2239 if (!(vport->fc_flag & FC_ABORT_DISCOVERY)) {
2240 vport->num_disc_nodes = 0;
2241 /* go thru NPR list, issue ELS PLOGIs */
2242 if (vport->fc_npr_cnt)
2243 lpfc_els_disc_plogi(vport);
2244 if (!vport->num_disc_nodes) {
2245 spin_lock_irq(shost->host_lock);
2246 vport->fc_flag &= ~FC_NDISC_ACTIVE;
2247 spin_unlock_irq(shost->host_lock);
2248 lpfc_can_disctmo(vport);
2249 lpfc_end_rscn(vport);
2250 }
2251 }
2252 vport->port_state = LPFC_VPORT_READY;
2253 } else
2254 lpfc_rscn_disc(vport);
2255}
2256
2257/**
James Smart3621a712009-04-06 18:47:14 -04002258 * lpfc_more_adisc - Issue more adisc as needed
James Smarte59058c2008-08-24 21:49:00 -04002259 * @vport: pointer to a host virtual N_Port data structure.
2260 *
2261 * This routine determines whether there are more ndlps on a @vport
2262 * node list need to have Address Discover (ADISC) issued. If so, it will
2263 * invoke the lpfc_els_disc_adisc() routine to issue ADISC on the @vport's
2264 * remaining nodes which need to have ADISC sent.
2265 **/
James Smart0ff10d42008-01-11 01:52:36 -05002266void
James Smart2e0fef82007-06-17 19:56:36 -05002267lpfc_more_adisc(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05002268{
James Smart2e0fef82007-06-17 19:56:36 -05002269 if (vport->num_disc_nodes)
2270 vport->num_disc_nodes--;
dea31012005-04-17 16:05:31 -05002271 /* Continue discovery with <num_disc_nodes> ADISCs to go */
James Smarte8b62012007-08-02 11:10:09 -04002272 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
2273 "0210 Continue discovery with %d ADISCs to go "
2274 "Data: x%x x%x x%x\n",
2275 vport->num_disc_nodes, vport->fc_adisc_cnt,
2276 vport->fc_flag, vport->port_state);
dea31012005-04-17 16:05:31 -05002277 /* Check to see if there are more ADISCs to be sent */
James Smart2e0fef82007-06-17 19:56:36 -05002278 if (vport->fc_flag & FC_NLP_MORE) {
2279 lpfc_set_disctmo(vport);
2280 /* go thru NPR nodes and issue any remaining ELS ADISCs */
James Smarteb016562014-09-03 12:58:06 -04002281 lpfc_els_disc_adisc(vport);
dea31012005-04-17 16:05:31 -05002282 }
James Smart90160e02008-08-24 21:49:45 -04002283 if (!vport->num_disc_nodes)
2284 lpfc_adisc_done(vport);
dea31012005-04-17 16:05:31 -05002285 return;
2286}
2287
James Smarte59058c2008-08-24 21:49:00 -04002288/**
James Smart3621a712009-04-06 18:47:14 -04002289 * lpfc_cmpl_els_adisc - Completion callback function for adisc
James Smarte59058c2008-08-24 21:49:00 -04002290 * @phba: pointer to lpfc hba data structure.
2291 * @cmdiocb: pointer to lpfc command iocb data structure.
2292 * @rspiocb: pointer to lpfc response iocb data structure.
2293 *
2294 * This routine is the completion function for issuing the Address Discover
2295 * (ADISC) command. It first checks to see whether link went down during
2296 * the discovery process. If so, the node will be marked as node port
2297 * recovery for issuing discover IOCB by the link attention handler and
2298 * exit. Otherwise, the response status is checked. If error was reported
2299 * in the response status, the ADISC command shall be retried by invoking
2300 * the lpfc_els_retry() routine. Otherwise, if no error was reported in
2301 * the response status, the state machine is invoked to set transition
2302 * with respect to NLP_EVT_CMPL_ADISC event.
2303 **/
dea31012005-04-17 16:05:31 -05002304static void
James Smart2e0fef82007-06-17 19:56:36 -05002305lpfc_cmpl_els_adisc(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
2306 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05002307{
James Smart2e0fef82007-06-17 19:56:36 -05002308 struct lpfc_vport *vport = cmdiocb->vport;
2309 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05002310 IOCB_t *irsp;
dea31012005-04-17 16:05:31 -05002311 struct lpfc_nodelist *ndlp;
James Smart2e0fef82007-06-17 19:56:36 -05002312 int disc;
dea31012005-04-17 16:05:31 -05002313
2314 /* we pass cmdiocb to state machine which needs rspiocb as well */
2315 cmdiocb->context_un.rsp_iocb = rspiocb;
2316
2317 irsp = &(rspiocb->iocb);
2318 ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
dea31012005-04-17 16:05:31 -05002319
James Smart858c9f62007-06-17 19:56:39 -05002320 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2321 "ADISC cmpl: status:x%x/x%x did:x%x",
2322 irsp->ulpStatus, irsp->un.ulpWord[4],
2323 ndlp->nlp_DID);
2324
dea31012005-04-17 16:05:31 -05002325 /* Since ndlp can be freed in the disc state machine, note if this node
2326 * is being used during discovery.
2327 */
James Smart2e0fef82007-06-17 19:56:36 -05002328 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002329 disc = (ndlp->nlp_flag & NLP_NPR_2B_DISC);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002330 ndlp->nlp_flag &= ~(NLP_ADISC_SND | NLP_NPR_2B_DISC);
James Smart2e0fef82007-06-17 19:56:36 -05002331 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002332 /* ADISC completes to NPort <nlp_DID> */
James Smarte8b62012007-08-02 11:10:09 -04002333 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
2334 "0104 ADISC completes to NPort x%x "
2335 "Data: x%x x%x x%x x%x x%x\n",
2336 ndlp->nlp_DID, irsp->ulpStatus, irsp->un.ulpWord[4],
2337 irsp->ulpTimeout, disc, vport->num_disc_nodes);
dea31012005-04-17 16:05:31 -05002338 /* Check to see if link went down during discovery */
James Smart2e0fef82007-06-17 19:56:36 -05002339 if (lpfc_els_chk_latt(vport)) {
2340 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002341 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
James Smart2e0fef82007-06-17 19:56:36 -05002342 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002343 goto out;
2344 }
2345
2346 if (irsp->ulpStatus) {
2347 /* Check for retry */
2348 if (lpfc_els_retry(phba, cmdiocb, rspiocb)) {
2349 /* ELS command is being retried */
2350 if (disc) {
James Smart2e0fef82007-06-17 19:56:36 -05002351 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002352 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
James Smart2e0fef82007-06-17 19:56:36 -05002353 spin_unlock_irq(shost->host_lock);
2354 lpfc_set_disctmo(vport);
dea31012005-04-17 16:05:31 -05002355 }
2356 goto out;
2357 }
2358 /* ADISC failed */
James Smarte40a02c2010-02-26 14:13:54 -05002359 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
2360 "2755 ADISC failure DID:%06X Status:x%x/x%x\n",
2361 ndlp->nlp_DID, irsp->ulpStatus,
2362 irsp->un.ulpWord[4]);
dea31012005-04-17 16:05:31 -05002363 /* Do not call DSM for lpfc_els_abort'ed ELS cmds */
James Smarte47c9092008-02-08 18:49:26 -05002364 if (!lpfc_error_lost_link(irsp))
James Smart2e0fef82007-06-17 19:56:36 -05002365 lpfc_disc_state_machine(vport, ndlp, cmdiocb,
James Smart858c9f62007-06-17 19:56:39 -05002366 NLP_EVT_CMPL_ADISC);
James Smarte47c9092008-02-08 18:49:26 -05002367 } else
dea31012005-04-17 16:05:31 -05002368 /* Good status, call state machine */
James Smart2e0fef82007-06-17 19:56:36 -05002369 lpfc_disc_state_machine(vport, ndlp, cmdiocb,
dea31012005-04-17 16:05:31 -05002370 NLP_EVT_CMPL_ADISC);
dea31012005-04-17 16:05:31 -05002371
James Smart90160e02008-08-24 21:49:45 -04002372 /* Check to see if there are more ADISCs to be sent */
2373 if (disc && vport->num_disc_nodes)
James Smart2e0fef82007-06-17 19:56:36 -05002374 lpfc_more_adisc(vport);
dea31012005-04-17 16:05:31 -05002375out:
2376 lpfc_els_free_iocb(phba, cmdiocb);
2377 return;
2378}
2379
James Smarte59058c2008-08-24 21:49:00 -04002380/**
James Smart3621a712009-04-06 18:47:14 -04002381 * lpfc_issue_els_adisc - Issue an address discover iocb to an node on a vport
James Smarte59058c2008-08-24 21:49:00 -04002382 * @vport: pointer to a virtual N_Port data structure.
2383 * @ndlp: pointer to a node-list data structure.
2384 * @retry: number of retries to the command IOCB.
2385 *
2386 * This routine issues an Address Discover (ADISC) for an @ndlp on a
2387 * @vport. It prepares the payload of the ADISC ELS command, updates the
2388 * and states of the ndlp, and invokes the lpfc_sli_issue_iocb() routine
2389 * to issue the ADISC ELS command.
2390 *
2391 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
2392 * will be incremented by 1 for holding the ndlp and the reference to ndlp
2393 * will be stored into the context1 field of the IOCB for the completion
2394 * callback function to the ADISC ELS command.
2395 *
2396 * Return code
2397 * 0 - successfully issued adisc
2398 * 1 - failed to issue adisc
2399 **/
dea31012005-04-17 16:05:31 -05002400int
James Smart2e0fef82007-06-17 19:56:36 -05002401lpfc_issue_els_adisc(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
dea31012005-04-17 16:05:31 -05002402 uint8_t retry)
2403{
James Smart2e0fef82007-06-17 19:56:36 -05002404 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2405 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05002406 ADISC *ap;
2407 IOCB_t *icmd;
2408 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05002409 uint8_t *pcmd;
2410 uint16_t cmdsize;
2411
James Smart92d7f7b2007-06-17 19:56:38 -05002412 cmdsize = (sizeof(uint32_t) + sizeof(ADISC));
James Smart2e0fef82007-06-17 19:56:36 -05002413 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
2414 ndlp->nlp_DID, ELS_CMD_ADISC);
James Smart488d1462006-03-07 15:02:37 -05002415 if (!elsiocb)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002416 return 1;
dea31012005-04-17 16:05:31 -05002417
2418 icmd = &elsiocb->iocb;
2419 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
2420
2421 /* For ADISC request, remainder of payload is service parameters */
2422 *((uint32_t *) (pcmd)) = ELS_CMD_ADISC;
James Smart92d7f7b2007-06-17 19:56:38 -05002423 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05002424
2425 /* Fill in ADISC payload */
2426 ap = (ADISC *) pcmd;
2427 ap->hardAL_PA = phba->fc_pref_ALPA;
James Smart92d7f7b2007-06-17 19:56:38 -05002428 memcpy(&ap->portName, &vport->fc_portname, sizeof(struct lpfc_name));
2429 memcpy(&ap->nodeName, &vport->fc_nodename, sizeof(struct lpfc_name));
James Smart2e0fef82007-06-17 19:56:36 -05002430 ap->DID = be32_to_cpu(vport->fc_myDID);
dea31012005-04-17 16:05:31 -05002431
James Smart858c9f62007-06-17 19:56:39 -05002432 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2433 "Issue ADISC: did:x%x",
2434 ndlp->nlp_DID, 0, 0);
2435
dea31012005-04-17 16:05:31 -05002436 phba->fc_stat.elsXmitADISC++;
2437 elsiocb->iocb_cmpl = lpfc_cmpl_els_adisc;
James Smart2e0fef82007-06-17 19:56:36 -05002438 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002439 ndlp->nlp_flag |= NLP_ADISC_SND;
James Smart2e0fef82007-06-17 19:56:36 -05002440 spin_unlock_irq(shost->host_lock);
James Smart3772a992009-05-22 14:50:54 -04002441 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) ==
2442 IOCB_ERROR) {
James Smart2e0fef82007-06-17 19:56:36 -05002443 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002444 ndlp->nlp_flag &= ~NLP_ADISC_SND;
James Smart2e0fef82007-06-17 19:56:36 -05002445 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002446 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002447 return 1;
dea31012005-04-17 16:05:31 -05002448 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002449 return 0;
dea31012005-04-17 16:05:31 -05002450}
2451
James Smarte59058c2008-08-24 21:49:00 -04002452/**
James Smart3621a712009-04-06 18:47:14 -04002453 * lpfc_cmpl_els_logo - Completion callback function for logo
James Smarte59058c2008-08-24 21:49:00 -04002454 * @phba: pointer to lpfc hba data structure.
2455 * @cmdiocb: pointer to lpfc command iocb data structure.
2456 * @rspiocb: pointer to lpfc response iocb data structure.
2457 *
2458 * This routine is the completion function for issuing the ELS Logout (LOGO)
2459 * command. If no error status was reported from the LOGO response, the
2460 * state machine of the associated ndlp shall be invoked for transition with
2461 * respect to NLP_EVT_CMPL_LOGO event. Otherwise, if error status was reported,
2462 * the lpfc_els_retry() routine will be invoked to retry the LOGO command.
2463 **/
dea31012005-04-17 16:05:31 -05002464static void
James Smart2e0fef82007-06-17 19:56:36 -05002465lpfc_cmpl_els_logo(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
2466 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05002467{
James Smart2e0fef82007-06-17 19:56:36 -05002468 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
2469 struct lpfc_vport *vport = ndlp->vport;
2470 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05002471 IOCB_t *irsp;
2472 struct lpfc_sli *psli;
James Smart92494142011-02-16 12:39:44 -05002473 struct lpfcMboxq *mbox;
James Smart086a3452012-08-14 14:25:21 -04002474 unsigned long flags;
2475 uint32_t skip_recovery = 0;
dea31012005-04-17 16:05:31 -05002476
2477 psli = &phba->sli;
2478 /* we pass cmdiocb to state machine which needs rspiocb as well */
2479 cmdiocb->context_un.rsp_iocb = rspiocb;
2480
2481 irsp = &(rspiocb->iocb);
James Smart2e0fef82007-06-17 19:56:36 -05002482 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002483 ndlp->nlp_flag &= ~NLP_LOGO_SND;
James Smart2e0fef82007-06-17 19:56:36 -05002484 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002485
James Smart858c9f62007-06-17 19:56:39 -05002486 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2487 "LOGO cmpl: status:x%x/x%x did:x%x",
2488 irsp->ulpStatus, irsp->un.ulpWord[4],
2489 ndlp->nlp_DID);
James Smart086a3452012-08-14 14:25:21 -04002490
dea31012005-04-17 16:05:31 -05002491 /* LOGO completes to NPort <nlp_DID> */
James Smarte8b62012007-08-02 11:10:09 -04002492 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
2493 "0105 LOGO completes to NPort x%x "
2494 "Data: x%x x%x x%x x%x\n",
2495 ndlp->nlp_DID, irsp->ulpStatus, irsp->un.ulpWord[4],
2496 irsp->ulpTimeout, vport->num_disc_nodes);
dea31012005-04-17 16:05:31 -05002497
James Smart086a3452012-08-14 14:25:21 -04002498 if (lpfc_els_chk_latt(vport)) {
2499 skip_recovery = 1;
2500 goto out;
2501 }
2502
2503 /* Check to see if link went down during discovery */
James Smart92d7f7b2007-06-17 19:56:38 -05002504 if (ndlp->nlp_flag & NLP_TARGET_REMOVE) {
2505 /* NLP_EVT_DEVICE_RM should unregister the RPI
2506 * which should abort all outstanding IOs.
2507 */
2508 lpfc_disc_state_machine(vport, ndlp, cmdiocb,
2509 NLP_EVT_DEVICE_RM);
James Smart086a3452012-08-14 14:25:21 -04002510 skip_recovery = 1;
James Smart92d7f7b2007-06-17 19:56:38 -05002511 goto out;
2512 }
2513
dea31012005-04-17 16:05:31 -05002514 if (irsp->ulpStatus) {
2515 /* Check for retry */
James Smart086a3452012-08-14 14:25:21 -04002516 if (lpfc_els_retry(phba, cmdiocb, rspiocb)) {
dea31012005-04-17 16:05:31 -05002517 /* ELS command is being retried */
James Smart086a3452012-08-14 14:25:21 -04002518 skip_recovery = 1;
dea31012005-04-17 16:05:31 -05002519 goto out;
James Smart086a3452012-08-14 14:25:21 -04002520 }
dea31012005-04-17 16:05:31 -05002521 /* LOGO failed */
James Smarte40a02c2010-02-26 14:13:54 -05002522 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
2523 "2756 LOGO failure DID:%06X Status:x%x/x%x\n",
2524 ndlp->nlp_DID, irsp->ulpStatus,
2525 irsp->un.ulpWord[4]);
dea31012005-04-17 16:05:31 -05002526 /* Do not call DSM for lpfc_els_abort'ed ELS cmds */
James Smart086a3452012-08-14 14:25:21 -04002527 if (lpfc_error_lost_link(irsp)) {
2528 skip_recovery = 1;
dea31012005-04-17 16:05:31 -05002529 goto out;
James Smart086a3452012-08-14 14:25:21 -04002530 }
2531 }
2532
2533 /* Call state machine. This will unregister the rpi if needed. */
2534 lpfc_disc_state_machine(vport, ndlp, cmdiocb, NLP_EVT_CMPL_LOGO);
2535
dea31012005-04-17 16:05:31 -05002536out:
2537 lpfc_els_free_iocb(phba, cmdiocb);
James Smart92494142011-02-16 12:39:44 -05002538 /* If we are in pt2pt mode, we could rcv new S_ID on PLOGI */
2539 if ((vport->fc_flag & FC_PT2PT) &&
2540 !(vport->fc_flag & FC_PT2PT_PLOGI)) {
2541 phba->pport->fc_myDID = 0;
2542 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
2543 if (mbox) {
2544 lpfc_config_link(phba, mbox);
2545 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
2546 mbox->vport = vport;
2547 if (lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT) ==
2548 MBX_NOT_FINISHED) {
2549 mempool_free(mbox, phba->mbox_mem_pool);
James Smart086a3452012-08-14 14:25:21 -04002550 skip_recovery = 1;
James Smart92494142011-02-16 12:39:44 -05002551 }
2552 }
2553 }
James Smart086a3452012-08-14 14:25:21 -04002554
2555 /*
2556 * If the node is a target, the handling attempts to recover the port.
2557 * For any other port type, the rpi is unregistered as an implicit
2558 * LOGO.
2559 */
2560 if ((ndlp->nlp_type & NLP_FCP_TARGET) && (skip_recovery == 0)) {
2561 lpfc_cancel_retry_delay_tmo(vport, ndlp);
2562 spin_lock_irqsave(shost->host_lock, flags);
2563 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
2564 spin_unlock_irqrestore(shost->host_lock, flags);
2565
2566 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
2567 "3187 LOGO completes to NPort x%x: Start "
2568 "Recovery Data: x%x x%x x%x x%x\n",
2569 ndlp->nlp_DID, irsp->ulpStatus,
2570 irsp->un.ulpWord[4], irsp->ulpTimeout,
2571 vport->num_disc_nodes);
2572 lpfc_disc_start(vport);
2573 }
dea31012005-04-17 16:05:31 -05002574 return;
2575}
2576
James Smarte59058c2008-08-24 21:49:00 -04002577/**
James Smart3621a712009-04-06 18:47:14 -04002578 * lpfc_issue_els_logo - Issue a logo to an node on a vport
James Smarte59058c2008-08-24 21:49:00 -04002579 * @vport: pointer to a virtual N_Port data structure.
2580 * @ndlp: pointer to a node-list data structure.
2581 * @retry: number of retries to the command IOCB.
2582 *
2583 * This routine constructs and issues an ELS Logout (LOGO) iocb command
2584 * to a remote node, referred by an @ndlp on a @vport. It constructs the
2585 * payload of the IOCB, properly sets up the @ndlp state, and invokes the
2586 * lpfc_sli_issue_iocb() routine to send out the LOGO ELS command.
2587 *
2588 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
2589 * will be incremented by 1 for holding the ndlp and the reference to ndlp
2590 * will be stored into the context1 field of the IOCB for the completion
2591 * callback function to the LOGO ELS command.
2592 *
2593 * Return code
2594 * 0 - successfully issued logo
2595 * 1 - failed to issue logo
2596 **/
dea31012005-04-17 16:05:31 -05002597int
James Smart2e0fef82007-06-17 19:56:36 -05002598lpfc_issue_els_logo(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
dea31012005-04-17 16:05:31 -05002599 uint8_t retry)
2600{
James Smart2e0fef82007-06-17 19:56:36 -05002601 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2602 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05002603 IOCB_t *icmd;
2604 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05002605 uint8_t *pcmd;
2606 uint16_t cmdsize;
James Smart92d7f7b2007-06-17 19:56:38 -05002607 int rc;
dea31012005-04-17 16:05:31 -05002608
James Smart98c9ea52007-10-27 13:37:33 -04002609 spin_lock_irq(shost->host_lock);
2610 if (ndlp->nlp_flag & NLP_LOGO_SND) {
2611 spin_unlock_irq(shost->host_lock);
2612 return 0;
2613 }
2614 spin_unlock_irq(shost->host_lock);
2615
James Smart92d7f7b2007-06-17 19:56:38 -05002616 cmdsize = (2 * sizeof(uint32_t)) + sizeof(struct lpfc_name);
James Smart2e0fef82007-06-17 19:56:36 -05002617 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
2618 ndlp->nlp_DID, ELS_CMD_LOGO);
James Smart488d1462006-03-07 15:02:37 -05002619 if (!elsiocb)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002620 return 1;
dea31012005-04-17 16:05:31 -05002621
2622 icmd = &elsiocb->iocb;
2623 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
2624 *((uint32_t *) (pcmd)) = ELS_CMD_LOGO;
James Smart92d7f7b2007-06-17 19:56:38 -05002625 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05002626
2627 /* Fill in LOGO payload */
James Smart2e0fef82007-06-17 19:56:36 -05002628 *((uint32_t *) (pcmd)) = be32_to_cpu(vport->fc_myDID);
James Smart92d7f7b2007-06-17 19:56:38 -05002629 pcmd += sizeof(uint32_t);
2630 memcpy(pcmd, &vport->fc_portname, sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -05002631
James Smart858c9f62007-06-17 19:56:39 -05002632 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2633 "Issue LOGO: did:x%x",
2634 ndlp->nlp_DID, 0, 0);
2635
James Smart086a3452012-08-14 14:25:21 -04002636 /*
2637 * If we are issuing a LOGO, we may try to recover the remote NPort
2638 * by issuing a PLOGI later. Even though we issue ELS cmds by the
2639 * VPI, if we have a valid RPI, and that RPI gets unreg'ed while
2640 * that ELS command is in-flight, the HBA returns a IOERR_INVALID_RPI
2641 * for that ELS cmd. To avoid this situation, lets get rid of the
2642 * RPI right now, before any ELS cmds are sent.
2643 */
2644 spin_lock_irq(shost->host_lock);
2645 ndlp->nlp_flag |= NLP_ISSUE_LOGO;
2646 spin_unlock_irq(shost->host_lock);
2647 if (lpfc_unreg_rpi(vport, ndlp)) {
2648 lpfc_els_free_iocb(phba, elsiocb);
2649 return 0;
2650 }
2651
dea31012005-04-17 16:05:31 -05002652 phba->fc_stat.elsXmitLOGO++;
2653 elsiocb->iocb_cmpl = lpfc_cmpl_els_logo;
James Smart2e0fef82007-06-17 19:56:36 -05002654 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002655 ndlp->nlp_flag |= NLP_LOGO_SND;
James Smart086a3452012-08-14 14:25:21 -04002656 ndlp->nlp_flag &= ~NLP_ISSUE_LOGO;
James Smart2e0fef82007-06-17 19:56:36 -05002657 spin_unlock_irq(shost->host_lock);
James Smart3772a992009-05-22 14:50:54 -04002658 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
James Smart92d7f7b2007-06-17 19:56:38 -05002659
2660 if (rc == IOCB_ERROR) {
James Smart2e0fef82007-06-17 19:56:36 -05002661 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002662 ndlp->nlp_flag &= ~NLP_LOGO_SND;
James Smart2e0fef82007-06-17 19:56:36 -05002663 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002664 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002665 return 1;
dea31012005-04-17 16:05:31 -05002666 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002667 return 0;
dea31012005-04-17 16:05:31 -05002668}
2669
James Smarte59058c2008-08-24 21:49:00 -04002670/**
James Smart3621a712009-04-06 18:47:14 -04002671 * lpfc_cmpl_els_cmd - Completion callback function for generic els command
James Smarte59058c2008-08-24 21:49:00 -04002672 * @phba: pointer to lpfc hba data structure.
2673 * @cmdiocb: pointer to lpfc command iocb data structure.
2674 * @rspiocb: pointer to lpfc response iocb data structure.
2675 *
2676 * This routine is a generic completion callback function for ELS commands.
2677 * Specifically, it is the callback function which does not need to perform
2678 * any command specific operations. It is currently used by the ELS command
2679 * issuing routines for the ELS State Change Request (SCR),
2680 * lpfc_issue_els_scr(), and the ELS Fibre Channel Address Resolution
2681 * Protocol Response (FARPR) routine, lpfc_issue_els_farpr(). Other than
2682 * certain debug loggings, this callback function simply invokes the
2683 * lpfc_els_chk_latt() routine to check whether link went down during the
2684 * discovery process.
2685 **/
dea31012005-04-17 16:05:31 -05002686static void
James Smart2e0fef82007-06-17 19:56:36 -05002687lpfc_cmpl_els_cmd(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
2688 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05002689{
James Smart2e0fef82007-06-17 19:56:36 -05002690 struct lpfc_vport *vport = cmdiocb->vport;
dea31012005-04-17 16:05:31 -05002691 IOCB_t *irsp;
2692
2693 irsp = &rspiocb->iocb;
2694
James Smart858c9f62007-06-17 19:56:39 -05002695 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2696 "ELS cmd cmpl: status:x%x/x%x did:x%x",
2697 irsp->ulpStatus, irsp->un.ulpWord[4],
2698 irsp->un.elsreq64.remoteID);
dea31012005-04-17 16:05:31 -05002699 /* ELS cmd tag <ulpIoTag> completes */
James Smarte8b62012007-08-02 11:10:09 -04002700 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
2701 "0106 ELS cmd tag x%x completes Data: x%x x%x x%x\n",
2702 irsp->ulpIoTag, irsp->ulpStatus,
2703 irsp->un.ulpWord[4], irsp->ulpTimeout);
dea31012005-04-17 16:05:31 -05002704 /* Check to see if link went down during discovery */
James Smart2e0fef82007-06-17 19:56:36 -05002705 lpfc_els_chk_latt(vport);
dea31012005-04-17 16:05:31 -05002706 lpfc_els_free_iocb(phba, cmdiocb);
2707 return;
2708}
2709
James Smarte59058c2008-08-24 21:49:00 -04002710/**
James Smart3621a712009-04-06 18:47:14 -04002711 * lpfc_issue_els_scr - Issue a scr to an node on a vport
James Smarte59058c2008-08-24 21:49:00 -04002712 * @vport: pointer to a host virtual N_Port data structure.
2713 * @nportid: N_Port identifier to the remote node.
2714 * @retry: number of retries to the command IOCB.
2715 *
2716 * This routine issues a State Change Request (SCR) to a fabric node
2717 * on a @vport. The remote node @nportid is passed into the function. It
2718 * first search the @vport node list to find the matching ndlp. If no such
2719 * ndlp is found, a new ndlp shall be created for this (SCR) purpose. An
2720 * IOCB is allocated, payload prepared, and the lpfc_sli_issue_iocb()
2721 * routine is invoked to send the SCR IOCB.
2722 *
2723 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
2724 * will be incremented by 1 for holding the ndlp and the reference to ndlp
2725 * will be stored into the context1 field of the IOCB for the completion
2726 * callback function to the SCR ELS command.
2727 *
2728 * Return code
2729 * 0 - Successfully issued scr command
2730 * 1 - Failed to issue scr command
2731 **/
dea31012005-04-17 16:05:31 -05002732int
James Smart2e0fef82007-06-17 19:56:36 -05002733lpfc_issue_els_scr(struct lpfc_vport *vport, uint32_t nportid, uint8_t retry)
dea31012005-04-17 16:05:31 -05002734{
James Smart2e0fef82007-06-17 19:56:36 -05002735 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05002736 IOCB_t *icmd;
2737 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05002738 struct lpfc_sli *psli;
2739 uint8_t *pcmd;
2740 uint16_t cmdsize;
2741 struct lpfc_nodelist *ndlp;
2742
2743 psli = &phba->sli;
James Smart92d7f7b2007-06-17 19:56:38 -05002744 cmdsize = (sizeof(uint32_t) + sizeof(SCR));
dea31012005-04-17 16:05:31 -05002745
James Smarte47c9092008-02-08 18:49:26 -05002746 ndlp = lpfc_findnode_did(vport, nportid);
2747 if (!ndlp) {
2748 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
2749 if (!ndlp)
2750 return 1;
2751 lpfc_nlp_init(vport, ndlp, nportid);
2752 lpfc_enqueue_node(vport, ndlp);
2753 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
2754 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
2755 if (!ndlp)
2756 return 1;
2757 }
dea31012005-04-17 16:05:31 -05002758
James Smart2e0fef82007-06-17 19:56:36 -05002759 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
2760 ndlp->nlp_DID, ELS_CMD_SCR);
2761
James Smart488d1462006-03-07 15:02:37 -05002762 if (!elsiocb) {
James Smartfa4066b2008-01-11 01:53:27 -05002763 /* This will trigger the release of the node just
2764 * allocated
2765 */
James Smart329f9bc2007-04-25 09:53:01 -04002766 lpfc_nlp_put(ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002767 return 1;
dea31012005-04-17 16:05:31 -05002768 }
2769
2770 icmd = &elsiocb->iocb;
2771 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
2772
2773 *((uint32_t *) (pcmd)) = ELS_CMD_SCR;
James Smart92d7f7b2007-06-17 19:56:38 -05002774 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05002775
2776 /* For SCR, remainder of payload is SCR parameter page */
James Smart92d7f7b2007-06-17 19:56:38 -05002777 memset(pcmd, 0, sizeof(SCR));
dea31012005-04-17 16:05:31 -05002778 ((SCR *) pcmd)->Function = SCR_FUNC_FULL;
2779
James Smart858c9f62007-06-17 19:56:39 -05002780 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2781 "Issue SCR: did:x%x",
2782 ndlp->nlp_DID, 0, 0);
2783
dea31012005-04-17 16:05:31 -05002784 phba->fc_stat.elsXmitSCR++;
2785 elsiocb->iocb_cmpl = lpfc_cmpl_els_cmd;
James Smart3772a992009-05-22 14:50:54 -04002786 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) ==
2787 IOCB_ERROR) {
James Smartfa4066b2008-01-11 01:53:27 -05002788 /* The additional lpfc_nlp_put will cause the following
2789 * lpfc_els_free_iocb routine to trigger the rlease of
2790 * the node.
2791 */
James Smart329f9bc2007-04-25 09:53:01 -04002792 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05002793 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002794 return 1;
dea31012005-04-17 16:05:31 -05002795 }
James Smartfa4066b2008-01-11 01:53:27 -05002796 /* This will cause the callback-function lpfc_cmpl_els_cmd to
2797 * trigger the release of node.
2798 */
James Smartcff261f2013-12-17 20:29:47 -05002799
James Smart329f9bc2007-04-25 09:53:01 -04002800 lpfc_nlp_put(ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002801 return 0;
dea31012005-04-17 16:05:31 -05002802}
2803
James Smarte59058c2008-08-24 21:49:00 -04002804/**
James Smart3621a712009-04-06 18:47:14 -04002805 * lpfc_issue_els_farpr - Issue a farp to an node on a vport
James Smarte59058c2008-08-24 21:49:00 -04002806 * @vport: pointer to a host virtual N_Port data structure.
2807 * @nportid: N_Port identifier to the remote node.
2808 * @retry: number of retries to the command IOCB.
2809 *
2810 * This routine issues a Fibre Channel Address Resolution Response
2811 * (FARPR) to a node on a vport. The remote node N_Port identifier (@nportid)
2812 * is passed into the function. It first search the @vport node list to find
2813 * the matching ndlp. If no such ndlp is found, a new ndlp shall be created
2814 * for this (FARPR) purpose. An IOCB is allocated, payload prepared, and the
2815 * lpfc_sli_issue_iocb() routine is invoked to send the FARPR ELS command.
2816 *
2817 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
2818 * will be incremented by 1 for holding the ndlp and the reference to ndlp
2819 * will be stored into the context1 field of the IOCB for the completion
2820 * callback function to the PARPR ELS command.
2821 *
2822 * Return code
2823 * 0 - Successfully issued farpr command
2824 * 1 - Failed to issue farpr command
2825 **/
dea31012005-04-17 16:05:31 -05002826static int
James Smart2e0fef82007-06-17 19:56:36 -05002827lpfc_issue_els_farpr(struct lpfc_vport *vport, uint32_t nportid, uint8_t retry)
dea31012005-04-17 16:05:31 -05002828{
James Smart2e0fef82007-06-17 19:56:36 -05002829 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05002830 IOCB_t *icmd;
2831 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05002832 struct lpfc_sli *psli;
2833 FARP *fp;
2834 uint8_t *pcmd;
2835 uint32_t *lp;
2836 uint16_t cmdsize;
2837 struct lpfc_nodelist *ondlp;
2838 struct lpfc_nodelist *ndlp;
2839
2840 psli = &phba->sli;
James Smart92d7f7b2007-06-17 19:56:38 -05002841 cmdsize = (sizeof(uint32_t) + sizeof(FARP));
dea31012005-04-17 16:05:31 -05002842
James Smarte47c9092008-02-08 18:49:26 -05002843 ndlp = lpfc_findnode_did(vport, nportid);
2844 if (!ndlp) {
2845 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
2846 if (!ndlp)
2847 return 1;
2848 lpfc_nlp_init(vport, ndlp, nportid);
2849 lpfc_enqueue_node(vport, ndlp);
2850 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
2851 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
2852 if (!ndlp)
2853 return 1;
2854 }
James Smart2e0fef82007-06-17 19:56:36 -05002855
2856 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
2857 ndlp->nlp_DID, ELS_CMD_RNID);
James Smart488d1462006-03-07 15:02:37 -05002858 if (!elsiocb) {
James Smartfa4066b2008-01-11 01:53:27 -05002859 /* This will trigger the release of the node just
2860 * allocated
2861 */
James Smart329f9bc2007-04-25 09:53:01 -04002862 lpfc_nlp_put(ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002863 return 1;
dea31012005-04-17 16:05:31 -05002864 }
2865
2866 icmd = &elsiocb->iocb;
2867 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
2868
2869 *((uint32_t *) (pcmd)) = ELS_CMD_FARPR;
James Smart92d7f7b2007-06-17 19:56:38 -05002870 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05002871
2872 /* Fill in FARPR payload */
2873 fp = (FARP *) (pcmd);
James Smart92d7f7b2007-06-17 19:56:38 -05002874 memset(fp, 0, sizeof(FARP));
dea31012005-04-17 16:05:31 -05002875 lp = (uint32_t *) pcmd;
2876 *lp++ = be32_to_cpu(nportid);
James Smart2e0fef82007-06-17 19:56:36 -05002877 *lp++ = be32_to_cpu(vport->fc_myDID);
dea31012005-04-17 16:05:31 -05002878 fp->Rflags = 0;
2879 fp->Mflags = (FARP_MATCH_PORT | FARP_MATCH_NODE);
2880
James Smart92d7f7b2007-06-17 19:56:38 -05002881 memcpy(&fp->RportName, &vport->fc_portname, sizeof(struct lpfc_name));
2882 memcpy(&fp->RnodeName, &vport->fc_nodename, sizeof(struct lpfc_name));
James Smart2e0fef82007-06-17 19:56:36 -05002883 ondlp = lpfc_findnode_did(vport, nportid);
James Smarte47c9092008-02-08 18:49:26 -05002884 if (ondlp && NLP_CHK_NODE_ACT(ondlp)) {
dea31012005-04-17 16:05:31 -05002885 memcpy(&fp->OportName, &ondlp->nlp_portname,
James Smart92d7f7b2007-06-17 19:56:38 -05002886 sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -05002887 memcpy(&fp->OnodeName, &ondlp->nlp_nodename,
James Smart92d7f7b2007-06-17 19:56:38 -05002888 sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -05002889 }
2890
James Smart858c9f62007-06-17 19:56:39 -05002891 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2892 "Issue FARPR: did:x%x",
2893 ndlp->nlp_DID, 0, 0);
2894
dea31012005-04-17 16:05:31 -05002895 phba->fc_stat.elsXmitFARPR++;
2896 elsiocb->iocb_cmpl = lpfc_cmpl_els_cmd;
James Smart3772a992009-05-22 14:50:54 -04002897 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) ==
2898 IOCB_ERROR) {
James Smartfa4066b2008-01-11 01:53:27 -05002899 /* The additional lpfc_nlp_put will cause the following
2900 * lpfc_els_free_iocb routine to trigger the release of
2901 * the node.
2902 */
James Smart329f9bc2007-04-25 09:53:01 -04002903 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05002904 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002905 return 1;
dea31012005-04-17 16:05:31 -05002906 }
James Smartfa4066b2008-01-11 01:53:27 -05002907 /* This will cause the callback-function lpfc_cmpl_els_cmd to
2908 * trigger the release of the node.
2909 */
James Smart329f9bc2007-04-25 09:53:01 -04002910 lpfc_nlp_put(ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002911 return 0;
dea31012005-04-17 16:05:31 -05002912}
2913
James Smarte59058c2008-08-24 21:49:00 -04002914/**
James Smart3621a712009-04-06 18:47:14 -04002915 * lpfc_cancel_retry_delay_tmo - Cancel the timer with delayed iocb-cmd retry
James Smarte59058c2008-08-24 21:49:00 -04002916 * @vport: pointer to a host virtual N_Port data structure.
2917 * @nlp: pointer to a node-list data structure.
2918 *
2919 * This routine cancels the timer with a delayed IOCB-command retry for
2920 * a @vport's @ndlp. It stops the timer for the delayed function retrial and
2921 * removes the ELS retry event if it presents. In addition, if the
2922 * NLP_NPR_2B_DISC bit is set in the @nlp's nlp_flag bitmap, ADISC IOCB
2923 * commands are sent for the @vport's nodes that require issuing discovery
2924 * ADISC.
2925 **/
dea31012005-04-17 16:05:31 -05002926void
James Smart2e0fef82007-06-17 19:56:36 -05002927lpfc_cancel_retry_delay_tmo(struct lpfc_vport *vport, struct lpfc_nodelist *nlp)
James Smartfdcebe22006-03-07 15:04:01 -05002928{
James Smart2e0fef82007-06-17 19:56:36 -05002929 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smarte47c9092008-02-08 18:49:26 -05002930 struct lpfc_work_evt *evtp;
James Smart2e0fef82007-06-17 19:56:36 -05002931
James Smart0d2b6b82008-06-14 22:52:47 -04002932 if (!(nlp->nlp_flag & NLP_DELAY_TMO))
2933 return;
James Smart2e0fef82007-06-17 19:56:36 -05002934 spin_lock_irq(shost->host_lock);
James Smartfdcebe22006-03-07 15:04:01 -05002935 nlp->nlp_flag &= ~NLP_DELAY_TMO;
James Smart2e0fef82007-06-17 19:56:36 -05002936 spin_unlock_irq(shost->host_lock);
James Smartfdcebe22006-03-07 15:04:01 -05002937 del_timer_sync(&nlp->nlp_delayfunc);
2938 nlp->nlp_last_elscmd = 0;
James Smarte47c9092008-02-08 18:49:26 -05002939 if (!list_empty(&nlp->els_retry_evt.evt_listp)) {
James Smartfdcebe22006-03-07 15:04:01 -05002940 list_del_init(&nlp->els_retry_evt.evt_listp);
James Smarte47c9092008-02-08 18:49:26 -05002941 /* Decrement nlp reference count held for the delayed retry */
2942 evtp = &nlp->els_retry_evt;
2943 lpfc_nlp_put((struct lpfc_nodelist *)evtp->evt_arg1);
2944 }
James Smartfdcebe22006-03-07 15:04:01 -05002945 if (nlp->nlp_flag & NLP_NPR_2B_DISC) {
James Smart2e0fef82007-06-17 19:56:36 -05002946 spin_lock_irq(shost->host_lock);
James Smartfdcebe22006-03-07 15:04:01 -05002947 nlp->nlp_flag &= ~NLP_NPR_2B_DISC;
James Smart2e0fef82007-06-17 19:56:36 -05002948 spin_unlock_irq(shost->host_lock);
2949 if (vport->num_disc_nodes) {
James Smart0d2b6b82008-06-14 22:52:47 -04002950 if (vport->port_state < LPFC_VPORT_READY) {
2951 /* Check if there are more ADISCs to be sent */
2952 lpfc_more_adisc(vport);
James Smart0d2b6b82008-06-14 22:52:47 -04002953 } else {
2954 /* Check if there are more PLOGIs to be sent */
2955 lpfc_more_plogi(vport);
James Smart90160e02008-08-24 21:49:45 -04002956 if (vport->num_disc_nodes == 0) {
2957 spin_lock_irq(shost->host_lock);
2958 vport->fc_flag &= ~FC_NDISC_ACTIVE;
2959 spin_unlock_irq(shost->host_lock);
2960 lpfc_can_disctmo(vport);
2961 lpfc_end_rscn(vport);
2962 }
James Smartfdcebe22006-03-07 15:04:01 -05002963 }
2964 }
2965 }
2966 return;
2967}
2968
James Smarte59058c2008-08-24 21:49:00 -04002969/**
James Smart3621a712009-04-06 18:47:14 -04002970 * lpfc_els_retry_delay - Timer function with a ndlp delayed function timer
James Smarte59058c2008-08-24 21:49:00 -04002971 * @ptr: holder for the pointer to the timer function associated data (ndlp).
2972 *
2973 * This routine is invoked by the ndlp delayed-function timer to check
2974 * whether there is any pending ELS retry event(s) with the node. If not, it
2975 * simply returns. Otherwise, if there is at least one ELS delayed event, it
2976 * adds the delayed events to the HBA work list and invokes the
2977 * lpfc_worker_wake_up() routine to wake up worker thread to process the
2978 * event. Note that lpfc_nlp_get() is called before posting the event to
2979 * the work list to hold reference count of ndlp so that it guarantees the
2980 * reference to ndlp will still be available when the worker thread gets
2981 * to the event associated with the ndlp.
2982 **/
James Smartfdcebe22006-03-07 15:04:01 -05002983void
dea31012005-04-17 16:05:31 -05002984lpfc_els_retry_delay(unsigned long ptr)
2985{
James Smart2e0fef82007-06-17 19:56:36 -05002986 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) ptr;
2987 struct lpfc_vport *vport = ndlp->vport;
James Smart2e0fef82007-06-17 19:56:36 -05002988 struct lpfc_hba *phba = vport->phba;
James Smart92d7f7b2007-06-17 19:56:38 -05002989 unsigned long flags;
James Smart2e0fef82007-06-17 19:56:36 -05002990 struct lpfc_work_evt *evtp = &ndlp->els_retry_evt;
dea31012005-04-17 16:05:31 -05002991
James Smart92d7f7b2007-06-17 19:56:38 -05002992 spin_lock_irqsave(&phba->hbalock, flags);
dea31012005-04-17 16:05:31 -05002993 if (!list_empty(&evtp->evt_listp)) {
James Smart92d7f7b2007-06-17 19:56:38 -05002994 spin_unlock_irqrestore(&phba->hbalock, flags);
dea31012005-04-17 16:05:31 -05002995 return;
2996 }
2997
James Smartfa4066b2008-01-11 01:53:27 -05002998 /* We need to hold the node by incrementing the reference
2999 * count until the queued work is done
3000 */
3001 evtp->evt_arg1 = lpfc_nlp_get(ndlp);
James Smart5e9d9b82008-06-14 22:52:53 -04003002 if (evtp->evt_arg1) {
3003 evtp->evt = LPFC_EVT_ELS_RETRY;
3004 list_add_tail(&evtp->evt_listp, &phba->work_list);
James Smart92d7f7b2007-06-17 19:56:38 -05003005 lpfc_worker_wake_up(phba);
James Smart5e9d9b82008-06-14 22:52:53 -04003006 }
James Smart92d7f7b2007-06-17 19:56:38 -05003007 spin_unlock_irqrestore(&phba->hbalock, flags);
dea31012005-04-17 16:05:31 -05003008 return;
3009}
3010
James Smarte59058c2008-08-24 21:49:00 -04003011/**
James Smart3621a712009-04-06 18:47:14 -04003012 * lpfc_els_retry_delay_handler - Work thread handler for ndlp delayed function
James Smarte59058c2008-08-24 21:49:00 -04003013 * @ndlp: pointer to a node-list data structure.
3014 *
3015 * This routine is the worker-thread handler for processing the @ndlp delayed
3016 * event(s), posted by the lpfc_els_retry_delay() routine. It simply retrieves
3017 * the last ELS command from the associated ndlp and invokes the proper ELS
3018 * function according to the delayed ELS command to retry the command.
3019 **/
dea31012005-04-17 16:05:31 -05003020void
3021lpfc_els_retry_delay_handler(struct lpfc_nodelist *ndlp)
3022{
James Smart2e0fef82007-06-17 19:56:36 -05003023 struct lpfc_vport *vport = ndlp->vport;
3024 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smarteb016562014-09-03 12:58:06 -04003025 uint32_t cmd, retry;
dea31012005-04-17 16:05:31 -05003026
James Smart2e0fef82007-06-17 19:56:36 -05003027 spin_lock_irq(shost->host_lock);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003028 cmd = ndlp->nlp_last_elscmd;
3029 ndlp->nlp_last_elscmd = 0;
dea31012005-04-17 16:05:31 -05003030
3031 if (!(ndlp->nlp_flag & NLP_DELAY_TMO)) {
James Smart2e0fef82007-06-17 19:56:36 -05003032 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05003033 return;
3034 }
3035
3036 ndlp->nlp_flag &= ~NLP_DELAY_TMO;
James Smart2e0fef82007-06-17 19:56:36 -05003037 spin_unlock_irq(shost->host_lock);
James Smart1a169682006-03-07 15:04:06 -05003038 /*
3039 * If a discovery event readded nlp_delayfunc after timer
3040 * firing and before processing the timer, cancel the
3041 * nlp_delayfunc.
3042 */
3043 del_timer_sync(&ndlp->nlp_delayfunc);
dea31012005-04-17 16:05:31 -05003044 retry = ndlp->nlp_retry;
James Smart4d9ab992009-10-02 15:16:39 -04003045 ndlp->nlp_retry = 0;
dea31012005-04-17 16:05:31 -05003046
3047 switch (cmd) {
3048 case ELS_CMD_FLOGI:
James Smart2e0fef82007-06-17 19:56:36 -05003049 lpfc_issue_els_flogi(vport, ndlp, retry);
dea31012005-04-17 16:05:31 -05003050 break;
3051 case ELS_CMD_PLOGI:
James Smart2e0fef82007-06-17 19:56:36 -05003052 if (!lpfc_issue_els_plogi(vport, ndlp->nlp_DID, retry)) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003053 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05003054 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
Jamie Wellnitz6ad42532006-02-28 19:25:16 -05003055 }
dea31012005-04-17 16:05:31 -05003056 break;
3057 case ELS_CMD_ADISC:
James Smart2e0fef82007-06-17 19:56:36 -05003058 if (!lpfc_issue_els_adisc(vport, ndlp, retry)) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003059 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05003060 lpfc_nlp_set_state(vport, ndlp, NLP_STE_ADISC_ISSUE);
Jamie Wellnitz6ad42532006-02-28 19:25:16 -05003061 }
dea31012005-04-17 16:05:31 -05003062 break;
3063 case ELS_CMD_PRLI:
James Smart2e0fef82007-06-17 19:56:36 -05003064 if (!lpfc_issue_els_prli(vport, ndlp, retry)) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003065 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05003066 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PRLI_ISSUE);
Jamie Wellnitz6ad42532006-02-28 19:25:16 -05003067 }
dea31012005-04-17 16:05:31 -05003068 break;
3069 case ELS_CMD_LOGO:
James Smart2e0fef82007-06-17 19:56:36 -05003070 if (!lpfc_issue_els_logo(vport, ndlp, retry)) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003071 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart086a3452012-08-14 14:25:21 -04003072 lpfc_nlp_set_state(vport, ndlp, NLP_STE_LOGO_ISSUE);
Jamie Wellnitz6ad42532006-02-28 19:25:16 -05003073 }
dea31012005-04-17 16:05:31 -05003074 break;
James Smart92d7f7b2007-06-17 19:56:38 -05003075 case ELS_CMD_FDISC:
James Smartfedd3b72011-02-16 12:39:24 -05003076 if (!(vport->fc_flag & FC_VPORT_NEEDS_INIT_VPI))
3077 lpfc_issue_els_fdisc(vport, ndlp, retry);
James Smart92d7f7b2007-06-17 19:56:38 -05003078 break;
dea31012005-04-17 16:05:31 -05003079 }
3080 return;
3081}
3082
James Smarte59058c2008-08-24 21:49:00 -04003083/**
James Smart3621a712009-04-06 18:47:14 -04003084 * lpfc_els_retry - Make retry decision on an els command iocb
James Smarte59058c2008-08-24 21:49:00 -04003085 * @phba: pointer to lpfc hba data structure.
3086 * @cmdiocb: pointer to lpfc command iocb data structure.
3087 * @rspiocb: pointer to lpfc response iocb data structure.
3088 *
3089 * This routine makes a retry decision on an ELS command IOCB, which has
3090 * failed. The following ELS IOCBs use this function for retrying the command
3091 * when previously issued command responsed with error status: FLOGI, PLOGI,
3092 * PRLI, ADISC, LOGO, and FDISC. Based on the ELS command type and the
3093 * returned error status, it makes the decision whether a retry shall be
3094 * issued for the command, and whether a retry shall be made immediately or
3095 * delayed. In the former case, the corresponding ELS command issuing-function
3096 * is called to retry the command. In the later case, the ELS command shall
3097 * be posted to the ndlp delayed event and delayed function timer set to the
3098 * ndlp for the delayed command issusing.
3099 *
3100 * Return code
3101 * 0 - No retry of els command is made
3102 * 1 - Immediate or delayed retry of els command is made
3103 **/
dea31012005-04-17 16:05:31 -05003104static int
James Smart2e0fef82007-06-17 19:56:36 -05003105lpfc_els_retry(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
3106 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05003107{
James Smart2e0fef82007-06-17 19:56:36 -05003108 struct lpfc_vport *vport = cmdiocb->vport;
3109 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
3110 IOCB_t *irsp = &rspiocb->iocb;
3111 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
3112 struct lpfc_dmabuf *pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
dea31012005-04-17 16:05:31 -05003113 uint32_t *elscmd;
3114 struct ls_rjt stat;
James Smart2e0fef82007-06-17 19:56:36 -05003115 int retry = 0, maxretry = lpfc_max_els_tries, delay = 0;
James Smart98c9ea52007-10-27 13:37:33 -04003116 int logerr = 0;
James Smart2e0fef82007-06-17 19:56:36 -05003117 uint32_t cmd = 0;
James Smart488d1462006-03-07 15:02:37 -05003118 uint32_t did;
dea31012005-04-17 16:05:31 -05003119
James Smart488d1462006-03-07 15:02:37 -05003120
dea31012005-04-17 16:05:31 -05003121 /* Note: context2 may be 0 for internal driver abort
3122 * of delays ELS command.
3123 */
3124
3125 if (pcmd && pcmd->virt) {
3126 elscmd = (uint32_t *) (pcmd->virt);
3127 cmd = *elscmd++;
3128 }
3129
James Smarte47c9092008-02-08 18:49:26 -05003130 if (ndlp && NLP_CHK_NODE_ACT(ndlp))
James Smart488d1462006-03-07 15:02:37 -05003131 did = ndlp->nlp_DID;
3132 else {
3133 /* We should only hit this case for retrying PLOGI */
3134 did = irsp->un.elsreq64.remoteID;
James Smart2e0fef82007-06-17 19:56:36 -05003135 ndlp = lpfc_findnode_did(vport, did);
James Smarte47c9092008-02-08 18:49:26 -05003136 if ((!ndlp || !NLP_CHK_NODE_ACT(ndlp))
3137 && (cmd != ELS_CMD_PLOGI))
James Smart488d1462006-03-07 15:02:37 -05003138 return 1;
3139 }
3140
James Smart858c9f62007-06-17 19:56:39 -05003141 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
3142 "Retry ELS: wd7:x%x wd4:x%x did:x%x",
3143 *(((uint32_t *) irsp) + 7), irsp->un.ulpWord[4], ndlp->nlp_DID);
3144
dea31012005-04-17 16:05:31 -05003145 switch (irsp->ulpStatus) {
3146 case IOSTAT_FCP_RSP_ERROR:
dea31012005-04-17 16:05:31 -05003147 break;
James Smart1151e3e2011-02-16 12:39:35 -05003148 case IOSTAT_REMOTE_STOP:
3149 if (phba->sli_rev == LPFC_SLI_REV4) {
3150 /* This IO was aborted by the target, we don't
3151 * know the rxid and because we did not send the
3152 * ABTS we cannot generate and RRQ.
3153 */
3154 lpfc_set_rrq_active(phba, ndlp,
James Smartee0f4fe2012-05-09 21:19:14 -04003155 cmdiocb->sli4_lxritag, 0, 0);
James Smart1151e3e2011-02-16 12:39:35 -05003156 }
3157 break;
dea31012005-04-17 16:05:31 -05003158 case IOSTAT_LOCAL_REJECT:
James Smarte3d2b802012-08-14 14:25:43 -04003159 switch ((irsp->un.ulpWord[4] & IOERR_PARAM_MASK)) {
dea31012005-04-17 16:05:31 -05003160 case IOERR_LOOP_OPEN_FAILURE:
James Smarteaf15d52008-12-04 22:39:29 -05003161 if (cmd == ELS_CMD_FLOGI) {
3162 if (PCI_DEVICE_ID_HORNET ==
3163 phba->pcidev->device) {
James Smart76a95d72010-11-20 23:11:48 -05003164 phba->fc_topology = LPFC_TOPOLOGY_LOOP;
James Smarteaf15d52008-12-04 22:39:29 -05003165 phba->pport->fc_myDID = 0;
3166 phba->alpa_map[0] = 0;
3167 phba->alpa_map[1] = 0;
3168 }
3169 }
James Smart2e0fef82007-06-17 19:56:36 -05003170 if (cmd == ELS_CMD_PLOGI && cmdiocb->retry == 0)
James Smart92d7f7b2007-06-17 19:56:38 -05003171 delay = 1000;
dea31012005-04-17 16:05:31 -05003172 retry = 1;
3173 break;
3174
James Smart92d7f7b2007-06-17 19:56:38 -05003175 case IOERR_ILLEGAL_COMMAND:
James Smart7f5f3d02008-02-08 18:50:14 -05003176 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
3177 "0124 Retry illegal cmd x%x "
3178 "retry:x%x delay:x%x\n",
3179 cmd, cmdiocb->retry, delay);
3180 retry = 1;
3181 /* All command's retry policy */
3182 maxretry = 8;
3183 if (cmdiocb->retry > 2)
3184 delay = 1000;
James Smart92d7f7b2007-06-17 19:56:38 -05003185 break;
3186
dea31012005-04-17 16:05:31 -05003187 case IOERR_NO_RESOURCES:
James Smart98c9ea52007-10-27 13:37:33 -04003188 logerr = 1; /* HBA out of resources */
James Smart858c9f62007-06-17 19:56:39 -05003189 retry = 1;
3190 if (cmdiocb->retry > 100)
3191 delay = 100;
3192 maxretry = 250;
3193 break;
3194
3195 case IOERR_ILLEGAL_FRAME:
James Smart92d7f7b2007-06-17 19:56:38 -05003196 delay = 100;
dea31012005-04-17 16:05:31 -05003197 retry = 1;
3198 break;
3199
James Smart858c9f62007-06-17 19:56:39 -05003200 case IOERR_SEQUENCE_TIMEOUT:
dea31012005-04-17 16:05:31 -05003201 case IOERR_INVALID_RPI:
James Smart5b5b36a2013-01-03 15:43:19 -05003202 if (cmd == ELS_CMD_PLOGI &&
3203 did == NameServer_DID) {
3204 /* Continue forever if plogi to */
3205 /* the nameserver fails */
3206 maxretry = 0;
3207 delay = 100;
3208 }
dea31012005-04-17 16:05:31 -05003209 retry = 1;
3210 break;
3211 }
3212 break;
3213
3214 case IOSTAT_NPORT_RJT:
3215 case IOSTAT_FABRIC_RJT:
3216 if (irsp->un.ulpWord[4] & RJT_UNAVAIL_TEMP) {
3217 retry = 1;
3218 break;
3219 }
3220 break;
3221
3222 case IOSTAT_NPORT_BSY:
3223 case IOSTAT_FABRIC_BSY:
James Smart98c9ea52007-10-27 13:37:33 -04003224 logerr = 1; /* Fabric / Remote NPort out of resources */
dea31012005-04-17 16:05:31 -05003225 retry = 1;
3226 break;
3227
3228 case IOSTAT_LS_RJT:
3229 stat.un.lsRjtError = be32_to_cpu(irsp->un.ulpWord[4]);
3230 /* Added for Vendor specifc support
3231 * Just keep retrying for these Rsn / Exp codes
3232 */
3233 switch (stat.un.b.lsRjtRsnCode) {
3234 case LSRJT_UNABLE_TPC:
3235 if (stat.un.b.lsRjtRsnCodeExp ==
3236 LSEXP_CMD_IN_PROGRESS) {
3237 if (cmd == ELS_CMD_PLOGI) {
James Smart92d7f7b2007-06-17 19:56:38 -05003238 delay = 1000;
dea31012005-04-17 16:05:31 -05003239 maxretry = 48;
3240 }
3241 retry = 1;
3242 break;
3243 }
James Smartffc95492010-06-07 15:23:17 -04003244 if (stat.un.b.lsRjtRsnCodeExp ==
3245 LSEXP_CANT_GIVE_DATA) {
3246 if (cmd == ELS_CMD_PLOGI) {
3247 delay = 1000;
3248 maxretry = 48;
3249 }
3250 retry = 1;
3251 break;
3252 }
James Smart4c1b64b2012-09-29 11:31:11 -04003253 if ((cmd == ELS_CMD_PLOGI) ||
3254 (cmd == ELS_CMD_PRLI)) {
James Smart92d7f7b2007-06-17 19:56:38 -05003255 delay = 1000;
dea31012005-04-17 16:05:31 -05003256 maxretry = lpfc_max_els_tries + 1;
3257 retry = 1;
3258 break;
3259 }
James Smart92d7f7b2007-06-17 19:56:38 -05003260 if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
3261 (cmd == ELS_CMD_FDISC) &&
3262 (stat.un.b.lsRjtRsnCodeExp == LSEXP_OUT_OF_RESOURCE)){
James Smarte8b62012007-08-02 11:10:09 -04003263 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
3264 "0125 FDISC Failed (x%x). "
3265 "Fabric out of resources\n",
3266 stat.un.lsRjtError);
James Smart92d7f7b2007-06-17 19:56:38 -05003267 lpfc_vport_set_state(vport,
3268 FC_VPORT_NO_FABRIC_RSCS);
3269 }
dea31012005-04-17 16:05:31 -05003270 break;
3271
3272 case LSRJT_LOGICAL_BSY:
James Smart858c9f62007-06-17 19:56:39 -05003273 if ((cmd == ELS_CMD_PLOGI) ||
3274 (cmd == ELS_CMD_PRLI)) {
James Smart92d7f7b2007-06-17 19:56:38 -05003275 delay = 1000;
dea31012005-04-17 16:05:31 -05003276 maxretry = 48;
James Smart92d7f7b2007-06-17 19:56:38 -05003277 } else if (cmd == ELS_CMD_FDISC) {
James Smart51ef4c22007-08-02 11:10:31 -04003278 /* FDISC retry policy */
3279 maxretry = 48;
3280 if (cmdiocb->retry >= 32)
3281 delay = 1000;
dea31012005-04-17 16:05:31 -05003282 }
3283 retry = 1;
3284 break;
James Smart92d7f7b2007-06-17 19:56:38 -05003285
3286 case LSRJT_LOGICAL_ERR:
James Smart7f5f3d02008-02-08 18:50:14 -05003287 /* There are some cases where switches return this
3288 * error when they are not ready and should be returning
3289 * Logical Busy. We should delay every time.
3290 */
3291 if (cmd == ELS_CMD_FDISC &&
3292 stat.un.b.lsRjtRsnCodeExp == LSEXP_PORT_LOGIN_REQ) {
3293 maxretry = 3;
3294 delay = 1000;
3295 retry = 1;
3296 break;
3297 }
James Smart92d7f7b2007-06-17 19:56:38 -05003298 case LSRJT_PROTOCOL_ERR:
3299 if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
3300 (cmd == ELS_CMD_FDISC) &&
3301 ((stat.un.b.lsRjtRsnCodeExp == LSEXP_INVALID_PNAME) ||
3302 (stat.un.b.lsRjtRsnCodeExp == LSEXP_INVALID_NPORT_ID))
3303 ) {
James Smarte8b62012007-08-02 11:10:09 -04003304 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
James Smartd7c255b2008-08-24 21:50:00 -04003305 "0122 FDISC Failed (x%x). "
James Smarte8b62012007-08-02 11:10:09 -04003306 "Fabric Detected Bad WWN\n",
3307 stat.un.lsRjtError);
James Smart92d7f7b2007-06-17 19:56:38 -05003308 lpfc_vport_set_state(vport,
3309 FC_VPORT_FABRIC_REJ_WWN);
3310 }
3311 break;
dea31012005-04-17 16:05:31 -05003312 }
3313 break;
3314
3315 case IOSTAT_INTERMED_RSP:
3316 case IOSTAT_BA_RJT:
3317 break;
3318
3319 default:
3320 break;
3321 }
3322
James Smart488d1462006-03-07 15:02:37 -05003323 if (did == FDMI_DID)
dea31012005-04-17 16:05:31 -05003324 retry = 1;
dea31012005-04-17 16:05:31 -05003325
James Smartdf9e1b52011-12-13 13:22:17 -05003326 if ((cmd == ELS_CMD_FLOGI) &&
James Smart76a95d72010-11-20 23:11:48 -05003327 (phba->fc_topology != LPFC_TOPOLOGY_LOOP) &&
James Smart1b32f6a2008-02-08 18:49:39 -05003328 !lpfc_error_lost_link(irsp)) {
James Smart98c9ea52007-10-27 13:37:33 -04003329 /* FLOGI retry policy */
3330 retry = 1;
James Smartdf9e1b52011-12-13 13:22:17 -05003331 /* retry FLOGI forever */
James Smart6669f9b2009-10-02 15:16:45 -04003332 maxretry = 0;
3333 if (cmdiocb->retry >= 100)
3334 delay = 5000;
3335 else if (cmdiocb->retry >= 32)
James Smart98c9ea52007-10-27 13:37:33 -04003336 delay = 1000;
James Smartdf9e1b52011-12-13 13:22:17 -05003337 } else if ((cmd == ELS_CMD_FDISC) && !lpfc_error_lost_link(irsp)) {
3338 /* retry FDISCs every second up to devloss */
3339 retry = 1;
3340 maxretry = vport->cfg_devloss_tmo;
3341 delay = 1000;
James Smart98c9ea52007-10-27 13:37:33 -04003342 }
3343
James Smart6669f9b2009-10-02 15:16:45 -04003344 cmdiocb->retry++;
3345 if (maxretry && (cmdiocb->retry >= maxretry)) {
dea31012005-04-17 16:05:31 -05003346 phba->fc_stat.elsRetryExceeded++;
3347 retry = 0;
3348 }
3349
James Smarted957682007-06-17 19:56:37 -05003350 if ((vport->load_flag & FC_UNLOADING) != 0)
3351 retry = 0;
3352
dea31012005-04-17 16:05:31 -05003353 if (retry) {
James Smart38b92ef2010-08-04 16:11:39 -04003354 if ((cmd == ELS_CMD_PLOGI) || (cmd == ELS_CMD_FDISC)) {
3355 /* Stop retrying PLOGI and FDISC if in FCF discovery */
3356 if (phba->fcf.fcf_flag & FCF_DISCOVERY) {
3357 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
3358 "2849 Stop retry ELS command "
3359 "x%x to remote NPORT x%x, "
3360 "Data: x%x x%x\n", cmd, did,
3361 cmdiocb->retry, delay);
3362 return 0;
3363 }
3364 }
dea31012005-04-17 16:05:31 -05003365
3366 /* Retry ELS command <elsCmd> to remote NPORT <did> */
James Smarte8b62012007-08-02 11:10:09 -04003367 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
3368 "0107 Retry ELS command x%x to remote "
3369 "NPORT x%x Data: x%x x%x\n",
3370 cmd, did, cmdiocb->retry, delay);
dea31012005-04-17 16:05:31 -05003371
James Smart858c9f62007-06-17 19:56:39 -05003372 if (((cmd == ELS_CMD_PLOGI) || (cmd == ELS_CMD_ADISC)) &&
3373 ((irsp->ulpStatus != IOSTAT_LOCAL_REJECT) ||
James Smarte3d2b802012-08-14 14:25:43 -04003374 ((irsp->un.ulpWord[4] & IOERR_PARAM_MASK) !=
3375 IOERR_NO_RESOURCES))) {
James Smart858c9f62007-06-17 19:56:39 -05003376 /* Don't reset timer for no resources */
3377
dea31012005-04-17 16:05:31 -05003378 /* If discovery / RSCN timer is running, reset it */
James Smart2e0fef82007-06-17 19:56:36 -05003379 if (timer_pending(&vport->fc_disctmo) ||
James Smart92d7f7b2007-06-17 19:56:38 -05003380 (vport->fc_flag & FC_RSCN_MODE))
James Smart2e0fef82007-06-17 19:56:36 -05003381 lpfc_set_disctmo(vport);
dea31012005-04-17 16:05:31 -05003382 }
3383
3384 phba->fc_stat.elsXmitRetry++;
James Smart58da1ff2008-04-07 10:15:56 -04003385 if (ndlp && NLP_CHK_NODE_ACT(ndlp) && delay) {
dea31012005-04-17 16:05:31 -05003386 phba->fc_stat.elsDelayRetry++;
3387 ndlp->nlp_retry = cmdiocb->retry;
3388
James Smart92d7f7b2007-06-17 19:56:38 -05003389 /* delay is specified in milliseconds */
3390 mod_timer(&ndlp->nlp_delayfunc,
3391 jiffies + msecs_to_jiffies(delay));
James Smart2e0fef82007-06-17 19:56:36 -05003392 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05003393 ndlp->nlp_flag |= NLP_DELAY_TMO;
James Smart2e0fef82007-06-17 19:56:36 -05003394 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05003395
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003396 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart858c9f62007-06-17 19:56:39 -05003397 if (cmd == ELS_CMD_PRLI)
3398 lpfc_nlp_set_state(vport, ndlp,
James Smart4c1b64b2012-09-29 11:31:11 -04003399 NLP_STE_PRLI_ISSUE);
James Smart858c9f62007-06-17 19:56:39 -05003400 else
3401 lpfc_nlp_set_state(vport, ndlp,
3402 NLP_STE_NPR_NODE);
dea31012005-04-17 16:05:31 -05003403 ndlp->nlp_last_elscmd = cmd;
3404
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003405 return 1;
dea31012005-04-17 16:05:31 -05003406 }
3407 switch (cmd) {
3408 case ELS_CMD_FLOGI:
James Smart2e0fef82007-06-17 19:56:36 -05003409 lpfc_issue_els_flogi(vport, ndlp, cmdiocb->retry);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003410 return 1;
James Smart92d7f7b2007-06-17 19:56:38 -05003411 case ELS_CMD_FDISC:
3412 lpfc_issue_els_fdisc(vport, ndlp, cmdiocb->retry);
3413 return 1;
dea31012005-04-17 16:05:31 -05003414 case ELS_CMD_PLOGI:
James Smart58da1ff2008-04-07 10:15:56 -04003415 if (ndlp && NLP_CHK_NODE_ACT(ndlp)) {
James Smart488d1462006-03-07 15:02:37 -05003416 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05003417 lpfc_nlp_set_state(vport, ndlp,
James Smartde0c5b32007-04-25 09:52:27 -04003418 NLP_STE_PLOGI_ISSUE);
James Smart488d1462006-03-07 15:02:37 -05003419 }
James Smart2e0fef82007-06-17 19:56:36 -05003420 lpfc_issue_els_plogi(vport, did, cmdiocb->retry);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003421 return 1;
dea31012005-04-17 16:05:31 -05003422 case ELS_CMD_ADISC:
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003423 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05003424 lpfc_nlp_set_state(vport, ndlp, NLP_STE_ADISC_ISSUE);
3425 lpfc_issue_els_adisc(vport, ndlp, cmdiocb->retry);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003426 return 1;
dea31012005-04-17 16:05:31 -05003427 case ELS_CMD_PRLI:
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003428 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05003429 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PRLI_ISSUE);
3430 lpfc_issue_els_prli(vport, ndlp, cmdiocb->retry);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003431 return 1;
dea31012005-04-17 16:05:31 -05003432 case ELS_CMD_LOGO:
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003433 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart086a3452012-08-14 14:25:21 -04003434 lpfc_nlp_set_state(vport, ndlp, NLP_STE_LOGO_ISSUE);
James Smart2e0fef82007-06-17 19:56:36 -05003435 lpfc_issue_els_logo(vport, ndlp, cmdiocb->retry);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003436 return 1;
dea31012005-04-17 16:05:31 -05003437 }
3438 }
dea31012005-04-17 16:05:31 -05003439 /* No retry ELS command <elsCmd> to remote NPORT <did> */
James Smart98c9ea52007-10-27 13:37:33 -04003440 if (logerr) {
3441 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
3442 "0137 No retry ELS command x%x to remote "
3443 "NPORT x%x: Out of Resources: Error:x%x/%x\n",
3444 cmd, did, irsp->ulpStatus,
3445 irsp->un.ulpWord[4]);
3446 }
3447 else {
3448 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
James Smarta58cbd52007-08-02 11:09:43 -04003449 "0108 No retry ELS command x%x to remote "
3450 "NPORT x%x Retried:%d Error:x%x/%x\n",
3451 cmd, did, cmdiocb->retry, irsp->ulpStatus,
3452 irsp->un.ulpWord[4]);
James Smart98c9ea52007-10-27 13:37:33 -04003453 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003454 return 0;
dea31012005-04-17 16:05:31 -05003455}
3456
James Smarte59058c2008-08-24 21:49:00 -04003457/**
James Smart3621a712009-04-06 18:47:14 -04003458 * lpfc_els_free_data - Free lpfc dma buffer and data structure with an iocb
James Smarte59058c2008-08-24 21:49:00 -04003459 * @phba: pointer to lpfc hba data structure.
3460 * @buf_ptr1: pointer to the lpfc DMA buffer data structure.
3461 *
3462 * This routine releases the lpfc DMA (Direct Memory Access) buffer(s)
3463 * associated with a command IOCB back to the lpfc DMA buffer pool. It first
3464 * checks to see whether there is a lpfc DMA buffer associated with the
3465 * response of the command IOCB. If so, it will be released before releasing
3466 * the lpfc DMA buffer associated with the IOCB itself.
3467 *
3468 * Return code
3469 * 0 - Successfully released lpfc DMA buffer (currently, always return 0)
3470 **/
James Smart09372822008-01-11 01:52:54 -05003471static int
James Smart87af33f2007-10-27 13:37:43 -04003472lpfc_els_free_data(struct lpfc_hba *phba, struct lpfc_dmabuf *buf_ptr1)
3473{
3474 struct lpfc_dmabuf *buf_ptr;
3475
James Smarte59058c2008-08-24 21:49:00 -04003476 /* Free the response before processing the command. */
James Smart87af33f2007-10-27 13:37:43 -04003477 if (!list_empty(&buf_ptr1->list)) {
3478 list_remove_head(&buf_ptr1->list, buf_ptr,
3479 struct lpfc_dmabuf,
3480 list);
3481 lpfc_mbuf_free(phba, buf_ptr->virt, buf_ptr->phys);
3482 kfree(buf_ptr);
3483 }
3484 lpfc_mbuf_free(phba, buf_ptr1->virt, buf_ptr1->phys);
3485 kfree(buf_ptr1);
3486 return 0;
3487}
3488
James Smarte59058c2008-08-24 21:49:00 -04003489/**
James Smart3621a712009-04-06 18:47:14 -04003490 * lpfc_els_free_bpl - Free lpfc dma buffer and data structure with bpl
James Smarte59058c2008-08-24 21:49:00 -04003491 * @phba: pointer to lpfc hba data structure.
3492 * @buf_ptr: pointer to the lpfc dma buffer data structure.
3493 *
3494 * This routine releases the lpfc Direct Memory Access (DMA) buffer
3495 * associated with a Buffer Pointer List (BPL) back to the lpfc DMA buffer
3496 * pool.
3497 *
3498 * Return code
3499 * 0 - Successfully released lpfc DMA buffer (currently, always return 0)
3500 **/
James Smart09372822008-01-11 01:52:54 -05003501static int
James Smart87af33f2007-10-27 13:37:43 -04003502lpfc_els_free_bpl(struct lpfc_hba *phba, struct lpfc_dmabuf *buf_ptr)
3503{
3504 lpfc_mbuf_free(phba, buf_ptr->virt, buf_ptr->phys);
3505 kfree(buf_ptr);
3506 return 0;
3507}
3508
James Smarte59058c2008-08-24 21:49:00 -04003509/**
James Smart3621a712009-04-06 18:47:14 -04003510 * lpfc_els_free_iocb - Free a command iocb and its associated resources
James Smarte59058c2008-08-24 21:49:00 -04003511 * @phba: pointer to lpfc hba data structure.
3512 * @elsiocb: pointer to lpfc els command iocb data structure.
3513 *
3514 * This routine frees a command IOCB and its associated resources. The
3515 * command IOCB data structure contains the reference to various associated
3516 * resources, these fields must be set to NULL if the associated reference
3517 * not present:
3518 * context1 - reference to ndlp
3519 * context2 - reference to cmd
3520 * context2->next - reference to rsp
3521 * context3 - reference to bpl
3522 *
3523 * It first properly decrements the reference count held on ndlp for the
3524 * IOCB completion callback function. If LPFC_DELAY_MEM_FREE flag is not
3525 * set, it invokes the lpfc_els_free_data() routine to release the Direct
3526 * Memory Access (DMA) buffers associated with the IOCB. Otherwise, it
3527 * adds the DMA buffer the @phba data structure for the delayed release.
3528 * If reference to the Buffer Pointer List (BPL) is present, the
3529 * lpfc_els_free_bpl() routine is invoked to release the DMA memory
3530 * associated with BPL. Finally, the lpfc_sli_release_iocbq() routine is
3531 * invoked to release the IOCB data structure back to @phba IOCBQ list.
3532 *
3533 * Return code
3534 * 0 - Success (currently, always return 0)
3535 **/
James Smart87af33f2007-10-27 13:37:43 -04003536int
James Smart329f9bc2007-04-25 09:53:01 -04003537lpfc_els_free_iocb(struct lpfc_hba *phba, struct lpfc_iocbq *elsiocb)
dea31012005-04-17 16:05:31 -05003538{
3539 struct lpfc_dmabuf *buf_ptr, *buf_ptr1;
James Smarta8adb832007-10-27 13:37:53 -04003540 struct lpfc_nodelist *ndlp;
dea31012005-04-17 16:05:31 -05003541
James Smarta8adb832007-10-27 13:37:53 -04003542 ndlp = (struct lpfc_nodelist *)elsiocb->context1;
3543 if (ndlp) {
3544 if (ndlp->nlp_flag & NLP_DEFER_RM) {
3545 lpfc_nlp_put(ndlp);
3546
3547 /* If the ndlp is not being used by another discovery
3548 * thread, free it.
3549 */
3550 if (!lpfc_nlp_not_used(ndlp)) {
3551 /* If ndlp is being used by another discovery
3552 * thread, just clear NLP_DEFER_RM
3553 */
3554 ndlp->nlp_flag &= ~NLP_DEFER_RM;
3555 }
3556 }
3557 else
3558 lpfc_nlp_put(ndlp);
James Smart329f9bc2007-04-25 09:53:01 -04003559 elsiocb->context1 = NULL;
3560 }
dea31012005-04-17 16:05:31 -05003561 /* context2 = cmd, context2->next = rsp, context3 = bpl */
3562 if (elsiocb->context2) {
James Smart0ff10d42008-01-11 01:52:36 -05003563 if (elsiocb->iocb_flag & LPFC_DELAY_MEM_FREE) {
3564 /* Firmware could still be in progress of DMAing
3565 * payload, so don't free data buffer till after
3566 * a hbeat.
3567 */
3568 elsiocb->iocb_flag &= ~LPFC_DELAY_MEM_FREE;
3569 buf_ptr = elsiocb->context2;
3570 elsiocb->context2 = NULL;
3571 if (buf_ptr) {
3572 buf_ptr1 = NULL;
3573 spin_lock_irq(&phba->hbalock);
3574 if (!list_empty(&buf_ptr->list)) {
3575 list_remove_head(&buf_ptr->list,
3576 buf_ptr1, struct lpfc_dmabuf,
3577 list);
3578 INIT_LIST_HEAD(&buf_ptr1->list);
3579 list_add_tail(&buf_ptr1->list,
3580 &phba->elsbuf);
3581 phba->elsbuf_cnt++;
3582 }
3583 INIT_LIST_HEAD(&buf_ptr->list);
3584 list_add_tail(&buf_ptr->list, &phba->elsbuf);
3585 phba->elsbuf_cnt++;
3586 spin_unlock_irq(&phba->hbalock);
3587 }
3588 } else {
3589 buf_ptr1 = (struct lpfc_dmabuf *) elsiocb->context2;
3590 lpfc_els_free_data(phba, buf_ptr1);
3591 }
dea31012005-04-17 16:05:31 -05003592 }
3593
3594 if (elsiocb->context3) {
3595 buf_ptr = (struct lpfc_dmabuf *) elsiocb->context3;
James Smart87af33f2007-10-27 13:37:43 -04003596 lpfc_els_free_bpl(phba, buf_ptr);
dea31012005-04-17 16:05:31 -05003597 }
James Bottomley604a3e32005-10-29 10:28:33 -05003598 lpfc_sli_release_iocbq(phba, elsiocb);
dea31012005-04-17 16:05:31 -05003599 return 0;
3600}
3601
James Smarte59058c2008-08-24 21:49:00 -04003602/**
James Smart3621a712009-04-06 18:47:14 -04003603 * lpfc_cmpl_els_logo_acc - Completion callback function to logo acc response
James Smarte59058c2008-08-24 21:49:00 -04003604 * @phba: pointer to lpfc hba data structure.
3605 * @cmdiocb: pointer to lpfc command iocb data structure.
3606 * @rspiocb: pointer to lpfc response iocb data structure.
3607 *
3608 * This routine is the completion callback function to the Logout (LOGO)
3609 * Accept (ACC) Response ELS command. This routine is invoked to indicate
3610 * the completion of the LOGO process. It invokes the lpfc_nlp_not_used() to
3611 * release the ndlp if it has the last reference remaining (reference count
3612 * is 1). If succeeded (meaning ndlp released), it sets the IOCB context1
3613 * field to NULL to inform the following lpfc_els_free_iocb() routine no
3614 * ndlp reference count needs to be decremented. Otherwise, the ndlp
3615 * reference use-count shall be decremented by the lpfc_els_free_iocb()
3616 * routine. Finally, the lpfc_els_free_iocb() is invoked to release the
3617 * IOCB data structure.
3618 **/
dea31012005-04-17 16:05:31 -05003619static void
James Smart2e0fef82007-06-17 19:56:36 -05003620lpfc_cmpl_els_logo_acc(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
3621 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05003622{
James Smart2e0fef82007-06-17 19:56:36 -05003623 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
3624 struct lpfc_vport *vport = cmdiocb->vport;
James Smart858c9f62007-06-17 19:56:39 -05003625 IOCB_t *irsp;
3626
3627 irsp = &rspiocb->iocb;
3628 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
3629 "ACC LOGO cmpl: status:x%x/x%x did:x%x",
3630 irsp->ulpStatus, irsp->un.ulpWord[4], ndlp->nlp_DID);
dea31012005-04-17 16:05:31 -05003631 /* ACC to LOGO completes to NPort <nlp_DID> */
James Smarte8b62012007-08-02 11:10:09 -04003632 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
3633 "0109 ACC to LOGO completes to NPort x%x "
3634 "Data: x%x x%x x%x\n",
3635 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
3636 ndlp->nlp_rpi);
James Smart87af33f2007-10-27 13:37:43 -04003637
3638 if (ndlp->nlp_state == NLP_STE_NPR_NODE) {
3639 /* NPort Recovery mode or node is just allocated */
3640 if (!lpfc_nlp_not_used(ndlp)) {
3641 /* If the ndlp is being used by another discovery
3642 * thread, just unregister the RPI.
3643 */
3644 lpfc_unreg_rpi(vport, ndlp);
James Smartfa4066b2008-01-11 01:53:27 -05003645 } else {
3646 /* Indicate the node has already released, should
3647 * not reference to it from within lpfc_els_free_iocb.
3648 */
3649 cmdiocb->context1 = NULL;
James Smart87af33f2007-10-27 13:37:43 -04003650 }
dea31012005-04-17 16:05:31 -05003651 }
James Smart73d91e52011-10-10 21:32:10 -04003652
3653 /*
3654 * The driver received a LOGO from the rport and has ACK'd it.
James Smartdf9e1b52011-12-13 13:22:17 -05003655 * At this point, the driver is done so release the IOCB
James Smart73d91e52011-10-10 21:32:10 -04003656 */
dea31012005-04-17 16:05:31 -05003657 lpfc_els_free_iocb(phba, cmdiocb);
James Smartdf9e1b52011-12-13 13:22:17 -05003658
3659 /*
3660 * Remove the ndlp reference if it's a fabric node that has
3661 * sent us an unsolicted LOGO.
3662 */
3663 if (ndlp->nlp_type & NLP_FABRIC)
3664 lpfc_nlp_put(ndlp);
3665
dea31012005-04-17 16:05:31 -05003666 return;
3667}
3668
James Smarte59058c2008-08-24 21:49:00 -04003669/**
James Smart3621a712009-04-06 18:47:14 -04003670 * lpfc_mbx_cmpl_dflt_rpi - Completion callbk func for unreg dflt rpi mbox cmd
James Smarte59058c2008-08-24 21:49:00 -04003671 * @phba: pointer to lpfc hba data structure.
3672 * @pmb: pointer to the driver internal queue element for mailbox command.
3673 *
3674 * This routine is the completion callback function for unregister default
3675 * RPI (Remote Port Index) mailbox command to the @phba. It simply releases
3676 * the associated lpfc Direct Memory Access (DMA) buffer back to the pool and
3677 * decrements the ndlp reference count held for this completion callback
3678 * function. After that, it invokes the lpfc_nlp_not_used() to check
3679 * whether there is only one reference left on the ndlp. If so, it will
3680 * perform one more decrement and trigger the release of the ndlp.
3681 **/
James Smart858c9f62007-06-17 19:56:39 -05003682void
3683lpfc_mbx_cmpl_dflt_rpi(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
3684{
3685 struct lpfc_dmabuf *mp = (struct lpfc_dmabuf *) (pmb->context1);
3686 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) pmb->context2;
3687
3688 pmb->context1 = NULL;
James Smartd439d282010-09-29 11:18:45 -04003689 pmb->context2 = NULL;
3690
James Smart858c9f62007-06-17 19:56:39 -05003691 lpfc_mbuf_free(phba, mp->virt, mp->phys);
3692 kfree(mp);
3693 mempool_free(pmb, phba->mbox_mem_pool);
James Smart086a3452012-08-14 14:25:21 -04003694 if (ndlp) {
3695 if (NLP_CHK_NODE_ACT(ndlp)) {
3696 lpfc_nlp_put(ndlp);
3697 /* This is the end of the default RPI cleanup logic for
3698 * this ndlp. If no other discovery threads are using
3699 * this ndlp, free all resources associated with it.
3700 */
3701 lpfc_nlp_not_used(ndlp);
3702 } else {
3703 lpfc_drop_node(ndlp->vport, ndlp);
3704 }
James Smarta8adb832007-10-27 13:37:53 -04003705 }
James Smart3772a992009-05-22 14:50:54 -04003706
James Smart858c9f62007-06-17 19:56:39 -05003707 return;
3708}
3709
James Smarte59058c2008-08-24 21:49:00 -04003710/**
James Smart3621a712009-04-06 18:47:14 -04003711 * lpfc_cmpl_els_rsp - Completion callback function for els response iocb cmd
James Smarte59058c2008-08-24 21:49:00 -04003712 * @phba: pointer to lpfc hba data structure.
3713 * @cmdiocb: pointer to lpfc command iocb data structure.
3714 * @rspiocb: pointer to lpfc response iocb data structure.
3715 *
3716 * This routine is the completion callback function for ELS Response IOCB
3717 * command. In normal case, this callback function just properly sets the
3718 * nlp_flag bitmap in the ndlp data structure, if the mbox command reference
3719 * field in the command IOCB is not NULL, the referred mailbox command will
3720 * be send out, and then invokes the lpfc_els_free_iocb() routine to release
3721 * the IOCB. Under error conditions, such as when a LS_RJT is returned or a
3722 * link down event occurred during the discovery, the lpfc_nlp_not_used()
3723 * routine shall be invoked trying to release the ndlp if no other threads
3724 * are currently referring it.
3725 **/
dea31012005-04-17 16:05:31 -05003726static void
James Smart858c9f62007-06-17 19:56:39 -05003727lpfc_cmpl_els_rsp(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
James Smart329f9bc2007-04-25 09:53:01 -04003728 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05003729{
James Smart2e0fef82007-06-17 19:56:36 -05003730 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
3731 struct lpfc_vport *vport = ndlp ? ndlp->vport : NULL;
3732 struct Scsi_Host *shost = vport ? lpfc_shost_from_vport(vport) : NULL;
James Smart87af33f2007-10-27 13:37:43 -04003733 IOCB_t *irsp;
3734 uint8_t *pcmd;
dea31012005-04-17 16:05:31 -05003735 LPFC_MBOXQ_t *mbox = NULL;
James Smart2e0fef82007-06-17 19:56:36 -05003736 struct lpfc_dmabuf *mp = NULL;
James Smart87af33f2007-10-27 13:37:43 -04003737 uint32_t ls_rjt = 0;
dea31012005-04-17 16:05:31 -05003738
James Smart33ccf8d2006-08-17 11:57:58 -04003739 irsp = &rspiocb->iocb;
3740
dea31012005-04-17 16:05:31 -05003741 if (cmdiocb->context_un.mbox)
3742 mbox = cmdiocb->context_un.mbox;
3743
James Smartfa4066b2008-01-11 01:53:27 -05003744 /* First determine if this is a LS_RJT cmpl. Note, this callback
3745 * function can have cmdiocb->contest1 (ndlp) field set to NULL.
3746 */
James Smart87af33f2007-10-27 13:37:43 -04003747 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) cmdiocb->context2)->virt);
James Smart58da1ff2008-04-07 10:15:56 -04003748 if (ndlp && NLP_CHK_NODE_ACT(ndlp) &&
3749 (*((uint32_t *) (pcmd)) == ELS_CMD_LS_RJT)) {
James Smartfa4066b2008-01-11 01:53:27 -05003750 /* A LS_RJT associated with Default RPI cleanup has its own
Daniel Mack3ad2f3f2010-02-03 08:01:28 +08003751 * separate code path.
James Smart87af33f2007-10-27 13:37:43 -04003752 */
3753 if (!(ndlp->nlp_flag & NLP_RM_DFLT_RPI))
3754 ls_rjt = 1;
3755 }
3756
dea31012005-04-17 16:05:31 -05003757 /* Check to see if link went down during discovery */
James Smart58da1ff2008-04-07 10:15:56 -04003758 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp) || lpfc_els_chk_latt(vport)) {
dea31012005-04-17 16:05:31 -05003759 if (mbox) {
James Smart14691152006-12-02 13:34:28 -05003760 mp = (struct lpfc_dmabuf *) mbox->context1;
3761 if (mp) {
3762 lpfc_mbuf_free(phba, mp->virt, mp->phys);
3763 kfree(mp);
3764 }
James Smart329f9bc2007-04-25 09:53:01 -04003765 mempool_free(mbox, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -05003766 }
James Smart58da1ff2008-04-07 10:15:56 -04003767 if (ndlp && NLP_CHK_NODE_ACT(ndlp) &&
3768 (ndlp->nlp_flag & NLP_RM_DFLT_RPI))
James Smartfa4066b2008-01-11 01:53:27 -05003769 if (lpfc_nlp_not_used(ndlp)) {
James Smart98c9ea52007-10-27 13:37:33 -04003770 ndlp = NULL;
James Smartfa4066b2008-01-11 01:53:27 -05003771 /* Indicate the node has already released,
3772 * should not reference to it from within
3773 * the routine lpfc_els_free_iocb.
3774 */
3775 cmdiocb->context1 = NULL;
3776 }
dea31012005-04-17 16:05:31 -05003777 goto out;
3778 }
3779
James Smart858c9f62007-06-17 19:56:39 -05003780 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
James Smart51ef4c22007-08-02 11:10:31 -04003781 "ELS rsp cmpl: status:x%x/x%x did:x%x",
James Smart858c9f62007-06-17 19:56:39 -05003782 irsp->ulpStatus, irsp->un.ulpWord[4],
James Smart51ef4c22007-08-02 11:10:31 -04003783 cmdiocb->iocb.un.elsreq64.remoteID);
dea31012005-04-17 16:05:31 -05003784 /* ELS response tag <ulpIoTag> completes */
James Smarte8b62012007-08-02 11:10:09 -04003785 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
3786 "0110 ELS response tag x%x completes "
3787 "Data: x%x x%x x%x x%x x%x x%x x%x\n",
3788 cmdiocb->iocb.ulpIoTag, rspiocb->iocb.ulpStatus,
3789 rspiocb->iocb.un.ulpWord[4], rspiocb->iocb.ulpTimeout,
3790 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
3791 ndlp->nlp_rpi);
dea31012005-04-17 16:05:31 -05003792 if (mbox) {
3793 if ((rspiocb->iocb.ulpStatus == 0)
3794 && (ndlp->nlp_flag & NLP_ACC_REGLOGIN)) {
James Smart2e0fef82007-06-17 19:56:36 -05003795 lpfc_unreg_rpi(vport, ndlp);
James Smarte47c9092008-02-08 18:49:26 -05003796 /* Increment reference count to ndlp to hold the
3797 * reference to ndlp for the callback function.
3798 */
James Smart329f9bc2007-04-25 09:53:01 -04003799 mbox->context2 = lpfc_nlp_get(ndlp);
James Smart2e0fef82007-06-17 19:56:36 -05003800 mbox->vport = vport;
James Smart858c9f62007-06-17 19:56:39 -05003801 if (ndlp->nlp_flag & NLP_RM_DFLT_RPI) {
3802 mbox->mbox_flag |= LPFC_MBX_IMED_UNREG;
3803 mbox->mbox_cmpl = lpfc_mbx_cmpl_dflt_rpi;
3804 }
3805 else {
3806 mbox->mbox_cmpl = lpfc_mbx_cmpl_reg_login;
3807 ndlp->nlp_prev_state = ndlp->nlp_state;
3808 lpfc_nlp_set_state(vport, ndlp,
James Smart2e0fef82007-06-17 19:56:36 -05003809 NLP_STE_REG_LOGIN_ISSUE);
James Smart858c9f62007-06-17 19:56:39 -05003810 }
James Smart0b727fe2007-10-27 13:37:25 -04003811 if (lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT)
James Smarte47c9092008-02-08 18:49:26 -05003812 != MBX_NOT_FINISHED)
dea31012005-04-17 16:05:31 -05003813 goto out;
James Smarte47c9092008-02-08 18:49:26 -05003814 else
3815 /* Decrement the ndlp reference count we
3816 * set for this failed mailbox command.
3817 */
3818 lpfc_nlp_put(ndlp);
James Smart98c9ea52007-10-27 13:37:33 -04003819
3820 /* ELS rsp: Cannot issue reg_login for <NPortid> */
3821 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
3822 "0138 ELS rsp: Cannot issue reg_login for x%x "
3823 "Data: x%x x%x x%x\n",
3824 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
3825 ndlp->nlp_rpi);
3826
James Smartfa4066b2008-01-11 01:53:27 -05003827 if (lpfc_nlp_not_used(ndlp)) {
James Smart98c9ea52007-10-27 13:37:33 -04003828 ndlp = NULL;
James Smartfa4066b2008-01-11 01:53:27 -05003829 /* Indicate node has already been released,
3830 * should not reference to it from within
3831 * the routine lpfc_els_free_iocb.
3832 */
3833 cmdiocb->context1 = NULL;
3834 }
dea31012005-04-17 16:05:31 -05003835 } else {
James Smart858c9f62007-06-17 19:56:39 -05003836 /* Do not drop node for lpfc_els_abort'ed ELS cmds */
3837 if (!lpfc_error_lost_link(irsp) &&
3838 ndlp->nlp_flag & NLP_ACC_REGLOGIN) {
James Smartfa4066b2008-01-11 01:53:27 -05003839 if (lpfc_nlp_not_used(ndlp)) {
James Smart98c9ea52007-10-27 13:37:33 -04003840 ndlp = NULL;
James Smartfa4066b2008-01-11 01:53:27 -05003841 /* Indicate node has already been
3842 * released, should not reference
3843 * to it from within the routine
3844 * lpfc_els_free_iocb.
3845 */
3846 cmdiocb->context1 = NULL;
3847 }
dea31012005-04-17 16:05:31 -05003848 }
3849 }
James Smart14691152006-12-02 13:34:28 -05003850 mp = (struct lpfc_dmabuf *) mbox->context1;
3851 if (mp) {
3852 lpfc_mbuf_free(phba, mp->virt, mp->phys);
3853 kfree(mp);
3854 }
3855 mempool_free(mbox, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -05003856 }
3857out:
James Smart58da1ff2008-04-07 10:15:56 -04003858 if (ndlp && NLP_CHK_NODE_ACT(ndlp)) {
James Smart2e0fef82007-06-17 19:56:36 -05003859 spin_lock_irq(shost->host_lock);
James Smart858c9f62007-06-17 19:56:39 -05003860 ndlp->nlp_flag &= ~(NLP_ACC_REGLOGIN | NLP_RM_DFLT_RPI);
James Smart2e0fef82007-06-17 19:56:36 -05003861 spin_unlock_irq(shost->host_lock);
James Smart87af33f2007-10-27 13:37:43 -04003862
3863 /* If the node is not being used by another discovery thread,
3864 * and we are sending a reject, we are done with it.
3865 * Release driver reference count here and free associated
3866 * resources.
3867 */
3868 if (ls_rjt)
James Smartfa4066b2008-01-11 01:53:27 -05003869 if (lpfc_nlp_not_used(ndlp))
3870 /* Indicate node has already been released,
3871 * should not reference to it from within
3872 * the routine lpfc_els_free_iocb.
3873 */
3874 cmdiocb->context1 = NULL;
dea31012005-04-17 16:05:31 -05003875 }
James Smart87af33f2007-10-27 13:37:43 -04003876
dea31012005-04-17 16:05:31 -05003877 lpfc_els_free_iocb(phba, cmdiocb);
3878 return;
3879}
3880
James Smarte59058c2008-08-24 21:49:00 -04003881/**
James Smart3621a712009-04-06 18:47:14 -04003882 * lpfc_els_rsp_acc - Prepare and issue an acc response iocb command
James Smarte59058c2008-08-24 21:49:00 -04003883 * @vport: pointer to a host virtual N_Port data structure.
3884 * @flag: the els command code to be accepted.
3885 * @oldiocb: pointer to the original lpfc command iocb data structure.
3886 * @ndlp: pointer to a node-list data structure.
3887 * @mbox: pointer to the driver internal queue element for mailbox command.
3888 *
3889 * This routine prepares and issues an Accept (ACC) response IOCB
3890 * command. It uses the @flag to properly set up the IOCB field for the
3891 * specific ACC response command to be issued and invokes the
3892 * lpfc_sli_issue_iocb() routine to send out ACC response IOCB. If a
3893 * @mbox pointer is passed in, it will be put into the context_un.mbox
3894 * field of the IOCB for the completion callback function to issue the
3895 * mailbox command to the HBA later when callback is invoked.
3896 *
3897 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
3898 * will be incremented by 1 for holding the ndlp and the reference to ndlp
3899 * will be stored into the context1 field of the IOCB for the completion
3900 * callback function to the corresponding response ELS IOCB command.
3901 *
3902 * Return code
3903 * 0 - Successfully issued acc response
3904 * 1 - Failed to issue acc response
3905 **/
dea31012005-04-17 16:05:31 -05003906int
James Smart2e0fef82007-06-17 19:56:36 -05003907lpfc_els_rsp_acc(struct lpfc_vport *vport, uint32_t flag,
3908 struct lpfc_iocbq *oldiocb, struct lpfc_nodelist *ndlp,
James Smart51ef4c22007-08-02 11:10:31 -04003909 LPFC_MBOXQ_t *mbox)
dea31012005-04-17 16:05:31 -05003910{
James Smart2e0fef82007-06-17 19:56:36 -05003911 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
3912 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05003913 IOCB_t *icmd;
3914 IOCB_t *oldcmd;
3915 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05003916 struct lpfc_sli *psli;
3917 uint8_t *pcmd;
3918 uint16_t cmdsize;
3919 int rc;
James Smart82d9a2a2006-04-15 11:53:05 -04003920 ELS_PKT *els_pkt_ptr;
dea31012005-04-17 16:05:31 -05003921
3922 psli = &phba->sli;
dea31012005-04-17 16:05:31 -05003923 oldcmd = &oldiocb->iocb;
3924
3925 switch (flag) {
3926 case ELS_CMD_ACC:
James Smart92d7f7b2007-06-17 19:56:38 -05003927 cmdsize = sizeof(uint32_t);
James Smart2e0fef82007-06-17 19:56:36 -05003928 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry,
3929 ndlp, ndlp->nlp_DID, ELS_CMD_ACC);
James Smart488d1462006-03-07 15:02:37 -05003930 if (!elsiocb) {
James Smart2e0fef82007-06-17 19:56:36 -05003931 spin_lock_irq(shost->host_lock);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003932 ndlp->nlp_flag &= ~NLP_LOGO_ACC;
James Smart2e0fef82007-06-17 19:56:36 -05003933 spin_unlock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003934 return 1;
dea31012005-04-17 16:05:31 -05003935 }
James Smart2e0fef82007-06-17 19:56:36 -05003936
dea31012005-04-17 16:05:31 -05003937 icmd = &elsiocb->iocb;
James Smart7851fe22011-07-22 18:36:52 -04003938 icmd->ulpContext = oldcmd->ulpContext; /* Xri / rx_id */
3939 icmd->unsli3.rcvsli3.ox_id = oldcmd->unsli3.rcvsli3.ox_id;
dea31012005-04-17 16:05:31 -05003940 pcmd = (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
3941 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
James Smart92d7f7b2007-06-17 19:56:38 -05003942 pcmd += sizeof(uint32_t);
James Smart858c9f62007-06-17 19:56:39 -05003943
3944 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
3945 "Issue ACC: did:x%x flg:x%x",
3946 ndlp->nlp_DID, ndlp->nlp_flag, 0);
dea31012005-04-17 16:05:31 -05003947 break;
3948 case ELS_CMD_PLOGI:
James Smart92d7f7b2007-06-17 19:56:38 -05003949 cmdsize = (sizeof(struct serv_parm) + sizeof(uint32_t));
James Smart2e0fef82007-06-17 19:56:36 -05003950 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry,
3951 ndlp, ndlp->nlp_DID, ELS_CMD_ACC);
James Smart488d1462006-03-07 15:02:37 -05003952 if (!elsiocb)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003953 return 1;
James Smart488d1462006-03-07 15:02:37 -05003954
dea31012005-04-17 16:05:31 -05003955 icmd = &elsiocb->iocb;
James Smart7851fe22011-07-22 18:36:52 -04003956 icmd->ulpContext = oldcmd->ulpContext; /* Xri / rx_id */
3957 icmd->unsli3.rcvsli3.ox_id = oldcmd->unsli3.rcvsli3.ox_id;
dea31012005-04-17 16:05:31 -05003958 pcmd = (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
3959
3960 if (mbox)
3961 elsiocb->context_un.mbox = mbox;
3962
3963 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
James Smart92d7f7b2007-06-17 19:56:38 -05003964 pcmd += sizeof(uint32_t);
3965 memcpy(pcmd, &vport->fc_sparam, sizeof(struct serv_parm));
James Smart858c9f62007-06-17 19:56:39 -05003966
3967 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
3968 "Issue ACC PLOGI: did:x%x flg:x%x",
3969 ndlp->nlp_DID, ndlp->nlp_flag, 0);
dea31012005-04-17 16:05:31 -05003970 break;
James Smart82d9a2a2006-04-15 11:53:05 -04003971 case ELS_CMD_PRLO:
James Smart92d7f7b2007-06-17 19:56:38 -05003972 cmdsize = sizeof(uint32_t) + sizeof(PRLO);
James Smart2e0fef82007-06-17 19:56:36 -05003973 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry,
James Smart82d9a2a2006-04-15 11:53:05 -04003974 ndlp, ndlp->nlp_DID, ELS_CMD_PRLO);
3975 if (!elsiocb)
3976 return 1;
3977
3978 icmd = &elsiocb->iocb;
James Smart7851fe22011-07-22 18:36:52 -04003979 icmd->ulpContext = oldcmd->ulpContext; /* Xri / rx_id */
3980 icmd->unsli3.rcvsli3.ox_id = oldcmd->unsli3.rcvsli3.ox_id;
James Smart82d9a2a2006-04-15 11:53:05 -04003981 pcmd = (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
3982
3983 memcpy(pcmd, ((struct lpfc_dmabuf *) oldiocb->context2)->virt,
James Smart92d7f7b2007-06-17 19:56:38 -05003984 sizeof(uint32_t) + sizeof(PRLO));
James Smart82d9a2a2006-04-15 11:53:05 -04003985 *((uint32_t *) (pcmd)) = ELS_CMD_PRLO_ACC;
3986 els_pkt_ptr = (ELS_PKT *) pcmd;
3987 els_pkt_ptr->un.prlo.acceptRspCode = PRLO_REQ_EXECUTED;
James Smart858c9f62007-06-17 19:56:39 -05003988
3989 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
3990 "Issue ACC PRLO: did:x%x flg:x%x",
3991 ndlp->nlp_DID, ndlp->nlp_flag, 0);
James Smart82d9a2a2006-04-15 11:53:05 -04003992 break;
dea31012005-04-17 16:05:31 -05003993 default:
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003994 return 1;
dea31012005-04-17 16:05:31 -05003995 }
dea31012005-04-17 16:05:31 -05003996 /* Xmit ELS ACC response tag <ulpIoTag> */
James Smarte8b62012007-08-02 11:10:09 -04003997 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
3998 "0128 Xmit ELS ACC response tag x%x, XRI: x%x, "
James Smarte6446432012-05-09 21:16:42 -04003999 "DID: x%x, nlp_flag: x%x nlp_state: x%x RPI: x%x "
4000 "fc_flag x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04004001 elsiocb->iotag, elsiocb->iocb.ulpContext,
4002 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
James Smarte6446432012-05-09 21:16:42 -04004003 ndlp->nlp_rpi, vport->fc_flag);
dea31012005-04-17 16:05:31 -05004004 if (ndlp->nlp_flag & NLP_LOGO_ACC) {
James Smart2e0fef82007-06-17 19:56:36 -05004005 spin_lock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004006 ndlp->nlp_flag &= ~NLP_LOGO_ACC;
James Smart2e0fef82007-06-17 19:56:36 -05004007 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05004008 elsiocb->iocb_cmpl = lpfc_cmpl_els_logo_acc;
4009 } else {
James Smart858c9f62007-06-17 19:56:39 -05004010 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
dea31012005-04-17 16:05:31 -05004011 }
4012
4013 phba->fc_stat.elsXmitACC++;
James Smart3772a992009-05-22 14:50:54 -04004014 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
dea31012005-04-17 16:05:31 -05004015 if (rc == IOCB_ERROR) {
4016 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004017 return 1;
dea31012005-04-17 16:05:31 -05004018 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004019 return 0;
dea31012005-04-17 16:05:31 -05004020}
4021
James Smarte59058c2008-08-24 21:49:00 -04004022/**
James Smart3621a712009-04-06 18:47:14 -04004023 * lpfc_els_rsp_reject - Propare and issue a rjt response iocb command
James Smarte59058c2008-08-24 21:49:00 -04004024 * @vport: pointer to a virtual N_Port data structure.
4025 * @rejectError:
4026 * @oldiocb: pointer to the original lpfc command iocb data structure.
4027 * @ndlp: pointer to a node-list data structure.
4028 * @mbox: pointer to the driver internal queue element for mailbox command.
4029 *
4030 * This routine prepares and issue an Reject (RJT) response IOCB
4031 * command. If a @mbox pointer is passed in, it will be put into the
4032 * context_un.mbox field of the IOCB for the completion callback function
4033 * to issue to the HBA later.
4034 *
4035 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
4036 * will be incremented by 1 for holding the ndlp and the reference to ndlp
4037 * will be stored into the context1 field of the IOCB for the completion
4038 * callback function to the reject response ELS IOCB command.
4039 *
4040 * Return code
4041 * 0 - Successfully issued reject response
4042 * 1 - Failed to issue reject response
4043 **/
dea31012005-04-17 16:05:31 -05004044int
James Smart2e0fef82007-06-17 19:56:36 -05004045lpfc_els_rsp_reject(struct lpfc_vport *vport, uint32_t rejectError,
James Smart858c9f62007-06-17 19:56:39 -05004046 struct lpfc_iocbq *oldiocb, struct lpfc_nodelist *ndlp,
4047 LPFC_MBOXQ_t *mbox)
dea31012005-04-17 16:05:31 -05004048{
James Smart2e0fef82007-06-17 19:56:36 -05004049 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05004050 IOCB_t *icmd;
4051 IOCB_t *oldcmd;
4052 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05004053 struct lpfc_sli *psli;
4054 uint8_t *pcmd;
4055 uint16_t cmdsize;
4056 int rc;
4057
4058 psli = &phba->sli;
James Smart92d7f7b2007-06-17 19:56:38 -05004059 cmdsize = 2 * sizeof(uint32_t);
James Smart2e0fef82007-06-17 19:56:36 -05004060 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry, ndlp,
4061 ndlp->nlp_DID, ELS_CMD_LS_RJT);
James Smart488d1462006-03-07 15:02:37 -05004062 if (!elsiocb)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004063 return 1;
dea31012005-04-17 16:05:31 -05004064
4065 icmd = &elsiocb->iocb;
4066 oldcmd = &oldiocb->iocb;
James Smart7851fe22011-07-22 18:36:52 -04004067 icmd->ulpContext = oldcmd->ulpContext; /* Xri / rx_id */
4068 icmd->unsli3.rcvsli3.ox_id = oldcmd->unsli3.rcvsli3.ox_id;
dea31012005-04-17 16:05:31 -05004069 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
4070
4071 *((uint32_t *) (pcmd)) = ELS_CMD_LS_RJT;
James Smart92d7f7b2007-06-17 19:56:38 -05004072 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05004073 *((uint32_t *) (pcmd)) = rejectError;
4074
James Smart51ef4c22007-08-02 11:10:31 -04004075 if (mbox)
James Smart858c9f62007-06-17 19:56:39 -05004076 elsiocb->context_un.mbox = mbox;
James Smart858c9f62007-06-17 19:56:39 -05004077
dea31012005-04-17 16:05:31 -05004078 /* Xmit ELS RJT <err> response tag <ulpIoTag> */
James Smarte8b62012007-08-02 11:10:09 -04004079 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
4080 "0129 Xmit ELS RJT x%x response tag x%x "
4081 "xri x%x, did x%x, nlp_flag x%x, nlp_state x%x, "
4082 "rpi x%x\n",
4083 rejectError, elsiocb->iotag,
4084 elsiocb->iocb.ulpContext, ndlp->nlp_DID,
4085 ndlp->nlp_flag, ndlp->nlp_state, ndlp->nlp_rpi);
James Smart858c9f62007-06-17 19:56:39 -05004086 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
4087 "Issue LS_RJT: did:x%x flg:x%x err:x%x",
4088 ndlp->nlp_DID, ndlp->nlp_flag, rejectError);
4089
dea31012005-04-17 16:05:31 -05004090 phba->fc_stat.elsXmitLSRJT++;
James Smart858c9f62007-06-17 19:56:39 -05004091 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
James Smart3772a992009-05-22 14:50:54 -04004092 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
James Smart51ef4c22007-08-02 11:10:31 -04004093
dea31012005-04-17 16:05:31 -05004094 if (rc == IOCB_ERROR) {
4095 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004096 return 1;
dea31012005-04-17 16:05:31 -05004097 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004098 return 0;
dea31012005-04-17 16:05:31 -05004099}
4100
James Smarte59058c2008-08-24 21:49:00 -04004101/**
James Smart3621a712009-04-06 18:47:14 -04004102 * lpfc_els_rsp_adisc_acc - Prepare and issue acc response to adisc iocb cmd
James Smarte59058c2008-08-24 21:49:00 -04004103 * @vport: pointer to a virtual N_Port data structure.
4104 * @oldiocb: pointer to the original lpfc command iocb data structure.
4105 * @ndlp: pointer to a node-list data structure.
4106 *
4107 * This routine prepares and issues an Accept (ACC) response to Address
4108 * Discover (ADISC) ELS command. It simply prepares the payload of the IOCB
4109 * and invokes the lpfc_sli_issue_iocb() routine to send out the command.
4110 *
4111 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
4112 * will be incremented by 1 for holding the ndlp and the reference to ndlp
4113 * will be stored into the context1 field of the IOCB for the completion
4114 * callback function to the ADISC Accept response ELS IOCB command.
4115 *
4116 * Return code
4117 * 0 - Successfully issued acc adisc response
4118 * 1 - Failed to issue adisc acc response
4119 **/
dea31012005-04-17 16:05:31 -05004120int
James Smart2e0fef82007-06-17 19:56:36 -05004121lpfc_els_rsp_adisc_acc(struct lpfc_vport *vport, struct lpfc_iocbq *oldiocb,
4122 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05004123{
James Smart2e0fef82007-06-17 19:56:36 -05004124 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05004125 ADISC *ap;
James Smart2e0fef82007-06-17 19:56:36 -05004126 IOCB_t *icmd, *oldcmd;
dea31012005-04-17 16:05:31 -05004127 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05004128 uint8_t *pcmd;
4129 uint16_t cmdsize;
4130 int rc;
4131
James Smart92d7f7b2007-06-17 19:56:38 -05004132 cmdsize = sizeof(uint32_t) + sizeof(ADISC);
James Smart2e0fef82007-06-17 19:56:36 -05004133 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry, ndlp,
4134 ndlp->nlp_DID, ELS_CMD_ACC);
James Smart488d1462006-03-07 15:02:37 -05004135 if (!elsiocb)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004136 return 1;
dea31012005-04-17 16:05:31 -05004137
dea31012005-04-17 16:05:31 -05004138 icmd = &elsiocb->iocb;
4139 oldcmd = &oldiocb->iocb;
James Smart7851fe22011-07-22 18:36:52 -04004140 icmd->ulpContext = oldcmd->ulpContext; /* Xri / rx_id */
4141 icmd->unsli3.rcvsli3.ox_id = oldcmd->unsli3.rcvsli3.ox_id;
James Smart5b8bd0c2007-04-25 09:52:49 -04004142
4143 /* Xmit ADISC ACC response tag <ulpIoTag> */
James Smarte8b62012007-08-02 11:10:09 -04004144 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
4145 "0130 Xmit ADISC ACC response iotag x%x xri: "
4146 "x%x, did x%x, nlp_flag x%x, nlp_state x%x rpi x%x\n",
4147 elsiocb->iotag, elsiocb->iocb.ulpContext,
4148 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
4149 ndlp->nlp_rpi);
dea31012005-04-17 16:05:31 -05004150 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
4151
4152 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
James Smart92d7f7b2007-06-17 19:56:38 -05004153 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05004154
4155 ap = (ADISC *) (pcmd);
4156 ap->hardAL_PA = phba->fc_pref_ALPA;
James Smart92d7f7b2007-06-17 19:56:38 -05004157 memcpy(&ap->portName, &vport->fc_portname, sizeof(struct lpfc_name));
4158 memcpy(&ap->nodeName, &vport->fc_nodename, sizeof(struct lpfc_name));
James Smart2e0fef82007-06-17 19:56:36 -05004159 ap->DID = be32_to_cpu(vport->fc_myDID);
dea31012005-04-17 16:05:31 -05004160
James Smart858c9f62007-06-17 19:56:39 -05004161 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
4162 "Issue ACC ADISC: did:x%x flg:x%x",
4163 ndlp->nlp_DID, ndlp->nlp_flag, 0);
4164
dea31012005-04-17 16:05:31 -05004165 phba->fc_stat.elsXmitACC++;
James Smart858c9f62007-06-17 19:56:39 -05004166 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
James Smart3772a992009-05-22 14:50:54 -04004167 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
dea31012005-04-17 16:05:31 -05004168 if (rc == IOCB_ERROR) {
4169 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004170 return 1;
dea31012005-04-17 16:05:31 -05004171 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004172 return 0;
dea31012005-04-17 16:05:31 -05004173}
4174
James Smarte59058c2008-08-24 21:49:00 -04004175/**
James Smart3621a712009-04-06 18:47:14 -04004176 * lpfc_els_rsp_prli_acc - Prepare and issue acc response to prli iocb cmd
James Smarte59058c2008-08-24 21:49:00 -04004177 * @vport: pointer to a virtual N_Port data structure.
4178 * @oldiocb: pointer to the original lpfc command iocb data structure.
4179 * @ndlp: pointer to a node-list data structure.
4180 *
4181 * This routine prepares and issues an Accept (ACC) response to Process
4182 * Login (PRLI) ELS command. It simply prepares the payload of the IOCB
4183 * and invokes the lpfc_sli_issue_iocb() routine to send out the command.
4184 *
4185 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
4186 * will be incremented by 1 for holding the ndlp and the reference to ndlp
4187 * will be stored into the context1 field of the IOCB for the completion
4188 * callback function to the PRLI Accept response ELS IOCB command.
4189 *
4190 * Return code
4191 * 0 - Successfully issued acc prli response
4192 * 1 - Failed to issue acc prli response
4193 **/
dea31012005-04-17 16:05:31 -05004194int
James Smart2e0fef82007-06-17 19:56:36 -05004195lpfc_els_rsp_prli_acc(struct lpfc_vport *vport, struct lpfc_iocbq *oldiocb,
James Smart5b8bd0c2007-04-25 09:52:49 -04004196 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05004197{
James Smart2e0fef82007-06-17 19:56:36 -05004198 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05004199 PRLI *npr;
4200 lpfc_vpd_t *vpd;
4201 IOCB_t *icmd;
4202 IOCB_t *oldcmd;
4203 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05004204 struct lpfc_sli *psli;
4205 uint8_t *pcmd;
4206 uint16_t cmdsize;
4207 int rc;
4208
4209 psli = &phba->sli;
dea31012005-04-17 16:05:31 -05004210
James Smart92d7f7b2007-06-17 19:56:38 -05004211 cmdsize = sizeof(uint32_t) + sizeof(PRLI);
James Smart2e0fef82007-06-17 19:56:36 -05004212 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry, ndlp,
James Smart92d7f7b2007-06-17 19:56:38 -05004213 ndlp->nlp_DID, (ELS_CMD_ACC | (ELS_CMD_PRLI & ~ELS_RSP_MASK)));
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004214 if (!elsiocb)
4215 return 1;
dea31012005-04-17 16:05:31 -05004216
dea31012005-04-17 16:05:31 -05004217 icmd = &elsiocb->iocb;
4218 oldcmd = &oldiocb->iocb;
James Smart7851fe22011-07-22 18:36:52 -04004219 icmd->ulpContext = oldcmd->ulpContext; /* Xri / rx_id */
4220 icmd->unsli3.rcvsli3.ox_id = oldcmd->unsli3.rcvsli3.ox_id;
4221
James Smart5b8bd0c2007-04-25 09:52:49 -04004222 /* Xmit PRLI ACC response tag <ulpIoTag> */
James Smarte8b62012007-08-02 11:10:09 -04004223 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
4224 "0131 Xmit PRLI ACC response tag x%x xri x%x, "
4225 "did x%x, nlp_flag x%x, nlp_state x%x, rpi x%x\n",
4226 elsiocb->iotag, elsiocb->iocb.ulpContext,
4227 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
4228 ndlp->nlp_rpi);
dea31012005-04-17 16:05:31 -05004229 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
4230
4231 *((uint32_t *) (pcmd)) = (ELS_CMD_ACC | (ELS_CMD_PRLI & ~ELS_RSP_MASK));
James Smart92d7f7b2007-06-17 19:56:38 -05004232 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05004233
4234 /* For PRLI, remainder of payload is PRLI parameter page */
James Smart92d7f7b2007-06-17 19:56:38 -05004235 memset(pcmd, 0, sizeof(PRLI));
dea31012005-04-17 16:05:31 -05004236
4237 npr = (PRLI *) pcmd;
4238 vpd = &phba->vpd;
4239 /*
James Smart0d2b6b82008-06-14 22:52:47 -04004240 * If the remote port is a target and our firmware version is 3.20 or
4241 * later, set the following bits for FC-TAPE support.
dea31012005-04-17 16:05:31 -05004242 */
James Smart0d2b6b82008-06-14 22:52:47 -04004243 if ((ndlp->nlp_type & NLP_FCP_TARGET) &&
4244 (vpd->rev.feaLevelHigh >= 0x02)) {
dea31012005-04-17 16:05:31 -05004245 npr->ConfmComplAllowed = 1;
4246 npr->Retry = 1;
4247 npr->TaskRetryIdReq = 1;
4248 }
4249
4250 npr->acceptRspCode = PRLI_REQ_EXECUTED;
4251 npr->estabImagePair = 1;
4252 npr->readXferRdyDis = 1;
4253 npr->ConfmComplAllowed = 1;
4254
4255 npr->prliType = PRLI_FCP_TYPE;
4256 npr->initiatorFunc = 1;
4257
James Smart858c9f62007-06-17 19:56:39 -05004258 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
4259 "Issue ACC PRLI: did:x%x flg:x%x",
4260 ndlp->nlp_DID, ndlp->nlp_flag, 0);
4261
dea31012005-04-17 16:05:31 -05004262 phba->fc_stat.elsXmitACC++;
James Smart858c9f62007-06-17 19:56:39 -05004263 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
dea31012005-04-17 16:05:31 -05004264
James Smart3772a992009-05-22 14:50:54 -04004265 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
dea31012005-04-17 16:05:31 -05004266 if (rc == IOCB_ERROR) {
4267 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004268 return 1;
dea31012005-04-17 16:05:31 -05004269 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004270 return 0;
dea31012005-04-17 16:05:31 -05004271}
4272
James Smarte59058c2008-08-24 21:49:00 -04004273/**
James Smart3621a712009-04-06 18:47:14 -04004274 * lpfc_els_rsp_rnid_acc - Issue rnid acc response iocb command
James Smarte59058c2008-08-24 21:49:00 -04004275 * @vport: pointer to a virtual N_Port data structure.
4276 * @format: rnid command format.
4277 * @oldiocb: pointer to the original lpfc command iocb data structure.
4278 * @ndlp: pointer to a node-list data structure.
4279 *
4280 * This routine issues a Request Node Identification Data (RNID) Accept
4281 * (ACC) response. It constructs the RNID ACC response command according to
4282 * the proper @format and then calls the lpfc_sli_issue_iocb() routine to
4283 * issue the response. Note that this command does not need to hold the ndlp
4284 * reference count for the callback. So, the ndlp reference count taken by
4285 * the lpfc_prep_els_iocb() routine is put back and the context1 field of
4286 * IOCB is set to NULL to indicate to the lpfc_els_free_iocb() routine that
4287 * there is no ndlp reference available.
4288 *
4289 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
4290 * will be incremented by 1 for holding the ndlp and the reference to ndlp
4291 * will be stored into the context1 field of the IOCB for the completion
4292 * callback function. However, for the RNID Accept Response ELS command,
4293 * this is undone later by this routine after the IOCB is allocated.
4294 *
4295 * Return code
4296 * 0 - Successfully issued acc rnid response
4297 * 1 - Failed to issue acc rnid response
4298 **/
dea31012005-04-17 16:05:31 -05004299static int
James Smart2e0fef82007-06-17 19:56:36 -05004300lpfc_els_rsp_rnid_acc(struct lpfc_vport *vport, uint8_t format,
James Smart329f9bc2007-04-25 09:53:01 -04004301 struct lpfc_iocbq *oldiocb, struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05004302{
James Smart2e0fef82007-06-17 19:56:36 -05004303 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05004304 RNID *rn;
James Smart2e0fef82007-06-17 19:56:36 -05004305 IOCB_t *icmd, *oldcmd;
dea31012005-04-17 16:05:31 -05004306 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05004307 struct lpfc_sli *psli;
4308 uint8_t *pcmd;
4309 uint16_t cmdsize;
4310 int rc;
4311
4312 psli = &phba->sli;
James Smart92d7f7b2007-06-17 19:56:38 -05004313 cmdsize = sizeof(uint32_t) + sizeof(uint32_t)
4314 + (2 * sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -05004315 if (format)
James Smart92d7f7b2007-06-17 19:56:38 -05004316 cmdsize += sizeof(RNID_TOP_DISC);
dea31012005-04-17 16:05:31 -05004317
James Smart2e0fef82007-06-17 19:56:36 -05004318 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry, ndlp,
4319 ndlp->nlp_DID, ELS_CMD_ACC);
James Smart488d1462006-03-07 15:02:37 -05004320 if (!elsiocb)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004321 return 1;
dea31012005-04-17 16:05:31 -05004322
dea31012005-04-17 16:05:31 -05004323 icmd = &elsiocb->iocb;
4324 oldcmd = &oldiocb->iocb;
James Smart7851fe22011-07-22 18:36:52 -04004325 icmd->ulpContext = oldcmd->ulpContext; /* Xri / rx_id */
4326 icmd->unsli3.rcvsli3.ox_id = oldcmd->unsli3.rcvsli3.ox_id;
4327
James Smart5b8bd0c2007-04-25 09:52:49 -04004328 /* Xmit RNID ACC response tag <ulpIoTag> */
James Smarte8b62012007-08-02 11:10:09 -04004329 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
4330 "0132 Xmit RNID ACC response tag x%x xri x%x\n",
4331 elsiocb->iotag, elsiocb->iocb.ulpContext);
dea31012005-04-17 16:05:31 -05004332 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
dea31012005-04-17 16:05:31 -05004333 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
James Smart92d7f7b2007-06-17 19:56:38 -05004334 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05004335
James Smart92d7f7b2007-06-17 19:56:38 -05004336 memset(pcmd, 0, sizeof(RNID));
dea31012005-04-17 16:05:31 -05004337 rn = (RNID *) (pcmd);
4338 rn->Format = format;
James Smart92d7f7b2007-06-17 19:56:38 -05004339 rn->CommonLen = (2 * sizeof(struct lpfc_name));
4340 memcpy(&rn->portName, &vport->fc_portname, sizeof(struct lpfc_name));
4341 memcpy(&rn->nodeName, &vport->fc_nodename, sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -05004342 switch (format) {
4343 case 0:
4344 rn->SpecificLen = 0;
4345 break;
4346 case RNID_TOPOLOGY_DISC:
James Smart92d7f7b2007-06-17 19:56:38 -05004347 rn->SpecificLen = sizeof(RNID_TOP_DISC);
dea31012005-04-17 16:05:31 -05004348 memcpy(&rn->un.topologyDisc.portName,
James Smart92d7f7b2007-06-17 19:56:38 -05004349 &vport->fc_portname, sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -05004350 rn->un.topologyDisc.unitType = RNID_HBA;
4351 rn->un.topologyDisc.physPort = 0;
4352 rn->un.topologyDisc.attachedNodes = 0;
4353 break;
4354 default:
4355 rn->CommonLen = 0;
4356 rn->SpecificLen = 0;
4357 break;
4358 }
4359
James Smart858c9f62007-06-17 19:56:39 -05004360 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
4361 "Issue ACC RNID: did:x%x flg:x%x",
4362 ndlp->nlp_DID, ndlp->nlp_flag, 0);
4363
dea31012005-04-17 16:05:31 -05004364 phba->fc_stat.elsXmitACC++;
James Smart858c9f62007-06-17 19:56:39 -05004365 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
dea31012005-04-17 16:05:31 -05004366
James Smart3772a992009-05-22 14:50:54 -04004367 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
dea31012005-04-17 16:05:31 -05004368 if (rc == IOCB_ERROR) {
4369 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004370 return 1;
dea31012005-04-17 16:05:31 -05004371 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004372 return 0;
dea31012005-04-17 16:05:31 -05004373}
4374
James Smarte59058c2008-08-24 21:49:00 -04004375/**
James Smart19ca7602010-11-20 23:11:55 -05004376 * lpfc_els_clear_rrq - Clear the rq that this rrq describes.
4377 * @vport: pointer to a virtual N_Port data structure.
4378 * @iocb: pointer to the lpfc command iocb data structure.
4379 * @ndlp: pointer to a node-list data structure.
4380 *
4381 * Return
4382 **/
4383static void
4384lpfc_els_clear_rrq(struct lpfc_vport *vport,
4385 struct lpfc_iocbq *iocb, struct lpfc_nodelist *ndlp)
4386{
4387 struct lpfc_hba *phba = vport->phba;
4388 uint8_t *pcmd;
4389 struct RRQ *rrq;
4390 uint16_t rxid;
James Smart1151e3e2011-02-16 12:39:35 -05004391 uint16_t xri;
James Smart19ca7602010-11-20 23:11:55 -05004392 struct lpfc_node_rrq *prrq;
4393
4394
4395 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) iocb->context2)->virt);
4396 pcmd += sizeof(uint32_t);
4397 rrq = (struct RRQ *)pcmd;
James Smart1151e3e2011-02-16 12:39:35 -05004398 rrq->rrq_exchg = be32_to_cpu(rrq->rrq_exchg);
James Smart9589b0622011-04-16 11:03:17 -04004399 rxid = bf_get(rrq_rxid, rrq);
James Smart19ca7602010-11-20 23:11:55 -05004400
4401 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
4402 "2883 Clear RRQ for SID:x%x OXID:x%x RXID:x%x"
4403 " x%x x%x\n",
James Smart1151e3e2011-02-16 12:39:35 -05004404 be32_to_cpu(bf_get(rrq_did, rrq)),
James Smart9589b0622011-04-16 11:03:17 -04004405 bf_get(rrq_oxid, rrq),
James Smart19ca7602010-11-20 23:11:55 -05004406 rxid,
4407 iocb->iotag, iocb->iocb.ulpContext);
4408
4409 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
4410 "Clear RRQ: did:x%x flg:x%x exchg:x%.08x",
4411 ndlp->nlp_DID, ndlp->nlp_flag, rrq->rrq_exchg);
James Smart1151e3e2011-02-16 12:39:35 -05004412 if (vport->fc_myDID == be32_to_cpu(bf_get(rrq_did, rrq)))
James Smart9589b0622011-04-16 11:03:17 -04004413 xri = bf_get(rrq_oxid, rrq);
James Smart1151e3e2011-02-16 12:39:35 -05004414 else
4415 xri = rxid;
4416 prrq = lpfc_get_active_rrq(vport, xri, ndlp->nlp_DID);
James Smart19ca7602010-11-20 23:11:55 -05004417 if (prrq)
James Smart1151e3e2011-02-16 12:39:35 -05004418 lpfc_clr_rrq_active(phba, xri, prrq);
James Smart19ca7602010-11-20 23:11:55 -05004419 return;
4420}
4421
4422/**
James Smart12265f62010-10-22 11:05:53 -04004423 * lpfc_els_rsp_echo_acc - Issue echo acc response
4424 * @vport: pointer to a virtual N_Port data structure.
4425 * @data: pointer to echo data to return in the accept.
4426 * @oldiocb: pointer to the original lpfc command iocb data structure.
4427 * @ndlp: pointer to a node-list data structure.
4428 *
4429 * Return code
4430 * 0 - Successfully issued acc echo response
4431 * 1 - Failed to issue acc echo response
4432 **/
4433static int
4434lpfc_els_rsp_echo_acc(struct lpfc_vport *vport, uint8_t *data,
4435 struct lpfc_iocbq *oldiocb, struct lpfc_nodelist *ndlp)
4436{
4437 struct lpfc_hba *phba = vport->phba;
4438 struct lpfc_iocbq *elsiocb;
4439 struct lpfc_sli *psli;
4440 uint8_t *pcmd;
4441 uint16_t cmdsize;
4442 int rc;
4443
4444 psli = &phba->sli;
4445 cmdsize = oldiocb->iocb.unsli3.rcvsli3.acc_len;
4446
James Smartbf086112011-08-21 21:48:13 -04004447 /* The accumulated length can exceed the BPL_SIZE. For
4448 * now, use this as the limit
4449 */
4450 if (cmdsize > LPFC_BPL_SIZE)
4451 cmdsize = LPFC_BPL_SIZE;
James Smart12265f62010-10-22 11:05:53 -04004452 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry, ndlp,
4453 ndlp->nlp_DID, ELS_CMD_ACC);
4454 if (!elsiocb)
4455 return 1;
4456
James Smart7851fe22011-07-22 18:36:52 -04004457 elsiocb->iocb.ulpContext = oldiocb->iocb.ulpContext; /* Xri / rx_id */
4458 elsiocb->iocb.unsli3.rcvsli3.ox_id = oldiocb->iocb.unsli3.rcvsli3.ox_id;
4459
James Smart12265f62010-10-22 11:05:53 -04004460 /* Xmit ECHO ACC response tag <ulpIoTag> */
4461 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
4462 "2876 Xmit ECHO ACC response tag x%x xri x%x\n",
4463 elsiocb->iotag, elsiocb->iocb.ulpContext);
4464 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
4465 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
4466 pcmd += sizeof(uint32_t);
4467 memcpy(pcmd, data, cmdsize - sizeof(uint32_t));
4468
4469 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
4470 "Issue ACC ECHO: did:x%x flg:x%x",
4471 ndlp->nlp_DID, ndlp->nlp_flag, 0);
4472
4473 phba->fc_stat.elsXmitACC++;
4474 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
James Smart12265f62010-10-22 11:05:53 -04004475
4476 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
4477 if (rc == IOCB_ERROR) {
4478 lpfc_els_free_iocb(phba, elsiocb);
4479 return 1;
4480 }
4481 return 0;
4482}
4483
4484/**
James Smart3621a712009-04-06 18:47:14 -04004485 * lpfc_els_disc_adisc - Issue remaining adisc iocbs to npr nodes of a vport
James Smarte59058c2008-08-24 21:49:00 -04004486 * @vport: pointer to a host virtual N_Port data structure.
4487 *
4488 * This routine issues Address Discover (ADISC) ELS commands to those
4489 * N_Ports which are in node port recovery state and ADISC has not been issued
4490 * for the @vport. Each time an ELS ADISC IOCB is issued by invoking the
4491 * lpfc_issue_els_adisc() routine, the per @vport number of discover count
4492 * (num_disc_nodes) shall be incremented. If the num_disc_nodes reaches a
4493 * pre-configured threshold (cfg_discovery_threads), the @vport fc_flag will
4494 * be marked with FC_NLP_MORE bit and the process of issuing remaining ADISC
4495 * IOCBs quit for later pick up. On the other hand, after walking through
4496 * all the ndlps with the @vport and there is none ADISC IOCB issued, the
4497 * @vport fc_flag shall be cleared with FC_NLP_MORE bit indicating there is
4498 * no more ADISC need to be sent.
4499 *
4500 * Return code
4501 * The number of N_Ports with adisc issued.
4502 **/
dea31012005-04-17 16:05:31 -05004503int
James Smart2e0fef82007-06-17 19:56:36 -05004504lpfc_els_disc_adisc(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05004505{
James Smart2e0fef82007-06-17 19:56:36 -05004506 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05004507 struct lpfc_nodelist *ndlp, *next_ndlp;
James Smart2e0fef82007-06-17 19:56:36 -05004508 int sentadisc = 0;
dea31012005-04-17 16:05:31 -05004509
James Smart685f0bf2007-04-25 09:53:08 -04004510 /* go thru NPR nodes and issue any remaining ELS ADISCs */
James Smart2e0fef82007-06-17 19:56:36 -05004511 list_for_each_entry_safe(ndlp, next_ndlp, &vport->fc_nodes, nlp_listp) {
James Smarte47c9092008-02-08 18:49:26 -05004512 if (!NLP_CHK_NODE_ACT(ndlp))
4513 continue;
James Smart685f0bf2007-04-25 09:53:08 -04004514 if (ndlp->nlp_state == NLP_STE_NPR_NODE &&
4515 (ndlp->nlp_flag & NLP_NPR_2B_DISC) != 0 &&
4516 (ndlp->nlp_flag & NLP_NPR_ADISC) != 0) {
James Smart2e0fef82007-06-17 19:56:36 -05004517 spin_lock_irq(shost->host_lock);
James Smart685f0bf2007-04-25 09:53:08 -04004518 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
James Smart2e0fef82007-06-17 19:56:36 -05004519 spin_unlock_irq(shost->host_lock);
James Smart685f0bf2007-04-25 09:53:08 -04004520 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05004521 lpfc_nlp_set_state(vport, ndlp, NLP_STE_ADISC_ISSUE);
4522 lpfc_issue_els_adisc(vport, ndlp, 0);
James Smart685f0bf2007-04-25 09:53:08 -04004523 sentadisc++;
James Smart2e0fef82007-06-17 19:56:36 -05004524 vport->num_disc_nodes++;
4525 if (vport->num_disc_nodes >=
James Smart3de2a652007-08-02 11:09:59 -04004526 vport->cfg_discovery_threads) {
James Smart2e0fef82007-06-17 19:56:36 -05004527 spin_lock_irq(shost->host_lock);
4528 vport->fc_flag |= FC_NLP_MORE;
4529 spin_unlock_irq(shost->host_lock);
James Smart685f0bf2007-04-25 09:53:08 -04004530 break;
dea31012005-04-17 16:05:31 -05004531 }
4532 }
4533 }
4534 if (sentadisc == 0) {
James Smart2e0fef82007-06-17 19:56:36 -05004535 spin_lock_irq(shost->host_lock);
4536 vport->fc_flag &= ~FC_NLP_MORE;
4537 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05004538 }
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004539 return sentadisc;
dea31012005-04-17 16:05:31 -05004540}
4541
James Smarte59058c2008-08-24 21:49:00 -04004542/**
James Smart3621a712009-04-06 18:47:14 -04004543 * lpfc_els_disc_plogi - Issue plogi for all npr nodes of a vport before adisc
James Smarte59058c2008-08-24 21:49:00 -04004544 * @vport: pointer to a host virtual N_Port data structure.
4545 *
4546 * This routine issues Port Login (PLOGI) ELS commands to all the N_Ports
4547 * which are in node port recovery state, with a @vport. Each time an ELS
4548 * ADISC PLOGI IOCB is issued by invoking the lpfc_issue_els_plogi() routine,
4549 * the per @vport number of discover count (num_disc_nodes) shall be
4550 * incremented. If the num_disc_nodes reaches a pre-configured threshold
4551 * (cfg_discovery_threads), the @vport fc_flag will be marked with FC_NLP_MORE
4552 * bit set and quit the process of issuing remaining ADISC PLOGIN IOCBs for
4553 * later pick up. On the other hand, after walking through all the ndlps with
4554 * the @vport and there is none ADISC PLOGI IOCB issued, the @vport fc_flag
4555 * shall be cleared with the FC_NLP_MORE bit indicating there is no more ADISC
4556 * PLOGI need to be sent.
4557 *
4558 * Return code
4559 * The number of N_Ports with plogi issued.
4560 **/
dea31012005-04-17 16:05:31 -05004561int
James Smart2e0fef82007-06-17 19:56:36 -05004562lpfc_els_disc_plogi(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05004563{
James Smart2e0fef82007-06-17 19:56:36 -05004564 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05004565 struct lpfc_nodelist *ndlp, *next_ndlp;
James Smart2e0fef82007-06-17 19:56:36 -05004566 int sentplogi = 0;
dea31012005-04-17 16:05:31 -05004567
James Smart2e0fef82007-06-17 19:56:36 -05004568 /* go thru NPR nodes and issue any remaining ELS PLOGIs */
4569 list_for_each_entry_safe(ndlp, next_ndlp, &vport->fc_nodes, nlp_listp) {
James Smarte47c9092008-02-08 18:49:26 -05004570 if (!NLP_CHK_NODE_ACT(ndlp))
4571 continue;
James Smart685f0bf2007-04-25 09:53:08 -04004572 if (ndlp->nlp_state == NLP_STE_NPR_NODE &&
4573 (ndlp->nlp_flag & NLP_NPR_2B_DISC) != 0 &&
4574 (ndlp->nlp_flag & NLP_DELAY_TMO) == 0 &&
4575 (ndlp->nlp_flag & NLP_NPR_ADISC) == 0) {
4576 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05004577 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
4578 lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0);
James Smart685f0bf2007-04-25 09:53:08 -04004579 sentplogi++;
James Smart2e0fef82007-06-17 19:56:36 -05004580 vport->num_disc_nodes++;
4581 if (vport->num_disc_nodes >=
James Smart3de2a652007-08-02 11:09:59 -04004582 vport->cfg_discovery_threads) {
James Smart2e0fef82007-06-17 19:56:36 -05004583 spin_lock_irq(shost->host_lock);
4584 vport->fc_flag |= FC_NLP_MORE;
4585 spin_unlock_irq(shost->host_lock);
James Smart685f0bf2007-04-25 09:53:08 -04004586 break;
dea31012005-04-17 16:05:31 -05004587 }
4588 }
4589 }
James Smart87af33f2007-10-27 13:37:43 -04004590 if (sentplogi) {
4591 lpfc_set_disctmo(vport);
4592 }
4593 else {
James Smart2e0fef82007-06-17 19:56:36 -05004594 spin_lock_irq(shost->host_lock);
4595 vport->fc_flag &= ~FC_NLP_MORE;
4596 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05004597 }
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004598 return sentplogi;
dea31012005-04-17 16:05:31 -05004599}
4600
James Smarte59058c2008-08-24 21:49:00 -04004601/**
James Smart3621a712009-04-06 18:47:14 -04004602 * lpfc_els_flush_rscn - Clean up any rscn activities with a vport
James Smarte59058c2008-08-24 21:49:00 -04004603 * @vport: pointer to a host virtual N_Port data structure.
4604 *
4605 * This routine cleans up any Registration State Change Notification
4606 * (RSCN) activity with a @vport. Note that the fc_rscn_flush flag of the
4607 * @vport together with the host_lock is used to prevent multiple thread
4608 * trying to access the RSCN array on a same @vport at the same time.
4609 **/
James Smart92d7f7b2007-06-17 19:56:38 -05004610void
James Smart2e0fef82007-06-17 19:56:36 -05004611lpfc_els_flush_rscn(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05004612{
James Smart2e0fef82007-06-17 19:56:36 -05004613 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
4614 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05004615 int i;
4616
James Smart7f5f3d02008-02-08 18:50:14 -05004617 spin_lock_irq(shost->host_lock);
4618 if (vport->fc_rscn_flush) {
4619 /* Another thread is walking fc_rscn_id_list on this vport */
4620 spin_unlock_irq(shost->host_lock);
4621 return;
4622 }
4623 /* Indicate we are walking lpfc_els_flush_rscn on this vport */
4624 vport->fc_rscn_flush = 1;
4625 spin_unlock_irq(shost->host_lock);
4626
James Smart2e0fef82007-06-17 19:56:36 -05004627 for (i = 0; i < vport->fc_rscn_id_cnt; i++) {
James Smart92d7f7b2007-06-17 19:56:38 -05004628 lpfc_in_buf_free(phba, vport->fc_rscn_id_list[i]);
James Smart2e0fef82007-06-17 19:56:36 -05004629 vport->fc_rscn_id_list[i] = NULL;
dea31012005-04-17 16:05:31 -05004630 }
James Smart2e0fef82007-06-17 19:56:36 -05004631 spin_lock_irq(shost->host_lock);
4632 vport->fc_rscn_id_cnt = 0;
4633 vport->fc_flag &= ~(FC_RSCN_MODE | FC_RSCN_DISCOVERY);
4634 spin_unlock_irq(shost->host_lock);
4635 lpfc_can_disctmo(vport);
James Smart7f5f3d02008-02-08 18:50:14 -05004636 /* Indicate we are done walking this fc_rscn_id_list */
4637 vport->fc_rscn_flush = 0;
dea31012005-04-17 16:05:31 -05004638}
4639
James Smarte59058c2008-08-24 21:49:00 -04004640/**
James Smart3621a712009-04-06 18:47:14 -04004641 * lpfc_rscn_payload_check - Check whether there is a pending rscn to a did
James Smarte59058c2008-08-24 21:49:00 -04004642 * @vport: pointer to a host virtual N_Port data structure.
4643 * @did: remote destination port identifier.
4644 *
4645 * This routine checks whether there is any pending Registration State
4646 * Configuration Notification (RSCN) to a @did on @vport.
4647 *
4648 * Return code
4649 * None zero - The @did matched with a pending rscn
4650 * 0 - not able to match @did with a pending rscn
4651 **/
dea31012005-04-17 16:05:31 -05004652int
James Smart2e0fef82007-06-17 19:56:36 -05004653lpfc_rscn_payload_check(struct lpfc_vport *vport, uint32_t did)
dea31012005-04-17 16:05:31 -05004654{
4655 D_ID ns_did;
4656 D_ID rscn_did;
dea31012005-04-17 16:05:31 -05004657 uint32_t *lp;
James Smart92d7f7b2007-06-17 19:56:38 -05004658 uint32_t payload_len, i;
James Smart7f5f3d02008-02-08 18:50:14 -05004659 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05004660
4661 ns_did.un.word = did;
dea31012005-04-17 16:05:31 -05004662
4663 /* Never match fabric nodes for RSCNs */
4664 if ((did & Fabric_DID_MASK) == Fabric_DID_MASK)
James Smart2e0fef82007-06-17 19:56:36 -05004665 return 0;
dea31012005-04-17 16:05:31 -05004666
4667 /* If we are doing a FULL RSCN rediscovery, match everything */
James Smart2e0fef82007-06-17 19:56:36 -05004668 if (vport->fc_flag & FC_RSCN_DISCOVERY)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004669 return did;
dea31012005-04-17 16:05:31 -05004670
James Smart7f5f3d02008-02-08 18:50:14 -05004671 spin_lock_irq(shost->host_lock);
4672 if (vport->fc_rscn_flush) {
4673 /* Another thread is walking fc_rscn_id_list on this vport */
4674 spin_unlock_irq(shost->host_lock);
4675 return 0;
4676 }
4677 /* Indicate we are walking fc_rscn_id_list on this vport */
4678 vport->fc_rscn_flush = 1;
4679 spin_unlock_irq(shost->host_lock);
James Smart2e0fef82007-06-17 19:56:36 -05004680 for (i = 0; i < vport->fc_rscn_id_cnt; i++) {
James Smart92d7f7b2007-06-17 19:56:38 -05004681 lp = vport->fc_rscn_id_list[i]->virt;
4682 payload_len = be32_to_cpu(*lp++ & ~ELS_CMD_MASK);
4683 payload_len -= sizeof(uint32_t); /* take off word 0 */
dea31012005-04-17 16:05:31 -05004684 while (payload_len) {
James Smart92d7f7b2007-06-17 19:56:38 -05004685 rscn_did.un.word = be32_to_cpu(*lp++);
4686 payload_len -= sizeof(uint32_t);
James Smarteaf15d52008-12-04 22:39:29 -05004687 switch (rscn_did.un.b.resv & RSCN_ADDRESS_FORMAT_MASK) {
4688 case RSCN_ADDRESS_FORMAT_PORT:
James Smart6fb120a2009-05-22 14:52:59 -04004689 if ((ns_did.un.b.domain == rscn_did.un.b.domain)
4690 && (ns_did.un.b.area == rscn_did.un.b.area)
4691 && (ns_did.un.b.id == rscn_did.un.b.id))
James Smart7f5f3d02008-02-08 18:50:14 -05004692 goto return_did_out;
dea31012005-04-17 16:05:31 -05004693 break;
James Smarteaf15d52008-12-04 22:39:29 -05004694 case RSCN_ADDRESS_FORMAT_AREA:
dea31012005-04-17 16:05:31 -05004695 if ((ns_did.un.b.domain == rscn_did.un.b.domain)
4696 && (ns_did.un.b.area == rscn_did.un.b.area))
James Smart7f5f3d02008-02-08 18:50:14 -05004697 goto return_did_out;
dea31012005-04-17 16:05:31 -05004698 break;
James Smarteaf15d52008-12-04 22:39:29 -05004699 case RSCN_ADDRESS_FORMAT_DOMAIN:
dea31012005-04-17 16:05:31 -05004700 if (ns_did.un.b.domain == rscn_did.un.b.domain)
James Smart7f5f3d02008-02-08 18:50:14 -05004701 goto return_did_out;
dea31012005-04-17 16:05:31 -05004702 break;
James Smarteaf15d52008-12-04 22:39:29 -05004703 case RSCN_ADDRESS_FORMAT_FABRIC:
James Smart7f5f3d02008-02-08 18:50:14 -05004704 goto return_did_out;
dea31012005-04-17 16:05:31 -05004705 }
4706 }
James Smart92d7f7b2007-06-17 19:56:38 -05004707 }
James Smart7f5f3d02008-02-08 18:50:14 -05004708 /* Indicate we are done with walking fc_rscn_id_list on this vport */
4709 vport->fc_rscn_flush = 0;
James Smart92d7f7b2007-06-17 19:56:38 -05004710 return 0;
James Smart7f5f3d02008-02-08 18:50:14 -05004711return_did_out:
4712 /* Indicate we are done with walking fc_rscn_id_list on this vport */
4713 vport->fc_rscn_flush = 0;
4714 return did;
dea31012005-04-17 16:05:31 -05004715}
4716
James Smarte59058c2008-08-24 21:49:00 -04004717/**
James Smart3621a712009-04-06 18:47:14 -04004718 * lpfc_rscn_recovery_check - Send recovery event to vport nodes matching rscn
James Smarte59058c2008-08-24 21:49:00 -04004719 * @vport: pointer to a host virtual N_Port data structure.
4720 *
4721 * This routine sends recovery (NLP_EVT_DEVICE_RECOVERY) event to the
4722 * state machine for a @vport's nodes that are with pending RSCN (Registration
4723 * State Change Notification).
4724 *
4725 * Return code
4726 * 0 - Successful (currently alway return 0)
4727 **/
dea31012005-04-17 16:05:31 -05004728static int
James Smart2e0fef82007-06-17 19:56:36 -05004729lpfc_rscn_recovery_check(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05004730{
James Smart685f0bf2007-04-25 09:53:08 -04004731 struct lpfc_nodelist *ndlp = NULL;
dea31012005-04-17 16:05:31 -05004732
James Smart0d2b6b82008-06-14 22:52:47 -04004733 /* Move all affected nodes by pending RSCNs to NPR state. */
James Smart2e0fef82007-06-17 19:56:36 -05004734 list_for_each_entry(ndlp, &vport->fc_nodes, nlp_listp) {
James Smarte47c9092008-02-08 18:49:26 -05004735 if (!NLP_CHK_NODE_ACT(ndlp) ||
James Smart0d2b6b82008-06-14 22:52:47 -04004736 (ndlp->nlp_state == NLP_STE_UNUSED_NODE) ||
4737 !lpfc_rscn_payload_check(vport, ndlp->nlp_DID))
dea31012005-04-17 16:05:31 -05004738 continue;
James Smart2e0fef82007-06-17 19:56:36 -05004739 lpfc_disc_state_machine(vport, ndlp, NULL,
James Smart0d2b6b82008-06-14 22:52:47 -04004740 NLP_EVT_DEVICE_RECOVERY);
4741 lpfc_cancel_retry_delay_tmo(vport, ndlp);
dea31012005-04-17 16:05:31 -05004742 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004743 return 0;
dea31012005-04-17 16:05:31 -05004744}
4745
James Smarte59058c2008-08-24 21:49:00 -04004746/**
James Smart3621a712009-04-06 18:47:14 -04004747 * lpfc_send_rscn_event - Send an RSCN event to management application
James Smartddcc50f2008-12-04 22:38:46 -05004748 * @vport: pointer to a host virtual N_Port data structure.
4749 * @cmdiocb: pointer to lpfc command iocb data structure.
4750 *
4751 * lpfc_send_rscn_event sends an RSCN netlink event to management
4752 * applications.
4753 */
4754static void
4755lpfc_send_rscn_event(struct lpfc_vport *vport,
4756 struct lpfc_iocbq *cmdiocb)
4757{
4758 struct lpfc_dmabuf *pcmd;
4759 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
4760 uint32_t *payload_ptr;
4761 uint32_t payload_len;
4762 struct lpfc_rscn_event_header *rscn_event_data;
4763
4764 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
4765 payload_ptr = (uint32_t *) pcmd->virt;
4766 payload_len = be32_to_cpu(*payload_ptr & ~ELS_CMD_MASK);
4767
4768 rscn_event_data = kmalloc(sizeof(struct lpfc_rscn_event_header) +
4769 payload_len, GFP_KERNEL);
4770 if (!rscn_event_data) {
4771 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
4772 "0147 Failed to allocate memory for RSCN event\n");
4773 return;
4774 }
4775 rscn_event_data->event_type = FC_REG_RSCN_EVENT;
4776 rscn_event_data->payload_length = payload_len;
4777 memcpy(rscn_event_data->rscn_payload, payload_ptr,
4778 payload_len);
4779
4780 fc_host_post_vendor_event(shost,
4781 fc_get_event_number(),
4782 sizeof(struct lpfc_els_event_header) + payload_len,
4783 (char *)rscn_event_data,
4784 LPFC_NL_VENDOR_ID);
4785
4786 kfree(rscn_event_data);
4787}
4788
4789/**
James Smart3621a712009-04-06 18:47:14 -04004790 * lpfc_els_rcv_rscn - Process an unsolicited rscn iocb
James Smarte59058c2008-08-24 21:49:00 -04004791 * @vport: pointer to a host virtual N_Port data structure.
4792 * @cmdiocb: pointer to lpfc command iocb data structure.
4793 * @ndlp: pointer to a node-list data structure.
4794 *
4795 * This routine processes an unsolicited RSCN (Registration State Change
4796 * Notification) IOCB. First, the payload of the unsolicited RSCN is walked
4797 * to invoke fc_host_post_event() routine to the FC transport layer. If the
4798 * discover state machine is about to begin discovery, it just accepts the
4799 * RSCN and the discovery process will satisfy the RSCN. If this RSCN only
4800 * contains N_Port IDs for other vports on this HBA, it just accepts the
4801 * RSCN and ignore processing it. If the state machine is in the recovery
4802 * state, the fc_rscn_id_list of this @vport is walked and the
4803 * lpfc_rscn_recovery_check() routine is invoked to send recovery event for
4804 * all nodes that match RSCN payload. Otherwise, the lpfc_els_handle_rscn()
4805 * routine is invoked to handle the RSCN event.
4806 *
4807 * Return code
4808 * 0 - Just sent the acc response
4809 * 1 - Sent the acc response and waited for name server completion
4810 **/
dea31012005-04-17 16:05:31 -05004811static int
James Smart2e0fef82007-06-17 19:56:36 -05004812lpfc_els_rcv_rscn(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
James Smart51ef4c22007-08-02 11:10:31 -04004813 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05004814{
James Smart2e0fef82007-06-17 19:56:36 -05004815 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
4816 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05004817 struct lpfc_dmabuf *pcmd;
James Smart92d7f7b2007-06-17 19:56:38 -05004818 uint32_t *lp, *datap;
dea31012005-04-17 16:05:31 -05004819 IOCB_t *icmd;
James Smart92d7f7b2007-06-17 19:56:38 -05004820 uint32_t payload_len, length, nportid, *cmd;
James Smart7f5f3d02008-02-08 18:50:14 -05004821 int rscn_cnt;
James Smart92d7f7b2007-06-17 19:56:38 -05004822 int rscn_id = 0, hba_id = 0;
James Smartd2873e42006-08-18 17:46:43 -04004823 int i;
dea31012005-04-17 16:05:31 -05004824
4825 icmd = &cmdiocb->iocb;
4826 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
4827 lp = (uint32_t *) pcmd->virt;
4828
James Smart92d7f7b2007-06-17 19:56:38 -05004829 payload_len = be32_to_cpu(*lp++ & ~ELS_CMD_MASK);
4830 payload_len -= sizeof(uint32_t); /* take off word 0 */
dea31012005-04-17 16:05:31 -05004831 /* RSCN received */
James Smarte8b62012007-08-02 11:10:09 -04004832 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
4833 "0214 RSCN received Data: x%x x%x x%x x%x\n",
James Smart7f5f3d02008-02-08 18:50:14 -05004834 vport->fc_flag, payload_len, *lp,
4835 vport->fc_rscn_id_cnt);
James Smartddcc50f2008-12-04 22:38:46 -05004836
4837 /* Send an RSCN event to the management application */
4838 lpfc_send_rscn_event(vport, cmdiocb);
4839
James Smartd2873e42006-08-18 17:46:43 -04004840 for (i = 0; i < payload_len/sizeof(uint32_t); i++)
James Smart2e0fef82007-06-17 19:56:36 -05004841 fc_host_post_event(shost, fc_get_event_number(),
James Smartd2873e42006-08-18 17:46:43 -04004842 FCH_EVT_RSCN, lp[i]);
4843
dea31012005-04-17 16:05:31 -05004844 /* If we are about to begin discovery, just ACC the RSCN.
4845 * Discovery processing will satisfy it.
4846 */
James Smart2e0fef82007-06-17 19:56:36 -05004847 if (vport->port_state <= LPFC_NS_QRY) {
James Smart858c9f62007-06-17 19:56:39 -05004848 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
4849 "RCV RSCN ignore: did:x%x/ste:x%x flg:x%x",
4850 ndlp->nlp_DID, vport->port_state, ndlp->nlp_flag);
4851
James Smart51ef4c22007-08-02 11:10:31 -04004852 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004853 return 0;
dea31012005-04-17 16:05:31 -05004854 }
4855
James Smart92d7f7b2007-06-17 19:56:38 -05004856 /* If this RSCN just contains NPortIDs for other vports on this HBA,
4857 * just ACC and ignore it.
4858 */
4859 if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
James Smart3de2a652007-08-02 11:09:59 -04004860 !(vport->cfg_peer_port_login)) {
James Smart92d7f7b2007-06-17 19:56:38 -05004861 i = payload_len;
4862 datap = lp;
4863 while (i > 0) {
4864 nportid = *datap++;
4865 nportid = ((be32_to_cpu(nportid)) & Mask_DID);
4866 i -= sizeof(uint32_t);
4867 rscn_id++;
James Smart549e55c2007-08-02 11:09:51 -04004868 if (lpfc_find_vport_by_did(phba, nportid))
4869 hba_id++;
James Smart92d7f7b2007-06-17 19:56:38 -05004870 }
4871 if (rscn_id == hba_id) {
4872 /* ALL NPortIDs in RSCN are on HBA */
James Smarte8b62012007-08-02 11:10:09 -04004873 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
James Smartd7c255b2008-08-24 21:50:00 -04004874 "0219 Ignore RSCN "
James Smarte8b62012007-08-02 11:10:09 -04004875 "Data: x%x x%x x%x x%x\n",
4876 vport->fc_flag, payload_len,
James Smart7f5f3d02008-02-08 18:50:14 -05004877 *lp, vport->fc_rscn_id_cnt);
James Smart858c9f62007-06-17 19:56:39 -05004878 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
4879 "RCV RSCN vport: did:x%x/ste:x%x flg:x%x",
4880 ndlp->nlp_DID, vport->port_state,
4881 ndlp->nlp_flag);
4882
James Smart92d7f7b2007-06-17 19:56:38 -05004883 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb,
James Smart51ef4c22007-08-02 11:10:31 -04004884 ndlp, NULL);
James Smart92d7f7b2007-06-17 19:56:38 -05004885 return 0;
4886 }
4887 }
4888
James Smart7f5f3d02008-02-08 18:50:14 -05004889 spin_lock_irq(shost->host_lock);
4890 if (vport->fc_rscn_flush) {
4891 /* Another thread is walking fc_rscn_id_list on this vport */
James Smart7f5f3d02008-02-08 18:50:14 -05004892 vport->fc_flag |= FC_RSCN_DISCOVERY;
James Smart97957242009-12-21 17:03:15 -05004893 spin_unlock_irq(shost->host_lock);
James Smart58da1ff2008-04-07 10:15:56 -04004894 /* Send back ACC */
4895 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
James Smart7f5f3d02008-02-08 18:50:14 -05004896 return 0;
4897 }
4898 /* Indicate we are walking fc_rscn_id_list on this vport */
4899 vport->fc_rscn_flush = 1;
4900 spin_unlock_irq(shost->host_lock);
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02004901 /* Get the array count after successfully have the token */
James Smart7f5f3d02008-02-08 18:50:14 -05004902 rscn_cnt = vport->fc_rscn_id_cnt;
dea31012005-04-17 16:05:31 -05004903 /* If we are already processing an RSCN, save the received
4904 * RSCN payload buffer, cmdiocb->context2 to process later.
4905 */
James Smart2e0fef82007-06-17 19:56:36 -05004906 if (vport->fc_flag & (FC_RSCN_MODE | FC_NDISC_ACTIVE)) {
James Smart858c9f62007-06-17 19:56:39 -05004907 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
4908 "RCV RSCN defer: did:x%x/ste:x%x flg:x%x",
4909 ndlp->nlp_DID, vport->port_state, ndlp->nlp_flag);
4910
James Smart09372822008-01-11 01:52:54 -05004911 spin_lock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05004912 vport->fc_flag |= FC_RSCN_DEFERRED;
4913 if ((rscn_cnt < FC_MAX_HOLD_RSCN) &&
James Smart2e0fef82007-06-17 19:56:36 -05004914 !(vport->fc_flag & FC_RSCN_DISCOVERY)) {
James Smart2e0fef82007-06-17 19:56:36 -05004915 vport->fc_flag |= FC_RSCN_MODE;
4916 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05004917 if (rscn_cnt) {
4918 cmd = vport->fc_rscn_id_list[rscn_cnt-1]->virt;
4919 length = be32_to_cpu(*cmd & ~ELS_CMD_MASK);
4920 }
4921 if ((rscn_cnt) &&
4922 (payload_len + length <= LPFC_BPL_SIZE)) {
4923 *cmd &= ELS_CMD_MASK;
James Smart7f5f3d02008-02-08 18:50:14 -05004924 *cmd |= cpu_to_be32(payload_len + length);
James Smart92d7f7b2007-06-17 19:56:38 -05004925 memcpy(((uint8_t *)cmd) + length, lp,
4926 payload_len);
4927 } else {
4928 vport->fc_rscn_id_list[rscn_cnt] = pcmd;
4929 vport->fc_rscn_id_cnt++;
4930 /* If we zero, cmdiocb->context2, the calling
4931 * routine will not try to free it.
4932 */
4933 cmdiocb->context2 = NULL;
4934 }
dea31012005-04-17 16:05:31 -05004935 /* Deferred RSCN */
James Smarte8b62012007-08-02 11:10:09 -04004936 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
4937 "0235 Deferred RSCN "
4938 "Data: x%x x%x x%x\n",
4939 vport->fc_rscn_id_cnt, vport->fc_flag,
4940 vport->port_state);
dea31012005-04-17 16:05:31 -05004941 } else {
James Smart2e0fef82007-06-17 19:56:36 -05004942 vport->fc_flag |= FC_RSCN_DISCOVERY;
4943 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05004944 /* ReDiscovery RSCN */
James Smarte8b62012007-08-02 11:10:09 -04004945 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
4946 "0234 ReDiscovery RSCN "
4947 "Data: x%x x%x x%x\n",
4948 vport->fc_rscn_id_cnt, vport->fc_flag,
4949 vport->port_state);
dea31012005-04-17 16:05:31 -05004950 }
James Smart7f5f3d02008-02-08 18:50:14 -05004951 /* Indicate we are done walking fc_rscn_id_list on this vport */
4952 vport->fc_rscn_flush = 0;
dea31012005-04-17 16:05:31 -05004953 /* Send back ACC */
James Smart51ef4c22007-08-02 11:10:31 -04004954 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
dea31012005-04-17 16:05:31 -05004955 /* send RECOVERY event for ALL nodes that match RSCN payload */
James Smart2e0fef82007-06-17 19:56:36 -05004956 lpfc_rscn_recovery_check(vport);
James Smart09372822008-01-11 01:52:54 -05004957 spin_lock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05004958 vport->fc_flag &= ~FC_RSCN_DEFERRED;
James Smart09372822008-01-11 01:52:54 -05004959 spin_unlock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004960 return 0;
dea31012005-04-17 16:05:31 -05004961 }
James Smart858c9f62007-06-17 19:56:39 -05004962 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
4963 "RCV RSCN: did:x%x/ste:x%x flg:x%x",
4964 ndlp->nlp_DID, vport->port_state, ndlp->nlp_flag);
4965
James Smart2e0fef82007-06-17 19:56:36 -05004966 spin_lock_irq(shost->host_lock);
4967 vport->fc_flag |= FC_RSCN_MODE;
4968 spin_unlock_irq(shost->host_lock);
4969 vport->fc_rscn_id_list[vport->fc_rscn_id_cnt++] = pcmd;
James Smart7f5f3d02008-02-08 18:50:14 -05004970 /* Indicate we are done walking fc_rscn_id_list on this vport */
4971 vport->fc_rscn_flush = 0;
dea31012005-04-17 16:05:31 -05004972 /*
4973 * If we zero, cmdiocb->context2, the calling routine will
4974 * not try to free it.
4975 */
4976 cmdiocb->context2 = NULL;
James Smart2e0fef82007-06-17 19:56:36 -05004977 lpfc_set_disctmo(vport);
dea31012005-04-17 16:05:31 -05004978 /* Send back ACC */
James Smart51ef4c22007-08-02 11:10:31 -04004979 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
dea31012005-04-17 16:05:31 -05004980 /* send RECOVERY event for ALL nodes that match RSCN payload */
James Smart2e0fef82007-06-17 19:56:36 -05004981 lpfc_rscn_recovery_check(vport);
James Smart2e0fef82007-06-17 19:56:36 -05004982 return lpfc_els_handle_rscn(vport);
dea31012005-04-17 16:05:31 -05004983}
4984
James Smarte59058c2008-08-24 21:49:00 -04004985/**
James Smart3621a712009-04-06 18:47:14 -04004986 * lpfc_els_handle_rscn - Handle rscn for a vport
James Smarte59058c2008-08-24 21:49:00 -04004987 * @vport: pointer to a host virtual N_Port data structure.
4988 *
4989 * This routine handles the Registration State Configuration Notification
4990 * (RSCN) for a @vport. If login to NameServer does not exist, a new ndlp shall
4991 * be created and a Port Login (PLOGI) to the NameServer is issued. Otherwise,
4992 * if the ndlp to NameServer exists, a Common Transport (CT) command to the
4993 * NameServer shall be issued. If CT command to the NameServer fails to be
4994 * issued, the lpfc_els_flush_rscn() routine shall be invoked to clean up any
4995 * RSCN activities with the @vport.
4996 *
4997 * Return code
4998 * 0 - Cleaned up rscn on the @vport
4999 * 1 - Wait for plogi to name server before proceed
5000 **/
dea31012005-04-17 16:05:31 -05005001int
James Smart2e0fef82007-06-17 19:56:36 -05005002lpfc_els_handle_rscn(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05005003{
5004 struct lpfc_nodelist *ndlp;
James Smart2e0fef82007-06-17 19:56:36 -05005005 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05005006
James Smart92d7f7b2007-06-17 19:56:38 -05005007 /* Ignore RSCN if the port is being torn down. */
5008 if (vport->load_flag & FC_UNLOADING) {
5009 lpfc_els_flush_rscn(vport);
5010 return 0;
5011 }
5012
dea31012005-04-17 16:05:31 -05005013 /* Start timer for RSCN processing */
James Smart2e0fef82007-06-17 19:56:36 -05005014 lpfc_set_disctmo(vport);
dea31012005-04-17 16:05:31 -05005015
5016 /* RSCN processed */
James Smarte8b62012007-08-02 11:10:09 -04005017 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
5018 "0215 RSCN processed Data: x%x x%x x%x x%x\n",
5019 vport->fc_flag, 0, vport->fc_rscn_id_cnt,
5020 vport->port_state);
dea31012005-04-17 16:05:31 -05005021
5022 /* To process RSCN, first compare RSCN data with NameServer */
James Smart2e0fef82007-06-17 19:56:36 -05005023 vport->fc_ns_retry = 0;
James Smart0ff10d42008-01-11 01:52:36 -05005024 vport->num_disc_nodes = 0;
5025
James Smart2e0fef82007-06-17 19:56:36 -05005026 ndlp = lpfc_findnode_did(vport, NameServer_DID);
James Smarte47c9092008-02-08 18:49:26 -05005027 if (ndlp && NLP_CHK_NODE_ACT(ndlp)
5028 && ndlp->nlp_state == NLP_STE_UNMAPPED_NODE) {
dea31012005-04-17 16:05:31 -05005029 /* Good ndlp, issue CT Request to NameServer */
James Smart92d7f7b2007-06-17 19:56:38 -05005030 if (lpfc_ns_cmd(vport, SLI_CTNS_GID_FT, 0, 0) == 0)
dea31012005-04-17 16:05:31 -05005031 /* Wait for NameServer query cmpl before we can
5032 continue */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05005033 return 1;
dea31012005-04-17 16:05:31 -05005034 } else {
5035 /* If login to NameServer does not exist, issue one */
5036 /* Good status, issue PLOGI to NameServer */
James Smart2e0fef82007-06-17 19:56:36 -05005037 ndlp = lpfc_findnode_did(vport, NameServer_DID);
James Smarte47c9092008-02-08 18:49:26 -05005038 if (ndlp && NLP_CHK_NODE_ACT(ndlp))
dea31012005-04-17 16:05:31 -05005039 /* Wait for NameServer login cmpl before we can
5040 continue */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05005041 return 1;
James Smart2e0fef82007-06-17 19:56:36 -05005042
James Smarte47c9092008-02-08 18:49:26 -05005043 if (ndlp) {
5044 ndlp = lpfc_enable_node(vport, ndlp,
5045 NLP_STE_PLOGI_ISSUE);
5046 if (!ndlp) {
5047 lpfc_els_flush_rscn(vport);
5048 return 0;
5049 }
5050 ndlp->nlp_prev_state = NLP_STE_UNUSED_NODE;
dea31012005-04-17 16:05:31 -05005051 } else {
James Smarte47c9092008-02-08 18:49:26 -05005052 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
5053 if (!ndlp) {
5054 lpfc_els_flush_rscn(vport);
5055 return 0;
5056 }
James Smart2e0fef82007-06-17 19:56:36 -05005057 lpfc_nlp_init(vport, ndlp, NameServer_DID);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05005058 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05005059 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
dea31012005-04-17 16:05:31 -05005060 }
James Smarte47c9092008-02-08 18:49:26 -05005061 ndlp->nlp_type |= NLP_FABRIC;
5062 lpfc_issue_els_plogi(vport, NameServer_DID, 0);
5063 /* Wait for NameServer login cmpl before we can
5064 * continue
5065 */
5066 return 1;
dea31012005-04-17 16:05:31 -05005067 }
5068
James Smart2e0fef82007-06-17 19:56:36 -05005069 lpfc_els_flush_rscn(vport);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05005070 return 0;
dea31012005-04-17 16:05:31 -05005071}
5072
James Smarte59058c2008-08-24 21:49:00 -04005073/**
James Smart3621a712009-04-06 18:47:14 -04005074 * lpfc_els_rcv_flogi - Process an unsolicited flogi iocb
James Smarte59058c2008-08-24 21:49:00 -04005075 * @vport: pointer to a host virtual N_Port data structure.
5076 * @cmdiocb: pointer to lpfc command iocb data structure.
5077 * @ndlp: pointer to a node-list data structure.
5078 *
5079 * This routine processes Fabric Login (FLOGI) IOCB received as an ELS
5080 * unsolicited event. An unsolicited FLOGI can be received in a point-to-
5081 * point topology. As an unsolicited FLOGI should not be received in a loop
5082 * mode, any unsolicited FLOGI received in loop mode shall be ignored. The
5083 * lpfc_check_sparm() routine is invoked to check the parameters in the
5084 * unsolicited FLOGI. If parameters validation failed, the routine
5085 * lpfc_els_rsp_reject() shall be called with reject reason code set to
5086 * LSEXP_SPARM_OPTIONS to reject the FLOGI. Otherwise, the Port WWN in the
5087 * FLOGI shall be compared with the Port WWN of the @vport to determine who
5088 * will initiate PLOGI. The higher lexicographical value party shall has
5089 * higher priority (as the winning port) and will initiate PLOGI and
5090 * communicate Port_IDs (Addresses) for both nodes in PLOGI. The result
5091 * of this will be marked in the @vport fc_flag field with FC_PT2PT_PLOGI
5092 * and then the lpfc_els_rsp_acc() routine is invoked to accept the FLOGI.
5093 *
5094 * Return code
5095 * 0 - Successfully processed the unsolicited flogi
5096 * 1 - Failed to process the unsolicited flogi
5097 **/
dea31012005-04-17 16:05:31 -05005098static int
James Smart2e0fef82007-06-17 19:56:36 -05005099lpfc_els_rcv_flogi(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
James Smart51ef4c22007-08-02 11:10:31 -04005100 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05005101{
James Smart2e0fef82007-06-17 19:56:36 -05005102 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
5103 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05005104 struct lpfc_dmabuf *pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
5105 uint32_t *lp = (uint32_t *) pcmd->virt;
5106 IOCB_t *icmd = &cmdiocb->iocb;
5107 struct serv_parm *sp;
5108 LPFC_MBOXQ_t *mbox;
5109 struct ls_rjt stat;
5110 uint32_t cmd, did;
5111 int rc;
James Smarte74c03c2013-04-17 20:15:19 -04005112 uint32_t fc_flag = 0;
5113 uint32_t port_state = 0;
dea31012005-04-17 16:05:31 -05005114
5115 cmd = *lp++;
5116 sp = (struct serv_parm *) lp;
5117
5118 /* FLOGI received */
5119
James Smart2e0fef82007-06-17 19:56:36 -05005120 lpfc_set_disctmo(vport);
dea31012005-04-17 16:05:31 -05005121
James Smart76a95d72010-11-20 23:11:48 -05005122 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
dea31012005-04-17 16:05:31 -05005123 /* We should never receive a FLOGI in loop mode, ignore it */
5124 did = icmd->un.elsreq64.remoteID;
5125
5126 /* An FLOGI ELS command <elsCmd> was received from DID <did> in
5127 Loop Mode */
James Smarte8b62012007-08-02 11:10:09 -04005128 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
5129 "0113 An FLOGI ELS command x%x was "
5130 "received from DID x%x in Loop Mode\n",
5131 cmd, did);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05005132 return 1;
dea31012005-04-17 16:05:31 -05005133 }
5134
James Smart341af102010-01-26 23:07:37 -05005135 if ((lpfc_check_sparm(vport, ndlp, sp, CLASS3, 1))) {
dea31012005-04-17 16:05:31 -05005136 /* For a FLOGI we accept, then if our portname is greater
5137 * then the remote portname we initiate Nport login.
5138 */
5139
James Smart2e0fef82007-06-17 19:56:36 -05005140 rc = memcmp(&vport->fc_portname, &sp->portName,
James Smart92d7f7b2007-06-17 19:56:38 -05005141 sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -05005142
5143 if (!rc) {
James Smart1b511972011-12-13 13:23:09 -05005144 if (phba->sli_rev < LPFC_SLI_REV4) {
5145 mbox = mempool_alloc(phba->mbox_mem_pool,
5146 GFP_KERNEL);
5147 if (!mbox)
5148 return 1;
5149 lpfc_linkdown(phba);
5150 lpfc_init_link(phba, mbox,
5151 phba->cfg_topology,
5152 phba->cfg_link_speed);
5153 mbox->u.mb.un.varInitLnk.lipsr_AL_PA = 0;
5154 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
5155 mbox->vport = vport;
5156 rc = lpfc_sli_issue_mbox(phba, mbox,
5157 MBX_NOWAIT);
5158 lpfc_set_loopback_flag(phba);
5159 if (rc == MBX_NOT_FINISHED)
5160 mempool_free(mbox, phba->mbox_mem_pool);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05005161 return 1;
James Smart1b511972011-12-13 13:23:09 -05005162 } else {
5163 /* abort the flogi coming back to ourselves
5164 * due to external loopback on the port.
5165 */
5166 lpfc_els_abort_flogi(phba);
5167 return 0;
dea31012005-04-17 16:05:31 -05005168 }
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05005169 } else if (rc > 0) { /* greater than */
James Smart2e0fef82007-06-17 19:56:36 -05005170 spin_lock_irq(shost->host_lock);
5171 vport->fc_flag |= FC_PT2PT_PLOGI;
5172 spin_unlock_irq(shost->host_lock);
James Smart939723a2012-05-09 21:19:03 -04005173
5174 /* If we have the high WWPN we can assign our own
5175 * myDID; otherwise, we have to WAIT for a PLOGI
5176 * from the remote NPort to find out what it
5177 * will be.
5178 */
James Smarte6446432012-05-09 21:16:42 -04005179 vport->fc_myDID = PT2PT_LocalID;
James Smarte74c03c2013-04-17 20:15:19 -04005180 } else
5181 vport->fc_myDID = PT2PT_RemoteID;
James Smart939723a2012-05-09 21:19:03 -04005182
5183 /*
5184 * The vport state should go to LPFC_FLOGI only
5185 * AFTER we issue a FLOGI, not receive one.
5186 */
James Smart2e0fef82007-06-17 19:56:36 -05005187 spin_lock_irq(shost->host_lock);
James Smarte74c03c2013-04-17 20:15:19 -04005188 fc_flag = vport->fc_flag;
5189 port_state = vport->port_state;
James Smart2e0fef82007-06-17 19:56:36 -05005190 vport->fc_flag |= FC_PT2PT;
5191 vport->fc_flag &= ~(FC_FABRIC | FC_PUBLIC_LOOP);
James Smarte74c03c2013-04-17 20:15:19 -04005192 vport->port_state = LPFC_FLOGI;
James Smart2e0fef82007-06-17 19:56:36 -05005193 spin_unlock_irq(shost->host_lock);
James Smarte74c03c2013-04-17 20:15:19 -04005194 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
5195 "3311 Rcv Flogi PS x%x new PS x%x "
5196 "fc_flag x%x new fc_flag x%x\n",
5197 port_state, vport->port_state,
5198 fc_flag, vport->fc_flag);
James Smart939723a2012-05-09 21:19:03 -04005199
5200 /*
5201 * We temporarily set fc_myDID to make it look like we are
5202 * a Fabric. This is done just so we end up with the right
5203 * did / sid on the FLOGI ACC rsp.
5204 */
5205 did = vport->fc_myDID;
5206 vport->fc_myDID = Fabric_DID;
5207
dea31012005-04-17 16:05:31 -05005208 } else {
5209 /* Reject this request because invalid parameters */
5210 stat.un.b.lsRjtRsvd0 = 0;
5211 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
5212 stat.un.b.lsRjtRsnCodeExp = LSEXP_SPARM_OPTIONS;
5213 stat.un.b.vendorUnique = 0;
James Smart939723a2012-05-09 21:19:03 -04005214
5215 /*
5216 * We temporarily set fc_myDID to make it look like we are
5217 * a Fabric. This is done just so we end up with the right
5218 * did / sid on the FLOGI LS_RJT rsp.
5219 */
5220 did = vport->fc_myDID;
5221 vport->fc_myDID = Fabric_DID;
5222
James Smart858c9f62007-06-17 19:56:39 -05005223 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp,
5224 NULL);
James Smart939723a2012-05-09 21:19:03 -04005225
5226 /* Now lets put fc_myDID back to what its supposed to be */
5227 vport->fc_myDID = did;
5228
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05005229 return 1;
dea31012005-04-17 16:05:31 -05005230 }
5231
5232 /* Send back ACC */
James Smart51ef4c22007-08-02 11:10:31 -04005233 lpfc_els_rsp_acc(vport, ELS_CMD_PLOGI, cmdiocb, ndlp, NULL);
dea31012005-04-17 16:05:31 -05005234
James Smart939723a2012-05-09 21:19:03 -04005235 /* Now lets put fc_myDID back to what its supposed to be */
5236 vport->fc_myDID = did;
5237
James Smarte6446432012-05-09 21:16:42 -04005238 if (!(vport->fc_flag & FC_PT2PT_PLOGI)) {
James Smart939723a2012-05-09 21:19:03 -04005239
James Smarte6446432012-05-09 21:16:42 -04005240 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5241 if (!mbox)
5242 goto fail;
5243
5244 lpfc_config_link(phba, mbox);
5245
5246 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
5247 mbox->vport = vport;
5248 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
5249 if (rc == MBX_NOT_FINISHED) {
5250 mempool_free(mbox, phba->mbox_mem_pool);
5251 goto fail;
5252 }
5253 }
5254
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05005255 return 0;
James Smarte6446432012-05-09 21:16:42 -04005256fail:
5257 return 1;
dea31012005-04-17 16:05:31 -05005258}
5259
James Smarte59058c2008-08-24 21:49:00 -04005260/**
James Smart3621a712009-04-06 18:47:14 -04005261 * lpfc_els_rcv_rnid - Process an unsolicited rnid iocb
James Smarte59058c2008-08-24 21:49:00 -04005262 * @vport: pointer to a host virtual N_Port data structure.
5263 * @cmdiocb: pointer to lpfc command iocb data structure.
5264 * @ndlp: pointer to a node-list data structure.
5265 *
5266 * This routine processes Request Node Identification Data (RNID) IOCB
5267 * received as an ELS unsolicited event. Only when the RNID specified format
5268 * 0x0 or 0xDF (Topology Discovery Specific Node Identification Data)
5269 * present, this routine will invoke the lpfc_els_rsp_rnid_acc() routine to
5270 * Accept (ACC) the RNID ELS command. All the other RNID formats are
5271 * rejected by invoking the lpfc_els_rsp_reject() routine.
5272 *
5273 * Return code
5274 * 0 - Successfully processed rnid iocb (currently always return 0)
5275 **/
dea31012005-04-17 16:05:31 -05005276static int
James Smart2e0fef82007-06-17 19:56:36 -05005277lpfc_els_rcv_rnid(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
5278 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05005279{
5280 struct lpfc_dmabuf *pcmd;
5281 uint32_t *lp;
5282 IOCB_t *icmd;
5283 RNID *rn;
5284 struct ls_rjt stat;
James Smarteb016562014-09-03 12:58:06 -04005285 uint32_t cmd;
dea31012005-04-17 16:05:31 -05005286
5287 icmd = &cmdiocb->iocb;
dea31012005-04-17 16:05:31 -05005288 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
5289 lp = (uint32_t *) pcmd->virt;
5290
5291 cmd = *lp++;
5292 rn = (RNID *) lp;
5293
5294 /* RNID received */
5295
5296 switch (rn->Format) {
5297 case 0:
5298 case RNID_TOPOLOGY_DISC:
5299 /* Send back ACC */
James Smart2e0fef82007-06-17 19:56:36 -05005300 lpfc_els_rsp_rnid_acc(vport, rn->Format, cmdiocb, ndlp);
dea31012005-04-17 16:05:31 -05005301 break;
5302 default:
5303 /* Reject this request because format not supported */
5304 stat.un.b.lsRjtRsvd0 = 0;
5305 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
5306 stat.un.b.lsRjtRsnCodeExp = LSEXP_CANT_GIVE_DATA;
5307 stat.un.b.vendorUnique = 0;
James Smart858c9f62007-06-17 19:56:39 -05005308 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp,
5309 NULL);
dea31012005-04-17 16:05:31 -05005310 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05005311 return 0;
dea31012005-04-17 16:05:31 -05005312}
5313
James Smarte59058c2008-08-24 21:49:00 -04005314/**
James Smart12265f62010-10-22 11:05:53 -04005315 * lpfc_els_rcv_echo - Process an unsolicited echo iocb
5316 * @vport: pointer to a host virtual N_Port data structure.
5317 * @cmdiocb: pointer to lpfc command iocb data structure.
5318 * @ndlp: pointer to a node-list data structure.
5319 *
5320 * Return code
5321 * 0 - Successfully processed echo iocb (currently always return 0)
5322 **/
5323static int
5324lpfc_els_rcv_echo(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
5325 struct lpfc_nodelist *ndlp)
5326{
5327 uint8_t *pcmd;
5328
5329 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) cmdiocb->context2)->virt);
5330
5331 /* skip over first word of echo command to find echo data */
5332 pcmd += sizeof(uint32_t);
5333
5334 lpfc_els_rsp_echo_acc(vport, pcmd, cmdiocb, ndlp);
5335 return 0;
5336}
5337
5338/**
James Smart3621a712009-04-06 18:47:14 -04005339 * lpfc_els_rcv_lirr - Process an unsolicited lirr iocb
James Smarte59058c2008-08-24 21:49:00 -04005340 * @vport: pointer to a host virtual N_Port data structure.
5341 * @cmdiocb: pointer to lpfc command iocb data structure.
5342 * @ndlp: pointer to a node-list data structure.
5343 *
5344 * This routine processes a Link Incident Report Registration(LIRR) IOCB
5345 * received as an ELS unsolicited event. Currently, this function just invokes
5346 * the lpfc_els_rsp_reject() routine to reject the LIRR IOCB unconditionally.
5347 *
5348 * Return code
5349 * 0 - Successfully processed lirr iocb (currently always return 0)
5350 **/
dea31012005-04-17 16:05:31 -05005351static int
James Smart2e0fef82007-06-17 19:56:36 -05005352lpfc_els_rcv_lirr(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
5353 struct lpfc_nodelist *ndlp)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005354{
5355 struct ls_rjt stat;
5356
5357 /* For now, unconditionally reject this command */
5358 stat.un.b.lsRjtRsvd0 = 0;
5359 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
5360 stat.un.b.lsRjtRsnCodeExp = LSEXP_CANT_GIVE_DATA;
5361 stat.un.b.vendorUnique = 0;
James Smart858c9f62007-06-17 19:56:39 -05005362 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005363 return 0;
5364}
5365
James Smarte59058c2008-08-24 21:49:00 -04005366/**
James Smart5ffc2662009-11-18 15:39:44 -05005367 * lpfc_els_rcv_rrq - Process an unsolicited rrq iocb
5368 * @vport: pointer to a host virtual N_Port data structure.
5369 * @cmdiocb: pointer to lpfc command iocb data structure.
5370 * @ndlp: pointer to a node-list data structure.
5371 *
5372 * This routine processes a Reinstate Recovery Qualifier (RRQ) IOCB
5373 * received as an ELS unsolicited event. A request to RRQ shall only
5374 * be accepted if the Originator Nx_Port N_Port_ID or the Responder
5375 * Nx_Port N_Port_ID of the target Exchange is the same as the
5376 * N_Port_ID of the Nx_Port that makes the request. If the RRQ is
5377 * not accepted, an LS_RJT with reason code "Unable to perform
5378 * command request" and reason code explanation "Invalid Originator
5379 * S_ID" shall be returned. For now, we just unconditionally accept
5380 * RRQ from the target.
5381 **/
5382static void
5383lpfc_els_rcv_rrq(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
5384 struct lpfc_nodelist *ndlp)
5385{
5386 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
James Smart19ca7602010-11-20 23:11:55 -05005387 if (vport->phba->sli_rev == LPFC_SLI_REV4)
5388 lpfc_els_clear_rrq(vport, cmdiocb, ndlp);
James Smart5ffc2662009-11-18 15:39:44 -05005389}
5390
5391/**
James Smart12265f62010-10-22 11:05:53 -04005392 * lpfc_els_rsp_rls_acc - Completion callbk func for MBX_READ_LNK_STAT mbox cmd
5393 * @phba: pointer to lpfc hba data structure.
5394 * @pmb: pointer to the driver internal queue element for mailbox command.
5395 *
5396 * This routine is the completion callback function for the MBX_READ_LNK_STAT
5397 * mailbox command. This callback function is to actually send the Accept
5398 * (ACC) response to a Read Port Status (RPS) unsolicited IOCB event. It
5399 * collects the link statistics from the completion of the MBX_READ_LNK_STAT
5400 * mailbox command, constructs the RPS response with the link statistics
5401 * collected, and then invokes the lpfc_sli_issue_iocb() routine to send ACC
5402 * response to the RPS.
5403 *
5404 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
5405 * will be incremented by 1 for holding the ndlp and the reference to ndlp
5406 * will be stored into the context1 field of the IOCB for the completion
5407 * callback function to the RPS Accept Response ELS IOCB command.
5408 *
5409 **/
5410static void
5411lpfc_els_rsp_rls_acc(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
5412{
5413 MAILBOX_t *mb;
5414 IOCB_t *icmd;
5415 struct RLS_RSP *rls_rsp;
5416 uint8_t *pcmd;
5417 struct lpfc_iocbq *elsiocb;
5418 struct lpfc_nodelist *ndlp;
James Smart7851fe22011-07-22 18:36:52 -04005419 uint16_t oxid;
5420 uint16_t rxid;
James Smart12265f62010-10-22 11:05:53 -04005421 uint32_t cmdsize;
5422
5423 mb = &pmb->u.mb;
5424
5425 ndlp = (struct lpfc_nodelist *) pmb->context2;
James Smart7851fe22011-07-22 18:36:52 -04005426 rxid = (uint16_t) ((unsigned long)(pmb->context1) & 0xffff);
5427 oxid = (uint16_t) (((unsigned long)(pmb->context1) >> 16) & 0xffff);
James Smart12265f62010-10-22 11:05:53 -04005428 pmb->context1 = NULL;
5429 pmb->context2 = NULL;
5430
5431 if (mb->mbxStatus) {
5432 mempool_free(pmb, phba->mbox_mem_pool);
5433 return;
5434 }
5435
5436 cmdsize = sizeof(struct RLS_RSP) + sizeof(uint32_t);
James Smart12265f62010-10-22 11:05:53 -04005437 elsiocb = lpfc_prep_els_iocb(phba->pport, 0, cmdsize,
5438 lpfc_max_els_tries, ndlp,
5439 ndlp->nlp_DID, ELS_CMD_ACC);
5440
5441 /* Decrement the ndlp reference count from previous mbox command */
5442 lpfc_nlp_put(ndlp);
5443
James Smart37db57e2012-05-09 21:17:16 -04005444 if (!elsiocb) {
5445 mempool_free(pmb, phba->mbox_mem_pool);
James Smart12265f62010-10-22 11:05:53 -04005446 return;
James Smart37db57e2012-05-09 21:17:16 -04005447 }
James Smart12265f62010-10-22 11:05:53 -04005448
5449 icmd = &elsiocb->iocb;
James Smart7851fe22011-07-22 18:36:52 -04005450 icmd->ulpContext = rxid;
5451 icmd->unsli3.rcvsli3.ox_id = oxid;
James Smart12265f62010-10-22 11:05:53 -04005452
5453 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
5454 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
5455 pcmd += sizeof(uint32_t); /* Skip past command */
5456 rls_rsp = (struct RLS_RSP *)pcmd;
5457
5458 rls_rsp->linkFailureCnt = cpu_to_be32(mb->un.varRdLnk.linkFailureCnt);
5459 rls_rsp->lossSyncCnt = cpu_to_be32(mb->un.varRdLnk.lossSyncCnt);
5460 rls_rsp->lossSignalCnt = cpu_to_be32(mb->un.varRdLnk.lossSignalCnt);
5461 rls_rsp->primSeqErrCnt = cpu_to_be32(mb->un.varRdLnk.primSeqErrCnt);
5462 rls_rsp->invalidXmitWord = cpu_to_be32(mb->un.varRdLnk.invalidXmitWord);
5463 rls_rsp->crcCnt = cpu_to_be32(mb->un.varRdLnk.crcCnt);
James Smart37db57e2012-05-09 21:17:16 -04005464 mempool_free(pmb, phba->mbox_mem_pool);
James Smart12265f62010-10-22 11:05:53 -04005465 /* Xmit ELS RLS ACC response tag <ulpIoTag> */
5466 lpfc_printf_vlog(ndlp->vport, KERN_INFO, LOG_ELS,
5467 "2874 Xmit ELS RLS ACC response tag x%x xri x%x, "
5468 "did x%x, nlp_flag x%x, nlp_state x%x, rpi x%x\n",
5469 elsiocb->iotag, elsiocb->iocb.ulpContext,
5470 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
5471 ndlp->nlp_rpi);
5472 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
5473 phba->fc_stat.elsXmitACC++;
5474 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) == IOCB_ERROR)
5475 lpfc_els_free_iocb(phba, elsiocb);
5476}
5477
5478/**
James Smart3621a712009-04-06 18:47:14 -04005479 * lpfc_els_rsp_rps_acc - Completion callbk func for MBX_READ_LNK_STAT mbox cmd
James Smarte59058c2008-08-24 21:49:00 -04005480 * @phba: pointer to lpfc hba data structure.
5481 * @pmb: pointer to the driver internal queue element for mailbox command.
5482 *
5483 * This routine is the completion callback function for the MBX_READ_LNK_STAT
5484 * mailbox command. This callback function is to actually send the Accept
5485 * (ACC) response to a Read Port Status (RPS) unsolicited IOCB event. It
5486 * collects the link statistics from the completion of the MBX_READ_LNK_STAT
5487 * mailbox command, constructs the RPS response with the link statistics
5488 * collected, and then invokes the lpfc_sli_issue_iocb() routine to send ACC
5489 * response to the RPS.
5490 *
5491 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
5492 * will be incremented by 1 for holding the ndlp and the reference to ndlp
5493 * will be stored into the context1 field of the IOCB for the completion
5494 * callback function to the RPS Accept Response ELS IOCB command.
5495 *
5496 **/
Jamie Wellnitz082c0262006-02-28 19:25:30 -05005497static void
James Smart329f9bc2007-04-25 09:53:01 -04005498lpfc_els_rsp_rps_acc(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005499{
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005500 MAILBOX_t *mb;
5501 IOCB_t *icmd;
5502 RPS_RSP *rps_rsp;
5503 uint8_t *pcmd;
5504 struct lpfc_iocbq *elsiocb;
5505 struct lpfc_nodelist *ndlp;
James Smart7851fe22011-07-22 18:36:52 -04005506 uint16_t status;
5507 uint16_t oxid;
5508 uint16_t rxid;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005509 uint32_t cmdsize;
5510
James Smart04c68492009-05-22 14:52:52 -04005511 mb = &pmb->u.mb;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005512
5513 ndlp = (struct lpfc_nodelist *) pmb->context2;
James Smart7851fe22011-07-22 18:36:52 -04005514 rxid = (uint16_t) ((unsigned long)(pmb->context1) & 0xffff);
5515 oxid = (uint16_t) (((unsigned long)(pmb->context1) >> 16) & 0xffff);
Randy Dunlap041976f2006-06-25 01:58:51 -07005516 pmb->context1 = NULL;
5517 pmb->context2 = NULL;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005518
5519 if (mb->mbxStatus) {
James Smart329f9bc2007-04-25 09:53:01 -04005520 mempool_free(pmb, phba->mbox_mem_pool);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005521 return;
5522 }
5523
5524 cmdsize = sizeof(RPS_RSP) + sizeof(uint32_t);
James Smart329f9bc2007-04-25 09:53:01 -04005525 mempool_free(pmb, phba->mbox_mem_pool);
James Smart2e0fef82007-06-17 19:56:36 -05005526 elsiocb = lpfc_prep_els_iocb(phba->pport, 0, cmdsize,
5527 lpfc_max_els_tries, ndlp,
5528 ndlp->nlp_DID, ELS_CMD_ACC);
James Smartfa4066b2008-01-11 01:53:27 -05005529
5530 /* Decrement the ndlp reference count from previous mbox command */
James Smart329f9bc2007-04-25 09:53:01 -04005531 lpfc_nlp_put(ndlp);
James Smartfa4066b2008-01-11 01:53:27 -05005532
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05005533 if (!elsiocb)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005534 return;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005535
5536 icmd = &elsiocb->iocb;
James Smart7851fe22011-07-22 18:36:52 -04005537 icmd->ulpContext = rxid;
5538 icmd->unsli3.rcvsli3.ox_id = oxid;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005539
5540 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
5541 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
James Smart92d7f7b2007-06-17 19:56:38 -05005542 pcmd += sizeof(uint32_t); /* Skip past command */
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005543 rps_rsp = (RPS_RSP *)pcmd;
5544
James Smart76a95d72010-11-20 23:11:48 -05005545 if (phba->fc_topology != LPFC_TOPOLOGY_LOOP)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005546 status = 0x10;
5547 else
5548 status = 0x8;
James Smart2e0fef82007-06-17 19:56:36 -05005549 if (phba->pport->fc_flag & FC_FABRIC)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005550 status |= 0x4;
5551
5552 rps_rsp->rsvd1 = 0;
James Smart09372822008-01-11 01:52:54 -05005553 rps_rsp->portStatus = cpu_to_be16(status);
5554 rps_rsp->linkFailureCnt = cpu_to_be32(mb->un.varRdLnk.linkFailureCnt);
5555 rps_rsp->lossSyncCnt = cpu_to_be32(mb->un.varRdLnk.lossSyncCnt);
5556 rps_rsp->lossSignalCnt = cpu_to_be32(mb->un.varRdLnk.lossSignalCnt);
5557 rps_rsp->primSeqErrCnt = cpu_to_be32(mb->un.varRdLnk.primSeqErrCnt);
5558 rps_rsp->invalidXmitWord = cpu_to_be32(mb->un.varRdLnk.invalidXmitWord);
5559 rps_rsp->crcCnt = cpu_to_be32(mb->un.varRdLnk.crcCnt);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005560 /* Xmit ELS RPS ACC response tag <ulpIoTag> */
James Smarte8b62012007-08-02 11:10:09 -04005561 lpfc_printf_vlog(ndlp->vport, KERN_INFO, LOG_ELS,
5562 "0118 Xmit ELS RPS ACC response tag x%x xri x%x, "
5563 "did x%x, nlp_flag x%x, nlp_state x%x, rpi x%x\n",
5564 elsiocb->iotag, elsiocb->iocb.ulpContext,
5565 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
5566 ndlp->nlp_rpi);
James Smart858c9f62007-06-17 19:56:39 -05005567 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005568 phba->fc_stat.elsXmitACC++;
James Smart3772a992009-05-22 14:50:54 -04005569 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) == IOCB_ERROR)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005570 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005571 return;
5572}
5573
James Smarte59058c2008-08-24 21:49:00 -04005574/**
James Smart12265f62010-10-22 11:05:53 -04005575 * lpfc_els_rcv_rls - Process an unsolicited rls iocb
5576 * @vport: pointer to a host virtual N_Port data structure.
5577 * @cmdiocb: pointer to lpfc command iocb data structure.
5578 * @ndlp: pointer to a node-list data structure.
5579 *
5580 * This routine processes Read Port Status (RPL) IOCB received as an
5581 * ELS unsolicited event. It first checks the remote port state. If the
5582 * remote port is not in NLP_STE_UNMAPPED_NODE state or NLP_STE_MAPPED_NODE
5583 * state, it invokes the lpfc_els_rsl_reject() routine to send the reject
5584 * response. Otherwise, it issue the MBX_READ_LNK_STAT mailbox command
5585 * for reading the HBA link statistics. It is for the callback function,
5586 * lpfc_els_rsp_rls_acc(), set to the MBX_READ_LNK_STAT mailbox command
5587 * to actually sending out RPL Accept (ACC) response.
5588 *
5589 * Return codes
5590 * 0 - Successfully processed rls iocb (currently always return 0)
5591 **/
5592static int
5593lpfc_els_rcv_rls(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
5594 struct lpfc_nodelist *ndlp)
5595{
5596 struct lpfc_hba *phba = vport->phba;
5597 LPFC_MBOXQ_t *mbox;
5598 struct lpfc_dmabuf *pcmd;
5599 struct ls_rjt stat;
5600
5601 if ((ndlp->nlp_state != NLP_STE_UNMAPPED_NODE) &&
5602 (ndlp->nlp_state != NLP_STE_MAPPED_NODE))
5603 /* reject the unsolicited RPS request and done with it */
5604 goto reject_out;
5605
5606 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
5607
5608 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_ATOMIC);
5609 if (mbox) {
5610 lpfc_read_lnk_stat(phba, mbox);
James Smart7851fe22011-07-22 18:36:52 -04005611 mbox->context1 = (void *)((unsigned long)
5612 ((cmdiocb->iocb.unsli3.rcvsli3.ox_id << 16) |
5613 cmdiocb->iocb.ulpContext)); /* rx_id */
James Smart12265f62010-10-22 11:05:53 -04005614 mbox->context2 = lpfc_nlp_get(ndlp);
5615 mbox->vport = vport;
5616 mbox->mbox_cmpl = lpfc_els_rsp_rls_acc;
5617 if (lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT)
5618 != MBX_NOT_FINISHED)
5619 /* Mbox completion will send ELS Response */
5620 return 0;
5621 /* Decrement reference count used for the failed mbox
5622 * command.
5623 */
5624 lpfc_nlp_put(ndlp);
5625 mempool_free(mbox, phba->mbox_mem_pool);
5626 }
5627reject_out:
5628 /* issue rejection response */
5629 stat.un.b.lsRjtRsvd0 = 0;
5630 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
5631 stat.un.b.lsRjtRsnCodeExp = LSEXP_CANT_GIVE_DATA;
5632 stat.un.b.vendorUnique = 0;
5633 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
5634 return 0;
5635}
5636
5637/**
5638 * lpfc_els_rcv_rtv - Process an unsolicited rtv iocb
5639 * @vport: pointer to a host virtual N_Port data structure.
5640 * @cmdiocb: pointer to lpfc command iocb data structure.
5641 * @ndlp: pointer to a node-list data structure.
5642 *
5643 * This routine processes Read Timout Value (RTV) IOCB received as an
5644 * ELS unsolicited event. It first checks the remote port state. If the
5645 * remote port is not in NLP_STE_UNMAPPED_NODE state or NLP_STE_MAPPED_NODE
5646 * state, it invokes the lpfc_els_rsl_reject() routine to send the reject
5647 * response. Otherwise, it sends the Accept(ACC) response to a Read Timeout
5648 * Value (RTV) unsolicited IOCB event.
5649 *
5650 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
5651 * will be incremented by 1 for holding the ndlp and the reference to ndlp
5652 * will be stored into the context1 field of the IOCB for the completion
5653 * callback function to the RPS Accept Response ELS IOCB command.
5654 *
5655 * Return codes
5656 * 0 - Successfully processed rtv iocb (currently always return 0)
5657 **/
5658static int
5659lpfc_els_rcv_rtv(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
5660 struct lpfc_nodelist *ndlp)
5661{
5662 struct lpfc_hba *phba = vport->phba;
5663 struct ls_rjt stat;
5664 struct RTV_RSP *rtv_rsp;
5665 uint8_t *pcmd;
5666 struct lpfc_iocbq *elsiocb;
5667 uint32_t cmdsize;
5668
5669
5670 if ((ndlp->nlp_state != NLP_STE_UNMAPPED_NODE) &&
5671 (ndlp->nlp_state != NLP_STE_MAPPED_NODE))
5672 /* reject the unsolicited RPS request and done with it */
5673 goto reject_out;
5674
5675 cmdsize = sizeof(struct RTV_RSP) + sizeof(uint32_t);
5676 elsiocb = lpfc_prep_els_iocb(phba->pport, 0, cmdsize,
5677 lpfc_max_els_tries, ndlp,
5678 ndlp->nlp_DID, ELS_CMD_ACC);
5679
5680 if (!elsiocb)
5681 return 1;
5682
5683 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
5684 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
5685 pcmd += sizeof(uint32_t); /* Skip past command */
5686
5687 /* use the command's xri in the response */
James Smart7851fe22011-07-22 18:36:52 -04005688 elsiocb->iocb.ulpContext = cmdiocb->iocb.ulpContext; /* Xri / rx_id */
5689 elsiocb->iocb.unsli3.rcvsli3.ox_id = cmdiocb->iocb.unsli3.rcvsli3.ox_id;
James Smart12265f62010-10-22 11:05:53 -04005690
5691 rtv_rsp = (struct RTV_RSP *)pcmd;
5692
5693 /* populate RTV payload */
5694 rtv_rsp->ratov = cpu_to_be32(phba->fc_ratov * 1000); /* report msecs */
5695 rtv_rsp->edtov = cpu_to_be32(phba->fc_edtov);
5696 bf_set(qtov_edtovres, rtv_rsp, phba->fc_edtovResol ? 1 : 0);
5697 bf_set(qtov_rttov, rtv_rsp, 0); /* Field is for FC ONLY */
5698 rtv_rsp->qtov = cpu_to_be32(rtv_rsp->qtov);
5699
5700 /* Xmit ELS RLS ACC response tag <ulpIoTag> */
5701 lpfc_printf_vlog(ndlp->vport, KERN_INFO, LOG_ELS,
5702 "2875 Xmit ELS RTV ACC response tag x%x xri x%x, "
5703 "did x%x, nlp_flag x%x, nlp_state x%x, rpi x%x, "
5704 "Data: x%x x%x x%x\n",
5705 elsiocb->iotag, elsiocb->iocb.ulpContext,
5706 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
5707 ndlp->nlp_rpi,
5708 rtv_rsp->ratov, rtv_rsp->edtov, rtv_rsp->qtov);
5709 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
5710 phba->fc_stat.elsXmitACC++;
5711 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) == IOCB_ERROR)
5712 lpfc_els_free_iocb(phba, elsiocb);
5713 return 0;
5714
5715reject_out:
5716 /* issue rejection response */
5717 stat.un.b.lsRjtRsvd0 = 0;
5718 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
5719 stat.un.b.lsRjtRsnCodeExp = LSEXP_CANT_GIVE_DATA;
5720 stat.un.b.vendorUnique = 0;
5721 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
5722 return 0;
5723}
5724
5725/* lpfc_els_rcv_rps - Process an unsolicited rps iocb
James Smarte59058c2008-08-24 21:49:00 -04005726 * @vport: pointer to a host virtual N_Port data structure.
5727 * @cmdiocb: pointer to lpfc command iocb data structure.
5728 * @ndlp: pointer to a node-list data structure.
5729 *
5730 * This routine processes Read Port Status (RPS) IOCB received as an
5731 * ELS unsolicited event. It first checks the remote port state. If the
5732 * remote port is not in NLP_STE_UNMAPPED_NODE state or NLP_STE_MAPPED_NODE
5733 * state, it invokes the lpfc_els_rsp_reject() routine to send the reject
5734 * response. Otherwise, it issue the MBX_READ_LNK_STAT mailbox command
5735 * for reading the HBA link statistics. It is for the callback function,
5736 * lpfc_els_rsp_rps_acc(), set to the MBX_READ_LNK_STAT mailbox command
5737 * to actually sending out RPS Accept (ACC) response.
5738 *
5739 * Return codes
5740 * 0 - Successfully processed rps iocb (currently always return 0)
5741 **/
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005742static int
James Smart2e0fef82007-06-17 19:56:36 -05005743lpfc_els_rcv_rps(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
5744 struct lpfc_nodelist *ndlp)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005745{
James Smart2e0fef82007-06-17 19:56:36 -05005746 struct lpfc_hba *phba = vport->phba;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005747 uint32_t *lp;
5748 uint8_t flag;
5749 LPFC_MBOXQ_t *mbox;
5750 struct lpfc_dmabuf *pcmd;
5751 RPS *rps;
5752 struct ls_rjt stat;
5753
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05005754 if ((ndlp->nlp_state != NLP_STE_UNMAPPED_NODE) &&
James Smart90160e02008-08-24 21:49:45 -04005755 (ndlp->nlp_state != NLP_STE_MAPPED_NODE))
5756 /* reject the unsolicited RPS request and done with it */
5757 goto reject_out;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005758
5759 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
5760 lp = (uint32_t *) pcmd->virt;
5761 flag = (be32_to_cpu(*lp++) & 0xf);
5762 rps = (RPS *) lp;
5763
5764 if ((flag == 0) ||
5765 ((flag == 1) && (be32_to_cpu(rps->un.portNum) == 0)) ||
James Smart2e0fef82007-06-17 19:56:36 -05005766 ((flag == 2) && (memcmp(&rps->un.portName, &vport->fc_portname,
James Smart92d7f7b2007-06-17 19:56:38 -05005767 sizeof(struct lpfc_name)) == 0))) {
James Smart2e0fef82007-06-17 19:56:36 -05005768
James Smart92d7f7b2007-06-17 19:56:38 -05005769 printk("Fix me....\n");
5770 dump_stack();
James Smart2e0fef82007-06-17 19:56:36 -05005771 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_ATOMIC);
5772 if (mbox) {
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005773 lpfc_read_lnk_stat(phba, mbox);
James Smart7851fe22011-07-22 18:36:52 -04005774 mbox->context1 = (void *)((unsigned long)
5775 ((cmdiocb->iocb.unsli3.rcvsli3.ox_id << 16) |
5776 cmdiocb->iocb.ulpContext)); /* rx_id */
James Smart329f9bc2007-04-25 09:53:01 -04005777 mbox->context2 = lpfc_nlp_get(ndlp);
James Smart92d7f7b2007-06-17 19:56:38 -05005778 mbox->vport = vport;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005779 mbox->mbox_cmpl = lpfc_els_rsp_rps_acc;
James Smartfa4066b2008-01-11 01:53:27 -05005780 if (lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT)
James Smart0b727fe2007-10-27 13:37:25 -04005781 != MBX_NOT_FINISHED)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005782 /* Mbox completion will send ELS Response */
5783 return 0;
James Smartfa4066b2008-01-11 01:53:27 -05005784 /* Decrement reference count used for the failed mbox
5785 * command.
5786 */
James Smart329f9bc2007-04-25 09:53:01 -04005787 lpfc_nlp_put(ndlp);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005788 mempool_free(mbox, phba->mbox_mem_pool);
5789 }
5790 }
James Smart90160e02008-08-24 21:49:45 -04005791
5792reject_out:
5793 /* issue rejection response */
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005794 stat.un.b.lsRjtRsvd0 = 0;
5795 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
5796 stat.un.b.lsRjtRsnCodeExp = LSEXP_CANT_GIVE_DATA;
5797 stat.un.b.vendorUnique = 0;
James Smart858c9f62007-06-17 19:56:39 -05005798 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005799 return 0;
5800}
5801
James Smart19ca7602010-11-20 23:11:55 -05005802/* lpfc_issue_els_rrq - Process an unsolicited rps iocb
5803 * @vport: pointer to a host virtual N_Port data structure.
5804 * @ndlp: pointer to a node-list data structure.
5805 * @did: DID of the target.
5806 * @rrq: Pointer to the rrq struct.
5807 *
5808 * Build a ELS RRQ command and send it to the target. If the issue_iocb is
5809 * Successful the the completion handler will clear the RRQ.
5810 *
5811 * Return codes
5812 * 0 - Successfully sent rrq els iocb.
5813 * 1 - Failed to send rrq els iocb.
5814 **/
5815static int
5816lpfc_issue_els_rrq(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
5817 uint32_t did, struct lpfc_node_rrq *rrq)
5818{
5819 struct lpfc_hba *phba = vport->phba;
5820 struct RRQ *els_rrq;
5821 IOCB_t *icmd;
5822 struct lpfc_iocbq *elsiocb;
5823 uint8_t *pcmd;
5824 uint16_t cmdsize;
5825 int ret;
5826
5827
5828 if (ndlp != rrq->ndlp)
5829 ndlp = rrq->ndlp;
5830 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp))
5831 return 1;
5832
5833 /* If ndlp is not NULL, we will bump the reference count on it */
5834 cmdsize = (sizeof(uint32_t) + sizeof(struct RRQ));
5835 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, 0, ndlp, did,
5836 ELS_CMD_RRQ);
5837 if (!elsiocb)
5838 return 1;
5839
5840 icmd = &elsiocb->iocb;
5841 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
5842
5843 /* For RRQ request, remainder of payload is Exchange IDs */
5844 *((uint32_t *) (pcmd)) = ELS_CMD_RRQ;
5845 pcmd += sizeof(uint32_t);
5846 els_rrq = (struct RRQ *) pcmd;
5847
James Smartee0f4fe2012-05-09 21:19:14 -04005848 bf_set(rrq_oxid, els_rrq, phba->sli4_hba.xri_ids[rrq->xritag]);
James Smart19ca7602010-11-20 23:11:55 -05005849 bf_set(rrq_rxid, els_rrq, rrq->rxid);
5850 bf_set(rrq_did, els_rrq, vport->fc_myDID);
5851 els_rrq->rrq = cpu_to_be32(els_rrq->rrq);
5852 els_rrq->rrq_exchg = cpu_to_be32(els_rrq->rrq_exchg);
5853
5854
5855 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
5856 "Issue RRQ: did:x%x",
5857 did, rrq->xritag, rrq->rxid);
5858 elsiocb->context_un.rrq = rrq;
5859 elsiocb->iocb_cmpl = lpfc_cmpl_els_rrq;
5860 ret = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
5861
5862 if (ret == IOCB_ERROR) {
5863 lpfc_els_free_iocb(phba, elsiocb);
5864 return 1;
5865 }
5866 return 0;
5867}
5868
5869/**
5870 * lpfc_send_rrq - Sends ELS RRQ if needed.
5871 * @phba: pointer to lpfc hba data structure.
5872 * @rrq: pointer to the active rrq.
5873 *
5874 * This routine will call the lpfc_issue_els_rrq if the rrq is
5875 * still active for the xri. If this function returns a failure then
5876 * the caller needs to clean up the RRQ by calling lpfc_clr_active_rrq.
5877 *
5878 * Returns 0 Success.
5879 * 1 Failure.
5880 **/
5881int
5882lpfc_send_rrq(struct lpfc_hba *phba, struct lpfc_node_rrq *rrq)
5883{
5884 struct lpfc_nodelist *ndlp = lpfc_findnode_did(rrq->vport,
5885 rrq->nlp_DID);
5886 if (lpfc_test_rrq_active(phba, ndlp, rrq->xritag))
5887 return lpfc_issue_els_rrq(rrq->vport, ndlp,
5888 rrq->nlp_DID, rrq);
5889 else
5890 return 1;
5891}
5892
James Smarte59058c2008-08-24 21:49:00 -04005893/**
James Smart3621a712009-04-06 18:47:14 -04005894 * lpfc_els_rsp_rpl_acc - Issue an accept rpl els command
James Smarte59058c2008-08-24 21:49:00 -04005895 * @vport: pointer to a host virtual N_Port data structure.
5896 * @cmdsize: size of the ELS command.
5897 * @oldiocb: pointer to the original lpfc command iocb data structure.
5898 * @ndlp: pointer to a node-list data structure.
5899 *
5900 * This routine issuees an Accept (ACC) Read Port List (RPL) ELS command.
5901 * It is to be called by the lpfc_els_rcv_rpl() routine to accept the RPL.
5902 *
5903 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
5904 * will be incremented by 1 for holding the ndlp and the reference to ndlp
5905 * will be stored into the context1 field of the IOCB for the completion
5906 * callback function to the RPL Accept Response ELS command.
5907 *
5908 * Return code
5909 * 0 - Successfully issued ACC RPL ELS command
5910 * 1 - Failed to issue ACC RPL ELS command
5911 **/
Jamie Wellnitz082c0262006-02-28 19:25:30 -05005912static int
James Smart2e0fef82007-06-17 19:56:36 -05005913lpfc_els_rsp_rpl_acc(struct lpfc_vport *vport, uint16_t cmdsize,
5914 struct lpfc_iocbq *oldiocb, struct lpfc_nodelist *ndlp)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005915{
James Smart2e0fef82007-06-17 19:56:36 -05005916 struct lpfc_hba *phba = vport->phba;
5917 IOCB_t *icmd, *oldcmd;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005918 RPL_RSP rpl_rsp;
5919 struct lpfc_iocbq *elsiocb;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005920 uint8_t *pcmd;
5921
James Smart2e0fef82007-06-17 19:56:36 -05005922 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry, ndlp,
5923 ndlp->nlp_DID, ELS_CMD_ACC);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005924
James Smart488d1462006-03-07 15:02:37 -05005925 if (!elsiocb)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005926 return 1;
James Smart488d1462006-03-07 15:02:37 -05005927
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005928 icmd = &elsiocb->iocb;
5929 oldcmd = &oldiocb->iocb;
James Smart7851fe22011-07-22 18:36:52 -04005930 icmd->ulpContext = oldcmd->ulpContext; /* Xri / rx_id */
5931 icmd->unsli3.rcvsli3.ox_id = oldcmd->unsli3.rcvsli3.ox_id;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005932
5933 pcmd = (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
5934 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
James Smart92d7f7b2007-06-17 19:56:38 -05005935 pcmd += sizeof(uint16_t);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005936 *((uint16_t *)(pcmd)) = be16_to_cpu(cmdsize);
5937 pcmd += sizeof(uint16_t);
5938
5939 /* Setup the RPL ACC payload */
5940 rpl_rsp.listLen = be32_to_cpu(1);
5941 rpl_rsp.index = 0;
5942 rpl_rsp.port_num_blk.portNum = 0;
James Smart2e0fef82007-06-17 19:56:36 -05005943 rpl_rsp.port_num_blk.portID = be32_to_cpu(vport->fc_myDID);
5944 memcpy(&rpl_rsp.port_num_blk.portName, &vport->fc_portname,
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005945 sizeof(struct lpfc_name));
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005946 memcpy(pcmd, &rpl_rsp, cmdsize - sizeof(uint32_t));
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005947 /* Xmit ELS RPL ACC response tag <ulpIoTag> */
James Smarte8b62012007-08-02 11:10:09 -04005948 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
5949 "0120 Xmit ELS RPL ACC response tag x%x "
5950 "xri x%x, did x%x, nlp_flag x%x, nlp_state x%x, "
5951 "rpi x%x\n",
5952 elsiocb->iotag, elsiocb->iocb.ulpContext,
5953 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
5954 ndlp->nlp_rpi);
James Smart858c9f62007-06-17 19:56:39 -05005955 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005956 phba->fc_stat.elsXmitACC++;
James Smart3772a992009-05-22 14:50:54 -04005957 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) ==
5958 IOCB_ERROR) {
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005959 lpfc_els_free_iocb(phba, elsiocb);
5960 return 1;
5961 }
5962 return 0;
5963}
5964
James Smarte59058c2008-08-24 21:49:00 -04005965/**
James Smart3621a712009-04-06 18:47:14 -04005966 * lpfc_els_rcv_rpl - Process an unsolicited rpl iocb
James Smarte59058c2008-08-24 21:49:00 -04005967 * @vport: pointer to a host virtual N_Port data structure.
5968 * @cmdiocb: pointer to lpfc command iocb data structure.
5969 * @ndlp: pointer to a node-list data structure.
5970 *
5971 * This routine processes Read Port List (RPL) IOCB received as an ELS
5972 * unsolicited event. It first checks the remote port state. If the remote
5973 * port is not in NLP_STE_UNMAPPED_NODE and NLP_STE_MAPPED_NODE states, it
5974 * invokes the lpfc_els_rsp_reject() routine to send reject response.
5975 * Otherwise, this routine then invokes the lpfc_els_rsp_rpl_acc() routine
5976 * to accept the RPL.
5977 *
5978 * Return code
5979 * 0 - Successfully processed rpl iocb (currently always return 0)
5980 **/
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005981static int
James Smart2e0fef82007-06-17 19:56:36 -05005982lpfc_els_rcv_rpl(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
5983 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05005984{
5985 struct lpfc_dmabuf *pcmd;
5986 uint32_t *lp;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005987 uint32_t maxsize;
5988 uint16_t cmdsize;
5989 RPL *rpl;
5990 struct ls_rjt stat;
dea31012005-04-17 16:05:31 -05005991
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05005992 if ((ndlp->nlp_state != NLP_STE_UNMAPPED_NODE) &&
5993 (ndlp->nlp_state != NLP_STE_MAPPED_NODE)) {
James Smart90160e02008-08-24 21:49:45 -04005994 /* issue rejection response */
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005995 stat.un.b.lsRjtRsvd0 = 0;
5996 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
5997 stat.un.b.lsRjtRsnCodeExp = LSEXP_CANT_GIVE_DATA;
5998 stat.un.b.vendorUnique = 0;
James Smart858c9f62007-06-17 19:56:39 -05005999 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp,
6000 NULL);
James Smart90160e02008-08-24 21:49:45 -04006001 /* rejected the unsolicited RPL request and done with it */
6002 return 0;
dea31012005-04-17 16:05:31 -05006003 }
6004
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006005 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
6006 lp = (uint32_t *) pcmd->virt;
6007 rpl = (RPL *) (lp + 1);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006008 maxsize = be32_to_cpu(rpl->maxsize);
6009
6010 /* We support only one port */
6011 if ((rpl->index == 0) &&
6012 ((maxsize == 0) ||
6013 ((maxsize * sizeof(uint32_t)) >= sizeof(RPL_RSP)))) {
6014 cmdsize = sizeof(uint32_t) + sizeof(RPL_RSP);
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05006015 } else {
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006016 cmdsize = sizeof(uint32_t) + maxsize * sizeof(uint32_t);
6017 }
James Smart2e0fef82007-06-17 19:56:36 -05006018 lpfc_els_rsp_rpl_acc(vport, cmdsize, cmdiocb, ndlp);
dea31012005-04-17 16:05:31 -05006019
6020 return 0;
6021}
6022
James Smarte59058c2008-08-24 21:49:00 -04006023/**
James Smart3621a712009-04-06 18:47:14 -04006024 * lpfc_els_rcv_farp - Process an unsolicited farp request els command
James Smarte59058c2008-08-24 21:49:00 -04006025 * @vport: pointer to a virtual N_Port data structure.
6026 * @cmdiocb: pointer to lpfc command iocb data structure.
6027 * @ndlp: pointer to a node-list data structure.
6028 *
6029 * This routine processes Fibre Channel Address Resolution Protocol
6030 * (FARP) Request IOCB received as an ELS unsolicited event. Currently,
6031 * the lpfc driver only supports matching on WWPN or WWNN for FARP. As such,
6032 * FARP_MATCH_PORT flag and FARP_MATCH_NODE flag are checked against the
6033 * Match Flag in the FARP request IOCB: if FARP_MATCH_PORT flag is set, the
6034 * remote PortName is compared against the FC PortName stored in the @vport
6035 * data structure; if FARP_MATCH_NODE flag is set, the remote NodeName is
6036 * compared against the FC NodeName stored in the @vport data structure.
6037 * If any of these matches and the FARP_REQUEST_FARPR flag is set in the
6038 * FARP request IOCB Response Flag, the lpfc_issue_els_farpr() routine is
6039 * invoked to send out FARP Response to the remote node. Before sending the
6040 * FARP Response, however, the FARP_REQUEST_PLOGI flag is check in the FARP
6041 * request IOCB Response Flag and, if it is set, the lpfc_issue_els_plogi()
6042 * routine is invoked to log into the remote port first.
6043 *
6044 * Return code
6045 * 0 - Either the FARP Match Mode not supported or successfully processed
6046 **/
dea31012005-04-17 16:05:31 -05006047static int
James Smart2e0fef82007-06-17 19:56:36 -05006048lpfc_els_rcv_farp(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
6049 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05006050{
6051 struct lpfc_dmabuf *pcmd;
6052 uint32_t *lp;
6053 IOCB_t *icmd;
6054 FARP *fp;
6055 uint32_t cmd, cnt, did;
6056
6057 icmd = &cmdiocb->iocb;
6058 did = icmd->un.elsreq64.remoteID;
6059 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
6060 lp = (uint32_t *) pcmd->virt;
6061
6062 cmd = *lp++;
6063 fp = (FARP *) lp;
dea31012005-04-17 16:05:31 -05006064 /* FARP-REQ received from DID <did> */
James Smarte8b62012007-08-02 11:10:09 -04006065 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
6066 "0601 FARP-REQ received from DID x%x\n", did);
dea31012005-04-17 16:05:31 -05006067 /* We will only support match on WWPN or WWNN */
6068 if (fp->Mflags & ~(FARP_MATCH_NODE | FARP_MATCH_PORT)) {
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05006069 return 0;
dea31012005-04-17 16:05:31 -05006070 }
6071
6072 cnt = 0;
6073 /* If this FARP command is searching for my portname */
6074 if (fp->Mflags & FARP_MATCH_PORT) {
James Smart2e0fef82007-06-17 19:56:36 -05006075 if (memcmp(&fp->RportName, &vport->fc_portname,
James Smart92d7f7b2007-06-17 19:56:38 -05006076 sizeof(struct lpfc_name)) == 0)
dea31012005-04-17 16:05:31 -05006077 cnt = 1;
6078 }
6079
6080 /* If this FARP command is searching for my nodename */
6081 if (fp->Mflags & FARP_MATCH_NODE) {
James Smart2e0fef82007-06-17 19:56:36 -05006082 if (memcmp(&fp->RnodeName, &vport->fc_nodename,
James Smart92d7f7b2007-06-17 19:56:38 -05006083 sizeof(struct lpfc_name)) == 0)
dea31012005-04-17 16:05:31 -05006084 cnt = 1;
6085 }
6086
6087 if (cnt) {
6088 if ((ndlp->nlp_state == NLP_STE_UNMAPPED_NODE) ||
6089 (ndlp->nlp_state == NLP_STE_MAPPED_NODE)) {
6090 /* Log back into the node before sending the FARP. */
6091 if (fp->Rflags & FARP_REQUEST_PLOGI) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05006092 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05006093 lpfc_nlp_set_state(vport, ndlp,
James Smartde0c5b32007-04-25 09:52:27 -04006094 NLP_STE_PLOGI_ISSUE);
James Smart2e0fef82007-06-17 19:56:36 -05006095 lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0);
dea31012005-04-17 16:05:31 -05006096 }
6097
6098 /* Send a FARP response to that node */
James Smart2e0fef82007-06-17 19:56:36 -05006099 if (fp->Rflags & FARP_REQUEST_FARPR)
6100 lpfc_issue_els_farpr(vport, did, 0);
dea31012005-04-17 16:05:31 -05006101 }
6102 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05006103 return 0;
dea31012005-04-17 16:05:31 -05006104}
6105
James Smarte59058c2008-08-24 21:49:00 -04006106/**
James Smart3621a712009-04-06 18:47:14 -04006107 * lpfc_els_rcv_farpr - Process an unsolicited farp response iocb
James Smarte59058c2008-08-24 21:49:00 -04006108 * @vport: pointer to a host virtual N_Port data structure.
6109 * @cmdiocb: pointer to lpfc command iocb data structure.
6110 * @ndlp: pointer to a node-list data structure.
6111 *
6112 * This routine processes Fibre Channel Address Resolution Protocol
6113 * Response (FARPR) IOCB received as an ELS unsolicited event. It simply
6114 * invokes the lpfc_els_rsp_acc() routine to the remote node to accept
6115 * the FARP response request.
6116 *
6117 * Return code
6118 * 0 - Successfully processed FARPR IOCB (currently always return 0)
6119 **/
dea31012005-04-17 16:05:31 -05006120static int
James Smart2e0fef82007-06-17 19:56:36 -05006121lpfc_els_rcv_farpr(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
6122 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05006123{
6124 struct lpfc_dmabuf *pcmd;
6125 uint32_t *lp;
6126 IOCB_t *icmd;
6127 uint32_t cmd, did;
6128
6129 icmd = &cmdiocb->iocb;
6130 did = icmd->un.elsreq64.remoteID;
6131 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
6132 lp = (uint32_t *) pcmd->virt;
6133
6134 cmd = *lp++;
6135 /* FARP-RSP received from DID <did> */
James Smarte8b62012007-08-02 11:10:09 -04006136 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
6137 "0600 FARP-RSP received from DID x%x\n", did);
dea31012005-04-17 16:05:31 -05006138 /* ACCEPT the Farp resp request */
James Smart51ef4c22007-08-02 11:10:31 -04006139 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
dea31012005-04-17 16:05:31 -05006140
6141 return 0;
6142}
6143
James Smarte59058c2008-08-24 21:49:00 -04006144/**
James Smart3621a712009-04-06 18:47:14 -04006145 * lpfc_els_rcv_fan - Process an unsolicited fan iocb command
James Smarte59058c2008-08-24 21:49:00 -04006146 * @vport: pointer to a host virtual N_Port data structure.
6147 * @cmdiocb: pointer to lpfc command iocb data structure.
6148 * @fan_ndlp: pointer to a node-list data structure.
6149 *
6150 * This routine processes a Fabric Address Notification (FAN) IOCB
6151 * command received as an ELS unsolicited event. The FAN ELS command will
6152 * only be processed on a physical port (i.e., the @vport represents the
6153 * physical port). The fabric NodeName and PortName from the FAN IOCB are
6154 * compared against those in the phba data structure. If any of those is
6155 * different, the lpfc_initial_flogi() routine is invoked to initialize
6156 * Fabric Login (FLOGI) to the fabric to start the discover over. Otherwise,
6157 * if both of those are identical, the lpfc_issue_fabric_reglogin() routine
6158 * is invoked to register login to the fabric.
6159 *
6160 * Return code
6161 * 0 - Successfully processed fan iocb (currently always return 0).
6162 **/
dea31012005-04-17 16:05:31 -05006163static int
James Smart2e0fef82007-06-17 19:56:36 -05006164lpfc_els_rcv_fan(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
6165 struct lpfc_nodelist *fan_ndlp)
dea31012005-04-17 16:05:31 -05006166{
James Smart2e0fef82007-06-17 19:56:36 -05006167 struct lpfc_hba *phba = vport->phba;
James Smart0d2b6b82008-06-14 22:52:47 -04006168 uint32_t *lp;
6169 FAN *fp;
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05006170
James Smart0d2b6b82008-06-14 22:52:47 -04006171 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS, "0265 FAN received\n");
6172 lp = (uint32_t *)((struct lpfc_dmabuf *)cmdiocb->context2)->virt;
6173 fp = (FAN *) ++lp;
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05006174 /* FAN received; Fan does not have a reply sequence */
James Smart0d2b6b82008-06-14 22:52:47 -04006175 if ((vport == phba->pport) &&
6176 (vport->port_state == LPFC_LOCAL_CFG_LINK)) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05006177 if ((memcmp(&phba->fc_fabparam.nodeName, &fp->FnodeName,
James Smart0d2b6b82008-06-14 22:52:47 -04006178 sizeof(struct lpfc_name))) ||
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05006179 (memcmp(&phba->fc_fabparam.portName, &fp->FportName,
James Smart0d2b6b82008-06-14 22:52:47 -04006180 sizeof(struct lpfc_name)))) {
6181 /* This port has switched fabrics. FLOGI is required */
James Smart76a95d72010-11-20 23:11:48 -05006182 lpfc_issue_init_vfi(vport);
James Smart0d2b6b82008-06-14 22:52:47 -04006183 } else {
6184 /* FAN verified - skip FLOGI */
6185 vport->fc_myDID = vport->fc_prevDID;
James Smart6fb120a2009-05-22 14:52:59 -04006186 if (phba->sli_rev < LPFC_SLI_REV4)
6187 lpfc_issue_fabric_reglogin(vport);
James Smart1b511972011-12-13 13:23:09 -05006188 else {
6189 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
6190 "3138 Need register VFI: (x%x/%x)\n",
6191 vport->fc_prevDID, vport->fc_myDID);
James Smart6fb120a2009-05-22 14:52:59 -04006192 lpfc_issue_reg_vfi(vport);
James Smart1b511972011-12-13 13:23:09 -05006193 }
dea31012005-04-17 16:05:31 -05006194 }
dea31012005-04-17 16:05:31 -05006195 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05006196 return 0;
dea31012005-04-17 16:05:31 -05006197}
6198
James Smarte59058c2008-08-24 21:49:00 -04006199/**
James Smart3621a712009-04-06 18:47:14 -04006200 * lpfc_els_timeout - Handler funciton to the els timer
James Smarte59058c2008-08-24 21:49:00 -04006201 * @ptr: holder for the timer function associated data.
6202 *
6203 * This routine is invoked by the ELS timer after timeout. It posts the ELS
6204 * timer timeout event by setting the WORKER_ELS_TMO bit to the work port
6205 * event bitmap and then invokes the lpfc_worker_wake_up() routine to wake
6206 * up the worker thread. It is for the worker thread to invoke the routine
6207 * lpfc_els_timeout_handler() to work on the posted event WORKER_ELS_TMO.
6208 **/
dea31012005-04-17 16:05:31 -05006209void
6210lpfc_els_timeout(unsigned long ptr)
6211{
James Smart2e0fef82007-06-17 19:56:36 -05006212 struct lpfc_vport *vport = (struct lpfc_vport *) ptr;
6213 struct lpfc_hba *phba = vport->phba;
James Smart5e9d9b82008-06-14 22:52:53 -04006214 uint32_t tmo_posted;
dea31012005-04-17 16:05:31 -05006215 unsigned long iflag;
6216
James Smart2e0fef82007-06-17 19:56:36 -05006217 spin_lock_irqsave(&vport->work_port_lock, iflag);
James Smart5e9d9b82008-06-14 22:52:53 -04006218 tmo_posted = vport->work_port_events & WORKER_ELS_TMO;
James Smart06918ac2014-02-20 09:57:57 -05006219 if ((!tmo_posted) && (!(vport->load_flag & FC_UNLOADING)))
James Smart2e0fef82007-06-17 19:56:36 -05006220 vport->work_port_events |= WORKER_ELS_TMO;
James Smart5e9d9b82008-06-14 22:52:53 -04006221 spin_unlock_irqrestore(&vport->work_port_lock, iflag);
James Smart92d7f7b2007-06-17 19:56:38 -05006222
James Smart06918ac2014-02-20 09:57:57 -05006223 if ((!tmo_posted) && (!(vport->load_flag & FC_UNLOADING)))
James Smart5e9d9b82008-06-14 22:52:53 -04006224 lpfc_worker_wake_up(phba);
dea31012005-04-17 16:05:31 -05006225 return;
6226}
6227
James Smart2a9bf3d2010-06-07 15:24:45 -04006228
James Smarte59058c2008-08-24 21:49:00 -04006229/**
James Smart3621a712009-04-06 18:47:14 -04006230 * lpfc_els_timeout_handler - Process an els timeout event
James Smarte59058c2008-08-24 21:49:00 -04006231 * @vport: pointer to a virtual N_Port data structure.
6232 *
6233 * This routine is the actual handler function that processes an ELS timeout
6234 * event. It walks the ELS ring to get and abort all the IOCBs (except the
6235 * ABORT/CLOSE/FARP/FARPR/FDISC), which are associated with the @vport by
6236 * invoking the lpfc_sli_issue_abort_iotag() routine.
6237 **/
dea31012005-04-17 16:05:31 -05006238void
James Smart2e0fef82007-06-17 19:56:36 -05006239lpfc_els_timeout_handler(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05006240{
James Smart2e0fef82007-06-17 19:56:36 -05006241 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05006242 struct lpfc_sli_ring *pring;
6243 struct lpfc_iocbq *tmp_iocb, *piocb;
6244 IOCB_t *cmd = NULL;
6245 struct lpfc_dmabuf *pcmd;
James Smart2e0fef82007-06-17 19:56:36 -05006246 uint32_t els_command = 0;
dea31012005-04-17 16:05:31 -05006247 uint32_t timeout;
James Smart2e0fef82007-06-17 19:56:36 -05006248 uint32_t remote_ID = 0xffffffff;
James Smart2a9bf3d2010-06-07 15:24:45 -04006249 LIST_HEAD(abort_list);
dea31012005-04-17 16:05:31 -05006250
James Smart2a9bf3d2010-06-07 15:24:45 -04006251
dea31012005-04-17 16:05:31 -05006252 timeout = (uint32_t)(phba->fc_ratov << 1);
6253
6254 pring = &phba->sli.ring[LPFC_ELS_RING];
James Smart06918ac2014-02-20 09:57:57 -05006255 if ((phba->pport->load_flag & FC_UNLOADING))
6256 return;
James Smart2a9bf3d2010-06-07 15:24:45 -04006257 spin_lock_irq(&phba->hbalock);
James Smart0976e1a2013-12-17 20:29:36 -05006258 if (phba->sli_rev == LPFC_SLI_REV4)
6259 spin_lock(&pring->ring_lock);
James Smart2a9bf3d2010-06-07 15:24:45 -04006260
James Smart06918ac2014-02-20 09:57:57 -05006261 if ((phba->pport->load_flag & FC_UNLOADING)) {
6262 if (phba->sli_rev == LPFC_SLI_REV4)
6263 spin_unlock(&pring->ring_lock);
6264 spin_unlock_irq(&phba->hbalock);
6265 return;
6266 }
6267
James Smart0976e1a2013-12-17 20:29:36 -05006268 list_for_each_entry_safe(piocb, tmp_iocb, &pring->txcmplq, list) {
dea31012005-04-17 16:05:31 -05006269 cmd = &piocb->iocb;
6270
James Smart2e0fef82007-06-17 19:56:36 -05006271 if ((piocb->iocb_flag & LPFC_IO_LIBDFC) != 0 ||
6272 piocb->iocb.ulpCommand == CMD_ABORT_XRI_CN ||
6273 piocb->iocb.ulpCommand == CMD_CLOSE_XRI_CN)
dea31012005-04-17 16:05:31 -05006274 continue;
James Smart2e0fef82007-06-17 19:56:36 -05006275
6276 if (piocb->vport != vport)
6277 continue;
6278
dea31012005-04-17 16:05:31 -05006279 pcmd = (struct lpfc_dmabuf *) piocb->context2;
James Smart2e0fef82007-06-17 19:56:36 -05006280 if (pcmd)
6281 els_command = *(uint32_t *) (pcmd->virt);
dea31012005-04-17 16:05:31 -05006282
James Smart92d7f7b2007-06-17 19:56:38 -05006283 if (els_command == ELS_CMD_FARP ||
6284 els_command == ELS_CMD_FARPR ||
6285 els_command == ELS_CMD_FDISC)
dea31012005-04-17 16:05:31 -05006286 continue;
James Smart92d7f7b2007-06-17 19:56:38 -05006287
dea31012005-04-17 16:05:31 -05006288 if (piocb->drvrTimeout > 0) {
James Smart92d7f7b2007-06-17 19:56:38 -05006289 if (piocb->drvrTimeout >= timeout)
dea31012005-04-17 16:05:31 -05006290 piocb->drvrTimeout -= timeout;
James Smart92d7f7b2007-06-17 19:56:38 -05006291 else
dea31012005-04-17 16:05:31 -05006292 piocb->drvrTimeout = 0;
dea31012005-04-17 16:05:31 -05006293 continue;
6294 }
6295
James Smart2e0fef82007-06-17 19:56:36 -05006296 remote_ID = 0xffffffff;
6297 if (cmd->ulpCommand != CMD_GEN_REQUEST64_CR)
dea31012005-04-17 16:05:31 -05006298 remote_ID = cmd->un.elsreq64.remoteID;
James Smart2e0fef82007-06-17 19:56:36 -05006299 else {
6300 struct lpfc_nodelist *ndlp;
6301 ndlp = __lpfc_findnode_rpi(vport, cmd->ulpContext);
James Smart58da1ff2008-04-07 10:15:56 -04006302 if (ndlp && NLP_CHK_NODE_ACT(ndlp))
James Smart2e0fef82007-06-17 19:56:36 -05006303 remote_ID = ndlp->nlp_DID;
dea31012005-04-17 16:05:31 -05006304 }
James Smart2a9bf3d2010-06-07 15:24:45 -04006305 list_add_tail(&piocb->dlist, &abort_list);
dea31012005-04-17 16:05:31 -05006306 }
James Smart0976e1a2013-12-17 20:29:36 -05006307 if (phba->sli_rev == LPFC_SLI_REV4)
6308 spin_unlock(&pring->ring_lock);
James Smart2e0fef82007-06-17 19:56:36 -05006309 spin_unlock_irq(&phba->hbalock);
James Smart5a0e3262006-07-06 15:49:16 -04006310
James Smart2a9bf3d2010-06-07 15:24:45 -04006311 list_for_each_entry_safe(piocb, tmp_iocb, &abort_list, dlist) {
James Smart15026c92013-12-17 20:30:09 -05006312 cmd = &piocb->iocb;
James Smart2a9bf3d2010-06-07 15:24:45 -04006313 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
6314 "0127 ELS timeout Data: x%x x%x x%x "
6315 "x%x\n", els_command,
6316 remote_ID, cmd->ulpCommand, cmd->ulpIoTag);
6317 spin_lock_irq(&phba->hbalock);
6318 list_del_init(&piocb->dlist);
6319 lpfc_sli_issue_abort_iotag(phba, pring, piocb);
6320 spin_unlock_irq(&phba->hbalock);
6321 }
6322
James Smart0e9bb8d2013-03-01 16:35:12 -05006323 if (!list_empty(&phba->sli.ring[LPFC_ELS_RING].txcmplq))
James Smart06918ac2014-02-20 09:57:57 -05006324 if (!(phba->pport->load_flag & FC_UNLOADING))
6325 mod_timer(&vport->els_tmofunc,
6326 jiffies + msecs_to_jiffies(1000 * timeout));
dea31012005-04-17 16:05:31 -05006327}
6328
James Smarte59058c2008-08-24 21:49:00 -04006329/**
James Smart3621a712009-04-06 18:47:14 -04006330 * lpfc_els_flush_cmd - Clean up the outstanding els commands to a vport
James Smarte59058c2008-08-24 21:49:00 -04006331 * @vport: pointer to a host virtual N_Port data structure.
6332 *
6333 * This routine is used to clean up all the outstanding ELS commands on a
6334 * @vport. It first aborts the @vport by invoking lpfc_fabric_abort_vport()
6335 * routine. After that, it walks the ELS transmit queue to remove all the
6336 * IOCBs with the @vport other than the QUE_RING and ABORT/CLOSE IOCBs. For
6337 * the IOCBs with a non-NULL completion callback function, the callback
6338 * function will be invoked with the status set to IOSTAT_LOCAL_REJECT and
6339 * un.ulpWord[4] set to IOERR_SLI_ABORTED. For IOCBs with a NULL completion
6340 * callback function, the IOCB will simply be released. Finally, it walks
6341 * the ELS transmit completion queue to issue an abort IOCB to any transmit
6342 * completion queue IOCB that is associated with the @vport and is not
6343 * an IOCB from libdfc (i.e., the management plane IOCBs that are not
6344 * part of the discovery state machine) out to HBA by invoking the
6345 * lpfc_sli_issue_abort_iotag() routine. Note that this function issues the
6346 * abort IOCB to any transmit completion queueed IOCB, it does not guarantee
6347 * the IOCBs are aborted when this function returns.
6348 **/
dea31012005-04-17 16:05:31 -05006349void
James Smart2e0fef82007-06-17 19:56:36 -05006350lpfc_els_flush_cmd(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05006351{
James Smart0976e1a2013-12-17 20:29:36 -05006352 LIST_HEAD(abort_list);
James Smart2e0fef82007-06-17 19:56:36 -05006353 struct lpfc_hba *phba = vport->phba;
James Smart329f9bc2007-04-25 09:53:01 -04006354 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
dea31012005-04-17 16:05:31 -05006355 struct lpfc_iocbq *tmp_iocb, *piocb;
6356 IOCB_t *cmd = NULL;
James Smart92d7f7b2007-06-17 19:56:38 -05006357
6358 lpfc_fabric_abort_vport(vport);
James Smart0976e1a2013-12-17 20:29:36 -05006359 /*
6360 * For SLI3, only the hbalock is required. But SLI4 needs to coordinate
6361 * with the ring insert operation. Because lpfc_sli_issue_abort_iotag
6362 * ultimately grabs the ring_lock, the driver must splice the list into
6363 * a working list and release the locks before calling the abort.
6364 */
6365 spin_lock_irq(&phba->hbalock);
6366 if (phba->sli_rev == LPFC_SLI_REV4)
6367 spin_lock(&pring->ring_lock);
6368
6369 list_for_each_entry_safe(piocb, tmp_iocb, &pring->txcmplq, list) {
6370 if (piocb->iocb_flag & LPFC_IO_LIBDFC)
6371 continue;
6372
6373 if (piocb->vport != vport)
6374 continue;
6375 list_add_tail(&piocb->dlist, &abort_list);
6376 }
6377 if (phba->sli_rev == LPFC_SLI_REV4)
6378 spin_unlock(&pring->ring_lock);
6379 spin_unlock_irq(&phba->hbalock);
6380 /* Abort each iocb on the aborted list and remove the dlist links. */
6381 list_for_each_entry_safe(piocb, tmp_iocb, &abort_list, dlist) {
6382 spin_lock_irq(&phba->hbalock);
6383 list_del_init(&piocb->dlist);
6384 lpfc_sli_issue_abort_iotag(phba, pring, piocb);
6385 spin_unlock_irq(&phba->hbalock);
6386 }
6387 if (!list_empty(&abort_list))
6388 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
6389 "3387 abort list for txq not empty\n");
6390 INIT_LIST_HEAD(&abort_list);
dea31012005-04-17 16:05:31 -05006391
James Smart2e0fef82007-06-17 19:56:36 -05006392 spin_lock_irq(&phba->hbalock);
James Smart0976e1a2013-12-17 20:29:36 -05006393 if (phba->sli_rev == LPFC_SLI_REV4)
6394 spin_lock(&pring->ring_lock);
6395
dea31012005-04-17 16:05:31 -05006396 list_for_each_entry_safe(piocb, tmp_iocb, &pring->txq, list) {
6397 cmd = &piocb->iocb;
6398
6399 if (piocb->iocb_flag & LPFC_IO_LIBDFC) {
6400 continue;
6401 }
6402
6403 /* Do not flush out the QUE_RING and ABORT/CLOSE iocbs */
James Smart329f9bc2007-04-25 09:53:01 -04006404 if (cmd->ulpCommand == CMD_QUE_RING_BUF_CN ||
6405 cmd->ulpCommand == CMD_QUE_RING_BUF64_CN ||
6406 cmd->ulpCommand == CMD_CLOSE_XRI_CN ||
6407 cmd->ulpCommand == CMD_ABORT_XRI_CN)
dea31012005-04-17 16:05:31 -05006408 continue;
dea31012005-04-17 16:05:31 -05006409
James Smart2e0fef82007-06-17 19:56:36 -05006410 if (piocb->vport != vport)
6411 continue;
6412
James Smart0976e1a2013-12-17 20:29:36 -05006413 list_del_init(&piocb->list);
6414 list_add_tail(&piocb->list, &abort_list);
dea31012005-04-17 16:05:31 -05006415 }
James Smart0976e1a2013-12-17 20:29:36 -05006416 if (phba->sli_rev == LPFC_SLI_REV4)
6417 spin_unlock(&pring->ring_lock);
James Smart2e0fef82007-06-17 19:56:36 -05006418 spin_unlock_irq(&phba->hbalock);
James Smart2534ba72007-04-25 09:52:20 -04006419
James Smarta257bf92009-04-06 18:48:10 -04006420 /* Cancell all the IOCBs from the completions list */
James Smart0976e1a2013-12-17 20:29:36 -05006421 lpfc_sli_cancel_iocbs(phba, &abort_list,
6422 IOSTAT_LOCAL_REJECT, IOERR_SLI_ABORTED);
James Smart2534ba72007-04-25 09:52:20 -04006423
dea31012005-04-17 16:05:31 -05006424 return;
6425}
6426
James Smarte59058c2008-08-24 21:49:00 -04006427/**
James Smart3621a712009-04-06 18:47:14 -04006428 * lpfc_els_flush_all_cmd - Clean up all the outstanding els commands to a HBA
James Smarte59058c2008-08-24 21:49:00 -04006429 * @phba: pointer to lpfc hba data structure.
6430 *
6431 * This routine is used to clean up all the outstanding ELS commands on a
6432 * @phba. It first aborts the @phba by invoking the lpfc_fabric_abort_hba()
6433 * routine. After that, it walks the ELS transmit queue to remove all the
6434 * IOCBs to the @phba other than the QUE_RING and ABORT/CLOSE IOCBs. For
6435 * the IOCBs with the completion callback function associated, the callback
6436 * function will be invoked with the status set to IOSTAT_LOCAL_REJECT and
6437 * un.ulpWord[4] set to IOERR_SLI_ABORTED. For IOCBs without the completion
6438 * callback function associated, the IOCB will simply be released. Finally,
6439 * it walks the ELS transmit completion queue to issue an abort IOCB to any
6440 * transmit completion queue IOCB that is not an IOCB from libdfc (i.e., the
6441 * management plane IOCBs that are not part of the discovery state machine)
6442 * out to HBA by invoking the lpfc_sli_issue_abort_iotag() routine.
6443 **/
James Smart549e55c2007-08-02 11:09:51 -04006444void
6445lpfc_els_flush_all_cmd(struct lpfc_hba *phba)
6446{
James Smart0976e1a2013-12-17 20:29:36 -05006447 struct lpfc_vport *vport;
6448 list_for_each_entry(vport, &phba->port_list, listentry)
6449 lpfc_els_flush_cmd(vport);
James Smarta257bf92009-04-06 18:48:10 -04006450
James Smart549e55c2007-08-02 11:09:51 -04006451 return;
6452}
6453
James Smarte59058c2008-08-24 21:49:00 -04006454/**
James Smart3621a712009-04-06 18:47:14 -04006455 * lpfc_send_els_failure_event - Posts an ELS command failure event
James Smartea2151b2008-09-07 11:52:10 -04006456 * @phba: Pointer to hba context object.
6457 * @cmdiocbp: Pointer to command iocb which reported error.
6458 * @rspiocbp: Pointer to response iocb which reported error.
6459 *
6460 * This function sends an event when there is an ELS command
6461 * failure.
6462 **/
6463void
6464lpfc_send_els_failure_event(struct lpfc_hba *phba,
6465 struct lpfc_iocbq *cmdiocbp,
6466 struct lpfc_iocbq *rspiocbp)
6467{
6468 struct lpfc_vport *vport = cmdiocbp->vport;
6469 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
6470 struct lpfc_lsrjt_event lsrjt_event;
6471 struct lpfc_fabric_event_header fabric_event;
6472 struct ls_rjt stat;
6473 struct lpfc_nodelist *ndlp;
6474 uint32_t *pcmd;
6475
6476 ndlp = cmdiocbp->context1;
6477 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp))
6478 return;
6479
6480 if (rspiocbp->iocb.ulpStatus == IOSTAT_LS_RJT) {
6481 lsrjt_event.header.event_type = FC_REG_ELS_EVENT;
6482 lsrjt_event.header.subcategory = LPFC_EVENT_LSRJT_RCV;
6483 memcpy(lsrjt_event.header.wwpn, &ndlp->nlp_portname,
6484 sizeof(struct lpfc_name));
6485 memcpy(lsrjt_event.header.wwnn, &ndlp->nlp_nodename,
6486 sizeof(struct lpfc_name));
6487 pcmd = (uint32_t *) (((struct lpfc_dmabuf *)
6488 cmdiocbp->context2)->virt);
James Smart49198b32010-04-06 15:04:33 -04006489 lsrjt_event.command = (pcmd != NULL) ? *pcmd : 0;
James Smartea2151b2008-09-07 11:52:10 -04006490 stat.un.lsRjtError = be32_to_cpu(rspiocbp->iocb.un.ulpWord[4]);
6491 lsrjt_event.reason_code = stat.un.b.lsRjtRsnCode;
6492 lsrjt_event.explanation = stat.un.b.lsRjtRsnCodeExp;
6493 fc_host_post_vendor_event(shost,
6494 fc_get_event_number(),
6495 sizeof(lsrjt_event),
6496 (char *)&lsrjt_event,
James Smartddcc50f2008-12-04 22:38:46 -05006497 LPFC_NL_VENDOR_ID);
James Smartea2151b2008-09-07 11:52:10 -04006498 return;
6499 }
6500 if ((rspiocbp->iocb.ulpStatus == IOSTAT_NPORT_BSY) ||
6501 (rspiocbp->iocb.ulpStatus == IOSTAT_FABRIC_BSY)) {
6502 fabric_event.event_type = FC_REG_FABRIC_EVENT;
6503 if (rspiocbp->iocb.ulpStatus == IOSTAT_NPORT_BSY)
6504 fabric_event.subcategory = LPFC_EVENT_PORT_BUSY;
6505 else
6506 fabric_event.subcategory = LPFC_EVENT_FABRIC_BUSY;
6507 memcpy(fabric_event.wwpn, &ndlp->nlp_portname,
6508 sizeof(struct lpfc_name));
6509 memcpy(fabric_event.wwnn, &ndlp->nlp_nodename,
6510 sizeof(struct lpfc_name));
6511 fc_host_post_vendor_event(shost,
6512 fc_get_event_number(),
6513 sizeof(fabric_event),
6514 (char *)&fabric_event,
James Smartddcc50f2008-12-04 22:38:46 -05006515 LPFC_NL_VENDOR_ID);
James Smartea2151b2008-09-07 11:52:10 -04006516 return;
6517 }
6518
6519}
6520
6521/**
James Smart3621a712009-04-06 18:47:14 -04006522 * lpfc_send_els_event - Posts unsolicited els event
James Smartea2151b2008-09-07 11:52:10 -04006523 * @vport: Pointer to vport object.
6524 * @ndlp: Pointer FC node object.
6525 * @cmd: ELS command code.
6526 *
6527 * This function posts an event when there is an incoming
6528 * unsolicited ELS command.
6529 **/
6530static void
6531lpfc_send_els_event(struct lpfc_vport *vport,
6532 struct lpfc_nodelist *ndlp,
James Smartddcc50f2008-12-04 22:38:46 -05006533 uint32_t *payload)
James Smartea2151b2008-09-07 11:52:10 -04006534{
James Smartddcc50f2008-12-04 22:38:46 -05006535 struct lpfc_els_event_header *els_data = NULL;
6536 struct lpfc_logo_event *logo_data = NULL;
James Smartea2151b2008-09-07 11:52:10 -04006537 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
6538
James Smartddcc50f2008-12-04 22:38:46 -05006539 if (*payload == ELS_CMD_LOGO) {
6540 logo_data = kmalloc(sizeof(struct lpfc_logo_event), GFP_KERNEL);
6541 if (!logo_data) {
6542 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
6543 "0148 Failed to allocate memory "
6544 "for LOGO event\n");
6545 return;
6546 }
6547 els_data = &logo_data->header;
6548 } else {
6549 els_data = kmalloc(sizeof(struct lpfc_els_event_header),
6550 GFP_KERNEL);
6551 if (!els_data) {
6552 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
6553 "0149 Failed to allocate memory "
6554 "for ELS event\n");
6555 return;
6556 }
6557 }
6558 els_data->event_type = FC_REG_ELS_EVENT;
6559 switch (*payload) {
James Smartea2151b2008-09-07 11:52:10 -04006560 case ELS_CMD_PLOGI:
James Smartddcc50f2008-12-04 22:38:46 -05006561 els_data->subcategory = LPFC_EVENT_PLOGI_RCV;
James Smartea2151b2008-09-07 11:52:10 -04006562 break;
6563 case ELS_CMD_PRLO:
James Smartddcc50f2008-12-04 22:38:46 -05006564 els_data->subcategory = LPFC_EVENT_PRLO_RCV;
James Smartea2151b2008-09-07 11:52:10 -04006565 break;
6566 case ELS_CMD_ADISC:
James Smartddcc50f2008-12-04 22:38:46 -05006567 els_data->subcategory = LPFC_EVENT_ADISC_RCV;
6568 break;
6569 case ELS_CMD_LOGO:
6570 els_data->subcategory = LPFC_EVENT_LOGO_RCV;
6571 /* Copy the WWPN in the LOGO payload */
6572 memcpy(logo_data->logo_wwpn, &payload[2],
6573 sizeof(struct lpfc_name));
James Smartea2151b2008-09-07 11:52:10 -04006574 break;
6575 default:
Julia Lawalle9161412009-02-08 22:43:19 +01006576 kfree(els_data);
James Smartea2151b2008-09-07 11:52:10 -04006577 return;
6578 }
James Smartddcc50f2008-12-04 22:38:46 -05006579 memcpy(els_data->wwpn, &ndlp->nlp_portname, sizeof(struct lpfc_name));
6580 memcpy(els_data->wwnn, &ndlp->nlp_nodename, sizeof(struct lpfc_name));
6581 if (*payload == ELS_CMD_LOGO) {
6582 fc_host_post_vendor_event(shost,
6583 fc_get_event_number(),
6584 sizeof(struct lpfc_logo_event),
6585 (char *)logo_data,
6586 LPFC_NL_VENDOR_ID);
6587 kfree(logo_data);
6588 } else {
6589 fc_host_post_vendor_event(shost,
6590 fc_get_event_number(),
6591 sizeof(struct lpfc_els_event_header),
6592 (char *)els_data,
6593 LPFC_NL_VENDOR_ID);
6594 kfree(els_data);
6595 }
James Smartea2151b2008-09-07 11:52:10 -04006596
6597 return;
6598}
6599
6600
6601/**
James Smart3621a712009-04-06 18:47:14 -04006602 * lpfc_els_unsol_buffer - Process an unsolicited event data buffer
James Smarte59058c2008-08-24 21:49:00 -04006603 * @phba: pointer to lpfc hba data structure.
6604 * @pring: pointer to a SLI ring.
6605 * @vport: pointer to a host virtual N_Port data structure.
6606 * @elsiocb: pointer to lpfc els command iocb data structure.
6607 *
6608 * This routine is used for processing the IOCB associated with a unsolicited
6609 * event. It first determines whether there is an existing ndlp that matches
6610 * the DID from the unsolicited IOCB. If not, it will create a new one with
6611 * the DID from the unsolicited IOCB. The ELS command from the unsolicited
6612 * IOCB is then used to invoke the proper routine and to set up proper state
6613 * of the discovery state machine.
6614 **/
James Smarted957682007-06-17 19:56:37 -05006615static void
6616lpfc_els_unsol_buffer(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
James Smart92d7f7b2007-06-17 19:56:38 -05006617 struct lpfc_vport *vport, struct lpfc_iocbq *elsiocb)
dea31012005-04-17 16:05:31 -05006618{
James Smart87af33f2007-10-27 13:37:43 -04006619 struct Scsi_Host *shost;
dea31012005-04-17 16:05:31 -05006620 struct lpfc_nodelist *ndlp;
dea31012005-04-17 16:05:31 -05006621 struct ls_rjt stat;
James Smart92d7f7b2007-06-17 19:56:38 -05006622 uint32_t *payload;
James Smart303f2f92013-01-03 15:43:11 -05006623 uint32_t cmd, did, newnode;
6624 uint8_t rjt_exp, rjt_err = 0;
James Smarted957682007-06-17 19:56:37 -05006625 IOCB_t *icmd = &elsiocb->iocb;
dea31012005-04-17 16:05:31 -05006626
James Smarte47c9092008-02-08 18:49:26 -05006627 if (!vport || !(elsiocb->context2))
dea31012005-04-17 16:05:31 -05006628 goto dropit;
James Smart2e0fef82007-06-17 19:56:36 -05006629
dea31012005-04-17 16:05:31 -05006630 newnode = 0;
James Smart92d7f7b2007-06-17 19:56:38 -05006631 payload = ((struct lpfc_dmabuf *)elsiocb->context2)->virt;
6632 cmd = *payload;
James Smarted957682007-06-17 19:56:37 -05006633 if ((phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) == 0)
James Smart495a7142008-06-14 22:52:59 -04006634 lpfc_post_buffer(phba, pring, 1);
dea31012005-04-17 16:05:31 -05006635
James Smart858c9f62007-06-17 19:56:39 -05006636 did = icmd->un.rcvels.remoteID;
6637 if (icmd->ulpStatus) {
6638 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6639 "RCV Unsol ELS: status:x%x/x%x did:x%x",
6640 icmd->ulpStatus, icmd->un.ulpWord[4], did);
dea31012005-04-17 16:05:31 -05006641 goto dropit;
James Smart858c9f62007-06-17 19:56:39 -05006642 }
dea31012005-04-17 16:05:31 -05006643
6644 /* Check to see if link went down during discovery */
James Smarted957682007-06-17 19:56:37 -05006645 if (lpfc_els_chk_latt(vport))
dea31012005-04-17 16:05:31 -05006646 goto dropit;
dea31012005-04-17 16:05:31 -05006647
James Smartc8685952009-11-18 15:39:16 -05006648 /* Ignore traffic received during vport shutdown. */
James Smart92d7f7b2007-06-17 19:56:38 -05006649 if (vport->load_flag & FC_UNLOADING)
6650 goto dropit;
6651
James Smart92494142011-02-16 12:39:44 -05006652 /* If NPort discovery is delayed drop incoming ELS */
6653 if ((vport->fc_flag & FC_DISC_DELAYED) &&
6654 (cmd != ELS_CMD_PLOGI))
6655 goto dropit;
6656
James Smart2e0fef82007-06-17 19:56:36 -05006657 ndlp = lpfc_findnode_did(vport, did);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05006658 if (!ndlp) {
dea31012005-04-17 16:05:31 -05006659 /* Cannot find existing Fabric ndlp, so allocate a new one */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05006660 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
James Smarted957682007-06-17 19:56:37 -05006661 if (!ndlp)
dea31012005-04-17 16:05:31 -05006662 goto dropit;
dea31012005-04-17 16:05:31 -05006663
James Smart2e0fef82007-06-17 19:56:36 -05006664 lpfc_nlp_init(vport, ndlp, did);
James Smart98c9ea52007-10-27 13:37:33 -04006665 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
dea31012005-04-17 16:05:31 -05006666 newnode = 1;
James Smarte47c9092008-02-08 18:49:26 -05006667 if ((did & Fabric_DID_MASK) == Fabric_DID_MASK)
dea31012005-04-17 16:05:31 -05006668 ndlp->nlp_type |= NLP_FABRIC;
James Smart58da1ff2008-04-07 10:15:56 -04006669 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
6670 ndlp = lpfc_enable_node(vport, ndlp,
6671 NLP_STE_UNUSED_NODE);
6672 if (!ndlp)
6673 goto dropit;
6674 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
6675 newnode = 1;
6676 if ((did & Fabric_DID_MASK) == Fabric_DID_MASK)
6677 ndlp->nlp_type |= NLP_FABRIC;
6678 } else if (ndlp->nlp_state == NLP_STE_UNUSED_NODE) {
6679 /* This is similar to the new node path */
6680 ndlp = lpfc_nlp_get(ndlp);
6681 if (!ndlp)
6682 goto dropit;
6683 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
6684 newnode = 1;
James Smart87af33f2007-10-27 13:37:43 -04006685 }
dea31012005-04-17 16:05:31 -05006686
6687 phba->fc_stat.elsRcvFrame++;
James Smarte47c9092008-02-08 18:49:26 -05006688
James Smart12838e72014-09-03 12:57:19 -04006689 /*
6690 * Do not process any unsolicited ELS commands
6691 * if the ndlp is in DEV_LOSS
6692 */
6693 if (ndlp->nlp_add_flag & NLP_IN_DEV_LOSS)
6694 goto dropit;
6695
James Smart329f9bc2007-04-25 09:53:01 -04006696 elsiocb->context1 = lpfc_nlp_get(ndlp);
James Smart2e0fef82007-06-17 19:56:36 -05006697 elsiocb->vport = vport;
dea31012005-04-17 16:05:31 -05006698
6699 if ((cmd & ELS_CMD_MASK) == ELS_CMD_RSCN) {
6700 cmd &= ELS_CMD_MASK;
6701 }
6702 /* ELS command <elsCmd> received from NPORT <did> */
James Smarte8b62012007-08-02 11:10:09 -04006703 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
6704 "0112 ELS command x%x received from NPORT x%x "
James Smarte74c03c2013-04-17 20:15:19 -04006705 "Data: x%x x%x x%x x%x\n",
6706 cmd, did, vport->port_state, vport->fc_flag,
6707 vport->fc_myDID, vport->fc_prevDID);
dea31012005-04-17 16:05:31 -05006708 switch (cmd) {
6709 case ELS_CMD_PLOGI:
James Smart858c9f62007-06-17 19:56:39 -05006710 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6711 "RCV PLOGI: did:x%x/ste:x%x flg:x%x",
6712 did, vport->port_state, ndlp->nlp_flag);
6713
dea31012005-04-17 16:05:31 -05006714 phba->fc_stat.elsRcvPLOGI++;
James Smart858c9f62007-06-17 19:56:39 -05006715 ndlp = lpfc_plogi_confirm_nport(phba, payload, ndlp);
James Smarte74c03c2013-04-17 20:15:19 -04006716 if (phba->sli_rev == LPFC_SLI_REV4 &&
6717 (phba->pport->fc_flag & FC_PT2PT)) {
6718 vport->fc_prevDID = vport->fc_myDID;
6719 /* Our DID needs to be updated before registering
6720 * the vfi. This is done in lpfc_rcv_plogi but
6721 * that is called after the reg_vfi.
6722 */
6723 vport->fc_myDID = elsiocb->iocb.un.rcvels.parmRo;
6724 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
6725 "3312 Remote port assigned DID x%x "
6726 "%x\n", vport->fc_myDID,
6727 vport->fc_prevDID);
6728 }
James Smart858c9f62007-06-17 19:56:39 -05006729
James Smartddcc50f2008-12-04 22:38:46 -05006730 lpfc_send_els_event(vport, ndlp, payload);
James Smart92494142011-02-16 12:39:44 -05006731
6732 /* If Nport discovery is delayed, reject PLOGIs */
6733 if (vport->fc_flag & FC_DISC_DELAYED) {
6734 rjt_err = LSRJT_UNABLE_TPC;
James Smart303f2f92013-01-03 15:43:11 -05006735 rjt_exp = LSEXP_NOTHING_MORE;
James Smart92494142011-02-16 12:39:44 -05006736 break;
6737 }
James Smarte74c03c2013-04-17 20:15:19 -04006738 shost = lpfc_shost_from_vport(vport);
James Smart858c9f62007-06-17 19:56:39 -05006739 if (vport->port_state < LPFC_DISC_AUTH) {
James Smart1b32f6a2008-02-08 18:49:39 -05006740 if (!(phba->pport->fc_flag & FC_PT2PT) ||
6741 (phba->pport->fc_flag & FC_PT2PT_PLOGI)) {
6742 rjt_err = LSRJT_UNABLE_TPC;
James Smart303f2f92013-01-03 15:43:11 -05006743 rjt_exp = LSEXP_NOTHING_MORE;
James Smart1b32f6a2008-02-08 18:49:39 -05006744 break;
6745 }
6746 /* We get here, and drop thru, if we are PT2PT with
6747 * another NPort and the other side has initiated
6748 * the PLOGI before responding to our FLOGI.
6749 */
James Smarte74c03c2013-04-17 20:15:19 -04006750 if (phba->sli_rev == LPFC_SLI_REV4 &&
6751 (phba->fc_topology_changed ||
6752 vport->fc_myDID != vport->fc_prevDID)) {
6753 lpfc_unregister_fcf_prep(phba);
6754 spin_lock_irq(shost->host_lock);
6755 vport->fc_flag &= ~FC_VFI_REGISTERED;
6756 spin_unlock_irq(shost->host_lock);
6757 phba->fc_topology_changed = 0;
6758 lpfc_issue_reg_vfi(vport);
6759 }
dea31012005-04-17 16:05:31 -05006760 }
James Smart87af33f2007-10-27 13:37:43 -04006761
James Smart87af33f2007-10-27 13:37:43 -04006762 spin_lock_irq(shost->host_lock);
6763 ndlp->nlp_flag &= ~NLP_TARGET_REMOVE;
6764 spin_unlock_irq(shost->host_lock);
6765
James Smart2e0fef82007-06-17 19:56:36 -05006766 lpfc_disc_state_machine(vport, ndlp, elsiocb,
6767 NLP_EVT_RCV_PLOGI);
James Smart858c9f62007-06-17 19:56:39 -05006768
dea31012005-04-17 16:05:31 -05006769 break;
6770 case ELS_CMD_FLOGI:
James Smart858c9f62007-06-17 19:56:39 -05006771 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6772 "RCV FLOGI: did:x%x/ste:x%x flg:x%x",
6773 did, vport->port_state, ndlp->nlp_flag);
6774
dea31012005-04-17 16:05:31 -05006775 phba->fc_stat.elsRcvFLOGI++;
James Smart51ef4c22007-08-02 11:10:31 -04006776 lpfc_els_rcv_flogi(vport, elsiocb, ndlp);
James Smart87af33f2007-10-27 13:37:43 -04006777 if (newnode)
James Smart98c9ea52007-10-27 13:37:33 -04006778 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05006779 break;
6780 case ELS_CMD_LOGO:
James Smart858c9f62007-06-17 19:56:39 -05006781 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6782 "RCV LOGO: did:x%x/ste:x%x flg:x%x",
6783 did, vport->port_state, ndlp->nlp_flag);
6784
dea31012005-04-17 16:05:31 -05006785 phba->fc_stat.elsRcvLOGO++;
James Smartddcc50f2008-12-04 22:38:46 -05006786 lpfc_send_els_event(vport, ndlp, payload);
James Smart2e0fef82007-06-17 19:56:36 -05006787 if (vport->port_state < LPFC_DISC_AUTH) {
James Smart858c9f62007-06-17 19:56:39 -05006788 rjt_err = LSRJT_UNABLE_TPC;
James Smart303f2f92013-01-03 15:43:11 -05006789 rjt_exp = LSEXP_NOTHING_MORE;
dea31012005-04-17 16:05:31 -05006790 break;
6791 }
James Smart2e0fef82007-06-17 19:56:36 -05006792 lpfc_disc_state_machine(vport, ndlp, elsiocb, NLP_EVT_RCV_LOGO);
dea31012005-04-17 16:05:31 -05006793 break;
6794 case ELS_CMD_PRLO:
James Smart858c9f62007-06-17 19:56:39 -05006795 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6796 "RCV PRLO: did:x%x/ste:x%x flg:x%x",
6797 did, vport->port_state, ndlp->nlp_flag);
6798
dea31012005-04-17 16:05:31 -05006799 phba->fc_stat.elsRcvPRLO++;
James Smartddcc50f2008-12-04 22:38:46 -05006800 lpfc_send_els_event(vport, ndlp, payload);
James Smart2e0fef82007-06-17 19:56:36 -05006801 if (vport->port_state < LPFC_DISC_AUTH) {
James Smart858c9f62007-06-17 19:56:39 -05006802 rjt_err = LSRJT_UNABLE_TPC;
James Smart303f2f92013-01-03 15:43:11 -05006803 rjt_exp = LSEXP_NOTHING_MORE;
dea31012005-04-17 16:05:31 -05006804 break;
6805 }
James Smart2e0fef82007-06-17 19:56:36 -05006806 lpfc_disc_state_machine(vport, ndlp, elsiocb, NLP_EVT_RCV_PRLO);
dea31012005-04-17 16:05:31 -05006807 break;
6808 case ELS_CMD_RSCN:
6809 phba->fc_stat.elsRcvRSCN++;
James Smart51ef4c22007-08-02 11:10:31 -04006810 lpfc_els_rcv_rscn(vport, elsiocb, ndlp);
James Smart87af33f2007-10-27 13:37:43 -04006811 if (newnode)
James Smart98c9ea52007-10-27 13:37:33 -04006812 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05006813 break;
6814 case ELS_CMD_ADISC:
James Smart858c9f62007-06-17 19:56:39 -05006815 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6816 "RCV ADISC: did:x%x/ste:x%x flg:x%x",
6817 did, vport->port_state, ndlp->nlp_flag);
6818
James Smartddcc50f2008-12-04 22:38:46 -05006819 lpfc_send_els_event(vport, ndlp, payload);
dea31012005-04-17 16:05:31 -05006820 phba->fc_stat.elsRcvADISC++;
James Smart2e0fef82007-06-17 19:56:36 -05006821 if (vport->port_state < LPFC_DISC_AUTH) {
James Smart858c9f62007-06-17 19:56:39 -05006822 rjt_err = LSRJT_UNABLE_TPC;
James Smart303f2f92013-01-03 15:43:11 -05006823 rjt_exp = LSEXP_NOTHING_MORE;
dea31012005-04-17 16:05:31 -05006824 break;
6825 }
James Smart2e0fef82007-06-17 19:56:36 -05006826 lpfc_disc_state_machine(vport, ndlp, elsiocb,
6827 NLP_EVT_RCV_ADISC);
dea31012005-04-17 16:05:31 -05006828 break;
6829 case ELS_CMD_PDISC:
James Smart858c9f62007-06-17 19:56:39 -05006830 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6831 "RCV PDISC: did:x%x/ste:x%x flg:x%x",
6832 did, vport->port_state, ndlp->nlp_flag);
6833
dea31012005-04-17 16:05:31 -05006834 phba->fc_stat.elsRcvPDISC++;
James Smart2e0fef82007-06-17 19:56:36 -05006835 if (vport->port_state < LPFC_DISC_AUTH) {
James Smart858c9f62007-06-17 19:56:39 -05006836 rjt_err = LSRJT_UNABLE_TPC;
James Smart303f2f92013-01-03 15:43:11 -05006837 rjt_exp = LSEXP_NOTHING_MORE;
dea31012005-04-17 16:05:31 -05006838 break;
6839 }
James Smart2e0fef82007-06-17 19:56:36 -05006840 lpfc_disc_state_machine(vport, ndlp, elsiocb,
6841 NLP_EVT_RCV_PDISC);
dea31012005-04-17 16:05:31 -05006842 break;
6843 case ELS_CMD_FARPR:
James Smart858c9f62007-06-17 19:56:39 -05006844 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6845 "RCV FARPR: did:x%x/ste:x%x flg:x%x",
6846 did, vport->port_state, ndlp->nlp_flag);
6847
dea31012005-04-17 16:05:31 -05006848 phba->fc_stat.elsRcvFARPR++;
James Smart2e0fef82007-06-17 19:56:36 -05006849 lpfc_els_rcv_farpr(vport, elsiocb, ndlp);
dea31012005-04-17 16:05:31 -05006850 break;
6851 case ELS_CMD_FARP:
James Smart858c9f62007-06-17 19:56:39 -05006852 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6853 "RCV FARP: did:x%x/ste:x%x flg:x%x",
6854 did, vport->port_state, ndlp->nlp_flag);
6855
dea31012005-04-17 16:05:31 -05006856 phba->fc_stat.elsRcvFARP++;
James Smart2e0fef82007-06-17 19:56:36 -05006857 lpfc_els_rcv_farp(vport, elsiocb, ndlp);
dea31012005-04-17 16:05:31 -05006858 break;
6859 case ELS_CMD_FAN:
James Smart858c9f62007-06-17 19:56:39 -05006860 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6861 "RCV FAN: did:x%x/ste:x%x flg:x%x",
6862 did, vport->port_state, ndlp->nlp_flag);
6863
dea31012005-04-17 16:05:31 -05006864 phba->fc_stat.elsRcvFAN++;
James Smart2e0fef82007-06-17 19:56:36 -05006865 lpfc_els_rcv_fan(vport, elsiocb, ndlp);
dea31012005-04-17 16:05:31 -05006866 break;
dea31012005-04-17 16:05:31 -05006867 case ELS_CMD_PRLI:
James Smart858c9f62007-06-17 19:56:39 -05006868 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6869 "RCV PRLI: did:x%x/ste:x%x flg:x%x",
6870 did, vport->port_state, ndlp->nlp_flag);
6871
dea31012005-04-17 16:05:31 -05006872 phba->fc_stat.elsRcvPRLI++;
James Smart2e0fef82007-06-17 19:56:36 -05006873 if (vport->port_state < LPFC_DISC_AUTH) {
James Smart858c9f62007-06-17 19:56:39 -05006874 rjt_err = LSRJT_UNABLE_TPC;
James Smart303f2f92013-01-03 15:43:11 -05006875 rjt_exp = LSEXP_NOTHING_MORE;
dea31012005-04-17 16:05:31 -05006876 break;
6877 }
James Smart2e0fef82007-06-17 19:56:36 -05006878 lpfc_disc_state_machine(vport, ndlp, elsiocb, NLP_EVT_RCV_PRLI);
dea31012005-04-17 16:05:31 -05006879 break;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006880 case ELS_CMD_LIRR:
James Smart858c9f62007-06-17 19:56:39 -05006881 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6882 "RCV LIRR: did:x%x/ste:x%x flg:x%x",
6883 did, vport->port_state, ndlp->nlp_flag);
6884
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006885 phba->fc_stat.elsRcvLIRR++;
James Smart2e0fef82007-06-17 19:56:36 -05006886 lpfc_els_rcv_lirr(vport, elsiocb, ndlp);
James Smart87af33f2007-10-27 13:37:43 -04006887 if (newnode)
James Smart98c9ea52007-10-27 13:37:33 -04006888 lpfc_nlp_put(ndlp);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006889 break;
James Smart12265f62010-10-22 11:05:53 -04006890 case ELS_CMD_RLS:
6891 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6892 "RCV RLS: did:x%x/ste:x%x flg:x%x",
6893 did, vport->port_state, ndlp->nlp_flag);
6894
6895 phba->fc_stat.elsRcvRLS++;
6896 lpfc_els_rcv_rls(vport, elsiocb, ndlp);
6897 if (newnode)
6898 lpfc_nlp_put(ndlp);
6899 break;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006900 case ELS_CMD_RPS:
James Smart858c9f62007-06-17 19:56:39 -05006901 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6902 "RCV RPS: did:x%x/ste:x%x flg:x%x",
6903 did, vport->port_state, ndlp->nlp_flag);
6904
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006905 phba->fc_stat.elsRcvRPS++;
James Smart2e0fef82007-06-17 19:56:36 -05006906 lpfc_els_rcv_rps(vport, elsiocb, ndlp);
James Smart87af33f2007-10-27 13:37:43 -04006907 if (newnode)
James Smart98c9ea52007-10-27 13:37:33 -04006908 lpfc_nlp_put(ndlp);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006909 break;
6910 case ELS_CMD_RPL:
James Smart858c9f62007-06-17 19:56:39 -05006911 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6912 "RCV RPL: did:x%x/ste:x%x flg:x%x",
6913 did, vport->port_state, ndlp->nlp_flag);
6914
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006915 phba->fc_stat.elsRcvRPL++;
James Smart2e0fef82007-06-17 19:56:36 -05006916 lpfc_els_rcv_rpl(vport, elsiocb, ndlp);
James Smart87af33f2007-10-27 13:37:43 -04006917 if (newnode)
James Smart98c9ea52007-10-27 13:37:33 -04006918 lpfc_nlp_put(ndlp);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006919 break;
dea31012005-04-17 16:05:31 -05006920 case ELS_CMD_RNID:
James Smart858c9f62007-06-17 19:56:39 -05006921 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6922 "RCV RNID: did:x%x/ste:x%x flg:x%x",
6923 did, vport->port_state, ndlp->nlp_flag);
6924
dea31012005-04-17 16:05:31 -05006925 phba->fc_stat.elsRcvRNID++;
James Smart2e0fef82007-06-17 19:56:36 -05006926 lpfc_els_rcv_rnid(vport, elsiocb, ndlp);
James Smart87af33f2007-10-27 13:37:43 -04006927 if (newnode)
James Smart98c9ea52007-10-27 13:37:33 -04006928 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05006929 break;
James Smart12265f62010-10-22 11:05:53 -04006930 case ELS_CMD_RTV:
6931 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6932 "RCV RTV: did:x%x/ste:x%x flg:x%x",
6933 did, vport->port_state, ndlp->nlp_flag);
6934 phba->fc_stat.elsRcvRTV++;
6935 lpfc_els_rcv_rtv(vport, elsiocb, ndlp);
6936 if (newnode)
6937 lpfc_nlp_put(ndlp);
6938 break;
James Smart5ffc2662009-11-18 15:39:44 -05006939 case ELS_CMD_RRQ:
6940 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6941 "RCV RRQ: did:x%x/ste:x%x flg:x%x",
6942 did, vport->port_state, ndlp->nlp_flag);
6943
6944 phba->fc_stat.elsRcvRRQ++;
6945 lpfc_els_rcv_rrq(vport, elsiocb, ndlp);
6946 if (newnode)
6947 lpfc_nlp_put(ndlp);
6948 break;
James Smart12265f62010-10-22 11:05:53 -04006949 case ELS_CMD_ECHO:
6950 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6951 "RCV ECHO: did:x%x/ste:x%x flg:x%x",
6952 did, vport->port_state, ndlp->nlp_flag);
6953
6954 phba->fc_stat.elsRcvECHO++;
6955 lpfc_els_rcv_echo(vport, elsiocb, ndlp);
6956 if (newnode)
6957 lpfc_nlp_put(ndlp);
6958 break;
James Smart303f2f92013-01-03 15:43:11 -05006959 case ELS_CMD_REC:
6960 /* receive this due to exchange closed */
6961 rjt_err = LSRJT_UNABLE_TPC;
6962 rjt_exp = LSEXP_INVALID_OX_RX;
6963 break;
dea31012005-04-17 16:05:31 -05006964 default:
James Smart858c9f62007-06-17 19:56:39 -05006965 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6966 "RCV ELS cmd: cmd:x%x did:x%x/ste:x%x",
6967 cmd, did, vport->port_state);
6968
dea31012005-04-17 16:05:31 -05006969 /* Unsupported ELS command, reject */
James Smart63e801c2010-11-20 23:14:19 -05006970 rjt_err = LSRJT_CMD_UNSUPPORTED;
James Smart303f2f92013-01-03 15:43:11 -05006971 rjt_exp = LSEXP_NOTHING_MORE;
dea31012005-04-17 16:05:31 -05006972
6973 /* Unknown ELS command <elsCmd> received from NPORT <did> */
James Smarte8b62012007-08-02 11:10:09 -04006974 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
6975 "0115 Unknown ELS command x%x "
6976 "received from NPORT x%x\n", cmd, did);
James Smart87af33f2007-10-27 13:37:43 -04006977 if (newnode)
James Smart98c9ea52007-10-27 13:37:33 -04006978 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05006979 break;
6980 }
6981
6982 /* check if need to LS_RJT received ELS cmd */
6983 if (rjt_err) {
James Smart92d7f7b2007-06-17 19:56:38 -05006984 memset(&stat, 0, sizeof(stat));
James Smart858c9f62007-06-17 19:56:39 -05006985 stat.un.b.lsRjtRsnCode = rjt_err;
James Smart303f2f92013-01-03 15:43:11 -05006986 stat.un.b.lsRjtRsnCodeExp = rjt_exp;
James Smart858c9f62007-06-17 19:56:39 -05006987 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, elsiocb, ndlp,
6988 NULL);
dea31012005-04-17 16:05:31 -05006989 }
6990
James Smartd7c255b2008-08-24 21:50:00 -04006991 lpfc_nlp_put(elsiocb->context1);
6992 elsiocb->context1 = NULL;
James Smarted957682007-06-17 19:56:37 -05006993 return;
6994
6995dropit:
James Smart98c9ea52007-10-27 13:37:33 -04006996 if (vport && !(vport->load_flag & FC_UNLOADING))
James Smart6fb120a2009-05-22 14:52:59 -04006997 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
6998 "0111 Dropping received ELS cmd "
James Smarted957682007-06-17 19:56:37 -05006999 "Data: x%x x%x x%x\n",
James Smart6fb120a2009-05-22 14:52:59 -04007000 icmd->ulpStatus, icmd->un.ulpWord[4], icmd->ulpTimeout);
James Smarted957682007-06-17 19:56:37 -05007001 phba->fc_stat.elsRcvDrop++;
7002}
7003
James Smarte59058c2008-08-24 21:49:00 -04007004/**
James Smart3621a712009-04-06 18:47:14 -04007005 * lpfc_els_unsol_event - Process an unsolicited event from an els sli ring
James Smarte59058c2008-08-24 21:49:00 -04007006 * @phba: pointer to lpfc hba data structure.
7007 * @pring: pointer to a SLI ring.
7008 * @elsiocb: pointer to lpfc els iocb data structure.
7009 *
7010 * This routine is used to process an unsolicited event received from a SLI
7011 * (Service Level Interface) ring. The actual processing of the data buffer
7012 * associated with the unsolicited event is done by invoking the routine
7013 * lpfc_els_unsol_buffer() after properly set up the iocb buffer from the
7014 * SLI ring on which the unsolicited event was received.
7015 **/
James Smarted957682007-06-17 19:56:37 -05007016void
7017lpfc_els_unsol_event(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
7018 struct lpfc_iocbq *elsiocb)
7019{
7020 struct lpfc_vport *vport = phba->pport;
James Smarted957682007-06-17 19:56:37 -05007021 IOCB_t *icmd = &elsiocb->iocb;
James Smarted957682007-06-17 19:56:37 -05007022 dma_addr_t paddr;
James Smart92d7f7b2007-06-17 19:56:38 -05007023 struct lpfc_dmabuf *bdeBuf1 = elsiocb->context2;
7024 struct lpfc_dmabuf *bdeBuf2 = elsiocb->context3;
James Smarted957682007-06-17 19:56:37 -05007025
James Smartd7c255b2008-08-24 21:50:00 -04007026 elsiocb->context1 = NULL;
James Smart92d7f7b2007-06-17 19:56:38 -05007027 elsiocb->context2 = NULL;
7028 elsiocb->context3 = NULL;
7029
7030 if (icmd->ulpStatus == IOSTAT_NEED_BUFFER) {
7031 lpfc_sli_hbqbuf_add_hbqs(phba, LPFC_ELS_HBQ);
7032 } else if (icmd->ulpStatus == IOSTAT_LOCAL_REJECT &&
James Smarte3d2b802012-08-14 14:25:43 -04007033 (icmd->un.ulpWord[4] & IOERR_PARAM_MASK) ==
7034 IOERR_RCV_BUFFER_WAITING) {
James Smarted957682007-06-17 19:56:37 -05007035 phba->fc_stat.NoRcvBuf++;
7036 /* Not enough posted buffers; Try posting more buffers */
James Smart92d7f7b2007-06-17 19:56:38 -05007037 if (!(phba->sli3_options & LPFC_SLI3_HBQ_ENABLED))
James Smart495a7142008-06-14 22:52:59 -04007038 lpfc_post_buffer(phba, pring, 0);
James Smarted957682007-06-17 19:56:37 -05007039 return;
7040 }
7041
James Smart92d7f7b2007-06-17 19:56:38 -05007042 if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
7043 (icmd->ulpCommand == CMD_IOCB_RCV_ELS64_CX ||
7044 icmd->ulpCommand == CMD_IOCB_RCV_SEQ64_CX)) {
7045 if (icmd->unsli3.rcvsli3.vpi == 0xffff)
7046 vport = phba->pport;
James Smart6fb120a2009-05-22 14:52:59 -04007047 else
7048 vport = lpfc_find_vport_by_vpid(phba,
James Smart6d368e52011-05-24 11:44:12 -04007049 icmd->unsli3.rcvsli3.vpi);
James Smart92d7f7b2007-06-17 19:56:38 -05007050 }
James Smart6d368e52011-05-24 11:44:12 -04007051
James Smart7f5f3d02008-02-08 18:50:14 -05007052 /* If there are no BDEs associated
7053 * with this IOCB, there is nothing to do.
7054 */
James Smarted957682007-06-17 19:56:37 -05007055 if (icmd->ulpBdeCount == 0)
7056 return;
7057
James Smart7f5f3d02008-02-08 18:50:14 -05007058 /* type of ELS cmd is first 32bit word
7059 * in packet
7060 */
James Smarted957682007-06-17 19:56:37 -05007061 if (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) {
James Smart92d7f7b2007-06-17 19:56:38 -05007062 elsiocb->context2 = bdeBuf1;
James Smarted957682007-06-17 19:56:37 -05007063 } else {
7064 paddr = getPaddr(icmd->un.cont64[0].addrHigh,
7065 icmd->un.cont64[0].addrLow);
James Smart92d7f7b2007-06-17 19:56:38 -05007066 elsiocb->context2 = lpfc_sli_ringpostbuf_get(phba, pring,
7067 paddr);
James Smarted957682007-06-17 19:56:37 -05007068 }
7069
James Smart92d7f7b2007-06-17 19:56:38 -05007070 lpfc_els_unsol_buffer(phba, pring, vport, elsiocb);
7071 /*
7072 * The different unsolicited event handlers would tell us
7073 * if they are done with "mp" by setting context2 to NULL.
7074 */
dea31012005-04-17 16:05:31 -05007075 if (elsiocb->context2) {
James Smart92d7f7b2007-06-17 19:56:38 -05007076 lpfc_in_buf_free(phba, (struct lpfc_dmabuf *)elsiocb->context2);
7077 elsiocb->context2 = NULL;
dea31012005-04-17 16:05:31 -05007078 }
James Smarted957682007-06-17 19:56:37 -05007079
7080 /* RCV_ELS64_CX provide for 2 BDEs - process 2nd if included */
James Smart92d7f7b2007-06-17 19:56:38 -05007081 if ((phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) &&
James Smarted957682007-06-17 19:56:37 -05007082 icmd->ulpBdeCount == 2) {
James Smart92d7f7b2007-06-17 19:56:38 -05007083 elsiocb->context2 = bdeBuf2;
7084 lpfc_els_unsol_buffer(phba, pring, vport, elsiocb);
James Smarted957682007-06-17 19:56:37 -05007085 /* free mp if we are done with it */
7086 if (elsiocb->context2) {
James Smart92d7f7b2007-06-17 19:56:38 -05007087 lpfc_in_buf_free(phba, elsiocb->context2);
7088 elsiocb->context2 = NULL;
James Smarted957682007-06-17 19:56:37 -05007089 }
dea31012005-04-17 16:05:31 -05007090 }
dea31012005-04-17 16:05:31 -05007091}
James Smart92d7f7b2007-06-17 19:56:38 -05007092
James Smarte59058c2008-08-24 21:49:00 -04007093/**
James Smart3621a712009-04-06 18:47:14 -04007094 * lpfc_do_scr_ns_plogi - Issue a plogi to the name server for scr
James Smarte59058c2008-08-24 21:49:00 -04007095 * @phba: pointer to lpfc hba data structure.
7096 * @vport: pointer to a virtual N_Port data structure.
7097 *
7098 * This routine issues a Port Login (PLOGI) to the Name Server with
7099 * State Change Request (SCR) for a @vport. This routine will create an
7100 * ndlp for the Name Server associated to the @vport if such node does
7101 * not already exist. The PLOGI to Name Server is issued by invoking the
7102 * lpfc_issue_els_plogi() routine. If Fabric-Device Management Interface
7103 * (FDMI) is configured to the @vport, a FDMI node will be created and
7104 * the PLOGI to FDMI is issued by invoking lpfc_issue_els_plogi() routine.
7105 **/
James Smart92d7f7b2007-06-17 19:56:38 -05007106void
7107lpfc_do_scr_ns_plogi(struct lpfc_hba *phba, struct lpfc_vport *vport)
7108{
7109 struct lpfc_nodelist *ndlp, *ndlp_fdmi;
James Smart92494142011-02-16 12:39:44 -05007110 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
7111
7112 /*
7113 * If lpfc_delay_discovery parameter is set and the clean address
7114 * bit is cleared and fc fabric parameters chenged, delay FC NPort
7115 * discovery.
7116 */
7117 spin_lock_irq(shost->host_lock);
7118 if (vport->fc_flag & FC_DISC_DELAYED) {
7119 spin_unlock_irq(shost->host_lock);
James Smart18775702013-04-17 20:19:25 -04007120 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY,
7121 "3334 Delay fc port discovery for %d seconds\n",
7122 phba->fc_ratov);
James Smart92494142011-02-16 12:39:44 -05007123 mod_timer(&vport->delayed_disc_tmo,
James Smart256ec0d2013-04-17 20:14:58 -04007124 jiffies + msecs_to_jiffies(1000 * phba->fc_ratov));
James Smart92494142011-02-16 12:39:44 -05007125 return;
7126 }
7127 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05007128
7129 ndlp = lpfc_findnode_did(vport, NameServer_DID);
7130 if (!ndlp) {
7131 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
7132 if (!ndlp) {
James Smart76a95d72010-11-20 23:11:48 -05007133 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
James Smart92d7f7b2007-06-17 19:56:38 -05007134 lpfc_disc_start(vport);
7135 return;
7136 }
7137 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
James Smarte8b62012007-08-02 11:10:09 -04007138 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
7139 "0251 NameServer login: no memory\n");
James Smart92d7f7b2007-06-17 19:56:38 -05007140 return;
7141 }
7142 lpfc_nlp_init(vport, ndlp, NameServer_DID);
James Smarte47c9092008-02-08 18:49:26 -05007143 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
7144 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
7145 if (!ndlp) {
James Smart76a95d72010-11-20 23:11:48 -05007146 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
James Smarte47c9092008-02-08 18:49:26 -05007147 lpfc_disc_start(vport);
7148 return;
7149 }
7150 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
7151 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
7152 "0348 NameServer login: node freed\n");
7153 return;
7154 }
James Smart92d7f7b2007-06-17 19:56:38 -05007155 }
James Smart58da1ff2008-04-07 10:15:56 -04007156 ndlp->nlp_type |= NLP_FABRIC;
James Smart92d7f7b2007-06-17 19:56:38 -05007157
7158 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
7159
7160 if (lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0)) {
7161 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
James Smarte8b62012007-08-02 11:10:09 -04007162 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
7163 "0252 Cannot issue NameServer login\n");
James Smart92d7f7b2007-06-17 19:56:38 -05007164 return;
7165 }
7166
James Smart3de2a652007-08-02 11:09:59 -04007167 if (vport->cfg_fdmi_on) {
James Smart63e801c2010-11-20 23:14:19 -05007168 /* If this is the first time, allocate an ndlp and initialize
7169 * it. Otherwise, make sure the node is enabled and then do the
7170 * login.
7171 */
7172 ndlp_fdmi = lpfc_findnode_did(vport, FDMI_DID);
7173 if (!ndlp_fdmi) {
7174 ndlp_fdmi = mempool_alloc(phba->nlp_mem_pool,
7175 GFP_KERNEL);
7176 if (ndlp_fdmi) {
7177 lpfc_nlp_init(vport, ndlp_fdmi, FDMI_DID);
7178 ndlp_fdmi->nlp_type |= NLP_FABRIC;
7179 } else
7180 return;
7181 }
7182 if (!NLP_CHK_NODE_ACT(ndlp_fdmi))
7183 ndlp_fdmi = lpfc_enable_node(vport,
7184 ndlp_fdmi,
7185 NLP_STE_NPR_NODE);
7186
James Smart92d7f7b2007-06-17 19:56:38 -05007187 if (ndlp_fdmi) {
James Smart58da1ff2008-04-07 10:15:56 -04007188 lpfc_nlp_set_state(vport, ndlp_fdmi,
James Smart63e801c2010-11-20 23:14:19 -05007189 NLP_STE_PLOGI_ISSUE);
7190 lpfc_issue_els_plogi(vport, ndlp_fdmi->nlp_DID, 0);
James Smart92d7f7b2007-06-17 19:56:38 -05007191 }
7192 }
James Smart92d7f7b2007-06-17 19:56:38 -05007193}
7194
James Smarte59058c2008-08-24 21:49:00 -04007195/**
James Smart3621a712009-04-06 18:47:14 -04007196 * lpfc_cmpl_reg_new_vport - Completion callback function to register new vport
James Smarte59058c2008-08-24 21:49:00 -04007197 * @phba: pointer to lpfc hba data structure.
7198 * @pmb: pointer to the driver internal queue element for mailbox command.
7199 *
7200 * This routine is the completion callback function to register new vport
7201 * mailbox command. If the new vport mailbox command completes successfully,
7202 * the fabric registration login shall be performed on physical port (the
7203 * new vport created is actually a physical port, with VPI 0) or the port
7204 * login to Name Server for State Change Request (SCR) will be performed
7205 * on virtual port (real virtual port, with VPI greater than 0).
7206 **/
James Smart92d7f7b2007-06-17 19:56:38 -05007207static void
7208lpfc_cmpl_reg_new_vport(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
7209{
7210 struct lpfc_vport *vport = pmb->vport;
7211 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
7212 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) pmb->context2;
James Smart04c68492009-05-22 14:52:52 -04007213 MAILBOX_t *mb = &pmb->u.mb;
James Smart695a8142010-01-26 23:08:03 -05007214 int rc;
James Smart92d7f7b2007-06-17 19:56:38 -05007215
James Smart09372822008-01-11 01:52:54 -05007216 spin_lock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05007217 vport->fc_flag &= ~FC_VPORT_NEEDS_REG_VPI;
James Smart09372822008-01-11 01:52:54 -05007218 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05007219
7220 if (mb->mbxStatus) {
James Smarte8b62012007-08-02 11:10:09 -04007221 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
James Smart38b92ef2010-08-04 16:11:39 -04007222 "0915 Register VPI failed : Status: x%x"
7223 " upd bit: x%x \n", mb->mbxStatus,
7224 mb->un.varRegVpi.upd);
7225 if (phba->sli_rev == LPFC_SLI_REV4 &&
7226 mb->un.varRegVpi.upd)
7227 goto mbox_err_exit ;
James Smart92d7f7b2007-06-17 19:56:38 -05007228
7229 switch (mb->mbxStatus) {
7230 case 0x11: /* unsupported feature */
7231 case 0x9603: /* max_vpi exceeded */
James Smart7f5f3d02008-02-08 18:50:14 -05007232 case 0x9602: /* Link event since CLEAR_LA */
James Smart92d7f7b2007-06-17 19:56:38 -05007233 /* giving up on vport registration */
7234 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
7235 spin_lock_irq(shost->host_lock);
7236 vport->fc_flag &= ~(FC_FABRIC | FC_PUBLIC_LOOP);
7237 spin_unlock_irq(shost->host_lock);
7238 lpfc_can_disctmo(vport);
7239 break;
James Smart695a8142010-01-26 23:08:03 -05007240 /* If reg_vpi fail with invalid VPI status, re-init VPI */
7241 case 0x20:
7242 spin_lock_irq(shost->host_lock);
7243 vport->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
7244 spin_unlock_irq(shost->host_lock);
7245 lpfc_init_vpi(phba, pmb, vport->vpi);
7246 pmb->vport = vport;
7247 pmb->mbox_cmpl = lpfc_init_vpi_cmpl;
7248 rc = lpfc_sli_issue_mbox(phba, pmb,
7249 MBX_NOWAIT);
7250 if (rc == MBX_NOT_FINISHED) {
7251 lpfc_printf_vlog(vport,
7252 KERN_ERR, LOG_MBOX,
7253 "2732 Failed to issue INIT_VPI"
7254 " mailbox command\n");
7255 } else {
7256 lpfc_nlp_put(ndlp);
7257 return;
7258 }
7259
James Smart92d7f7b2007-06-17 19:56:38 -05007260 default:
7261 /* Try to recover from this error */
James Smart5af5eee2010-10-22 11:06:38 -04007262 if (phba->sli_rev == LPFC_SLI_REV4)
7263 lpfc_sli4_unreg_all_rpis(vport);
James Smart92d7f7b2007-06-17 19:56:38 -05007264 lpfc_mbx_unreg_vpi(vport);
James Smart09372822008-01-11 01:52:54 -05007265 spin_lock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05007266 vport->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
James Smart09372822008-01-11 01:52:54 -05007267 spin_unlock_irq(shost->host_lock);
James Smart4b40c592010-03-15 11:25:44 -04007268 if (vport->port_type == LPFC_PHYSICAL_PORT
7269 && !(vport->fc_flag & FC_LOGO_RCVD_DID_CHNG))
James Smart76a95d72010-11-20 23:11:48 -05007270 lpfc_issue_init_vfi(vport);
James Smart7f5f3d02008-02-08 18:50:14 -05007271 else
7272 lpfc_initial_fdisc(vport);
James Smart92d7f7b2007-06-17 19:56:38 -05007273 break;
7274 }
James Smart92d7f7b2007-06-17 19:56:38 -05007275 } else {
James Smart695a8142010-01-26 23:08:03 -05007276 spin_lock_irq(shost->host_lock);
James Smart19878072009-12-21 17:02:00 -05007277 vport->vpi_state |= LPFC_VPI_REGISTERED;
James Smart695a8142010-01-26 23:08:03 -05007278 spin_unlock_irq(shost->host_lock);
7279 if (vport == phba->pport) {
James Smart6fb120a2009-05-22 14:52:59 -04007280 if (phba->sli_rev < LPFC_SLI_REV4)
7281 lpfc_issue_fabric_reglogin(vport);
James Smart695a8142010-01-26 23:08:03 -05007282 else {
James Smartfc2b9892010-02-26 14:15:29 -05007283 /*
7284 * If the physical port is instantiated using
7285 * FDISC, do not start vport discovery.
7286 */
7287 if (vport->port_state != LPFC_FDISC)
7288 lpfc_start_fdiscs(phba);
James Smart695a8142010-01-26 23:08:03 -05007289 lpfc_do_scr_ns_plogi(phba, vport);
7290 }
7291 } else
James Smart92d7f7b2007-06-17 19:56:38 -05007292 lpfc_do_scr_ns_plogi(phba, vport);
7293 }
James Smart38b92ef2010-08-04 16:11:39 -04007294mbox_err_exit:
James Smartfa4066b2008-01-11 01:53:27 -05007295 /* Now, we decrement the ndlp reference count held for this
7296 * callback function
7297 */
7298 lpfc_nlp_put(ndlp);
7299
James Smart92d7f7b2007-06-17 19:56:38 -05007300 mempool_free(pmb, phba->mbox_mem_pool);
7301 return;
7302}
7303
James Smarte59058c2008-08-24 21:49:00 -04007304/**
James Smart3621a712009-04-06 18:47:14 -04007305 * lpfc_register_new_vport - Register a new vport with a HBA
James Smarte59058c2008-08-24 21:49:00 -04007306 * @phba: pointer to lpfc hba data structure.
7307 * @vport: pointer to a host virtual N_Port data structure.
7308 * @ndlp: pointer to a node-list data structure.
7309 *
7310 * This routine registers the @vport as a new virtual port with a HBA.
7311 * It is done through a registering vpi mailbox command.
7312 **/
James Smart695a8142010-01-26 23:08:03 -05007313void
James Smart92d7f7b2007-06-17 19:56:38 -05007314lpfc_register_new_vport(struct lpfc_hba *phba, struct lpfc_vport *vport,
7315 struct lpfc_nodelist *ndlp)
7316{
James Smart09372822008-01-11 01:52:54 -05007317 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart92d7f7b2007-06-17 19:56:38 -05007318 LPFC_MBOXQ_t *mbox;
7319
7320 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
7321 if (mbox) {
James Smart6fb120a2009-05-22 14:52:59 -04007322 lpfc_reg_vpi(vport, mbox);
James Smart92d7f7b2007-06-17 19:56:38 -05007323 mbox->vport = vport;
7324 mbox->context2 = lpfc_nlp_get(ndlp);
7325 mbox->mbox_cmpl = lpfc_cmpl_reg_new_vport;
James Smart0b727fe2007-10-27 13:37:25 -04007326 if (lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT)
James Smart92d7f7b2007-06-17 19:56:38 -05007327 == MBX_NOT_FINISHED) {
James Smartfa4066b2008-01-11 01:53:27 -05007328 /* mailbox command not success, decrement ndlp
7329 * reference count for this command
7330 */
7331 lpfc_nlp_put(ndlp);
James Smart92d7f7b2007-06-17 19:56:38 -05007332 mempool_free(mbox, phba->mbox_mem_pool);
James Smart92d7f7b2007-06-17 19:56:38 -05007333
James Smarte8b62012007-08-02 11:10:09 -04007334 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
7335 "0253 Register VPI: Can't send mbox\n");
James Smartfa4066b2008-01-11 01:53:27 -05007336 goto mbox_err_exit;
James Smart92d7f7b2007-06-17 19:56:38 -05007337 }
7338 } else {
James Smarte8b62012007-08-02 11:10:09 -04007339 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
7340 "0254 Register VPI: no memory\n");
James Smartfa4066b2008-01-11 01:53:27 -05007341 goto mbox_err_exit;
James Smart92d7f7b2007-06-17 19:56:38 -05007342 }
James Smartfa4066b2008-01-11 01:53:27 -05007343 return;
7344
7345mbox_err_exit:
7346 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
7347 spin_lock_irq(shost->host_lock);
7348 vport->fc_flag &= ~FC_VPORT_NEEDS_REG_VPI;
7349 spin_unlock_irq(shost->host_lock);
7350 return;
James Smart92d7f7b2007-06-17 19:56:38 -05007351}
7352
James Smarte59058c2008-08-24 21:49:00 -04007353/**
James Smart0c9ab6f2010-02-26 14:15:57 -05007354 * lpfc_cancel_all_vport_retry_delay_timer - Cancel all vport retry delay timer
James Smart695a8142010-01-26 23:08:03 -05007355 * @phba: pointer to lpfc hba data structure.
7356 *
James Smart0c9ab6f2010-02-26 14:15:57 -05007357 * This routine cancels the retry delay timers to all the vports.
James Smart695a8142010-01-26 23:08:03 -05007358 **/
7359void
James Smart0c9ab6f2010-02-26 14:15:57 -05007360lpfc_cancel_all_vport_retry_delay_timer(struct lpfc_hba *phba)
James Smart695a8142010-01-26 23:08:03 -05007361{
7362 struct lpfc_vport **vports;
7363 struct lpfc_nodelist *ndlp;
James Smart695a8142010-01-26 23:08:03 -05007364 uint32_t link_state;
James Smart0c9ab6f2010-02-26 14:15:57 -05007365 int i;
James Smart695a8142010-01-26 23:08:03 -05007366
7367 /* Treat this failure as linkdown for all vports */
7368 link_state = phba->link_state;
7369 lpfc_linkdown(phba);
7370 phba->link_state = link_state;
7371
7372 vports = lpfc_create_vport_work_array(phba);
7373
7374 if (vports) {
7375 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
7376 ndlp = lpfc_findnode_did(vports[i], Fabric_DID);
7377 if (ndlp)
7378 lpfc_cancel_retry_delay_tmo(vports[i], ndlp);
7379 lpfc_els_flush_cmd(vports[i]);
7380 }
7381 lpfc_destroy_vport_work_array(phba, vports);
7382 }
James Smart0c9ab6f2010-02-26 14:15:57 -05007383}
7384
7385/**
7386 * lpfc_retry_pport_discovery - Start timer to retry FLOGI.
7387 * @phba: pointer to lpfc hba data structure.
7388 *
7389 * This routine abort all pending discovery commands and
7390 * start a timer to retry FLOGI for the physical port
7391 * discovery.
7392 **/
7393void
7394lpfc_retry_pport_discovery(struct lpfc_hba *phba)
7395{
7396 struct lpfc_nodelist *ndlp;
7397 struct Scsi_Host *shost;
7398
7399 /* Cancel the all vports retry delay retry timers */
7400 lpfc_cancel_all_vport_retry_delay_timer(phba);
James Smart695a8142010-01-26 23:08:03 -05007401
7402 /* If fabric require FLOGI, then re-instantiate physical login */
7403 ndlp = lpfc_findnode_did(phba->pport, Fabric_DID);
7404 if (!ndlp)
7405 return;
7406
James Smart695a8142010-01-26 23:08:03 -05007407 shost = lpfc_shost_from_vport(phba->pport);
James Smart256ec0d2013-04-17 20:14:58 -04007408 mod_timer(&ndlp->nlp_delayfunc, jiffies + msecs_to_jiffies(1000));
James Smart695a8142010-01-26 23:08:03 -05007409 spin_lock_irq(shost->host_lock);
7410 ndlp->nlp_flag |= NLP_DELAY_TMO;
7411 spin_unlock_irq(shost->host_lock);
7412 ndlp->nlp_last_elscmd = ELS_CMD_FLOGI;
7413 phba->pport->port_state = LPFC_FLOGI;
7414 return;
7415}
7416
7417/**
7418 * lpfc_fabric_login_reqd - Check if FLOGI required.
7419 * @phba: pointer to lpfc hba data structure.
7420 * @cmdiocb: pointer to FDISC command iocb.
7421 * @rspiocb: pointer to FDISC response iocb.
7422 *
7423 * This routine checks if a FLOGI is reguired for FDISC
7424 * to succeed.
7425 **/
7426static int
7427lpfc_fabric_login_reqd(struct lpfc_hba *phba,
7428 struct lpfc_iocbq *cmdiocb,
7429 struct lpfc_iocbq *rspiocb)
7430{
7431
7432 if ((rspiocb->iocb.ulpStatus != IOSTAT_FABRIC_RJT) ||
7433 (rspiocb->iocb.un.ulpWord[4] != RJT_LOGIN_REQUIRED))
7434 return 0;
7435 else
7436 return 1;
7437}
7438
7439/**
James Smart3621a712009-04-06 18:47:14 -04007440 * lpfc_cmpl_els_fdisc - Completion function for fdisc iocb command
James Smarte59058c2008-08-24 21:49:00 -04007441 * @phba: pointer to lpfc hba data structure.
7442 * @cmdiocb: pointer to lpfc command iocb data structure.
7443 * @rspiocb: pointer to lpfc response iocb data structure.
7444 *
7445 * This routine is the completion callback function to a Fabric Discover
7446 * (FDISC) ELS command. Since all the FDISC ELS commands are issued
7447 * single threaded, each FDISC completion callback function will reset
7448 * the discovery timer for all vports such that the timers will not get
7449 * unnecessary timeout. The function checks the FDISC IOCB status. If error
7450 * detected, the vport will be set to FC_VPORT_FAILED state. Otherwise,the
7451 * vport will set to FC_VPORT_ACTIVE state. It then checks whether the DID
7452 * assigned to the vport has been changed with the completion of the FDISC
7453 * command. If so, both RPI (Remote Port Index) and VPI (Virtual Port Index)
7454 * are unregistered from the HBA, and then the lpfc_register_new_vport()
7455 * routine is invoked to register new vport with the HBA. Otherwise, the
7456 * lpfc_do_scr_ns_plogi() routine is invoked to issue a PLOGI to the Name
7457 * Server for State Change Request (SCR).
7458 **/
James Smart92d7f7b2007-06-17 19:56:38 -05007459static void
7460lpfc_cmpl_els_fdisc(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
7461 struct lpfc_iocbq *rspiocb)
7462{
7463 struct lpfc_vport *vport = cmdiocb->vport;
7464 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
7465 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
7466 struct lpfc_nodelist *np;
7467 struct lpfc_nodelist *next_np;
7468 IOCB_t *irsp = &rspiocb->iocb;
7469 struct lpfc_iocbq *piocb;
James Smart92494142011-02-16 12:39:44 -05007470 struct lpfc_dmabuf *pcmd = cmdiocb->context2, *prsp;
7471 struct serv_parm *sp;
7472 uint8_t fabric_param_changed;
James Smart92d7f7b2007-06-17 19:56:38 -05007473
James Smarte8b62012007-08-02 11:10:09 -04007474 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
7475 "0123 FDISC completes. x%x/x%x prevDID: x%x\n",
7476 irsp->ulpStatus, irsp->un.ulpWord[4],
7477 vport->fc_prevDID);
James Smart92d7f7b2007-06-17 19:56:38 -05007478 /* Since all FDISCs are being single threaded, we
7479 * must reset the discovery timer for ALL vports
7480 * waiting to send FDISC when one completes.
7481 */
7482 list_for_each_entry(piocb, &phba->fabric_iocb_list, list) {
7483 lpfc_set_disctmo(piocb->vport);
7484 }
7485
James Smart858c9f62007-06-17 19:56:39 -05007486 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
7487 "FDISC cmpl: status:x%x/x%x prevdid:x%x",
7488 irsp->ulpStatus, irsp->un.ulpWord[4], vport->fc_prevDID);
7489
James Smart92d7f7b2007-06-17 19:56:38 -05007490 if (irsp->ulpStatus) {
James Smart695a8142010-01-26 23:08:03 -05007491
7492 if (lpfc_fabric_login_reqd(phba, cmdiocb, rspiocb)) {
7493 lpfc_retry_pport_discovery(phba);
7494 goto out;
7495 }
7496
James Smart92d7f7b2007-06-17 19:56:38 -05007497 /* Check for retry */
7498 if (lpfc_els_retry(phba, cmdiocb, rspiocb))
7499 goto out;
James Smart92d7f7b2007-06-17 19:56:38 -05007500 /* FDISC failed */
James Smarte8b62012007-08-02 11:10:09 -04007501 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
James Smart6b5151f2012-01-18 16:24:06 -05007502 "0126 FDISC failed. (x%x/x%x)\n",
James Smarte8b62012007-08-02 11:10:09 -04007503 irsp->ulpStatus, irsp->un.ulpWord[4]);
James Smartd7c255b2008-08-24 21:50:00 -04007504 goto fdisc_failed;
7505 }
James Smartd7c255b2008-08-24 21:50:00 -04007506 spin_lock_irq(shost->host_lock);
James Smart695a8142010-01-26 23:08:03 -05007507 vport->fc_flag &= ~FC_VPORT_CVL_RCVD;
James Smart4b40c592010-03-15 11:25:44 -04007508 vport->fc_flag &= ~FC_VPORT_LOGO_RCVD;
James Smartd7c255b2008-08-24 21:50:00 -04007509 vport->fc_flag |= FC_FABRIC;
James Smart76a95d72010-11-20 23:11:48 -05007510 if (vport->phba->fc_topology == LPFC_TOPOLOGY_LOOP)
James Smartd7c255b2008-08-24 21:50:00 -04007511 vport->fc_flag |= FC_PUBLIC_LOOP;
7512 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05007513
James Smartd7c255b2008-08-24 21:50:00 -04007514 vport->fc_myDID = irsp->un.ulpWord[4] & Mask_DID;
7515 lpfc_vport_set_state(vport, FC_VPORT_ACTIVE);
James Smart92494142011-02-16 12:39:44 -05007516 prsp = list_get_first(&pcmd->list, struct lpfc_dmabuf, list);
James Smarta2fc4aef2014-09-03 12:57:55 -04007517 if (!prsp)
7518 goto out;
James Smart92494142011-02-16 12:39:44 -05007519 sp = prsp->virt + sizeof(uint32_t);
7520 fabric_param_changed = lpfc_check_clean_addr_bit(vport, sp);
7521 memcpy(&vport->fabric_portname, &sp->portName,
7522 sizeof(struct lpfc_name));
7523 memcpy(&vport->fabric_nodename, &sp->nodeName,
7524 sizeof(struct lpfc_name));
7525 if (fabric_param_changed &&
James Smartd7c255b2008-08-24 21:50:00 -04007526 !(vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)) {
7527 /* If our NportID changed, we need to ensure all
7528 * remaining NPORTs get unreg_login'ed so we can
7529 * issue unreg_vpi.
7530 */
7531 list_for_each_entry_safe(np, next_np,
7532 &vport->fc_nodes, nlp_listp) {
7533 if (!NLP_CHK_NODE_ACT(ndlp) ||
7534 (np->nlp_state != NLP_STE_NPR_NODE) ||
7535 !(np->nlp_flag & NLP_NPR_ADISC))
7536 continue;
James Smart09372822008-01-11 01:52:54 -05007537 spin_lock_irq(shost->host_lock);
James Smartd7c255b2008-08-24 21:50:00 -04007538 np->nlp_flag &= ~NLP_NPR_ADISC;
James Smart09372822008-01-11 01:52:54 -05007539 spin_unlock_irq(shost->host_lock);
James Smartd7c255b2008-08-24 21:50:00 -04007540 lpfc_unreg_rpi(vport, np);
James Smart92d7f7b2007-06-17 19:56:38 -05007541 }
James Smart78730cf2010-04-06 15:06:30 -04007542 lpfc_cleanup_pending_mbox(vport);
James Smart5af5eee2010-10-22 11:06:38 -04007543
7544 if (phba->sli_rev == LPFC_SLI_REV4)
7545 lpfc_sli4_unreg_all_rpis(vport);
7546
James Smartd7c255b2008-08-24 21:50:00 -04007547 lpfc_mbx_unreg_vpi(vport);
7548 spin_lock_irq(shost->host_lock);
7549 vport->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
James Smart0f65ff62010-02-26 14:14:23 -05007550 if (phba->sli_rev == LPFC_SLI_REV4)
7551 vport->fc_flag |= FC_VPORT_NEEDS_INIT_VPI;
James Smart4b40c592010-03-15 11:25:44 -04007552 else
7553 vport->fc_flag |= FC_LOGO_RCVD_DID_CHNG;
James Smartd7c255b2008-08-24 21:50:00 -04007554 spin_unlock_irq(shost->host_lock);
James Smart38b92ef2010-08-04 16:11:39 -04007555 } else if ((phba->sli_rev == LPFC_SLI_REV4) &&
7556 !(vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)) {
7557 /*
7558 * Driver needs to re-reg VPI in order for f/w
7559 * to update the MAC address.
7560 */
7561 lpfc_register_new_vport(phba, vport, ndlp);
James Smart5ac6b302010-10-22 11:05:36 -04007562 goto out;
James Smart92d7f7b2007-06-17 19:56:38 -05007563 }
7564
James Smartecfd03c2010-02-12 14:41:27 -05007565 if (vport->fc_flag & FC_VPORT_NEEDS_INIT_VPI)
7566 lpfc_issue_init_vpi(vport);
7567 else if (vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)
James Smartd7c255b2008-08-24 21:50:00 -04007568 lpfc_register_new_vport(phba, vport, ndlp);
7569 else
7570 lpfc_do_scr_ns_plogi(phba, vport);
7571 goto out;
7572fdisc_failed:
7573 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
7574 /* Cancel discovery timer */
7575 lpfc_can_disctmo(vport);
7576 lpfc_nlp_put(ndlp);
James Smart92d7f7b2007-06-17 19:56:38 -05007577out:
7578 lpfc_els_free_iocb(phba, cmdiocb);
7579}
7580
James Smarte59058c2008-08-24 21:49:00 -04007581/**
James Smart3621a712009-04-06 18:47:14 -04007582 * lpfc_issue_els_fdisc - Issue a fdisc iocb command
James Smarte59058c2008-08-24 21:49:00 -04007583 * @vport: pointer to a virtual N_Port data structure.
7584 * @ndlp: pointer to a node-list data structure.
7585 * @retry: number of retries to the command IOCB.
7586 *
7587 * This routine prepares and issues a Fabric Discover (FDISC) IOCB to
7588 * a remote node (@ndlp) off a @vport. It uses the lpfc_issue_fabric_iocb()
7589 * routine to issue the IOCB, which makes sure only one outstanding fabric
7590 * IOCB will be sent off HBA at any given time.
7591 *
7592 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
7593 * will be incremented by 1 for holding the ndlp and the reference to ndlp
7594 * will be stored into the context1 field of the IOCB for the completion
7595 * callback function to the FDISC ELS command.
7596 *
7597 * Return code
7598 * 0 - Successfully issued fdisc iocb command
7599 * 1 - Failed to issue fdisc iocb command
7600 **/
Adrian Bunka6ababd2007-11-05 18:07:33 +01007601static int
James Smart92d7f7b2007-06-17 19:56:38 -05007602lpfc_issue_els_fdisc(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
7603 uint8_t retry)
7604{
7605 struct lpfc_hba *phba = vport->phba;
7606 IOCB_t *icmd;
7607 struct lpfc_iocbq *elsiocb;
7608 struct serv_parm *sp;
7609 uint8_t *pcmd;
7610 uint16_t cmdsize;
7611 int did = ndlp->nlp_DID;
7612 int rc;
James Smart92d7f7b2007-06-17 19:56:38 -05007613
James Smart5ffc2662009-11-18 15:39:44 -05007614 vport->port_state = LPFC_FDISC;
James Smart6b5151f2012-01-18 16:24:06 -05007615 vport->fc_myDID = 0;
James Smart92d7f7b2007-06-17 19:56:38 -05007616 cmdsize = (sizeof(uint32_t) + sizeof(struct serv_parm));
7617 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp, did,
7618 ELS_CMD_FDISC);
7619 if (!elsiocb) {
James Smart92d7f7b2007-06-17 19:56:38 -05007620 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
James Smarte8b62012007-08-02 11:10:09 -04007621 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
7622 "0255 Issue FDISC: no IOCB\n");
James Smart92d7f7b2007-06-17 19:56:38 -05007623 return 1;
7624 }
7625
7626 icmd = &elsiocb->iocb;
7627 icmd->un.elsreq64.myID = 0;
7628 icmd->un.elsreq64.fl = 1;
7629
James Smart73d91e52011-10-10 21:32:10 -04007630 /*
7631 * SLI3 ports require a different context type value than SLI4.
7632 * Catch SLI3 ports here and override the prep.
7633 */
7634 if (phba->sli_rev == LPFC_SLI_REV3) {
James Smartf1126682009-06-10 17:22:44 -04007635 icmd->ulpCt_h = 1;
7636 icmd->ulpCt_l = 0;
7637 }
James Smart92d7f7b2007-06-17 19:56:38 -05007638
7639 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
7640 *((uint32_t *) (pcmd)) = ELS_CMD_FDISC;
7641 pcmd += sizeof(uint32_t); /* CSP Word 1 */
7642 memcpy(pcmd, &vport->phba->pport->fc_sparam, sizeof(struct serv_parm));
7643 sp = (struct serv_parm *) pcmd;
7644 /* Setup CSPs accordingly for Fabric */
7645 sp->cmn.e_d_tov = 0;
7646 sp->cmn.w2.r_a_tov = 0;
James Smartdf9e1b52011-12-13 13:22:17 -05007647 sp->cmn.virtual_fabric_support = 0;
James Smart92d7f7b2007-06-17 19:56:38 -05007648 sp->cls1.classValid = 0;
7649 sp->cls2.seqDelivery = 1;
7650 sp->cls3.seqDelivery = 1;
7651
7652 pcmd += sizeof(uint32_t); /* CSP Word 2 */
7653 pcmd += sizeof(uint32_t); /* CSP Word 3 */
7654 pcmd += sizeof(uint32_t); /* CSP Word 4 */
7655 pcmd += sizeof(uint32_t); /* Port Name */
7656 memcpy(pcmd, &vport->fc_portname, 8);
7657 pcmd += sizeof(uint32_t); /* Node Name */
7658 pcmd += sizeof(uint32_t); /* Node Name */
7659 memcpy(pcmd, &vport->fc_nodename, 8);
7660
7661 lpfc_set_disctmo(vport);
7662
7663 phba->fc_stat.elsXmitFDISC++;
7664 elsiocb->iocb_cmpl = lpfc_cmpl_els_fdisc;
7665
James Smart858c9f62007-06-17 19:56:39 -05007666 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
7667 "Issue FDISC: did:x%x",
7668 did, 0, 0);
7669
James Smart92d7f7b2007-06-17 19:56:38 -05007670 rc = lpfc_issue_fabric_iocb(phba, elsiocb);
7671 if (rc == IOCB_ERROR) {
7672 lpfc_els_free_iocb(phba, elsiocb);
James Smart92d7f7b2007-06-17 19:56:38 -05007673 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
James Smarte8b62012007-08-02 11:10:09 -04007674 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
7675 "0256 Issue FDISC: Cannot send IOCB\n");
James Smart92d7f7b2007-06-17 19:56:38 -05007676 return 1;
7677 }
7678 lpfc_vport_set_state(vport, FC_VPORT_INITIALIZING);
James Smart92d7f7b2007-06-17 19:56:38 -05007679 return 0;
7680}
7681
James Smarte59058c2008-08-24 21:49:00 -04007682/**
James Smart3621a712009-04-06 18:47:14 -04007683 * lpfc_cmpl_els_npiv_logo - Completion function with vport logo
James Smarte59058c2008-08-24 21:49:00 -04007684 * @phba: pointer to lpfc hba data structure.
7685 * @cmdiocb: pointer to lpfc command iocb data structure.
7686 * @rspiocb: pointer to lpfc response iocb data structure.
7687 *
7688 * This routine is the completion callback function to the issuing of a LOGO
7689 * ELS command off a vport. It frees the command IOCB and then decrement the
7690 * reference count held on ndlp for this completion function, indicating that
7691 * the reference to the ndlp is no long needed. Note that the
7692 * lpfc_els_free_iocb() routine decrements the ndlp reference held for this
7693 * callback function and an additional explicit ndlp reference decrementation
7694 * will trigger the actual release of the ndlp.
7695 **/
James Smart92d7f7b2007-06-17 19:56:38 -05007696static void
7697lpfc_cmpl_els_npiv_logo(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
7698 struct lpfc_iocbq *rspiocb)
7699{
7700 struct lpfc_vport *vport = cmdiocb->vport;
James Smart858c9f62007-06-17 19:56:39 -05007701 IOCB_t *irsp;
James Smarte47c9092008-02-08 18:49:26 -05007702 struct lpfc_nodelist *ndlp;
James Smart9589b0622011-04-16 11:03:17 -04007703 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart858c9f62007-06-17 19:56:39 -05007704
James Smart9589b0622011-04-16 11:03:17 -04007705 ndlp = (struct lpfc_nodelist *)cmdiocb->context1;
James Smart858c9f62007-06-17 19:56:39 -05007706 irsp = &rspiocb->iocb;
7707 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
7708 "LOGO npiv cmpl: status:x%x/x%x did:x%x",
7709 irsp->ulpStatus, irsp->un.ulpWord[4], irsp->un.rcvels.remoteID);
James Smart92d7f7b2007-06-17 19:56:38 -05007710
7711 lpfc_els_free_iocb(phba, cmdiocb);
7712 vport->unreg_vpi_cmpl = VPORT_ERROR;
James Smarte47c9092008-02-08 18:49:26 -05007713
7714 /* Trigger the release of the ndlp after logo */
7715 lpfc_nlp_put(ndlp);
James Smart9589b0622011-04-16 11:03:17 -04007716
7717 /* NPIV LOGO completes to NPort <nlp_DID> */
7718 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
7719 "2928 NPIV LOGO completes to NPort x%x "
7720 "Data: x%x x%x x%x x%x\n",
7721 ndlp->nlp_DID, irsp->ulpStatus, irsp->un.ulpWord[4],
7722 irsp->ulpTimeout, vport->num_disc_nodes);
7723
7724 if (irsp->ulpStatus == IOSTAT_SUCCESS) {
7725 spin_lock_irq(shost->host_lock);
7726 vport->fc_flag &= ~FC_FABRIC;
7727 spin_unlock_irq(shost->host_lock);
7728 }
James Smart92d7f7b2007-06-17 19:56:38 -05007729}
7730
James Smarte59058c2008-08-24 21:49:00 -04007731/**
James Smart3621a712009-04-06 18:47:14 -04007732 * lpfc_issue_els_npiv_logo - Issue a logo off a vport
James Smarte59058c2008-08-24 21:49:00 -04007733 * @vport: pointer to a virtual N_Port data structure.
7734 * @ndlp: pointer to a node-list data structure.
7735 *
7736 * This routine issues a LOGO ELS command to an @ndlp off a @vport.
7737 *
7738 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
7739 * will be incremented by 1 for holding the ndlp and the reference to ndlp
7740 * will be stored into the context1 field of the IOCB for the completion
7741 * callback function to the LOGO ELS command.
7742 *
7743 * Return codes
7744 * 0 - Successfully issued logo off the @vport
7745 * 1 - Failed to issue logo off the @vport
7746 **/
James Smart92d7f7b2007-06-17 19:56:38 -05007747int
7748lpfc_issue_els_npiv_logo(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
7749{
7750 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
7751 struct lpfc_hba *phba = vport->phba;
James Smart92d7f7b2007-06-17 19:56:38 -05007752 IOCB_t *icmd;
7753 struct lpfc_iocbq *elsiocb;
7754 uint8_t *pcmd;
7755 uint16_t cmdsize;
7756
7757 cmdsize = 2 * sizeof(uint32_t) + sizeof(struct lpfc_name);
7758 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, 0, ndlp, ndlp->nlp_DID,
7759 ELS_CMD_LOGO);
7760 if (!elsiocb)
7761 return 1;
7762
7763 icmd = &elsiocb->iocb;
7764 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
7765 *((uint32_t *) (pcmd)) = ELS_CMD_LOGO;
7766 pcmd += sizeof(uint32_t);
7767
7768 /* Fill in LOGO payload */
7769 *((uint32_t *) (pcmd)) = be32_to_cpu(vport->fc_myDID);
7770 pcmd += sizeof(uint32_t);
7771 memcpy(pcmd, &vport->fc_portname, sizeof(struct lpfc_name));
7772
James Smart858c9f62007-06-17 19:56:39 -05007773 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
7774 "Issue LOGO npiv did:x%x flg:x%x",
7775 ndlp->nlp_DID, ndlp->nlp_flag, 0);
7776
James Smart92d7f7b2007-06-17 19:56:38 -05007777 elsiocb->iocb_cmpl = lpfc_cmpl_els_npiv_logo;
7778 spin_lock_irq(shost->host_lock);
7779 ndlp->nlp_flag |= NLP_LOGO_SND;
7780 spin_unlock_irq(shost->host_lock);
James Smart3772a992009-05-22 14:50:54 -04007781 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) ==
7782 IOCB_ERROR) {
James Smart92d7f7b2007-06-17 19:56:38 -05007783 spin_lock_irq(shost->host_lock);
7784 ndlp->nlp_flag &= ~NLP_LOGO_SND;
7785 spin_unlock_irq(shost->host_lock);
7786 lpfc_els_free_iocb(phba, elsiocb);
7787 return 1;
7788 }
7789 return 0;
7790}
7791
James Smarte59058c2008-08-24 21:49:00 -04007792/**
James Smart3621a712009-04-06 18:47:14 -04007793 * lpfc_fabric_block_timeout - Handler function to the fabric block timer
James Smarte59058c2008-08-24 21:49:00 -04007794 * @ptr: holder for the timer function associated data.
7795 *
7796 * This routine is invoked by the fabric iocb block timer after
7797 * timeout. It posts the fabric iocb block timeout event by setting the
7798 * WORKER_FABRIC_BLOCK_TMO bit to work port event bitmap and then invokes
7799 * lpfc_worker_wake_up() routine to wake up the worker thread. It is for
7800 * the worker thread to invoke the lpfc_unblock_fabric_iocbs() on the
7801 * posted event WORKER_FABRIC_BLOCK_TMO.
7802 **/
James Smart92d7f7b2007-06-17 19:56:38 -05007803void
7804lpfc_fabric_block_timeout(unsigned long ptr)
7805{
7806 struct lpfc_hba *phba = (struct lpfc_hba *) ptr;
7807 unsigned long iflags;
7808 uint32_t tmo_posted;
James Smart5e9d9b82008-06-14 22:52:53 -04007809
James Smart92d7f7b2007-06-17 19:56:38 -05007810 spin_lock_irqsave(&phba->pport->work_port_lock, iflags);
7811 tmo_posted = phba->pport->work_port_events & WORKER_FABRIC_BLOCK_TMO;
7812 if (!tmo_posted)
7813 phba->pport->work_port_events |= WORKER_FABRIC_BLOCK_TMO;
7814 spin_unlock_irqrestore(&phba->pport->work_port_lock, iflags);
7815
James Smart5e9d9b82008-06-14 22:52:53 -04007816 if (!tmo_posted)
7817 lpfc_worker_wake_up(phba);
7818 return;
James Smart92d7f7b2007-06-17 19:56:38 -05007819}
7820
James Smarte59058c2008-08-24 21:49:00 -04007821/**
James Smart3621a712009-04-06 18:47:14 -04007822 * lpfc_resume_fabric_iocbs - Issue a fabric iocb from driver internal list
James Smarte59058c2008-08-24 21:49:00 -04007823 * @phba: pointer to lpfc hba data structure.
7824 *
7825 * This routine issues one fabric iocb from the driver internal list to
7826 * the HBA. It first checks whether it's ready to issue one fabric iocb to
7827 * the HBA (whether there is no outstanding fabric iocb). If so, it shall
7828 * remove one pending fabric iocb from the driver internal list and invokes
7829 * lpfc_sli_issue_iocb() routine to send the fabric iocb to the HBA.
7830 **/
James Smart92d7f7b2007-06-17 19:56:38 -05007831static void
7832lpfc_resume_fabric_iocbs(struct lpfc_hba *phba)
7833{
7834 struct lpfc_iocbq *iocb;
7835 unsigned long iflags;
7836 int ret;
James Smart92d7f7b2007-06-17 19:56:38 -05007837 IOCB_t *cmd;
7838
7839repeat:
7840 iocb = NULL;
7841 spin_lock_irqsave(&phba->hbalock, iflags);
James Smart7f5f3d02008-02-08 18:50:14 -05007842 /* Post any pending iocb to the SLI layer */
James Smart92d7f7b2007-06-17 19:56:38 -05007843 if (atomic_read(&phba->fabric_iocb_count) == 0) {
7844 list_remove_head(&phba->fabric_iocb_list, iocb, typeof(*iocb),
7845 list);
7846 if (iocb)
James Smart7f5f3d02008-02-08 18:50:14 -05007847 /* Increment fabric iocb count to hold the position */
James Smart92d7f7b2007-06-17 19:56:38 -05007848 atomic_inc(&phba->fabric_iocb_count);
7849 }
7850 spin_unlock_irqrestore(&phba->hbalock, iflags);
7851 if (iocb) {
7852 iocb->fabric_iocb_cmpl = iocb->iocb_cmpl;
7853 iocb->iocb_cmpl = lpfc_cmpl_fabric_iocb;
7854 iocb->iocb_flag |= LPFC_IO_FABRIC;
7855
James Smart858c9f62007-06-17 19:56:39 -05007856 lpfc_debugfs_disc_trc(iocb->vport, LPFC_DISC_TRC_ELS_CMD,
7857 "Fabric sched1: ste:x%x",
7858 iocb->vport->port_state, 0, 0);
7859
James Smart3772a992009-05-22 14:50:54 -04007860 ret = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, iocb, 0);
James Smart92d7f7b2007-06-17 19:56:38 -05007861
7862 if (ret == IOCB_ERROR) {
7863 iocb->iocb_cmpl = iocb->fabric_iocb_cmpl;
7864 iocb->fabric_iocb_cmpl = NULL;
7865 iocb->iocb_flag &= ~LPFC_IO_FABRIC;
7866 cmd = &iocb->iocb;
7867 cmd->ulpStatus = IOSTAT_LOCAL_REJECT;
7868 cmd->un.ulpWord[4] = IOERR_SLI_ABORTED;
7869 iocb->iocb_cmpl(phba, iocb, iocb);
7870
7871 atomic_dec(&phba->fabric_iocb_count);
7872 goto repeat;
7873 }
7874 }
7875
7876 return;
7877}
7878
James Smarte59058c2008-08-24 21:49:00 -04007879/**
James Smart3621a712009-04-06 18:47:14 -04007880 * lpfc_unblock_fabric_iocbs - Unblock issuing fabric iocb command
James Smarte59058c2008-08-24 21:49:00 -04007881 * @phba: pointer to lpfc hba data structure.
7882 *
7883 * This routine unblocks the issuing fabric iocb command. The function
7884 * will clear the fabric iocb block bit and then invoke the routine
7885 * lpfc_resume_fabric_iocbs() to issue one of the pending fabric iocb
7886 * from the driver internal fabric iocb list.
7887 **/
James Smart92d7f7b2007-06-17 19:56:38 -05007888void
7889lpfc_unblock_fabric_iocbs(struct lpfc_hba *phba)
7890{
7891 clear_bit(FABRIC_COMANDS_BLOCKED, &phba->bit_flags);
7892
7893 lpfc_resume_fabric_iocbs(phba);
7894 return;
7895}
7896
James Smarte59058c2008-08-24 21:49:00 -04007897/**
James Smart3621a712009-04-06 18:47:14 -04007898 * lpfc_block_fabric_iocbs - Block issuing fabric iocb command
James Smarte59058c2008-08-24 21:49:00 -04007899 * @phba: pointer to lpfc hba data structure.
7900 *
7901 * This routine blocks the issuing fabric iocb for a specified amount of
7902 * time (currently 100 ms). This is done by set the fabric iocb block bit
7903 * and set up a timeout timer for 100ms. When the block bit is set, no more
7904 * fabric iocb will be issued out of the HBA.
7905 **/
James Smart92d7f7b2007-06-17 19:56:38 -05007906static void
7907lpfc_block_fabric_iocbs(struct lpfc_hba *phba)
7908{
7909 int blocked;
7910
7911 blocked = test_and_set_bit(FABRIC_COMANDS_BLOCKED, &phba->bit_flags);
James Smart7f5f3d02008-02-08 18:50:14 -05007912 /* Start a timer to unblock fabric iocbs after 100ms */
James Smart92d7f7b2007-06-17 19:56:38 -05007913 if (!blocked)
James Smart256ec0d2013-04-17 20:14:58 -04007914 mod_timer(&phba->fabric_block_timer,
7915 jiffies + msecs_to_jiffies(100));
James Smart92d7f7b2007-06-17 19:56:38 -05007916
7917 return;
7918}
7919
James Smarte59058c2008-08-24 21:49:00 -04007920/**
James Smart3621a712009-04-06 18:47:14 -04007921 * lpfc_cmpl_fabric_iocb - Completion callback function for fabric iocb
James Smarte59058c2008-08-24 21:49:00 -04007922 * @phba: pointer to lpfc hba data structure.
7923 * @cmdiocb: pointer to lpfc command iocb data structure.
7924 * @rspiocb: pointer to lpfc response iocb data structure.
7925 *
7926 * This routine is the callback function that is put to the fabric iocb's
7927 * callback function pointer (iocb->iocb_cmpl). The original iocb's callback
7928 * function pointer has been stored in iocb->fabric_iocb_cmpl. This callback
7929 * function first restores and invokes the original iocb's callback function
7930 * and then invokes the lpfc_resume_fabric_iocbs() routine to issue the next
7931 * fabric bound iocb from the driver internal fabric iocb list onto the wire.
7932 **/
James Smart92d7f7b2007-06-17 19:56:38 -05007933static void
7934lpfc_cmpl_fabric_iocb(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
7935 struct lpfc_iocbq *rspiocb)
7936{
7937 struct ls_rjt stat;
7938
7939 if ((cmdiocb->iocb_flag & LPFC_IO_FABRIC) != LPFC_IO_FABRIC)
7940 BUG();
7941
7942 switch (rspiocb->iocb.ulpStatus) {
7943 case IOSTAT_NPORT_RJT:
7944 case IOSTAT_FABRIC_RJT:
7945 if (rspiocb->iocb.un.ulpWord[4] & RJT_UNAVAIL_TEMP) {
7946 lpfc_block_fabric_iocbs(phba);
7947 }
7948 break;
7949
7950 case IOSTAT_NPORT_BSY:
7951 case IOSTAT_FABRIC_BSY:
7952 lpfc_block_fabric_iocbs(phba);
7953 break;
7954
7955 case IOSTAT_LS_RJT:
7956 stat.un.lsRjtError =
7957 be32_to_cpu(rspiocb->iocb.un.ulpWord[4]);
7958 if ((stat.un.b.lsRjtRsnCode == LSRJT_UNABLE_TPC) ||
7959 (stat.un.b.lsRjtRsnCode == LSRJT_LOGICAL_BSY))
7960 lpfc_block_fabric_iocbs(phba);
7961 break;
7962 }
7963
7964 if (atomic_read(&phba->fabric_iocb_count) == 0)
7965 BUG();
7966
7967 cmdiocb->iocb_cmpl = cmdiocb->fabric_iocb_cmpl;
7968 cmdiocb->fabric_iocb_cmpl = NULL;
7969 cmdiocb->iocb_flag &= ~LPFC_IO_FABRIC;
7970 cmdiocb->iocb_cmpl(phba, cmdiocb, rspiocb);
7971
7972 atomic_dec(&phba->fabric_iocb_count);
7973 if (!test_bit(FABRIC_COMANDS_BLOCKED, &phba->bit_flags)) {
James Smart7f5f3d02008-02-08 18:50:14 -05007974 /* Post any pending iocbs to HBA */
7975 lpfc_resume_fabric_iocbs(phba);
James Smart92d7f7b2007-06-17 19:56:38 -05007976 }
7977}
7978
James Smarte59058c2008-08-24 21:49:00 -04007979/**
James Smart3621a712009-04-06 18:47:14 -04007980 * lpfc_issue_fabric_iocb - Issue a fabric iocb command
James Smarte59058c2008-08-24 21:49:00 -04007981 * @phba: pointer to lpfc hba data structure.
7982 * @iocb: pointer to lpfc command iocb data structure.
7983 *
7984 * This routine is used as the top-level API for issuing a fabric iocb command
7985 * such as FLOGI and FDISC. To accommodate certain switch fabric, this driver
7986 * function makes sure that only one fabric bound iocb will be outstanding at
7987 * any given time. As such, this function will first check to see whether there
7988 * is already an outstanding fabric iocb on the wire. If so, it will put the
7989 * newly issued iocb onto the driver internal fabric iocb list, waiting to be
7990 * issued later. Otherwise, it will issue the iocb on the wire and update the
7991 * fabric iocb count it indicate that there is one fabric iocb on the wire.
7992 *
7993 * Note, this implementation has a potential sending out fabric IOCBs out of
7994 * order. The problem is caused by the construction of the "ready" boolen does
7995 * not include the condition that the internal fabric IOCB list is empty. As
7996 * such, it is possible a fabric IOCB issued by this routine might be "jump"
7997 * ahead of the fabric IOCBs in the internal list.
7998 *
7999 * Return code
8000 * IOCB_SUCCESS - either fabric iocb put on the list or issued successfully
8001 * IOCB_ERROR - failed to issue fabric iocb
8002 **/
Adrian Bunka6ababd2007-11-05 18:07:33 +01008003static int
James Smart92d7f7b2007-06-17 19:56:38 -05008004lpfc_issue_fabric_iocb(struct lpfc_hba *phba, struct lpfc_iocbq *iocb)
8005{
8006 unsigned long iflags;
James Smart92d7f7b2007-06-17 19:56:38 -05008007 int ready;
8008 int ret;
8009
8010 if (atomic_read(&phba->fabric_iocb_count) > 1)
8011 BUG();
8012
8013 spin_lock_irqsave(&phba->hbalock, iflags);
8014 ready = atomic_read(&phba->fabric_iocb_count) == 0 &&
8015 !test_bit(FABRIC_COMANDS_BLOCKED, &phba->bit_flags);
8016
James Smart7f5f3d02008-02-08 18:50:14 -05008017 if (ready)
8018 /* Increment fabric iocb count to hold the position */
8019 atomic_inc(&phba->fabric_iocb_count);
James Smart92d7f7b2007-06-17 19:56:38 -05008020 spin_unlock_irqrestore(&phba->hbalock, iflags);
8021 if (ready) {
8022 iocb->fabric_iocb_cmpl = iocb->iocb_cmpl;
8023 iocb->iocb_cmpl = lpfc_cmpl_fabric_iocb;
8024 iocb->iocb_flag |= LPFC_IO_FABRIC;
8025
James Smart858c9f62007-06-17 19:56:39 -05008026 lpfc_debugfs_disc_trc(iocb->vport, LPFC_DISC_TRC_ELS_CMD,
8027 "Fabric sched2: ste:x%x",
8028 iocb->vport->port_state, 0, 0);
8029
James Smart3772a992009-05-22 14:50:54 -04008030 ret = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, iocb, 0);
James Smart92d7f7b2007-06-17 19:56:38 -05008031
8032 if (ret == IOCB_ERROR) {
8033 iocb->iocb_cmpl = iocb->fabric_iocb_cmpl;
8034 iocb->fabric_iocb_cmpl = NULL;
8035 iocb->iocb_flag &= ~LPFC_IO_FABRIC;
8036 atomic_dec(&phba->fabric_iocb_count);
8037 }
8038 } else {
8039 spin_lock_irqsave(&phba->hbalock, iflags);
8040 list_add_tail(&iocb->list, &phba->fabric_iocb_list);
8041 spin_unlock_irqrestore(&phba->hbalock, iflags);
8042 ret = IOCB_SUCCESS;
8043 }
8044 return ret;
8045}
8046
James Smarte59058c2008-08-24 21:49:00 -04008047/**
James Smart3621a712009-04-06 18:47:14 -04008048 * lpfc_fabric_abort_vport - Abort a vport's iocbs from driver fabric iocb list
James Smarte59058c2008-08-24 21:49:00 -04008049 * @vport: pointer to a virtual N_Port data structure.
8050 *
8051 * This routine aborts all the IOCBs associated with a @vport from the
8052 * driver internal fabric IOCB list. The list contains fabric IOCBs to be
8053 * issued to the ELS IOCB ring. This abort function walks the fabric IOCB
8054 * list, removes each IOCB associated with the @vport off the list, set the
8055 * status feild to IOSTAT_LOCAL_REJECT, and invokes the callback function
8056 * associated with the IOCB.
8057 **/
Adrian Bunka6ababd2007-11-05 18:07:33 +01008058static void lpfc_fabric_abort_vport(struct lpfc_vport *vport)
James Smart92d7f7b2007-06-17 19:56:38 -05008059{
8060 LIST_HEAD(completions);
8061 struct lpfc_hba *phba = vport->phba;
8062 struct lpfc_iocbq *tmp_iocb, *piocb;
James Smart92d7f7b2007-06-17 19:56:38 -05008063
8064 spin_lock_irq(&phba->hbalock);
8065 list_for_each_entry_safe(piocb, tmp_iocb, &phba->fabric_iocb_list,
8066 list) {
8067
8068 if (piocb->vport != vport)
8069 continue;
8070
8071 list_move_tail(&piocb->list, &completions);
8072 }
8073 spin_unlock_irq(&phba->hbalock);
8074
James Smarta257bf92009-04-06 18:48:10 -04008075 /* Cancel all the IOCBs from the completions list */
8076 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
8077 IOERR_SLI_ABORTED);
James Smart92d7f7b2007-06-17 19:56:38 -05008078}
8079
James Smarte59058c2008-08-24 21:49:00 -04008080/**
James Smart3621a712009-04-06 18:47:14 -04008081 * lpfc_fabric_abort_nport - Abort a ndlp's iocbs from driver fabric iocb list
James Smarte59058c2008-08-24 21:49:00 -04008082 * @ndlp: pointer to a node-list data structure.
8083 *
8084 * This routine aborts all the IOCBs associated with an @ndlp from the
8085 * driver internal fabric IOCB list. The list contains fabric IOCBs to be
8086 * issued to the ELS IOCB ring. This abort function walks the fabric IOCB
8087 * list, removes each IOCB associated with the @ndlp off the list, set the
8088 * status feild to IOSTAT_LOCAL_REJECT, and invokes the callback function
8089 * associated with the IOCB.
8090 **/
James Smart92d7f7b2007-06-17 19:56:38 -05008091void lpfc_fabric_abort_nport(struct lpfc_nodelist *ndlp)
8092{
8093 LIST_HEAD(completions);
James Smarta257bf92009-04-06 18:48:10 -04008094 struct lpfc_hba *phba = ndlp->phba;
James Smart92d7f7b2007-06-17 19:56:38 -05008095 struct lpfc_iocbq *tmp_iocb, *piocb;
8096 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
James Smart92d7f7b2007-06-17 19:56:38 -05008097
8098 spin_lock_irq(&phba->hbalock);
8099 list_for_each_entry_safe(piocb, tmp_iocb, &phba->fabric_iocb_list,
8100 list) {
8101 if ((lpfc_check_sli_ndlp(phba, pring, piocb, ndlp))) {
8102
8103 list_move_tail(&piocb->list, &completions);
8104 }
8105 }
8106 spin_unlock_irq(&phba->hbalock);
8107
James Smarta257bf92009-04-06 18:48:10 -04008108 /* Cancel all the IOCBs from the completions list */
8109 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
8110 IOERR_SLI_ABORTED);
James Smart92d7f7b2007-06-17 19:56:38 -05008111}
8112
James Smarte59058c2008-08-24 21:49:00 -04008113/**
James Smart3621a712009-04-06 18:47:14 -04008114 * lpfc_fabric_abort_hba - Abort all iocbs on driver fabric iocb list
James Smarte59058c2008-08-24 21:49:00 -04008115 * @phba: pointer to lpfc hba data structure.
8116 *
8117 * This routine aborts all the IOCBs currently on the driver internal
8118 * fabric IOCB list. The list contains fabric IOCBs to be issued to the ELS
8119 * IOCB ring. This function takes the entire IOCB list off the fabric IOCB
8120 * list, removes IOCBs off the list, set the status feild to
8121 * IOSTAT_LOCAL_REJECT, and invokes the callback function associated with
8122 * the IOCB.
8123 **/
James Smart92d7f7b2007-06-17 19:56:38 -05008124void lpfc_fabric_abort_hba(struct lpfc_hba *phba)
8125{
8126 LIST_HEAD(completions);
James Smart92d7f7b2007-06-17 19:56:38 -05008127
8128 spin_lock_irq(&phba->hbalock);
8129 list_splice_init(&phba->fabric_iocb_list, &completions);
8130 spin_unlock_irq(&phba->hbalock);
8131
James Smarta257bf92009-04-06 18:48:10 -04008132 /* Cancel all the IOCBs from the completions list */
8133 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
8134 IOERR_SLI_ABORTED);
James Smart92d7f7b2007-06-17 19:56:38 -05008135}
James Smart6fb120a2009-05-22 14:52:59 -04008136
8137/**
James Smart1151e3e2011-02-16 12:39:35 -05008138 * lpfc_sli4_vport_delete_els_xri_aborted -Remove all ndlp references for vport
8139 * @vport: pointer to lpfc vport data structure.
8140 *
8141 * This routine is invoked by the vport cleanup for deletions and the cleanup
8142 * for an ndlp on removal.
8143 **/
8144void
8145lpfc_sli4_vport_delete_els_xri_aborted(struct lpfc_vport *vport)
8146{
8147 struct lpfc_hba *phba = vport->phba;
8148 struct lpfc_sglq *sglq_entry = NULL, *sglq_next = NULL;
8149 unsigned long iflag = 0;
8150
8151 spin_lock_irqsave(&phba->hbalock, iflag);
8152 spin_lock(&phba->sli4_hba.abts_sgl_list_lock);
8153 list_for_each_entry_safe(sglq_entry, sglq_next,
8154 &phba->sli4_hba.lpfc_abts_els_sgl_list, list) {
8155 if (sglq_entry->ndlp && sglq_entry->ndlp->vport == vport)
8156 sglq_entry->ndlp = NULL;
8157 }
8158 spin_unlock(&phba->sli4_hba.abts_sgl_list_lock);
8159 spin_unlock_irqrestore(&phba->hbalock, iflag);
8160 return;
8161}
8162
8163/**
James Smart6fb120a2009-05-22 14:52:59 -04008164 * lpfc_sli4_els_xri_aborted - Slow-path process of els xri abort
8165 * @phba: pointer to lpfc hba data structure.
8166 * @axri: pointer to the els xri abort wcqe structure.
8167 *
8168 * This routine is invoked by the worker thread to process a SLI4 slow-path
8169 * ELS aborted xri.
8170 **/
8171void
8172lpfc_sli4_els_xri_aborted(struct lpfc_hba *phba,
8173 struct sli4_wcqe_xri_aborted *axri)
8174{
8175 uint16_t xri = bf_get(lpfc_wcqe_xa_xri, axri);
James Smart19ca7602010-11-20 23:11:55 -05008176 uint16_t rxid = bf_get(lpfc_wcqe_xa_remote_xid, axri);
James Smart7851fe22011-07-22 18:36:52 -04008177 uint16_t lxri = 0;
James Smart19ca7602010-11-20 23:11:55 -05008178
James Smart6fb120a2009-05-22 14:52:59 -04008179 struct lpfc_sglq *sglq_entry = NULL, *sglq_next = NULL;
8180 unsigned long iflag = 0;
James Smart19ca7602010-11-20 23:11:55 -05008181 struct lpfc_nodelist *ndlp;
James Smart589a52d2010-07-14 15:30:54 -04008182 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
James Smart6fb120a2009-05-22 14:52:59 -04008183
James Smart0f65ff62010-02-26 14:14:23 -05008184 spin_lock_irqsave(&phba->hbalock, iflag);
8185 spin_lock(&phba->sli4_hba.abts_sgl_list_lock);
James Smart6fb120a2009-05-22 14:52:59 -04008186 list_for_each_entry_safe(sglq_entry, sglq_next,
8187 &phba->sli4_hba.lpfc_abts_els_sgl_list, list) {
8188 if (sglq_entry->sli4_xritag == xri) {
8189 list_del(&sglq_entry->list);
James Smart19ca7602010-11-20 23:11:55 -05008190 ndlp = sglq_entry->ndlp;
8191 sglq_entry->ndlp = NULL;
James Smartdafe8ce2014-09-03 12:56:40 -04008192 spin_lock(&pring->ring_lock);
James Smart6fb120a2009-05-22 14:52:59 -04008193 list_add_tail(&sglq_entry->list,
8194 &phba->sli4_hba.lpfc_sgl_list);
James Smart0f65ff62010-02-26 14:14:23 -05008195 sglq_entry->state = SGL_FREED;
James Smartdafe8ce2014-09-03 12:56:40 -04008196 spin_unlock(&pring->ring_lock);
James Smart0f65ff62010-02-26 14:14:23 -05008197 spin_unlock(&phba->sli4_hba.abts_sgl_list_lock);
James Smart6fb120a2009-05-22 14:52:59 -04008198 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smartee0f4fe2012-05-09 21:19:14 -04008199 lpfc_set_rrq_active(phba, ndlp,
8200 sglq_entry->sli4_lxritag,
8201 rxid, 1);
James Smart589a52d2010-07-14 15:30:54 -04008202
8203 /* Check if TXQ queue needs to be serviced */
James Smart0e9bb8d2013-03-01 16:35:12 -05008204 if (!(list_empty(&pring->txq)))
James Smart589a52d2010-07-14 15:30:54 -04008205 lpfc_worker_wake_up(phba);
James Smart6fb120a2009-05-22 14:52:59 -04008206 return;
8207 }
8208 }
James Smart0f65ff62010-02-26 14:14:23 -05008209 spin_unlock(&phba->sli4_hba.abts_sgl_list_lock);
James Smart7851fe22011-07-22 18:36:52 -04008210 lxri = lpfc_sli4_xri_inrange(phba, xri);
8211 if (lxri == NO_XRI) {
8212 spin_unlock_irqrestore(&phba->hbalock, iflag);
8213 return;
8214 }
James Smartdafe8ce2014-09-03 12:56:40 -04008215 spin_lock(&pring->ring_lock);
James Smart7851fe22011-07-22 18:36:52 -04008216 sglq_entry = __lpfc_get_active_sglq(phba, lxri);
James Smart0f65ff62010-02-26 14:14:23 -05008217 if (!sglq_entry || (sglq_entry->sli4_xritag != xri)) {
James Smartdafe8ce2014-09-03 12:56:40 -04008218 spin_unlock(&pring->ring_lock);
James Smart0f65ff62010-02-26 14:14:23 -05008219 spin_unlock_irqrestore(&phba->hbalock, iflag);
8220 return;
8221 }
8222 sglq_entry->state = SGL_XRI_ABORTED;
James Smartdafe8ce2014-09-03 12:56:40 -04008223 spin_unlock(&pring->ring_lock);
James Smart0f65ff62010-02-26 14:14:23 -05008224 spin_unlock_irqrestore(&phba->hbalock, iflag);
8225 return;
James Smart6fb120a2009-05-22 14:52:59 -04008226}
James Smart086a3452012-08-14 14:25:21 -04008227
8228/* lpfc_sli_abts_recover_port - Recover a port that failed a BLS_ABORT req.
8229 * @vport: pointer to virtual port object.
8230 * @ndlp: nodelist pointer for the impacted node.
8231 *
8232 * The driver calls this routine in response to an SLI4 XRI ABORT CQE
8233 * or an SLI3 ASYNC_STATUS_CN event from the port. For either event,
8234 * the driver is required to send a LOGO to the remote node before it
8235 * attempts to recover its login to the remote node.
8236 */
8237void
8238lpfc_sli_abts_recover_port(struct lpfc_vport *vport,
8239 struct lpfc_nodelist *ndlp)
8240{
8241 struct Scsi_Host *shost;
8242 struct lpfc_hba *phba;
8243 unsigned long flags = 0;
8244
8245 shost = lpfc_shost_from_vport(vport);
8246 phba = vport->phba;
8247 if (ndlp->nlp_state != NLP_STE_MAPPED_NODE) {
8248 lpfc_printf_log(phba, KERN_INFO,
8249 LOG_SLI, "3093 No rport recovery needed. "
8250 "rport in state 0x%x\n", ndlp->nlp_state);
8251 return;
8252 }
8253 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
8254 "3094 Start rport recovery on shost id 0x%x "
8255 "fc_id 0x%06x vpi 0x%x rpi 0x%x state 0x%x "
8256 "flags 0x%x\n",
8257 shost->host_no, ndlp->nlp_DID,
8258 vport->vpi, ndlp->nlp_rpi, ndlp->nlp_state,
8259 ndlp->nlp_flag);
8260 /*
8261 * The rport is not responding. Remove the FCP-2 flag to prevent
8262 * an ADISC in the follow-up recovery code.
8263 */
8264 spin_lock_irqsave(shost->host_lock, flags);
8265 ndlp->nlp_fcp_info &= ~NLP_FCP_2_DEVICE;
8266 spin_unlock_irqrestore(shost->host_lock, flags);
8267 lpfc_issue_els_logo(vport, ndlp, 0);
8268 lpfc_nlp_set_state(vport, ndlp, NLP_STE_LOGO_ISSUE);
8269}
8270