blob: 3407b39e0a3f82bfaf8239864ea1b764b2b386d6 [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 Smartd4379ac2012-03-01 22:37:07 -05004 * Copyright (C) 2004-2012 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 Smartda0436e2009-05-22 14:51:39 -040032#include "lpfc_hw4.h"
dea31012005-04-17 16:05:31 -050033#include "lpfc_hw.h"
34#include "lpfc_sli.h"
James Smartda0436e2009-05-22 14:51:39 -040035#include "lpfc_sli4.h"
James Smartea2151b2008-09-07 11:52:10 -040036#include "lpfc_nl.h"
dea31012005-04-17 16:05:31 -050037#include "lpfc_disc.h"
38#include "lpfc_scsi.h"
39#include "lpfc.h"
40#include "lpfc_logmsg.h"
41#include "lpfc_crtn.h"
James Smart92d7f7b2007-06-17 19:56:38 -050042#include "lpfc_vport.h"
James Smart858c9f62007-06-17 19:56:39 -050043#include "lpfc_debugfs.h"
dea31012005-04-17 16:05:31 -050044
45static int lpfc_els_retry(struct lpfc_hba *, struct lpfc_iocbq *,
46 struct lpfc_iocbq *);
James Smart92d7f7b2007-06-17 19:56:38 -050047static void lpfc_cmpl_fabric_iocb(struct lpfc_hba *, struct lpfc_iocbq *,
48 struct lpfc_iocbq *);
Adrian Bunka6ababd2007-11-05 18:07:33 +010049static void lpfc_fabric_abort_vport(struct lpfc_vport *vport);
50static int lpfc_issue_els_fdisc(struct lpfc_vport *vport,
51 struct lpfc_nodelist *ndlp, uint8_t retry);
52static int lpfc_issue_fabric_iocb(struct lpfc_hba *phba,
53 struct lpfc_iocbq *iocb);
James Smart92d7f7b2007-06-17 19:56:38 -050054
dea31012005-04-17 16:05:31 -050055static int lpfc_max_els_tries = 3;
56
James Smarte59058c2008-08-24 21:49:00 -040057/**
James Smart3621a712009-04-06 18:47:14 -040058 * lpfc_els_chk_latt - Check host link attention event for a vport
James Smarte59058c2008-08-24 21:49:00 -040059 * @vport: pointer to a host virtual N_Port data structure.
60 *
61 * This routine checks whether there is an outstanding host link
62 * attention event during the discovery process with the @vport. It is done
63 * by reading the HBA's Host Attention (HA) register. If there is any host
64 * link attention events during this @vport's discovery process, the @vport
65 * shall be marked as FC_ABORT_DISCOVERY, a host link attention clear shall
66 * be issued if the link state is not already in host link cleared state,
67 * and a return code shall indicate whether the host link attention event
68 * had happened.
69 *
70 * Note that, if either the host link is in state LPFC_LINK_DOWN or @vport
71 * state in LPFC_VPORT_READY, the request for checking host link attention
72 * event will be ignored and a return code shall indicate no host link
73 * attention event had happened.
74 *
75 * Return codes
76 * 0 - no host link attention event happened
77 * 1 - host link attention event happened
78 **/
James Smart858c9f62007-06-17 19:56:39 -050079int
James Smart2e0fef82007-06-17 19:56:36 -050080lpfc_els_chk_latt(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -050081{
James Smart2e0fef82007-06-17 19:56:36 -050082 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
83 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -050084 uint32_t ha_copy;
dea31012005-04-17 16:05:31 -050085
James Smart2e0fef82007-06-17 19:56:36 -050086 if (vport->port_state >= LPFC_VPORT_READY ||
James Smart3772a992009-05-22 14:50:54 -040087 phba->link_state == LPFC_LINK_DOWN ||
88 phba->sli_rev > LPFC_SLI_REV3)
dea31012005-04-17 16:05:31 -050089 return 0;
90
91 /* Read the HBA Host Attention Register */
James Smart9940b972011-03-11 16:06:12 -050092 if (lpfc_readl(phba->HAregaddr, &ha_copy))
93 return 1;
dea31012005-04-17 16:05:31 -050094
95 if (!(ha_copy & HA_LATT))
96 return 0;
97
98 /* Pending Link Event during Discovery */
James Smarte8b62012007-08-02 11:10:09 -040099 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
100 "0237 Pending Link Event during "
101 "Discovery: State x%x\n",
102 phba->pport->port_state);
dea31012005-04-17 16:05:31 -0500103
104 /* CLEAR_LA should re-enable link attention events and
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300105 * we should then immediately take a LATT event. The
dea31012005-04-17 16:05:31 -0500106 * LATT processing should call lpfc_linkdown() which
107 * will cleanup any left over in-progress discovery
108 * events.
109 */
James Smart2e0fef82007-06-17 19:56:36 -0500110 spin_lock_irq(shost->host_lock);
111 vport->fc_flag |= FC_ABORT_DISCOVERY;
112 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500113
James Smart92d7f7b2007-06-17 19:56:38 -0500114 if (phba->link_state != LPFC_CLEAR_LA)
James Smarted957682007-06-17 19:56:37 -0500115 lpfc_issue_clear_la(phba, vport);
dea31012005-04-17 16:05:31 -0500116
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500117 return 1;
dea31012005-04-17 16:05:31 -0500118}
119
James Smarte59058c2008-08-24 21:49:00 -0400120/**
James Smart3621a712009-04-06 18:47:14 -0400121 * lpfc_prep_els_iocb - Allocate and prepare a lpfc iocb data structure
James Smarte59058c2008-08-24 21:49:00 -0400122 * @vport: pointer to a host virtual N_Port data structure.
123 * @expectRsp: flag indicating whether response is expected.
124 * @cmdSize: size of the ELS command.
125 * @retry: number of retries to the command IOCB when it fails.
126 * @ndlp: pointer to a node-list data structure.
127 * @did: destination identifier.
128 * @elscmd: the ELS command code.
129 *
130 * This routine is used for allocating a lpfc-IOCB data structure from
131 * the driver lpfc-IOCB free-list and prepare the IOCB with the parameters
132 * passed into the routine for discovery state machine to issue an Extended
133 * Link Service (ELS) commands. It is a generic lpfc-IOCB allocation
134 * and preparation routine that is used by all the discovery state machine
135 * routines and the ELS command-specific fields will be later set up by
136 * the individual discovery machine routines after calling this routine
137 * allocating and preparing a generic IOCB data structure. It fills in the
138 * Buffer Descriptor Entries (BDEs), allocates buffers for both command
139 * payload and response payload (if expected). The reference count on the
140 * ndlp is incremented by 1 and the reference to the ndlp is put into
141 * context1 of the IOCB data structure for this IOCB to hold the ndlp
142 * reference for the command's callback function to access later.
143 *
144 * Return code
145 * Pointer to the newly allocated/prepared els iocb data structure
146 * NULL - when els iocb data structure allocation/preparation failed
147 **/
James Smartf1c3b0f2009-07-19 10:01:32 -0400148struct lpfc_iocbq *
James Smart2e0fef82007-06-17 19:56:36 -0500149lpfc_prep_els_iocb(struct lpfc_vport *vport, uint8_t expectRsp,
150 uint16_t cmdSize, uint8_t retry,
151 struct lpfc_nodelist *ndlp, uint32_t did,
152 uint32_t elscmd)
dea31012005-04-17 16:05:31 -0500153{
James Smart2e0fef82007-06-17 19:56:36 -0500154 struct lpfc_hba *phba = vport->phba;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -0400155 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -0500156 struct lpfc_dmabuf *pcmd, *prsp, *pbuflist;
157 struct ulp_bde64 *bpl;
158 IOCB_t *icmd;
159
dea31012005-04-17 16:05:31 -0500160
James Smart2e0fef82007-06-17 19:56:36 -0500161 if (!lpfc_is_link_up(phba))
162 return NULL;
dea31012005-04-17 16:05:31 -0500163
dea31012005-04-17 16:05:31 -0500164 /* Allocate buffer for command iocb */
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -0400165 elsiocb = lpfc_sli_get_iocbq(phba);
dea31012005-04-17 16:05:31 -0500166
167 if (elsiocb == NULL)
168 return NULL;
James Smarte47c9092008-02-08 18:49:26 -0500169
James Smart0c287582009-06-10 17:22:56 -0400170 /*
171 * If this command is for fabric controller and HBA running
172 * in FIP mode send FLOGI, FDISC and LOGO as FIP frames.
173 */
174 if ((did == Fabric_DID) &&
James Smart45ed1192009-10-02 15:17:02 -0400175 (phba->hba_flag & HBA_FIP_SUPPORT) &&
James Smart0c287582009-06-10 17:22:56 -0400176 ((elscmd == ELS_CMD_FLOGI) ||
177 (elscmd == ELS_CMD_FDISC) ||
178 (elscmd == ELS_CMD_LOGO)))
James Smartc8685952009-11-18 15:39:16 -0500179 switch (elscmd) {
180 case ELS_CMD_FLOGI:
James Smartf0d9bcc2010-10-22 11:07:09 -0400181 elsiocb->iocb_flag |=
182 ((LPFC_ELS_ID_FLOGI << LPFC_FIP_ELS_ID_SHIFT)
James Smartc8685952009-11-18 15:39:16 -0500183 & LPFC_FIP_ELS_ID_MASK);
184 break;
185 case ELS_CMD_FDISC:
James Smartf0d9bcc2010-10-22 11:07:09 -0400186 elsiocb->iocb_flag |=
187 ((LPFC_ELS_ID_FDISC << LPFC_FIP_ELS_ID_SHIFT)
James Smartc8685952009-11-18 15:39:16 -0500188 & LPFC_FIP_ELS_ID_MASK);
189 break;
190 case ELS_CMD_LOGO:
James Smartf0d9bcc2010-10-22 11:07:09 -0400191 elsiocb->iocb_flag |=
192 ((LPFC_ELS_ID_LOGO << LPFC_FIP_ELS_ID_SHIFT)
James Smartc8685952009-11-18 15:39:16 -0500193 & LPFC_FIP_ELS_ID_MASK);
194 break;
195 }
James Smart0c287582009-06-10 17:22:56 -0400196 else
James Smartc8685952009-11-18 15:39:16 -0500197 elsiocb->iocb_flag &= ~LPFC_FIP_ELS_ID_MASK;
James Smart0c287582009-06-10 17:22:56 -0400198
dea31012005-04-17 16:05:31 -0500199 icmd = &elsiocb->iocb;
200
201 /* fill in BDEs for command */
202 /* Allocate buffer for command payload */
James Smart98c9ea52007-10-27 13:37:33 -0400203 pcmd = kmalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
204 if (pcmd)
205 pcmd->virt = lpfc_mbuf_alloc(phba, MEM_PRI, &pcmd->phys);
James Smartfa4066b2008-01-11 01:53:27 -0500206 if (!pcmd || !pcmd->virt)
207 goto els_iocb_free_pcmb_exit;
dea31012005-04-17 16:05:31 -0500208
209 INIT_LIST_HEAD(&pcmd->list);
210
211 /* Allocate buffer for response payload */
212 if (expectRsp) {
James Smart92d7f7b2007-06-17 19:56:38 -0500213 prsp = kmalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
dea31012005-04-17 16:05:31 -0500214 if (prsp)
215 prsp->virt = lpfc_mbuf_alloc(phba, MEM_PRI,
216 &prsp->phys);
James Smartfa4066b2008-01-11 01:53:27 -0500217 if (!prsp || !prsp->virt)
218 goto els_iocb_free_prsp_exit;
dea31012005-04-17 16:05:31 -0500219 INIT_LIST_HEAD(&prsp->list);
James Smarte47c9092008-02-08 18:49:26 -0500220 } else
dea31012005-04-17 16:05:31 -0500221 prsp = NULL;
dea31012005-04-17 16:05:31 -0500222
223 /* Allocate buffer for Buffer ptr list */
James Smart92d7f7b2007-06-17 19:56:38 -0500224 pbuflist = kmalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
dea31012005-04-17 16:05:31 -0500225 if (pbuflist)
James Smarted957682007-06-17 19:56:37 -0500226 pbuflist->virt = lpfc_mbuf_alloc(phba, MEM_PRI,
227 &pbuflist->phys);
James Smartfa4066b2008-01-11 01:53:27 -0500228 if (!pbuflist || !pbuflist->virt)
229 goto els_iocb_free_pbuf_exit;
dea31012005-04-17 16:05:31 -0500230
231 INIT_LIST_HEAD(&pbuflist->list);
232
233 icmd->un.elsreq64.bdl.addrHigh = putPaddrHigh(pbuflist->phys);
234 icmd->un.elsreq64.bdl.addrLow = putPaddrLow(pbuflist->phys);
James Smart34b02dc2008-08-24 21:49:55 -0400235 icmd->un.elsreq64.bdl.bdeFlags = BUFF_TYPE_BLP_64;
James Smart2e0fef82007-06-17 19:56:36 -0500236 icmd->un.elsreq64.remoteID = did; /* DID */
dea31012005-04-17 16:05:31 -0500237 if (expectRsp) {
James Smart92d7f7b2007-06-17 19:56:38 -0500238 icmd->un.elsreq64.bdl.bdeSize = (2 * sizeof(struct ulp_bde64));
dea31012005-04-17 16:05:31 -0500239 icmd->ulpCommand = CMD_ELS_REQUEST64_CR;
James Smart2680eea2007-04-25 09:52:55 -0400240 icmd->ulpTimeout = phba->fc_ratov * 2;
dea31012005-04-17 16:05:31 -0500241 } else {
James Smart92d7f7b2007-06-17 19:56:38 -0500242 icmd->un.elsreq64.bdl.bdeSize = sizeof(struct ulp_bde64);
dea31012005-04-17 16:05:31 -0500243 icmd->ulpCommand = CMD_XMIT_ELS_RSP64_CX;
244 }
dea31012005-04-17 16:05:31 -0500245 icmd->ulpBdeCount = 1;
246 icmd->ulpLe = 1;
247 icmd->ulpClass = CLASS3;
248
James Smart92d7f7b2007-06-17 19:56:38 -0500249 if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) {
250 icmd->un.elsreq64.myID = vport->fc_myDID;
251
252 /* For ELS_REQUEST64_CR, use the VPI by default */
James Smart6d368e52011-05-24 11:44:12 -0400253 icmd->ulpContext = phba->vpi_ids[vport->vpi];
James Smart92d7f7b2007-06-17 19:56:38 -0500254 icmd->ulpCt_h = 0;
James Smarteada2722008-12-04 22:39:13 -0500255 /* The CT field must be 0=INVALID_RPI for the ECHO cmd */
256 if (elscmd == ELS_CMD_ECHO)
257 icmd->ulpCt_l = 0; /* context = invalid RPI */
258 else
259 icmd->ulpCt_l = 1; /* context = VPI */
James Smart92d7f7b2007-06-17 19:56:38 -0500260 }
261
dea31012005-04-17 16:05:31 -0500262 bpl = (struct ulp_bde64 *) pbuflist->virt;
263 bpl->addrLow = le32_to_cpu(putPaddrLow(pcmd->phys));
264 bpl->addrHigh = le32_to_cpu(putPaddrHigh(pcmd->phys));
265 bpl->tus.f.bdeSize = cmdSize;
266 bpl->tus.f.bdeFlags = 0;
267 bpl->tus.w = le32_to_cpu(bpl->tus.w);
268
269 if (expectRsp) {
270 bpl++;
271 bpl->addrLow = le32_to_cpu(putPaddrLow(prsp->phys));
272 bpl->addrHigh = le32_to_cpu(putPaddrHigh(prsp->phys));
273 bpl->tus.f.bdeSize = FCELSSIZE;
James Smart34b02dc2008-08-24 21:49:55 -0400274 bpl->tus.f.bdeFlags = BUFF_TYPE_BDE_64;
dea31012005-04-17 16:05:31 -0500275 bpl->tus.w = le32_to_cpu(bpl->tus.w);
276 }
277
James Smartfa4066b2008-01-11 01:53:27 -0500278 /* prevent preparing iocb with NULL ndlp reference */
James Smart51ef4c22007-08-02 11:10:31 -0400279 elsiocb->context1 = lpfc_nlp_get(ndlp);
James Smartfa4066b2008-01-11 01:53:27 -0500280 if (!elsiocb->context1)
281 goto els_iocb_free_pbuf_exit;
James Smart329f9bc2007-04-25 09:53:01 -0400282 elsiocb->context2 = pcmd;
283 elsiocb->context3 = pbuflist;
dea31012005-04-17 16:05:31 -0500284 elsiocb->retry = retry;
James Smart2e0fef82007-06-17 19:56:36 -0500285 elsiocb->vport = vport;
dea31012005-04-17 16:05:31 -0500286 elsiocb->drvrTimeout = (phba->fc_ratov << 1) + LPFC_DRVR_TIMEOUT;
287
288 if (prsp) {
289 list_add(&prsp->list, &pcmd->list);
290 }
dea31012005-04-17 16:05:31 -0500291 if (expectRsp) {
292 /* Xmit ELS command <elsCmd> to remote NPORT <did> */
James Smarte8b62012007-08-02 11:10:09 -0400293 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
294 "0116 Xmit ELS command x%x to remote "
295 "NPORT x%x I/O tag: x%x, port state: x%x\n",
296 elscmd, did, elsiocb->iotag,
297 vport->port_state);
dea31012005-04-17 16:05:31 -0500298 } else {
299 /* Xmit ELS response <elsCmd> to remote NPORT <did> */
James Smarte8b62012007-08-02 11:10:09 -0400300 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
301 "0117 Xmit ELS response x%x to remote "
302 "NPORT x%x I/O tag: x%x, size: x%x\n",
303 elscmd, ndlp->nlp_DID, elsiocb->iotag,
304 cmdSize);
dea31012005-04-17 16:05:31 -0500305 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500306 return elsiocb;
dea31012005-04-17 16:05:31 -0500307
James Smartfa4066b2008-01-11 01:53:27 -0500308els_iocb_free_pbuf_exit:
James Smarteaf15d52008-12-04 22:39:29 -0500309 if (expectRsp)
310 lpfc_mbuf_free(phba, prsp->virt, prsp->phys);
James Smartfa4066b2008-01-11 01:53:27 -0500311 kfree(pbuflist);
312
313els_iocb_free_prsp_exit:
314 lpfc_mbuf_free(phba, pcmd->virt, pcmd->phys);
315 kfree(prsp);
316
317els_iocb_free_pcmb_exit:
318 kfree(pcmd);
319 lpfc_sli_release_iocbq(phba, elsiocb);
320 return NULL;
321}
dea31012005-04-17 16:05:31 -0500322
James Smarte59058c2008-08-24 21:49:00 -0400323/**
James Smart3621a712009-04-06 18:47:14 -0400324 * lpfc_issue_fabric_reglogin - Issue fabric registration login for a vport
James Smarte59058c2008-08-24 21:49:00 -0400325 * @vport: pointer to a host virtual N_Port data structure.
326 *
327 * This routine issues a fabric registration login for a @vport. An
328 * active ndlp node with Fabric_DID must already exist for this @vport.
329 * The routine invokes two mailbox commands to carry out fabric registration
330 * login through the HBA firmware: the first mailbox command requests the
331 * HBA to perform link configuration for the @vport; and the second mailbox
332 * command requests the HBA to perform the actual fabric registration login
333 * with the @vport.
334 *
335 * Return code
336 * 0 - successfully issued fabric registration login for @vport
337 * -ENXIO -- failed to issue fabric registration login for @vport
338 **/
James Smart3772a992009-05-22 14:50:54 -0400339int
James Smart92d7f7b2007-06-17 19:56:38 -0500340lpfc_issue_fabric_reglogin(struct lpfc_vport *vport)
341{
342 struct lpfc_hba *phba = vport->phba;
343 LPFC_MBOXQ_t *mbox;
344 struct lpfc_dmabuf *mp;
345 struct lpfc_nodelist *ndlp;
346 struct serv_parm *sp;
347 int rc;
James Smart98c9ea52007-10-27 13:37:33 -0400348 int err = 0;
James Smart92d7f7b2007-06-17 19:56:38 -0500349
350 sp = &phba->fc_fabparam;
351 ndlp = lpfc_findnode_did(vport, Fabric_DID);
James Smarte47c9092008-02-08 18:49:26 -0500352 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp)) {
James Smart98c9ea52007-10-27 13:37:33 -0400353 err = 1;
James Smart92d7f7b2007-06-17 19:56:38 -0500354 goto fail;
James Smart98c9ea52007-10-27 13:37:33 -0400355 }
James Smart92d7f7b2007-06-17 19:56:38 -0500356
357 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
James Smart98c9ea52007-10-27 13:37:33 -0400358 if (!mbox) {
359 err = 2;
James Smart92d7f7b2007-06-17 19:56:38 -0500360 goto fail;
James Smart98c9ea52007-10-27 13:37:33 -0400361 }
James Smart92d7f7b2007-06-17 19:56:38 -0500362
363 vport->port_state = LPFC_FABRIC_CFG_LINK;
364 lpfc_config_link(phba, mbox);
365 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
366 mbox->vport = vport;
367
James Smart0b727fe2007-10-27 13:37:25 -0400368 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
James Smart98c9ea52007-10-27 13:37:33 -0400369 if (rc == MBX_NOT_FINISHED) {
370 err = 3;
James Smart92d7f7b2007-06-17 19:56:38 -0500371 goto fail_free_mbox;
James Smart98c9ea52007-10-27 13:37:33 -0400372 }
James Smart92d7f7b2007-06-17 19:56:38 -0500373
374 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
James Smart98c9ea52007-10-27 13:37:33 -0400375 if (!mbox) {
376 err = 4;
James Smart92d7f7b2007-06-17 19:56:38 -0500377 goto fail;
James Smart98c9ea52007-10-27 13:37:33 -0400378 }
James Smart40426292010-12-15 17:58:10 -0500379 rc = lpfc_reg_rpi(phba, vport->vpi, Fabric_DID, (uint8_t *)sp, mbox,
380 ndlp->nlp_rpi);
James Smart98c9ea52007-10-27 13:37:33 -0400381 if (rc) {
382 err = 5;
James Smart92d7f7b2007-06-17 19:56:38 -0500383 goto fail_free_mbox;
James Smart98c9ea52007-10-27 13:37:33 -0400384 }
James Smart92d7f7b2007-06-17 19:56:38 -0500385
386 mbox->mbox_cmpl = lpfc_mbx_cmpl_fabric_reg_login;
387 mbox->vport = vport;
James Smarte47c9092008-02-08 18:49:26 -0500388 /* increment the reference count on ndlp to hold reference
389 * for the callback routine.
390 */
James Smart92d7f7b2007-06-17 19:56:38 -0500391 mbox->context2 = lpfc_nlp_get(ndlp);
392
James Smart0b727fe2007-10-27 13:37:25 -0400393 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
James Smart98c9ea52007-10-27 13:37:33 -0400394 if (rc == MBX_NOT_FINISHED) {
395 err = 6;
James Smart92d7f7b2007-06-17 19:56:38 -0500396 goto fail_issue_reg_login;
James Smart98c9ea52007-10-27 13:37:33 -0400397 }
James Smart92d7f7b2007-06-17 19:56:38 -0500398
399 return 0;
400
401fail_issue_reg_login:
James Smarte47c9092008-02-08 18:49:26 -0500402 /* decrement the reference count on ndlp just incremented
403 * for the failed mbox command.
404 */
James Smart92d7f7b2007-06-17 19:56:38 -0500405 lpfc_nlp_put(ndlp);
406 mp = (struct lpfc_dmabuf *) mbox->context1;
407 lpfc_mbuf_free(phba, mp->virt, mp->phys);
408 kfree(mp);
409fail_free_mbox:
410 mempool_free(mbox, phba->mbox_mem_pool);
411
412fail:
413 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
James Smarte8b62012007-08-02 11:10:09 -0400414 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
James Smart98c9ea52007-10-27 13:37:33 -0400415 "0249 Cannot issue Register Fabric login: Err %d\n", err);
James Smart92d7f7b2007-06-17 19:56:38 -0500416 return -ENXIO;
417}
418
James Smarte59058c2008-08-24 21:49:00 -0400419/**
James Smart6fb120a2009-05-22 14:52:59 -0400420 * lpfc_issue_reg_vfi - Register VFI for this vport's fabric login
421 * @vport: pointer to a host virtual N_Port data structure.
422 *
423 * This routine issues a REG_VFI mailbox for the vfi, vpi, fcfi triplet for
James Smart1b511972011-12-13 13:23:09 -0500424 * the @vport. This mailbox command is necessary for SLI4 port only.
James Smart6fb120a2009-05-22 14:52:59 -0400425 *
426 * Return code
427 * 0 - successfully issued REG_VFI for @vport
428 * A failure code otherwise.
429 **/
James Smart1b511972011-12-13 13:23:09 -0500430int
James Smart6fb120a2009-05-22 14:52:59 -0400431lpfc_issue_reg_vfi(struct lpfc_vport *vport)
432{
433 struct lpfc_hba *phba = vport->phba;
434 LPFC_MBOXQ_t *mboxq;
435 struct lpfc_nodelist *ndlp;
436 struct serv_parm *sp;
437 struct lpfc_dmabuf *dmabuf;
438 int rc = 0;
439
440 sp = &phba->fc_fabparam;
James Smart1b511972011-12-13 13:23:09 -0500441 /* move forward in case of SLI4 FC port loopback test */
442 if ((phba->sli_rev == LPFC_SLI_REV4) &&
443 !(phba->link_flag & LS_LOOPBACK_MODE)) {
444 ndlp = lpfc_findnode_did(vport, Fabric_DID);
445 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp)) {
446 rc = -ENODEV;
447 goto fail;
448 }
James Smart6fb120a2009-05-22 14:52:59 -0400449 }
450
451 dmabuf = kzalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
452 if (!dmabuf) {
453 rc = -ENOMEM;
454 goto fail;
455 }
456 dmabuf->virt = lpfc_mbuf_alloc(phba, MEM_PRI, &dmabuf->phys);
457 if (!dmabuf->virt) {
458 rc = -ENOMEM;
459 goto fail_free_dmabuf;
460 }
James Smart6d368e52011-05-24 11:44:12 -0400461
James Smart6fb120a2009-05-22 14:52:59 -0400462 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
463 if (!mboxq) {
464 rc = -ENOMEM;
465 goto fail_free_coherent;
466 }
467 vport->port_state = LPFC_FABRIC_CFG_LINK;
468 memcpy(dmabuf->virt, &phba->fc_fabparam, sizeof(vport->fc_sparam));
469 lpfc_reg_vfi(mboxq, vport, dmabuf->phys);
470 mboxq->mbox_cmpl = lpfc_mbx_cmpl_reg_vfi;
471 mboxq->vport = vport;
472 mboxq->context1 = dmabuf;
473 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
474 if (rc == MBX_NOT_FINISHED) {
475 rc = -ENXIO;
476 goto fail_free_mbox;
477 }
478 return 0;
479
480fail_free_mbox:
481 mempool_free(mboxq, phba->mbox_mem_pool);
482fail_free_coherent:
483 lpfc_mbuf_free(phba, dmabuf->virt, dmabuf->phys);
484fail_free_dmabuf:
485 kfree(dmabuf);
486fail:
487 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
488 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
489 "0289 Issue Register VFI failed: Err %d\n", rc);
490 return rc;
491}
492
493/**
James Smart1b511972011-12-13 13:23:09 -0500494 * lpfc_issue_unreg_vfi - Unregister VFI for this vport's fabric login
495 * @vport: pointer to a host virtual N_Port data structure.
496 *
497 * This routine issues a UNREG_VFI mailbox with the vfi, vpi, fcfi triplet for
498 * the @vport. This mailbox command is necessary for SLI4 port only.
499 *
500 * Return code
501 * 0 - successfully issued REG_VFI for @vport
502 * A failure code otherwise.
503 **/
504int
505lpfc_issue_unreg_vfi(struct lpfc_vport *vport)
506{
507 struct lpfc_hba *phba = vport->phba;
508 struct Scsi_Host *shost;
509 LPFC_MBOXQ_t *mboxq;
510 int rc;
511
512 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
513 if (!mboxq) {
514 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY|LOG_MBOX,
515 "2556 UNREG_VFI mbox allocation failed"
516 "HBA state x%x\n", phba->pport->port_state);
517 return -ENOMEM;
518 }
519
520 lpfc_unreg_vfi(mboxq, vport);
521 mboxq->vport = vport;
522 mboxq->mbox_cmpl = lpfc_unregister_vfi_cmpl;
523
524 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
525 if (rc == MBX_NOT_FINISHED) {
526 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY|LOG_MBOX,
527 "2557 UNREG_VFI issue mbox failed rc x%x "
528 "HBA state x%x\n",
529 rc, phba->pport->port_state);
530 mempool_free(mboxq, phba->mbox_mem_pool);
531 return -EIO;
532 }
533
534 shost = lpfc_shost_from_vport(vport);
535 spin_lock_irq(shost->host_lock);
536 vport->fc_flag &= ~FC_VFI_REGISTERED;
537 spin_unlock_irq(shost->host_lock);
538 return 0;
539}
540
541/**
James Smart92494142011-02-16 12:39:44 -0500542 * lpfc_check_clean_addr_bit - Check whether assigned FCID is clean.
543 * @vport: pointer to a host virtual N_Port data structure.
544 * @sp: pointer to service parameter data structure.
545 *
546 * This routine is called from FLOGI/FDISC completion handler functions.
547 * lpfc_check_clean_addr_bit return 1 when FCID/Fabric portname/ Fabric
548 * node nodename is changed in the completion service parameter else return
549 * 0. This function also set flag in the vport data structure to delay
550 * NP_Port discovery after the FLOGI/FDISC completion if Clean address bit
551 * in FLOGI/FDISC response is cleared and FCID/Fabric portname/ Fabric
552 * node nodename is changed in the completion service parameter.
553 *
554 * Return code
555 * 0 - FCID and Fabric Nodename and Fabric portname is not changed.
556 * 1 - FCID or Fabric Nodename or Fabric portname is changed.
557 *
558 **/
559static uint8_t
560lpfc_check_clean_addr_bit(struct lpfc_vport *vport,
561 struct serv_parm *sp)
562{
563 uint8_t fabric_param_changed = 0;
564 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
565
566 if ((vport->fc_prevDID != vport->fc_myDID) ||
567 memcmp(&vport->fabric_portname, &sp->portName,
568 sizeof(struct lpfc_name)) ||
569 memcmp(&vport->fabric_nodename, &sp->nodeName,
570 sizeof(struct lpfc_name)))
571 fabric_param_changed = 1;
572
573 /*
574 * Word 1 Bit 31 in common service parameter is overloaded.
575 * Word 1 Bit 31 in FLOGI request is multiple NPort request
576 * Word 1 Bit 31 in FLOGI response is clean address bit
577 *
578 * If fabric parameter is changed and clean address bit is
579 * cleared delay nport discovery if
580 * - vport->fc_prevDID != 0 (not initial discovery) OR
581 * - lpfc_delay_discovery module parameter is set.
582 */
583 if (fabric_param_changed && !sp->cmn.clean_address_bit &&
584 (vport->fc_prevDID || lpfc_delay_discovery)) {
585 spin_lock_irq(shost->host_lock);
586 vport->fc_flag |= FC_DISC_DELAYED;
587 spin_unlock_irq(shost->host_lock);
588 }
589
590 return fabric_param_changed;
591}
592
593
594/**
James Smart3621a712009-04-06 18:47:14 -0400595 * lpfc_cmpl_els_flogi_fabric - Completion function for flogi to a fabric port
James Smarte59058c2008-08-24 21:49:00 -0400596 * @vport: pointer to a host virtual N_Port data structure.
597 * @ndlp: pointer to a node-list data structure.
598 * @sp: pointer to service parameter data structure.
599 * @irsp: pointer to the IOCB within the lpfc response IOCB.
600 *
601 * This routine is invoked by the lpfc_cmpl_els_flogi() completion callback
602 * function to handle the completion of a Fabric Login (FLOGI) into a fabric
603 * port in a fabric topology. It properly sets up the parameters to the @ndlp
604 * from the IOCB response. It also check the newly assigned N_Port ID to the
605 * @vport against the previously assigned N_Port ID. If it is different from
606 * the previously assigned Destination ID (DID), the lpfc_unreg_rpi() routine
607 * is invoked on all the remaining nodes with the @vport to unregister the
608 * Remote Port Indicators (RPIs). Finally, the lpfc_issue_fabric_reglogin()
609 * is invoked to register login to the fabric.
610 *
611 * Return code
612 * 0 - Success (currently, always return 0)
613 **/
James Smart92d7f7b2007-06-17 19:56:38 -0500614static int
James Smart2e0fef82007-06-17 19:56:36 -0500615lpfc_cmpl_els_flogi_fabric(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
616 struct serv_parm *sp, IOCB_t *irsp)
dea31012005-04-17 16:05:31 -0500617{
James Smart2e0fef82007-06-17 19:56:36 -0500618 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
619 struct lpfc_hba *phba = vport->phba;
James Smart92d7f7b2007-06-17 19:56:38 -0500620 struct lpfc_nodelist *np;
621 struct lpfc_nodelist *next_np;
James Smart92494142011-02-16 12:39:44 -0500622 uint8_t fabric_param_changed;
dea31012005-04-17 16:05:31 -0500623
James Smart2e0fef82007-06-17 19:56:36 -0500624 spin_lock_irq(shost->host_lock);
625 vport->fc_flag |= FC_FABRIC;
626 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500627
628 phba->fc_edtov = be32_to_cpu(sp->cmn.e_d_tov);
629 if (sp->cmn.edtovResolution) /* E_D_TOV ticks are in nanoseconds */
630 phba->fc_edtov = (phba->fc_edtov + 999999) / 1000000;
631
James Smart12265f62010-10-22 11:05:53 -0400632 phba->fc_edtovResol = sp->cmn.edtovResolution;
dea31012005-04-17 16:05:31 -0500633 phba->fc_ratov = (be32_to_cpu(sp->cmn.w2.r_a_tov) + 999) / 1000;
634
James Smart76a95d72010-11-20 23:11:48 -0500635 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
James Smart2e0fef82007-06-17 19:56:36 -0500636 spin_lock_irq(shost->host_lock);
637 vport->fc_flag |= FC_PUBLIC_LOOP;
638 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500639 }
640
James Smart2e0fef82007-06-17 19:56:36 -0500641 vport->fc_myDID = irsp->un.ulpWord[4] & Mask_DID;
dea31012005-04-17 16:05:31 -0500642 memcpy(&ndlp->nlp_portname, &sp->portName, sizeof(struct lpfc_name));
James Smart92d7f7b2007-06-17 19:56:38 -0500643 memcpy(&ndlp->nlp_nodename, &sp->nodeName, sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -0500644 ndlp->nlp_class_sup = 0;
645 if (sp->cls1.classValid)
646 ndlp->nlp_class_sup |= FC_COS_CLASS1;
647 if (sp->cls2.classValid)
648 ndlp->nlp_class_sup |= FC_COS_CLASS2;
649 if (sp->cls3.classValid)
650 ndlp->nlp_class_sup |= FC_COS_CLASS3;
651 if (sp->cls4.classValid)
652 ndlp->nlp_class_sup |= FC_COS_CLASS4;
653 ndlp->nlp_maxframe = ((sp->cmn.bbRcvSizeMsb & 0x0F) << 8) |
654 sp->cmn.bbRcvSizeLsb;
James Smart92494142011-02-16 12:39:44 -0500655
656 fabric_param_changed = lpfc_check_clean_addr_bit(vport, sp);
657 memcpy(&vport->fabric_portname, &sp->portName,
658 sizeof(struct lpfc_name));
659 memcpy(&vport->fabric_nodename, &sp->nodeName,
660 sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -0500661 memcpy(&phba->fc_fabparam, sp, sizeof(struct serv_parm));
662
James Smart92d7f7b2007-06-17 19:56:38 -0500663 if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) {
664 if (sp->cmn.response_multiple_NPort) {
James Smarte8b62012007-08-02 11:10:09 -0400665 lpfc_printf_vlog(vport, KERN_WARNING,
666 LOG_ELS | LOG_VPORT,
667 "1816 FLOGI NPIV supported, "
668 "response data 0x%x\n",
669 sp->cmn.response_multiple_NPort);
James Smart1b511972011-12-13 13:23:09 -0500670 spin_lock_irq(&phba->hbalock);
James Smart92d7f7b2007-06-17 19:56:38 -0500671 phba->link_flag |= LS_NPIV_FAB_SUPPORTED;
James Smart1b511972011-12-13 13:23:09 -0500672 spin_unlock_irq(&phba->hbalock);
James Smart92d7f7b2007-06-17 19:56:38 -0500673 } else {
674 /* Because we asked f/w for NPIV it still expects us
James Smarte8b62012007-08-02 11:10:09 -0400675 to call reg_vnpid atleast for the physcial host */
676 lpfc_printf_vlog(vport, KERN_WARNING,
677 LOG_ELS | LOG_VPORT,
678 "1817 Fabric does not support NPIV "
679 "- configuring single port mode.\n");
James Smart1b511972011-12-13 13:23:09 -0500680 spin_lock_irq(&phba->hbalock);
James Smart92d7f7b2007-06-17 19:56:38 -0500681 phba->link_flag &= ~LS_NPIV_FAB_SUPPORTED;
James Smart1b511972011-12-13 13:23:09 -0500682 spin_unlock_irq(&phba->hbalock);
James Smart92d7f7b2007-06-17 19:56:38 -0500683 }
684 }
685
James Smart92494142011-02-16 12:39:44 -0500686 if (fabric_param_changed &&
James Smart92d7f7b2007-06-17 19:56:38 -0500687 !(vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)) {
688
689 /* If our NportID changed, we need to ensure all
690 * remaining NPORTs get unreg_login'ed.
691 */
692 list_for_each_entry_safe(np, next_np,
693 &vport->fc_nodes, nlp_listp) {
James Smartd7c255b2008-08-24 21:50:00 -0400694 if (!NLP_CHK_NODE_ACT(np))
James Smarte47c9092008-02-08 18:49:26 -0500695 continue;
James Smart92d7f7b2007-06-17 19:56:38 -0500696 if ((np->nlp_state != NLP_STE_NPR_NODE) ||
697 !(np->nlp_flag & NLP_NPR_ADISC))
698 continue;
699 spin_lock_irq(shost->host_lock);
700 np->nlp_flag &= ~NLP_NPR_ADISC;
701 spin_unlock_irq(shost->host_lock);
702 lpfc_unreg_rpi(vport, np);
703 }
James Smart78730cf2010-04-06 15:06:30 -0400704 lpfc_cleanup_pending_mbox(vport);
James Smart5af5eee2010-10-22 11:06:38 -0400705
James Smart5248a742011-07-22 18:37:06 -0400706 if (phba->sli_rev == LPFC_SLI_REV4) {
James Smart5af5eee2010-10-22 11:06:38 -0400707 lpfc_sli4_unreg_all_rpis(vport);
James Smart92d7f7b2007-06-17 19:56:38 -0500708 lpfc_mbx_unreg_vpi(vport);
James Smart09372822008-01-11 01:52:54 -0500709 spin_lock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -0500710 vport->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
James Smart5248a742011-07-22 18:37:06 -0400711 /*
712 * If VPI is unreged, driver need to do INIT_VPI
713 * before re-registering
714 */
James Smartecfd03c2010-02-12 14:41:27 -0500715 vport->fc_flag |= FC_VPORT_NEEDS_INIT_VPI;
716 spin_unlock_irq(shost->host_lock);
717 }
James Smart38b92ef2010-08-04 16:11:39 -0400718 } else if ((phba->sli_rev == LPFC_SLI_REV4) &&
719 !(vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)) {
720 /*
721 * Driver needs to re-reg VPI in order for f/w
722 * to update the MAC address.
723 */
James Smart9589b0622011-04-16 11:03:17 -0400724 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
James Smart38b92ef2010-08-04 16:11:39 -0400725 lpfc_register_new_vport(phba, vport, ndlp);
726 return 0;
James Smart92d7f7b2007-06-17 19:56:38 -0500727 }
728
James Smart6fb120a2009-05-22 14:52:59 -0400729 if (phba->sli_rev < LPFC_SLI_REV4) {
730 lpfc_nlp_set_state(vport, ndlp, NLP_STE_REG_LOGIN_ISSUE);
731 if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED &&
732 vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)
733 lpfc_register_new_vport(phba, vport, ndlp);
734 else
735 lpfc_issue_fabric_reglogin(vport);
736 } else {
737 ndlp->nlp_type |= NLP_FABRIC;
738 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
James Smart695a8142010-01-26 23:08:03 -0500739 if ((!(vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)) &&
740 (vport->vpi_state & LPFC_VPI_REGISTERED)) {
James Smart6fb120a2009-05-22 14:52:59 -0400741 lpfc_start_fdiscs(phba);
742 lpfc_do_scr_ns_plogi(phba, vport);
James Smart695a8142010-01-26 23:08:03 -0500743 } else if (vport->fc_flag & FC_VFI_REGISTERED)
James Smartecfd03c2010-02-12 14:41:27 -0500744 lpfc_issue_init_vpi(vport);
James Smart1b511972011-12-13 13:23:09 -0500745 else {
746 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
747 "3135 Need register VFI: (x%x/%x)\n",
748 vport->fc_prevDID, vport->fc_myDID);
James Smart6fb120a2009-05-22 14:52:59 -0400749 lpfc_issue_reg_vfi(vport);
James Smart1b511972011-12-13 13:23:09 -0500750 }
James Smart92d7f7b2007-06-17 19:56:38 -0500751 }
dea31012005-04-17 16:05:31 -0500752 return 0;
dea31012005-04-17 16:05:31 -0500753}
James Smart1b511972011-12-13 13:23:09 -0500754
James Smarte59058c2008-08-24 21:49:00 -0400755/**
James Smart3621a712009-04-06 18:47:14 -0400756 * lpfc_cmpl_els_flogi_nport - Completion function for flogi to an N_Port
James Smarte59058c2008-08-24 21:49:00 -0400757 * @vport: pointer to a host virtual N_Port data structure.
758 * @ndlp: pointer to a node-list data structure.
759 * @sp: pointer to service parameter data structure.
760 *
761 * This routine is invoked by the lpfc_cmpl_els_flogi() completion callback
762 * function to handle the completion of a Fabric Login (FLOGI) into an N_Port
763 * in a point-to-point topology. First, the @vport's N_Port Name is compared
764 * with the received N_Port Name: if the @vport's N_Port Name is greater than
765 * the received N_Port Name lexicographically, this node shall assign local
766 * N_Port ID (PT2PT_LocalID: 1) and remote N_Port ID (PT2PT_RemoteID: 2) and
767 * will send out Port Login (PLOGI) with the N_Port IDs assigned. Otherwise,
768 * this node shall just wait for the remote node to issue PLOGI and assign
769 * N_Port IDs.
770 *
771 * Return code
772 * 0 - Success
773 * -ENXIO - Fail
774 **/
dea31012005-04-17 16:05:31 -0500775static int
James Smart2e0fef82007-06-17 19:56:36 -0500776lpfc_cmpl_els_flogi_nport(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
777 struct serv_parm *sp)
dea31012005-04-17 16:05:31 -0500778{
James Smart2e0fef82007-06-17 19:56:36 -0500779 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
780 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -0500781 LPFC_MBOXQ_t *mbox;
782 int rc;
783
James Smart2e0fef82007-06-17 19:56:36 -0500784 spin_lock_irq(shost->host_lock);
785 vport->fc_flag &= ~(FC_FABRIC | FC_PUBLIC_LOOP);
786 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500787
788 phba->fc_edtov = FF_DEF_EDTOV;
789 phba->fc_ratov = FF_DEF_RATOV;
James Smart2e0fef82007-06-17 19:56:36 -0500790 rc = memcmp(&vport->fc_portname, &sp->portName,
James Smart92d7f7b2007-06-17 19:56:38 -0500791 sizeof(vport->fc_portname));
dea31012005-04-17 16:05:31 -0500792 if (rc >= 0) {
793 /* This side will initiate the PLOGI */
James Smart2e0fef82007-06-17 19:56:36 -0500794 spin_lock_irq(shost->host_lock);
795 vport->fc_flag |= FC_PT2PT_PLOGI;
796 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500797
798 /*
799 * N_Port ID cannot be 0, set our to LocalID the other
800 * side will be RemoteID.
801 */
802
803 /* not equal */
804 if (rc)
James Smart2e0fef82007-06-17 19:56:36 -0500805 vport->fc_myDID = PT2PT_LocalID;
dea31012005-04-17 16:05:31 -0500806
807 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
808 if (!mbox)
809 goto fail;
810
811 lpfc_config_link(phba, mbox);
812
813 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
James Smarted957682007-06-17 19:56:37 -0500814 mbox->vport = vport;
James Smart0b727fe2007-10-27 13:37:25 -0400815 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
dea31012005-04-17 16:05:31 -0500816 if (rc == MBX_NOT_FINISHED) {
817 mempool_free(mbox, phba->mbox_mem_pool);
818 goto fail;
819 }
James Smarte47c9092008-02-08 18:49:26 -0500820 /* Decrement ndlp reference count indicating that ndlp can be
821 * safely released when other references to it are done.
822 */
James Smart329f9bc2007-04-25 09:53:01 -0400823 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -0500824
James Smart2e0fef82007-06-17 19:56:36 -0500825 ndlp = lpfc_findnode_did(vport, PT2PT_RemoteID);
dea31012005-04-17 16:05:31 -0500826 if (!ndlp) {
827 /*
828 * Cannot find existing Fabric ndlp, so allocate a
829 * new one
830 */
831 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
832 if (!ndlp)
833 goto fail;
James Smart2e0fef82007-06-17 19:56:36 -0500834 lpfc_nlp_init(vport, ndlp, PT2PT_RemoteID);
James Smarte47c9092008-02-08 18:49:26 -0500835 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
836 ndlp = lpfc_enable_node(vport, ndlp,
837 NLP_STE_UNUSED_NODE);
838 if(!ndlp)
839 goto fail;
dea31012005-04-17 16:05:31 -0500840 }
841
842 memcpy(&ndlp->nlp_portname, &sp->portName,
James Smart2e0fef82007-06-17 19:56:36 -0500843 sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -0500844 memcpy(&ndlp->nlp_nodename, &sp->nodeName,
James Smart2e0fef82007-06-17 19:56:36 -0500845 sizeof(struct lpfc_name));
James Smarte47c9092008-02-08 18:49:26 -0500846 /* Set state will put ndlp onto node list if not already done */
James Smart2e0fef82007-06-17 19:56:36 -0500847 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
848 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500849 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
James Smart2e0fef82007-06-17 19:56:36 -0500850 spin_unlock_irq(shost->host_lock);
James Smarte47c9092008-02-08 18:49:26 -0500851 } else
852 /* This side will wait for the PLOGI, decrement ndlp reference
853 * count indicating that ndlp can be released when other
854 * references to it are done.
855 */
James Smart329f9bc2007-04-25 09:53:01 -0400856 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -0500857
James Smart09372822008-01-11 01:52:54 -0500858 /* If we are pt2pt with another NPort, force NPIV off! */
859 phba->sli3_options &= ~LPFC_SLI3_NPIV_ENABLED;
860
James Smart2e0fef82007-06-17 19:56:36 -0500861 spin_lock_irq(shost->host_lock);
862 vport->fc_flag |= FC_PT2PT;
863 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500864
865 /* Start discovery - this should just do CLEAR_LA */
James Smart2e0fef82007-06-17 19:56:36 -0500866 lpfc_disc_start(vport);
dea31012005-04-17 16:05:31 -0500867 return 0;
James Smart92d7f7b2007-06-17 19:56:38 -0500868fail:
dea31012005-04-17 16:05:31 -0500869 return -ENXIO;
870}
871
James Smarte59058c2008-08-24 21:49:00 -0400872/**
James Smart3621a712009-04-06 18:47:14 -0400873 * lpfc_cmpl_els_flogi - Completion callback function for flogi
James Smarte59058c2008-08-24 21:49:00 -0400874 * @phba: pointer to lpfc hba data structure.
875 * @cmdiocb: pointer to lpfc command iocb data structure.
876 * @rspiocb: pointer to lpfc response iocb data structure.
877 *
878 * This routine is the top-level completion callback function for issuing
879 * a Fabric Login (FLOGI) command. If the response IOCB reported error,
880 * the lpfc_els_retry() routine shall be invoked to retry the FLOGI. If
881 * retry has been made (either immediately or delayed with lpfc_els_retry()
882 * returning 1), the command IOCB will be released and function returned.
883 * If the retry attempt has been given up (possibly reach the maximum
884 * number of retries), one additional decrement of ndlp reference shall be
885 * invoked before going out after releasing the command IOCB. This will
886 * actually release the remote node (Note, lpfc_els_free_iocb() will also
887 * invoke one decrement of ndlp reference count). If no error reported in
888 * the IOCB status, the command Port ID field is used to determine whether
889 * this is a point-to-point topology or a fabric topology: if the Port ID
890 * field is assigned, it is a fabric topology; otherwise, it is a
891 * point-to-point topology. The routine lpfc_cmpl_els_flogi_fabric() or
892 * lpfc_cmpl_els_flogi_nport() shall be invoked accordingly to handle the
893 * specific topology completion conditions.
894 **/
dea31012005-04-17 16:05:31 -0500895static void
James Smart329f9bc2007-04-25 09:53:01 -0400896lpfc_cmpl_els_flogi(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
897 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -0500898{
James Smart2e0fef82007-06-17 19:56:36 -0500899 struct lpfc_vport *vport = cmdiocb->vport;
900 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -0500901 IOCB_t *irsp = &rspiocb->iocb;
902 struct lpfc_nodelist *ndlp = cmdiocb->context1;
903 struct lpfc_dmabuf *pcmd = cmdiocb->context2, *prsp;
904 struct serv_parm *sp;
James Smart0c9ab6f2010-02-26 14:15:57 -0500905 uint16_t fcf_index;
dea31012005-04-17 16:05:31 -0500906 int rc;
907
908 /* Check to see if link went down during discovery */
James Smart2e0fef82007-06-17 19:56:36 -0500909 if (lpfc_els_chk_latt(vport)) {
James Smartfa4066b2008-01-11 01:53:27 -0500910 /* One additional decrement on node reference count to
911 * trigger the release of the node
912 */
James Smart329f9bc2007-04-25 09:53:01 -0400913 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -0500914 goto out;
915 }
916
James Smart858c9f62007-06-17 19:56:39 -0500917 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
918 "FLOGI cmpl: status:x%x/x%x state:x%x",
919 irsp->ulpStatus, irsp->un.ulpWord[4],
920 vport->port_state);
921
dea31012005-04-17 16:05:31 -0500922 if (irsp->ulpStatus) {
James Smart0c9ab6f2010-02-26 14:15:57 -0500923 /*
James Smarta93ff372010-10-22 11:06:08 -0400924 * In case of FIP mode, perform roundrobin FCF failover
James Smart0c9ab6f2010-02-26 14:15:57 -0500925 * due to new FCF discovery
926 */
927 if ((phba->hba_flag & HBA_FIP_SUPPORT) &&
James Smart80c17842012-03-01 22:35:45 -0500928 (phba->fcf.fcf_flag & FCF_DISCOVERY)) {
929 if (phba->link_state < LPFC_LINK_UP)
930 goto stop_rr_fcf_flogi;
931 if ((phba->fcoe_cvl_eventtag_attn ==
932 phba->fcoe_cvl_eventtag) &&
933 (irsp->ulpStatus == IOSTAT_LOCAL_REJECT) &&
934 (irsp->un.ulpWord[4] == IOERR_SLI_ABORTED))
935 goto stop_rr_fcf_flogi;
936 else
937 phba->fcoe_cvl_eventtag_attn =
938 phba->fcoe_cvl_eventtag;
James Smart0c9ab6f2010-02-26 14:15:57 -0500939 lpfc_printf_log(phba, KERN_WARNING, LOG_FIP | LOG_ELS,
James Smarta93ff372010-10-22 11:06:08 -0400940 "2611 FLOGI failed on FCF (x%x), "
941 "status:x%x/x%x, tmo:x%x, perform "
942 "roundrobin FCF failover\n",
James Smart38b92ef2010-08-04 16:11:39 -0400943 phba->fcf.current_rec.fcf_indx,
944 irsp->ulpStatus, irsp->un.ulpWord[4],
945 irsp->ulpTimeout);
James Smart7d791df2011-07-22 18:37:52 -0400946 lpfc_sli4_set_fcf_flogi_fail(phba,
947 phba->fcf.current_rec.fcf_indx);
James Smart0c9ab6f2010-02-26 14:15:57 -0500948 fcf_index = lpfc_sli4_fcf_rr_next_index_get(phba);
James Smarta93ff372010-10-22 11:06:08 -0400949 rc = lpfc_sli4_fcf_rr_next_proc(vport, fcf_index);
950 if (rc)
951 goto out;
James Smart0c9ab6f2010-02-26 14:15:57 -0500952 }
953
James Smart80c17842012-03-01 22:35:45 -0500954stop_rr_fcf_flogi:
James Smart38b92ef2010-08-04 16:11:39 -0400955 /* FLOGI failure */
956 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
957 "2858 FLOGI failure Status:x%x/x%x TMO:x%x\n",
958 irsp->ulpStatus, irsp->un.ulpWord[4],
959 irsp->ulpTimeout);
960
dea31012005-04-17 16:05:31 -0500961 /* Check for retry */
James Smart2e0fef82007-06-17 19:56:36 -0500962 if (lpfc_els_retry(phba, cmdiocb, rspiocb))
dea31012005-04-17 16:05:31 -0500963 goto out;
James Smart2e0fef82007-06-17 19:56:36 -0500964
James Smart76a95d72010-11-20 23:11:48 -0500965 /* FLOGI failure */
966 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
967 "0100 FLOGI failure Status:x%x/x%x TMO:x%x\n",
968 irsp->ulpStatus, irsp->un.ulpWord[4],
969 irsp->ulpTimeout);
970
dea31012005-04-17 16:05:31 -0500971 /* FLOGI failed, so there is no fabric */
James Smart2e0fef82007-06-17 19:56:36 -0500972 spin_lock_irq(shost->host_lock);
973 vport->fc_flag &= ~(FC_FABRIC | FC_PUBLIC_LOOP);
974 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500975
James Smart329f9bc2007-04-25 09:53:01 -0400976 /* If private loop, then allow max outstanding els to be
dea31012005-04-17 16:05:31 -0500977 * LPFC_MAX_DISC_THREADS (32). Scanning in the case of no
978 * alpa map would take too long otherwise.
979 */
James Smart1b511972011-12-13 13:23:09 -0500980 if (phba->alpa_map[0] == 0)
James Smart3de2a652007-08-02 11:09:59 -0400981 vport->cfg_discovery_threads = LPFC_MAX_DISC_THREADS;
James Smartff78d8f2011-12-13 13:21:35 -0500982 if ((phba->sli_rev == LPFC_SLI_REV4) &&
983 (!(vport->fc_flag & FC_VFI_REGISTERED) ||
984 (vport->fc_prevDID != vport->fc_myDID))) {
985 if (vport->fc_flag & FC_VFI_REGISTERED)
986 lpfc_sli4_unreg_all_rpis(vport);
987 lpfc_issue_reg_vfi(vport);
988 lpfc_nlp_put(ndlp);
989 goto out;
dea31012005-04-17 16:05:31 -0500990 }
dea31012005-04-17 16:05:31 -0500991 goto flogifail;
992 }
James Smart695a8142010-01-26 23:08:03 -0500993 spin_lock_irq(shost->host_lock);
994 vport->fc_flag &= ~FC_VPORT_CVL_RCVD;
James Smart4b40c592010-03-15 11:25:44 -0400995 vport->fc_flag &= ~FC_VPORT_LOGO_RCVD;
James Smart695a8142010-01-26 23:08:03 -0500996 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500997
998 /*
999 * The FLogI succeeded. Sync the data for the CPU before
1000 * accessing it.
1001 */
1002 prsp = list_get_first(&pcmd->list, struct lpfc_dmabuf, list);
1003
1004 sp = prsp->virt + sizeof(uint32_t);
1005
1006 /* FLOGI completes successfully */
James Smarte8b62012007-08-02 11:10:09 -04001007 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001008 "0101 FLOGI completes successfully "
James Smarte8b62012007-08-02 11:10:09 -04001009 "Data: x%x x%x x%x x%x\n",
1010 irsp->un.ulpWord[4], sp->cmn.e_d_tov,
1011 sp->cmn.w2.r_a_tov, sp->cmn.edtovResolution);
dea31012005-04-17 16:05:31 -05001012
James Smart2e0fef82007-06-17 19:56:36 -05001013 if (vport->port_state == LPFC_FLOGI) {
dea31012005-04-17 16:05:31 -05001014 /*
1015 * If Common Service Parameters indicate Nport
1016 * we are point to point, if Fport we are Fabric.
1017 */
1018 if (sp->cmn.fPort)
James Smart2e0fef82007-06-17 19:56:36 -05001019 rc = lpfc_cmpl_els_flogi_fabric(vport, ndlp, sp, irsp);
James Smart76a95d72010-11-20 23:11:48 -05001020 else if (!(phba->hba_flag & HBA_FCOE_MODE))
James Smart2e0fef82007-06-17 19:56:36 -05001021 rc = lpfc_cmpl_els_flogi_nport(vport, ndlp, sp);
James Smartdbb6b3a2010-06-08 18:31:37 -04001022 else {
1023 lpfc_printf_vlog(vport, KERN_ERR,
1024 LOG_FIP | LOG_ELS,
1025 "2831 FLOGI response with cleared Fabric "
1026 "bit fcf_index 0x%x "
1027 "Switch Name %02x%02x%02x%02x%02x%02x%02x%02x "
1028 "Fabric Name "
1029 "%02x%02x%02x%02x%02x%02x%02x%02x\n",
1030 phba->fcf.current_rec.fcf_indx,
1031 phba->fcf.current_rec.switch_name[0],
1032 phba->fcf.current_rec.switch_name[1],
1033 phba->fcf.current_rec.switch_name[2],
1034 phba->fcf.current_rec.switch_name[3],
1035 phba->fcf.current_rec.switch_name[4],
1036 phba->fcf.current_rec.switch_name[5],
1037 phba->fcf.current_rec.switch_name[6],
1038 phba->fcf.current_rec.switch_name[7],
1039 phba->fcf.current_rec.fabric_name[0],
1040 phba->fcf.current_rec.fabric_name[1],
1041 phba->fcf.current_rec.fabric_name[2],
1042 phba->fcf.current_rec.fabric_name[3],
1043 phba->fcf.current_rec.fabric_name[4],
1044 phba->fcf.current_rec.fabric_name[5],
1045 phba->fcf.current_rec.fabric_name[6],
1046 phba->fcf.current_rec.fabric_name[7]);
1047 lpfc_nlp_put(ndlp);
1048 spin_lock_irq(&phba->hbalock);
1049 phba->fcf.fcf_flag &= ~FCF_DISCOVERY;
James Smarta93ff372010-10-22 11:06:08 -04001050 phba->hba_flag &= ~(FCF_RR_INPROG | HBA_DEVLOSS_TMO);
James Smartdbb6b3a2010-06-08 18:31:37 -04001051 spin_unlock_irq(&phba->hbalock);
1052 goto out;
1053 }
James Smart0c9ab6f2010-02-26 14:15:57 -05001054 if (!rc) {
1055 /* Mark the FCF discovery process done */
James Smart999d8132010-03-15 11:24:56 -04001056 if (phba->hba_flag & HBA_FIP_SUPPORT)
1057 lpfc_printf_vlog(vport, KERN_INFO, LOG_FIP |
1058 LOG_ELS,
James Smarta93ff372010-10-22 11:06:08 -04001059 "2769 FLOGI to FCF (x%x) "
1060 "completed successfully\n",
James Smart999d8132010-03-15 11:24:56 -04001061 phba->fcf.current_rec.fcf_indx);
James Smart0c9ab6f2010-02-26 14:15:57 -05001062 spin_lock_irq(&phba->hbalock);
1063 phba->fcf.fcf_flag &= ~FCF_DISCOVERY;
James Smarta93ff372010-10-22 11:06:08 -04001064 phba->hba_flag &= ~(FCF_RR_INPROG | HBA_DEVLOSS_TMO);
James Smart0c9ab6f2010-02-26 14:15:57 -05001065 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05001066 goto out;
James Smart0c9ab6f2010-02-26 14:15:57 -05001067 }
dea31012005-04-17 16:05:31 -05001068 }
1069
1070flogifail:
James Smart329f9bc2007-04-25 09:53:01 -04001071 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05001072
James Smart858c9f62007-06-17 19:56:39 -05001073 if (!lpfc_error_lost_link(irsp)) {
dea31012005-04-17 16:05:31 -05001074 /* FLOGI failed, so just use loop map to make discovery list */
James Smart2e0fef82007-06-17 19:56:36 -05001075 lpfc_disc_list_loopmap(vport);
dea31012005-04-17 16:05:31 -05001076
1077 /* Start discovery */
James Smart2e0fef82007-06-17 19:56:36 -05001078 lpfc_disc_start(vport);
James Smart87af33f2007-10-27 13:37:43 -04001079 } else if (((irsp->ulpStatus != IOSTAT_LOCAL_REJECT) ||
1080 ((irsp->un.ulpWord[4] != IOERR_SLI_ABORTED) &&
1081 (irsp->un.ulpWord[4] != IOERR_SLI_DOWN))) &&
1082 (phba->link_state != LPFC_CLEAR_LA)) {
1083 /* If FLOGI failed enable link interrupt. */
1084 lpfc_issue_clear_la(phba, vport);
dea31012005-04-17 16:05:31 -05001085 }
dea31012005-04-17 16:05:31 -05001086out:
1087 lpfc_els_free_iocb(phba, cmdiocb);
1088}
1089
James Smarte59058c2008-08-24 21:49:00 -04001090/**
James Smart3621a712009-04-06 18:47:14 -04001091 * lpfc_issue_els_flogi - Issue an flogi iocb command for a vport
James Smarte59058c2008-08-24 21:49:00 -04001092 * @vport: pointer to a host virtual N_Port data structure.
1093 * @ndlp: pointer to a node-list data structure.
1094 * @retry: number of retries to the command IOCB.
1095 *
1096 * This routine issues a Fabric Login (FLOGI) Request ELS command
1097 * for a @vport. The initiator service parameters are put into the payload
1098 * of the FLOGI Request IOCB and the top-level callback function pointer
1099 * to lpfc_cmpl_els_flogi() routine is put to the IOCB completion callback
1100 * function field. The lpfc_issue_fabric_iocb routine is invoked to send
1101 * out FLOGI ELS command with one outstanding fabric IOCB at a time.
1102 *
1103 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
1104 * will be incremented by 1 for holding the ndlp and the reference to ndlp
1105 * will be stored into the context1 field of the IOCB for the completion
1106 * callback function to the FLOGI ELS command.
1107 *
1108 * Return code
1109 * 0 - successfully issued flogi iocb for @vport
1110 * 1 - failed to issue flogi iocb for @vport
1111 **/
dea31012005-04-17 16:05:31 -05001112static int
James Smart2e0fef82007-06-17 19:56:36 -05001113lpfc_issue_els_flogi(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
dea31012005-04-17 16:05:31 -05001114 uint8_t retry)
1115{
James Smart2e0fef82007-06-17 19:56:36 -05001116 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05001117 struct serv_parm *sp;
1118 IOCB_t *icmd;
1119 struct lpfc_iocbq *elsiocb;
1120 struct lpfc_sli_ring *pring;
1121 uint8_t *pcmd;
1122 uint16_t cmdsize;
1123 uint32_t tmo;
1124 int rc;
1125
1126 pring = &phba->sli.ring[LPFC_ELS_RING];
1127
James Smart92d7f7b2007-06-17 19:56:38 -05001128 cmdsize = (sizeof(uint32_t) + sizeof(struct serv_parm));
James Smart2e0fef82007-06-17 19:56:36 -05001129 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
1130 ndlp->nlp_DID, ELS_CMD_FLOGI);
James Smart92d7f7b2007-06-17 19:56:38 -05001131
James Smart488d1462006-03-07 15:02:37 -05001132 if (!elsiocb)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001133 return 1;
dea31012005-04-17 16:05:31 -05001134
1135 icmd = &elsiocb->iocb;
1136 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
1137
1138 /* For FLOGI request, remainder of payload is service parameters */
1139 *((uint32_t *) (pcmd)) = ELS_CMD_FLOGI;
James Smart92d7f7b2007-06-17 19:56:38 -05001140 pcmd += sizeof(uint32_t);
1141 memcpy(pcmd, &vport->fc_sparam, sizeof(struct serv_parm));
dea31012005-04-17 16:05:31 -05001142 sp = (struct serv_parm *) pcmd;
1143
1144 /* Setup CSPs accordingly for Fabric */
1145 sp->cmn.e_d_tov = 0;
1146 sp->cmn.w2.r_a_tov = 0;
James Smartdf9e1b52011-12-13 13:22:17 -05001147 sp->cmn.virtual_fabric_support = 0;
dea31012005-04-17 16:05:31 -05001148 sp->cls1.classValid = 0;
1149 sp->cls2.seqDelivery = 1;
1150 sp->cls3.seqDelivery = 1;
1151 if (sp->cmn.fcphLow < FC_PH3)
1152 sp->cmn.fcphLow = FC_PH3;
1153 if (sp->cmn.fcphHigh < FC_PH3)
1154 sp->cmn.fcphHigh = FC_PH3;
1155
James Smartc31098c2011-04-16 11:03:33 -04001156 if (phba->sli_rev == LPFC_SLI_REV4) {
1157 if (bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf) ==
1158 LPFC_SLI_INTF_IF_TYPE_0) {
1159 elsiocb->iocb.ulpCt_h = ((SLI4_CT_FCFI >> 1) & 1);
1160 elsiocb->iocb.ulpCt_l = (SLI4_CT_FCFI & 1);
1161 /* FLOGI needs to be 3 for WQE FCFI */
1162 /* Set the fcfi to the fcfi we registered with */
1163 elsiocb->iocb.ulpContext = phba->fcf.fcfi;
1164 }
James Smart5248a742011-07-22 18:37:06 -04001165 } else {
1166 if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) {
1167 sp->cmn.request_multiple_Nport = 1;
1168 /* For FLOGI, Let FLOGI rsp set the NPortID for VPI 0 */
1169 icmd->ulpCt_h = 1;
1170 icmd->ulpCt_l = 0;
1171 } else
1172 sp->cmn.request_multiple_Nport = 0;
James Smart92d7f7b2007-06-17 19:56:38 -05001173 }
1174
James Smart76a95d72010-11-20 23:11:48 -05001175 if (phba->fc_topology != LPFC_TOPOLOGY_LOOP) {
James Smart858c9f62007-06-17 19:56:39 -05001176 icmd->un.elsreq64.myID = 0;
1177 icmd->un.elsreq64.fl = 1;
1178 }
1179
dea31012005-04-17 16:05:31 -05001180 tmo = phba->fc_ratov;
1181 phba->fc_ratov = LPFC_DISC_FLOGI_TMO;
James Smart2e0fef82007-06-17 19:56:36 -05001182 lpfc_set_disctmo(vport);
dea31012005-04-17 16:05:31 -05001183 phba->fc_ratov = tmo;
1184
1185 phba->fc_stat.elsXmitFLOGI++;
1186 elsiocb->iocb_cmpl = lpfc_cmpl_els_flogi;
James Smart858c9f62007-06-17 19:56:39 -05001187
1188 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
1189 "Issue FLOGI: opt:x%x",
1190 phba->sli3_options, 0, 0);
1191
James Smart92d7f7b2007-06-17 19:56:38 -05001192 rc = lpfc_issue_fabric_iocb(phba, elsiocb);
dea31012005-04-17 16:05:31 -05001193 if (rc == IOCB_ERROR) {
1194 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001195 return 1;
dea31012005-04-17 16:05:31 -05001196 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001197 return 0;
dea31012005-04-17 16:05:31 -05001198}
1199
James Smarte59058c2008-08-24 21:49:00 -04001200/**
James Smart3621a712009-04-06 18:47:14 -04001201 * lpfc_els_abort_flogi - Abort all outstanding flogi iocbs
James Smarte59058c2008-08-24 21:49:00 -04001202 * @phba: pointer to lpfc hba data structure.
1203 *
1204 * This routine aborts all the outstanding Fabric Login (FLOGI) IOCBs
1205 * with a @phba. This routine walks all the outstanding IOCBs on the txcmplq
1206 * list and issues an abort IOCB commond on each outstanding IOCB that
1207 * contains a active Fabric_DID ndlp. Note that this function is to issue
1208 * the abort IOCB command on all the outstanding IOCBs, thus when this
1209 * function returns, it does not guarantee all the IOCBs are actually aborted.
1210 *
1211 * Return code
Daniel Mack3ad2f3f2010-02-03 08:01:28 +08001212 * 0 - Successfully issued abort iocb on all outstanding flogis (Always 0)
James Smarte59058c2008-08-24 21:49:00 -04001213 **/
dea31012005-04-17 16:05:31 -05001214int
James Smart2e0fef82007-06-17 19:56:36 -05001215lpfc_els_abort_flogi(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -05001216{
1217 struct lpfc_sli_ring *pring;
1218 struct lpfc_iocbq *iocb, *next_iocb;
1219 struct lpfc_nodelist *ndlp;
1220 IOCB_t *icmd;
1221
1222 /* Abort outstanding I/O on NPort <nlp_DID> */
1223 lpfc_printf_log(phba, KERN_INFO, LOG_DISCOVERY,
James Smarte8b62012007-08-02 11:10:09 -04001224 "0201 Abort outstanding I/O on NPort x%x\n",
1225 Fabric_DID);
dea31012005-04-17 16:05:31 -05001226
1227 pring = &phba->sli.ring[LPFC_ELS_RING];
1228
1229 /*
1230 * Check the txcmplq for an iocb that matches the nport the driver is
1231 * searching for.
1232 */
James Smart2e0fef82007-06-17 19:56:36 -05001233 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05001234 list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq, list) {
1235 icmd = &iocb->iocb;
James Smart1b511972011-12-13 13:23:09 -05001236 if (icmd->ulpCommand == CMD_ELS_REQUEST64_CR) {
dea31012005-04-17 16:05:31 -05001237 ndlp = (struct lpfc_nodelist *)(iocb->context1);
James Smart58da1ff2008-04-07 10:15:56 -04001238 if (ndlp && NLP_CHK_NODE_ACT(ndlp) &&
1239 (ndlp->nlp_DID == Fabric_DID))
James Smart07951072007-04-25 09:51:38 -04001240 lpfc_sli_issue_abort_iotag(phba, pring, iocb);
dea31012005-04-17 16:05:31 -05001241 }
1242 }
James Smart2e0fef82007-06-17 19:56:36 -05001243 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05001244
1245 return 0;
1246}
1247
James Smarte59058c2008-08-24 21:49:00 -04001248/**
James Smart3621a712009-04-06 18:47:14 -04001249 * lpfc_initial_flogi - Issue an initial fabric login for a vport
James Smarte59058c2008-08-24 21:49:00 -04001250 * @vport: pointer to a host virtual N_Port data structure.
1251 *
1252 * This routine issues an initial Fabric Login (FLOGI) for the @vport
1253 * specified. It first searches the ndlp with the Fabric_DID (0xfffffe) from
1254 * the @vport's ndlp list. If no such ndlp found, it will create an ndlp and
1255 * put it into the @vport's ndlp list. If an inactive ndlp found on the list,
1256 * it will just be enabled and made active. The lpfc_issue_els_flogi() routine
1257 * is then invoked with the @vport and the ndlp to perform the FLOGI for the
1258 * @vport.
1259 *
1260 * Return code
1261 * 0 - failed to issue initial flogi for @vport
1262 * 1 - successfully issued initial flogi for @vport
1263 **/
dea31012005-04-17 16:05:31 -05001264int
James Smart2e0fef82007-06-17 19:56:36 -05001265lpfc_initial_flogi(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05001266{
James Smart2e0fef82007-06-17 19:56:36 -05001267 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05001268 struct lpfc_nodelist *ndlp;
1269
James Smart98c9ea52007-10-27 13:37:33 -04001270 vport->port_state = LPFC_FLOGI;
1271 lpfc_set_disctmo(vport);
1272
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001273 /* First look for the Fabric ndlp */
James Smart2e0fef82007-06-17 19:56:36 -05001274 ndlp = lpfc_findnode_did(vport, Fabric_DID);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001275 if (!ndlp) {
dea31012005-04-17 16:05:31 -05001276 /* Cannot find existing Fabric ndlp, so allocate a new one */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001277 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
1278 if (!ndlp)
1279 return 0;
James Smart2e0fef82007-06-17 19:56:36 -05001280 lpfc_nlp_init(vport, ndlp, Fabric_DID);
James Smart6fb120a2009-05-22 14:52:59 -04001281 /* Set the node type */
1282 ndlp->nlp_type |= NLP_FABRIC;
James Smarte47c9092008-02-08 18:49:26 -05001283 /* Put ndlp onto node list */
1284 lpfc_enqueue_node(vport, ndlp);
1285 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
1286 /* re-setup ndlp without removing from node list */
1287 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
1288 if (!ndlp)
1289 return 0;
dea31012005-04-17 16:05:31 -05001290 }
James Smart87af33f2007-10-27 13:37:43 -04001291
James Smart5ac6b302010-10-22 11:05:36 -04001292 if (lpfc_issue_els_flogi(vport, ndlp, 0)) {
James Smartfa4066b2008-01-11 01:53:27 -05001293 /* This decrement of reference count to node shall kick off
1294 * the release of the node.
1295 */
James Smart329f9bc2007-04-25 09:53:01 -04001296 lpfc_nlp_put(ndlp);
James Smart5ac6b302010-10-22 11:05:36 -04001297 return 0;
1298 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001299 return 1;
dea31012005-04-17 16:05:31 -05001300}
1301
James Smarte59058c2008-08-24 21:49:00 -04001302/**
James Smart3621a712009-04-06 18:47:14 -04001303 * lpfc_initial_fdisc - Issue an initial fabric discovery for a vport
James Smarte59058c2008-08-24 21:49:00 -04001304 * @vport: pointer to a host virtual N_Port data structure.
1305 *
1306 * This routine issues an initial Fabric Discover (FDISC) for the @vport
1307 * specified. It first searches the ndlp with the Fabric_DID (0xfffffe) from
1308 * the @vport's ndlp list. If no such ndlp found, it will create an ndlp and
1309 * put it into the @vport's ndlp list. If an inactive ndlp found on the list,
1310 * it will just be enabled and made active. The lpfc_issue_els_fdisc() routine
1311 * is then invoked with the @vport and the ndlp to perform the FDISC for the
1312 * @vport.
1313 *
1314 * Return code
1315 * 0 - failed to issue initial fdisc for @vport
1316 * 1 - successfully issued initial fdisc for @vport
1317 **/
James Smart92d7f7b2007-06-17 19:56:38 -05001318int
1319lpfc_initial_fdisc(struct lpfc_vport *vport)
1320{
1321 struct lpfc_hba *phba = vport->phba;
1322 struct lpfc_nodelist *ndlp;
1323
1324 /* First look for the Fabric ndlp */
1325 ndlp = lpfc_findnode_did(vport, Fabric_DID);
1326 if (!ndlp) {
1327 /* Cannot find existing Fabric ndlp, so allocate a new one */
1328 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
1329 if (!ndlp)
1330 return 0;
1331 lpfc_nlp_init(vport, ndlp, Fabric_DID);
James Smarte47c9092008-02-08 18:49:26 -05001332 /* Put ndlp onto node list */
1333 lpfc_enqueue_node(vport, ndlp);
1334 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
1335 /* re-setup ndlp without removing from node list */
1336 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
1337 if (!ndlp)
1338 return 0;
James Smart92d7f7b2007-06-17 19:56:38 -05001339 }
James Smarte47c9092008-02-08 18:49:26 -05001340
James Smart92d7f7b2007-06-17 19:56:38 -05001341 if (lpfc_issue_els_fdisc(vport, ndlp, 0)) {
James Smartfa4066b2008-01-11 01:53:27 -05001342 /* decrement node reference count to trigger the release of
1343 * the node.
1344 */
James Smart92d7f7b2007-06-17 19:56:38 -05001345 lpfc_nlp_put(ndlp);
James Smartfa4066b2008-01-11 01:53:27 -05001346 return 0;
James Smart92d7f7b2007-06-17 19:56:38 -05001347 }
1348 return 1;
1349}
James Smart87af33f2007-10-27 13:37:43 -04001350
James Smarte59058c2008-08-24 21:49:00 -04001351/**
James Smart3621a712009-04-06 18:47:14 -04001352 * lpfc_more_plogi - Check and issue remaining plogis for a vport
James Smarte59058c2008-08-24 21:49:00 -04001353 * @vport: pointer to a host virtual N_Port data structure.
1354 *
1355 * This routine checks whether there are more remaining Port Logins
1356 * (PLOGI) to be issued for the @vport. If so, it will invoke the routine
1357 * lpfc_els_disc_plogi() to go through the Node Port Recovery (NPR) nodes
1358 * to issue ELS PLOGIs up to the configured discover threads with the
1359 * @vport (@vport->cfg_discovery_threads). The function also decrement
1360 * the @vport's num_disc_node by 1 if it is not already 0.
1361 **/
James Smart87af33f2007-10-27 13:37:43 -04001362void
James Smart2e0fef82007-06-17 19:56:36 -05001363lpfc_more_plogi(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05001364{
1365 int sentplogi;
1366
James Smart2e0fef82007-06-17 19:56:36 -05001367 if (vport->num_disc_nodes)
1368 vport->num_disc_nodes--;
dea31012005-04-17 16:05:31 -05001369
1370 /* Continue discovery with <num_disc_nodes> PLOGIs to go */
James Smarte8b62012007-08-02 11:10:09 -04001371 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
1372 "0232 Continue discovery with %d PLOGIs to go "
1373 "Data: x%x x%x x%x\n",
1374 vport->num_disc_nodes, vport->fc_plogi_cnt,
1375 vport->fc_flag, vport->port_state);
dea31012005-04-17 16:05:31 -05001376 /* Check to see if there are more PLOGIs to be sent */
James Smart2e0fef82007-06-17 19:56:36 -05001377 if (vport->fc_flag & FC_NLP_MORE)
1378 /* go thru NPR nodes and issue any remaining ELS PLOGIs */
1379 sentplogi = lpfc_els_disc_plogi(vport);
1380
dea31012005-04-17 16:05:31 -05001381 return;
1382}
1383
James Smarte59058c2008-08-24 21:49:00 -04001384/**
James Smart3621a712009-04-06 18:47:14 -04001385 * lpfc_plogi_confirm_nport - Confirm pologi wwpn matches stored ndlp
James Smarte59058c2008-08-24 21:49:00 -04001386 * @phba: pointer to lpfc hba data structure.
1387 * @prsp: pointer to response IOCB payload.
1388 * @ndlp: pointer to a node-list data structure.
1389 *
1390 * This routine checks and indicates whether the WWPN of an N_Port, retrieved
1391 * from a PLOGI, matches the WWPN that is stored in the @ndlp for that N_POrt.
1392 * The following cases are considered N_Port confirmed:
1393 * 1) The N_Port is a Fabric ndlp; 2) The @ndlp is on vport list and matches
1394 * the WWPN of the N_Port logged into; 3) The @ndlp is not on vport list but
1395 * it does not have WWPN assigned either. If the WWPN is confirmed, the
1396 * pointer to the @ndlp will be returned. If the WWPN is not confirmed:
1397 * 1) if there is a node on vport list other than the @ndlp with the same
1398 * WWPN of the N_Port PLOGI logged into, the lpfc_unreg_rpi() will be invoked
1399 * on that node to release the RPI associated with the node; 2) if there is
1400 * no node found on vport list with the same WWPN of the N_Port PLOGI logged
1401 * into, a new node shall be allocated (or activated). In either case, the
1402 * parameters of the @ndlp shall be copied to the new_ndlp, the @ndlp shall
1403 * be released and the new_ndlp shall be put on to the vport node list and
1404 * its pointer returned as the confirmed node.
1405 *
1406 * Note that before the @ndlp got "released", the keepDID from not-matching
1407 * or inactive "new_ndlp" on the vport node list is assigned to the nlp_DID
1408 * of the @ndlp. This is because the release of @ndlp is actually to put it
1409 * into an inactive state on the vport node list and the vport node list
1410 * management algorithm does not allow two node with a same DID.
1411 *
1412 * Return code
1413 * pointer to the PLOGI N_Port @ndlp
1414 **/
James Smart488d1462006-03-07 15:02:37 -05001415static struct lpfc_nodelist *
James Smart92d7f7b2007-06-17 19:56:38 -05001416lpfc_plogi_confirm_nport(struct lpfc_hba *phba, uint32_t *prsp,
James Smart488d1462006-03-07 15:02:37 -05001417 struct lpfc_nodelist *ndlp)
1418{
James Smart2e0fef82007-06-17 19:56:36 -05001419 struct lpfc_vport *vport = ndlp->vport;
James Smart488d1462006-03-07 15:02:37 -05001420 struct lpfc_nodelist *new_ndlp;
James Smart0ff10d42008-01-11 01:52:36 -05001421 struct lpfc_rport_data *rdata;
1422 struct fc_rport *rport;
James Smart488d1462006-03-07 15:02:37 -05001423 struct serv_parm *sp;
James Smart92d7f7b2007-06-17 19:56:38 -05001424 uint8_t name[sizeof(struct lpfc_name)];
James Smart58da1ff2008-04-07 10:15:56 -04001425 uint32_t rc, keepDID = 0;
James Smart38b92ef2010-08-04 16:11:39 -04001426 int put_node;
1427 int put_rport;
James Smart19ca7602010-11-20 23:11:55 -05001428 struct lpfc_node_rrqs rrq;
James Smart488d1462006-03-07 15:02:37 -05001429
James Smart2fb9bd82006-12-02 13:33:57 -05001430 /* Fabric nodes can have the same WWPN so we don't bother searching
1431 * by WWPN. Just return the ndlp that was given to us.
1432 */
1433 if (ndlp->nlp_type & NLP_FABRIC)
1434 return ndlp;
1435
James Smart92d7f7b2007-06-17 19:56:38 -05001436 sp = (struct serv_parm *) ((uint8_t *) prsp + sizeof(uint32_t));
James Smart685f0bf2007-04-25 09:53:08 -04001437 memset(name, 0, sizeof(struct lpfc_name));
James Smart488d1462006-03-07 15:02:37 -05001438
James Smart685f0bf2007-04-25 09:53:08 -04001439 /* Now we find out if the NPort we are logging into, matches the WWPN
James Smart488d1462006-03-07 15:02:37 -05001440 * we have for that ndlp. If not, we have some work to do.
1441 */
James Smart2e0fef82007-06-17 19:56:36 -05001442 new_ndlp = lpfc_findnode_wwpn(vport, &sp->portName);
James Smart488d1462006-03-07 15:02:37 -05001443
James Smarte47c9092008-02-08 18:49:26 -05001444 if (new_ndlp == ndlp && NLP_CHK_NODE_ACT(new_ndlp))
James Smart488d1462006-03-07 15:02:37 -05001445 return ndlp;
James Smart19ca7602010-11-20 23:11:55 -05001446 memset(&rrq.xri_bitmap, 0, sizeof(new_ndlp->active_rrqs.xri_bitmap));
James Smart488d1462006-03-07 15:02:37 -05001447
1448 if (!new_ndlp) {
James Smart2e0fef82007-06-17 19:56:36 -05001449 rc = memcmp(&ndlp->nlp_portname, name,
1450 sizeof(struct lpfc_name));
James Smart92795652006-07-06 15:50:02 -04001451 if (!rc)
1452 return ndlp;
James Smart488d1462006-03-07 15:02:37 -05001453 new_ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_ATOMIC);
1454 if (!new_ndlp)
1455 return ndlp;
James Smart2e0fef82007-06-17 19:56:36 -05001456 lpfc_nlp_init(vport, new_ndlp, ndlp->nlp_DID);
James Smarte47c9092008-02-08 18:49:26 -05001457 } else if (!NLP_CHK_NODE_ACT(new_ndlp)) {
James Smart58da1ff2008-04-07 10:15:56 -04001458 rc = memcmp(&ndlp->nlp_portname, name,
1459 sizeof(struct lpfc_name));
1460 if (!rc)
1461 return ndlp;
James Smarte47c9092008-02-08 18:49:26 -05001462 new_ndlp = lpfc_enable_node(vport, new_ndlp,
1463 NLP_STE_UNUSED_NODE);
1464 if (!new_ndlp)
1465 return ndlp;
James Smart58da1ff2008-04-07 10:15:56 -04001466 keepDID = new_ndlp->nlp_DID;
James Smart19ca7602010-11-20 23:11:55 -05001467 if (phba->sli_rev == LPFC_SLI_REV4)
1468 memcpy(&rrq.xri_bitmap,
1469 &new_ndlp->active_rrqs.xri_bitmap,
1470 sizeof(new_ndlp->active_rrqs.xri_bitmap));
1471 } else {
James Smart58da1ff2008-04-07 10:15:56 -04001472 keepDID = new_ndlp->nlp_DID;
James Smart19ca7602010-11-20 23:11:55 -05001473 if (phba->sli_rev == LPFC_SLI_REV4)
1474 memcpy(&rrq.xri_bitmap,
1475 &new_ndlp->active_rrqs.xri_bitmap,
1476 sizeof(new_ndlp->active_rrqs.xri_bitmap));
1477 }
James Smart488d1462006-03-07 15:02:37 -05001478
James Smart2e0fef82007-06-17 19:56:36 -05001479 lpfc_unreg_rpi(vport, new_ndlp);
James Smart488d1462006-03-07 15:02:37 -05001480 new_ndlp->nlp_DID = ndlp->nlp_DID;
James Smart92795652006-07-06 15:50:02 -04001481 new_ndlp->nlp_prev_state = ndlp->nlp_prev_state;
James Smart19ca7602010-11-20 23:11:55 -05001482 if (phba->sli_rev == LPFC_SLI_REV4)
1483 memcpy(new_ndlp->active_rrqs.xri_bitmap,
1484 &ndlp->active_rrqs.xri_bitmap,
1485 sizeof(ndlp->active_rrqs.xri_bitmap));
James Smart0ff10d42008-01-11 01:52:36 -05001486
1487 if (ndlp->nlp_flag & NLP_NPR_2B_DISC)
1488 new_ndlp->nlp_flag |= NLP_NPR_2B_DISC;
1489 ndlp->nlp_flag &= ~NLP_NPR_2B_DISC;
1490
James Smarte47c9092008-02-08 18:49:26 -05001491 /* Set state will put new_ndlp on to node list if not already done */
James Smart2e0fef82007-06-17 19:56:36 -05001492 lpfc_nlp_set_state(vport, new_ndlp, ndlp->nlp_state);
James Smart488d1462006-03-07 15:02:37 -05001493
James Smart2e0fef82007-06-17 19:56:36 -05001494 /* Move this back to NPR state */
James Smart87af33f2007-10-27 13:37:43 -04001495 if (memcmp(&ndlp->nlp_portname, name, sizeof(struct lpfc_name)) == 0) {
1496 /* The new_ndlp is replacing ndlp totally, so we need
1497 * to put ndlp on UNUSED list and try to free it.
1498 */
James Smart0ff10d42008-01-11 01:52:36 -05001499
1500 /* Fix up the rport accordingly */
1501 rport = ndlp->rport;
1502 if (rport) {
1503 rdata = rport->dd_data;
1504 if (rdata->pnode == ndlp) {
1505 lpfc_nlp_put(ndlp);
1506 ndlp->rport = NULL;
1507 rdata->pnode = lpfc_nlp_get(new_ndlp);
1508 new_ndlp->rport = rport;
1509 }
1510 new_ndlp->nlp_type = ndlp->nlp_type;
1511 }
James Smart58da1ff2008-04-07 10:15:56 -04001512 /* We shall actually free the ndlp with both nlp_DID and
1513 * nlp_portname fields equals 0 to avoid any ndlp on the
1514 * nodelist never to be used.
1515 */
1516 if (ndlp->nlp_DID == 0) {
1517 spin_lock_irq(&phba->ndlp_lock);
1518 NLP_SET_FREE_REQ(ndlp);
1519 spin_unlock_irq(&phba->ndlp_lock);
1520 }
James Smart0ff10d42008-01-11 01:52:36 -05001521
James Smart58da1ff2008-04-07 10:15:56 -04001522 /* Two ndlps cannot have the same did on the nodelist */
1523 ndlp->nlp_DID = keepDID;
James Smart19ca7602010-11-20 23:11:55 -05001524 if (phba->sli_rev == LPFC_SLI_REV4)
1525 memcpy(&ndlp->active_rrqs.xri_bitmap,
1526 &rrq.xri_bitmap,
1527 sizeof(ndlp->active_rrqs.xri_bitmap));
James Smart2e0fef82007-06-17 19:56:36 -05001528 lpfc_drop_node(vport, ndlp);
James Smart87af33f2007-10-27 13:37:43 -04001529 }
James Smart92795652006-07-06 15:50:02 -04001530 else {
James Smart2e0fef82007-06-17 19:56:36 -05001531 lpfc_unreg_rpi(vport, ndlp);
James Smart58da1ff2008-04-07 10:15:56 -04001532 /* Two ndlps cannot have the same did */
1533 ndlp->nlp_DID = keepDID;
James Smart19ca7602010-11-20 23:11:55 -05001534 if (phba->sli_rev == LPFC_SLI_REV4)
1535 memcpy(&ndlp->active_rrqs.xri_bitmap,
1536 &rrq.xri_bitmap,
1537 sizeof(ndlp->active_rrqs.xri_bitmap));
James Smart38b92ef2010-08-04 16:11:39 -04001538 /* Since we are swapping the ndlp passed in with the new one
1539 * and the did has already been swapped, copy over the
1540 * state and names.
1541 */
1542 memcpy(&new_ndlp->nlp_portname, &ndlp->nlp_portname,
1543 sizeof(struct lpfc_name));
1544 memcpy(&new_ndlp->nlp_nodename, &ndlp->nlp_nodename,
1545 sizeof(struct lpfc_name));
1546 new_ndlp->nlp_state = ndlp->nlp_state;
James Smarteff4a012012-01-18 16:25:25 -05001547 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
James Smart38b92ef2010-08-04 16:11:39 -04001548 /* Fix up the rport accordingly */
1549 rport = ndlp->rport;
1550 if (rport) {
1551 rdata = rport->dd_data;
1552 put_node = rdata->pnode != NULL;
1553 put_rport = ndlp->rport != NULL;
1554 rdata->pnode = NULL;
1555 ndlp->rport = NULL;
1556 if (put_node)
1557 lpfc_nlp_put(ndlp);
1558 if (put_rport)
1559 put_device(&rport->dev);
1560 }
James Smart92795652006-07-06 15:50:02 -04001561 }
James Smart488d1462006-03-07 15:02:37 -05001562 return new_ndlp;
1563}
1564
James Smarte59058c2008-08-24 21:49:00 -04001565/**
James Smart3621a712009-04-06 18:47:14 -04001566 * lpfc_end_rscn - Check and handle more rscn for a vport
James Smarte59058c2008-08-24 21:49:00 -04001567 * @vport: pointer to a host virtual N_Port data structure.
1568 *
1569 * This routine checks whether more Registration State Change
1570 * Notifications (RSCNs) came in while the discovery state machine was in
1571 * the FC_RSCN_MODE. If so, the lpfc_els_handle_rscn() routine will be
1572 * invoked to handle the additional RSCNs for the @vport. Otherwise, the
1573 * FC_RSCN_MODE bit will be cleared with the @vport to mark as the end of
1574 * handling the RSCNs.
1575 **/
James Smart87af33f2007-10-27 13:37:43 -04001576void
1577lpfc_end_rscn(struct lpfc_vport *vport)
1578{
1579 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1580
1581 if (vport->fc_flag & FC_RSCN_MODE) {
1582 /*
1583 * Check to see if more RSCNs came in while we were
1584 * processing this one.
1585 */
1586 if (vport->fc_rscn_id_cnt ||
1587 (vport->fc_flag & FC_RSCN_DISCOVERY) != 0)
1588 lpfc_els_handle_rscn(vport);
1589 else {
1590 spin_lock_irq(shost->host_lock);
1591 vport->fc_flag &= ~FC_RSCN_MODE;
1592 spin_unlock_irq(shost->host_lock);
1593 }
1594 }
1595}
1596
James Smarte59058c2008-08-24 21:49:00 -04001597/**
James Smart19ca7602010-11-20 23:11:55 -05001598 * lpfc_cmpl_els_rrq - Completion handled for els RRQs.
1599 * @phba: pointer to lpfc hba data structure.
1600 * @cmdiocb: pointer to lpfc command iocb data structure.
1601 * @rspiocb: pointer to lpfc response iocb data structure.
1602 *
1603 * This routine will call the clear rrq function to free the rrq and
1604 * clear the xri's bit in the ndlp's xri_bitmap. If the ndlp does not
1605 * exist then the clear_rrq is still called because the rrq needs to
1606 * be freed.
1607 **/
1608
1609static void
1610lpfc_cmpl_els_rrq(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
1611 struct lpfc_iocbq *rspiocb)
1612{
1613 struct lpfc_vport *vport = cmdiocb->vport;
1614 IOCB_t *irsp;
1615 struct lpfc_nodelist *ndlp;
1616 struct lpfc_node_rrq *rrq;
1617
1618 /* we pass cmdiocb to state machine which needs rspiocb as well */
1619 rrq = cmdiocb->context_un.rrq;
1620 cmdiocb->context_un.rsp_iocb = rspiocb;
1621
1622 irsp = &rspiocb->iocb;
1623 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
1624 "RRQ cmpl: status:x%x/x%x did:x%x",
1625 irsp->ulpStatus, irsp->un.ulpWord[4],
1626 irsp->un.elsreq64.remoteID);
1627
1628 ndlp = lpfc_findnode_did(vport, irsp->un.elsreq64.remoteID);
1629 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp) || ndlp != rrq->ndlp) {
1630 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
1631 "2882 RRQ completes to NPort x%x "
1632 "with no ndlp. Data: x%x x%x x%x\n",
1633 irsp->un.elsreq64.remoteID,
1634 irsp->ulpStatus, irsp->un.ulpWord[4],
1635 irsp->ulpIoTag);
1636 goto out;
1637 }
1638
1639 /* rrq completes to NPort <nlp_DID> */
1640 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
1641 "2880 RRQ completes to NPort x%x "
1642 "Data: x%x x%x x%x x%x x%x\n",
1643 ndlp->nlp_DID, irsp->ulpStatus, irsp->un.ulpWord[4],
1644 irsp->ulpTimeout, rrq->xritag, rrq->rxid);
1645
1646 if (irsp->ulpStatus) {
1647 /* Check for retry */
1648 /* RRQ failed Don't print the vport to vport rjts */
1649 if (irsp->ulpStatus != IOSTAT_LS_RJT ||
1650 (((irsp->un.ulpWord[4]) >> 16 != LSRJT_INVALID_CMD) &&
1651 ((irsp->un.ulpWord[4]) >> 16 != LSRJT_UNABLE_TPC)) ||
1652 (phba)->pport->cfg_log_verbose & LOG_ELS)
1653 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
1654 "2881 RRQ failure DID:%06X Status:x%x/x%x\n",
1655 ndlp->nlp_DID, irsp->ulpStatus,
1656 irsp->un.ulpWord[4]);
1657 }
1658out:
1659 if (rrq)
1660 lpfc_clr_rrq_active(phba, rrq->xritag, rrq);
1661 lpfc_els_free_iocb(phba, cmdiocb);
1662 return;
1663}
1664/**
James Smart3621a712009-04-06 18:47:14 -04001665 * lpfc_cmpl_els_plogi - Completion callback function for plogi
James Smarte59058c2008-08-24 21:49:00 -04001666 * @phba: pointer to lpfc hba data structure.
1667 * @cmdiocb: pointer to lpfc command iocb data structure.
1668 * @rspiocb: pointer to lpfc response iocb data structure.
1669 *
1670 * This routine is the completion callback function for issuing the Port
1671 * Login (PLOGI) command. For PLOGI completion, there must be an active
1672 * ndlp on the vport node list that matches the remote node ID from the
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001673 * PLOGI response IOCB. If such ndlp does not exist, the PLOGI is simply
James Smarte59058c2008-08-24 21:49:00 -04001674 * ignored and command IOCB released. The PLOGI response IOCB status is
1675 * checked for error conditons. If there is error status reported, PLOGI
1676 * retry shall be attempted by invoking the lpfc_els_retry() routine.
1677 * Otherwise, the lpfc_plogi_confirm_nport() routine shall be invoked on
1678 * the ndlp and the NLP_EVT_CMPL_PLOGI state to the Discover State Machine
1679 * (DSM) is set for this PLOGI completion. Finally, it checks whether
1680 * there are additional N_Port nodes with the vport that need to perform
1681 * PLOGI. If so, the lpfc_more_plogi() routine is invoked to issue addition
1682 * PLOGIs.
1683 **/
dea31012005-04-17 16:05:31 -05001684static void
James Smart2e0fef82007-06-17 19:56:36 -05001685lpfc_cmpl_els_plogi(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
1686 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05001687{
James Smart2e0fef82007-06-17 19:56:36 -05001688 struct lpfc_vport *vport = cmdiocb->vport;
1689 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05001690 IOCB_t *irsp;
dea31012005-04-17 16:05:31 -05001691 struct lpfc_nodelist *ndlp;
James Smart92795652006-07-06 15:50:02 -04001692 struct lpfc_dmabuf *prsp;
dea31012005-04-17 16:05:31 -05001693 int disc, rc, did, type;
1694
dea31012005-04-17 16:05:31 -05001695 /* we pass cmdiocb to state machine which needs rspiocb as well */
1696 cmdiocb->context_un.rsp_iocb = rspiocb;
1697
1698 irsp = &rspiocb->iocb;
James Smart858c9f62007-06-17 19:56:39 -05001699 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
1700 "PLOGI cmpl: status:x%x/x%x did:x%x",
1701 irsp->ulpStatus, irsp->un.ulpWord[4],
1702 irsp->un.elsreq64.remoteID);
1703
James Smart2e0fef82007-06-17 19:56:36 -05001704 ndlp = lpfc_findnode_did(vport, irsp->un.elsreq64.remoteID);
James Smarte47c9092008-02-08 18:49:26 -05001705 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp)) {
James Smarte8b62012007-08-02 11:10:09 -04001706 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
1707 "0136 PLOGI completes to NPort x%x "
1708 "with no ndlp. Data: x%x x%x x%x\n",
1709 irsp->un.elsreq64.remoteID,
1710 irsp->ulpStatus, irsp->un.ulpWord[4],
1711 irsp->ulpIoTag);
James Smart488d1462006-03-07 15:02:37 -05001712 goto out;
James Smarted957682007-06-17 19:56:37 -05001713 }
dea31012005-04-17 16:05:31 -05001714
1715 /* Since ndlp can be freed in the disc state machine, note if this node
1716 * is being used during discovery.
1717 */
James Smart2e0fef82007-06-17 19:56:36 -05001718 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001719 disc = (ndlp->nlp_flag & NLP_NPR_2B_DISC);
James Smart488d1462006-03-07 15:02:37 -05001720 ndlp->nlp_flag &= ~NLP_NPR_2B_DISC;
James Smart2e0fef82007-06-17 19:56:36 -05001721 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001722 rc = 0;
1723
1724 /* PLOGI completes to NPort <nlp_DID> */
James Smarte8b62012007-08-02 11:10:09 -04001725 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
1726 "0102 PLOGI completes to NPort x%x "
1727 "Data: x%x x%x x%x x%x x%x\n",
1728 ndlp->nlp_DID, irsp->ulpStatus, irsp->un.ulpWord[4],
1729 irsp->ulpTimeout, disc, vport->num_disc_nodes);
dea31012005-04-17 16:05:31 -05001730 /* Check to see if link went down during discovery */
James Smart2e0fef82007-06-17 19:56:36 -05001731 if (lpfc_els_chk_latt(vport)) {
1732 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001733 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
James Smart2e0fef82007-06-17 19:56:36 -05001734 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001735 goto out;
1736 }
1737
1738 /* ndlp could be freed in DSM, save these values now */
1739 type = ndlp->nlp_type;
1740 did = ndlp->nlp_DID;
1741
1742 if (irsp->ulpStatus) {
1743 /* Check for retry */
1744 if (lpfc_els_retry(phba, cmdiocb, rspiocb)) {
1745 /* ELS command is being retried */
1746 if (disc) {
James Smart2e0fef82007-06-17 19:56:36 -05001747 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001748 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
James Smart2e0fef82007-06-17 19:56:36 -05001749 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001750 }
1751 goto out;
1752 }
James Smart2a9bf3d2010-06-07 15:24:45 -04001753 /* PLOGI failed Don't print the vport to vport rjts */
1754 if (irsp->ulpStatus != IOSTAT_LS_RJT ||
1755 (((irsp->un.ulpWord[4]) >> 16 != LSRJT_INVALID_CMD) &&
1756 ((irsp->un.ulpWord[4]) >> 16 != LSRJT_UNABLE_TPC)) ||
1757 (phba)->pport->cfg_log_verbose & LOG_ELS)
1758 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
James Smarte40a02c2010-02-26 14:13:54 -05001759 "2753 PLOGI failure DID:%06X Status:x%x/x%x\n",
1760 ndlp->nlp_DID, irsp->ulpStatus,
1761 irsp->un.ulpWord[4]);
dea31012005-04-17 16:05:31 -05001762 /* Do not call DSM for lpfc_els_abort'ed ELS cmds */
James Smarte47c9092008-02-08 18:49:26 -05001763 if (lpfc_error_lost_link(irsp))
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001764 rc = NLP_STE_FREED_NODE;
James Smarte47c9092008-02-08 18:49:26 -05001765 else
James Smart2e0fef82007-06-17 19:56:36 -05001766 rc = lpfc_disc_state_machine(vport, ndlp, cmdiocb,
James Smart92d7f7b2007-06-17 19:56:38 -05001767 NLP_EVT_CMPL_PLOGI);
dea31012005-04-17 16:05:31 -05001768 } else {
1769 /* Good status, call state machine */
James Smart92795652006-07-06 15:50:02 -04001770 prsp = list_entry(((struct lpfc_dmabuf *)
James Smart92d7f7b2007-06-17 19:56:38 -05001771 cmdiocb->context2)->list.next,
1772 struct lpfc_dmabuf, list);
1773 ndlp = lpfc_plogi_confirm_nport(phba, prsp->virt, ndlp);
James Smart2e0fef82007-06-17 19:56:36 -05001774 rc = lpfc_disc_state_machine(vport, ndlp, cmdiocb,
James Smart92d7f7b2007-06-17 19:56:38 -05001775 NLP_EVT_CMPL_PLOGI);
dea31012005-04-17 16:05:31 -05001776 }
1777
James Smart2e0fef82007-06-17 19:56:36 -05001778 if (disc && vport->num_disc_nodes) {
dea31012005-04-17 16:05:31 -05001779 /* Check to see if there are more PLOGIs to be sent */
James Smart2e0fef82007-06-17 19:56:36 -05001780 lpfc_more_plogi(vport);
dea31012005-04-17 16:05:31 -05001781
James Smart2e0fef82007-06-17 19:56:36 -05001782 if (vport->num_disc_nodes == 0) {
1783 spin_lock_irq(shost->host_lock);
1784 vport->fc_flag &= ~FC_NDISC_ACTIVE;
1785 spin_unlock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001786
James Smart2e0fef82007-06-17 19:56:36 -05001787 lpfc_can_disctmo(vport);
James Smart87af33f2007-10-27 13:37:43 -04001788 lpfc_end_rscn(vport);
dea31012005-04-17 16:05:31 -05001789 }
1790 }
1791
1792out:
1793 lpfc_els_free_iocb(phba, cmdiocb);
1794 return;
1795}
1796
James Smarte59058c2008-08-24 21:49:00 -04001797/**
James Smart3621a712009-04-06 18:47:14 -04001798 * lpfc_issue_els_plogi - Issue an plogi iocb command for a vport
James Smarte59058c2008-08-24 21:49:00 -04001799 * @vport: pointer to a host virtual N_Port data structure.
1800 * @did: destination port identifier.
1801 * @retry: number of retries to the command IOCB.
1802 *
1803 * This routine issues a Port Login (PLOGI) command to a remote N_Port
1804 * (with the @did) for a @vport. Before issuing a PLOGI to a remote N_Port,
1805 * the ndlp with the remote N_Port DID must exist on the @vport's ndlp list.
1806 * This routine constructs the proper feilds of the PLOGI IOCB and invokes
1807 * the lpfc_sli_issue_iocb() routine to send out PLOGI ELS command.
1808 *
1809 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
1810 * will be incremented by 1 for holding the ndlp and the reference to ndlp
1811 * will be stored into the context1 field of the IOCB for the completion
1812 * callback function to the PLOGI ELS command.
1813 *
1814 * Return code
1815 * 0 - Successfully issued a plogi for @vport
1816 * 1 - failed to issue a plogi for @vport
1817 **/
dea31012005-04-17 16:05:31 -05001818int
James Smart2e0fef82007-06-17 19:56:36 -05001819lpfc_issue_els_plogi(struct lpfc_vport *vport, uint32_t did, uint8_t retry)
dea31012005-04-17 16:05:31 -05001820{
James Smart2e0fef82007-06-17 19:56:36 -05001821 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05001822 struct serv_parm *sp;
1823 IOCB_t *icmd;
James Smart98c9ea52007-10-27 13:37:33 -04001824 struct lpfc_nodelist *ndlp;
dea31012005-04-17 16:05:31 -05001825 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05001826 struct lpfc_sli *psli;
1827 uint8_t *pcmd;
1828 uint16_t cmdsize;
James Smart92d7f7b2007-06-17 19:56:38 -05001829 int ret;
dea31012005-04-17 16:05:31 -05001830
1831 psli = &phba->sli;
dea31012005-04-17 16:05:31 -05001832
James Smart98c9ea52007-10-27 13:37:33 -04001833 ndlp = lpfc_findnode_did(vport, did);
James Smarte47c9092008-02-08 18:49:26 -05001834 if (ndlp && !NLP_CHK_NODE_ACT(ndlp))
1835 ndlp = NULL;
James Smart98c9ea52007-10-27 13:37:33 -04001836
James Smarte47c9092008-02-08 18:49:26 -05001837 /* If ndlp is not NULL, we will bump the reference count on it */
James Smart92d7f7b2007-06-17 19:56:38 -05001838 cmdsize = (sizeof(uint32_t) + sizeof(struct serv_parm));
James Smart98c9ea52007-10-27 13:37:33 -04001839 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp, did,
James Smart2e0fef82007-06-17 19:56:36 -05001840 ELS_CMD_PLOGI);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001841 if (!elsiocb)
1842 return 1;
dea31012005-04-17 16:05:31 -05001843
1844 icmd = &elsiocb->iocb;
1845 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
1846
1847 /* For PLOGI request, remainder of payload is service parameters */
1848 *((uint32_t *) (pcmd)) = ELS_CMD_PLOGI;
James Smart92d7f7b2007-06-17 19:56:38 -05001849 pcmd += sizeof(uint32_t);
1850 memcpy(pcmd, &vport->fc_sparam, sizeof(struct serv_parm));
dea31012005-04-17 16:05:31 -05001851 sp = (struct serv_parm *) pcmd;
1852
James Smart5ac6b302010-10-22 11:05:36 -04001853 /*
1854 * If we are a N-port connected to a Fabric, fix-up paramm's so logins
1855 * to device on remote loops work.
1856 */
1857 if ((vport->fc_flag & FC_FABRIC) && !(vport->fc_flag & FC_PUBLIC_LOOP))
1858 sp->cmn.altBbCredit = 1;
1859
dea31012005-04-17 16:05:31 -05001860 if (sp->cmn.fcphLow < FC_PH_4_3)
1861 sp->cmn.fcphLow = FC_PH_4_3;
1862
1863 if (sp->cmn.fcphHigh < FC_PH3)
1864 sp->cmn.fcphHigh = FC_PH3;
1865
James Smart858c9f62007-06-17 19:56:39 -05001866 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
1867 "Issue PLOGI: did:x%x",
1868 did, 0, 0);
1869
dea31012005-04-17 16:05:31 -05001870 phba->fc_stat.elsXmitPLOGI++;
1871 elsiocb->iocb_cmpl = lpfc_cmpl_els_plogi;
James Smart3772a992009-05-22 14:50:54 -04001872 ret = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
James Smart92d7f7b2007-06-17 19:56:38 -05001873
1874 if (ret == IOCB_ERROR) {
dea31012005-04-17 16:05:31 -05001875 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001876 return 1;
dea31012005-04-17 16:05:31 -05001877 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001878 return 0;
dea31012005-04-17 16:05:31 -05001879}
1880
James Smarte59058c2008-08-24 21:49:00 -04001881/**
James Smart3621a712009-04-06 18:47:14 -04001882 * lpfc_cmpl_els_prli - Completion callback function for prli
James Smarte59058c2008-08-24 21:49:00 -04001883 * @phba: pointer to lpfc hba data structure.
1884 * @cmdiocb: pointer to lpfc command iocb data structure.
1885 * @rspiocb: pointer to lpfc response iocb data structure.
1886 *
1887 * This routine is the completion callback function for a Process Login
1888 * (PRLI) ELS command. The PRLI response IOCB status is checked for error
1889 * status. If there is error status reported, PRLI retry shall be attempted
1890 * by invoking the lpfc_els_retry() routine. Otherwise, the state
1891 * NLP_EVT_CMPL_PRLI is sent to the Discover State Machine (DSM) for this
1892 * ndlp to mark the PRLI completion.
1893 **/
dea31012005-04-17 16:05:31 -05001894static void
James Smart2e0fef82007-06-17 19:56:36 -05001895lpfc_cmpl_els_prli(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
1896 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05001897{
James Smart2e0fef82007-06-17 19:56:36 -05001898 struct lpfc_vport *vport = cmdiocb->vport;
1899 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05001900 IOCB_t *irsp;
1901 struct lpfc_sli *psli;
1902 struct lpfc_nodelist *ndlp;
1903
1904 psli = &phba->sli;
1905 /* we pass cmdiocb to state machine which needs rspiocb as well */
1906 cmdiocb->context_un.rsp_iocb = rspiocb;
1907
1908 irsp = &(rspiocb->iocb);
1909 ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
James Smart2e0fef82007-06-17 19:56:36 -05001910 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001911 ndlp->nlp_flag &= ~NLP_PRLI_SND;
James Smart2e0fef82007-06-17 19:56:36 -05001912 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001913
James Smart858c9f62007-06-17 19:56:39 -05001914 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
1915 "PRLI cmpl: status:x%x/x%x did:x%x",
1916 irsp->ulpStatus, irsp->un.ulpWord[4],
1917 ndlp->nlp_DID);
dea31012005-04-17 16:05:31 -05001918 /* PRLI completes to NPort <nlp_DID> */
James Smarte8b62012007-08-02 11:10:09 -04001919 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
1920 "0103 PRLI completes to NPort x%x "
1921 "Data: x%x x%x x%x x%x\n",
1922 ndlp->nlp_DID, irsp->ulpStatus, irsp->un.ulpWord[4],
1923 irsp->ulpTimeout, vport->num_disc_nodes);
dea31012005-04-17 16:05:31 -05001924
James Smart2e0fef82007-06-17 19:56:36 -05001925 vport->fc_prli_sent--;
dea31012005-04-17 16:05:31 -05001926 /* Check to see if link went down during discovery */
James Smart2e0fef82007-06-17 19:56:36 -05001927 if (lpfc_els_chk_latt(vport))
dea31012005-04-17 16:05:31 -05001928 goto out;
1929
1930 if (irsp->ulpStatus) {
1931 /* Check for retry */
1932 if (lpfc_els_retry(phba, cmdiocb, rspiocb)) {
1933 /* ELS command is being retried */
1934 goto out;
1935 }
1936 /* PRLI failed */
James Smarte40a02c2010-02-26 14:13:54 -05001937 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
1938 "2754 PRLI failure DID:%06X Status:x%x/x%x\n",
1939 ndlp->nlp_DID, irsp->ulpStatus,
1940 irsp->un.ulpWord[4]);
dea31012005-04-17 16:05:31 -05001941 /* Do not call DSM for lpfc_els_abort'ed ELS cmds */
James Smarte47c9092008-02-08 18:49:26 -05001942 if (lpfc_error_lost_link(irsp))
dea31012005-04-17 16:05:31 -05001943 goto out;
James Smarte47c9092008-02-08 18:49:26 -05001944 else
James Smart2e0fef82007-06-17 19:56:36 -05001945 lpfc_disc_state_machine(vport, ndlp, cmdiocb,
James Smart92d7f7b2007-06-17 19:56:38 -05001946 NLP_EVT_CMPL_PRLI);
James Smarte47c9092008-02-08 18:49:26 -05001947 } else
dea31012005-04-17 16:05:31 -05001948 /* Good status, call state machine */
James Smart2e0fef82007-06-17 19:56:36 -05001949 lpfc_disc_state_machine(vport, ndlp, cmdiocb,
James Smart92d7f7b2007-06-17 19:56:38 -05001950 NLP_EVT_CMPL_PRLI);
dea31012005-04-17 16:05:31 -05001951out:
1952 lpfc_els_free_iocb(phba, cmdiocb);
1953 return;
1954}
1955
James Smarte59058c2008-08-24 21:49:00 -04001956/**
James Smart3621a712009-04-06 18:47:14 -04001957 * lpfc_issue_els_prli - Issue a prli iocb command for a vport
James Smarte59058c2008-08-24 21:49:00 -04001958 * @vport: pointer to a host virtual N_Port data structure.
1959 * @ndlp: pointer to a node-list data structure.
1960 * @retry: number of retries to the command IOCB.
1961 *
1962 * This routine issues a Process Login (PRLI) ELS command for the
1963 * @vport. The PRLI service parameters are set up in the payload of the
1964 * PRLI Request command and the pointer to lpfc_cmpl_els_prli() routine
1965 * is put to the IOCB completion callback func field before invoking the
1966 * routine lpfc_sli_issue_iocb() to send out PRLI command.
1967 *
1968 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
1969 * will be incremented by 1 for holding the ndlp and the reference to ndlp
1970 * will be stored into the context1 field of the IOCB for the completion
1971 * callback function to the PRLI ELS command.
1972 *
1973 * Return code
1974 * 0 - successfully issued prli iocb command for @vport
1975 * 1 - failed to issue prli iocb command for @vport
1976 **/
dea31012005-04-17 16:05:31 -05001977int
James Smart2e0fef82007-06-17 19:56:36 -05001978lpfc_issue_els_prli(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
dea31012005-04-17 16:05:31 -05001979 uint8_t retry)
1980{
James Smart2e0fef82007-06-17 19:56:36 -05001981 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1982 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05001983 PRLI *npr;
1984 IOCB_t *icmd;
1985 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05001986 uint8_t *pcmd;
1987 uint16_t cmdsize;
1988
James Smart92d7f7b2007-06-17 19:56:38 -05001989 cmdsize = (sizeof(uint32_t) + sizeof(PRLI));
James Smart2e0fef82007-06-17 19:56:36 -05001990 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
1991 ndlp->nlp_DID, ELS_CMD_PRLI);
James Smart488d1462006-03-07 15:02:37 -05001992 if (!elsiocb)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001993 return 1;
dea31012005-04-17 16:05:31 -05001994
1995 icmd = &elsiocb->iocb;
1996 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
1997
1998 /* For PRLI request, remainder of payload is service parameters */
James Smart92d7f7b2007-06-17 19:56:38 -05001999 memset(pcmd, 0, (sizeof(PRLI) + sizeof(uint32_t)));
dea31012005-04-17 16:05:31 -05002000 *((uint32_t *) (pcmd)) = ELS_CMD_PRLI;
James Smart92d7f7b2007-06-17 19:56:38 -05002001 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05002002
2003 /* For PRLI, remainder of payload is PRLI parameter page */
2004 npr = (PRLI *) pcmd;
2005 /*
2006 * If our firmware version is 3.20 or later,
2007 * set the following bits for FC-TAPE support.
2008 */
2009 if (phba->vpd.rev.feaLevelHigh >= 0x02) {
2010 npr->ConfmComplAllowed = 1;
2011 npr->Retry = 1;
2012 npr->TaskRetryIdReq = 1;
2013 }
2014 npr->estabImagePair = 1;
2015 npr->readXferRdyDis = 1;
2016
2017 /* For FCP support */
2018 npr->prliType = PRLI_FCP_TYPE;
2019 npr->initiatorFunc = 1;
2020
James Smart858c9f62007-06-17 19:56:39 -05002021 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2022 "Issue PRLI: did:x%x",
2023 ndlp->nlp_DID, 0, 0);
2024
dea31012005-04-17 16:05:31 -05002025 phba->fc_stat.elsXmitPRLI++;
2026 elsiocb->iocb_cmpl = lpfc_cmpl_els_prli;
James Smart2e0fef82007-06-17 19:56:36 -05002027 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002028 ndlp->nlp_flag |= NLP_PRLI_SND;
James Smart2e0fef82007-06-17 19:56:36 -05002029 spin_unlock_irq(shost->host_lock);
James Smart3772a992009-05-22 14:50:54 -04002030 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) ==
2031 IOCB_ERROR) {
James Smart2e0fef82007-06-17 19:56:36 -05002032 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002033 ndlp->nlp_flag &= ~NLP_PRLI_SND;
James Smart2e0fef82007-06-17 19:56:36 -05002034 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002035 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002036 return 1;
dea31012005-04-17 16:05:31 -05002037 }
James Smart2e0fef82007-06-17 19:56:36 -05002038 vport->fc_prli_sent++;
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002039 return 0;
dea31012005-04-17 16:05:31 -05002040}
2041
James Smarte59058c2008-08-24 21:49:00 -04002042/**
James Smart3621a712009-04-06 18:47:14 -04002043 * lpfc_rscn_disc - Perform rscn discovery for a vport
James Smart90160e02008-08-24 21:49:45 -04002044 * @vport: pointer to a host virtual N_Port data structure.
2045 *
2046 * This routine performs Registration State Change Notification (RSCN)
2047 * discovery for a @vport. If the @vport's node port recovery count is not
2048 * zero, it will invoke the lpfc_els_disc_plogi() to perform PLOGI for all
2049 * the nodes that need recovery. If none of the PLOGI were needed through
2050 * the lpfc_els_disc_plogi() routine, the lpfc_end_rscn() routine shall be
2051 * invoked to check and handle possible more RSCN came in during the period
2052 * of processing the current ones.
2053 **/
2054static void
2055lpfc_rscn_disc(struct lpfc_vport *vport)
2056{
2057 lpfc_can_disctmo(vport);
2058
2059 /* RSCN discovery */
2060 /* go thru NPR nodes and issue ELS PLOGIs */
2061 if (vport->fc_npr_cnt)
2062 if (lpfc_els_disc_plogi(vport))
2063 return;
2064
2065 lpfc_end_rscn(vport);
2066}
2067
2068/**
James Smart3621a712009-04-06 18:47:14 -04002069 * lpfc_adisc_done - Complete the adisc phase of discovery
James Smart90160e02008-08-24 21:49:45 -04002070 * @vport: pointer to lpfc_vport hba data structure that finished all ADISCs.
2071 *
2072 * This function is called when the final ADISC is completed during discovery.
2073 * This function handles clearing link attention or issuing reg_vpi depending
2074 * on whether npiv is enabled. This function also kicks off the PLOGI phase of
2075 * discovery.
2076 * This function is called with no locks held.
2077 **/
2078static void
2079lpfc_adisc_done(struct lpfc_vport *vport)
2080{
2081 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2082 struct lpfc_hba *phba = vport->phba;
2083
2084 /*
2085 * For NPIV, cmpl_reg_vpi will set port_state to READY,
2086 * and continue discovery.
2087 */
2088 if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
James Smart6fb120a2009-05-22 14:52:59 -04002089 !(vport->fc_flag & FC_RSCN_MODE) &&
2090 (phba->sli_rev < LPFC_SLI_REV4)) {
James Smart90160e02008-08-24 21:49:45 -04002091 lpfc_issue_reg_vpi(phba, vport);
2092 return;
2093 }
2094 /*
2095 * For SLI2, we need to set port_state to READY
2096 * and continue discovery.
2097 */
2098 if (vport->port_state < LPFC_VPORT_READY) {
2099 /* If we get here, there is nothing to ADISC */
2100 if (vport->port_type == LPFC_PHYSICAL_PORT)
2101 lpfc_issue_clear_la(phba, vport);
2102 if (!(vport->fc_flag & FC_ABORT_DISCOVERY)) {
2103 vport->num_disc_nodes = 0;
2104 /* go thru NPR list, issue ELS PLOGIs */
2105 if (vport->fc_npr_cnt)
2106 lpfc_els_disc_plogi(vport);
2107 if (!vport->num_disc_nodes) {
2108 spin_lock_irq(shost->host_lock);
2109 vport->fc_flag &= ~FC_NDISC_ACTIVE;
2110 spin_unlock_irq(shost->host_lock);
2111 lpfc_can_disctmo(vport);
2112 lpfc_end_rscn(vport);
2113 }
2114 }
2115 vport->port_state = LPFC_VPORT_READY;
2116 } else
2117 lpfc_rscn_disc(vport);
2118}
2119
2120/**
James Smart3621a712009-04-06 18:47:14 -04002121 * lpfc_more_adisc - Issue more adisc as needed
James Smarte59058c2008-08-24 21:49:00 -04002122 * @vport: pointer to a host virtual N_Port data structure.
2123 *
2124 * This routine determines whether there are more ndlps on a @vport
2125 * node list need to have Address Discover (ADISC) issued. If so, it will
2126 * invoke the lpfc_els_disc_adisc() routine to issue ADISC on the @vport's
2127 * remaining nodes which need to have ADISC sent.
2128 **/
James Smart0ff10d42008-01-11 01:52:36 -05002129void
James Smart2e0fef82007-06-17 19:56:36 -05002130lpfc_more_adisc(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05002131{
2132 int sentadisc;
2133
James Smart2e0fef82007-06-17 19:56:36 -05002134 if (vport->num_disc_nodes)
2135 vport->num_disc_nodes--;
dea31012005-04-17 16:05:31 -05002136 /* Continue discovery with <num_disc_nodes> ADISCs to go */
James Smarte8b62012007-08-02 11:10:09 -04002137 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
2138 "0210 Continue discovery with %d ADISCs to go "
2139 "Data: x%x x%x x%x\n",
2140 vport->num_disc_nodes, vport->fc_adisc_cnt,
2141 vport->fc_flag, vport->port_state);
dea31012005-04-17 16:05:31 -05002142 /* Check to see if there are more ADISCs to be sent */
James Smart2e0fef82007-06-17 19:56:36 -05002143 if (vport->fc_flag & FC_NLP_MORE) {
2144 lpfc_set_disctmo(vport);
2145 /* go thru NPR nodes and issue any remaining ELS ADISCs */
2146 sentadisc = lpfc_els_disc_adisc(vport);
dea31012005-04-17 16:05:31 -05002147 }
James Smart90160e02008-08-24 21:49:45 -04002148 if (!vport->num_disc_nodes)
2149 lpfc_adisc_done(vport);
dea31012005-04-17 16:05:31 -05002150 return;
2151}
2152
James Smarte59058c2008-08-24 21:49:00 -04002153/**
James Smart3621a712009-04-06 18:47:14 -04002154 * lpfc_cmpl_els_adisc - Completion callback function for adisc
James Smarte59058c2008-08-24 21:49:00 -04002155 * @phba: pointer to lpfc hba data structure.
2156 * @cmdiocb: pointer to lpfc command iocb data structure.
2157 * @rspiocb: pointer to lpfc response iocb data structure.
2158 *
2159 * This routine is the completion function for issuing the Address Discover
2160 * (ADISC) command. It first checks to see whether link went down during
2161 * the discovery process. If so, the node will be marked as node port
2162 * recovery for issuing discover IOCB by the link attention handler and
2163 * exit. Otherwise, the response status is checked. If error was reported
2164 * in the response status, the ADISC command shall be retried by invoking
2165 * the lpfc_els_retry() routine. Otherwise, if no error was reported in
2166 * the response status, the state machine is invoked to set transition
2167 * with respect to NLP_EVT_CMPL_ADISC event.
2168 **/
dea31012005-04-17 16:05:31 -05002169static void
James Smart2e0fef82007-06-17 19:56:36 -05002170lpfc_cmpl_els_adisc(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
2171 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05002172{
James Smart2e0fef82007-06-17 19:56:36 -05002173 struct lpfc_vport *vport = cmdiocb->vport;
2174 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05002175 IOCB_t *irsp;
dea31012005-04-17 16:05:31 -05002176 struct lpfc_nodelist *ndlp;
James Smart2e0fef82007-06-17 19:56:36 -05002177 int disc;
dea31012005-04-17 16:05:31 -05002178
2179 /* we pass cmdiocb to state machine which needs rspiocb as well */
2180 cmdiocb->context_un.rsp_iocb = rspiocb;
2181
2182 irsp = &(rspiocb->iocb);
2183 ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
dea31012005-04-17 16:05:31 -05002184
James Smart858c9f62007-06-17 19:56:39 -05002185 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2186 "ADISC cmpl: status:x%x/x%x did:x%x",
2187 irsp->ulpStatus, irsp->un.ulpWord[4],
2188 ndlp->nlp_DID);
2189
dea31012005-04-17 16:05:31 -05002190 /* Since ndlp can be freed in the disc state machine, note if this node
2191 * is being used during discovery.
2192 */
James Smart2e0fef82007-06-17 19:56:36 -05002193 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002194 disc = (ndlp->nlp_flag & NLP_NPR_2B_DISC);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002195 ndlp->nlp_flag &= ~(NLP_ADISC_SND | NLP_NPR_2B_DISC);
James Smart2e0fef82007-06-17 19:56:36 -05002196 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002197 /* ADISC completes to NPort <nlp_DID> */
James Smarte8b62012007-08-02 11:10:09 -04002198 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
2199 "0104 ADISC completes to NPort x%x "
2200 "Data: x%x x%x x%x x%x x%x\n",
2201 ndlp->nlp_DID, irsp->ulpStatus, irsp->un.ulpWord[4],
2202 irsp->ulpTimeout, disc, vport->num_disc_nodes);
dea31012005-04-17 16:05:31 -05002203 /* Check to see if link went down during discovery */
James Smart2e0fef82007-06-17 19:56:36 -05002204 if (lpfc_els_chk_latt(vport)) {
2205 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002206 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
James Smart2e0fef82007-06-17 19:56:36 -05002207 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002208 goto out;
2209 }
2210
2211 if (irsp->ulpStatus) {
2212 /* Check for retry */
2213 if (lpfc_els_retry(phba, cmdiocb, rspiocb)) {
2214 /* ELS command is being retried */
2215 if (disc) {
James Smart2e0fef82007-06-17 19:56:36 -05002216 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002217 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
James Smart2e0fef82007-06-17 19:56:36 -05002218 spin_unlock_irq(shost->host_lock);
2219 lpfc_set_disctmo(vport);
dea31012005-04-17 16:05:31 -05002220 }
2221 goto out;
2222 }
2223 /* ADISC failed */
James Smarte40a02c2010-02-26 14:13:54 -05002224 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
2225 "2755 ADISC failure DID:%06X Status:x%x/x%x\n",
2226 ndlp->nlp_DID, irsp->ulpStatus,
2227 irsp->un.ulpWord[4]);
dea31012005-04-17 16:05:31 -05002228 /* Do not call DSM for lpfc_els_abort'ed ELS cmds */
James Smarte47c9092008-02-08 18:49:26 -05002229 if (!lpfc_error_lost_link(irsp))
James Smart2e0fef82007-06-17 19:56:36 -05002230 lpfc_disc_state_machine(vport, ndlp, cmdiocb,
James Smart858c9f62007-06-17 19:56:39 -05002231 NLP_EVT_CMPL_ADISC);
James Smarte47c9092008-02-08 18:49:26 -05002232 } else
dea31012005-04-17 16:05:31 -05002233 /* Good status, call state machine */
James Smart2e0fef82007-06-17 19:56:36 -05002234 lpfc_disc_state_machine(vport, ndlp, cmdiocb,
dea31012005-04-17 16:05:31 -05002235 NLP_EVT_CMPL_ADISC);
dea31012005-04-17 16:05:31 -05002236
James Smart90160e02008-08-24 21:49:45 -04002237 /* Check to see if there are more ADISCs to be sent */
2238 if (disc && vport->num_disc_nodes)
James Smart2e0fef82007-06-17 19:56:36 -05002239 lpfc_more_adisc(vport);
dea31012005-04-17 16:05:31 -05002240out:
2241 lpfc_els_free_iocb(phba, cmdiocb);
2242 return;
2243}
2244
James Smarte59058c2008-08-24 21:49:00 -04002245/**
James Smart3621a712009-04-06 18:47:14 -04002246 * lpfc_issue_els_adisc - Issue an address discover iocb to an node on a vport
James Smarte59058c2008-08-24 21:49:00 -04002247 * @vport: pointer to a virtual N_Port data structure.
2248 * @ndlp: pointer to a node-list data structure.
2249 * @retry: number of retries to the command IOCB.
2250 *
2251 * This routine issues an Address Discover (ADISC) for an @ndlp on a
2252 * @vport. It prepares the payload of the ADISC ELS command, updates the
2253 * and states of the ndlp, and invokes the lpfc_sli_issue_iocb() routine
2254 * to issue the ADISC ELS command.
2255 *
2256 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
2257 * will be incremented by 1 for holding the ndlp and the reference to ndlp
2258 * will be stored into the context1 field of the IOCB for the completion
2259 * callback function to the ADISC ELS command.
2260 *
2261 * Return code
2262 * 0 - successfully issued adisc
2263 * 1 - failed to issue adisc
2264 **/
dea31012005-04-17 16:05:31 -05002265int
James Smart2e0fef82007-06-17 19:56:36 -05002266lpfc_issue_els_adisc(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
dea31012005-04-17 16:05:31 -05002267 uint8_t retry)
2268{
James Smart2e0fef82007-06-17 19:56:36 -05002269 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2270 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05002271 ADISC *ap;
2272 IOCB_t *icmd;
2273 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05002274 uint8_t *pcmd;
2275 uint16_t cmdsize;
2276
James Smart92d7f7b2007-06-17 19:56:38 -05002277 cmdsize = (sizeof(uint32_t) + sizeof(ADISC));
James Smart2e0fef82007-06-17 19:56:36 -05002278 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
2279 ndlp->nlp_DID, ELS_CMD_ADISC);
James Smart488d1462006-03-07 15:02:37 -05002280 if (!elsiocb)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002281 return 1;
dea31012005-04-17 16:05:31 -05002282
2283 icmd = &elsiocb->iocb;
2284 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
2285
2286 /* For ADISC request, remainder of payload is service parameters */
2287 *((uint32_t *) (pcmd)) = ELS_CMD_ADISC;
James Smart92d7f7b2007-06-17 19:56:38 -05002288 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05002289
2290 /* Fill in ADISC payload */
2291 ap = (ADISC *) pcmd;
2292 ap->hardAL_PA = phba->fc_pref_ALPA;
James Smart92d7f7b2007-06-17 19:56:38 -05002293 memcpy(&ap->portName, &vport->fc_portname, sizeof(struct lpfc_name));
2294 memcpy(&ap->nodeName, &vport->fc_nodename, sizeof(struct lpfc_name));
James Smart2e0fef82007-06-17 19:56:36 -05002295 ap->DID = be32_to_cpu(vport->fc_myDID);
dea31012005-04-17 16:05:31 -05002296
James Smart858c9f62007-06-17 19:56:39 -05002297 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2298 "Issue ADISC: did:x%x",
2299 ndlp->nlp_DID, 0, 0);
2300
dea31012005-04-17 16:05:31 -05002301 phba->fc_stat.elsXmitADISC++;
2302 elsiocb->iocb_cmpl = lpfc_cmpl_els_adisc;
James Smart2e0fef82007-06-17 19:56:36 -05002303 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002304 ndlp->nlp_flag |= NLP_ADISC_SND;
James Smart2e0fef82007-06-17 19:56:36 -05002305 spin_unlock_irq(shost->host_lock);
James Smart3772a992009-05-22 14:50:54 -04002306 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) ==
2307 IOCB_ERROR) {
James Smart2e0fef82007-06-17 19:56:36 -05002308 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002309 ndlp->nlp_flag &= ~NLP_ADISC_SND;
James Smart2e0fef82007-06-17 19:56:36 -05002310 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002311 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002312 return 1;
dea31012005-04-17 16:05:31 -05002313 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002314 return 0;
dea31012005-04-17 16:05:31 -05002315}
2316
James Smarte59058c2008-08-24 21:49:00 -04002317/**
James Smart3621a712009-04-06 18:47:14 -04002318 * lpfc_cmpl_els_logo - Completion callback function for logo
James Smarte59058c2008-08-24 21:49:00 -04002319 * @phba: pointer to lpfc hba data structure.
2320 * @cmdiocb: pointer to lpfc command iocb data structure.
2321 * @rspiocb: pointer to lpfc response iocb data structure.
2322 *
2323 * This routine is the completion function for issuing the ELS Logout (LOGO)
2324 * command. If no error status was reported from the LOGO response, the
2325 * state machine of the associated ndlp shall be invoked for transition with
2326 * respect to NLP_EVT_CMPL_LOGO event. Otherwise, if error status was reported,
2327 * the lpfc_els_retry() routine will be invoked to retry the LOGO command.
2328 **/
dea31012005-04-17 16:05:31 -05002329static void
James Smart2e0fef82007-06-17 19:56:36 -05002330lpfc_cmpl_els_logo(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
2331 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05002332{
James Smart2e0fef82007-06-17 19:56:36 -05002333 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
2334 struct lpfc_vport *vport = ndlp->vport;
2335 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05002336 IOCB_t *irsp;
2337 struct lpfc_sli *psli;
James Smart92494142011-02-16 12:39:44 -05002338 struct lpfcMboxq *mbox;
dea31012005-04-17 16:05:31 -05002339
2340 psli = &phba->sli;
2341 /* we pass cmdiocb to state machine which needs rspiocb as well */
2342 cmdiocb->context_un.rsp_iocb = rspiocb;
2343
2344 irsp = &(rspiocb->iocb);
James Smart2e0fef82007-06-17 19:56:36 -05002345 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002346 ndlp->nlp_flag &= ~NLP_LOGO_SND;
James Smart2e0fef82007-06-17 19:56:36 -05002347 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002348
James Smart858c9f62007-06-17 19:56:39 -05002349 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2350 "LOGO cmpl: status:x%x/x%x did:x%x",
2351 irsp->ulpStatus, irsp->un.ulpWord[4],
2352 ndlp->nlp_DID);
dea31012005-04-17 16:05:31 -05002353 /* LOGO completes to NPort <nlp_DID> */
James Smarte8b62012007-08-02 11:10:09 -04002354 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
2355 "0105 LOGO completes to NPort x%x "
2356 "Data: x%x x%x x%x x%x\n",
2357 ndlp->nlp_DID, irsp->ulpStatus, irsp->un.ulpWord[4],
2358 irsp->ulpTimeout, vport->num_disc_nodes);
dea31012005-04-17 16:05:31 -05002359 /* Check to see if link went down during discovery */
James Smart2e0fef82007-06-17 19:56:36 -05002360 if (lpfc_els_chk_latt(vport))
dea31012005-04-17 16:05:31 -05002361 goto out;
2362
James Smart92d7f7b2007-06-17 19:56:38 -05002363 if (ndlp->nlp_flag & NLP_TARGET_REMOVE) {
2364 /* NLP_EVT_DEVICE_RM should unregister the RPI
2365 * which should abort all outstanding IOs.
2366 */
2367 lpfc_disc_state_machine(vport, ndlp, cmdiocb,
2368 NLP_EVT_DEVICE_RM);
2369 goto out;
2370 }
2371
dea31012005-04-17 16:05:31 -05002372 if (irsp->ulpStatus) {
2373 /* Check for retry */
James Smart2e0fef82007-06-17 19:56:36 -05002374 if (lpfc_els_retry(phba, cmdiocb, rspiocb))
dea31012005-04-17 16:05:31 -05002375 /* ELS command is being retried */
2376 goto out;
dea31012005-04-17 16:05:31 -05002377 /* LOGO failed */
James Smarte40a02c2010-02-26 14:13:54 -05002378 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
2379 "2756 LOGO failure DID:%06X Status:x%x/x%x\n",
2380 ndlp->nlp_DID, irsp->ulpStatus,
2381 irsp->un.ulpWord[4]);
dea31012005-04-17 16:05:31 -05002382 /* Do not call DSM for lpfc_els_abort'ed ELS cmds */
James Smart858c9f62007-06-17 19:56:39 -05002383 if (lpfc_error_lost_link(irsp))
dea31012005-04-17 16:05:31 -05002384 goto out;
James Smart858c9f62007-06-17 19:56:39 -05002385 else
James Smart2e0fef82007-06-17 19:56:36 -05002386 lpfc_disc_state_machine(vport, ndlp, cmdiocb,
James Smart92d7f7b2007-06-17 19:56:38 -05002387 NLP_EVT_CMPL_LOGO);
James Smarte47c9092008-02-08 18:49:26 -05002388 } else
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05002389 /* Good status, call state machine.
2390 * This will unregister the rpi if needed.
2391 */
James Smart2e0fef82007-06-17 19:56:36 -05002392 lpfc_disc_state_machine(vport, ndlp, cmdiocb,
James Smart92d7f7b2007-06-17 19:56:38 -05002393 NLP_EVT_CMPL_LOGO);
dea31012005-04-17 16:05:31 -05002394out:
2395 lpfc_els_free_iocb(phba, cmdiocb);
James Smart92494142011-02-16 12:39:44 -05002396 /* If we are in pt2pt mode, we could rcv new S_ID on PLOGI */
2397 if ((vport->fc_flag & FC_PT2PT) &&
2398 !(vport->fc_flag & FC_PT2PT_PLOGI)) {
2399 phba->pport->fc_myDID = 0;
2400 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
2401 if (mbox) {
2402 lpfc_config_link(phba, mbox);
2403 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
2404 mbox->vport = vport;
2405 if (lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT) ==
2406 MBX_NOT_FINISHED) {
2407 mempool_free(mbox, phba->mbox_mem_pool);
2408 }
2409 }
2410 }
dea31012005-04-17 16:05:31 -05002411 return;
2412}
2413
James Smarte59058c2008-08-24 21:49:00 -04002414/**
James Smart3621a712009-04-06 18:47:14 -04002415 * lpfc_issue_els_logo - Issue a logo to an node on a vport
James Smarte59058c2008-08-24 21:49:00 -04002416 * @vport: pointer to a virtual N_Port data structure.
2417 * @ndlp: pointer to a node-list data structure.
2418 * @retry: number of retries to the command IOCB.
2419 *
2420 * This routine constructs and issues an ELS Logout (LOGO) iocb command
2421 * to a remote node, referred by an @ndlp on a @vport. It constructs the
2422 * payload of the IOCB, properly sets up the @ndlp state, and invokes the
2423 * lpfc_sli_issue_iocb() routine to send out the LOGO ELS command.
2424 *
2425 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
2426 * will be incremented by 1 for holding the ndlp and the reference to ndlp
2427 * will be stored into the context1 field of the IOCB for the completion
2428 * callback function to the LOGO ELS command.
2429 *
2430 * Return code
2431 * 0 - successfully issued logo
2432 * 1 - failed to issue logo
2433 **/
dea31012005-04-17 16:05:31 -05002434int
James Smart2e0fef82007-06-17 19:56:36 -05002435lpfc_issue_els_logo(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
dea31012005-04-17 16:05:31 -05002436 uint8_t retry)
2437{
James Smart2e0fef82007-06-17 19:56:36 -05002438 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2439 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05002440 IOCB_t *icmd;
2441 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05002442 uint8_t *pcmd;
2443 uint16_t cmdsize;
James Smart92d7f7b2007-06-17 19:56:38 -05002444 int rc;
dea31012005-04-17 16:05:31 -05002445
James Smart98c9ea52007-10-27 13:37:33 -04002446 spin_lock_irq(shost->host_lock);
2447 if (ndlp->nlp_flag & NLP_LOGO_SND) {
2448 spin_unlock_irq(shost->host_lock);
2449 return 0;
2450 }
2451 spin_unlock_irq(shost->host_lock);
2452
James Smart92d7f7b2007-06-17 19:56:38 -05002453 cmdsize = (2 * sizeof(uint32_t)) + sizeof(struct lpfc_name);
James Smart2e0fef82007-06-17 19:56:36 -05002454 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
2455 ndlp->nlp_DID, ELS_CMD_LOGO);
James Smart488d1462006-03-07 15:02:37 -05002456 if (!elsiocb)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002457 return 1;
dea31012005-04-17 16:05:31 -05002458
2459 icmd = &elsiocb->iocb;
2460 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
2461 *((uint32_t *) (pcmd)) = ELS_CMD_LOGO;
James Smart92d7f7b2007-06-17 19:56:38 -05002462 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05002463
2464 /* Fill in LOGO payload */
James Smart2e0fef82007-06-17 19:56:36 -05002465 *((uint32_t *) (pcmd)) = be32_to_cpu(vport->fc_myDID);
James Smart92d7f7b2007-06-17 19:56:38 -05002466 pcmd += sizeof(uint32_t);
2467 memcpy(pcmd, &vport->fc_portname, sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -05002468
James Smart858c9f62007-06-17 19:56:39 -05002469 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2470 "Issue LOGO: did:x%x",
2471 ndlp->nlp_DID, 0, 0);
2472
dea31012005-04-17 16:05:31 -05002473 phba->fc_stat.elsXmitLOGO++;
2474 elsiocb->iocb_cmpl = lpfc_cmpl_els_logo;
James Smart2e0fef82007-06-17 19:56:36 -05002475 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002476 ndlp->nlp_flag |= NLP_LOGO_SND;
James Smart2e0fef82007-06-17 19:56:36 -05002477 spin_unlock_irq(shost->host_lock);
James Smart3772a992009-05-22 14:50:54 -04002478 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
James Smart92d7f7b2007-06-17 19:56:38 -05002479
2480 if (rc == IOCB_ERROR) {
James Smart2e0fef82007-06-17 19:56:36 -05002481 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002482 ndlp->nlp_flag &= ~NLP_LOGO_SND;
James Smart2e0fef82007-06-17 19:56:36 -05002483 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002484 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002485 return 1;
dea31012005-04-17 16:05:31 -05002486 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002487 return 0;
dea31012005-04-17 16:05:31 -05002488}
2489
James Smarte59058c2008-08-24 21:49:00 -04002490/**
James Smart3621a712009-04-06 18:47:14 -04002491 * lpfc_cmpl_els_cmd - Completion callback function for generic els command
James Smarte59058c2008-08-24 21:49:00 -04002492 * @phba: pointer to lpfc hba data structure.
2493 * @cmdiocb: pointer to lpfc command iocb data structure.
2494 * @rspiocb: pointer to lpfc response iocb data structure.
2495 *
2496 * This routine is a generic completion callback function for ELS commands.
2497 * Specifically, it is the callback function which does not need to perform
2498 * any command specific operations. It is currently used by the ELS command
2499 * issuing routines for the ELS State Change Request (SCR),
2500 * lpfc_issue_els_scr(), and the ELS Fibre Channel Address Resolution
2501 * Protocol Response (FARPR) routine, lpfc_issue_els_farpr(). Other than
2502 * certain debug loggings, this callback function simply invokes the
2503 * lpfc_els_chk_latt() routine to check whether link went down during the
2504 * discovery process.
2505 **/
dea31012005-04-17 16:05:31 -05002506static void
James Smart2e0fef82007-06-17 19:56:36 -05002507lpfc_cmpl_els_cmd(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
2508 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05002509{
James Smart2e0fef82007-06-17 19:56:36 -05002510 struct lpfc_vport *vport = cmdiocb->vport;
dea31012005-04-17 16:05:31 -05002511 IOCB_t *irsp;
2512
2513 irsp = &rspiocb->iocb;
2514
James Smart858c9f62007-06-17 19:56:39 -05002515 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2516 "ELS cmd cmpl: status:x%x/x%x did:x%x",
2517 irsp->ulpStatus, irsp->un.ulpWord[4],
2518 irsp->un.elsreq64.remoteID);
dea31012005-04-17 16:05:31 -05002519 /* ELS cmd tag <ulpIoTag> completes */
James Smarte8b62012007-08-02 11:10:09 -04002520 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
2521 "0106 ELS cmd tag x%x completes Data: x%x x%x x%x\n",
2522 irsp->ulpIoTag, irsp->ulpStatus,
2523 irsp->un.ulpWord[4], irsp->ulpTimeout);
dea31012005-04-17 16:05:31 -05002524 /* Check to see if link went down during discovery */
James Smart2e0fef82007-06-17 19:56:36 -05002525 lpfc_els_chk_latt(vport);
dea31012005-04-17 16:05:31 -05002526 lpfc_els_free_iocb(phba, cmdiocb);
2527 return;
2528}
2529
James Smarte59058c2008-08-24 21:49:00 -04002530/**
James Smart3621a712009-04-06 18:47:14 -04002531 * lpfc_issue_els_scr - Issue a scr to an node on a vport
James Smarte59058c2008-08-24 21:49:00 -04002532 * @vport: pointer to a host virtual N_Port data structure.
2533 * @nportid: N_Port identifier to the remote node.
2534 * @retry: number of retries to the command IOCB.
2535 *
2536 * This routine issues a State Change Request (SCR) to a fabric node
2537 * on a @vport. The remote node @nportid is passed into the function. It
2538 * first search the @vport node list to find the matching ndlp. If no such
2539 * ndlp is found, a new ndlp shall be created for this (SCR) purpose. An
2540 * IOCB is allocated, payload prepared, and the lpfc_sli_issue_iocb()
2541 * routine is invoked to send the SCR IOCB.
2542 *
2543 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
2544 * will be incremented by 1 for holding the ndlp and the reference to ndlp
2545 * will be stored into the context1 field of the IOCB for the completion
2546 * callback function to the SCR ELS command.
2547 *
2548 * Return code
2549 * 0 - Successfully issued scr command
2550 * 1 - Failed to issue scr command
2551 **/
dea31012005-04-17 16:05:31 -05002552int
James Smart2e0fef82007-06-17 19:56:36 -05002553lpfc_issue_els_scr(struct lpfc_vport *vport, uint32_t nportid, uint8_t retry)
dea31012005-04-17 16:05:31 -05002554{
James Smart2e0fef82007-06-17 19:56:36 -05002555 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05002556 IOCB_t *icmd;
2557 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05002558 struct lpfc_sli *psli;
2559 uint8_t *pcmd;
2560 uint16_t cmdsize;
2561 struct lpfc_nodelist *ndlp;
2562
2563 psli = &phba->sli;
James Smart92d7f7b2007-06-17 19:56:38 -05002564 cmdsize = (sizeof(uint32_t) + sizeof(SCR));
dea31012005-04-17 16:05:31 -05002565
James Smarte47c9092008-02-08 18:49:26 -05002566 ndlp = lpfc_findnode_did(vport, nportid);
2567 if (!ndlp) {
2568 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
2569 if (!ndlp)
2570 return 1;
2571 lpfc_nlp_init(vport, ndlp, nportid);
2572 lpfc_enqueue_node(vport, ndlp);
2573 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
2574 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
2575 if (!ndlp)
2576 return 1;
2577 }
dea31012005-04-17 16:05:31 -05002578
James Smart2e0fef82007-06-17 19:56:36 -05002579 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
2580 ndlp->nlp_DID, ELS_CMD_SCR);
2581
James Smart488d1462006-03-07 15:02:37 -05002582 if (!elsiocb) {
James Smartfa4066b2008-01-11 01:53:27 -05002583 /* This will trigger the release of the node just
2584 * allocated
2585 */
James Smart329f9bc2007-04-25 09:53:01 -04002586 lpfc_nlp_put(ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002587 return 1;
dea31012005-04-17 16:05:31 -05002588 }
2589
2590 icmd = &elsiocb->iocb;
2591 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
2592
2593 *((uint32_t *) (pcmd)) = ELS_CMD_SCR;
James Smart92d7f7b2007-06-17 19:56:38 -05002594 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05002595
2596 /* For SCR, remainder of payload is SCR parameter page */
James Smart92d7f7b2007-06-17 19:56:38 -05002597 memset(pcmd, 0, sizeof(SCR));
dea31012005-04-17 16:05:31 -05002598 ((SCR *) pcmd)->Function = SCR_FUNC_FULL;
2599
James Smart858c9f62007-06-17 19:56:39 -05002600 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2601 "Issue SCR: did:x%x",
2602 ndlp->nlp_DID, 0, 0);
2603
dea31012005-04-17 16:05:31 -05002604 phba->fc_stat.elsXmitSCR++;
2605 elsiocb->iocb_cmpl = lpfc_cmpl_els_cmd;
James Smart3772a992009-05-22 14:50:54 -04002606 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) ==
2607 IOCB_ERROR) {
James Smartfa4066b2008-01-11 01:53:27 -05002608 /* The additional lpfc_nlp_put will cause the following
2609 * lpfc_els_free_iocb routine to trigger the rlease of
2610 * the node.
2611 */
James Smart329f9bc2007-04-25 09:53:01 -04002612 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05002613 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002614 return 1;
dea31012005-04-17 16:05:31 -05002615 }
James Smartfa4066b2008-01-11 01:53:27 -05002616 /* This will cause the callback-function lpfc_cmpl_els_cmd to
2617 * trigger the release of node.
2618 */
James Smart329f9bc2007-04-25 09:53:01 -04002619 lpfc_nlp_put(ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002620 return 0;
dea31012005-04-17 16:05:31 -05002621}
2622
James Smarte59058c2008-08-24 21:49:00 -04002623/**
James Smart3621a712009-04-06 18:47:14 -04002624 * lpfc_issue_els_farpr - Issue a farp to an node on a vport
James Smarte59058c2008-08-24 21:49:00 -04002625 * @vport: pointer to a host virtual N_Port data structure.
2626 * @nportid: N_Port identifier to the remote node.
2627 * @retry: number of retries to the command IOCB.
2628 *
2629 * This routine issues a Fibre Channel Address Resolution Response
2630 * (FARPR) to a node on a vport. The remote node N_Port identifier (@nportid)
2631 * is passed into the function. It first search the @vport node list to find
2632 * the matching ndlp. If no such ndlp is found, a new ndlp shall be created
2633 * for this (FARPR) purpose. An IOCB is allocated, payload prepared, and the
2634 * lpfc_sli_issue_iocb() routine is invoked to send the FARPR ELS command.
2635 *
2636 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
2637 * will be incremented by 1 for holding the ndlp and the reference to ndlp
2638 * will be stored into the context1 field of the IOCB for the completion
2639 * callback function to the PARPR ELS command.
2640 *
2641 * Return code
2642 * 0 - Successfully issued farpr command
2643 * 1 - Failed to issue farpr command
2644 **/
dea31012005-04-17 16:05:31 -05002645static int
James Smart2e0fef82007-06-17 19:56:36 -05002646lpfc_issue_els_farpr(struct lpfc_vport *vport, uint32_t nportid, uint8_t retry)
dea31012005-04-17 16:05:31 -05002647{
James Smart2e0fef82007-06-17 19:56:36 -05002648 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05002649 IOCB_t *icmd;
2650 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05002651 struct lpfc_sli *psli;
2652 FARP *fp;
2653 uint8_t *pcmd;
2654 uint32_t *lp;
2655 uint16_t cmdsize;
2656 struct lpfc_nodelist *ondlp;
2657 struct lpfc_nodelist *ndlp;
2658
2659 psli = &phba->sli;
James Smart92d7f7b2007-06-17 19:56:38 -05002660 cmdsize = (sizeof(uint32_t) + sizeof(FARP));
dea31012005-04-17 16:05:31 -05002661
James Smarte47c9092008-02-08 18:49:26 -05002662 ndlp = lpfc_findnode_did(vport, nportid);
2663 if (!ndlp) {
2664 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
2665 if (!ndlp)
2666 return 1;
2667 lpfc_nlp_init(vport, ndlp, nportid);
2668 lpfc_enqueue_node(vport, ndlp);
2669 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
2670 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
2671 if (!ndlp)
2672 return 1;
2673 }
James Smart2e0fef82007-06-17 19:56:36 -05002674
2675 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
2676 ndlp->nlp_DID, ELS_CMD_RNID);
James Smart488d1462006-03-07 15:02:37 -05002677 if (!elsiocb) {
James Smartfa4066b2008-01-11 01:53:27 -05002678 /* This will trigger the release of the node just
2679 * allocated
2680 */
James Smart329f9bc2007-04-25 09:53:01 -04002681 lpfc_nlp_put(ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002682 return 1;
dea31012005-04-17 16:05:31 -05002683 }
2684
2685 icmd = &elsiocb->iocb;
2686 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
2687
2688 *((uint32_t *) (pcmd)) = ELS_CMD_FARPR;
James Smart92d7f7b2007-06-17 19:56:38 -05002689 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05002690
2691 /* Fill in FARPR payload */
2692 fp = (FARP *) (pcmd);
James Smart92d7f7b2007-06-17 19:56:38 -05002693 memset(fp, 0, sizeof(FARP));
dea31012005-04-17 16:05:31 -05002694 lp = (uint32_t *) pcmd;
2695 *lp++ = be32_to_cpu(nportid);
James Smart2e0fef82007-06-17 19:56:36 -05002696 *lp++ = be32_to_cpu(vport->fc_myDID);
dea31012005-04-17 16:05:31 -05002697 fp->Rflags = 0;
2698 fp->Mflags = (FARP_MATCH_PORT | FARP_MATCH_NODE);
2699
James Smart92d7f7b2007-06-17 19:56:38 -05002700 memcpy(&fp->RportName, &vport->fc_portname, sizeof(struct lpfc_name));
2701 memcpy(&fp->RnodeName, &vport->fc_nodename, sizeof(struct lpfc_name));
James Smart2e0fef82007-06-17 19:56:36 -05002702 ondlp = lpfc_findnode_did(vport, nportid);
James Smarte47c9092008-02-08 18:49:26 -05002703 if (ondlp && NLP_CHK_NODE_ACT(ondlp)) {
dea31012005-04-17 16:05:31 -05002704 memcpy(&fp->OportName, &ondlp->nlp_portname,
James Smart92d7f7b2007-06-17 19:56:38 -05002705 sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -05002706 memcpy(&fp->OnodeName, &ondlp->nlp_nodename,
James Smart92d7f7b2007-06-17 19:56:38 -05002707 sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -05002708 }
2709
James Smart858c9f62007-06-17 19:56:39 -05002710 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2711 "Issue FARPR: did:x%x",
2712 ndlp->nlp_DID, 0, 0);
2713
dea31012005-04-17 16:05:31 -05002714 phba->fc_stat.elsXmitFARPR++;
2715 elsiocb->iocb_cmpl = lpfc_cmpl_els_cmd;
James Smart3772a992009-05-22 14:50:54 -04002716 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) ==
2717 IOCB_ERROR) {
James Smartfa4066b2008-01-11 01:53:27 -05002718 /* The additional lpfc_nlp_put will cause the following
2719 * lpfc_els_free_iocb routine to trigger the release of
2720 * the node.
2721 */
James Smart329f9bc2007-04-25 09:53:01 -04002722 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05002723 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002724 return 1;
dea31012005-04-17 16:05:31 -05002725 }
James Smartfa4066b2008-01-11 01:53:27 -05002726 /* This will cause the callback-function lpfc_cmpl_els_cmd to
2727 * trigger the release of the node.
2728 */
James Smart329f9bc2007-04-25 09:53:01 -04002729 lpfc_nlp_put(ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002730 return 0;
dea31012005-04-17 16:05:31 -05002731}
2732
James Smarte59058c2008-08-24 21:49:00 -04002733/**
James Smart3621a712009-04-06 18:47:14 -04002734 * lpfc_cancel_retry_delay_tmo - Cancel the timer with delayed iocb-cmd retry
James Smarte59058c2008-08-24 21:49:00 -04002735 * @vport: pointer to a host virtual N_Port data structure.
2736 * @nlp: pointer to a node-list data structure.
2737 *
2738 * This routine cancels the timer with a delayed IOCB-command retry for
2739 * a @vport's @ndlp. It stops the timer for the delayed function retrial and
2740 * removes the ELS retry event if it presents. In addition, if the
2741 * NLP_NPR_2B_DISC bit is set in the @nlp's nlp_flag bitmap, ADISC IOCB
2742 * commands are sent for the @vport's nodes that require issuing discovery
2743 * ADISC.
2744 **/
dea31012005-04-17 16:05:31 -05002745void
James Smart2e0fef82007-06-17 19:56:36 -05002746lpfc_cancel_retry_delay_tmo(struct lpfc_vport *vport, struct lpfc_nodelist *nlp)
James Smartfdcebe22006-03-07 15:04:01 -05002747{
James Smart2e0fef82007-06-17 19:56:36 -05002748 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smarte47c9092008-02-08 18:49:26 -05002749 struct lpfc_work_evt *evtp;
James Smart2e0fef82007-06-17 19:56:36 -05002750
James Smart0d2b6b82008-06-14 22:52:47 -04002751 if (!(nlp->nlp_flag & NLP_DELAY_TMO))
2752 return;
James Smart2e0fef82007-06-17 19:56:36 -05002753 spin_lock_irq(shost->host_lock);
James Smartfdcebe22006-03-07 15:04:01 -05002754 nlp->nlp_flag &= ~NLP_DELAY_TMO;
James Smart2e0fef82007-06-17 19:56:36 -05002755 spin_unlock_irq(shost->host_lock);
James Smartfdcebe22006-03-07 15:04:01 -05002756 del_timer_sync(&nlp->nlp_delayfunc);
2757 nlp->nlp_last_elscmd = 0;
James Smarte47c9092008-02-08 18:49:26 -05002758 if (!list_empty(&nlp->els_retry_evt.evt_listp)) {
James Smartfdcebe22006-03-07 15:04:01 -05002759 list_del_init(&nlp->els_retry_evt.evt_listp);
James Smarte47c9092008-02-08 18:49:26 -05002760 /* Decrement nlp reference count held for the delayed retry */
2761 evtp = &nlp->els_retry_evt;
2762 lpfc_nlp_put((struct lpfc_nodelist *)evtp->evt_arg1);
2763 }
James Smartfdcebe22006-03-07 15:04:01 -05002764 if (nlp->nlp_flag & NLP_NPR_2B_DISC) {
James Smart2e0fef82007-06-17 19:56:36 -05002765 spin_lock_irq(shost->host_lock);
James Smartfdcebe22006-03-07 15:04:01 -05002766 nlp->nlp_flag &= ~NLP_NPR_2B_DISC;
James Smart2e0fef82007-06-17 19:56:36 -05002767 spin_unlock_irq(shost->host_lock);
2768 if (vport->num_disc_nodes) {
James Smart0d2b6b82008-06-14 22:52:47 -04002769 if (vport->port_state < LPFC_VPORT_READY) {
2770 /* Check if there are more ADISCs to be sent */
2771 lpfc_more_adisc(vport);
James Smart0d2b6b82008-06-14 22:52:47 -04002772 } else {
2773 /* Check if there are more PLOGIs to be sent */
2774 lpfc_more_plogi(vport);
James Smart90160e02008-08-24 21:49:45 -04002775 if (vport->num_disc_nodes == 0) {
2776 spin_lock_irq(shost->host_lock);
2777 vport->fc_flag &= ~FC_NDISC_ACTIVE;
2778 spin_unlock_irq(shost->host_lock);
2779 lpfc_can_disctmo(vport);
2780 lpfc_end_rscn(vport);
2781 }
James Smartfdcebe22006-03-07 15:04:01 -05002782 }
2783 }
2784 }
2785 return;
2786}
2787
James Smarte59058c2008-08-24 21:49:00 -04002788/**
James Smart3621a712009-04-06 18:47:14 -04002789 * lpfc_els_retry_delay - Timer function with a ndlp delayed function timer
James Smarte59058c2008-08-24 21:49:00 -04002790 * @ptr: holder for the pointer to the timer function associated data (ndlp).
2791 *
2792 * This routine is invoked by the ndlp delayed-function timer to check
2793 * whether there is any pending ELS retry event(s) with the node. If not, it
2794 * simply returns. Otherwise, if there is at least one ELS delayed event, it
2795 * adds the delayed events to the HBA work list and invokes the
2796 * lpfc_worker_wake_up() routine to wake up worker thread to process the
2797 * event. Note that lpfc_nlp_get() is called before posting the event to
2798 * the work list to hold reference count of ndlp so that it guarantees the
2799 * reference to ndlp will still be available when the worker thread gets
2800 * to the event associated with the ndlp.
2801 **/
James Smartfdcebe22006-03-07 15:04:01 -05002802void
dea31012005-04-17 16:05:31 -05002803lpfc_els_retry_delay(unsigned long ptr)
2804{
James Smart2e0fef82007-06-17 19:56:36 -05002805 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) ptr;
2806 struct lpfc_vport *vport = ndlp->vport;
James Smart2e0fef82007-06-17 19:56:36 -05002807 struct lpfc_hba *phba = vport->phba;
James Smart92d7f7b2007-06-17 19:56:38 -05002808 unsigned long flags;
James Smart2e0fef82007-06-17 19:56:36 -05002809 struct lpfc_work_evt *evtp = &ndlp->els_retry_evt;
dea31012005-04-17 16:05:31 -05002810
James Smart92d7f7b2007-06-17 19:56:38 -05002811 spin_lock_irqsave(&phba->hbalock, flags);
dea31012005-04-17 16:05:31 -05002812 if (!list_empty(&evtp->evt_listp)) {
James Smart92d7f7b2007-06-17 19:56:38 -05002813 spin_unlock_irqrestore(&phba->hbalock, flags);
dea31012005-04-17 16:05:31 -05002814 return;
2815 }
2816
James Smartfa4066b2008-01-11 01:53:27 -05002817 /* We need to hold the node by incrementing the reference
2818 * count until the queued work is done
2819 */
2820 evtp->evt_arg1 = lpfc_nlp_get(ndlp);
James Smart5e9d9b82008-06-14 22:52:53 -04002821 if (evtp->evt_arg1) {
2822 evtp->evt = LPFC_EVT_ELS_RETRY;
2823 list_add_tail(&evtp->evt_listp, &phba->work_list);
James Smart92d7f7b2007-06-17 19:56:38 -05002824 lpfc_worker_wake_up(phba);
James Smart5e9d9b82008-06-14 22:52:53 -04002825 }
James Smart92d7f7b2007-06-17 19:56:38 -05002826 spin_unlock_irqrestore(&phba->hbalock, flags);
dea31012005-04-17 16:05:31 -05002827 return;
2828}
2829
James Smarte59058c2008-08-24 21:49:00 -04002830/**
James Smart3621a712009-04-06 18:47:14 -04002831 * lpfc_els_retry_delay_handler - Work thread handler for ndlp delayed function
James Smarte59058c2008-08-24 21:49:00 -04002832 * @ndlp: pointer to a node-list data structure.
2833 *
2834 * This routine is the worker-thread handler for processing the @ndlp delayed
2835 * event(s), posted by the lpfc_els_retry_delay() routine. It simply retrieves
2836 * the last ELS command from the associated ndlp and invokes the proper ELS
2837 * function according to the delayed ELS command to retry the command.
2838 **/
dea31012005-04-17 16:05:31 -05002839void
2840lpfc_els_retry_delay_handler(struct lpfc_nodelist *ndlp)
2841{
James Smart2e0fef82007-06-17 19:56:36 -05002842 struct lpfc_vport *vport = ndlp->vport;
2843 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2844 uint32_t cmd, did, retry;
dea31012005-04-17 16:05:31 -05002845
James Smart2e0fef82007-06-17 19:56:36 -05002846 spin_lock_irq(shost->host_lock);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05002847 did = ndlp->nlp_DID;
2848 cmd = ndlp->nlp_last_elscmd;
2849 ndlp->nlp_last_elscmd = 0;
dea31012005-04-17 16:05:31 -05002850
2851 if (!(ndlp->nlp_flag & NLP_DELAY_TMO)) {
James Smart2e0fef82007-06-17 19:56:36 -05002852 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002853 return;
2854 }
2855
2856 ndlp->nlp_flag &= ~NLP_DELAY_TMO;
James Smart2e0fef82007-06-17 19:56:36 -05002857 spin_unlock_irq(shost->host_lock);
James Smart1a169682006-03-07 15:04:06 -05002858 /*
2859 * If a discovery event readded nlp_delayfunc after timer
2860 * firing and before processing the timer, cancel the
2861 * nlp_delayfunc.
2862 */
2863 del_timer_sync(&ndlp->nlp_delayfunc);
dea31012005-04-17 16:05:31 -05002864 retry = ndlp->nlp_retry;
James Smart4d9ab992009-10-02 15:16:39 -04002865 ndlp->nlp_retry = 0;
dea31012005-04-17 16:05:31 -05002866
2867 switch (cmd) {
2868 case ELS_CMD_FLOGI:
James Smart2e0fef82007-06-17 19:56:36 -05002869 lpfc_issue_els_flogi(vport, ndlp, retry);
dea31012005-04-17 16:05:31 -05002870 break;
2871 case ELS_CMD_PLOGI:
James Smart2e0fef82007-06-17 19:56:36 -05002872 if (!lpfc_issue_els_plogi(vport, ndlp->nlp_DID, retry)) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05002873 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05002874 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
Jamie Wellnitz6ad42532006-02-28 19:25:16 -05002875 }
dea31012005-04-17 16:05:31 -05002876 break;
2877 case ELS_CMD_ADISC:
James Smart2e0fef82007-06-17 19:56:36 -05002878 if (!lpfc_issue_els_adisc(vport, ndlp, retry)) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05002879 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05002880 lpfc_nlp_set_state(vport, ndlp, NLP_STE_ADISC_ISSUE);
Jamie Wellnitz6ad42532006-02-28 19:25:16 -05002881 }
dea31012005-04-17 16:05:31 -05002882 break;
2883 case ELS_CMD_PRLI:
James Smart2e0fef82007-06-17 19:56:36 -05002884 if (!lpfc_issue_els_prli(vport, ndlp, retry)) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05002885 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05002886 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PRLI_ISSUE);
Jamie Wellnitz6ad42532006-02-28 19:25:16 -05002887 }
dea31012005-04-17 16:05:31 -05002888 break;
2889 case ELS_CMD_LOGO:
James Smart2e0fef82007-06-17 19:56:36 -05002890 if (!lpfc_issue_els_logo(vport, ndlp, retry)) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05002891 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05002892 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
Jamie Wellnitz6ad42532006-02-28 19:25:16 -05002893 }
dea31012005-04-17 16:05:31 -05002894 break;
James Smart92d7f7b2007-06-17 19:56:38 -05002895 case ELS_CMD_FDISC:
James Smartfedd3b72011-02-16 12:39:24 -05002896 if (!(vport->fc_flag & FC_VPORT_NEEDS_INIT_VPI))
2897 lpfc_issue_els_fdisc(vport, ndlp, retry);
James Smart92d7f7b2007-06-17 19:56:38 -05002898 break;
dea31012005-04-17 16:05:31 -05002899 }
2900 return;
2901}
2902
James Smarte59058c2008-08-24 21:49:00 -04002903/**
James Smart3621a712009-04-06 18:47:14 -04002904 * lpfc_els_retry - Make retry decision on an els command iocb
James Smarte59058c2008-08-24 21:49:00 -04002905 * @phba: pointer to lpfc hba data structure.
2906 * @cmdiocb: pointer to lpfc command iocb data structure.
2907 * @rspiocb: pointer to lpfc response iocb data structure.
2908 *
2909 * This routine makes a retry decision on an ELS command IOCB, which has
2910 * failed. The following ELS IOCBs use this function for retrying the command
2911 * when previously issued command responsed with error status: FLOGI, PLOGI,
2912 * PRLI, ADISC, LOGO, and FDISC. Based on the ELS command type and the
2913 * returned error status, it makes the decision whether a retry shall be
2914 * issued for the command, and whether a retry shall be made immediately or
2915 * delayed. In the former case, the corresponding ELS command issuing-function
2916 * is called to retry the command. In the later case, the ELS command shall
2917 * be posted to the ndlp delayed event and delayed function timer set to the
2918 * ndlp for the delayed command issusing.
2919 *
2920 * Return code
2921 * 0 - No retry of els command is made
2922 * 1 - Immediate or delayed retry of els command is made
2923 **/
dea31012005-04-17 16:05:31 -05002924static int
James Smart2e0fef82007-06-17 19:56:36 -05002925lpfc_els_retry(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
2926 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05002927{
James Smart2e0fef82007-06-17 19:56:36 -05002928 struct lpfc_vport *vport = cmdiocb->vport;
2929 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2930 IOCB_t *irsp = &rspiocb->iocb;
2931 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
2932 struct lpfc_dmabuf *pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
dea31012005-04-17 16:05:31 -05002933 uint32_t *elscmd;
2934 struct ls_rjt stat;
James Smart2e0fef82007-06-17 19:56:36 -05002935 int retry = 0, maxretry = lpfc_max_els_tries, delay = 0;
James Smart98c9ea52007-10-27 13:37:33 -04002936 int logerr = 0;
James Smart2e0fef82007-06-17 19:56:36 -05002937 uint32_t cmd = 0;
James Smart488d1462006-03-07 15:02:37 -05002938 uint32_t did;
dea31012005-04-17 16:05:31 -05002939
James Smart488d1462006-03-07 15:02:37 -05002940
dea31012005-04-17 16:05:31 -05002941 /* Note: context2 may be 0 for internal driver abort
2942 * of delays ELS command.
2943 */
2944
2945 if (pcmd && pcmd->virt) {
2946 elscmd = (uint32_t *) (pcmd->virt);
2947 cmd = *elscmd++;
2948 }
2949
James Smarte47c9092008-02-08 18:49:26 -05002950 if (ndlp && NLP_CHK_NODE_ACT(ndlp))
James Smart488d1462006-03-07 15:02:37 -05002951 did = ndlp->nlp_DID;
2952 else {
2953 /* We should only hit this case for retrying PLOGI */
2954 did = irsp->un.elsreq64.remoteID;
James Smart2e0fef82007-06-17 19:56:36 -05002955 ndlp = lpfc_findnode_did(vport, did);
James Smarte47c9092008-02-08 18:49:26 -05002956 if ((!ndlp || !NLP_CHK_NODE_ACT(ndlp))
2957 && (cmd != ELS_CMD_PLOGI))
James Smart488d1462006-03-07 15:02:37 -05002958 return 1;
2959 }
2960
James Smart858c9f62007-06-17 19:56:39 -05002961 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2962 "Retry ELS: wd7:x%x wd4:x%x did:x%x",
2963 *(((uint32_t *) irsp) + 7), irsp->un.ulpWord[4], ndlp->nlp_DID);
2964
dea31012005-04-17 16:05:31 -05002965 switch (irsp->ulpStatus) {
2966 case IOSTAT_FCP_RSP_ERROR:
dea31012005-04-17 16:05:31 -05002967 break;
James Smart1151e3e2011-02-16 12:39:35 -05002968 case IOSTAT_REMOTE_STOP:
2969 if (phba->sli_rev == LPFC_SLI_REV4) {
2970 /* This IO was aborted by the target, we don't
2971 * know the rxid and because we did not send the
2972 * ABTS we cannot generate and RRQ.
2973 */
2974 lpfc_set_rrq_active(phba, ndlp,
2975 cmdiocb->sli4_xritag, 0, 0);
2976 }
2977 break;
dea31012005-04-17 16:05:31 -05002978 case IOSTAT_LOCAL_REJECT:
2979 switch ((irsp->un.ulpWord[4] & 0xff)) {
2980 case IOERR_LOOP_OPEN_FAILURE:
James Smarteaf15d52008-12-04 22:39:29 -05002981 if (cmd == ELS_CMD_FLOGI) {
2982 if (PCI_DEVICE_ID_HORNET ==
2983 phba->pcidev->device) {
James Smart76a95d72010-11-20 23:11:48 -05002984 phba->fc_topology = LPFC_TOPOLOGY_LOOP;
James Smarteaf15d52008-12-04 22:39:29 -05002985 phba->pport->fc_myDID = 0;
2986 phba->alpa_map[0] = 0;
2987 phba->alpa_map[1] = 0;
2988 }
2989 }
James Smart2e0fef82007-06-17 19:56:36 -05002990 if (cmd == ELS_CMD_PLOGI && cmdiocb->retry == 0)
James Smart92d7f7b2007-06-17 19:56:38 -05002991 delay = 1000;
dea31012005-04-17 16:05:31 -05002992 retry = 1;
2993 break;
2994
James Smart92d7f7b2007-06-17 19:56:38 -05002995 case IOERR_ILLEGAL_COMMAND:
James Smart7f5f3d02008-02-08 18:50:14 -05002996 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
2997 "0124 Retry illegal cmd x%x "
2998 "retry:x%x delay:x%x\n",
2999 cmd, cmdiocb->retry, delay);
3000 retry = 1;
3001 /* All command's retry policy */
3002 maxretry = 8;
3003 if (cmdiocb->retry > 2)
3004 delay = 1000;
James Smart92d7f7b2007-06-17 19:56:38 -05003005 break;
3006
dea31012005-04-17 16:05:31 -05003007 case IOERR_NO_RESOURCES:
James Smart98c9ea52007-10-27 13:37:33 -04003008 logerr = 1; /* HBA out of resources */
James Smart858c9f62007-06-17 19:56:39 -05003009 retry = 1;
3010 if (cmdiocb->retry > 100)
3011 delay = 100;
3012 maxretry = 250;
3013 break;
3014
3015 case IOERR_ILLEGAL_FRAME:
James Smart92d7f7b2007-06-17 19:56:38 -05003016 delay = 100;
dea31012005-04-17 16:05:31 -05003017 retry = 1;
3018 break;
3019
James Smart858c9f62007-06-17 19:56:39 -05003020 case IOERR_SEQUENCE_TIMEOUT:
dea31012005-04-17 16:05:31 -05003021 case IOERR_INVALID_RPI:
3022 retry = 1;
3023 break;
3024 }
3025 break;
3026
3027 case IOSTAT_NPORT_RJT:
3028 case IOSTAT_FABRIC_RJT:
3029 if (irsp->un.ulpWord[4] & RJT_UNAVAIL_TEMP) {
3030 retry = 1;
3031 break;
3032 }
3033 break;
3034
3035 case IOSTAT_NPORT_BSY:
3036 case IOSTAT_FABRIC_BSY:
James Smart98c9ea52007-10-27 13:37:33 -04003037 logerr = 1; /* Fabric / Remote NPort out of resources */
dea31012005-04-17 16:05:31 -05003038 retry = 1;
3039 break;
3040
3041 case IOSTAT_LS_RJT:
3042 stat.un.lsRjtError = be32_to_cpu(irsp->un.ulpWord[4]);
3043 /* Added for Vendor specifc support
3044 * Just keep retrying for these Rsn / Exp codes
3045 */
3046 switch (stat.un.b.lsRjtRsnCode) {
3047 case LSRJT_UNABLE_TPC:
3048 if (stat.un.b.lsRjtRsnCodeExp ==
3049 LSEXP_CMD_IN_PROGRESS) {
3050 if (cmd == ELS_CMD_PLOGI) {
James Smart92d7f7b2007-06-17 19:56:38 -05003051 delay = 1000;
dea31012005-04-17 16:05:31 -05003052 maxretry = 48;
3053 }
3054 retry = 1;
3055 break;
3056 }
James Smartffc95492010-06-07 15:23:17 -04003057 if (stat.un.b.lsRjtRsnCodeExp ==
3058 LSEXP_CANT_GIVE_DATA) {
3059 if (cmd == ELS_CMD_PLOGI) {
3060 delay = 1000;
3061 maxretry = 48;
3062 }
3063 retry = 1;
3064 break;
3065 }
dea31012005-04-17 16:05:31 -05003066 if (cmd == ELS_CMD_PLOGI) {
James Smart92d7f7b2007-06-17 19:56:38 -05003067 delay = 1000;
dea31012005-04-17 16:05:31 -05003068 maxretry = lpfc_max_els_tries + 1;
3069 retry = 1;
3070 break;
3071 }
James Smart92d7f7b2007-06-17 19:56:38 -05003072 if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
3073 (cmd == ELS_CMD_FDISC) &&
3074 (stat.un.b.lsRjtRsnCodeExp == LSEXP_OUT_OF_RESOURCE)){
James Smarte8b62012007-08-02 11:10:09 -04003075 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
3076 "0125 FDISC Failed (x%x). "
3077 "Fabric out of resources\n",
3078 stat.un.lsRjtError);
James Smart92d7f7b2007-06-17 19:56:38 -05003079 lpfc_vport_set_state(vport,
3080 FC_VPORT_NO_FABRIC_RSCS);
3081 }
dea31012005-04-17 16:05:31 -05003082 break;
3083
3084 case LSRJT_LOGICAL_BSY:
James Smart858c9f62007-06-17 19:56:39 -05003085 if ((cmd == ELS_CMD_PLOGI) ||
3086 (cmd == ELS_CMD_PRLI)) {
James Smart92d7f7b2007-06-17 19:56:38 -05003087 delay = 1000;
dea31012005-04-17 16:05:31 -05003088 maxretry = 48;
James Smart92d7f7b2007-06-17 19:56:38 -05003089 } else if (cmd == ELS_CMD_FDISC) {
James Smart51ef4c22007-08-02 11:10:31 -04003090 /* FDISC retry policy */
3091 maxretry = 48;
3092 if (cmdiocb->retry >= 32)
3093 delay = 1000;
dea31012005-04-17 16:05:31 -05003094 }
3095 retry = 1;
3096 break;
James Smart92d7f7b2007-06-17 19:56:38 -05003097
3098 case LSRJT_LOGICAL_ERR:
James Smart7f5f3d02008-02-08 18:50:14 -05003099 /* There are some cases where switches return this
3100 * error when they are not ready and should be returning
3101 * Logical Busy. We should delay every time.
3102 */
3103 if (cmd == ELS_CMD_FDISC &&
3104 stat.un.b.lsRjtRsnCodeExp == LSEXP_PORT_LOGIN_REQ) {
3105 maxretry = 3;
3106 delay = 1000;
3107 retry = 1;
3108 break;
3109 }
James Smart92d7f7b2007-06-17 19:56:38 -05003110 case LSRJT_PROTOCOL_ERR:
3111 if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
3112 (cmd == ELS_CMD_FDISC) &&
3113 ((stat.un.b.lsRjtRsnCodeExp == LSEXP_INVALID_PNAME) ||
3114 (stat.un.b.lsRjtRsnCodeExp == LSEXP_INVALID_NPORT_ID))
3115 ) {
James Smarte8b62012007-08-02 11:10:09 -04003116 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
James Smartd7c255b2008-08-24 21:50:00 -04003117 "0122 FDISC Failed (x%x). "
James Smarte8b62012007-08-02 11:10:09 -04003118 "Fabric Detected Bad WWN\n",
3119 stat.un.lsRjtError);
James Smart92d7f7b2007-06-17 19:56:38 -05003120 lpfc_vport_set_state(vport,
3121 FC_VPORT_FABRIC_REJ_WWN);
3122 }
3123 break;
dea31012005-04-17 16:05:31 -05003124 }
3125 break;
3126
3127 case IOSTAT_INTERMED_RSP:
3128 case IOSTAT_BA_RJT:
3129 break;
3130
3131 default:
3132 break;
3133 }
3134
James Smart488d1462006-03-07 15:02:37 -05003135 if (did == FDMI_DID)
dea31012005-04-17 16:05:31 -05003136 retry = 1;
dea31012005-04-17 16:05:31 -05003137
James Smartdf9e1b52011-12-13 13:22:17 -05003138 if ((cmd == ELS_CMD_FLOGI) &&
James Smart76a95d72010-11-20 23:11:48 -05003139 (phba->fc_topology != LPFC_TOPOLOGY_LOOP) &&
James Smart1b32f6a2008-02-08 18:49:39 -05003140 !lpfc_error_lost_link(irsp)) {
James Smart98c9ea52007-10-27 13:37:33 -04003141 /* FLOGI retry policy */
3142 retry = 1;
James Smartdf9e1b52011-12-13 13:22:17 -05003143 /* retry FLOGI forever */
James Smart6669f9b2009-10-02 15:16:45 -04003144 maxretry = 0;
3145 if (cmdiocb->retry >= 100)
3146 delay = 5000;
3147 else if (cmdiocb->retry >= 32)
James Smart98c9ea52007-10-27 13:37:33 -04003148 delay = 1000;
James Smartdf9e1b52011-12-13 13:22:17 -05003149 } else if ((cmd == ELS_CMD_FDISC) && !lpfc_error_lost_link(irsp)) {
3150 /* retry FDISCs every second up to devloss */
3151 retry = 1;
3152 maxretry = vport->cfg_devloss_tmo;
3153 delay = 1000;
James Smart98c9ea52007-10-27 13:37:33 -04003154 }
3155
James Smart6669f9b2009-10-02 15:16:45 -04003156 cmdiocb->retry++;
3157 if (maxretry && (cmdiocb->retry >= maxretry)) {
dea31012005-04-17 16:05:31 -05003158 phba->fc_stat.elsRetryExceeded++;
3159 retry = 0;
3160 }
3161
James Smarted957682007-06-17 19:56:37 -05003162 if ((vport->load_flag & FC_UNLOADING) != 0)
3163 retry = 0;
3164
dea31012005-04-17 16:05:31 -05003165 if (retry) {
James Smart38b92ef2010-08-04 16:11:39 -04003166 if ((cmd == ELS_CMD_PLOGI) || (cmd == ELS_CMD_FDISC)) {
3167 /* Stop retrying PLOGI and FDISC if in FCF discovery */
3168 if (phba->fcf.fcf_flag & FCF_DISCOVERY) {
3169 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
3170 "2849 Stop retry ELS command "
3171 "x%x to remote NPORT x%x, "
3172 "Data: x%x x%x\n", cmd, did,
3173 cmdiocb->retry, delay);
3174 return 0;
3175 }
3176 }
dea31012005-04-17 16:05:31 -05003177
3178 /* Retry ELS command <elsCmd> to remote NPORT <did> */
James Smarte8b62012007-08-02 11:10:09 -04003179 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
3180 "0107 Retry ELS command x%x to remote "
3181 "NPORT x%x Data: x%x x%x\n",
3182 cmd, did, cmdiocb->retry, delay);
dea31012005-04-17 16:05:31 -05003183
James Smart858c9f62007-06-17 19:56:39 -05003184 if (((cmd == ELS_CMD_PLOGI) || (cmd == ELS_CMD_ADISC)) &&
3185 ((irsp->ulpStatus != IOSTAT_LOCAL_REJECT) ||
3186 ((irsp->un.ulpWord[4] & 0xff) != IOERR_NO_RESOURCES))) {
3187 /* Don't reset timer for no resources */
3188
dea31012005-04-17 16:05:31 -05003189 /* If discovery / RSCN timer is running, reset it */
James Smart2e0fef82007-06-17 19:56:36 -05003190 if (timer_pending(&vport->fc_disctmo) ||
James Smart92d7f7b2007-06-17 19:56:38 -05003191 (vport->fc_flag & FC_RSCN_MODE))
James Smart2e0fef82007-06-17 19:56:36 -05003192 lpfc_set_disctmo(vport);
dea31012005-04-17 16:05:31 -05003193 }
3194
3195 phba->fc_stat.elsXmitRetry++;
James Smart58da1ff2008-04-07 10:15:56 -04003196 if (ndlp && NLP_CHK_NODE_ACT(ndlp) && delay) {
dea31012005-04-17 16:05:31 -05003197 phba->fc_stat.elsDelayRetry++;
3198 ndlp->nlp_retry = cmdiocb->retry;
3199
James Smart92d7f7b2007-06-17 19:56:38 -05003200 /* delay is specified in milliseconds */
3201 mod_timer(&ndlp->nlp_delayfunc,
3202 jiffies + msecs_to_jiffies(delay));
James Smart2e0fef82007-06-17 19:56:36 -05003203 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05003204 ndlp->nlp_flag |= NLP_DELAY_TMO;
James Smart2e0fef82007-06-17 19:56:36 -05003205 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05003206
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003207 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart858c9f62007-06-17 19:56:39 -05003208 if (cmd == ELS_CMD_PRLI)
3209 lpfc_nlp_set_state(vport, ndlp,
3210 NLP_STE_REG_LOGIN_ISSUE);
3211 else
3212 lpfc_nlp_set_state(vport, ndlp,
3213 NLP_STE_NPR_NODE);
dea31012005-04-17 16:05:31 -05003214 ndlp->nlp_last_elscmd = cmd;
3215
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003216 return 1;
dea31012005-04-17 16:05:31 -05003217 }
3218 switch (cmd) {
3219 case ELS_CMD_FLOGI:
James Smart2e0fef82007-06-17 19:56:36 -05003220 lpfc_issue_els_flogi(vport, ndlp, cmdiocb->retry);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003221 return 1;
James Smart92d7f7b2007-06-17 19:56:38 -05003222 case ELS_CMD_FDISC:
3223 lpfc_issue_els_fdisc(vport, ndlp, cmdiocb->retry);
3224 return 1;
dea31012005-04-17 16:05:31 -05003225 case ELS_CMD_PLOGI:
James Smart58da1ff2008-04-07 10:15:56 -04003226 if (ndlp && NLP_CHK_NODE_ACT(ndlp)) {
James Smart488d1462006-03-07 15:02:37 -05003227 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05003228 lpfc_nlp_set_state(vport, ndlp,
James Smartde0c5b32007-04-25 09:52:27 -04003229 NLP_STE_PLOGI_ISSUE);
James Smart488d1462006-03-07 15:02:37 -05003230 }
James Smart2e0fef82007-06-17 19:56:36 -05003231 lpfc_issue_els_plogi(vport, did, cmdiocb->retry);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003232 return 1;
dea31012005-04-17 16:05:31 -05003233 case ELS_CMD_ADISC:
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003234 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05003235 lpfc_nlp_set_state(vport, ndlp, NLP_STE_ADISC_ISSUE);
3236 lpfc_issue_els_adisc(vport, ndlp, cmdiocb->retry);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003237 return 1;
dea31012005-04-17 16:05:31 -05003238 case ELS_CMD_PRLI:
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003239 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05003240 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PRLI_ISSUE);
3241 lpfc_issue_els_prli(vport, ndlp, cmdiocb->retry);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003242 return 1;
dea31012005-04-17 16:05:31 -05003243 case ELS_CMD_LOGO:
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003244 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05003245 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
3246 lpfc_issue_els_logo(vport, ndlp, cmdiocb->retry);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003247 return 1;
dea31012005-04-17 16:05:31 -05003248 }
3249 }
dea31012005-04-17 16:05:31 -05003250 /* No retry ELS command <elsCmd> to remote NPORT <did> */
James Smart98c9ea52007-10-27 13:37:33 -04003251 if (logerr) {
3252 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
3253 "0137 No retry ELS command x%x to remote "
3254 "NPORT x%x: Out of Resources: Error:x%x/%x\n",
3255 cmd, did, irsp->ulpStatus,
3256 irsp->un.ulpWord[4]);
3257 }
3258 else {
3259 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
James Smarta58cbd52007-08-02 11:09:43 -04003260 "0108 No retry ELS command x%x to remote "
3261 "NPORT x%x Retried:%d Error:x%x/%x\n",
3262 cmd, did, cmdiocb->retry, irsp->ulpStatus,
3263 irsp->un.ulpWord[4]);
James Smart98c9ea52007-10-27 13:37:33 -04003264 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003265 return 0;
dea31012005-04-17 16:05:31 -05003266}
3267
James Smarte59058c2008-08-24 21:49:00 -04003268/**
James Smart3621a712009-04-06 18:47:14 -04003269 * lpfc_els_free_data - Free lpfc dma buffer and data structure with an iocb
James Smarte59058c2008-08-24 21:49:00 -04003270 * @phba: pointer to lpfc hba data structure.
3271 * @buf_ptr1: pointer to the lpfc DMA buffer data structure.
3272 *
3273 * This routine releases the lpfc DMA (Direct Memory Access) buffer(s)
3274 * associated with a command IOCB back to the lpfc DMA buffer pool. It first
3275 * checks to see whether there is a lpfc DMA buffer associated with the
3276 * response of the command IOCB. If so, it will be released before releasing
3277 * the lpfc DMA buffer associated with the IOCB itself.
3278 *
3279 * Return code
3280 * 0 - Successfully released lpfc DMA buffer (currently, always return 0)
3281 **/
James Smart09372822008-01-11 01:52:54 -05003282static int
James Smart87af33f2007-10-27 13:37:43 -04003283lpfc_els_free_data(struct lpfc_hba *phba, struct lpfc_dmabuf *buf_ptr1)
3284{
3285 struct lpfc_dmabuf *buf_ptr;
3286
James Smarte59058c2008-08-24 21:49:00 -04003287 /* Free the response before processing the command. */
James Smart87af33f2007-10-27 13:37:43 -04003288 if (!list_empty(&buf_ptr1->list)) {
3289 list_remove_head(&buf_ptr1->list, buf_ptr,
3290 struct lpfc_dmabuf,
3291 list);
3292 lpfc_mbuf_free(phba, buf_ptr->virt, buf_ptr->phys);
3293 kfree(buf_ptr);
3294 }
3295 lpfc_mbuf_free(phba, buf_ptr1->virt, buf_ptr1->phys);
3296 kfree(buf_ptr1);
3297 return 0;
3298}
3299
James Smarte59058c2008-08-24 21:49:00 -04003300/**
James Smart3621a712009-04-06 18:47:14 -04003301 * lpfc_els_free_bpl - Free lpfc dma buffer and data structure with bpl
James Smarte59058c2008-08-24 21:49:00 -04003302 * @phba: pointer to lpfc hba data structure.
3303 * @buf_ptr: pointer to the lpfc dma buffer data structure.
3304 *
3305 * This routine releases the lpfc Direct Memory Access (DMA) buffer
3306 * associated with a Buffer Pointer List (BPL) back to the lpfc DMA buffer
3307 * pool.
3308 *
3309 * Return code
3310 * 0 - Successfully released lpfc DMA buffer (currently, always return 0)
3311 **/
James Smart09372822008-01-11 01:52:54 -05003312static int
James Smart87af33f2007-10-27 13:37:43 -04003313lpfc_els_free_bpl(struct lpfc_hba *phba, struct lpfc_dmabuf *buf_ptr)
3314{
3315 lpfc_mbuf_free(phba, buf_ptr->virt, buf_ptr->phys);
3316 kfree(buf_ptr);
3317 return 0;
3318}
3319
James Smarte59058c2008-08-24 21:49:00 -04003320/**
James Smart3621a712009-04-06 18:47:14 -04003321 * lpfc_els_free_iocb - Free a command iocb and its associated resources
James Smarte59058c2008-08-24 21:49:00 -04003322 * @phba: pointer to lpfc hba data structure.
3323 * @elsiocb: pointer to lpfc els command iocb data structure.
3324 *
3325 * This routine frees a command IOCB and its associated resources. The
3326 * command IOCB data structure contains the reference to various associated
3327 * resources, these fields must be set to NULL if the associated reference
3328 * not present:
3329 * context1 - reference to ndlp
3330 * context2 - reference to cmd
3331 * context2->next - reference to rsp
3332 * context3 - reference to bpl
3333 *
3334 * It first properly decrements the reference count held on ndlp for the
3335 * IOCB completion callback function. If LPFC_DELAY_MEM_FREE flag is not
3336 * set, it invokes the lpfc_els_free_data() routine to release the Direct
3337 * Memory Access (DMA) buffers associated with the IOCB. Otherwise, it
3338 * adds the DMA buffer the @phba data structure for the delayed release.
3339 * If reference to the Buffer Pointer List (BPL) is present, the
3340 * lpfc_els_free_bpl() routine is invoked to release the DMA memory
3341 * associated with BPL. Finally, the lpfc_sli_release_iocbq() routine is
3342 * invoked to release the IOCB data structure back to @phba IOCBQ list.
3343 *
3344 * Return code
3345 * 0 - Success (currently, always return 0)
3346 **/
James Smart87af33f2007-10-27 13:37:43 -04003347int
James Smart329f9bc2007-04-25 09:53:01 -04003348lpfc_els_free_iocb(struct lpfc_hba *phba, struct lpfc_iocbq *elsiocb)
dea31012005-04-17 16:05:31 -05003349{
3350 struct lpfc_dmabuf *buf_ptr, *buf_ptr1;
James Smarta8adb832007-10-27 13:37:53 -04003351 struct lpfc_nodelist *ndlp;
dea31012005-04-17 16:05:31 -05003352
James Smarta8adb832007-10-27 13:37:53 -04003353 ndlp = (struct lpfc_nodelist *)elsiocb->context1;
3354 if (ndlp) {
3355 if (ndlp->nlp_flag & NLP_DEFER_RM) {
3356 lpfc_nlp_put(ndlp);
3357
3358 /* If the ndlp is not being used by another discovery
3359 * thread, free it.
3360 */
3361 if (!lpfc_nlp_not_used(ndlp)) {
3362 /* If ndlp is being used by another discovery
3363 * thread, just clear NLP_DEFER_RM
3364 */
3365 ndlp->nlp_flag &= ~NLP_DEFER_RM;
3366 }
3367 }
3368 else
3369 lpfc_nlp_put(ndlp);
James Smart329f9bc2007-04-25 09:53:01 -04003370 elsiocb->context1 = NULL;
3371 }
dea31012005-04-17 16:05:31 -05003372 /* context2 = cmd, context2->next = rsp, context3 = bpl */
3373 if (elsiocb->context2) {
James Smart0ff10d42008-01-11 01:52:36 -05003374 if (elsiocb->iocb_flag & LPFC_DELAY_MEM_FREE) {
3375 /* Firmware could still be in progress of DMAing
3376 * payload, so don't free data buffer till after
3377 * a hbeat.
3378 */
3379 elsiocb->iocb_flag &= ~LPFC_DELAY_MEM_FREE;
3380 buf_ptr = elsiocb->context2;
3381 elsiocb->context2 = NULL;
3382 if (buf_ptr) {
3383 buf_ptr1 = NULL;
3384 spin_lock_irq(&phba->hbalock);
3385 if (!list_empty(&buf_ptr->list)) {
3386 list_remove_head(&buf_ptr->list,
3387 buf_ptr1, struct lpfc_dmabuf,
3388 list);
3389 INIT_LIST_HEAD(&buf_ptr1->list);
3390 list_add_tail(&buf_ptr1->list,
3391 &phba->elsbuf);
3392 phba->elsbuf_cnt++;
3393 }
3394 INIT_LIST_HEAD(&buf_ptr->list);
3395 list_add_tail(&buf_ptr->list, &phba->elsbuf);
3396 phba->elsbuf_cnt++;
3397 spin_unlock_irq(&phba->hbalock);
3398 }
3399 } else {
3400 buf_ptr1 = (struct lpfc_dmabuf *) elsiocb->context2;
3401 lpfc_els_free_data(phba, buf_ptr1);
3402 }
dea31012005-04-17 16:05:31 -05003403 }
3404
3405 if (elsiocb->context3) {
3406 buf_ptr = (struct lpfc_dmabuf *) elsiocb->context3;
James Smart87af33f2007-10-27 13:37:43 -04003407 lpfc_els_free_bpl(phba, buf_ptr);
dea31012005-04-17 16:05:31 -05003408 }
James Bottomley604a3e32005-10-29 10:28:33 -05003409 lpfc_sli_release_iocbq(phba, elsiocb);
dea31012005-04-17 16:05:31 -05003410 return 0;
3411}
3412
James Smarte59058c2008-08-24 21:49:00 -04003413/**
James Smart3621a712009-04-06 18:47:14 -04003414 * lpfc_cmpl_els_logo_acc - Completion callback function to logo acc response
James Smarte59058c2008-08-24 21:49:00 -04003415 * @phba: pointer to lpfc hba data structure.
3416 * @cmdiocb: pointer to lpfc command iocb data structure.
3417 * @rspiocb: pointer to lpfc response iocb data structure.
3418 *
3419 * This routine is the completion callback function to the Logout (LOGO)
3420 * Accept (ACC) Response ELS command. This routine is invoked to indicate
3421 * the completion of the LOGO process. It invokes the lpfc_nlp_not_used() to
3422 * release the ndlp if it has the last reference remaining (reference count
3423 * is 1). If succeeded (meaning ndlp released), it sets the IOCB context1
3424 * field to NULL to inform the following lpfc_els_free_iocb() routine no
3425 * ndlp reference count needs to be decremented. Otherwise, the ndlp
3426 * reference use-count shall be decremented by the lpfc_els_free_iocb()
3427 * routine. Finally, the lpfc_els_free_iocb() is invoked to release the
3428 * IOCB data structure.
3429 **/
dea31012005-04-17 16:05:31 -05003430static void
James Smart2e0fef82007-06-17 19:56:36 -05003431lpfc_cmpl_els_logo_acc(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
3432 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05003433{
James Smart2e0fef82007-06-17 19:56:36 -05003434 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
3435 struct lpfc_vport *vport = cmdiocb->vport;
James Smart858c9f62007-06-17 19:56:39 -05003436 IOCB_t *irsp;
3437
3438 irsp = &rspiocb->iocb;
3439 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
3440 "ACC LOGO cmpl: status:x%x/x%x did:x%x",
3441 irsp->ulpStatus, irsp->un.ulpWord[4], ndlp->nlp_DID);
dea31012005-04-17 16:05:31 -05003442 /* ACC to LOGO completes to NPort <nlp_DID> */
James Smarte8b62012007-08-02 11:10:09 -04003443 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
3444 "0109 ACC to LOGO completes to NPort x%x "
3445 "Data: x%x x%x x%x\n",
3446 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
3447 ndlp->nlp_rpi);
James Smart87af33f2007-10-27 13:37:43 -04003448
3449 if (ndlp->nlp_state == NLP_STE_NPR_NODE) {
3450 /* NPort Recovery mode or node is just allocated */
3451 if (!lpfc_nlp_not_used(ndlp)) {
3452 /* If the ndlp is being used by another discovery
3453 * thread, just unregister the RPI.
3454 */
3455 lpfc_unreg_rpi(vport, ndlp);
James Smartfa4066b2008-01-11 01:53:27 -05003456 } else {
3457 /* Indicate the node has already released, should
3458 * not reference to it from within lpfc_els_free_iocb.
3459 */
3460 cmdiocb->context1 = NULL;
James Smart87af33f2007-10-27 13:37:43 -04003461 }
dea31012005-04-17 16:05:31 -05003462 }
James Smart73d91e52011-10-10 21:32:10 -04003463
3464 /*
3465 * The driver received a LOGO from the rport and has ACK'd it.
James Smartdf9e1b52011-12-13 13:22:17 -05003466 * At this point, the driver is done so release the IOCB
James Smart73d91e52011-10-10 21:32:10 -04003467 */
dea31012005-04-17 16:05:31 -05003468 lpfc_els_free_iocb(phba, cmdiocb);
James Smartdf9e1b52011-12-13 13:22:17 -05003469
3470 /*
3471 * Remove the ndlp reference if it's a fabric node that has
3472 * sent us an unsolicted LOGO.
3473 */
3474 if (ndlp->nlp_type & NLP_FABRIC)
3475 lpfc_nlp_put(ndlp);
3476
dea31012005-04-17 16:05:31 -05003477 return;
3478}
3479
James Smarte59058c2008-08-24 21:49:00 -04003480/**
James Smart3621a712009-04-06 18:47:14 -04003481 * lpfc_mbx_cmpl_dflt_rpi - Completion callbk func for unreg dflt rpi mbox cmd
James Smarte59058c2008-08-24 21:49:00 -04003482 * @phba: pointer to lpfc hba data structure.
3483 * @pmb: pointer to the driver internal queue element for mailbox command.
3484 *
3485 * This routine is the completion callback function for unregister default
3486 * RPI (Remote Port Index) mailbox command to the @phba. It simply releases
3487 * the associated lpfc Direct Memory Access (DMA) buffer back to the pool and
3488 * decrements the ndlp reference count held for this completion callback
3489 * function. After that, it invokes the lpfc_nlp_not_used() to check
3490 * whether there is only one reference left on the ndlp. If so, it will
3491 * perform one more decrement and trigger the release of the ndlp.
3492 **/
James Smart858c9f62007-06-17 19:56:39 -05003493void
3494lpfc_mbx_cmpl_dflt_rpi(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
3495{
3496 struct lpfc_dmabuf *mp = (struct lpfc_dmabuf *) (pmb->context1);
3497 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) pmb->context2;
3498
3499 pmb->context1 = NULL;
James Smartd439d282010-09-29 11:18:45 -04003500 pmb->context2 = NULL;
3501
James Smart858c9f62007-06-17 19:56:39 -05003502 lpfc_mbuf_free(phba, mp->virt, mp->phys);
3503 kfree(mp);
3504 mempool_free(pmb, phba->mbox_mem_pool);
James Smart58da1ff2008-04-07 10:15:56 -04003505 if (ndlp && NLP_CHK_NODE_ACT(ndlp)) {
James Smarta8adb832007-10-27 13:37:53 -04003506 lpfc_nlp_put(ndlp);
James Smarta8adb832007-10-27 13:37:53 -04003507 /* This is the end of the default RPI cleanup logic for this
3508 * ndlp. If no other discovery threads are using this ndlp.
3509 * we should free all resources associated with it.
3510 */
3511 lpfc_nlp_not_used(ndlp);
3512 }
James Smart3772a992009-05-22 14:50:54 -04003513
James Smart858c9f62007-06-17 19:56:39 -05003514 return;
3515}
3516
James Smarte59058c2008-08-24 21:49:00 -04003517/**
James Smart3621a712009-04-06 18:47:14 -04003518 * lpfc_cmpl_els_rsp - Completion callback function for els response iocb cmd
James Smarte59058c2008-08-24 21:49:00 -04003519 * @phba: pointer to lpfc hba data structure.
3520 * @cmdiocb: pointer to lpfc command iocb data structure.
3521 * @rspiocb: pointer to lpfc response iocb data structure.
3522 *
3523 * This routine is the completion callback function for ELS Response IOCB
3524 * command. In normal case, this callback function just properly sets the
3525 * nlp_flag bitmap in the ndlp data structure, if the mbox command reference
3526 * field in the command IOCB is not NULL, the referred mailbox command will
3527 * be send out, and then invokes the lpfc_els_free_iocb() routine to release
3528 * the IOCB. Under error conditions, such as when a LS_RJT is returned or a
3529 * link down event occurred during the discovery, the lpfc_nlp_not_used()
3530 * routine shall be invoked trying to release the ndlp if no other threads
3531 * are currently referring it.
3532 **/
dea31012005-04-17 16:05:31 -05003533static void
James Smart858c9f62007-06-17 19:56:39 -05003534lpfc_cmpl_els_rsp(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
James Smart329f9bc2007-04-25 09:53:01 -04003535 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05003536{
James Smart2e0fef82007-06-17 19:56:36 -05003537 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
3538 struct lpfc_vport *vport = ndlp ? ndlp->vport : NULL;
3539 struct Scsi_Host *shost = vport ? lpfc_shost_from_vport(vport) : NULL;
James Smart87af33f2007-10-27 13:37:43 -04003540 IOCB_t *irsp;
3541 uint8_t *pcmd;
dea31012005-04-17 16:05:31 -05003542 LPFC_MBOXQ_t *mbox = NULL;
James Smart2e0fef82007-06-17 19:56:36 -05003543 struct lpfc_dmabuf *mp = NULL;
James Smart87af33f2007-10-27 13:37:43 -04003544 uint32_t ls_rjt = 0;
dea31012005-04-17 16:05:31 -05003545
James Smart33ccf8d2006-08-17 11:57:58 -04003546 irsp = &rspiocb->iocb;
3547
dea31012005-04-17 16:05:31 -05003548 if (cmdiocb->context_un.mbox)
3549 mbox = cmdiocb->context_un.mbox;
3550
James Smartfa4066b2008-01-11 01:53:27 -05003551 /* First determine if this is a LS_RJT cmpl. Note, this callback
3552 * function can have cmdiocb->contest1 (ndlp) field set to NULL.
3553 */
James Smart87af33f2007-10-27 13:37:43 -04003554 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) cmdiocb->context2)->virt);
James Smart58da1ff2008-04-07 10:15:56 -04003555 if (ndlp && NLP_CHK_NODE_ACT(ndlp) &&
3556 (*((uint32_t *) (pcmd)) == ELS_CMD_LS_RJT)) {
James Smartfa4066b2008-01-11 01:53:27 -05003557 /* A LS_RJT associated with Default RPI cleanup has its own
Daniel Mack3ad2f3f2010-02-03 08:01:28 +08003558 * separate code path.
James Smart87af33f2007-10-27 13:37:43 -04003559 */
3560 if (!(ndlp->nlp_flag & NLP_RM_DFLT_RPI))
3561 ls_rjt = 1;
3562 }
3563
dea31012005-04-17 16:05:31 -05003564 /* Check to see if link went down during discovery */
James Smart58da1ff2008-04-07 10:15:56 -04003565 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp) || lpfc_els_chk_latt(vport)) {
dea31012005-04-17 16:05:31 -05003566 if (mbox) {
James Smart14691152006-12-02 13:34:28 -05003567 mp = (struct lpfc_dmabuf *) mbox->context1;
3568 if (mp) {
3569 lpfc_mbuf_free(phba, mp->virt, mp->phys);
3570 kfree(mp);
3571 }
James Smart329f9bc2007-04-25 09:53:01 -04003572 mempool_free(mbox, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -05003573 }
James Smart58da1ff2008-04-07 10:15:56 -04003574 if (ndlp && NLP_CHK_NODE_ACT(ndlp) &&
3575 (ndlp->nlp_flag & NLP_RM_DFLT_RPI))
James Smartfa4066b2008-01-11 01:53:27 -05003576 if (lpfc_nlp_not_used(ndlp)) {
James Smart98c9ea52007-10-27 13:37:33 -04003577 ndlp = NULL;
James Smartfa4066b2008-01-11 01:53:27 -05003578 /* Indicate the node has already released,
3579 * should not reference to it from within
3580 * the routine lpfc_els_free_iocb.
3581 */
3582 cmdiocb->context1 = NULL;
3583 }
dea31012005-04-17 16:05:31 -05003584 goto out;
3585 }
3586
James Smart858c9f62007-06-17 19:56:39 -05003587 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
James Smart51ef4c22007-08-02 11:10:31 -04003588 "ELS rsp cmpl: status:x%x/x%x did:x%x",
James Smart858c9f62007-06-17 19:56:39 -05003589 irsp->ulpStatus, irsp->un.ulpWord[4],
James Smart51ef4c22007-08-02 11:10:31 -04003590 cmdiocb->iocb.un.elsreq64.remoteID);
dea31012005-04-17 16:05:31 -05003591 /* ELS response tag <ulpIoTag> completes */
James Smarte8b62012007-08-02 11:10:09 -04003592 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
3593 "0110 ELS response tag x%x completes "
3594 "Data: x%x x%x x%x x%x x%x x%x x%x\n",
3595 cmdiocb->iocb.ulpIoTag, rspiocb->iocb.ulpStatus,
3596 rspiocb->iocb.un.ulpWord[4], rspiocb->iocb.ulpTimeout,
3597 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
3598 ndlp->nlp_rpi);
dea31012005-04-17 16:05:31 -05003599 if (mbox) {
3600 if ((rspiocb->iocb.ulpStatus == 0)
3601 && (ndlp->nlp_flag & NLP_ACC_REGLOGIN)) {
James Smart2e0fef82007-06-17 19:56:36 -05003602 lpfc_unreg_rpi(vport, ndlp);
James Smarte47c9092008-02-08 18:49:26 -05003603 /* Increment reference count to ndlp to hold the
3604 * reference to ndlp for the callback function.
3605 */
James Smart329f9bc2007-04-25 09:53:01 -04003606 mbox->context2 = lpfc_nlp_get(ndlp);
James Smart2e0fef82007-06-17 19:56:36 -05003607 mbox->vport = vport;
James Smart858c9f62007-06-17 19:56:39 -05003608 if (ndlp->nlp_flag & NLP_RM_DFLT_RPI) {
3609 mbox->mbox_flag |= LPFC_MBX_IMED_UNREG;
3610 mbox->mbox_cmpl = lpfc_mbx_cmpl_dflt_rpi;
3611 }
3612 else {
3613 mbox->mbox_cmpl = lpfc_mbx_cmpl_reg_login;
3614 ndlp->nlp_prev_state = ndlp->nlp_state;
3615 lpfc_nlp_set_state(vport, ndlp,
James Smart2e0fef82007-06-17 19:56:36 -05003616 NLP_STE_REG_LOGIN_ISSUE);
James Smart858c9f62007-06-17 19:56:39 -05003617 }
James Smart0b727fe2007-10-27 13:37:25 -04003618 if (lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT)
James Smarte47c9092008-02-08 18:49:26 -05003619 != MBX_NOT_FINISHED)
dea31012005-04-17 16:05:31 -05003620 goto out;
James Smarte47c9092008-02-08 18:49:26 -05003621 else
3622 /* Decrement the ndlp reference count we
3623 * set for this failed mailbox command.
3624 */
3625 lpfc_nlp_put(ndlp);
James Smart98c9ea52007-10-27 13:37:33 -04003626
3627 /* ELS rsp: Cannot issue reg_login for <NPortid> */
3628 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
3629 "0138 ELS rsp: Cannot issue reg_login for x%x "
3630 "Data: x%x x%x x%x\n",
3631 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
3632 ndlp->nlp_rpi);
3633
James Smartfa4066b2008-01-11 01:53:27 -05003634 if (lpfc_nlp_not_used(ndlp)) {
James Smart98c9ea52007-10-27 13:37:33 -04003635 ndlp = NULL;
James Smartfa4066b2008-01-11 01:53:27 -05003636 /* Indicate node has already been released,
3637 * should not reference to it from within
3638 * the routine lpfc_els_free_iocb.
3639 */
3640 cmdiocb->context1 = NULL;
3641 }
dea31012005-04-17 16:05:31 -05003642 } else {
James Smart858c9f62007-06-17 19:56:39 -05003643 /* Do not drop node for lpfc_els_abort'ed ELS cmds */
3644 if (!lpfc_error_lost_link(irsp) &&
3645 ndlp->nlp_flag & NLP_ACC_REGLOGIN) {
James Smartfa4066b2008-01-11 01:53:27 -05003646 if (lpfc_nlp_not_used(ndlp)) {
James Smart98c9ea52007-10-27 13:37:33 -04003647 ndlp = NULL;
James Smartfa4066b2008-01-11 01:53:27 -05003648 /* Indicate node has already been
3649 * released, should not reference
3650 * to it from within the routine
3651 * lpfc_els_free_iocb.
3652 */
3653 cmdiocb->context1 = NULL;
3654 }
dea31012005-04-17 16:05:31 -05003655 }
3656 }
James Smart14691152006-12-02 13:34:28 -05003657 mp = (struct lpfc_dmabuf *) mbox->context1;
3658 if (mp) {
3659 lpfc_mbuf_free(phba, mp->virt, mp->phys);
3660 kfree(mp);
3661 }
3662 mempool_free(mbox, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -05003663 }
3664out:
James Smart58da1ff2008-04-07 10:15:56 -04003665 if (ndlp && NLP_CHK_NODE_ACT(ndlp)) {
James Smart2e0fef82007-06-17 19:56:36 -05003666 spin_lock_irq(shost->host_lock);
James Smart858c9f62007-06-17 19:56:39 -05003667 ndlp->nlp_flag &= ~(NLP_ACC_REGLOGIN | NLP_RM_DFLT_RPI);
James Smart2e0fef82007-06-17 19:56:36 -05003668 spin_unlock_irq(shost->host_lock);
James Smart87af33f2007-10-27 13:37:43 -04003669
3670 /* If the node is not being used by another discovery thread,
3671 * and we are sending a reject, we are done with it.
3672 * Release driver reference count here and free associated
3673 * resources.
3674 */
3675 if (ls_rjt)
James Smartfa4066b2008-01-11 01:53:27 -05003676 if (lpfc_nlp_not_used(ndlp))
3677 /* Indicate node has already been released,
3678 * should not reference to it from within
3679 * the routine lpfc_els_free_iocb.
3680 */
3681 cmdiocb->context1 = NULL;
dea31012005-04-17 16:05:31 -05003682 }
James Smart87af33f2007-10-27 13:37:43 -04003683
dea31012005-04-17 16:05:31 -05003684 lpfc_els_free_iocb(phba, cmdiocb);
3685 return;
3686}
3687
James Smarte59058c2008-08-24 21:49:00 -04003688/**
James Smart3621a712009-04-06 18:47:14 -04003689 * lpfc_els_rsp_acc - Prepare and issue an acc response iocb command
James Smarte59058c2008-08-24 21:49:00 -04003690 * @vport: pointer to a host virtual N_Port data structure.
3691 * @flag: the els command code to be accepted.
3692 * @oldiocb: pointer to the original lpfc command iocb data structure.
3693 * @ndlp: pointer to a node-list data structure.
3694 * @mbox: pointer to the driver internal queue element for mailbox command.
3695 *
3696 * This routine prepares and issues an Accept (ACC) response IOCB
3697 * command. It uses the @flag to properly set up the IOCB field for the
3698 * specific ACC response command to be issued and invokes the
3699 * lpfc_sli_issue_iocb() routine to send out ACC response IOCB. If a
3700 * @mbox pointer is passed in, it will be put into the context_un.mbox
3701 * field of the IOCB for the completion callback function to issue the
3702 * mailbox command to the HBA later when callback is invoked.
3703 *
3704 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
3705 * will be incremented by 1 for holding the ndlp and the reference to ndlp
3706 * will be stored into the context1 field of the IOCB for the completion
3707 * callback function to the corresponding response ELS IOCB command.
3708 *
3709 * Return code
3710 * 0 - Successfully issued acc response
3711 * 1 - Failed to issue acc response
3712 **/
dea31012005-04-17 16:05:31 -05003713int
James Smart2e0fef82007-06-17 19:56:36 -05003714lpfc_els_rsp_acc(struct lpfc_vport *vport, uint32_t flag,
3715 struct lpfc_iocbq *oldiocb, struct lpfc_nodelist *ndlp,
James Smart51ef4c22007-08-02 11:10:31 -04003716 LPFC_MBOXQ_t *mbox)
dea31012005-04-17 16:05:31 -05003717{
James Smart2e0fef82007-06-17 19:56:36 -05003718 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
3719 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05003720 IOCB_t *icmd;
3721 IOCB_t *oldcmd;
3722 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05003723 struct lpfc_sli *psli;
3724 uint8_t *pcmd;
3725 uint16_t cmdsize;
3726 int rc;
James Smart82d9a2a2006-04-15 11:53:05 -04003727 ELS_PKT *els_pkt_ptr;
dea31012005-04-17 16:05:31 -05003728
3729 psli = &phba->sli;
dea31012005-04-17 16:05:31 -05003730 oldcmd = &oldiocb->iocb;
3731
3732 switch (flag) {
3733 case ELS_CMD_ACC:
James Smart92d7f7b2007-06-17 19:56:38 -05003734 cmdsize = sizeof(uint32_t);
James Smart2e0fef82007-06-17 19:56:36 -05003735 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry,
3736 ndlp, ndlp->nlp_DID, ELS_CMD_ACC);
James Smart488d1462006-03-07 15:02:37 -05003737 if (!elsiocb) {
James Smart2e0fef82007-06-17 19:56:36 -05003738 spin_lock_irq(shost->host_lock);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003739 ndlp->nlp_flag &= ~NLP_LOGO_ACC;
James Smart2e0fef82007-06-17 19:56:36 -05003740 spin_unlock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003741 return 1;
dea31012005-04-17 16:05:31 -05003742 }
James Smart2e0fef82007-06-17 19:56:36 -05003743
dea31012005-04-17 16:05:31 -05003744 icmd = &elsiocb->iocb;
James Smart7851fe22011-07-22 18:36:52 -04003745 icmd->ulpContext = oldcmd->ulpContext; /* Xri / rx_id */
3746 icmd->unsli3.rcvsli3.ox_id = oldcmd->unsli3.rcvsli3.ox_id;
dea31012005-04-17 16:05:31 -05003747 pcmd = (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
3748 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
James Smart92d7f7b2007-06-17 19:56:38 -05003749 pcmd += sizeof(uint32_t);
James Smart858c9f62007-06-17 19:56:39 -05003750
3751 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
3752 "Issue ACC: did:x%x flg:x%x",
3753 ndlp->nlp_DID, ndlp->nlp_flag, 0);
dea31012005-04-17 16:05:31 -05003754 break;
3755 case ELS_CMD_PLOGI:
James Smart92d7f7b2007-06-17 19:56:38 -05003756 cmdsize = (sizeof(struct serv_parm) + sizeof(uint32_t));
James Smart2e0fef82007-06-17 19:56:36 -05003757 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry,
3758 ndlp, ndlp->nlp_DID, ELS_CMD_ACC);
James Smart488d1462006-03-07 15:02:37 -05003759 if (!elsiocb)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003760 return 1;
James Smart488d1462006-03-07 15:02:37 -05003761
dea31012005-04-17 16:05:31 -05003762 icmd = &elsiocb->iocb;
James Smart7851fe22011-07-22 18:36:52 -04003763 icmd->ulpContext = oldcmd->ulpContext; /* Xri / rx_id */
3764 icmd->unsli3.rcvsli3.ox_id = oldcmd->unsli3.rcvsli3.ox_id;
dea31012005-04-17 16:05:31 -05003765 pcmd = (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
3766
3767 if (mbox)
3768 elsiocb->context_un.mbox = mbox;
3769
3770 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
James Smart92d7f7b2007-06-17 19:56:38 -05003771 pcmd += sizeof(uint32_t);
3772 memcpy(pcmd, &vport->fc_sparam, sizeof(struct serv_parm));
James Smart858c9f62007-06-17 19:56:39 -05003773
3774 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
3775 "Issue ACC PLOGI: did:x%x flg:x%x",
3776 ndlp->nlp_DID, ndlp->nlp_flag, 0);
dea31012005-04-17 16:05:31 -05003777 break;
James Smart82d9a2a2006-04-15 11:53:05 -04003778 case ELS_CMD_PRLO:
James Smart92d7f7b2007-06-17 19:56:38 -05003779 cmdsize = sizeof(uint32_t) + sizeof(PRLO);
James Smart2e0fef82007-06-17 19:56:36 -05003780 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry,
James Smart82d9a2a2006-04-15 11:53:05 -04003781 ndlp, ndlp->nlp_DID, ELS_CMD_PRLO);
3782 if (!elsiocb)
3783 return 1;
3784
3785 icmd = &elsiocb->iocb;
James Smart7851fe22011-07-22 18:36:52 -04003786 icmd->ulpContext = oldcmd->ulpContext; /* Xri / rx_id */
3787 icmd->unsli3.rcvsli3.ox_id = oldcmd->unsli3.rcvsli3.ox_id;
James Smart82d9a2a2006-04-15 11:53:05 -04003788 pcmd = (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
3789
3790 memcpy(pcmd, ((struct lpfc_dmabuf *) oldiocb->context2)->virt,
James Smart92d7f7b2007-06-17 19:56:38 -05003791 sizeof(uint32_t) + sizeof(PRLO));
James Smart82d9a2a2006-04-15 11:53:05 -04003792 *((uint32_t *) (pcmd)) = ELS_CMD_PRLO_ACC;
3793 els_pkt_ptr = (ELS_PKT *) pcmd;
3794 els_pkt_ptr->un.prlo.acceptRspCode = PRLO_REQ_EXECUTED;
James Smart858c9f62007-06-17 19:56:39 -05003795
3796 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
3797 "Issue ACC PRLO: did:x%x flg:x%x",
3798 ndlp->nlp_DID, ndlp->nlp_flag, 0);
James Smart82d9a2a2006-04-15 11:53:05 -04003799 break;
dea31012005-04-17 16:05:31 -05003800 default:
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003801 return 1;
dea31012005-04-17 16:05:31 -05003802 }
dea31012005-04-17 16:05:31 -05003803 /* Xmit ELS ACC response tag <ulpIoTag> */
James Smarte8b62012007-08-02 11:10:09 -04003804 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
3805 "0128 Xmit ELS ACC response tag x%x, XRI: x%x, "
3806 "DID: x%x, nlp_flag: x%x nlp_state: x%x RPI: x%x\n",
3807 elsiocb->iotag, elsiocb->iocb.ulpContext,
3808 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
3809 ndlp->nlp_rpi);
dea31012005-04-17 16:05:31 -05003810 if (ndlp->nlp_flag & NLP_LOGO_ACC) {
James Smart2e0fef82007-06-17 19:56:36 -05003811 spin_lock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003812 ndlp->nlp_flag &= ~NLP_LOGO_ACC;
James Smart2e0fef82007-06-17 19:56:36 -05003813 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05003814 elsiocb->iocb_cmpl = lpfc_cmpl_els_logo_acc;
3815 } else {
James Smart858c9f62007-06-17 19:56:39 -05003816 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
dea31012005-04-17 16:05:31 -05003817 }
3818
3819 phba->fc_stat.elsXmitACC++;
James Smart3772a992009-05-22 14:50:54 -04003820 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
dea31012005-04-17 16:05:31 -05003821 if (rc == IOCB_ERROR) {
3822 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003823 return 1;
dea31012005-04-17 16:05:31 -05003824 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003825 return 0;
dea31012005-04-17 16:05:31 -05003826}
3827
James Smarte59058c2008-08-24 21:49:00 -04003828/**
James Smart3621a712009-04-06 18:47:14 -04003829 * lpfc_els_rsp_reject - Propare and issue a rjt response iocb command
James Smarte59058c2008-08-24 21:49:00 -04003830 * @vport: pointer to a virtual N_Port data structure.
3831 * @rejectError:
3832 * @oldiocb: pointer to the original lpfc command iocb data structure.
3833 * @ndlp: pointer to a node-list data structure.
3834 * @mbox: pointer to the driver internal queue element for mailbox command.
3835 *
3836 * This routine prepares and issue an Reject (RJT) response IOCB
3837 * command. If a @mbox pointer is passed in, it will be put into the
3838 * context_un.mbox field of the IOCB for the completion callback function
3839 * to issue to the HBA later.
3840 *
3841 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
3842 * will be incremented by 1 for holding the ndlp and the reference to ndlp
3843 * will be stored into the context1 field of the IOCB for the completion
3844 * callback function to the reject response ELS IOCB command.
3845 *
3846 * Return code
3847 * 0 - Successfully issued reject response
3848 * 1 - Failed to issue reject response
3849 **/
dea31012005-04-17 16:05:31 -05003850int
James Smart2e0fef82007-06-17 19:56:36 -05003851lpfc_els_rsp_reject(struct lpfc_vport *vport, uint32_t rejectError,
James Smart858c9f62007-06-17 19:56:39 -05003852 struct lpfc_iocbq *oldiocb, struct lpfc_nodelist *ndlp,
3853 LPFC_MBOXQ_t *mbox)
dea31012005-04-17 16:05:31 -05003854{
James Smart2e0fef82007-06-17 19:56:36 -05003855 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05003856 IOCB_t *icmd;
3857 IOCB_t *oldcmd;
3858 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05003859 struct lpfc_sli *psli;
3860 uint8_t *pcmd;
3861 uint16_t cmdsize;
3862 int rc;
3863
3864 psli = &phba->sli;
James Smart92d7f7b2007-06-17 19:56:38 -05003865 cmdsize = 2 * sizeof(uint32_t);
James Smart2e0fef82007-06-17 19:56:36 -05003866 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry, ndlp,
3867 ndlp->nlp_DID, ELS_CMD_LS_RJT);
James Smart488d1462006-03-07 15:02:37 -05003868 if (!elsiocb)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003869 return 1;
dea31012005-04-17 16:05:31 -05003870
3871 icmd = &elsiocb->iocb;
3872 oldcmd = &oldiocb->iocb;
James Smart7851fe22011-07-22 18:36:52 -04003873 icmd->ulpContext = oldcmd->ulpContext; /* Xri / rx_id */
3874 icmd->unsli3.rcvsli3.ox_id = oldcmd->unsli3.rcvsli3.ox_id;
dea31012005-04-17 16:05:31 -05003875 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
3876
3877 *((uint32_t *) (pcmd)) = ELS_CMD_LS_RJT;
James Smart92d7f7b2007-06-17 19:56:38 -05003878 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05003879 *((uint32_t *) (pcmd)) = rejectError;
3880
James Smart51ef4c22007-08-02 11:10:31 -04003881 if (mbox)
James Smart858c9f62007-06-17 19:56:39 -05003882 elsiocb->context_un.mbox = mbox;
James Smart858c9f62007-06-17 19:56:39 -05003883
dea31012005-04-17 16:05:31 -05003884 /* Xmit ELS RJT <err> response tag <ulpIoTag> */
James Smarte8b62012007-08-02 11:10:09 -04003885 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
3886 "0129 Xmit ELS RJT x%x response tag x%x "
3887 "xri x%x, did x%x, nlp_flag x%x, nlp_state x%x, "
3888 "rpi x%x\n",
3889 rejectError, elsiocb->iotag,
3890 elsiocb->iocb.ulpContext, ndlp->nlp_DID,
3891 ndlp->nlp_flag, ndlp->nlp_state, ndlp->nlp_rpi);
James Smart858c9f62007-06-17 19:56:39 -05003892 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
3893 "Issue LS_RJT: did:x%x flg:x%x err:x%x",
3894 ndlp->nlp_DID, ndlp->nlp_flag, rejectError);
3895
dea31012005-04-17 16:05:31 -05003896 phba->fc_stat.elsXmitLSRJT++;
James Smart858c9f62007-06-17 19:56:39 -05003897 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
James Smart3772a992009-05-22 14:50:54 -04003898 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
James Smart51ef4c22007-08-02 11:10:31 -04003899
dea31012005-04-17 16:05:31 -05003900 if (rc == IOCB_ERROR) {
3901 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003902 return 1;
dea31012005-04-17 16:05:31 -05003903 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003904 return 0;
dea31012005-04-17 16:05:31 -05003905}
3906
James Smarte59058c2008-08-24 21:49:00 -04003907/**
James Smart3621a712009-04-06 18:47:14 -04003908 * lpfc_els_rsp_adisc_acc - Prepare and issue acc response to adisc iocb cmd
James Smarte59058c2008-08-24 21:49:00 -04003909 * @vport: pointer to a virtual N_Port data structure.
3910 * @oldiocb: pointer to the original lpfc command iocb data structure.
3911 * @ndlp: pointer to a node-list data structure.
3912 *
3913 * This routine prepares and issues an Accept (ACC) response to Address
3914 * Discover (ADISC) ELS command. It simply prepares the payload of the IOCB
3915 * and invokes the lpfc_sli_issue_iocb() routine to send out the command.
3916 *
3917 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
3918 * will be incremented by 1 for holding the ndlp and the reference to ndlp
3919 * will be stored into the context1 field of the IOCB for the completion
3920 * callback function to the ADISC Accept response ELS IOCB command.
3921 *
3922 * Return code
3923 * 0 - Successfully issued acc adisc response
3924 * 1 - Failed to issue adisc acc response
3925 **/
dea31012005-04-17 16:05:31 -05003926int
James Smart2e0fef82007-06-17 19:56:36 -05003927lpfc_els_rsp_adisc_acc(struct lpfc_vport *vport, struct lpfc_iocbq *oldiocb,
3928 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05003929{
James Smart2e0fef82007-06-17 19:56:36 -05003930 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05003931 ADISC *ap;
James Smart2e0fef82007-06-17 19:56:36 -05003932 IOCB_t *icmd, *oldcmd;
dea31012005-04-17 16:05:31 -05003933 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05003934 uint8_t *pcmd;
3935 uint16_t cmdsize;
3936 int rc;
3937
James Smart92d7f7b2007-06-17 19:56:38 -05003938 cmdsize = sizeof(uint32_t) + sizeof(ADISC);
James Smart2e0fef82007-06-17 19:56:36 -05003939 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry, ndlp,
3940 ndlp->nlp_DID, ELS_CMD_ACC);
James Smart488d1462006-03-07 15:02:37 -05003941 if (!elsiocb)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003942 return 1;
dea31012005-04-17 16:05:31 -05003943
dea31012005-04-17 16:05:31 -05003944 icmd = &elsiocb->iocb;
3945 oldcmd = &oldiocb->iocb;
James Smart7851fe22011-07-22 18:36:52 -04003946 icmd->ulpContext = oldcmd->ulpContext; /* Xri / rx_id */
3947 icmd->unsli3.rcvsli3.ox_id = oldcmd->unsli3.rcvsli3.ox_id;
James Smart5b8bd0c2007-04-25 09:52:49 -04003948
3949 /* Xmit ADISC ACC response tag <ulpIoTag> */
James Smarte8b62012007-08-02 11:10:09 -04003950 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
3951 "0130 Xmit ADISC ACC response iotag x%x xri: "
3952 "x%x, did x%x, nlp_flag x%x, nlp_state x%x rpi x%x\n",
3953 elsiocb->iotag, elsiocb->iocb.ulpContext,
3954 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
3955 ndlp->nlp_rpi);
dea31012005-04-17 16:05:31 -05003956 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
3957
3958 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
James Smart92d7f7b2007-06-17 19:56:38 -05003959 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05003960
3961 ap = (ADISC *) (pcmd);
3962 ap->hardAL_PA = phba->fc_pref_ALPA;
James Smart92d7f7b2007-06-17 19:56:38 -05003963 memcpy(&ap->portName, &vport->fc_portname, sizeof(struct lpfc_name));
3964 memcpy(&ap->nodeName, &vport->fc_nodename, sizeof(struct lpfc_name));
James Smart2e0fef82007-06-17 19:56:36 -05003965 ap->DID = be32_to_cpu(vport->fc_myDID);
dea31012005-04-17 16:05:31 -05003966
James Smart858c9f62007-06-17 19:56:39 -05003967 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
3968 "Issue ACC ADISC: did:x%x flg:x%x",
3969 ndlp->nlp_DID, ndlp->nlp_flag, 0);
3970
dea31012005-04-17 16:05:31 -05003971 phba->fc_stat.elsXmitACC++;
James Smart858c9f62007-06-17 19:56:39 -05003972 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
James Smart3772a992009-05-22 14:50:54 -04003973 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
dea31012005-04-17 16:05:31 -05003974 if (rc == IOCB_ERROR) {
3975 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003976 return 1;
dea31012005-04-17 16:05:31 -05003977 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003978 return 0;
dea31012005-04-17 16:05:31 -05003979}
3980
James Smarte59058c2008-08-24 21:49:00 -04003981/**
James Smart3621a712009-04-06 18:47:14 -04003982 * lpfc_els_rsp_prli_acc - Prepare and issue acc response to prli iocb cmd
James Smarte59058c2008-08-24 21:49:00 -04003983 * @vport: pointer to a virtual N_Port data structure.
3984 * @oldiocb: pointer to the original lpfc command iocb data structure.
3985 * @ndlp: pointer to a node-list data structure.
3986 *
3987 * This routine prepares and issues an Accept (ACC) response to Process
3988 * Login (PRLI) ELS command. It simply prepares the payload of the IOCB
3989 * and invokes the lpfc_sli_issue_iocb() routine to send out the command.
3990 *
3991 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
3992 * will be incremented by 1 for holding the ndlp and the reference to ndlp
3993 * will be stored into the context1 field of the IOCB for the completion
3994 * callback function to the PRLI Accept response ELS IOCB command.
3995 *
3996 * Return code
3997 * 0 - Successfully issued acc prli response
3998 * 1 - Failed to issue acc prli response
3999 **/
dea31012005-04-17 16:05:31 -05004000int
James Smart2e0fef82007-06-17 19:56:36 -05004001lpfc_els_rsp_prli_acc(struct lpfc_vport *vport, struct lpfc_iocbq *oldiocb,
James Smart5b8bd0c2007-04-25 09:52:49 -04004002 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05004003{
James Smart2e0fef82007-06-17 19:56:36 -05004004 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05004005 PRLI *npr;
4006 lpfc_vpd_t *vpd;
4007 IOCB_t *icmd;
4008 IOCB_t *oldcmd;
4009 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05004010 struct lpfc_sli *psli;
4011 uint8_t *pcmd;
4012 uint16_t cmdsize;
4013 int rc;
4014
4015 psli = &phba->sli;
dea31012005-04-17 16:05:31 -05004016
James Smart92d7f7b2007-06-17 19:56:38 -05004017 cmdsize = sizeof(uint32_t) + sizeof(PRLI);
James Smart2e0fef82007-06-17 19:56:36 -05004018 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry, ndlp,
James Smart92d7f7b2007-06-17 19:56:38 -05004019 ndlp->nlp_DID, (ELS_CMD_ACC | (ELS_CMD_PRLI & ~ELS_RSP_MASK)));
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004020 if (!elsiocb)
4021 return 1;
dea31012005-04-17 16:05:31 -05004022
dea31012005-04-17 16:05:31 -05004023 icmd = &elsiocb->iocb;
4024 oldcmd = &oldiocb->iocb;
James Smart7851fe22011-07-22 18:36:52 -04004025 icmd->ulpContext = oldcmd->ulpContext; /* Xri / rx_id */
4026 icmd->unsli3.rcvsli3.ox_id = oldcmd->unsli3.rcvsli3.ox_id;
4027
James Smart5b8bd0c2007-04-25 09:52:49 -04004028 /* Xmit PRLI ACC response tag <ulpIoTag> */
James Smarte8b62012007-08-02 11:10:09 -04004029 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
4030 "0131 Xmit PRLI ACC response tag x%x xri x%x, "
4031 "did x%x, nlp_flag x%x, nlp_state x%x, rpi x%x\n",
4032 elsiocb->iotag, elsiocb->iocb.ulpContext,
4033 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
4034 ndlp->nlp_rpi);
dea31012005-04-17 16:05:31 -05004035 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
4036
4037 *((uint32_t *) (pcmd)) = (ELS_CMD_ACC | (ELS_CMD_PRLI & ~ELS_RSP_MASK));
James Smart92d7f7b2007-06-17 19:56:38 -05004038 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05004039
4040 /* For PRLI, remainder of payload is PRLI parameter page */
James Smart92d7f7b2007-06-17 19:56:38 -05004041 memset(pcmd, 0, sizeof(PRLI));
dea31012005-04-17 16:05:31 -05004042
4043 npr = (PRLI *) pcmd;
4044 vpd = &phba->vpd;
4045 /*
James Smart0d2b6b82008-06-14 22:52:47 -04004046 * If the remote port is a target and our firmware version is 3.20 or
4047 * later, set the following bits for FC-TAPE support.
dea31012005-04-17 16:05:31 -05004048 */
James Smart0d2b6b82008-06-14 22:52:47 -04004049 if ((ndlp->nlp_type & NLP_FCP_TARGET) &&
4050 (vpd->rev.feaLevelHigh >= 0x02)) {
dea31012005-04-17 16:05:31 -05004051 npr->ConfmComplAllowed = 1;
4052 npr->Retry = 1;
4053 npr->TaskRetryIdReq = 1;
4054 }
4055
4056 npr->acceptRspCode = PRLI_REQ_EXECUTED;
4057 npr->estabImagePair = 1;
4058 npr->readXferRdyDis = 1;
4059 npr->ConfmComplAllowed = 1;
4060
4061 npr->prliType = PRLI_FCP_TYPE;
4062 npr->initiatorFunc = 1;
4063
James Smart858c9f62007-06-17 19:56:39 -05004064 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
4065 "Issue ACC PRLI: did:x%x flg:x%x",
4066 ndlp->nlp_DID, ndlp->nlp_flag, 0);
4067
dea31012005-04-17 16:05:31 -05004068 phba->fc_stat.elsXmitACC++;
James Smart858c9f62007-06-17 19:56:39 -05004069 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
dea31012005-04-17 16:05:31 -05004070
James Smart3772a992009-05-22 14:50:54 -04004071 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
dea31012005-04-17 16:05:31 -05004072 if (rc == IOCB_ERROR) {
4073 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004074 return 1;
dea31012005-04-17 16:05:31 -05004075 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004076 return 0;
dea31012005-04-17 16:05:31 -05004077}
4078
James Smarte59058c2008-08-24 21:49:00 -04004079/**
James Smart3621a712009-04-06 18:47:14 -04004080 * lpfc_els_rsp_rnid_acc - Issue rnid acc response iocb command
James Smarte59058c2008-08-24 21:49:00 -04004081 * @vport: pointer to a virtual N_Port data structure.
4082 * @format: rnid command format.
4083 * @oldiocb: pointer to the original lpfc command iocb data structure.
4084 * @ndlp: pointer to a node-list data structure.
4085 *
4086 * This routine issues a Request Node Identification Data (RNID) Accept
4087 * (ACC) response. It constructs the RNID ACC response command according to
4088 * the proper @format and then calls the lpfc_sli_issue_iocb() routine to
4089 * issue the response. Note that this command does not need to hold the ndlp
4090 * reference count for the callback. So, the ndlp reference count taken by
4091 * the lpfc_prep_els_iocb() routine is put back and the context1 field of
4092 * IOCB is set to NULL to indicate to the lpfc_els_free_iocb() routine that
4093 * there is no ndlp reference available.
4094 *
4095 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
4096 * will be incremented by 1 for holding the ndlp and the reference to ndlp
4097 * will be stored into the context1 field of the IOCB for the completion
4098 * callback function. However, for the RNID Accept Response ELS command,
4099 * this is undone later by this routine after the IOCB is allocated.
4100 *
4101 * Return code
4102 * 0 - Successfully issued acc rnid response
4103 * 1 - Failed to issue acc rnid response
4104 **/
dea31012005-04-17 16:05:31 -05004105static int
James Smart2e0fef82007-06-17 19:56:36 -05004106lpfc_els_rsp_rnid_acc(struct lpfc_vport *vport, uint8_t format,
James Smart329f9bc2007-04-25 09:53:01 -04004107 struct lpfc_iocbq *oldiocb, struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05004108{
James Smart2e0fef82007-06-17 19:56:36 -05004109 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05004110 RNID *rn;
James Smart2e0fef82007-06-17 19:56:36 -05004111 IOCB_t *icmd, *oldcmd;
dea31012005-04-17 16:05:31 -05004112 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05004113 struct lpfc_sli *psli;
4114 uint8_t *pcmd;
4115 uint16_t cmdsize;
4116 int rc;
4117
4118 psli = &phba->sli;
James Smart92d7f7b2007-06-17 19:56:38 -05004119 cmdsize = sizeof(uint32_t) + sizeof(uint32_t)
4120 + (2 * sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -05004121 if (format)
James Smart92d7f7b2007-06-17 19:56:38 -05004122 cmdsize += sizeof(RNID_TOP_DISC);
dea31012005-04-17 16:05:31 -05004123
James Smart2e0fef82007-06-17 19:56:36 -05004124 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry, ndlp,
4125 ndlp->nlp_DID, ELS_CMD_ACC);
James Smart488d1462006-03-07 15:02:37 -05004126 if (!elsiocb)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004127 return 1;
dea31012005-04-17 16:05:31 -05004128
dea31012005-04-17 16:05:31 -05004129 icmd = &elsiocb->iocb;
4130 oldcmd = &oldiocb->iocb;
James Smart7851fe22011-07-22 18:36:52 -04004131 icmd->ulpContext = oldcmd->ulpContext; /* Xri / rx_id */
4132 icmd->unsli3.rcvsli3.ox_id = oldcmd->unsli3.rcvsli3.ox_id;
4133
James Smart5b8bd0c2007-04-25 09:52:49 -04004134 /* Xmit RNID ACC response tag <ulpIoTag> */
James Smarte8b62012007-08-02 11:10:09 -04004135 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
4136 "0132 Xmit RNID ACC response tag x%x xri x%x\n",
4137 elsiocb->iotag, elsiocb->iocb.ulpContext);
dea31012005-04-17 16:05:31 -05004138 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
dea31012005-04-17 16:05:31 -05004139 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
James Smart92d7f7b2007-06-17 19:56:38 -05004140 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05004141
James Smart92d7f7b2007-06-17 19:56:38 -05004142 memset(pcmd, 0, sizeof(RNID));
dea31012005-04-17 16:05:31 -05004143 rn = (RNID *) (pcmd);
4144 rn->Format = format;
James Smart92d7f7b2007-06-17 19:56:38 -05004145 rn->CommonLen = (2 * sizeof(struct lpfc_name));
4146 memcpy(&rn->portName, &vport->fc_portname, sizeof(struct lpfc_name));
4147 memcpy(&rn->nodeName, &vport->fc_nodename, sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -05004148 switch (format) {
4149 case 0:
4150 rn->SpecificLen = 0;
4151 break;
4152 case RNID_TOPOLOGY_DISC:
James Smart92d7f7b2007-06-17 19:56:38 -05004153 rn->SpecificLen = sizeof(RNID_TOP_DISC);
dea31012005-04-17 16:05:31 -05004154 memcpy(&rn->un.topologyDisc.portName,
James Smart92d7f7b2007-06-17 19:56:38 -05004155 &vport->fc_portname, sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -05004156 rn->un.topologyDisc.unitType = RNID_HBA;
4157 rn->un.topologyDisc.physPort = 0;
4158 rn->un.topologyDisc.attachedNodes = 0;
4159 break;
4160 default:
4161 rn->CommonLen = 0;
4162 rn->SpecificLen = 0;
4163 break;
4164 }
4165
James Smart858c9f62007-06-17 19:56:39 -05004166 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
4167 "Issue ACC RNID: did:x%x flg:x%x",
4168 ndlp->nlp_DID, ndlp->nlp_flag, 0);
4169
dea31012005-04-17 16:05:31 -05004170 phba->fc_stat.elsXmitACC++;
James Smart858c9f62007-06-17 19:56:39 -05004171 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
dea31012005-04-17 16:05:31 -05004172
James Smart3772a992009-05-22 14:50:54 -04004173 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
dea31012005-04-17 16:05:31 -05004174 if (rc == IOCB_ERROR) {
4175 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004176 return 1;
dea31012005-04-17 16:05:31 -05004177 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004178 return 0;
dea31012005-04-17 16:05:31 -05004179}
4180
James Smarte59058c2008-08-24 21:49:00 -04004181/**
James Smart19ca7602010-11-20 23:11:55 -05004182 * lpfc_els_clear_rrq - Clear the rq that this rrq describes.
4183 * @vport: pointer to a virtual N_Port data structure.
4184 * @iocb: pointer to the lpfc command iocb data structure.
4185 * @ndlp: pointer to a node-list data structure.
4186 *
4187 * Return
4188 **/
4189static void
4190lpfc_els_clear_rrq(struct lpfc_vport *vport,
4191 struct lpfc_iocbq *iocb, struct lpfc_nodelist *ndlp)
4192{
4193 struct lpfc_hba *phba = vport->phba;
4194 uint8_t *pcmd;
4195 struct RRQ *rrq;
4196 uint16_t rxid;
James Smart1151e3e2011-02-16 12:39:35 -05004197 uint16_t xri;
James Smart19ca7602010-11-20 23:11:55 -05004198 struct lpfc_node_rrq *prrq;
4199
4200
4201 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) iocb->context2)->virt);
4202 pcmd += sizeof(uint32_t);
4203 rrq = (struct RRQ *)pcmd;
James Smart1151e3e2011-02-16 12:39:35 -05004204 rrq->rrq_exchg = be32_to_cpu(rrq->rrq_exchg);
James Smart9589b0622011-04-16 11:03:17 -04004205 rxid = bf_get(rrq_rxid, rrq);
James Smart19ca7602010-11-20 23:11:55 -05004206
4207 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
4208 "2883 Clear RRQ for SID:x%x OXID:x%x RXID:x%x"
4209 " x%x x%x\n",
James Smart1151e3e2011-02-16 12:39:35 -05004210 be32_to_cpu(bf_get(rrq_did, rrq)),
James Smart9589b0622011-04-16 11:03:17 -04004211 bf_get(rrq_oxid, rrq),
James Smart19ca7602010-11-20 23:11:55 -05004212 rxid,
4213 iocb->iotag, iocb->iocb.ulpContext);
4214
4215 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
4216 "Clear RRQ: did:x%x flg:x%x exchg:x%.08x",
4217 ndlp->nlp_DID, ndlp->nlp_flag, rrq->rrq_exchg);
James Smart1151e3e2011-02-16 12:39:35 -05004218 if (vport->fc_myDID == be32_to_cpu(bf_get(rrq_did, rrq)))
James Smart9589b0622011-04-16 11:03:17 -04004219 xri = bf_get(rrq_oxid, rrq);
James Smart1151e3e2011-02-16 12:39:35 -05004220 else
4221 xri = rxid;
4222 prrq = lpfc_get_active_rrq(vport, xri, ndlp->nlp_DID);
James Smart19ca7602010-11-20 23:11:55 -05004223 if (prrq)
James Smart1151e3e2011-02-16 12:39:35 -05004224 lpfc_clr_rrq_active(phba, xri, prrq);
James Smart19ca7602010-11-20 23:11:55 -05004225 return;
4226}
4227
4228/**
James Smart12265f62010-10-22 11:05:53 -04004229 * lpfc_els_rsp_echo_acc - Issue echo acc response
4230 * @vport: pointer to a virtual N_Port data structure.
4231 * @data: pointer to echo data to return in the accept.
4232 * @oldiocb: pointer to the original lpfc command iocb data structure.
4233 * @ndlp: pointer to a node-list data structure.
4234 *
4235 * Return code
4236 * 0 - Successfully issued acc echo response
4237 * 1 - Failed to issue acc echo response
4238 **/
4239static int
4240lpfc_els_rsp_echo_acc(struct lpfc_vport *vport, uint8_t *data,
4241 struct lpfc_iocbq *oldiocb, struct lpfc_nodelist *ndlp)
4242{
4243 struct lpfc_hba *phba = vport->phba;
4244 struct lpfc_iocbq *elsiocb;
4245 struct lpfc_sli *psli;
4246 uint8_t *pcmd;
4247 uint16_t cmdsize;
4248 int rc;
4249
4250 psli = &phba->sli;
4251 cmdsize = oldiocb->iocb.unsli3.rcvsli3.acc_len;
4252
James Smartbf086112011-08-21 21:48:13 -04004253 /* The accumulated length can exceed the BPL_SIZE. For
4254 * now, use this as the limit
4255 */
4256 if (cmdsize > LPFC_BPL_SIZE)
4257 cmdsize = LPFC_BPL_SIZE;
James Smart12265f62010-10-22 11:05:53 -04004258 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry, ndlp,
4259 ndlp->nlp_DID, ELS_CMD_ACC);
4260 if (!elsiocb)
4261 return 1;
4262
James Smart7851fe22011-07-22 18:36:52 -04004263 elsiocb->iocb.ulpContext = oldiocb->iocb.ulpContext; /* Xri / rx_id */
4264 elsiocb->iocb.unsli3.rcvsli3.ox_id = oldiocb->iocb.unsli3.rcvsli3.ox_id;
4265
James Smart12265f62010-10-22 11:05:53 -04004266 /* Xmit ECHO ACC response tag <ulpIoTag> */
4267 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
4268 "2876 Xmit ECHO ACC response tag x%x xri x%x\n",
4269 elsiocb->iotag, elsiocb->iocb.ulpContext);
4270 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
4271 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
4272 pcmd += sizeof(uint32_t);
4273 memcpy(pcmd, data, cmdsize - sizeof(uint32_t));
4274
4275 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
4276 "Issue ACC ECHO: did:x%x flg:x%x",
4277 ndlp->nlp_DID, ndlp->nlp_flag, 0);
4278
4279 phba->fc_stat.elsXmitACC++;
4280 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
James Smart12265f62010-10-22 11:05:53 -04004281
4282 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
4283 if (rc == IOCB_ERROR) {
4284 lpfc_els_free_iocb(phba, elsiocb);
4285 return 1;
4286 }
4287 return 0;
4288}
4289
4290/**
James Smart3621a712009-04-06 18:47:14 -04004291 * lpfc_els_disc_adisc - Issue remaining adisc iocbs to npr nodes of a vport
James Smarte59058c2008-08-24 21:49:00 -04004292 * @vport: pointer to a host virtual N_Port data structure.
4293 *
4294 * This routine issues Address Discover (ADISC) ELS commands to those
4295 * N_Ports which are in node port recovery state and ADISC has not been issued
4296 * for the @vport. Each time an ELS ADISC IOCB is issued by invoking the
4297 * lpfc_issue_els_adisc() routine, the per @vport number of discover count
4298 * (num_disc_nodes) shall be incremented. If the num_disc_nodes reaches a
4299 * pre-configured threshold (cfg_discovery_threads), the @vport fc_flag will
4300 * be marked with FC_NLP_MORE bit and the process of issuing remaining ADISC
4301 * IOCBs quit for later pick up. On the other hand, after walking through
4302 * all the ndlps with the @vport and there is none ADISC IOCB issued, the
4303 * @vport fc_flag shall be cleared with FC_NLP_MORE bit indicating there is
4304 * no more ADISC need to be sent.
4305 *
4306 * Return code
4307 * The number of N_Ports with adisc issued.
4308 **/
dea31012005-04-17 16:05:31 -05004309int
James Smart2e0fef82007-06-17 19:56:36 -05004310lpfc_els_disc_adisc(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05004311{
James Smart2e0fef82007-06-17 19:56:36 -05004312 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05004313 struct lpfc_nodelist *ndlp, *next_ndlp;
James Smart2e0fef82007-06-17 19:56:36 -05004314 int sentadisc = 0;
dea31012005-04-17 16:05:31 -05004315
James Smart685f0bf2007-04-25 09:53:08 -04004316 /* go thru NPR nodes and issue any remaining ELS ADISCs */
James Smart2e0fef82007-06-17 19:56:36 -05004317 list_for_each_entry_safe(ndlp, next_ndlp, &vport->fc_nodes, nlp_listp) {
James Smarte47c9092008-02-08 18:49:26 -05004318 if (!NLP_CHK_NODE_ACT(ndlp))
4319 continue;
James Smart685f0bf2007-04-25 09:53:08 -04004320 if (ndlp->nlp_state == NLP_STE_NPR_NODE &&
4321 (ndlp->nlp_flag & NLP_NPR_2B_DISC) != 0 &&
4322 (ndlp->nlp_flag & NLP_NPR_ADISC) != 0) {
James Smart2e0fef82007-06-17 19:56:36 -05004323 spin_lock_irq(shost->host_lock);
James Smart685f0bf2007-04-25 09:53:08 -04004324 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
James Smart2e0fef82007-06-17 19:56:36 -05004325 spin_unlock_irq(shost->host_lock);
James Smart685f0bf2007-04-25 09:53:08 -04004326 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05004327 lpfc_nlp_set_state(vport, ndlp, NLP_STE_ADISC_ISSUE);
4328 lpfc_issue_els_adisc(vport, ndlp, 0);
James Smart685f0bf2007-04-25 09:53:08 -04004329 sentadisc++;
James Smart2e0fef82007-06-17 19:56:36 -05004330 vport->num_disc_nodes++;
4331 if (vport->num_disc_nodes >=
James Smart3de2a652007-08-02 11:09:59 -04004332 vport->cfg_discovery_threads) {
James Smart2e0fef82007-06-17 19:56:36 -05004333 spin_lock_irq(shost->host_lock);
4334 vport->fc_flag |= FC_NLP_MORE;
4335 spin_unlock_irq(shost->host_lock);
James Smart685f0bf2007-04-25 09:53:08 -04004336 break;
dea31012005-04-17 16:05:31 -05004337 }
4338 }
4339 }
4340 if (sentadisc == 0) {
James Smart2e0fef82007-06-17 19:56:36 -05004341 spin_lock_irq(shost->host_lock);
4342 vport->fc_flag &= ~FC_NLP_MORE;
4343 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05004344 }
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004345 return sentadisc;
dea31012005-04-17 16:05:31 -05004346}
4347
James Smarte59058c2008-08-24 21:49:00 -04004348/**
James Smart3621a712009-04-06 18:47:14 -04004349 * lpfc_els_disc_plogi - Issue plogi for all npr nodes of a vport before adisc
James Smarte59058c2008-08-24 21:49:00 -04004350 * @vport: pointer to a host virtual N_Port data structure.
4351 *
4352 * This routine issues Port Login (PLOGI) ELS commands to all the N_Ports
4353 * which are in node port recovery state, with a @vport. Each time an ELS
4354 * ADISC PLOGI IOCB is issued by invoking the lpfc_issue_els_plogi() routine,
4355 * the per @vport number of discover count (num_disc_nodes) shall be
4356 * incremented. If the num_disc_nodes reaches a pre-configured threshold
4357 * (cfg_discovery_threads), the @vport fc_flag will be marked with FC_NLP_MORE
4358 * bit set and quit the process of issuing remaining ADISC PLOGIN IOCBs for
4359 * later pick up. On the other hand, after walking through all the ndlps with
4360 * the @vport and there is none ADISC PLOGI IOCB issued, the @vport fc_flag
4361 * shall be cleared with the FC_NLP_MORE bit indicating there is no more ADISC
4362 * PLOGI need to be sent.
4363 *
4364 * Return code
4365 * The number of N_Ports with plogi issued.
4366 **/
dea31012005-04-17 16:05:31 -05004367int
James Smart2e0fef82007-06-17 19:56:36 -05004368lpfc_els_disc_plogi(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05004369{
James Smart2e0fef82007-06-17 19:56:36 -05004370 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05004371 struct lpfc_nodelist *ndlp, *next_ndlp;
James Smart2e0fef82007-06-17 19:56:36 -05004372 int sentplogi = 0;
dea31012005-04-17 16:05:31 -05004373
James Smart2e0fef82007-06-17 19:56:36 -05004374 /* go thru NPR nodes and issue any remaining ELS PLOGIs */
4375 list_for_each_entry_safe(ndlp, next_ndlp, &vport->fc_nodes, nlp_listp) {
James Smarte47c9092008-02-08 18:49:26 -05004376 if (!NLP_CHK_NODE_ACT(ndlp))
4377 continue;
James Smart685f0bf2007-04-25 09:53:08 -04004378 if (ndlp->nlp_state == NLP_STE_NPR_NODE &&
4379 (ndlp->nlp_flag & NLP_NPR_2B_DISC) != 0 &&
4380 (ndlp->nlp_flag & NLP_DELAY_TMO) == 0 &&
4381 (ndlp->nlp_flag & NLP_NPR_ADISC) == 0) {
4382 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05004383 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
4384 lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0);
James Smart685f0bf2007-04-25 09:53:08 -04004385 sentplogi++;
James Smart2e0fef82007-06-17 19:56:36 -05004386 vport->num_disc_nodes++;
4387 if (vport->num_disc_nodes >=
James Smart3de2a652007-08-02 11:09:59 -04004388 vport->cfg_discovery_threads) {
James Smart2e0fef82007-06-17 19:56:36 -05004389 spin_lock_irq(shost->host_lock);
4390 vport->fc_flag |= FC_NLP_MORE;
4391 spin_unlock_irq(shost->host_lock);
James Smart685f0bf2007-04-25 09:53:08 -04004392 break;
dea31012005-04-17 16:05:31 -05004393 }
4394 }
4395 }
James Smart87af33f2007-10-27 13:37:43 -04004396 if (sentplogi) {
4397 lpfc_set_disctmo(vport);
4398 }
4399 else {
James Smart2e0fef82007-06-17 19:56:36 -05004400 spin_lock_irq(shost->host_lock);
4401 vport->fc_flag &= ~FC_NLP_MORE;
4402 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05004403 }
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004404 return sentplogi;
dea31012005-04-17 16:05:31 -05004405}
4406
James Smarte59058c2008-08-24 21:49:00 -04004407/**
James Smart3621a712009-04-06 18:47:14 -04004408 * lpfc_els_flush_rscn - Clean up any rscn activities with a vport
James Smarte59058c2008-08-24 21:49:00 -04004409 * @vport: pointer to a host virtual N_Port data structure.
4410 *
4411 * This routine cleans up any Registration State Change Notification
4412 * (RSCN) activity with a @vport. Note that the fc_rscn_flush flag of the
4413 * @vport together with the host_lock is used to prevent multiple thread
4414 * trying to access the RSCN array on a same @vport at the same time.
4415 **/
James Smart92d7f7b2007-06-17 19:56:38 -05004416void
James Smart2e0fef82007-06-17 19:56:36 -05004417lpfc_els_flush_rscn(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05004418{
James Smart2e0fef82007-06-17 19:56:36 -05004419 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
4420 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05004421 int i;
4422
James Smart7f5f3d02008-02-08 18:50:14 -05004423 spin_lock_irq(shost->host_lock);
4424 if (vport->fc_rscn_flush) {
4425 /* Another thread is walking fc_rscn_id_list on this vport */
4426 spin_unlock_irq(shost->host_lock);
4427 return;
4428 }
4429 /* Indicate we are walking lpfc_els_flush_rscn on this vport */
4430 vport->fc_rscn_flush = 1;
4431 spin_unlock_irq(shost->host_lock);
4432
James Smart2e0fef82007-06-17 19:56:36 -05004433 for (i = 0; i < vport->fc_rscn_id_cnt; i++) {
James Smart92d7f7b2007-06-17 19:56:38 -05004434 lpfc_in_buf_free(phba, vport->fc_rscn_id_list[i]);
James Smart2e0fef82007-06-17 19:56:36 -05004435 vport->fc_rscn_id_list[i] = NULL;
dea31012005-04-17 16:05:31 -05004436 }
James Smart2e0fef82007-06-17 19:56:36 -05004437 spin_lock_irq(shost->host_lock);
4438 vport->fc_rscn_id_cnt = 0;
4439 vport->fc_flag &= ~(FC_RSCN_MODE | FC_RSCN_DISCOVERY);
4440 spin_unlock_irq(shost->host_lock);
4441 lpfc_can_disctmo(vport);
James Smart7f5f3d02008-02-08 18:50:14 -05004442 /* Indicate we are done walking this fc_rscn_id_list */
4443 vport->fc_rscn_flush = 0;
dea31012005-04-17 16:05:31 -05004444}
4445
James Smarte59058c2008-08-24 21:49:00 -04004446/**
James Smart3621a712009-04-06 18:47:14 -04004447 * lpfc_rscn_payload_check - Check whether there is a pending rscn to a did
James Smarte59058c2008-08-24 21:49:00 -04004448 * @vport: pointer to a host virtual N_Port data structure.
4449 * @did: remote destination port identifier.
4450 *
4451 * This routine checks whether there is any pending Registration State
4452 * Configuration Notification (RSCN) to a @did on @vport.
4453 *
4454 * Return code
4455 * None zero - The @did matched with a pending rscn
4456 * 0 - not able to match @did with a pending rscn
4457 **/
dea31012005-04-17 16:05:31 -05004458int
James Smart2e0fef82007-06-17 19:56:36 -05004459lpfc_rscn_payload_check(struct lpfc_vport *vport, uint32_t did)
dea31012005-04-17 16:05:31 -05004460{
4461 D_ID ns_did;
4462 D_ID rscn_did;
dea31012005-04-17 16:05:31 -05004463 uint32_t *lp;
James Smart92d7f7b2007-06-17 19:56:38 -05004464 uint32_t payload_len, i;
James Smart7f5f3d02008-02-08 18:50:14 -05004465 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05004466
4467 ns_did.un.word = did;
dea31012005-04-17 16:05:31 -05004468
4469 /* Never match fabric nodes for RSCNs */
4470 if ((did & Fabric_DID_MASK) == Fabric_DID_MASK)
James Smart2e0fef82007-06-17 19:56:36 -05004471 return 0;
dea31012005-04-17 16:05:31 -05004472
4473 /* If we are doing a FULL RSCN rediscovery, match everything */
James Smart2e0fef82007-06-17 19:56:36 -05004474 if (vport->fc_flag & FC_RSCN_DISCOVERY)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004475 return did;
dea31012005-04-17 16:05:31 -05004476
James Smart7f5f3d02008-02-08 18:50:14 -05004477 spin_lock_irq(shost->host_lock);
4478 if (vport->fc_rscn_flush) {
4479 /* Another thread is walking fc_rscn_id_list on this vport */
4480 spin_unlock_irq(shost->host_lock);
4481 return 0;
4482 }
4483 /* Indicate we are walking fc_rscn_id_list on this vport */
4484 vport->fc_rscn_flush = 1;
4485 spin_unlock_irq(shost->host_lock);
James Smart2e0fef82007-06-17 19:56:36 -05004486 for (i = 0; i < vport->fc_rscn_id_cnt; i++) {
James Smart92d7f7b2007-06-17 19:56:38 -05004487 lp = vport->fc_rscn_id_list[i]->virt;
4488 payload_len = be32_to_cpu(*lp++ & ~ELS_CMD_MASK);
4489 payload_len -= sizeof(uint32_t); /* take off word 0 */
dea31012005-04-17 16:05:31 -05004490 while (payload_len) {
James Smart92d7f7b2007-06-17 19:56:38 -05004491 rscn_did.un.word = be32_to_cpu(*lp++);
4492 payload_len -= sizeof(uint32_t);
James Smarteaf15d52008-12-04 22:39:29 -05004493 switch (rscn_did.un.b.resv & RSCN_ADDRESS_FORMAT_MASK) {
4494 case RSCN_ADDRESS_FORMAT_PORT:
James Smart6fb120a2009-05-22 14:52:59 -04004495 if ((ns_did.un.b.domain == rscn_did.un.b.domain)
4496 && (ns_did.un.b.area == rscn_did.un.b.area)
4497 && (ns_did.un.b.id == rscn_did.un.b.id))
James Smart7f5f3d02008-02-08 18:50:14 -05004498 goto return_did_out;
dea31012005-04-17 16:05:31 -05004499 break;
James Smarteaf15d52008-12-04 22:39:29 -05004500 case RSCN_ADDRESS_FORMAT_AREA:
dea31012005-04-17 16:05:31 -05004501 if ((ns_did.un.b.domain == rscn_did.un.b.domain)
4502 && (ns_did.un.b.area == rscn_did.un.b.area))
James Smart7f5f3d02008-02-08 18:50:14 -05004503 goto return_did_out;
dea31012005-04-17 16:05:31 -05004504 break;
James Smarteaf15d52008-12-04 22:39:29 -05004505 case RSCN_ADDRESS_FORMAT_DOMAIN:
dea31012005-04-17 16:05:31 -05004506 if (ns_did.un.b.domain == rscn_did.un.b.domain)
James Smart7f5f3d02008-02-08 18:50:14 -05004507 goto return_did_out;
dea31012005-04-17 16:05:31 -05004508 break;
James Smarteaf15d52008-12-04 22:39:29 -05004509 case RSCN_ADDRESS_FORMAT_FABRIC:
James Smart7f5f3d02008-02-08 18:50:14 -05004510 goto return_did_out;
dea31012005-04-17 16:05:31 -05004511 }
4512 }
James Smart92d7f7b2007-06-17 19:56:38 -05004513 }
James Smart7f5f3d02008-02-08 18:50:14 -05004514 /* Indicate we are done with walking fc_rscn_id_list on this vport */
4515 vport->fc_rscn_flush = 0;
James Smart92d7f7b2007-06-17 19:56:38 -05004516 return 0;
James Smart7f5f3d02008-02-08 18:50:14 -05004517return_did_out:
4518 /* Indicate we are done with walking fc_rscn_id_list on this vport */
4519 vport->fc_rscn_flush = 0;
4520 return did;
dea31012005-04-17 16:05:31 -05004521}
4522
James Smarte59058c2008-08-24 21:49:00 -04004523/**
James Smart3621a712009-04-06 18:47:14 -04004524 * lpfc_rscn_recovery_check - Send recovery event to vport nodes matching rscn
James Smarte59058c2008-08-24 21:49:00 -04004525 * @vport: pointer to a host virtual N_Port data structure.
4526 *
4527 * This routine sends recovery (NLP_EVT_DEVICE_RECOVERY) event to the
4528 * state machine for a @vport's nodes that are with pending RSCN (Registration
4529 * State Change Notification).
4530 *
4531 * Return code
4532 * 0 - Successful (currently alway return 0)
4533 **/
dea31012005-04-17 16:05:31 -05004534static int
James Smart2e0fef82007-06-17 19:56:36 -05004535lpfc_rscn_recovery_check(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05004536{
James Smart685f0bf2007-04-25 09:53:08 -04004537 struct lpfc_nodelist *ndlp = NULL;
dea31012005-04-17 16:05:31 -05004538
James Smart0d2b6b82008-06-14 22:52:47 -04004539 /* Move all affected nodes by pending RSCNs to NPR state. */
James Smart2e0fef82007-06-17 19:56:36 -05004540 list_for_each_entry(ndlp, &vport->fc_nodes, nlp_listp) {
James Smarte47c9092008-02-08 18:49:26 -05004541 if (!NLP_CHK_NODE_ACT(ndlp) ||
James Smart0d2b6b82008-06-14 22:52:47 -04004542 (ndlp->nlp_state == NLP_STE_UNUSED_NODE) ||
4543 !lpfc_rscn_payload_check(vport, ndlp->nlp_DID))
dea31012005-04-17 16:05:31 -05004544 continue;
James Smart2e0fef82007-06-17 19:56:36 -05004545 lpfc_disc_state_machine(vport, ndlp, NULL,
James Smart0d2b6b82008-06-14 22:52:47 -04004546 NLP_EVT_DEVICE_RECOVERY);
4547 lpfc_cancel_retry_delay_tmo(vport, ndlp);
dea31012005-04-17 16:05:31 -05004548 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004549 return 0;
dea31012005-04-17 16:05:31 -05004550}
4551
James Smarte59058c2008-08-24 21:49:00 -04004552/**
James Smart3621a712009-04-06 18:47:14 -04004553 * lpfc_send_rscn_event - Send an RSCN event to management application
James Smartddcc50f2008-12-04 22:38:46 -05004554 * @vport: pointer to a host virtual N_Port data structure.
4555 * @cmdiocb: pointer to lpfc command iocb data structure.
4556 *
4557 * lpfc_send_rscn_event sends an RSCN netlink event to management
4558 * applications.
4559 */
4560static void
4561lpfc_send_rscn_event(struct lpfc_vport *vport,
4562 struct lpfc_iocbq *cmdiocb)
4563{
4564 struct lpfc_dmabuf *pcmd;
4565 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
4566 uint32_t *payload_ptr;
4567 uint32_t payload_len;
4568 struct lpfc_rscn_event_header *rscn_event_data;
4569
4570 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
4571 payload_ptr = (uint32_t *) pcmd->virt;
4572 payload_len = be32_to_cpu(*payload_ptr & ~ELS_CMD_MASK);
4573
4574 rscn_event_data = kmalloc(sizeof(struct lpfc_rscn_event_header) +
4575 payload_len, GFP_KERNEL);
4576 if (!rscn_event_data) {
4577 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
4578 "0147 Failed to allocate memory for RSCN event\n");
4579 return;
4580 }
4581 rscn_event_data->event_type = FC_REG_RSCN_EVENT;
4582 rscn_event_data->payload_length = payload_len;
4583 memcpy(rscn_event_data->rscn_payload, payload_ptr,
4584 payload_len);
4585
4586 fc_host_post_vendor_event(shost,
4587 fc_get_event_number(),
4588 sizeof(struct lpfc_els_event_header) + payload_len,
4589 (char *)rscn_event_data,
4590 LPFC_NL_VENDOR_ID);
4591
4592 kfree(rscn_event_data);
4593}
4594
4595/**
James Smart3621a712009-04-06 18:47:14 -04004596 * lpfc_els_rcv_rscn - Process an unsolicited rscn iocb
James Smarte59058c2008-08-24 21:49:00 -04004597 * @vport: pointer to a host virtual N_Port data structure.
4598 * @cmdiocb: pointer to lpfc command iocb data structure.
4599 * @ndlp: pointer to a node-list data structure.
4600 *
4601 * This routine processes an unsolicited RSCN (Registration State Change
4602 * Notification) IOCB. First, the payload of the unsolicited RSCN is walked
4603 * to invoke fc_host_post_event() routine to the FC transport layer. If the
4604 * discover state machine is about to begin discovery, it just accepts the
4605 * RSCN and the discovery process will satisfy the RSCN. If this RSCN only
4606 * contains N_Port IDs for other vports on this HBA, it just accepts the
4607 * RSCN and ignore processing it. If the state machine is in the recovery
4608 * state, the fc_rscn_id_list of this @vport is walked and the
4609 * lpfc_rscn_recovery_check() routine is invoked to send recovery event for
4610 * all nodes that match RSCN payload. Otherwise, the lpfc_els_handle_rscn()
4611 * routine is invoked to handle the RSCN event.
4612 *
4613 * Return code
4614 * 0 - Just sent the acc response
4615 * 1 - Sent the acc response and waited for name server completion
4616 **/
dea31012005-04-17 16:05:31 -05004617static int
James Smart2e0fef82007-06-17 19:56:36 -05004618lpfc_els_rcv_rscn(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
James Smart51ef4c22007-08-02 11:10:31 -04004619 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05004620{
James Smart2e0fef82007-06-17 19:56:36 -05004621 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
4622 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05004623 struct lpfc_dmabuf *pcmd;
James Smart92d7f7b2007-06-17 19:56:38 -05004624 uint32_t *lp, *datap;
dea31012005-04-17 16:05:31 -05004625 IOCB_t *icmd;
James Smart92d7f7b2007-06-17 19:56:38 -05004626 uint32_t payload_len, length, nportid, *cmd;
James Smart7f5f3d02008-02-08 18:50:14 -05004627 int rscn_cnt;
James Smart92d7f7b2007-06-17 19:56:38 -05004628 int rscn_id = 0, hba_id = 0;
James Smartd2873e42006-08-18 17:46:43 -04004629 int i;
dea31012005-04-17 16:05:31 -05004630
4631 icmd = &cmdiocb->iocb;
4632 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
4633 lp = (uint32_t *) pcmd->virt;
4634
James Smart92d7f7b2007-06-17 19:56:38 -05004635 payload_len = be32_to_cpu(*lp++ & ~ELS_CMD_MASK);
4636 payload_len -= sizeof(uint32_t); /* take off word 0 */
dea31012005-04-17 16:05:31 -05004637 /* RSCN received */
James Smarte8b62012007-08-02 11:10:09 -04004638 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
4639 "0214 RSCN received Data: x%x x%x x%x x%x\n",
James Smart7f5f3d02008-02-08 18:50:14 -05004640 vport->fc_flag, payload_len, *lp,
4641 vport->fc_rscn_id_cnt);
James Smartddcc50f2008-12-04 22:38:46 -05004642
4643 /* Send an RSCN event to the management application */
4644 lpfc_send_rscn_event(vport, cmdiocb);
4645
James Smartd2873e42006-08-18 17:46:43 -04004646 for (i = 0; i < payload_len/sizeof(uint32_t); i++)
James Smart2e0fef82007-06-17 19:56:36 -05004647 fc_host_post_event(shost, fc_get_event_number(),
James Smartd2873e42006-08-18 17:46:43 -04004648 FCH_EVT_RSCN, lp[i]);
4649
dea31012005-04-17 16:05:31 -05004650 /* If we are about to begin discovery, just ACC the RSCN.
4651 * Discovery processing will satisfy it.
4652 */
James Smart2e0fef82007-06-17 19:56:36 -05004653 if (vport->port_state <= LPFC_NS_QRY) {
James Smart858c9f62007-06-17 19:56:39 -05004654 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
4655 "RCV RSCN ignore: did:x%x/ste:x%x flg:x%x",
4656 ndlp->nlp_DID, vport->port_state, ndlp->nlp_flag);
4657
James Smart51ef4c22007-08-02 11:10:31 -04004658 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004659 return 0;
dea31012005-04-17 16:05:31 -05004660 }
4661
James Smart92d7f7b2007-06-17 19:56:38 -05004662 /* If this RSCN just contains NPortIDs for other vports on this HBA,
4663 * just ACC and ignore it.
4664 */
4665 if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
James Smart3de2a652007-08-02 11:09:59 -04004666 !(vport->cfg_peer_port_login)) {
James Smart92d7f7b2007-06-17 19:56:38 -05004667 i = payload_len;
4668 datap = lp;
4669 while (i > 0) {
4670 nportid = *datap++;
4671 nportid = ((be32_to_cpu(nportid)) & Mask_DID);
4672 i -= sizeof(uint32_t);
4673 rscn_id++;
James Smart549e55c2007-08-02 11:09:51 -04004674 if (lpfc_find_vport_by_did(phba, nportid))
4675 hba_id++;
James Smart92d7f7b2007-06-17 19:56:38 -05004676 }
4677 if (rscn_id == hba_id) {
4678 /* ALL NPortIDs in RSCN are on HBA */
James Smarte8b62012007-08-02 11:10:09 -04004679 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
James Smartd7c255b2008-08-24 21:50:00 -04004680 "0219 Ignore RSCN "
James Smarte8b62012007-08-02 11:10:09 -04004681 "Data: x%x x%x x%x x%x\n",
4682 vport->fc_flag, payload_len,
James Smart7f5f3d02008-02-08 18:50:14 -05004683 *lp, vport->fc_rscn_id_cnt);
James Smart858c9f62007-06-17 19:56:39 -05004684 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
4685 "RCV RSCN vport: did:x%x/ste:x%x flg:x%x",
4686 ndlp->nlp_DID, vport->port_state,
4687 ndlp->nlp_flag);
4688
James Smart92d7f7b2007-06-17 19:56:38 -05004689 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb,
James Smart51ef4c22007-08-02 11:10:31 -04004690 ndlp, NULL);
James Smart92d7f7b2007-06-17 19:56:38 -05004691 return 0;
4692 }
4693 }
4694
James Smart7f5f3d02008-02-08 18:50:14 -05004695 spin_lock_irq(shost->host_lock);
4696 if (vport->fc_rscn_flush) {
4697 /* Another thread is walking fc_rscn_id_list on this vport */
James Smart7f5f3d02008-02-08 18:50:14 -05004698 vport->fc_flag |= FC_RSCN_DISCOVERY;
James Smart97957242009-12-21 17:03:15 -05004699 spin_unlock_irq(shost->host_lock);
James Smart58da1ff2008-04-07 10:15:56 -04004700 /* Send back ACC */
4701 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
James Smart7f5f3d02008-02-08 18:50:14 -05004702 return 0;
4703 }
4704 /* Indicate we are walking fc_rscn_id_list on this vport */
4705 vport->fc_rscn_flush = 1;
4706 spin_unlock_irq(shost->host_lock);
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02004707 /* Get the array count after successfully have the token */
James Smart7f5f3d02008-02-08 18:50:14 -05004708 rscn_cnt = vport->fc_rscn_id_cnt;
dea31012005-04-17 16:05:31 -05004709 /* If we are already processing an RSCN, save the received
4710 * RSCN payload buffer, cmdiocb->context2 to process later.
4711 */
James Smart2e0fef82007-06-17 19:56:36 -05004712 if (vport->fc_flag & (FC_RSCN_MODE | FC_NDISC_ACTIVE)) {
James Smart858c9f62007-06-17 19:56:39 -05004713 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
4714 "RCV RSCN defer: did:x%x/ste:x%x flg:x%x",
4715 ndlp->nlp_DID, vport->port_state, ndlp->nlp_flag);
4716
James Smart09372822008-01-11 01:52:54 -05004717 spin_lock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05004718 vport->fc_flag |= FC_RSCN_DEFERRED;
4719 if ((rscn_cnt < FC_MAX_HOLD_RSCN) &&
James Smart2e0fef82007-06-17 19:56:36 -05004720 !(vport->fc_flag & FC_RSCN_DISCOVERY)) {
James Smart2e0fef82007-06-17 19:56:36 -05004721 vport->fc_flag |= FC_RSCN_MODE;
4722 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05004723 if (rscn_cnt) {
4724 cmd = vport->fc_rscn_id_list[rscn_cnt-1]->virt;
4725 length = be32_to_cpu(*cmd & ~ELS_CMD_MASK);
4726 }
4727 if ((rscn_cnt) &&
4728 (payload_len + length <= LPFC_BPL_SIZE)) {
4729 *cmd &= ELS_CMD_MASK;
James Smart7f5f3d02008-02-08 18:50:14 -05004730 *cmd |= cpu_to_be32(payload_len + length);
James Smart92d7f7b2007-06-17 19:56:38 -05004731 memcpy(((uint8_t *)cmd) + length, lp,
4732 payload_len);
4733 } else {
4734 vport->fc_rscn_id_list[rscn_cnt] = pcmd;
4735 vport->fc_rscn_id_cnt++;
4736 /* If we zero, cmdiocb->context2, the calling
4737 * routine will not try to free it.
4738 */
4739 cmdiocb->context2 = NULL;
4740 }
dea31012005-04-17 16:05:31 -05004741 /* Deferred RSCN */
James Smarte8b62012007-08-02 11:10:09 -04004742 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
4743 "0235 Deferred RSCN "
4744 "Data: x%x x%x x%x\n",
4745 vport->fc_rscn_id_cnt, vport->fc_flag,
4746 vport->port_state);
dea31012005-04-17 16:05:31 -05004747 } else {
James Smart2e0fef82007-06-17 19:56:36 -05004748 vport->fc_flag |= FC_RSCN_DISCOVERY;
4749 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05004750 /* ReDiscovery RSCN */
James Smarte8b62012007-08-02 11:10:09 -04004751 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
4752 "0234 ReDiscovery RSCN "
4753 "Data: x%x x%x x%x\n",
4754 vport->fc_rscn_id_cnt, vport->fc_flag,
4755 vport->port_state);
dea31012005-04-17 16:05:31 -05004756 }
James Smart7f5f3d02008-02-08 18:50:14 -05004757 /* Indicate we are done walking fc_rscn_id_list on this vport */
4758 vport->fc_rscn_flush = 0;
dea31012005-04-17 16:05:31 -05004759 /* Send back ACC */
James Smart51ef4c22007-08-02 11:10:31 -04004760 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
dea31012005-04-17 16:05:31 -05004761 /* send RECOVERY event for ALL nodes that match RSCN payload */
James Smart2e0fef82007-06-17 19:56:36 -05004762 lpfc_rscn_recovery_check(vport);
James Smart09372822008-01-11 01:52:54 -05004763 spin_lock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05004764 vport->fc_flag &= ~FC_RSCN_DEFERRED;
James Smart09372822008-01-11 01:52:54 -05004765 spin_unlock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004766 return 0;
dea31012005-04-17 16:05:31 -05004767 }
James Smart858c9f62007-06-17 19:56:39 -05004768 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
4769 "RCV RSCN: did:x%x/ste:x%x flg:x%x",
4770 ndlp->nlp_DID, vport->port_state, ndlp->nlp_flag);
4771
James Smart2e0fef82007-06-17 19:56:36 -05004772 spin_lock_irq(shost->host_lock);
4773 vport->fc_flag |= FC_RSCN_MODE;
4774 spin_unlock_irq(shost->host_lock);
4775 vport->fc_rscn_id_list[vport->fc_rscn_id_cnt++] = pcmd;
James Smart7f5f3d02008-02-08 18:50:14 -05004776 /* Indicate we are done walking fc_rscn_id_list on this vport */
4777 vport->fc_rscn_flush = 0;
dea31012005-04-17 16:05:31 -05004778 /*
4779 * If we zero, cmdiocb->context2, the calling routine will
4780 * not try to free it.
4781 */
4782 cmdiocb->context2 = NULL;
James Smart2e0fef82007-06-17 19:56:36 -05004783 lpfc_set_disctmo(vport);
dea31012005-04-17 16:05:31 -05004784 /* Send back ACC */
James Smart51ef4c22007-08-02 11:10:31 -04004785 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
dea31012005-04-17 16:05:31 -05004786 /* send RECOVERY event for ALL nodes that match RSCN payload */
James Smart2e0fef82007-06-17 19:56:36 -05004787 lpfc_rscn_recovery_check(vport);
James Smart2e0fef82007-06-17 19:56:36 -05004788 return lpfc_els_handle_rscn(vport);
dea31012005-04-17 16:05:31 -05004789}
4790
James Smarte59058c2008-08-24 21:49:00 -04004791/**
James Smart3621a712009-04-06 18:47:14 -04004792 * lpfc_els_handle_rscn - Handle rscn for a vport
James Smarte59058c2008-08-24 21:49:00 -04004793 * @vport: pointer to a host virtual N_Port data structure.
4794 *
4795 * This routine handles the Registration State Configuration Notification
4796 * (RSCN) for a @vport. If login to NameServer does not exist, a new ndlp shall
4797 * be created and a Port Login (PLOGI) to the NameServer is issued. Otherwise,
4798 * if the ndlp to NameServer exists, a Common Transport (CT) command to the
4799 * NameServer shall be issued. If CT command to the NameServer fails to be
4800 * issued, the lpfc_els_flush_rscn() routine shall be invoked to clean up any
4801 * RSCN activities with the @vport.
4802 *
4803 * Return code
4804 * 0 - Cleaned up rscn on the @vport
4805 * 1 - Wait for plogi to name server before proceed
4806 **/
dea31012005-04-17 16:05:31 -05004807int
James Smart2e0fef82007-06-17 19:56:36 -05004808lpfc_els_handle_rscn(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05004809{
4810 struct lpfc_nodelist *ndlp;
James Smart2e0fef82007-06-17 19:56:36 -05004811 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05004812
James Smart92d7f7b2007-06-17 19:56:38 -05004813 /* Ignore RSCN if the port is being torn down. */
4814 if (vport->load_flag & FC_UNLOADING) {
4815 lpfc_els_flush_rscn(vport);
4816 return 0;
4817 }
4818
dea31012005-04-17 16:05:31 -05004819 /* Start timer for RSCN processing */
James Smart2e0fef82007-06-17 19:56:36 -05004820 lpfc_set_disctmo(vport);
dea31012005-04-17 16:05:31 -05004821
4822 /* RSCN processed */
James Smarte8b62012007-08-02 11:10:09 -04004823 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
4824 "0215 RSCN processed Data: x%x x%x x%x x%x\n",
4825 vport->fc_flag, 0, vport->fc_rscn_id_cnt,
4826 vport->port_state);
dea31012005-04-17 16:05:31 -05004827
4828 /* To process RSCN, first compare RSCN data with NameServer */
James Smart2e0fef82007-06-17 19:56:36 -05004829 vport->fc_ns_retry = 0;
James Smart0ff10d42008-01-11 01:52:36 -05004830 vport->num_disc_nodes = 0;
4831
James Smart2e0fef82007-06-17 19:56:36 -05004832 ndlp = lpfc_findnode_did(vport, NameServer_DID);
James Smarte47c9092008-02-08 18:49:26 -05004833 if (ndlp && NLP_CHK_NODE_ACT(ndlp)
4834 && ndlp->nlp_state == NLP_STE_UNMAPPED_NODE) {
dea31012005-04-17 16:05:31 -05004835 /* Good ndlp, issue CT Request to NameServer */
James Smart92d7f7b2007-06-17 19:56:38 -05004836 if (lpfc_ns_cmd(vport, SLI_CTNS_GID_FT, 0, 0) == 0)
dea31012005-04-17 16:05:31 -05004837 /* Wait for NameServer query cmpl before we can
4838 continue */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004839 return 1;
dea31012005-04-17 16:05:31 -05004840 } else {
4841 /* If login to NameServer does not exist, issue one */
4842 /* Good status, issue PLOGI to NameServer */
James Smart2e0fef82007-06-17 19:56:36 -05004843 ndlp = lpfc_findnode_did(vport, NameServer_DID);
James Smarte47c9092008-02-08 18:49:26 -05004844 if (ndlp && NLP_CHK_NODE_ACT(ndlp))
dea31012005-04-17 16:05:31 -05004845 /* Wait for NameServer login cmpl before we can
4846 continue */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004847 return 1;
James Smart2e0fef82007-06-17 19:56:36 -05004848
James Smarte47c9092008-02-08 18:49:26 -05004849 if (ndlp) {
4850 ndlp = lpfc_enable_node(vport, ndlp,
4851 NLP_STE_PLOGI_ISSUE);
4852 if (!ndlp) {
4853 lpfc_els_flush_rscn(vport);
4854 return 0;
4855 }
4856 ndlp->nlp_prev_state = NLP_STE_UNUSED_NODE;
dea31012005-04-17 16:05:31 -05004857 } else {
James Smarte47c9092008-02-08 18:49:26 -05004858 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
4859 if (!ndlp) {
4860 lpfc_els_flush_rscn(vport);
4861 return 0;
4862 }
James Smart2e0fef82007-06-17 19:56:36 -05004863 lpfc_nlp_init(vport, ndlp, NameServer_DID);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05004864 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05004865 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
dea31012005-04-17 16:05:31 -05004866 }
James Smarte47c9092008-02-08 18:49:26 -05004867 ndlp->nlp_type |= NLP_FABRIC;
4868 lpfc_issue_els_plogi(vport, NameServer_DID, 0);
4869 /* Wait for NameServer login cmpl before we can
4870 * continue
4871 */
4872 return 1;
dea31012005-04-17 16:05:31 -05004873 }
4874
James Smart2e0fef82007-06-17 19:56:36 -05004875 lpfc_els_flush_rscn(vport);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004876 return 0;
dea31012005-04-17 16:05:31 -05004877}
4878
James Smarte59058c2008-08-24 21:49:00 -04004879/**
James Smart3621a712009-04-06 18:47:14 -04004880 * lpfc_els_rcv_flogi - Process an unsolicited flogi iocb
James Smarte59058c2008-08-24 21:49:00 -04004881 * @vport: pointer to a host virtual N_Port data structure.
4882 * @cmdiocb: pointer to lpfc command iocb data structure.
4883 * @ndlp: pointer to a node-list data structure.
4884 *
4885 * This routine processes Fabric Login (FLOGI) IOCB received as an ELS
4886 * unsolicited event. An unsolicited FLOGI can be received in a point-to-
4887 * point topology. As an unsolicited FLOGI should not be received in a loop
4888 * mode, any unsolicited FLOGI received in loop mode shall be ignored. The
4889 * lpfc_check_sparm() routine is invoked to check the parameters in the
4890 * unsolicited FLOGI. If parameters validation failed, the routine
4891 * lpfc_els_rsp_reject() shall be called with reject reason code set to
4892 * LSEXP_SPARM_OPTIONS to reject the FLOGI. Otherwise, the Port WWN in the
4893 * FLOGI shall be compared with the Port WWN of the @vport to determine who
4894 * will initiate PLOGI. The higher lexicographical value party shall has
4895 * higher priority (as the winning port) and will initiate PLOGI and
4896 * communicate Port_IDs (Addresses) for both nodes in PLOGI. The result
4897 * of this will be marked in the @vport fc_flag field with FC_PT2PT_PLOGI
4898 * and then the lpfc_els_rsp_acc() routine is invoked to accept the FLOGI.
4899 *
4900 * Return code
4901 * 0 - Successfully processed the unsolicited flogi
4902 * 1 - Failed to process the unsolicited flogi
4903 **/
dea31012005-04-17 16:05:31 -05004904static int
James Smart2e0fef82007-06-17 19:56:36 -05004905lpfc_els_rcv_flogi(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
James Smart51ef4c22007-08-02 11:10:31 -04004906 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05004907{
James Smart2e0fef82007-06-17 19:56:36 -05004908 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
4909 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05004910 struct lpfc_dmabuf *pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
4911 uint32_t *lp = (uint32_t *) pcmd->virt;
4912 IOCB_t *icmd = &cmdiocb->iocb;
4913 struct serv_parm *sp;
4914 LPFC_MBOXQ_t *mbox;
4915 struct ls_rjt stat;
4916 uint32_t cmd, did;
4917 int rc;
4918
4919 cmd = *lp++;
4920 sp = (struct serv_parm *) lp;
4921
4922 /* FLOGI received */
4923
James Smart2e0fef82007-06-17 19:56:36 -05004924 lpfc_set_disctmo(vport);
dea31012005-04-17 16:05:31 -05004925
James Smart76a95d72010-11-20 23:11:48 -05004926 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
dea31012005-04-17 16:05:31 -05004927 /* We should never receive a FLOGI in loop mode, ignore it */
4928 did = icmd->un.elsreq64.remoteID;
4929
4930 /* An FLOGI ELS command <elsCmd> was received from DID <did> in
4931 Loop Mode */
James Smarte8b62012007-08-02 11:10:09 -04004932 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
4933 "0113 An FLOGI ELS command x%x was "
4934 "received from DID x%x in Loop Mode\n",
4935 cmd, did);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004936 return 1;
dea31012005-04-17 16:05:31 -05004937 }
4938
4939 did = Fabric_DID;
4940
James Smart341af102010-01-26 23:07:37 -05004941 if ((lpfc_check_sparm(vport, ndlp, sp, CLASS3, 1))) {
dea31012005-04-17 16:05:31 -05004942 /* For a FLOGI we accept, then if our portname is greater
4943 * then the remote portname we initiate Nport login.
4944 */
4945
James Smart2e0fef82007-06-17 19:56:36 -05004946 rc = memcmp(&vport->fc_portname, &sp->portName,
James Smart92d7f7b2007-06-17 19:56:38 -05004947 sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -05004948
4949 if (!rc) {
James Smart1b511972011-12-13 13:23:09 -05004950 if (phba->sli_rev < LPFC_SLI_REV4) {
4951 mbox = mempool_alloc(phba->mbox_mem_pool,
4952 GFP_KERNEL);
4953 if (!mbox)
4954 return 1;
4955 lpfc_linkdown(phba);
4956 lpfc_init_link(phba, mbox,
4957 phba->cfg_topology,
4958 phba->cfg_link_speed);
4959 mbox->u.mb.un.varInitLnk.lipsr_AL_PA = 0;
4960 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
4961 mbox->vport = vport;
4962 rc = lpfc_sli_issue_mbox(phba, mbox,
4963 MBX_NOWAIT);
4964 lpfc_set_loopback_flag(phba);
4965 if (rc == MBX_NOT_FINISHED)
4966 mempool_free(mbox, phba->mbox_mem_pool);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004967 return 1;
James Smart1b511972011-12-13 13:23:09 -05004968 } else {
4969 /* abort the flogi coming back to ourselves
4970 * due to external loopback on the port.
4971 */
4972 lpfc_els_abort_flogi(phba);
4973 return 0;
dea31012005-04-17 16:05:31 -05004974 }
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004975 } else if (rc > 0) { /* greater than */
James Smart2e0fef82007-06-17 19:56:36 -05004976 spin_lock_irq(shost->host_lock);
4977 vport->fc_flag |= FC_PT2PT_PLOGI;
4978 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05004979 }
James Smart2e0fef82007-06-17 19:56:36 -05004980 spin_lock_irq(shost->host_lock);
4981 vport->fc_flag |= FC_PT2PT;
4982 vport->fc_flag &= ~(FC_FABRIC | FC_PUBLIC_LOOP);
4983 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05004984 } else {
4985 /* Reject this request because invalid parameters */
4986 stat.un.b.lsRjtRsvd0 = 0;
4987 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
4988 stat.un.b.lsRjtRsnCodeExp = LSEXP_SPARM_OPTIONS;
4989 stat.un.b.vendorUnique = 0;
James Smart858c9f62007-06-17 19:56:39 -05004990 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp,
4991 NULL);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004992 return 1;
dea31012005-04-17 16:05:31 -05004993 }
4994
4995 /* Send back ACC */
James Smart51ef4c22007-08-02 11:10:31 -04004996 lpfc_els_rsp_acc(vport, ELS_CMD_PLOGI, cmdiocb, ndlp, NULL);
dea31012005-04-17 16:05:31 -05004997
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004998 return 0;
dea31012005-04-17 16:05:31 -05004999}
5000
James Smarte59058c2008-08-24 21:49:00 -04005001/**
James Smart3621a712009-04-06 18:47:14 -04005002 * lpfc_els_rcv_rnid - Process an unsolicited rnid iocb
James Smarte59058c2008-08-24 21:49:00 -04005003 * @vport: pointer to a host virtual N_Port data structure.
5004 * @cmdiocb: pointer to lpfc command iocb data structure.
5005 * @ndlp: pointer to a node-list data structure.
5006 *
5007 * This routine processes Request Node Identification Data (RNID) IOCB
5008 * received as an ELS unsolicited event. Only when the RNID specified format
5009 * 0x0 or 0xDF (Topology Discovery Specific Node Identification Data)
5010 * present, this routine will invoke the lpfc_els_rsp_rnid_acc() routine to
5011 * Accept (ACC) the RNID ELS command. All the other RNID formats are
5012 * rejected by invoking the lpfc_els_rsp_reject() routine.
5013 *
5014 * Return code
5015 * 0 - Successfully processed rnid iocb (currently always return 0)
5016 **/
dea31012005-04-17 16:05:31 -05005017static int
James Smart2e0fef82007-06-17 19:56:36 -05005018lpfc_els_rcv_rnid(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
5019 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05005020{
5021 struct lpfc_dmabuf *pcmd;
5022 uint32_t *lp;
5023 IOCB_t *icmd;
5024 RNID *rn;
5025 struct ls_rjt stat;
5026 uint32_t cmd, did;
5027
5028 icmd = &cmdiocb->iocb;
5029 did = icmd->un.elsreq64.remoteID;
5030 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
5031 lp = (uint32_t *) pcmd->virt;
5032
5033 cmd = *lp++;
5034 rn = (RNID *) lp;
5035
5036 /* RNID received */
5037
5038 switch (rn->Format) {
5039 case 0:
5040 case RNID_TOPOLOGY_DISC:
5041 /* Send back ACC */
James Smart2e0fef82007-06-17 19:56:36 -05005042 lpfc_els_rsp_rnid_acc(vport, rn->Format, cmdiocb, ndlp);
dea31012005-04-17 16:05:31 -05005043 break;
5044 default:
5045 /* Reject this request because format not supported */
5046 stat.un.b.lsRjtRsvd0 = 0;
5047 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
5048 stat.un.b.lsRjtRsnCodeExp = LSEXP_CANT_GIVE_DATA;
5049 stat.un.b.vendorUnique = 0;
James Smart858c9f62007-06-17 19:56:39 -05005050 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp,
5051 NULL);
dea31012005-04-17 16:05:31 -05005052 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05005053 return 0;
dea31012005-04-17 16:05:31 -05005054}
5055
James Smarte59058c2008-08-24 21:49:00 -04005056/**
James Smart12265f62010-10-22 11:05:53 -04005057 * lpfc_els_rcv_echo - Process an unsolicited echo iocb
5058 * @vport: pointer to a host virtual N_Port data structure.
5059 * @cmdiocb: pointer to lpfc command iocb data structure.
5060 * @ndlp: pointer to a node-list data structure.
5061 *
5062 * Return code
5063 * 0 - Successfully processed echo iocb (currently always return 0)
5064 **/
5065static int
5066lpfc_els_rcv_echo(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
5067 struct lpfc_nodelist *ndlp)
5068{
5069 uint8_t *pcmd;
5070
5071 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) cmdiocb->context2)->virt);
5072
5073 /* skip over first word of echo command to find echo data */
5074 pcmd += sizeof(uint32_t);
5075
5076 lpfc_els_rsp_echo_acc(vport, pcmd, cmdiocb, ndlp);
5077 return 0;
5078}
5079
5080/**
James Smart3621a712009-04-06 18:47:14 -04005081 * lpfc_els_rcv_lirr - Process an unsolicited lirr iocb
James Smarte59058c2008-08-24 21:49:00 -04005082 * @vport: pointer to a host virtual N_Port data structure.
5083 * @cmdiocb: pointer to lpfc command iocb data structure.
5084 * @ndlp: pointer to a node-list data structure.
5085 *
5086 * This routine processes a Link Incident Report Registration(LIRR) IOCB
5087 * received as an ELS unsolicited event. Currently, this function just invokes
5088 * the lpfc_els_rsp_reject() routine to reject the LIRR IOCB unconditionally.
5089 *
5090 * Return code
5091 * 0 - Successfully processed lirr iocb (currently always return 0)
5092 **/
dea31012005-04-17 16:05:31 -05005093static int
James Smart2e0fef82007-06-17 19:56:36 -05005094lpfc_els_rcv_lirr(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
5095 struct lpfc_nodelist *ndlp)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005096{
5097 struct ls_rjt stat;
5098
5099 /* For now, unconditionally reject this command */
5100 stat.un.b.lsRjtRsvd0 = 0;
5101 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
5102 stat.un.b.lsRjtRsnCodeExp = LSEXP_CANT_GIVE_DATA;
5103 stat.un.b.vendorUnique = 0;
James Smart858c9f62007-06-17 19:56:39 -05005104 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005105 return 0;
5106}
5107
James Smarte59058c2008-08-24 21:49:00 -04005108/**
James Smart5ffc2662009-11-18 15:39:44 -05005109 * lpfc_els_rcv_rrq - Process an unsolicited rrq iocb
5110 * @vport: pointer to a host virtual N_Port data structure.
5111 * @cmdiocb: pointer to lpfc command iocb data structure.
5112 * @ndlp: pointer to a node-list data structure.
5113 *
5114 * This routine processes a Reinstate Recovery Qualifier (RRQ) IOCB
5115 * received as an ELS unsolicited event. A request to RRQ shall only
5116 * be accepted if the Originator Nx_Port N_Port_ID or the Responder
5117 * Nx_Port N_Port_ID of the target Exchange is the same as the
5118 * N_Port_ID of the Nx_Port that makes the request. If the RRQ is
5119 * not accepted, an LS_RJT with reason code "Unable to perform
5120 * command request" and reason code explanation "Invalid Originator
5121 * S_ID" shall be returned. For now, we just unconditionally accept
5122 * RRQ from the target.
5123 **/
5124static void
5125lpfc_els_rcv_rrq(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
5126 struct lpfc_nodelist *ndlp)
5127{
5128 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
James Smart19ca7602010-11-20 23:11:55 -05005129 if (vport->phba->sli_rev == LPFC_SLI_REV4)
5130 lpfc_els_clear_rrq(vport, cmdiocb, ndlp);
James Smart5ffc2662009-11-18 15:39:44 -05005131}
5132
5133/**
James Smart12265f62010-10-22 11:05:53 -04005134 * lpfc_els_rsp_rls_acc - Completion callbk func for MBX_READ_LNK_STAT mbox cmd
5135 * @phba: pointer to lpfc hba data structure.
5136 * @pmb: pointer to the driver internal queue element for mailbox command.
5137 *
5138 * This routine is the completion callback function for the MBX_READ_LNK_STAT
5139 * mailbox command. This callback function is to actually send the Accept
5140 * (ACC) response to a Read Port Status (RPS) unsolicited IOCB event. It
5141 * collects the link statistics from the completion of the MBX_READ_LNK_STAT
5142 * mailbox command, constructs the RPS response with the link statistics
5143 * collected, and then invokes the lpfc_sli_issue_iocb() routine to send ACC
5144 * response to the RPS.
5145 *
5146 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
5147 * will be incremented by 1 for holding the ndlp and the reference to ndlp
5148 * will be stored into the context1 field of the IOCB for the completion
5149 * callback function to the RPS Accept Response ELS IOCB command.
5150 *
5151 **/
5152static void
5153lpfc_els_rsp_rls_acc(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
5154{
5155 MAILBOX_t *mb;
5156 IOCB_t *icmd;
5157 struct RLS_RSP *rls_rsp;
5158 uint8_t *pcmd;
5159 struct lpfc_iocbq *elsiocb;
5160 struct lpfc_nodelist *ndlp;
James Smart7851fe22011-07-22 18:36:52 -04005161 uint16_t oxid;
5162 uint16_t rxid;
James Smart12265f62010-10-22 11:05:53 -04005163 uint32_t cmdsize;
5164
5165 mb = &pmb->u.mb;
5166
5167 ndlp = (struct lpfc_nodelist *) pmb->context2;
James Smart7851fe22011-07-22 18:36:52 -04005168 rxid = (uint16_t) ((unsigned long)(pmb->context1) & 0xffff);
5169 oxid = (uint16_t) (((unsigned long)(pmb->context1) >> 16) & 0xffff);
James Smart12265f62010-10-22 11:05:53 -04005170 pmb->context1 = NULL;
5171 pmb->context2 = NULL;
5172
5173 if (mb->mbxStatus) {
5174 mempool_free(pmb, phba->mbox_mem_pool);
5175 return;
5176 }
5177
5178 cmdsize = sizeof(struct RLS_RSP) + sizeof(uint32_t);
5179 mempool_free(pmb, phba->mbox_mem_pool);
5180 elsiocb = lpfc_prep_els_iocb(phba->pport, 0, cmdsize,
5181 lpfc_max_els_tries, ndlp,
5182 ndlp->nlp_DID, ELS_CMD_ACC);
5183
5184 /* Decrement the ndlp reference count from previous mbox command */
5185 lpfc_nlp_put(ndlp);
5186
5187 if (!elsiocb)
5188 return;
5189
5190 icmd = &elsiocb->iocb;
James Smart7851fe22011-07-22 18:36:52 -04005191 icmd->ulpContext = rxid;
5192 icmd->unsli3.rcvsli3.ox_id = oxid;
James Smart12265f62010-10-22 11:05:53 -04005193
5194 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
5195 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
5196 pcmd += sizeof(uint32_t); /* Skip past command */
5197 rls_rsp = (struct RLS_RSP *)pcmd;
5198
5199 rls_rsp->linkFailureCnt = cpu_to_be32(mb->un.varRdLnk.linkFailureCnt);
5200 rls_rsp->lossSyncCnt = cpu_to_be32(mb->un.varRdLnk.lossSyncCnt);
5201 rls_rsp->lossSignalCnt = cpu_to_be32(mb->un.varRdLnk.lossSignalCnt);
5202 rls_rsp->primSeqErrCnt = cpu_to_be32(mb->un.varRdLnk.primSeqErrCnt);
5203 rls_rsp->invalidXmitWord = cpu_to_be32(mb->un.varRdLnk.invalidXmitWord);
5204 rls_rsp->crcCnt = cpu_to_be32(mb->un.varRdLnk.crcCnt);
5205
5206 /* Xmit ELS RLS ACC response tag <ulpIoTag> */
5207 lpfc_printf_vlog(ndlp->vport, KERN_INFO, LOG_ELS,
5208 "2874 Xmit ELS RLS ACC response tag x%x xri x%x, "
5209 "did x%x, nlp_flag x%x, nlp_state x%x, rpi x%x\n",
5210 elsiocb->iotag, elsiocb->iocb.ulpContext,
5211 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
5212 ndlp->nlp_rpi);
5213 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
5214 phba->fc_stat.elsXmitACC++;
5215 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) == IOCB_ERROR)
5216 lpfc_els_free_iocb(phba, elsiocb);
5217}
5218
5219/**
James Smart3621a712009-04-06 18:47:14 -04005220 * lpfc_els_rsp_rps_acc - Completion callbk func for MBX_READ_LNK_STAT mbox cmd
James Smarte59058c2008-08-24 21:49:00 -04005221 * @phba: pointer to lpfc hba data structure.
5222 * @pmb: pointer to the driver internal queue element for mailbox command.
5223 *
5224 * This routine is the completion callback function for the MBX_READ_LNK_STAT
5225 * mailbox command. This callback function is to actually send the Accept
5226 * (ACC) response to a Read Port Status (RPS) unsolicited IOCB event. It
5227 * collects the link statistics from the completion of the MBX_READ_LNK_STAT
5228 * mailbox command, constructs the RPS response with the link statistics
5229 * collected, and then invokes the lpfc_sli_issue_iocb() routine to send ACC
5230 * response to the RPS.
5231 *
5232 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
5233 * will be incremented by 1 for holding the ndlp and the reference to ndlp
5234 * will be stored into the context1 field of the IOCB for the completion
5235 * callback function to the RPS Accept Response ELS IOCB command.
5236 *
5237 **/
Jamie Wellnitz082c0262006-02-28 19:25:30 -05005238static void
James Smart329f9bc2007-04-25 09:53:01 -04005239lpfc_els_rsp_rps_acc(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005240{
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005241 MAILBOX_t *mb;
5242 IOCB_t *icmd;
5243 RPS_RSP *rps_rsp;
5244 uint8_t *pcmd;
5245 struct lpfc_iocbq *elsiocb;
5246 struct lpfc_nodelist *ndlp;
James Smart7851fe22011-07-22 18:36:52 -04005247 uint16_t status;
5248 uint16_t oxid;
5249 uint16_t rxid;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005250 uint32_t cmdsize;
5251
James Smart04c68492009-05-22 14:52:52 -04005252 mb = &pmb->u.mb;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005253
5254 ndlp = (struct lpfc_nodelist *) pmb->context2;
James Smart7851fe22011-07-22 18:36:52 -04005255 rxid = (uint16_t) ((unsigned long)(pmb->context1) & 0xffff);
5256 oxid = (uint16_t) (((unsigned long)(pmb->context1) >> 16) & 0xffff);
Randy Dunlap041976f2006-06-25 01:58:51 -07005257 pmb->context1 = NULL;
5258 pmb->context2 = NULL;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005259
5260 if (mb->mbxStatus) {
James Smart329f9bc2007-04-25 09:53:01 -04005261 mempool_free(pmb, phba->mbox_mem_pool);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005262 return;
5263 }
5264
5265 cmdsize = sizeof(RPS_RSP) + sizeof(uint32_t);
James Smart329f9bc2007-04-25 09:53:01 -04005266 mempool_free(pmb, phba->mbox_mem_pool);
James Smart2e0fef82007-06-17 19:56:36 -05005267 elsiocb = lpfc_prep_els_iocb(phba->pport, 0, cmdsize,
5268 lpfc_max_els_tries, ndlp,
5269 ndlp->nlp_DID, ELS_CMD_ACC);
James Smartfa4066b2008-01-11 01:53:27 -05005270
5271 /* Decrement the ndlp reference count from previous mbox command */
James Smart329f9bc2007-04-25 09:53:01 -04005272 lpfc_nlp_put(ndlp);
James Smartfa4066b2008-01-11 01:53:27 -05005273
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05005274 if (!elsiocb)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005275 return;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005276
5277 icmd = &elsiocb->iocb;
James Smart7851fe22011-07-22 18:36:52 -04005278 icmd->ulpContext = rxid;
5279 icmd->unsli3.rcvsli3.ox_id = oxid;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005280
5281 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
5282 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
James Smart92d7f7b2007-06-17 19:56:38 -05005283 pcmd += sizeof(uint32_t); /* Skip past command */
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005284 rps_rsp = (RPS_RSP *)pcmd;
5285
James Smart76a95d72010-11-20 23:11:48 -05005286 if (phba->fc_topology != LPFC_TOPOLOGY_LOOP)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005287 status = 0x10;
5288 else
5289 status = 0x8;
James Smart2e0fef82007-06-17 19:56:36 -05005290 if (phba->pport->fc_flag & FC_FABRIC)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005291 status |= 0x4;
5292
5293 rps_rsp->rsvd1 = 0;
James Smart09372822008-01-11 01:52:54 -05005294 rps_rsp->portStatus = cpu_to_be16(status);
5295 rps_rsp->linkFailureCnt = cpu_to_be32(mb->un.varRdLnk.linkFailureCnt);
5296 rps_rsp->lossSyncCnt = cpu_to_be32(mb->un.varRdLnk.lossSyncCnt);
5297 rps_rsp->lossSignalCnt = cpu_to_be32(mb->un.varRdLnk.lossSignalCnt);
5298 rps_rsp->primSeqErrCnt = cpu_to_be32(mb->un.varRdLnk.primSeqErrCnt);
5299 rps_rsp->invalidXmitWord = cpu_to_be32(mb->un.varRdLnk.invalidXmitWord);
5300 rps_rsp->crcCnt = cpu_to_be32(mb->un.varRdLnk.crcCnt);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005301 /* Xmit ELS RPS ACC response tag <ulpIoTag> */
James Smarte8b62012007-08-02 11:10:09 -04005302 lpfc_printf_vlog(ndlp->vport, KERN_INFO, LOG_ELS,
5303 "0118 Xmit ELS RPS ACC response tag x%x xri x%x, "
5304 "did x%x, nlp_flag x%x, nlp_state x%x, rpi x%x\n",
5305 elsiocb->iotag, elsiocb->iocb.ulpContext,
5306 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
5307 ndlp->nlp_rpi);
James Smart858c9f62007-06-17 19:56:39 -05005308 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005309 phba->fc_stat.elsXmitACC++;
James Smart3772a992009-05-22 14:50:54 -04005310 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) == IOCB_ERROR)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005311 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005312 return;
5313}
5314
James Smarte59058c2008-08-24 21:49:00 -04005315/**
James Smart12265f62010-10-22 11:05:53 -04005316 * lpfc_els_rcv_rls - Process an unsolicited rls iocb
5317 * @vport: pointer to a host virtual N_Port data structure.
5318 * @cmdiocb: pointer to lpfc command iocb data structure.
5319 * @ndlp: pointer to a node-list data structure.
5320 *
5321 * This routine processes Read Port Status (RPL) IOCB received as an
5322 * ELS unsolicited event. It first checks the remote port state. If the
5323 * remote port is not in NLP_STE_UNMAPPED_NODE state or NLP_STE_MAPPED_NODE
5324 * state, it invokes the lpfc_els_rsl_reject() routine to send the reject
5325 * response. Otherwise, it issue the MBX_READ_LNK_STAT mailbox command
5326 * for reading the HBA link statistics. It is for the callback function,
5327 * lpfc_els_rsp_rls_acc(), set to the MBX_READ_LNK_STAT mailbox command
5328 * to actually sending out RPL Accept (ACC) response.
5329 *
5330 * Return codes
5331 * 0 - Successfully processed rls iocb (currently always return 0)
5332 **/
5333static int
5334lpfc_els_rcv_rls(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
5335 struct lpfc_nodelist *ndlp)
5336{
5337 struct lpfc_hba *phba = vport->phba;
5338 LPFC_MBOXQ_t *mbox;
5339 struct lpfc_dmabuf *pcmd;
5340 struct ls_rjt stat;
5341
5342 if ((ndlp->nlp_state != NLP_STE_UNMAPPED_NODE) &&
5343 (ndlp->nlp_state != NLP_STE_MAPPED_NODE))
5344 /* reject the unsolicited RPS request and done with it */
5345 goto reject_out;
5346
5347 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
5348
5349 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_ATOMIC);
5350 if (mbox) {
5351 lpfc_read_lnk_stat(phba, mbox);
James Smart7851fe22011-07-22 18:36:52 -04005352 mbox->context1 = (void *)((unsigned long)
5353 ((cmdiocb->iocb.unsli3.rcvsli3.ox_id << 16) |
5354 cmdiocb->iocb.ulpContext)); /* rx_id */
James Smart12265f62010-10-22 11:05:53 -04005355 mbox->context2 = lpfc_nlp_get(ndlp);
5356 mbox->vport = vport;
5357 mbox->mbox_cmpl = lpfc_els_rsp_rls_acc;
5358 if (lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT)
5359 != MBX_NOT_FINISHED)
5360 /* Mbox completion will send ELS Response */
5361 return 0;
5362 /* Decrement reference count used for the failed mbox
5363 * command.
5364 */
5365 lpfc_nlp_put(ndlp);
5366 mempool_free(mbox, phba->mbox_mem_pool);
5367 }
5368reject_out:
5369 /* issue rejection response */
5370 stat.un.b.lsRjtRsvd0 = 0;
5371 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
5372 stat.un.b.lsRjtRsnCodeExp = LSEXP_CANT_GIVE_DATA;
5373 stat.un.b.vendorUnique = 0;
5374 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
5375 return 0;
5376}
5377
5378/**
5379 * lpfc_els_rcv_rtv - Process an unsolicited rtv iocb
5380 * @vport: pointer to a host virtual N_Port data structure.
5381 * @cmdiocb: pointer to lpfc command iocb data structure.
5382 * @ndlp: pointer to a node-list data structure.
5383 *
5384 * This routine processes Read Timout Value (RTV) IOCB received as an
5385 * ELS unsolicited event. It first checks the remote port state. If the
5386 * remote port is not in NLP_STE_UNMAPPED_NODE state or NLP_STE_MAPPED_NODE
5387 * state, it invokes the lpfc_els_rsl_reject() routine to send the reject
5388 * response. Otherwise, it sends the Accept(ACC) response to a Read Timeout
5389 * Value (RTV) unsolicited IOCB event.
5390 *
5391 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
5392 * will be incremented by 1 for holding the ndlp and the reference to ndlp
5393 * will be stored into the context1 field of the IOCB for the completion
5394 * callback function to the RPS Accept Response ELS IOCB command.
5395 *
5396 * Return codes
5397 * 0 - Successfully processed rtv iocb (currently always return 0)
5398 **/
5399static int
5400lpfc_els_rcv_rtv(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
5401 struct lpfc_nodelist *ndlp)
5402{
5403 struct lpfc_hba *phba = vport->phba;
5404 struct ls_rjt stat;
5405 struct RTV_RSP *rtv_rsp;
5406 uint8_t *pcmd;
5407 struct lpfc_iocbq *elsiocb;
5408 uint32_t cmdsize;
5409
5410
5411 if ((ndlp->nlp_state != NLP_STE_UNMAPPED_NODE) &&
5412 (ndlp->nlp_state != NLP_STE_MAPPED_NODE))
5413 /* reject the unsolicited RPS request and done with it */
5414 goto reject_out;
5415
5416 cmdsize = sizeof(struct RTV_RSP) + sizeof(uint32_t);
5417 elsiocb = lpfc_prep_els_iocb(phba->pport, 0, cmdsize,
5418 lpfc_max_els_tries, ndlp,
5419 ndlp->nlp_DID, ELS_CMD_ACC);
5420
5421 if (!elsiocb)
5422 return 1;
5423
5424 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
5425 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
5426 pcmd += sizeof(uint32_t); /* Skip past command */
5427
5428 /* use the command's xri in the response */
James Smart7851fe22011-07-22 18:36:52 -04005429 elsiocb->iocb.ulpContext = cmdiocb->iocb.ulpContext; /* Xri / rx_id */
5430 elsiocb->iocb.unsli3.rcvsli3.ox_id = cmdiocb->iocb.unsli3.rcvsli3.ox_id;
James Smart12265f62010-10-22 11:05:53 -04005431
5432 rtv_rsp = (struct RTV_RSP *)pcmd;
5433
5434 /* populate RTV payload */
5435 rtv_rsp->ratov = cpu_to_be32(phba->fc_ratov * 1000); /* report msecs */
5436 rtv_rsp->edtov = cpu_to_be32(phba->fc_edtov);
5437 bf_set(qtov_edtovres, rtv_rsp, phba->fc_edtovResol ? 1 : 0);
5438 bf_set(qtov_rttov, rtv_rsp, 0); /* Field is for FC ONLY */
5439 rtv_rsp->qtov = cpu_to_be32(rtv_rsp->qtov);
5440
5441 /* Xmit ELS RLS ACC response tag <ulpIoTag> */
5442 lpfc_printf_vlog(ndlp->vport, KERN_INFO, LOG_ELS,
5443 "2875 Xmit ELS RTV ACC response tag x%x xri x%x, "
5444 "did x%x, nlp_flag x%x, nlp_state x%x, rpi x%x, "
5445 "Data: x%x x%x x%x\n",
5446 elsiocb->iotag, elsiocb->iocb.ulpContext,
5447 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
5448 ndlp->nlp_rpi,
5449 rtv_rsp->ratov, rtv_rsp->edtov, rtv_rsp->qtov);
5450 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
5451 phba->fc_stat.elsXmitACC++;
5452 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) == IOCB_ERROR)
5453 lpfc_els_free_iocb(phba, elsiocb);
5454 return 0;
5455
5456reject_out:
5457 /* issue rejection response */
5458 stat.un.b.lsRjtRsvd0 = 0;
5459 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
5460 stat.un.b.lsRjtRsnCodeExp = LSEXP_CANT_GIVE_DATA;
5461 stat.un.b.vendorUnique = 0;
5462 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
5463 return 0;
5464}
5465
5466/* lpfc_els_rcv_rps - Process an unsolicited rps iocb
James Smarte59058c2008-08-24 21:49:00 -04005467 * @vport: pointer to a host virtual N_Port data structure.
5468 * @cmdiocb: pointer to lpfc command iocb data structure.
5469 * @ndlp: pointer to a node-list data structure.
5470 *
5471 * This routine processes Read Port Status (RPS) IOCB received as an
5472 * ELS unsolicited event. It first checks the remote port state. If the
5473 * remote port is not in NLP_STE_UNMAPPED_NODE state or NLP_STE_MAPPED_NODE
5474 * state, it invokes the lpfc_els_rsp_reject() routine to send the reject
5475 * response. Otherwise, it issue the MBX_READ_LNK_STAT mailbox command
5476 * for reading the HBA link statistics. It is for the callback function,
5477 * lpfc_els_rsp_rps_acc(), set to the MBX_READ_LNK_STAT mailbox command
5478 * to actually sending out RPS Accept (ACC) response.
5479 *
5480 * Return codes
5481 * 0 - Successfully processed rps iocb (currently always return 0)
5482 **/
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005483static int
James Smart2e0fef82007-06-17 19:56:36 -05005484lpfc_els_rcv_rps(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
5485 struct lpfc_nodelist *ndlp)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005486{
James Smart2e0fef82007-06-17 19:56:36 -05005487 struct lpfc_hba *phba = vport->phba;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005488 uint32_t *lp;
5489 uint8_t flag;
5490 LPFC_MBOXQ_t *mbox;
5491 struct lpfc_dmabuf *pcmd;
5492 RPS *rps;
5493 struct ls_rjt stat;
5494
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05005495 if ((ndlp->nlp_state != NLP_STE_UNMAPPED_NODE) &&
James Smart90160e02008-08-24 21:49:45 -04005496 (ndlp->nlp_state != NLP_STE_MAPPED_NODE))
5497 /* reject the unsolicited RPS request and done with it */
5498 goto reject_out;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005499
5500 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
5501 lp = (uint32_t *) pcmd->virt;
5502 flag = (be32_to_cpu(*lp++) & 0xf);
5503 rps = (RPS *) lp;
5504
5505 if ((flag == 0) ||
5506 ((flag == 1) && (be32_to_cpu(rps->un.portNum) == 0)) ||
James Smart2e0fef82007-06-17 19:56:36 -05005507 ((flag == 2) && (memcmp(&rps->un.portName, &vport->fc_portname,
James Smart92d7f7b2007-06-17 19:56:38 -05005508 sizeof(struct lpfc_name)) == 0))) {
James Smart2e0fef82007-06-17 19:56:36 -05005509
James Smart92d7f7b2007-06-17 19:56:38 -05005510 printk("Fix me....\n");
5511 dump_stack();
James Smart2e0fef82007-06-17 19:56:36 -05005512 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_ATOMIC);
5513 if (mbox) {
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005514 lpfc_read_lnk_stat(phba, mbox);
James Smart7851fe22011-07-22 18:36:52 -04005515 mbox->context1 = (void *)((unsigned long)
5516 ((cmdiocb->iocb.unsli3.rcvsli3.ox_id << 16) |
5517 cmdiocb->iocb.ulpContext)); /* rx_id */
James Smart329f9bc2007-04-25 09:53:01 -04005518 mbox->context2 = lpfc_nlp_get(ndlp);
James Smart92d7f7b2007-06-17 19:56:38 -05005519 mbox->vport = vport;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005520 mbox->mbox_cmpl = lpfc_els_rsp_rps_acc;
James Smartfa4066b2008-01-11 01:53:27 -05005521 if (lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT)
James Smart0b727fe2007-10-27 13:37:25 -04005522 != MBX_NOT_FINISHED)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005523 /* Mbox completion will send ELS Response */
5524 return 0;
James Smartfa4066b2008-01-11 01:53:27 -05005525 /* Decrement reference count used for the failed mbox
5526 * command.
5527 */
James Smart329f9bc2007-04-25 09:53:01 -04005528 lpfc_nlp_put(ndlp);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005529 mempool_free(mbox, phba->mbox_mem_pool);
5530 }
5531 }
James Smart90160e02008-08-24 21:49:45 -04005532
5533reject_out:
5534 /* issue rejection response */
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005535 stat.un.b.lsRjtRsvd0 = 0;
5536 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
5537 stat.un.b.lsRjtRsnCodeExp = LSEXP_CANT_GIVE_DATA;
5538 stat.un.b.vendorUnique = 0;
James Smart858c9f62007-06-17 19:56:39 -05005539 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005540 return 0;
5541}
5542
James Smart19ca7602010-11-20 23:11:55 -05005543/* lpfc_issue_els_rrq - Process an unsolicited rps iocb
5544 * @vport: pointer to a host virtual N_Port data structure.
5545 * @ndlp: pointer to a node-list data structure.
5546 * @did: DID of the target.
5547 * @rrq: Pointer to the rrq struct.
5548 *
5549 * Build a ELS RRQ command and send it to the target. If the issue_iocb is
5550 * Successful the the completion handler will clear the RRQ.
5551 *
5552 * Return codes
5553 * 0 - Successfully sent rrq els iocb.
5554 * 1 - Failed to send rrq els iocb.
5555 **/
5556static int
5557lpfc_issue_els_rrq(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
5558 uint32_t did, struct lpfc_node_rrq *rrq)
5559{
5560 struct lpfc_hba *phba = vport->phba;
5561 struct RRQ *els_rrq;
5562 IOCB_t *icmd;
5563 struct lpfc_iocbq *elsiocb;
5564 uint8_t *pcmd;
5565 uint16_t cmdsize;
5566 int ret;
5567
5568
5569 if (ndlp != rrq->ndlp)
5570 ndlp = rrq->ndlp;
5571 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp))
5572 return 1;
5573
5574 /* If ndlp is not NULL, we will bump the reference count on it */
5575 cmdsize = (sizeof(uint32_t) + sizeof(struct RRQ));
5576 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, 0, ndlp, did,
5577 ELS_CMD_RRQ);
5578 if (!elsiocb)
5579 return 1;
5580
5581 icmd = &elsiocb->iocb;
5582 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
5583
5584 /* For RRQ request, remainder of payload is Exchange IDs */
5585 *((uint32_t *) (pcmd)) = ELS_CMD_RRQ;
5586 pcmd += sizeof(uint32_t);
5587 els_rrq = (struct RRQ *) pcmd;
5588
5589 bf_set(rrq_oxid, els_rrq, rrq->xritag);
5590 bf_set(rrq_rxid, els_rrq, rrq->rxid);
5591 bf_set(rrq_did, els_rrq, vport->fc_myDID);
5592 els_rrq->rrq = cpu_to_be32(els_rrq->rrq);
5593 els_rrq->rrq_exchg = cpu_to_be32(els_rrq->rrq_exchg);
5594
5595
5596 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
5597 "Issue RRQ: did:x%x",
5598 did, rrq->xritag, rrq->rxid);
5599 elsiocb->context_un.rrq = rrq;
5600 elsiocb->iocb_cmpl = lpfc_cmpl_els_rrq;
5601 ret = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
5602
5603 if (ret == IOCB_ERROR) {
5604 lpfc_els_free_iocb(phba, elsiocb);
5605 return 1;
5606 }
5607 return 0;
5608}
5609
5610/**
5611 * lpfc_send_rrq - Sends ELS RRQ if needed.
5612 * @phba: pointer to lpfc hba data structure.
5613 * @rrq: pointer to the active rrq.
5614 *
5615 * This routine will call the lpfc_issue_els_rrq if the rrq is
5616 * still active for the xri. If this function returns a failure then
5617 * the caller needs to clean up the RRQ by calling lpfc_clr_active_rrq.
5618 *
5619 * Returns 0 Success.
5620 * 1 Failure.
5621 **/
5622int
5623lpfc_send_rrq(struct lpfc_hba *phba, struct lpfc_node_rrq *rrq)
5624{
5625 struct lpfc_nodelist *ndlp = lpfc_findnode_did(rrq->vport,
5626 rrq->nlp_DID);
5627 if (lpfc_test_rrq_active(phba, ndlp, rrq->xritag))
5628 return lpfc_issue_els_rrq(rrq->vport, ndlp,
5629 rrq->nlp_DID, rrq);
5630 else
5631 return 1;
5632}
5633
James Smarte59058c2008-08-24 21:49:00 -04005634/**
James Smart3621a712009-04-06 18:47:14 -04005635 * lpfc_els_rsp_rpl_acc - Issue an accept rpl els command
James Smarte59058c2008-08-24 21:49:00 -04005636 * @vport: pointer to a host virtual N_Port data structure.
5637 * @cmdsize: size of the ELS command.
5638 * @oldiocb: pointer to the original lpfc command iocb data structure.
5639 * @ndlp: pointer to a node-list data structure.
5640 *
5641 * This routine issuees an Accept (ACC) Read Port List (RPL) ELS command.
5642 * It is to be called by the lpfc_els_rcv_rpl() routine to accept the RPL.
5643 *
5644 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
5645 * will be incremented by 1 for holding the ndlp and the reference to ndlp
5646 * will be stored into the context1 field of the IOCB for the completion
5647 * callback function to the RPL Accept Response ELS command.
5648 *
5649 * Return code
5650 * 0 - Successfully issued ACC RPL ELS command
5651 * 1 - Failed to issue ACC RPL ELS command
5652 **/
Jamie Wellnitz082c0262006-02-28 19:25:30 -05005653static int
James Smart2e0fef82007-06-17 19:56:36 -05005654lpfc_els_rsp_rpl_acc(struct lpfc_vport *vport, uint16_t cmdsize,
5655 struct lpfc_iocbq *oldiocb, struct lpfc_nodelist *ndlp)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005656{
James Smart2e0fef82007-06-17 19:56:36 -05005657 struct lpfc_hba *phba = vport->phba;
5658 IOCB_t *icmd, *oldcmd;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005659 RPL_RSP rpl_rsp;
5660 struct lpfc_iocbq *elsiocb;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005661 uint8_t *pcmd;
5662
James Smart2e0fef82007-06-17 19:56:36 -05005663 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry, ndlp,
5664 ndlp->nlp_DID, ELS_CMD_ACC);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005665
James Smart488d1462006-03-07 15:02:37 -05005666 if (!elsiocb)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005667 return 1;
James Smart488d1462006-03-07 15:02:37 -05005668
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005669 icmd = &elsiocb->iocb;
5670 oldcmd = &oldiocb->iocb;
James Smart7851fe22011-07-22 18:36:52 -04005671 icmd->ulpContext = oldcmd->ulpContext; /* Xri / rx_id */
5672 icmd->unsli3.rcvsli3.ox_id = oldcmd->unsli3.rcvsli3.ox_id;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005673
5674 pcmd = (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
5675 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
James Smart92d7f7b2007-06-17 19:56:38 -05005676 pcmd += sizeof(uint16_t);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005677 *((uint16_t *)(pcmd)) = be16_to_cpu(cmdsize);
5678 pcmd += sizeof(uint16_t);
5679
5680 /* Setup the RPL ACC payload */
5681 rpl_rsp.listLen = be32_to_cpu(1);
5682 rpl_rsp.index = 0;
5683 rpl_rsp.port_num_blk.portNum = 0;
James Smart2e0fef82007-06-17 19:56:36 -05005684 rpl_rsp.port_num_blk.portID = be32_to_cpu(vport->fc_myDID);
5685 memcpy(&rpl_rsp.port_num_blk.portName, &vport->fc_portname,
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005686 sizeof(struct lpfc_name));
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005687 memcpy(pcmd, &rpl_rsp, cmdsize - sizeof(uint32_t));
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005688 /* Xmit ELS RPL ACC response tag <ulpIoTag> */
James Smarte8b62012007-08-02 11:10:09 -04005689 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
5690 "0120 Xmit ELS RPL ACC response tag x%x "
5691 "xri x%x, did x%x, nlp_flag x%x, nlp_state x%x, "
5692 "rpi x%x\n",
5693 elsiocb->iotag, elsiocb->iocb.ulpContext,
5694 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
5695 ndlp->nlp_rpi);
James Smart858c9f62007-06-17 19:56:39 -05005696 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005697 phba->fc_stat.elsXmitACC++;
James Smart3772a992009-05-22 14:50:54 -04005698 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) ==
5699 IOCB_ERROR) {
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005700 lpfc_els_free_iocb(phba, elsiocb);
5701 return 1;
5702 }
5703 return 0;
5704}
5705
James Smarte59058c2008-08-24 21:49:00 -04005706/**
James Smart3621a712009-04-06 18:47:14 -04005707 * lpfc_els_rcv_rpl - Process an unsolicited rpl iocb
James Smarte59058c2008-08-24 21:49:00 -04005708 * @vport: pointer to a host virtual N_Port data structure.
5709 * @cmdiocb: pointer to lpfc command iocb data structure.
5710 * @ndlp: pointer to a node-list data structure.
5711 *
5712 * This routine processes Read Port List (RPL) IOCB received as an ELS
5713 * unsolicited event. It first checks the remote port state. If the remote
5714 * port is not in NLP_STE_UNMAPPED_NODE and NLP_STE_MAPPED_NODE states, it
5715 * invokes the lpfc_els_rsp_reject() routine to send reject response.
5716 * Otherwise, this routine then invokes the lpfc_els_rsp_rpl_acc() routine
5717 * to accept the RPL.
5718 *
5719 * Return code
5720 * 0 - Successfully processed rpl iocb (currently always return 0)
5721 **/
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005722static int
James Smart2e0fef82007-06-17 19:56:36 -05005723lpfc_els_rcv_rpl(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
5724 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05005725{
5726 struct lpfc_dmabuf *pcmd;
5727 uint32_t *lp;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005728 uint32_t maxsize;
5729 uint16_t cmdsize;
5730 RPL *rpl;
5731 struct ls_rjt stat;
dea31012005-04-17 16:05:31 -05005732
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05005733 if ((ndlp->nlp_state != NLP_STE_UNMAPPED_NODE) &&
5734 (ndlp->nlp_state != NLP_STE_MAPPED_NODE)) {
James Smart90160e02008-08-24 21:49:45 -04005735 /* issue rejection response */
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005736 stat.un.b.lsRjtRsvd0 = 0;
5737 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
5738 stat.un.b.lsRjtRsnCodeExp = LSEXP_CANT_GIVE_DATA;
5739 stat.un.b.vendorUnique = 0;
James Smart858c9f62007-06-17 19:56:39 -05005740 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp,
5741 NULL);
James Smart90160e02008-08-24 21:49:45 -04005742 /* rejected the unsolicited RPL request and done with it */
5743 return 0;
dea31012005-04-17 16:05:31 -05005744 }
5745
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005746 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
5747 lp = (uint32_t *) pcmd->virt;
5748 rpl = (RPL *) (lp + 1);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005749 maxsize = be32_to_cpu(rpl->maxsize);
5750
5751 /* We support only one port */
5752 if ((rpl->index == 0) &&
5753 ((maxsize == 0) ||
5754 ((maxsize * sizeof(uint32_t)) >= sizeof(RPL_RSP)))) {
5755 cmdsize = sizeof(uint32_t) + sizeof(RPL_RSP);
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05005756 } else {
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005757 cmdsize = sizeof(uint32_t) + maxsize * sizeof(uint32_t);
5758 }
James Smart2e0fef82007-06-17 19:56:36 -05005759 lpfc_els_rsp_rpl_acc(vport, cmdsize, cmdiocb, ndlp);
dea31012005-04-17 16:05:31 -05005760
5761 return 0;
5762}
5763
James Smarte59058c2008-08-24 21:49:00 -04005764/**
James Smart3621a712009-04-06 18:47:14 -04005765 * lpfc_els_rcv_farp - Process an unsolicited farp request els command
James Smarte59058c2008-08-24 21:49:00 -04005766 * @vport: pointer to a virtual N_Port data structure.
5767 * @cmdiocb: pointer to lpfc command iocb data structure.
5768 * @ndlp: pointer to a node-list data structure.
5769 *
5770 * This routine processes Fibre Channel Address Resolution Protocol
5771 * (FARP) Request IOCB received as an ELS unsolicited event. Currently,
5772 * the lpfc driver only supports matching on WWPN or WWNN for FARP. As such,
5773 * FARP_MATCH_PORT flag and FARP_MATCH_NODE flag are checked against the
5774 * Match Flag in the FARP request IOCB: if FARP_MATCH_PORT flag is set, the
5775 * remote PortName is compared against the FC PortName stored in the @vport
5776 * data structure; if FARP_MATCH_NODE flag is set, the remote NodeName is
5777 * compared against the FC NodeName stored in the @vport data structure.
5778 * If any of these matches and the FARP_REQUEST_FARPR flag is set in the
5779 * FARP request IOCB Response Flag, the lpfc_issue_els_farpr() routine is
5780 * invoked to send out FARP Response to the remote node. Before sending the
5781 * FARP Response, however, the FARP_REQUEST_PLOGI flag is check in the FARP
5782 * request IOCB Response Flag and, if it is set, the lpfc_issue_els_plogi()
5783 * routine is invoked to log into the remote port first.
5784 *
5785 * Return code
5786 * 0 - Either the FARP Match Mode not supported or successfully processed
5787 **/
dea31012005-04-17 16:05:31 -05005788static int
James Smart2e0fef82007-06-17 19:56:36 -05005789lpfc_els_rcv_farp(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
5790 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05005791{
5792 struct lpfc_dmabuf *pcmd;
5793 uint32_t *lp;
5794 IOCB_t *icmd;
5795 FARP *fp;
5796 uint32_t cmd, cnt, did;
5797
5798 icmd = &cmdiocb->iocb;
5799 did = icmd->un.elsreq64.remoteID;
5800 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
5801 lp = (uint32_t *) pcmd->virt;
5802
5803 cmd = *lp++;
5804 fp = (FARP *) lp;
dea31012005-04-17 16:05:31 -05005805 /* FARP-REQ received from DID <did> */
James Smarte8b62012007-08-02 11:10:09 -04005806 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
5807 "0601 FARP-REQ received from DID x%x\n", did);
dea31012005-04-17 16:05:31 -05005808 /* We will only support match on WWPN or WWNN */
5809 if (fp->Mflags & ~(FARP_MATCH_NODE | FARP_MATCH_PORT)) {
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05005810 return 0;
dea31012005-04-17 16:05:31 -05005811 }
5812
5813 cnt = 0;
5814 /* If this FARP command is searching for my portname */
5815 if (fp->Mflags & FARP_MATCH_PORT) {
James Smart2e0fef82007-06-17 19:56:36 -05005816 if (memcmp(&fp->RportName, &vport->fc_portname,
James Smart92d7f7b2007-06-17 19:56:38 -05005817 sizeof(struct lpfc_name)) == 0)
dea31012005-04-17 16:05:31 -05005818 cnt = 1;
5819 }
5820
5821 /* If this FARP command is searching for my nodename */
5822 if (fp->Mflags & FARP_MATCH_NODE) {
James Smart2e0fef82007-06-17 19:56:36 -05005823 if (memcmp(&fp->RnodeName, &vport->fc_nodename,
James Smart92d7f7b2007-06-17 19:56:38 -05005824 sizeof(struct lpfc_name)) == 0)
dea31012005-04-17 16:05:31 -05005825 cnt = 1;
5826 }
5827
5828 if (cnt) {
5829 if ((ndlp->nlp_state == NLP_STE_UNMAPPED_NODE) ||
5830 (ndlp->nlp_state == NLP_STE_MAPPED_NODE)) {
5831 /* Log back into the node before sending the FARP. */
5832 if (fp->Rflags & FARP_REQUEST_PLOGI) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05005833 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05005834 lpfc_nlp_set_state(vport, ndlp,
James Smartde0c5b32007-04-25 09:52:27 -04005835 NLP_STE_PLOGI_ISSUE);
James Smart2e0fef82007-06-17 19:56:36 -05005836 lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0);
dea31012005-04-17 16:05:31 -05005837 }
5838
5839 /* Send a FARP response to that node */
James Smart2e0fef82007-06-17 19:56:36 -05005840 if (fp->Rflags & FARP_REQUEST_FARPR)
5841 lpfc_issue_els_farpr(vport, did, 0);
dea31012005-04-17 16:05:31 -05005842 }
5843 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05005844 return 0;
dea31012005-04-17 16:05:31 -05005845}
5846
James Smarte59058c2008-08-24 21:49:00 -04005847/**
James Smart3621a712009-04-06 18:47:14 -04005848 * lpfc_els_rcv_farpr - Process an unsolicited farp response iocb
James Smarte59058c2008-08-24 21:49:00 -04005849 * @vport: pointer to a host virtual N_Port data structure.
5850 * @cmdiocb: pointer to lpfc command iocb data structure.
5851 * @ndlp: pointer to a node-list data structure.
5852 *
5853 * This routine processes Fibre Channel Address Resolution Protocol
5854 * Response (FARPR) IOCB received as an ELS unsolicited event. It simply
5855 * invokes the lpfc_els_rsp_acc() routine to the remote node to accept
5856 * the FARP response request.
5857 *
5858 * Return code
5859 * 0 - Successfully processed FARPR IOCB (currently always return 0)
5860 **/
dea31012005-04-17 16:05:31 -05005861static int
James Smart2e0fef82007-06-17 19:56:36 -05005862lpfc_els_rcv_farpr(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
5863 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05005864{
5865 struct lpfc_dmabuf *pcmd;
5866 uint32_t *lp;
5867 IOCB_t *icmd;
5868 uint32_t cmd, did;
5869
5870 icmd = &cmdiocb->iocb;
5871 did = icmd->un.elsreq64.remoteID;
5872 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
5873 lp = (uint32_t *) pcmd->virt;
5874
5875 cmd = *lp++;
5876 /* FARP-RSP received from DID <did> */
James Smarte8b62012007-08-02 11:10:09 -04005877 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
5878 "0600 FARP-RSP received from DID x%x\n", did);
dea31012005-04-17 16:05:31 -05005879 /* ACCEPT the Farp resp request */
James Smart51ef4c22007-08-02 11:10:31 -04005880 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
dea31012005-04-17 16:05:31 -05005881
5882 return 0;
5883}
5884
James Smarte59058c2008-08-24 21:49:00 -04005885/**
James Smart3621a712009-04-06 18:47:14 -04005886 * lpfc_els_rcv_fan - Process an unsolicited fan iocb command
James Smarte59058c2008-08-24 21:49:00 -04005887 * @vport: pointer to a host virtual N_Port data structure.
5888 * @cmdiocb: pointer to lpfc command iocb data structure.
5889 * @fan_ndlp: pointer to a node-list data structure.
5890 *
5891 * This routine processes a Fabric Address Notification (FAN) IOCB
5892 * command received as an ELS unsolicited event. The FAN ELS command will
5893 * only be processed on a physical port (i.e., the @vport represents the
5894 * physical port). The fabric NodeName and PortName from the FAN IOCB are
5895 * compared against those in the phba data structure. If any of those is
5896 * different, the lpfc_initial_flogi() routine is invoked to initialize
5897 * Fabric Login (FLOGI) to the fabric to start the discover over. Otherwise,
5898 * if both of those are identical, the lpfc_issue_fabric_reglogin() routine
5899 * is invoked to register login to the fabric.
5900 *
5901 * Return code
5902 * 0 - Successfully processed fan iocb (currently always return 0).
5903 **/
dea31012005-04-17 16:05:31 -05005904static int
James Smart2e0fef82007-06-17 19:56:36 -05005905lpfc_els_rcv_fan(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
5906 struct lpfc_nodelist *fan_ndlp)
dea31012005-04-17 16:05:31 -05005907{
James Smart2e0fef82007-06-17 19:56:36 -05005908 struct lpfc_hba *phba = vport->phba;
James Smart0d2b6b82008-06-14 22:52:47 -04005909 uint32_t *lp;
5910 FAN *fp;
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05005911
James Smart0d2b6b82008-06-14 22:52:47 -04005912 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS, "0265 FAN received\n");
5913 lp = (uint32_t *)((struct lpfc_dmabuf *)cmdiocb->context2)->virt;
5914 fp = (FAN *) ++lp;
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05005915 /* FAN received; Fan does not have a reply sequence */
James Smart0d2b6b82008-06-14 22:52:47 -04005916 if ((vport == phba->pport) &&
5917 (vport->port_state == LPFC_LOCAL_CFG_LINK)) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05005918 if ((memcmp(&phba->fc_fabparam.nodeName, &fp->FnodeName,
James Smart0d2b6b82008-06-14 22:52:47 -04005919 sizeof(struct lpfc_name))) ||
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05005920 (memcmp(&phba->fc_fabparam.portName, &fp->FportName,
James Smart0d2b6b82008-06-14 22:52:47 -04005921 sizeof(struct lpfc_name)))) {
5922 /* This port has switched fabrics. FLOGI is required */
James Smart76a95d72010-11-20 23:11:48 -05005923 lpfc_issue_init_vfi(vport);
James Smart0d2b6b82008-06-14 22:52:47 -04005924 } else {
5925 /* FAN verified - skip FLOGI */
5926 vport->fc_myDID = vport->fc_prevDID;
James Smart6fb120a2009-05-22 14:52:59 -04005927 if (phba->sli_rev < LPFC_SLI_REV4)
5928 lpfc_issue_fabric_reglogin(vport);
James Smart1b511972011-12-13 13:23:09 -05005929 else {
5930 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
5931 "3138 Need register VFI: (x%x/%x)\n",
5932 vport->fc_prevDID, vport->fc_myDID);
James Smart6fb120a2009-05-22 14:52:59 -04005933 lpfc_issue_reg_vfi(vport);
James Smart1b511972011-12-13 13:23:09 -05005934 }
dea31012005-04-17 16:05:31 -05005935 }
dea31012005-04-17 16:05:31 -05005936 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05005937 return 0;
dea31012005-04-17 16:05:31 -05005938}
5939
James Smarte59058c2008-08-24 21:49:00 -04005940/**
James Smart3621a712009-04-06 18:47:14 -04005941 * lpfc_els_timeout - Handler funciton to the els timer
James Smarte59058c2008-08-24 21:49:00 -04005942 * @ptr: holder for the timer function associated data.
5943 *
5944 * This routine is invoked by the ELS timer after timeout. It posts the ELS
5945 * timer timeout event by setting the WORKER_ELS_TMO bit to the work port
5946 * event bitmap and then invokes the lpfc_worker_wake_up() routine to wake
5947 * up the worker thread. It is for the worker thread to invoke the routine
5948 * lpfc_els_timeout_handler() to work on the posted event WORKER_ELS_TMO.
5949 **/
dea31012005-04-17 16:05:31 -05005950void
5951lpfc_els_timeout(unsigned long ptr)
5952{
James Smart2e0fef82007-06-17 19:56:36 -05005953 struct lpfc_vport *vport = (struct lpfc_vport *) ptr;
5954 struct lpfc_hba *phba = vport->phba;
James Smart5e9d9b82008-06-14 22:52:53 -04005955 uint32_t tmo_posted;
dea31012005-04-17 16:05:31 -05005956 unsigned long iflag;
5957
James Smart2e0fef82007-06-17 19:56:36 -05005958 spin_lock_irqsave(&vport->work_port_lock, iflag);
James Smart5e9d9b82008-06-14 22:52:53 -04005959 tmo_posted = vport->work_port_events & WORKER_ELS_TMO;
5960 if (!tmo_posted)
James Smart2e0fef82007-06-17 19:56:36 -05005961 vport->work_port_events |= WORKER_ELS_TMO;
James Smart5e9d9b82008-06-14 22:52:53 -04005962 spin_unlock_irqrestore(&vport->work_port_lock, iflag);
James Smart92d7f7b2007-06-17 19:56:38 -05005963
James Smart5e9d9b82008-06-14 22:52:53 -04005964 if (!tmo_posted)
5965 lpfc_worker_wake_up(phba);
dea31012005-04-17 16:05:31 -05005966 return;
5967}
5968
James Smart2a9bf3d2010-06-07 15:24:45 -04005969
James Smarte59058c2008-08-24 21:49:00 -04005970/**
James Smart3621a712009-04-06 18:47:14 -04005971 * lpfc_els_timeout_handler - Process an els timeout event
James Smarte59058c2008-08-24 21:49:00 -04005972 * @vport: pointer to a virtual N_Port data structure.
5973 *
5974 * This routine is the actual handler function that processes an ELS timeout
5975 * event. It walks the ELS ring to get and abort all the IOCBs (except the
5976 * ABORT/CLOSE/FARP/FARPR/FDISC), which are associated with the @vport by
5977 * invoking the lpfc_sli_issue_abort_iotag() routine.
5978 **/
dea31012005-04-17 16:05:31 -05005979void
James Smart2e0fef82007-06-17 19:56:36 -05005980lpfc_els_timeout_handler(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05005981{
James Smart2e0fef82007-06-17 19:56:36 -05005982 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05005983 struct lpfc_sli_ring *pring;
5984 struct lpfc_iocbq *tmp_iocb, *piocb;
5985 IOCB_t *cmd = NULL;
5986 struct lpfc_dmabuf *pcmd;
James Smart2e0fef82007-06-17 19:56:36 -05005987 uint32_t els_command = 0;
dea31012005-04-17 16:05:31 -05005988 uint32_t timeout;
James Smart2e0fef82007-06-17 19:56:36 -05005989 uint32_t remote_ID = 0xffffffff;
James Smart2a9bf3d2010-06-07 15:24:45 -04005990 LIST_HEAD(txcmplq_completions);
5991 LIST_HEAD(abort_list);
dea31012005-04-17 16:05:31 -05005992
James Smart2a9bf3d2010-06-07 15:24:45 -04005993
dea31012005-04-17 16:05:31 -05005994 timeout = (uint32_t)(phba->fc_ratov << 1);
5995
5996 pring = &phba->sli.ring[LPFC_ELS_RING];
dea31012005-04-17 16:05:31 -05005997
James Smart2a9bf3d2010-06-07 15:24:45 -04005998 spin_lock_irq(&phba->hbalock);
5999 list_splice_init(&pring->txcmplq, &txcmplq_completions);
6000 spin_unlock_irq(&phba->hbalock);
6001
6002 list_for_each_entry_safe(piocb, tmp_iocb, &txcmplq_completions, list) {
dea31012005-04-17 16:05:31 -05006003 cmd = &piocb->iocb;
6004
James Smart2e0fef82007-06-17 19:56:36 -05006005 if ((piocb->iocb_flag & LPFC_IO_LIBDFC) != 0 ||
6006 piocb->iocb.ulpCommand == CMD_ABORT_XRI_CN ||
6007 piocb->iocb.ulpCommand == CMD_CLOSE_XRI_CN)
dea31012005-04-17 16:05:31 -05006008 continue;
James Smart2e0fef82007-06-17 19:56:36 -05006009
6010 if (piocb->vport != vport)
6011 continue;
6012
dea31012005-04-17 16:05:31 -05006013 pcmd = (struct lpfc_dmabuf *) piocb->context2;
James Smart2e0fef82007-06-17 19:56:36 -05006014 if (pcmd)
6015 els_command = *(uint32_t *) (pcmd->virt);
dea31012005-04-17 16:05:31 -05006016
James Smart92d7f7b2007-06-17 19:56:38 -05006017 if (els_command == ELS_CMD_FARP ||
6018 els_command == ELS_CMD_FARPR ||
6019 els_command == ELS_CMD_FDISC)
dea31012005-04-17 16:05:31 -05006020 continue;
James Smart92d7f7b2007-06-17 19:56:38 -05006021
dea31012005-04-17 16:05:31 -05006022 if (piocb->drvrTimeout > 0) {
James Smart92d7f7b2007-06-17 19:56:38 -05006023 if (piocb->drvrTimeout >= timeout)
dea31012005-04-17 16:05:31 -05006024 piocb->drvrTimeout -= timeout;
James Smart92d7f7b2007-06-17 19:56:38 -05006025 else
dea31012005-04-17 16:05:31 -05006026 piocb->drvrTimeout = 0;
dea31012005-04-17 16:05:31 -05006027 continue;
6028 }
6029
James Smart2e0fef82007-06-17 19:56:36 -05006030 remote_ID = 0xffffffff;
6031 if (cmd->ulpCommand != CMD_GEN_REQUEST64_CR)
dea31012005-04-17 16:05:31 -05006032 remote_ID = cmd->un.elsreq64.remoteID;
James Smart2e0fef82007-06-17 19:56:36 -05006033 else {
6034 struct lpfc_nodelist *ndlp;
6035 ndlp = __lpfc_findnode_rpi(vport, cmd->ulpContext);
James Smart58da1ff2008-04-07 10:15:56 -04006036 if (ndlp && NLP_CHK_NODE_ACT(ndlp))
James Smart2e0fef82007-06-17 19:56:36 -05006037 remote_ID = ndlp->nlp_DID;
dea31012005-04-17 16:05:31 -05006038 }
James Smart2a9bf3d2010-06-07 15:24:45 -04006039 list_add_tail(&piocb->dlist, &abort_list);
dea31012005-04-17 16:05:31 -05006040 }
James Smart2a9bf3d2010-06-07 15:24:45 -04006041 spin_lock_irq(&phba->hbalock);
6042 list_splice(&txcmplq_completions, &pring->txcmplq);
James Smart2e0fef82007-06-17 19:56:36 -05006043 spin_unlock_irq(&phba->hbalock);
James Smart5a0e3262006-07-06 15:49:16 -04006044
James Smart2a9bf3d2010-06-07 15:24:45 -04006045 list_for_each_entry_safe(piocb, tmp_iocb, &abort_list, dlist) {
6046 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
6047 "0127 ELS timeout Data: x%x x%x x%x "
6048 "x%x\n", els_command,
6049 remote_ID, cmd->ulpCommand, cmd->ulpIoTag);
6050 spin_lock_irq(&phba->hbalock);
6051 list_del_init(&piocb->dlist);
6052 lpfc_sli_issue_abort_iotag(phba, pring, piocb);
6053 spin_unlock_irq(&phba->hbalock);
6054 }
6055
James Smart2e0fef82007-06-17 19:56:36 -05006056 if (phba->sli.ring[LPFC_ELS_RING].txcmplq_cnt)
6057 mod_timer(&vport->els_tmofunc, jiffies + HZ * timeout);
dea31012005-04-17 16:05:31 -05006058}
6059
James Smarte59058c2008-08-24 21:49:00 -04006060/**
James Smart3621a712009-04-06 18:47:14 -04006061 * lpfc_els_flush_cmd - Clean up the outstanding els commands to a vport
James Smarte59058c2008-08-24 21:49:00 -04006062 * @vport: pointer to a host virtual N_Port data structure.
6063 *
6064 * This routine is used to clean up all the outstanding ELS commands on a
6065 * @vport. It first aborts the @vport by invoking lpfc_fabric_abort_vport()
6066 * routine. After that, it walks the ELS transmit queue to remove all the
6067 * IOCBs with the @vport other than the QUE_RING and ABORT/CLOSE IOCBs. For
6068 * the IOCBs with a non-NULL completion callback function, the callback
6069 * function will be invoked with the status set to IOSTAT_LOCAL_REJECT and
6070 * un.ulpWord[4] set to IOERR_SLI_ABORTED. For IOCBs with a NULL completion
6071 * callback function, the IOCB will simply be released. Finally, it walks
6072 * the ELS transmit completion queue to issue an abort IOCB to any transmit
6073 * completion queue IOCB that is associated with the @vport and is not
6074 * an IOCB from libdfc (i.e., the management plane IOCBs that are not
6075 * part of the discovery state machine) out to HBA by invoking the
6076 * lpfc_sli_issue_abort_iotag() routine. Note that this function issues the
6077 * abort IOCB to any transmit completion queueed IOCB, it does not guarantee
6078 * the IOCBs are aborted when this function returns.
6079 **/
dea31012005-04-17 16:05:31 -05006080void
James Smart2e0fef82007-06-17 19:56:36 -05006081lpfc_els_flush_cmd(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05006082{
James Smart2534ba72007-04-25 09:52:20 -04006083 LIST_HEAD(completions);
James Smart2e0fef82007-06-17 19:56:36 -05006084 struct lpfc_hba *phba = vport->phba;
James Smart329f9bc2007-04-25 09:53:01 -04006085 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
dea31012005-04-17 16:05:31 -05006086 struct lpfc_iocbq *tmp_iocb, *piocb;
6087 IOCB_t *cmd = NULL;
James Smart92d7f7b2007-06-17 19:56:38 -05006088
6089 lpfc_fabric_abort_vport(vport);
dea31012005-04-17 16:05:31 -05006090
James Smart2e0fef82007-06-17 19:56:36 -05006091 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05006092 list_for_each_entry_safe(piocb, tmp_iocb, &pring->txq, list) {
6093 cmd = &piocb->iocb;
6094
6095 if (piocb->iocb_flag & LPFC_IO_LIBDFC) {
6096 continue;
6097 }
6098
6099 /* Do not flush out the QUE_RING and ABORT/CLOSE iocbs */
James Smart329f9bc2007-04-25 09:53:01 -04006100 if (cmd->ulpCommand == CMD_QUE_RING_BUF_CN ||
6101 cmd->ulpCommand == CMD_QUE_RING_BUF64_CN ||
6102 cmd->ulpCommand == CMD_CLOSE_XRI_CN ||
6103 cmd->ulpCommand == CMD_ABORT_XRI_CN)
dea31012005-04-17 16:05:31 -05006104 continue;
dea31012005-04-17 16:05:31 -05006105
James Smart2e0fef82007-06-17 19:56:36 -05006106 if (piocb->vport != vport)
6107 continue;
6108
James Smart2534ba72007-04-25 09:52:20 -04006109 list_move_tail(&piocb->list, &completions);
James Smart1dcb58e2007-04-25 09:51:30 -04006110 pring->txq_cnt--;
dea31012005-04-17 16:05:31 -05006111 }
6112
6113 list_for_each_entry_safe(piocb, tmp_iocb, &pring->txcmplq, list) {
dea31012005-04-17 16:05:31 -05006114 if (piocb->iocb_flag & LPFC_IO_LIBDFC) {
6115 continue;
6116 }
dea31012005-04-17 16:05:31 -05006117
James Smart2e0fef82007-06-17 19:56:36 -05006118 if (piocb->vport != vport)
6119 continue;
6120
James Smart07951072007-04-25 09:51:38 -04006121 lpfc_sli_issue_abort_iotag(phba, pring, piocb);
dea31012005-04-17 16:05:31 -05006122 }
James Smart2e0fef82007-06-17 19:56:36 -05006123 spin_unlock_irq(&phba->hbalock);
James Smart2534ba72007-04-25 09:52:20 -04006124
James Smarta257bf92009-04-06 18:48:10 -04006125 /* Cancell all the IOCBs from the completions list */
6126 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
6127 IOERR_SLI_ABORTED);
James Smart2534ba72007-04-25 09:52:20 -04006128
dea31012005-04-17 16:05:31 -05006129 return;
6130}
6131
James Smarte59058c2008-08-24 21:49:00 -04006132/**
James Smart3621a712009-04-06 18:47:14 -04006133 * lpfc_els_flush_all_cmd - Clean up all the outstanding els commands to a HBA
James Smarte59058c2008-08-24 21:49:00 -04006134 * @phba: pointer to lpfc hba data structure.
6135 *
6136 * This routine is used to clean up all the outstanding ELS commands on a
6137 * @phba. It first aborts the @phba by invoking the lpfc_fabric_abort_hba()
6138 * routine. After that, it walks the ELS transmit queue to remove all the
6139 * IOCBs to the @phba other than the QUE_RING and ABORT/CLOSE IOCBs. For
6140 * the IOCBs with the completion callback function associated, the callback
6141 * function will be invoked with the status set to IOSTAT_LOCAL_REJECT and
6142 * un.ulpWord[4] set to IOERR_SLI_ABORTED. For IOCBs without the completion
6143 * callback function associated, the IOCB will simply be released. Finally,
6144 * it walks the ELS transmit completion queue to issue an abort IOCB to any
6145 * transmit completion queue IOCB that is not an IOCB from libdfc (i.e., the
6146 * management plane IOCBs that are not part of the discovery state machine)
6147 * out to HBA by invoking the lpfc_sli_issue_abort_iotag() routine.
6148 **/
James Smart549e55c2007-08-02 11:09:51 -04006149void
6150lpfc_els_flush_all_cmd(struct lpfc_hba *phba)
6151{
6152 LIST_HEAD(completions);
6153 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
6154 struct lpfc_iocbq *tmp_iocb, *piocb;
6155 IOCB_t *cmd = NULL;
6156
6157 lpfc_fabric_abort_hba(phba);
6158 spin_lock_irq(&phba->hbalock);
6159 list_for_each_entry_safe(piocb, tmp_iocb, &pring->txq, list) {
6160 cmd = &piocb->iocb;
6161 if (piocb->iocb_flag & LPFC_IO_LIBDFC)
6162 continue;
6163 /* Do not flush out the QUE_RING and ABORT/CLOSE iocbs */
6164 if (cmd->ulpCommand == CMD_QUE_RING_BUF_CN ||
6165 cmd->ulpCommand == CMD_QUE_RING_BUF64_CN ||
6166 cmd->ulpCommand == CMD_CLOSE_XRI_CN ||
6167 cmd->ulpCommand == CMD_ABORT_XRI_CN)
6168 continue;
6169 list_move_tail(&piocb->list, &completions);
6170 pring->txq_cnt--;
6171 }
6172 list_for_each_entry_safe(piocb, tmp_iocb, &pring->txcmplq, list) {
6173 if (piocb->iocb_flag & LPFC_IO_LIBDFC)
6174 continue;
6175 lpfc_sli_issue_abort_iotag(phba, pring, piocb);
6176 }
6177 spin_unlock_irq(&phba->hbalock);
James Smarta257bf92009-04-06 18:48:10 -04006178
6179 /* Cancel all the IOCBs from the completions list */
6180 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
6181 IOERR_SLI_ABORTED);
6182
James Smart549e55c2007-08-02 11:09:51 -04006183 return;
6184}
6185
James Smarte59058c2008-08-24 21:49:00 -04006186/**
James Smart3621a712009-04-06 18:47:14 -04006187 * lpfc_send_els_failure_event - Posts an ELS command failure event
James Smartea2151b2008-09-07 11:52:10 -04006188 * @phba: Pointer to hba context object.
6189 * @cmdiocbp: Pointer to command iocb which reported error.
6190 * @rspiocbp: Pointer to response iocb which reported error.
6191 *
6192 * This function sends an event when there is an ELS command
6193 * failure.
6194 **/
6195void
6196lpfc_send_els_failure_event(struct lpfc_hba *phba,
6197 struct lpfc_iocbq *cmdiocbp,
6198 struct lpfc_iocbq *rspiocbp)
6199{
6200 struct lpfc_vport *vport = cmdiocbp->vport;
6201 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
6202 struct lpfc_lsrjt_event lsrjt_event;
6203 struct lpfc_fabric_event_header fabric_event;
6204 struct ls_rjt stat;
6205 struct lpfc_nodelist *ndlp;
6206 uint32_t *pcmd;
6207
6208 ndlp = cmdiocbp->context1;
6209 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp))
6210 return;
6211
6212 if (rspiocbp->iocb.ulpStatus == IOSTAT_LS_RJT) {
6213 lsrjt_event.header.event_type = FC_REG_ELS_EVENT;
6214 lsrjt_event.header.subcategory = LPFC_EVENT_LSRJT_RCV;
6215 memcpy(lsrjt_event.header.wwpn, &ndlp->nlp_portname,
6216 sizeof(struct lpfc_name));
6217 memcpy(lsrjt_event.header.wwnn, &ndlp->nlp_nodename,
6218 sizeof(struct lpfc_name));
6219 pcmd = (uint32_t *) (((struct lpfc_dmabuf *)
6220 cmdiocbp->context2)->virt);
James Smart49198b32010-04-06 15:04:33 -04006221 lsrjt_event.command = (pcmd != NULL) ? *pcmd : 0;
James Smartea2151b2008-09-07 11:52:10 -04006222 stat.un.lsRjtError = be32_to_cpu(rspiocbp->iocb.un.ulpWord[4]);
6223 lsrjt_event.reason_code = stat.un.b.lsRjtRsnCode;
6224 lsrjt_event.explanation = stat.un.b.lsRjtRsnCodeExp;
6225 fc_host_post_vendor_event(shost,
6226 fc_get_event_number(),
6227 sizeof(lsrjt_event),
6228 (char *)&lsrjt_event,
James Smartddcc50f2008-12-04 22:38:46 -05006229 LPFC_NL_VENDOR_ID);
James Smartea2151b2008-09-07 11:52:10 -04006230 return;
6231 }
6232 if ((rspiocbp->iocb.ulpStatus == IOSTAT_NPORT_BSY) ||
6233 (rspiocbp->iocb.ulpStatus == IOSTAT_FABRIC_BSY)) {
6234 fabric_event.event_type = FC_REG_FABRIC_EVENT;
6235 if (rspiocbp->iocb.ulpStatus == IOSTAT_NPORT_BSY)
6236 fabric_event.subcategory = LPFC_EVENT_PORT_BUSY;
6237 else
6238 fabric_event.subcategory = LPFC_EVENT_FABRIC_BUSY;
6239 memcpy(fabric_event.wwpn, &ndlp->nlp_portname,
6240 sizeof(struct lpfc_name));
6241 memcpy(fabric_event.wwnn, &ndlp->nlp_nodename,
6242 sizeof(struct lpfc_name));
6243 fc_host_post_vendor_event(shost,
6244 fc_get_event_number(),
6245 sizeof(fabric_event),
6246 (char *)&fabric_event,
James Smartddcc50f2008-12-04 22:38:46 -05006247 LPFC_NL_VENDOR_ID);
James Smartea2151b2008-09-07 11:52:10 -04006248 return;
6249 }
6250
6251}
6252
6253/**
James Smart3621a712009-04-06 18:47:14 -04006254 * lpfc_send_els_event - Posts unsolicited els event
James Smartea2151b2008-09-07 11:52:10 -04006255 * @vport: Pointer to vport object.
6256 * @ndlp: Pointer FC node object.
6257 * @cmd: ELS command code.
6258 *
6259 * This function posts an event when there is an incoming
6260 * unsolicited ELS command.
6261 **/
6262static void
6263lpfc_send_els_event(struct lpfc_vport *vport,
6264 struct lpfc_nodelist *ndlp,
James Smartddcc50f2008-12-04 22:38:46 -05006265 uint32_t *payload)
James Smartea2151b2008-09-07 11:52:10 -04006266{
James Smartddcc50f2008-12-04 22:38:46 -05006267 struct lpfc_els_event_header *els_data = NULL;
6268 struct lpfc_logo_event *logo_data = NULL;
James Smartea2151b2008-09-07 11:52:10 -04006269 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
6270
James Smartddcc50f2008-12-04 22:38:46 -05006271 if (*payload == ELS_CMD_LOGO) {
6272 logo_data = kmalloc(sizeof(struct lpfc_logo_event), GFP_KERNEL);
6273 if (!logo_data) {
6274 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
6275 "0148 Failed to allocate memory "
6276 "for LOGO event\n");
6277 return;
6278 }
6279 els_data = &logo_data->header;
6280 } else {
6281 els_data = kmalloc(sizeof(struct lpfc_els_event_header),
6282 GFP_KERNEL);
6283 if (!els_data) {
6284 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
6285 "0149 Failed to allocate memory "
6286 "for ELS event\n");
6287 return;
6288 }
6289 }
6290 els_data->event_type = FC_REG_ELS_EVENT;
6291 switch (*payload) {
James Smartea2151b2008-09-07 11:52:10 -04006292 case ELS_CMD_PLOGI:
James Smartddcc50f2008-12-04 22:38:46 -05006293 els_data->subcategory = LPFC_EVENT_PLOGI_RCV;
James Smartea2151b2008-09-07 11:52:10 -04006294 break;
6295 case ELS_CMD_PRLO:
James Smartddcc50f2008-12-04 22:38:46 -05006296 els_data->subcategory = LPFC_EVENT_PRLO_RCV;
James Smartea2151b2008-09-07 11:52:10 -04006297 break;
6298 case ELS_CMD_ADISC:
James Smartddcc50f2008-12-04 22:38:46 -05006299 els_data->subcategory = LPFC_EVENT_ADISC_RCV;
6300 break;
6301 case ELS_CMD_LOGO:
6302 els_data->subcategory = LPFC_EVENT_LOGO_RCV;
6303 /* Copy the WWPN in the LOGO payload */
6304 memcpy(logo_data->logo_wwpn, &payload[2],
6305 sizeof(struct lpfc_name));
James Smartea2151b2008-09-07 11:52:10 -04006306 break;
6307 default:
Julia Lawalle9161412009-02-08 22:43:19 +01006308 kfree(els_data);
James Smartea2151b2008-09-07 11:52:10 -04006309 return;
6310 }
James Smartddcc50f2008-12-04 22:38:46 -05006311 memcpy(els_data->wwpn, &ndlp->nlp_portname, sizeof(struct lpfc_name));
6312 memcpy(els_data->wwnn, &ndlp->nlp_nodename, sizeof(struct lpfc_name));
6313 if (*payload == ELS_CMD_LOGO) {
6314 fc_host_post_vendor_event(shost,
6315 fc_get_event_number(),
6316 sizeof(struct lpfc_logo_event),
6317 (char *)logo_data,
6318 LPFC_NL_VENDOR_ID);
6319 kfree(logo_data);
6320 } else {
6321 fc_host_post_vendor_event(shost,
6322 fc_get_event_number(),
6323 sizeof(struct lpfc_els_event_header),
6324 (char *)els_data,
6325 LPFC_NL_VENDOR_ID);
6326 kfree(els_data);
6327 }
James Smartea2151b2008-09-07 11:52:10 -04006328
6329 return;
6330}
6331
6332
6333/**
James Smart3621a712009-04-06 18:47:14 -04006334 * lpfc_els_unsol_buffer - Process an unsolicited event data buffer
James Smarte59058c2008-08-24 21:49:00 -04006335 * @phba: pointer to lpfc hba data structure.
6336 * @pring: pointer to a SLI ring.
6337 * @vport: pointer to a host virtual N_Port data structure.
6338 * @elsiocb: pointer to lpfc els command iocb data structure.
6339 *
6340 * This routine is used for processing the IOCB associated with a unsolicited
6341 * event. It first determines whether there is an existing ndlp that matches
6342 * the DID from the unsolicited IOCB. If not, it will create a new one with
6343 * the DID from the unsolicited IOCB. The ELS command from the unsolicited
6344 * IOCB is then used to invoke the proper routine and to set up proper state
6345 * of the discovery state machine.
6346 **/
James Smarted957682007-06-17 19:56:37 -05006347static void
6348lpfc_els_unsol_buffer(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
James Smart92d7f7b2007-06-17 19:56:38 -05006349 struct lpfc_vport *vport, struct lpfc_iocbq *elsiocb)
dea31012005-04-17 16:05:31 -05006350{
James Smart87af33f2007-10-27 13:37:43 -04006351 struct Scsi_Host *shost;
dea31012005-04-17 16:05:31 -05006352 struct lpfc_nodelist *ndlp;
dea31012005-04-17 16:05:31 -05006353 struct ls_rjt stat;
James Smart92d7f7b2007-06-17 19:56:38 -05006354 uint32_t *payload;
James Smart2e0fef82007-06-17 19:56:36 -05006355 uint32_t cmd, did, newnode, rjt_err = 0;
James Smarted957682007-06-17 19:56:37 -05006356 IOCB_t *icmd = &elsiocb->iocb;
dea31012005-04-17 16:05:31 -05006357
James Smarte47c9092008-02-08 18:49:26 -05006358 if (!vport || !(elsiocb->context2))
dea31012005-04-17 16:05:31 -05006359 goto dropit;
James Smart2e0fef82007-06-17 19:56:36 -05006360
dea31012005-04-17 16:05:31 -05006361 newnode = 0;
James Smart92d7f7b2007-06-17 19:56:38 -05006362 payload = ((struct lpfc_dmabuf *)elsiocb->context2)->virt;
6363 cmd = *payload;
James Smarted957682007-06-17 19:56:37 -05006364 if ((phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) == 0)
James Smart495a7142008-06-14 22:52:59 -04006365 lpfc_post_buffer(phba, pring, 1);
dea31012005-04-17 16:05:31 -05006366
James Smart858c9f62007-06-17 19:56:39 -05006367 did = icmd->un.rcvels.remoteID;
6368 if (icmd->ulpStatus) {
6369 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6370 "RCV Unsol ELS: status:x%x/x%x did:x%x",
6371 icmd->ulpStatus, icmd->un.ulpWord[4], did);
dea31012005-04-17 16:05:31 -05006372 goto dropit;
James Smart858c9f62007-06-17 19:56:39 -05006373 }
dea31012005-04-17 16:05:31 -05006374
6375 /* Check to see if link went down during discovery */
James Smarted957682007-06-17 19:56:37 -05006376 if (lpfc_els_chk_latt(vport))
dea31012005-04-17 16:05:31 -05006377 goto dropit;
dea31012005-04-17 16:05:31 -05006378
James Smartc8685952009-11-18 15:39:16 -05006379 /* Ignore traffic received during vport shutdown. */
James Smart92d7f7b2007-06-17 19:56:38 -05006380 if (vport->load_flag & FC_UNLOADING)
6381 goto dropit;
6382
James Smart92494142011-02-16 12:39:44 -05006383 /* If NPort discovery is delayed drop incoming ELS */
6384 if ((vport->fc_flag & FC_DISC_DELAYED) &&
6385 (cmd != ELS_CMD_PLOGI))
6386 goto dropit;
6387
James Smart2e0fef82007-06-17 19:56:36 -05006388 ndlp = lpfc_findnode_did(vport, did);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05006389 if (!ndlp) {
dea31012005-04-17 16:05:31 -05006390 /* Cannot find existing Fabric ndlp, so allocate a new one */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05006391 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
James Smarted957682007-06-17 19:56:37 -05006392 if (!ndlp)
dea31012005-04-17 16:05:31 -05006393 goto dropit;
dea31012005-04-17 16:05:31 -05006394
James Smart2e0fef82007-06-17 19:56:36 -05006395 lpfc_nlp_init(vport, ndlp, did);
James Smart98c9ea52007-10-27 13:37:33 -04006396 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
dea31012005-04-17 16:05:31 -05006397 newnode = 1;
James Smarte47c9092008-02-08 18:49:26 -05006398 if ((did & Fabric_DID_MASK) == Fabric_DID_MASK)
dea31012005-04-17 16:05:31 -05006399 ndlp->nlp_type |= NLP_FABRIC;
James Smart58da1ff2008-04-07 10:15:56 -04006400 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
6401 ndlp = lpfc_enable_node(vport, ndlp,
6402 NLP_STE_UNUSED_NODE);
6403 if (!ndlp)
6404 goto dropit;
6405 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
6406 newnode = 1;
6407 if ((did & Fabric_DID_MASK) == Fabric_DID_MASK)
6408 ndlp->nlp_type |= NLP_FABRIC;
6409 } else if (ndlp->nlp_state == NLP_STE_UNUSED_NODE) {
6410 /* This is similar to the new node path */
6411 ndlp = lpfc_nlp_get(ndlp);
6412 if (!ndlp)
6413 goto dropit;
6414 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
6415 newnode = 1;
James Smart87af33f2007-10-27 13:37:43 -04006416 }
dea31012005-04-17 16:05:31 -05006417
6418 phba->fc_stat.elsRcvFrame++;
James Smarte47c9092008-02-08 18:49:26 -05006419
James Smart329f9bc2007-04-25 09:53:01 -04006420 elsiocb->context1 = lpfc_nlp_get(ndlp);
James Smart2e0fef82007-06-17 19:56:36 -05006421 elsiocb->vport = vport;
dea31012005-04-17 16:05:31 -05006422
6423 if ((cmd & ELS_CMD_MASK) == ELS_CMD_RSCN) {
6424 cmd &= ELS_CMD_MASK;
6425 }
6426 /* ELS command <elsCmd> received from NPORT <did> */
James Smarte8b62012007-08-02 11:10:09 -04006427 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
6428 "0112 ELS command x%x received from NPORT x%x "
6429 "Data: x%x\n", cmd, did, vport->port_state);
dea31012005-04-17 16:05:31 -05006430 switch (cmd) {
6431 case ELS_CMD_PLOGI:
James Smart858c9f62007-06-17 19:56:39 -05006432 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6433 "RCV PLOGI: did:x%x/ste:x%x flg:x%x",
6434 did, vport->port_state, ndlp->nlp_flag);
6435
dea31012005-04-17 16:05:31 -05006436 phba->fc_stat.elsRcvPLOGI++;
James Smart858c9f62007-06-17 19:56:39 -05006437 ndlp = lpfc_plogi_confirm_nport(phba, payload, ndlp);
6438
James Smartddcc50f2008-12-04 22:38:46 -05006439 lpfc_send_els_event(vport, ndlp, payload);
James Smart92494142011-02-16 12:39:44 -05006440
6441 /* If Nport discovery is delayed, reject PLOGIs */
6442 if (vport->fc_flag & FC_DISC_DELAYED) {
6443 rjt_err = LSRJT_UNABLE_TPC;
6444 break;
6445 }
James Smart858c9f62007-06-17 19:56:39 -05006446 if (vport->port_state < LPFC_DISC_AUTH) {
James Smart1b32f6a2008-02-08 18:49:39 -05006447 if (!(phba->pport->fc_flag & FC_PT2PT) ||
6448 (phba->pport->fc_flag & FC_PT2PT_PLOGI)) {
6449 rjt_err = LSRJT_UNABLE_TPC;
6450 break;
6451 }
6452 /* We get here, and drop thru, if we are PT2PT with
6453 * another NPort and the other side has initiated
6454 * the PLOGI before responding to our FLOGI.
6455 */
dea31012005-04-17 16:05:31 -05006456 }
James Smart87af33f2007-10-27 13:37:43 -04006457
6458 shost = lpfc_shost_from_vport(vport);
6459 spin_lock_irq(shost->host_lock);
6460 ndlp->nlp_flag &= ~NLP_TARGET_REMOVE;
6461 spin_unlock_irq(shost->host_lock);
6462
James Smart2e0fef82007-06-17 19:56:36 -05006463 lpfc_disc_state_machine(vport, ndlp, elsiocb,
6464 NLP_EVT_RCV_PLOGI);
James Smart858c9f62007-06-17 19:56:39 -05006465
dea31012005-04-17 16:05:31 -05006466 break;
6467 case ELS_CMD_FLOGI:
James Smart858c9f62007-06-17 19:56:39 -05006468 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6469 "RCV FLOGI: did:x%x/ste:x%x flg:x%x",
6470 did, vport->port_state, ndlp->nlp_flag);
6471
dea31012005-04-17 16:05:31 -05006472 phba->fc_stat.elsRcvFLOGI++;
James Smart51ef4c22007-08-02 11:10:31 -04006473 lpfc_els_rcv_flogi(vport, elsiocb, ndlp);
James Smart87af33f2007-10-27 13:37:43 -04006474 if (newnode)
James Smart98c9ea52007-10-27 13:37:33 -04006475 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05006476 break;
6477 case ELS_CMD_LOGO:
James Smart858c9f62007-06-17 19:56:39 -05006478 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6479 "RCV LOGO: did:x%x/ste:x%x flg:x%x",
6480 did, vport->port_state, ndlp->nlp_flag);
6481
dea31012005-04-17 16:05:31 -05006482 phba->fc_stat.elsRcvLOGO++;
James Smartddcc50f2008-12-04 22:38:46 -05006483 lpfc_send_els_event(vport, ndlp, payload);
James Smart2e0fef82007-06-17 19:56:36 -05006484 if (vport->port_state < LPFC_DISC_AUTH) {
James Smart858c9f62007-06-17 19:56:39 -05006485 rjt_err = LSRJT_UNABLE_TPC;
dea31012005-04-17 16:05:31 -05006486 break;
6487 }
James Smart2e0fef82007-06-17 19:56:36 -05006488 lpfc_disc_state_machine(vport, ndlp, elsiocb, NLP_EVT_RCV_LOGO);
dea31012005-04-17 16:05:31 -05006489 break;
6490 case ELS_CMD_PRLO:
James Smart858c9f62007-06-17 19:56:39 -05006491 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6492 "RCV PRLO: did:x%x/ste:x%x flg:x%x",
6493 did, vport->port_state, ndlp->nlp_flag);
6494
dea31012005-04-17 16:05:31 -05006495 phba->fc_stat.elsRcvPRLO++;
James Smartddcc50f2008-12-04 22:38:46 -05006496 lpfc_send_els_event(vport, ndlp, payload);
James Smart2e0fef82007-06-17 19:56:36 -05006497 if (vport->port_state < LPFC_DISC_AUTH) {
James Smart858c9f62007-06-17 19:56:39 -05006498 rjt_err = LSRJT_UNABLE_TPC;
dea31012005-04-17 16:05:31 -05006499 break;
6500 }
James Smart2e0fef82007-06-17 19:56:36 -05006501 lpfc_disc_state_machine(vport, ndlp, elsiocb, NLP_EVT_RCV_PRLO);
dea31012005-04-17 16:05:31 -05006502 break;
6503 case ELS_CMD_RSCN:
6504 phba->fc_stat.elsRcvRSCN++;
James Smart51ef4c22007-08-02 11:10:31 -04006505 lpfc_els_rcv_rscn(vport, elsiocb, ndlp);
James Smart87af33f2007-10-27 13:37:43 -04006506 if (newnode)
James Smart98c9ea52007-10-27 13:37:33 -04006507 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05006508 break;
6509 case ELS_CMD_ADISC:
James Smart858c9f62007-06-17 19:56:39 -05006510 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6511 "RCV ADISC: did:x%x/ste:x%x flg:x%x",
6512 did, vport->port_state, ndlp->nlp_flag);
6513
James Smartddcc50f2008-12-04 22:38:46 -05006514 lpfc_send_els_event(vport, ndlp, payload);
dea31012005-04-17 16:05:31 -05006515 phba->fc_stat.elsRcvADISC++;
James Smart2e0fef82007-06-17 19:56:36 -05006516 if (vport->port_state < LPFC_DISC_AUTH) {
James Smart858c9f62007-06-17 19:56:39 -05006517 rjt_err = LSRJT_UNABLE_TPC;
dea31012005-04-17 16:05:31 -05006518 break;
6519 }
James Smart2e0fef82007-06-17 19:56:36 -05006520 lpfc_disc_state_machine(vport, ndlp, elsiocb,
6521 NLP_EVT_RCV_ADISC);
dea31012005-04-17 16:05:31 -05006522 break;
6523 case ELS_CMD_PDISC:
James Smart858c9f62007-06-17 19:56:39 -05006524 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6525 "RCV PDISC: did:x%x/ste:x%x flg:x%x",
6526 did, vport->port_state, ndlp->nlp_flag);
6527
dea31012005-04-17 16:05:31 -05006528 phba->fc_stat.elsRcvPDISC++;
James Smart2e0fef82007-06-17 19:56:36 -05006529 if (vport->port_state < LPFC_DISC_AUTH) {
James Smart858c9f62007-06-17 19:56:39 -05006530 rjt_err = LSRJT_UNABLE_TPC;
dea31012005-04-17 16:05:31 -05006531 break;
6532 }
James Smart2e0fef82007-06-17 19:56:36 -05006533 lpfc_disc_state_machine(vport, ndlp, elsiocb,
6534 NLP_EVT_RCV_PDISC);
dea31012005-04-17 16:05:31 -05006535 break;
6536 case ELS_CMD_FARPR:
James Smart858c9f62007-06-17 19:56:39 -05006537 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6538 "RCV FARPR: did:x%x/ste:x%x flg:x%x",
6539 did, vport->port_state, ndlp->nlp_flag);
6540
dea31012005-04-17 16:05:31 -05006541 phba->fc_stat.elsRcvFARPR++;
James Smart2e0fef82007-06-17 19:56:36 -05006542 lpfc_els_rcv_farpr(vport, elsiocb, ndlp);
dea31012005-04-17 16:05:31 -05006543 break;
6544 case ELS_CMD_FARP:
James Smart858c9f62007-06-17 19:56:39 -05006545 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6546 "RCV FARP: did:x%x/ste:x%x flg:x%x",
6547 did, vport->port_state, ndlp->nlp_flag);
6548
dea31012005-04-17 16:05:31 -05006549 phba->fc_stat.elsRcvFARP++;
James Smart2e0fef82007-06-17 19:56:36 -05006550 lpfc_els_rcv_farp(vport, elsiocb, ndlp);
dea31012005-04-17 16:05:31 -05006551 break;
6552 case ELS_CMD_FAN:
James Smart858c9f62007-06-17 19:56:39 -05006553 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6554 "RCV FAN: did:x%x/ste:x%x flg:x%x",
6555 did, vport->port_state, ndlp->nlp_flag);
6556
dea31012005-04-17 16:05:31 -05006557 phba->fc_stat.elsRcvFAN++;
James Smart2e0fef82007-06-17 19:56:36 -05006558 lpfc_els_rcv_fan(vport, elsiocb, ndlp);
dea31012005-04-17 16:05:31 -05006559 break;
dea31012005-04-17 16:05:31 -05006560 case ELS_CMD_PRLI:
James Smart858c9f62007-06-17 19:56:39 -05006561 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6562 "RCV PRLI: did:x%x/ste:x%x flg:x%x",
6563 did, vport->port_state, ndlp->nlp_flag);
6564
dea31012005-04-17 16:05:31 -05006565 phba->fc_stat.elsRcvPRLI++;
James Smart2e0fef82007-06-17 19:56:36 -05006566 if (vport->port_state < LPFC_DISC_AUTH) {
James Smart858c9f62007-06-17 19:56:39 -05006567 rjt_err = LSRJT_UNABLE_TPC;
dea31012005-04-17 16:05:31 -05006568 break;
6569 }
James Smart2e0fef82007-06-17 19:56:36 -05006570 lpfc_disc_state_machine(vport, ndlp, elsiocb, NLP_EVT_RCV_PRLI);
dea31012005-04-17 16:05:31 -05006571 break;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006572 case ELS_CMD_LIRR:
James Smart858c9f62007-06-17 19:56:39 -05006573 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6574 "RCV LIRR: did:x%x/ste:x%x flg:x%x",
6575 did, vport->port_state, ndlp->nlp_flag);
6576
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006577 phba->fc_stat.elsRcvLIRR++;
James Smart2e0fef82007-06-17 19:56:36 -05006578 lpfc_els_rcv_lirr(vport, elsiocb, ndlp);
James Smart87af33f2007-10-27 13:37:43 -04006579 if (newnode)
James Smart98c9ea52007-10-27 13:37:33 -04006580 lpfc_nlp_put(ndlp);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006581 break;
James Smart12265f62010-10-22 11:05:53 -04006582 case ELS_CMD_RLS:
6583 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6584 "RCV RLS: did:x%x/ste:x%x flg:x%x",
6585 did, vport->port_state, ndlp->nlp_flag);
6586
6587 phba->fc_stat.elsRcvRLS++;
6588 lpfc_els_rcv_rls(vport, elsiocb, ndlp);
6589 if (newnode)
6590 lpfc_nlp_put(ndlp);
6591 break;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006592 case ELS_CMD_RPS:
James Smart858c9f62007-06-17 19:56:39 -05006593 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6594 "RCV RPS: did:x%x/ste:x%x flg:x%x",
6595 did, vport->port_state, ndlp->nlp_flag);
6596
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006597 phba->fc_stat.elsRcvRPS++;
James Smart2e0fef82007-06-17 19:56:36 -05006598 lpfc_els_rcv_rps(vport, elsiocb, ndlp);
James Smart87af33f2007-10-27 13:37:43 -04006599 if (newnode)
James Smart98c9ea52007-10-27 13:37:33 -04006600 lpfc_nlp_put(ndlp);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006601 break;
6602 case ELS_CMD_RPL:
James Smart858c9f62007-06-17 19:56:39 -05006603 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6604 "RCV RPL: did:x%x/ste:x%x flg:x%x",
6605 did, vport->port_state, ndlp->nlp_flag);
6606
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006607 phba->fc_stat.elsRcvRPL++;
James Smart2e0fef82007-06-17 19:56:36 -05006608 lpfc_els_rcv_rpl(vport, elsiocb, ndlp);
James Smart87af33f2007-10-27 13:37:43 -04006609 if (newnode)
James Smart98c9ea52007-10-27 13:37:33 -04006610 lpfc_nlp_put(ndlp);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05006611 break;
dea31012005-04-17 16:05:31 -05006612 case ELS_CMD_RNID:
James Smart858c9f62007-06-17 19:56:39 -05006613 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6614 "RCV RNID: did:x%x/ste:x%x flg:x%x",
6615 did, vport->port_state, ndlp->nlp_flag);
6616
dea31012005-04-17 16:05:31 -05006617 phba->fc_stat.elsRcvRNID++;
James Smart2e0fef82007-06-17 19:56:36 -05006618 lpfc_els_rcv_rnid(vport, elsiocb, ndlp);
James Smart87af33f2007-10-27 13:37:43 -04006619 if (newnode)
James Smart98c9ea52007-10-27 13:37:33 -04006620 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05006621 break;
James Smart12265f62010-10-22 11:05:53 -04006622 case ELS_CMD_RTV:
6623 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6624 "RCV RTV: did:x%x/ste:x%x flg:x%x",
6625 did, vport->port_state, ndlp->nlp_flag);
6626 phba->fc_stat.elsRcvRTV++;
6627 lpfc_els_rcv_rtv(vport, elsiocb, ndlp);
6628 if (newnode)
6629 lpfc_nlp_put(ndlp);
6630 break;
James Smart5ffc2662009-11-18 15:39:44 -05006631 case ELS_CMD_RRQ:
6632 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6633 "RCV RRQ: did:x%x/ste:x%x flg:x%x",
6634 did, vport->port_state, ndlp->nlp_flag);
6635
6636 phba->fc_stat.elsRcvRRQ++;
6637 lpfc_els_rcv_rrq(vport, elsiocb, ndlp);
6638 if (newnode)
6639 lpfc_nlp_put(ndlp);
6640 break;
James Smart12265f62010-10-22 11:05:53 -04006641 case ELS_CMD_ECHO:
6642 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6643 "RCV ECHO: did:x%x/ste:x%x flg:x%x",
6644 did, vport->port_state, ndlp->nlp_flag);
6645
6646 phba->fc_stat.elsRcvECHO++;
6647 lpfc_els_rcv_echo(vport, elsiocb, ndlp);
6648 if (newnode)
6649 lpfc_nlp_put(ndlp);
6650 break;
dea31012005-04-17 16:05:31 -05006651 default:
James Smart858c9f62007-06-17 19:56:39 -05006652 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
6653 "RCV ELS cmd: cmd:x%x did:x%x/ste:x%x",
6654 cmd, did, vport->port_state);
6655
dea31012005-04-17 16:05:31 -05006656 /* Unsupported ELS command, reject */
James Smart63e801c2010-11-20 23:14:19 -05006657 rjt_err = LSRJT_CMD_UNSUPPORTED;
dea31012005-04-17 16:05:31 -05006658
6659 /* Unknown ELS command <elsCmd> received from NPORT <did> */
James Smarte8b62012007-08-02 11:10:09 -04006660 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
6661 "0115 Unknown ELS command x%x "
6662 "received from NPORT x%x\n", cmd, did);
James Smart87af33f2007-10-27 13:37:43 -04006663 if (newnode)
James Smart98c9ea52007-10-27 13:37:33 -04006664 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05006665 break;
6666 }
6667
6668 /* check if need to LS_RJT received ELS cmd */
6669 if (rjt_err) {
James Smart92d7f7b2007-06-17 19:56:38 -05006670 memset(&stat, 0, sizeof(stat));
James Smart858c9f62007-06-17 19:56:39 -05006671 stat.un.b.lsRjtRsnCode = rjt_err;
James.Smart@Emulex.Com1f679ca2005-06-25 10:34:27 -04006672 stat.un.b.lsRjtRsnCodeExp = LSEXP_NOTHING_MORE;
James Smart858c9f62007-06-17 19:56:39 -05006673 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, elsiocb, ndlp,
6674 NULL);
dea31012005-04-17 16:05:31 -05006675 }
6676
James Smartd7c255b2008-08-24 21:50:00 -04006677 lpfc_nlp_put(elsiocb->context1);
6678 elsiocb->context1 = NULL;
James Smarted957682007-06-17 19:56:37 -05006679 return;
6680
6681dropit:
James Smart98c9ea52007-10-27 13:37:33 -04006682 if (vport && !(vport->load_flag & FC_UNLOADING))
James Smart6fb120a2009-05-22 14:52:59 -04006683 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
6684 "0111 Dropping received ELS cmd "
James Smarted957682007-06-17 19:56:37 -05006685 "Data: x%x x%x x%x\n",
James Smart6fb120a2009-05-22 14:52:59 -04006686 icmd->ulpStatus, icmd->un.ulpWord[4], icmd->ulpTimeout);
James Smarted957682007-06-17 19:56:37 -05006687 phba->fc_stat.elsRcvDrop++;
6688}
6689
James Smarte59058c2008-08-24 21:49:00 -04006690/**
James Smart3621a712009-04-06 18:47:14 -04006691 * lpfc_els_unsol_event - Process an unsolicited event from an els sli ring
James Smarte59058c2008-08-24 21:49:00 -04006692 * @phba: pointer to lpfc hba data structure.
6693 * @pring: pointer to a SLI ring.
6694 * @elsiocb: pointer to lpfc els iocb data structure.
6695 *
6696 * This routine is used to process an unsolicited event received from a SLI
6697 * (Service Level Interface) ring. The actual processing of the data buffer
6698 * associated with the unsolicited event is done by invoking the routine
6699 * lpfc_els_unsol_buffer() after properly set up the iocb buffer from the
6700 * SLI ring on which the unsolicited event was received.
6701 **/
James Smarted957682007-06-17 19:56:37 -05006702void
6703lpfc_els_unsol_event(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
6704 struct lpfc_iocbq *elsiocb)
6705{
6706 struct lpfc_vport *vport = phba->pport;
James Smarted957682007-06-17 19:56:37 -05006707 IOCB_t *icmd = &elsiocb->iocb;
James Smarted957682007-06-17 19:56:37 -05006708 dma_addr_t paddr;
James Smart92d7f7b2007-06-17 19:56:38 -05006709 struct lpfc_dmabuf *bdeBuf1 = elsiocb->context2;
6710 struct lpfc_dmabuf *bdeBuf2 = elsiocb->context3;
James Smarted957682007-06-17 19:56:37 -05006711
James Smartd7c255b2008-08-24 21:50:00 -04006712 elsiocb->context1 = NULL;
James Smart92d7f7b2007-06-17 19:56:38 -05006713 elsiocb->context2 = NULL;
6714 elsiocb->context3 = NULL;
6715
6716 if (icmd->ulpStatus == IOSTAT_NEED_BUFFER) {
6717 lpfc_sli_hbqbuf_add_hbqs(phba, LPFC_ELS_HBQ);
6718 } else if (icmd->ulpStatus == IOSTAT_LOCAL_REJECT &&
6719 (icmd->un.ulpWord[4] & 0xff) == IOERR_RCV_BUFFER_WAITING) {
James Smarted957682007-06-17 19:56:37 -05006720 phba->fc_stat.NoRcvBuf++;
6721 /* Not enough posted buffers; Try posting more buffers */
James Smart92d7f7b2007-06-17 19:56:38 -05006722 if (!(phba->sli3_options & LPFC_SLI3_HBQ_ENABLED))
James Smart495a7142008-06-14 22:52:59 -04006723 lpfc_post_buffer(phba, pring, 0);
James Smarted957682007-06-17 19:56:37 -05006724 return;
6725 }
6726
James Smart92d7f7b2007-06-17 19:56:38 -05006727 if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
6728 (icmd->ulpCommand == CMD_IOCB_RCV_ELS64_CX ||
6729 icmd->ulpCommand == CMD_IOCB_RCV_SEQ64_CX)) {
6730 if (icmd->unsli3.rcvsli3.vpi == 0xffff)
6731 vport = phba->pport;
James Smart6fb120a2009-05-22 14:52:59 -04006732 else
6733 vport = lpfc_find_vport_by_vpid(phba,
James Smart6d368e52011-05-24 11:44:12 -04006734 icmd->unsli3.rcvsli3.vpi);
James Smart92d7f7b2007-06-17 19:56:38 -05006735 }
James Smart6d368e52011-05-24 11:44:12 -04006736
James Smart7f5f3d02008-02-08 18:50:14 -05006737 /* If there are no BDEs associated
6738 * with this IOCB, there is nothing to do.
6739 */
James Smarted957682007-06-17 19:56:37 -05006740 if (icmd->ulpBdeCount == 0)
6741 return;
6742
James Smart7f5f3d02008-02-08 18:50:14 -05006743 /* type of ELS cmd is first 32bit word
6744 * in packet
6745 */
James Smarted957682007-06-17 19:56:37 -05006746 if (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) {
James Smart92d7f7b2007-06-17 19:56:38 -05006747 elsiocb->context2 = bdeBuf1;
James Smarted957682007-06-17 19:56:37 -05006748 } else {
6749 paddr = getPaddr(icmd->un.cont64[0].addrHigh,
6750 icmd->un.cont64[0].addrLow);
James Smart92d7f7b2007-06-17 19:56:38 -05006751 elsiocb->context2 = lpfc_sli_ringpostbuf_get(phba, pring,
6752 paddr);
James Smarted957682007-06-17 19:56:37 -05006753 }
6754
James Smart92d7f7b2007-06-17 19:56:38 -05006755 lpfc_els_unsol_buffer(phba, pring, vport, elsiocb);
6756 /*
6757 * The different unsolicited event handlers would tell us
6758 * if they are done with "mp" by setting context2 to NULL.
6759 */
dea31012005-04-17 16:05:31 -05006760 if (elsiocb->context2) {
James Smart92d7f7b2007-06-17 19:56:38 -05006761 lpfc_in_buf_free(phba, (struct lpfc_dmabuf *)elsiocb->context2);
6762 elsiocb->context2 = NULL;
dea31012005-04-17 16:05:31 -05006763 }
James Smarted957682007-06-17 19:56:37 -05006764
6765 /* RCV_ELS64_CX provide for 2 BDEs - process 2nd if included */
James Smart92d7f7b2007-06-17 19:56:38 -05006766 if ((phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) &&
James Smarted957682007-06-17 19:56:37 -05006767 icmd->ulpBdeCount == 2) {
James Smart92d7f7b2007-06-17 19:56:38 -05006768 elsiocb->context2 = bdeBuf2;
6769 lpfc_els_unsol_buffer(phba, pring, vport, elsiocb);
James Smarted957682007-06-17 19:56:37 -05006770 /* free mp if we are done with it */
6771 if (elsiocb->context2) {
James Smart92d7f7b2007-06-17 19:56:38 -05006772 lpfc_in_buf_free(phba, elsiocb->context2);
6773 elsiocb->context2 = NULL;
James Smarted957682007-06-17 19:56:37 -05006774 }
dea31012005-04-17 16:05:31 -05006775 }
dea31012005-04-17 16:05:31 -05006776}
James Smart92d7f7b2007-06-17 19:56:38 -05006777
James Smarte59058c2008-08-24 21:49:00 -04006778/**
James Smart3621a712009-04-06 18:47:14 -04006779 * lpfc_do_scr_ns_plogi - Issue a plogi to the name server for scr
James Smarte59058c2008-08-24 21:49:00 -04006780 * @phba: pointer to lpfc hba data structure.
6781 * @vport: pointer to a virtual N_Port data structure.
6782 *
6783 * This routine issues a Port Login (PLOGI) to the Name Server with
6784 * State Change Request (SCR) for a @vport. This routine will create an
6785 * ndlp for the Name Server associated to the @vport if such node does
6786 * not already exist. The PLOGI to Name Server is issued by invoking the
6787 * lpfc_issue_els_plogi() routine. If Fabric-Device Management Interface
6788 * (FDMI) is configured to the @vport, a FDMI node will be created and
6789 * the PLOGI to FDMI is issued by invoking lpfc_issue_els_plogi() routine.
6790 **/
James Smart92d7f7b2007-06-17 19:56:38 -05006791void
6792lpfc_do_scr_ns_plogi(struct lpfc_hba *phba, struct lpfc_vport *vport)
6793{
6794 struct lpfc_nodelist *ndlp, *ndlp_fdmi;
James Smart92494142011-02-16 12:39:44 -05006795 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
6796
6797 /*
6798 * If lpfc_delay_discovery parameter is set and the clean address
6799 * bit is cleared and fc fabric parameters chenged, delay FC NPort
6800 * discovery.
6801 */
6802 spin_lock_irq(shost->host_lock);
6803 if (vport->fc_flag & FC_DISC_DELAYED) {
6804 spin_unlock_irq(shost->host_lock);
6805 mod_timer(&vport->delayed_disc_tmo,
6806 jiffies + HZ * phba->fc_ratov);
6807 return;
6808 }
6809 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05006810
6811 ndlp = lpfc_findnode_did(vport, NameServer_DID);
6812 if (!ndlp) {
6813 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
6814 if (!ndlp) {
James Smart76a95d72010-11-20 23:11:48 -05006815 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
James Smart92d7f7b2007-06-17 19:56:38 -05006816 lpfc_disc_start(vport);
6817 return;
6818 }
6819 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
James Smarte8b62012007-08-02 11:10:09 -04006820 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
6821 "0251 NameServer login: no memory\n");
James Smart92d7f7b2007-06-17 19:56:38 -05006822 return;
6823 }
6824 lpfc_nlp_init(vport, ndlp, NameServer_DID);
James Smarte47c9092008-02-08 18:49:26 -05006825 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
6826 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
6827 if (!ndlp) {
James Smart76a95d72010-11-20 23:11:48 -05006828 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
James Smarte47c9092008-02-08 18:49:26 -05006829 lpfc_disc_start(vport);
6830 return;
6831 }
6832 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
6833 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
6834 "0348 NameServer login: node freed\n");
6835 return;
6836 }
James Smart92d7f7b2007-06-17 19:56:38 -05006837 }
James Smart58da1ff2008-04-07 10:15:56 -04006838 ndlp->nlp_type |= NLP_FABRIC;
James Smart92d7f7b2007-06-17 19:56:38 -05006839
6840 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
6841
6842 if (lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0)) {
6843 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
James Smarte8b62012007-08-02 11:10:09 -04006844 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
6845 "0252 Cannot issue NameServer login\n");
James Smart92d7f7b2007-06-17 19:56:38 -05006846 return;
6847 }
6848
James Smart3de2a652007-08-02 11:09:59 -04006849 if (vport->cfg_fdmi_on) {
James Smart63e801c2010-11-20 23:14:19 -05006850 /* If this is the first time, allocate an ndlp and initialize
6851 * it. Otherwise, make sure the node is enabled and then do the
6852 * login.
6853 */
6854 ndlp_fdmi = lpfc_findnode_did(vport, FDMI_DID);
6855 if (!ndlp_fdmi) {
6856 ndlp_fdmi = mempool_alloc(phba->nlp_mem_pool,
6857 GFP_KERNEL);
6858 if (ndlp_fdmi) {
6859 lpfc_nlp_init(vport, ndlp_fdmi, FDMI_DID);
6860 ndlp_fdmi->nlp_type |= NLP_FABRIC;
6861 } else
6862 return;
6863 }
6864 if (!NLP_CHK_NODE_ACT(ndlp_fdmi))
6865 ndlp_fdmi = lpfc_enable_node(vport,
6866 ndlp_fdmi,
6867 NLP_STE_NPR_NODE);
6868
James Smart92d7f7b2007-06-17 19:56:38 -05006869 if (ndlp_fdmi) {
James Smart58da1ff2008-04-07 10:15:56 -04006870 lpfc_nlp_set_state(vport, ndlp_fdmi,
James Smart63e801c2010-11-20 23:14:19 -05006871 NLP_STE_PLOGI_ISSUE);
6872 lpfc_issue_els_plogi(vport, ndlp_fdmi->nlp_DID, 0);
James Smart92d7f7b2007-06-17 19:56:38 -05006873 }
6874 }
James Smart92d7f7b2007-06-17 19:56:38 -05006875}
6876
James Smarte59058c2008-08-24 21:49:00 -04006877/**
James Smart3621a712009-04-06 18:47:14 -04006878 * lpfc_cmpl_reg_new_vport - Completion callback function to register new vport
James Smarte59058c2008-08-24 21:49:00 -04006879 * @phba: pointer to lpfc hba data structure.
6880 * @pmb: pointer to the driver internal queue element for mailbox command.
6881 *
6882 * This routine is the completion callback function to register new vport
6883 * mailbox command. If the new vport mailbox command completes successfully,
6884 * the fabric registration login shall be performed on physical port (the
6885 * new vport created is actually a physical port, with VPI 0) or the port
6886 * login to Name Server for State Change Request (SCR) will be performed
6887 * on virtual port (real virtual port, with VPI greater than 0).
6888 **/
James Smart92d7f7b2007-06-17 19:56:38 -05006889static void
6890lpfc_cmpl_reg_new_vport(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
6891{
6892 struct lpfc_vport *vport = pmb->vport;
6893 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
6894 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) pmb->context2;
James Smart04c68492009-05-22 14:52:52 -04006895 MAILBOX_t *mb = &pmb->u.mb;
James Smart695a8142010-01-26 23:08:03 -05006896 int rc;
James Smart92d7f7b2007-06-17 19:56:38 -05006897
James Smart09372822008-01-11 01:52:54 -05006898 spin_lock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05006899 vport->fc_flag &= ~FC_VPORT_NEEDS_REG_VPI;
James Smart09372822008-01-11 01:52:54 -05006900 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05006901
6902 if (mb->mbxStatus) {
James Smarte8b62012007-08-02 11:10:09 -04006903 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
James Smart38b92ef2010-08-04 16:11:39 -04006904 "0915 Register VPI failed : Status: x%x"
6905 " upd bit: x%x \n", mb->mbxStatus,
6906 mb->un.varRegVpi.upd);
6907 if (phba->sli_rev == LPFC_SLI_REV4 &&
6908 mb->un.varRegVpi.upd)
6909 goto mbox_err_exit ;
James Smart92d7f7b2007-06-17 19:56:38 -05006910
6911 switch (mb->mbxStatus) {
6912 case 0x11: /* unsupported feature */
6913 case 0x9603: /* max_vpi exceeded */
James Smart7f5f3d02008-02-08 18:50:14 -05006914 case 0x9602: /* Link event since CLEAR_LA */
James Smart92d7f7b2007-06-17 19:56:38 -05006915 /* giving up on vport registration */
6916 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
6917 spin_lock_irq(shost->host_lock);
6918 vport->fc_flag &= ~(FC_FABRIC | FC_PUBLIC_LOOP);
6919 spin_unlock_irq(shost->host_lock);
6920 lpfc_can_disctmo(vport);
6921 break;
James Smart695a8142010-01-26 23:08:03 -05006922 /* If reg_vpi fail with invalid VPI status, re-init VPI */
6923 case 0x20:
6924 spin_lock_irq(shost->host_lock);
6925 vport->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
6926 spin_unlock_irq(shost->host_lock);
6927 lpfc_init_vpi(phba, pmb, vport->vpi);
6928 pmb->vport = vport;
6929 pmb->mbox_cmpl = lpfc_init_vpi_cmpl;
6930 rc = lpfc_sli_issue_mbox(phba, pmb,
6931 MBX_NOWAIT);
6932 if (rc == MBX_NOT_FINISHED) {
6933 lpfc_printf_vlog(vport,
6934 KERN_ERR, LOG_MBOX,
6935 "2732 Failed to issue INIT_VPI"
6936 " mailbox command\n");
6937 } else {
6938 lpfc_nlp_put(ndlp);
6939 return;
6940 }
6941
James Smart92d7f7b2007-06-17 19:56:38 -05006942 default:
6943 /* Try to recover from this error */
James Smart5af5eee2010-10-22 11:06:38 -04006944 if (phba->sli_rev == LPFC_SLI_REV4)
6945 lpfc_sli4_unreg_all_rpis(vport);
James Smart92d7f7b2007-06-17 19:56:38 -05006946 lpfc_mbx_unreg_vpi(vport);
James Smart09372822008-01-11 01:52:54 -05006947 spin_lock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05006948 vport->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
James Smart09372822008-01-11 01:52:54 -05006949 spin_unlock_irq(shost->host_lock);
James Smart4b40c592010-03-15 11:25:44 -04006950 if (vport->port_type == LPFC_PHYSICAL_PORT
6951 && !(vport->fc_flag & FC_LOGO_RCVD_DID_CHNG))
James Smart76a95d72010-11-20 23:11:48 -05006952 lpfc_issue_init_vfi(vport);
James Smart7f5f3d02008-02-08 18:50:14 -05006953 else
6954 lpfc_initial_fdisc(vport);
James Smart92d7f7b2007-06-17 19:56:38 -05006955 break;
6956 }
James Smart92d7f7b2007-06-17 19:56:38 -05006957 } else {
James Smart695a8142010-01-26 23:08:03 -05006958 spin_lock_irq(shost->host_lock);
James Smart19878072009-12-21 17:02:00 -05006959 vport->vpi_state |= LPFC_VPI_REGISTERED;
James Smart695a8142010-01-26 23:08:03 -05006960 spin_unlock_irq(shost->host_lock);
6961 if (vport == phba->pport) {
James Smart6fb120a2009-05-22 14:52:59 -04006962 if (phba->sli_rev < LPFC_SLI_REV4)
6963 lpfc_issue_fabric_reglogin(vport);
James Smart695a8142010-01-26 23:08:03 -05006964 else {
James Smartfc2b9892010-02-26 14:15:29 -05006965 /*
6966 * If the physical port is instantiated using
6967 * FDISC, do not start vport discovery.
6968 */
6969 if (vport->port_state != LPFC_FDISC)
6970 lpfc_start_fdiscs(phba);
James Smart695a8142010-01-26 23:08:03 -05006971 lpfc_do_scr_ns_plogi(phba, vport);
6972 }
6973 } else
James Smart92d7f7b2007-06-17 19:56:38 -05006974 lpfc_do_scr_ns_plogi(phba, vport);
6975 }
James Smart38b92ef2010-08-04 16:11:39 -04006976mbox_err_exit:
James Smartfa4066b2008-01-11 01:53:27 -05006977 /* Now, we decrement the ndlp reference count held for this
6978 * callback function
6979 */
6980 lpfc_nlp_put(ndlp);
6981
James Smart92d7f7b2007-06-17 19:56:38 -05006982 mempool_free(pmb, phba->mbox_mem_pool);
6983 return;
6984}
6985
James Smarte59058c2008-08-24 21:49:00 -04006986/**
James Smart3621a712009-04-06 18:47:14 -04006987 * lpfc_register_new_vport - Register a new vport with a HBA
James Smarte59058c2008-08-24 21:49:00 -04006988 * @phba: pointer to lpfc hba data structure.
6989 * @vport: pointer to a host virtual N_Port data structure.
6990 * @ndlp: pointer to a node-list data structure.
6991 *
6992 * This routine registers the @vport as a new virtual port with a HBA.
6993 * It is done through a registering vpi mailbox command.
6994 **/
James Smart695a8142010-01-26 23:08:03 -05006995void
James Smart92d7f7b2007-06-17 19:56:38 -05006996lpfc_register_new_vport(struct lpfc_hba *phba, struct lpfc_vport *vport,
6997 struct lpfc_nodelist *ndlp)
6998{
James Smart09372822008-01-11 01:52:54 -05006999 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart92d7f7b2007-06-17 19:56:38 -05007000 LPFC_MBOXQ_t *mbox;
7001
7002 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
7003 if (mbox) {
James Smart6fb120a2009-05-22 14:52:59 -04007004 lpfc_reg_vpi(vport, mbox);
James Smart92d7f7b2007-06-17 19:56:38 -05007005 mbox->vport = vport;
7006 mbox->context2 = lpfc_nlp_get(ndlp);
7007 mbox->mbox_cmpl = lpfc_cmpl_reg_new_vport;
James Smart0b727fe2007-10-27 13:37:25 -04007008 if (lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT)
James Smart92d7f7b2007-06-17 19:56:38 -05007009 == MBX_NOT_FINISHED) {
James Smartfa4066b2008-01-11 01:53:27 -05007010 /* mailbox command not success, decrement ndlp
7011 * reference count for this command
7012 */
7013 lpfc_nlp_put(ndlp);
James Smart92d7f7b2007-06-17 19:56:38 -05007014 mempool_free(mbox, phba->mbox_mem_pool);
James Smart92d7f7b2007-06-17 19:56:38 -05007015
James Smarte8b62012007-08-02 11:10:09 -04007016 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
7017 "0253 Register VPI: Can't send mbox\n");
James Smartfa4066b2008-01-11 01:53:27 -05007018 goto mbox_err_exit;
James Smart92d7f7b2007-06-17 19:56:38 -05007019 }
7020 } else {
James Smarte8b62012007-08-02 11:10:09 -04007021 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
7022 "0254 Register VPI: no memory\n");
James Smartfa4066b2008-01-11 01:53:27 -05007023 goto mbox_err_exit;
James Smart92d7f7b2007-06-17 19:56:38 -05007024 }
James Smartfa4066b2008-01-11 01:53:27 -05007025 return;
7026
7027mbox_err_exit:
7028 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
7029 spin_lock_irq(shost->host_lock);
7030 vport->fc_flag &= ~FC_VPORT_NEEDS_REG_VPI;
7031 spin_unlock_irq(shost->host_lock);
7032 return;
James Smart92d7f7b2007-06-17 19:56:38 -05007033}
7034
James Smarte59058c2008-08-24 21:49:00 -04007035/**
James Smart0c9ab6f2010-02-26 14:15:57 -05007036 * lpfc_cancel_all_vport_retry_delay_timer - Cancel all vport retry delay timer
James Smart695a8142010-01-26 23:08:03 -05007037 * @phba: pointer to lpfc hba data structure.
7038 *
James Smart0c9ab6f2010-02-26 14:15:57 -05007039 * This routine cancels the retry delay timers to all the vports.
James Smart695a8142010-01-26 23:08:03 -05007040 **/
7041void
James Smart0c9ab6f2010-02-26 14:15:57 -05007042lpfc_cancel_all_vport_retry_delay_timer(struct lpfc_hba *phba)
James Smart695a8142010-01-26 23:08:03 -05007043{
7044 struct lpfc_vport **vports;
7045 struct lpfc_nodelist *ndlp;
James Smart695a8142010-01-26 23:08:03 -05007046 uint32_t link_state;
James Smart0c9ab6f2010-02-26 14:15:57 -05007047 int i;
James Smart695a8142010-01-26 23:08:03 -05007048
7049 /* Treat this failure as linkdown for all vports */
7050 link_state = phba->link_state;
7051 lpfc_linkdown(phba);
7052 phba->link_state = link_state;
7053
7054 vports = lpfc_create_vport_work_array(phba);
7055
7056 if (vports) {
7057 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
7058 ndlp = lpfc_findnode_did(vports[i], Fabric_DID);
7059 if (ndlp)
7060 lpfc_cancel_retry_delay_tmo(vports[i], ndlp);
7061 lpfc_els_flush_cmd(vports[i]);
7062 }
7063 lpfc_destroy_vport_work_array(phba, vports);
7064 }
James Smart0c9ab6f2010-02-26 14:15:57 -05007065}
7066
7067/**
7068 * lpfc_retry_pport_discovery - Start timer to retry FLOGI.
7069 * @phba: pointer to lpfc hba data structure.
7070 *
7071 * This routine abort all pending discovery commands and
7072 * start a timer to retry FLOGI for the physical port
7073 * discovery.
7074 **/
7075void
7076lpfc_retry_pport_discovery(struct lpfc_hba *phba)
7077{
7078 struct lpfc_nodelist *ndlp;
7079 struct Scsi_Host *shost;
7080
7081 /* Cancel the all vports retry delay retry timers */
7082 lpfc_cancel_all_vport_retry_delay_timer(phba);
James Smart695a8142010-01-26 23:08:03 -05007083
7084 /* If fabric require FLOGI, then re-instantiate physical login */
7085 ndlp = lpfc_findnode_did(phba->pport, Fabric_DID);
7086 if (!ndlp)
7087 return;
7088
James Smart695a8142010-01-26 23:08:03 -05007089 shost = lpfc_shost_from_vport(phba->pport);
7090 mod_timer(&ndlp->nlp_delayfunc, jiffies + HZ);
7091 spin_lock_irq(shost->host_lock);
7092 ndlp->nlp_flag |= NLP_DELAY_TMO;
7093 spin_unlock_irq(shost->host_lock);
7094 ndlp->nlp_last_elscmd = ELS_CMD_FLOGI;
7095 phba->pport->port_state = LPFC_FLOGI;
7096 return;
7097}
7098
7099/**
7100 * lpfc_fabric_login_reqd - Check if FLOGI required.
7101 * @phba: pointer to lpfc hba data structure.
7102 * @cmdiocb: pointer to FDISC command iocb.
7103 * @rspiocb: pointer to FDISC response iocb.
7104 *
7105 * This routine checks if a FLOGI is reguired for FDISC
7106 * to succeed.
7107 **/
7108static int
7109lpfc_fabric_login_reqd(struct lpfc_hba *phba,
7110 struct lpfc_iocbq *cmdiocb,
7111 struct lpfc_iocbq *rspiocb)
7112{
7113
7114 if ((rspiocb->iocb.ulpStatus != IOSTAT_FABRIC_RJT) ||
7115 (rspiocb->iocb.un.ulpWord[4] != RJT_LOGIN_REQUIRED))
7116 return 0;
7117 else
7118 return 1;
7119}
7120
7121/**
James Smart3621a712009-04-06 18:47:14 -04007122 * lpfc_cmpl_els_fdisc - Completion function for fdisc iocb command
James Smarte59058c2008-08-24 21:49:00 -04007123 * @phba: pointer to lpfc hba data structure.
7124 * @cmdiocb: pointer to lpfc command iocb data structure.
7125 * @rspiocb: pointer to lpfc response iocb data structure.
7126 *
7127 * This routine is the completion callback function to a Fabric Discover
7128 * (FDISC) ELS command. Since all the FDISC ELS commands are issued
7129 * single threaded, each FDISC completion callback function will reset
7130 * the discovery timer for all vports such that the timers will not get
7131 * unnecessary timeout. The function checks the FDISC IOCB status. If error
7132 * detected, the vport will be set to FC_VPORT_FAILED state. Otherwise,the
7133 * vport will set to FC_VPORT_ACTIVE state. It then checks whether the DID
7134 * assigned to the vport has been changed with the completion of the FDISC
7135 * command. If so, both RPI (Remote Port Index) and VPI (Virtual Port Index)
7136 * are unregistered from the HBA, and then the lpfc_register_new_vport()
7137 * routine is invoked to register new vport with the HBA. Otherwise, the
7138 * lpfc_do_scr_ns_plogi() routine is invoked to issue a PLOGI to the Name
7139 * Server for State Change Request (SCR).
7140 **/
James Smart92d7f7b2007-06-17 19:56:38 -05007141static void
7142lpfc_cmpl_els_fdisc(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
7143 struct lpfc_iocbq *rspiocb)
7144{
7145 struct lpfc_vport *vport = cmdiocb->vport;
7146 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
7147 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
7148 struct lpfc_nodelist *np;
7149 struct lpfc_nodelist *next_np;
7150 IOCB_t *irsp = &rspiocb->iocb;
7151 struct lpfc_iocbq *piocb;
James Smart92494142011-02-16 12:39:44 -05007152 struct lpfc_dmabuf *pcmd = cmdiocb->context2, *prsp;
7153 struct serv_parm *sp;
7154 uint8_t fabric_param_changed;
James Smart92d7f7b2007-06-17 19:56:38 -05007155
James Smarte8b62012007-08-02 11:10:09 -04007156 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
7157 "0123 FDISC completes. x%x/x%x prevDID: x%x\n",
7158 irsp->ulpStatus, irsp->un.ulpWord[4],
7159 vport->fc_prevDID);
James Smart92d7f7b2007-06-17 19:56:38 -05007160 /* Since all FDISCs are being single threaded, we
7161 * must reset the discovery timer for ALL vports
7162 * waiting to send FDISC when one completes.
7163 */
7164 list_for_each_entry(piocb, &phba->fabric_iocb_list, list) {
7165 lpfc_set_disctmo(piocb->vport);
7166 }
7167
James Smart858c9f62007-06-17 19:56:39 -05007168 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
7169 "FDISC cmpl: status:x%x/x%x prevdid:x%x",
7170 irsp->ulpStatus, irsp->un.ulpWord[4], vport->fc_prevDID);
7171
James Smart92d7f7b2007-06-17 19:56:38 -05007172 if (irsp->ulpStatus) {
James Smart695a8142010-01-26 23:08:03 -05007173
7174 if (lpfc_fabric_login_reqd(phba, cmdiocb, rspiocb)) {
7175 lpfc_retry_pport_discovery(phba);
7176 goto out;
7177 }
7178
James Smart92d7f7b2007-06-17 19:56:38 -05007179 /* Check for retry */
7180 if (lpfc_els_retry(phba, cmdiocb, rspiocb))
7181 goto out;
James Smart92d7f7b2007-06-17 19:56:38 -05007182 /* FDISC failed */
James Smarte8b62012007-08-02 11:10:09 -04007183 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
James Smart6b5151f2012-01-18 16:24:06 -05007184 "0126 FDISC failed. (x%x/x%x)\n",
James Smarte8b62012007-08-02 11:10:09 -04007185 irsp->ulpStatus, irsp->un.ulpWord[4]);
James Smartd7c255b2008-08-24 21:50:00 -04007186 goto fdisc_failed;
7187 }
James Smartd7c255b2008-08-24 21:50:00 -04007188 spin_lock_irq(shost->host_lock);
James Smart695a8142010-01-26 23:08:03 -05007189 vport->fc_flag &= ~FC_VPORT_CVL_RCVD;
James Smart4b40c592010-03-15 11:25:44 -04007190 vport->fc_flag &= ~FC_VPORT_LOGO_RCVD;
James Smartd7c255b2008-08-24 21:50:00 -04007191 vport->fc_flag |= FC_FABRIC;
James Smart76a95d72010-11-20 23:11:48 -05007192 if (vport->phba->fc_topology == LPFC_TOPOLOGY_LOOP)
James Smartd7c255b2008-08-24 21:50:00 -04007193 vport->fc_flag |= FC_PUBLIC_LOOP;
7194 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05007195
James Smartd7c255b2008-08-24 21:50:00 -04007196 vport->fc_myDID = irsp->un.ulpWord[4] & Mask_DID;
7197 lpfc_vport_set_state(vport, FC_VPORT_ACTIVE);
James Smart92494142011-02-16 12:39:44 -05007198 prsp = list_get_first(&pcmd->list, struct lpfc_dmabuf, list);
7199 sp = prsp->virt + sizeof(uint32_t);
7200 fabric_param_changed = lpfc_check_clean_addr_bit(vport, sp);
7201 memcpy(&vport->fabric_portname, &sp->portName,
7202 sizeof(struct lpfc_name));
7203 memcpy(&vport->fabric_nodename, &sp->nodeName,
7204 sizeof(struct lpfc_name));
7205 if (fabric_param_changed &&
James Smartd7c255b2008-08-24 21:50:00 -04007206 !(vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)) {
7207 /* If our NportID changed, we need to ensure all
7208 * remaining NPORTs get unreg_login'ed so we can
7209 * issue unreg_vpi.
7210 */
7211 list_for_each_entry_safe(np, next_np,
7212 &vport->fc_nodes, nlp_listp) {
7213 if (!NLP_CHK_NODE_ACT(ndlp) ||
7214 (np->nlp_state != NLP_STE_NPR_NODE) ||
7215 !(np->nlp_flag & NLP_NPR_ADISC))
7216 continue;
James Smart09372822008-01-11 01:52:54 -05007217 spin_lock_irq(shost->host_lock);
James Smartd7c255b2008-08-24 21:50:00 -04007218 np->nlp_flag &= ~NLP_NPR_ADISC;
James Smart09372822008-01-11 01:52:54 -05007219 spin_unlock_irq(shost->host_lock);
James Smartd7c255b2008-08-24 21:50:00 -04007220 lpfc_unreg_rpi(vport, np);
James Smart92d7f7b2007-06-17 19:56:38 -05007221 }
James Smart78730cf2010-04-06 15:06:30 -04007222 lpfc_cleanup_pending_mbox(vport);
James Smart5af5eee2010-10-22 11:06:38 -04007223
7224 if (phba->sli_rev == LPFC_SLI_REV4)
7225 lpfc_sli4_unreg_all_rpis(vport);
7226
James Smartd7c255b2008-08-24 21:50:00 -04007227 lpfc_mbx_unreg_vpi(vport);
7228 spin_lock_irq(shost->host_lock);
7229 vport->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
James Smart0f65ff62010-02-26 14:14:23 -05007230 if (phba->sli_rev == LPFC_SLI_REV4)
7231 vport->fc_flag |= FC_VPORT_NEEDS_INIT_VPI;
James Smart4b40c592010-03-15 11:25:44 -04007232 else
7233 vport->fc_flag |= FC_LOGO_RCVD_DID_CHNG;
James Smartd7c255b2008-08-24 21:50:00 -04007234 spin_unlock_irq(shost->host_lock);
James Smart38b92ef2010-08-04 16:11:39 -04007235 } else if ((phba->sli_rev == LPFC_SLI_REV4) &&
7236 !(vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)) {
7237 /*
7238 * Driver needs to re-reg VPI in order for f/w
7239 * to update the MAC address.
7240 */
7241 lpfc_register_new_vport(phba, vport, ndlp);
James Smart5ac6b302010-10-22 11:05:36 -04007242 goto out;
James Smart92d7f7b2007-06-17 19:56:38 -05007243 }
7244
James Smartecfd03c2010-02-12 14:41:27 -05007245 if (vport->fc_flag & FC_VPORT_NEEDS_INIT_VPI)
7246 lpfc_issue_init_vpi(vport);
7247 else if (vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)
James Smartd7c255b2008-08-24 21:50:00 -04007248 lpfc_register_new_vport(phba, vport, ndlp);
7249 else
7250 lpfc_do_scr_ns_plogi(phba, vport);
7251 goto out;
7252fdisc_failed:
7253 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
7254 /* Cancel discovery timer */
7255 lpfc_can_disctmo(vport);
7256 lpfc_nlp_put(ndlp);
James Smart92d7f7b2007-06-17 19:56:38 -05007257out:
7258 lpfc_els_free_iocb(phba, cmdiocb);
7259}
7260
James Smarte59058c2008-08-24 21:49:00 -04007261/**
James Smart3621a712009-04-06 18:47:14 -04007262 * lpfc_issue_els_fdisc - Issue a fdisc iocb command
James Smarte59058c2008-08-24 21:49:00 -04007263 * @vport: pointer to a virtual N_Port data structure.
7264 * @ndlp: pointer to a node-list data structure.
7265 * @retry: number of retries to the command IOCB.
7266 *
7267 * This routine prepares and issues a Fabric Discover (FDISC) IOCB to
7268 * a remote node (@ndlp) off a @vport. It uses the lpfc_issue_fabric_iocb()
7269 * routine to issue the IOCB, which makes sure only one outstanding fabric
7270 * IOCB will be sent off HBA at any given time.
7271 *
7272 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
7273 * will be incremented by 1 for holding the ndlp and the reference to ndlp
7274 * will be stored into the context1 field of the IOCB for the completion
7275 * callback function to the FDISC ELS command.
7276 *
7277 * Return code
7278 * 0 - Successfully issued fdisc iocb command
7279 * 1 - Failed to issue fdisc iocb command
7280 **/
Adrian Bunka6ababd2007-11-05 18:07:33 +01007281static int
James Smart92d7f7b2007-06-17 19:56:38 -05007282lpfc_issue_els_fdisc(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
7283 uint8_t retry)
7284{
7285 struct lpfc_hba *phba = vport->phba;
7286 IOCB_t *icmd;
7287 struct lpfc_iocbq *elsiocb;
7288 struct serv_parm *sp;
7289 uint8_t *pcmd;
7290 uint16_t cmdsize;
7291 int did = ndlp->nlp_DID;
7292 int rc;
James Smart92d7f7b2007-06-17 19:56:38 -05007293
James Smart5ffc2662009-11-18 15:39:44 -05007294 vport->port_state = LPFC_FDISC;
James Smart6b5151f2012-01-18 16:24:06 -05007295 vport->fc_myDID = 0;
James Smart92d7f7b2007-06-17 19:56:38 -05007296 cmdsize = (sizeof(uint32_t) + sizeof(struct serv_parm));
7297 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp, did,
7298 ELS_CMD_FDISC);
7299 if (!elsiocb) {
James Smart92d7f7b2007-06-17 19:56:38 -05007300 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
James Smarte8b62012007-08-02 11:10:09 -04007301 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
7302 "0255 Issue FDISC: no IOCB\n");
James Smart92d7f7b2007-06-17 19:56:38 -05007303 return 1;
7304 }
7305
7306 icmd = &elsiocb->iocb;
7307 icmd->un.elsreq64.myID = 0;
7308 icmd->un.elsreq64.fl = 1;
7309
James Smart73d91e52011-10-10 21:32:10 -04007310 /*
7311 * SLI3 ports require a different context type value than SLI4.
7312 * Catch SLI3 ports here and override the prep.
7313 */
7314 if (phba->sli_rev == LPFC_SLI_REV3) {
James Smartf1126682009-06-10 17:22:44 -04007315 icmd->ulpCt_h = 1;
7316 icmd->ulpCt_l = 0;
7317 }
James Smart92d7f7b2007-06-17 19:56:38 -05007318
7319 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
7320 *((uint32_t *) (pcmd)) = ELS_CMD_FDISC;
7321 pcmd += sizeof(uint32_t); /* CSP Word 1 */
7322 memcpy(pcmd, &vport->phba->pport->fc_sparam, sizeof(struct serv_parm));
7323 sp = (struct serv_parm *) pcmd;
7324 /* Setup CSPs accordingly for Fabric */
7325 sp->cmn.e_d_tov = 0;
7326 sp->cmn.w2.r_a_tov = 0;
James Smartdf9e1b52011-12-13 13:22:17 -05007327 sp->cmn.virtual_fabric_support = 0;
James Smart92d7f7b2007-06-17 19:56:38 -05007328 sp->cls1.classValid = 0;
7329 sp->cls2.seqDelivery = 1;
7330 sp->cls3.seqDelivery = 1;
7331
7332 pcmd += sizeof(uint32_t); /* CSP Word 2 */
7333 pcmd += sizeof(uint32_t); /* CSP Word 3 */
7334 pcmd += sizeof(uint32_t); /* CSP Word 4 */
7335 pcmd += sizeof(uint32_t); /* Port Name */
7336 memcpy(pcmd, &vport->fc_portname, 8);
7337 pcmd += sizeof(uint32_t); /* Node Name */
7338 pcmd += sizeof(uint32_t); /* Node Name */
7339 memcpy(pcmd, &vport->fc_nodename, 8);
7340
7341 lpfc_set_disctmo(vport);
7342
7343 phba->fc_stat.elsXmitFDISC++;
7344 elsiocb->iocb_cmpl = lpfc_cmpl_els_fdisc;
7345
James Smart858c9f62007-06-17 19:56:39 -05007346 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
7347 "Issue FDISC: did:x%x",
7348 did, 0, 0);
7349
James Smart92d7f7b2007-06-17 19:56:38 -05007350 rc = lpfc_issue_fabric_iocb(phba, elsiocb);
7351 if (rc == IOCB_ERROR) {
7352 lpfc_els_free_iocb(phba, elsiocb);
James Smart92d7f7b2007-06-17 19:56:38 -05007353 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
James Smarte8b62012007-08-02 11:10:09 -04007354 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
7355 "0256 Issue FDISC: Cannot send IOCB\n");
James Smart92d7f7b2007-06-17 19:56:38 -05007356 return 1;
7357 }
7358 lpfc_vport_set_state(vport, FC_VPORT_INITIALIZING);
James Smart92d7f7b2007-06-17 19:56:38 -05007359 return 0;
7360}
7361
James Smarte59058c2008-08-24 21:49:00 -04007362/**
James Smart3621a712009-04-06 18:47:14 -04007363 * lpfc_cmpl_els_npiv_logo - Completion function with vport logo
James Smarte59058c2008-08-24 21:49:00 -04007364 * @phba: pointer to lpfc hba data structure.
7365 * @cmdiocb: pointer to lpfc command iocb data structure.
7366 * @rspiocb: pointer to lpfc response iocb data structure.
7367 *
7368 * This routine is the completion callback function to the issuing of a LOGO
7369 * ELS command off a vport. It frees the command IOCB and then decrement the
7370 * reference count held on ndlp for this completion function, indicating that
7371 * the reference to the ndlp is no long needed. Note that the
7372 * lpfc_els_free_iocb() routine decrements the ndlp reference held for this
7373 * callback function and an additional explicit ndlp reference decrementation
7374 * will trigger the actual release of the ndlp.
7375 **/
James Smart92d7f7b2007-06-17 19:56:38 -05007376static void
7377lpfc_cmpl_els_npiv_logo(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
7378 struct lpfc_iocbq *rspiocb)
7379{
7380 struct lpfc_vport *vport = cmdiocb->vport;
James Smart858c9f62007-06-17 19:56:39 -05007381 IOCB_t *irsp;
James Smarte47c9092008-02-08 18:49:26 -05007382 struct lpfc_nodelist *ndlp;
James Smart9589b0622011-04-16 11:03:17 -04007383 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart858c9f62007-06-17 19:56:39 -05007384
James Smart9589b0622011-04-16 11:03:17 -04007385 ndlp = (struct lpfc_nodelist *)cmdiocb->context1;
James Smart858c9f62007-06-17 19:56:39 -05007386 irsp = &rspiocb->iocb;
7387 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
7388 "LOGO npiv cmpl: status:x%x/x%x did:x%x",
7389 irsp->ulpStatus, irsp->un.ulpWord[4], irsp->un.rcvels.remoteID);
James Smart92d7f7b2007-06-17 19:56:38 -05007390
7391 lpfc_els_free_iocb(phba, cmdiocb);
7392 vport->unreg_vpi_cmpl = VPORT_ERROR;
James Smarte47c9092008-02-08 18:49:26 -05007393
7394 /* Trigger the release of the ndlp after logo */
7395 lpfc_nlp_put(ndlp);
James Smart9589b0622011-04-16 11:03:17 -04007396
7397 /* NPIV LOGO completes to NPort <nlp_DID> */
7398 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
7399 "2928 NPIV LOGO completes to NPort x%x "
7400 "Data: x%x x%x x%x x%x\n",
7401 ndlp->nlp_DID, irsp->ulpStatus, irsp->un.ulpWord[4],
7402 irsp->ulpTimeout, vport->num_disc_nodes);
7403
7404 if (irsp->ulpStatus == IOSTAT_SUCCESS) {
7405 spin_lock_irq(shost->host_lock);
7406 vport->fc_flag &= ~FC_FABRIC;
7407 spin_unlock_irq(shost->host_lock);
7408 }
James Smart92d7f7b2007-06-17 19:56:38 -05007409}
7410
James Smarte59058c2008-08-24 21:49:00 -04007411/**
James Smart3621a712009-04-06 18:47:14 -04007412 * lpfc_issue_els_npiv_logo - Issue a logo off a vport
James Smarte59058c2008-08-24 21:49:00 -04007413 * @vport: pointer to a virtual N_Port data structure.
7414 * @ndlp: pointer to a node-list data structure.
7415 *
7416 * This routine issues a LOGO ELS command to an @ndlp off a @vport.
7417 *
7418 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
7419 * will be incremented by 1 for holding the ndlp and the reference to ndlp
7420 * will be stored into the context1 field of the IOCB for the completion
7421 * callback function to the LOGO ELS command.
7422 *
7423 * Return codes
7424 * 0 - Successfully issued logo off the @vport
7425 * 1 - Failed to issue logo off the @vport
7426 **/
James Smart92d7f7b2007-06-17 19:56:38 -05007427int
7428lpfc_issue_els_npiv_logo(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
7429{
7430 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
7431 struct lpfc_hba *phba = vport->phba;
James Smart92d7f7b2007-06-17 19:56:38 -05007432 IOCB_t *icmd;
7433 struct lpfc_iocbq *elsiocb;
7434 uint8_t *pcmd;
7435 uint16_t cmdsize;
7436
7437 cmdsize = 2 * sizeof(uint32_t) + sizeof(struct lpfc_name);
7438 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, 0, ndlp, ndlp->nlp_DID,
7439 ELS_CMD_LOGO);
7440 if (!elsiocb)
7441 return 1;
7442
7443 icmd = &elsiocb->iocb;
7444 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
7445 *((uint32_t *) (pcmd)) = ELS_CMD_LOGO;
7446 pcmd += sizeof(uint32_t);
7447
7448 /* Fill in LOGO payload */
7449 *((uint32_t *) (pcmd)) = be32_to_cpu(vport->fc_myDID);
7450 pcmd += sizeof(uint32_t);
7451 memcpy(pcmd, &vport->fc_portname, sizeof(struct lpfc_name));
7452
James Smart858c9f62007-06-17 19:56:39 -05007453 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
7454 "Issue LOGO npiv did:x%x flg:x%x",
7455 ndlp->nlp_DID, ndlp->nlp_flag, 0);
7456
James Smart92d7f7b2007-06-17 19:56:38 -05007457 elsiocb->iocb_cmpl = lpfc_cmpl_els_npiv_logo;
7458 spin_lock_irq(shost->host_lock);
7459 ndlp->nlp_flag |= NLP_LOGO_SND;
7460 spin_unlock_irq(shost->host_lock);
James Smart3772a992009-05-22 14:50:54 -04007461 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) ==
7462 IOCB_ERROR) {
James Smart92d7f7b2007-06-17 19:56:38 -05007463 spin_lock_irq(shost->host_lock);
7464 ndlp->nlp_flag &= ~NLP_LOGO_SND;
7465 spin_unlock_irq(shost->host_lock);
7466 lpfc_els_free_iocb(phba, elsiocb);
7467 return 1;
7468 }
7469 return 0;
7470}
7471
James Smarte59058c2008-08-24 21:49:00 -04007472/**
James Smart3621a712009-04-06 18:47:14 -04007473 * lpfc_fabric_block_timeout - Handler function to the fabric block timer
James Smarte59058c2008-08-24 21:49:00 -04007474 * @ptr: holder for the timer function associated data.
7475 *
7476 * This routine is invoked by the fabric iocb block timer after
7477 * timeout. It posts the fabric iocb block timeout event by setting the
7478 * WORKER_FABRIC_BLOCK_TMO bit to work port event bitmap and then invokes
7479 * lpfc_worker_wake_up() routine to wake up the worker thread. It is for
7480 * the worker thread to invoke the lpfc_unblock_fabric_iocbs() on the
7481 * posted event WORKER_FABRIC_BLOCK_TMO.
7482 **/
James Smart92d7f7b2007-06-17 19:56:38 -05007483void
7484lpfc_fabric_block_timeout(unsigned long ptr)
7485{
7486 struct lpfc_hba *phba = (struct lpfc_hba *) ptr;
7487 unsigned long iflags;
7488 uint32_t tmo_posted;
James Smart5e9d9b82008-06-14 22:52:53 -04007489
James Smart92d7f7b2007-06-17 19:56:38 -05007490 spin_lock_irqsave(&phba->pport->work_port_lock, iflags);
7491 tmo_posted = phba->pport->work_port_events & WORKER_FABRIC_BLOCK_TMO;
7492 if (!tmo_posted)
7493 phba->pport->work_port_events |= WORKER_FABRIC_BLOCK_TMO;
7494 spin_unlock_irqrestore(&phba->pport->work_port_lock, iflags);
7495
James Smart5e9d9b82008-06-14 22:52:53 -04007496 if (!tmo_posted)
7497 lpfc_worker_wake_up(phba);
7498 return;
James Smart92d7f7b2007-06-17 19:56:38 -05007499}
7500
James Smarte59058c2008-08-24 21:49:00 -04007501/**
James Smart3621a712009-04-06 18:47:14 -04007502 * lpfc_resume_fabric_iocbs - Issue a fabric iocb from driver internal list
James Smarte59058c2008-08-24 21:49:00 -04007503 * @phba: pointer to lpfc hba data structure.
7504 *
7505 * This routine issues one fabric iocb from the driver internal list to
7506 * the HBA. It first checks whether it's ready to issue one fabric iocb to
7507 * the HBA (whether there is no outstanding fabric iocb). If so, it shall
7508 * remove one pending fabric iocb from the driver internal list and invokes
7509 * lpfc_sli_issue_iocb() routine to send the fabric iocb to the HBA.
7510 **/
James Smart92d7f7b2007-06-17 19:56:38 -05007511static void
7512lpfc_resume_fabric_iocbs(struct lpfc_hba *phba)
7513{
7514 struct lpfc_iocbq *iocb;
7515 unsigned long iflags;
7516 int ret;
James Smart92d7f7b2007-06-17 19:56:38 -05007517 IOCB_t *cmd;
7518
7519repeat:
7520 iocb = NULL;
7521 spin_lock_irqsave(&phba->hbalock, iflags);
James Smart7f5f3d02008-02-08 18:50:14 -05007522 /* Post any pending iocb to the SLI layer */
James Smart92d7f7b2007-06-17 19:56:38 -05007523 if (atomic_read(&phba->fabric_iocb_count) == 0) {
7524 list_remove_head(&phba->fabric_iocb_list, iocb, typeof(*iocb),
7525 list);
7526 if (iocb)
James Smart7f5f3d02008-02-08 18:50:14 -05007527 /* Increment fabric iocb count to hold the position */
James Smart92d7f7b2007-06-17 19:56:38 -05007528 atomic_inc(&phba->fabric_iocb_count);
7529 }
7530 spin_unlock_irqrestore(&phba->hbalock, iflags);
7531 if (iocb) {
7532 iocb->fabric_iocb_cmpl = iocb->iocb_cmpl;
7533 iocb->iocb_cmpl = lpfc_cmpl_fabric_iocb;
7534 iocb->iocb_flag |= LPFC_IO_FABRIC;
7535
James Smart858c9f62007-06-17 19:56:39 -05007536 lpfc_debugfs_disc_trc(iocb->vport, LPFC_DISC_TRC_ELS_CMD,
7537 "Fabric sched1: ste:x%x",
7538 iocb->vport->port_state, 0, 0);
7539
James Smart3772a992009-05-22 14:50:54 -04007540 ret = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, iocb, 0);
James Smart92d7f7b2007-06-17 19:56:38 -05007541
7542 if (ret == IOCB_ERROR) {
7543 iocb->iocb_cmpl = iocb->fabric_iocb_cmpl;
7544 iocb->fabric_iocb_cmpl = NULL;
7545 iocb->iocb_flag &= ~LPFC_IO_FABRIC;
7546 cmd = &iocb->iocb;
7547 cmd->ulpStatus = IOSTAT_LOCAL_REJECT;
7548 cmd->un.ulpWord[4] = IOERR_SLI_ABORTED;
7549 iocb->iocb_cmpl(phba, iocb, iocb);
7550
7551 atomic_dec(&phba->fabric_iocb_count);
7552 goto repeat;
7553 }
7554 }
7555
7556 return;
7557}
7558
James Smarte59058c2008-08-24 21:49:00 -04007559/**
James Smart3621a712009-04-06 18:47:14 -04007560 * lpfc_unblock_fabric_iocbs - Unblock issuing fabric iocb command
James Smarte59058c2008-08-24 21:49:00 -04007561 * @phba: pointer to lpfc hba data structure.
7562 *
7563 * This routine unblocks the issuing fabric iocb command. The function
7564 * will clear the fabric iocb block bit and then invoke the routine
7565 * lpfc_resume_fabric_iocbs() to issue one of the pending fabric iocb
7566 * from the driver internal fabric iocb list.
7567 **/
James Smart92d7f7b2007-06-17 19:56:38 -05007568void
7569lpfc_unblock_fabric_iocbs(struct lpfc_hba *phba)
7570{
7571 clear_bit(FABRIC_COMANDS_BLOCKED, &phba->bit_flags);
7572
7573 lpfc_resume_fabric_iocbs(phba);
7574 return;
7575}
7576
James Smarte59058c2008-08-24 21:49:00 -04007577/**
James Smart3621a712009-04-06 18:47:14 -04007578 * lpfc_block_fabric_iocbs - Block issuing fabric iocb command
James Smarte59058c2008-08-24 21:49:00 -04007579 * @phba: pointer to lpfc hba data structure.
7580 *
7581 * This routine blocks the issuing fabric iocb for a specified amount of
7582 * time (currently 100 ms). This is done by set the fabric iocb block bit
7583 * and set up a timeout timer for 100ms. When the block bit is set, no more
7584 * fabric iocb will be issued out of the HBA.
7585 **/
James Smart92d7f7b2007-06-17 19:56:38 -05007586static void
7587lpfc_block_fabric_iocbs(struct lpfc_hba *phba)
7588{
7589 int blocked;
7590
7591 blocked = test_and_set_bit(FABRIC_COMANDS_BLOCKED, &phba->bit_flags);
James Smart7f5f3d02008-02-08 18:50:14 -05007592 /* Start a timer to unblock fabric iocbs after 100ms */
James Smart92d7f7b2007-06-17 19:56:38 -05007593 if (!blocked)
7594 mod_timer(&phba->fabric_block_timer, jiffies + HZ/10 );
7595
7596 return;
7597}
7598
James Smarte59058c2008-08-24 21:49:00 -04007599/**
James Smart3621a712009-04-06 18:47:14 -04007600 * lpfc_cmpl_fabric_iocb - Completion callback function for fabric iocb
James Smarte59058c2008-08-24 21:49:00 -04007601 * @phba: pointer to lpfc hba data structure.
7602 * @cmdiocb: pointer to lpfc command iocb data structure.
7603 * @rspiocb: pointer to lpfc response iocb data structure.
7604 *
7605 * This routine is the callback function that is put to the fabric iocb's
7606 * callback function pointer (iocb->iocb_cmpl). The original iocb's callback
7607 * function pointer has been stored in iocb->fabric_iocb_cmpl. This callback
7608 * function first restores and invokes the original iocb's callback function
7609 * and then invokes the lpfc_resume_fabric_iocbs() routine to issue the next
7610 * fabric bound iocb from the driver internal fabric iocb list onto the wire.
7611 **/
James Smart92d7f7b2007-06-17 19:56:38 -05007612static void
7613lpfc_cmpl_fabric_iocb(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
7614 struct lpfc_iocbq *rspiocb)
7615{
7616 struct ls_rjt stat;
7617
7618 if ((cmdiocb->iocb_flag & LPFC_IO_FABRIC) != LPFC_IO_FABRIC)
7619 BUG();
7620
7621 switch (rspiocb->iocb.ulpStatus) {
7622 case IOSTAT_NPORT_RJT:
7623 case IOSTAT_FABRIC_RJT:
7624 if (rspiocb->iocb.un.ulpWord[4] & RJT_UNAVAIL_TEMP) {
7625 lpfc_block_fabric_iocbs(phba);
7626 }
7627 break;
7628
7629 case IOSTAT_NPORT_BSY:
7630 case IOSTAT_FABRIC_BSY:
7631 lpfc_block_fabric_iocbs(phba);
7632 break;
7633
7634 case IOSTAT_LS_RJT:
7635 stat.un.lsRjtError =
7636 be32_to_cpu(rspiocb->iocb.un.ulpWord[4]);
7637 if ((stat.un.b.lsRjtRsnCode == LSRJT_UNABLE_TPC) ||
7638 (stat.un.b.lsRjtRsnCode == LSRJT_LOGICAL_BSY))
7639 lpfc_block_fabric_iocbs(phba);
7640 break;
7641 }
7642
7643 if (atomic_read(&phba->fabric_iocb_count) == 0)
7644 BUG();
7645
7646 cmdiocb->iocb_cmpl = cmdiocb->fabric_iocb_cmpl;
7647 cmdiocb->fabric_iocb_cmpl = NULL;
7648 cmdiocb->iocb_flag &= ~LPFC_IO_FABRIC;
7649 cmdiocb->iocb_cmpl(phba, cmdiocb, rspiocb);
7650
7651 atomic_dec(&phba->fabric_iocb_count);
7652 if (!test_bit(FABRIC_COMANDS_BLOCKED, &phba->bit_flags)) {
James Smart7f5f3d02008-02-08 18:50:14 -05007653 /* Post any pending iocbs to HBA */
7654 lpfc_resume_fabric_iocbs(phba);
James Smart92d7f7b2007-06-17 19:56:38 -05007655 }
7656}
7657
James Smarte59058c2008-08-24 21:49:00 -04007658/**
James Smart3621a712009-04-06 18:47:14 -04007659 * lpfc_issue_fabric_iocb - Issue a fabric iocb command
James Smarte59058c2008-08-24 21:49:00 -04007660 * @phba: pointer to lpfc hba data structure.
7661 * @iocb: pointer to lpfc command iocb data structure.
7662 *
7663 * This routine is used as the top-level API for issuing a fabric iocb command
7664 * such as FLOGI and FDISC. To accommodate certain switch fabric, this driver
7665 * function makes sure that only one fabric bound iocb will be outstanding at
7666 * any given time. As such, this function will first check to see whether there
7667 * is already an outstanding fabric iocb on the wire. If so, it will put the
7668 * newly issued iocb onto the driver internal fabric iocb list, waiting to be
7669 * issued later. Otherwise, it will issue the iocb on the wire and update the
7670 * fabric iocb count it indicate that there is one fabric iocb on the wire.
7671 *
7672 * Note, this implementation has a potential sending out fabric IOCBs out of
7673 * order. The problem is caused by the construction of the "ready" boolen does
7674 * not include the condition that the internal fabric IOCB list is empty. As
7675 * such, it is possible a fabric IOCB issued by this routine might be "jump"
7676 * ahead of the fabric IOCBs in the internal list.
7677 *
7678 * Return code
7679 * IOCB_SUCCESS - either fabric iocb put on the list or issued successfully
7680 * IOCB_ERROR - failed to issue fabric iocb
7681 **/
Adrian Bunka6ababd2007-11-05 18:07:33 +01007682static int
James Smart92d7f7b2007-06-17 19:56:38 -05007683lpfc_issue_fabric_iocb(struct lpfc_hba *phba, struct lpfc_iocbq *iocb)
7684{
7685 unsigned long iflags;
James Smart92d7f7b2007-06-17 19:56:38 -05007686 int ready;
7687 int ret;
7688
7689 if (atomic_read(&phba->fabric_iocb_count) > 1)
7690 BUG();
7691
7692 spin_lock_irqsave(&phba->hbalock, iflags);
7693 ready = atomic_read(&phba->fabric_iocb_count) == 0 &&
7694 !test_bit(FABRIC_COMANDS_BLOCKED, &phba->bit_flags);
7695
James Smart7f5f3d02008-02-08 18:50:14 -05007696 if (ready)
7697 /* Increment fabric iocb count to hold the position */
7698 atomic_inc(&phba->fabric_iocb_count);
James Smart92d7f7b2007-06-17 19:56:38 -05007699 spin_unlock_irqrestore(&phba->hbalock, iflags);
7700 if (ready) {
7701 iocb->fabric_iocb_cmpl = iocb->iocb_cmpl;
7702 iocb->iocb_cmpl = lpfc_cmpl_fabric_iocb;
7703 iocb->iocb_flag |= LPFC_IO_FABRIC;
7704
James Smart858c9f62007-06-17 19:56:39 -05007705 lpfc_debugfs_disc_trc(iocb->vport, LPFC_DISC_TRC_ELS_CMD,
7706 "Fabric sched2: ste:x%x",
7707 iocb->vport->port_state, 0, 0);
7708
James Smart3772a992009-05-22 14:50:54 -04007709 ret = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, iocb, 0);
James Smart92d7f7b2007-06-17 19:56:38 -05007710
7711 if (ret == IOCB_ERROR) {
7712 iocb->iocb_cmpl = iocb->fabric_iocb_cmpl;
7713 iocb->fabric_iocb_cmpl = NULL;
7714 iocb->iocb_flag &= ~LPFC_IO_FABRIC;
7715 atomic_dec(&phba->fabric_iocb_count);
7716 }
7717 } else {
7718 spin_lock_irqsave(&phba->hbalock, iflags);
7719 list_add_tail(&iocb->list, &phba->fabric_iocb_list);
7720 spin_unlock_irqrestore(&phba->hbalock, iflags);
7721 ret = IOCB_SUCCESS;
7722 }
7723 return ret;
7724}
7725
James Smarte59058c2008-08-24 21:49:00 -04007726/**
James Smart3621a712009-04-06 18:47:14 -04007727 * lpfc_fabric_abort_vport - Abort a vport's iocbs from driver fabric iocb list
James Smarte59058c2008-08-24 21:49:00 -04007728 * @vport: pointer to a virtual N_Port data structure.
7729 *
7730 * This routine aborts all the IOCBs associated with a @vport from the
7731 * driver internal fabric IOCB list. The list contains fabric IOCBs to be
7732 * issued to the ELS IOCB ring. This abort function walks the fabric IOCB
7733 * list, removes each IOCB associated with the @vport off the list, set the
7734 * status feild to IOSTAT_LOCAL_REJECT, and invokes the callback function
7735 * associated with the IOCB.
7736 **/
Adrian Bunka6ababd2007-11-05 18:07:33 +01007737static void lpfc_fabric_abort_vport(struct lpfc_vport *vport)
James Smart92d7f7b2007-06-17 19:56:38 -05007738{
7739 LIST_HEAD(completions);
7740 struct lpfc_hba *phba = vport->phba;
7741 struct lpfc_iocbq *tmp_iocb, *piocb;
James Smart92d7f7b2007-06-17 19:56:38 -05007742
7743 spin_lock_irq(&phba->hbalock);
7744 list_for_each_entry_safe(piocb, tmp_iocb, &phba->fabric_iocb_list,
7745 list) {
7746
7747 if (piocb->vport != vport)
7748 continue;
7749
7750 list_move_tail(&piocb->list, &completions);
7751 }
7752 spin_unlock_irq(&phba->hbalock);
7753
James Smarta257bf92009-04-06 18:48:10 -04007754 /* Cancel all the IOCBs from the completions list */
7755 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
7756 IOERR_SLI_ABORTED);
James Smart92d7f7b2007-06-17 19:56:38 -05007757}
7758
James Smarte59058c2008-08-24 21:49:00 -04007759/**
James Smart3621a712009-04-06 18:47:14 -04007760 * lpfc_fabric_abort_nport - Abort a ndlp's iocbs from driver fabric iocb list
James Smarte59058c2008-08-24 21:49:00 -04007761 * @ndlp: pointer to a node-list data structure.
7762 *
7763 * This routine aborts all the IOCBs associated with an @ndlp from the
7764 * driver internal fabric IOCB list. The list contains fabric IOCBs to be
7765 * issued to the ELS IOCB ring. This abort function walks the fabric IOCB
7766 * list, removes each IOCB associated with the @ndlp off the list, set the
7767 * status feild to IOSTAT_LOCAL_REJECT, and invokes the callback function
7768 * associated with the IOCB.
7769 **/
James Smart92d7f7b2007-06-17 19:56:38 -05007770void lpfc_fabric_abort_nport(struct lpfc_nodelist *ndlp)
7771{
7772 LIST_HEAD(completions);
James Smarta257bf92009-04-06 18:48:10 -04007773 struct lpfc_hba *phba = ndlp->phba;
James Smart92d7f7b2007-06-17 19:56:38 -05007774 struct lpfc_iocbq *tmp_iocb, *piocb;
7775 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
James Smart92d7f7b2007-06-17 19:56:38 -05007776
7777 spin_lock_irq(&phba->hbalock);
7778 list_for_each_entry_safe(piocb, tmp_iocb, &phba->fabric_iocb_list,
7779 list) {
7780 if ((lpfc_check_sli_ndlp(phba, pring, piocb, ndlp))) {
7781
7782 list_move_tail(&piocb->list, &completions);
7783 }
7784 }
7785 spin_unlock_irq(&phba->hbalock);
7786
James Smarta257bf92009-04-06 18:48:10 -04007787 /* Cancel all the IOCBs from the completions list */
7788 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
7789 IOERR_SLI_ABORTED);
James Smart92d7f7b2007-06-17 19:56:38 -05007790}
7791
James Smarte59058c2008-08-24 21:49:00 -04007792/**
James Smart3621a712009-04-06 18:47:14 -04007793 * lpfc_fabric_abort_hba - Abort all iocbs on driver fabric iocb list
James Smarte59058c2008-08-24 21:49:00 -04007794 * @phba: pointer to lpfc hba data structure.
7795 *
7796 * This routine aborts all the IOCBs currently on the driver internal
7797 * fabric IOCB list. The list contains fabric IOCBs to be issued to the ELS
7798 * IOCB ring. This function takes the entire IOCB list off the fabric IOCB
7799 * list, removes IOCBs off the list, set the status feild to
7800 * IOSTAT_LOCAL_REJECT, and invokes the callback function associated with
7801 * the IOCB.
7802 **/
James Smart92d7f7b2007-06-17 19:56:38 -05007803void lpfc_fabric_abort_hba(struct lpfc_hba *phba)
7804{
7805 LIST_HEAD(completions);
James Smart92d7f7b2007-06-17 19:56:38 -05007806
7807 spin_lock_irq(&phba->hbalock);
7808 list_splice_init(&phba->fabric_iocb_list, &completions);
7809 spin_unlock_irq(&phba->hbalock);
7810
James Smarta257bf92009-04-06 18:48:10 -04007811 /* Cancel all the IOCBs from the completions list */
7812 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
7813 IOERR_SLI_ABORTED);
James Smart92d7f7b2007-06-17 19:56:38 -05007814}
James Smart6fb120a2009-05-22 14:52:59 -04007815
7816/**
James Smart1151e3e2011-02-16 12:39:35 -05007817 * lpfc_sli4_vport_delete_els_xri_aborted -Remove all ndlp references for vport
7818 * @vport: pointer to lpfc vport data structure.
7819 *
7820 * This routine is invoked by the vport cleanup for deletions and the cleanup
7821 * for an ndlp on removal.
7822 **/
7823void
7824lpfc_sli4_vport_delete_els_xri_aborted(struct lpfc_vport *vport)
7825{
7826 struct lpfc_hba *phba = vport->phba;
7827 struct lpfc_sglq *sglq_entry = NULL, *sglq_next = NULL;
7828 unsigned long iflag = 0;
7829
7830 spin_lock_irqsave(&phba->hbalock, iflag);
7831 spin_lock(&phba->sli4_hba.abts_sgl_list_lock);
7832 list_for_each_entry_safe(sglq_entry, sglq_next,
7833 &phba->sli4_hba.lpfc_abts_els_sgl_list, list) {
7834 if (sglq_entry->ndlp && sglq_entry->ndlp->vport == vport)
7835 sglq_entry->ndlp = NULL;
7836 }
7837 spin_unlock(&phba->sli4_hba.abts_sgl_list_lock);
7838 spin_unlock_irqrestore(&phba->hbalock, iflag);
7839 return;
7840}
7841
7842/**
James Smart6fb120a2009-05-22 14:52:59 -04007843 * lpfc_sli4_els_xri_aborted - Slow-path process of els xri abort
7844 * @phba: pointer to lpfc hba data structure.
7845 * @axri: pointer to the els xri abort wcqe structure.
7846 *
7847 * This routine is invoked by the worker thread to process a SLI4 slow-path
7848 * ELS aborted xri.
7849 **/
7850void
7851lpfc_sli4_els_xri_aborted(struct lpfc_hba *phba,
7852 struct sli4_wcqe_xri_aborted *axri)
7853{
7854 uint16_t xri = bf_get(lpfc_wcqe_xa_xri, axri);
James Smart19ca7602010-11-20 23:11:55 -05007855 uint16_t rxid = bf_get(lpfc_wcqe_xa_remote_xid, axri);
James Smart7851fe22011-07-22 18:36:52 -04007856 uint16_t lxri = 0;
James Smart19ca7602010-11-20 23:11:55 -05007857
James Smart6fb120a2009-05-22 14:52:59 -04007858 struct lpfc_sglq *sglq_entry = NULL, *sglq_next = NULL;
7859 unsigned long iflag = 0;
James Smart19ca7602010-11-20 23:11:55 -05007860 struct lpfc_nodelist *ndlp;
James Smart589a52d2010-07-14 15:30:54 -04007861 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
James Smart6fb120a2009-05-22 14:52:59 -04007862
James Smart0f65ff62010-02-26 14:14:23 -05007863 spin_lock_irqsave(&phba->hbalock, iflag);
7864 spin_lock(&phba->sli4_hba.abts_sgl_list_lock);
James Smart6fb120a2009-05-22 14:52:59 -04007865 list_for_each_entry_safe(sglq_entry, sglq_next,
7866 &phba->sli4_hba.lpfc_abts_els_sgl_list, list) {
7867 if (sglq_entry->sli4_xritag == xri) {
7868 list_del(&sglq_entry->list);
James Smart19ca7602010-11-20 23:11:55 -05007869 ndlp = sglq_entry->ndlp;
7870 sglq_entry->ndlp = NULL;
James Smart6fb120a2009-05-22 14:52:59 -04007871 list_add_tail(&sglq_entry->list,
7872 &phba->sli4_hba.lpfc_sgl_list);
James Smart0f65ff62010-02-26 14:14:23 -05007873 sglq_entry->state = SGL_FREED;
7874 spin_unlock(&phba->sli4_hba.abts_sgl_list_lock);
James Smart6fb120a2009-05-22 14:52:59 -04007875 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart19ca7602010-11-20 23:11:55 -05007876 lpfc_set_rrq_active(phba, ndlp, xri, rxid, 1);
James Smart589a52d2010-07-14 15:30:54 -04007877
7878 /* Check if TXQ queue needs to be serviced */
7879 if (pring->txq_cnt)
7880 lpfc_worker_wake_up(phba);
James Smart6fb120a2009-05-22 14:52:59 -04007881 return;
7882 }
7883 }
James Smart0f65ff62010-02-26 14:14:23 -05007884 spin_unlock(&phba->sli4_hba.abts_sgl_list_lock);
James Smart7851fe22011-07-22 18:36:52 -04007885 lxri = lpfc_sli4_xri_inrange(phba, xri);
7886 if (lxri == NO_XRI) {
7887 spin_unlock_irqrestore(&phba->hbalock, iflag);
7888 return;
7889 }
7890 sglq_entry = __lpfc_get_active_sglq(phba, lxri);
James Smart0f65ff62010-02-26 14:14:23 -05007891 if (!sglq_entry || (sglq_entry->sli4_xritag != xri)) {
7892 spin_unlock_irqrestore(&phba->hbalock, iflag);
7893 return;
7894 }
7895 sglq_entry->state = SGL_XRI_ABORTED;
7896 spin_unlock_irqrestore(&phba->hbalock, iflag);
7897 return;
James Smart6fb120a2009-05-22 14:52:59 -04007898}