blob: 7a88295460685a7ecb33aab961714f6e8900b8ca [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 Smart50611572016-03-31 14:12:34 -07004 * Copyright (C) 2004-2016 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;
James Smartd6de08c2015-12-16 18:11:53 -0500458 LPFC_MBOXQ_t *mboxq = NULL;
James Smart6fb120a2009-05-22 14:52:59 -0400459 struct lpfc_nodelist *ndlp;
James Smartd6de08c2015-12-16 18:11:53 -0500460 struct lpfc_dmabuf *dmabuf = NULL;
James Smart6fb120a2009-05-22 14:52:59 -0400461 int rc = 0;
462
James Smart939723a2012-05-09 21:19:03 -0400463 /* move forward in case of SLI4 FC port loopback test and pt2pt mode */
James Smart1b511972011-12-13 13:23:09 -0500464 if ((phba->sli_rev == LPFC_SLI_REV4) &&
James Smart939723a2012-05-09 21:19:03 -0400465 !(phba->link_flag & LS_LOOPBACK_MODE) &&
466 !(vport->fc_flag & FC_PT2PT)) {
James Smart1b511972011-12-13 13:23:09 -0500467 ndlp = lpfc_findnode_did(vport, Fabric_DID);
468 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp)) {
469 rc = -ENODEV;
470 goto fail;
471 }
James Smart6fb120a2009-05-22 14:52:59 -0400472 }
473
James Smart6fb120a2009-05-22 14:52:59 -0400474 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
475 if (!mboxq) {
476 rc = -ENOMEM;
James Smartd6de08c2015-12-16 18:11:53 -0500477 goto fail;
James Smart6fb120a2009-05-22 14:52:59 -0400478 }
James Smartd6de08c2015-12-16 18:11:53 -0500479
480 /* Supply CSP's only if we are fabric connect or pt-to-pt connect */
481 if ((vport->fc_flag & FC_FABRIC) || (vport->fc_flag & FC_PT2PT)) {
482 dmabuf = kzalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
483 if (!dmabuf) {
484 rc = -ENOMEM;
485 goto fail;
486 }
487 dmabuf->virt = lpfc_mbuf_alloc(phba, MEM_PRI, &dmabuf->phys);
488 if (!dmabuf->virt) {
489 rc = -ENOMEM;
490 goto fail;
491 }
492 memcpy(dmabuf->virt, &phba->fc_fabparam,
493 sizeof(struct serv_parm));
494 }
495
James Smart6fb120a2009-05-22 14:52:59 -0400496 vport->port_state = LPFC_FABRIC_CFG_LINK;
James Smartd6de08c2015-12-16 18:11:53 -0500497 if (dmabuf)
498 lpfc_reg_vfi(mboxq, vport, dmabuf->phys);
499 else
500 lpfc_reg_vfi(mboxq, vport, 0);
James Smartae05ebe2013-03-01 16:35:38 -0500501
James Smart6fb120a2009-05-22 14:52:59 -0400502 mboxq->mbox_cmpl = lpfc_mbx_cmpl_reg_vfi;
503 mboxq->vport = vport;
504 mboxq->context1 = dmabuf;
505 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
506 if (rc == MBX_NOT_FINISHED) {
507 rc = -ENXIO;
James Smartd6de08c2015-12-16 18:11:53 -0500508 goto fail;
James Smart6fb120a2009-05-22 14:52:59 -0400509 }
510 return 0;
511
James Smart6fb120a2009-05-22 14:52:59 -0400512fail:
James Smartd6de08c2015-12-16 18:11:53 -0500513 if (mboxq)
514 mempool_free(mboxq, phba->mbox_mem_pool);
515 if (dmabuf) {
516 if (dmabuf->virt)
517 lpfc_mbuf_free(phba, dmabuf->virt, dmabuf->phys);
518 kfree(dmabuf);
519 }
520
James Smart6fb120a2009-05-22 14:52:59 -0400521 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
522 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
523 "0289 Issue Register VFI failed: Err %d\n", rc);
524 return rc;
525}
526
527/**
James Smart1b511972011-12-13 13:23:09 -0500528 * lpfc_issue_unreg_vfi - Unregister VFI for this vport's fabric login
529 * @vport: pointer to a host virtual N_Port data structure.
530 *
531 * This routine issues a UNREG_VFI mailbox with the vfi, vpi, fcfi triplet for
532 * the @vport. This mailbox command is necessary for SLI4 port only.
533 *
534 * Return code
535 * 0 - successfully issued REG_VFI for @vport
536 * A failure code otherwise.
537 **/
538int
539lpfc_issue_unreg_vfi(struct lpfc_vport *vport)
540{
541 struct lpfc_hba *phba = vport->phba;
542 struct Scsi_Host *shost;
543 LPFC_MBOXQ_t *mboxq;
544 int rc;
545
546 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
547 if (!mboxq) {
548 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY|LOG_MBOX,
549 "2556 UNREG_VFI mbox allocation failed"
550 "HBA state x%x\n", phba->pport->port_state);
551 return -ENOMEM;
552 }
553
554 lpfc_unreg_vfi(mboxq, vport);
555 mboxq->vport = vport;
556 mboxq->mbox_cmpl = lpfc_unregister_vfi_cmpl;
557
558 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
559 if (rc == MBX_NOT_FINISHED) {
560 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY|LOG_MBOX,
561 "2557 UNREG_VFI issue mbox failed rc x%x "
562 "HBA state x%x\n",
563 rc, phba->pport->port_state);
564 mempool_free(mboxq, phba->mbox_mem_pool);
565 return -EIO;
566 }
567
568 shost = lpfc_shost_from_vport(vport);
569 spin_lock_irq(shost->host_lock);
570 vport->fc_flag &= ~FC_VFI_REGISTERED;
571 spin_unlock_irq(shost->host_lock);
572 return 0;
573}
574
575/**
James Smart92494142011-02-16 12:39:44 -0500576 * lpfc_check_clean_addr_bit - Check whether assigned FCID is clean.
577 * @vport: pointer to a host virtual N_Port data structure.
578 * @sp: pointer to service parameter data structure.
579 *
580 * This routine is called from FLOGI/FDISC completion handler functions.
581 * lpfc_check_clean_addr_bit return 1 when FCID/Fabric portname/ Fabric
582 * node nodename is changed in the completion service parameter else return
583 * 0. This function also set flag in the vport data structure to delay
584 * NP_Port discovery after the FLOGI/FDISC completion if Clean address bit
585 * in FLOGI/FDISC response is cleared and FCID/Fabric portname/ Fabric
586 * node nodename is changed in the completion service parameter.
587 *
588 * Return code
589 * 0 - FCID and Fabric Nodename and Fabric portname is not changed.
590 * 1 - FCID or Fabric Nodename or Fabric portname is changed.
591 *
592 **/
593static uint8_t
594lpfc_check_clean_addr_bit(struct lpfc_vport *vport,
595 struct serv_parm *sp)
596{
James Smart8eb8b962016-07-06 12:36:08 -0700597 struct lpfc_hba *phba = vport->phba;
James Smart92494142011-02-16 12:39:44 -0500598 uint8_t fabric_param_changed = 0;
599 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
600
601 if ((vport->fc_prevDID != vport->fc_myDID) ||
602 memcmp(&vport->fabric_portname, &sp->portName,
603 sizeof(struct lpfc_name)) ||
604 memcmp(&vport->fabric_nodename, &sp->nodeName,
605 sizeof(struct lpfc_name)))
606 fabric_param_changed = 1;
607
608 /*
609 * Word 1 Bit 31 in common service parameter is overloaded.
610 * Word 1 Bit 31 in FLOGI request is multiple NPort request
611 * Word 1 Bit 31 in FLOGI response is clean address bit
612 *
613 * If fabric parameter is changed and clean address bit is
614 * cleared delay nport discovery if
615 * - vport->fc_prevDID != 0 (not initial discovery) OR
616 * - lpfc_delay_discovery module parameter is set.
617 */
618 if (fabric_param_changed && !sp->cmn.clean_address_bit &&
James Smart8eb8b962016-07-06 12:36:08 -0700619 (vport->fc_prevDID || phba->cfg_delay_discovery)) {
James Smart92494142011-02-16 12:39:44 -0500620 spin_lock_irq(shost->host_lock);
621 vport->fc_flag |= FC_DISC_DELAYED;
622 spin_unlock_irq(shost->host_lock);
623 }
624
625 return fabric_param_changed;
626}
627
628
629/**
James Smart3621a712009-04-06 18:47:14 -0400630 * lpfc_cmpl_els_flogi_fabric - Completion function for flogi to a fabric port
James Smarte59058c2008-08-24 21:49:00 -0400631 * @vport: pointer to a host virtual N_Port data structure.
632 * @ndlp: pointer to a node-list data structure.
633 * @sp: pointer to service parameter data structure.
634 * @irsp: pointer to the IOCB within the lpfc response IOCB.
635 *
636 * This routine is invoked by the lpfc_cmpl_els_flogi() completion callback
637 * function to handle the completion of a Fabric Login (FLOGI) into a fabric
638 * port in a fabric topology. It properly sets up the parameters to the @ndlp
639 * from the IOCB response. It also check the newly assigned N_Port ID to the
640 * @vport against the previously assigned N_Port ID. If it is different from
641 * the previously assigned Destination ID (DID), the lpfc_unreg_rpi() routine
642 * is invoked on all the remaining nodes with the @vport to unregister the
643 * Remote Port Indicators (RPIs). Finally, the lpfc_issue_fabric_reglogin()
644 * is invoked to register login to the fabric.
645 *
646 * Return code
647 * 0 - Success (currently, always return 0)
648 **/
James Smart92d7f7b2007-06-17 19:56:38 -0500649static int
James Smart2e0fef82007-06-17 19:56:36 -0500650lpfc_cmpl_els_flogi_fabric(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
651 struct serv_parm *sp, IOCB_t *irsp)
dea31012005-04-17 16:05:31 -0500652{
James Smart2e0fef82007-06-17 19:56:36 -0500653 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
654 struct lpfc_hba *phba = vport->phba;
James Smart92d7f7b2007-06-17 19:56:38 -0500655 struct lpfc_nodelist *np;
656 struct lpfc_nodelist *next_np;
James Smart92494142011-02-16 12:39:44 -0500657 uint8_t fabric_param_changed;
dea31012005-04-17 16:05:31 -0500658
James Smart2e0fef82007-06-17 19:56:36 -0500659 spin_lock_irq(shost->host_lock);
660 vport->fc_flag |= FC_FABRIC;
661 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500662
663 phba->fc_edtov = be32_to_cpu(sp->cmn.e_d_tov);
664 if (sp->cmn.edtovResolution) /* E_D_TOV ticks are in nanoseconds */
665 phba->fc_edtov = (phba->fc_edtov + 999999) / 1000000;
666
James Smart12265f62010-10-22 11:05:53 -0400667 phba->fc_edtovResol = sp->cmn.edtovResolution;
dea31012005-04-17 16:05:31 -0500668 phba->fc_ratov = (be32_to_cpu(sp->cmn.w2.r_a_tov) + 999) / 1000;
669
James Smart76a95d72010-11-20 23:11:48 -0500670 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
James Smart2e0fef82007-06-17 19:56:36 -0500671 spin_lock_irq(shost->host_lock);
672 vport->fc_flag |= FC_PUBLIC_LOOP;
673 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500674 }
675
James Smart2e0fef82007-06-17 19:56:36 -0500676 vport->fc_myDID = irsp->un.ulpWord[4] & Mask_DID;
dea31012005-04-17 16:05:31 -0500677 memcpy(&ndlp->nlp_portname, &sp->portName, sizeof(struct lpfc_name));
James Smart92d7f7b2007-06-17 19:56:38 -0500678 memcpy(&ndlp->nlp_nodename, &sp->nodeName, sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -0500679 ndlp->nlp_class_sup = 0;
680 if (sp->cls1.classValid)
681 ndlp->nlp_class_sup |= FC_COS_CLASS1;
682 if (sp->cls2.classValid)
683 ndlp->nlp_class_sup |= FC_COS_CLASS2;
684 if (sp->cls3.classValid)
685 ndlp->nlp_class_sup |= FC_COS_CLASS3;
686 if (sp->cls4.classValid)
687 ndlp->nlp_class_sup |= FC_COS_CLASS4;
688 ndlp->nlp_maxframe = ((sp->cmn.bbRcvSizeMsb & 0x0F) << 8) |
689 sp->cmn.bbRcvSizeLsb;
James Smart92494142011-02-16 12:39:44 -0500690
691 fabric_param_changed = lpfc_check_clean_addr_bit(vport, sp);
James Smart4258e982015-12-16 18:11:58 -0500692 if (fabric_param_changed) {
693 /* Reset FDMI attribute masks based on config parameter */
James Smart8663cbb2016-03-31 14:12:33 -0700694 if (phba->cfg_enable_SmartSAN ||
695 (phba->cfg_fdmi_on == LPFC_FDMI_SUPPORT)) {
James Smart4258e982015-12-16 18:11:58 -0500696 /* Setup appropriate attribute masks */
697 vport->fdmi_hba_mask = LPFC_FDMI2_HBA_ATTR;
James Smart8663cbb2016-03-31 14:12:33 -0700698 if (phba->cfg_enable_SmartSAN)
James Smart4258e982015-12-16 18:11:58 -0500699 vport->fdmi_port_mask = LPFC_FDMI2_SMART_ATTR;
700 else
701 vport->fdmi_port_mask = LPFC_FDMI2_PORT_ATTR;
James Smart8663cbb2016-03-31 14:12:33 -0700702 } else {
703 vport->fdmi_hba_mask = 0;
704 vport->fdmi_port_mask = 0;
James Smart4258e982015-12-16 18:11:58 -0500705 }
706
707 }
James Smart92494142011-02-16 12:39:44 -0500708 memcpy(&vport->fabric_portname, &sp->portName,
709 sizeof(struct lpfc_name));
710 memcpy(&vport->fabric_nodename, &sp->nodeName,
711 sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -0500712 memcpy(&phba->fc_fabparam, sp, sizeof(struct serv_parm));
713
James Smart92d7f7b2007-06-17 19:56:38 -0500714 if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) {
715 if (sp->cmn.response_multiple_NPort) {
James Smarte8b62012007-08-02 11:10:09 -0400716 lpfc_printf_vlog(vport, KERN_WARNING,
717 LOG_ELS | LOG_VPORT,
718 "1816 FLOGI NPIV supported, "
719 "response data 0x%x\n",
720 sp->cmn.response_multiple_NPort);
James Smart1b511972011-12-13 13:23:09 -0500721 spin_lock_irq(&phba->hbalock);
James Smart92d7f7b2007-06-17 19:56:38 -0500722 phba->link_flag |= LS_NPIV_FAB_SUPPORTED;
James Smart1b511972011-12-13 13:23:09 -0500723 spin_unlock_irq(&phba->hbalock);
James Smart92d7f7b2007-06-17 19:56:38 -0500724 } else {
725 /* Because we asked f/w for NPIV it still expects us
James Smarte8b62012007-08-02 11:10:09 -0400726 to call reg_vnpid atleast for the physcial host */
727 lpfc_printf_vlog(vport, KERN_WARNING,
728 LOG_ELS | LOG_VPORT,
729 "1817 Fabric does not support NPIV "
730 "- configuring single port mode.\n");
James Smart1b511972011-12-13 13:23:09 -0500731 spin_lock_irq(&phba->hbalock);
James Smart92d7f7b2007-06-17 19:56:38 -0500732 phba->link_flag &= ~LS_NPIV_FAB_SUPPORTED;
James Smart1b511972011-12-13 13:23:09 -0500733 spin_unlock_irq(&phba->hbalock);
James Smart92d7f7b2007-06-17 19:56:38 -0500734 }
735 }
736
James Smartae05ebe2013-03-01 16:35:38 -0500737 /*
738 * For FC we need to do some special processing because of the SLI
739 * Port's default settings of the Common Service Parameters.
740 */
James Smartd6de08c2015-12-16 18:11:53 -0500741 if ((phba->sli_rev == LPFC_SLI_REV4) &&
742 (phba->sli4_hba.lnk_info.lnk_tp == LPFC_LNK_TYPE_FC)) {
James Smartae05ebe2013-03-01 16:35:38 -0500743 /* If physical FC port changed, unreg VFI and ALL VPIs / RPIs */
James Smartd6de08c2015-12-16 18:11:53 -0500744 if (fabric_param_changed)
James Smartae05ebe2013-03-01 16:35:38 -0500745 lpfc_unregister_fcf_prep(phba);
746
747 /* This should just update the VFI CSPs*/
748 if (vport->fc_flag & FC_VFI_REGISTERED)
749 lpfc_issue_reg_vfi(vport);
750 }
751
James Smart92494142011-02-16 12:39:44 -0500752 if (fabric_param_changed &&
James Smart92d7f7b2007-06-17 19:56:38 -0500753 !(vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)) {
754
755 /* If our NportID changed, we need to ensure all
756 * remaining NPORTs get unreg_login'ed.
757 */
758 list_for_each_entry_safe(np, next_np,
759 &vport->fc_nodes, nlp_listp) {
James Smartd7c255b2008-08-24 21:50:00 -0400760 if (!NLP_CHK_NODE_ACT(np))
James Smarte47c9092008-02-08 18:49:26 -0500761 continue;
James Smart92d7f7b2007-06-17 19:56:38 -0500762 if ((np->nlp_state != NLP_STE_NPR_NODE) ||
763 !(np->nlp_flag & NLP_NPR_ADISC))
764 continue;
765 spin_lock_irq(shost->host_lock);
766 np->nlp_flag &= ~NLP_NPR_ADISC;
767 spin_unlock_irq(shost->host_lock);
768 lpfc_unreg_rpi(vport, np);
769 }
James Smart78730cf2010-04-06 15:06:30 -0400770 lpfc_cleanup_pending_mbox(vport);
James Smart5af5eee2010-10-22 11:06:38 -0400771
James Smart5248a742011-07-22 18:37:06 -0400772 if (phba->sli_rev == LPFC_SLI_REV4) {
James Smart5af5eee2010-10-22 11:06:38 -0400773 lpfc_sli4_unreg_all_rpis(vport);
James Smart92d7f7b2007-06-17 19:56:38 -0500774 lpfc_mbx_unreg_vpi(vport);
James Smart09372822008-01-11 01:52:54 -0500775 spin_lock_irq(shost->host_lock);
James Smartecfd03c2010-02-12 14:41:27 -0500776 vport->fc_flag |= FC_VPORT_NEEDS_INIT_VPI;
777 spin_unlock_irq(shost->host_lock);
778 }
James Smart27aa1b72012-05-09 21:18:49 -0400779
780 /*
781 * For SLI3 and SLI4, the VPI needs to be reregistered in
782 * response to this fabric parameter change event.
783 */
784 spin_lock_irq(shost->host_lock);
785 vport->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
786 spin_unlock_irq(shost->host_lock);
James Smart38b92ef2010-08-04 16:11:39 -0400787 } else if ((phba->sli_rev == LPFC_SLI_REV4) &&
788 !(vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)) {
789 /*
790 * Driver needs to re-reg VPI in order for f/w
791 * to update the MAC address.
792 */
James Smart9589b0622011-04-16 11:03:17 -0400793 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
James Smart38b92ef2010-08-04 16:11:39 -0400794 lpfc_register_new_vport(phba, vport, ndlp);
795 return 0;
James Smart92d7f7b2007-06-17 19:56:38 -0500796 }
797
James Smart6fb120a2009-05-22 14:52:59 -0400798 if (phba->sli_rev < LPFC_SLI_REV4) {
799 lpfc_nlp_set_state(vport, ndlp, NLP_STE_REG_LOGIN_ISSUE);
800 if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED &&
801 vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)
802 lpfc_register_new_vport(phba, vport, ndlp);
803 else
804 lpfc_issue_fabric_reglogin(vport);
805 } else {
806 ndlp->nlp_type |= NLP_FABRIC;
807 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
James Smart695a8142010-01-26 23:08:03 -0500808 if ((!(vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)) &&
809 (vport->vpi_state & LPFC_VPI_REGISTERED)) {
James Smart6fb120a2009-05-22 14:52:59 -0400810 lpfc_start_fdiscs(phba);
811 lpfc_do_scr_ns_plogi(phba, vport);
James Smart695a8142010-01-26 23:08:03 -0500812 } else if (vport->fc_flag & FC_VFI_REGISTERED)
James Smartecfd03c2010-02-12 14:41:27 -0500813 lpfc_issue_init_vpi(vport);
James Smart1b511972011-12-13 13:23:09 -0500814 else {
815 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
816 "3135 Need register VFI: (x%x/%x)\n",
817 vport->fc_prevDID, vport->fc_myDID);
James Smart6fb120a2009-05-22 14:52:59 -0400818 lpfc_issue_reg_vfi(vport);
James Smart1b511972011-12-13 13:23:09 -0500819 }
James Smart92d7f7b2007-06-17 19:56:38 -0500820 }
dea31012005-04-17 16:05:31 -0500821 return 0;
dea31012005-04-17 16:05:31 -0500822}
James Smart1b511972011-12-13 13:23:09 -0500823
James Smarte59058c2008-08-24 21:49:00 -0400824/**
James Smart3621a712009-04-06 18:47:14 -0400825 * lpfc_cmpl_els_flogi_nport - Completion function for flogi to an N_Port
James Smarte59058c2008-08-24 21:49:00 -0400826 * @vport: pointer to a host virtual N_Port data structure.
827 * @ndlp: pointer to a node-list data structure.
828 * @sp: pointer to service parameter data structure.
829 *
830 * This routine is invoked by the lpfc_cmpl_els_flogi() completion callback
831 * function to handle the completion of a Fabric Login (FLOGI) into an N_Port
832 * in a point-to-point topology. First, the @vport's N_Port Name is compared
833 * with the received N_Port Name: if the @vport's N_Port Name is greater than
834 * the received N_Port Name lexicographically, this node shall assign local
835 * N_Port ID (PT2PT_LocalID: 1) and remote N_Port ID (PT2PT_RemoteID: 2) and
836 * will send out Port Login (PLOGI) with the N_Port IDs assigned. Otherwise,
837 * this node shall just wait for the remote node to issue PLOGI and assign
838 * N_Port IDs.
839 *
840 * Return code
841 * 0 - Success
842 * -ENXIO - Fail
843 **/
dea31012005-04-17 16:05:31 -0500844static int
James Smart2e0fef82007-06-17 19:56:36 -0500845lpfc_cmpl_els_flogi_nport(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
846 struct serv_parm *sp)
dea31012005-04-17 16:05:31 -0500847{
James Smart2e0fef82007-06-17 19:56:36 -0500848 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
849 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -0500850 LPFC_MBOXQ_t *mbox;
851 int rc;
852
James Smart2e0fef82007-06-17 19:56:36 -0500853 spin_lock_irq(shost->host_lock);
854 vport->fc_flag &= ~(FC_FABRIC | FC_PUBLIC_LOOP);
James Smartd6de08c2015-12-16 18:11:53 -0500855 vport->fc_flag |= FC_PT2PT;
James Smart2e0fef82007-06-17 19:56:36 -0500856 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500857
James Smartd6de08c2015-12-16 18:11:53 -0500858 /* If physical FC port changed, unreg VFI and ALL VPIs / RPIs */
859 if ((phba->sli_rev == LPFC_SLI_REV4) && phba->fc_topology_changed) {
860 lpfc_unregister_fcf_prep(phba);
861
862 spin_lock_irq(shost->host_lock);
863 vport->fc_flag &= ~FC_VFI_REGISTERED;
864 spin_unlock_irq(shost->host_lock);
865 phba->fc_topology_changed = 0;
866 }
867
James Smart2e0fef82007-06-17 19:56:36 -0500868 rc = memcmp(&vport->fc_portname, &sp->portName,
James Smart92d7f7b2007-06-17 19:56:38 -0500869 sizeof(vport->fc_portname));
James Smart2eb68622012-09-29 11:32:27 -0400870
dea31012005-04-17 16:05:31 -0500871 if (rc >= 0) {
872 /* This side will initiate the PLOGI */
James Smart2e0fef82007-06-17 19:56:36 -0500873 spin_lock_irq(shost->host_lock);
874 vport->fc_flag |= FC_PT2PT_PLOGI;
875 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500876
877 /*
James Smartd6de08c2015-12-16 18:11:53 -0500878 * N_Port ID cannot be 0, set our Id to LocalID
879 * the other side will be RemoteID.
dea31012005-04-17 16:05:31 -0500880 */
881
882 /* not equal */
883 if (rc)
James Smart2e0fef82007-06-17 19:56:36 -0500884 vport->fc_myDID = PT2PT_LocalID;
dea31012005-04-17 16:05:31 -0500885
James Smarte47c9092008-02-08 18:49:26 -0500886 /* Decrement ndlp reference count indicating that ndlp can be
887 * safely released when other references to it are done.
888 */
James Smart329f9bc2007-04-25 09:53:01 -0400889 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -0500890
James Smart2e0fef82007-06-17 19:56:36 -0500891 ndlp = lpfc_findnode_did(vport, PT2PT_RemoteID);
dea31012005-04-17 16:05:31 -0500892 if (!ndlp) {
893 /*
894 * Cannot find existing Fabric ndlp, so allocate a
895 * new one
896 */
897 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
898 if (!ndlp)
899 goto fail;
James Smart2e0fef82007-06-17 19:56:36 -0500900 lpfc_nlp_init(vport, ndlp, PT2PT_RemoteID);
James Smarte47c9092008-02-08 18:49:26 -0500901 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
902 ndlp = lpfc_enable_node(vport, ndlp,
903 NLP_STE_UNUSED_NODE);
904 if(!ndlp)
905 goto fail;
dea31012005-04-17 16:05:31 -0500906 }
907
908 memcpy(&ndlp->nlp_portname, &sp->portName,
James Smart2e0fef82007-06-17 19:56:36 -0500909 sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -0500910 memcpy(&ndlp->nlp_nodename, &sp->nodeName,
James Smart2e0fef82007-06-17 19:56:36 -0500911 sizeof(struct lpfc_name));
James Smarte47c9092008-02-08 18:49:26 -0500912 /* Set state will put ndlp onto node list if not already done */
James Smart2e0fef82007-06-17 19:56:36 -0500913 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
914 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500915 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
James Smart2e0fef82007-06-17 19:56:36 -0500916 spin_unlock_irq(shost->host_lock);
James Smarte47c9092008-02-08 18:49:26 -0500917 } else
918 /* This side will wait for the PLOGI, decrement ndlp reference
919 * count indicating that ndlp can be released when other
920 * references to it are done.
921 */
James Smart329f9bc2007-04-25 09:53:01 -0400922 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -0500923
James Smart09372822008-01-11 01:52:54 -0500924 /* If we are pt2pt with another NPort, force NPIV off! */
925 phba->sli3_options &= ~LPFC_SLI3_NPIV_ENABLED;
926
James Smartd6de08c2015-12-16 18:11:53 -0500927 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
928 if (!mbox)
929 goto fail;
James Smarte74c03c2013-04-17 20:15:19 -0400930
James Smartd6de08c2015-12-16 18:11:53 -0500931 lpfc_config_link(phba, mbox);
932
933 mbox->mbox_cmpl = lpfc_mbx_cmpl_local_config_link;
934 mbox->vport = vport;
935 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
936 if (rc == MBX_NOT_FINISHED) {
937 mempool_free(mbox, phba->mbox_mem_pool);
938 goto fail;
James Smarte74c03c2013-04-17 20:15:19 -0400939 }
dea31012005-04-17 16:05:31 -0500940
dea31012005-04-17 16:05:31 -0500941 return 0;
James Smart92d7f7b2007-06-17 19:56:38 -0500942fail:
dea31012005-04-17 16:05:31 -0500943 return -ENXIO;
944}
945
James Smarte59058c2008-08-24 21:49:00 -0400946/**
James Smart3621a712009-04-06 18:47:14 -0400947 * lpfc_cmpl_els_flogi - Completion callback function for flogi
James Smarte59058c2008-08-24 21:49:00 -0400948 * @phba: pointer to lpfc hba data structure.
949 * @cmdiocb: pointer to lpfc command iocb data structure.
950 * @rspiocb: pointer to lpfc response iocb data structure.
951 *
952 * This routine is the top-level completion callback function for issuing
953 * a Fabric Login (FLOGI) command. If the response IOCB reported error,
954 * the lpfc_els_retry() routine shall be invoked to retry the FLOGI. If
955 * retry has been made (either immediately or delayed with lpfc_els_retry()
956 * returning 1), the command IOCB will be released and function returned.
957 * If the retry attempt has been given up (possibly reach the maximum
958 * number of retries), one additional decrement of ndlp reference shall be
959 * invoked before going out after releasing the command IOCB. This will
960 * actually release the remote node (Note, lpfc_els_free_iocb() will also
961 * invoke one decrement of ndlp reference count). If no error reported in
962 * the IOCB status, the command Port ID field is used to determine whether
963 * this is a point-to-point topology or a fabric topology: if the Port ID
964 * field is assigned, it is a fabric topology; otherwise, it is a
965 * point-to-point topology. The routine lpfc_cmpl_els_flogi_fabric() or
966 * lpfc_cmpl_els_flogi_nport() shall be invoked accordingly to handle the
967 * specific topology completion conditions.
968 **/
dea31012005-04-17 16:05:31 -0500969static void
James Smart329f9bc2007-04-25 09:53:01 -0400970lpfc_cmpl_els_flogi(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
971 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -0500972{
James Smart2e0fef82007-06-17 19:56:36 -0500973 struct lpfc_vport *vport = cmdiocb->vport;
974 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -0500975 IOCB_t *irsp = &rspiocb->iocb;
976 struct lpfc_nodelist *ndlp = cmdiocb->context1;
977 struct lpfc_dmabuf *pcmd = cmdiocb->context2, *prsp;
978 struct serv_parm *sp;
James Smart0c9ab6f2010-02-26 14:15:57 -0500979 uint16_t fcf_index;
dea31012005-04-17 16:05:31 -0500980 int rc;
981
982 /* Check to see if link went down during discovery */
James Smart2e0fef82007-06-17 19:56:36 -0500983 if (lpfc_els_chk_latt(vport)) {
James Smartfa4066b2008-01-11 01:53:27 -0500984 /* One additional decrement on node reference count to
985 * trigger the release of the node
986 */
James Smart329f9bc2007-04-25 09:53:01 -0400987 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -0500988 goto out;
989 }
990
James Smart858c9f62007-06-17 19:56:39 -0500991 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
992 "FLOGI cmpl: status:x%x/x%x state:x%x",
993 irsp->ulpStatus, irsp->un.ulpWord[4],
994 vport->port_state);
995
dea31012005-04-17 16:05:31 -0500996 if (irsp->ulpStatus) {
James Smart0c9ab6f2010-02-26 14:15:57 -0500997 /*
James Smarta93ff372010-10-22 11:06:08 -0400998 * In case of FIP mode, perform roundrobin FCF failover
James Smart0c9ab6f2010-02-26 14:15:57 -0500999 * due to new FCF discovery
1000 */
1001 if ((phba->hba_flag & HBA_FIP_SUPPORT) &&
James Smart80c17842012-03-01 22:35:45 -05001002 (phba->fcf.fcf_flag & FCF_DISCOVERY)) {
1003 if (phba->link_state < LPFC_LINK_UP)
1004 goto stop_rr_fcf_flogi;
1005 if ((phba->fcoe_cvl_eventtag_attn ==
1006 phba->fcoe_cvl_eventtag) &&
1007 (irsp->ulpStatus == IOSTAT_LOCAL_REJECT) &&
James Smarte3d2b802012-08-14 14:25:43 -04001008 ((irsp->un.ulpWord[4] & IOERR_PARAM_MASK) ==
1009 IOERR_SLI_ABORTED))
James Smart80c17842012-03-01 22:35:45 -05001010 goto stop_rr_fcf_flogi;
1011 else
1012 phba->fcoe_cvl_eventtag_attn =
1013 phba->fcoe_cvl_eventtag;
James Smart0c9ab6f2010-02-26 14:15:57 -05001014 lpfc_printf_log(phba, KERN_WARNING, LOG_FIP | LOG_ELS,
James Smarta93ff372010-10-22 11:06:08 -04001015 "2611 FLOGI failed on FCF (x%x), "
1016 "status:x%x/x%x, tmo:x%x, perform "
1017 "roundrobin FCF failover\n",
James Smart38b92ef2010-08-04 16:11:39 -04001018 phba->fcf.current_rec.fcf_indx,
1019 irsp->ulpStatus, irsp->un.ulpWord[4],
1020 irsp->ulpTimeout);
James Smart7d791df2011-07-22 18:37:52 -04001021 lpfc_sli4_set_fcf_flogi_fail(phba,
1022 phba->fcf.current_rec.fcf_indx);
James Smart0c9ab6f2010-02-26 14:15:57 -05001023 fcf_index = lpfc_sli4_fcf_rr_next_index_get(phba);
James Smarta93ff372010-10-22 11:06:08 -04001024 rc = lpfc_sli4_fcf_rr_next_proc(vport, fcf_index);
1025 if (rc)
1026 goto out;
James Smart0c9ab6f2010-02-26 14:15:57 -05001027 }
1028
James Smart80c17842012-03-01 22:35:45 -05001029stop_rr_fcf_flogi:
James Smart38b92ef2010-08-04 16:11:39 -04001030 /* FLOGI failure */
1031 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
James Smart8fe5c162015-08-31 16:48:19 -04001032 "2858 FLOGI failure Status:x%x/x%x TMO:x%x "
1033 "Data x%x x%x\n",
James Smart38b92ef2010-08-04 16:11:39 -04001034 irsp->ulpStatus, irsp->un.ulpWord[4],
James Smart8fe5c162015-08-31 16:48:19 -04001035 irsp->ulpTimeout, phba->hba_flag,
1036 phba->fcf.fcf_flag);
James Smart38b92ef2010-08-04 16:11:39 -04001037
dea31012005-04-17 16:05:31 -05001038 /* Check for retry */
James Smart2e0fef82007-06-17 19:56:36 -05001039 if (lpfc_els_retry(phba, cmdiocb, rspiocb))
dea31012005-04-17 16:05:31 -05001040 goto out;
James Smart2e0fef82007-06-17 19:56:36 -05001041
James Smart76a95d72010-11-20 23:11:48 -05001042 /* FLOGI failure */
1043 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
1044 "0100 FLOGI failure Status:x%x/x%x TMO:x%x\n",
1045 irsp->ulpStatus, irsp->un.ulpWord[4],
1046 irsp->ulpTimeout);
1047
dea31012005-04-17 16:05:31 -05001048 /* FLOGI failed, so there is no fabric */
James Smart2e0fef82007-06-17 19:56:36 -05001049 spin_lock_irq(shost->host_lock);
1050 vport->fc_flag &= ~(FC_FABRIC | FC_PUBLIC_LOOP);
1051 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001052
James Smart329f9bc2007-04-25 09:53:01 -04001053 /* If private loop, then allow max outstanding els to be
dea31012005-04-17 16:05:31 -05001054 * LPFC_MAX_DISC_THREADS (32). Scanning in the case of no
1055 * alpa map would take too long otherwise.
1056 */
James Smart1b511972011-12-13 13:23:09 -05001057 if (phba->alpa_map[0] == 0)
James Smart3de2a652007-08-02 11:09:59 -04001058 vport->cfg_discovery_threads = LPFC_MAX_DISC_THREADS;
James Smartff78d8f2011-12-13 13:21:35 -05001059 if ((phba->sli_rev == LPFC_SLI_REV4) &&
1060 (!(vport->fc_flag & FC_VFI_REGISTERED) ||
James Smarte74c03c2013-04-17 20:15:19 -04001061 (vport->fc_prevDID != vport->fc_myDID) ||
1062 phba->fc_topology_changed)) {
1063 if (vport->fc_flag & FC_VFI_REGISTERED) {
1064 if (phba->fc_topology_changed) {
1065 lpfc_unregister_fcf_prep(phba);
1066 spin_lock_irq(shost->host_lock);
1067 vport->fc_flag &= ~FC_VFI_REGISTERED;
1068 spin_unlock_irq(shost->host_lock);
1069 phba->fc_topology_changed = 0;
1070 } else {
1071 lpfc_sli4_unreg_all_rpis(vport);
1072 }
1073 }
James Smart342b59c2016-03-31 14:12:31 -07001074
1075 /* Do not register VFI if the driver aborted FLOGI */
1076 if (!lpfc_error_lost_link(irsp))
1077 lpfc_issue_reg_vfi(vport);
James Smartff78d8f2011-12-13 13:21:35 -05001078 lpfc_nlp_put(ndlp);
1079 goto out;
dea31012005-04-17 16:05:31 -05001080 }
dea31012005-04-17 16:05:31 -05001081 goto flogifail;
1082 }
James Smart695a8142010-01-26 23:08:03 -05001083 spin_lock_irq(shost->host_lock);
1084 vport->fc_flag &= ~FC_VPORT_CVL_RCVD;
James Smart4b40c592010-03-15 11:25:44 -04001085 vport->fc_flag &= ~FC_VPORT_LOGO_RCVD;
James Smart695a8142010-01-26 23:08:03 -05001086 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001087
1088 /*
1089 * The FLogI succeeded. Sync the data for the CPU before
1090 * accessing it.
1091 */
1092 prsp = list_get_first(&pcmd->list, struct lpfc_dmabuf, list);
James Smarta2fc4aef2014-09-03 12:57:55 -04001093 if (!prsp)
1094 goto out;
dea31012005-04-17 16:05:31 -05001095 sp = prsp->virt + sizeof(uint32_t);
1096
1097 /* FLOGI completes successfully */
James Smarte8b62012007-08-02 11:10:09 -04001098 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
James Smart88f43a02013-04-17 20:19:44 -04001099 "0101 FLOGI completes successfully, I/O tag:x%x, "
1100 "Data: x%x x%x x%x x%x x%x x%x\n", cmdiocb->iotag,
James Smarte8b62012007-08-02 11:10:09 -04001101 irsp->un.ulpWord[4], sp->cmn.e_d_tov,
James Smarte74c03c2013-04-17 20:15:19 -04001102 sp->cmn.w2.r_a_tov, sp->cmn.edtovResolution,
1103 vport->port_state, vport->fc_flag);
dea31012005-04-17 16:05:31 -05001104
James Smart2e0fef82007-06-17 19:56:36 -05001105 if (vport->port_state == LPFC_FLOGI) {
dea31012005-04-17 16:05:31 -05001106 /*
1107 * If Common Service Parameters indicate Nport
1108 * we are point to point, if Fport we are Fabric.
1109 */
1110 if (sp->cmn.fPort)
James Smart2e0fef82007-06-17 19:56:36 -05001111 rc = lpfc_cmpl_els_flogi_fabric(vport, ndlp, sp, irsp);
James Smart76a95d72010-11-20 23:11:48 -05001112 else if (!(phba->hba_flag & HBA_FCOE_MODE))
James Smart2e0fef82007-06-17 19:56:36 -05001113 rc = lpfc_cmpl_els_flogi_nport(vport, ndlp, sp);
James Smartdbb6b3a2010-06-08 18:31:37 -04001114 else {
1115 lpfc_printf_vlog(vport, KERN_ERR,
1116 LOG_FIP | LOG_ELS,
1117 "2831 FLOGI response with cleared Fabric "
1118 "bit fcf_index 0x%x "
1119 "Switch Name %02x%02x%02x%02x%02x%02x%02x%02x "
1120 "Fabric Name "
1121 "%02x%02x%02x%02x%02x%02x%02x%02x\n",
1122 phba->fcf.current_rec.fcf_indx,
1123 phba->fcf.current_rec.switch_name[0],
1124 phba->fcf.current_rec.switch_name[1],
1125 phba->fcf.current_rec.switch_name[2],
1126 phba->fcf.current_rec.switch_name[3],
1127 phba->fcf.current_rec.switch_name[4],
1128 phba->fcf.current_rec.switch_name[5],
1129 phba->fcf.current_rec.switch_name[6],
1130 phba->fcf.current_rec.switch_name[7],
1131 phba->fcf.current_rec.fabric_name[0],
1132 phba->fcf.current_rec.fabric_name[1],
1133 phba->fcf.current_rec.fabric_name[2],
1134 phba->fcf.current_rec.fabric_name[3],
1135 phba->fcf.current_rec.fabric_name[4],
1136 phba->fcf.current_rec.fabric_name[5],
1137 phba->fcf.current_rec.fabric_name[6],
1138 phba->fcf.current_rec.fabric_name[7]);
1139 lpfc_nlp_put(ndlp);
1140 spin_lock_irq(&phba->hbalock);
1141 phba->fcf.fcf_flag &= ~FCF_DISCOVERY;
James Smarta93ff372010-10-22 11:06:08 -04001142 phba->hba_flag &= ~(FCF_RR_INPROG | HBA_DEVLOSS_TMO);
James Smartdbb6b3a2010-06-08 18:31:37 -04001143 spin_unlock_irq(&phba->hbalock);
1144 goto out;
1145 }
James Smart0c9ab6f2010-02-26 14:15:57 -05001146 if (!rc) {
1147 /* Mark the FCF discovery process done */
James Smart999d8132010-03-15 11:24:56 -04001148 if (phba->hba_flag & HBA_FIP_SUPPORT)
1149 lpfc_printf_vlog(vport, KERN_INFO, LOG_FIP |
1150 LOG_ELS,
James Smarta93ff372010-10-22 11:06:08 -04001151 "2769 FLOGI to FCF (x%x) "
1152 "completed successfully\n",
James Smart999d8132010-03-15 11:24:56 -04001153 phba->fcf.current_rec.fcf_indx);
James Smart0c9ab6f2010-02-26 14:15:57 -05001154 spin_lock_irq(&phba->hbalock);
1155 phba->fcf.fcf_flag &= ~FCF_DISCOVERY;
James Smarta93ff372010-10-22 11:06:08 -04001156 phba->hba_flag &= ~(FCF_RR_INPROG | HBA_DEVLOSS_TMO);
James Smart0c9ab6f2010-02-26 14:15:57 -05001157 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05001158 goto out;
James Smart0c9ab6f2010-02-26 14:15:57 -05001159 }
dea31012005-04-17 16:05:31 -05001160 }
1161
1162flogifail:
James Smart8fe5c162015-08-31 16:48:19 -04001163 spin_lock_irq(&phba->hbalock);
1164 phba->fcf.fcf_flag &= ~FCF_DISCOVERY;
1165 spin_unlock_irq(&phba->hbalock);
James Smartd6de08c2015-12-16 18:11:53 -05001166
James Smart329f9bc2007-04-25 09:53:01 -04001167 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05001168
James Smart858c9f62007-06-17 19:56:39 -05001169 if (!lpfc_error_lost_link(irsp)) {
dea31012005-04-17 16:05:31 -05001170 /* FLOGI failed, so just use loop map to make discovery list */
James Smart2e0fef82007-06-17 19:56:36 -05001171 lpfc_disc_list_loopmap(vport);
dea31012005-04-17 16:05:31 -05001172
1173 /* Start discovery */
James Smart2e0fef82007-06-17 19:56:36 -05001174 lpfc_disc_start(vport);
James Smart87af33f2007-10-27 13:37:43 -04001175 } else if (((irsp->ulpStatus != IOSTAT_LOCAL_REJECT) ||
James Smarte3d2b802012-08-14 14:25:43 -04001176 (((irsp->un.ulpWord[4] & IOERR_PARAM_MASK) !=
1177 IOERR_SLI_ABORTED) &&
1178 ((irsp->un.ulpWord[4] & IOERR_PARAM_MASK) !=
1179 IOERR_SLI_DOWN))) &&
James Smart87af33f2007-10-27 13:37:43 -04001180 (phba->link_state != LPFC_CLEAR_LA)) {
1181 /* If FLOGI failed enable link interrupt. */
1182 lpfc_issue_clear_la(phba, vport);
dea31012005-04-17 16:05:31 -05001183 }
dea31012005-04-17 16:05:31 -05001184out:
1185 lpfc_els_free_iocb(phba, cmdiocb);
1186}
1187
James Smarte59058c2008-08-24 21:49:00 -04001188/**
James Smart3621a712009-04-06 18:47:14 -04001189 * lpfc_issue_els_flogi - Issue an flogi iocb command for a vport
James Smarte59058c2008-08-24 21:49:00 -04001190 * @vport: pointer to a host virtual N_Port data structure.
1191 * @ndlp: pointer to a node-list data structure.
1192 * @retry: number of retries to the command IOCB.
1193 *
1194 * This routine issues a Fabric Login (FLOGI) Request ELS command
1195 * for a @vport. The initiator service parameters are put into the payload
1196 * of the FLOGI Request IOCB and the top-level callback function pointer
1197 * to lpfc_cmpl_els_flogi() routine is put to the IOCB completion callback
1198 * function field. The lpfc_issue_fabric_iocb routine is invoked to send
1199 * out FLOGI ELS command with one outstanding fabric IOCB at a time.
1200 *
1201 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
1202 * will be incremented by 1 for holding the ndlp and the reference to ndlp
1203 * will be stored into the context1 field of the IOCB for the completion
1204 * callback function to the FLOGI ELS command.
1205 *
1206 * Return code
1207 * 0 - successfully issued flogi iocb for @vport
1208 * 1 - failed to issue flogi iocb for @vport
1209 **/
dea31012005-04-17 16:05:31 -05001210static int
James Smart2e0fef82007-06-17 19:56:36 -05001211lpfc_issue_els_flogi(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
dea31012005-04-17 16:05:31 -05001212 uint8_t retry)
1213{
James Smart2e0fef82007-06-17 19:56:36 -05001214 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05001215 struct serv_parm *sp;
1216 IOCB_t *icmd;
1217 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05001218 uint8_t *pcmd;
1219 uint16_t cmdsize;
1220 uint32_t tmo;
1221 int rc;
1222
James Smart92d7f7b2007-06-17 19:56:38 -05001223 cmdsize = (sizeof(uint32_t) + sizeof(struct serv_parm));
James Smart2e0fef82007-06-17 19:56:36 -05001224 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
1225 ndlp->nlp_DID, ELS_CMD_FLOGI);
James Smart92d7f7b2007-06-17 19:56:38 -05001226
James Smart488d1462006-03-07 15:02:37 -05001227 if (!elsiocb)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001228 return 1;
dea31012005-04-17 16:05:31 -05001229
1230 icmd = &elsiocb->iocb;
1231 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
1232
1233 /* For FLOGI request, remainder of payload is service parameters */
1234 *((uint32_t *) (pcmd)) = ELS_CMD_FLOGI;
James Smart92d7f7b2007-06-17 19:56:38 -05001235 pcmd += sizeof(uint32_t);
1236 memcpy(pcmd, &vport->fc_sparam, sizeof(struct serv_parm));
dea31012005-04-17 16:05:31 -05001237 sp = (struct serv_parm *) pcmd;
1238
1239 /* Setup CSPs accordingly for Fabric */
1240 sp->cmn.e_d_tov = 0;
1241 sp->cmn.w2.r_a_tov = 0;
James Smartdf9e1b52011-12-13 13:22:17 -05001242 sp->cmn.virtual_fabric_support = 0;
dea31012005-04-17 16:05:31 -05001243 sp->cls1.classValid = 0;
dea31012005-04-17 16:05:31 -05001244 if (sp->cmn.fcphLow < FC_PH3)
1245 sp->cmn.fcphLow = FC_PH3;
1246 if (sp->cmn.fcphHigh < FC_PH3)
1247 sp->cmn.fcphHigh = FC_PH3;
1248
James Smartc31098c2011-04-16 11:03:33 -04001249 if (phba->sli_rev == LPFC_SLI_REV4) {
1250 if (bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf) ==
1251 LPFC_SLI_INTF_IF_TYPE_0) {
1252 elsiocb->iocb.ulpCt_h = ((SLI4_CT_FCFI >> 1) & 1);
1253 elsiocb->iocb.ulpCt_l = (SLI4_CT_FCFI & 1);
1254 /* FLOGI needs to be 3 for WQE FCFI */
1255 /* Set the fcfi to the fcfi we registered with */
1256 elsiocb->iocb.ulpContext = phba->fcf.fcfi;
1257 }
James Smart0f378872012-10-31 14:45:01 -04001258 /* Can't do SLI4 class2 without support sequence coalescing */
1259 sp->cls2.classValid = 0;
1260 sp->cls2.seqDelivery = 0;
James Smart5248a742011-07-22 18:37:06 -04001261 } else {
James Smart0f378872012-10-31 14:45:01 -04001262 /* Historical, setting sequential-delivery bit for SLI3 */
1263 sp->cls2.seqDelivery = (sp->cls2.classValid) ? 1 : 0;
1264 sp->cls3.seqDelivery = (sp->cls3.classValid) ? 1 : 0;
James Smart5248a742011-07-22 18:37:06 -04001265 if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) {
1266 sp->cmn.request_multiple_Nport = 1;
1267 /* For FLOGI, Let FLOGI rsp set the NPortID for VPI 0 */
1268 icmd->ulpCt_h = 1;
1269 icmd->ulpCt_l = 0;
1270 } else
1271 sp->cmn.request_multiple_Nport = 0;
James Smart92d7f7b2007-06-17 19:56:38 -05001272 }
1273
James Smart76a95d72010-11-20 23:11:48 -05001274 if (phba->fc_topology != LPFC_TOPOLOGY_LOOP) {
James Smart858c9f62007-06-17 19:56:39 -05001275 icmd->un.elsreq64.myID = 0;
1276 icmd->un.elsreq64.fl = 1;
1277 }
1278
dea31012005-04-17 16:05:31 -05001279 tmo = phba->fc_ratov;
1280 phba->fc_ratov = LPFC_DISC_FLOGI_TMO;
James Smart2e0fef82007-06-17 19:56:36 -05001281 lpfc_set_disctmo(vport);
dea31012005-04-17 16:05:31 -05001282 phba->fc_ratov = tmo;
1283
1284 phba->fc_stat.elsXmitFLOGI++;
1285 elsiocb->iocb_cmpl = lpfc_cmpl_els_flogi;
James Smart858c9f62007-06-17 19:56:39 -05001286
1287 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
1288 "Issue FLOGI: opt:x%x",
1289 phba->sli3_options, 0, 0);
1290
James Smart92d7f7b2007-06-17 19:56:38 -05001291 rc = lpfc_issue_fabric_iocb(phba, elsiocb);
dea31012005-04-17 16:05:31 -05001292 if (rc == IOCB_ERROR) {
1293 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001294 return 1;
dea31012005-04-17 16:05:31 -05001295 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001296 return 0;
dea31012005-04-17 16:05:31 -05001297}
1298
James Smarte59058c2008-08-24 21:49:00 -04001299/**
James Smart3621a712009-04-06 18:47:14 -04001300 * lpfc_els_abort_flogi - Abort all outstanding flogi iocbs
James Smarte59058c2008-08-24 21:49:00 -04001301 * @phba: pointer to lpfc hba data structure.
1302 *
1303 * This routine aborts all the outstanding Fabric Login (FLOGI) IOCBs
1304 * with a @phba. This routine walks all the outstanding IOCBs on the txcmplq
1305 * list and issues an abort IOCB commond on each outstanding IOCB that
1306 * contains a active Fabric_DID ndlp. Note that this function is to issue
1307 * the abort IOCB command on all the outstanding IOCBs, thus when this
1308 * function returns, it does not guarantee all the IOCBs are actually aborted.
1309 *
1310 * Return code
Daniel Mack3ad2f3f2010-02-03 08:01:28 +08001311 * 0 - Successfully issued abort iocb on all outstanding flogis (Always 0)
James Smarte59058c2008-08-24 21:49:00 -04001312 **/
dea31012005-04-17 16:05:31 -05001313int
James Smart2e0fef82007-06-17 19:56:36 -05001314lpfc_els_abort_flogi(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -05001315{
1316 struct lpfc_sli_ring *pring;
1317 struct lpfc_iocbq *iocb, *next_iocb;
1318 struct lpfc_nodelist *ndlp;
1319 IOCB_t *icmd;
1320
1321 /* Abort outstanding I/O on NPort <nlp_DID> */
1322 lpfc_printf_log(phba, KERN_INFO, LOG_DISCOVERY,
James Smarte8b62012007-08-02 11:10:09 -04001323 "0201 Abort outstanding I/O on NPort x%x\n",
1324 Fabric_DID);
dea31012005-04-17 16:05:31 -05001325
1326 pring = &phba->sli.ring[LPFC_ELS_RING];
1327
1328 /*
1329 * Check the txcmplq for an iocb that matches the nport the driver is
1330 * searching for.
1331 */
James Smart2e0fef82007-06-17 19:56:36 -05001332 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05001333 list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq, list) {
1334 icmd = &iocb->iocb;
James Smart1b511972011-12-13 13:23:09 -05001335 if (icmd->ulpCommand == CMD_ELS_REQUEST64_CR) {
dea31012005-04-17 16:05:31 -05001336 ndlp = (struct lpfc_nodelist *)(iocb->context1);
James Smart58da1ff2008-04-07 10:15:56 -04001337 if (ndlp && NLP_CHK_NODE_ACT(ndlp) &&
1338 (ndlp->nlp_DID == Fabric_DID))
James Smart07951072007-04-25 09:51:38 -04001339 lpfc_sli_issue_abort_iotag(phba, pring, iocb);
dea31012005-04-17 16:05:31 -05001340 }
1341 }
James Smart2e0fef82007-06-17 19:56:36 -05001342 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05001343
1344 return 0;
1345}
1346
James Smarte59058c2008-08-24 21:49:00 -04001347/**
James Smart3621a712009-04-06 18:47:14 -04001348 * lpfc_initial_flogi - Issue an initial fabric login for a vport
James Smarte59058c2008-08-24 21:49:00 -04001349 * @vport: pointer to a host virtual N_Port data structure.
1350 *
1351 * This routine issues an initial Fabric Login (FLOGI) for the @vport
1352 * specified. It first searches the ndlp with the Fabric_DID (0xfffffe) from
1353 * the @vport's ndlp list. If no such ndlp found, it will create an ndlp and
1354 * put it into the @vport's ndlp list. If an inactive ndlp found on the list,
1355 * it will just be enabled and made active. The lpfc_issue_els_flogi() routine
1356 * is then invoked with the @vport and the ndlp to perform the FLOGI for the
1357 * @vport.
1358 *
1359 * Return code
1360 * 0 - failed to issue initial flogi for @vport
1361 * 1 - successfully issued initial flogi for @vport
1362 **/
dea31012005-04-17 16:05:31 -05001363int
James Smart2e0fef82007-06-17 19:56:36 -05001364lpfc_initial_flogi(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05001365{
James Smart2e0fef82007-06-17 19:56:36 -05001366 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05001367 struct lpfc_nodelist *ndlp;
1368
James Smart98c9ea52007-10-27 13:37:33 -04001369 vport->port_state = LPFC_FLOGI;
1370 lpfc_set_disctmo(vport);
1371
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001372 /* First look for the Fabric ndlp */
James Smart2e0fef82007-06-17 19:56:36 -05001373 ndlp = lpfc_findnode_did(vport, Fabric_DID);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001374 if (!ndlp) {
dea31012005-04-17 16:05:31 -05001375 /* Cannot find existing Fabric ndlp, so allocate a new one */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001376 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
1377 if (!ndlp)
1378 return 0;
James Smart2e0fef82007-06-17 19:56:36 -05001379 lpfc_nlp_init(vport, ndlp, Fabric_DID);
James Smart6fb120a2009-05-22 14:52:59 -04001380 /* Set the node type */
1381 ndlp->nlp_type |= NLP_FABRIC;
James Smarte47c9092008-02-08 18:49:26 -05001382 /* Put ndlp onto node list */
1383 lpfc_enqueue_node(vport, ndlp);
1384 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
1385 /* re-setup ndlp without removing from node list */
1386 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
1387 if (!ndlp)
1388 return 0;
dea31012005-04-17 16:05:31 -05001389 }
James Smart87af33f2007-10-27 13:37:43 -04001390
James Smart5ac6b302010-10-22 11:05:36 -04001391 if (lpfc_issue_els_flogi(vport, ndlp, 0)) {
James Smartfa4066b2008-01-11 01:53:27 -05001392 /* This decrement of reference count to node shall kick off
1393 * the release of the node.
1394 */
James Smart329f9bc2007-04-25 09:53:01 -04001395 lpfc_nlp_put(ndlp);
James Smart5ac6b302010-10-22 11:05:36 -04001396 return 0;
1397 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001398 return 1;
dea31012005-04-17 16:05:31 -05001399}
1400
James Smarte59058c2008-08-24 21:49:00 -04001401/**
James Smart3621a712009-04-06 18:47:14 -04001402 * lpfc_initial_fdisc - Issue an initial fabric discovery for a vport
James Smarte59058c2008-08-24 21:49:00 -04001403 * @vport: pointer to a host virtual N_Port data structure.
1404 *
1405 * This routine issues an initial Fabric Discover (FDISC) for the @vport
1406 * specified. It first searches the ndlp with the Fabric_DID (0xfffffe) from
1407 * the @vport's ndlp list. If no such ndlp found, it will create an ndlp and
1408 * put it into the @vport's ndlp list. If an inactive ndlp found on the list,
1409 * it will just be enabled and made active. The lpfc_issue_els_fdisc() routine
1410 * is then invoked with the @vport and the ndlp to perform the FDISC for the
1411 * @vport.
1412 *
1413 * Return code
1414 * 0 - failed to issue initial fdisc for @vport
1415 * 1 - successfully issued initial fdisc for @vport
1416 **/
James Smart92d7f7b2007-06-17 19:56:38 -05001417int
1418lpfc_initial_fdisc(struct lpfc_vport *vport)
1419{
1420 struct lpfc_hba *phba = vport->phba;
1421 struct lpfc_nodelist *ndlp;
1422
1423 /* First look for the Fabric ndlp */
1424 ndlp = lpfc_findnode_did(vport, Fabric_DID);
1425 if (!ndlp) {
1426 /* Cannot find existing Fabric ndlp, so allocate a new one */
1427 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
1428 if (!ndlp)
1429 return 0;
1430 lpfc_nlp_init(vport, ndlp, Fabric_DID);
James Smarte47c9092008-02-08 18:49:26 -05001431 /* Put ndlp onto node list */
1432 lpfc_enqueue_node(vport, ndlp);
1433 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
1434 /* re-setup ndlp without removing from node list */
1435 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
1436 if (!ndlp)
1437 return 0;
James Smart92d7f7b2007-06-17 19:56:38 -05001438 }
James Smarte47c9092008-02-08 18:49:26 -05001439
James Smart92d7f7b2007-06-17 19:56:38 -05001440 if (lpfc_issue_els_fdisc(vport, ndlp, 0)) {
James Smartfa4066b2008-01-11 01:53:27 -05001441 /* decrement node reference count to trigger the release of
1442 * the node.
1443 */
James Smart92d7f7b2007-06-17 19:56:38 -05001444 lpfc_nlp_put(ndlp);
James Smartfa4066b2008-01-11 01:53:27 -05001445 return 0;
James Smart92d7f7b2007-06-17 19:56:38 -05001446 }
1447 return 1;
1448}
James Smart87af33f2007-10-27 13:37:43 -04001449
James Smarte59058c2008-08-24 21:49:00 -04001450/**
James Smart3621a712009-04-06 18:47:14 -04001451 * lpfc_more_plogi - Check and issue remaining plogis for a vport
James Smarte59058c2008-08-24 21:49:00 -04001452 * @vport: pointer to a host virtual N_Port data structure.
1453 *
1454 * This routine checks whether there are more remaining Port Logins
1455 * (PLOGI) to be issued for the @vport. If so, it will invoke the routine
1456 * lpfc_els_disc_plogi() to go through the Node Port Recovery (NPR) nodes
1457 * to issue ELS PLOGIs up to the configured discover threads with the
1458 * @vport (@vport->cfg_discovery_threads). The function also decrement
1459 * the @vport's num_disc_node by 1 if it is not already 0.
1460 **/
James Smart87af33f2007-10-27 13:37:43 -04001461void
James Smart2e0fef82007-06-17 19:56:36 -05001462lpfc_more_plogi(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05001463{
James Smart2e0fef82007-06-17 19:56:36 -05001464 if (vport->num_disc_nodes)
1465 vport->num_disc_nodes--;
dea31012005-04-17 16:05:31 -05001466
1467 /* Continue discovery with <num_disc_nodes> PLOGIs to go */
James Smarte8b62012007-08-02 11:10:09 -04001468 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
1469 "0232 Continue discovery with %d PLOGIs to go "
1470 "Data: x%x x%x x%x\n",
1471 vport->num_disc_nodes, vport->fc_plogi_cnt,
1472 vport->fc_flag, vport->port_state);
dea31012005-04-17 16:05:31 -05001473 /* Check to see if there are more PLOGIs to be sent */
James Smart2e0fef82007-06-17 19:56:36 -05001474 if (vport->fc_flag & FC_NLP_MORE)
1475 /* go thru NPR nodes and issue any remaining ELS PLOGIs */
Sebastian Herbsztdb6f1c22015-08-31 16:48:14 -04001476 lpfc_els_disc_plogi(vport);
James Smart2e0fef82007-06-17 19:56:36 -05001477
dea31012005-04-17 16:05:31 -05001478 return;
1479}
1480
James Smarte59058c2008-08-24 21:49:00 -04001481/**
James Smart3621a712009-04-06 18:47:14 -04001482 * lpfc_plogi_confirm_nport - Confirm pologi wwpn matches stored ndlp
James Smarte59058c2008-08-24 21:49:00 -04001483 * @phba: pointer to lpfc hba data structure.
1484 * @prsp: pointer to response IOCB payload.
1485 * @ndlp: pointer to a node-list data structure.
1486 *
1487 * This routine checks and indicates whether the WWPN of an N_Port, retrieved
1488 * from a PLOGI, matches the WWPN that is stored in the @ndlp for that N_POrt.
1489 * The following cases are considered N_Port confirmed:
1490 * 1) The N_Port is a Fabric ndlp; 2) The @ndlp is on vport list and matches
1491 * the WWPN of the N_Port logged into; 3) The @ndlp is not on vport list but
1492 * it does not have WWPN assigned either. If the WWPN is confirmed, the
1493 * pointer to the @ndlp will be returned. If the WWPN is not confirmed:
1494 * 1) if there is a node on vport list other than the @ndlp with the same
1495 * WWPN of the N_Port PLOGI logged into, the lpfc_unreg_rpi() will be invoked
1496 * on that node to release the RPI associated with the node; 2) if there is
1497 * no node found on vport list with the same WWPN of the N_Port PLOGI logged
1498 * into, a new node shall be allocated (or activated). In either case, the
1499 * parameters of the @ndlp shall be copied to the new_ndlp, the @ndlp shall
1500 * be released and the new_ndlp shall be put on to the vport node list and
1501 * its pointer returned as the confirmed node.
1502 *
1503 * Note that before the @ndlp got "released", the keepDID from not-matching
1504 * or inactive "new_ndlp" on the vport node list is assigned to the nlp_DID
1505 * of the @ndlp. This is because the release of @ndlp is actually to put it
1506 * into an inactive state on the vport node list and the vport node list
1507 * management algorithm does not allow two node with a same DID.
1508 *
1509 * Return code
1510 * pointer to the PLOGI N_Port @ndlp
1511 **/
James Smart488d1462006-03-07 15:02:37 -05001512static struct lpfc_nodelist *
James Smart92d7f7b2007-06-17 19:56:38 -05001513lpfc_plogi_confirm_nport(struct lpfc_hba *phba, uint32_t *prsp,
James Smart488d1462006-03-07 15:02:37 -05001514 struct lpfc_nodelist *ndlp)
1515{
James Smart2e0fef82007-06-17 19:56:36 -05001516 struct lpfc_vport *vport = ndlp->vport;
James Smart953ceed2015-05-22 10:42:37 -04001517 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart488d1462006-03-07 15:02:37 -05001518 struct lpfc_nodelist *new_ndlp;
James Smart0ff10d42008-01-11 01:52:36 -05001519 struct lpfc_rport_data *rdata;
1520 struct fc_rport *rport;
James Smart488d1462006-03-07 15:02:37 -05001521 struct serv_parm *sp;
James Smart92d7f7b2007-06-17 19:56:38 -05001522 uint8_t name[sizeof(struct lpfc_name)];
James Smarte5abba42015-05-21 13:55:27 -04001523 uint32_t rc, keepDID = 0, keep_nlp_flag = 0;
James Smart953ceed2015-05-22 10:42:37 -04001524 uint16_t keep_nlp_state;
James Smart38b92ef2010-08-04 16:11:39 -04001525 int put_node;
1526 int put_rport;
James Smartcff261f2013-12-17 20:29:47 -05001527 unsigned long *active_rrqs_xri_bitmap = NULL;
James Smart488d1462006-03-07 15:02:37 -05001528
James Smart2fb9bd82006-12-02 13:33:57 -05001529 /* Fabric nodes can have the same WWPN so we don't bother searching
1530 * by WWPN. Just return the ndlp that was given to us.
1531 */
1532 if (ndlp->nlp_type & NLP_FABRIC)
1533 return ndlp;
1534
James Smart92d7f7b2007-06-17 19:56:38 -05001535 sp = (struct serv_parm *) ((uint8_t *) prsp + sizeof(uint32_t));
James Smart685f0bf2007-04-25 09:53:08 -04001536 memset(name, 0, sizeof(struct lpfc_name));
James Smart488d1462006-03-07 15:02:37 -05001537
James Smart685f0bf2007-04-25 09:53:08 -04001538 /* Now we find out if the NPort we are logging into, matches the WWPN
James Smart488d1462006-03-07 15:02:37 -05001539 * we have for that ndlp. If not, we have some work to do.
1540 */
James Smart2e0fef82007-06-17 19:56:36 -05001541 new_ndlp = lpfc_findnode_wwpn(vport, &sp->portName);
James Smart488d1462006-03-07 15:02:37 -05001542
James Smarte47c9092008-02-08 18:49:26 -05001543 if (new_ndlp == ndlp && NLP_CHK_NODE_ACT(new_ndlp))
James Smart488d1462006-03-07 15:02:37 -05001544 return ndlp;
James Smartcff261f2013-12-17 20:29:47 -05001545 if (phba->sli_rev == LPFC_SLI_REV4) {
1546 active_rrqs_xri_bitmap = mempool_alloc(phba->active_rrq_pool,
1547 GFP_KERNEL);
1548 if (active_rrqs_xri_bitmap)
1549 memset(active_rrqs_xri_bitmap, 0,
1550 phba->cfg_rrq_xri_bitmap_sz);
1551 }
James Smart488d1462006-03-07 15:02:37 -05001552
James Smart34f5ad82012-08-03 12:35:03 -04001553 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
1554 "3178 PLOGI confirm: ndlp %p x%x: new_ndlp %p\n",
1555 ndlp, ndlp->nlp_DID, new_ndlp);
1556
James Smart488d1462006-03-07 15:02:37 -05001557 if (!new_ndlp) {
James Smart2e0fef82007-06-17 19:56:36 -05001558 rc = memcmp(&ndlp->nlp_portname, name,
1559 sizeof(struct lpfc_name));
James Smartcff261f2013-12-17 20:29:47 -05001560 if (!rc) {
1561 if (active_rrqs_xri_bitmap)
1562 mempool_free(active_rrqs_xri_bitmap,
1563 phba->active_rrq_pool);
James Smart92795652006-07-06 15:50:02 -04001564 return ndlp;
James Smartcff261f2013-12-17 20:29:47 -05001565 }
James Smart488d1462006-03-07 15:02:37 -05001566 new_ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_ATOMIC);
James Smartcff261f2013-12-17 20:29:47 -05001567 if (!new_ndlp) {
1568 if (active_rrqs_xri_bitmap)
1569 mempool_free(active_rrqs_xri_bitmap,
1570 phba->active_rrq_pool);
James Smart488d1462006-03-07 15:02:37 -05001571 return ndlp;
James Smartcff261f2013-12-17 20:29:47 -05001572 }
James Smart2e0fef82007-06-17 19:56:36 -05001573 lpfc_nlp_init(vport, new_ndlp, ndlp->nlp_DID);
James Smarte47c9092008-02-08 18:49:26 -05001574 } else if (!NLP_CHK_NODE_ACT(new_ndlp)) {
James Smart58da1ff2008-04-07 10:15:56 -04001575 rc = memcmp(&ndlp->nlp_portname, name,
1576 sizeof(struct lpfc_name));
James Smartcff261f2013-12-17 20:29:47 -05001577 if (!rc) {
1578 if (active_rrqs_xri_bitmap)
1579 mempool_free(active_rrqs_xri_bitmap,
1580 phba->active_rrq_pool);
James Smart58da1ff2008-04-07 10:15:56 -04001581 return ndlp;
James Smartcff261f2013-12-17 20:29:47 -05001582 }
James Smarte47c9092008-02-08 18:49:26 -05001583 new_ndlp = lpfc_enable_node(vport, new_ndlp,
1584 NLP_STE_UNUSED_NODE);
James Smartcff261f2013-12-17 20:29:47 -05001585 if (!new_ndlp) {
1586 if (active_rrqs_xri_bitmap)
1587 mempool_free(active_rrqs_xri_bitmap,
1588 phba->active_rrq_pool);
James Smarte47c9092008-02-08 18:49:26 -05001589 return ndlp;
James Smartcff261f2013-12-17 20:29:47 -05001590 }
James Smart58da1ff2008-04-07 10:15:56 -04001591 keepDID = new_ndlp->nlp_DID;
James Smartcff261f2013-12-17 20:29:47 -05001592 if ((phba->sli_rev == LPFC_SLI_REV4) && 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 } else {
James Smart58da1ff2008-04-07 10:15:56 -04001597 keepDID = new_ndlp->nlp_DID;
James Smartcff261f2013-12-17 20:29:47 -05001598 if (phba->sli_rev == LPFC_SLI_REV4 &&
1599 active_rrqs_xri_bitmap)
1600 memcpy(active_rrqs_xri_bitmap,
1601 new_ndlp->active_rrqs_xri_bitmap,
1602 phba->cfg_rrq_xri_bitmap_sz);
James Smart19ca7602010-11-20 23:11:55 -05001603 }
James Smart488d1462006-03-07 15:02:37 -05001604
James Smart2e0fef82007-06-17 19:56:36 -05001605 lpfc_unreg_rpi(vport, new_ndlp);
James Smart488d1462006-03-07 15:02:37 -05001606 new_ndlp->nlp_DID = ndlp->nlp_DID;
James Smart92795652006-07-06 15:50:02 -04001607 new_ndlp->nlp_prev_state = ndlp->nlp_prev_state;
James Smart19ca7602010-11-20 23:11:55 -05001608 if (phba->sli_rev == LPFC_SLI_REV4)
James Smartcff261f2013-12-17 20:29:47 -05001609 memcpy(new_ndlp->active_rrqs_xri_bitmap,
1610 ndlp->active_rrqs_xri_bitmap,
1611 phba->cfg_rrq_xri_bitmap_sz);
James Smart0ff10d42008-01-11 01:52:36 -05001612
James Smart953ceed2015-05-22 10:42:37 -04001613 spin_lock_irq(shost->host_lock);
James Smarte5abba42015-05-21 13:55:27 -04001614 keep_nlp_flag = new_ndlp->nlp_flag;
1615 new_ndlp->nlp_flag = ndlp->nlp_flag;
1616 ndlp->nlp_flag = keep_nlp_flag;
James Smart953ceed2015-05-22 10:42:37 -04001617 spin_unlock_irq(shost->host_lock);
James Smart0ff10d42008-01-11 01:52:36 -05001618
James Smart953ceed2015-05-22 10:42:37 -04001619 /* Set nlp_states accordingly */
1620 keep_nlp_state = new_ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05001621 lpfc_nlp_set_state(vport, new_ndlp, ndlp->nlp_state);
James Smart488d1462006-03-07 15:02:37 -05001622
James Smart2e0fef82007-06-17 19:56:36 -05001623 /* Move this back to NPR state */
James Smart87af33f2007-10-27 13:37:43 -04001624 if (memcmp(&ndlp->nlp_portname, name, sizeof(struct lpfc_name)) == 0) {
1625 /* The new_ndlp is replacing ndlp totally, so we need
1626 * to put ndlp on UNUSED list and try to free it.
1627 */
James Smart34f5ad82012-08-03 12:35:03 -04001628 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
1629 "3179 PLOGI confirm NEW: %x %x\n",
1630 new_ndlp->nlp_DID, keepDID);
James Smart0ff10d42008-01-11 01:52:36 -05001631
1632 /* Fix up the rport accordingly */
1633 rport = ndlp->rport;
1634 if (rport) {
1635 rdata = rport->dd_data;
1636 if (rdata->pnode == ndlp) {
James Smart466e8402015-05-21 13:55:28 -04001637 /* break the link before dropping the ref */
James Smart0ff10d42008-01-11 01:52:36 -05001638 ndlp->rport = NULL;
James Smart466e8402015-05-21 13:55:28 -04001639 lpfc_nlp_put(ndlp);
James Smart0ff10d42008-01-11 01:52:36 -05001640 rdata->pnode = lpfc_nlp_get(new_ndlp);
1641 new_ndlp->rport = rport;
1642 }
1643 new_ndlp->nlp_type = ndlp->nlp_type;
1644 }
James Smart58da1ff2008-04-07 10:15:56 -04001645 /* We shall actually free the ndlp with both nlp_DID and
1646 * nlp_portname fields equals 0 to avoid any ndlp on the
1647 * nodelist never to be used.
1648 */
1649 if (ndlp->nlp_DID == 0) {
1650 spin_lock_irq(&phba->ndlp_lock);
1651 NLP_SET_FREE_REQ(ndlp);
1652 spin_unlock_irq(&phba->ndlp_lock);
1653 }
James Smart0ff10d42008-01-11 01:52:36 -05001654
James Smart58da1ff2008-04-07 10:15:56 -04001655 /* Two ndlps cannot have the same did on the nodelist */
1656 ndlp->nlp_DID = keepDID;
James Smartcff261f2013-12-17 20:29:47 -05001657 if (phba->sli_rev == LPFC_SLI_REV4 &&
1658 active_rrqs_xri_bitmap)
1659 memcpy(ndlp->active_rrqs_xri_bitmap,
1660 active_rrqs_xri_bitmap,
1661 phba->cfg_rrq_xri_bitmap_sz);
James Smarte5abba42015-05-21 13:55:27 -04001662
1663 if (!NLP_CHK_NODE_ACT(ndlp))
1664 lpfc_drop_node(vport, ndlp);
James Smart87af33f2007-10-27 13:37:43 -04001665 }
James Smart92795652006-07-06 15:50:02 -04001666 else {
James Smart34f5ad82012-08-03 12:35:03 -04001667 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
1668 "3180 PLOGI confirm SWAP: %x %x\n",
1669 new_ndlp->nlp_DID, keepDID);
1670
James Smart2e0fef82007-06-17 19:56:36 -05001671 lpfc_unreg_rpi(vport, ndlp);
James Smart34f5ad82012-08-03 12:35:03 -04001672
James Smart58da1ff2008-04-07 10:15:56 -04001673 /* Two ndlps cannot have the same did */
1674 ndlp->nlp_DID = keepDID;
James Smartcff261f2013-12-17 20:29:47 -05001675 if (phba->sli_rev == LPFC_SLI_REV4 &&
1676 active_rrqs_xri_bitmap)
1677 memcpy(ndlp->active_rrqs_xri_bitmap,
1678 active_rrqs_xri_bitmap,
1679 phba->cfg_rrq_xri_bitmap_sz);
James Smart34f5ad82012-08-03 12:35:03 -04001680
James Smart953ceed2015-05-22 10:42:37 -04001681 /* Since we are switching over to the new_ndlp,
1682 * reset the old ndlp state
James Smart34f5ad82012-08-03 12:35:03 -04001683 */
1684 if ((ndlp->nlp_state == NLP_STE_UNMAPPED_NODE) ||
1685 (ndlp->nlp_state == NLP_STE_MAPPED_NODE))
James Smart953ceed2015-05-22 10:42:37 -04001686 keep_nlp_state = NLP_STE_NPR_NODE;
1687 lpfc_nlp_set_state(vport, ndlp, keep_nlp_state);
James Smart34f5ad82012-08-03 12:35:03 -04001688
James Smart38b92ef2010-08-04 16:11:39 -04001689 /* Fix up the rport accordingly */
1690 rport = ndlp->rport;
1691 if (rport) {
1692 rdata = rport->dd_data;
1693 put_node = rdata->pnode != NULL;
1694 put_rport = ndlp->rport != NULL;
1695 rdata->pnode = NULL;
1696 ndlp->rport = NULL;
1697 if (put_node)
1698 lpfc_nlp_put(ndlp);
1699 if (put_rport)
1700 put_device(&rport->dev);
1701 }
James Smart92795652006-07-06 15:50:02 -04001702 }
James Smartcff261f2013-12-17 20:29:47 -05001703 if (phba->sli_rev == LPFC_SLI_REV4 &&
1704 active_rrqs_xri_bitmap)
1705 mempool_free(active_rrqs_xri_bitmap,
1706 phba->active_rrq_pool);
James Smart488d1462006-03-07 15:02:37 -05001707 return new_ndlp;
1708}
1709
James Smarte59058c2008-08-24 21:49:00 -04001710/**
James Smart3621a712009-04-06 18:47:14 -04001711 * lpfc_end_rscn - Check and handle more rscn for a vport
James Smarte59058c2008-08-24 21:49:00 -04001712 * @vport: pointer to a host virtual N_Port data structure.
1713 *
1714 * This routine checks whether more Registration State Change
1715 * Notifications (RSCNs) came in while the discovery state machine was in
1716 * the FC_RSCN_MODE. If so, the lpfc_els_handle_rscn() routine will be
1717 * invoked to handle the additional RSCNs for the @vport. Otherwise, the
1718 * FC_RSCN_MODE bit will be cleared with the @vport to mark as the end of
1719 * handling the RSCNs.
1720 **/
James Smart87af33f2007-10-27 13:37:43 -04001721void
1722lpfc_end_rscn(struct lpfc_vport *vport)
1723{
1724 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1725
1726 if (vport->fc_flag & FC_RSCN_MODE) {
1727 /*
1728 * Check to see if more RSCNs came in while we were
1729 * processing this one.
1730 */
1731 if (vport->fc_rscn_id_cnt ||
1732 (vport->fc_flag & FC_RSCN_DISCOVERY) != 0)
1733 lpfc_els_handle_rscn(vport);
1734 else {
1735 spin_lock_irq(shost->host_lock);
1736 vport->fc_flag &= ~FC_RSCN_MODE;
1737 spin_unlock_irq(shost->host_lock);
1738 }
1739 }
1740}
1741
James Smarte59058c2008-08-24 21:49:00 -04001742/**
James Smart19ca7602010-11-20 23:11:55 -05001743 * lpfc_cmpl_els_rrq - Completion handled for els RRQs.
1744 * @phba: pointer to lpfc hba data structure.
1745 * @cmdiocb: pointer to lpfc command iocb data structure.
1746 * @rspiocb: pointer to lpfc response iocb data structure.
1747 *
1748 * This routine will call the clear rrq function to free the rrq and
1749 * clear the xri's bit in the ndlp's xri_bitmap. If the ndlp does not
1750 * exist then the clear_rrq is still called because the rrq needs to
1751 * be freed.
1752 **/
1753
1754static void
1755lpfc_cmpl_els_rrq(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
1756 struct lpfc_iocbq *rspiocb)
1757{
1758 struct lpfc_vport *vport = cmdiocb->vport;
1759 IOCB_t *irsp;
1760 struct lpfc_nodelist *ndlp;
1761 struct lpfc_node_rrq *rrq;
1762
1763 /* we pass cmdiocb to state machine which needs rspiocb as well */
1764 rrq = cmdiocb->context_un.rrq;
1765 cmdiocb->context_un.rsp_iocb = rspiocb;
1766
1767 irsp = &rspiocb->iocb;
1768 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
1769 "RRQ cmpl: status:x%x/x%x did:x%x",
1770 irsp->ulpStatus, irsp->un.ulpWord[4],
1771 irsp->un.elsreq64.remoteID);
1772
1773 ndlp = lpfc_findnode_did(vport, irsp->un.elsreq64.remoteID);
1774 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp) || ndlp != rrq->ndlp) {
1775 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
1776 "2882 RRQ completes to NPort x%x "
1777 "with no ndlp. Data: x%x x%x x%x\n",
1778 irsp->un.elsreq64.remoteID,
1779 irsp->ulpStatus, irsp->un.ulpWord[4],
1780 irsp->ulpIoTag);
1781 goto out;
1782 }
1783
1784 /* rrq completes to NPort <nlp_DID> */
1785 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
1786 "2880 RRQ completes to NPort x%x "
1787 "Data: x%x x%x x%x x%x x%x\n",
1788 ndlp->nlp_DID, irsp->ulpStatus, irsp->un.ulpWord[4],
1789 irsp->ulpTimeout, rrq->xritag, rrq->rxid);
1790
1791 if (irsp->ulpStatus) {
1792 /* Check for retry */
1793 /* RRQ failed Don't print the vport to vport rjts */
1794 if (irsp->ulpStatus != IOSTAT_LS_RJT ||
1795 (((irsp->un.ulpWord[4]) >> 16 != LSRJT_INVALID_CMD) &&
1796 ((irsp->un.ulpWord[4]) >> 16 != LSRJT_UNABLE_TPC)) ||
1797 (phba)->pport->cfg_log_verbose & LOG_ELS)
1798 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
1799 "2881 RRQ failure DID:%06X Status:x%x/x%x\n",
1800 ndlp->nlp_DID, irsp->ulpStatus,
1801 irsp->un.ulpWord[4]);
1802 }
1803out:
1804 if (rrq)
1805 lpfc_clr_rrq_active(phba, rrq->xritag, rrq);
1806 lpfc_els_free_iocb(phba, cmdiocb);
1807 return;
1808}
1809/**
James Smart3621a712009-04-06 18:47:14 -04001810 * lpfc_cmpl_els_plogi - Completion callback function for plogi
James Smarte59058c2008-08-24 21:49:00 -04001811 * @phba: pointer to lpfc hba data structure.
1812 * @cmdiocb: pointer to lpfc command iocb data structure.
1813 * @rspiocb: pointer to lpfc response iocb data structure.
1814 *
1815 * This routine is the completion callback function for issuing the Port
1816 * Login (PLOGI) command. For PLOGI completion, there must be an active
1817 * ndlp on the vport node list that matches the remote node ID from the
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001818 * PLOGI response IOCB. If such ndlp does not exist, the PLOGI is simply
James Smarte59058c2008-08-24 21:49:00 -04001819 * ignored and command IOCB released. The PLOGI response IOCB status is
1820 * checked for error conditons. If there is error status reported, PLOGI
1821 * retry shall be attempted by invoking the lpfc_els_retry() routine.
1822 * Otherwise, the lpfc_plogi_confirm_nport() routine shall be invoked on
1823 * the ndlp and the NLP_EVT_CMPL_PLOGI state to the Discover State Machine
1824 * (DSM) is set for this PLOGI completion. Finally, it checks whether
1825 * there are additional N_Port nodes with the vport that need to perform
1826 * PLOGI. If so, the lpfc_more_plogi() routine is invoked to issue addition
1827 * PLOGIs.
1828 **/
dea31012005-04-17 16:05:31 -05001829static void
James Smart2e0fef82007-06-17 19:56:36 -05001830lpfc_cmpl_els_plogi(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
1831 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05001832{
James Smart2e0fef82007-06-17 19:56:36 -05001833 struct lpfc_vport *vport = cmdiocb->vport;
1834 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05001835 IOCB_t *irsp;
dea31012005-04-17 16:05:31 -05001836 struct lpfc_nodelist *ndlp;
James Smart92795652006-07-06 15:50:02 -04001837 struct lpfc_dmabuf *prsp;
James Smarteb016562014-09-03 12:58:06 -04001838 int disc, rc;
dea31012005-04-17 16:05:31 -05001839
dea31012005-04-17 16:05:31 -05001840 /* we pass cmdiocb to state machine which needs rspiocb as well */
1841 cmdiocb->context_un.rsp_iocb = rspiocb;
1842
1843 irsp = &rspiocb->iocb;
James Smart858c9f62007-06-17 19:56:39 -05001844 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
1845 "PLOGI cmpl: status:x%x/x%x did:x%x",
1846 irsp->ulpStatus, irsp->un.ulpWord[4],
1847 irsp->un.elsreq64.remoteID);
1848
James Smart2e0fef82007-06-17 19:56:36 -05001849 ndlp = lpfc_findnode_did(vport, irsp->un.elsreq64.remoteID);
James Smarte47c9092008-02-08 18:49:26 -05001850 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp)) {
James Smarte8b62012007-08-02 11:10:09 -04001851 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
1852 "0136 PLOGI completes to NPort x%x "
1853 "with no ndlp. Data: x%x x%x x%x\n",
1854 irsp->un.elsreq64.remoteID,
1855 irsp->ulpStatus, irsp->un.ulpWord[4],
1856 irsp->ulpIoTag);
James Smart488d1462006-03-07 15:02:37 -05001857 goto out;
James Smarted957682007-06-17 19:56:37 -05001858 }
dea31012005-04-17 16:05:31 -05001859
1860 /* Since ndlp can be freed in the disc state machine, note if this node
1861 * is being used during discovery.
1862 */
James Smart2e0fef82007-06-17 19:56:36 -05001863 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001864 disc = (ndlp->nlp_flag & NLP_NPR_2B_DISC);
James Smart488d1462006-03-07 15:02:37 -05001865 ndlp->nlp_flag &= ~NLP_NPR_2B_DISC;
James Smart2e0fef82007-06-17 19:56:36 -05001866 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001867 rc = 0;
1868
1869 /* PLOGI completes to NPort <nlp_DID> */
James Smarte8b62012007-08-02 11:10:09 -04001870 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
1871 "0102 PLOGI completes to NPort x%x "
1872 "Data: x%x x%x x%x x%x x%x\n",
1873 ndlp->nlp_DID, irsp->ulpStatus, irsp->un.ulpWord[4],
1874 irsp->ulpTimeout, disc, vport->num_disc_nodes);
dea31012005-04-17 16:05:31 -05001875 /* Check to see if link went down during discovery */
James Smart2e0fef82007-06-17 19:56:36 -05001876 if (lpfc_els_chk_latt(vport)) {
1877 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001878 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
James Smart2e0fef82007-06-17 19:56:36 -05001879 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001880 goto out;
1881 }
1882
dea31012005-04-17 16:05:31 -05001883 if (irsp->ulpStatus) {
1884 /* Check for retry */
1885 if (lpfc_els_retry(phba, cmdiocb, rspiocb)) {
1886 /* ELS command is being retried */
1887 if (disc) {
James Smart2e0fef82007-06-17 19:56:36 -05001888 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001889 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
James Smart2e0fef82007-06-17 19:56:36 -05001890 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001891 }
1892 goto out;
1893 }
James Smart2a9bf3d2010-06-07 15:24:45 -04001894 /* PLOGI failed Don't print the vport to vport rjts */
1895 if (irsp->ulpStatus != IOSTAT_LS_RJT ||
1896 (((irsp->un.ulpWord[4]) >> 16 != LSRJT_INVALID_CMD) &&
1897 ((irsp->un.ulpWord[4]) >> 16 != LSRJT_UNABLE_TPC)) ||
1898 (phba)->pport->cfg_log_verbose & LOG_ELS)
1899 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
James Smarte40a02c2010-02-26 14:13:54 -05001900 "2753 PLOGI failure DID:%06X Status:x%x/x%x\n",
1901 ndlp->nlp_DID, irsp->ulpStatus,
1902 irsp->un.ulpWord[4]);
dea31012005-04-17 16:05:31 -05001903 /* Do not call DSM for lpfc_els_abort'ed ELS cmds */
James Smarte47c9092008-02-08 18:49:26 -05001904 if (lpfc_error_lost_link(irsp))
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001905 rc = NLP_STE_FREED_NODE;
James Smarte47c9092008-02-08 18:49:26 -05001906 else
James Smart2e0fef82007-06-17 19:56:36 -05001907 rc = lpfc_disc_state_machine(vport, ndlp, cmdiocb,
James Smart92d7f7b2007-06-17 19:56:38 -05001908 NLP_EVT_CMPL_PLOGI);
dea31012005-04-17 16:05:31 -05001909 } else {
1910 /* Good status, call state machine */
James Smart92795652006-07-06 15:50:02 -04001911 prsp = list_entry(((struct lpfc_dmabuf *)
James Smart92d7f7b2007-06-17 19:56:38 -05001912 cmdiocb->context2)->list.next,
1913 struct lpfc_dmabuf, list);
1914 ndlp = lpfc_plogi_confirm_nport(phba, prsp->virt, ndlp);
James Smart2e0fef82007-06-17 19:56:36 -05001915 rc = lpfc_disc_state_machine(vport, ndlp, cmdiocb,
James Smart92d7f7b2007-06-17 19:56:38 -05001916 NLP_EVT_CMPL_PLOGI);
dea31012005-04-17 16:05:31 -05001917 }
1918
James Smart2e0fef82007-06-17 19:56:36 -05001919 if (disc && vport->num_disc_nodes) {
dea31012005-04-17 16:05:31 -05001920 /* Check to see if there are more PLOGIs to be sent */
James Smart2e0fef82007-06-17 19:56:36 -05001921 lpfc_more_plogi(vport);
dea31012005-04-17 16:05:31 -05001922
James Smart2e0fef82007-06-17 19:56:36 -05001923 if (vport->num_disc_nodes == 0) {
1924 spin_lock_irq(shost->host_lock);
1925 vport->fc_flag &= ~FC_NDISC_ACTIVE;
1926 spin_unlock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001927
James Smart2e0fef82007-06-17 19:56:36 -05001928 lpfc_can_disctmo(vport);
James Smart87af33f2007-10-27 13:37:43 -04001929 lpfc_end_rscn(vport);
dea31012005-04-17 16:05:31 -05001930 }
1931 }
1932
1933out:
1934 lpfc_els_free_iocb(phba, cmdiocb);
1935 return;
1936}
1937
James Smarte59058c2008-08-24 21:49:00 -04001938/**
James Smart3621a712009-04-06 18:47:14 -04001939 * lpfc_issue_els_plogi - Issue an plogi iocb command for a vport
James Smarte59058c2008-08-24 21:49:00 -04001940 * @vport: pointer to a host virtual N_Port data structure.
1941 * @did: destination port identifier.
1942 * @retry: number of retries to the command IOCB.
1943 *
1944 * This routine issues a Port Login (PLOGI) command to a remote N_Port
1945 * (with the @did) for a @vport. Before issuing a PLOGI to a remote N_Port,
1946 * the ndlp with the remote N_Port DID must exist on the @vport's ndlp list.
1947 * This routine constructs the proper feilds of the PLOGI IOCB and invokes
1948 * the lpfc_sli_issue_iocb() routine to send out PLOGI ELS command.
1949 *
1950 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
1951 * will be incremented by 1 for holding the ndlp and the reference to ndlp
1952 * will be stored into the context1 field of the IOCB for the completion
1953 * callback function to the PLOGI ELS command.
1954 *
1955 * Return code
1956 * 0 - Successfully issued a plogi for @vport
1957 * 1 - failed to issue a plogi for @vport
1958 **/
dea31012005-04-17 16:05:31 -05001959int
James Smart2e0fef82007-06-17 19:56:36 -05001960lpfc_issue_els_plogi(struct lpfc_vport *vport, uint32_t did, uint8_t retry)
dea31012005-04-17 16:05:31 -05001961{
James Smart2e0fef82007-06-17 19:56:36 -05001962 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05001963 struct serv_parm *sp;
James Smart98c9ea52007-10-27 13:37:33 -04001964 struct lpfc_nodelist *ndlp;
dea31012005-04-17 16:05:31 -05001965 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05001966 uint8_t *pcmd;
1967 uint16_t cmdsize;
James Smart92d7f7b2007-06-17 19:56:38 -05001968 int ret;
dea31012005-04-17 16:05:31 -05001969
James Smart98c9ea52007-10-27 13:37:33 -04001970 ndlp = lpfc_findnode_did(vport, did);
James Smarte47c9092008-02-08 18:49:26 -05001971 if (ndlp && !NLP_CHK_NODE_ACT(ndlp))
1972 ndlp = NULL;
James Smart98c9ea52007-10-27 13:37:33 -04001973
James Smarte47c9092008-02-08 18:49:26 -05001974 /* If ndlp is not NULL, we will bump the reference count on it */
James Smart92d7f7b2007-06-17 19:56:38 -05001975 cmdsize = (sizeof(uint32_t) + sizeof(struct serv_parm));
James Smart98c9ea52007-10-27 13:37:33 -04001976 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp, did,
James Smart2e0fef82007-06-17 19:56:36 -05001977 ELS_CMD_PLOGI);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001978 if (!elsiocb)
1979 return 1;
dea31012005-04-17 16:05:31 -05001980
dea31012005-04-17 16:05:31 -05001981 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
1982
1983 /* For PLOGI request, remainder of payload is service parameters */
1984 *((uint32_t *) (pcmd)) = ELS_CMD_PLOGI;
James Smart92d7f7b2007-06-17 19:56:38 -05001985 pcmd += sizeof(uint32_t);
1986 memcpy(pcmd, &vport->fc_sparam, sizeof(struct serv_parm));
dea31012005-04-17 16:05:31 -05001987 sp = (struct serv_parm *) pcmd;
1988
James Smart5ac6b302010-10-22 11:05:36 -04001989 /*
1990 * If we are a N-port connected to a Fabric, fix-up paramm's so logins
1991 * to device on remote loops work.
1992 */
1993 if ((vport->fc_flag & FC_FABRIC) && !(vport->fc_flag & FC_PUBLIC_LOOP))
1994 sp->cmn.altBbCredit = 1;
1995
dea31012005-04-17 16:05:31 -05001996 if (sp->cmn.fcphLow < FC_PH_4_3)
1997 sp->cmn.fcphLow = FC_PH_4_3;
1998
1999 if (sp->cmn.fcphHigh < FC_PH3)
2000 sp->cmn.fcphHigh = FC_PH3;
2001
James Smart858c9f62007-06-17 19:56:39 -05002002 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2003 "Issue PLOGI: did:x%x",
2004 did, 0, 0);
2005
dea31012005-04-17 16:05:31 -05002006 phba->fc_stat.elsXmitPLOGI++;
2007 elsiocb->iocb_cmpl = lpfc_cmpl_els_plogi;
James Smart3772a992009-05-22 14:50:54 -04002008 ret = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
James Smart92d7f7b2007-06-17 19:56:38 -05002009
2010 if (ret == IOCB_ERROR) {
dea31012005-04-17 16:05:31 -05002011 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002012 return 1;
dea31012005-04-17 16:05:31 -05002013 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002014 return 0;
dea31012005-04-17 16:05:31 -05002015}
2016
James Smarte59058c2008-08-24 21:49:00 -04002017/**
James Smart3621a712009-04-06 18:47:14 -04002018 * lpfc_cmpl_els_prli - Completion callback function for prli
James Smarte59058c2008-08-24 21:49:00 -04002019 * @phba: pointer to lpfc hba data structure.
2020 * @cmdiocb: pointer to lpfc command iocb data structure.
2021 * @rspiocb: pointer to lpfc response iocb data structure.
2022 *
2023 * This routine is the completion callback function for a Process Login
2024 * (PRLI) ELS command. The PRLI response IOCB status is checked for error
2025 * status. If there is error status reported, PRLI retry shall be attempted
2026 * by invoking the lpfc_els_retry() routine. Otherwise, the state
2027 * NLP_EVT_CMPL_PRLI is sent to the Discover State Machine (DSM) for this
2028 * ndlp to mark the PRLI completion.
2029 **/
dea31012005-04-17 16:05:31 -05002030static void
James Smart2e0fef82007-06-17 19:56:36 -05002031lpfc_cmpl_els_prli(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
2032 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05002033{
James Smart2e0fef82007-06-17 19:56:36 -05002034 struct lpfc_vport *vport = cmdiocb->vport;
2035 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05002036 IOCB_t *irsp;
dea31012005-04-17 16:05:31 -05002037 struct lpfc_nodelist *ndlp;
2038
dea31012005-04-17 16:05:31 -05002039 /* we pass cmdiocb to state machine which needs rspiocb as well */
2040 cmdiocb->context_un.rsp_iocb = rspiocb;
2041
2042 irsp = &(rspiocb->iocb);
2043 ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
James Smart2e0fef82007-06-17 19:56:36 -05002044 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002045 ndlp->nlp_flag &= ~NLP_PRLI_SND;
James Smart2e0fef82007-06-17 19:56:36 -05002046 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002047
James Smart858c9f62007-06-17 19:56:39 -05002048 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2049 "PRLI cmpl: status:x%x/x%x did:x%x",
2050 irsp->ulpStatus, irsp->un.ulpWord[4],
2051 ndlp->nlp_DID);
dea31012005-04-17 16:05:31 -05002052 /* PRLI completes to NPort <nlp_DID> */
James Smarte8b62012007-08-02 11:10:09 -04002053 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
2054 "0103 PRLI completes to NPort x%x "
2055 "Data: x%x x%x x%x x%x\n",
2056 ndlp->nlp_DID, irsp->ulpStatus, irsp->un.ulpWord[4],
2057 irsp->ulpTimeout, vport->num_disc_nodes);
dea31012005-04-17 16:05:31 -05002058
James Smart2e0fef82007-06-17 19:56:36 -05002059 vport->fc_prli_sent--;
dea31012005-04-17 16:05:31 -05002060 /* Check to see if link went down during discovery */
James Smart2e0fef82007-06-17 19:56:36 -05002061 if (lpfc_els_chk_latt(vport))
dea31012005-04-17 16:05:31 -05002062 goto out;
2063
2064 if (irsp->ulpStatus) {
2065 /* Check for retry */
2066 if (lpfc_els_retry(phba, cmdiocb, rspiocb)) {
2067 /* ELS command is being retried */
2068 goto out;
2069 }
2070 /* PRLI failed */
James Smarte40a02c2010-02-26 14:13:54 -05002071 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
2072 "2754 PRLI failure DID:%06X Status:x%x/x%x\n",
2073 ndlp->nlp_DID, irsp->ulpStatus,
2074 irsp->un.ulpWord[4]);
dea31012005-04-17 16:05:31 -05002075 /* Do not call DSM for lpfc_els_abort'ed ELS cmds */
James Smarte47c9092008-02-08 18:49:26 -05002076 if (lpfc_error_lost_link(irsp))
dea31012005-04-17 16:05:31 -05002077 goto out;
James Smarte47c9092008-02-08 18:49:26 -05002078 else
James Smart2e0fef82007-06-17 19:56:36 -05002079 lpfc_disc_state_machine(vport, ndlp, cmdiocb,
James Smart92d7f7b2007-06-17 19:56:38 -05002080 NLP_EVT_CMPL_PRLI);
James Smarte47c9092008-02-08 18:49:26 -05002081 } else
dea31012005-04-17 16:05:31 -05002082 /* Good status, call state machine */
James Smart2e0fef82007-06-17 19:56:36 -05002083 lpfc_disc_state_machine(vport, ndlp, cmdiocb,
James Smart92d7f7b2007-06-17 19:56:38 -05002084 NLP_EVT_CMPL_PRLI);
dea31012005-04-17 16:05:31 -05002085out:
2086 lpfc_els_free_iocb(phba, cmdiocb);
2087 return;
2088}
2089
James Smarte59058c2008-08-24 21:49:00 -04002090/**
James Smart3621a712009-04-06 18:47:14 -04002091 * lpfc_issue_els_prli - Issue a prli iocb command for a vport
James Smarte59058c2008-08-24 21:49:00 -04002092 * @vport: pointer to a host virtual N_Port data structure.
2093 * @ndlp: pointer to a node-list data structure.
2094 * @retry: number of retries to the command IOCB.
2095 *
2096 * This routine issues a Process Login (PRLI) ELS command for the
2097 * @vport. The PRLI service parameters are set up in the payload of the
2098 * PRLI Request command and the pointer to lpfc_cmpl_els_prli() routine
2099 * is put to the IOCB completion callback func field before invoking the
2100 * routine lpfc_sli_issue_iocb() to send out PRLI command.
2101 *
2102 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
2103 * will be incremented by 1 for holding the ndlp and the reference to ndlp
2104 * will be stored into the context1 field of the IOCB for the completion
2105 * callback function to the PRLI ELS command.
2106 *
2107 * Return code
2108 * 0 - successfully issued prli iocb command for @vport
2109 * 1 - failed to issue prli iocb command for @vport
2110 **/
dea31012005-04-17 16:05:31 -05002111int
James Smart2e0fef82007-06-17 19:56:36 -05002112lpfc_issue_els_prli(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
dea31012005-04-17 16:05:31 -05002113 uint8_t retry)
2114{
James Smart2e0fef82007-06-17 19:56:36 -05002115 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2116 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05002117 PRLI *npr;
dea31012005-04-17 16:05:31 -05002118 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05002119 uint8_t *pcmd;
2120 uint16_t cmdsize;
2121
James Smart92d7f7b2007-06-17 19:56:38 -05002122 cmdsize = (sizeof(uint32_t) + sizeof(PRLI));
James Smart2e0fef82007-06-17 19:56:36 -05002123 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
2124 ndlp->nlp_DID, ELS_CMD_PRLI);
James Smart488d1462006-03-07 15:02:37 -05002125 if (!elsiocb)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002126 return 1;
dea31012005-04-17 16:05:31 -05002127
dea31012005-04-17 16:05:31 -05002128 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
2129
2130 /* For PRLI request, remainder of payload is service parameters */
James Smart92d7f7b2007-06-17 19:56:38 -05002131 memset(pcmd, 0, (sizeof(PRLI) + sizeof(uint32_t)));
dea31012005-04-17 16:05:31 -05002132 *((uint32_t *) (pcmd)) = ELS_CMD_PRLI;
James Smart92d7f7b2007-06-17 19:56:38 -05002133 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05002134
2135 /* For PRLI, remainder of payload is PRLI parameter page */
2136 npr = (PRLI *) pcmd;
2137 /*
2138 * If our firmware version is 3.20 or later,
2139 * set the following bits for FC-TAPE support.
2140 */
2141 if (phba->vpd.rev.feaLevelHigh >= 0x02) {
2142 npr->ConfmComplAllowed = 1;
2143 npr->Retry = 1;
2144 npr->TaskRetryIdReq = 1;
2145 }
2146 npr->estabImagePair = 1;
2147 npr->readXferRdyDis = 1;
James Smart3cb01c52013-07-15 18:35:04 -04002148 if (vport->cfg_first_burst_size)
2149 npr->writeXferRdyDis = 1;
dea31012005-04-17 16:05:31 -05002150
2151 /* For FCP support */
2152 npr->prliType = PRLI_FCP_TYPE;
2153 npr->initiatorFunc = 1;
2154
James Smart858c9f62007-06-17 19:56:39 -05002155 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2156 "Issue PRLI: did:x%x",
2157 ndlp->nlp_DID, 0, 0);
2158
dea31012005-04-17 16:05:31 -05002159 phba->fc_stat.elsXmitPRLI++;
2160 elsiocb->iocb_cmpl = lpfc_cmpl_els_prli;
James Smart2e0fef82007-06-17 19:56:36 -05002161 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002162 ndlp->nlp_flag |= NLP_PRLI_SND;
James Smart2e0fef82007-06-17 19:56:36 -05002163 spin_unlock_irq(shost->host_lock);
James Smart3772a992009-05-22 14:50:54 -04002164 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) ==
2165 IOCB_ERROR) {
James Smart2e0fef82007-06-17 19:56:36 -05002166 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002167 ndlp->nlp_flag &= ~NLP_PRLI_SND;
James Smart2e0fef82007-06-17 19:56:36 -05002168 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002169 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002170 return 1;
dea31012005-04-17 16:05:31 -05002171 }
James Smart2e0fef82007-06-17 19:56:36 -05002172 vport->fc_prli_sent++;
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002173 return 0;
dea31012005-04-17 16:05:31 -05002174}
2175
James Smarte59058c2008-08-24 21:49:00 -04002176/**
James Smart3621a712009-04-06 18:47:14 -04002177 * lpfc_rscn_disc - Perform rscn discovery for a vport
James Smart90160e02008-08-24 21:49:45 -04002178 * @vport: pointer to a host virtual N_Port data structure.
2179 *
2180 * This routine performs Registration State Change Notification (RSCN)
2181 * discovery for a @vport. If the @vport's node port recovery count is not
2182 * zero, it will invoke the lpfc_els_disc_plogi() to perform PLOGI for all
2183 * the nodes that need recovery. If none of the PLOGI were needed through
2184 * the lpfc_els_disc_plogi() routine, the lpfc_end_rscn() routine shall be
2185 * invoked to check and handle possible more RSCN came in during the period
2186 * of processing the current ones.
2187 **/
2188static void
2189lpfc_rscn_disc(struct lpfc_vport *vport)
2190{
2191 lpfc_can_disctmo(vport);
2192
2193 /* RSCN discovery */
2194 /* go thru NPR nodes and issue ELS PLOGIs */
2195 if (vport->fc_npr_cnt)
2196 if (lpfc_els_disc_plogi(vport))
2197 return;
2198
2199 lpfc_end_rscn(vport);
2200}
2201
2202/**
James Smart3621a712009-04-06 18:47:14 -04002203 * lpfc_adisc_done - Complete the adisc phase of discovery
James Smart90160e02008-08-24 21:49:45 -04002204 * @vport: pointer to lpfc_vport hba data structure that finished all ADISCs.
2205 *
2206 * This function is called when the final ADISC is completed during discovery.
2207 * This function handles clearing link attention or issuing reg_vpi depending
2208 * on whether npiv is enabled. This function also kicks off the PLOGI phase of
2209 * discovery.
2210 * This function is called with no locks held.
2211 **/
2212static void
2213lpfc_adisc_done(struct lpfc_vport *vport)
2214{
2215 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2216 struct lpfc_hba *phba = vport->phba;
2217
2218 /*
2219 * For NPIV, cmpl_reg_vpi will set port_state to READY,
2220 * and continue discovery.
2221 */
2222 if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
James Smart6fb120a2009-05-22 14:52:59 -04002223 !(vport->fc_flag & FC_RSCN_MODE) &&
2224 (phba->sli_rev < LPFC_SLI_REV4)) {
James Smartd454c912014-12-30 12:08:58 -05002225 /* The ADISCs are complete. Doesn't matter if they
2226 * succeeded or failed because the ADISC completion
2227 * routine guarantees to call the state machine and
2228 * the RPI is either unregistered (failed ADISC response)
2229 * or the RPI is still valid and the node is marked
2230 * mapped for a target. The exchanges should be in the
2231 * correct state. This code is specific to SLI3.
2232 */
2233 lpfc_issue_clear_la(phba, vport);
James Smart90160e02008-08-24 21:49:45 -04002234 lpfc_issue_reg_vpi(phba, vport);
2235 return;
2236 }
2237 /*
2238 * For SLI2, we need to set port_state to READY
2239 * and continue discovery.
2240 */
2241 if (vport->port_state < LPFC_VPORT_READY) {
2242 /* If we get here, there is nothing to ADISC */
James Smart85c0f172015-04-07 15:07:12 -04002243 lpfc_issue_clear_la(phba, vport);
James Smart90160e02008-08-24 21:49:45 -04002244 if (!(vport->fc_flag & FC_ABORT_DISCOVERY)) {
2245 vport->num_disc_nodes = 0;
2246 /* go thru NPR list, issue ELS PLOGIs */
2247 if (vport->fc_npr_cnt)
2248 lpfc_els_disc_plogi(vport);
2249 if (!vport->num_disc_nodes) {
2250 spin_lock_irq(shost->host_lock);
2251 vport->fc_flag &= ~FC_NDISC_ACTIVE;
2252 spin_unlock_irq(shost->host_lock);
2253 lpfc_can_disctmo(vport);
2254 lpfc_end_rscn(vport);
2255 }
2256 }
2257 vport->port_state = LPFC_VPORT_READY;
2258 } else
2259 lpfc_rscn_disc(vport);
2260}
2261
2262/**
James Smart3621a712009-04-06 18:47:14 -04002263 * lpfc_more_adisc - Issue more adisc as needed
James Smarte59058c2008-08-24 21:49:00 -04002264 * @vport: pointer to a host virtual N_Port data structure.
2265 *
2266 * This routine determines whether there are more ndlps on a @vport
2267 * node list need to have Address Discover (ADISC) issued. If so, it will
2268 * invoke the lpfc_els_disc_adisc() routine to issue ADISC on the @vport's
2269 * remaining nodes which need to have ADISC sent.
2270 **/
James Smart0ff10d42008-01-11 01:52:36 -05002271void
James Smart2e0fef82007-06-17 19:56:36 -05002272lpfc_more_adisc(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05002273{
James Smart2e0fef82007-06-17 19:56:36 -05002274 if (vport->num_disc_nodes)
2275 vport->num_disc_nodes--;
dea31012005-04-17 16:05:31 -05002276 /* Continue discovery with <num_disc_nodes> ADISCs to go */
James Smarte8b62012007-08-02 11:10:09 -04002277 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
2278 "0210 Continue discovery with %d ADISCs to go "
2279 "Data: x%x x%x x%x\n",
2280 vport->num_disc_nodes, vport->fc_adisc_cnt,
2281 vport->fc_flag, vport->port_state);
dea31012005-04-17 16:05:31 -05002282 /* Check to see if there are more ADISCs to be sent */
James Smart2e0fef82007-06-17 19:56:36 -05002283 if (vport->fc_flag & FC_NLP_MORE) {
2284 lpfc_set_disctmo(vport);
2285 /* go thru NPR nodes and issue any remaining ELS ADISCs */
James Smarteb016562014-09-03 12:58:06 -04002286 lpfc_els_disc_adisc(vport);
dea31012005-04-17 16:05:31 -05002287 }
James Smart90160e02008-08-24 21:49:45 -04002288 if (!vport->num_disc_nodes)
2289 lpfc_adisc_done(vport);
dea31012005-04-17 16:05:31 -05002290 return;
2291}
2292
James Smarte59058c2008-08-24 21:49:00 -04002293/**
James Smart3621a712009-04-06 18:47:14 -04002294 * lpfc_cmpl_els_adisc - Completion callback function for adisc
James Smarte59058c2008-08-24 21:49:00 -04002295 * @phba: pointer to lpfc hba data structure.
2296 * @cmdiocb: pointer to lpfc command iocb data structure.
2297 * @rspiocb: pointer to lpfc response iocb data structure.
2298 *
2299 * This routine is the completion function for issuing the Address Discover
2300 * (ADISC) command. It first checks to see whether link went down during
2301 * the discovery process. If so, the node will be marked as node port
2302 * recovery for issuing discover IOCB by the link attention handler and
2303 * exit. Otherwise, the response status is checked. If error was reported
2304 * in the response status, the ADISC command shall be retried by invoking
2305 * the lpfc_els_retry() routine. Otherwise, if no error was reported in
2306 * the response status, the state machine is invoked to set transition
2307 * with respect to NLP_EVT_CMPL_ADISC event.
2308 **/
dea31012005-04-17 16:05:31 -05002309static void
James Smart2e0fef82007-06-17 19:56:36 -05002310lpfc_cmpl_els_adisc(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
2311 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05002312{
James Smart2e0fef82007-06-17 19:56:36 -05002313 struct lpfc_vport *vport = cmdiocb->vport;
2314 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05002315 IOCB_t *irsp;
dea31012005-04-17 16:05:31 -05002316 struct lpfc_nodelist *ndlp;
James Smart2e0fef82007-06-17 19:56:36 -05002317 int disc;
dea31012005-04-17 16:05:31 -05002318
2319 /* we pass cmdiocb to state machine which needs rspiocb as well */
2320 cmdiocb->context_un.rsp_iocb = rspiocb;
2321
2322 irsp = &(rspiocb->iocb);
2323 ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
dea31012005-04-17 16:05:31 -05002324
James Smart858c9f62007-06-17 19:56:39 -05002325 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2326 "ADISC cmpl: status:x%x/x%x did:x%x",
2327 irsp->ulpStatus, irsp->un.ulpWord[4],
2328 ndlp->nlp_DID);
2329
dea31012005-04-17 16:05:31 -05002330 /* Since ndlp can be freed in the disc state machine, note if this node
2331 * is being used during discovery.
2332 */
James Smart2e0fef82007-06-17 19:56:36 -05002333 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002334 disc = (ndlp->nlp_flag & NLP_NPR_2B_DISC);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002335 ndlp->nlp_flag &= ~(NLP_ADISC_SND | NLP_NPR_2B_DISC);
James Smart2e0fef82007-06-17 19:56:36 -05002336 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002337 /* ADISC completes to NPort <nlp_DID> */
James Smarte8b62012007-08-02 11:10:09 -04002338 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
2339 "0104 ADISC completes to NPort x%x "
2340 "Data: x%x x%x x%x x%x x%x\n",
2341 ndlp->nlp_DID, irsp->ulpStatus, irsp->un.ulpWord[4],
2342 irsp->ulpTimeout, disc, vport->num_disc_nodes);
dea31012005-04-17 16:05:31 -05002343 /* Check to see if link went down during discovery */
James Smart2e0fef82007-06-17 19:56:36 -05002344 if (lpfc_els_chk_latt(vport)) {
2345 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002346 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
James Smart2e0fef82007-06-17 19:56:36 -05002347 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002348 goto out;
2349 }
2350
2351 if (irsp->ulpStatus) {
2352 /* Check for retry */
2353 if (lpfc_els_retry(phba, cmdiocb, rspiocb)) {
2354 /* ELS command is being retried */
2355 if (disc) {
James Smart2e0fef82007-06-17 19:56:36 -05002356 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002357 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
James Smart2e0fef82007-06-17 19:56:36 -05002358 spin_unlock_irq(shost->host_lock);
2359 lpfc_set_disctmo(vport);
dea31012005-04-17 16:05:31 -05002360 }
2361 goto out;
2362 }
2363 /* ADISC failed */
James Smarte40a02c2010-02-26 14:13:54 -05002364 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
2365 "2755 ADISC failure DID:%06X Status:x%x/x%x\n",
2366 ndlp->nlp_DID, irsp->ulpStatus,
2367 irsp->un.ulpWord[4]);
dea31012005-04-17 16:05:31 -05002368 /* Do not call DSM for lpfc_els_abort'ed ELS cmds */
James Smarte47c9092008-02-08 18:49:26 -05002369 if (!lpfc_error_lost_link(irsp))
James Smart2e0fef82007-06-17 19:56:36 -05002370 lpfc_disc_state_machine(vport, ndlp, cmdiocb,
James Smart858c9f62007-06-17 19:56:39 -05002371 NLP_EVT_CMPL_ADISC);
James Smarte47c9092008-02-08 18:49:26 -05002372 } else
dea31012005-04-17 16:05:31 -05002373 /* Good status, call state machine */
James Smart2e0fef82007-06-17 19:56:36 -05002374 lpfc_disc_state_machine(vport, ndlp, cmdiocb,
dea31012005-04-17 16:05:31 -05002375 NLP_EVT_CMPL_ADISC);
dea31012005-04-17 16:05:31 -05002376
James Smart90160e02008-08-24 21:49:45 -04002377 /* Check to see if there are more ADISCs to be sent */
2378 if (disc && vport->num_disc_nodes)
James Smart2e0fef82007-06-17 19:56:36 -05002379 lpfc_more_adisc(vport);
dea31012005-04-17 16:05:31 -05002380out:
2381 lpfc_els_free_iocb(phba, cmdiocb);
2382 return;
2383}
2384
James Smarte59058c2008-08-24 21:49:00 -04002385/**
James Smart3621a712009-04-06 18:47:14 -04002386 * lpfc_issue_els_adisc - Issue an address discover iocb to an node on a vport
James Smarte59058c2008-08-24 21:49:00 -04002387 * @vport: pointer to a virtual N_Port data structure.
2388 * @ndlp: pointer to a node-list data structure.
2389 * @retry: number of retries to the command IOCB.
2390 *
2391 * This routine issues an Address Discover (ADISC) for an @ndlp on a
2392 * @vport. It prepares the payload of the ADISC ELS command, updates the
2393 * and states of the ndlp, and invokes the lpfc_sli_issue_iocb() routine
2394 * to issue the ADISC ELS command.
2395 *
2396 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
2397 * will be incremented by 1 for holding the ndlp and the reference to ndlp
2398 * will be stored into the context1 field of the IOCB for the completion
2399 * callback function to the ADISC ELS command.
2400 *
2401 * Return code
2402 * 0 - successfully issued adisc
2403 * 1 - failed to issue adisc
2404 **/
dea31012005-04-17 16:05:31 -05002405int
James Smart2e0fef82007-06-17 19:56:36 -05002406lpfc_issue_els_adisc(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
dea31012005-04-17 16:05:31 -05002407 uint8_t retry)
2408{
James Smart2e0fef82007-06-17 19:56:36 -05002409 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2410 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05002411 ADISC *ap;
dea31012005-04-17 16:05:31 -05002412 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05002413 uint8_t *pcmd;
2414 uint16_t cmdsize;
2415
James Smart92d7f7b2007-06-17 19:56:38 -05002416 cmdsize = (sizeof(uint32_t) + sizeof(ADISC));
James Smart2e0fef82007-06-17 19:56:36 -05002417 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
2418 ndlp->nlp_DID, ELS_CMD_ADISC);
James Smart488d1462006-03-07 15:02:37 -05002419 if (!elsiocb)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002420 return 1;
dea31012005-04-17 16:05:31 -05002421
dea31012005-04-17 16:05:31 -05002422 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
2423
2424 /* For ADISC request, remainder of payload is service parameters */
2425 *((uint32_t *) (pcmd)) = ELS_CMD_ADISC;
James Smart92d7f7b2007-06-17 19:56:38 -05002426 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05002427
2428 /* Fill in ADISC payload */
2429 ap = (ADISC *) pcmd;
2430 ap->hardAL_PA = phba->fc_pref_ALPA;
James Smart92d7f7b2007-06-17 19:56:38 -05002431 memcpy(&ap->portName, &vport->fc_portname, sizeof(struct lpfc_name));
2432 memcpy(&ap->nodeName, &vport->fc_nodename, sizeof(struct lpfc_name));
James Smart2e0fef82007-06-17 19:56:36 -05002433 ap->DID = be32_to_cpu(vport->fc_myDID);
dea31012005-04-17 16:05:31 -05002434
James Smart858c9f62007-06-17 19:56:39 -05002435 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2436 "Issue ADISC: did:x%x",
2437 ndlp->nlp_DID, 0, 0);
2438
dea31012005-04-17 16:05:31 -05002439 phba->fc_stat.elsXmitADISC++;
2440 elsiocb->iocb_cmpl = lpfc_cmpl_els_adisc;
James Smart2e0fef82007-06-17 19:56:36 -05002441 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002442 ndlp->nlp_flag |= NLP_ADISC_SND;
James Smart2e0fef82007-06-17 19:56:36 -05002443 spin_unlock_irq(shost->host_lock);
James Smart3772a992009-05-22 14:50:54 -04002444 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) ==
2445 IOCB_ERROR) {
James Smart2e0fef82007-06-17 19:56:36 -05002446 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002447 ndlp->nlp_flag &= ~NLP_ADISC_SND;
James Smart2e0fef82007-06-17 19:56:36 -05002448 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002449 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002450 return 1;
dea31012005-04-17 16:05:31 -05002451 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002452 return 0;
dea31012005-04-17 16:05:31 -05002453}
2454
James Smarte59058c2008-08-24 21:49:00 -04002455/**
James Smart3621a712009-04-06 18:47:14 -04002456 * lpfc_cmpl_els_logo - Completion callback function for logo
James Smarte59058c2008-08-24 21:49:00 -04002457 * @phba: pointer to lpfc hba data structure.
2458 * @cmdiocb: pointer to lpfc command iocb data structure.
2459 * @rspiocb: pointer to lpfc response iocb data structure.
2460 *
2461 * This routine is the completion function for issuing the ELS Logout (LOGO)
2462 * command. If no error status was reported from the LOGO response, the
2463 * state machine of the associated ndlp shall be invoked for transition with
2464 * respect to NLP_EVT_CMPL_LOGO event. Otherwise, if error status was reported,
2465 * the lpfc_els_retry() routine will be invoked to retry the LOGO command.
2466 **/
dea31012005-04-17 16:05:31 -05002467static void
James Smart2e0fef82007-06-17 19:56:36 -05002468lpfc_cmpl_els_logo(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
2469 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05002470{
James Smart2e0fef82007-06-17 19:56:36 -05002471 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
2472 struct lpfc_vport *vport = ndlp->vport;
2473 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05002474 IOCB_t *irsp;
James Smart92494142011-02-16 12:39:44 -05002475 struct lpfcMboxq *mbox;
James Smart086a3452012-08-14 14:25:21 -04002476 unsigned long flags;
2477 uint32_t skip_recovery = 0;
dea31012005-04-17 16:05:31 -05002478
dea31012005-04-17 16:05:31 -05002479 /* we pass cmdiocb to state machine which needs rspiocb as well */
2480 cmdiocb->context_un.rsp_iocb = rspiocb;
2481
2482 irsp = &(rspiocb->iocb);
James Smart2e0fef82007-06-17 19:56:36 -05002483 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002484 ndlp->nlp_flag &= ~NLP_LOGO_SND;
James Smart2e0fef82007-06-17 19:56:36 -05002485 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002486
James Smart858c9f62007-06-17 19:56:39 -05002487 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2488 "LOGO cmpl: status:x%x/x%x did:x%x",
2489 irsp->ulpStatus, irsp->un.ulpWord[4],
2490 ndlp->nlp_DID);
James Smart086a3452012-08-14 14:25:21 -04002491
dea31012005-04-17 16:05:31 -05002492 /* LOGO completes to NPort <nlp_DID> */
James Smarte8b62012007-08-02 11:10:09 -04002493 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
2494 "0105 LOGO completes to NPort x%x "
2495 "Data: x%x x%x x%x x%x\n",
2496 ndlp->nlp_DID, irsp->ulpStatus, irsp->un.ulpWord[4],
2497 irsp->ulpTimeout, vport->num_disc_nodes);
dea31012005-04-17 16:05:31 -05002498
James Smart086a3452012-08-14 14:25:21 -04002499 if (lpfc_els_chk_latt(vport)) {
2500 skip_recovery = 1;
2501 goto out;
2502 }
2503
2504 /* Check to see if link went down during discovery */
James Smart92d7f7b2007-06-17 19:56:38 -05002505 if (ndlp->nlp_flag & NLP_TARGET_REMOVE) {
2506 /* NLP_EVT_DEVICE_RM should unregister the RPI
2507 * which should abort all outstanding IOs.
2508 */
2509 lpfc_disc_state_machine(vport, ndlp, cmdiocb,
2510 NLP_EVT_DEVICE_RM);
James Smart086a3452012-08-14 14:25:21 -04002511 skip_recovery = 1;
James Smart92d7f7b2007-06-17 19:56:38 -05002512 goto out;
2513 }
2514
dea31012005-04-17 16:05:31 -05002515 if (irsp->ulpStatus) {
2516 /* Check for retry */
James Smart086a3452012-08-14 14:25:21 -04002517 if (lpfc_els_retry(phba, cmdiocb, rspiocb)) {
dea31012005-04-17 16:05:31 -05002518 /* ELS command is being retried */
James Smart086a3452012-08-14 14:25:21 -04002519 skip_recovery = 1;
dea31012005-04-17 16:05:31 -05002520 goto out;
James Smart086a3452012-08-14 14:25:21 -04002521 }
dea31012005-04-17 16:05:31 -05002522 /* LOGO failed */
James Smarte40a02c2010-02-26 14:13:54 -05002523 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
2524 "2756 LOGO failure DID:%06X Status:x%x/x%x\n",
2525 ndlp->nlp_DID, irsp->ulpStatus,
2526 irsp->un.ulpWord[4]);
dea31012005-04-17 16:05:31 -05002527 /* Do not call DSM for lpfc_els_abort'ed ELS cmds */
James Smart086a3452012-08-14 14:25:21 -04002528 if (lpfc_error_lost_link(irsp)) {
2529 skip_recovery = 1;
dea31012005-04-17 16:05:31 -05002530 goto out;
James Smart086a3452012-08-14 14:25:21 -04002531 }
2532 }
2533
2534 /* Call state machine. This will unregister the rpi if needed. */
2535 lpfc_disc_state_machine(vport, ndlp, cmdiocb, NLP_EVT_CMPL_LOGO);
2536
dea31012005-04-17 16:05:31 -05002537out:
2538 lpfc_els_free_iocb(phba, cmdiocb);
James Smart92494142011-02-16 12:39:44 -05002539 /* If we are in pt2pt mode, we could rcv new S_ID on PLOGI */
2540 if ((vport->fc_flag & FC_PT2PT) &&
2541 !(vport->fc_flag & FC_PT2PT_PLOGI)) {
2542 phba->pport->fc_myDID = 0;
2543 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
2544 if (mbox) {
2545 lpfc_config_link(phba, mbox);
2546 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
2547 mbox->vport = vport;
2548 if (lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT) ==
2549 MBX_NOT_FINISHED) {
2550 mempool_free(mbox, phba->mbox_mem_pool);
James Smart086a3452012-08-14 14:25:21 -04002551 skip_recovery = 1;
James Smart92494142011-02-16 12:39:44 -05002552 }
2553 }
2554 }
James Smart086a3452012-08-14 14:25:21 -04002555
2556 /*
2557 * If the node is a target, the handling attempts to recover the port.
2558 * For any other port type, the rpi is unregistered as an implicit
2559 * LOGO.
2560 */
2561 if ((ndlp->nlp_type & NLP_FCP_TARGET) && (skip_recovery == 0)) {
2562 lpfc_cancel_retry_delay_tmo(vport, ndlp);
2563 spin_lock_irqsave(shost->host_lock, flags);
2564 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
2565 spin_unlock_irqrestore(shost->host_lock, flags);
2566
2567 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
2568 "3187 LOGO completes to NPort x%x: Start "
2569 "Recovery Data: x%x x%x x%x x%x\n",
2570 ndlp->nlp_DID, irsp->ulpStatus,
2571 irsp->un.ulpWord[4], irsp->ulpTimeout,
2572 vport->num_disc_nodes);
2573 lpfc_disc_start(vport);
2574 }
dea31012005-04-17 16:05:31 -05002575 return;
2576}
2577
James Smarte59058c2008-08-24 21:49:00 -04002578/**
James Smart3621a712009-04-06 18:47:14 -04002579 * lpfc_issue_els_logo - Issue a logo to an node on a vport
James Smarte59058c2008-08-24 21:49:00 -04002580 * @vport: pointer to a virtual N_Port data structure.
2581 * @ndlp: pointer to a node-list data structure.
2582 * @retry: number of retries to the command IOCB.
2583 *
2584 * This routine constructs and issues an ELS Logout (LOGO) iocb command
2585 * to a remote node, referred by an @ndlp on a @vport. It constructs the
2586 * payload of the IOCB, properly sets up the @ndlp state, and invokes the
2587 * lpfc_sli_issue_iocb() routine to send out the LOGO ELS command.
2588 *
2589 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
2590 * will be incremented by 1 for holding the ndlp and the reference to ndlp
2591 * will be stored into the context1 field of the IOCB for the completion
2592 * callback function to the LOGO ELS command.
2593 *
2594 * Return code
2595 * 0 - successfully issued logo
2596 * 1 - failed to issue logo
2597 **/
dea31012005-04-17 16:05:31 -05002598int
James Smart2e0fef82007-06-17 19:56:36 -05002599lpfc_issue_els_logo(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
dea31012005-04-17 16:05:31 -05002600 uint8_t retry)
2601{
James Smart2e0fef82007-06-17 19:56:36 -05002602 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2603 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05002604 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
dea31012005-04-17 16:05:31 -05002622 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
2623 *((uint32_t *) (pcmd)) = ELS_CMD_LOGO;
James Smart92d7f7b2007-06-17 19:56:38 -05002624 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05002625
2626 /* Fill in LOGO payload */
James Smart2e0fef82007-06-17 19:56:36 -05002627 *((uint32_t *) (pcmd)) = be32_to_cpu(vport->fc_myDID);
James Smart92d7f7b2007-06-17 19:56:38 -05002628 pcmd += sizeof(uint32_t);
2629 memcpy(pcmd, &vport->fc_portname, sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -05002630
James Smart858c9f62007-06-17 19:56:39 -05002631 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2632 "Issue LOGO: did:x%x",
2633 ndlp->nlp_DID, 0, 0);
2634
James Smart086a3452012-08-14 14:25:21 -04002635 /*
2636 * If we are issuing a LOGO, we may try to recover the remote NPort
2637 * by issuing a PLOGI later. Even though we issue ELS cmds by the
2638 * VPI, if we have a valid RPI, and that RPI gets unreg'ed while
2639 * that ELS command is in-flight, the HBA returns a IOERR_INVALID_RPI
2640 * for that ELS cmd. To avoid this situation, lets get rid of the
2641 * RPI right now, before any ELS cmds are sent.
2642 */
2643 spin_lock_irq(shost->host_lock);
2644 ndlp->nlp_flag |= NLP_ISSUE_LOGO;
2645 spin_unlock_irq(shost->host_lock);
2646 if (lpfc_unreg_rpi(vport, ndlp)) {
2647 lpfc_els_free_iocb(phba, elsiocb);
2648 return 0;
2649 }
2650
dea31012005-04-17 16:05:31 -05002651 phba->fc_stat.elsXmitLOGO++;
2652 elsiocb->iocb_cmpl = lpfc_cmpl_els_logo;
James Smart2e0fef82007-06-17 19:56:36 -05002653 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002654 ndlp->nlp_flag |= NLP_LOGO_SND;
James Smart086a3452012-08-14 14:25:21 -04002655 ndlp->nlp_flag &= ~NLP_ISSUE_LOGO;
James Smart2e0fef82007-06-17 19:56:36 -05002656 spin_unlock_irq(shost->host_lock);
James Smart3772a992009-05-22 14:50:54 -04002657 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
James Smart92d7f7b2007-06-17 19:56:38 -05002658
2659 if (rc == IOCB_ERROR) {
James Smart2e0fef82007-06-17 19:56:36 -05002660 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002661 ndlp->nlp_flag &= ~NLP_LOGO_SND;
James Smart2e0fef82007-06-17 19:56:36 -05002662 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002663 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002664 return 1;
dea31012005-04-17 16:05:31 -05002665 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002666 return 0;
dea31012005-04-17 16:05:31 -05002667}
2668
James Smarte59058c2008-08-24 21:49:00 -04002669/**
James Smart3621a712009-04-06 18:47:14 -04002670 * lpfc_cmpl_els_cmd - Completion callback function for generic els command
James Smarte59058c2008-08-24 21:49:00 -04002671 * @phba: pointer to lpfc hba data structure.
2672 * @cmdiocb: pointer to lpfc command iocb data structure.
2673 * @rspiocb: pointer to lpfc response iocb data structure.
2674 *
2675 * This routine is a generic completion callback function for ELS commands.
2676 * Specifically, it is the callback function which does not need to perform
2677 * any command specific operations. It is currently used by the ELS command
2678 * issuing routines for the ELS State Change Request (SCR),
2679 * lpfc_issue_els_scr(), and the ELS Fibre Channel Address Resolution
2680 * Protocol Response (FARPR) routine, lpfc_issue_els_farpr(). Other than
2681 * certain debug loggings, this callback function simply invokes the
2682 * lpfc_els_chk_latt() routine to check whether link went down during the
2683 * discovery process.
2684 **/
dea31012005-04-17 16:05:31 -05002685static void
James Smart2e0fef82007-06-17 19:56:36 -05002686lpfc_cmpl_els_cmd(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
2687 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05002688{
James Smart2e0fef82007-06-17 19:56:36 -05002689 struct lpfc_vport *vport = cmdiocb->vport;
dea31012005-04-17 16:05:31 -05002690 IOCB_t *irsp;
2691
2692 irsp = &rspiocb->iocb;
2693
James Smart858c9f62007-06-17 19:56:39 -05002694 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2695 "ELS cmd cmpl: status:x%x/x%x did:x%x",
2696 irsp->ulpStatus, irsp->un.ulpWord[4],
2697 irsp->un.elsreq64.remoteID);
dea31012005-04-17 16:05:31 -05002698 /* ELS cmd tag <ulpIoTag> completes */
James Smarte8b62012007-08-02 11:10:09 -04002699 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
2700 "0106 ELS cmd tag x%x completes Data: x%x x%x x%x\n",
2701 irsp->ulpIoTag, irsp->ulpStatus,
2702 irsp->un.ulpWord[4], irsp->ulpTimeout);
dea31012005-04-17 16:05:31 -05002703 /* Check to see if link went down during discovery */
James Smart2e0fef82007-06-17 19:56:36 -05002704 lpfc_els_chk_latt(vport);
dea31012005-04-17 16:05:31 -05002705 lpfc_els_free_iocb(phba, cmdiocb);
2706 return;
2707}
2708
James Smarte59058c2008-08-24 21:49:00 -04002709/**
James Smart3621a712009-04-06 18:47:14 -04002710 * lpfc_issue_els_scr - Issue a scr to an node on a vport
James Smarte59058c2008-08-24 21:49:00 -04002711 * @vport: pointer to a host virtual N_Port data structure.
2712 * @nportid: N_Port identifier to the remote node.
2713 * @retry: number of retries to the command IOCB.
2714 *
2715 * This routine issues a State Change Request (SCR) to a fabric node
2716 * on a @vport. The remote node @nportid is passed into the function. It
2717 * first search the @vport node list to find the matching ndlp. If no such
2718 * ndlp is found, a new ndlp shall be created for this (SCR) purpose. An
2719 * IOCB is allocated, payload prepared, and the lpfc_sli_issue_iocb()
2720 * routine is invoked to send the SCR IOCB.
2721 *
2722 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
2723 * will be incremented by 1 for holding the ndlp and the reference to ndlp
2724 * will be stored into the context1 field of the IOCB for the completion
2725 * callback function to the SCR ELS command.
2726 *
2727 * Return code
2728 * 0 - Successfully issued scr command
2729 * 1 - Failed to issue scr command
2730 **/
dea31012005-04-17 16:05:31 -05002731int
James Smart2e0fef82007-06-17 19:56:36 -05002732lpfc_issue_els_scr(struct lpfc_vport *vport, uint32_t nportid, uint8_t retry)
dea31012005-04-17 16:05:31 -05002733{
James Smart2e0fef82007-06-17 19:56:36 -05002734 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05002735 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05002736 uint8_t *pcmd;
2737 uint16_t cmdsize;
2738 struct lpfc_nodelist *ndlp;
2739
James Smart92d7f7b2007-06-17 19:56:38 -05002740 cmdsize = (sizeof(uint32_t) + sizeof(SCR));
dea31012005-04-17 16:05:31 -05002741
James Smarte47c9092008-02-08 18:49:26 -05002742 ndlp = lpfc_findnode_did(vport, nportid);
2743 if (!ndlp) {
2744 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
2745 if (!ndlp)
2746 return 1;
2747 lpfc_nlp_init(vport, ndlp, nportid);
2748 lpfc_enqueue_node(vport, ndlp);
2749 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
2750 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
2751 if (!ndlp)
2752 return 1;
2753 }
dea31012005-04-17 16:05:31 -05002754
James Smart2e0fef82007-06-17 19:56:36 -05002755 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
2756 ndlp->nlp_DID, ELS_CMD_SCR);
2757
James Smart488d1462006-03-07 15:02:37 -05002758 if (!elsiocb) {
James Smartfa4066b2008-01-11 01:53:27 -05002759 /* This will trigger the release of the node just
2760 * allocated
2761 */
James Smart329f9bc2007-04-25 09:53:01 -04002762 lpfc_nlp_put(ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002763 return 1;
dea31012005-04-17 16:05:31 -05002764 }
2765
dea31012005-04-17 16:05:31 -05002766 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
2767
2768 *((uint32_t *) (pcmd)) = ELS_CMD_SCR;
James Smart92d7f7b2007-06-17 19:56:38 -05002769 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05002770
2771 /* For SCR, remainder of payload is SCR parameter page */
James Smart92d7f7b2007-06-17 19:56:38 -05002772 memset(pcmd, 0, sizeof(SCR));
dea31012005-04-17 16:05:31 -05002773 ((SCR *) pcmd)->Function = SCR_FUNC_FULL;
2774
James Smart858c9f62007-06-17 19:56:39 -05002775 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2776 "Issue SCR: did:x%x",
2777 ndlp->nlp_DID, 0, 0);
2778
dea31012005-04-17 16:05:31 -05002779 phba->fc_stat.elsXmitSCR++;
2780 elsiocb->iocb_cmpl = lpfc_cmpl_els_cmd;
James Smart3772a992009-05-22 14:50:54 -04002781 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) ==
2782 IOCB_ERROR) {
James Smartfa4066b2008-01-11 01:53:27 -05002783 /* The additional lpfc_nlp_put will cause the following
2784 * lpfc_els_free_iocb routine to trigger the rlease of
2785 * the node.
2786 */
James Smart329f9bc2007-04-25 09:53:01 -04002787 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05002788 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002789 return 1;
dea31012005-04-17 16:05:31 -05002790 }
James Smartfa4066b2008-01-11 01:53:27 -05002791 /* This will cause the callback-function lpfc_cmpl_els_cmd to
2792 * trigger the release of node.
2793 */
James Smartcff261f2013-12-17 20:29:47 -05002794
James Smart329f9bc2007-04-25 09:53:01 -04002795 lpfc_nlp_put(ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002796 return 0;
dea31012005-04-17 16:05:31 -05002797}
2798
James Smarte59058c2008-08-24 21:49:00 -04002799/**
James Smart3621a712009-04-06 18:47:14 -04002800 * lpfc_issue_els_farpr - Issue a farp to an node on a vport
James Smarte59058c2008-08-24 21:49:00 -04002801 * @vport: pointer to a host virtual N_Port data structure.
2802 * @nportid: N_Port identifier to the remote node.
2803 * @retry: number of retries to the command IOCB.
2804 *
2805 * This routine issues a Fibre Channel Address Resolution Response
2806 * (FARPR) to a node on a vport. The remote node N_Port identifier (@nportid)
2807 * is passed into the function. It first search the @vport node list to find
2808 * the matching ndlp. If no such ndlp is found, a new ndlp shall be created
2809 * for this (FARPR) purpose. An IOCB is allocated, payload prepared, and the
2810 * lpfc_sli_issue_iocb() routine is invoked to send the FARPR ELS command.
2811 *
2812 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
2813 * will be incremented by 1 for holding the ndlp and the reference to ndlp
2814 * will be stored into the context1 field of the IOCB for the completion
2815 * callback function to the PARPR ELS command.
2816 *
2817 * Return code
2818 * 0 - Successfully issued farpr command
2819 * 1 - Failed to issue farpr command
2820 **/
dea31012005-04-17 16:05:31 -05002821static int
James Smart2e0fef82007-06-17 19:56:36 -05002822lpfc_issue_els_farpr(struct lpfc_vport *vport, uint32_t nportid, uint8_t retry)
dea31012005-04-17 16:05:31 -05002823{
James Smart2e0fef82007-06-17 19:56:36 -05002824 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05002825 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05002826 FARP *fp;
2827 uint8_t *pcmd;
2828 uint32_t *lp;
2829 uint16_t cmdsize;
2830 struct lpfc_nodelist *ondlp;
2831 struct lpfc_nodelist *ndlp;
2832
James Smart92d7f7b2007-06-17 19:56:38 -05002833 cmdsize = (sizeof(uint32_t) + sizeof(FARP));
dea31012005-04-17 16:05:31 -05002834
James Smarte47c9092008-02-08 18:49:26 -05002835 ndlp = lpfc_findnode_did(vport, nportid);
2836 if (!ndlp) {
2837 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
2838 if (!ndlp)
2839 return 1;
2840 lpfc_nlp_init(vport, ndlp, nportid);
2841 lpfc_enqueue_node(vport, ndlp);
2842 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
2843 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
2844 if (!ndlp)
2845 return 1;
2846 }
James Smart2e0fef82007-06-17 19:56:36 -05002847
2848 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
2849 ndlp->nlp_DID, ELS_CMD_RNID);
James Smart488d1462006-03-07 15:02:37 -05002850 if (!elsiocb) {
James Smartfa4066b2008-01-11 01:53:27 -05002851 /* This will trigger the release of the node just
2852 * allocated
2853 */
James Smart329f9bc2007-04-25 09:53:01 -04002854 lpfc_nlp_put(ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002855 return 1;
dea31012005-04-17 16:05:31 -05002856 }
2857
dea31012005-04-17 16:05:31 -05002858 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
2859
2860 *((uint32_t *) (pcmd)) = ELS_CMD_FARPR;
James Smart92d7f7b2007-06-17 19:56:38 -05002861 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05002862
2863 /* Fill in FARPR payload */
2864 fp = (FARP *) (pcmd);
James Smart92d7f7b2007-06-17 19:56:38 -05002865 memset(fp, 0, sizeof(FARP));
dea31012005-04-17 16:05:31 -05002866 lp = (uint32_t *) pcmd;
2867 *lp++ = be32_to_cpu(nportid);
James Smart2e0fef82007-06-17 19:56:36 -05002868 *lp++ = be32_to_cpu(vport->fc_myDID);
dea31012005-04-17 16:05:31 -05002869 fp->Rflags = 0;
2870 fp->Mflags = (FARP_MATCH_PORT | FARP_MATCH_NODE);
2871
James Smart92d7f7b2007-06-17 19:56:38 -05002872 memcpy(&fp->RportName, &vport->fc_portname, sizeof(struct lpfc_name));
2873 memcpy(&fp->RnodeName, &vport->fc_nodename, sizeof(struct lpfc_name));
James Smart2e0fef82007-06-17 19:56:36 -05002874 ondlp = lpfc_findnode_did(vport, nportid);
James Smarte47c9092008-02-08 18:49:26 -05002875 if (ondlp && NLP_CHK_NODE_ACT(ondlp)) {
dea31012005-04-17 16:05:31 -05002876 memcpy(&fp->OportName, &ondlp->nlp_portname,
James Smart92d7f7b2007-06-17 19:56:38 -05002877 sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -05002878 memcpy(&fp->OnodeName, &ondlp->nlp_nodename,
James Smart92d7f7b2007-06-17 19:56:38 -05002879 sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -05002880 }
2881
James Smart858c9f62007-06-17 19:56:39 -05002882 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2883 "Issue FARPR: did:x%x",
2884 ndlp->nlp_DID, 0, 0);
2885
dea31012005-04-17 16:05:31 -05002886 phba->fc_stat.elsXmitFARPR++;
2887 elsiocb->iocb_cmpl = lpfc_cmpl_els_cmd;
James Smart3772a992009-05-22 14:50:54 -04002888 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) ==
2889 IOCB_ERROR) {
James Smartfa4066b2008-01-11 01:53:27 -05002890 /* The additional lpfc_nlp_put will cause the following
2891 * lpfc_els_free_iocb routine to trigger the release of
2892 * the node.
2893 */
James Smart329f9bc2007-04-25 09:53:01 -04002894 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05002895 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002896 return 1;
dea31012005-04-17 16:05:31 -05002897 }
James Smartfa4066b2008-01-11 01:53:27 -05002898 /* This will cause the callback-function lpfc_cmpl_els_cmd to
2899 * trigger the release of the node.
2900 */
James Smart329f9bc2007-04-25 09:53:01 -04002901 lpfc_nlp_put(ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002902 return 0;
dea31012005-04-17 16:05:31 -05002903}
2904
James Smarte59058c2008-08-24 21:49:00 -04002905/**
James Smart3621a712009-04-06 18:47:14 -04002906 * lpfc_cancel_retry_delay_tmo - Cancel the timer with delayed iocb-cmd retry
James Smarte59058c2008-08-24 21:49:00 -04002907 * @vport: pointer to a host virtual N_Port data structure.
2908 * @nlp: pointer to a node-list data structure.
2909 *
2910 * This routine cancels the timer with a delayed IOCB-command retry for
2911 * a @vport's @ndlp. It stops the timer for the delayed function retrial and
2912 * removes the ELS retry event if it presents. In addition, if the
2913 * NLP_NPR_2B_DISC bit is set in the @nlp's nlp_flag bitmap, ADISC IOCB
2914 * commands are sent for the @vport's nodes that require issuing discovery
2915 * ADISC.
2916 **/
dea31012005-04-17 16:05:31 -05002917void
James Smart2e0fef82007-06-17 19:56:36 -05002918lpfc_cancel_retry_delay_tmo(struct lpfc_vport *vport, struct lpfc_nodelist *nlp)
James Smartfdcebe22006-03-07 15:04:01 -05002919{
James Smart2e0fef82007-06-17 19:56:36 -05002920 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smarte47c9092008-02-08 18:49:26 -05002921 struct lpfc_work_evt *evtp;
James Smart2e0fef82007-06-17 19:56:36 -05002922
James Smart0d2b6b82008-06-14 22:52:47 -04002923 if (!(nlp->nlp_flag & NLP_DELAY_TMO))
2924 return;
James Smart2e0fef82007-06-17 19:56:36 -05002925 spin_lock_irq(shost->host_lock);
James Smartfdcebe22006-03-07 15:04:01 -05002926 nlp->nlp_flag &= ~NLP_DELAY_TMO;
James Smart2e0fef82007-06-17 19:56:36 -05002927 spin_unlock_irq(shost->host_lock);
James Smartfdcebe22006-03-07 15:04:01 -05002928 del_timer_sync(&nlp->nlp_delayfunc);
2929 nlp->nlp_last_elscmd = 0;
James Smarte47c9092008-02-08 18:49:26 -05002930 if (!list_empty(&nlp->els_retry_evt.evt_listp)) {
James Smartfdcebe22006-03-07 15:04:01 -05002931 list_del_init(&nlp->els_retry_evt.evt_listp);
James Smarte47c9092008-02-08 18:49:26 -05002932 /* Decrement nlp reference count held for the delayed retry */
2933 evtp = &nlp->els_retry_evt;
2934 lpfc_nlp_put((struct lpfc_nodelist *)evtp->evt_arg1);
2935 }
James Smartfdcebe22006-03-07 15:04:01 -05002936 if (nlp->nlp_flag & NLP_NPR_2B_DISC) {
James Smart2e0fef82007-06-17 19:56:36 -05002937 spin_lock_irq(shost->host_lock);
James Smartfdcebe22006-03-07 15:04:01 -05002938 nlp->nlp_flag &= ~NLP_NPR_2B_DISC;
James Smart2e0fef82007-06-17 19:56:36 -05002939 spin_unlock_irq(shost->host_lock);
2940 if (vport->num_disc_nodes) {
James Smart0d2b6b82008-06-14 22:52:47 -04002941 if (vport->port_state < LPFC_VPORT_READY) {
2942 /* Check if there are more ADISCs to be sent */
2943 lpfc_more_adisc(vport);
James Smart0d2b6b82008-06-14 22:52:47 -04002944 } else {
2945 /* Check if there are more PLOGIs to be sent */
2946 lpfc_more_plogi(vport);
James Smart90160e02008-08-24 21:49:45 -04002947 if (vport->num_disc_nodes == 0) {
2948 spin_lock_irq(shost->host_lock);
2949 vport->fc_flag &= ~FC_NDISC_ACTIVE;
2950 spin_unlock_irq(shost->host_lock);
2951 lpfc_can_disctmo(vport);
2952 lpfc_end_rscn(vport);
2953 }
James Smartfdcebe22006-03-07 15:04:01 -05002954 }
2955 }
2956 }
2957 return;
2958}
2959
James Smarte59058c2008-08-24 21:49:00 -04002960/**
James Smart3621a712009-04-06 18:47:14 -04002961 * lpfc_els_retry_delay - Timer function with a ndlp delayed function timer
James Smarte59058c2008-08-24 21:49:00 -04002962 * @ptr: holder for the pointer to the timer function associated data (ndlp).
2963 *
2964 * This routine is invoked by the ndlp delayed-function timer to check
2965 * whether there is any pending ELS retry event(s) with the node. If not, it
2966 * simply returns. Otherwise, if there is at least one ELS delayed event, it
2967 * adds the delayed events to the HBA work list and invokes the
2968 * lpfc_worker_wake_up() routine to wake up worker thread to process the
2969 * event. Note that lpfc_nlp_get() is called before posting the event to
2970 * the work list to hold reference count of ndlp so that it guarantees the
2971 * reference to ndlp will still be available when the worker thread gets
2972 * to the event associated with the ndlp.
2973 **/
James Smartfdcebe22006-03-07 15:04:01 -05002974void
dea31012005-04-17 16:05:31 -05002975lpfc_els_retry_delay(unsigned long ptr)
2976{
James Smart2e0fef82007-06-17 19:56:36 -05002977 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) ptr;
2978 struct lpfc_vport *vport = ndlp->vport;
James Smart2e0fef82007-06-17 19:56:36 -05002979 struct lpfc_hba *phba = vport->phba;
James Smart92d7f7b2007-06-17 19:56:38 -05002980 unsigned long flags;
James Smart2e0fef82007-06-17 19:56:36 -05002981 struct lpfc_work_evt *evtp = &ndlp->els_retry_evt;
dea31012005-04-17 16:05:31 -05002982
James Smart92d7f7b2007-06-17 19:56:38 -05002983 spin_lock_irqsave(&phba->hbalock, flags);
dea31012005-04-17 16:05:31 -05002984 if (!list_empty(&evtp->evt_listp)) {
James Smart92d7f7b2007-06-17 19:56:38 -05002985 spin_unlock_irqrestore(&phba->hbalock, flags);
dea31012005-04-17 16:05:31 -05002986 return;
2987 }
2988
James Smartfa4066b2008-01-11 01:53:27 -05002989 /* We need to hold the node by incrementing the reference
2990 * count until the queued work is done
2991 */
2992 evtp->evt_arg1 = lpfc_nlp_get(ndlp);
James Smart5e9d9b82008-06-14 22:52:53 -04002993 if (evtp->evt_arg1) {
2994 evtp->evt = LPFC_EVT_ELS_RETRY;
2995 list_add_tail(&evtp->evt_listp, &phba->work_list);
James Smart92d7f7b2007-06-17 19:56:38 -05002996 lpfc_worker_wake_up(phba);
James Smart5e9d9b82008-06-14 22:52:53 -04002997 }
James Smart92d7f7b2007-06-17 19:56:38 -05002998 spin_unlock_irqrestore(&phba->hbalock, flags);
dea31012005-04-17 16:05:31 -05002999 return;
3000}
3001
James Smarte59058c2008-08-24 21:49:00 -04003002/**
James Smart3621a712009-04-06 18:47:14 -04003003 * lpfc_els_retry_delay_handler - Work thread handler for ndlp delayed function
James Smarte59058c2008-08-24 21:49:00 -04003004 * @ndlp: pointer to a node-list data structure.
3005 *
3006 * This routine is the worker-thread handler for processing the @ndlp delayed
3007 * event(s), posted by the lpfc_els_retry_delay() routine. It simply retrieves
3008 * the last ELS command from the associated ndlp and invokes the proper ELS
3009 * function according to the delayed ELS command to retry the command.
3010 **/
dea31012005-04-17 16:05:31 -05003011void
3012lpfc_els_retry_delay_handler(struct lpfc_nodelist *ndlp)
3013{
James Smart2e0fef82007-06-17 19:56:36 -05003014 struct lpfc_vport *vport = ndlp->vport;
3015 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smarteb016562014-09-03 12:58:06 -04003016 uint32_t cmd, retry;
dea31012005-04-17 16:05:31 -05003017
James Smart2e0fef82007-06-17 19:56:36 -05003018 spin_lock_irq(shost->host_lock);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003019 cmd = ndlp->nlp_last_elscmd;
3020 ndlp->nlp_last_elscmd = 0;
dea31012005-04-17 16:05:31 -05003021
3022 if (!(ndlp->nlp_flag & NLP_DELAY_TMO)) {
James Smart2e0fef82007-06-17 19:56:36 -05003023 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05003024 return;
3025 }
3026
3027 ndlp->nlp_flag &= ~NLP_DELAY_TMO;
James Smart2e0fef82007-06-17 19:56:36 -05003028 spin_unlock_irq(shost->host_lock);
James Smart1a169682006-03-07 15:04:06 -05003029 /*
3030 * If a discovery event readded nlp_delayfunc after timer
3031 * firing and before processing the timer, cancel the
3032 * nlp_delayfunc.
3033 */
3034 del_timer_sync(&ndlp->nlp_delayfunc);
dea31012005-04-17 16:05:31 -05003035 retry = ndlp->nlp_retry;
James Smart4d9ab992009-10-02 15:16:39 -04003036 ndlp->nlp_retry = 0;
dea31012005-04-17 16:05:31 -05003037
3038 switch (cmd) {
3039 case ELS_CMD_FLOGI:
James Smart2e0fef82007-06-17 19:56:36 -05003040 lpfc_issue_els_flogi(vport, ndlp, retry);
dea31012005-04-17 16:05:31 -05003041 break;
3042 case ELS_CMD_PLOGI:
James Smart2e0fef82007-06-17 19:56:36 -05003043 if (!lpfc_issue_els_plogi(vport, ndlp->nlp_DID, retry)) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003044 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05003045 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
Jamie Wellnitz6ad42532006-02-28 19:25:16 -05003046 }
dea31012005-04-17 16:05:31 -05003047 break;
3048 case ELS_CMD_ADISC:
James Smart2e0fef82007-06-17 19:56:36 -05003049 if (!lpfc_issue_els_adisc(vport, ndlp, retry)) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003050 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05003051 lpfc_nlp_set_state(vport, ndlp, NLP_STE_ADISC_ISSUE);
Jamie Wellnitz6ad42532006-02-28 19:25:16 -05003052 }
dea31012005-04-17 16:05:31 -05003053 break;
3054 case ELS_CMD_PRLI:
James Smart2e0fef82007-06-17 19:56:36 -05003055 if (!lpfc_issue_els_prli(vport, ndlp, retry)) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003056 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05003057 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PRLI_ISSUE);
Jamie Wellnitz6ad42532006-02-28 19:25:16 -05003058 }
dea31012005-04-17 16:05:31 -05003059 break;
3060 case ELS_CMD_LOGO:
James Smart2e0fef82007-06-17 19:56:36 -05003061 if (!lpfc_issue_els_logo(vport, ndlp, retry)) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003062 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart086a3452012-08-14 14:25:21 -04003063 lpfc_nlp_set_state(vport, ndlp, NLP_STE_LOGO_ISSUE);
Jamie Wellnitz6ad42532006-02-28 19:25:16 -05003064 }
dea31012005-04-17 16:05:31 -05003065 break;
James Smart92d7f7b2007-06-17 19:56:38 -05003066 case ELS_CMD_FDISC:
James Smartfedd3b72011-02-16 12:39:24 -05003067 if (!(vport->fc_flag & FC_VPORT_NEEDS_INIT_VPI))
3068 lpfc_issue_els_fdisc(vport, ndlp, retry);
James Smart92d7f7b2007-06-17 19:56:38 -05003069 break;
dea31012005-04-17 16:05:31 -05003070 }
3071 return;
3072}
3073
James Smarte59058c2008-08-24 21:49:00 -04003074/**
James Smart3621a712009-04-06 18:47:14 -04003075 * lpfc_els_retry - Make retry decision on an els command iocb
James Smarte59058c2008-08-24 21:49:00 -04003076 * @phba: pointer to lpfc hba data structure.
3077 * @cmdiocb: pointer to lpfc command iocb data structure.
3078 * @rspiocb: pointer to lpfc response iocb data structure.
3079 *
3080 * This routine makes a retry decision on an ELS command IOCB, which has
3081 * failed. The following ELS IOCBs use this function for retrying the command
3082 * when previously issued command responsed with error status: FLOGI, PLOGI,
3083 * PRLI, ADISC, LOGO, and FDISC. Based on the ELS command type and the
3084 * returned error status, it makes the decision whether a retry shall be
3085 * issued for the command, and whether a retry shall be made immediately or
3086 * delayed. In the former case, the corresponding ELS command issuing-function
3087 * is called to retry the command. In the later case, the ELS command shall
3088 * be posted to the ndlp delayed event and delayed function timer set to the
3089 * ndlp for the delayed command issusing.
3090 *
3091 * Return code
3092 * 0 - No retry of els command is made
3093 * 1 - Immediate or delayed retry of els command is made
3094 **/
dea31012005-04-17 16:05:31 -05003095static int
James Smart2e0fef82007-06-17 19:56:36 -05003096lpfc_els_retry(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
3097 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05003098{
James Smart2e0fef82007-06-17 19:56:36 -05003099 struct lpfc_vport *vport = cmdiocb->vport;
3100 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
3101 IOCB_t *irsp = &rspiocb->iocb;
3102 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
3103 struct lpfc_dmabuf *pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
dea31012005-04-17 16:05:31 -05003104 uint32_t *elscmd;
3105 struct ls_rjt stat;
James Smart2e0fef82007-06-17 19:56:36 -05003106 int retry = 0, maxretry = lpfc_max_els_tries, delay = 0;
James Smart98c9ea52007-10-27 13:37:33 -04003107 int logerr = 0;
James Smart2e0fef82007-06-17 19:56:36 -05003108 uint32_t cmd = 0;
James Smart488d1462006-03-07 15:02:37 -05003109 uint32_t did;
dea31012005-04-17 16:05:31 -05003110
James Smart488d1462006-03-07 15:02:37 -05003111
dea31012005-04-17 16:05:31 -05003112 /* Note: context2 may be 0 for internal driver abort
3113 * of delays ELS command.
3114 */
3115
3116 if (pcmd && pcmd->virt) {
3117 elscmd = (uint32_t *) (pcmd->virt);
3118 cmd = *elscmd++;
3119 }
3120
James Smarte47c9092008-02-08 18:49:26 -05003121 if (ndlp && NLP_CHK_NODE_ACT(ndlp))
James Smart488d1462006-03-07 15:02:37 -05003122 did = ndlp->nlp_DID;
3123 else {
3124 /* We should only hit this case for retrying PLOGI */
3125 did = irsp->un.elsreq64.remoteID;
James Smart2e0fef82007-06-17 19:56:36 -05003126 ndlp = lpfc_findnode_did(vport, did);
James Smarte47c9092008-02-08 18:49:26 -05003127 if ((!ndlp || !NLP_CHK_NODE_ACT(ndlp))
3128 && (cmd != ELS_CMD_PLOGI))
James Smart488d1462006-03-07 15:02:37 -05003129 return 1;
3130 }
3131
James Smart858c9f62007-06-17 19:56:39 -05003132 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
3133 "Retry ELS: wd7:x%x wd4:x%x did:x%x",
3134 *(((uint32_t *) irsp) + 7), irsp->un.ulpWord[4], ndlp->nlp_DID);
3135
dea31012005-04-17 16:05:31 -05003136 switch (irsp->ulpStatus) {
3137 case IOSTAT_FCP_RSP_ERROR:
dea31012005-04-17 16:05:31 -05003138 break;
James Smart1151e3e2011-02-16 12:39:35 -05003139 case IOSTAT_REMOTE_STOP:
3140 if (phba->sli_rev == LPFC_SLI_REV4) {
3141 /* This IO was aborted by the target, we don't
3142 * know the rxid and because we did not send the
3143 * ABTS we cannot generate and RRQ.
3144 */
3145 lpfc_set_rrq_active(phba, ndlp,
James Smartee0f4fe2012-05-09 21:19:14 -04003146 cmdiocb->sli4_lxritag, 0, 0);
James Smart1151e3e2011-02-16 12:39:35 -05003147 }
3148 break;
dea31012005-04-17 16:05:31 -05003149 case IOSTAT_LOCAL_REJECT:
James Smarte3d2b802012-08-14 14:25:43 -04003150 switch ((irsp->un.ulpWord[4] & IOERR_PARAM_MASK)) {
dea31012005-04-17 16:05:31 -05003151 case IOERR_LOOP_OPEN_FAILURE:
James Smarteaf15d52008-12-04 22:39:29 -05003152 if (cmd == ELS_CMD_FLOGI) {
3153 if (PCI_DEVICE_ID_HORNET ==
3154 phba->pcidev->device) {
James Smart76a95d72010-11-20 23:11:48 -05003155 phba->fc_topology = LPFC_TOPOLOGY_LOOP;
James Smarteaf15d52008-12-04 22:39:29 -05003156 phba->pport->fc_myDID = 0;
3157 phba->alpa_map[0] = 0;
3158 phba->alpa_map[1] = 0;
3159 }
3160 }
James Smart2e0fef82007-06-17 19:56:36 -05003161 if (cmd == ELS_CMD_PLOGI && cmdiocb->retry == 0)
James Smart92d7f7b2007-06-17 19:56:38 -05003162 delay = 1000;
dea31012005-04-17 16:05:31 -05003163 retry = 1;
3164 break;
3165
James Smart92d7f7b2007-06-17 19:56:38 -05003166 case IOERR_ILLEGAL_COMMAND:
James Smart7f5f3d02008-02-08 18:50:14 -05003167 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
3168 "0124 Retry illegal cmd x%x "
3169 "retry:x%x delay:x%x\n",
3170 cmd, cmdiocb->retry, delay);
3171 retry = 1;
3172 /* All command's retry policy */
3173 maxretry = 8;
3174 if (cmdiocb->retry > 2)
3175 delay = 1000;
James Smart92d7f7b2007-06-17 19:56:38 -05003176 break;
3177
dea31012005-04-17 16:05:31 -05003178 case IOERR_NO_RESOURCES:
James Smart98c9ea52007-10-27 13:37:33 -04003179 logerr = 1; /* HBA out of resources */
James Smart858c9f62007-06-17 19:56:39 -05003180 retry = 1;
3181 if (cmdiocb->retry > 100)
3182 delay = 100;
3183 maxretry = 250;
3184 break;
3185
3186 case IOERR_ILLEGAL_FRAME:
James Smart92d7f7b2007-06-17 19:56:38 -05003187 delay = 100;
dea31012005-04-17 16:05:31 -05003188 retry = 1;
3189 break;
3190
James Smart858c9f62007-06-17 19:56:39 -05003191 case IOERR_SEQUENCE_TIMEOUT:
dea31012005-04-17 16:05:31 -05003192 case IOERR_INVALID_RPI:
James Smart5b5b36a2013-01-03 15:43:19 -05003193 if (cmd == ELS_CMD_PLOGI &&
3194 did == NameServer_DID) {
3195 /* Continue forever if plogi to */
3196 /* the nameserver fails */
3197 maxretry = 0;
3198 delay = 100;
3199 }
dea31012005-04-17 16:05:31 -05003200 retry = 1;
3201 break;
3202 }
3203 break;
3204
3205 case IOSTAT_NPORT_RJT:
3206 case IOSTAT_FABRIC_RJT:
3207 if (irsp->un.ulpWord[4] & RJT_UNAVAIL_TEMP) {
3208 retry = 1;
3209 break;
3210 }
3211 break;
3212
3213 case IOSTAT_NPORT_BSY:
3214 case IOSTAT_FABRIC_BSY:
James Smart98c9ea52007-10-27 13:37:33 -04003215 logerr = 1; /* Fabric / Remote NPort out of resources */
dea31012005-04-17 16:05:31 -05003216 retry = 1;
3217 break;
3218
3219 case IOSTAT_LS_RJT:
3220 stat.un.lsRjtError = be32_to_cpu(irsp->un.ulpWord[4]);
3221 /* Added for Vendor specifc support
3222 * Just keep retrying for these Rsn / Exp codes
3223 */
3224 switch (stat.un.b.lsRjtRsnCode) {
3225 case LSRJT_UNABLE_TPC:
3226 if (stat.un.b.lsRjtRsnCodeExp ==
3227 LSEXP_CMD_IN_PROGRESS) {
3228 if (cmd == ELS_CMD_PLOGI) {
James Smart92d7f7b2007-06-17 19:56:38 -05003229 delay = 1000;
dea31012005-04-17 16:05:31 -05003230 maxretry = 48;
3231 }
3232 retry = 1;
3233 break;
3234 }
James Smartffc95492010-06-07 15:23:17 -04003235 if (stat.un.b.lsRjtRsnCodeExp ==
3236 LSEXP_CANT_GIVE_DATA) {
3237 if (cmd == ELS_CMD_PLOGI) {
3238 delay = 1000;
3239 maxretry = 48;
3240 }
3241 retry = 1;
3242 break;
3243 }
James Smart4c1b64b2012-09-29 11:31:11 -04003244 if ((cmd == ELS_CMD_PLOGI) ||
3245 (cmd == ELS_CMD_PRLI)) {
James Smart92d7f7b2007-06-17 19:56:38 -05003246 delay = 1000;
dea31012005-04-17 16:05:31 -05003247 maxretry = lpfc_max_els_tries + 1;
3248 retry = 1;
3249 break;
3250 }
James Smart92d7f7b2007-06-17 19:56:38 -05003251 if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
3252 (cmd == ELS_CMD_FDISC) &&
3253 (stat.un.b.lsRjtRsnCodeExp == LSEXP_OUT_OF_RESOURCE)){
James Smarte8b62012007-08-02 11:10:09 -04003254 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
3255 "0125 FDISC Failed (x%x). "
3256 "Fabric out of resources\n",
3257 stat.un.lsRjtError);
James Smart92d7f7b2007-06-17 19:56:38 -05003258 lpfc_vport_set_state(vport,
3259 FC_VPORT_NO_FABRIC_RSCS);
3260 }
dea31012005-04-17 16:05:31 -05003261 break;
3262
3263 case LSRJT_LOGICAL_BSY:
James Smart858c9f62007-06-17 19:56:39 -05003264 if ((cmd == ELS_CMD_PLOGI) ||
3265 (cmd == ELS_CMD_PRLI)) {
James Smart92d7f7b2007-06-17 19:56:38 -05003266 delay = 1000;
dea31012005-04-17 16:05:31 -05003267 maxretry = 48;
James Smart92d7f7b2007-06-17 19:56:38 -05003268 } else if (cmd == ELS_CMD_FDISC) {
James Smart51ef4c22007-08-02 11:10:31 -04003269 /* FDISC retry policy */
3270 maxretry = 48;
3271 if (cmdiocb->retry >= 32)
3272 delay = 1000;
dea31012005-04-17 16:05:31 -05003273 }
3274 retry = 1;
3275 break;
James Smart92d7f7b2007-06-17 19:56:38 -05003276
3277 case LSRJT_LOGICAL_ERR:
James Smart7f5f3d02008-02-08 18:50:14 -05003278 /* There are some cases where switches return this
3279 * error when they are not ready and should be returning
3280 * Logical Busy. We should delay every time.
3281 */
3282 if (cmd == ELS_CMD_FDISC &&
3283 stat.un.b.lsRjtRsnCodeExp == LSEXP_PORT_LOGIN_REQ) {
3284 maxretry = 3;
3285 delay = 1000;
3286 retry = 1;
3287 break;
3288 }
James Smart92d7f7b2007-06-17 19:56:38 -05003289 case LSRJT_PROTOCOL_ERR:
3290 if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
3291 (cmd == ELS_CMD_FDISC) &&
3292 ((stat.un.b.lsRjtRsnCodeExp == LSEXP_INVALID_PNAME) ||
3293 (stat.un.b.lsRjtRsnCodeExp == LSEXP_INVALID_NPORT_ID))
3294 ) {
James Smarte8b62012007-08-02 11:10:09 -04003295 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
James Smartd7c255b2008-08-24 21:50:00 -04003296 "0122 FDISC Failed (x%x). "
James Smarte8b62012007-08-02 11:10:09 -04003297 "Fabric Detected Bad WWN\n",
3298 stat.un.lsRjtError);
James Smart92d7f7b2007-06-17 19:56:38 -05003299 lpfc_vport_set_state(vport,
3300 FC_VPORT_FABRIC_REJ_WWN);
3301 }
3302 break;
James Smart7bdedb32016-07-06 12:36:00 -07003303 case LSRJT_VENDOR_UNIQUE:
3304 if ((stat.un.b.vendorUnique == 0x45) &&
3305 (cmd == ELS_CMD_FLOGI)) {
3306 goto out_retry;
3307 }
3308 break;
dea31012005-04-17 16:05:31 -05003309 }
3310 break;
3311
3312 case IOSTAT_INTERMED_RSP:
3313 case IOSTAT_BA_RJT:
3314 break;
3315
3316 default:
3317 break;
3318 }
3319
James Smart488d1462006-03-07 15:02:37 -05003320 if (did == FDMI_DID)
dea31012005-04-17 16:05:31 -05003321 retry = 1;
dea31012005-04-17 16:05:31 -05003322
James Smartdf9e1b52011-12-13 13:22:17 -05003323 if ((cmd == ELS_CMD_FLOGI) &&
James Smart76a95d72010-11-20 23:11:48 -05003324 (phba->fc_topology != LPFC_TOPOLOGY_LOOP) &&
James Smart1b32f6a2008-02-08 18:49:39 -05003325 !lpfc_error_lost_link(irsp)) {
James Smart98c9ea52007-10-27 13:37:33 -04003326 /* FLOGI retry policy */
3327 retry = 1;
James Smartdf9e1b52011-12-13 13:22:17 -05003328 /* retry FLOGI forever */
James Smart6eae4302015-04-07 15:07:23 -04003329 if (phba->link_flag != LS_LOOPBACK_MODE)
3330 maxretry = 0;
3331 else
3332 maxretry = 2;
3333
James Smart6669f9b2009-10-02 15:16:45 -04003334 if (cmdiocb->retry >= 100)
3335 delay = 5000;
3336 else if (cmdiocb->retry >= 32)
James Smart98c9ea52007-10-27 13:37:33 -04003337 delay = 1000;
James Smartdf9e1b52011-12-13 13:22:17 -05003338 } else if ((cmd == ELS_CMD_FDISC) && !lpfc_error_lost_link(irsp)) {
3339 /* retry FDISCs every second up to devloss */
3340 retry = 1;
3341 maxretry = vport->cfg_devloss_tmo;
3342 delay = 1000;
James Smart98c9ea52007-10-27 13:37:33 -04003343 }
3344
James Smart6669f9b2009-10-02 15:16:45 -04003345 cmdiocb->retry++;
3346 if (maxretry && (cmdiocb->retry >= maxretry)) {
dea31012005-04-17 16:05:31 -05003347 phba->fc_stat.elsRetryExceeded++;
3348 retry = 0;
3349 }
3350
James Smarted957682007-06-17 19:56:37 -05003351 if ((vport->load_flag & FC_UNLOADING) != 0)
3352 retry = 0;
3353
James Smart7bdedb32016-07-06 12:36:00 -07003354out_retry:
dea31012005-04-17 16:05:31 -05003355 if (retry) {
James Smart38b92ef2010-08-04 16:11:39 -04003356 if ((cmd == ELS_CMD_PLOGI) || (cmd == ELS_CMD_FDISC)) {
3357 /* Stop retrying PLOGI and FDISC if in FCF discovery */
3358 if (phba->fcf.fcf_flag & FCF_DISCOVERY) {
3359 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
3360 "2849 Stop retry ELS command "
3361 "x%x to remote NPORT x%x, "
3362 "Data: x%x x%x\n", cmd, did,
3363 cmdiocb->retry, delay);
3364 return 0;
3365 }
3366 }
dea31012005-04-17 16:05:31 -05003367
3368 /* Retry ELS command <elsCmd> to remote NPORT <did> */
James Smarte8b62012007-08-02 11:10:09 -04003369 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
3370 "0107 Retry ELS command x%x to remote "
3371 "NPORT x%x Data: x%x x%x\n",
3372 cmd, did, cmdiocb->retry, delay);
dea31012005-04-17 16:05:31 -05003373
James Smart858c9f62007-06-17 19:56:39 -05003374 if (((cmd == ELS_CMD_PLOGI) || (cmd == ELS_CMD_ADISC)) &&
3375 ((irsp->ulpStatus != IOSTAT_LOCAL_REJECT) ||
James Smarte3d2b802012-08-14 14:25:43 -04003376 ((irsp->un.ulpWord[4] & IOERR_PARAM_MASK) !=
3377 IOERR_NO_RESOURCES))) {
James Smart858c9f62007-06-17 19:56:39 -05003378 /* Don't reset timer for no resources */
3379
dea31012005-04-17 16:05:31 -05003380 /* If discovery / RSCN timer is running, reset it */
James Smart2e0fef82007-06-17 19:56:36 -05003381 if (timer_pending(&vport->fc_disctmo) ||
James Smart92d7f7b2007-06-17 19:56:38 -05003382 (vport->fc_flag & FC_RSCN_MODE))
James Smart2e0fef82007-06-17 19:56:36 -05003383 lpfc_set_disctmo(vport);
dea31012005-04-17 16:05:31 -05003384 }
3385
3386 phba->fc_stat.elsXmitRetry++;
James Smart58da1ff2008-04-07 10:15:56 -04003387 if (ndlp && NLP_CHK_NODE_ACT(ndlp) && delay) {
dea31012005-04-17 16:05:31 -05003388 phba->fc_stat.elsDelayRetry++;
3389 ndlp->nlp_retry = cmdiocb->retry;
3390
James Smart92d7f7b2007-06-17 19:56:38 -05003391 /* delay is specified in milliseconds */
3392 mod_timer(&ndlp->nlp_delayfunc,
3393 jiffies + msecs_to_jiffies(delay));
James Smart2e0fef82007-06-17 19:56:36 -05003394 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05003395 ndlp->nlp_flag |= NLP_DELAY_TMO;
James Smart2e0fef82007-06-17 19:56:36 -05003396 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05003397
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003398 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart858c9f62007-06-17 19:56:39 -05003399 if (cmd == ELS_CMD_PRLI)
3400 lpfc_nlp_set_state(vport, ndlp,
James Smart4c1b64b2012-09-29 11:31:11 -04003401 NLP_STE_PRLI_ISSUE);
James Smart858c9f62007-06-17 19:56:39 -05003402 else
3403 lpfc_nlp_set_state(vport, ndlp,
3404 NLP_STE_NPR_NODE);
dea31012005-04-17 16:05:31 -05003405 ndlp->nlp_last_elscmd = cmd;
3406
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003407 return 1;
dea31012005-04-17 16:05:31 -05003408 }
3409 switch (cmd) {
3410 case ELS_CMD_FLOGI:
James Smart2e0fef82007-06-17 19:56:36 -05003411 lpfc_issue_els_flogi(vport, ndlp, cmdiocb->retry);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003412 return 1;
James Smart92d7f7b2007-06-17 19:56:38 -05003413 case ELS_CMD_FDISC:
3414 lpfc_issue_els_fdisc(vport, ndlp, cmdiocb->retry);
3415 return 1;
dea31012005-04-17 16:05:31 -05003416 case ELS_CMD_PLOGI:
James Smart58da1ff2008-04-07 10:15:56 -04003417 if (ndlp && NLP_CHK_NODE_ACT(ndlp)) {
James Smart488d1462006-03-07 15:02:37 -05003418 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05003419 lpfc_nlp_set_state(vport, ndlp,
James Smartde0c5b32007-04-25 09:52:27 -04003420 NLP_STE_PLOGI_ISSUE);
James Smart488d1462006-03-07 15:02:37 -05003421 }
James Smart2e0fef82007-06-17 19:56:36 -05003422 lpfc_issue_els_plogi(vport, did, cmdiocb->retry);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003423 return 1;
dea31012005-04-17 16:05:31 -05003424 case ELS_CMD_ADISC:
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003425 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05003426 lpfc_nlp_set_state(vport, ndlp, NLP_STE_ADISC_ISSUE);
3427 lpfc_issue_els_adisc(vport, ndlp, cmdiocb->retry);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003428 return 1;
dea31012005-04-17 16:05:31 -05003429 case ELS_CMD_PRLI:
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003430 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05003431 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PRLI_ISSUE);
3432 lpfc_issue_els_prli(vport, ndlp, cmdiocb->retry);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003433 return 1;
dea31012005-04-17 16:05:31 -05003434 case ELS_CMD_LOGO:
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003435 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart086a3452012-08-14 14:25:21 -04003436 lpfc_nlp_set_state(vport, ndlp, NLP_STE_LOGO_ISSUE);
James Smart2e0fef82007-06-17 19:56:36 -05003437 lpfc_issue_els_logo(vport, ndlp, cmdiocb->retry);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003438 return 1;
dea31012005-04-17 16:05:31 -05003439 }
3440 }
dea31012005-04-17 16:05:31 -05003441 /* No retry ELS command <elsCmd> to remote NPORT <did> */
James Smart98c9ea52007-10-27 13:37:33 -04003442 if (logerr) {
3443 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
3444 "0137 No retry ELS command x%x to remote "
3445 "NPORT x%x: Out of Resources: Error:x%x/%x\n",
3446 cmd, did, irsp->ulpStatus,
3447 irsp->un.ulpWord[4]);
3448 }
3449 else {
3450 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
James Smarta58cbd52007-08-02 11:09:43 -04003451 "0108 No retry ELS command x%x to remote "
3452 "NPORT x%x Retried:%d Error:x%x/%x\n",
3453 cmd, did, cmdiocb->retry, irsp->ulpStatus,
3454 irsp->un.ulpWord[4]);
James Smart98c9ea52007-10-27 13:37:33 -04003455 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003456 return 0;
dea31012005-04-17 16:05:31 -05003457}
3458
James Smarte59058c2008-08-24 21:49:00 -04003459/**
James Smart3621a712009-04-06 18:47:14 -04003460 * lpfc_els_free_data - Free lpfc dma buffer and data structure with an iocb
James Smarte59058c2008-08-24 21:49:00 -04003461 * @phba: pointer to lpfc hba data structure.
3462 * @buf_ptr1: pointer to the lpfc DMA buffer data structure.
3463 *
3464 * This routine releases the lpfc DMA (Direct Memory Access) buffer(s)
3465 * associated with a command IOCB back to the lpfc DMA buffer pool. It first
3466 * checks to see whether there is a lpfc DMA buffer associated with the
3467 * response of the command IOCB. If so, it will be released before releasing
3468 * the lpfc DMA buffer associated with the IOCB itself.
3469 *
3470 * Return code
3471 * 0 - Successfully released lpfc DMA buffer (currently, always return 0)
3472 **/
James Smart09372822008-01-11 01:52:54 -05003473static int
James Smart87af33f2007-10-27 13:37:43 -04003474lpfc_els_free_data(struct lpfc_hba *phba, struct lpfc_dmabuf *buf_ptr1)
3475{
3476 struct lpfc_dmabuf *buf_ptr;
3477
James Smarte59058c2008-08-24 21:49:00 -04003478 /* Free the response before processing the command. */
James Smart87af33f2007-10-27 13:37:43 -04003479 if (!list_empty(&buf_ptr1->list)) {
3480 list_remove_head(&buf_ptr1->list, buf_ptr,
3481 struct lpfc_dmabuf,
3482 list);
3483 lpfc_mbuf_free(phba, buf_ptr->virt, buf_ptr->phys);
3484 kfree(buf_ptr);
3485 }
3486 lpfc_mbuf_free(phba, buf_ptr1->virt, buf_ptr1->phys);
3487 kfree(buf_ptr1);
3488 return 0;
3489}
3490
James Smarte59058c2008-08-24 21:49:00 -04003491/**
James Smart3621a712009-04-06 18:47:14 -04003492 * lpfc_els_free_bpl - Free lpfc dma buffer and data structure with bpl
James Smarte59058c2008-08-24 21:49:00 -04003493 * @phba: pointer to lpfc hba data structure.
3494 * @buf_ptr: pointer to the lpfc dma buffer data structure.
3495 *
3496 * This routine releases the lpfc Direct Memory Access (DMA) buffer
3497 * associated with a Buffer Pointer List (BPL) back to the lpfc DMA buffer
3498 * pool.
3499 *
3500 * Return code
3501 * 0 - Successfully released lpfc DMA buffer (currently, always return 0)
3502 **/
James Smart09372822008-01-11 01:52:54 -05003503static int
James Smart87af33f2007-10-27 13:37:43 -04003504lpfc_els_free_bpl(struct lpfc_hba *phba, struct lpfc_dmabuf *buf_ptr)
3505{
3506 lpfc_mbuf_free(phba, buf_ptr->virt, buf_ptr->phys);
3507 kfree(buf_ptr);
3508 return 0;
3509}
3510
James Smarte59058c2008-08-24 21:49:00 -04003511/**
James Smart3621a712009-04-06 18:47:14 -04003512 * lpfc_els_free_iocb - Free a command iocb and its associated resources
James Smarte59058c2008-08-24 21:49:00 -04003513 * @phba: pointer to lpfc hba data structure.
3514 * @elsiocb: pointer to lpfc els command iocb data structure.
3515 *
3516 * This routine frees a command IOCB and its associated resources. The
3517 * command IOCB data structure contains the reference to various associated
3518 * resources, these fields must be set to NULL if the associated reference
3519 * not present:
3520 * context1 - reference to ndlp
3521 * context2 - reference to cmd
3522 * context2->next - reference to rsp
3523 * context3 - reference to bpl
3524 *
3525 * It first properly decrements the reference count held on ndlp for the
3526 * IOCB completion callback function. If LPFC_DELAY_MEM_FREE flag is not
3527 * set, it invokes the lpfc_els_free_data() routine to release the Direct
3528 * Memory Access (DMA) buffers associated with the IOCB. Otherwise, it
3529 * adds the DMA buffer the @phba data structure for the delayed release.
3530 * If reference to the Buffer Pointer List (BPL) is present, the
3531 * lpfc_els_free_bpl() routine is invoked to release the DMA memory
3532 * associated with BPL. Finally, the lpfc_sli_release_iocbq() routine is
3533 * invoked to release the IOCB data structure back to @phba IOCBQ list.
3534 *
3535 * Return code
3536 * 0 - Success (currently, always return 0)
3537 **/
James Smart87af33f2007-10-27 13:37:43 -04003538int
James Smart329f9bc2007-04-25 09:53:01 -04003539lpfc_els_free_iocb(struct lpfc_hba *phba, struct lpfc_iocbq *elsiocb)
dea31012005-04-17 16:05:31 -05003540{
3541 struct lpfc_dmabuf *buf_ptr, *buf_ptr1;
James Smarta8adb832007-10-27 13:37:53 -04003542 struct lpfc_nodelist *ndlp;
dea31012005-04-17 16:05:31 -05003543
James Smarta8adb832007-10-27 13:37:53 -04003544 ndlp = (struct lpfc_nodelist *)elsiocb->context1;
3545 if (ndlp) {
3546 if (ndlp->nlp_flag & NLP_DEFER_RM) {
3547 lpfc_nlp_put(ndlp);
3548
3549 /* If the ndlp is not being used by another discovery
3550 * thread, free it.
3551 */
3552 if (!lpfc_nlp_not_used(ndlp)) {
3553 /* If ndlp is being used by another discovery
3554 * thread, just clear NLP_DEFER_RM
3555 */
3556 ndlp->nlp_flag &= ~NLP_DEFER_RM;
3557 }
3558 }
3559 else
3560 lpfc_nlp_put(ndlp);
James Smart329f9bc2007-04-25 09:53:01 -04003561 elsiocb->context1 = NULL;
3562 }
dea31012005-04-17 16:05:31 -05003563 /* context2 = cmd, context2->next = rsp, context3 = bpl */
3564 if (elsiocb->context2) {
James Smart0ff10d42008-01-11 01:52:36 -05003565 if (elsiocb->iocb_flag & LPFC_DELAY_MEM_FREE) {
3566 /* Firmware could still be in progress of DMAing
3567 * payload, so don't free data buffer till after
3568 * a hbeat.
3569 */
3570 elsiocb->iocb_flag &= ~LPFC_DELAY_MEM_FREE;
3571 buf_ptr = elsiocb->context2;
3572 elsiocb->context2 = NULL;
3573 if (buf_ptr) {
3574 buf_ptr1 = NULL;
3575 spin_lock_irq(&phba->hbalock);
3576 if (!list_empty(&buf_ptr->list)) {
3577 list_remove_head(&buf_ptr->list,
3578 buf_ptr1, struct lpfc_dmabuf,
3579 list);
3580 INIT_LIST_HEAD(&buf_ptr1->list);
3581 list_add_tail(&buf_ptr1->list,
3582 &phba->elsbuf);
3583 phba->elsbuf_cnt++;
3584 }
3585 INIT_LIST_HEAD(&buf_ptr->list);
3586 list_add_tail(&buf_ptr->list, &phba->elsbuf);
3587 phba->elsbuf_cnt++;
3588 spin_unlock_irq(&phba->hbalock);
3589 }
3590 } else {
3591 buf_ptr1 = (struct lpfc_dmabuf *) elsiocb->context2;
3592 lpfc_els_free_data(phba, buf_ptr1);
3593 }
dea31012005-04-17 16:05:31 -05003594 }
3595
3596 if (elsiocb->context3) {
3597 buf_ptr = (struct lpfc_dmabuf *) elsiocb->context3;
James Smart87af33f2007-10-27 13:37:43 -04003598 lpfc_els_free_bpl(phba, buf_ptr);
dea31012005-04-17 16:05:31 -05003599 }
James Bottomley604a3e32005-10-29 10:28:33 -05003600 lpfc_sli_release_iocbq(phba, elsiocb);
dea31012005-04-17 16:05:31 -05003601 return 0;
3602}
3603
James Smarte59058c2008-08-24 21:49:00 -04003604/**
James Smart3621a712009-04-06 18:47:14 -04003605 * lpfc_cmpl_els_logo_acc - Completion callback function to logo acc response
James Smarte59058c2008-08-24 21:49:00 -04003606 * @phba: pointer to lpfc hba data structure.
3607 * @cmdiocb: pointer to lpfc command iocb data structure.
3608 * @rspiocb: pointer to lpfc response iocb data structure.
3609 *
3610 * This routine is the completion callback function to the Logout (LOGO)
3611 * Accept (ACC) Response ELS command. This routine is invoked to indicate
3612 * the completion of the LOGO process. It invokes the lpfc_nlp_not_used() to
3613 * release the ndlp if it has the last reference remaining (reference count
3614 * is 1). If succeeded (meaning ndlp released), it sets the IOCB context1
3615 * field to NULL to inform the following lpfc_els_free_iocb() routine no
3616 * ndlp reference count needs to be decremented. Otherwise, the ndlp
3617 * reference use-count shall be decremented by the lpfc_els_free_iocb()
3618 * routine. Finally, the lpfc_els_free_iocb() is invoked to release the
3619 * IOCB data structure.
3620 **/
dea31012005-04-17 16:05:31 -05003621static void
James Smart2e0fef82007-06-17 19:56:36 -05003622lpfc_cmpl_els_logo_acc(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
3623 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05003624{
James Smart2e0fef82007-06-17 19:56:36 -05003625 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
3626 struct lpfc_vport *vport = cmdiocb->vport;
James Smart858c9f62007-06-17 19:56:39 -05003627 IOCB_t *irsp;
3628
3629 irsp = &rspiocb->iocb;
3630 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
3631 "ACC LOGO cmpl: status:x%x/x%x did:x%x",
3632 irsp->ulpStatus, irsp->un.ulpWord[4], ndlp->nlp_DID);
dea31012005-04-17 16:05:31 -05003633 /* ACC to LOGO completes to NPort <nlp_DID> */
James Smarte8b62012007-08-02 11:10:09 -04003634 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
3635 "0109 ACC to LOGO completes to NPort x%x "
3636 "Data: x%x x%x x%x\n",
3637 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
3638 ndlp->nlp_rpi);
James Smart87af33f2007-10-27 13:37:43 -04003639
3640 if (ndlp->nlp_state == NLP_STE_NPR_NODE) {
3641 /* NPort Recovery mode or node is just allocated */
3642 if (!lpfc_nlp_not_used(ndlp)) {
3643 /* If the ndlp is being used by another discovery
3644 * thread, just unregister the RPI.
3645 */
3646 lpfc_unreg_rpi(vport, ndlp);
James Smartfa4066b2008-01-11 01:53:27 -05003647 } else {
3648 /* Indicate the node has already released, should
3649 * not reference to it from within lpfc_els_free_iocb.
3650 */
3651 cmdiocb->context1 = NULL;
James Smart87af33f2007-10-27 13:37:43 -04003652 }
dea31012005-04-17 16:05:31 -05003653 }
James Smart73d91e52011-10-10 21:32:10 -04003654
3655 /*
3656 * The driver received a LOGO from the rport and has ACK'd it.
James Smartdf9e1b52011-12-13 13:22:17 -05003657 * At this point, the driver is done so release the IOCB
James Smart73d91e52011-10-10 21:32:10 -04003658 */
dea31012005-04-17 16:05:31 -05003659 lpfc_els_free_iocb(phba, cmdiocb);
dea31012005-04-17 16:05:31 -05003660}
3661
James Smarte59058c2008-08-24 21:49:00 -04003662/**
James Smart3621a712009-04-06 18:47:14 -04003663 * lpfc_mbx_cmpl_dflt_rpi - Completion callbk func for unreg dflt rpi mbox cmd
James Smarte59058c2008-08-24 21:49:00 -04003664 * @phba: pointer to lpfc hba data structure.
3665 * @pmb: pointer to the driver internal queue element for mailbox command.
3666 *
3667 * This routine is the completion callback function for unregister default
3668 * RPI (Remote Port Index) mailbox command to the @phba. It simply releases
3669 * the associated lpfc Direct Memory Access (DMA) buffer back to the pool and
3670 * decrements the ndlp reference count held for this completion callback
3671 * function. After that, it invokes the lpfc_nlp_not_used() to check
3672 * whether there is only one reference left on the ndlp. If so, it will
3673 * perform one more decrement and trigger the release of the ndlp.
3674 **/
James Smart858c9f62007-06-17 19:56:39 -05003675void
3676lpfc_mbx_cmpl_dflt_rpi(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
3677{
3678 struct lpfc_dmabuf *mp = (struct lpfc_dmabuf *) (pmb->context1);
3679 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) pmb->context2;
3680
3681 pmb->context1 = NULL;
James Smartd439d282010-09-29 11:18:45 -04003682 pmb->context2 = NULL;
3683
James Smart858c9f62007-06-17 19:56:39 -05003684 lpfc_mbuf_free(phba, mp->virt, mp->phys);
3685 kfree(mp);
3686 mempool_free(pmb, phba->mbox_mem_pool);
James Smart086a3452012-08-14 14:25:21 -04003687 if (ndlp) {
James Smartbe6bb942015-04-07 15:07:22 -04003688 lpfc_printf_vlog(ndlp->vport, KERN_INFO, LOG_NODE,
3689 "0006 rpi%x DID:%x flg:%x %d map:%x %p\n",
3690 ndlp->nlp_rpi, ndlp->nlp_DID, ndlp->nlp_flag,
Peter Zijlstra2c935bc2016-11-14 17:29:48 +01003691 kref_read(&ndlp->kref),
James Smartbe6bb942015-04-07 15:07:22 -04003692 ndlp->nlp_usg_map, ndlp);
James Smart086a3452012-08-14 14:25:21 -04003693 if (NLP_CHK_NODE_ACT(ndlp)) {
3694 lpfc_nlp_put(ndlp);
3695 /* This is the end of the default RPI cleanup logic for
3696 * this ndlp. If no other discovery threads are using
3697 * this ndlp, free all resources associated with it.
3698 */
3699 lpfc_nlp_not_used(ndlp);
3700 } else {
3701 lpfc_drop_node(ndlp->vport, ndlp);
3702 }
James Smarta8adb832007-10-27 13:37:53 -04003703 }
James Smart3772a992009-05-22 14:50:54 -04003704
James Smart858c9f62007-06-17 19:56:39 -05003705 return;
3706}
3707
James Smarte59058c2008-08-24 21:49:00 -04003708/**
James Smart3621a712009-04-06 18:47:14 -04003709 * lpfc_cmpl_els_rsp - Completion callback function for els response iocb cmd
James Smarte59058c2008-08-24 21:49:00 -04003710 * @phba: pointer to lpfc hba data structure.
3711 * @cmdiocb: pointer to lpfc command iocb data structure.
3712 * @rspiocb: pointer to lpfc response iocb data structure.
3713 *
3714 * This routine is the completion callback function for ELS Response IOCB
3715 * command. In normal case, this callback function just properly sets the
3716 * nlp_flag bitmap in the ndlp data structure, if the mbox command reference
3717 * field in the command IOCB is not NULL, the referred mailbox command will
3718 * be send out, and then invokes the lpfc_els_free_iocb() routine to release
3719 * the IOCB. Under error conditions, such as when a LS_RJT is returned or a
3720 * link down event occurred during the discovery, the lpfc_nlp_not_used()
3721 * routine shall be invoked trying to release the ndlp if no other threads
3722 * are currently referring it.
3723 **/
dea31012005-04-17 16:05:31 -05003724static void
James Smart858c9f62007-06-17 19:56:39 -05003725lpfc_cmpl_els_rsp(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
James Smart329f9bc2007-04-25 09:53:01 -04003726 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05003727{
James Smart2e0fef82007-06-17 19:56:36 -05003728 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
3729 struct lpfc_vport *vport = ndlp ? ndlp->vport : NULL;
3730 struct Scsi_Host *shost = vport ? lpfc_shost_from_vport(vport) : NULL;
James Smart87af33f2007-10-27 13:37:43 -04003731 IOCB_t *irsp;
3732 uint8_t *pcmd;
dea31012005-04-17 16:05:31 -05003733 LPFC_MBOXQ_t *mbox = NULL;
James Smart2e0fef82007-06-17 19:56:36 -05003734 struct lpfc_dmabuf *mp = NULL;
James Smart87af33f2007-10-27 13:37:43 -04003735 uint32_t ls_rjt = 0;
dea31012005-04-17 16:05:31 -05003736
James Smart33ccf8d2006-08-17 11:57:58 -04003737 irsp = &rspiocb->iocb;
3738
dea31012005-04-17 16:05:31 -05003739 if (cmdiocb->context_un.mbox)
3740 mbox = cmdiocb->context_un.mbox;
3741
James Smartfa4066b2008-01-11 01:53:27 -05003742 /* First determine if this is a LS_RJT cmpl. Note, this callback
3743 * function can have cmdiocb->contest1 (ndlp) field set to NULL.
3744 */
James Smart87af33f2007-10-27 13:37:43 -04003745 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) cmdiocb->context2)->virt);
James Smart58da1ff2008-04-07 10:15:56 -04003746 if (ndlp && NLP_CHK_NODE_ACT(ndlp) &&
3747 (*((uint32_t *) (pcmd)) == ELS_CMD_LS_RJT)) {
James Smartfa4066b2008-01-11 01:53:27 -05003748 /* A LS_RJT associated with Default RPI cleanup has its own
Daniel Mack3ad2f3f2010-02-03 08:01:28 +08003749 * separate code path.
James Smart87af33f2007-10-27 13:37:43 -04003750 */
3751 if (!(ndlp->nlp_flag & NLP_RM_DFLT_RPI))
3752 ls_rjt = 1;
3753 }
3754
dea31012005-04-17 16:05:31 -05003755 /* Check to see if link went down during discovery */
James Smart58da1ff2008-04-07 10:15:56 -04003756 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp) || lpfc_els_chk_latt(vport)) {
dea31012005-04-17 16:05:31 -05003757 if (mbox) {
James Smart14691152006-12-02 13:34:28 -05003758 mp = (struct lpfc_dmabuf *) mbox->context1;
3759 if (mp) {
3760 lpfc_mbuf_free(phba, mp->virt, mp->phys);
3761 kfree(mp);
3762 }
James Smart329f9bc2007-04-25 09:53:01 -04003763 mempool_free(mbox, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -05003764 }
James Smart58da1ff2008-04-07 10:15:56 -04003765 if (ndlp && NLP_CHK_NODE_ACT(ndlp) &&
3766 (ndlp->nlp_flag & NLP_RM_DFLT_RPI))
James Smartfa4066b2008-01-11 01:53:27 -05003767 if (lpfc_nlp_not_used(ndlp)) {
James Smart98c9ea52007-10-27 13:37:33 -04003768 ndlp = NULL;
James Smartfa4066b2008-01-11 01:53:27 -05003769 /* Indicate the node has already released,
3770 * should not reference to it from within
3771 * the routine lpfc_els_free_iocb.
3772 */
3773 cmdiocb->context1 = NULL;
3774 }
dea31012005-04-17 16:05:31 -05003775 goto out;
3776 }
3777
James Smart858c9f62007-06-17 19:56:39 -05003778 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
James Smart51ef4c22007-08-02 11:10:31 -04003779 "ELS rsp cmpl: status:x%x/x%x did:x%x",
James Smart858c9f62007-06-17 19:56:39 -05003780 irsp->ulpStatus, irsp->un.ulpWord[4],
James Smart51ef4c22007-08-02 11:10:31 -04003781 cmdiocb->iocb.un.elsreq64.remoteID);
dea31012005-04-17 16:05:31 -05003782 /* ELS response tag <ulpIoTag> completes */
James Smarte8b62012007-08-02 11:10:09 -04003783 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
3784 "0110 ELS response tag x%x completes "
3785 "Data: x%x x%x x%x x%x x%x x%x x%x\n",
3786 cmdiocb->iocb.ulpIoTag, rspiocb->iocb.ulpStatus,
3787 rspiocb->iocb.un.ulpWord[4], rspiocb->iocb.ulpTimeout,
3788 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
3789 ndlp->nlp_rpi);
dea31012005-04-17 16:05:31 -05003790 if (mbox) {
3791 if ((rspiocb->iocb.ulpStatus == 0)
3792 && (ndlp->nlp_flag & NLP_ACC_REGLOGIN)) {
James Smart2e0fef82007-06-17 19:56:36 -05003793 lpfc_unreg_rpi(vport, ndlp);
James Smarte47c9092008-02-08 18:49:26 -05003794 /* Increment reference count to ndlp to hold the
3795 * reference to ndlp for the callback function.
3796 */
James Smart329f9bc2007-04-25 09:53:01 -04003797 mbox->context2 = lpfc_nlp_get(ndlp);
James Smart2e0fef82007-06-17 19:56:36 -05003798 mbox->vport = vport;
James Smart858c9f62007-06-17 19:56:39 -05003799 if (ndlp->nlp_flag & NLP_RM_DFLT_RPI) {
3800 mbox->mbox_flag |= LPFC_MBX_IMED_UNREG;
3801 mbox->mbox_cmpl = lpfc_mbx_cmpl_dflt_rpi;
3802 }
3803 else {
3804 mbox->mbox_cmpl = lpfc_mbx_cmpl_reg_login;
3805 ndlp->nlp_prev_state = ndlp->nlp_state;
3806 lpfc_nlp_set_state(vport, ndlp,
James Smart2e0fef82007-06-17 19:56:36 -05003807 NLP_STE_REG_LOGIN_ISSUE);
James Smart858c9f62007-06-17 19:56:39 -05003808 }
James Smart4b7789b2015-12-16 18:11:55 -05003809
3810 ndlp->nlp_flag |= NLP_REG_LOGIN_SEND;
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 Smart4b7789b2015-12-16 18:11:55 -05003814
3815 /* Decrement the ndlp reference count we
3816 * set for this failed mailbox command.
3817 */
3818 lpfc_nlp_put(ndlp);
3819 ndlp->nlp_flag &= ~NLP_REG_LOGIN_SEND;
James Smart98c9ea52007-10-27 13:37:33 -04003820
3821 /* ELS rsp: Cannot issue reg_login for <NPortid> */
3822 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
3823 "0138 ELS rsp: Cannot issue reg_login for x%x "
3824 "Data: x%x x%x x%x\n",
3825 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
3826 ndlp->nlp_rpi);
3827
James Smartfa4066b2008-01-11 01:53:27 -05003828 if (lpfc_nlp_not_used(ndlp)) {
James Smart98c9ea52007-10-27 13:37:33 -04003829 ndlp = NULL;
James Smartfa4066b2008-01-11 01:53:27 -05003830 /* Indicate node has already been released,
3831 * should not reference to it from within
3832 * the routine lpfc_els_free_iocb.
3833 */
3834 cmdiocb->context1 = NULL;
3835 }
dea31012005-04-17 16:05:31 -05003836 } else {
James Smart858c9f62007-06-17 19:56:39 -05003837 /* Do not drop node for lpfc_els_abort'ed ELS cmds */
3838 if (!lpfc_error_lost_link(irsp) &&
3839 ndlp->nlp_flag & NLP_ACC_REGLOGIN) {
James Smartfa4066b2008-01-11 01:53:27 -05003840 if (lpfc_nlp_not_used(ndlp)) {
James Smart98c9ea52007-10-27 13:37:33 -04003841 ndlp = NULL;
James Smartfa4066b2008-01-11 01:53:27 -05003842 /* Indicate node has already been
3843 * released, should not reference
3844 * to it from within the routine
3845 * lpfc_els_free_iocb.
3846 */
3847 cmdiocb->context1 = NULL;
3848 }
dea31012005-04-17 16:05:31 -05003849 }
3850 }
James Smart14691152006-12-02 13:34:28 -05003851 mp = (struct lpfc_dmabuf *) mbox->context1;
3852 if (mp) {
3853 lpfc_mbuf_free(phba, mp->virt, mp->phys);
3854 kfree(mp);
3855 }
3856 mempool_free(mbox, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -05003857 }
3858out:
James Smart58da1ff2008-04-07 10:15:56 -04003859 if (ndlp && NLP_CHK_NODE_ACT(ndlp)) {
James Smart2e0fef82007-06-17 19:56:36 -05003860 spin_lock_irq(shost->host_lock);
James Smart858c9f62007-06-17 19:56:39 -05003861 ndlp->nlp_flag &= ~(NLP_ACC_REGLOGIN | NLP_RM_DFLT_RPI);
James Smart2e0fef82007-06-17 19:56:36 -05003862 spin_unlock_irq(shost->host_lock);
James Smart87af33f2007-10-27 13:37:43 -04003863
3864 /* If the node is not being used by another discovery thread,
3865 * and we are sending a reject, we are done with it.
3866 * Release driver reference count here and free associated
3867 * resources.
3868 */
3869 if (ls_rjt)
James Smartfa4066b2008-01-11 01:53:27 -05003870 if (lpfc_nlp_not_used(ndlp))
3871 /* Indicate node has already been released,
3872 * should not reference to it from within
3873 * the routine lpfc_els_free_iocb.
3874 */
3875 cmdiocb->context1 = NULL;
James Smart4b7789b2015-12-16 18:11:55 -05003876
dea31012005-04-17 16:05:31 -05003877 }
James Smart87af33f2007-10-27 13:37:43 -04003878
dea31012005-04-17 16:05:31 -05003879 lpfc_els_free_iocb(phba, cmdiocb);
3880 return;
3881}
3882
James Smarte59058c2008-08-24 21:49:00 -04003883/**
James Smart3621a712009-04-06 18:47:14 -04003884 * lpfc_els_rsp_acc - Prepare and issue an acc response iocb command
James Smarte59058c2008-08-24 21:49:00 -04003885 * @vport: pointer to a host virtual N_Port data structure.
3886 * @flag: the els command code to be accepted.
3887 * @oldiocb: pointer to the original lpfc command iocb data structure.
3888 * @ndlp: pointer to a node-list data structure.
3889 * @mbox: pointer to the driver internal queue element for mailbox command.
3890 *
3891 * This routine prepares and issues an Accept (ACC) response IOCB
3892 * command. It uses the @flag to properly set up the IOCB field for the
3893 * specific ACC response command to be issued and invokes the
3894 * lpfc_sli_issue_iocb() routine to send out ACC response IOCB. If a
3895 * @mbox pointer is passed in, it will be put into the context_un.mbox
3896 * field of the IOCB for the completion callback function to issue the
3897 * mailbox command to the HBA later when callback is invoked.
3898 *
3899 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
3900 * will be incremented by 1 for holding the ndlp and the reference to ndlp
3901 * will be stored into the context1 field of the IOCB for the completion
3902 * callback function to the corresponding response ELS IOCB command.
3903 *
3904 * Return code
3905 * 0 - Successfully issued acc response
3906 * 1 - Failed to issue acc response
3907 **/
dea31012005-04-17 16:05:31 -05003908int
James Smart2e0fef82007-06-17 19:56:36 -05003909lpfc_els_rsp_acc(struct lpfc_vport *vport, uint32_t flag,
3910 struct lpfc_iocbq *oldiocb, struct lpfc_nodelist *ndlp,
James Smart51ef4c22007-08-02 11:10:31 -04003911 LPFC_MBOXQ_t *mbox)
dea31012005-04-17 16:05:31 -05003912{
James Smart2e0fef82007-06-17 19:56:36 -05003913 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
3914 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05003915 IOCB_t *icmd;
3916 IOCB_t *oldcmd;
3917 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05003918 uint8_t *pcmd;
James Smartd6de08c2015-12-16 18:11:53 -05003919 struct serv_parm *sp;
dea31012005-04-17 16:05:31 -05003920 uint16_t cmdsize;
3921 int rc;
James Smart82d9a2a2006-04-15 11:53:05 -04003922 ELS_PKT *els_pkt_ptr;
dea31012005-04-17 16:05:31 -05003923
dea31012005-04-17 16:05:31 -05003924 oldcmd = &oldiocb->iocb;
3925
3926 switch (flag) {
3927 case ELS_CMD_ACC:
James Smart92d7f7b2007-06-17 19:56:38 -05003928 cmdsize = sizeof(uint32_t);
James Smart2e0fef82007-06-17 19:56:36 -05003929 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry,
3930 ndlp, ndlp->nlp_DID, ELS_CMD_ACC);
James Smart488d1462006-03-07 15:02:37 -05003931 if (!elsiocb) {
James Smart2e0fef82007-06-17 19:56:36 -05003932 spin_lock_irq(shost->host_lock);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003933 ndlp->nlp_flag &= ~NLP_LOGO_ACC;
James Smart2e0fef82007-06-17 19:56:36 -05003934 spin_unlock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003935 return 1;
dea31012005-04-17 16:05:31 -05003936 }
James Smart2e0fef82007-06-17 19:56:36 -05003937
dea31012005-04-17 16:05:31 -05003938 icmd = &elsiocb->iocb;
James Smart7851fe22011-07-22 18:36:52 -04003939 icmd->ulpContext = oldcmd->ulpContext; /* Xri / rx_id */
3940 icmd->unsli3.rcvsli3.ox_id = oldcmd->unsli3.rcvsli3.ox_id;
dea31012005-04-17 16:05:31 -05003941 pcmd = (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
3942 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
James Smart92d7f7b2007-06-17 19:56:38 -05003943 pcmd += sizeof(uint32_t);
James Smart858c9f62007-06-17 19:56:39 -05003944
3945 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
3946 "Issue ACC: did:x%x flg:x%x",
3947 ndlp->nlp_DID, ndlp->nlp_flag, 0);
dea31012005-04-17 16:05:31 -05003948 break;
James Smartd6de08c2015-12-16 18:11:53 -05003949 case ELS_CMD_FLOGI:
dea31012005-04-17 16:05:31 -05003950 case ELS_CMD_PLOGI:
James Smart92d7f7b2007-06-17 19:56:38 -05003951 cmdsize = (sizeof(struct serv_parm) + sizeof(uint32_t));
James Smart2e0fef82007-06-17 19:56:36 -05003952 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry,
3953 ndlp, ndlp->nlp_DID, ELS_CMD_ACC);
James Smart488d1462006-03-07 15:02:37 -05003954 if (!elsiocb)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003955 return 1;
James Smart488d1462006-03-07 15:02:37 -05003956
dea31012005-04-17 16:05:31 -05003957 icmd = &elsiocb->iocb;
James Smart7851fe22011-07-22 18:36:52 -04003958 icmd->ulpContext = oldcmd->ulpContext; /* Xri / rx_id */
3959 icmd->unsli3.rcvsli3.ox_id = oldcmd->unsli3.rcvsli3.ox_id;
dea31012005-04-17 16:05:31 -05003960 pcmd = (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
3961
3962 if (mbox)
3963 elsiocb->context_un.mbox = mbox;
3964
3965 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
James Smart92d7f7b2007-06-17 19:56:38 -05003966 pcmd += sizeof(uint32_t);
James Smartd6de08c2015-12-16 18:11:53 -05003967 sp = (struct serv_parm *)pcmd;
3968
3969 if (flag == ELS_CMD_FLOGI) {
3970 /* Copy the received service parameters back */
3971 memcpy(sp, &phba->fc_fabparam,
3972 sizeof(struct serv_parm));
3973
3974 /* Clear the F_Port bit */
3975 sp->cmn.fPort = 0;
3976
3977 /* Mark all class service parameters as invalid */
3978 sp->cls1.classValid = 0;
3979 sp->cls2.classValid = 0;
3980 sp->cls3.classValid = 0;
3981 sp->cls4.classValid = 0;
3982
3983 /* Copy our worldwide names */
3984 memcpy(&sp->portName, &vport->fc_sparam.portName,
3985 sizeof(struct lpfc_name));
3986 memcpy(&sp->nodeName, &vport->fc_sparam.nodeName,
3987 sizeof(struct lpfc_name));
3988 } else {
3989 memcpy(pcmd, &vport->fc_sparam,
3990 sizeof(struct serv_parm));
3991 }
James Smart858c9f62007-06-17 19:56:39 -05003992
3993 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
James Smartd6de08c2015-12-16 18:11:53 -05003994 "Issue ACC FLOGI/PLOGI: did:x%x flg:x%x",
James Smart858c9f62007-06-17 19:56:39 -05003995 ndlp->nlp_DID, ndlp->nlp_flag, 0);
dea31012005-04-17 16:05:31 -05003996 break;
James Smart82d9a2a2006-04-15 11:53:05 -04003997 case ELS_CMD_PRLO:
James Smart92d7f7b2007-06-17 19:56:38 -05003998 cmdsize = sizeof(uint32_t) + sizeof(PRLO);
James Smart2e0fef82007-06-17 19:56:36 -05003999 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry,
James Smart82d9a2a2006-04-15 11:53:05 -04004000 ndlp, ndlp->nlp_DID, ELS_CMD_PRLO);
4001 if (!elsiocb)
4002 return 1;
4003
4004 icmd = &elsiocb->iocb;
James Smart7851fe22011-07-22 18:36:52 -04004005 icmd->ulpContext = oldcmd->ulpContext; /* Xri / rx_id */
4006 icmd->unsli3.rcvsli3.ox_id = oldcmd->unsli3.rcvsli3.ox_id;
James Smart82d9a2a2006-04-15 11:53:05 -04004007 pcmd = (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
4008
4009 memcpy(pcmd, ((struct lpfc_dmabuf *) oldiocb->context2)->virt,
James Smart92d7f7b2007-06-17 19:56:38 -05004010 sizeof(uint32_t) + sizeof(PRLO));
James Smart82d9a2a2006-04-15 11:53:05 -04004011 *((uint32_t *) (pcmd)) = ELS_CMD_PRLO_ACC;
4012 els_pkt_ptr = (ELS_PKT *) pcmd;
4013 els_pkt_ptr->un.prlo.acceptRspCode = PRLO_REQ_EXECUTED;
James Smart858c9f62007-06-17 19:56:39 -05004014
4015 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
4016 "Issue ACC PRLO: did:x%x flg:x%x",
4017 ndlp->nlp_DID, ndlp->nlp_flag, 0);
James Smart82d9a2a2006-04-15 11:53:05 -04004018 break;
dea31012005-04-17 16:05:31 -05004019 default:
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004020 return 1;
dea31012005-04-17 16:05:31 -05004021 }
dea31012005-04-17 16:05:31 -05004022 /* Xmit ELS ACC response tag <ulpIoTag> */
James Smarte8b62012007-08-02 11:10:09 -04004023 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
4024 "0128 Xmit ELS ACC response tag x%x, XRI: x%x, "
James Smarte6446432012-05-09 21:16:42 -04004025 "DID: x%x, nlp_flag: x%x nlp_state: x%x RPI: x%x "
4026 "fc_flag x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04004027 elsiocb->iotag, elsiocb->iocb.ulpContext,
4028 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
James Smarte6446432012-05-09 21:16:42 -04004029 ndlp->nlp_rpi, vport->fc_flag);
dea31012005-04-17 16:05:31 -05004030 if (ndlp->nlp_flag & NLP_LOGO_ACC) {
James Smart2e0fef82007-06-17 19:56:36 -05004031 spin_lock_irq(shost->host_lock);
James Smart7c5e5182015-05-22 10:42:43 -04004032 if (!(ndlp->nlp_flag & NLP_RPI_REGISTERED ||
4033 ndlp->nlp_flag & NLP_REG_LOGIN_SEND))
4034 ndlp->nlp_flag &= ~NLP_LOGO_ACC;
James Smart2e0fef82007-06-17 19:56:36 -05004035 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05004036 elsiocb->iocb_cmpl = lpfc_cmpl_els_logo_acc;
4037 } else {
James Smart858c9f62007-06-17 19:56:39 -05004038 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
dea31012005-04-17 16:05:31 -05004039 }
4040
4041 phba->fc_stat.elsXmitACC++;
James Smart3772a992009-05-22 14:50:54 -04004042 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
dea31012005-04-17 16:05:31 -05004043 if (rc == IOCB_ERROR) {
4044 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004045 return 1;
dea31012005-04-17 16:05:31 -05004046 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004047 return 0;
dea31012005-04-17 16:05:31 -05004048}
4049
James Smarte59058c2008-08-24 21:49:00 -04004050/**
James Smart3621a712009-04-06 18:47:14 -04004051 * lpfc_els_rsp_reject - Propare and issue a rjt response iocb command
James Smarte59058c2008-08-24 21:49:00 -04004052 * @vport: pointer to a virtual N_Port data structure.
4053 * @rejectError:
4054 * @oldiocb: pointer to the original lpfc command iocb data structure.
4055 * @ndlp: pointer to a node-list data structure.
4056 * @mbox: pointer to the driver internal queue element for mailbox command.
4057 *
4058 * This routine prepares and issue an Reject (RJT) response IOCB
4059 * command. If a @mbox pointer is passed in, it will be put into the
4060 * context_un.mbox field of the IOCB for the completion callback function
4061 * to issue to the HBA later.
4062 *
4063 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
4064 * will be incremented by 1 for holding the ndlp and the reference to ndlp
4065 * will be stored into the context1 field of the IOCB for the completion
4066 * callback function to the reject response ELS IOCB command.
4067 *
4068 * Return code
4069 * 0 - Successfully issued reject response
4070 * 1 - Failed to issue reject response
4071 **/
dea31012005-04-17 16:05:31 -05004072int
James Smart2e0fef82007-06-17 19:56:36 -05004073lpfc_els_rsp_reject(struct lpfc_vport *vport, uint32_t rejectError,
James Smart858c9f62007-06-17 19:56:39 -05004074 struct lpfc_iocbq *oldiocb, struct lpfc_nodelist *ndlp,
4075 LPFC_MBOXQ_t *mbox)
dea31012005-04-17 16:05:31 -05004076{
James Smart2e0fef82007-06-17 19:56:36 -05004077 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05004078 IOCB_t *icmd;
4079 IOCB_t *oldcmd;
4080 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05004081 uint8_t *pcmd;
4082 uint16_t cmdsize;
4083 int rc;
4084
James Smart92d7f7b2007-06-17 19:56:38 -05004085 cmdsize = 2 * sizeof(uint32_t);
James Smart2e0fef82007-06-17 19:56:36 -05004086 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry, ndlp,
4087 ndlp->nlp_DID, ELS_CMD_LS_RJT);
James Smart488d1462006-03-07 15:02:37 -05004088 if (!elsiocb)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004089 return 1;
dea31012005-04-17 16:05:31 -05004090
4091 icmd = &elsiocb->iocb;
4092 oldcmd = &oldiocb->iocb;
James Smart7851fe22011-07-22 18:36:52 -04004093 icmd->ulpContext = oldcmd->ulpContext; /* Xri / rx_id */
4094 icmd->unsli3.rcvsli3.ox_id = oldcmd->unsli3.rcvsli3.ox_id;
dea31012005-04-17 16:05:31 -05004095 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
4096
4097 *((uint32_t *) (pcmd)) = ELS_CMD_LS_RJT;
James Smart92d7f7b2007-06-17 19:56:38 -05004098 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05004099 *((uint32_t *) (pcmd)) = rejectError;
4100
James Smart51ef4c22007-08-02 11:10:31 -04004101 if (mbox)
James Smart858c9f62007-06-17 19:56:39 -05004102 elsiocb->context_un.mbox = mbox;
James Smart858c9f62007-06-17 19:56:39 -05004103
dea31012005-04-17 16:05:31 -05004104 /* Xmit ELS RJT <err> response tag <ulpIoTag> */
James Smarte8b62012007-08-02 11:10:09 -04004105 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
4106 "0129 Xmit ELS RJT x%x response tag x%x "
4107 "xri x%x, did x%x, nlp_flag x%x, nlp_state x%x, "
4108 "rpi x%x\n",
4109 rejectError, elsiocb->iotag,
4110 elsiocb->iocb.ulpContext, ndlp->nlp_DID,
4111 ndlp->nlp_flag, ndlp->nlp_state, ndlp->nlp_rpi);
James Smart858c9f62007-06-17 19:56:39 -05004112 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
4113 "Issue LS_RJT: did:x%x flg:x%x err:x%x",
4114 ndlp->nlp_DID, ndlp->nlp_flag, rejectError);
4115
dea31012005-04-17 16:05:31 -05004116 phba->fc_stat.elsXmitLSRJT++;
James Smart858c9f62007-06-17 19:56:39 -05004117 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
James Smart3772a992009-05-22 14:50:54 -04004118 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
James Smart51ef4c22007-08-02 11:10:31 -04004119
dea31012005-04-17 16:05:31 -05004120 if (rc == IOCB_ERROR) {
4121 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004122 return 1;
dea31012005-04-17 16:05:31 -05004123 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004124 return 0;
dea31012005-04-17 16:05:31 -05004125}
4126
James Smarte59058c2008-08-24 21:49:00 -04004127/**
James Smart3621a712009-04-06 18:47:14 -04004128 * lpfc_els_rsp_adisc_acc - Prepare and issue acc response to adisc iocb cmd
James Smarte59058c2008-08-24 21:49:00 -04004129 * @vport: pointer to a virtual N_Port data structure.
4130 * @oldiocb: pointer to the original lpfc command iocb data structure.
4131 * @ndlp: pointer to a node-list data structure.
4132 *
4133 * This routine prepares and issues an Accept (ACC) response to Address
4134 * Discover (ADISC) ELS command. It simply prepares the payload of the IOCB
4135 * and invokes the lpfc_sli_issue_iocb() routine to send out the command.
4136 *
4137 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
4138 * will be incremented by 1 for holding the ndlp and the reference to ndlp
4139 * will be stored into the context1 field of the IOCB for the completion
4140 * callback function to the ADISC Accept response ELS IOCB command.
4141 *
4142 * Return code
4143 * 0 - Successfully issued acc adisc response
4144 * 1 - Failed to issue adisc acc response
4145 **/
dea31012005-04-17 16:05:31 -05004146int
James Smart2e0fef82007-06-17 19:56:36 -05004147lpfc_els_rsp_adisc_acc(struct lpfc_vport *vport, struct lpfc_iocbq *oldiocb,
4148 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05004149{
James Smart2e0fef82007-06-17 19:56:36 -05004150 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05004151 ADISC *ap;
James Smart2e0fef82007-06-17 19:56:36 -05004152 IOCB_t *icmd, *oldcmd;
dea31012005-04-17 16:05:31 -05004153 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05004154 uint8_t *pcmd;
4155 uint16_t cmdsize;
4156 int rc;
4157
James Smart92d7f7b2007-06-17 19:56:38 -05004158 cmdsize = sizeof(uint32_t) + sizeof(ADISC);
James Smart2e0fef82007-06-17 19:56:36 -05004159 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry, ndlp,
4160 ndlp->nlp_DID, ELS_CMD_ACC);
James Smart488d1462006-03-07 15:02:37 -05004161 if (!elsiocb)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004162 return 1;
dea31012005-04-17 16:05:31 -05004163
dea31012005-04-17 16:05:31 -05004164 icmd = &elsiocb->iocb;
4165 oldcmd = &oldiocb->iocb;
James Smart7851fe22011-07-22 18:36:52 -04004166 icmd->ulpContext = oldcmd->ulpContext; /* Xri / rx_id */
4167 icmd->unsli3.rcvsli3.ox_id = oldcmd->unsli3.rcvsli3.ox_id;
James Smart5b8bd0c2007-04-25 09:52:49 -04004168
4169 /* Xmit ADISC ACC response tag <ulpIoTag> */
James Smarte8b62012007-08-02 11:10:09 -04004170 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
4171 "0130 Xmit ADISC ACC response iotag x%x xri: "
4172 "x%x, did x%x, nlp_flag x%x, nlp_state x%x rpi x%x\n",
4173 elsiocb->iotag, elsiocb->iocb.ulpContext,
4174 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
4175 ndlp->nlp_rpi);
dea31012005-04-17 16:05:31 -05004176 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
4177
4178 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
James Smart92d7f7b2007-06-17 19:56:38 -05004179 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05004180
4181 ap = (ADISC *) (pcmd);
4182 ap->hardAL_PA = phba->fc_pref_ALPA;
James Smart92d7f7b2007-06-17 19:56:38 -05004183 memcpy(&ap->portName, &vport->fc_portname, sizeof(struct lpfc_name));
4184 memcpy(&ap->nodeName, &vport->fc_nodename, sizeof(struct lpfc_name));
James Smart2e0fef82007-06-17 19:56:36 -05004185 ap->DID = be32_to_cpu(vport->fc_myDID);
dea31012005-04-17 16:05:31 -05004186
James Smart858c9f62007-06-17 19:56:39 -05004187 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
4188 "Issue ACC ADISC: did:x%x flg:x%x",
4189 ndlp->nlp_DID, ndlp->nlp_flag, 0);
4190
dea31012005-04-17 16:05:31 -05004191 phba->fc_stat.elsXmitACC++;
James Smart858c9f62007-06-17 19:56:39 -05004192 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
James Smart3772a992009-05-22 14:50:54 -04004193 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
dea31012005-04-17 16:05:31 -05004194 if (rc == IOCB_ERROR) {
4195 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004196 return 1;
dea31012005-04-17 16:05:31 -05004197 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004198 return 0;
dea31012005-04-17 16:05:31 -05004199}
4200
James Smarte59058c2008-08-24 21:49:00 -04004201/**
James Smart3621a712009-04-06 18:47:14 -04004202 * lpfc_els_rsp_prli_acc - Prepare and issue acc response to prli iocb cmd
James Smarte59058c2008-08-24 21:49:00 -04004203 * @vport: pointer to a virtual N_Port data structure.
4204 * @oldiocb: pointer to the original lpfc command iocb data structure.
4205 * @ndlp: pointer to a node-list data structure.
4206 *
4207 * This routine prepares and issues an Accept (ACC) response to Process
4208 * Login (PRLI) ELS command. It simply prepares the payload of the IOCB
4209 * and invokes the lpfc_sli_issue_iocb() routine to send out the command.
4210 *
4211 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
4212 * will be incremented by 1 for holding the ndlp and the reference to ndlp
4213 * will be stored into the context1 field of the IOCB for the completion
4214 * callback function to the PRLI Accept response ELS IOCB command.
4215 *
4216 * Return code
4217 * 0 - Successfully issued acc prli response
4218 * 1 - Failed to issue acc prli response
4219 **/
dea31012005-04-17 16:05:31 -05004220int
James Smart2e0fef82007-06-17 19:56:36 -05004221lpfc_els_rsp_prli_acc(struct lpfc_vport *vport, struct lpfc_iocbq *oldiocb,
James Smart5b8bd0c2007-04-25 09:52:49 -04004222 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05004223{
James Smart2e0fef82007-06-17 19:56:36 -05004224 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05004225 PRLI *npr;
4226 lpfc_vpd_t *vpd;
4227 IOCB_t *icmd;
4228 IOCB_t *oldcmd;
4229 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05004230 uint8_t *pcmd;
4231 uint16_t cmdsize;
4232 int rc;
4233
James Smart92d7f7b2007-06-17 19:56:38 -05004234 cmdsize = sizeof(uint32_t) + sizeof(PRLI);
James Smart2e0fef82007-06-17 19:56:36 -05004235 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry, ndlp,
James Smart92d7f7b2007-06-17 19:56:38 -05004236 ndlp->nlp_DID, (ELS_CMD_ACC | (ELS_CMD_PRLI & ~ELS_RSP_MASK)));
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004237 if (!elsiocb)
4238 return 1;
dea31012005-04-17 16:05:31 -05004239
dea31012005-04-17 16:05:31 -05004240 icmd = &elsiocb->iocb;
4241 oldcmd = &oldiocb->iocb;
James Smart7851fe22011-07-22 18:36:52 -04004242 icmd->ulpContext = oldcmd->ulpContext; /* Xri / rx_id */
4243 icmd->unsli3.rcvsli3.ox_id = oldcmd->unsli3.rcvsli3.ox_id;
4244
James Smart5b8bd0c2007-04-25 09:52:49 -04004245 /* Xmit PRLI ACC response tag <ulpIoTag> */
James Smarte8b62012007-08-02 11:10:09 -04004246 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
4247 "0131 Xmit PRLI ACC response tag x%x xri x%x, "
4248 "did x%x, nlp_flag x%x, nlp_state x%x, rpi x%x\n",
4249 elsiocb->iotag, elsiocb->iocb.ulpContext,
4250 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
4251 ndlp->nlp_rpi);
dea31012005-04-17 16:05:31 -05004252 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
4253
4254 *((uint32_t *) (pcmd)) = (ELS_CMD_ACC | (ELS_CMD_PRLI & ~ELS_RSP_MASK));
James Smart92d7f7b2007-06-17 19:56:38 -05004255 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05004256
4257 /* For PRLI, remainder of payload is PRLI parameter page */
James Smart92d7f7b2007-06-17 19:56:38 -05004258 memset(pcmd, 0, sizeof(PRLI));
dea31012005-04-17 16:05:31 -05004259
4260 npr = (PRLI *) pcmd;
4261 vpd = &phba->vpd;
4262 /*
James Smart0d2b6b82008-06-14 22:52:47 -04004263 * If the remote port is a target and our firmware version is 3.20 or
4264 * later, set the following bits for FC-TAPE support.
dea31012005-04-17 16:05:31 -05004265 */
James Smart0d2b6b82008-06-14 22:52:47 -04004266 if ((ndlp->nlp_type & NLP_FCP_TARGET) &&
4267 (vpd->rev.feaLevelHigh >= 0x02)) {
dea31012005-04-17 16:05:31 -05004268 npr->ConfmComplAllowed = 1;
4269 npr->Retry = 1;
4270 npr->TaskRetryIdReq = 1;
4271 }
4272
4273 npr->acceptRspCode = PRLI_REQ_EXECUTED;
4274 npr->estabImagePair = 1;
4275 npr->readXferRdyDis = 1;
4276 npr->ConfmComplAllowed = 1;
4277
4278 npr->prliType = PRLI_FCP_TYPE;
4279 npr->initiatorFunc = 1;
4280
James Smart858c9f62007-06-17 19:56:39 -05004281 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
4282 "Issue ACC PRLI: did:x%x flg:x%x",
4283 ndlp->nlp_DID, ndlp->nlp_flag, 0);
4284
dea31012005-04-17 16:05:31 -05004285 phba->fc_stat.elsXmitACC++;
James Smart858c9f62007-06-17 19:56:39 -05004286 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
dea31012005-04-17 16:05:31 -05004287
James Smart3772a992009-05-22 14:50:54 -04004288 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
dea31012005-04-17 16:05:31 -05004289 if (rc == IOCB_ERROR) {
4290 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004291 return 1;
dea31012005-04-17 16:05:31 -05004292 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004293 return 0;
dea31012005-04-17 16:05:31 -05004294}
4295
James Smarte59058c2008-08-24 21:49:00 -04004296/**
James Smart3621a712009-04-06 18:47:14 -04004297 * lpfc_els_rsp_rnid_acc - Issue rnid acc response iocb command
James Smarte59058c2008-08-24 21:49:00 -04004298 * @vport: pointer to a virtual N_Port data structure.
4299 * @format: rnid command format.
4300 * @oldiocb: pointer to the original lpfc command iocb data structure.
4301 * @ndlp: pointer to a node-list data structure.
4302 *
4303 * This routine issues a Request Node Identification Data (RNID) Accept
4304 * (ACC) response. It constructs the RNID ACC response command according to
4305 * the proper @format and then calls the lpfc_sli_issue_iocb() routine to
4306 * issue the response. Note that this command does not need to hold the ndlp
4307 * reference count for the callback. So, the ndlp reference count taken by
4308 * the lpfc_prep_els_iocb() routine is put back and the context1 field of
4309 * IOCB is set to NULL to indicate to the lpfc_els_free_iocb() routine that
4310 * there is no ndlp reference available.
4311 *
4312 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
4313 * will be incremented by 1 for holding the ndlp and the reference to ndlp
4314 * will be stored into the context1 field of the IOCB for the completion
4315 * callback function. However, for the RNID Accept Response ELS command,
4316 * this is undone later by this routine after the IOCB is allocated.
4317 *
4318 * Return code
4319 * 0 - Successfully issued acc rnid response
4320 * 1 - Failed to issue acc rnid response
4321 **/
dea31012005-04-17 16:05:31 -05004322static int
James Smart2e0fef82007-06-17 19:56:36 -05004323lpfc_els_rsp_rnid_acc(struct lpfc_vport *vport, uint8_t format,
James Smart329f9bc2007-04-25 09:53:01 -04004324 struct lpfc_iocbq *oldiocb, struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05004325{
James Smart2e0fef82007-06-17 19:56:36 -05004326 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05004327 RNID *rn;
James Smart2e0fef82007-06-17 19:56:36 -05004328 IOCB_t *icmd, *oldcmd;
dea31012005-04-17 16:05:31 -05004329 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05004330 uint8_t *pcmd;
4331 uint16_t cmdsize;
4332 int rc;
4333
James Smart92d7f7b2007-06-17 19:56:38 -05004334 cmdsize = sizeof(uint32_t) + sizeof(uint32_t)
4335 + (2 * sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -05004336 if (format)
James Smart92d7f7b2007-06-17 19:56:38 -05004337 cmdsize += sizeof(RNID_TOP_DISC);
dea31012005-04-17 16:05:31 -05004338
James Smart2e0fef82007-06-17 19:56:36 -05004339 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry, ndlp,
4340 ndlp->nlp_DID, ELS_CMD_ACC);
James Smart488d1462006-03-07 15:02:37 -05004341 if (!elsiocb)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004342 return 1;
dea31012005-04-17 16:05:31 -05004343
dea31012005-04-17 16:05:31 -05004344 icmd = &elsiocb->iocb;
4345 oldcmd = &oldiocb->iocb;
James Smart7851fe22011-07-22 18:36:52 -04004346 icmd->ulpContext = oldcmd->ulpContext; /* Xri / rx_id */
4347 icmd->unsli3.rcvsli3.ox_id = oldcmd->unsli3.rcvsli3.ox_id;
4348
James Smart5b8bd0c2007-04-25 09:52:49 -04004349 /* Xmit RNID ACC response tag <ulpIoTag> */
James Smarte8b62012007-08-02 11:10:09 -04004350 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
4351 "0132 Xmit RNID ACC response tag x%x xri x%x\n",
4352 elsiocb->iotag, elsiocb->iocb.ulpContext);
dea31012005-04-17 16:05:31 -05004353 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
dea31012005-04-17 16:05:31 -05004354 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
James Smart92d7f7b2007-06-17 19:56:38 -05004355 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05004356
James Smart92d7f7b2007-06-17 19:56:38 -05004357 memset(pcmd, 0, sizeof(RNID));
dea31012005-04-17 16:05:31 -05004358 rn = (RNID *) (pcmd);
4359 rn->Format = format;
James Smart92d7f7b2007-06-17 19:56:38 -05004360 rn->CommonLen = (2 * sizeof(struct lpfc_name));
4361 memcpy(&rn->portName, &vport->fc_portname, sizeof(struct lpfc_name));
4362 memcpy(&rn->nodeName, &vport->fc_nodename, sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -05004363 switch (format) {
4364 case 0:
4365 rn->SpecificLen = 0;
4366 break;
4367 case RNID_TOPOLOGY_DISC:
James Smart92d7f7b2007-06-17 19:56:38 -05004368 rn->SpecificLen = sizeof(RNID_TOP_DISC);
dea31012005-04-17 16:05:31 -05004369 memcpy(&rn->un.topologyDisc.portName,
James Smart92d7f7b2007-06-17 19:56:38 -05004370 &vport->fc_portname, sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -05004371 rn->un.topologyDisc.unitType = RNID_HBA;
4372 rn->un.topologyDisc.physPort = 0;
4373 rn->un.topologyDisc.attachedNodes = 0;
4374 break;
4375 default:
4376 rn->CommonLen = 0;
4377 rn->SpecificLen = 0;
4378 break;
4379 }
4380
James Smart858c9f62007-06-17 19:56:39 -05004381 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
4382 "Issue ACC RNID: did:x%x flg:x%x",
4383 ndlp->nlp_DID, ndlp->nlp_flag, 0);
4384
dea31012005-04-17 16:05:31 -05004385 phba->fc_stat.elsXmitACC++;
James Smart858c9f62007-06-17 19:56:39 -05004386 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
dea31012005-04-17 16:05:31 -05004387
James Smart3772a992009-05-22 14:50:54 -04004388 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
dea31012005-04-17 16:05:31 -05004389 if (rc == IOCB_ERROR) {
4390 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004391 return 1;
dea31012005-04-17 16:05:31 -05004392 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004393 return 0;
dea31012005-04-17 16:05:31 -05004394}
4395
James Smarte59058c2008-08-24 21:49:00 -04004396/**
James Smart19ca7602010-11-20 23:11:55 -05004397 * lpfc_els_clear_rrq - Clear the rq that this rrq describes.
4398 * @vport: pointer to a virtual N_Port data structure.
4399 * @iocb: pointer to the lpfc command iocb data structure.
4400 * @ndlp: pointer to a node-list data structure.
4401 *
4402 * Return
4403 **/
4404static void
4405lpfc_els_clear_rrq(struct lpfc_vport *vport,
4406 struct lpfc_iocbq *iocb, struct lpfc_nodelist *ndlp)
4407{
4408 struct lpfc_hba *phba = vport->phba;
4409 uint8_t *pcmd;
4410 struct RRQ *rrq;
4411 uint16_t rxid;
James Smart1151e3e2011-02-16 12:39:35 -05004412 uint16_t xri;
James Smart19ca7602010-11-20 23:11:55 -05004413 struct lpfc_node_rrq *prrq;
4414
4415
4416 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) iocb->context2)->virt);
4417 pcmd += sizeof(uint32_t);
4418 rrq = (struct RRQ *)pcmd;
James Smart1151e3e2011-02-16 12:39:35 -05004419 rrq->rrq_exchg = be32_to_cpu(rrq->rrq_exchg);
James Smart9589b0622011-04-16 11:03:17 -04004420 rxid = bf_get(rrq_rxid, rrq);
James Smart19ca7602010-11-20 23:11:55 -05004421
4422 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
4423 "2883 Clear RRQ for SID:x%x OXID:x%x RXID:x%x"
4424 " x%x x%x\n",
James Smart1151e3e2011-02-16 12:39:35 -05004425 be32_to_cpu(bf_get(rrq_did, rrq)),
James Smart9589b0622011-04-16 11:03:17 -04004426 bf_get(rrq_oxid, rrq),
James Smart19ca7602010-11-20 23:11:55 -05004427 rxid,
4428 iocb->iotag, iocb->iocb.ulpContext);
4429
4430 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
4431 "Clear RRQ: did:x%x flg:x%x exchg:x%.08x",
4432 ndlp->nlp_DID, ndlp->nlp_flag, rrq->rrq_exchg);
James Smart1151e3e2011-02-16 12:39:35 -05004433 if (vport->fc_myDID == be32_to_cpu(bf_get(rrq_did, rrq)))
James Smart9589b0622011-04-16 11:03:17 -04004434 xri = bf_get(rrq_oxid, rrq);
James Smart1151e3e2011-02-16 12:39:35 -05004435 else
4436 xri = rxid;
4437 prrq = lpfc_get_active_rrq(vport, xri, ndlp->nlp_DID);
James Smart19ca7602010-11-20 23:11:55 -05004438 if (prrq)
James Smart1151e3e2011-02-16 12:39:35 -05004439 lpfc_clr_rrq_active(phba, xri, prrq);
James Smart19ca7602010-11-20 23:11:55 -05004440 return;
4441}
4442
4443/**
James Smart12265f62010-10-22 11:05:53 -04004444 * lpfc_els_rsp_echo_acc - Issue echo acc response
4445 * @vport: pointer to a virtual N_Port data structure.
4446 * @data: pointer to echo data to return in the accept.
4447 * @oldiocb: pointer to the original lpfc command iocb data structure.
4448 * @ndlp: pointer to a node-list data structure.
4449 *
4450 * Return code
4451 * 0 - Successfully issued acc echo response
4452 * 1 - Failed to issue acc echo response
4453 **/
4454static int
4455lpfc_els_rsp_echo_acc(struct lpfc_vport *vport, uint8_t *data,
4456 struct lpfc_iocbq *oldiocb, struct lpfc_nodelist *ndlp)
4457{
4458 struct lpfc_hba *phba = vport->phba;
4459 struct lpfc_iocbq *elsiocb;
James Smart12265f62010-10-22 11:05:53 -04004460 uint8_t *pcmd;
4461 uint16_t cmdsize;
4462 int rc;
4463
James Smart12265f62010-10-22 11:05:53 -04004464 cmdsize = oldiocb->iocb.unsli3.rcvsli3.acc_len;
4465
James Smartbf086112011-08-21 21:48:13 -04004466 /* The accumulated length can exceed the BPL_SIZE. For
4467 * now, use this as the limit
4468 */
4469 if (cmdsize > LPFC_BPL_SIZE)
4470 cmdsize = LPFC_BPL_SIZE;
James Smart12265f62010-10-22 11:05:53 -04004471 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry, ndlp,
4472 ndlp->nlp_DID, ELS_CMD_ACC);
4473 if (!elsiocb)
4474 return 1;
4475
James Smart7851fe22011-07-22 18:36:52 -04004476 elsiocb->iocb.ulpContext = oldiocb->iocb.ulpContext; /* Xri / rx_id */
4477 elsiocb->iocb.unsli3.rcvsli3.ox_id = oldiocb->iocb.unsli3.rcvsli3.ox_id;
4478
James Smart12265f62010-10-22 11:05:53 -04004479 /* Xmit ECHO ACC response tag <ulpIoTag> */
4480 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
4481 "2876 Xmit ECHO ACC response tag x%x xri x%x\n",
4482 elsiocb->iotag, elsiocb->iocb.ulpContext);
4483 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
4484 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
4485 pcmd += sizeof(uint32_t);
4486 memcpy(pcmd, data, cmdsize - sizeof(uint32_t));
4487
4488 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
4489 "Issue ACC ECHO: did:x%x flg:x%x",
4490 ndlp->nlp_DID, ndlp->nlp_flag, 0);
4491
4492 phba->fc_stat.elsXmitACC++;
4493 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
James Smart12265f62010-10-22 11:05:53 -04004494
4495 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
4496 if (rc == IOCB_ERROR) {
4497 lpfc_els_free_iocb(phba, elsiocb);
4498 return 1;
4499 }
4500 return 0;
4501}
4502
4503/**
James Smart3621a712009-04-06 18:47:14 -04004504 * lpfc_els_disc_adisc - Issue remaining adisc iocbs to npr nodes of a vport
James Smarte59058c2008-08-24 21:49:00 -04004505 * @vport: pointer to a host virtual N_Port data structure.
4506 *
4507 * This routine issues Address Discover (ADISC) ELS commands to those
4508 * N_Ports which are in node port recovery state and ADISC has not been issued
4509 * for the @vport. Each time an ELS ADISC IOCB is issued by invoking the
4510 * lpfc_issue_els_adisc() routine, the per @vport number of discover count
4511 * (num_disc_nodes) shall be incremented. If the num_disc_nodes reaches a
4512 * pre-configured threshold (cfg_discovery_threads), the @vport fc_flag will
4513 * be marked with FC_NLP_MORE bit and the process of issuing remaining ADISC
4514 * IOCBs quit for later pick up. On the other hand, after walking through
4515 * all the ndlps with the @vport and there is none ADISC IOCB issued, the
4516 * @vport fc_flag shall be cleared with FC_NLP_MORE bit indicating there is
4517 * no more ADISC need to be sent.
4518 *
4519 * Return code
4520 * The number of N_Ports with adisc issued.
4521 **/
dea31012005-04-17 16:05:31 -05004522int
James Smart2e0fef82007-06-17 19:56:36 -05004523lpfc_els_disc_adisc(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05004524{
James Smart2e0fef82007-06-17 19:56:36 -05004525 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05004526 struct lpfc_nodelist *ndlp, *next_ndlp;
James Smart2e0fef82007-06-17 19:56:36 -05004527 int sentadisc = 0;
dea31012005-04-17 16:05:31 -05004528
James Smart685f0bf2007-04-25 09:53:08 -04004529 /* go thru NPR nodes and issue any remaining ELS ADISCs */
James Smart2e0fef82007-06-17 19:56:36 -05004530 list_for_each_entry_safe(ndlp, next_ndlp, &vport->fc_nodes, nlp_listp) {
James Smarte47c9092008-02-08 18:49:26 -05004531 if (!NLP_CHK_NODE_ACT(ndlp))
4532 continue;
James Smart685f0bf2007-04-25 09:53:08 -04004533 if (ndlp->nlp_state == NLP_STE_NPR_NODE &&
4534 (ndlp->nlp_flag & NLP_NPR_2B_DISC) != 0 &&
4535 (ndlp->nlp_flag & NLP_NPR_ADISC) != 0) {
James Smart2e0fef82007-06-17 19:56:36 -05004536 spin_lock_irq(shost->host_lock);
James Smart685f0bf2007-04-25 09:53:08 -04004537 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
James Smart2e0fef82007-06-17 19:56:36 -05004538 spin_unlock_irq(shost->host_lock);
James Smart685f0bf2007-04-25 09:53:08 -04004539 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05004540 lpfc_nlp_set_state(vport, ndlp, NLP_STE_ADISC_ISSUE);
4541 lpfc_issue_els_adisc(vport, ndlp, 0);
James Smart685f0bf2007-04-25 09:53:08 -04004542 sentadisc++;
James Smart2e0fef82007-06-17 19:56:36 -05004543 vport->num_disc_nodes++;
4544 if (vport->num_disc_nodes >=
James Smart3de2a652007-08-02 11:09:59 -04004545 vport->cfg_discovery_threads) {
James Smart2e0fef82007-06-17 19:56:36 -05004546 spin_lock_irq(shost->host_lock);
4547 vport->fc_flag |= FC_NLP_MORE;
4548 spin_unlock_irq(shost->host_lock);
James Smart685f0bf2007-04-25 09:53:08 -04004549 break;
dea31012005-04-17 16:05:31 -05004550 }
4551 }
4552 }
4553 if (sentadisc == 0) {
James Smart2e0fef82007-06-17 19:56:36 -05004554 spin_lock_irq(shost->host_lock);
4555 vport->fc_flag &= ~FC_NLP_MORE;
4556 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05004557 }
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004558 return sentadisc;
dea31012005-04-17 16:05:31 -05004559}
4560
James Smarte59058c2008-08-24 21:49:00 -04004561/**
James Smart3621a712009-04-06 18:47:14 -04004562 * lpfc_els_disc_plogi - Issue plogi for all npr nodes of a vport before adisc
James Smarte59058c2008-08-24 21:49:00 -04004563 * @vport: pointer to a host virtual N_Port data structure.
4564 *
4565 * This routine issues Port Login (PLOGI) ELS commands to all the N_Ports
4566 * which are in node port recovery state, with a @vport. Each time an ELS
4567 * ADISC PLOGI IOCB is issued by invoking the lpfc_issue_els_plogi() routine,
4568 * the per @vport number of discover count (num_disc_nodes) shall be
4569 * incremented. If the num_disc_nodes reaches a pre-configured threshold
4570 * (cfg_discovery_threads), the @vport fc_flag will be marked with FC_NLP_MORE
4571 * bit set and quit the process of issuing remaining ADISC PLOGIN IOCBs for
4572 * later pick up. On the other hand, after walking through all the ndlps with
4573 * the @vport and there is none ADISC PLOGI IOCB issued, the @vport fc_flag
4574 * shall be cleared with the FC_NLP_MORE bit indicating there is no more ADISC
4575 * PLOGI need to be sent.
4576 *
4577 * Return code
4578 * The number of N_Ports with plogi issued.
4579 **/
dea31012005-04-17 16:05:31 -05004580int
James Smart2e0fef82007-06-17 19:56:36 -05004581lpfc_els_disc_plogi(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05004582{
James Smart2e0fef82007-06-17 19:56:36 -05004583 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05004584 struct lpfc_nodelist *ndlp, *next_ndlp;
James Smart2e0fef82007-06-17 19:56:36 -05004585 int sentplogi = 0;
dea31012005-04-17 16:05:31 -05004586
James Smart2e0fef82007-06-17 19:56:36 -05004587 /* go thru NPR nodes and issue any remaining ELS PLOGIs */
4588 list_for_each_entry_safe(ndlp, next_ndlp, &vport->fc_nodes, nlp_listp) {
James Smarte47c9092008-02-08 18:49:26 -05004589 if (!NLP_CHK_NODE_ACT(ndlp))
4590 continue;
James Smart685f0bf2007-04-25 09:53:08 -04004591 if (ndlp->nlp_state == NLP_STE_NPR_NODE &&
James Smart8b017a32015-05-21 13:55:18 -04004592 (ndlp->nlp_flag & NLP_NPR_2B_DISC) != 0 &&
4593 (ndlp->nlp_flag & NLP_DELAY_TMO) == 0 &&
4594 (ndlp->nlp_flag & NLP_NPR_ADISC) == 0) {
James Smart685f0bf2007-04-25 09:53:08 -04004595 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05004596 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
4597 lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0);
James Smart685f0bf2007-04-25 09:53:08 -04004598 sentplogi++;
James Smart2e0fef82007-06-17 19:56:36 -05004599 vport->num_disc_nodes++;
4600 if (vport->num_disc_nodes >=
James Smart8b017a32015-05-21 13:55:18 -04004601 vport->cfg_discovery_threads) {
James Smart2e0fef82007-06-17 19:56:36 -05004602 spin_lock_irq(shost->host_lock);
4603 vport->fc_flag |= FC_NLP_MORE;
4604 spin_unlock_irq(shost->host_lock);
James Smart685f0bf2007-04-25 09:53:08 -04004605 break;
dea31012005-04-17 16:05:31 -05004606 }
4607 }
4608 }
James Smart87af33f2007-10-27 13:37:43 -04004609 if (sentplogi) {
4610 lpfc_set_disctmo(vport);
4611 }
4612 else {
James Smart2e0fef82007-06-17 19:56:36 -05004613 spin_lock_irq(shost->host_lock);
4614 vport->fc_flag &= ~FC_NLP_MORE;
4615 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05004616 }
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004617 return sentplogi;
dea31012005-04-17 16:05:31 -05004618}
4619
Baoyou Xiebd4b3e52016-09-25 13:44:55 +08004620static uint32_t
James Smart86478872015-05-21 13:55:21 -04004621lpfc_rdp_res_link_service(struct fc_rdp_link_service_desc *desc,
4622 uint32_t word0)
4623{
4624
4625 desc->tag = cpu_to_be32(RDP_LINK_SERVICE_DESC_TAG);
4626 desc->payload.els_req = word0;
4627 desc->length = cpu_to_be32(sizeof(desc->payload));
James Smart6c92d1d2016-07-06 12:35:55 -07004628
4629 return sizeof(struct fc_rdp_link_service_desc);
James Smart86478872015-05-21 13:55:21 -04004630}
4631
Baoyou Xiebd4b3e52016-09-25 13:44:55 +08004632static uint32_t
James Smart86478872015-05-21 13:55:21 -04004633lpfc_rdp_res_sfp_desc(struct fc_rdp_sfp_desc *desc,
4634 uint8_t *page_a0, uint8_t *page_a2)
4635{
4636 uint16_t wavelength;
4637 uint16_t temperature;
4638 uint16_t rx_power;
4639 uint16_t tx_bias;
4640 uint16_t tx_power;
4641 uint16_t vcc;
4642 uint16_t flag = 0;
4643 struct sff_trasnceiver_codes_byte4 *trasn_code_byte4;
4644 struct sff_trasnceiver_codes_byte5 *trasn_code_byte5;
4645
4646 desc->tag = cpu_to_be32(RDP_SFP_DESC_TAG);
4647
4648 trasn_code_byte4 = (struct sff_trasnceiver_codes_byte4 *)
4649 &page_a0[SSF_TRANSCEIVER_CODE_B4];
4650 trasn_code_byte5 = (struct sff_trasnceiver_codes_byte5 *)
4651 &page_a0[SSF_TRANSCEIVER_CODE_B5];
4652
4653 if ((trasn_code_byte4->fc_sw_laser) ||
4654 (trasn_code_byte5->fc_sw_laser_sl) ||
4655 (trasn_code_byte5->fc_sw_laser_sn)) { /* check if its short WL */
4656 flag |= (SFP_FLAG_PT_SWLASER << SFP_FLAG_PT_SHIFT);
4657 } else if (trasn_code_byte4->fc_lw_laser) {
4658 wavelength = (page_a0[SSF_WAVELENGTH_B1] << 8) |
4659 page_a0[SSF_WAVELENGTH_B0];
4660 if (wavelength == SFP_WAVELENGTH_LC1310)
4661 flag |= SFP_FLAG_PT_LWLASER_LC1310 << SFP_FLAG_PT_SHIFT;
4662 if (wavelength == SFP_WAVELENGTH_LL1550)
4663 flag |= SFP_FLAG_PT_LWLASER_LL1550 << SFP_FLAG_PT_SHIFT;
4664 }
4665 /* check if its SFP+ */
4666 flag |= ((page_a0[SSF_IDENTIFIER] == SFF_PG0_IDENT_SFP) ?
4667 SFP_FLAG_CT_SFP_PLUS : SFP_FLAG_CT_UNKNOWN)
4668 << SFP_FLAG_CT_SHIFT;
4669
4670 /* check if its OPTICAL */
4671 flag |= ((page_a0[SSF_CONNECTOR] == SFF_PG0_CONNECTOR_LC) ?
4672 SFP_FLAG_IS_OPTICAL_PORT : 0)
4673 << SFP_FLAG_IS_OPTICAL_SHIFT;
4674
4675 temperature = (page_a2[SFF_TEMPERATURE_B1] << 8 |
4676 page_a2[SFF_TEMPERATURE_B0]);
4677 vcc = (page_a2[SFF_VCC_B1] << 8 |
4678 page_a2[SFF_VCC_B0]);
4679 tx_power = (page_a2[SFF_TXPOWER_B1] << 8 |
4680 page_a2[SFF_TXPOWER_B0]);
4681 tx_bias = (page_a2[SFF_TX_BIAS_CURRENT_B1] << 8 |
4682 page_a2[SFF_TX_BIAS_CURRENT_B0]);
4683 rx_power = (page_a2[SFF_RXPOWER_B1] << 8 |
4684 page_a2[SFF_RXPOWER_B0]);
4685 desc->sfp_info.temperature = cpu_to_be16(temperature);
4686 desc->sfp_info.rx_power = cpu_to_be16(rx_power);
4687 desc->sfp_info.tx_bias = cpu_to_be16(tx_bias);
4688 desc->sfp_info.tx_power = cpu_to_be16(tx_power);
4689 desc->sfp_info.vcc = cpu_to_be16(vcc);
4690
4691 desc->sfp_info.flags = cpu_to_be16(flag);
4692 desc->length = cpu_to_be32(sizeof(desc->sfp_info));
James Smart6c92d1d2016-07-06 12:35:55 -07004693
4694 return sizeof(struct fc_rdp_sfp_desc);
James Smart86478872015-05-21 13:55:21 -04004695}
4696
Baoyou Xiebd4b3e52016-09-25 13:44:55 +08004697static uint32_t
James Smart86478872015-05-21 13:55:21 -04004698lpfc_rdp_res_link_error(struct fc_rdp_link_error_status_desc *desc,
4699 READ_LNK_VAR *stat)
4700{
4701 uint32_t type;
4702
4703 desc->tag = cpu_to_be32(RDP_LINK_ERROR_STATUS_DESC_TAG);
4704
4705 type = VN_PT_PHY_PF_PORT << VN_PT_PHY_SHIFT;
4706
4707 desc->info.port_type = cpu_to_be32(type);
4708
4709 desc->info.link_status.link_failure_cnt =
4710 cpu_to_be32(stat->linkFailureCnt);
4711 desc->info.link_status.loss_of_synch_cnt =
4712 cpu_to_be32(stat->lossSyncCnt);
4713 desc->info.link_status.loss_of_signal_cnt =
4714 cpu_to_be32(stat->lossSignalCnt);
4715 desc->info.link_status.primitive_seq_proto_err =
4716 cpu_to_be32(stat->primSeqErrCnt);
4717 desc->info.link_status.invalid_trans_word =
4718 cpu_to_be32(stat->invalidXmitWord);
4719 desc->info.link_status.invalid_crc_cnt = cpu_to_be32(stat->crcCnt);
4720
4721 desc->length = cpu_to_be32(sizeof(desc->info));
James Smart6c92d1d2016-07-06 12:35:55 -07004722
4723 return sizeof(struct fc_rdp_link_error_status_desc);
James Smart86478872015-05-21 13:55:21 -04004724}
4725
Baoyou Xiebd4b3e52016-09-25 13:44:55 +08004726static uint32_t
James Smart56204982016-03-31 14:12:32 -07004727lpfc_rdp_res_bbc_desc(struct fc_rdp_bbc_desc *desc, READ_LNK_VAR *stat,
4728 struct lpfc_vport *vport)
4729{
James Smart3aaaa312016-07-06 12:35:57 -07004730 uint32_t bbCredit;
4731
James Smart56204982016-03-31 14:12:32 -07004732 desc->tag = cpu_to_be32(RDP_BBC_DESC_TAG);
4733
James Smart3aaaa312016-07-06 12:35:57 -07004734 bbCredit = vport->fc_sparam.cmn.bbCreditLsb |
4735 (vport->fc_sparam.cmn.bbCreditMsb << 8);
4736 desc->bbc_info.port_bbc = cpu_to_be32(bbCredit);
4737 if (vport->phba->fc_topology != LPFC_TOPOLOGY_LOOP) {
4738 bbCredit = vport->phba->fc_fabparam.cmn.bbCreditLsb |
4739 (vport->phba->fc_fabparam.cmn.bbCreditMsb << 8);
4740 desc->bbc_info.attached_port_bbc = cpu_to_be32(bbCredit);
4741 } else {
James Smart56204982016-03-31 14:12:32 -07004742 desc->bbc_info.attached_port_bbc = 0;
James Smart3aaaa312016-07-06 12:35:57 -07004743 }
James Smart56204982016-03-31 14:12:32 -07004744
4745 desc->bbc_info.rtt = 0;
4746 desc->length = cpu_to_be32(sizeof(desc->bbc_info));
James Smart6c92d1d2016-07-06 12:35:55 -07004747
4748 return sizeof(struct fc_rdp_bbc_desc);
James Smart56204982016-03-31 14:12:32 -07004749}
4750
Baoyou Xiebd4b3e52016-09-25 13:44:55 +08004751static uint32_t
James Smart310429e2016-07-06 12:35:54 -07004752lpfc_rdp_res_oed_temp_desc(struct lpfc_hba *phba,
4753 struct fc_rdp_oed_sfp_desc *desc, uint8_t *page_a2)
James Smart56204982016-03-31 14:12:32 -07004754{
James Smart310429e2016-07-06 12:35:54 -07004755 uint32_t flags = 0;
James Smart56204982016-03-31 14:12:32 -07004756
4757 desc->tag = cpu_to_be32(RDP_OED_DESC_TAG);
4758
James Smart3aaaa312016-07-06 12:35:57 -07004759 desc->oed_info.hi_alarm = page_a2[SSF_TEMP_HIGH_ALARM];
4760 desc->oed_info.lo_alarm = page_a2[SSF_TEMP_LOW_ALARM];
4761 desc->oed_info.hi_warning = page_a2[SSF_TEMP_HIGH_WARNING];
4762 desc->oed_info.lo_warning = page_a2[SSF_TEMP_LOW_WARNING];
James Smart310429e2016-07-06 12:35:54 -07004763
4764 if (phba->sfp_alarm & LPFC_TRANSGRESSION_HIGH_TEMPERATURE)
4765 flags |= RDP_OET_HIGH_ALARM;
4766 if (phba->sfp_alarm & LPFC_TRANSGRESSION_LOW_TEMPERATURE)
4767 flags |= RDP_OET_LOW_ALARM;
4768 if (phba->sfp_warning & LPFC_TRANSGRESSION_HIGH_TEMPERATURE)
4769 flags |= RDP_OET_HIGH_WARNING;
4770 if (phba->sfp_warning & LPFC_TRANSGRESSION_LOW_TEMPERATURE)
4771 flags |= RDP_OET_LOW_WARNING;
4772
James Smart56204982016-03-31 14:12:32 -07004773 flags |= ((0xf & RDP_OED_TEMPERATURE) << RDP_OED_TYPE_SHIFT);
4774 desc->oed_info.function_flags = cpu_to_be32(flags);
4775 desc->length = cpu_to_be32(sizeof(desc->oed_info));
James Smart6c92d1d2016-07-06 12:35:55 -07004776 return sizeof(struct fc_rdp_oed_sfp_desc);
James Smart56204982016-03-31 14:12:32 -07004777}
4778
Baoyou Xiebd4b3e52016-09-25 13:44:55 +08004779static uint32_t
James Smart310429e2016-07-06 12:35:54 -07004780lpfc_rdp_res_oed_voltage_desc(struct lpfc_hba *phba,
4781 struct fc_rdp_oed_sfp_desc *desc,
James Smart56204982016-03-31 14:12:32 -07004782 uint8_t *page_a2)
4783{
James Smart310429e2016-07-06 12:35:54 -07004784 uint32_t flags = 0;
James Smart56204982016-03-31 14:12:32 -07004785
4786 desc->tag = cpu_to_be32(RDP_OED_DESC_TAG);
4787
James Smart3aaaa312016-07-06 12:35:57 -07004788 desc->oed_info.hi_alarm = page_a2[SSF_VOLTAGE_HIGH_ALARM];
4789 desc->oed_info.lo_alarm = page_a2[SSF_VOLTAGE_LOW_ALARM];
4790 desc->oed_info.hi_warning = page_a2[SSF_VOLTAGE_HIGH_WARNING];
4791 desc->oed_info.lo_warning = page_a2[SSF_VOLTAGE_LOW_WARNING];
James Smart310429e2016-07-06 12:35:54 -07004792
4793 if (phba->sfp_alarm & LPFC_TRANSGRESSION_HIGH_VOLTAGE)
4794 flags |= RDP_OET_HIGH_ALARM;
4795 if (phba->sfp_alarm & LPFC_TRANSGRESSION_LOW_VOLTAGE)
4796 flags |= RDP_OET_LOW_ALARM;
4797 if (phba->sfp_warning & LPFC_TRANSGRESSION_HIGH_VOLTAGE)
4798 flags |= RDP_OET_HIGH_WARNING;
4799 if (phba->sfp_warning & LPFC_TRANSGRESSION_LOW_VOLTAGE)
4800 flags |= RDP_OET_LOW_WARNING;
4801
James Smart56204982016-03-31 14:12:32 -07004802 flags |= ((0xf & RDP_OED_VOLTAGE) << RDP_OED_TYPE_SHIFT);
4803 desc->oed_info.function_flags = cpu_to_be32(flags);
4804 desc->length = cpu_to_be32(sizeof(desc->oed_info));
James Smart6c92d1d2016-07-06 12:35:55 -07004805 return sizeof(struct fc_rdp_oed_sfp_desc);
James Smart56204982016-03-31 14:12:32 -07004806}
4807
Baoyou Xiebd4b3e52016-09-25 13:44:55 +08004808static uint32_t
James Smart310429e2016-07-06 12:35:54 -07004809lpfc_rdp_res_oed_txbias_desc(struct lpfc_hba *phba,
4810 struct fc_rdp_oed_sfp_desc *desc,
James Smart56204982016-03-31 14:12:32 -07004811 uint8_t *page_a2)
4812{
James Smart310429e2016-07-06 12:35:54 -07004813 uint32_t flags = 0;
James Smart56204982016-03-31 14:12:32 -07004814
4815 desc->tag = cpu_to_be32(RDP_OED_DESC_TAG);
4816
James Smart3aaaa312016-07-06 12:35:57 -07004817 desc->oed_info.hi_alarm = page_a2[SSF_BIAS_HIGH_ALARM];
4818 desc->oed_info.lo_alarm = page_a2[SSF_BIAS_LOW_ALARM];
4819 desc->oed_info.hi_warning = page_a2[SSF_BIAS_HIGH_WARNING];
4820 desc->oed_info.lo_warning = page_a2[SSF_BIAS_LOW_WARNING];
James Smart310429e2016-07-06 12:35:54 -07004821
4822 if (phba->sfp_alarm & LPFC_TRANSGRESSION_HIGH_TXBIAS)
4823 flags |= RDP_OET_HIGH_ALARM;
4824 if (phba->sfp_alarm & LPFC_TRANSGRESSION_LOW_TXBIAS)
4825 flags |= RDP_OET_LOW_ALARM;
4826 if (phba->sfp_warning & LPFC_TRANSGRESSION_HIGH_TXBIAS)
4827 flags |= RDP_OET_HIGH_WARNING;
4828 if (phba->sfp_warning & LPFC_TRANSGRESSION_LOW_TXBIAS)
4829 flags |= RDP_OET_LOW_WARNING;
4830
James Smart56204982016-03-31 14:12:32 -07004831 flags |= ((0xf & RDP_OED_TXBIAS) << RDP_OED_TYPE_SHIFT);
4832 desc->oed_info.function_flags = cpu_to_be32(flags);
4833 desc->length = cpu_to_be32(sizeof(desc->oed_info));
James Smart6c92d1d2016-07-06 12:35:55 -07004834 return sizeof(struct fc_rdp_oed_sfp_desc);
James Smart56204982016-03-31 14:12:32 -07004835}
4836
Baoyou Xiebd4b3e52016-09-25 13:44:55 +08004837static uint32_t
James Smart310429e2016-07-06 12:35:54 -07004838lpfc_rdp_res_oed_txpower_desc(struct lpfc_hba *phba,
4839 struct fc_rdp_oed_sfp_desc *desc,
James Smart56204982016-03-31 14:12:32 -07004840 uint8_t *page_a2)
4841{
James Smart310429e2016-07-06 12:35:54 -07004842 uint32_t flags = 0;
James Smart56204982016-03-31 14:12:32 -07004843
4844 desc->tag = cpu_to_be32(RDP_OED_DESC_TAG);
4845
James Smart3aaaa312016-07-06 12:35:57 -07004846 desc->oed_info.hi_alarm = page_a2[SSF_TXPOWER_HIGH_ALARM];
4847 desc->oed_info.lo_alarm = page_a2[SSF_TXPOWER_LOW_ALARM];
4848 desc->oed_info.hi_warning = page_a2[SSF_TXPOWER_HIGH_WARNING];
4849 desc->oed_info.lo_warning = page_a2[SSF_TXPOWER_LOW_WARNING];
James Smart310429e2016-07-06 12:35:54 -07004850
4851 if (phba->sfp_alarm & LPFC_TRANSGRESSION_HIGH_TXPOWER)
4852 flags |= RDP_OET_HIGH_ALARM;
4853 if (phba->sfp_alarm & LPFC_TRANSGRESSION_LOW_TXPOWER)
4854 flags |= RDP_OET_LOW_ALARM;
4855 if (phba->sfp_warning & LPFC_TRANSGRESSION_HIGH_TXPOWER)
4856 flags |= RDP_OET_HIGH_WARNING;
4857 if (phba->sfp_warning & LPFC_TRANSGRESSION_LOW_TXPOWER)
4858 flags |= RDP_OET_LOW_WARNING;
4859
James Smart56204982016-03-31 14:12:32 -07004860 flags |= ((0xf & RDP_OED_TXPOWER) << RDP_OED_TYPE_SHIFT);
4861 desc->oed_info.function_flags = cpu_to_be32(flags);
4862 desc->length = cpu_to_be32(sizeof(desc->oed_info));
James Smart6c92d1d2016-07-06 12:35:55 -07004863 return sizeof(struct fc_rdp_oed_sfp_desc);
James Smart56204982016-03-31 14:12:32 -07004864}
4865
4866
Baoyou Xiebd4b3e52016-09-25 13:44:55 +08004867static uint32_t
James Smart310429e2016-07-06 12:35:54 -07004868lpfc_rdp_res_oed_rxpower_desc(struct lpfc_hba *phba,
4869 struct fc_rdp_oed_sfp_desc *desc,
James Smart56204982016-03-31 14:12:32 -07004870 uint8_t *page_a2)
4871{
James Smart310429e2016-07-06 12:35:54 -07004872 uint32_t flags = 0;
James Smart56204982016-03-31 14:12:32 -07004873
4874 desc->tag = cpu_to_be32(RDP_OED_DESC_TAG);
4875
James Smart3aaaa312016-07-06 12:35:57 -07004876 desc->oed_info.hi_alarm = page_a2[SSF_RXPOWER_HIGH_ALARM];
4877 desc->oed_info.lo_alarm = page_a2[SSF_RXPOWER_LOW_ALARM];
4878 desc->oed_info.hi_warning = page_a2[SSF_RXPOWER_HIGH_WARNING];
4879 desc->oed_info.lo_warning = page_a2[SSF_RXPOWER_LOW_WARNING];
James Smart310429e2016-07-06 12:35:54 -07004880
4881 if (phba->sfp_alarm & LPFC_TRANSGRESSION_HIGH_RXPOWER)
4882 flags |= RDP_OET_HIGH_ALARM;
4883 if (phba->sfp_alarm & LPFC_TRANSGRESSION_LOW_RXPOWER)
4884 flags |= RDP_OET_LOW_ALARM;
4885 if (phba->sfp_warning & LPFC_TRANSGRESSION_HIGH_RXPOWER)
4886 flags |= RDP_OET_HIGH_WARNING;
4887 if (phba->sfp_warning & LPFC_TRANSGRESSION_LOW_RXPOWER)
4888 flags |= RDP_OET_LOW_WARNING;
4889
James Smart56204982016-03-31 14:12:32 -07004890 flags |= ((0xf & RDP_OED_RXPOWER) << RDP_OED_TYPE_SHIFT);
4891 desc->oed_info.function_flags = cpu_to_be32(flags);
4892 desc->length = cpu_to_be32(sizeof(desc->oed_info));
James Smart6c92d1d2016-07-06 12:35:55 -07004893 return sizeof(struct fc_rdp_oed_sfp_desc);
James Smart56204982016-03-31 14:12:32 -07004894}
4895
Baoyou Xiebd4b3e52016-09-25 13:44:55 +08004896static uint32_t
James Smart56204982016-03-31 14:12:32 -07004897lpfc_rdp_res_opd_desc(struct fc_rdp_opd_sfp_desc *desc,
4898 uint8_t *page_a0, struct lpfc_vport *vport)
4899{
4900 desc->tag = cpu_to_be32(RDP_OPD_DESC_TAG);
4901 memcpy(desc->opd_info.vendor_name, &page_a0[SSF_VENDOR_NAME], 16);
4902 memcpy(desc->opd_info.model_number, &page_a0[SSF_VENDOR_PN], 16);
4903 memcpy(desc->opd_info.serial_number, &page_a0[SSF_VENDOR_SN], 16);
4904 memcpy(desc->opd_info.revision, &page_a0[SSF_VENDOR_REV], 2);
4905 memcpy(desc->opd_info.date, &page_a0[SSF_DATE_CODE], 8);
4906 desc->length = cpu_to_be32(sizeof(desc->opd_info));
James Smart6c92d1d2016-07-06 12:35:55 -07004907 return sizeof(struct fc_rdp_opd_sfp_desc);
James Smart56204982016-03-31 14:12:32 -07004908}
4909
Baoyou Xiebd4b3e52016-09-25 13:44:55 +08004910static uint32_t
James Smart4258e982015-12-16 18:11:58 -05004911lpfc_rdp_res_fec_desc(struct fc_fec_rdp_desc *desc, READ_LNK_VAR *stat)
4912{
4913 if (bf_get(lpfc_read_link_stat_gec2, stat) == 0)
4914 return 0;
4915 desc->tag = cpu_to_be32(RDP_FEC_DESC_TAG);
4916
4917 desc->info.CorrectedBlocks =
4918 cpu_to_be32(stat->fecCorrBlkCount);
4919 desc->info.UncorrectableBlocks =
4920 cpu_to_be32(stat->fecUncorrBlkCount);
4921
4922 desc->length = cpu_to_be32(sizeof(desc->info));
4923
4924 return sizeof(struct fc_fec_rdp_desc);
4925}
4926
Baoyou Xiebd4b3e52016-09-25 13:44:55 +08004927static uint32_t
James Smart86478872015-05-21 13:55:21 -04004928lpfc_rdp_res_speed(struct fc_rdp_port_speed_desc *desc, struct lpfc_hba *phba)
4929{
4930 uint16_t rdp_cap = 0;
4931 uint16_t rdp_speed;
4932
4933 desc->tag = cpu_to_be32(RDP_PORT_SPEED_DESC_TAG);
4934
James Smart81e75172015-12-16 18:11:59 -05004935 switch (phba->fc_linkspeed) {
4936 case LPFC_LINK_SPEED_1GHZ:
James Smart86478872015-05-21 13:55:21 -04004937 rdp_speed = RDP_PS_1GB;
4938 break;
James Smart81e75172015-12-16 18:11:59 -05004939 case LPFC_LINK_SPEED_2GHZ:
James Smart86478872015-05-21 13:55:21 -04004940 rdp_speed = RDP_PS_2GB;
4941 break;
James Smart81e75172015-12-16 18:11:59 -05004942 case LPFC_LINK_SPEED_4GHZ:
James Smart86478872015-05-21 13:55:21 -04004943 rdp_speed = RDP_PS_4GB;
4944 break;
James Smart81e75172015-12-16 18:11:59 -05004945 case LPFC_LINK_SPEED_8GHZ:
James Smart86478872015-05-21 13:55:21 -04004946 rdp_speed = RDP_PS_8GB;
4947 break;
James Smart81e75172015-12-16 18:11:59 -05004948 case LPFC_LINK_SPEED_10GHZ:
James Smart86478872015-05-21 13:55:21 -04004949 rdp_speed = RDP_PS_10GB;
4950 break;
James Smart81e75172015-12-16 18:11:59 -05004951 case LPFC_LINK_SPEED_16GHZ:
James Smart86478872015-05-21 13:55:21 -04004952 rdp_speed = RDP_PS_16GB;
4953 break;
James Smarta085e872015-12-16 18:12:02 -05004954 case LPFC_LINK_SPEED_32GHZ:
4955 rdp_speed = RDP_PS_32GB;
4956 break;
James Smart86478872015-05-21 13:55:21 -04004957 default:
4958 rdp_speed = RDP_PS_UNKNOWN;
4959 break;
4960 }
4961
4962 desc->info.port_speed.speed = cpu_to_be16(rdp_speed);
4963
James Smartd38dd522015-08-31 16:48:17 -04004964 if (phba->lmt & LMT_32Gb)
4965 rdp_cap |= RDP_PS_32GB;
James Smart86478872015-05-21 13:55:21 -04004966 if (phba->lmt & LMT_16Gb)
4967 rdp_cap |= RDP_PS_16GB;
4968 if (phba->lmt & LMT_10Gb)
4969 rdp_cap |= RDP_PS_10GB;
4970 if (phba->lmt & LMT_8Gb)
4971 rdp_cap |= RDP_PS_8GB;
4972 if (phba->lmt & LMT_4Gb)
4973 rdp_cap |= RDP_PS_4GB;
4974 if (phba->lmt & LMT_2Gb)
4975 rdp_cap |= RDP_PS_2GB;
4976 if (phba->lmt & LMT_1Gb)
4977 rdp_cap |= RDP_PS_1GB;
4978
4979 if (rdp_cap == 0)
4980 rdp_cap = RDP_CAP_UNKNOWN;
James Smart56204982016-03-31 14:12:32 -07004981 if (phba->cfg_link_speed != LPFC_USER_LINK_SPEED_AUTO)
4982 rdp_cap |= RDP_CAP_USER_CONFIGURED;
James Smart86478872015-05-21 13:55:21 -04004983
4984 desc->info.port_speed.capabilities = cpu_to_be16(rdp_cap);
4985 desc->length = cpu_to_be32(sizeof(desc->info));
James Smart6c92d1d2016-07-06 12:35:55 -07004986 return sizeof(struct fc_rdp_port_speed_desc);
James Smart86478872015-05-21 13:55:21 -04004987}
4988
Baoyou Xiebd4b3e52016-09-25 13:44:55 +08004989static uint32_t
James Smart86478872015-05-21 13:55:21 -04004990lpfc_rdp_res_diag_port_names(struct fc_rdp_port_name_desc *desc,
4991 struct lpfc_hba *phba)
4992{
4993
4994 desc->tag = cpu_to_be32(RDP_PORT_NAMES_DESC_TAG);
4995
4996 memcpy(desc->port_names.wwnn, phba->wwnn,
4997 sizeof(desc->port_names.wwnn));
4998
4999 memcpy(desc->port_names.wwpn, &phba->wwpn,
5000 sizeof(desc->port_names.wwpn));
5001
5002 desc->length = cpu_to_be32(sizeof(desc->port_names));
James Smart6c92d1d2016-07-06 12:35:55 -07005003 return sizeof(struct fc_rdp_port_name_desc);
James Smart86478872015-05-21 13:55:21 -04005004}
5005
Baoyou Xiebd4b3e52016-09-25 13:44:55 +08005006static uint32_t
James Smart86478872015-05-21 13:55:21 -04005007lpfc_rdp_res_attach_port_names(struct fc_rdp_port_name_desc *desc,
5008 struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
5009{
5010
5011 desc->tag = cpu_to_be32(RDP_PORT_NAMES_DESC_TAG);
5012 if (vport->fc_flag & FC_FABRIC) {
5013 memcpy(desc->port_names.wwnn, &vport->fabric_nodename,
5014 sizeof(desc->port_names.wwnn));
5015
5016 memcpy(desc->port_names.wwpn, &vport->fabric_portname,
5017 sizeof(desc->port_names.wwpn));
5018 } else { /* Point to Point */
5019 memcpy(desc->port_names.wwnn, &ndlp->nlp_nodename,
5020 sizeof(desc->port_names.wwnn));
5021
5022 memcpy(desc->port_names.wwnn, &ndlp->nlp_portname,
5023 sizeof(desc->port_names.wwpn));
5024 }
5025
5026 desc->length = cpu_to_be32(sizeof(desc->port_names));
James Smart6c92d1d2016-07-06 12:35:55 -07005027 return sizeof(struct fc_rdp_port_name_desc);
James Smart86478872015-05-21 13:55:21 -04005028}
5029
Baoyou Xiebd4b3e52016-09-25 13:44:55 +08005030static void
James Smart86478872015-05-21 13:55:21 -04005031lpfc_els_rdp_cmpl(struct lpfc_hba *phba, struct lpfc_rdp_context *rdp_context,
5032 int status)
5033{
5034 struct lpfc_nodelist *ndlp = rdp_context->ndlp;
5035 struct lpfc_vport *vport = ndlp->vport;
5036 struct lpfc_iocbq *elsiocb;
James Smarteb8d68c2015-12-16 18:12:00 -05005037 struct ulp_bde64 *bpl;
James Smart86478872015-05-21 13:55:21 -04005038 IOCB_t *icmd;
5039 uint8_t *pcmd;
5040 struct ls_rjt *stat;
5041 struct fc_rdp_res_frame *rdp_res;
James Smart6c92d1d2016-07-06 12:35:55 -07005042 uint32_t cmdsize, len;
James Smart310429e2016-07-06 12:35:54 -07005043 uint16_t *flag_ptr;
James Smart6c92d1d2016-07-06 12:35:55 -07005044 int rc;
James Smart86478872015-05-21 13:55:21 -04005045
5046 if (status != SUCCESS)
5047 goto error;
James Smarteb8d68c2015-12-16 18:12:00 -05005048
5049 /* This will change once we know the true size of the RDP payload */
James Smart86478872015-05-21 13:55:21 -04005050 cmdsize = sizeof(struct fc_rdp_res_frame);
5051
5052 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize,
5053 lpfc_max_els_tries, rdp_context->ndlp,
5054 rdp_context->ndlp->nlp_DID, ELS_CMD_ACC);
5055 lpfc_nlp_put(ndlp);
5056 if (!elsiocb)
5057 goto free_rdp_context;
5058
5059 icmd = &elsiocb->iocb;
5060 icmd->ulpContext = rdp_context->rx_id;
5061 icmd->unsli3.rcvsli3.ox_id = rdp_context->ox_id;
5062
5063 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
5064 "2171 Xmit RDP response tag x%x xri x%x, "
5065 "did x%x, nlp_flag x%x, nlp_state x%x, rpi x%x",
5066 elsiocb->iotag, elsiocb->iocb.ulpContext,
5067 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
5068 ndlp->nlp_rpi);
5069 rdp_res = (struct fc_rdp_res_frame *)
5070 (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
5071 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
5072 memset(pcmd, 0, sizeof(struct fc_rdp_res_frame));
5073 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
5074
James Smart310429e2016-07-06 12:35:54 -07005075 /* Update Alarm and Warning */
5076 flag_ptr = (uint16_t *)(rdp_context->page_a2 + SSF_ALARM_FLAGS);
5077 phba->sfp_alarm |= *flag_ptr;
5078 flag_ptr = (uint16_t *)(rdp_context->page_a2 + SSF_WARNING_FLAGS);
5079 phba->sfp_warning |= *flag_ptr;
5080
James Smart86478872015-05-21 13:55:21 -04005081 /* For RDP payload */
James Smart6c92d1d2016-07-06 12:35:55 -07005082 len = 8;
5083 len += lpfc_rdp_res_link_service((struct fc_rdp_link_service_desc *)
5084 (len + pcmd), ELS_CMD_RDP);
James Smart86478872015-05-21 13:55:21 -04005085
James Smart6c92d1d2016-07-06 12:35:55 -07005086 len += lpfc_rdp_res_sfp_desc((struct fc_rdp_sfp_desc *)(len + pcmd),
James Smart86478872015-05-21 13:55:21 -04005087 rdp_context->page_a0, rdp_context->page_a2);
James Smart6c92d1d2016-07-06 12:35:55 -07005088 len += lpfc_rdp_res_speed((struct fc_rdp_port_speed_desc *)(len + pcmd),
5089 phba);
5090 len += lpfc_rdp_res_link_error((struct fc_rdp_link_error_status_desc *)
5091 (len + pcmd), &rdp_context->link_stat);
5092 len += lpfc_rdp_res_diag_port_names((struct fc_rdp_port_name_desc *)
5093 (len + pcmd), phba);
5094 len += lpfc_rdp_res_attach_port_names((struct fc_rdp_port_name_desc *)
5095 (len + pcmd), vport, ndlp);
5096 len += lpfc_rdp_res_fec_desc((struct fc_fec_rdp_desc *)(len + pcmd),
James Smart4258e982015-12-16 18:11:58 -05005097 &rdp_context->link_stat);
James Smart6c92d1d2016-07-06 12:35:55 -07005098 /* Check if nport is logged, BZ190632 */
5099 if (!(ndlp->nlp_flag & NLP_RPI_REGISTERED))
5100 goto lpfc_skip_descriptor;
5101
5102 len += lpfc_rdp_res_bbc_desc((struct fc_rdp_bbc_desc *)(len + pcmd),
5103 &rdp_context->link_stat, vport);
5104 len += lpfc_rdp_res_oed_temp_desc(phba,
5105 (struct fc_rdp_oed_sfp_desc *)(len + pcmd),
5106 rdp_context->page_a2);
5107 len += lpfc_rdp_res_oed_voltage_desc(phba,
5108 (struct fc_rdp_oed_sfp_desc *)(len + pcmd),
5109 rdp_context->page_a2);
5110 len += lpfc_rdp_res_oed_txbias_desc(phba,
5111 (struct fc_rdp_oed_sfp_desc *)(len + pcmd),
5112 rdp_context->page_a2);
5113 len += lpfc_rdp_res_oed_txpower_desc(phba,
5114 (struct fc_rdp_oed_sfp_desc *)(len + pcmd),
5115 rdp_context->page_a2);
5116 len += lpfc_rdp_res_oed_rxpower_desc(phba,
5117 (struct fc_rdp_oed_sfp_desc *)(len + pcmd),
5118 rdp_context->page_a2);
5119 len += lpfc_rdp_res_opd_desc((struct fc_rdp_opd_sfp_desc *)(len + pcmd),
5120 rdp_context->page_a0, vport);
5121
5122lpfc_skip_descriptor:
5123 rdp_res->length = cpu_to_be32(len - 8);
James Smart86478872015-05-21 13:55:21 -04005124 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
5125
James Smarteb8d68c2015-12-16 18:12:00 -05005126 /* Now that we know the true size of the payload, update the BPL */
5127 bpl = (struct ulp_bde64 *)
5128 (((struct lpfc_dmabuf *)(elsiocb->context3))->virt);
James Smart6c92d1d2016-07-06 12:35:55 -07005129 bpl->tus.f.bdeSize = len;
James Smarteb8d68c2015-12-16 18:12:00 -05005130 bpl->tus.f.bdeFlags = 0;
5131 bpl->tus.w = le32_to_cpu(bpl->tus.w);
5132
James Smart86478872015-05-21 13:55:21 -04005133 phba->fc_stat.elsXmitACC++;
5134 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
5135 if (rc == IOCB_ERROR)
5136 lpfc_els_free_iocb(phba, elsiocb);
5137
5138 kfree(rdp_context);
5139
5140 return;
5141error:
5142 cmdsize = 2 * sizeof(uint32_t);
5143 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, lpfc_max_els_tries,
5144 ndlp, ndlp->nlp_DID, ELS_CMD_LS_RJT);
5145 lpfc_nlp_put(ndlp);
5146 if (!elsiocb)
5147 goto free_rdp_context;
5148
5149 icmd = &elsiocb->iocb;
5150 icmd->ulpContext = rdp_context->rx_id;
5151 icmd->unsli3.rcvsli3.ox_id = rdp_context->ox_id;
5152 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
5153
5154 *((uint32_t *) (pcmd)) = ELS_CMD_LS_RJT;
5155 stat = (struct ls_rjt *)(pcmd + sizeof(uint32_t));
5156 stat->un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
5157
5158 phba->fc_stat.elsXmitLSRJT++;
5159 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
5160 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
5161
5162 if (rc == IOCB_ERROR)
5163 lpfc_els_free_iocb(phba, elsiocb);
5164free_rdp_context:
5165 kfree(rdp_context);
5166}
5167
Baoyou Xiebd4b3e52016-09-25 13:44:55 +08005168static int
James Smart86478872015-05-21 13:55:21 -04005169lpfc_get_rdp_info(struct lpfc_hba *phba, struct lpfc_rdp_context *rdp_context)
5170{
5171 LPFC_MBOXQ_t *mbox = NULL;
5172 int rc;
5173
5174 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5175 if (!mbox) {
5176 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_ELS,
5177 "7105 failed to allocate mailbox memory");
5178 return 1;
5179 }
5180
5181 if (lpfc_sli4_dump_page_a0(phba, mbox))
5182 goto prep_mbox_fail;
5183 mbox->vport = rdp_context->ndlp->vport;
5184 mbox->mbox_cmpl = lpfc_mbx_cmpl_rdp_page_a0;
5185 mbox->context2 = (struct lpfc_rdp_context *) rdp_context;
5186 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
5187 if (rc == MBX_NOT_FINISHED)
5188 goto issue_mbox_fail;
5189
5190 return 0;
5191
5192prep_mbox_fail:
5193issue_mbox_fail:
5194 mempool_free(mbox, phba->mbox_mem_pool);
5195 return 1;
5196}
5197
5198/*
5199 * lpfc_els_rcv_rdp - Process an unsolicited RDP ELS.
5200 * @vport: pointer to a host virtual N_Port data structure.
5201 * @cmdiocb: pointer to lpfc command iocb data structure.
5202 * @ndlp: pointer to a node-list data structure.
5203 *
5204 * This routine processes an unsolicited RDP(Read Diagnostic Parameters)
5205 * IOCB. First, the payload of the unsolicited RDP is checked.
5206 * Then it will (1) send MBX_DUMP_MEMORY, Embedded DMP_LMSD sub command TYPE-3
5207 * for Page A0, (2) send MBX_DUMP_MEMORY, DMP_LMSD for Page A2,
5208 * (3) send MBX_READ_LNK_STAT to get link stat, (4) Call lpfc_els_rdp_cmpl
5209 * gather all data and send RDP response.
5210 *
5211 * Return code
5212 * 0 - Sent the acc response
5213 * 1 - Sent the reject response.
5214 */
5215static int
5216lpfc_els_rcv_rdp(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
5217 struct lpfc_nodelist *ndlp)
5218{
5219 struct lpfc_hba *phba = vport->phba;
5220 struct lpfc_dmabuf *pcmd;
5221 uint8_t rjt_err, rjt_expl = LSEXP_NOTHING_MORE;
5222 struct fc_rdp_req_frame *rdp_req;
5223 struct lpfc_rdp_context *rdp_context;
5224 IOCB_t *cmd = NULL;
5225 struct ls_rjt stat;
5226
5227 if (phba->sli_rev < LPFC_SLI_REV4 ||
5228 (bf_get(lpfc_sli_intf_if_type,
5229 &phba->sli4_hba.sli_intf) !=
5230 LPFC_SLI_INTF_IF_TYPE_2)) {
5231 rjt_err = LSRJT_UNABLE_TPC;
5232 rjt_expl = LSEXP_REQ_UNSUPPORTED;
5233 goto error;
5234 }
5235
5236 if (phba->sli_rev < LPFC_SLI_REV4 || (phba->hba_flag & HBA_FCOE_MODE)) {
5237 rjt_err = LSRJT_UNABLE_TPC;
5238 rjt_expl = LSEXP_REQ_UNSUPPORTED;
5239 goto error;
5240 }
5241
5242 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
5243 rdp_req = (struct fc_rdp_req_frame *) pcmd->virt;
5244
5245
5246 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
5247 "2422 ELS RDP Request "
5248 "dec len %d tag x%x port_id %d len %d\n",
5249 be32_to_cpu(rdp_req->rdp_des_length),
5250 be32_to_cpu(rdp_req->nport_id_desc.tag),
5251 be32_to_cpu(rdp_req->nport_id_desc.nport_id),
5252 be32_to_cpu(rdp_req->nport_id_desc.length));
5253
James Smart7d933312016-07-06 12:35:58 -07005254 if (!(ndlp->nlp_flag & NLP_RPI_REGISTERED) &&
5255 !phba->cfg_enable_SmartSAN) {
5256 rjt_err = LSRJT_UNABLE_TPC;
5257 rjt_expl = LSEXP_PORT_LOGIN_REQ;
5258 goto error;
5259 }
James Smart86478872015-05-21 13:55:21 -04005260 if (sizeof(struct fc_rdp_nport_desc) !=
5261 be32_to_cpu(rdp_req->rdp_des_length))
5262 goto rjt_logerr;
5263 if (RDP_N_PORT_DESC_TAG != be32_to_cpu(rdp_req->nport_id_desc.tag))
5264 goto rjt_logerr;
5265 if (RDP_NPORT_ID_SIZE !=
5266 be32_to_cpu(rdp_req->nport_id_desc.length))
5267 goto rjt_logerr;
Punit Vara699acd62015-12-16 18:12:07 -05005268 rdp_context = kzalloc(sizeof(struct lpfc_rdp_context), GFP_KERNEL);
James Smart86478872015-05-21 13:55:21 -04005269 if (!rdp_context) {
5270 rjt_err = LSRJT_UNABLE_TPC;
5271 goto error;
5272 }
5273
James Smart86478872015-05-21 13:55:21 -04005274 cmd = &cmdiocb->iocb;
5275 rdp_context->ndlp = lpfc_nlp_get(ndlp);
5276 rdp_context->ox_id = cmd->unsli3.rcvsli3.ox_id;
5277 rdp_context->rx_id = cmd->ulpContext;
5278 rdp_context->cmpl = lpfc_els_rdp_cmpl;
5279 if (lpfc_get_rdp_info(phba, rdp_context)) {
5280 lpfc_printf_vlog(ndlp->vport, KERN_WARNING, LOG_ELS,
5281 "2423 Unable to send mailbox");
5282 kfree(rdp_context);
5283 rjt_err = LSRJT_UNABLE_TPC;
5284 lpfc_nlp_put(ndlp);
5285 goto error;
5286 }
5287
5288 return 0;
5289
5290rjt_logerr:
5291 rjt_err = LSRJT_LOGICAL_ERR;
5292
5293error:
5294 memset(&stat, 0, sizeof(stat));
5295 stat.un.b.lsRjtRsnCode = rjt_err;
5296 stat.un.b.lsRjtRsnCodeExp = rjt_expl;
5297 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
5298 return 1;
5299}
5300
5301
James Smart8b017a32015-05-21 13:55:18 -04005302static void
5303lpfc_els_lcb_rsp(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
5304{
5305 MAILBOX_t *mb;
5306 IOCB_t *icmd;
5307 uint8_t *pcmd;
5308 struct lpfc_iocbq *elsiocb;
5309 struct lpfc_nodelist *ndlp;
5310 struct ls_rjt *stat;
James Smart481ad962015-05-22 10:42:35 -04005311 union lpfc_sli4_cfg_shdr *shdr;
James Smart8b017a32015-05-21 13:55:18 -04005312 struct lpfc_lcb_context *lcb_context;
5313 struct fc_lcb_res_frame *lcb_res;
James Smart481ad962015-05-22 10:42:35 -04005314 uint32_t cmdsize, shdr_status, shdr_add_status;
James Smart8b017a32015-05-21 13:55:18 -04005315 int rc;
5316
5317 mb = &pmb->u.mb;
James Smart8b017a32015-05-21 13:55:18 -04005318 lcb_context = (struct lpfc_lcb_context *)pmb->context1;
5319 ndlp = lcb_context->ndlp;
5320 pmb->context1 = NULL;
5321 pmb->context2 = NULL;
5322
James Smart481ad962015-05-22 10:42:35 -04005323 shdr = (union lpfc_sli4_cfg_shdr *)
5324 &pmb->u.mqe.un.beacon_config.header.cfg_shdr;
5325 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
5326 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
5327
5328 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX,
5329 "0194 SET_BEACON_CONFIG mailbox "
5330 "completed with status x%x add_status x%x,"
5331 " mbx status x%x\n",
5332 shdr_status, shdr_add_status, mb->mbxStatus);
5333
5334 if (mb->mbxStatus && !(shdr_status &&
5335 shdr_add_status == ADD_STATUS_OPERATION_ALREADY_ACTIVE)) {
James Smart8b017a32015-05-21 13:55:18 -04005336 mempool_free(pmb, phba->mbox_mem_pool);
5337 goto error;
5338 }
5339
5340 mempool_free(pmb, phba->mbox_mem_pool);
James Smart8b017a32015-05-21 13:55:18 -04005341 cmdsize = sizeof(struct fc_lcb_res_frame);
5342 elsiocb = lpfc_prep_els_iocb(phba->pport, 0, cmdsize,
5343 lpfc_max_els_tries, ndlp,
5344 ndlp->nlp_DID, ELS_CMD_ACC);
5345
5346 /* Decrement the ndlp reference count from previous mbox command */
5347 lpfc_nlp_put(ndlp);
5348
5349 if (!elsiocb)
5350 goto free_lcb_context;
5351
5352 lcb_res = (struct fc_lcb_res_frame *)
5353 (((struct lpfc_dmabuf *)elsiocb->context2)->virt);
5354
5355 icmd = &elsiocb->iocb;
5356 icmd->ulpContext = lcb_context->rx_id;
5357 icmd->unsli3.rcvsli3.ox_id = lcb_context->ox_id;
5358
5359 pcmd = (uint8_t *)(((struct lpfc_dmabuf *)elsiocb->context2)->virt);
5360 *((uint32_t *)(pcmd)) = ELS_CMD_ACC;
5361 lcb_res->lcb_sub_command = lcb_context->sub_command;
5362 lcb_res->lcb_type = lcb_context->type;
5363 lcb_res->lcb_frequency = lcb_context->frequency;
5364 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
5365 phba->fc_stat.elsXmitACC++;
5366 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
5367 if (rc == IOCB_ERROR)
5368 lpfc_els_free_iocb(phba, elsiocb);
5369
5370 kfree(lcb_context);
5371 return;
5372
5373error:
5374 cmdsize = sizeof(struct fc_lcb_res_frame);
5375 elsiocb = lpfc_prep_els_iocb(phba->pport, 0, cmdsize,
5376 lpfc_max_els_tries, ndlp,
5377 ndlp->nlp_DID, ELS_CMD_LS_RJT);
5378 lpfc_nlp_put(ndlp);
5379 if (!elsiocb)
5380 goto free_lcb_context;
5381
5382 icmd = &elsiocb->iocb;
5383 icmd->ulpContext = lcb_context->rx_id;
5384 icmd->unsli3.rcvsli3.ox_id = lcb_context->ox_id;
5385 pcmd = (uint8_t *)(((struct lpfc_dmabuf *)elsiocb->context2)->virt);
5386
5387 *((uint32_t *)(pcmd)) = ELS_CMD_LS_RJT;
5388 stat = (struct ls_rjt *)(pcmd + sizeof(uint32_t));
5389 stat->un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
5390
5391 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
5392 phba->fc_stat.elsXmitLSRJT++;
5393 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
5394 if (rc == IOCB_ERROR)
5395 lpfc_els_free_iocb(phba, elsiocb);
5396free_lcb_context:
5397 kfree(lcb_context);
5398}
5399
5400static int
5401lpfc_sli4_set_beacon(struct lpfc_vport *vport,
5402 struct lpfc_lcb_context *lcb_context,
5403 uint32_t beacon_state)
5404{
5405 struct lpfc_hba *phba = vport->phba;
5406 LPFC_MBOXQ_t *mbox = NULL;
5407 uint32_t len;
5408 int rc;
5409
5410 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5411 if (!mbox)
5412 return 1;
5413
5414 len = sizeof(struct lpfc_mbx_set_beacon_config) -
5415 sizeof(struct lpfc_sli4_cfg_mhdr);
5416 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
5417 LPFC_MBOX_OPCODE_SET_BEACON_CONFIG, len,
5418 LPFC_SLI4_MBX_EMBED);
5419 mbox->context1 = (void *)lcb_context;
5420 mbox->vport = phba->pport;
5421 mbox->mbox_cmpl = lpfc_els_lcb_rsp;
5422 bf_set(lpfc_mbx_set_beacon_port_num, &mbox->u.mqe.un.beacon_config,
5423 phba->sli4_hba.physical_port);
5424 bf_set(lpfc_mbx_set_beacon_state, &mbox->u.mqe.un.beacon_config,
5425 beacon_state);
5426 bf_set(lpfc_mbx_set_beacon_port_type, &mbox->u.mqe.un.beacon_config, 1);
5427 bf_set(lpfc_mbx_set_beacon_duration, &mbox->u.mqe.un.beacon_config, 0);
5428 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
5429 if (rc == MBX_NOT_FINISHED) {
5430 mempool_free(mbox, phba->mbox_mem_pool);
5431 return 1;
5432 }
5433
5434 return 0;
5435}
5436
5437
5438/**
5439 * lpfc_els_rcv_lcb - Process an unsolicited LCB
5440 * @vport: pointer to a host virtual N_Port data structure.
5441 * @cmdiocb: pointer to lpfc command iocb data structure.
5442 * @ndlp: pointer to a node-list data structure.
5443 *
5444 * This routine processes an unsolicited LCB(LINK CABLE BEACON) IOCB.
5445 * First, the payload of the unsolicited LCB is checked.
5446 * Then based on Subcommand beacon will either turn on or off.
5447 *
5448 * Return code
5449 * 0 - Sent the acc response
5450 * 1 - Sent the reject response.
5451 **/
5452static int
5453lpfc_els_rcv_lcb(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
5454 struct lpfc_nodelist *ndlp)
5455{
5456 struct lpfc_hba *phba = vport->phba;
5457 struct lpfc_dmabuf *pcmd;
James Smart8b017a32015-05-21 13:55:18 -04005458 uint8_t *lp;
5459 struct fc_lcb_request_frame *beacon;
5460 struct lpfc_lcb_context *lcb_context;
5461 uint8_t state, rjt_err;
5462 struct ls_rjt stat;
5463
James Smart8b017a32015-05-21 13:55:18 -04005464 pcmd = (struct lpfc_dmabuf *)cmdiocb->context2;
5465 lp = (uint8_t *)pcmd->virt;
5466 beacon = (struct fc_lcb_request_frame *)pcmd->virt;
5467
5468 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
5469 "0192 ELS LCB Data x%x x%x x%x x%x sub x%x "
5470 "type x%x frequency %x duration x%x\n",
5471 lp[0], lp[1], lp[2],
5472 beacon->lcb_command,
5473 beacon->lcb_sub_command,
5474 beacon->lcb_type,
5475 beacon->lcb_frequency,
5476 be16_to_cpu(beacon->lcb_duration));
5477
5478 if (phba->sli_rev < LPFC_SLI_REV4 ||
5479 (bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf) !=
5480 LPFC_SLI_INTF_IF_TYPE_2)) {
5481 rjt_err = LSRJT_CMD_UNSUPPORTED;
5482 goto rjt;
5483 }
James Smart8b017a32015-05-21 13:55:18 -04005484
5485 if (phba->hba_flag & HBA_FCOE_MODE) {
5486 rjt_err = LSRJT_CMD_UNSUPPORTED;
5487 goto rjt;
5488 }
5489 if (beacon->lcb_frequency == 0) {
5490 rjt_err = LSRJT_CMD_UNSUPPORTED;
5491 goto rjt;
5492 }
5493 if ((beacon->lcb_type != LPFC_LCB_GREEN) &&
5494 (beacon->lcb_type != LPFC_LCB_AMBER)) {
5495 rjt_err = LSRJT_CMD_UNSUPPORTED;
5496 goto rjt;
5497 }
5498 if ((beacon->lcb_sub_command != LPFC_LCB_ON) &&
5499 (beacon->lcb_sub_command != LPFC_LCB_OFF)) {
5500 rjt_err = LSRJT_CMD_UNSUPPORTED;
5501 goto rjt;
5502 }
5503 if ((beacon->lcb_sub_command == LPFC_LCB_ON) &&
5504 (beacon->lcb_type != LPFC_LCB_GREEN) &&
5505 (beacon->lcb_type != LPFC_LCB_AMBER)) {
5506 rjt_err = LSRJT_CMD_UNSUPPORTED;
5507 goto rjt;
5508 }
5509 if (be16_to_cpu(beacon->lcb_duration) != 0) {
5510 rjt_err = LSRJT_CMD_UNSUPPORTED;
5511 goto rjt;
5512 }
5513
Sudip Mukherjeee7950422015-09-23 19:02:32 +05305514 lcb_context = kmalloc(sizeof(*lcb_context), GFP_KERNEL);
5515 if (!lcb_context) {
5516 rjt_err = LSRJT_UNABLE_TPC;
5517 goto rjt;
5518 }
5519
James Smart8b017a32015-05-21 13:55:18 -04005520 state = (beacon->lcb_sub_command == LPFC_LCB_ON) ? 1 : 0;
5521 lcb_context->sub_command = beacon->lcb_sub_command;
5522 lcb_context->type = beacon->lcb_type;
5523 lcb_context->frequency = beacon->lcb_frequency;
5524 lcb_context->ox_id = cmdiocb->iocb.unsli3.rcvsli3.ox_id;
5525 lcb_context->rx_id = cmdiocb->iocb.ulpContext;
5526 lcb_context->ndlp = lpfc_nlp_get(ndlp);
5527 if (lpfc_sli4_set_beacon(vport, lcb_context, state)) {
5528 lpfc_printf_vlog(ndlp->vport, KERN_ERR,
5529 LOG_ELS, "0193 failed to send mail box");
Sudip Mukherjeee7950422015-09-23 19:02:32 +05305530 kfree(lcb_context);
James Smart8b017a32015-05-21 13:55:18 -04005531 lpfc_nlp_put(ndlp);
5532 rjt_err = LSRJT_UNABLE_TPC;
5533 goto rjt;
5534 }
5535 return 0;
5536rjt:
5537 memset(&stat, 0, sizeof(stat));
5538 stat.un.b.lsRjtRsnCode = rjt_err;
5539 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
5540 return 1;
5541}
5542
5543
James Smarte59058c2008-08-24 21:49:00 -04005544/**
James Smart3621a712009-04-06 18:47:14 -04005545 * lpfc_els_flush_rscn - Clean up any rscn activities with a vport
James Smarte59058c2008-08-24 21:49:00 -04005546 * @vport: pointer to a host virtual N_Port data structure.
5547 *
5548 * This routine cleans up any Registration State Change Notification
5549 * (RSCN) activity with a @vport. Note that the fc_rscn_flush flag of the
5550 * @vport together with the host_lock is used to prevent multiple thread
5551 * trying to access the RSCN array on a same @vport at the same time.
5552 **/
James Smart92d7f7b2007-06-17 19:56:38 -05005553void
James Smart2e0fef82007-06-17 19:56:36 -05005554lpfc_els_flush_rscn(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05005555{
James Smart2e0fef82007-06-17 19:56:36 -05005556 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
5557 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05005558 int i;
5559
James Smart7f5f3d02008-02-08 18:50:14 -05005560 spin_lock_irq(shost->host_lock);
5561 if (vport->fc_rscn_flush) {
5562 /* Another thread is walking fc_rscn_id_list on this vport */
5563 spin_unlock_irq(shost->host_lock);
5564 return;
5565 }
5566 /* Indicate we are walking lpfc_els_flush_rscn on this vport */
5567 vport->fc_rscn_flush = 1;
5568 spin_unlock_irq(shost->host_lock);
5569
James Smart2e0fef82007-06-17 19:56:36 -05005570 for (i = 0; i < vport->fc_rscn_id_cnt; i++) {
James Smart92d7f7b2007-06-17 19:56:38 -05005571 lpfc_in_buf_free(phba, vport->fc_rscn_id_list[i]);
James Smart2e0fef82007-06-17 19:56:36 -05005572 vport->fc_rscn_id_list[i] = NULL;
dea31012005-04-17 16:05:31 -05005573 }
James Smart2e0fef82007-06-17 19:56:36 -05005574 spin_lock_irq(shost->host_lock);
5575 vport->fc_rscn_id_cnt = 0;
5576 vport->fc_flag &= ~(FC_RSCN_MODE | FC_RSCN_DISCOVERY);
5577 spin_unlock_irq(shost->host_lock);
5578 lpfc_can_disctmo(vport);
James Smart7f5f3d02008-02-08 18:50:14 -05005579 /* Indicate we are done walking this fc_rscn_id_list */
5580 vport->fc_rscn_flush = 0;
dea31012005-04-17 16:05:31 -05005581}
5582
James Smarte59058c2008-08-24 21:49:00 -04005583/**
James Smart3621a712009-04-06 18:47:14 -04005584 * lpfc_rscn_payload_check - Check whether there is a pending rscn to a did
James Smarte59058c2008-08-24 21:49:00 -04005585 * @vport: pointer to a host virtual N_Port data structure.
5586 * @did: remote destination port identifier.
5587 *
5588 * This routine checks whether there is any pending Registration State
5589 * Configuration Notification (RSCN) to a @did on @vport.
5590 *
5591 * Return code
5592 * None zero - The @did matched with a pending rscn
5593 * 0 - not able to match @did with a pending rscn
5594 **/
dea31012005-04-17 16:05:31 -05005595int
James Smart2e0fef82007-06-17 19:56:36 -05005596lpfc_rscn_payload_check(struct lpfc_vport *vport, uint32_t did)
dea31012005-04-17 16:05:31 -05005597{
5598 D_ID ns_did;
5599 D_ID rscn_did;
dea31012005-04-17 16:05:31 -05005600 uint32_t *lp;
James Smart92d7f7b2007-06-17 19:56:38 -05005601 uint32_t payload_len, i;
James Smart7f5f3d02008-02-08 18:50:14 -05005602 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05005603
5604 ns_did.un.word = did;
dea31012005-04-17 16:05:31 -05005605
5606 /* Never match fabric nodes for RSCNs */
5607 if ((did & Fabric_DID_MASK) == Fabric_DID_MASK)
James Smart2e0fef82007-06-17 19:56:36 -05005608 return 0;
dea31012005-04-17 16:05:31 -05005609
5610 /* If we are doing a FULL RSCN rediscovery, match everything */
James Smart2e0fef82007-06-17 19:56:36 -05005611 if (vport->fc_flag & FC_RSCN_DISCOVERY)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05005612 return did;
dea31012005-04-17 16:05:31 -05005613
James Smart7f5f3d02008-02-08 18:50:14 -05005614 spin_lock_irq(shost->host_lock);
5615 if (vport->fc_rscn_flush) {
5616 /* Another thread is walking fc_rscn_id_list on this vport */
5617 spin_unlock_irq(shost->host_lock);
5618 return 0;
5619 }
5620 /* Indicate we are walking fc_rscn_id_list on this vport */
5621 vport->fc_rscn_flush = 1;
5622 spin_unlock_irq(shost->host_lock);
James Smart2e0fef82007-06-17 19:56:36 -05005623 for (i = 0; i < vport->fc_rscn_id_cnt; i++) {
James Smart92d7f7b2007-06-17 19:56:38 -05005624 lp = vport->fc_rscn_id_list[i]->virt;
5625 payload_len = be32_to_cpu(*lp++ & ~ELS_CMD_MASK);
5626 payload_len -= sizeof(uint32_t); /* take off word 0 */
dea31012005-04-17 16:05:31 -05005627 while (payload_len) {
James Smart92d7f7b2007-06-17 19:56:38 -05005628 rscn_did.un.word = be32_to_cpu(*lp++);
5629 payload_len -= sizeof(uint32_t);
James Smarteaf15d52008-12-04 22:39:29 -05005630 switch (rscn_did.un.b.resv & RSCN_ADDRESS_FORMAT_MASK) {
5631 case RSCN_ADDRESS_FORMAT_PORT:
James Smart6fb120a2009-05-22 14:52:59 -04005632 if ((ns_did.un.b.domain == rscn_did.un.b.domain)
5633 && (ns_did.un.b.area == rscn_did.un.b.area)
5634 && (ns_did.un.b.id == rscn_did.un.b.id))
James Smart7f5f3d02008-02-08 18:50:14 -05005635 goto return_did_out;
dea31012005-04-17 16:05:31 -05005636 break;
James Smarteaf15d52008-12-04 22:39:29 -05005637 case RSCN_ADDRESS_FORMAT_AREA:
dea31012005-04-17 16:05:31 -05005638 if ((ns_did.un.b.domain == rscn_did.un.b.domain)
5639 && (ns_did.un.b.area == rscn_did.un.b.area))
James Smart7f5f3d02008-02-08 18:50:14 -05005640 goto return_did_out;
dea31012005-04-17 16:05:31 -05005641 break;
James Smarteaf15d52008-12-04 22:39:29 -05005642 case RSCN_ADDRESS_FORMAT_DOMAIN:
dea31012005-04-17 16:05:31 -05005643 if (ns_did.un.b.domain == rscn_did.un.b.domain)
James Smart7f5f3d02008-02-08 18:50:14 -05005644 goto return_did_out;
dea31012005-04-17 16:05:31 -05005645 break;
James Smarteaf15d52008-12-04 22:39:29 -05005646 case RSCN_ADDRESS_FORMAT_FABRIC:
James Smart7f5f3d02008-02-08 18:50:14 -05005647 goto return_did_out;
dea31012005-04-17 16:05:31 -05005648 }
5649 }
James Smart92d7f7b2007-06-17 19:56:38 -05005650 }
James Smart7f5f3d02008-02-08 18:50:14 -05005651 /* Indicate we are done with walking fc_rscn_id_list on this vport */
5652 vport->fc_rscn_flush = 0;
James Smart92d7f7b2007-06-17 19:56:38 -05005653 return 0;
James Smart7f5f3d02008-02-08 18:50:14 -05005654return_did_out:
5655 /* Indicate we are done with walking fc_rscn_id_list on this vport */
5656 vport->fc_rscn_flush = 0;
5657 return did;
dea31012005-04-17 16:05:31 -05005658}
5659
James Smarte59058c2008-08-24 21:49:00 -04005660/**
James Smart3621a712009-04-06 18:47:14 -04005661 * lpfc_rscn_recovery_check - Send recovery event to vport nodes matching rscn
James Smarte59058c2008-08-24 21:49:00 -04005662 * @vport: pointer to a host virtual N_Port data structure.
5663 *
5664 * This routine sends recovery (NLP_EVT_DEVICE_RECOVERY) event to the
5665 * state machine for a @vport's nodes that are with pending RSCN (Registration
5666 * State Change Notification).
5667 *
5668 * Return code
5669 * 0 - Successful (currently alway return 0)
5670 **/
dea31012005-04-17 16:05:31 -05005671static int
James Smart2e0fef82007-06-17 19:56:36 -05005672lpfc_rscn_recovery_check(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05005673{
James Smart685f0bf2007-04-25 09:53:08 -04005674 struct lpfc_nodelist *ndlp = NULL;
dea31012005-04-17 16:05:31 -05005675
James Smart0d2b6b82008-06-14 22:52:47 -04005676 /* Move all affected nodes by pending RSCNs to NPR state. */
James Smart2e0fef82007-06-17 19:56:36 -05005677 list_for_each_entry(ndlp, &vport->fc_nodes, nlp_listp) {
James Smarte47c9092008-02-08 18:49:26 -05005678 if (!NLP_CHK_NODE_ACT(ndlp) ||
James Smart0d2b6b82008-06-14 22:52:47 -04005679 (ndlp->nlp_state == NLP_STE_UNUSED_NODE) ||
5680 !lpfc_rscn_payload_check(vport, ndlp->nlp_DID))
dea31012005-04-17 16:05:31 -05005681 continue;
James Smart2e0fef82007-06-17 19:56:36 -05005682 lpfc_disc_state_machine(vport, ndlp, NULL,
James Smart0d2b6b82008-06-14 22:52:47 -04005683 NLP_EVT_DEVICE_RECOVERY);
5684 lpfc_cancel_retry_delay_tmo(vport, ndlp);
dea31012005-04-17 16:05:31 -05005685 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05005686 return 0;
dea31012005-04-17 16:05:31 -05005687}
5688
James Smarte59058c2008-08-24 21:49:00 -04005689/**
James Smart3621a712009-04-06 18:47:14 -04005690 * lpfc_send_rscn_event - Send an RSCN event to management application
James Smartddcc50f2008-12-04 22:38:46 -05005691 * @vport: pointer to a host virtual N_Port data structure.
5692 * @cmdiocb: pointer to lpfc command iocb data structure.
5693 *
5694 * lpfc_send_rscn_event sends an RSCN netlink event to management
5695 * applications.
5696 */
5697static void
5698lpfc_send_rscn_event(struct lpfc_vport *vport,
5699 struct lpfc_iocbq *cmdiocb)
5700{
5701 struct lpfc_dmabuf *pcmd;
5702 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
5703 uint32_t *payload_ptr;
5704 uint32_t payload_len;
5705 struct lpfc_rscn_event_header *rscn_event_data;
5706
5707 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
5708 payload_ptr = (uint32_t *) pcmd->virt;
5709 payload_len = be32_to_cpu(*payload_ptr & ~ELS_CMD_MASK);
5710
5711 rscn_event_data = kmalloc(sizeof(struct lpfc_rscn_event_header) +
5712 payload_len, GFP_KERNEL);
5713 if (!rscn_event_data) {
5714 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
5715 "0147 Failed to allocate memory for RSCN event\n");
5716 return;
5717 }
5718 rscn_event_data->event_type = FC_REG_RSCN_EVENT;
5719 rscn_event_data->payload_length = payload_len;
5720 memcpy(rscn_event_data->rscn_payload, payload_ptr,
5721 payload_len);
5722
5723 fc_host_post_vendor_event(shost,
5724 fc_get_event_number(),
Ales Novak6599eaa2015-08-31 16:48:16 -04005725 sizeof(struct lpfc_rscn_event_header) + payload_len,
James Smartddcc50f2008-12-04 22:38:46 -05005726 (char *)rscn_event_data,
5727 LPFC_NL_VENDOR_ID);
5728
5729 kfree(rscn_event_data);
5730}
5731
5732/**
James Smart3621a712009-04-06 18:47:14 -04005733 * lpfc_els_rcv_rscn - Process an unsolicited rscn iocb
James Smarte59058c2008-08-24 21:49:00 -04005734 * @vport: pointer to a host virtual N_Port data structure.
5735 * @cmdiocb: pointer to lpfc command iocb data structure.
5736 * @ndlp: pointer to a node-list data structure.
5737 *
5738 * This routine processes an unsolicited RSCN (Registration State Change
5739 * Notification) IOCB. First, the payload of the unsolicited RSCN is walked
5740 * to invoke fc_host_post_event() routine to the FC transport layer. If the
5741 * discover state machine is about to begin discovery, it just accepts the
5742 * RSCN and the discovery process will satisfy the RSCN. If this RSCN only
5743 * contains N_Port IDs for other vports on this HBA, it just accepts the
5744 * RSCN and ignore processing it. If the state machine is in the recovery
5745 * state, the fc_rscn_id_list of this @vport is walked and the
5746 * lpfc_rscn_recovery_check() routine is invoked to send recovery event for
5747 * all nodes that match RSCN payload. Otherwise, the lpfc_els_handle_rscn()
5748 * routine is invoked to handle the RSCN event.
5749 *
5750 * Return code
5751 * 0 - Just sent the acc response
5752 * 1 - Sent the acc response and waited for name server completion
5753 **/
dea31012005-04-17 16:05:31 -05005754static int
James Smart2e0fef82007-06-17 19:56:36 -05005755lpfc_els_rcv_rscn(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
James Smart51ef4c22007-08-02 11:10:31 -04005756 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05005757{
James Smart2e0fef82007-06-17 19:56:36 -05005758 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
5759 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05005760 struct lpfc_dmabuf *pcmd;
James Smart92d7f7b2007-06-17 19:56:38 -05005761 uint32_t *lp, *datap;
James Smart92d7f7b2007-06-17 19:56:38 -05005762 uint32_t payload_len, length, nportid, *cmd;
James Smart7f5f3d02008-02-08 18:50:14 -05005763 int rscn_cnt;
James Smart92d7f7b2007-06-17 19:56:38 -05005764 int rscn_id = 0, hba_id = 0;
James Smartd2873e42006-08-18 17:46:43 -04005765 int i;
dea31012005-04-17 16:05:31 -05005766
dea31012005-04-17 16:05:31 -05005767 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
5768 lp = (uint32_t *) pcmd->virt;
5769
James Smart92d7f7b2007-06-17 19:56:38 -05005770 payload_len = be32_to_cpu(*lp++ & ~ELS_CMD_MASK);
5771 payload_len -= sizeof(uint32_t); /* take off word 0 */
dea31012005-04-17 16:05:31 -05005772 /* RSCN received */
James Smarte8b62012007-08-02 11:10:09 -04005773 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
5774 "0214 RSCN received Data: x%x x%x x%x x%x\n",
James Smart7f5f3d02008-02-08 18:50:14 -05005775 vport->fc_flag, payload_len, *lp,
5776 vport->fc_rscn_id_cnt);
James Smartddcc50f2008-12-04 22:38:46 -05005777
5778 /* Send an RSCN event to the management application */
5779 lpfc_send_rscn_event(vport, cmdiocb);
5780
James Smartd2873e42006-08-18 17:46:43 -04005781 for (i = 0; i < payload_len/sizeof(uint32_t); i++)
James Smart2e0fef82007-06-17 19:56:36 -05005782 fc_host_post_event(shost, fc_get_event_number(),
James Smartd2873e42006-08-18 17:46:43 -04005783 FCH_EVT_RSCN, lp[i]);
5784
dea31012005-04-17 16:05:31 -05005785 /* If we are about to begin discovery, just ACC the RSCN.
5786 * Discovery processing will satisfy it.
5787 */
James Smart2e0fef82007-06-17 19:56:36 -05005788 if (vport->port_state <= LPFC_NS_QRY) {
James Smart858c9f62007-06-17 19:56:39 -05005789 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
5790 "RCV RSCN ignore: did:x%x/ste:x%x flg:x%x",
5791 ndlp->nlp_DID, vport->port_state, ndlp->nlp_flag);
5792
James Smart51ef4c22007-08-02 11:10:31 -04005793 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05005794 return 0;
dea31012005-04-17 16:05:31 -05005795 }
5796
James Smart92d7f7b2007-06-17 19:56:38 -05005797 /* If this RSCN just contains NPortIDs for other vports on this HBA,
5798 * just ACC and ignore it.
5799 */
5800 if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
James Smart3de2a652007-08-02 11:09:59 -04005801 !(vport->cfg_peer_port_login)) {
James Smart92d7f7b2007-06-17 19:56:38 -05005802 i = payload_len;
5803 datap = lp;
5804 while (i > 0) {
5805 nportid = *datap++;
5806 nportid = ((be32_to_cpu(nportid)) & Mask_DID);
5807 i -= sizeof(uint32_t);
5808 rscn_id++;
James Smart549e55c2007-08-02 11:09:51 -04005809 if (lpfc_find_vport_by_did(phba, nportid))
5810 hba_id++;
James Smart92d7f7b2007-06-17 19:56:38 -05005811 }
5812 if (rscn_id == hba_id) {
5813 /* ALL NPortIDs in RSCN are on HBA */
James Smarte8b62012007-08-02 11:10:09 -04005814 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
James Smartd7c255b2008-08-24 21:50:00 -04005815 "0219 Ignore RSCN "
James Smarte8b62012007-08-02 11:10:09 -04005816 "Data: x%x x%x x%x x%x\n",
5817 vport->fc_flag, payload_len,
James Smart7f5f3d02008-02-08 18:50:14 -05005818 *lp, vport->fc_rscn_id_cnt);
James Smart858c9f62007-06-17 19:56:39 -05005819 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
5820 "RCV RSCN vport: did:x%x/ste:x%x flg:x%x",
5821 ndlp->nlp_DID, vport->port_state,
5822 ndlp->nlp_flag);
5823
James Smart92d7f7b2007-06-17 19:56:38 -05005824 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb,
James Smart51ef4c22007-08-02 11:10:31 -04005825 ndlp, NULL);
James Smart92d7f7b2007-06-17 19:56:38 -05005826 return 0;
5827 }
5828 }
5829
James Smart7f5f3d02008-02-08 18:50:14 -05005830 spin_lock_irq(shost->host_lock);
5831 if (vport->fc_rscn_flush) {
5832 /* Another thread is walking fc_rscn_id_list on this vport */
James Smart7f5f3d02008-02-08 18:50:14 -05005833 vport->fc_flag |= FC_RSCN_DISCOVERY;
James Smart97957242009-12-21 17:03:15 -05005834 spin_unlock_irq(shost->host_lock);
James Smart58da1ff2008-04-07 10:15:56 -04005835 /* Send back ACC */
5836 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
James Smart7f5f3d02008-02-08 18:50:14 -05005837 return 0;
5838 }
5839 /* Indicate we are walking fc_rscn_id_list on this vport */
5840 vport->fc_rscn_flush = 1;
5841 spin_unlock_irq(shost->host_lock);
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02005842 /* Get the array count after successfully have the token */
James Smart7f5f3d02008-02-08 18:50:14 -05005843 rscn_cnt = vport->fc_rscn_id_cnt;
dea31012005-04-17 16:05:31 -05005844 /* If we are already processing an RSCN, save the received
5845 * RSCN payload buffer, cmdiocb->context2 to process later.
5846 */
James Smart2e0fef82007-06-17 19:56:36 -05005847 if (vport->fc_flag & (FC_RSCN_MODE | FC_NDISC_ACTIVE)) {
James Smart858c9f62007-06-17 19:56:39 -05005848 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
5849 "RCV RSCN defer: did:x%x/ste:x%x flg:x%x",
5850 ndlp->nlp_DID, vport->port_state, ndlp->nlp_flag);
5851
James Smart09372822008-01-11 01:52:54 -05005852 spin_lock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05005853 vport->fc_flag |= FC_RSCN_DEFERRED;
5854 if ((rscn_cnt < FC_MAX_HOLD_RSCN) &&
James Smart2e0fef82007-06-17 19:56:36 -05005855 !(vport->fc_flag & FC_RSCN_DISCOVERY)) {
James Smart2e0fef82007-06-17 19:56:36 -05005856 vport->fc_flag |= FC_RSCN_MODE;
5857 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05005858 if (rscn_cnt) {
5859 cmd = vport->fc_rscn_id_list[rscn_cnt-1]->virt;
5860 length = be32_to_cpu(*cmd & ~ELS_CMD_MASK);
5861 }
5862 if ((rscn_cnt) &&
5863 (payload_len + length <= LPFC_BPL_SIZE)) {
5864 *cmd &= ELS_CMD_MASK;
James Smart7f5f3d02008-02-08 18:50:14 -05005865 *cmd |= cpu_to_be32(payload_len + length);
James Smart92d7f7b2007-06-17 19:56:38 -05005866 memcpy(((uint8_t *)cmd) + length, lp,
5867 payload_len);
5868 } else {
5869 vport->fc_rscn_id_list[rscn_cnt] = pcmd;
5870 vport->fc_rscn_id_cnt++;
5871 /* If we zero, cmdiocb->context2, the calling
5872 * routine will not try to free it.
5873 */
5874 cmdiocb->context2 = NULL;
5875 }
dea31012005-04-17 16:05:31 -05005876 /* Deferred RSCN */
James Smarte8b62012007-08-02 11:10:09 -04005877 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
5878 "0235 Deferred RSCN "
5879 "Data: x%x x%x x%x\n",
5880 vport->fc_rscn_id_cnt, vport->fc_flag,
5881 vport->port_state);
dea31012005-04-17 16:05:31 -05005882 } else {
James Smart2e0fef82007-06-17 19:56:36 -05005883 vport->fc_flag |= FC_RSCN_DISCOVERY;
5884 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05005885 /* ReDiscovery RSCN */
James Smarte8b62012007-08-02 11:10:09 -04005886 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
5887 "0234 ReDiscovery RSCN "
5888 "Data: x%x x%x x%x\n",
5889 vport->fc_rscn_id_cnt, vport->fc_flag,
5890 vport->port_state);
dea31012005-04-17 16:05:31 -05005891 }
James Smart7f5f3d02008-02-08 18:50:14 -05005892 /* Indicate we are done walking fc_rscn_id_list on this vport */
5893 vport->fc_rscn_flush = 0;
dea31012005-04-17 16:05:31 -05005894 /* Send back ACC */
James Smart51ef4c22007-08-02 11:10:31 -04005895 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
dea31012005-04-17 16:05:31 -05005896 /* send RECOVERY event for ALL nodes that match RSCN payload */
James Smart2e0fef82007-06-17 19:56:36 -05005897 lpfc_rscn_recovery_check(vport);
James Smart09372822008-01-11 01:52:54 -05005898 spin_lock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05005899 vport->fc_flag &= ~FC_RSCN_DEFERRED;
James Smart09372822008-01-11 01:52:54 -05005900 spin_unlock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05005901 return 0;
dea31012005-04-17 16:05:31 -05005902 }
James Smart858c9f62007-06-17 19:56:39 -05005903 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
5904 "RCV RSCN: did:x%x/ste:x%x flg:x%x",
5905 ndlp->nlp_DID, vport->port_state, ndlp->nlp_flag);
5906
James Smart2e0fef82007-06-17 19:56:36 -05005907 spin_lock_irq(shost->host_lock);
5908 vport->fc_flag |= FC_RSCN_MODE;
5909 spin_unlock_irq(shost->host_lock);
5910 vport->fc_rscn_id_list[vport->fc_rscn_id_cnt++] = pcmd;
James Smart7f5f3d02008-02-08 18:50:14 -05005911 /* Indicate we are done walking fc_rscn_id_list on this vport */
5912 vport->fc_rscn_flush = 0;
dea31012005-04-17 16:05:31 -05005913 /*
5914 * If we zero, cmdiocb->context2, the calling routine will
5915 * not try to free it.
5916 */
5917 cmdiocb->context2 = NULL;
James Smart2e0fef82007-06-17 19:56:36 -05005918 lpfc_set_disctmo(vport);
dea31012005-04-17 16:05:31 -05005919 /* Send back ACC */
James Smart51ef4c22007-08-02 11:10:31 -04005920 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
dea31012005-04-17 16:05:31 -05005921 /* send RECOVERY event for ALL nodes that match RSCN payload */
James Smart2e0fef82007-06-17 19:56:36 -05005922 lpfc_rscn_recovery_check(vport);
James Smart2e0fef82007-06-17 19:56:36 -05005923 return lpfc_els_handle_rscn(vport);
dea31012005-04-17 16:05:31 -05005924}
5925
James Smarte59058c2008-08-24 21:49:00 -04005926/**
James Smart3621a712009-04-06 18:47:14 -04005927 * lpfc_els_handle_rscn - Handle rscn for a vport
James Smarte59058c2008-08-24 21:49:00 -04005928 * @vport: pointer to a host virtual N_Port data structure.
5929 *
5930 * This routine handles the Registration State Configuration Notification
5931 * (RSCN) for a @vport. If login to NameServer does not exist, a new ndlp shall
5932 * be created and a Port Login (PLOGI) to the NameServer is issued. Otherwise,
5933 * if the ndlp to NameServer exists, a Common Transport (CT) command to the
5934 * NameServer shall be issued. If CT command to the NameServer fails to be
5935 * issued, the lpfc_els_flush_rscn() routine shall be invoked to clean up any
5936 * RSCN activities with the @vport.
5937 *
5938 * Return code
5939 * 0 - Cleaned up rscn on the @vport
5940 * 1 - Wait for plogi to name server before proceed
5941 **/
dea31012005-04-17 16:05:31 -05005942int
James Smart2e0fef82007-06-17 19:56:36 -05005943lpfc_els_handle_rscn(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05005944{
5945 struct lpfc_nodelist *ndlp;
James Smart2e0fef82007-06-17 19:56:36 -05005946 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05005947
James Smart92d7f7b2007-06-17 19:56:38 -05005948 /* Ignore RSCN if the port is being torn down. */
5949 if (vport->load_flag & FC_UNLOADING) {
5950 lpfc_els_flush_rscn(vport);
5951 return 0;
5952 }
5953
dea31012005-04-17 16:05:31 -05005954 /* Start timer for RSCN processing */
James Smart2e0fef82007-06-17 19:56:36 -05005955 lpfc_set_disctmo(vport);
dea31012005-04-17 16:05:31 -05005956
5957 /* RSCN processed */
James Smarte8b62012007-08-02 11:10:09 -04005958 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
5959 "0215 RSCN processed Data: x%x x%x x%x x%x\n",
5960 vport->fc_flag, 0, vport->fc_rscn_id_cnt,
5961 vport->port_state);
dea31012005-04-17 16:05:31 -05005962
5963 /* To process RSCN, first compare RSCN data with NameServer */
James Smart2e0fef82007-06-17 19:56:36 -05005964 vport->fc_ns_retry = 0;
James Smart0ff10d42008-01-11 01:52:36 -05005965 vport->num_disc_nodes = 0;
5966
James Smart2e0fef82007-06-17 19:56:36 -05005967 ndlp = lpfc_findnode_did(vport, NameServer_DID);
James Smarte47c9092008-02-08 18:49:26 -05005968 if (ndlp && NLP_CHK_NODE_ACT(ndlp)
5969 && ndlp->nlp_state == NLP_STE_UNMAPPED_NODE) {
dea31012005-04-17 16:05:31 -05005970 /* Good ndlp, issue CT Request to NameServer */
James Smart92d7f7b2007-06-17 19:56:38 -05005971 if (lpfc_ns_cmd(vport, SLI_CTNS_GID_FT, 0, 0) == 0)
dea31012005-04-17 16:05:31 -05005972 /* Wait for NameServer query cmpl before we can
5973 continue */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05005974 return 1;
dea31012005-04-17 16:05:31 -05005975 } else {
5976 /* If login to NameServer does not exist, issue one */
5977 /* Good status, issue PLOGI to NameServer */
James Smart2e0fef82007-06-17 19:56:36 -05005978 ndlp = lpfc_findnode_did(vport, NameServer_DID);
James Smarte47c9092008-02-08 18:49:26 -05005979 if (ndlp && NLP_CHK_NODE_ACT(ndlp))
dea31012005-04-17 16:05:31 -05005980 /* Wait for NameServer login cmpl before we can
5981 continue */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05005982 return 1;
James Smart2e0fef82007-06-17 19:56:36 -05005983
James Smarte47c9092008-02-08 18:49:26 -05005984 if (ndlp) {
5985 ndlp = lpfc_enable_node(vport, ndlp,
5986 NLP_STE_PLOGI_ISSUE);
5987 if (!ndlp) {
5988 lpfc_els_flush_rscn(vport);
5989 return 0;
5990 }
5991 ndlp->nlp_prev_state = NLP_STE_UNUSED_NODE;
dea31012005-04-17 16:05:31 -05005992 } else {
James Smarte47c9092008-02-08 18:49:26 -05005993 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
5994 if (!ndlp) {
5995 lpfc_els_flush_rscn(vport);
5996 return 0;
5997 }
James Smart2e0fef82007-06-17 19:56:36 -05005998 lpfc_nlp_init(vport, ndlp, NameServer_DID);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05005999 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05006000 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
dea31012005-04-17 16:05:31 -05006001 }
James Smarte47c9092008-02-08 18:49:26 -05006002 ndlp->nlp_type |= NLP_FABRIC;
6003 lpfc_issue_els_plogi(vport, NameServer_DID, 0);
6004 /* Wait for NameServer login cmpl before we can
6005 * continue
6006 */
6007 return 1;
dea31012005-04-17 16:05:31 -05006008 }
6009
James Smart2e0fef82007-06-17 19:56:36 -05006010 lpfc_els_flush_rscn(vport);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05006011 return 0;
dea31012005-04-17 16:05:31 -05006012}
6013
James Smarte59058c2008-08-24 21:49:00 -04006014/**
James Smart3621a712009-04-06 18:47:14 -04006015 * lpfc_els_rcv_flogi - Process an unsolicited flogi iocb
James Smarte59058c2008-08-24 21:49:00 -04006016 * @vport: pointer to a host virtual N_Port data structure.
6017 * @cmdiocb: pointer to lpfc command iocb data structure.
6018 * @ndlp: pointer to a node-list data structure.
6019 *
6020 * This routine processes Fabric Login (FLOGI) IOCB received as an ELS
6021 * unsolicited event. An unsolicited FLOGI can be received in a point-to-
6022 * point topology. As an unsolicited FLOGI should not be received in a loop
6023 * mode, any unsolicited FLOGI received in loop mode shall be ignored. The
6024 * lpfc_check_sparm() routine is invoked to check the parameters in the
6025 * unsolicited FLOGI. If parameters validation failed, the routine
6026 * lpfc_els_rsp_reject() shall be called with reject reason code set to
6027 * LSEXP_SPARM_OPTIONS to reject the FLOGI. Otherwise, the Port WWN in the
6028 * FLOGI shall be compared with the Port WWN of the @vport to determine who
6029 * will initiate PLOGI. The higher lexicographical value party shall has
6030 * higher priority (as the winning port) and will initiate PLOGI and
6031 * communicate Port_IDs (Addresses) for both nodes in PLOGI. The result
6032 * of this will be marked in the @vport fc_flag field with FC_PT2PT_PLOGI
6033 * and then the lpfc_els_rsp_acc() routine is invoked to accept the FLOGI.
6034 *
6035 * Return code
6036 * 0 - Successfully processed the unsolicited flogi
6037 * 1 - Failed to process the unsolicited flogi
6038 **/
dea31012005-04-17 16:05:31 -05006039static int
James Smart2e0fef82007-06-17 19:56:36 -05006040lpfc_els_rcv_flogi(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
James Smart51ef4c22007-08-02 11:10:31 -04006041 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05006042{
James Smart2e0fef82007-06-17 19:56:36 -05006043 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
6044 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05006045 struct lpfc_dmabuf *pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
6046 uint32_t *lp = (uint32_t *) pcmd->virt;
6047 IOCB_t *icmd = &cmdiocb->iocb;
6048 struct serv_parm *sp;
6049 LPFC_MBOXQ_t *mbox;
dea31012005-04-17 16:05:31 -05006050 uint32_t cmd, did;
6051 int rc;
James Smarte74c03c2013-04-17 20:15:19 -04006052 uint32_t fc_flag = 0;
6053 uint32_t port_state = 0;
dea31012005-04-17 16:05:31 -05006054
6055 cmd = *lp++;
6056 sp = (struct serv_parm *) lp;
6057
6058 /* FLOGI received */
6059
James Smart2e0fef82007-06-17 19:56:36 -05006060 lpfc_set_disctmo(vport);
dea31012005-04-17 16:05:31 -05006061
James Smart76a95d72010-11-20 23:11:48 -05006062 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
dea31012005-04-17 16:05:31 -05006063 /* We should never receive a FLOGI in loop mode, ignore it */
6064 did = icmd->un.elsreq64.remoteID;
6065
6066 /* An FLOGI ELS command <elsCmd> was received from DID <did> in
6067 Loop Mode */
James Smarte8b62012007-08-02 11:10:09 -04006068 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
6069 "0113 An FLOGI ELS command x%x was "
6070 "received from DID x%x in Loop Mode\n",
6071 cmd, did);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05006072 return 1;
dea31012005-04-17 16:05:31 -05006073 }
6074
James Smartd6de08c2015-12-16 18:11:53 -05006075 (void) lpfc_check_sparm(vport, ndlp, sp, CLASS3, 1);
dea31012005-04-17 16:05:31 -05006076
dea31012005-04-17 16:05:31 -05006077
James Smartd6de08c2015-12-16 18:11:53 -05006078 /*
6079 * If our portname is greater than the remote portname,
6080 * then we initiate Nport login.
6081 */
6082
6083 rc = memcmp(&vport->fc_portname, &sp->portName,
6084 sizeof(struct lpfc_name));
6085
6086 if (!rc) {
6087 if (phba->sli_rev < LPFC_SLI_REV4) {
6088 mbox = mempool_alloc(phba->mbox_mem_pool,
6089 GFP_KERNEL);
6090 if (!mbox)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05006091 return 1;
James Smartd6de08c2015-12-16 18:11:53 -05006092 lpfc_linkdown(phba);
6093 lpfc_init_link(phba, mbox,
6094 phba->cfg_topology,
6095 phba->cfg_link_speed);
6096 mbox->u.mb.un.varInitLnk.lipsr_AL_PA = 0;
6097 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
6098 mbox->vport = vport;
6099 rc = lpfc_sli_issue_mbox(phba, mbox,
6100 MBX_NOWAIT);
6101 lpfc_set_loopback_flag(phba);
6102 if (rc == MBX_NOT_FINISHED)
6103 mempool_free(mbox, phba->mbox_mem_pool);
6104 return 1;
6105 }
James Smart939723a2012-05-09 21:19:03 -04006106
James Smartd6de08c2015-12-16 18:11:53 -05006107 /* abort the flogi coming back to ourselves
6108 * due to external loopback on the port.
James Smart939723a2012-05-09 21:19:03 -04006109 */
James Smartd6de08c2015-12-16 18:11:53 -05006110 lpfc_els_abort_flogi(phba);
6111 return 0;
6112
6113 } else if (rc > 0) { /* greater than */
James Smart2e0fef82007-06-17 19:56:36 -05006114 spin_lock_irq(shost->host_lock);
James Smartd6de08c2015-12-16 18:11:53 -05006115 vport->fc_flag |= FC_PT2PT_PLOGI;
James Smart2e0fef82007-06-17 19:56:36 -05006116 spin_unlock_irq(shost->host_lock);
James Smart939723a2012-05-09 21:19:03 -04006117
James Smartd6de08c2015-12-16 18:11:53 -05006118 /* If we have the high WWPN we can assign our own
6119 * myDID; otherwise, we have to WAIT for a PLOGI
6120 * from the remote NPort to find out what it
6121 * will be.
James Smart939723a2012-05-09 21:19:03 -04006122 */
James Smartd6de08c2015-12-16 18:11:53 -05006123 vport->fc_myDID = PT2PT_LocalID;
dea31012005-04-17 16:05:31 -05006124 } else {
James Smartd6de08c2015-12-16 18:11:53 -05006125 vport->fc_myDID = PT2PT_RemoteID;
dea31012005-04-17 16:05:31 -05006126 }
6127
James Smartd6de08c2015-12-16 18:11:53 -05006128 /*
6129 * The vport state should go to LPFC_FLOGI only
6130 * AFTER we issue a FLOGI, not receive one.
6131 */
6132 spin_lock_irq(shost->host_lock);
6133 fc_flag = vport->fc_flag;
6134 port_state = vport->port_state;
6135 vport->fc_flag |= FC_PT2PT;
6136 vport->fc_flag &= ~(FC_FABRIC | FC_PUBLIC_LOOP);
6137 spin_unlock_irq(shost->host_lock);
6138 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
6139 "3311 Rcv Flogi PS x%x new PS x%x "
6140 "fc_flag x%x new fc_flag x%x\n",
6141 port_state, vport->port_state,
6142 fc_flag, vport->fc_flag);
6143
6144 /*
6145 * We temporarily set fc_myDID to make it look like we are
6146 * a Fabric. This is done just so we end up with the right
6147 * did / sid on the FLOGI ACC rsp.
6148 */
6149 did = vport->fc_myDID;
6150 vport->fc_myDID = Fabric_DID;
6151
6152 memcpy(&phba->fc_fabparam, sp, sizeof(struct serv_parm));
James Smarteec3d312015-08-31 16:48:18 -04006153
dea31012005-04-17 16:05:31 -05006154 /* Send back ACC */
James Smartd6de08c2015-12-16 18:11:53 -05006155 lpfc_els_rsp_acc(vport, ELS_CMD_FLOGI, cmdiocb, ndlp, NULL);
dea31012005-04-17 16:05:31 -05006156
James Smart939723a2012-05-09 21:19:03 -04006157 /* Now lets put fc_myDID back to what its supposed to be */
6158 vport->fc_myDID = did;
6159
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05006160 return 0;
dea31012005-04-17 16:05:31 -05006161}
6162
James Smarte59058c2008-08-24 21:49:00 -04006163/**
James Smart3621a712009-04-06 18:47:14 -04006164 * lpfc_els_rcv_rnid - Process an unsolicited rnid iocb
James Smarte59058c2008-08-24 21:49:00 -04006165 * @vport: pointer to a host virtual N_Port data structure.
6166 * @cmdiocb: pointer to lpfc command iocb data structure.
6167 * @ndlp: pointer to a node-list data structure.
6168 *
6169 * This routine processes Request Node Identification Data (RNID) IOCB
6170 * received as an ELS unsolicited event. Only when the RNID specified format
6171 * 0x0 or 0xDF (Topology Discovery Specific Node Identification Data)
6172 * present, this routine will invoke the lpfc_els_rsp_rnid_acc() routine to
6173 * Accept (ACC) the RNID ELS command. All the other RNID formats are
6174 * rejected by invoking the lpfc_els_rsp_reject() routine.
6175 *
6176 * Return code
6177 * 0 - Successfully processed rnid iocb (currently always return 0)
6178 **/
dea31012005-04-17 16:05:31 -05006179static int
James Smart2e0fef82007-06-17 19:56:36 -05006180lpfc_els_rcv_rnid(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
6181 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05006182{
6183 struct lpfc_dmabuf *pcmd;
6184 uint32_t *lp;
dea31012005-04-17 16:05:31 -05006185 RNID *rn;
6186 struct ls_rjt stat;
James Smarteb016562014-09-03 12:58:06 -04006187 uint32_t cmd;
dea31012005-04-17 16:05:31 -05006188
dea31012005-04-17 16:05:31 -05006189 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
6190 lp = (uint32_t *) pcmd->virt;
6191
6192 cmd = *lp++;
6193 rn = (RNID *) lp;
6194
6195 /* RNID received */
6196
6197 switch (rn->Format) {
6198 case 0:
6199 case RNID_TOPOLOGY_DISC:
6200 /* Send back ACC */
James Smart2e0fef82007-06-17 19:56:36 -05006201 lpfc_els_rsp_rnid_acc(vport, rn->Format, cmdiocb, ndlp);
dea31012005-04-17 16:05:31 -05006202 break;
6203 default:
6204 /* Reject this request because format not supported */
6205 stat.un.b.lsRjtRsvd0 = 0;
6206 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
6207 stat.un.b.lsRjtRsnCodeExp = LSEXP_CANT_GIVE_DATA;
6208 stat.un.b.vendorUnique = 0;
James Smart858c9f62007-06-17 19:56:39 -05006209 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp,
6210 NULL);
dea31012005-04-17 16:05:31 -05006211 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05006212 return 0;
dea31012005-04-17 16:05:31 -05006213}
6214
James Smarte59058c2008-08-24 21:49:00 -04006215/**
James Smart12265f62010-10-22 11:05:53 -04006216 * lpfc_els_rcv_echo - Process an unsolicited echo iocb
6217 * @vport: pointer to a host virtual N_Port data structure.
6218 * @cmdiocb: pointer to lpfc command iocb data structure.
6219 * @ndlp: pointer to a node-list data structure.
6220 *
6221 * Return code
6222 * 0 - Successfully processed echo iocb (currently always return 0)
6223 **/
6224static int
6225lpfc_els_rcv_echo(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
6226 struct lpfc_nodelist *ndlp)
6227{
6228 uint8_t *pcmd;
6229
6230 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) cmdiocb->context2)->virt);
6231
6232 /* skip over first word of echo command to find echo data */
6233 pcmd += sizeof(uint32_t);
6234
6235 lpfc_els_rsp_echo_acc(vport, pcmd, cmdiocb, ndlp);
6236 return 0;
6237}
6238
6239/**
James Smart3621a712009-04-06 18:47:14 -04006240 * lpfc_els_rcv_lirr - Process an unsolicited lirr iocb
James Smarte59058c2008-08-24 21:49:00 -04006241 * @vport: pointer to a host virtual N_Port data structure.
6242 * @cmdiocb: pointer to lpfc command iocb data structure.
6243 * @ndlp: pointer to a node-list data structure.
6244 *
6245 * This routine processes a Link Incident Report Registration(LIRR) IOCB
6246 * received as an ELS unsolicited event. Currently, this function just invokes
6247 * the lpfc_els_rsp_reject() routine to reject the LIRR IOCB unconditionally.
6248 *
6249 * Return code
6250 * 0 - Successfully processed lirr iocb (currently always return 0)
6251 **/
dea31012005-04-17 16:05:31 -05006252static int
James Smart2e0fef82007-06-17 19:56:36 -05006253lpfc_els_rcv_lirr(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
6254 struct lpfc_nodelist *ndlp)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006255{
6256 struct ls_rjt stat;
6257
6258 /* For now, unconditionally reject this command */
6259 stat.un.b.lsRjtRsvd0 = 0;
6260 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
6261 stat.un.b.lsRjtRsnCodeExp = LSEXP_CANT_GIVE_DATA;
6262 stat.un.b.vendorUnique = 0;
James Smart858c9f62007-06-17 19:56:39 -05006263 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006264 return 0;
6265}
6266
James Smarte59058c2008-08-24 21:49:00 -04006267/**
James Smart5ffc2662009-11-18 15:39:44 -05006268 * lpfc_els_rcv_rrq - Process an unsolicited rrq iocb
6269 * @vport: pointer to a host virtual N_Port data structure.
6270 * @cmdiocb: pointer to lpfc command iocb data structure.
6271 * @ndlp: pointer to a node-list data structure.
6272 *
6273 * This routine processes a Reinstate Recovery Qualifier (RRQ) IOCB
6274 * received as an ELS unsolicited event. A request to RRQ shall only
6275 * be accepted if the Originator Nx_Port N_Port_ID or the Responder
6276 * Nx_Port N_Port_ID of the target Exchange is the same as the
6277 * N_Port_ID of the Nx_Port that makes the request. If the RRQ is
6278 * not accepted, an LS_RJT with reason code "Unable to perform
6279 * command request" and reason code explanation "Invalid Originator
6280 * S_ID" shall be returned. For now, we just unconditionally accept
6281 * RRQ from the target.
6282 **/
6283static void
6284lpfc_els_rcv_rrq(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
6285 struct lpfc_nodelist *ndlp)
6286{
6287 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
James Smart19ca7602010-11-20 23:11:55 -05006288 if (vport->phba->sli_rev == LPFC_SLI_REV4)
6289 lpfc_els_clear_rrq(vport, cmdiocb, ndlp);
James Smart5ffc2662009-11-18 15:39:44 -05006290}
6291
6292/**
James Smart12265f62010-10-22 11:05:53 -04006293 * lpfc_els_rsp_rls_acc - Completion callbk func for MBX_READ_LNK_STAT mbox cmd
6294 * @phba: pointer to lpfc hba data structure.
6295 * @pmb: pointer to the driver internal queue element for mailbox command.
6296 *
6297 * This routine is the completion callback function for the MBX_READ_LNK_STAT
6298 * mailbox command. This callback function is to actually send the Accept
6299 * (ACC) response to a Read Port Status (RPS) unsolicited IOCB event. It
6300 * collects the link statistics from the completion of the MBX_READ_LNK_STAT
6301 * mailbox command, constructs the RPS response with the link statistics
6302 * collected, and then invokes the lpfc_sli_issue_iocb() routine to send ACC
6303 * response to the RPS.
6304 *
6305 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
6306 * will be incremented by 1 for holding the ndlp and the reference to ndlp
6307 * will be stored into the context1 field of the IOCB for the completion
6308 * callback function to the RPS Accept Response ELS IOCB command.
6309 *
6310 **/
6311static void
6312lpfc_els_rsp_rls_acc(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
6313{
6314 MAILBOX_t *mb;
6315 IOCB_t *icmd;
6316 struct RLS_RSP *rls_rsp;
6317 uint8_t *pcmd;
6318 struct lpfc_iocbq *elsiocb;
6319 struct lpfc_nodelist *ndlp;
James Smart7851fe22011-07-22 18:36:52 -04006320 uint16_t oxid;
6321 uint16_t rxid;
James Smart12265f62010-10-22 11:05:53 -04006322 uint32_t cmdsize;
6323
6324 mb = &pmb->u.mb;
6325
6326 ndlp = (struct lpfc_nodelist *) pmb->context2;
James Smart7851fe22011-07-22 18:36:52 -04006327 rxid = (uint16_t) ((unsigned long)(pmb->context1) & 0xffff);
6328 oxid = (uint16_t) (((unsigned long)(pmb->context1) >> 16) & 0xffff);
James Smart12265f62010-10-22 11:05:53 -04006329 pmb->context1 = NULL;
6330 pmb->context2 = NULL;
6331
6332 if (mb->mbxStatus) {
6333 mempool_free(pmb, phba->mbox_mem_pool);
6334 return;
6335 }
6336
6337 cmdsize = sizeof(struct RLS_RSP) + sizeof(uint32_t);
James Smart12265f62010-10-22 11:05:53 -04006338 elsiocb = lpfc_prep_els_iocb(phba->pport, 0, cmdsize,
6339 lpfc_max_els_tries, ndlp,
6340 ndlp->nlp_DID, ELS_CMD_ACC);
6341
6342 /* Decrement the ndlp reference count from previous mbox command */
6343 lpfc_nlp_put(ndlp);
6344
James Smart37db57e2012-05-09 21:17:16 -04006345 if (!elsiocb) {
6346 mempool_free(pmb, phba->mbox_mem_pool);
James Smart12265f62010-10-22 11:05:53 -04006347 return;
James Smart37db57e2012-05-09 21:17:16 -04006348 }
James Smart12265f62010-10-22 11:05:53 -04006349
6350 icmd = &elsiocb->iocb;
James Smart7851fe22011-07-22 18:36:52 -04006351 icmd->ulpContext = rxid;
6352 icmd->unsli3.rcvsli3.ox_id = oxid;
James Smart12265f62010-10-22 11:05:53 -04006353
6354 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
6355 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
6356 pcmd += sizeof(uint32_t); /* Skip past command */
6357 rls_rsp = (struct RLS_RSP *)pcmd;
6358
6359 rls_rsp->linkFailureCnt = cpu_to_be32(mb->un.varRdLnk.linkFailureCnt);
6360 rls_rsp->lossSyncCnt = cpu_to_be32(mb->un.varRdLnk.lossSyncCnt);
6361 rls_rsp->lossSignalCnt = cpu_to_be32(mb->un.varRdLnk.lossSignalCnt);
6362 rls_rsp->primSeqErrCnt = cpu_to_be32(mb->un.varRdLnk.primSeqErrCnt);
6363 rls_rsp->invalidXmitWord = cpu_to_be32(mb->un.varRdLnk.invalidXmitWord);
6364 rls_rsp->crcCnt = cpu_to_be32(mb->un.varRdLnk.crcCnt);
James Smart37db57e2012-05-09 21:17:16 -04006365 mempool_free(pmb, phba->mbox_mem_pool);
James Smart12265f62010-10-22 11:05:53 -04006366 /* Xmit ELS RLS ACC response tag <ulpIoTag> */
6367 lpfc_printf_vlog(ndlp->vport, KERN_INFO, LOG_ELS,
6368 "2874 Xmit ELS RLS ACC response tag x%x xri x%x, "
6369 "did x%x, nlp_flag x%x, nlp_state x%x, rpi x%x\n",
6370 elsiocb->iotag, elsiocb->iocb.ulpContext,
6371 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
6372 ndlp->nlp_rpi);
6373 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
6374 phba->fc_stat.elsXmitACC++;
6375 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) == IOCB_ERROR)
6376 lpfc_els_free_iocb(phba, elsiocb);
6377}
6378
6379/**
James Smart3621a712009-04-06 18:47:14 -04006380 * lpfc_els_rsp_rps_acc - Completion callbk func for MBX_READ_LNK_STAT mbox cmd
James Smarte59058c2008-08-24 21:49:00 -04006381 * @phba: pointer to lpfc hba data structure.
6382 * @pmb: pointer to the driver internal queue element for mailbox command.
6383 *
6384 * This routine is the completion callback function for the MBX_READ_LNK_STAT
6385 * mailbox command. This callback function is to actually send the Accept
6386 * (ACC) response to a Read Port Status (RPS) unsolicited IOCB event. It
6387 * collects the link statistics from the completion of the MBX_READ_LNK_STAT
6388 * mailbox command, constructs the RPS response with the link statistics
6389 * collected, and then invokes the lpfc_sli_issue_iocb() routine to send ACC
6390 * response to the RPS.
6391 *
6392 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
6393 * will be incremented by 1 for holding the ndlp and the reference to ndlp
6394 * will be stored into the context1 field of the IOCB for the completion
6395 * callback function to the RPS Accept Response ELS IOCB command.
6396 *
6397 **/
Jamie Wellnitz082c0262006-02-28 19:25:30 -05006398static void
James Smart329f9bc2007-04-25 09:53:01 -04006399lpfc_els_rsp_rps_acc(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006400{
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006401 MAILBOX_t *mb;
6402 IOCB_t *icmd;
6403 RPS_RSP *rps_rsp;
6404 uint8_t *pcmd;
6405 struct lpfc_iocbq *elsiocb;
6406 struct lpfc_nodelist *ndlp;
James Smart7851fe22011-07-22 18:36:52 -04006407 uint16_t status;
6408 uint16_t oxid;
6409 uint16_t rxid;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006410 uint32_t cmdsize;
6411
James Smart04c68492009-05-22 14:52:52 -04006412 mb = &pmb->u.mb;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006413
6414 ndlp = (struct lpfc_nodelist *) pmb->context2;
James Smart7851fe22011-07-22 18:36:52 -04006415 rxid = (uint16_t) ((unsigned long)(pmb->context1) & 0xffff);
6416 oxid = (uint16_t) (((unsigned long)(pmb->context1) >> 16) & 0xffff);
Randy Dunlap041976f2006-06-25 01:58:51 -07006417 pmb->context1 = NULL;
6418 pmb->context2 = NULL;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006419
6420 if (mb->mbxStatus) {
James Smart329f9bc2007-04-25 09:53:01 -04006421 mempool_free(pmb, phba->mbox_mem_pool);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006422 return;
6423 }
6424
6425 cmdsize = sizeof(RPS_RSP) + sizeof(uint32_t);
James Smart329f9bc2007-04-25 09:53:01 -04006426 mempool_free(pmb, phba->mbox_mem_pool);
James Smart2e0fef82007-06-17 19:56:36 -05006427 elsiocb = lpfc_prep_els_iocb(phba->pport, 0, cmdsize,
6428 lpfc_max_els_tries, ndlp,
6429 ndlp->nlp_DID, ELS_CMD_ACC);
James Smartfa4066b2008-01-11 01:53:27 -05006430
6431 /* Decrement the ndlp reference count from previous mbox command */
James Smart329f9bc2007-04-25 09:53:01 -04006432 lpfc_nlp_put(ndlp);
James Smartfa4066b2008-01-11 01:53:27 -05006433
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05006434 if (!elsiocb)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006435 return;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006436
6437 icmd = &elsiocb->iocb;
James Smart7851fe22011-07-22 18:36:52 -04006438 icmd->ulpContext = rxid;
6439 icmd->unsli3.rcvsli3.ox_id = oxid;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006440
6441 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
6442 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
James Smart92d7f7b2007-06-17 19:56:38 -05006443 pcmd += sizeof(uint32_t); /* Skip past command */
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006444 rps_rsp = (RPS_RSP *)pcmd;
6445
James Smart76a95d72010-11-20 23:11:48 -05006446 if (phba->fc_topology != LPFC_TOPOLOGY_LOOP)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006447 status = 0x10;
6448 else
6449 status = 0x8;
James Smart2e0fef82007-06-17 19:56:36 -05006450 if (phba->pport->fc_flag & FC_FABRIC)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006451 status |= 0x4;
6452
6453 rps_rsp->rsvd1 = 0;
James Smart09372822008-01-11 01:52:54 -05006454 rps_rsp->portStatus = cpu_to_be16(status);
6455 rps_rsp->linkFailureCnt = cpu_to_be32(mb->un.varRdLnk.linkFailureCnt);
6456 rps_rsp->lossSyncCnt = cpu_to_be32(mb->un.varRdLnk.lossSyncCnt);
6457 rps_rsp->lossSignalCnt = cpu_to_be32(mb->un.varRdLnk.lossSignalCnt);
6458 rps_rsp->primSeqErrCnt = cpu_to_be32(mb->un.varRdLnk.primSeqErrCnt);
6459 rps_rsp->invalidXmitWord = cpu_to_be32(mb->un.varRdLnk.invalidXmitWord);
6460 rps_rsp->crcCnt = cpu_to_be32(mb->un.varRdLnk.crcCnt);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006461 /* Xmit ELS RPS ACC response tag <ulpIoTag> */
James Smarte8b62012007-08-02 11:10:09 -04006462 lpfc_printf_vlog(ndlp->vport, KERN_INFO, LOG_ELS,
6463 "0118 Xmit ELS RPS ACC response tag x%x xri x%x, "
6464 "did x%x, nlp_flag x%x, nlp_state x%x, rpi x%x\n",
6465 elsiocb->iotag, elsiocb->iocb.ulpContext,
6466 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
6467 ndlp->nlp_rpi);
James Smart858c9f62007-06-17 19:56:39 -05006468 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006469 phba->fc_stat.elsXmitACC++;
James Smart3772a992009-05-22 14:50:54 -04006470 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) == IOCB_ERROR)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006471 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006472 return;
6473}
6474
James Smarte59058c2008-08-24 21:49:00 -04006475/**
James Smart12265f62010-10-22 11:05:53 -04006476 * lpfc_els_rcv_rls - Process an unsolicited rls iocb
6477 * @vport: pointer to a host virtual N_Port data structure.
6478 * @cmdiocb: pointer to lpfc command iocb data structure.
6479 * @ndlp: pointer to a node-list data structure.
6480 *
6481 * This routine processes Read Port Status (RPL) IOCB received as an
6482 * ELS unsolicited event. It first checks the remote port state. If the
6483 * remote port is not in NLP_STE_UNMAPPED_NODE state or NLP_STE_MAPPED_NODE
6484 * state, it invokes the lpfc_els_rsl_reject() routine to send the reject
6485 * response. Otherwise, it issue the MBX_READ_LNK_STAT mailbox command
6486 * for reading the HBA link statistics. It is for the callback function,
6487 * lpfc_els_rsp_rls_acc(), set to the MBX_READ_LNK_STAT mailbox command
6488 * to actually sending out RPL Accept (ACC) response.
6489 *
6490 * Return codes
6491 * 0 - Successfully processed rls iocb (currently always return 0)
6492 **/
6493static int
6494lpfc_els_rcv_rls(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
6495 struct lpfc_nodelist *ndlp)
6496{
6497 struct lpfc_hba *phba = vport->phba;
6498 LPFC_MBOXQ_t *mbox;
James Smart12265f62010-10-22 11:05:53 -04006499 struct ls_rjt stat;
6500
6501 if ((ndlp->nlp_state != NLP_STE_UNMAPPED_NODE) &&
6502 (ndlp->nlp_state != NLP_STE_MAPPED_NODE))
6503 /* reject the unsolicited RPS request and done with it */
6504 goto reject_out;
6505
James Smart12265f62010-10-22 11:05:53 -04006506 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_ATOMIC);
6507 if (mbox) {
6508 lpfc_read_lnk_stat(phba, mbox);
James Smart7851fe22011-07-22 18:36:52 -04006509 mbox->context1 = (void *)((unsigned long)
6510 ((cmdiocb->iocb.unsli3.rcvsli3.ox_id << 16) |
6511 cmdiocb->iocb.ulpContext)); /* rx_id */
James Smart12265f62010-10-22 11:05:53 -04006512 mbox->context2 = lpfc_nlp_get(ndlp);
6513 mbox->vport = vport;
6514 mbox->mbox_cmpl = lpfc_els_rsp_rls_acc;
6515 if (lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT)
6516 != MBX_NOT_FINISHED)
6517 /* Mbox completion will send ELS Response */
6518 return 0;
6519 /* Decrement reference count used for the failed mbox
6520 * command.
6521 */
6522 lpfc_nlp_put(ndlp);
6523 mempool_free(mbox, phba->mbox_mem_pool);
6524 }
6525reject_out:
6526 /* issue rejection response */
6527 stat.un.b.lsRjtRsvd0 = 0;
6528 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
6529 stat.un.b.lsRjtRsnCodeExp = LSEXP_CANT_GIVE_DATA;
6530 stat.un.b.vendorUnique = 0;
6531 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
6532 return 0;
6533}
6534
6535/**
6536 * lpfc_els_rcv_rtv - Process an unsolicited rtv iocb
6537 * @vport: pointer to a host virtual N_Port data structure.
6538 * @cmdiocb: pointer to lpfc command iocb data structure.
6539 * @ndlp: pointer to a node-list data structure.
6540 *
6541 * This routine processes Read Timout Value (RTV) IOCB received as an
6542 * ELS unsolicited event. It first checks the remote port state. If the
6543 * remote port is not in NLP_STE_UNMAPPED_NODE state or NLP_STE_MAPPED_NODE
6544 * state, it invokes the lpfc_els_rsl_reject() routine to send the reject
6545 * response. Otherwise, it sends the Accept(ACC) response to a Read Timeout
6546 * Value (RTV) unsolicited IOCB event.
6547 *
6548 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
6549 * will be incremented by 1 for holding the ndlp and the reference to ndlp
6550 * will be stored into the context1 field of the IOCB for the completion
6551 * callback function to the RPS Accept Response ELS IOCB command.
6552 *
6553 * Return codes
6554 * 0 - Successfully processed rtv iocb (currently always return 0)
6555 **/
6556static int
6557lpfc_els_rcv_rtv(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
6558 struct lpfc_nodelist *ndlp)
6559{
6560 struct lpfc_hba *phba = vport->phba;
6561 struct ls_rjt stat;
6562 struct RTV_RSP *rtv_rsp;
6563 uint8_t *pcmd;
6564 struct lpfc_iocbq *elsiocb;
6565 uint32_t cmdsize;
6566
6567
6568 if ((ndlp->nlp_state != NLP_STE_UNMAPPED_NODE) &&
6569 (ndlp->nlp_state != NLP_STE_MAPPED_NODE))
6570 /* reject the unsolicited RPS request and done with it */
6571 goto reject_out;
6572
6573 cmdsize = sizeof(struct RTV_RSP) + sizeof(uint32_t);
6574 elsiocb = lpfc_prep_els_iocb(phba->pport, 0, cmdsize,
6575 lpfc_max_els_tries, ndlp,
6576 ndlp->nlp_DID, ELS_CMD_ACC);
6577
6578 if (!elsiocb)
6579 return 1;
6580
6581 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
6582 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
6583 pcmd += sizeof(uint32_t); /* Skip past command */
6584
6585 /* use the command's xri in the response */
James Smart7851fe22011-07-22 18:36:52 -04006586 elsiocb->iocb.ulpContext = cmdiocb->iocb.ulpContext; /* Xri / rx_id */
6587 elsiocb->iocb.unsli3.rcvsli3.ox_id = cmdiocb->iocb.unsli3.rcvsli3.ox_id;
James Smart12265f62010-10-22 11:05:53 -04006588
6589 rtv_rsp = (struct RTV_RSP *)pcmd;
6590
6591 /* populate RTV payload */
6592 rtv_rsp->ratov = cpu_to_be32(phba->fc_ratov * 1000); /* report msecs */
6593 rtv_rsp->edtov = cpu_to_be32(phba->fc_edtov);
6594 bf_set(qtov_edtovres, rtv_rsp, phba->fc_edtovResol ? 1 : 0);
6595 bf_set(qtov_rttov, rtv_rsp, 0); /* Field is for FC ONLY */
6596 rtv_rsp->qtov = cpu_to_be32(rtv_rsp->qtov);
6597
6598 /* Xmit ELS RLS ACC response tag <ulpIoTag> */
6599 lpfc_printf_vlog(ndlp->vport, KERN_INFO, LOG_ELS,
6600 "2875 Xmit ELS RTV ACC response tag x%x xri x%x, "
6601 "did x%x, nlp_flag x%x, nlp_state x%x, rpi x%x, "
6602 "Data: x%x x%x x%x\n",
6603 elsiocb->iotag, elsiocb->iocb.ulpContext,
6604 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
6605 ndlp->nlp_rpi,
6606 rtv_rsp->ratov, rtv_rsp->edtov, rtv_rsp->qtov);
6607 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
6608 phba->fc_stat.elsXmitACC++;
6609 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) == IOCB_ERROR)
6610 lpfc_els_free_iocb(phba, elsiocb);
6611 return 0;
6612
6613reject_out:
6614 /* issue rejection response */
6615 stat.un.b.lsRjtRsvd0 = 0;
6616 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
6617 stat.un.b.lsRjtRsnCodeExp = LSEXP_CANT_GIVE_DATA;
6618 stat.un.b.vendorUnique = 0;
6619 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
6620 return 0;
6621}
6622
6623/* lpfc_els_rcv_rps - Process an unsolicited rps iocb
James Smarte59058c2008-08-24 21:49:00 -04006624 * @vport: pointer to a host virtual N_Port data structure.
6625 * @cmdiocb: pointer to lpfc command iocb data structure.
6626 * @ndlp: pointer to a node-list data structure.
6627 *
6628 * This routine processes Read Port Status (RPS) IOCB received as an
6629 * ELS unsolicited event. It first checks the remote port state. If the
6630 * remote port is not in NLP_STE_UNMAPPED_NODE state or NLP_STE_MAPPED_NODE
6631 * state, it invokes the lpfc_els_rsp_reject() routine to send the reject
6632 * response. Otherwise, it issue the MBX_READ_LNK_STAT mailbox command
6633 * for reading the HBA link statistics. It is for the callback function,
6634 * lpfc_els_rsp_rps_acc(), set to the MBX_READ_LNK_STAT mailbox command
6635 * to actually sending out RPS Accept (ACC) response.
6636 *
6637 * Return codes
6638 * 0 - Successfully processed rps iocb (currently always return 0)
6639 **/
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006640static int
James Smart2e0fef82007-06-17 19:56:36 -05006641lpfc_els_rcv_rps(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
6642 struct lpfc_nodelist *ndlp)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006643{
James Smart2e0fef82007-06-17 19:56:36 -05006644 struct lpfc_hba *phba = vport->phba;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006645 uint32_t *lp;
6646 uint8_t flag;
6647 LPFC_MBOXQ_t *mbox;
6648 struct lpfc_dmabuf *pcmd;
6649 RPS *rps;
6650 struct ls_rjt stat;
6651
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05006652 if ((ndlp->nlp_state != NLP_STE_UNMAPPED_NODE) &&
James Smart90160e02008-08-24 21:49:45 -04006653 (ndlp->nlp_state != NLP_STE_MAPPED_NODE))
6654 /* reject the unsolicited RPS request and done with it */
6655 goto reject_out;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006656
6657 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
6658 lp = (uint32_t *) pcmd->virt;
6659 flag = (be32_to_cpu(*lp++) & 0xf);
6660 rps = (RPS *) lp;
6661
6662 if ((flag == 0) ||
6663 ((flag == 1) && (be32_to_cpu(rps->un.portNum) == 0)) ||
James Smart2e0fef82007-06-17 19:56:36 -05006664 ((flag == 2) && (memcmp(&rps->un.portName, &vport->fc_portname,
James Smart92d7f7b2007-06-17 19:56:38 -05006665 sizeof(struct lpfc_name)) == 0))) {
James Smart2e0fef82007-06-17 19:56:36 -05006666
James Smart92d7f7b2007-06-17 19:56:38 -05006667 printk("Fix me....\n");
6668 dump_stack();
James Smart2e0fef82007-06-17 19:56:36 -05006669 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_ATOMIC);
6670 if (mbox) {
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006671 lpfc_read_lnk_stat(phba, mbox);
James Smart7851fe22011-07-22 18:36:52 -04006672 mbox->context1 = (void *)((unsigned long)
6673 ((cmdiocb->iocb.unsli3.rcvsli3.ox_id << 16) |
6674 cmdiocb->iocb.ulpContext)); /* rx_id */
James Smart329f9bc2007-04-25 09:53:01 -04006675 mbox->context2 = lpfc_nlp_get(ndlp);
James Smart92d7f7b2007-06-17 19:56:38 -05006676 mbox->vport = vport;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006677 mbox->mbox_cmpl = lpfc_els_rsp_rps_acc;
James Smartfa4066b2008-01-11 01:53:27 -05006678 if (lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT)
James Smart0b727fe2007-10-27 13:37:25 -04006679 != MBX_NOT_FINISHED)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006680 /* Mbox completion will send ELS Response */
6681 return 0;
James Smartfa4066b2008-01-11 01:53:27 -05006682 /* Decrement reference count used for the failed mbox
6683 * command.
6684 */
James Smart329f9bc2007-04-25 09:53:01 -04006685 lpfc_nlp_put(ndlp);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006686 mempool_free(mbox, phba->mbox_mem_pool);
6687 }
6688 }
James Smart90160e02008-08-24 21:49:45 -04006689
6690reject_out:
6691 /* issue rejection response */
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006692 stat.un.b.lsRjtRsvd0 = 0;
6693 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
6694 stat.un.b.lsRjtRsnCodeExp = LSEXP_CANT_GIVE_DATA;
6695 stat.un.b.vendorUnique = 0;
James Smart858c9f62007-06-17 19:56:39 -05006696 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006697 return 0;
6698}
6699
James Smart19ca7602010-11-20 23:11:55 -05006700/* lpfc_issue_els_rrq - Process an unsolicited rps iocb
6701 * @vport: pointer to a host virtual N_Port data structure.
6702 * @ndlp: pointer to a node-list data structure.
6703 * @did: DID of the target.
6704 * @rrq: Pointer to the rrq struct.
6705 *
6706 * Build a ELS RRQ command and send it to the target. If the issue_iocb is
6707 * Successful the the completion handler will clear the RRQ.
6708 *
6709 * Return codes
6710 * 0 - Successfully sent rrq els iocb.
6711 * 1 - Failed to send rrq els iocb.
6712 **/
6713static int
6714lpfc_issue_els_rrq(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
6715 uint32_t did, struct lpfc_node_rrq *rrq)
6716{
6717 struct lpfc_hba *phba = vport->phba;
6718 struct RRQ *els_rrq;
James Smart19ca7602010-11-20 23:11:55 -05006719 struct lpfc_iocbq *elsiocb;
6720 uint8_t *pcmd;
6721 uint16_t cmdsize;
6722 int ret;
6723
6724
6725 if (ndlp != rrq->ndlp)
6726 ndlp = rrq->ndlp;
6727 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp))
6728 return 1;
6729
6730 /* If ndlp is not NULL, we will bump the reference count on it */
6731 cmdsize = (sizeof(uint32_t) + sizeof(struct RRQ));
6732 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, 0, ndlp, did,
6733 ELS_CMD_RRQ);
6734 if (!elsiocb)
6735 return 1;
6736
James Smart19ca7602010-11-20 23:11:55 -05006737 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
6738
6739 /* For RRQ request, remainder of payload is Exchange IDs */
6740 *((uint32_t *) (pcmd)) = ELS_CMD_RRQ;
6741 pcmd += sizeof(uint32_t);
6742 els_rrq = (struct RRQ *) pcmd;
6743
James Smartee0f4fe2012-05-09 21:19:14 -04006744 bf_set(rrq_oxid, els_rrq, phba->sli4_hba.xri_ids[rrq->xritag]);
James Smart19ca7602010-11-20 23:11:55 -05006745 bf_set(rrq_rxid, els_rrq, rrq->rxid);
6746 bf_set(rrq_did, els_rrq, vport->fc_myDID);
6747 els_rrq->rrq = cpu_to_be32(els_rrq->rrq);
6748 els_rrq->rrq_exchg = cpu_to_be32(els_rrq->rrq_exchg);
6749
6750
6751 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
6752 "Issue RRQ: did:x%x",
6753 did, rrq->xritag, rrq->rxid);
6754 elsiocb->context_un.rrq = rrq;
6755 elsiocb->iocb_cmpl = lpfc_cmpl_els_rrq;
6756 ret = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
6757
6758 if (ret == IOCB_ERROR) {
6759 lpfc_els_free_iocb(phba, elsiocb);
6760 return 1;
6761 }
6762 return 0;
6763}
6764
6765/**
6766 * lpfc_send_rrq - Sends ELS RRQ if needed.
6767 * @phba: pointer to lpfc hba data structure.
6768 * @rrq: pointer to the active rrq.
6769 *
6770 * This routine will call the lpfc_issue_els_rrq if the rrq is
6771 * still active for the xri. If this function returns a failure then
6772 * the caller needs to clean up the RRQ by calling lpfc_clr_active_rrq.
6773 *
6774 * Returns 0 Success.
6775 * 1 Failure.
6776 **/
6777int
6778lpfc_send_rrq(struct lpfc_hba *phba, struct lpfc_node_rrq *rrq)
6779{
6780 struct lpfc_nodelist *ndlp = lpfc_findnode_did(rrq->vport,
6781 rrq->nlp_DID);
6782 if (lpfc_test_rrq_active(phba, ndlp, rrq->xritag))
6783 return lpfc_issue_els_rrq(rrq->vport, ndlp,
6784 rrq->nlp_DID, rrq);
6785 else
6786 return 1;
6787}
6788
James Smarte59058c2008-08-24 21:49:00 -04006789/**
James Smart3621a712009-04-06 18:47:14 -04006790 * lpfc_els_rsp_rpl_acc - Issue an accept rpl els command
James Smarte59058c2008-08-24 21:49:00 -04006791 * @vport: pointer to a host virtual N_Port data structure.
6792 * @cmdsize: size of the ELS command.
6793 * @oldiocb: pointer to the original lpfc command iocb data structure.
6794 * @ndlp: pointer to a node-list data structure.
6795 *
6796 * This routine issuees an Accept (ACC) Read Port List (RPL) ELS command.
6797 * It is to be called by the lpfc_els_rcv_rpl() routine to accept the RPL.
6798 *
6799 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
6800 * will be incremented by 1 for holding the ndlp and the reference to ndlp
6801 * will be stored into the context1 field of the IOCB for the completion
6802 * callback function to the RPL Accept Response ELS command.
6803 *
6804 * Return code
6805 * 0 - Successfully issued ACC RPL ELS command
6806 * 1 - Failed to issue ACC RPL ELS command
6807 **/
Jamie Wellnitz082c0262006-02-28 19:25:30 -05006808static int
James Smart2e0fef82007-06-17 19:56:36 -05006809lpfc_els_rsp_rpl_acc(struct lpfc_vport *vport, uint16_t cmdsize,
6810 struct lpfc_iocbq *oldiocb, struct lpfc_nodelist *ndlp)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006811{
James Smart2e0fef82007-06-17 19:56:36 -05006812 struct lpfc_hba *phba = vport->phba;
6813 IOCB_t *icmd, *oldcmd;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006814 RPL_RSP rpl_rsp;
6815 struct lpfc_iocbq *elsiocb;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006816 uint8_t *pcmd;
6817
James Smart2e0fef82007-06-17 19:56:36 -05006818 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry, ndlp,
6819 ndlp->nlp_DID, ELS_CMD_ACC);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006820
James Smart488d1462006-03-07 15:02:37 -05006821 if (!elsiocb)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006822 return 1;
James Smart488d1462006-03-07 15:02:37 -05006823
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006824 icmd = &elsiocb->iocb;
6825 oldcmd = &oldiocb->iocb;
James Smart7851fe22011-07-22 18:36:52 -04006826 icmd->ulpContext = oldcmd->ulpContext; /* Xri / rx_id */
6827 icmd->unsli3.rcvsli3.ox_id = oldcmd->unsli3.rcvsli3.ox_id;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006828
6829 pcmd = (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
6830 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
James Smart92d7f7b2007-06-17 19:56:38 -05006831 pcmd += sizeof(uint16_t);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006832 *((uint16_t *)(pcmd)) = be16_to_cpu(cmdsize);
6833 pcmd += sizeof(uint16_t);
6834
6835 /* Setup the RPL ACC payload */
6836 rpl_rsp.listLen = be32_to_cpu(1);
6837 rpl_rsp.index = 0;
6838 rpl_rsp.port_num_blk.portNum = 0;
James Smart2e0fef82007-06-17 19:56:36 -05006839 rpl_rsp.port_num_blk.portID = be32_to_cpu(vport->fc_myDID);
6840 memcpy(&rpl_rsp.port_num_blk.portName, &vport->fc_portname,
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006841 sizeof(struct lpfc_name));
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006842 memcpy(pcmd, &rpl_rsp, cmdsize - sizeof(uint32_t));
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006843 /* Xmit ELS RPL ACC response tag <ulpIoTag> */
James Smarte8b62012007-08-02 11:10:09 -04006844 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
6845 "0120 Xmit ELS RPL ACC response tag x%x "
6846 "xri x%x, did x%x, nlp_flag x%x, nlp_state x%x, "
6847 "rpi x%x\n",
6848 elsiocb->iotag, elsiocb->iocb.ulpContext,
6849 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
6850 ndlp->nlp_rpi);
James Smart858c9f62007-06-17 19:56:39 -05006851 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006852 phba->fc_stat.elsXmitACC++;
James Smart3772a992009-05-22 14:50:54 -04006853 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) ==
6854 IOCB_ERROR) {
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006855 lpfc_els_free_iocb(phba, elsiocb);
6856 return 1;
6857 }
6858 return 0;
6859}
6860
James Smarte59058c2008-08-24 21:49:00 -04006861/**
James Smart3621a712009-04-06 18:47:14 -04006862 * lpfc_els_rcv_rpl - Process an unsolicited rpl iocb
James Smarte59058c2008-08-24 21:49:00 -04006863 * @vport: pointer to a host virtual N_Port data structure.
6864 * @cmdiocb: pointer to lpfc command iocb data structure.
6865 * @ndlp: pointer to a node-list data structure.
6866 *
6867 * This routine processes Read Port List (RPL) IOCB received as an ELS
6868 * unsolicited event. It first checks the remote port state. If the remote
6869 * port is not in NLP_STE_UNMAPPED_NODE and NLP_STE_MAPPED_NODE states, it
6870 * invokes the lpfc_els_rsp_reject() routine to send reject response.
6871 * Otherwise, this routine then invokes the lpfc_els_rsp_rpl_acc() routine
6872 * to accept the RPL.
6873 *
6874 * Return code
6875 * 0 - Successfully processed rpl iocb (currently always return 0)
6876 **/
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006877static int
James Smart2e0fef82007-06-17 19:56:36 -05006878lpfc_els_rcv_rpl(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
6879 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05006880{
6881 struct lpfc_dmabuf *pcmd;
6882 uint32_t *lp;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006883 uint32_t maxsize;
6884 uint16_t cmdsize;
6885 RPL *rpl;
6886 struct ls_rjt stat;
dea31012005-04-17 16:05:31 -05006887
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05006888 if ((ndlp->nlp_state != NLP_STE_UNMAPPED_NODE) &&
6889 (ndlp->nlp_state != NLP_STE_MAPPED_NODE)) {
James Smart90160e02008-08-24 21:49:45 -04006890 /* issue rejection response */
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006891 stat.un.b.lsRjtRsvd0 = 0;
6892 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
6893 stat.un.b.lsRjtRsnCodeExp = LSEXP_CANT_GIVE_DATA;
6894 stat.un.b.vendorUnique = 0;
James Smart858c9f62007-06-17 19:56:39 -05006895 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp,
6896 NULL);
James Smart90160e02008-08-24 21:49:45 -04006897 /* rejected the unsolicited RPL request and done with it */
6898 return 0;
dea31012005-04-17 16:05:31 -05006899 }
6900
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006901 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
6902 lp = (uint32_t *) pcmd->virt;
6903 rpl = (RPL *) (lp + 1);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006904 maxsize = be32_to_cpu(rpl->maxsize);
6905
6906 /* We support only one port */
6907 if ((rpl->index == 0) &&
6908 ((maxsize == 0) ||
6909 ((maxsize * sizeof(uint32_t)) >= sizeof(RPL_RSP)))) {
6910 cmdsize = sizeof(uint32_t) + sizeof(RPL_RSP);
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05006911 } else {
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006912 cmdsize = sizeof(uint32_t) + maxsize * sizeof(uint32_t);
6913 }
James Smart2e0fef82007-06-17 19:56:36 -05006914 lpfc_els_rsp_rpl_acc(vport, cmdsize, cmdiocb, ndlp);
dea31012005-04-17 16:05:31 -05006915
6916 return 0;
6917}
6918
James Smarte59058c2008-08-24 21:49:00 -04006919/**
James Smart3621a712009-04-06 18:47:14 -04006920 * lpfc_els_rcv_farp - Process an unsolicited farp request els command
James Smarte59058c2008-08-24 21:49:00 -04006921 * @vport: pointer to a virtual N_Port data structure.
6922 * @cmdiocb: pointer to lpfc command iocb data structure.
6923 * @ndlp: pointer to a node-list data structure.
6924 *
6925 * This routine processes Fibre Channel Address Resolution Protocol
6926 * (FARP) Request IOCB received as an ELS unsolicited event. Currently,
6927 * the lpfc driver only supports matching on WWPN or WWNN for FARP. As such,
6928 * FARP_MATCH_PORT flag and FARP_MATCH_NODE flag are checked against the
6929 * Match Flag in the FARP request IOCB: if FARP_MATCH_PORT flag is set, the
6930 * remote PortName is compared against the FC PortName stored in the @vport
6931 * data structure; if FARP_MATCH_NODE flag is set, the remote NodeName is
6932 * compared against the FC NodeName stored in the @vport data structure.
6933 * If any of these matches and the FARP_REQUEST_FARPR flag is set in the
6934 * FARP request IOCB Response Flag, the lpfc_issue_els_farpr() routine is
6935 * invoked to send out FARP Response to the remote node. Before sending the
6936 * FARP Response, however, the FARP_REQUEST_PLOGI flag is check in the FARP
6937 * request IOCB Response Flag and, if it is set, the lpfc_issue_els_plogi()
6938 * routine is invoked to log into the remote port first.
6939 *
6940 * Return code
6941 * 0 - Either the FARP Match Mode not supported or successfully processed
6942 **/
dea31012005-04-17 16:05:31 -05006943static int
James Smart2e0fef82007-06-17 19:56:36 -05006944lpfc_els_rcv_farp(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
6945 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05006946{
6947 struct lpfc_dmabuf *pcmd;
6948 uint32_t *lp;
6949 IOCB_t *icmd;
6950 FARP *fp;
6951 uint32_t cmd, cnt, did;
6952
6953 icmd = &cmdiocb->iocb;
6954 did = icmd->un.elsreq64.remoteID;
6955 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
6956 lp = (uint32_t *) pcmd->virt;
6957
6958 cmd = *lp++;
6959 fp = (FARP *) lp;
dea31012005-04-17 16:05:31 -05006960 /* FARP-REQ received from DID <did> */
James Smarte8b62012007-08-02 11:10:09 -04006961 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
6962 "0601 FARP-REQ received from DID x%x\n", did);
dea31012005-04-17 16:05:31 -05006963 /* We will only support match on WWPN or WWNN */
6964 if (fp->Mflags & ~(FARP_MATCH_NODE | FARP_MATCH_PORT)) {
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05006965 return 0;
dea31012005-04-17 16:05:31 -05006966 }
6967
6968 cnt = 0;
6969 /* If this FARP command is searching for my portname */
6970 if (fp->Mflags & FARP_MATCH_PORT) {
James Smart2e0fef82007-06-17 19:56:36 -05006971 if (memcmp(&fp->RportName, &vport->fc_portname,
James Smart92d7f7b2007-06-17 19:56:38 -05006972 sizeof(struct lpfc_name)) == 0)
dea31012005-04-17 16:05:31 -05006973 cnt = 1;
6974 }
6975
6976 /* If this FARP command is searching for my nodename */
6977 if (fp->Mflags & FARP_MATCH_NODE) {
James Smart2e0fef82007-06-17 19:56:36 -05006978 if (memcmp(&fp->RnodeName, &vport->fc_nodename,
James Smart92d7f7b2007-06-17 19:56:38 -05006979 sizeof(struct lpfc_name)) == 0)
dea31012005-04-17 16:05:31 -05006980 cnt = 1;
6981 }
6982
6983 if (cnt) {
6984 if ((ndlp->nlp_state == NLP_STE_UNMAPPED_NODE) ||
6985 (ndlp->nlp_state == NLP_STE_MAPPED_NODE)) {
6986 /* Log back into the node before sending the FARP. */
6987 if (fp->Rflags & FARP_REQUEST_PLOGI) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05006988 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05006989 lpfc_nlp_set_state(vport, ndlp,
James Smartde0c5b32007-04-25 09:52:27 -04006990 NLP_STE_PLOGI_ISSUE);
James Smart2e0fef82007-06-17 19:56:36 -05006991 lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0);
dea31012005-04-17 16:05:31 -05006992 }
6993
6994 /* Send a FARP response to that node */
James Smart2e0fef82007-06-17 19:56:36 -05006995 if (fp->Rflags & FARP_REQUEST_FARPR)
6996 lpfc_issue_els_farpr(vport, did, 0);
dea31012005-04-17 16:05:31 -05006997 }
6998 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05006999 return 0;
dea31012005-04-17 16:05:31 -05007000}
7001
James Smarte59058c2008-08-24 21:49:00 -04007002/**
James Smart3621a712009-04-06 18:47:14 -04007003 * lpfc_els_rcv_farpr - Process an unsolicited farp response iocb
James Smarte59058c2008-08-24 21:49:00 -04007004 * @vport: pointer to a host virtual N_Port data structure.
7005 * @cmdiocb: pointer to lpfc command iocb data structure.
7006 * @ndlp: pointer to a node-list data structure.
7007 *
7008 * This routine processes Fibre Channel Address Resolution Protocol
7009 * Response (FARPR) IOCB received as an ELS unsolicited event. It simply
7010 * invokes the lpfc_els_rsp_acc() routine to the remote node to accept
7011 * the FARP response request.
7012 *
7013 * Return code
7014 * 0 - Successfully processed FARPR IOCB (currently always return 0)
7015 **/
dea31012005-04-17 16:05:31 -05007016static int
James Smart2e0fef82007-06-17 19:56:36 -05007017lpfc_els_rcv_farpr(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
7018 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05007019{
7020 struct lpfc_dmabuf *pcmd;
7021 uint32_t *lp;
7022 IOCB_t *icmd;
7023 uint32_t cmd, did;
7024
7025 icmd = &cmdiocb->iocb;
7026 did = icmd->un.elsreq64.remoteID;
7027 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
7028 lp = (uint32_t *) pcmd->virt;
7029
7030 cmd = *lp++;
7031 /* FARP-RSP received from DID <did> */
James Smarte8b62012007-08-02 11:10:09 -04007032 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
7033 "0600 FARP-RSP received from DID x%x\n", did);
dea31012005-04-17 16:05:31 -05007034 /* ACCEPT the Farp resp request */
James Smart51ef4c22007-08-02 11:10:31 -04007035 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
dea31012005-04-17 16:05:31 -05007036
7037 return 0;
7038}
7039
James Smarte59058c2008-08-24 21:49:00 -04007040/**
James Smart3621a712009-04-06 18:47:14 -04007041 * lpfc_els_rcv_fan - Process an unsolicited fan iocb command
James Smarte59058c2008-08-24 21:49:00 -04007042 * @vport: pointer to a host virtual N_Port data structure.
7043 * @cmdiocb: pointer to lpfc command iocb data structure.
7044 * @fan_ndlp: pointer to a node-list data structure.
7045 *
7046 * This routine processes a Fabric Address Notification (FAN) IOCB
7047 * command received as an ELS unsolicited event. The FAN ELS command will
7048 * only be processed on a physical port (i.e., the @vport represents the
7049 * physical port). The fabric NodeName and PortName from the FAN IOCB are
7050 * compared against those in the phba data structure. If any of those is
7051 * different, the lpfc_initial_flogi() routine is invoked to initialize
7052 * Fabric Login (FLOGI) to the fabric to start the discover over. Otherwise,
7053 * if both of those are identical, the lpfc_issue_fabric_reglogin() routine
7054 * is invoked to register login to the fabric.
7055 *
7056 * Return code
7057 * 0 - Successfully processed fan iocb (currently always return 0).
7058 **/
dea31012005-04-17 16:05:31 -05007059static int
James Smart2e0fef82007-06-17 19:56:36 -05007060lpfc_els_rcv_fan(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
7061 struct lpfc_nodelist *fan_ndlp)
dea31012005-04-17 16:05:31 -05007062{
James Smart2e0fef82007-06-17 19:56:36 -05007063 struct lpfc_hba *phba = vport->phba;
James Smart0d2b6b82008-06-14 22:52:47 -04007064 uint32_t *lp;
7065 FAN *fp;
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05007066
James Smart0d2b6b82008-06-14 22:52:47 -04007067 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS, "0265 FAN received\n");
7068 lp = (uint32_t *)((struct lpfc_dmabuf *)cmdiocb->context2)->virt;
7069 fp = (FAN *) ++lp;
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05007070 /* FAN received; Fan does not have a reply sequence */
James Smart0d2b6b82008-06-14 22:52:47 -04007071 if ((vport == phba->pport) &&
7072 (vport->port_state == LPFC_LOCAL_CFG_LINK)) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05007073 if ((memcmp(&phba->fc_fabparam.nodeName, &fp->FnodeName,
James Smart0d2b6b82008-06-14 22:52:47 -04007074 sizeof(struct lpfc_name))) ||
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05007075 (memcmp(&phba->fc_fabparam.portName, &fp->FportName,
James Smart0d2b6b82008-06-14 22:52:47 -04007076 sizeof(struct lpfc_name)))) {
7077 /* This port has switched fabrics. FLOGI is required */
James Smart76a95d72010-11-20 23:11:48 -05007078 lpfc_issue_init_vfi(vport);
James Smart0d2b6b82008-06-14 22:52:47 -04007079 } else {
7080 /* FAN verified - skip FLOGI */
7081 vport->fc_myDID = vport->fc_prevDID;
James Smart6fb120a2009-05-22 14:52:59 -04007082 if (phba->sli_rev < LPFC_SLI_REV4)
7083 lpfc_issue_fabric_reglogin(vport);
James Smart1b511972011-12-13 13:23:09 -05007084 else {
7085 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
7086 "3138 Need register VFI: (x%x/%x)\n",
7087 vport->fc_prevDID, vport->fc_myDID);
James Smart6fb120a2009-05-22 14:52:59 -04007088 lpfc_issue_reg_vfi(vport);
James Smart1b511972011-12-13 13:23:09 -05007089 }
dea31012005-04-17 16:05:31 -05007090 }
dea31012005-04-17 16:05:31 -05007091 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05007092 return 0;
dea31012005-04-17 16:05:31 -05007093}
7094
James Smarte59058c2008-08-24 21:49:00 -04007095/**
James Smart3621a712009-04-06 18:47:14 -04007096 * lpfc_els_timeout - Handler funciton to the els timer
James Smarte59058c2008-08-24 21:49:00 -04007097 * @ptr: holder for the timer function associated data.
7098 *
7099 * This routine is invoked by the ELS timer after timeout. It posts the ELS
7100 * timer timeout event by setting the WORKER_ELS_TMO bit to the work port
7101 * event bitmap and then invokes the lpfc_worker_wake_up() routine to wake
7102 * up the worker thread. It is for the worker thread to invoke the routine
7103 * lpfc_els_timeout_handler() to work on the posted event WORKER_ELS_TMO.
7104 **/
dea31012005-04-17 16:05:31 -05007105void
7106lpfc_els_timeout(unsigned long ptr)
7107{
James Smart2e0fef82007-06-17 19:56:36 -05007108 struct lpfc_vport *vport = (struct lpfc_vport *) ptr;
7109 struct lpfc_hba *phba = vport->phba;
James Smart5e9d9b82008-06-14 22:52:53 -04007110 uint32_t tmo_posted;
dea31012005-04-17 16:05:31 -05007111 unsigned long iflag;
7112
James Smart2e0fef82007-06-17 19:56:36 -05007113 spin_lock_irqsave(&vport->work_port_lock, iflag);
James Smart5e9d9b82008-06-14 22:52:53 -04007114 tmo_posted = vport->work_port_events & WORKER_ELS_TMO;
James Smart06918ac2014-02-20 09:57:57 -05007115 if ((!tmo_posted) && (!(vport->load_flag & FC_UNLOADING)))
James Smart2e0fef82007-06-17 19:56:36 -05007116 vport->work_port_events |= WORKER_ELS_TMO;
James Smart5e9d9b82008-06-14 22:52:53 -04007117 spin_unlock_irqrestore(&vport->work_port_lock, iflag);
James Smart92d7f7b2007-06-17 19:56:38 -05007118
James Smart06918ac2014-02-20 09:57:57 -05007119 if ((!tmo_posted) && (!(vport->load_flag & FC_UNLOADING)))
James Smart5e9d9b82008-06-14 22:52:53 -04007120 lpfc_worker_wake_up(phba);
dea31012005-04-17 16:05:31 -05007121 return;
7122}
7123
James Smart2a9bf3d2010-06-07 15:24:45 -04007124
James Smarte59058c2008-08-24 21:49:00 -04007125/**
James Smart3621a712009-04-06 18:47:14 -04007126 * lpfc_els_timeout_handler - Process an els timeout event
James Smarte59058c2008-08-24 21:49:00 -04007127 * @vport: pointer to a virtual N_Port data structure.
7128 *
7129 * This routine is the actual handler function that processes an ELS timeout
7130 * event. It walks the ELS ring to get and abort all the IOCBs (except the
7131 * ABORT/CLOSE/FARP/FARPR/FDISC), which are associated with the @vport by
7132 * invoking the lpfc_sli_issue_abort_iotag() routine.
7133 **/
dea31012005-04-17 16:05:31 -05007134void
James Smart2e0fef82007-06-17 19:56:36 -05007135lpfc_els_timeout_handler(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05007136{
James Smart2e0fef82007-06-17 19:56:36 -05007137 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05007138 struct lpfc_sli_ring *pring;
7139 struct lpfc_iocbq *tmp_iocb, *piocb;
7140 IOCB_t *cmd = NULL;
7141 struct lpfc_dmabuf *pcmd;
James Smart2e0fef82007-06-17 19:56:36 -05007142 uint32_t els_command = 0;
dea31012005-04-17 16:05:31 -05007143 uint32_t timeout;
James Smart2e0fef82007-06-17 19:56:36 -05007144 uint32_t remote_ID = 0xffffffff;
James Smart2a9bf3d2010-06-07 15:24:45 -04007145 LIST_HEAD(abort_list);
dea31012005-04-17 16:05:31 -05007146
James Smart2a9bf3d2010-06-07 15:24:45 -04007147
dea31012005-04-17 16:05:31 -05007148 timeout = (uint32_t)(phba->fc_ratov << 1);
7149
7150 pring = &phba->sli.ring[LPFC_ELS_RING];
James Smart06918ac2014-02-20 09:57:57 -05007151 if ((phba->pport->load_flag & FC_UNLOADING))
7152 return;
James Smart2a9bf3d2010-06-07 15:24:45 -04007153 spin_lock_irq(&phba->hbalock);
James Smart0976e1a2013-12-17 20:29:36 -05007154 if (phba->sli_rev == LPFC_SLI_REV4)
7155 spin_lock(&pring->ring_lock);
James Smart2a9bf3d2010-06-07 15:24:45 -04007156
James Smart06918ac2014-02-20 09:57:57 -05007157 if ((phba->pport->load_flag & FC_UNLOADING)) {
7158 if (phba->sli_rev == LPFC_SLI_REV4)
7159 spin_unlock(&pring->ring_lock);
7160 spin_unlock_irq(&phba->hbalock);
7161 return;
7162 }
7163
James Smart0976e1a2013-12-17 20:29:36 -05007164 list_for_each_entry_safe(piocb, tmp_iocb, &pring->txcmplq, list) {
dea31012005-04-17 16:05:31 -05007165 cmd = &piocb->iocb;
7166
James Smart2e0fef82007-06-17 19:56:36 -05007167 if ((piocb->iocb_flag & LPFC_IO_LIBDFC) != 0 ||
7168 piocb->iocb.ulpCommand == CMD_ABORT_XRI_CN ||
7169 piocb->iocb.ulpCommand == CMD_CLOSE_XRI_CN)
dea31012005-04-17 16:05:31 -05007170 continue;
James Smart2e0fef82007-06-17 19:56:36 -05007171
7172 if (piocb->vport != vport)
7173 continue;
7174
dea31012005-04-17 16:05:31 -05007175 pcmd = (struct lpfc_dmabuf *) piocb->context2;
James Smart2e0fef82007-06-17 19:56:36 -05007176 if (pcmd)
7177 els_command = *(uint32_t *) (pcmd->virt);
dea31012005-04-17 16:05:31 -05007178
James Smart92d7f7b2007-06-17 19:56:38 -05007179 if (els_command == ELS_CMD_FARP ||
7180 els_command == ELS_CMD_FARPR ||
7181 els_command == ELS_CMD_FDISC)
dea31012005-04-17 16:05:31 -05007182 continue;
James Smart92d7f7b2007-06-17 19:56:38 -05007183
dea31012005-04-17 16:05:31 -05007184 if (piocb->drvrTimeout > 0) {
James Smart92d7f7b2007-06-17 19:56:38 -05007185 if (piocb->drvrTimeout >= timeout)
dea31012005-04-17 16:05:31 -05007186 piocb->drvrTimeout -= timeout;
James Smart92d7f7b2007-06-17 19:56:38 -05007187 else
dea31012005-04-17 16:05:31 -05007188 piocb->drvrTimeout = 0;
dea31012005-04-17 16:05:31 -05007189 continue;
7190 }
7191
James Smart2e0fef82007-06-17 19:56:36 -05007192 remote_ID = 0xffffffff;
7193 if (cmd->ulpCommand != CMD_GEN_REQUEST64_CR)
dea31012005-04-17 16:05:31 -05007194 remote_ID = cmd->un.elsreq64.remoteID;
James Smart2e0fef82007-06-17 19:56:36 -05007195 else {
7196 struct lpfc_nodelist *ndlp;
7197 ndlp = __lpfc_findnode_rpi(vport, cmd->ulpContext);
James Smart58da1ff2008-04-07 10:15:56 -04007198 if (ndlp && NLP_CHK_NODE_ACT(ndlp))
James Smart2e0fef82007-06-17 19:56:36 -05007199 remote_ID = ndlp->nlp_DID;
dea31012005-04-17 16:05:31 -05007200 }
James Smart2a9bf3d2010-06-07 15:24:45 -04007201 list_add_tail(&piocb->dlist, &abort_list);
dea31012005-04-17 16:05:31 -05007202 }
James Smart0976e1a2013-12-17 20:29:36 -05007203 if (phba->sli_rev == LPFC_SLI_REV4)
7204 spin_unlock(&pring->ring_lock);
James Smart2e0fef82007-06-17 19:56:36 -05007205 spin_unlock_irq(&phba->hbalock);
James Smart5a0e3262006-07-06 15:49:16 -04007206
James Smart2a9bf3d2010-06-07 15:24:45 -04007207 list_for_each_entry_safe(piocb, tmp_iocb, &abort_list, dlist) {
James Smart15026c92013-12-17 20:30:09 -05007208 cmd = &piocb->iocb;
James Smart2a9bf3d2010-06-07 15:24:45 -04007209 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
7210 "0127 ELS timeout Data: x%x x%x x%x "
7211 "x%x\n", els_command,
7212 remote_ID, cmd->ulpCommand, cmd->ulpIoTag);
7213 spin_lock_irq(&phba->hbalock);
7214 list_del_init(&piocb->dlist);
7215 lpfc_sli_issue_abort_iotag(phba, pring, piocb);
7216 spin_unlock_irq(&phba->hbalock);
7217 }
7218
James Smart0e9bb8d2013-03-01 16:35:12 -05007219 if (!list_empty(&phba->sli.ring[LPFC_ELS_RING].txcmplq))
James Smart06918ac2014-02-20 09:57:57 -05007220 if (!(phba->pport->load_flag & FC_UNLOADING))
7221 mod_timer(&vport->els_tmofunc,
7222 jiffies + msecs_to_jiffies(1000 * timeout));
dea31012005-04-17 16:05:31 -05007223}
7224
James Smarte59058c2008-08-24 21:49:00 -04007225/**
James Smart3621a712009-04-06 18:47:14 -04007226 * lpfc_els_flush_cmd - Clean up the outstanding els commands to a vport
James Smarte59058c2008-08-24 21:49:00 -04007227 * @vport: pointer to a host virtual N_Port data structure.
7228 *
7229 * This routine is used to clean up all the outstanding ELS commands on a
7230 * @vport. It first aborts the @vport by invoking lpfc_fabric_abort_vport()
7231 * routine. After that, it walks the ELS transmit queue to remove all the
7232 * IOCBs with the @vport other than the QUE_RING and ABORT/CLOSE IOCBs. For
7233 * the IOCBs with a non-NULL completion callback function, the callback
7234 * function will be invoked with the status set to IOSTAT_LOCAL_REJECT and
7235 * un.ulpWord[4] set to IOERR_SLI_ABORTED. For IOCBs with a NULL completion
7236 * callback function, the IOCB will simply be released. Finally, it walks
7237 * the ELS transmit completion queue to issue an abort IOCB to any transmit
7238 * completion queue IOCB that is associated with the @vport and is not
7239 * an IOCB from libdfc (i.e., the management plane IOCBs that are not
7240 * part of the discovery state machine) out to HBA by invoking the
7241 * lpfc_sli_issue_abort_iotag() routine. Note that this function issues the
7242 * abort IOCB to any transmit completion queueed IOCB, it does not guarantee
7243 * the IOCBs are aborted when this function returns.
7244 **/
dea31012005-04-17 16:05:31 -05007245void
James Smart2e0fef82007-06-17 19:56:36 -05007246lpfc_els_flush_cmd(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05007247{
James Smart0976e1a2013-12-17 20:29:36 -05007248 LIST_HEAD(abort_list);
James Smart2e0fef82007-06-17 19:56:36 -05007249 struct lpfc_hba *phba = vport->phba;
James Smart329f9bc2007-04-25 09:53:01 -04007250 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
dea31012005-04-17 16:05:31 -05007251 struct lpfc_iocbq *tmp_iocb, *piocb;
7252 IOCB_t *cmd = NULL;
James Smart92d7f7b2007-06-17 19:56:38 -05007253
7254 lpfc_fabric_abort_vport(vport);
James Smart0976e1a2013-12-17 20:29:36 -05007255 /*
7256 * For SLI3, only the hbalock is required. But SLI4 needs to coordinate
7257 * with the ring insert operation. Because lpfc_sli_issue_abort_iotag
7258 * ultimately grabs the ring_lock, the driver must splice the list into
7259 * a working list and release the locks before calling the abort.
7260 */
7261 spin_lock_irq(&phba->hbalock);
7262 if (phba->sli_rev == LPFC_SLI_REV4)
7263 spin_lock(&pring->ring_lock);
7264
7265 list_for_each_entry_safe(piocb, tmp_iocb, &pring->txcmplq, list) {
7266 if (piocb->iocb_flag & LPFC_IO_LIBDFC)
7267 continue;
7268
7269 if (piocb->vport != vport)
7270 continue;
7271 list_add_tail(&piocb->dlist, &abort_list);
7272 }
7273 if (phba->sli_rev == LPFC_SLI_REV4)
7274 spin_unlock(&pring->ring_lock);
7275 spin_unlock_irq(&phba->hbalock);
7276 /* Abort each iocb on the aborted list and remove the dlist links. */
7277 list_for_each_entry_safe(piocb, tmp_iocb, &abort_list, dlist) {
7278 spin_lock_irq(&phba->hbalock);
7279 list_del_init(&piocb->dlist);
7280 lpfc_sli_issue_abort_iotag(phba, pring, piocb);
7281 spin_unlock_irq(&phba->hbalock);
7282 }
7283 if (!list_empty(&abort_list))
7284 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
7285 "3387 abort list for txq not empty\n");
7286 INIT_LIST_HEAD(&abort_list);
dea31012005-04-17 16:05:31 -05007287
James Smart2e0fef82007-06-17 19:56:36 -05007288 spin_lock_irq(&phba->hbalock);
James Smart0976e1a2013-12-17 20:29:36 -05007289 if (phba->sli_rev == LPFC_SLI_REV4)
7290 spin_lock(&pring->ring_lock);
7291
dea31012005-04-17 16:05:31 -05007292 list_for_each_entry_safe(piocb, tmp_iocb, &pring->txq, list) {
7293 cmd = &piocb->iocb;
7294
7295 if (piocb->iocb_flag & LPFC_IO_LIBDFC) {
7296 continue;
7297 }
7298
7299 /* Do not flush out the QUE_RING and ABORT/CLOSE iocbs */
James Smart329f9bc2007-04-25 09:53:01 -04007300 if (cmd->ulpCommand == CMD_QUE_RING_BUF_CN ||
7301 cmd->ulpCommand == CMD_QUE_RING_BUF64_CN ||
7302 cmd->ulpCommand == CMD_CLOSE_XRI_CN ||
7303 cmd->ulpCommand == CMD_ABORT_XRI_CN)
dea31012005-04-17 16:05:31 -05007304 continue;
dea31012005-04-17 16:05:31 -05007305
James Smart2e0fef82007-06-17 19:56:36 -05007306 if (piocb->vport != vport)
7307 continue;
7308
James Smart0976e1a2013-12-17 20:29:36 -05007309 list_del_init(&piocb->list);
7310 list_add_tail(&piocb->list, &abort_list);
dea31012005-04-17 16:05:31 -05007311 }
James Smart0976e1a2013-12-17 20:29:36 -05007312 if (phba->sli_rev == LPFC_SLI_REV4)
7313 spin_unlock(&pring->ring_lock);
James Smart2e0fef82007-06-17 19:56:36 -05007314 spin_unlock_irq(&phba->hbalock);
James Smart2534ba72007-04-25 09:52:20 -04007315
James Smarta257bf92009-04-06 18:48:10 -04007316 /* Cancell all the IOCBs from the completions list */
James Smart0976e1a2013-12-17 20:29:36 -05007317 lpfc_sli_cancel_iocbs(phba, &abort_list,
7318 IOSTAT_LOCAL_REJECT, IOERR_SLI_ABORTED);
James Smart2534ba72007-04-25 09:52:20 -04007319
dea31012005-04-17 16:05:31 -05007320 return;
7321}
7322
James Smarte59058c2008-08-24 21:49:00 -04007323/**
James Smart3621a712009-04-06 18:47:14 -04007324 * lpfc_els_flush_all_cmd - Clean up all the outstanding els commands to a HBA
James Smarte59058c2008-08-24 21:49:00 -04007325 * @phba: pointer to lpfc hba data structure.
7326 *
7327 * This routine is used to clean up all the outstanding ELS commands on a
7328 * @phba. It first aborts the @phba by invoking the lpfc_fabric_abort_hba()
7329 * routine. After that, it walks the ELS transmit queue to remove all the
7330 * IOCBs to the @phba other than the QUE_RING and ABORT/CLOSE IOCBs. For
7331 * the IOCBs with the completion callback function associated, the callback
7332 * function will be invoked with the status set to IOSTAT_LOCAL_REJECT and
7333 * un.ulpWord[4] set to IOERR_SLI_ABORTED. For IOCBs without the completion
7334 * callback function associated, the IOCB will simply be released. Finally,
7335 * it walks the ELS transmit completion queue to issue an abort IOCB to any
7336 * transmit completion queue IOCB that is not an IOCB from libdfc (i.e., the
7337 * management plane IOCBs that are not part of the discovery state machine)
7338 * out to HBA by invoking the lpfc_sli_issue_abort_iotag() routine.
7339 **/
James Smart549e55c2007-08-02 11:09:51 -04007340void
7341lpfc_els_flush_all_cmd(struct lpfc_hba *phba)
7342{
James Smart0976e1a2013-12-17 20:29:36 -05007343 struct lpfc_vport *vport;
7344 list_for_each_entry(vport, &phba->port_list, listentry)
7345 lpfc_els_flush_cmd(vport);
James Smarta257bf92009-04-06 18:48:10 -04007346
James Smart549e55c2007-08-02 11:09:51 -04007347 return;
7348}
7349
James Smarte59058c2008-08-24 21:49:00 -04007350/**
James Smart3621a712009-04-06 18:47:14 -04007351 * lpfc_send_els_failure_event - Posts an ELS command failure event
James Smartea2151b2008-09-07 11:52:10 -04007352 * @phba: Pointer to hba context object.
7353 * @cmdiocbp: Pointer to command iocb which reported error.
7354 * @rspiocbp: Pointer to response iocb which reported error.
7355 *
7356 * This function sends an event when there is an ELS command
7357 * failure.
7358 **/
7359void
7360lpfc_send_els_failure_event(struct lpfc_hba *phba,
7361 struct lpfc_iocbq *cmdiocbp,
7362 struct lpfc_iocbq *rspiocbp)
7363{
7364 struct lpfc_vport *vport = cmdiocbp->vport;
7365 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
7366 struct lpfc_lsrjt_event lsrjt_event;
7367 struct lpfc_fabric_event_header fabric_event;
7368 struct ls_rjt stat;
7369 struct lpfc_nodelist *ndlp;
7370 uint32_t *pcmd;
7371
7372 ndlp = cmdiocbp->context1;
7373 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp))
7374 return;
7375
7376 if (rspiocbp->iocb.ulpStatus == IOSTAT_LS_RJT) {
7377 lsrjt_event.header.event_type = FC_REG_ELS_EVENT;
7378 lsrjt_event.header.subcategory = LPFC_EVENT_LSRJT_RCV;
7379 memcpy(lsrjt_event.header.wwpn, &ndlp->nlp_portname,
7380 sizeof(struct lpfc_name));
7381 memcpy(lsrjt_event.header.wwnn, &ndlp->nlp_nodename,
7382 sizeof(struct lpfc_name));
7383 pcmd = (uint32_t *) (((struct lpfc_dmabuf *)
7384 cmdiocbp->context2)->virt);
James Smart49198b32010-04-06 15:04:33 -04007385 lsrjt_event.command = (pcmd != NULL) ? *pcmd : 0;
James Smartea2151b2008-09-07 11:52:10 -04007386 stat.un.lsRjtError = be32_to_cpu(rspiocbp->iocb.un.ulpWord[4]);
7387 lsrjt_event.reason_code = stat.un.b.lsRjtRsnCode;
7388 lsrjt_event.explanation = stat.un.b.lsRjtRsnCodeExp;
7389 fc_host_post_vendor_event(shost,
7390 fc_get_event_number(),
7391 sizeof(lsrjt_event),
7392 (char *)&lsrjt_event,
James Smartddcc50f2008-12-04 22:38:46 -05007393 LPFC_NL_VENDOR_ID);
James Smartea2151b2008-09-07 11:52:10 -04007394 return;
7395 }
7396 if ((rspiocbp->iocb.ulpStatus == IOSTAT_NPORT_BSY) ||
7397 (rspiocbp->iocb.ulpStatus == IOSTAT_FABRIC_BSY)) {
7398 fabric_event.event_type = FC_REG_FABRIC_EVENT;
7399 if (rspiocbp->iocb.ulpStatus == IOSTAT_NPORT_BSY)
7400 fabric_event.subcategory = LPFC_EVENT_PORT_BUSY;
7401 else
7402 fabric_event.subcategory = LPFC_EVENT_FABRIC_BUSY;
7403 memcpy(fabric_event.wwpn, &ndlp->nlp_portname,
7404 sizeof(struct lpfc_name));
7405 memcpy(fabric_event.wwnn, &ndlp->nlp_nodename,
7406 sizeof(struct lpfc_name));
7407 fc_host_post_vendor_event(shost,
7408 fc_get_event_number(),
7409 sizeof(fabric_event),
7410 (char *)&fabric_event,
James Smartddcc50f2008-12-04 22:38:46 -05007411 LPFC_NL_VENDOR_ID);
James Smartea2151b2008-09-07 11:52:10 -04007412 return;
7413 }
7414
7415}
7416
7417/**
James Smart3621a712009-04-06 18:47:14 -04007418 * lpfc_send_els_event - Posts unsolicited els event
James Smartea2151b2008-09-07 11:52:10 -04007419 * @vport: Pointer to vport object.
7420 * @ndlp: Pointer FC node object.
7421 * @cmd: ELS command code.
7422 *
7423 * This function posts an event when there is an incoming
7424 * unsolicited ELS command.
7425 **/
7426static void
7427lpfc_send_els_event(struct lpfc_vport *vport,
7428 struct lpfc_nodelist *ndlp,
James Smartddcc50f2008-12-04 22:38:46 -05007429 uint32_t *payload)
James Smartea2151b2008-09-07 11:52:10 -04007430{
James Smartddcc50f2008-12-04 22:38:46 -05007431 struct lpfc_els_event_header *els_data = NULL;
7432 struct lpfc_logo_event *logo_data = NULL;
James Smartea2151b2008-09-07 11:52:10 -04007433 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
7434
James Smartddcc50f2008-12-04 22:38:46 -05007435 if (*payload == ELS_CMD_LOGO) {
7436 logo_data = kmalloc(sizeof(struct lpfc_logo_event), GFP_KERNEL);
7437 if (!logo_data) {
7438 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
7439 "0148 Failed to allocate memory "
7440 "for LOGO event\n");
7441 return;
7442 }
7443 els_data = &logo_data->header;
7444 } else {
7445 els_data = kmalloc(sizeof(struct lpfc_els_event_header),
7446 GFP_KERNEL);
7447 if (!els_data) {
7448 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
7449 "0149 Failed to allocate memory "
7450 "for ELS event\n");
7451 return;
7452 }
7453 }
7454 els_data->event_type = FC_REG_ELS_EVENT;
7455 switch (*payload) {
James Smartea2151b2008-09-07 11:52:10 -04007456 case ELS_CMD_PLOGI:
James Smartddcc50f2008-12-04 22:38:46 -05007457 els_data->subcategory = LPFC_EVENT_PLOGI_RCV;
James Smartea2151b2008-09-07 11:52:10 -04007458 break;
7459 case ELS_CMD_PRLO:
James Smartddcc50f2008-12-04 22:38:46 -05007460 els_data->subcategory = LPFC_EVENT_PRLO_RCV;
James Smartea2151b2008-09-07 11:52:10 -04007461 break;
7462 case ELS_CMD_ADISC:
James Smartddcc50f2008-12-04 22:38:46 -05007463 els_data->subcategory = LPFC_EVENT_ADISC_RCV;
7464 break;
7465 case ELS_CMD_LOGO:
7466 els_data->subcategory = LPFC_EVENT_LOGO_RCV;
7467 /* Copy the WWPN in the LOGO payload */
7468 memcpy(logo_data->logo_wwpn, &payload[2],
7469 sizeof(struct lpfc_name));
James Smartea2151b2008-09-07 11:52:10 -04007470 break;
7471 default:
Julia Lawalle9161412009-02-08 22:43:19 +01007472 kfree(els_data);
James Smartea2151b2008-09-07 11:52:10 -04007473 return;
7474 }
James Smartddcc50f2008-12-04 22:38:46 -05007475 memcpy(els_data->wwpn, &ndlp->nlp_portname, sizeof(struct lpfc_name));
7476 memcpy(els_data->wwnn, &ndlp->nlp_nodename, sizeof(struct lpfc_name));
7477 if (*payload == ELS_CMD_LOGO) {
7478 fc_host_post_vendor_event(shost,
7479 fc_get_event_number(),
7480 sizeof(struct lpfc_logo_event),
7481 (char *)logo_data,
7482 LPFC_NL_VENDOR_ID);
7483 kfree(logo_data);
7484 } else {
7485 fc_host_post_vendor_event(shost,
7486 fc_get_event_number(),
7487 sizeof(struct lpfc_els_event_header),
7488 (char *)els_data,
7489 LPFC_NL_VENDOR_ID);
7490 kfree(els_data);
7491 }
James Smartea2151b2008-09-07 11:52:10 -04007492
7493 return;
7494}
7495
7496
7497/**
James Smart3621a712009-04-06 18:47:14 -04007498 * lpfc_els_unsol_buffer - Process an unsolicited event data buffer
James Smarte59058c2008-08-24 21:49:00 -04007499 * @phba: pointer to lpfc hba data structure.
7500 * @pring: pointer to a SLI ring.
7501 * @vport: pointer to a host virtual N_Port data structure.
7502 * @elsiocb: pointer to lpfc els command iocb data structure.
7503 *
7504 * This routine is used for processing the IOCB associated with a unsolicited
7505 * event. It first determines whether there is an existing ndlp that matches
7506 * the DID from the unsolicited IOCB. If not, it will create a new one with
7507 * the DID from the unsolicited IOCB. The ELS command from the unsolicited
7508 * IOCB is then used to invoke the proper routine and to set up proper state
7509 * of the discovery state machine.
7510 **/
James Smarted957682007-06-17 19:56:37 -05007511static void
7512lpfc_els_unsol_buffer(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
James Smart92d7f7b2007-06-17 19:56:38 -05007513 struct lpfc_vport *vport, struct lpfc_iocbq *elsiocb)
dea31012005-04-17 16:05:31 -05007514{
James Smart87af33f2007-10-27 13:37:43 -04007515 struct Scsi_Host *shost;
dea31012005-04-17 16:05:31 -05007516 struct lpfc_nodelist *ndlp;
dea31012005-04-17 16:05:31 -05007517 struct ls_rjt stat;
James Smart92d7f7b2007-06-17 19:56:38 -05007518 uint32_t *payload;
James Smart303f2f92013-01-03 15:43:11 -05007519 uint32_t cmd, did, newnode;
7520 uint8_t rjt_exp, rjt_err = 0;
James Smarted957682007-06-17 19:56:37 -05007521 IOCB_t *icmd = &elsiocb->iocb;
dea31012005-04-17 16:05:31 -05007522
James Smarte47c9092008-02-08 18:49:26 -05007523 if (!vport || !(elsiocb->context2))
dea31012005-04-17 16:05:31 -05007524 goto dropit;
James Smart2e0fef82007-06-17 19:56:36 -05007525
dea31012005-04-17 16:05:31 -05007526 newnode = 0;
James Smart92d7f7b2007-06-17 19:56:38 -05007527 payload = ((struct lpfc_dmabuf *)elsiocb->context2)->virt;
7528 cmd = *payload;
James Smarted957682007-06-17 19:56:37 -05007529 if ((phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) == 0)
James Smart495a7142008-06-14 22:52:59 -04007530 lpfc_post_buffer(phba, pring, 1);
dea31012005-04-17 16:05:31 -05007531
James Smart858c9f62007-06-17 19:56:39 -05007532 did = icmd->un.rcvels.remoteID;
7533 if (icmd->ulpStatus) {
7534 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
7535 "RCV Unsol ELS: status:x%x/x%x did:x%x",
7536 icmd->ulpStatus, icmd->un.ulpWord[4], did);
dea31012005-04-17 16:05:31 -05007537 goto dropit;
James Smart858c9f62007-06-17 19:56:39 -05007538 }
dea31012005-04-17 16:05:31 -05007539
7540 /* Check to see if link went down during discovery */
James Smarted957682007-06-17 19:56:37 -05007541 if (lpfc_els_chk_latt(vport))
dea31012005-04-17 16:05:31 -05007542 goto dropit;
dea31012005-04-17 16:05:31 -05007543
James Smartc8685952009-11-18 15:39:16 -05007544 /* Ignore traffic received during vport shutdown. */
James Smart92d7f7b2007-06-17 19:56:38 -05007545 if (vport->load_flag & FC_UNLOADING)
7546 goto dropit;
7547
James Smart92494142011-02-16 12:39:44 -05007548 /* If NPort discovery is delayed drop incoming ELS */
7549 if ((vport->fc_flag & FC_DISC_DELAYED) &&
7550 (cmd != ELS_CMD_PLOGI))
7551 goto dropit;
7552
James Smart2e0fef82007-06-17 19:56:36 -05007553 ndlp = lpfc_findnode_did(vport, did);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05007554 if (!ndlp) {
dea31012005-04-17 16:05:31 -05007555 /* Cannot find existing Fabric ndlp, so allocate a new one */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05007556 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
James Smarted957682007-06-17 19:56:37 -05007557 if (!ndlp)
dea31012005-04-17 16:05:31 -05007558 goto dropit;
dea31012005-04-17 16:05:31 -05007559
James Smart2e0fef82007-06-17 19:56:36 -05007560 lpfc_nlp_init(vport, ndlp, did);
James Smart98c9ea52007-10-27 13:37:33 -04007561 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
dea31012005-04-17 16:05:31 -05007562 newnode = 1;
James Smarte47c9092008-02-08 18:49:26 -05007563 if ((did & Fabric_DID_MASK) == Fabric_DID_MASK)
dea31012005-04-17 16:05:31 -05007564 ndlp->nlp_type |= NLP_FABRIC;
James Smart58da1ff2008-04-07 10:15:56 -04007565 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
7566 ndlp = lpfc_enable_node(vport, ndlp,
7567 NLP_STE_UNUSED_NODE);
7568 if (!ndlp)
7569 goto dropit;
7570 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
7571 newnode = 1;
7572 if ((did & Fabric_DID_MASK) == Fabric_DID_MASK)
7573 ndlp->nlp_type |= NLP_FABRIC;
7574 } else if (ndlp->nlp_state == NLP_STE_UNUSED_NODE) {
7575 /* This is similar to the new node path */
7576 ndlp = lpfc_nlp_get(ndlp);
7577 if (!ndlp)
7578 goto dropit;
7579 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
7580 newnode = 1;
James Smart87af33f2007-10-27 13:37:43 -04007581 }
dea31012005-04-17 16:05:31 -05007582
7583 phba->fc_stat.elsRcvFrame++;
James Smarte47c9092008-02-08 18:49:26 -05007584
James Smart12838e72014-09-03 12:57:19 -04007585 /*
7586 * Do not process any unsolicited ELS commands
7587 * if the ndlp is in DEV_LOSS
7588 */
James Smart466e8402015-05-21 13:55:28 -04007589 shost = lpfc_shost_from_vport(vport);
7590 spin_lock_irq(shost->host_lock);
7591 if (ndlp->nlp_flag & NLP_IN_DEV_LOSS) {
7592 spin_unlock_irq(shost->host_lock);
James Smart12838e72014-09-03 12:57:19 -04007593 goto dropit;
James Smart466e8402015-05-21 13:55:28 -04007594 }
7595 spin_unlock_irq(shost->host_lock);
James Smart12838e72014-09-03 12:57:19 -04007596
James Smart329f9bc2007-04-25 09:53:01 -04007597 elsiocb->context1 = lpfc_nlp_get(ndlp);
James Smart2e0fef82007-06-17 19:56:36 -05007598 elsiocb->vport = vport;
dea31012005-04-17 16:05:31 -05007599
7600 if ((cmd & ELS_CMD_MASK) == ELS_CMD_RSCN) {
7601 cmd &= ELS_CMD_MASK;
7602 }
7603 /* ELS command <elsCmd> received from NPORT <did> */
James Smarte8b62012007-08-02 11:10:09 -04007604 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
7605 "0112 ELS command x%x received from NPORT x%x "
James Smarte74c03c2013-04-17 20:15:19 -04007606 "Data: x%x x%x x%x x%x\n",
7607 cmd, did, vport->port_state, vport->fc_flag,
7608 vport->fc_myDID, vport->fc_prevDID);
James Smarteec3d312015-08-31 16:48:18 -04007609
7610 /* reject till our FLOGI completes */
7611 if ((vport->port_state < LPFC_FABRIC_CFG_LINK) &&
James Smartd6de08c2015-12-16 18:11:53 -05007612 (cmd != ELS_CMD_FLOGI)) {
James Smart401304c2016-10-13 15:06:14 -07007613 rjt_err = LSRJT_LOGICAL_BSY;
James Smarteec3d312015-08-31 16:48:18 -04007614 rjt_exp = LSEXP_NOTHING_MORE;
7615 goto lsrjt;
7616 }
7617
dea31012005-04-17 16:05:31 -05007618 switch (cmd) {
7619 case ELS_CMD_PLOGI:
James Smart858c9f62007-06-17 19:56:39 -05007620 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
7621 "RCV PLOGI: did:x%x/ste:x%x flg:x%x",
7622 did, vport->port_state, ndlp->nlp_flag);
7623
dea31012005-04-17 16:05:31 -05007624 phba->fc_stat.elsRcvPLOGI++;
James Smart858c9f62007-06-17 19:56:39 -05007625 ndlp = lpfc_plogi_confirm_nport(phba, payload, ndlp);
James Smarte74c03c2013-04-17 20:15:19 -04007626 if (phba->sli_rev == LPFC_SLI_REV4 &&
7627 (phba->pport->fc_flag & FC_PT2PT)) {
7628 vport->fc_prevDID = vport->fc_myDID;
7629 /* Our DID needs to be updated before registering
7630 * the vfi. This is done in lpfc_rcv_plogi but
7631 * that is called after the reg_vfi.
7632 */
7633 vport->fc_myDID = elsiocb->iocb.un.rcvels.parmRo;
7634 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
7635 "3312 Remote port assigned DID x%x "
7636 "%x\n", vport->fc_myDID,
7637 vport->fc_prevDID);
7638 }
James Smart858c9f62007-06-17 19:56:39 -05007639
James Smartddcc50f2008-12-04 22:38:46 -05007640 lpfc_send_els_event(vport, ndlp, payload);
James Smart92494142011-02-16 12:39:44 -05007641
7642 /* If Nport discovery is delayed, reject PLOGIs */
7643 if (vport->fc_flag & FC_DISC_DELAYED) {
7644 rjt_err = LSRJT_UNABLE_TPC;
James Smart303f2f92013-01-03 15:43:11 -05007645 rjt_exp = LSEXP_NOTHING_MORE;
James Smart92494142011-02-16 12:39:44 -05007646 break;
7647 }
James Smartd6de08c2015-12-16 18:11:53 -05007648
James Smart858c9f62007-06-17 19:56:39 -05007649 if (vport->port_state < LPFC_DISC_AUTH) {
James Smart1b32f6a2008-02-08 18:49:39 -05007650 if (!(phba->pport->fc_flag & FC_PT2PT) ||
7651 (phba->pport->fc_flag & FC_PT2PT_PLOGI)) {
7652 rjt_err = LSRJT_UNABLE_TPC;
James Smart303f2f92013-01-03 15:43:11 -05007653 rjt_exp = LSEXP_NOTHING_MORE;
James Smart1b32f6a2008-02-08 18:49:39 -05007654 break;
7655 }
dea31012005-04-17 16:05:31 -05007656 }
James Smart87af33f2007-10-27 13:37:43 -04007657
James Smart87af33f2007-10-27 13:37:43 -04007658 spin_lock_irq(shost->host_lock);
7659 ndlp->nlp_flag &= ~NLP_TARGET_REMOVE;
7660 spin_unlock_irq(shost->host_lock);
7661
James Smart2e0fef82007-06-17 19:56:36 -05007662 lpfc_disc_state_machine(vport, ndlp, elsiocb,
7663 NLP_EVT_RCV_PLOGI);
James Smart858c9f62007-06-17 19:56:39 -05007664
dea31012005-04-17 16:05:31 -05007665 break;
7666 case ELS_CMD_FLOGI:
James Smart858c9f62007-06-17 19:56:39 -05007667 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
7668 "RCV FLOGI: did:x%x/ste:x%x flg:x%x",
7669 did, vport->port_state, ndlp->nlp_flag);
7670
dea31012005-04-17 16:05:31 -05007671 phba->fc_stat.elsRcvFLOGI++;
James Smart51ef4c22007-08-02 11:10:31 -04007672 lpfc_els_rcv_flogi(vport, elsiocb, ndlp);
James Smart87af33f2007-10-27 13:37:43 -04007673 if (newnode)
James Smart98c9ea52007-10-27 13:37:33 -04007674 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05007675 break;
7676 case ELS_CMD_LOGO:
James Smart858c9f62007-06-17 19:56:39 -05007677 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
7678 "RCV LOGO: did:x%x/ste:x%x flg:x%x",
7679 did, vport->port_state, ndlp->nlp_flag);
7680
dea31012005-04-17 16:05:31 -05007681 phba->fc_stat.elsRcvLOGO++;
James Smartddcc50f2008-12-04 22:38:46 -05007682 lpfc_send_els_event(vport, ndlp, payload);
James Smart2e0fef82007-06-17 19:56:36 -05007683 if (vport->port_state < LPFC_DISC_AUTH) {
James Smart858c9f62007-06-17 19:56:39 -05007684 rjt_err = LSRJT_UNABLE_TPC;
James Smart303f2f92013-01-03 15:43:11 -05007685 rjt_exp = LSEXP_NOTHING_MORE;
dea31012005-04-17 16:05:31 -05007686 break;
7687 }
James Smart2e0fef82007-06-17 19:56:36 -05007688 lpfc_disc_state_machine(vport, ndlp, elsiocb, NLP_EVT_RCV_LOGO);
dea31012005-04-17 16:05:31 -05007689 break;
7690 case ELS_CMD_PRLO:
James Smart858c9f62007-06-17 19:56:39 -05007691 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
7692 "RCV PRLO: did:x%x/ste:x%x flg:x%x",
7693 did, vport->port_state, ndlp->nlp_flag);
7694
dea31012005-04-17 16:05:31 -05007695 phba->fc_stat.elsRcvPRLO++;
James Smartddcc50f2008-12-04 22:38:46 -05007696 lpfc_send_els_event(vport, ndlp, payload);
James Smart2e0fef82007-06-17 19:56:36 -05007697 if (vport->port_state < LPFC_DISC_AUTH) {
James Smart858c9f62007-06-17 19:56:39 -05007698 rjt_err = LSRJT_UNABLE_TPC;
James Smart303f2f92013-01-03 15:43:11 -05007699 rjt_exp = LSEXP_NOTHING_MORE;
dea31012005-04-17 16:05:31 -05007700 break;
7701 }
James Smart2e0fef82007-06-17 19:56:36 -05007702 lpfc_disc_state_machine(vport, ndlp, elsiocb, NLP_EVT_RCV_PRLO);
dea31012005-04-17 16:05:31 -05007703 break;
James Smart8b017a32015-05-21 13:55:18 -04007704 case ELS_CMD_LCB:
7705 phba->fc_stat.elsRcvLCB++;
7706 lpfc_els_rcv_lcb(vport, elsiocb, ndlp);
7707 break;
James Smart86478872015-05-21 13:55:21 -04007708 case ELS_CMD_RDP:
7709 phba->fc_stat.elsRcvRDP++;
7710 lpfc_els_rcv_rdp(vport, elsiocb, ndlp);
7711 break;
dea31012005-04-17 16:05:31 -05007712 case ELS_CMD_RSCN:
7713 phba->fc_stat.elsRcvRSCN++;
James Smart51ef4c22007-08-02 11:10:31 -04007714 lpfc_els_rcv_rscn(vport, elsiocb, ndlp);
James Smart87af33f2007-10-27 13:37:43 -04007715 if (newnode)
James Smart98c9ea52007-10-27 13:37:33 -04007716 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05007717 break;
7718 case ELS_CMD_ADISC:
James Smart858c9f62007-06-17 19:56:39 -05007719 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
7720 "RCV ADISC: did:x%x/ste:x%x flg:x%x",
7721 did, vport->port_state, ndlp->nlp_flag);
7722
James Smartddcc50f2008-12-04 22:38:46 -05007723 lpfc_send_els_event(vport, ndlp, payload);
dea31012005-04-17 16:05:31 -05007724 phba->fc_stat.elsRcvADISC++;
James Smart2e0fef82007-06-17 19:56:36 -05007725 if (vport->port_state < LPFC_DISC_AUTH) {
James Smart858c9f62007-06-17 19:56:39 -05007726 rjt_err = LSRJT_UNABLE_TPC;
James Smart303f2f92013-01-03 15:43:11 -05007727 rjt_exp = LSEXP_NOTHING_MORE;
dea31012005-04-17 16:05:31 -05007728 break;
7729 }
James Smart2e0fef82007-06-17 19:56:36 -05007730 lpfc_disc_state_machine(vport, ndlp, elsiocb,
7731 NLP_EVT_RCV_ADISC);
dea31012005-04-17 16:05:31 -05007732 break;
7733 case ELS_CMD_PDISC:
James Smart858c9f62007-06-17 19:56:39 -05007734 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
7735 "RCV PDISC: did:x%x/ste:x%x flg:x%x",
7736 did, vport->port_state, ndlp->nlp_flag);
7737
dea31012005-04-17 16:05:31 -05007738 phba->fc_stat.elsRcvPDISC++;
James Smart2e0fef82007-06-17 19:56:36 -05007739 if (vport->port_state < LPFC_DISC_AUTH) {
James Smart858c9f62007-06-17 19:56:39 -05007740 rjt_err = LSRJT_UNABLE_TPC;
James Smart303f2f92013-01-03 15:43:11 -05007741 rjt_exp = LSEXP_NOTHING_MORE;
dea31012005-04-17 16:05:31 -05007742 break;
7743 }
James Smart2e0fef82007-06-17 19:56:36 -05007744 lpfc_disc_state_machine(vport, ndlp, elsiocb,
7745 NLP_EVT_RCV_PDISC);
dea31012005-04-17 16:05:31 -05007746 break;
7747 case ELS_CMD_FARPR:
James Smart858c9f62007-06-17 19:56:39 -05007748 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
7749 "RCV FARPR: did:x%x/ste:x%x flg:x%x",
7750 did, vport->port_state, ndlp->nlp_flag);
7751
dea31012005-04-17 16:05:31 -05007752 phba->fc_stat.elsRcvFARPR++;
James Smart2e0fef82007-06-17 19:56:36 -05007753 lpfc_els_rcv_farpr(vport, elsiocb, ndlp);
dea31012005-04-17 16:05:31 -05007754 break;
7755 case ELS_CMD_FARP:
James Smart858c9f62007-06-17 19:56:39 -05007756 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
7757 "RCV FARP: did:x%x/ste:x%x flg:x%x",
7758 did, vport->port_state, ndlp->nlp_flag);
7759
dea31012005-04-17 16:05:31 -05007760 phba->fc_stat.elsRcvFARP++;
James Smart2e0fef82007-06-17 19:56:36 -05007761 lpfc_els_rcv_farp(vport, elsiocb, ndlp);
dea31012005-04-17 16:05:31 -05007762 break;
7763 case ELS_CMD_FAN:
James Smart858c9f62007-06-17 19:56:39 -05007764 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
7765 "RCV FAN: did:x%x/ste:x%x flg:x%x",
7766 did, vport->port_state, ndlp->nlp_flag);
7767
dea31012005-04-17 16:05:31 -05007768 phba->fc_stat.elsRcvFAN++;
James Smart2e0fef82007-06-17 19:56:36 -05007769 lpfc_els_rcv_fan(vport, elsiocb, ndlp);
dea31012005-04-17 16:05:31 -05007770 break;
dea31012005-04-17 16:05:31 -05007771 case ELS_CMD_PRLI:
James Smart858c9f62007-06-17 19:56:39 -05007772 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
7773 "RCV PRLI: did:x%x/ste:x%x flg:x%x",
7774 did, vport->port_state, ndlp->nlp_flag);
7775
dea31012005-04-17 16:05:31 -05007776 phba->fc_stat.elsRcvPRLI++;
James Smart2e0fef82007-06-17 19:56:36 -05007777 if (vport->port_state < LPFC_DISC_AUTH) {
James Smart858c9f62007-06-17 19:56:39 -05007778 rjt_err = LSRJT_UNABLE_TPC;
James Smart303f2f92013-01-03 15:43:11 -05007779 rjt_exp = LSEXP_NOTHING_MORE;
dea31012005-04-17 16:05:31 -05007780 break;
7781 }
James Smart2e0fef82007-06-17 19:56:36 -05007782 lpfc_disc_state_machine(vport, ndlp, elsiocb, NLP_EVT_RCV_PRLI);
dea31012005-04-17 16:05:31 -05007783 break;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05007784 case ELS_CMD_LIRR:
James Smart858c9f62007-06-17 19:56:39 -05007785 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
7786 "RCV LIRR: did:x%x/ste:x%x flg:x%x",
7787 did, vport->port_state, ndlp->nlp_flag);
7788
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05007789 phba->fc_stat.elsRcvLIRR++;
James Smart2e0fef82007-06-17 19:56:36 -05007790 lpfc_els_rcv_lirr(vport, elsiocb, ndlp);
James Smart87af33f2007-10-27 13:37:43 -04007791 if (newnode)
James Smart98c9ea52007-10-27 13:37:33 -04007792 lpfc_nlp_put(ndlp);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05007793 break;
James Smart12265f62010-10-22 11:05:53 -04007794 case ELS_CMD_RLS:
7795 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
7796 "RCV RLS: did:x%x/ste:x%x flg:x%x",
7797 did, vport->port_state, ndlp->nlp_flag);
7798
7799 phba->fc_stat.elsRcvRLS++;
7800 lpfc_els_rcv_rls(vport, elsiocb, ndlp);
7801 if (newnode)
7802 lpfc_nlp_put(ndlp);
7803 break;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05007804 case ELS_CMD_RPS:
James Smart858c9f62007-06-17 19:56:39 -05007805 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
7806 "RCV RPS: did:x%x/ste:x%x flg:x%x",
7807 did, vport->port_state, ndlp->nlp_flag);
7808
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05007809 phba->fc_stat.elsRcvRPS++;
James Smart2e0fef82007-06-17 19:56:36 -05007810 lpfc_els_rcv_rps(vport, elsiocb, ndlp);
James Smart87af33f2007-10-27 13:37:43 -04007811 if (newnode)
James Smart98c9ea52007-10-27 13:37:33 -04007812 lpfc_nlp_put(ndlp);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05007813 break;
7814 case ELS_CMD_RPL:
James Smart858c9f62007-06-17 19:56:39 -05007815 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
7816 "RCV RPL: did:x%x/ste:x%x flg:x%x",
7817 did, vport->port_state, ndlp->nlp_flag);
7818
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05007819 phba->fc_stat.elsRcvRPL++;
James Smart2e0fef82007-06-17 19:56:36 -05007820 lpfc_els_rcv_rpl(vport, elsiocb, ndlp);
James Smart87af33f2007-10-27 13:37:43 -04007821 if (newnode)
James Smart98c9ea52007-10-27 13:37:33 -04007822 lpfc_nlp_put(ndlp);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05007823 break;
dea31012005-04-17 16:05:31 -05007824 case ELS_CMD_RNID:
James Smart858c9f62007-06-17 19:56:39 -05007825 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
7826 "RCV RNID: did:x%x/ste:x%x flg:x%x",
7827 did, vport->port_state, ndlp->nlp_flag);
7828
dea31012005-04-17 16:05:31 -05007829 phba->fc_stat.elsRcvRNID++;
James Smart2e0fef82007-06-17 19:56:36 -05007830 lpfc_els_rcv_rnid(vport, elsiocb, ndlp);
James Smart87af33f2007-10-27 13:37:43 -04007831 if (newnode)
James Smart98c9ea52007-10-27 13:37:33 -04007832 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05007833 break;
James Smart12265f62010-10-22 11:05:53 -04007834 case ELS_CMD_RTV:
7835 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
7836 "RCV RTV: did:x%x/ste:x%x flg:x%x",
7837 did, vport->port_state, ndlp->nlp_flag);
7838 phba->fc_stat.elsRcvRTV++;
7839 lpfc_els_rcv_rtv(vport, elsiocb, ndlp);
7840 if (newnode)
7841 lpfc_nlp_put(ndlp);
7842 break;
James Smart5ffc2662009-11-18 15:39:44 -05007843 case ELS_CMD_RRQ:
7844 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
7845 "RCV RRQ: did:x%x/ste:x%x flg:x%x",
7846 did, vport->port_state, ndlp->nlp_flag);
7847
7848 phba->fc_stat.elsRcvRRQ++;
7849 lpfc_els_rcv_rrq(vport, elsiocb, ndlp);
7850 if (newnode)
7851 lpfc_nlp_put(ndlp);
7852 break;
James Smart12265f62010-10-22 11:05:53 -04007853 case ELS_CMD_ECHO:
7854 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
7855 "RCV ECHO: did:x%x/ste:x%x flg:x%x",
7856 did, vport->port_state, ndlp->nlp_flag);
7857
7858 phba->fc_stat.elsRcvECHO++;
7859 lpfc_els_rcv_echo(vport, elsiocb, ndlp);
7860 if (newnode)
7861 lpfc_nlp_put(ndlp);
7862 break;
James Smart303f2f92013-01-03 15:43:11 -05007863 case ELS_CMD_REC:
7864 /* receive this due to exchange closed */
7865 rjt_err = LSRJT_UNABLE_TPC;
7866 rjt_exp = LSEXP_INVALID_OX_RX;
7867 break;
dea31012005-04-17 16:05:31 -05007868 default:
James Smart858c9f62007-06-17 19:56:39 -05007869 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
7870 "RCV ELS cmd: cmd:x%x did:x%x/ste:x%x",
7871 cmd, did, vport->port_state);
7872
dea31012005-04-17 16:05:31 -05007873 /* Unsupported ELS command, reject */
James Smart63e801c2010-11-20 23:14:19 -05007874 rjt_err = LSRJT_CMD_UNSUPPORTED;
James Smart303f2f92013-01-03 15:43:11 -05007875 rjt_exp = LSEXP_NOTHING_MORE;
dea31012005-04-17 16:05:31 -05007876
7877 /* Unknown ELS command <elsCmd> received from NPORT <did> */
James Smarte8b62012007-08-02 11:10:09 -04007878 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
7879 "0115 Unknown ELS command x%x "
7880 "received from NPORT x%x\n", cmd, did);
James Smart87af33f2007-10-27 13:37:43 -04007881 if (newnode)
James Smart98c9ea52007-10-27 13:37:33 -04007882 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05007883 break;
7884 }
7885
James Smarteec3d312015-08-31 16:48:18 -04007886lsrjt:
dea31012005-04-17 16:05:31 -05007887 /* check if need to LS_RJT received ELS cmd */
7888 if (rjt_err) {
James Smart92d7f7b2007-06-17 19:56:38 -05007889 memset(&stat, 0, sizeof(stat));
James Smart858c9f62007-06-17 19:56:39 -05007890 stat.un.b.lsRjtRsnCode = rjt_err;
James Smart303f2f92013-01-03 15:43:11 -05007891 stat.un.b.lsRjtRsnCodeExp = rjt_exp;
James Smart858c9f62007-06-17 19:56:39 -05007892 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, elsiocb, ndlp,
7893 NULL);
dea31012005-04-17 16:05:31 -05007894 }
7895
James Smartd7c255b2008-08-24 21:50:00 -04007896 lpfc_nlp_put(elsiocb->context1);
7897 elsiocb->context1 = NULL;
James Smarted957682007-06-17 19:56:37 -05007898 return;
7899
7900dropit:
James Smart98c9ea52007-10-27 13:37:33 -04007901 if (vport && !(vport->load_flag & FC_UNLOADING))
James Smart6fb120a2009-05-22 14:52:59 -04007902 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
7903 "0111 Dropping received ELS cmd "
James Smarted957682007-06-17 19:56:37 -05007904 "Data: x%x x%x x%x\n",
James Smart6fb120a2009-05-22 14:52:59 -04007905 icmd->ulpStatus, icmd->un.ulpWord[4], icmd->ulpTimeout);
James Smarted957682007-06-17 19:56:37 -05007906 phba->fc_stat.elsRcvDrop++;
7907}
7908
James Smarte59058c2008-08-24 21:49:00 -04007909/**
James Smart3621a712009-04-06 18:47:14 -04007910 * lpfc_els_unsol_event - Process an unsolicited event from an els sli ring
James Smarte59058c2008-08-24 21:49:00 -04007911 * @phba: pointer to lpfc hba data structure.
7912 * @pring: pointer to a SLI ring.
7913 * @elsiocb: pointer to lpfc els iocb data structure.
7914 *
7915 * This routine is used to process an unsolicited event received from a SLI
7916 * (Service Level Interface) ring. The actual processing of the data buffer
7917 * associated with the unsolicited event is done by invoking the routine
7918 * lpfc_els_unsol_buffer() after properly set up the iocb buffer from the
7919 * SLI ring on which the unsolicited event was received.
7920 **/
James Smarted957682007-06-17 19:56:37 -05007921void
7922lpfc_els_unsol_event(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
7923 struct lpfc_iocbq *elsiocb)
7924{
7925 struct lpfc_vport *vport = phba->pport;
James Smarted957682007-06-17 19:56:37 -05007926 IOCB_t *icmd = &elsiocb->iocb;
James Smarted957682007-06-17 19:56:37 -05007927 dma_addr_t paddr;
James Smart92d7f7b2007-06-17 19:56:38 -05007928 struct lpfc_dmabuf *bdeBuf1 = elsiocb->context2;
7929 struct lpfc_dmabuf *bdeBuf2 = elsiocb->context3;
James Smarted957682007-06-17 19:56:37 -05007930
James Smartd7c255b2008-08-24 21:50:00 -04007931 elsiocb->context1 = NULL;
James Smart92d7f7b2007-06-17 19:56:38 -05007932 elsiocb->context2 = NULL;
7933 elsiocb->context3 = NULL;
7934
7935 if (icmd->ulpStatus == IOSTAT_NEED_BUFFER) {
7936 lpfc_sli_hbqbuf_add_hbqs(phba, LPFC_ELS_HBQ);
7937 } else if (icmd->ulpStatus == IOSTAT_LOCAL_REJECT &&
James Smarte3d2b802012-08-14 14:25:43 -04007938 (icmd->un.ulpWord[4] & IOERR_PARAM_MASK) ==
7939 IOERR_RCV_BUFFER_WAITING) {
James Smarted957682007-06-17 19:56:37 -05007940 phba->fc_stat.NoRcvBuf++;
7941 /* Not enough posted buffers; Try posting more buffers */
James Smart92d7f7b2007-06-17 19:56:38 -05007942 if (!(phba->sli3_options & LPFC_SLI3_HBQ_ENABLED))
James Smart495a7142008-06-14 22:52:59 -04007943 lpfc_post_buffer(phba, pring, 0);
James Smarted957682007-06-17 19:56:37 -05007944 return;
7945 }
7946
James Smart92d7f7b2007-06-17 19:56:38 -05007947 if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
7948 (icmd->ulpCommand == CMD_IOCB_RCV_ELS64_CX ||
7949 icmd->ulpCommand == CMD_IOCB_RCV_SEQ64_CX)) {
7950 if (icmd->unsli3.rcvsli3.vpi == 0xffff)
7951 vport = phba->pport;
James Smart6fb120a2009-05-22 14:52:59 -04007952 else
7953 vport = lpfc_find_vport_by_vpid(phba,
James Smart6d368e52011-05-24 11:44:12 -04007954 icmd->unsli3.rcvsli3.vpi);
James Smart92d7f7b2007-06-17 19:56:38 -05007955 }
James Smart6d368e52011-05-24 11:44:12 -04007956
James Smart7f5f3d02008-02-08 18:50:14 -05007957 /* If there are no BDEs associated
7958 * with this IOCB, there is nothing to do.
7959 */
James Smarted957682007-06-17 19:56:37 -05007960 if (icmd->ulpBdeCount == 0)
7961 return;
7962
James Smart7f5f3d02008-02-08 18:50:14 -05007963 /* type of ELS cmd is first 32bit word
7964 * in packet
7965 */
James Smarted957682007-06-17 19:56:37 -05007966 if (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) {
James Smart92d7f7b2007-06-17 19:56:38 -05007967 elsiocb->context2 = bdeBuf1;
James Smarted957682007-06-17 19:56:37 -05007968 } else {
7969 paddr = getPaddr(icmd->un.cont64[0].addrHigh,
7970 icmd->un.cont64[0].addrLow);
James Smart92d7f7b2007-06-17 19:56:38 -05007971 elsiocb->context2 = lpfc_sli_ringpostbuf_get(phba, pring,
7972 paddr);
James Smarted957682007-06-17 19:56:37 -05007973 }
7974
James Smart92d7f7b2007-06-17 19:56:38 -05007975 lpfc_els_unsol_buffer(phba, pring, vport, elsiocb);
7976 /*
7977 * The different unsolicited event handlers would tell us
7978 * if they are done with "mp" by setting context2 to NULL.
7979 */
dea31012005-04-17 16:05:31 -05007980 if (elsiocb->context2) {
James Smart92d7f7b2007-06-17 19:56:38 -05007981 lpfc_in_buf_free(phba, (struct lpfc_dmabuf *)elsiocb->context2);
7982 elsiocb->context2 = NULL;
dea31012005-04-17 16:05:31 -05007983 }
James Smarted957682007-06-17 19:56:37 -05007984
7985 /* RCV_ELS64_CX provide for 2 BDEs - process 2nd if included */
James Smart92d7f7b2007-06-17 19:56:38 -05007986 if ((phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) &&
James Smarted957682007-06-17 19:56:37 -05007987 icmd->ulpBdeCount == 2) {
James Smart92d7f7b2007-06-17 19:56:38 -05007988 elsiocb->context2 = bdeBuf2;
7989 lpfc_els_unsol_buffer(phba, pring, vport, elsiocb);
James Smarted957682007-06-17 19:56:37 -05007990 /* free mp if we are done with it */
7991 if (elsiocb->context2) {
James Smart92d7f7b2007-06-17 19:56:38 -05007992 lpfc_in_buf_free(phba, elsiocb->context2);
7993 elsiocb->context2 = NULL;
James Smarted957682007-06-17 19:56:37 -05007994 }
dea31012005-04-17 16:05:31 -05007995 }
dea31012005-04-17 16:05:31 -05007996}
James Smart92d7f7b2007-06-17 19:56:38 -05007997
Baoyou Xiebd4b3e52016-09-25 13:44:55 +08007998static void
James Smart4258e982015-12-16 18:11:58 -05007999lpfc_start_fdmi(struct lpfc_vport *vport)
8000{
8001 struct lpfc_hba *phba = vport->phba;
8002 struct lpfc_nodelist *ndlp;
8003
8004 /* If this is the first time, allocate an ndlp and initialize
8005 * it. Otherwise, make sure the node is enabled and then do the
8006 * login.
8007 */
8008 ndlp = lpfc_findnode_did(vport, FDMI_DID);
8009 if (!ndlp) {
8010 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
8011 if (ndlp) {
8012 lpfc_nlp_init(vport, ndlp, FDMI_DID);
8013 ndlp->nlp_type |= NLP_FABRIC;
8014 } else {
8015 return;
8016 }
8017 }
8018 if (!NLP_CHK_NODE_ACT(ndlp))
8019 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_NPR_NODE);
8020
8021 if (ndlp) {
8022 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
8023 lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0);
8024 }
8025}
8026
James Smarte59058c2008-08-24 21:49:00 -04008027/**
James Smart3621a712009-04-06 18:47:14 -04008028 * lpfc_do_scr_ns_plogi - Issue a plogi to the name server for scr
James Smarte59058c2008-08-24 21:49:00 -04008029 * @phba: pointer to lpfc hba data structure.
8030 * @vport: pointer to a virtual N_Port data structure.
8031 *
8032 * This routine issues a Port Login (PLOGI) to the Name Server with
8033 * State Change Request (SCR) for a @vport. This routine will create an
8034 * ndlp for the Name Server associated to the @vport if such node does
8035 * not already exist. The PLOGI to Name Server is issued by invoking the
8036 * lpfc_issue_els_plogi() routine. If Fabric-Device Management Interface
8037 * (FDMI) is configured to the @vport, a FDMI node will be created and
8038 * the PLOGI to FDMI is issued by invoking lpfc_issue_els_plogi() routine.
8039 **/
James Smart92d7f7b2007-06-17 19:56:38 -05008040void
8041lpfc_do_scr_ns_plogi(struct lpfc_hba *phba, struct lpfc_vport *vport)
8042{
James Smart4258e982015-12-16 18:11:58 -05008043 struct lpfc_nodelist *ndlp;
James Smart92494142011-02-16 12:39:44 -05008044 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
8045
8046 /*
8047 * If lpfc_delay_discovery parameter is set and the clean address
8048 * bit is cleared and fc fabric parameters chenged, delay FC NPort
8049 * discovery.
8050 */
8051 spin_lock_irq(shost->host_lock);
8052 if (vport->fc_flag & FC_DISC_DELAYED) {
8053 spin_unlock_irq(shost->host_lock);
James Smart18775702013-04-17 20:19:25 -04008054 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY,
8055 "3334 Delay fc port discovery for %d seconds\n",
8056 phba->fc_ratov);
James Smart92494142011-02-16 12:39:44 -05008057 mod_timer(&vport->delayed_disc_tmo,
James Smart256ec0d2013-04-17 20:14:58 -04008058 jiffies + msecs_to_jiffies(1000 * phba->fc_ratov));
James Smart92494142011-02-16 12:39:44 -05008059 return;
8060 }
8061 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05008062
8063 ndlp = lpfc_findnode_did(vport, NameServer_DID);
8064 if (!ndlp) {
8065 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
8066 if (!ndlp) {
James Smart76a95d72010-11-20 23:11:48 -05008067 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
James Smart92d7f7b2007-06-17 19:56:38 -05008068 lpfc_disc_start(vport);
8069 return;
8070 }
8071 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
James Smarte8b62012007-08-02 11:10:09 -04008072 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
8073 "0251 NameServer login: no memory\n");
James Smart92d7f7b2007-06-17 19:56:38 -05008074 return;
8075 }
8076 lpfc_nlp_init(vport, ndlp, NameServer_DID);
James Smarte47c9092008-02-08 18:49:26 -05008077 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
8078 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
8079 if (!ndlp) {
James Smart76a95d72010-11-20 23:11:48 -05008080 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
James Smarte47c9092008-02-08 18:49:26 -05008081 lpfc_disc_start(vport);
8082 return;
8083 }
8084 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
8085 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
8086 "0348 NameServer login: node freed\n");
8087 return;
8088 }
James Smart92d7f7b2007-06-17 19:56:38 -05008089 }
James Smart58da1ff2008-04-07 10:15:56 -04008090 ndlp->nlp_type |= NLP_FABRIC;
James Smart92d7f7b2007-06-17 19:56:38 -05008091
8092 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
8093
8094 if (lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0)) {
8095 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
James Smarte8b62012007-08-02 11:10:09 -04008096 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
8097 "0252 Cannot issue NameServer login\n");
James Smart92d7f7b2007-06-17 19:56:38 -05008098 return;
8099 }
8100
James Smart8663cbb2016-03-31 14:12:33 -07008101 if ((phba->cfg_enable_SmartSAN ||
8102 (phba->cfg_fdmi_on == LPFC_FDMI_SUPPORT)) &&
8103 (vport->load_flag & FC_ALLOW_FDMI))
James Smart4258e982015-12-16 18:11:58 -05008104 lpfc_start_fdmi(vport);
James Smart92d7f7b2007-06-17 19:56:38 -05008105}
8106
James Smarte59058c2008-08-24 21:49:00 -04008107/**
James Smart3621a712009-04-06 18:47:14 -04008108 * lpfc_cmpl_reg_new_vport - Completion callback function to register new vport
James Smarte59058c2008-08-24 21:49:00 -04008109 * @phba: pointer to lpfc hba data structure.
8110 * @pmb: pointer to the driver internal queue element for mailbox command.
8111 *
8112 * This routine is the completion callback function to register new vport
8113 * mailbox command. If the new vport mailbox command completes successfully,
8114 * the fabric registration login shall be performed on physical port (the
8115 * new vport created is actually a physical port, with VPI 0) or the port
8116 * login to Name Server for State Change Request (SCR) will be performed
8117 * on virtual port (real virtual port, with VPI greater than 0).
8118 **/
James Smart92d7f7b2007-06-17 19:56:38 -05008119static void
8120lpfc_cmpl_reg_new_vport(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
8121{
8122 struct lpfc_vport *vport = pmb->vport;
8123 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
8124 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) pmb->context2;
James Smart04c68492009-05-22 14:52:52 -04008125 MAILBOX_t *mb = &pmb->u.mb;
James Smart695a8142010-01-26 23:08:03 -05008126 int rc;
James Smart92d7f7b2007-06-17 19:56:38 -05008127
James Smart09372822008-01-11 01:52:54 -05008128 spin_lock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05008129 vport->fc_flag &= ~FC_VPORT_NEEDS_REG_VPI;
James Smart09372822008-01-11 01:52:54 -05008130 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05008131
8132 if (mb->mbxStatus) {
James Smarte8b62012007-08-02 11:10:09 -04008133 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
James Smart38b92ef2010-08-04 16:11:39 -04008134 "0915 Register VPI failed : Status: x%x"
8135 " upd bit: x%x \n", mb->mbxStatus,
8136 mb->un.varRegVpi.upd);
8137 if (phba->sli_rev == LPFC_SLI_REV4 &&
8138 mb->un.varRegVpi.upd)
8139 goto mbox_err_exit ;
James Smart92d7f7b2007-06-17 19:56:38 -05008140
8141 switch (mb->mbxStatus) {
8142 case 0x11: /* unsupported feature */
8143 case 0x9603: /* max_vpi exceeded */
James Smart7f5f3d02008-02-08 18:50:14 -05008144 case 0x9602: /* Link event since CLEAR_LA */
James Smart92d7f7b2007-06-17 19:56:38 -05008145 /* giving up on vport registration */
8146 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
8147 spin_lock_irq(shost->host_lock);
8148 vport->fc_flag &= ~(FC_FABRIC | FC_PUBLIC_LOOP);
8149 spin_unlock_irq(shost->host_lock);
8150 lpfc_can_disctmo(vport);
8151 break;
James Smart695a8142010-01-26 23:08:03 -05008152 /* If reg_vpi fail with invalid VPI status, re-init VPI */
8153 case 0x20:
8154 spin_lock_irq(shost->host_lock);
8155 vport->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
8156 spin_unlock_irq(shost->host_lock);
8157 lpfc_init_vpi(phba, pmb, vport->vpi);
8158 pmb->vport = vport;
8159 pmb->mbox_cmpl = lpfc_init_vpi_cmpl;
8160 rc = lpfc_sli_issue_mbox(phba, pmb,
8161 MBX_NOWAIT);
8162 if (rc == MBX_NOT_FINISHED) {
8163 lpfc_printf_vlog(vport,
8164 KERN_ERR, LOG_MBOX,
8165 "2732 Failed to issue INIT_VPI"
8166 " mailbox command\n");
8167 } else {
8168 lpfc_nlp_put(ndlp);
8169 return;
8170 }
8171
James Smart92d7f7b2007-06-17 19:56:38 -05008172 default:
8173 /* Try to recover from this error */
James Smart5af5eee2010-10-22 11:06:38 -04008174 if (phba->sli_rev == LPFC_SLI_REV4)
8175 lpfc_sli4_unreg_all_rpis(vport);
James Smart92d7f7b2007-06-17 19:56:38 -05008176 lpfc_mbx_unreg_vpi(vport);
James Smart09372822008-01-11 01:52:54 -05008177 spin_lock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05008178 vport->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
James Smart09372822008-01-11 01:52:54 -05008179 spin_unlock_irq(shost->host_lock);
James Smart4b40c592010-03-15 11:25:44 -04008180 if (vport->port_type == LPFC_PHYSICAL_PORT
8181 && !(vport->fc_flag & FC_LOGO_RCVD_DID_CHNG))
James Smart76a95d72010-11-20 23:11:48 -05008182 lpfc_issue_init_vfi(vport);
James Smart7f5f3d02008-02-08 18:50:14 -05008183 else
8184 lpfc_initial_fdisc(vport);
James Smart92d7f7b2007-06-17 19:56:38 -05008185 break;
8186 }
James Smart92d7f7b2007-06-17 19:56:38 -05008187 } else {
James Smart695a8142010-01-26 23:08:03 -05008188 spin_lock_irq(shost->host_lock);
James Smart19878072009-12-21 17:02:00 -05008189 vport->vpi_state |= LPFC_VPI_REGISTERED;
James Smart695a8142010-01-26 23:08:03 -05008190 spin_unlock_irq(shost->host_lock);
8191 if (vport == phba->pport) {
James Smart6fb120a2009-05-22 14:52:59 -04008192 if (phba->sli_rev < LPFC_SLI_REV4)
8193 lpfc_issue_fabric_reglogin(vport);
James Smart695a8142010-01-26 23:08:03 -05008194 else {
James Smartfc2b9892010-02-26 14:15:29 -05008195 /*
8196 * If the physical port is instantiated using
8197 * FDISC, do not start vport discovery.
8198 */
8199 if (vport->port_state != LPFC_FDISC)
8200 lpfc_start_fdiscs(phba);
James Smart695a8142010-01-26 23:08:03 -05008201 lpfc_do_scr_ns_plogi(phba, vport);
8202 }
8203 } else
James Smart92d7f7b2007-06-17 19:56:38 -05008204 lpfc_do_scr_ns_plogi(phba, vport);
8205 }
James Smart38b92ef2010-08-04 16:11:39 -04008206mbox_err_exit:
James Smartfa4066b2008-01-11 01:53:27 -05008207 /* Now, we decrement the ndlp reference count held for this
8208 * callback function
8209 */
8210 lpfc_nlp_put(ndlp);
8211
James Smart92d7f7b2007-06-17 19:56:38 -05008212 mempool_free(pmb, phba->mbox_mem_pool);
8213 return;
8214}
8215
James Smarte59058c2008-08-24 21:49:00 -04008216/**
James Smart3621a712009-04-06 18:47:14 -04008217 * lpfc_register_new_vport - Register a new vport with a HBA
James Smarte59058c2008-08-24 21:49:00 -04008218 * @phba: pointer to lpfc hba data structure.
8219 * @vport: pointer to a host virtual N_Port data structure.
8220 * @ndlp: pointer to a node-list data structure.
8221 *
8222 * This routine registers the @vport as a new virtual port with a HBA.
8223 * It is done through a registering vpi mailbox command.
8224 **/
James Smart695a8142010-01-26 23:08:03 -05008225void
James Smart92d7f7b2007-06-17 19:56:38 -05008226lpfc_register_new_vport(struct lpfc_hba *phba, struct lpfc_vport *vport,
8227 struct lpfc_nodelist *ndlp)
8228{
James Smart09372822008-01-11 01:52:54 -05008229 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart92d7f7b2007-06-17 19:56:38 -05008230 LPFC_MBOXQ_t *mbox;
8231
8232 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
8233 if (mbox) {
James Smart6fb120a2009-05-22 14:52:59 -04008234 lpfc_reg_vpi(vport, mbox);
James Smart92d7f7b2007-06-17 19:56:38 -05008235 mbox->vport = vport;
8236 mbox->context2 = lpfc_nlp_get(ndlp);
8237 mbox->mbox_cmpl = lpfc_cmpl_reg_new_vport;
James Smart0b727fe2007-10-27 13:37:25 -04008238 if (lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT)
James Smart92d7f7b2007-06-17 19:56:38 -05008239 == MBX_NOT_FINISHED) {
James Smartfa4066b2008-01-11 01:53:27 -05008240 /* mailbox command not success, decrement ndlp
8241 * reference count for this command
8242 */
8243 lpfc_nlp_put(ndlp);
James Smart92d7f7b2007-06-17 19:56:38 -05008244 mempool_free(mbox, phba->mbox_mem_pool);
James Smart92d7f7b2007-06-17 19:56:38 -05008245
James Smarte8b62012007-08-02 11:10:09 -04008246 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
8247 "0253 Register VPI: Can't send mbox\n");
James Smartfa4066b2008-01-11 01:53:27 -05008248 goto mbox_err_exit;
James Smart92d7f7b2007-06-17 19:56:38 -05008249 }
8250 } else {
James Smarte8b62012007-08-02 11:10:09 -04008251 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
8252 "0254 Register VPI: no memory\n");
James Smartfa4066b2008-01-11 01:53:27 -05008253 goto mbox_err_exit;
James Smart92d7f7b2007-06-17 19:56:38 -05008254 }
James Smartfa4066b2008-01-11 01:53:27 -05008255 return;
8256
8257mbox_err_exit:
8258 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
8259 spin_lock_irq(shost->host_lock);
8260 vport->fc_flag &= ~FC_VPORT_NEEDS_REG_VPI;
8261 spin_unlock_irq(shost->host_lock);
8262 return;
James Smart92d7f7b2007-06-17 19:56:38 -05008263}
8264
James Smarte59058c2008-08-24 21:49:00 -04008265/**
James Smart0c9ab6f2010-02-26 14:15:57 -05008266 * lpfc_cancel_all_vport_retry_delay_timer - Cancel all vport retry delay timer
James Smart695a8142010-01-26 23:08:03 -05008267 * @phba: pointer to lpfc hba data structure.
8268 *
James Smart0c9ab6f2010-02-26 14:15:57 -05008269 * This routine cancels the retry delay timers to all the vports.
James Smart695a8142010-01-26 23:08:03 -05008270 **/
8271void
James Smart0c9ab6f2010-02-26 14:15:57 -05008272lpfc_cancel_all_vport_retry_delay_timer(struct lpfc_hba *phba)
James Smart695a8142010-01-26 23:08:03 -05008273{
8274 struct lpfc_vport **vports;
8275 struct lpfc_nodelist *ndlp;
James Smart695a8142010-01-26 23:08:03 -05008276 uint32_t link_state;
James Smart0c9ab6f2010-02-26 14:15:57 -05008277 int i;
James Smart695a8142010-01-26 23:08:03 -05008278
8279 /* Treat this failure as linkdown for all vports */
8280 link_state = phba->link_state;
8281 lpfc_linkdown(phba);
8282 phba->link_state = link_state;
8283
8284 vports = lpfc_create_vport_work_array(phba);
8285
8286 if (vports) {
8287 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
8288 ndlp = lpfc_findnode_did(vports[i], Fabric_DID);
8289 if (ndlp)
8290 lpfc_cancel_retry_delay_tmo(vports[i], ndlp);
8291 lpfc_els_flush_cmd(vports[i]);
8292 }
8293 lpfc_destroy_vport_work_array(phba, vports);
8294 }
James Smart0c9ab6f2010-02-26 14:15:57 -05008295}
8296
8297/**
8298 * lpfc_retry_pport_discovery - Start timer to retry FLOGI.
8299 * @phba: pointer to lpfc hba data structure.
8300 *
8301 * This routine abort all pending discovery commands and
8302 * start a timer to retry FLOGI for the physical port
8303 * discovery.
8304 **/
8305void
8306lpfc_retry_pport_discovery(struct lpfc_hba *phba)
8307{
8308 struct lpfc_nodelist *ndlp;
8309 struct Scsi_Host *shost;
8310
8311 /* Cancel the all vports retry delay retry timers */
8312 lpfc_cancel_all_vport_retry_delay_timer(phba);
James Smart695a8142010-01-26 23:08:03 -05008313
8314 /* If fabric require FLOGI, then re-instantiate physical login */
8315 ndlp = lpfc_findnode_did(phba->pport, Fabric_DID);
8316 if (!ndlp)
8317 return;
8318
James Smart695a8142010-01-26 23:08:03 -05008319 shost = lpfc_shost_from_vport(phba->pport);
James Smart256ec0d2013-04-17 20:14:58 -04008320 mod_timer(&ndlp->nlp_delayfunc, jiffies + msecs_to_jiffies(1000));
James Smart695a8142010-01-26 23:08:03 -05008321 spin_lock_irq(shost->host_lock);
8322 ndlp->nlp_flag |= NLP_DELAY_TMO;
8323 spin_unlock_irq(shost->host_lock);
8324 ndlp->nlp_last_elscmd = ELS_CMD_FLOGI;
8325 phba->pport->port_state = LPFC_FLOGI;
8326 return;
8327}
8328
8329/**
8330 * lpfc_fabric_login_reqd - Check if FLOGI required.
8331 * @phba: pointer to lpfc hba data structure.
8332 * @cmdiocb: pointer to FDISC command iocb.
8333 * @rspiocb: pointer to FDISC response iocb.
8334 *
8335 * This routine checks if a FLOGI is reguired for FDISC
8336 * to succeed.
8337 **/
8338static int
8339lpfc_fabric_login_reqd(struct lpfc_hba *phba,
8340 struct lpfc_iocbq *cmdiocb,
8341 struct lpfc_iocbq *rspiocb)
8342{
8343
8344 if ((rspiocb->iocb.ulpStatus != IOSTAT_FABRIC_RJT) ||
8345 (rspiocb->iocb.un.ulpWord[4] != RJT_LOGIN_REQUIRED))
8346 return 0;
8347 else
8348 return 1;
8349}
8350
8351/**
James Smart3621a712009-04-06 18:47:14 -04008352 * lpfc_cmpl_els_fdisc - Completion function for fdisc iocb command
James Smarte59058c2008-08-24 21:49:00 -04008353 * @phba: pointer to lpfc hba data structure.
8354 * @cmdiocb: pointer to lpfc command iocb data structure.
8355 * @rspiocb: pointer to lpfc response iocb data structure.
8356 *
8357 * This routine is the completion callback function to a Fabric Discover
8358 * (FDISC) ELS command. Since all the FDISC ELS commands are issued
8359 * single threaded, each FDISC completion callback function will reset
8360 * the discovery timer for all vports such that the timers will not get
8361 * unnecessary timeout. The function checks the FDISC IOCB status. If error
8362 * detected, the vport will be set to FC_VPORT_FAILED state. Otherwise,the
8363 * vport will set to FC_VPORT_ACTIVE state. It then checks whether the DID
8364 * assigned to the vport has been changed with the completion of the FDISC
8365 * command. If so, both RPI (Remote Port Index) and VPI (Virtual Port Index)
8366 * are unregistered from the HBA, and then the lpfc_register_new_vport()
8367 * routine is invoked to register new vport with the HBA. Otherwise, the
8368 * lpfc_do_scr_ns_plogi() routine is invoked to issue a PLOGI to the Name
8369 * Server for State Change Request (SCR).
8370 **/
James Smart92d7f7b2007-06-17 19:56:38 -05008371static void
8372lpfc_cmpl_els_fdisc(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
8373 struct lpfc_iocbq *rspiocb)
8374{
8375 struct lpfc_vport *vport = cmdiocb->vport;
8376 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
8377 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
8378 struct lpfc_nodelist *np;
8379 struct lpfc_nodelist *next_np;
8380 IOCB_t *irsp = &rspiocb->iocb;
8381 struct lpfc_iocbq *piocb;
James Smart92494142011-02-16 12:39:44 -05008382 struct lpfc_dmabuf *pcmd = cmdiocb->context2, *prsp;
8383 struct serv_parm *sp;
8384 uint8_t fabric_param_changed;
James Smart92d7f7b2007-06-17 19:56:38 -05008385
James Smarte8b62012007-08-02 11:10:09 -04008386 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
8387 "0123 FDISC completes. x%x/x%x prevDID: x%x\n",
8388 irsp->ulpStatus, irsp->un.ulpWord[4],
8389 vport->fc_prevDID);
James Smart92d7f7b2007-06-17 19:56:38 -05008390 /* Since all FDISCs are being single threaded, we
8391 * must reset the discovery timer for ALL vports
8392 * waiting to send FDISC when one completes.
8393 */
8394 list_for_each_entry(piocb, &phba->fabric_iocb_list, list) {
8395 lpfc_set_disctmo(piocb->vport);
8396 }
8397
James Smart858c9f62007-06-17 19:56:39 -05008398 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
8399 "FDISC cmpl: status:x%x/x%x prevdid:x%x",
8400 irsp->ulpStatus, irsp->un.ulpWord[4], vport->fc_prevDID);
8401
James Smart92d7f7b2007-06-17 19:56:38 -05008402 if (irsp->ulpStatus) {
James Smart695a8142010-01-26 23:08:03 -05008403
8404 if (lpfc_fabric_login_reqd(phba, cmdiocb, rspiocb)) {
8405 lpfc_retry_pport_discovery(phba);
8406 goto out;
8407 }
8408
James Smart92d7f7b2007-06-17 19:56:38 -05008409 /* Check for retry */
8410 if (lpfc_els_retry(phba, cmdiocb, rspiocb))
8411 goto out;
James Smart92d7f7b2007-06-17 19:56:38 -05008412 /* FDISC failed */
James Smarte8b62012007-08-02 11:10:09 -04008413 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
James Smart6b5151f2012-01-18 16:24:06 -05008414 "0126 FDISC failed. (x%x/x%x)\n",
James Smarte8b62012007-08-02 11:10:09 -04008415 irsp->ulpStatus, irsp->un.ulpWord[4]);
James Smartd7c255b2008-08-24 21:50:00 -04008416 goto fdisc_failed;
8417 }
James Smartd7c255b2008-08-24 21:50:00 -04008418 spin_lock_irq(shost->host_lock);
James Smart695a8142010-01-26 23:08:03 -05008419 vport->fc_flag &= ~FC_VPORT_CVL_RCVD;
James Smart4b40c592010-03-15 11:25:44 -04008420 vport->fc_flag &= ~FC_VPORT_LOGO_RCVD;
James Smartd7c255b2008-08-24 21:50:00 -04008421 vport->fc_flag |= FC_FABRIC;
James Smart76a95d72010-11-20 23:11:48 -05008422 if (vport->phba->fc_topology == LPFC_TOPOLOGY_LOOP)
James Smartd7c255b2008-08-24 21:50:00 -04008423 vport->fc_flag |= FC_PUBLIC_LOOP;
8424 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05008425
James Smartd7c255b2008-08-24 21:50:00 -04008426 vport->fc_myDID = irsp->un.ulpWord[4] & Mask_DID;
8427 lpfc_vport_set_state(vport, FC_VPORT_ACTIVE);
James Smart92494142011-02-16 12:39:44 -05008428 prsp = list_get_first(&pcmd->list, struct lpfc_dmabuf, list);
James Smarta2fc4aef2014-09-03 12:57:55 -04008429 if (!prsp)
8430 goto out;
James Smart92494142011-02-16 12:39:44 -05008431 sp = prsp->virt + sizeof(uint32_t);
8432 fabric_param_changed = lpfc_check_clean_addr_bit(vport, sp);
8433 memcpy(&vport->fabric_portname, &sp->portName,
8434 sizeof(struct lpfc_name));
8435 memcpy(&vport->fabric_nodename, &sp->nodeName,
8436 sizeof(struct lpfc_name));
8437 if (fabric_param_changed &&
James Smartd7c255b2008-08-24 21:50:00 -04008438 !(vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)) {
8439 /* If our NportID changed, we need to ensure all
8440 * remaining NPORTs get unreg_login'ed so we can
8441 * issue unreg_vpi.
8442 */
8443 list_for_each_entry_safe(np, next_np,
8444 &vport->fc_nodes, nlp_listp) {
8445 if (!NLP_CHK_NODE_ACT(ndlp) ||
8446 (np->nlp_state != NLP_STE_NPR_NODE) ||
8447 !(np->nlp_flag & NLP_NPR_ADISC))
8448 continue;
James Smart09372822008-01-11 01:52:54 -05008449 spin_lock_irq(shost->host_lock);
James Smartd7c255b2008-08-24 21:50:00 -04008450 np->nlp_flag &= ~NLP_NPR_ADISC;
James Smart09372822008-01-11 01:52:54 -05008451 spin_unlock_irq(shost->host_lock);
James Smartd7c255b2008-08-24 21:50:00 -04008452 lpfc_unreg_rpi(vport, np);
James Smart92d7f7b2007-06-17 19:56:38 -05008453 }
James Smart78730cf2010-04-06 15:06:30 -04008454 lpfc_cleanup_pending_mbox(vport);
James Smart5af5eee2010-10-22 11:06:38 -04008455
8456 if (phba->sli_rev == LPFC_SLI_REV4)
8457 lpfc_sli4_unreg_all_rpis(vport);
8458
James Smartd7c255b2008-08-24 21:50:00 -04008459 lpfc_mbx_unreg_vpi(vport);
8460 spin_lock_irq(shost->host_lock);
8461 vport->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
James Smart0f65ff62010-02-26 14:14:23 -05008462 if (phba->sli_rev == LPFC_SLI_REV4)
8463 vport->fc_flag |= FC_VPORT_NEEDS_INIT_VPI;
James Smart4b40c592010-03-15 11:25:44 -04008464 else
8465 vport->fc_flag |= FC_LOGO_RCVD_DID_CHNG;
James Smartd7c255b2008-08-24 21:50:00 -04008466 spin_unlock_irq(shost->host_lock);
James Smart38b92ef2010-08-04 16:11:39 -04008467 } else if ((phba->sli_rev == LPFC_SLI_REV4) &&
8468 !(vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)) {
8469 /*
8470 * Driver needs to re-reg VPI in order for f/w
8471 * to update the MAC address.
8472 */
8473 lpfc_register_new_vport(phba, vport, ndlp);
James Smart5ac6b302010-10-22 11:05:36 -04008474 goto out;
James Smart92d7f7b2007-06-17 19:56:38 -05008475 }
8476
James Smartecfd03c2010-02-12 14:41:27 -05008477 if (vport->fc_flag & FC_VPORT_NEEDS_INIT_VPI)
8478 lpfc_issue_init_vpi(vport);
8479 else if (vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)
James Smartd7c255b2008-08-24 21:50:00 -04008480 lpfc_register_new_vport(phba, vport, ndlp);
8481 else
8482 lpfc_do_scr_ns_plogi(phba, vport);
8483 goto out;
8484fdisc_failed:
James Smartc84163d2015-05-21 13:55:22 -04008485 if (vport->fc_vport->vport_state != FC_VPORT_NO_FABRIC_RSCS)
8486 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
James Smartd7c255b2008-08-24 21:50:00 -04008487 /* Cancel discovery timer */
8488 lpfc_can_disctmo(vport);
8489 lpfc_nlp_put(ndlp);
James Smart92d7f7b2007-06-17 19:56:38 -05008490out:
8491 lpfc_els_free_iocb(phba, cmdiocb);
8492}
8493
James Smarte59058c2008-08-24 21:49:00 -04008494/**
James Smart3621a712009-04-06 18:47:14 -04008495 * lpfc_issue_els_fdisc - Issue a fdisc iocb command
James Smarte59058c2008-08-24 21:49:00 -04008496 * @vport: pointer to a virtual N_Port data structure.
8497 * @ndlp: pointer to a node-list data structure.
8498 * @retry: number of retries to the command IOCB.
8499 *
8500 * This routine prepares and issues a Fabric Discover (FDISC) IOCB to
8501 * a remote node (@ndlp) off a @vport. It uses the lpfc_issue_fabric_iocb()
8502 * routine to issue the IOCB, which makes sure only one outstanding fabric
8503 * IOCB will be sent off HBA at any given time.
8504 *
8505 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
8506 * will be incremented by 1 for holding the ndlp and the reference to ndlp
8507 * will be stored into the context1 field of the IOCB for the completion
8508 * callback function to the FDISC ELS command.
8509 *
8510 * Return code
8511 * 0 - Successfully issued fdisc iocb command
8512 * 1 - Failed to issue fdisc iocb command
8513 **/
Adrian Bunka6ababd2007-11-05 18:07:33 +01008514static int
James Smart92d7f7b2007-06-17 19:56:38 -05008515lpfc_issue_els_fdisc(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
8516 uint8_t retry)
8517{
8518 struct lpfc_hba *phba = vport->phba;
8519 IOCB_t *icmd;
8520 struct lpfc_iocbq *elsiocb;
8521 struct serv_parm *sp;
8522 uint8_t *pcmd;
8523 uint16_t cmdsize;
8524 int did = ndlp->nlp_DID;
8525 int rc;
James Smart92d7f7b2007-06-17 19:56:38 -05008526
James Smart5ffc2662009-11-18 15:39:44 -05008527 vport->port_state = LPFC_FDISC;
James Smart6b5151f2012-01-18 16:24:06 -05008528 vport->fc_myDID = 0;
James Smart92d7f7b2007-06-17 19:56:38 -05008529 cmdsize = (sizeof(uint32_t) + sizeof(struct serv_parm));
8530 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp, did,
8531 ELS_CMD_FDISC);
8532 if (!elsiocb) {
James Smart92d7f7b2007-06-17 19:56:38 -05008533 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
James Smarte8b62012007-08-02 11:10:09 -04008534 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
8535 "0255 Issue FDISC: no IOCB\n");
James Smart92d7f7b2007-06-17 19:56:38 -05008536 return 1;
8537 }
8538
8539 icmd = &elsiocb->iocb;
8540 icmd->un.elsreq64.myID = 0;
8541 icmd->un.elsreq64.fl = 1;
8542
James Smart73d91e52011-10-10 21:32:10 -04008543 /*
8544 * SLI3 ports require a different context type value than SLI4.
8545 * Catch SLI3 ports here and override the prep.
8546 */
8547 if (phba->sli_rev == LPFC_SLI_REV3) {
James Smartf1126682009-06-10 17:22:44 -04008548 icmd->ulpCt_h = 1;
8549 icmd->ulpCt_l = 0;
8550 }
James Smart92d7f7b2007-06-17 19:56:38 -05008551
8552 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
8553 *((uint32_t *) (pcmd)) = ELS_CMD_FDISC;
8554 pcmd += sizeof(uint32_t); /* CSP Word 1 */
8555 memcpy(pcmd, &vport->phba->pport->fc_sparam, sizeof(struct serv_parm));
8556 sp = (struct serv_parm *) pcmd;
8557 /* Setup CSPs accordingly for Fabric */
8558 sp->cmn.e_d_tov = 0;
8559 sp->cmn.w2.r_a_tov = 0;
James Smartdf9e1b52011-12-13 13:22:17 -05008560 sp->cmn.virtual_fabric_support = 0;
James Smart92d7f7b2007-06-17 19:56:38 -05008561 sp->cls1.classValid = 0;
8562 sp->cls2.seqDelivery = 1;
8563 sp->cls3.seqDelivery = 1;
8564
8565 pcmd += sizeof(uint32_t); /* CSP Word 2 */
8566 pcmd += sizeof(uint32_t); /* CSP Word 3 */
8567 pcmd += sizeof(uint32_t); /* CSP Word 4 */
8568 pcmd += sizeof(uint32_t); /* Port Name */
8569 memcpy(pcmd, &vport->fc_portname, 8);
8570 pcmd += sizeof(uint32_t); /* Node Name */
8571 pcmd += sizeof(uint32_t); /* Node Name */
8572 memcpy(pcmd, &vport->fc_nodename, 8);
8573
8574 lpfc_set_disctmo(vport);
8575
8576 phba->fc_stat.elsXmitFDISC++;
8577 elsiocb->iocb_cmpl = lpfc_cmpl_els_fdisc;
8578
James Smart858c9f62007-06-17 19:56:39 -05008579 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
8580 "Issue FDISC: did:x%x",
8581 did, 0, 0);
8582
James Smart92d7f7b2007-06-17 19:56:38 -05008583 rc = lpfc_issue_fabric_iocb(phba, elsiocb);
8584 if (rc == IOCB_ERROR) {
8585 lpfc_els_free_iocb(phba, elsiocb);
James Smart92d7f7b2007-06-17 19:56:38 -05008586 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
James Smarte8b62012007-08-02 11:10:09 -04008587 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
8588 "0256 Issue FDISC: Cannot send IOCB\n");
James Smart92d7f7b2007-06-17 19:56:38 -05008589 return 1;
8590 }
8591 lpfc_vport_set_state(vport, FC_VPORT_INITIALIZING);
James Smart92d7f7b2007-06-17 19:56:38 -05008592 return 0;
8593}
8594
James Smarte59058c2008-08-24 21:49:00 -04008595/**
James Smart3621a712009-04-06 18:47:14 -04008596 * lpfc_cmpl_els_npiv_logo - Completion function with vport logo
James Smarte59058c2008-08-24 21:49:00 -04008597 * @phba: pointer to lpfc hba data structure.
8598 * @cmdiocb: pointer to lpfc command iocb data structure.
8599 * @rspiocb: pointer to lpfc response iocb data structure.
8600 *
8601 * This routine is the completion callback function to the issuing of a LOGO
8602 * ELS command off a vport. It frees the command IOCB and then decrement the
8603 * reference count held on ndlp for this completion function, indicating that
8604 * the reference to the ndlp is no long needed. Note that the
8605 * lpfc_els_free_iocb() routine decrements the ndlp reference held for this
8606 * callback function and an additional explicit ndlp reference decrementation
8607 * will trigger the actual release of the ndlp.
8608 **/
James Smart92d7f7b2007-06-17 19:56:38 -05008609static void
8610lpfc_cmpl_els_npiv_logo(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
8611 struct lpfc_iocbq *rspiocb)
8612{
8613 struct lpfc_vport *vport = cmdiocb->vport;
James Smart858c9f62007-06-17 19:56:39 -05008614 IOCB_t *irsp;
James Smarte47c9092008-02-08 18:49:26 -05008615 struct lpfc_nodelist *ndlp;
James Smart9589b0622011-04-16 11:03:17 -04008616 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart858c9f62007-06-17 19:56:39 -05008617
James Smart9589b0622011-04-16 11:03:17 -04008618 ndlp = (struct lpfc_nodelist *)cmdiocb->context1;
James Smart858c9f62007-06-17 19:56:39 -05008619 irsp = &rspiocb->iocb;
8620 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
8621 "LOGO npiv cmpl: status:x%x/x%x did:x%x",
8622 irsp->ulpStatus, irsp->un.ulpWord[4], irsp->un.rcvels.remoteID);
James Smart92d7f7b2007-06-17 19:56:38 -05008623
8624 lpfc_els_free_iocb(phba, cmdiocb);
8625 vport->unreg_vpi_cmpl = VPORT_ERROR;
James Smarte47c9092008-02-08 18:49:26 -05008626
8627 /* Trigger the release of the ndlp after logo */
8628 lpfc_nlp_put(ndlp);
James Smart9589b0622011-04-16 11:03:17 -04008629
8630 /* NPIV LOGO completes to NPort <nlp_DID> */
8631 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
8632 "2928 NPIV LOGO completes to NPort x%x "
8633 "Data: x%x x%x x%x x%x\n",
8634 ndlp->nlp_DID, irsp->ulpStatus, irsp->un.ulpWord[4],
8635 irsp->ulpTimeout, vport->num_disc_nodes);
8636
8637 if (irsp->ulpStatus == IOSTAT_SUCCESS) {
8638 spin_lock_irq(shost->host_lock);
James Smart73dc0db2015-05-22 10:42:36 -04008639 vport->fc_flag &= ~FC_NDISC_ACTIVE;
James Smart9589b0622011-04-16 11:03:17 -04008640 vport->fc_flag &= ~FC_FABRIC;
8641 spin_unlock_irq(shost->host_lock);
James Smart73dc0db2015-05-22 10:42:36 -04008642 lpfc_can_disctmo(vport);
James Smart9589b0622011-04-16 11:03:17 -04008643 }
James Smart92d7f7b2007-06-17 19:56:38 -05008644}
8645
James Smarte59058c2008-08-24 21:49:00 -04008646/**
James Smart3621a712009-04-06 18:47:14 -04008647 * lpfc_issue_els_npiv_logo - Issue a logo off a vport
James Smarte59058c2008-08-24 21:49:00 -04008648 * @vport: pointer to a virtual N_Port data structure.
8649 * @ndlp: pointer to a node-list data structure.
8650 *
8651 * This routine issues a LOGO ELS command to an @ndlp off a @vport.
8652 *
8653 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
8654 * will be incremented by 1 for holding the ndlp and the reference to ndlp
8655 * will be stored into the context1 field of the IOCB for the completion
8656 * callback function to the LOGO ELS command.
8657 *
8658 * Return codes
8659 * 0 - Successfully issued logo off the @vport
8660 * 1 - Failed to issue logo off the @vport
8661 **/
James Smart92d7f7b2007-06-17 19:56:38 -05008662int
8663lpfc_issue_els_npiv_logo(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
8664{
8665 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
8666 struct lpfc_hba *phba = vport->phba;
James Smart92d7f7b2007-06-17 19:56:38 -05008667 struct lpfc_iocbq *elsiocb;
8668 uint8_t *pcmd;
8669 uint16_t cmdsize;
8670
8671 cmdsize = 2 * sizeof(uint32_t) + sizeof(struct lpfc_name);
8672 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, 0, ndlp, ndlp->nlp_DID,
8673 ELS_CMD_LOGO);
8674 if (!elsiocb)
8675 return 1;
8676
James Smart92d7f7b2007-06-17 19:56:38 -05008677 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
8678 *((uint32_t *) (pcmd)) = ELS_CMD_LOGO;
8679 pcmd += sizeof(uint32_t);
8680
8681 /* Fill in LOGO payload */
8682 *((uint32_t *) (pcmd)) = be32_to_cpu(vport->fc_myDID);
8683 pcmd += sizeof(uint32_t);
8684 memcpy(pcmd, &vport->fc_portname, sizeof(struct lpfc_name));
8685
James Smart858c9f62007-06-17 19:56:39 -05008686 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
8687 "Issue LOGO npiv did:x%x flg:x%x",
8688 ndlp->nlp_DID, ndlp->nlp_flag, 0);
8689
James Smart92d7f7b2007-06-17 19:56:38 -05008690 elsiocb->iocb_cmpl = lpfc_cmpl_els_npiv_logo;
8691 spin_lock_irq(shost->host_lock);
8692 ndlp->nlp_flag |= NLP_LOGO_SND;
8693 spin_unlock_irq(shost->host_lock);
James Smart3772a992009-05-22 14:50:54 -04008694 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) ==
8695 IOCB_ERROR) {
James Smart92d7f7b2007-06-17 19:56:38 -05008696 spin_lock_irq(shost->host_lock);
8697 ndlp->nlp_flag &= ~NLP_LOGO_SND;
8698 spin_unlock_irq(shost->host_lock);
8699 lpfc_els_free_iocb(phba, elsiocb);
8700 return 1;
8701 }
8702 return 0;
8703}
8704
James Smarte59058c2008-08-24 21:49:00 -04008705/**
James Smart3621a712009-04-06 18:47:14 -04008706 * lpfc_fabric_block_timeout - Handler function to the fabric block timer
James Smarte59058c2008-08-24 21:49:00 -04008707 * @ptr: holder for the timer function associated data.
8708 *
8709 * This routine is invoked by the fabric iocb block timer after
8710 * timeout. It posts the fabric iocb block timeout event by setting the
8711 * WORKER_FABRIC_BLOCK_TMO bit to work port event bitmap and then invokes
8712 * lpfc_worker_wake_up() routine to wake up the worker thread. It is for
8713 * the worker thread to invoke the lpfc_unblock_fabric_iocbs() on the
8714 * posted event WORKER_FABRIC_BLOCK_TMO.
8715 **/
James Smart92d7f7b2007-06-17 19:56:38 -05008716void
8717lpfc_fabric_block_timeout(unsigned long ptr)
8718{
8719 struct lpfc_hba *phba = (struct lpfc_hba *) ptr;
8720 unsigned long iflags;
8721 uint32_t tmo_posted;
James Smart5e9d9b82008-06-14 22:52:53 -04008722
James Smart92d7f7b2007-06-17 19:56:38 -05008723 spin_lock_irqsave(&phba->pport->work_port_lock, iflags);
8724 tmo_posted = phba->pport->work_port_events & WORKER_FABRIC_BLOCK_TMO;
8725 if (!tmo_posted)
8726 phba->pport->work_port_events |= WORKER_FABRIC_BLOCK_TMO;
8727 spin_unlock_irqrestore(&phba->pport->work_port_lock, iflags);
8728
James Smart5e9d9b82008-06-14 22:52:53 -04008729 if (!tmo_posted)
8730 lpfc_worker_wake_up(phba);
8731 return;
James Smart92d7f7b2007-06-17 19:56:38 -05008732}
8733
James Smarte59058c2008-08-24 21:49:00 -04008734/**
James Smart3621a712009-04-06 18:47:14 -04008735 * lpfc_resume_fabric_iocbs - Issue a fabric iocb from driver internal list
James Smarte59058c2008-08-24 21:49:00 -04008736 * @phba: pointer to lpfc hba data structure.
8737 *
8738 * This routine issues one fabric iocb from the driver internal list to
8739 * the HBA. It first checks whether it's ready to issue one fabric iocb to
8740 * the HBA (whether there is no outstanding fabric iocb). If so, it shall
8741 * remove one pending fabric iocb from the driver internal list and invokes
8742 * lpfc_sli_issue_iocb() routine to send the fabric iocb to the HBA.
8743 **/
James Smart92d7f7b2007-06-17 19:56:38 -05008744static void
8745lpfc_resume_fabric_iocbs(struct lpfc_hba *phba)
8746{
8747 struct lpfc_iocbq *iocb;
8748 unsigned long iflags;
8749 int ret;
James Smart92d7f7b2007-06-17 19:56:38 -05008750 IOCB_t *cmd;
8751
8752repeat:
8753 iocb = NULL;
8754 spin_lock_irqsave(&phba->hbalock, iflags);
James Smart7f5f3d02008-02-08 18:50:14 -05008755 /* Post any pending iocb to the SLI layer */
James Smart92d7f7b2007-06-17 19:56:38 -05008756 if (atomic_read(&phba->fabric_iocb_count) == 0) {
8757 list_remove_head(&phba->fabric_iocb_list, iocb, typeof(*iocb),
8758 list);
8759 if (iocb)
James Smart7f5f3d02008-02-08 18:50:14 -05008760 /* Increment fabric iocb count to hold the position */
James Smart92d7f7b2007-06-17 19:56:38 -05008761 atomic_inc(&phba->fabric_iocb_count);
8762 }
8763 spin_unlock_irqrestore(&phba->hbalock, iflags);
8764 if (iocb) {
8765 iocb->fabric_iocb_cmpl = iocb->iocb_cmpl;
8766 iocb->iocb_cmpl = lpfc_cmpl_fabric_iocb;
8767 iocb->iocb_flag |= LPFC_IO_FABRIC;
8768
James Smart858c9f62007-06-17 19:56:39 -05008769 lpfc_debugfs_disc_trc(iocb->vport, LPFC_DISC_TRC_ELS_CMD,
8770 "Fabric sched1: ste:x%x",
8771 iocb->vport->port_state, 0, 0);
8772
James Smart3772a992009-05-22 14:50:54 -04008773 ret = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, iocb, 0);
James Smart92d7f7b2007-06-17 19:56:38 -05008774
8775 if (ret == IOCB_ERROR) {
8776 iocb->iocb_cmpl = iocb->fabric_iocb_cmpl;
8777 iocb->fabric_iocb_cmpl = NULL;
8778 iocb->iocb_flag &= ~LPFC_IO_FABRIC;
8779 cmd = &iocb->iocb;
8780 cmd->ulpStatus = IOSTAT_LOCAL_REJECT;
8781 cmd->un.ulpWord[4] = IOERR_SLI_ABORTED;
8782 iocb->iocb_cmpl(phba, iocb, iocb);
8783
8784 atomic_dec(&phba->fabric_iocb_count);
8785 goto repeat;
8786 }
8787 }
8788
8789 return;
8790}
8791
James Smarte59058c2008-08-24 21:49:00 -04008792/**
James Smart3621a712009-04-06 18:47:14 -04008793 * lpfc_unblock_fabric_iocbs - Unblock issuing fabric iocb command
James Smarte59058c2008-08-24 21:49:00 -04008794 * @phba: pointer to lpfc hba data structure.
8795 *
8796 * This routine unblocks the issuing fabric iocb command. The function
8797 * will clear the fabric iocb block bit and then invoke the routine
8798 * lpfc_resume_fabric_iocbs() to issue one of the pending fabric iocb
8799 * from the driver internal fabric iocb list.
8800 **/
James Smart92d7f7b2007-06-17 19:56:38 -05008801void
8802lpfc_unblock_fabric_iocbs(struct lpfc_hba *phba)
8803{
8804 clear_bit(FABRIC_COMANDS_BLOCKED, &phba->bit_flags);
8805
8806 lpfc_resume_fabric_iocbs(phba);
8807 return;
8808}
8809
James Smarte59058c2008-08-24 21:49:00 -04008810/**
James Smart3621a712009-04-06 18:47:14 -04008811 * lpfc_block_fabric_iocbs - Block issuing fabric iocb command
James Smarte59058c2008-08-24 21:49:00 -04008812 * @phba: pointer to lpfc hba data structure.
8813 *
8814 * This routine blocks the issuing fabric iocb for a specified amount of
8815 * time (currently 100 ms). This is done by set the fabric iocb block bit
8816 * and set up a timeout timer for 100ms. When the block bit is set, no more
8817 * fabric iocb will be issued out of the HBA.
8818 **/
James Smart92d7f7b2007-06-17 19:56:38 -05008819static void
8820lpfc_block_fabric_iocbs(struct lpfc_hba *phba)
8821{
8822 int blocked;
8823
8824 blocked = test_and_set_bit(FABRIC_COMANDS_BLOCKED, &phba->bit_flags);
James Smart7f5f3d02008-02-08 18:50:14 -05008825 /* Start a timer to unblock fabric iocbs after 100ms */
James Smart92d7f7b2007-06-17 19:56:38 -05008826 if (!blocked)
James Smart256ec0d2013-04-17 20:14:58 -04008827 mod_timer(&phba->fabric_block_timer,
8828 jiffies + msecs_to_jiffies(100));
James Smart92d7f7b2007-06-17 19:56:38 -05008829
8830 return;
8831}
8832
James Smarte59058c2008-08-24 21:49:00 -04008833/**
James Smart3621a712009-04-06 18:47:14 -04008834 * lpfc_cmpl_fabric_iocb - Completion callback function for fabric iocb
James Smarte59058c2008-08-24 21:49:00 -04008835 * @phba: pointer to lpfc hba data structure.
8836 * @cmdiocb: pointer to lpfc command iocb data structure.
8837 * @rspiocb: pointer to lpfc response iocb data structure.
8838 *
8839 * This routine is the callback function that is put to the fabric iocb's
8840 * callback function pointer (iocb->iocb_cmpl). The original iocb's callback
8841 * function pointer has been stored in iocb->fabric_iocb_cmpl. This callback
8842 * function first restores and invokes the original iocb's callback function
8843 * and then invokes the lpfc_resume_fabric_iocbs() routine to issue the next
8844 * fabric bound iocb from the driver internal fabric iocb list onto the wire.
8845 **/
James Smart92d7f7b2007-06-17 19:56:38 -05008846static void
8847lpfc_cmpl_fabric_iocb(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
8848 struct lpfc_iocbq *rspiocb)
8849{
8850 struct ls_rjt stat;
8851
8852 if ((cmdiocb->iocb_flag & LPFC_IO_FABRIC) != LPFC_IO_FABRIC)
8853 BUG();
8854
8855 switch (rspiocb->iocb.ulpStatus) {
8856 case IOSTAT_NPORT_RJT:
8857 case IOSTAT_FABRIC_RJT:
8858 if (rspiocb->iocb.un.ulpWord[4] & RJT_UNAVAIL_TEMP) {
8859 lpfc_block_fabric_iocbs(phba);
8860 }
8861 break;
8862
8863 case IOSTAT_NPORT_BSY:
8864 case IOSTAT_FABRIC_BSY:
8865 lpfc_block_fabric_iocbs(phba);
8866 break;
8867
8868 case IOSTAT_LS_RJT:
8869 stat.un.lsRjtError =
8870 be32_to_cpu(rspiocb->iocb.un.ulpWord[4]);
8871 if ((stat.un.b.lsRjtRsnCode == LSRJT_UNABLE_TPC) ||
8872 (stat.un.b.lsRjtRsnCode == LSRJT_LOGICAL_BSY))
8873 lpfc_block_fabric_iocbs(phba);
8874 break;
8875 }
8876
8877 if (atomic_read(&phba->fabric_iocb_count) == 0)
8878 BUG();
8879
8880 cmdiocb->iocb_cmpl = cmdiocb->fabric_iocb_cmpl;
8881 cmdiocb->fabric_iocb_cmpl = NULL;
8882 cmdiocb->iocb_flag &= ~LPFC_IO_FABRIC;
8883 cmdiocb->iocb_cmpl(phba, cmdiocb, rspiocb);
8884
8885 atomic_dec(&phba->fabric_iocb_count);
8886 if (!test_bit(FABRIC_COMANDS_BLOCKED, &phba->bit_flags)) {
James Smart7f5f3d02008-02-08 18:50:14 -05008887 /* Post any pending iocbs to HBA */
8888 lpfc_resume_fabric_iocbs(phba);
James Smart92d7f7b2007-06-17 19:56:38 -05008889 }
8890}
8891
James Smarte59058c2008-08-24 21:49:00 -04008892/**
James Smart3621a712009-04-06 18:47:14 -04008893 * lpfc_issue_fabric_iocb - Issue a fabric iocb command
James Smarte59058c2008-08-24 21:49:00 -04008894 * @phba: pointer to lpfc hba data structure.
8895 * @iocb: pointer to lpfc command iocb data structure.
8896 *
8897 * This routine is used as the top-level API for issuing a fabric iocb command
8898 * such as FLOGI and FDISC. To accommodate certain switch fabric, this driver
8899 * function makes sure that only one fabric bound iocb will be outstanding at
8900 * any given time. As such, this function will first check to see whether there
8901 * is already an outstanding fabric iocb on the wire. If so, it will put the
8902 * newly issued iocb onto the driver internal fabric iocb list, waiting to be
8903 * issued later. Otherwise, it will issue the iocb on the wire and update the
8904 * fabric iocb count it indicate that there is one fabric iocb on the wire.
8905 *
8906 * Note, this implementation has a potential sending out fabric IOCBs out of
8907 * order. The problem is caused by the construction of the "ready" boolen does
8908 * not include the condition that the internal fabric IOCB list is empty. As
8909 * such, it is possible a fabric IOCB issued by this routine might be "jump"
8910 * ahead of the fabric IOCBs in the internal list.
8911 *
8912 * Return code
8913 * IOCB_SUCCESS - either fabric iocb put on the list or issued successfully
8914 * IOCB_ERROR - failed to issue fabric iocb
8915 **/
Adrian Bunka6ababd2007-11-05 18:07:33 +01008916static int
James Smart92d7f7b2007-06-17 19:56:38 -05008917lpfc_issue_fabric_iocb(struct lpfc_hba *phba, struct lpfc_iocbq *iocb)
8918{
8919 unsigned long iflags;
James Smart92d7f7b2007-06-17 19:56:38 -05008920 int ready;
8921 int ret;
8922
8923 if (atomic_read(&phba->fabric_iocb_count) > 1)
8924 BUG();
8925
8926 spin_lock_irqsave(&phba->hbalock, iflags);
8927 ready = atomic_read(&phba->fabric_iocb_count) == 0 &&
8928 !test_bit(FABRIC_COMANDS_BLOCKED, &phba->bit_flags);
8929
James Smart7f5f3d02008-02-08 18:50:14 -05008930 if (ready)
8931 /* Increment fabric iocb count to hold the position */
8932 atomic_inc(&phba->fabric_iocb_count);
James Smart92d7f7b2007-06-17 19:56:38 -05008933 spin_unlock_irqrestore(&phba->hbalock, iflags);
8934 if (ready) {
8935 iocb->fabric_iocb_cmpl = iocb->iocb_cmpl;
8936 iocb->iocb_cmpl = lpfc_cmpl_fabric_iocb;
8937 iocb->iocb_flag |= LPFC_IO_FABRIC;
8938
James Smart858c9f62007-06-17 19:56:39 -05008939 lpfc_debugfs_disc_trc(iocb->vport, LPFC_DISC_TRC_ELS_CMD,
8940 "Fabric sched2: ste:x%x",
8941 iocb->vport->port_state, 0, 0);
8942
James Smart3772a992009-05-22 14:50:54 -04008943 ret = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, iocb, 0);
James Smart92d7f7b2007-06-17 19:56:38 -05008944
8945 if (ret == IOCB_ERROR) {
8946 iocb->iocb_cmpl = iocb->fabric_iocb_cmpl;
8947 iocb->fabric_iocb_cmpl = NULL;
8948 iocb->iocb_flag &= ~LPFC_IO_FABRIC;
8949 atomic_dec(&phba->fabric_iocb_count);
8950 }
8951 } else {
8952 spin_lock_irqsave(&phba->hbalock, iflags);
8953 list_add_tail(&iocb->list, &phba->fabric_iocb_list);
8954 spin_unlock_irqrestore(&phba->hbalock, iflags);
8955 ret = IOCB_SUCCESS;
8956 }
8957 return ret;
8958}
8959
James Smarte59058c2008-08-24 21:49:00 -04008960/**
James Smart3621a712009-04-06 18:47:14 -04008961 * lpfc_fabric_abort_vport - Abort a vport's iocbs from driver fabric iocb list
James Smarte59058c2008-08-24 21:49:00 -04008962 * @vport: pointer to a virtual N_Port data structure.
8963 *
8964 * This routine aborts all the IOCBs associated with a @vport from the
8965 * driver internal fabric IOCB list. The list contains fabric IOCBs to be
8966 * issued to the ELS IOCB ring. This abort function walks the fabric IOCB
8967 * list, removes each IOCB associated with the @vport off the list, set the
8968 * status feild to IOSTAT_LOCAL_REJECT, and invokes the callback function
8969 * associated with the IOCB.
8970 **/
Adrian Bunka6ababd2007-11-05 18:07:33 +01008971static void lpfc_fabric_abort_vport(struct lpfc_vport *vport)
James Smart92d7f7b2007-06-17 19:56:38 -05008972{
8973 LIST_HEAD(completions);
8974 struct lpfc_hba *phba = vport->phba;
8975 struct lpfc_iocbq *tmp_iocb, *piocb;
James Smart92d7f7b2007-06-17 19:56:38 -05008976
8977 spin_lock_irq(&phba->hbalock);
8978 list_for_each_entry_safe(piocb, tmp_iocb, &phba->fabric_iocb_list,
8979 list) {
8980
8981 if (piocb->vport != vport)
8982 continue;
8983
8984 list_move_tail(&piocb->list, &completions);
8985 }
8986 spin_unlock_irq(&phba->hbalock);
8987
James Smarta257bf92009-04-06 18:48:10 -04008988 /* Cancel all the IOCBs from the completions list */
8989 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
8990 IOERR_SLI_ABORTED);
James Smart92d7f7b2007-06-17 19:56:38 -05008991}
8992
James Smarte59058c2008-08-24 21:49:00 -04008993/**
James Smart3621a712009-04-06 18:47:14 -04008994 * lpfc_fabric_abort_nport - Abort a ndlp's iocbs from driver fabric iocb list
James Smarte59058c2008-08-24 21:49:00 -04008995 * @ndlp: pointer to a node-list data structure.
8996 *
8997 * This routine aborts all the IOCBs associated with an @ndlp from the
8998 * driver internal fabric IOCB list. The list contains fabric IOCBs to be
8999 * issued to the ELS IOCB ring. This abort function walks the fabric IOCB
9000 * list, removes each IOCB associated with the @ndlp off the list, set the
9001 * status feild to IOSTAT_LOCAL_REJECT, and invokes the callback function
9002 * associated with the IOCB.
9003 **/
James Smart92d7f7b2007-06-17 19:56:38 -05009004void lpfc_fabric_abort_nport(struct lpfc_nodelist *ndlp)
9005{
9006 LIST_HEAD(completions);
James Smarta257bf92009-04-06 18:48:10 -04009007 struct lpfc_hba *phba = ndlp->phba;
James Smart92d7f7b2007-06-17 19:56:38 -05009008 struct lpfc_iocbq *tmp_iocb, *piocb;
9009 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
James Smart92d7f7b2007-06-17 19:56:38 -05009010
9011 spin_lock_irq(&phba->hbalock);
9012 list_for_each_entry_safe(piocb, tmp_iocb, &phba->fabric_iocb_list,
9013 list) {
9014 if ((lpfc_check_sli_ndlp(phba, pring, piocb, ndlp))) {
9015
9016 list_move_tail(&piocb->list, &completions);
9017 }
9018 }
9019 spin_unlock_irq(&phba->hbalock);
9020
James Smarta257bf92009-04-06 18:48:10 -04009021 /* Cancel all the IOCBs from the completions list */
9022 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
9023 IOERR_SLI_ABORTED);
James Smart92d7f7b2007-06-17 19:56:38 -05009024}
9025
James Smarte59058c2008-08-24 21:49:00 -04009026/**
James Smart3621a712009-04-06 18:47:14 -04009027 * lpfc_fabric_abort_hba - Abort all iocbs on driver fabric iocb list
James Smarte59058c2008-08-24 21:49:00 -04009028 * @phba: pointer to lpfc hba data structure.
9029 *
9030 * This routine aborts all the IOCBs currently on the driver internal
9031 * fabric IOCB list. The list contains fabric IOCBs to be issued to the ELS
9032 * IOCB ring. This function takes the entire IOCB list off the fabric IOCB
9033 * list, removes IOCBs off the list, set the status feild to
9034 * IOSTAT_LOCAL_REJECT, and invokes the callback function associated with
9035 * the IOCB.
9036 **/
James Smart92d7f7b2007-06-17 19:56:38 -05009037void lpfc_fabric_abort_hba(struct lpfc_hba *phba)
9038{
9039 LIST_HEAD(completions);
James Smart92d7f7b2007-06-17 19:56:38 -05009040
9041 spin_lock_irq(&phba->hbalock);
9042 list_splice_init(&phba->fabric_iocb_list, &completions);
9043 spin_unlock_irq(&phba->hbalock);
9044
James Smarta257bf92009-04-06 18:48:10 -04009045 /* Cancel all the IOCBs from the completions list */
9046 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
9047 IOERR_SLI_ABORTED);
James Smart92d7f7b2007-06-17 19:56:38 -05009048}
James Smart6fb120a2009-05-22 14:52:59 -04009049
9050/**
James Smart1151e3e2011-02-16 12:39:35 -05009051 * lpfc_sli4_vport_delete_els_xri_aborted -Remove all ndlp references for vport
9052 * @vport: pointer to lpfc vport data structure.
9053 *
9054 * This routine is invoked by the vport cleanup for deletions and the cleanup
9055 * for an ndlp on removal.
9056 **/
9057void
9058lpfc_sli4_vport_delete_els_xri_aborted(struct lpfc_vport *vport)
9059{
9060 struct lpfc_hba *phba = vport->phba;
9061 struct lpfc_sglq *sglq_entry = NULL, *sglq_next = NULL;
9062 unsigned long iflag = 0;
9063
9064 spin_lock_irqsave(&phba->hbalock, iflag);
9065 spin_lock(&phba->sli4_hba.abts_sgl_list_lock);
9066 list_for_each_entry_safe(sglq_entry, sglq_next,
9067 &phba->sli4_hba.lpfc_abts_els_sgl_list, list) {
9068 if (sglq_entry->ndlp && sglq_entry->ndlp->vport == vport)
9069 sglq_entry->ndlp = NULL;
9070 }
9071 spin_unlock(&phba->sli4_hba.abts_sgl_list_lock);
9072 spin_unlock_irqrestore(&phba->hbalock, iflag);
9073 return;
9074}
9075
9076/**
James Smart6fb120a2009-05-22 14:52:59 -04009077 * lpfc_sli4_els_xri_aborted - Slow-path process of els xri abort
9078 * @phba: pointer to lpfc hba data structure.
9079 * @axri: pointer to the els xri abort wcqe structure.
9080 *
9081 * This routine is invoked by the worker thread to process a SLI4 slow-path
9082 * ELS aborted xri.
9083 **/
9084void
9085lpfc_sli4_els_xri_aborted(struct lpfc_hba *phba,
9086 struct sli4_wcqe_xri_aborted *axri)
9087{
9088 uint16_t xri = bf_get(lpfc_wcqe_xa_xri, axri);
James Smart19ca7602010-11-20 23:11:55 -05009089 uint16_t rxid = bf_get(lpfc_wcqe_xa_remote_xid, axri);
James Smart7851fe22011-07-22 18:36:52 -04009090 uint16_t lxri = 0;
James Smart19ca7602010-11-20 23:11:55 -05009091
James Smart6fb120a2009-05-22 14:52:59 -04009092 struct lpfc_sglq *sglq_entry = NULL, *sglq_next = NULL;
9093 unsigned long iflag = 0;
James Smart19ca7602010-11-20 23:11:55 -05009094 struct lpfc_nodelist *ndlp;
James Smart589a52d2010-07-14 15:30:54 -04009095 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
James Smart6fb120a2009-05-22 14:52:59 -04009096
James Smart0f65ff62010-02-26 14:14:23 -05009097 spin_lock_irqsave(&phba->hbalock, iflag);
9098 spin_lock(&phba->sli4_hba.abts_sgl_list_lock);
James Smart6fb120a2009-05-22 14:52:59 -04009099 list_for_each_entry_safe(sglq_entry, sglq_next,
9100 &phba->sli4_hba.lpfc_abts_els_sgl_list, list) {
9101 if (sglq_entry->sli4_xritag == xri) {
9102 list_del(&sglq_entry->list);
James Smart19ca7602010-11-20 23:11:55 -05009103 ndlp = sglq_entry->ndlp;
9104 sglq_entry->ndlp = NULL;
James Smartdafe8ce2014-09-03 12:56:40 -04009105 spin_lock(&pring->ring_lock);
James Smart6fb120a2009-05-22 14:52:59 -04009106 list_add_tail(&sglq_entry->list,
9107 &phba->sli4_hba.lpfc_sgl_list);
James Smart0f65ff62010-02-26 14:14:23 -05009108 sglq_entry->state = SGL_FREED;
James Smartdafe8ce2014-09-03 12:56:40 -04009109 spin_unlock(&pring->ring_lock);
James Smart0f65ff62010-02-26 14:14:23 -05009110 spin_unlock(&phba->sli4_hba.abts_sgl_list_lock);
James Smart6fb120a2009-05-22 14:52:59 -04009111 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smartee0f4fe2012-05-09 21:19:14 -04009112 lpfc_set_rrq_active(phba, ndlp,
9113 sglq_entry->sli4_lxritag,
9114 rxid, 1);
James Smart589a52d2010-07-14 15:30:54 -04009115
9116 /* Check if TXQ queue needs to be serviced */
James Smart0e9bb8d2013-03-01 16:35:12 -05009117 if (!(list_empty(&pring->txq)))
James Smart589a52d2010-07-14 15:30:54 -04009118 lpfc_worker_wake_up(phba);
James Smart6fb120a2009-05-22 14:52:59 -04009119 return;
9120 }
9121 }
James Smart0f65ff62010-02-26 14:14:23 -05009122 spin_unlock(&phba->sli4_hba.abts_sgl_list_lock);
James Smart7851fe22011-07-22 18:36:52 -04009123 lxri = lpfc_sli4_xri_inrange(phba, xri);
9124 if (lxri == NO_XRI) {
9125 spin_unlock_irqrestore(&phba->hbalock, iflag);
9126 return;
9127 }
James Smartdafe8ce2014-09-03 12:56:40 -04009128 spin_lock(&pring->ring_lock);
James Smart7851fe22011-07-22 18:36:52 -04009129 sglq_entry = __lpfc_get_active_sglq(phba, lxri);
James Smart0f65ff62010-02-26 14:14:23 -05009130 if (!sglq_entry || (sglq_entry->sli4_xritag != xri)) {
James Smartdafe8ce2014-09-03 12:56:40 -04009131 spin_unlock(&pring->ring_lock);
James Smart0f65ff62010-02-26 14:14:23 -05009132 spin_unlock_irqrestore(&phba->hbalock, iflag);
9133 return;
9134 }
9135 sglq_entry->state = SGL_XRI_ABORTED;
James Smartdafe8ce2014-09-03 12:56:40 -04009136 spin_unlock(&pring->ring_lock);
James Smart0f65ff62010-02-26 14:14:23 -05009137 spin_unlock_irqrestore(&phba->hbalock, iflag);
9138 return;
James Smart6fb120a2009-05-22 14:52:59 -04009139}
James Smart086a3452012-08-14 14:25:21 -04009140
9141/* lpfc_sli_abts_recover_port - Recover a port that failed a BLS_ABORT req.
9142 * @vport: pointer to virtual port object.
9143 * @ndlp: nodelist pointer for the impacted node.
9144 *
9145 * The driver calls this routine in response to an SLI4 XRI ABORT CQE
9146 * or an SLI3 ASYNC_STATUS_CN event from the port. For either event,
9147 * the driver is required to send a LOGO to the remote node before it
9148 * attempts to recover its login to the remote node.
9149 */
9150void
9151lpfc_sli_abts_recover_port(struct lpfc_vport *vport,
9152 struct lpfc_nodelist *ndlp)
9153{
9154 struct Scsi_Host *shost;
9155 struct lpfc_hba *phba;
9156 unsigned long flags = 0;
9157
9158 shost = lpfc_shost_from_vport(vport);
9159 phba = vport->phba;
9160 if (ndlp->nlp_state != NLP_STE_MAPPED_NODE) {
9161 lpfc_printf_log(phba, KERN_INFO,
9162 LOG_SLI, "3093 No rport recovery needed. "
9163 "rport in state 0x%x\n", ndlp->nlp_state);
9164 return;
9165 }
9166 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
9167 "3094 Start rport recovery on shost id 0x%x "
9168 "fc_id 0x%06x vpi 0x%x rpi 0x%x state 0x%x "
9169 "flags 0x%x\n",
9170 shost->host_no, ndlp->nlp_DID,
9171 vport->vpi, ndlp->nlp_rpi, ndlp->nlp_state,
9172 ndlp->nlp_flag);
9173 /*
9174 * The rport is not responding. Remove the FCP-2 flag to prevent
9175 * an ADISC in the follow-up recovery code.
9176 */
9177 spin_lock_irqsave(shost->host_lock, flags);
9178 ndlp->nlp_fcp_info &= ~NLP_FCP_2_DEVICE;
9179 spin_unlock_irqrestore(shost->host_lock, flags);
9180 lpfc_issue_els_logo(vport, ndlp, 0);
9181 lpfc_nlp_set_state(vport, ndlp, NLP_STE_LOGO_ISSUE);
9182}
9183