blob: 8d09191c327e7de39a347d7e56ba331b6bfde16d [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 Smartd8e93df2009-05-22 14:53:05 -04004 * Copyright (C) 2004-2009 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 */
dea31012005-04-17 16:05:31 -050092 ha_copy = readl(phba->HAregaddr);
dea31012005-04-17 16:05:31 -050093
94 if (!(ha_copy & HA_LATT))
95 return 0;
96
97 /* Pending Link Event during Discovery */
James Smarte8b62012007-08-02 11:10:09 -040098 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
99 "0237 Pending Link Event during "
100 "Discovery: State x%x\n",
101 phba->pport->port_state);
dea31012005-04-17 16:05:31 -0500102
103 /* CLEAR_LA should re-enable link attention events and
104 * we should then imediately take a LATT event. The
105 * LATT processing should call lpfc_linkdown() which
106 * will cleanup any left over in-progress discovery
107 * events.
108 */
James Smart2e0fef82007-06-17 19:56:36 -0500109 spin_lock_irq(shost->host_lock);
110 vport->fc_flag |= FC_ABORT_DISCOVERY;
111 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500112
James Smart92d7f7b2007-06-17 19:56:38 -0500113 if (phba->link_state != LPFC_CLEAR_LA)
James Smarted957682007-06-17 19:56:37 -0500114 lpfc_issue_clear_la(phba, vport);
dea31012005-04-17 16:05:31 -0500115
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500116 return 1;
dea31012005-04-17 16:05:31 -0500117}
118
James Smarte59058c2008-08-24 21:49:00 -0400119/**
James Smart3621a712009-04-06 18:47:14 -0400120 * lpfc_prep_els_iocb - Allocate and prepare a lpfc iocb data structure
James Smarte59058c2008-08-24 21:49:00 -0400121 * @vport: pointer to a host virtual N_Port data structure.
122 * @expectRsp: flag indicating whether response is expected.
123 * @cmdSize: size of the ELS command.
124 * @retry: number of retries to the command IOCB when it fails.
125 * @ndlp: pointer to a node-list data structure.
126 * @did: destination identifier.
127 * @elscmd: the ELS command code.
128 *
129 * This routine is used for allocating a lpfc-IOCB data structure from
130 * the driver lpfc-IOCB free-list and prepare the IOCB with the parameters
131 * passed into the routine for discovery state machine to issue an Extended
132 * Link Service (ELS) commands. It is a generic lpfc-IOCB allocation
133 * and preparation routine that is used by all the discovery state machine
134 * routines and the ELS command-specific fields will be later set up by
135 * the individual discovery machine routines after calling this routine
136 * allocating and preparing a generic IOCB data structure. It fills in the
137 * Buffer Descriptor Entries (BDEs), allocates buffers for both command
138 * payload and response payload (if expected). The reference count on the
139 * ndlp is incremented by 1 and the reference to the ndlp is put into
140 * context1 of the IOCB data structure for this IOCB to hold the ndlp
141 * reference for the command's callback function to access later.
142 *
143 * Return code
144 * Pointer to the newly allocated/prepared els iocb data structure
145 * NULL - when els iocb data structure allocation/preparation failed
146 **/
James Smartf1c3b0f2009-07-19 10:01:32 -0400147struct lpfc_iocbq *
James Smart2e0fef82007-06-17 19:56:36 -0500148lpfc_prep_els_iocb(struct lpfc_vport *vport, uint8_t expectRsp,
149 uint16_t cmdSize, uint8_t retry,
150 struct lpfc_nodelist *ndlp, uint32_t did,
151 uint32_t elscmd)
dea31012005-04-17 16:05:31 -0500152{
James Smart2e0fef82007-06-17 19:56:36 -0500153 struct lpfc_hba *phba = vport->phba;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -0400154 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -0500155 struct lpfc_dmabuf *pcmd, *prsp, *pbuflist;
156 struct ulp_bde64 *bpl;
157 IOCB_t *icmd;
158
dea31012005-04-17 16:05:31 -0500159
James Smart2e0fef82007-06-17 19:56:36 -0500160 if (!lpfc_is_link_up(phba))
161 return NULL;
dea31012005-04-17 16:05:31 -0500162
dea31012005-04-17 16:05:31 -0500163 /* Allocate buffer for command iocb */
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -0400164 elsiocb = lpfc_sli_get_iocbq(phba);
dea31012005-04-17 16:05:31 -0500165
166 if (elsiocb == NULL)
167 return NULL;
James Smarte47c9092008-02-08 18:49:26 -0500168
James Smart0c287582009-06-10 17:22:56 -0400169 /*
170 * If this command is for fabric controller and HBA running
171 * in FIP mode send FLOGI, FDISC and LOGO as FIP frames.
172 */
173 if ((did == Fabric_DID) &&
James Smart45ed1192009-10-02 15:17:02 -0400174 (phba->hba_flag & HBA_FIP_SUPPORT) &&
James Smart0c287582009-06-10 17:22:56 -0400175 ((elscmd == ELS_CMD_FLOGI) ||
176 (elscmd == ELS_CMD_FDISC) ||
177 (elscmd == ELS_CMD_LOGO)))
James Smartc8685952009-11-18 15:39:16 -0500178 switch (elscmd) {
179 case ELS_CMD_FLOGI:
180 elsiocb->iocb_flag |= ((ELS_ID_FLOGI << LPFC_FIP_ELS_ID_SHIFT)
181 & LPFC_FIP_ELS_ID_MASK);
182 break;
183 case ELS_CMD_FDISC:
184 elsiocb->iocb_flag |= ((ELS_ID_FDISC << LPFC_FIP_ELS_ID_SHIFT)
185 & LPFC_FIP_ELS_ID_MASK);
186 break;
187 case ELS_CMD_LOGO:
188 elsiocb->iocb_flag |= ((ELS_ID_LOGO << LPFC_FIP_ELS_ID_SHIFT)
189 & LPFC_FIP_ELS_ID_MASK);
190 break;
191 }
James Smart0c287582009-06-10 17:22:56 -0400192 else
James Smartc8685952009-11-18 15:39:16 -0500193 elsiocb->iocb_flag &= ~LPFC_FIP_ELS_ID_MASK;
James Smart0c287582009-06-10 17:22:56 -0400194
dea31012005-04-17 16:05:31 -0500195 icmd = &elsiocb->iocb;
196
197 /* fill in BDEs for command */
198 /* Allocate buffer for command payload */
James Smart98c9ea52007-10-27 13:37:33 -0400199 pcmd = kmalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
200 if (pcmd)
201 pcmd->virt = lpfc_mbuf_alloc(phba, MEM_PRI, &pcmd->phys);
James Smartfa4066b2008-01-11 01:53:27 -0500202 if (!pcmd || !pcmd->virt)
203 goto els_iocb_free_pcmb_exit;
dea31012005-04-17 16:05:31 -0500204
205 INIT_LIST_HEAD(&pcmd->list);
206
207 /* Allocate buffer for response payload */
208 if (expectRsp) {
James Smart92d7f7b2007-06-17 19:56:38 -0500209 prsp = kmalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
dea31012005-04-17 16:05:31 -0500210 if (prsp)
211 prsp->virt = lpfc_mbuf_alloc(phba, MEM_PRI,
212 &prsp->phys);
James Smartfa4066b2008-01-11 01:53:27 -0500213 if (!prsp || !prsp->virt)
214 goto els_iocb_free_prsp_exit;
dea31012005-04-17 16:05:31 -0500215 INIT_LIST_HEAD(&prsp->list);
James Smarte47c9092008-02-08 18:49:26 -0500216 } else
dea31012005-04-17 16:05:31 -0500217 prsp = NULL;
dea31012005-04-17 16:05:31 -0500218
219 /* Allocate buffer for Buffer ptr list */
James Smart92d7f7b2007-06-17 19:56:38 -0500220 pbuflist = kmalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
dea31012005-04-17 16:05:31 -0500221 if (pbuflist)
James Smarted957682007-06-17 19:56:37 -0500222 pbuflist->virt = lpfc_mbuf_alloc(phba, MEM_PRI,
223 &pbuflist->phys);
James Smartfa4066b2008-01-11 01:53:27 -0500224 if (!pbuflist || !pbuflist->virt)
225 goto els_iocb_free_pbuf_exit;
dea31012005-04-17 16:05:31 -0500226
227 INIT_LIST_HEAD(&pbuflist->list);
228
229 icmd->un.elsreq64.bdl.addrHigh = putPaddrHigh(pbuflist->phys);
230 icmd->un.elsreq64.bdl.addrLow = putPaddrLow(pbuflist->phys);
James Smart34b02dc2008-08-24 21:49:55 -0400231 icmd->un.elsreq64.bdl.bdeFlags = BUFF_TYPE_BLP_64;
James Smart2e0fef82007-06-17 19:56:36 -0500232 icmd->un.elsreq64.remoteID = did; /* DID */
dea31012005-04-17 16:05:31 -0500233 if (expectRsp) {
James Smart92d7f7b2007-06-17 19:56:38 -0500234 icmd->un.elsreq64.bdl.bdeSize = (2 * sizeof(struct ulp_bde64));
dea31012005-04-17 16:05:31 -0500235 icmd->ulpCommand = CMD_ELS_REQUEST64_CR;
James Smart2680eea2007-04-25 09:52:55 -0400236 icmd->ulpTimeout = phba->fc_ratov * 2;
dea31012005-04-17 16:05:31 -0500237 } else {
James Smart92d7f7b2007-06-17 19:56:38 -0500238 icmd->un.elsreq64.bdl.bdeSize = sizeof(struct ulp_bde64);
dea31012005-04-17 16:05:31 -0500239 icmd->ulpCommand = CMD_XMIT_ELS_RSP64_CX;
240 }
dea31012005-04-17 16:05:31 -0500241 icmd->ulpBdeCount = 1;
242 icmd->ulpLe = 1;
243 icmd->ulpClass = CLASS3;
244
James Smart92d7f7b2007-06-17 19:56:38 -0500245 if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) {
246 icmd->un.elsreq64.myID = vport->fc_myDID;
247
248 /* For ELS_REQUEST64_CR, use the VPI by default */
James Smartda0436e2009-05-22 14:51:39 -0400249 icmd->ulpContext = vport->vpi + phba->vpi_base;
James Smart92d7f7b2007-06-17 19:56:38 -0500250 icmd->ulpCt_h = 0;
James Smarteada2722008-12-04 22:39:13 -0500251 /* The CT field must be 0=INVALID_RPI for the ECHO cmd */
252 if (elscmd == ELS_CMD_ECHO)
253 icmd->ulpCt_l = 0; /* context = invalid RPI */
254 else
255 icmd->ulpCt_l = 1; /* context = VPI */
James Smart92d7f7b2007-06-17 19:56:38 -0500256 }
257
dea31012005-04-17 16:05:31 -0500258 bpl = (struct ulp_bde64 *) pbuflist->virt;
259 bpl->addrLow = le32_to_cpu(putPaddrLow(pcmd->phys));
260 bpl->addrHigh = le32_to_cpu(putPaddrHigh(pcmd->phys));
261 bpl->tus.f.bdeSize = cmdSize;
262 bpl->tus.f.bdeFlags = 0;
263 bpl->tus.w = le32_to_cpu(bpl->tus.w);
264
265 if (expectRsp) {
266 bpl++;
267 bpl->addrLow = le32_to_cpu(putPaddrLow(prsp->phys));
268 bpl->addrHigh = le32_to_cpu(putPaddrHigh(prsp->phys));
269 bpl->tus.f.bdeSize = FCELSSIZE;
James Smart34b02dc2008-08-24 21:49:55 -0400270 bpl->tus.f.bdeFlags = BUFF_TYPE_BDE_64;
dea31012005-04-17 16:05:31 -0500271 bpl->tus.w = le32_to_cpu(bpl->tus.w);
272 }
273
James Smartfa4066b2008-01-11 01:53:27 -0500274 /* prevent preparing iocb with NULL ndlp reference */
James Smart51ef4c22007-08-02 11:10:31 -0400275 elsiocb->context1 = lpfc_nlp_get(ndlp);
James Smartfa4066b2008-01-11 01:53:27 -0500276 if (!elsiocb->context1)
277 goto els_iocb_free_pbuf_exit;
James Smart329f9bc2007-04-25 09:53:01 -0400278 elsiocb->context2 = pcmd;
279 elsiocb->context3 = pbuflist;
dea31012005-04-17 16:05:31 -0500280 elsiocb->retry = retry;
James Smart2e0fef82007-06-17 19:56:36 -0500281 elsiocb->vport = vport;
dea31012005-04-17 16:05:31 -0500282 elsiocb->drvrTimeout = (phba->fc_ratov << 1) + LPFC_DRVR_TIMEOUT;
283
284 if (prsp) {
285 list_add(&prsp->list, &pcmd->list);
286 }
dea31012005-04-17 16:05:31 -0500287 if (expectRsp) {
288 /* Xmit ELS command <elsCmd> to remote NPORT <did> */
James Smarte8b62012007-08-02 11:10:09 -0400289 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
290 "0116 Xmit ELS command x%x to remote "
291 "NPORT x%x I/O tag: x%x, port state: x%x\n",
292 elscmd, did, elsiocb->iotag,
293 vport->port_state);
dea31012005-04-17 16:05:31 -0500294 } else {
295 /* Xmit ELS response <elsCmd> to remote NPORT <did> */
James Smarte8b62012007-08-02 11:10:09 -0400296 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
297 "0117 Xmit ELS response x%x to remote "
298 "NPORT x%x I/O tag: x%x, size: x%x\n",
299 elscmd, ndlp->nlp_DID, elsiocb->iotag,
300 cmdSize);
dea31012005-04-17 16:05:31 -0500301 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -0500302 return elsiocb;
dea31012005-04-17 16:05:31 -0500303
James Smartfa4066b2008-01-11 01:53:27 -0500304els_iocb_free_pbuf_exit:
James Smarteaf15d52008-12-04 22:39:29 -0500305 if (expectRsp)
306 lpfc_mbuf_free(phba, prsp->virt, prsp->phys);
James Smartfa4066b2008-01-11 01:53:27 -0500307 kfree(pbuflist);
308
309els_iocb_free_prsp_exit:
310 lpfc_mbuf_free(phba, pcmd->virt, pcmd->phys);
311 kfree(prsp);
312
313els_iocb_free_pcmb_exit:
314 kfree(pcmd);
315 lpfc_sli_release_iocbq(phba, elsiocb);
316 return NULL;
317}
dea31012005-04-17 16:05:31 -0500318
James Smarte59058c2008-08-24 21:49:00 -0400319/**
James Smart3621a712009-04-06 18:47:14 -0400320 * lpfc_issue_fabric_reglogin - Issue fabric registration login for a vport
James Smarte59058c2008-08-24 21:49:00 -0400321 * @vport: pointer to a host virtual N_Port data structure.
322 *
323 * This routine issues a fabric registration login for a @vport. An
324 * active ndlp node with Fabric_DID must already exist for this @vport.
325 * The routine invokes two mailbox commands to carry out fabric registration
326 * login through the HBA firmware: the first mailbox command requests the
327 * HBA to perform link configuration for the @vport; and the second mailbox
328 * command requests the HBA to perform the actual fabric registration login
329 * with the @vport.
330 *
331 * Return code
332 * 0 - successfully issued fabric registration login for @vport
333 * -ENXIO -- failed to issue fabric registration login for @vport
334 **/
James Smart3772a992009-05-22 14:50:54 -0400335int
James Smart92d7f7b2007-06-17 19:56:38 -0500336lpfc_issue_fabric_reglogin(struct lpfc_vport *vport)
337{
338 struct lpfc_hba *phba = vport->phba;
339 LPFC_MBOXQ_t *mbox;
340 struct lpfc_dmabuf *mp;
341 struct lpfc_nodelist *ndlp;
342 struct serv_parm *sp;
343 int rc;
James Smart98c9ea52007-10-27 13:37:33 -0400344 int err = 0;
James Smart92d7f7b2007-06-17 19:56:38 -0500345
346 sp = &phba->fc_fabparam;
347 ndlp = lpfc_findnode_did(vport, Fabric_DID);
James Smarte47c9092008-02-08 18:49:26 -0500348 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp)) {
James Smart98c9ea52007-10-27 13:37:33 -0400349 err = 1;
James Smart92d7f7b2007-06-17 19:56:38 -0500350 goto fail;
James Smart98c9ea52007-10-27 13:37:33 -0400351 }
James Smart92d7f7b2007-06-17 19:56:38 -0500352
353 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
James Smart98c9ea52007-10-27 13:37:33 -0400354 if (!mbox) {
355 err = 2;
James Smart92d7f7b2007-06-17 19:56:38 -0500356 goto fail;
James Smart98c9ea52007-10-27 13:37:33 -0400357 }
James Smart92d7f7b2007-06-17 19:56:38 -0500358
359 vport->port_state = LPFC_FABRIC_CFG_LINK;
360 lpfc_config_link(phba, mbox);
361 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
362 mbox->vport = vport;
363
James Smart0b727fe2007-10-27 13:37:25 -0400364 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
James Smart98c9ea52007-10-27 13:37:33 -0400365 if (rc == MBX_NOT_FINISHED) {
366 err = 3;
James Smart92d7f7b2007-06-17 19:56:38 -0500367 goto fail_free_mbox;
James Smart98c9ea52007-10-27 13:37:33 -0400368 }
James Smart92d7f7b2007-06-17 19:56:38 -0500369
370 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
James Smart98c9ea52007-10-27 13:37:33 -0400371 if (!mbox) {
372 err = 4;
James Smart92d7f7b2007-06-17 19:56:38 -0500373 goto fail;
James Smart98c9ea52007-10-27 13:37:33 -0400374 }
James Smart3772a992009-05-22 14:50:54 -0400375 rc = lpfc_reg_rpi(phba, vport->vpi, Fabric_DID, (uint8_t *)sp, mbox, 0);
James Smart98c9ea52007-10-27 13:37:33 -0400376 if (rc) {
377 err = 5;
James Smart92d7f7b2007-06-17 19:56:38 -0500378 goto fail_free_mbox;
James Smart98c9ea52007-10-27 13:37:33 -0400379 }
James Smart92d7f7b2007-06-17 19:56:38 -0500380
381 mbox->mbox_cmpl = lpfc_mbx_cmpl_fabric_reg_login;
382 mbox->vport = vport;
James Smarte47c9092008-02-08 18:49:26 -0500383 /* increment the reference count on ndlp to hold reference
384 * for the callback routine.
385 */
James Smart92d7f7b2007-06-17 19:56:38 -0500386 mbox->context2 = lpfc_nlp_get(ndlp);
387
James Smart0b727fe2007-10-27 13:37:25 -0400388 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
James Smart98c9ea52007-10-27 13:37:33 -0400389 if (rc == MBX_NOT_FINISHED) {
390 err = 6;
James Smart92d7f7b2007-06-17 19:56:38 -0500391 goto fail_issue_reg_login;
James Smart98c9ea52007-10-27 13:37:33 -0400392 }
James Smart92d7f7b2007-06-17 19:56:38 -0500393
394 return 0;
395
396fail_issue_reg_login:
James Smarte47c9092008-02-08 18:49:26 -0500397 /* decrement the reference count on ndlp just incremented
398 * for the failed mbox command.
399 */
James Smart92d7f7b2007-06-17 19:56:38 -0500400 lpfc_nlp_put(ndlp);
401 mp = (struct lpfc_dmabuf *) mbox->context1;
402 lpfc_mbuf_free(phba, mp->virt, mp->phys);
403 kfree(mp);
404fail_free_mbox:
405 mempool_free(mbox, phba->mbox_mem_pool);
406
407fail:
408 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
James Smarte8b62012007-08-02 11:10:09 -0400409 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
James Smart98c9ea52007-10-27 13:37:33 -0400410 "0249 Cannot issue Register Fabric login: Err %d\n", err);
James Smart92d7f7b2007-06-17 19:56:38 -0500411 return -ENXIO;
412}
413
James Smarte59058c2008-08-24 21:49:00 -0400414/**
James Smart6fb120a2009-05-22 14:52:59 -0400415 * lpfc_issue_reg_vfi - Register VFI for this vport's fabric login
416 * @vport: pointer to a host virtual N_Port data structure.
417 *
418 * This routine issues a REG_VFI mailbox for the vfi, vpi, fcfi triplet for
419 * the @vport. This mailbox command is necessary for FCoE only.
420 *
421 * Return code
422 * 0 - successfully issued REG_VFI for @vport
423 * A failure code otherwise.
424 **/
425static int
426lpfc_issue_reg_vfi(struct lpfc_vport *vport)
427{
428 struct lpfc_hba *phba = vport->phba;
429 LPFC_MBOXQ_t *mboxq;
430 struct lpfc_nodelist *ndlp;
431 struct serv_parm *sp;
432 struct lpfc_dmabuf *dmabuf;
433 int rc = 0;
434
435 sp = &phba->fc_fabparam;
436 ndlp = lpfc_findnode_did(vport, Fabric_DID);
437 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp)) {
438 rc = -ENODEV;
439 goto fail;
440 }
441
442 dmabuf = kzalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
443 if (!dmabuf) {
444 rc = -ENOMEM;
445 goto fail;
446 }
447 dmabuf->virt = lpfc_mbuf_alloc(phba, MEM_PRI, &dmabuf->phys);
448 if (!dmabuf->virt) {
449 rc = -ENOMEM;
450 goto fail_free_dmabuf;
451 }
452 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
453 if (!mboxq) {
454 rc = -ENOMEM;
455 goto fail_free_coherent;
456 }
457 vport->port_state = LPFC_FABRIC_CFG_LINK;
458 memcpy(dmabuf->virt, &phba->fc_fabparam, sizeof(vport->fc_sparam));
459 lpfc_reg_vfi(mboxq, vport, dmabuf->phys);
460 mboxq->mbox_cmpl = lpfc_mbx_cmpl_reg_vfi;
461 mboxq->vport = vport;
462 mboxq->context1 = dmabuf;
463 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
464 if (rc == MBX_NOT_FINISHED) {
465 rc = -ENXIO;
466 goto fail_free_mbox;
467 }
468 return 0;
469
470fail_free_mbox:
471 mempool_free(mboxq, phba->mbox_mem_pool);
472fail_free_coherent:
473 lpfc_mbuf_free(phba, dmabuf->virt, dmabuf->phys);
474fail_free_dmabuf:
475 kfree(dmabuf);
476fail:
477 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
478 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
479 "0289 Issue Register VFI failed: Err %d\n", rc);
480 return rc;
481}
482
483/**
James Smart3621a712009-04-06 18:47:14 -0400484 * lpfc_cmpl_els_flogi_fabric - Completion function for flogi to a fabric port
James Smarte59058c2008-08-24 21:49:00 -0400485 * @vport: pointer to a host virtual N_Port data structure.
486 * @ndlp: pointer to a node-list data structure.
487 * @sp: pointer to service parameter data structure.
488 * @irsp: pointer to the IOCB within the lpfc response IOCB.
489 *
490 * This routine is invoked by the lpfc_cmpl_els_flogi() completion callback
491 * function to handle the completion of a Fabric Login (FLOGI) into a fabric
492 * port in a fabric topology. It properly sets up the parameters to the @ndlp
493 * from the IOCB response. It also check the newly assigned N_Port ID to the
494 * @vport against the previously assigned N_Port ID. If it is different from
495 * the previously assigned Destination ID (DID), the lpfc_unreg_rpi() routine
496 * is invoked on all the remaining nodes with the @vport to unregister the
497 * Remote Port Indicators (RPIs). Finally, the lpfc_issue_fabric_reglogin()
498 * is invoked to register login to the fabric.
499 *
500 * Return code
501 * 0 - Success (currently, always return 0)
502 **/
James Smart92d7f7b2007-06-17 19:56:38 -0500503static int
James Smart2e0fef82007-06-17 19:56:36 -0500504lpfc_cmpl_els_flogi_fabric(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
505 struct serv_parm *sp, IOCB_t *irsp)
dea31012005-04-17 16:05:31 -0500506{
James Smart2e0fef82007-06-17 19:56:36 -0500507 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
508 struct lpfc_hba *phba = vport->phba;
James Smart92d7f7b2007-06-17 19:56:38 -0500509 struct lpfc_nodelist *np;
510 struct lpfc_nodelist *next_np;
dea31012005-04-17 16:05:31 -0500511
James Smart2e0fef82007-06-17 19:56:36 -0500512 spin_lock_irq(shost->host_lock);
513 vport->fc_flag |= FC_FABRIC;
514 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500515
516 phba->fc_edtov = be32_to_cpu(sp->cmn.e_d_tov);
517 if (sp->cmn.edtovResolution) /* E_D_TOV ticks are in nanoseconds */
518 phba->fc_edtov = (phba->fc_edtov + 999999) / 1000000;
519
520 phba->fc_ratov = (be32_to_cpu(sp->cmn.w2.r_a_tov) + 999) / 1000;
521
522 if (phba->fc_topology == TOPOLOGY_LOOP) {
James Smart2e0fef82007-06-17 19:56:36 -0500523 spin_lock_irq(shost->host_lock);
524 vport->fc_flag |= FC_PUBLIC_LOOP;
525 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500526 } else {
527 /*
528 * If we are a N-port connected to a Fabric, fixup sparam's so
529 * logins to devices on remote loops work.
530 */
James Smart2e0fef82007-06-17 19:56:36 -0500531 vport->fc_sparam.cmn.altBbCredit = 1;
dea31012005-04-17 16:05:31 -0500532 }
533
James Smart2e0fef82007-06-17 19:56:36 -0500534 vport->fc_myDID = irsp->un.ulpWord[4] & Mask_DID;
dea31012005-04-17 16:05:31 -0500535 memcpy(&ndlp->nlp_portname, &sp->portName, sizeof(struct lpfc_name));
James Smart92d7f7b2007-06-17 19:56:38 -0500536 memcpy(&ndlp->nlp_nodename, &sp->nodeName, sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -0500537 ndlp->nlp_class_sup = 0;
538 if (sp->cls1.classValid)
539 ndlp->nlp_class_sup |= FC_COS_CLASS1;
540 if (sp->cls2.classValid)
541 ndlp->nlp_class_sup |= FC_COS_CLASS2;
542 if (sp->cls3.classValid)
543 ndlp->nlp_class_sup |= FC_COS_CLASS3;
544 if (sp->cls4.classValid)
545 ndlp->nlp_class_sup |= FC_COS_CLASS4;
546 ndlp->nlp_maxframe = ((sp->cmn.bbRcvSizeMsb & 0x0F) << 8) |
547 sp->cmn.bbRcvSizeLsb;
548 memcpy(&phba->fc_fabparam, sp, sizeof(struct serv_parm));
549
James Smart92d7f7b2007-06-17 19:56:38 -0500550 if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) {
551 if (sp->cmn.response_multiple_NPort) {
James Smarte8b62012007-08-02 11:10:09 -0400552 lpfc_printf_vlog(vport, KERN_WARNING,
553 LOG_ELS | LOG_VPORT,
554 "1816 FLOGI NPIV supported, "
555 "response data 0x%x\n",
556 sp->cmn.response_multiple_NPort);
James Smart92d7f7b2007-06-17 19:56:38 -0500557 phba->link_flag |= LS_NPIV_FAB_SUPPORTED;
James Smart92d7f7b2007-06-17 19:56:38 -0500558 } else {
559 /* Because we asked f/w for NPIV it still expects us
James Smarte8b62012007-08-02 11:10:09 -0400560 to call reg_vnpid atleast for the physcial host */
561 lpfc_printf_vlog(vport, KERN_WARNING,
562 LOG_ELS | LOG_VPORT,
563 "1817 Fabric does not support NPIV "
564 "- configuring single port mode.\n");
James Smart92d7f7b2007-06-17 19:56:38 -0500565 phba->link_flag &= ~LS_NPIV_FAB_SUPPORTED;
566 }
567 }
568
569 if ((vport->fc_prevDID != vport->fc_myDID) &&
570 !(vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)) {
571
572 /* If our NportID changed, we need to ensure all
573 * remaining NPORTs get unreg_login'ed.
574 */
575 list_for_each_entry_safe(np, next_np,
576 &vport->fc_nodes, nlp_listp) {
James Smartd7c255b2008-08-24 21:50:00 -0400577 if (!NLP_CHK_NODE_ACT(np))
James Smarte47c9092008-02-08 18:49:26 -0500578 continue;
James Smart92d7f7b2007-06-17 19:56:38 -0500579 if ((np->nlp_state != NLP_STE_NPR_NODE) ||
580 !(np->nlp_flag & NLP_NPR_ADISC))
581 continue;
582 spin_lock_irq(shost->host_lock);
583 np->nlp_flag &= ~NLP_NPR_ADISC;
584 spin_unlock_irq(shost->host_lock);
585 lpfc_unreg_rpi(vport, np);
586 }
James Smart78730cf2010-04-06 15:06:30 -0400587 lpfc_cleanup_pending_mbox(vport);
James Smart92d7f7b2007-06-17 19:56:38 -0500588 if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) {
589 lpfc_mbx_unreg_vpi(vport);
James Smart09372822008-01-11 01:52:54 -0500590 spin_lock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -0500591 vport->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
James Smart09372822008-01-11 01:52:54 -0500592 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -0500593 }
James Smartecfd03c2010-02-12 14:41:27 -0500594 /*
595 * If VPI is unreged, driver need to do INIT_VPI
596 * before re-registering
597 */
598 if (phba->sli_rev == LPFC_SLI_REV4) {
599 spin_lock_irq(shost->host_lock);
600 vport->fc_flag |= FC_VPORT_NEEDS_INIT_VPI;
601 spin_unlock_irq(shost->host_lock);
602 }
James Smart38b92ef2010-08-04 16:11:39 -0400603 } else if ((phba->sli_rev == LPFC_SLI_REV4) &&
604 !(vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)) {
605 /*
606 * Driver needs to re-reg VPI in order for f/w
607 * to update the MAC address.
608 */
609 lpfc_register_new_vport(phba, vport, ndlp);
610 return 0;
James Smart92d7f7b2007-06-17 19:56:38 -0500611 }
612
James Smart6fb120a2009-05-22 14:52:59 -0400613 if (phba->sli_rev < LPFC_SLI_REV4) {
614 lpfc_nlp_set_state(vport, ndlp, NLP_STE_REG_LOGIN_ISSUE);
615 if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED &&
616 vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)
617 lpfc_register_new_vport(phba, vport, ndlp);
618 else
619 lpfc_issue_fabric_reglogin(vport);
620 } else {
621 ndlp->nlp_type |= NLP_FABRIC;
622 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
James Smart695a8142010-01-26 23:08:03 -0500623 if ((!(vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)) &&
624 (vport->vpi_state & LPFC_VPI_REGISTERED)) {
James Smart6fb120a2009-05-22 14:52:59 -0400625 lpfc_start_fdiscs(phba);
626 lpfc_do_scr_ns_plogi(phba, vport);
James Smart695a8142010-01-26 23:08:03 -0500627 } else if (vport->fc_flag & FC_VFI_REGISTERED)
James Smartecfd03c2010-02-12 14:41:27 -0500628 lpfc_issue_init_vpi(vport);
James Smart695a8142010-01-26 23:08:03 -0500629 else
James Smart6fb120a2009-05-22 14:52:59 -0400630 lpfc_issue_reg_vfi(vport);
James Smart92d7f7b2007-06-17 19:56:38 -0500631 }
dea31012005-04-17 16:05:31 -0500632 return 0;
dea31012005-04-17 16:05:31 -0500633}
James Smarte59058c2008-08-24 21:49:00 -0400634/**
James Smart3621a712009-04-06 18:47:14 -0400635 * lpfc_cmpl_els_flogi_nport - Completion function for flogi to an N_Port
James Smarte59058c2008-08-24 21:49:00 -0400636 * @vport: pointer to a host virtual N_Port data structure.
637 * @ndlp: pointer to a node-list data structure.
638 * @sp: pointer to service parameter data structure.
639 *
640 * This routine is invoked by the lpfc_cmpl_els_flogi() completion callback
641 * function to handle the completion of a Fabric Login (FLOGI) into an N_Port
642 * in a point-to-point topology. First, the @vport's N_Port Name is compared
643 * with the received N_Port Name: if the @vport's N_Port Name is greater than
644 * the received N_Port Name lexicographically, this node shall assign local
645 * N_Port ID (PT2PT_LocalID: 1) and remote N_Port ID (PT2PT_RemoteID: 2) and
646 * will send out Port Login (PLOGI) with the N_Port IDs assigned. Otherwise,
647 * this node shall just wait for the remote node to issue PLOGI and assign
648 * N_Port IDs.
649 *
650 * Return code
651 * 0 - Success
652 * -ENXIO - Fail
653 **/
dea31012005-04-17 16:05:31 -0500654static int
James Smart2e0fef82007-06-17 19:56:36 -0500655lpfc_cmpl_els_flogi_nport(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
656 struct serv_parm *sp)
dea31012005-04-17 16:05:31 -0500657{
James Smart2e0fef82007-06-17 19:56:36 -0500658 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
659 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -0500660 LPFC_MBOXQ_t *mbox;
661 int rc;
662
James Smart2e0fef82007-06-17 19:56:36 -0500663 spin_lock_irq(shost->host_lock);
664 vport->fc_flag &= ~(FC_FABRIC | FC_PUBLIC_LOOP);
665 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500666
667 phba->fc_edtov = FF_DEF_EDTOV;
668 phba->fc_ratov = FF_DEF_RATOV;
James Smart2e0fef82007-06-17 19:56:36 -0500669 rc = memcmp(&vport->fc_portname, &sp->portName,
James Smart92d7f7b2007-06-17 19:56:38 -0500670 sizeof(vport->fc_portname));
dea31012005-04-17 16:05:31 -0500671 if (rc >= 0) {
672 /* This side will initiate the PLOGI */
James Smart2e0fef82007-06-17 19:56:36 -0500673 spin_lock_irq(shost->host_lock);
674 vport->fc_flag |= FC_PT2PT_PLOGI;
675 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500676
677 /*
678 * N_Port ID cannot be 0, set our to LocalID the other
679 * side will be RemoteID.
680 */
681
682 /* not equal */
683 if (rc)
James Smart2e0fef82007-06-17 19:56:36 -0500684 vport->fc_myDID = PT2PT_LocalID;
dea31012005-04-17 16:05:31 -0500685
686 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
687 if (!mbox)
688 goto fail;
689
690 lpfc_config_link(phba, mbox);
691
692 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
James Smarted957682007-06-17 19:56:37 -0500693 mbox->vport = vport;
James Smart0b727fe2007-10-27 13:37:25 -0400694 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
dea31012005-04-17 16:05:31 -0500695 if (rc == MBX_NOT_FINISHED) {
696 mempool_free(mbox, phba->mbox_mem_pool);
697 goto fail;
698 }
James Smarte47c9092008-02-08 18:49:26 -0500699 /* Decrement ndlp reference count indicating that ndlp can be
700 * safely released when other references to it are done.
701 */
James Smart329f9bc2007-04-25 09:53:01 -0400702 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -0500703
James Smart2e0fef82007-06-17 19:56:36 -0500704 ndlp = lpfc_findnode_did(vport, PT2PT_RemoteID);
dea31012005-04-17 16:05:31 -0500705 if (!ndlp) {
706 /*
707 * Cannot find existing Fabric ndlp, so allocate a
708 * new one
709 */
710 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
711 if (!ndlp)
712 goto fail;
James Smart2e0fef82007-06-17 19:56:36 -0500713 lpfc_nlp_init(vport, ndlp, PT2PT_RemoteID);
James Smarte47c9092008-02-08 18:49:26 -0500714 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
715 ndlp = lpfc_enable_node(vport, ndlp,
716 NLP_STE_UNUSED_NODE);
717 if(!ndlp)
718 goto fail;
dea31012005-04-17 16:05:31 -0500719 }
720
721 memcpy(&ndlp->nlp_portname, &sp->portName,
James Smart2e0fef82007-06-17 19:56:36 -0500722 sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -0500723 memcpy(&ndlp->nlp_nodename, &sp->nodeName,
James Smart2e0fef82007-06-17 19:56:36 -0500724 sizeof(struct lpfc_name));
James Smarte47c9092008-02-08 18:49:26 -0500725 /* Set state will put ndlp onto node list if not already done */
James Smart2e0fef82007-06-17 19:56:36 -0500726 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
727 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500728 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
James Smart2e0fef82007-06-17 19:56:36 -0500729 spin_unlock_irq(shost->host_lock);
James Smarte47c9092008-02-08 18:49:26 -0500730 } else
731 /* This side will wait for the PLOGI, decrement ndlp reference
732 * count indicating that ndlp can be released when other
733 * references to it are done.
734 */
James Smart329f9bc2007-04-25 09:53:01 -0400735 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -0500736
James Smart09372822008-01-11 01:52:54 -0500737 /* If we are pt2pt with another NPort, force NPIV off! */
738 phba->sli3_options &= ~LPFC_SLI3_NPIV_ENABLED;
739
James Smart2e0fef82007-06-17 19:56:36 -0500740 spin_lock_irq(shost->host_lock);
741 vport->fc_flag |= FC_PT2PT;
742 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500743
744 /* Start discovery - this should just do CLEAR_LA */
James Smart2e0fef82007-06-17 19:56:36 -0500745 lpfc_disc_start(vport);
dea31012005-04-17 16:05:31 -0500746 return 0;
James Smart92d7f7b2007-06-17 19:56:38 -0500747fail:
dea31012005-04-17 16:05:31 -0500748 return -ENXIO;
749}
750
James Smarte59058c2008-08-24 21:49:00 -0400751/**
James Smart3621a712009-04-06 18:47:14 -0400752 * lpfc_cmpl_els_flogi - Completion callback function for flogi
James Smarte59058c2008-08-24 21:49:00 -0400753 * @phba: pointer to lpfc hba data structure.
754 * @cmdiocb: pointer to lpfc command iocb data structure.
755 * @rspiocb: pointer to lpfc response iocb data structure.
756 *
757 * This routine is the top-level completion callback function for issuing
758 * a Fabric Login (FLOGI) command. If the response IOCB reported error,
759 * the lpfc_els_retry() routine shall be invoked to retry the FLOGI. If
760 * retry has been made (either immediately or delayed with lpfc_els_retry()
761 * returning 1), the command IOCB will be released and function returned.
762 * If the retry attempt has been given up (possibly reach the maximum
763 * number of retries), one additional decrement of ndlp reference shall be
764 * invoked before going out after releasing the command IOCB. This will
765 * actually release the remote node (Note, lpfc_els_free_iocb() will also
766 * invoke one decrement of ndlp reference count). If no error reported in
767 * the IOCB status, the command Port ID field is used to determine whether
768 * this is a point-to-point topology or a fabric topology: if the Port ID
769 * field is assigned, it is a fabric topology; otherwise, it is a
770 * point-to-point topology. The routine lpfc_cmpl_els_flogi_fabric() or
771 * lpfc_cmpl_els_flogi_nport() shall be invoked accordingly to handle the
772 * specific topology completion conditions.
773 **/
dea31012005-04-17 16:05:31 -0500774static void
James Smart329f9bc2007-04-25 09:53:01 -0400775lpfc_cmpl_els_flogi(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
776 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -0500777{
James Smart2e0fef82007-06-17 19:56:36 -0500778 struct lpfc_vport *vport = cmdiocb->vport;
779 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -0500780 IOCB_t *irsp = &rspiocb->iocb;
781 struct lpfc_nodelist *ndlp = cmdiocb->context1;
782 struct lpfc_dmabuf *pcmd = cmdiocb->context2, *prsp;
783 struct serv_parm *sp;
James Smart0c9ab6f2010-02-26 14:15:57 -0500784 uint16_t fcf_index;
dea31012005-04-17 16:05:31 -0500785 int rc;
786
787 /* Check to see if link went down during discovery */
James Smart2e0fef82007-06-17 19:56:36 -0500788 if (lpfc_els_chk_latt(vport)) {
James Smartfa4066b2008-01-11 01:53:27 -0500789 /* One additional decrement on node reference count to
790 * trigger the release of the node
791 */
James Smart329f9bc2007-04-25 09:53:01 -0400792 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -0500793 goto out;
794 }
795
James Smart858c9f62007-06-17 19:56:39 -0500796 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
797 "FLOGI cmpl: status:x%x/x%x state:x%x",
798 irsp->ulpStatus, irsp->un.ulpWord[4],
799 vport->port_state);
800
dea31012005-04-17 16:05:31 -0500801 if (irsp->ulpStatus) {
James Smart0c9ab6f2010-02-26 14:15:57 -0500802 /*
803 * In case of FIP mode, perform round robin FCF failover
804 * due to new FCF discovery
805 */
806 if ((phba->hba_flag & HBA_FIP_SUPPORT) &&
James Smartdbb6b3a2010-06-08 18:31:37 -0400807 (phba->fcf.fcf_flag & FCF_DISCOVERY) &&
808 (irsp->ulpStatus != IOSTAT_LOCAL_REJECT) &&
809 (irsp->un.ulpWord[4] != IOERR_SLI_ABORTED)) {
James Smart0c9ab6f2010-02-26 14:15:57 -0500810 lpfc_printf_log(phba, KERN_WARNING, LOG_FIP | LOG_ELS,
811 "2611 FLOGI failed on registered "
James Smart38b92ef2010-08-04 16:11:39 -0400812 "FCF record fcf_index(%d), status: "
813 "x%x/x%x, tmo:x%x, trying to perform "
814 "round robin failover\n",
815 phba->fcf.current_rec.fcf_indx,
816 irsp->ulpStatus, irsp->un.ulpWord[4],
817 irsp->ulpTimeout);
James Smart0c9ab6f2010-02-26 14:15:57 -0500818 fcf_index = lpfc_sli4_fcf_rr_next_index_get(phba);
819 if (fcf_index == LPFC_FCOE_FCF_NEXT_NONE) {
820 /*
821 * Exhausted the eligible FCF record list,
822 * fail through to retry FLOGI on current
823 * FCF record.
824 */
825 lpfc_printf_log(phba, KERN_WARNING,
826 LOG_FIP | LOG_ELS,
James Smart3804dc82010-07-14 15:31:37 -0400827 "2760 Completed one round "
828 "of FLOGI FCF round robin "
829 "failover list, retry FLOGI "
830 "on currently registered "
831 "FCF index:%d\n",
James Smart0c9ab6f2010-02-26 14:15:57 -0500832 phba->fcf.current_rec.fcf_indx);
James Smart0c9ab6f2010-02-26 14:15:57 -0500833 } else {
James Smart3804dc82010-07-14 15:31:37 -0400834 lpfc_printf_log(phba, KERN_INFO,
835 LOG_FIP | LOG_ELS,
836 "2794 FLOGI FCF round robin "
837 "failover to FCF index x%x\n",
838 fcf_index);
James Smart0c9ab6f2010-02-26 14:15:57 -0500839 rc = lpfc_sli4_fcf_rr_read_fcf_rec(phba,
840 fcf_index);
James Smart3804dc82010-07-14 15:31:37 -0400841 if (rc)
James Smart0c9ab6f2010-02-26 14:15:57 -0500842 lpfc_printf_log(phba, KERN_WARNING,
843 LOG_FIP | LOG_ELS,
844 "2761 FLOGI round "
845 "robin FCF failover "
846 "read FCF failed "
847 "rc:x%x, fcf_index:"
848 "%d\n", rc,
849 phba->fcf.current_rec.fcf_indx);
James Smart3804dc82010-07-14 15:31:37 -0400850 else
James Smart0c9ab6f2010-02-26 14:15:57 -0500851 goto out;
852 }
853 }
854
James Smart38b92ef2010-08-04 16:11:39 -0400855 /* FLOGI failure */
856 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
857 "2858 FLOGI failure Status:x%x/x%x TMO:x%x\n",
858 irsp->ulpStatus, irsp->un.ulpWord[4],
859 irsp->ulpTimeout);
860
dea31012005-04-17 16:05:31 -0500861 /* Check for retry */
James Smart2e0fef82007-06-17 19:56:36 -0500862 if (lpfc_els_retry(phba, cmdiocb, rspiocb))
dea31012005-04-17 16:05:31 -0500863 goto out;
James Smart2e0fef82007-06-17 19:56:36 -0500864
dea31012005-04-17 16:05:31 -0500865 /* FLOGI failed, so there is no fabric */
James Smart2e0fef82007-06-17 19:56:36 -0500866 spin_lock_irq(shost->host_lock);
867 vport->fc_flag &= ~(FC_FABRIC | FC_PUBLIC_LOOP);
868 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500869
James Smart329f9bc2007-04-25 09:53:01 -0400870 /* If private loop, then allow max outstanding els to be
dea31012005-04-17 16:05:31 -0500871 * LPFC_MAX_DISC_THREADS (32). Scanning in the case of no
872 * alpa map would take too long otherwise.
873 */
874 if (phba->alpa_map[0] == 0) {
James Smart3de2a652007-08-02 11:09:59 -0400875 vport->cfg_discovery_threads = LPFC_MAX_DISC_THREADS;
dea31012005-04-17 16:05:31 -0500876 }
877
878 /* FLOGI failure */
James Smarte40a02c2010-02-26 14:13:54 -0500879 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
880 "0100 FLOGI failure Status:x%x/x%x TMO:x%x\n",
James Smarte8b62012007-08-02 11:10:09 -0400881 irsp->ulpStatus, irsp->un.ulpWord[4],
882 irsp->ulpTimeout);
dea31012005-04-17 16:05:31 -0500883 goto flogifail;
884 }
James Smart695a8142010-01-26 23:08:03 -0500885 spin_lock_irq(shost->host_lock);
886 vport->fc_flag &= ~FC_VPORT_CVL_RCVD;
James Smart4b40c592010-03-15 11:25:44 -0400887 vport->fc_flag &= ~FC_VPORT_LOGO_RCVD;
James Smart695a8142010-01-26 23:08:03 -0500888 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500889
890 /*
891 * The FLogI succeeded. Sync the data for the CPU before
892 * accessing it.
893 */
894 prsp = list_get_first(&pcmd->list, struct lpfc_dmabuf, list);
895
896 sp = prsp->virt + sizeof(uint32_t);
897
898 /* FLOGI completes successfully */
James Smarte8b62012007-08-02 11:10:09 -0400899 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200900 "0101 FLOGI completes successfully "
James Smarte8b62012007-08-02 11:10:09 -0400901 "Data: x%x x%x x%x x%x\n",
902 irsp->un.ulpWord[4], sp->cmn.e_d_tov,
903 sp->cmn.w2.r_a_tov, sp->cmn.edtovResolution);
dea31012005-04-17 16:05:31 -0500904
James Smart2e0fef82007-06-17 19:56:36 -0500905 if (vport->port_state == LPFC_FLOGI) {
dea31012005-04-17 16:05:31 -0500906 /*
907 * If Common Service Parameters indicate Nport
908 * we are point to point, if Fport we are Fabric.
909 */
910 if (sp->cmn.fPort)
James Smart2e0fef82007-06-17 19:56:36 -0500911 rc = lpfc_cmpl_els_flogi_fabric(vport, ndlp, sp, irsp);
James Smartdbb6b3a2010-06-08 18:31:37 -0400912 else if (!(phba->hba_flag & HBA_FCOE_SUPPORT))
James Smart2e0fef82007-06-17 19:56:36 -0500913 rc = lpfc_cmpl_els_flogi_nport(vport, ndlp, sp);
James Smartdbb6b3a2010-06-08 18:31:37 -0400914 else {
915 lpfc_printf_vlog(vport, KERN_ERR,
916 LOG_FIP | LOG_ELS,
917 "2831 FLOGI response with cleared Fabric "
918 "bit fcf_index 0x%x "
919 "Switch Name %02x%02x%02x%02x%02x%02x%02x%02x "
920 "Fabric Name "
921 "%02x%02x%02x%02x%02x%02x%02x%02x\n",
922 phba->fcf.current_rec.fcf_indx,
923 phba->fcf.current_rec.switch_name[0],
924 phba->fcf.current_rec.switch_name[1],
925 phba->fcf.current_rec.switch_name[2],
926 phba->fcf.current_rec.switch_name[3],
927 phba->fcf.current_rec.switch_name[4],
928 phba->fcf.current_rec.switch_name[5],
929 phba->fcf.current_rec.switch_name[6],
930 phba->fcf.current_rec.switch_name[7],
931 phba->fcf.current_rec.fabric_name[0],
932 phba->fcf.current_rec.fabric_name[1],
933 phba->fcf.current_rec.fabric_name[2],
934 phba->fcf.current_rec.fabric_name[3],
935 phba->fcf.current_rec.fabric_name[4],
936 phba->fcf.current_rec.fabric_name[5],
937 phba->fcf.current_rec.fabric_name[6],
938 phba->fcf.current_rec.fabric_name[7]);
939 lpfc_nlp_put(ndlp);
940 spin_lock_irq(&phba->hbalock);
941 phba->fcf.fcf_flag &= ~FCF_DISCOVERY;
942 spin_unlock_irq(&phba->hbalock);
943 goto out;
944 }
James Smart0c9ab6f2010-02-26 14:15:57 -0500945 if (!rc) {
946 /* Mark the FCF discovery process done */
James Smart999d8132010-03-15 11:24:56 -0400947 if (phba->hba_flag & HBA_FIP_SUPPORT)
948 lpfc_printf_vlog(vport, KERN_INFO, LOG_FIP |
949 LOG_ELS,
950 "2769 FLOGI successful on FCF "
951 "record: current_fcf_index:"
952 "x%x, terminate FCF round "
953 "robin failover process\n",
954 phba->fcf.current_rec.fcf_indx);
James Smart0c9ab6f2010-02-26 14:15:57 -0500955 spin_lock_irq(&phba->hbalock);
956 phba->fcf.fcf_flag &= ~FCF_DISCOVERY;
957 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -0500958 goto out;
James Smart0c9ab6f2010-02-26 14:15:57 -0500959 }
dea31012005-04-17 16:05:31 -0500960 }
961
962flogifail:
James Smart329f9bc2007-04-25 09:53:01 -0400963 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -0500964
James Smart858c9f62007-06-17 19:56:39 -0500965 if (!lpfc_error_lost_link(irsp)) {
dea31012005-04-17 16:05:31 -0500966 /* FLOGI failed, so just use loop map to make discovery list */
James Smart2e0fef82007-06-17 19:56:36 -0500967 lpfc_disc_list_loopmap(vport);
dea31012005-04-17 16:05:31 -0500968
969 /* Start discovery */
James Smart2e0fef82007-06-17 19:56:36 -0500970 lpfc_disc_start(vport);
James Smart87af33f2007-10-27 13:37:43 -0400971 } else if (((irsp->ulpStatus != IOSTAT_LOCAL_REJECT) ||
972 ((irsp->un.ulpWord[4] != IOERR_SLI_ABORTED) &&
973 (irsp->un.ulpWord[4] != IOERR_SLI_DOWN))) &&
974 (phba->link_state != LPFC_CLEAR_LA)) {
975 /* If FLOGI failed enable link interrupt. */
976 lpfc_issue_clear_la(phba, vport);
dea31012005-04-17 16:05:31 -0500977 }
dea31012005-04-17 16:05:31 -0500978out:
979 lpfc_els_free_iocb(phba, cmdiocb);
980}
981
James Smarte59058c2008-08-24 21:49:00 -0400982/**
James Smart3621a712009-04-06 18:47:14 -0400983 * lpfc_issue_els_flogi - Issue an flogi iocb command for a vport
James Smarte59058c2008-08-24 21:49:00 -0400984 * @vport: pointer to a host virtual N_Port data structure.
985 * @ndlp: pointer to a node-list data structure.
986 * @retry: number of retries to the command IOCB.
987 *
988 * This routine issues a Fabric Login (FLOGI) Request ELS command
989 * for a @vport. The initiator service parameters are put into the payload
990 * of the FLOGI Request IOCB and the top-level callback function pointer
991 * to lpfc_cmpl_els_flogi() routine is put to the IOCB completion callback
992 * function field. The lpfc_issue_fabric_iocb routine is invoked to send
993 * out FLOGI ELS command with one outstanding fabric IOCB at a time.
994 *
995 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
996 * will be incremented by 1 for holding the ndlp and the reference to ndlp
997 * will be stored into the context1 field of the IOCB for the completion
998 * callback function to the FLOGI ELS command.
999 *
1000 * Return code
1001 * 0 - successfully issued flogi iocb for @vport
1002 * 1 - failed to issue flogi iocb for @vport
1003 **/
dea31012005-04-17 16:05:31 -05001004static int
James Smart2e0fef82007-06-17 19:56:36 -05001005lpfc_issue_els_flogi(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
dea31012005-04-17 16:05:31 -05001006 uint8_t retry)
1007{
James Smart2e0fef82007-06-17 19:56:36 -05001008 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05001009 struct serv_parm *sp;
1010 IOCB_t *icmd;
1011 struct lpfc_iocbq *elsiocb;
1012 struct lpfc_sli_ring *pring;
1013 uint8_t *pcmd;
1014 uint16_t cmdsize;
1015 uint32_t tmo;
1016 int rc;
1017
1018 pring = &phba->sli.ring[LPFC_ELS_RING];
1019
James Smart92d7f7b2007-06-17 19:56:38 -05001020 cmdsize = (sizeof(uint32_t) + sizeof(struct serv_parm));
James Smart2e0fef82007-06-17 19:56:36 -05001021 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
1022 ndlp->nlp_DID, ELS_CMD_FLOGI);
James Smart92d7f7b2007-06-17 19:56:38 -05001023
James Smart488d1462006-03-07 15:02:37 -05001024 if (!elsiocb)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001025 return 1;
dea31012005-04-17 16:05:31 -05001026
1027 icmd = &elsiocb->iocb;
1028 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
1029
1030 /* For FLOGI request, remainder of payload is service parameters */
1031 *((uint32_t *) (pcmd)) = ELS_CMD_FLOGI;
James Smart92d7f7b2007-06-17 19:56:38 -05001032 pcmd += sizeof(uint32_t);
1033 memcpy(pcmd, &vport->fc_sparam, sizeof(struct serv_parm));
dea31012005-04-17 16:05:31 -05001034 sp = (struct serv_parm *) pcmd;
1035
1036 /* Setup CSPs accordingly for Fabric */
1037 sp->cmn.e_d_tov = 0;
1038 sp->cmn.w2.r_a_tov = 0;
1039 sp->cls1.classValid = 0;
1040 sp->cls2.seqDelivery = 1;
1041 sp->cls3.seqDelivery = 1;
1042 if (sp->cmn.fcphLow < FC_PH3)
1043 sp->cmn.fcphLow = FC_PH3;
1044 if (sp->cmn.fcphHigh < FC_PH3)
1045 sp->cmn.fcphHigh = FC_PH3;
1046
James Smart6fb120a2009-05-22 14:52:59 -04001047 if (phba->sli_rev == LPFC_SLI_REV4) {
1048 elsiocb->iocb.ulpCt_h = ((SLI4_CT_FCFI >> 1) & 1);
1049 elsiocb->iocb.ulpCt_l = (SLI4_CT_FCFI & 1);
1050 /* FLOGI needs to be 3 for WQE FCFI */
1051 /* Set the fcfi to the fcfi we registered with */
1052 elsiocb->iocb.ulpContext = phba->fcf.fcfi;
1053 } else if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) {
James Smart92d7f7b2007-06-17 19:56:38 -05001054 sp->cmn.request_multiple_Nport = 1;
James Smart92d7f7b2007-06-17 19:56:38 -05001055 /* For FLOGI, Let FLOGI rsp set the NPortID for VPI 0 */
1056 icmd->ulpCt_h = 1;
1057 icmd->ulpCt_l = 0;
1058 }
1059
James Smart858c9f62007-06-17 19:56:39 -05001060 if (phba->fc_topology != TOPOLOGY_LOOP) {
1061 icmd->un.elsreq64.myID = 0;
1062 icmd->un.elsreq64.fl = 1;
1063 }
1064
dea31012005-04-17 16:05:31 -05001065 tmo = phba->fc_ratov;
1066 phba->fc_ratov = LPFC_DISC_FLOGI_TMO;
James Smart2e0fef82007-06-17 19:56:36 -05001067 lpfc_set_disctmo(vport);
dea31012005-04-17 16:05:31 -05001068 phba->fc_ratov = tmo;
1069
1070 phba->fc_stat.elsXmitFLOGI++;
1071 elsiocb->iocb_cmpl = lpfc_cmpl_els_flogi;
James Smart858c9f62007-06-17 19:56:39 -05001072
1073 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
1074 "Issue FLOGI: opt:x%x",
1075 phba->sli3_options, 0, 0);
1076
James Smart92d7f7b2007-06-17 19:56:38 -05001077 rc = lpfc_issue_fabric_iocb(phba, elsiocb);
dea31012005-04-17 16:05:31 -05001078 if (rc == IOCB_ERROR) {
1079 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001080 return 1;
dea31012005-04-17 16:05:31 -05001081 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001082 return 0;
dea31012005-04-17 16:05:31 -05001083}
1084
James Smarte59058c2008-08-24 21:49:00 -04001085/**
James Smart3621a712009-04-06 18:47:14 -04001086 * lpfc_els_abort_flogi - Abort all outstanding flogi iocbs
James Smarte59058c2008-08-24 21:49:00 -04001087 * @phba: pointer to lpfc hba data structure.
1088 *
1089 * This routine aborts all the outstanding Fabric Login (FLOGI) IOCBs
1090 * with a @phba. This routine walks all the outstanding IOCBs on the txcmplq
1091 * list and issues an abort IOCB commond on each outstanding IOCB that
1092 * contains a active Fabric_DID ndlp. Note that this function is to issue
1093 * the abort IOCB command on all the outstanding IOCBs, thus when this
1094 * function returns, it does not guarantee all the IOCBs are actually aborted.
1095 *
1096 * Return code
Daniel Mack3ad2f3f2010-02-03 08:01:28 +08001097 * 0 - Successfully issued abort iocb on all outstanding flogis (Always 0)
James Smarte59058c2008-08-24 21:49:00 -04001098 **/
dea31012005-04-17 16:05:31 -05001099int
James Smart2e0fef82007-06-17 19:56:36 -05001100lpfc_els_abort_flogi(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -05001101{
1102 struct lpfc_sli_ring *pring;
1103 struct lpfc_iocbq *iocb, *next_iocb;
1104 struct lpfc_nodelist *ndlp;
1105 IOCB_t *icmd;
1106
1107 /* Abort outstanding I/O on NPort <nlp_DID> */
1108 lpfc_printf_log(phba, KERN_INFO, LOG_DISCOVERY,
James Smarte8b62012007-08-02 11:10:09 -04001109 "0201 Abort outstanding I/O on NPort x%x\n",
1110 Fabric_DID);
dea31012005-04-17 16:05:31 -05001111
1112 pring = &phba->sli.ring[LPFC_ELS_RING];
1113
1114 /*
1115 * Check the txcmplq for an iocb that matches the nport the driver is
1116 * searching for.
1117 */
James Smart2e0fef82007-06-17 19:56:36 -05001118 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05001119 list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq, list) {
1120 icmd = &iocb->iocb;
James Smart2e0fef82007-06-17 19:56:36 -05001121 if (icmd->ulpCommand == CMD_ELS_REQUEST64_CR &&
1122 icmd->un.elsreq64.bdl.ulpIoTag32) {
dea31012005-04-17 16:05:31 -05001123 ndlp = (struct lpfc_nodelist *)(iocb->context1);
James Smart58da1ff2008-04-07 10:15:56 -04001124 if (ndlp && NLP_CHK_NODE_ACT(ndlp) &&
1125 (ndlp->nlp_DID == Fabric_DID))
James Smart07951072007-04-25 09:51:38 -04001126 lpfc_sli_issue_abort_iotag(phba, pring, iocb);
dea31012005-04-17 16:05:31 -05001127 }
1128 }
James Smart2e0fef82007-06-17 19:56:36 -05001129 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05001130
1131 return 0;
1132}
1133
James Smarte59058c2008-08-24 21:49:00 -04001134/**
James Smart3621a712009-04-06 18:47:14 -04001135 * lpfc_initial_flogi - Issue an initial fabric login for a vport
James Smarte59058c2008-08-24 21:49:00 -04001136 * @vport: pointer to a host virtual N_Port data structure.
1137 *
1138 * This routine issues an initial Fabric Login (FLOGI) for the @vport
1139 * specified. It first searches the ndlp with the Fabric_DID (0xfffffe) from
1140 * the @vport's ndlp list. If no such ndlp found, it will create an ndlp and
1141 * put it into the @vport's ndlp list. If an inactive ndlp found on the list,
1142 * it will just be enabled and made active. The lpfc_issue_els_flogi() routine
1143 * is then invoked with the @vport and the ndlp to perform the FLOGI for the
1144 * @vport.
1145 *
1146 * Return code
1147 * 0 - failed to issue initial flogi for @vport
1148 * 1 - successfully issued initial flogi for @vport
1149 **/
dea31012005-04-17 16:05:31 -05001150int
James Smart2e0fef82007-06-17 19:56:36 -05001151lpfc_initial_flogi(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05001152{
James Smart2e0fef82007-06-17 19:56:36 -05001153 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05001154 struct lpfc_nodelist *ndlp;
1155
James Smart98c9ea52007-10-27 13:37:33 -04001156 vport->port_state = LPFC_FLOGI;
1157 lpfc_set_disctmo(vport);
1158
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001159 /* First look for the Fabric ndlp */
James Smart2e0fef82007-06-17 19:56:36 -05001160 ndlp = lpfc_findnode_did(vport, Fabric_DID);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001161 if (!ndlp) {
dea31012005-04-17 16:05:31 -05001162 /* Cannot find existing Fabric ndlp, so allocate a new one */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001163 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
1164 if (!ndlp)
1165 return 0;
James Smart2e0fef82007-06-17 19:56:36 -05001166 lpfc_nlp_init(vport, ndlp, Fabric_DID);
James Smart6fb120a2009-05-22 14:52:59 -04001167 /* Set the node type */
1168 ndlp->nlp_type |= NLP_FABRIC;
James Smarte47c9092008-02-08 18:49:26 -05001169 /* Put ndlp onto node list */
1170 lpfc_enqueue_node(vport, ndlp);
1171 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
1172 /* re-setup ndlp without removing from node list */
1173 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
1174 if (!ndlp)
1175 return 0;
dea31012005-04-17 16:05:31 -05001176 }
James Smart87af33f2007-10-27 13:37:43 -04001177
James Smarte47c9092008-02-08 18:49:26 -05001178 if (lpfc_issue_els_flogi(vport, ndlp, 0))
James Smartfa4066b2008-01-11 01:53:27 -05001179 /* This decrement of reference count to node shall kick off
1180 * the release of the node.
1181 */
James Smart329f9bc2007-04-25 09:53:01 -04001182 lpfc_nlp_put(ndlp);
James Smarte47c9092008-02-08 18:49:26 -05001183
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001184 return 1;
dea31012005-04-17 16:05:31 -05001185}
1186
James Smarte59058c2008-08-24 21:49:00 -04001187/**
James Smart3621a712009-04-06 18:47:14 -04001188 * lpfc_initial_fdisc - Issue an initial fabric discovery for a vport
James Smarte59058c2008-08-24 21:49:00 -04001189 * @vport: pointer to a host virtual N_Port data structure.
1190 *
1191 * This routine issues an initial Fabric Discover (FDISC) for the @vport
1192 * specified. It first searches the ndlp with the Fabric_DID (0xfffffe) from
1193 * the @vport's ndlp list. If no such ndlp found, it will create an ndlp and
1194 * put it into the @vport's ndlp list. If an inactive ndlp found on the list,
1195 * it will just be enabled and made active. The lpfc_issue_els_fdisc() routine
1196 * is then invoked with the @vport and the ndlp to perform the FDISC for the
1197 * @vport.
1198 *
1199 * Return code
1200 * 0 - failed to issue initial fdisc for @vport
1201 * 1 - successfully issued initial fdisc for @vport
1202 **/
James Smart92d7f7b2007-06-17 19:56:38 -05001203int
1204lpfc_initial_fdisc(struct lpfc_vport *vport)
1205{
1206 struct lpfc_hba *phba = vport->phba;
1207 struct lpfc_nodelist *ndlp;
1208
1209 /* First look for the Fabric ndlp */
1210 ndlp = lpfc_findnode_did(vport, Fabric_DID);
1211 if (!ndlp) {
1212 /* Cannot find existing Fabric ndlp, so allocate a new one */
1213 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
1214 if (!ndlp)
1215 return 0;
1216 lpfc_nlp_init(vport, ndlp, Fabric_DID);
James Smarte47c9092008-02-08 18:49:26 -05001217 /* Put ndlp onto node list */
1218 lpfc_enqueue_node(vport, ndlp);
1219 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
1220 /* re-setup ndlp without removing from node list */
1221 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
1222 if (!ndlp)
1223 return 0;
James Smart92d7f7b2007-06-17 19:56:38 -05001224 }
James Smarte47c9092008-02-08 18:49:26 -05001225
James Smart92d7f7b2007-06-17 19:56:38 -05001226 if (lpfc_issue_els_fdisc(vport, ndlp, 0)) {
James Smartfa4066b2008-01-11 01:53:27 -05001227 /* decrement node reference count to trigger the release of
1228 * the node.
1229 */
James Smart92d7f7b2007-06-17 19:56:38 -05001230 lpfc_nlp_put(ndlp);
James Smartfa4066b2008-01-11 01:53:27 -05001231 return 0;
James Smart92d7f7b2007-06-17 19:56:38 -05001232 }
1233 return 1;
1234}
James Smart87af33f2007-10-27 13:37:43 -04001235
James Smarte59058c2008-08-24 21:49:00 -04001236/**
James Smart3621a712009-04-06 18:47:14 -04001237 * lpfc_more_plogi - Check and issue remaining plogis for a vport
James Smarte59058c2008-08-24 21:49:00 -04001238 * @vport: pointer to a host virtual N_Port data structure.
1239 *
1240 * This routine checks whether there are more remaining Port Logins
1241 * (PLOGI) to be issued for the @vport. If so, it will invoke the routine
1242 * lpfc_els_disc_plogi() to go through the Node Port Recovery (NPR) nodes
1243 * to issue ELS PLOGIs up to the configured discover threads with the
1244 * @vport (@vport->cfg_discovery_threads). The function also decrement
1245 * the @vport's num_disc_node by 1 if it is not already 0.
1246 **/
James Smart87af33f2007-10-27 13:37:43 -04001247void
James Smart2e0fef82007-06-17 19:56:36 -05001248lpfc_more_plogi(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05001249{
1250 int sentplogi;
1251
James Smart2e0fef82007-06-17 19:56:36 -05001252 if (vport->num_disc_nodes)
1253 vport->num_disc_nodes--;
dea31012005-04-17 16:05:31 -05001254
1255 /* Continue discovery with <num_disc_nodes> PLOGIs to go */
James Smarte8b62012007-08-02 11:10:09 -04001256 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
1257 "0232 Continue discovery with %d PLOGIs to go "
1258 "Data: x%x x%x x%x\n",
1259 vport->num_disc_nodes, vport->fc_plogi_cnt,
1260 vport->fc_flag, vport->port_state);
dea31012005-04-17 16:05:31 -05001261 /* Check to see if there are more PLOGIs to be sent */
James Smart2e0fef82007-06-17 19:56:36 -05001262 if (vport->fc_flag & FC_NLP_MORE)
1263 /* go thru NPR nodes and issue any remaining ELS PLOGIs */
1264 sentplogi = lpfc_els_disc_plogi(vport);
1265
dea31012005-04-17 16:05:31 -05001266 return;
1267}
1268
James Smarte59058c2008-08-24 21:49:00 -04001269/**
James Smart3621a712009-04-06 18:47:14 -04001270 * lpfc_plogi_confirm_nport - Confirm pologi wwpn matches stored ndlp
James Smarte59058c2008-08-24 21:49:00 -04001271 * @phba: pointer to lpfc hba data structure.
1272 * @prsp: pointer to response IOCB payload.
1273 * @ndlp: pointer to a node-list data structure.
1274 *
1275 * This routine checks and indicates whether the WWPN of an N_Port, retrieved
1276 * from a PLOGI, matches the WWPN that is stored in the @ndlp for that N_POrt.
1277 * The following cases are considered N_Port confirmed:
1278 * 1) The N_Port is a Fabric ndlp; 2) The @ndlp is on vport list and matches
1279 * the WWPN of the N_Port logged into; 3) The @ndlp is not on vport list but
1280 * it does not have WWPN assigned either. If the WWPN is confirmed, the
1281 * pointer to the @ndlp will be returned. If the WWPN is not confirmed:
1282 * 1) if there is a node on vport list other than the @ndlp with the same
1283 * WWPN of the N_Port PLOGI logged into, the lpfc_unreg_rpi() will be invoked
1284 * on that node to release the RPI associated with the node; 2) if there is
1285 * no node found on vport list with the same WWPN of the N_Port PLOGI logged
1286 * into, a new node shall be allocated (or activated). In either case, the
1287 * parameters of the @ndlp shall be copied to the new_ndlp, the @ndlp shall
1288 * be released and the new_ndlp shall be put on to the vport node list and
1289 * its pointer returned as the confirmed node.
1290 *
1291 * Note that before the @ndlp got "released", the keepDID from not-matching
1292 * or inactive "new_ndlp" on the vport node list is assigned to the nlp_DID
1293 * of the @ndlp. This is because the release of @ndlp is actually to put it
1294 * into an inactive state on the vport node list and the vport node list
1295 * management algorithm does not allow two node with a same DID.
1296 *
1297 * Return code
1298 * pointer to the PLOGI N_Port @ndlp
1299 **/
James Smart488d1462006-03-07 15:02:37 -05001300static struct lpfc_nodelist *
James Smart92d7f7b2007-06-17 19:56:38 -05001301lpfc_plogi_confirm_nport(struct lpfc_hba *phba, uint32_t *prsp,
James Smart488d1462006-03-07 15:02:37 -05001302 struct lpfc_nodelist *ndlp)
1303{
James Smart2e0fef82007-06-17 19:56:36 -05001304 struct lpfc_vport *vport = ndlp->vport;
James Smart488d1462006-03-07 15:02:37 -05001305 struct lpfc_nodelist *new_ndlp;
James Smart0ff10d42008-01-11 01:52:36 -05001306 struct lpfc_rport_data *rdata;
1307 struct fc_rport *rport;
James Smart488d1462006-03-07 15:02:37 -05001308 struct serv_parm *sp;
James Smart92d7f7b2007-06-17 19:56:38 -05001309 uint8_t name[sizeof(struct lpfc_name)];
James Smart58da1ff2008-04-07 10:15:56 -04001310 uint32_t rc, keepDID = 0;
James Smart38b92ef2010-08-04 16:11:39 -04001311 int put_node;
1312 int put_rport;
James Smart488d1462006-03-07 15:02:37 -05001313
James Smart2fb9bd82006-12-02 13:33:57 -05001314 /* Fabric nodes can have the same WWPN so we don't bother searching
1315 * by WWPN. Just return the ndlp that was given to us.
1316 */
1317 if (ndlp->nlp_type & NLP_FABRIC)
1318 return ndlp;
1319
James Smart92d7f7b2007-06-17 19:56:38 -05001320 sp = (struct serv_parm *) ((uint8_t *) prsp + sizeof(uint32_t));
James Smart685f0bf2007-04-25 09:53:08 -04001321 memset(name, 0, sizeof(struct lpfc_name));
James Smart488d1462006-03-07 15:02:37 -05001322
James Smart685f0bf2007-04-25 09:53:08 -04001323 /* Now we find out if the NPort we are logging into, matches the WWPN
James Smart488d1462006-03-07 15:02:37 -05001324 * we have for that ndlp. If not, we have some work to do.
1325 */
James Smart2e0fef82007-06-17 19:56:36 -05001326 new_ndlp = lpfc_findnode_wwpn(vport, &sp->portName);
James Smart488d1462006-03-07 15:02:37 -05001327
James Smarte47c9092008-02-08 18:49:26 -05001328 if (new_ndlp == ndlp && NLP_CHK_NODE_ACT(new_ndlp))
James Smart488d1462006-03-07 15:02:37 -05001329 return ndlp;
James Smart488d1462006-03-07 15:02:37 -05001330
1331 if (!new_ndlp) {
James Smart2e0fef82007-06-17 19:56:36 -05001332 rc = memcmp(&ndlp->nlp_portname, name,
1333 sizeof(struct lpfc_name));
James Smart92795652006-07-06 15:50:02 -04001334 if (!rc)
1335 return ndlp;
James Smart488d1462006-03-07 15:02:37 -05001336 new_ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_ATOMIC);
1337 if (!new_ndlp)
1338 return ndlp;
James Smart2e0fef82007-06-17 19:56:36 -05001339 lpfc_nlp_init(vport, new_ndlp, ndlp->nlp_DID);
James Smarte47c9092008-02-08 18:49:26 -05001340 } else if (!NLP_CHK_NODE_ACT(new_ndlp)) {
James Smart58da1ff2008-04-07 10:15:56 -04001341 rc = memcmp(&ndlp->nlp_portname, name,
1342 sizeof(struct lpfc_name));
1343 if (!rc)
1344 return ndlp;
James Smarte47c9092008-02-08 18:49:26 -05001345 new_ndlp = lpfc_enable_node(vport, new_ndlp,
1346 NLP_STE_UNUSED_NODE);
1347 if (!new_ndlp)
1348 return ndlp;
James Smart58da1ff2008-04-07 10:15:56 -04001349 keepDID = new_ndlp->nlp_DID;
1350 } else
1351 keepDID = new_ndlp->nlp_DID;
James Smart488d1462006-03-07 15:02:37 -05001352
James Smart2e0fef82007-06-17 19:56:36 -05001353 lpfc_unreg_rpi(vport, new_ndlp);
James Smart488d1462006-03-07 15:02:37 -05001354 new_ndlp->nlp_DID = ndlp->nlp_DID;
James Smart92795652006-07-06 15:50:02 -04001355 new_ndlp->nlp_prev_state = ndlp->nlp_prev_state;
James Smart0ff10d42008-01-11 01:52:36 -05001356
1357 if (ndlp->nlp_flag & NLP_NPR_2B_DISC)
1358 new_ndlp->nlp_flag |= NLP_NPR_2B_DISC;
1359 ndlp->nlp_flag &= ~NLP_NPR_2B_DISC;
1360
James Smarte47c9092008-02-08 18:49:26 -05001361 /* Set state will put new_ndlp on to node list if not already done */
James Smart2e0fef82007-06-17 19:56:36 -05001362 lpfc_nlp_set_state(vport, new_ndlp, ndlp->nlp_state);
James Smart488d1462006-03-07 15:02:37 -05001363
James Smart2e0fef82007-06-17 19:56:36 -05001364 /* Move this back to NPR state */
James Smart87af33f2007-10-27 13:37:43 -04001365 if (memcmp(&ndlp->nlp_portname, name, sizeof(struct lpfc_name)) == 0) {
1366 /* The new_ndlp is replacing ndlp totally, so we need
1367 * to put ndlp on UNUSED list and try to free it.
1368 */
James Smart0ff10d42008-01-11 01:52:36 -05001369
1370 /* Fix up the rport accordingly */
1371 rport = ndlp->rport;
1372 if (rport) {
1373 rdata = rport->dd_data;
1374 if (rdata->pnode == ndlp) {
1375 lpfc_nlp_put(ndlp);
1376 ndlp->rport = NULL;
1377 rdata->pnode = lpfc_nlp_get(new_ndlp);
1378 new_ndlp->rport = rport;
1379 }
1380 new_ndlp->nlp_type = ndlp->nlp_type;
1381 }
James Smart58da1ff2008-04-07 10:15:56 -04001382 /* We shall actually free the ndlp with both nlp_DID and
1383 * nlp_portname fields equals 0 to avoid any ndlp on the
1384 * nodelist never to be used.
1385 */
1386 if (ndlp->nlp_DID == 0) {
1387 spin_lock_irq(&phba->ndlp_lock);
1388 NLP_SET_FREE_REQ(ndlp);
1389 spin_unlock_irq(&phba->ndlp_lock);
1390 }
James Smart0ff10d42008-01-11 01:52:36 -05001391
James Smart58da1ff2008-04-07 10:15:56 -04001392 /* Two ndlps cannot have the same did on the nodelist */
1393 ndlp->nlp_DID = keepDID;
James Smart2e0fef82007-06-17 19:56:36 -05001394 lpfc_drop_node(vport, ndlp);
James Smart87af33f2007-10-27 13:37:43 -04001395 }
James Smart92795652006-07-06 15:50:02 -04001396 else {
James Smart2e0fef82007-06-17 19:56:36 -05001397 lpfc_unreg_rpi(vport, ndlp);
James Smart58da1ff2008-04-07 10:15:56 -04001398 /* Two ndlps cannot have the same did */
1399 ndlp->nlp_DID = keepDID;
James Smart2e0fef82007-06-17 19:56:36 -05001400 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
James Smart38b92ef2010-08-04 16:11:39 -04001401 /* Since we are swapping the ndlp passed in with the new one
1402 * and the did has already been swapped, copy over the
1403 * state and names.
1404 */
1405 memcpy(&new_ndlp->nlp_portname, &ndlp->nlp_portname,
1406 sizeof(struct lpfc_name));
1407 memcpy(&new_ndlp->nlp_nodename, &ndlp->nlp_nodename,
1408 sizeof(struct lpfc_name));
1409 new_ndlp->nlp_state = ndlp->nlp_state;
1410 /* Fix up the rport accordingly */
1411 rport = ndlp->rport;
1412 if (rport) {
1413 rdata = rport->dd_data;
1414 put_node = rdata->pnode != NULL;
1415 put_rport = ndlp->rport != NULL;
1416 rdata->pnode = NULL;
1417 ndlp->rport = NULL;
1418 if (put_node)
1419 lpfc_nlp_put(ndlp);
1420 if (put_rport)
1421 put_device(&rport->dev);
1422 }
James Smart92795652006-07-06 15:50:02 -04001423 }
James Smart488d1462006-03-07 15:02:37 -05001424 return new_ndlp;
1425}
1426
James Smarte59058c2008-08-24 21:49:00 -04001427/**
James Smart3621a712009-04-06 18:47:14 -04001428 * lpfc_end_rscn - Check and handle more rscn for a vport
James Smarte59058c2008-08-24 21:49:00 -04001429 * @vport: pointer to a host virtual N_Port data structure.
1430 *
1431 * This routine checks whether more Registration State Change
1432 * Notifications (RSCNs) came in while the discovery state machine was in
1433 * the FC_RSCN_MODE. If so, the lpfc_els_handle_rscn() routine will be
1434 * invoked to handle the additional RSCNs for the @vport. Otherwise, the
1435 * FC_RSCN_MODE bit will be cleared with the @vport to mark as the end of
1436 * handling the RSCNs.
1437 **/
James Smart87af33f2007-10-27 13:37:43 -04001438void
1439lpfc_end_rscn(struct lpfc_vport *vport)
1440{
1441 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1442
1443 if (vport->fc_flag & FC_RSCN_MODE) {
1444 /*
1445 * Check to see if more RSCNs came in while we were
1446 * processing this one.
1447 */
1448 if (vport->fc_rscn_id_cnt ||
1449 (vport->fc_flag & FC_RSCN_DISCOVERY) != 0)
1450 lpfc_els_handle_rscn(vport);
1451 else {
1452 spin_lock_irq(shost->host_lock);
1453 vport->fc_flag &= ~FC_RSCN_MODE;
1454 spin_unlock_irq(shost->host_lock);
1455 }
1456 }
1457}
1458
James Smarte59058c2008-08-24 21:49:00 -04001459/**
James Smart3621a712009-04-06 18:47:14 -04001460 * lpfc_cmpl_els_plogi - Completion callback function for plogi
James Smarte59058c2008-08-24 21:49:00 -04001461 * @phba: pointer to lpfc hba data structure.
1462 * @cmdiocb: pointer to lpfc command iocb data structure.
1463 * @rspiocb: pointer to lpfc response iocb data structure.
1464 *
1465 * This routine is the completion callback function for issuing the Port
1466 * Login (PLOGI) command. For PLOGI completion, there must be an active
1467 * ndlp on the vport node list that matches the remote node ID from the
1468 * PLOGI reponse IOCB. If such ndlp does not exist, the PLOGI is simply
1469 * ignored and command IOCB released. The PLOGI response IOCB status is
1470 * checked for error conditons. If there is error status reported, PLOGI
1471 * retry shall be attempted by invoking the lpfc_els_retry() routine.
1472 * Otherwise, the lpfc_plogi_confirm_nport() routine shall be invoked on
1473 * the ndlp and the NLP_EVT_CMPL_PLOGI state to the Discover State Machine
1474 * (DSM) is set for this PLOGI completion. Finally, it checks whether
1475 * there are additional N_Port nodes with the vport that need to perform
1476 * PLOGI. If so, the lpfc_more_plogi() routine is invoked to issue addition
1477 * PLOGIs.
1478 **/
dea31012005-04-17 16:05:31 -05001479static void
James Smart2e0fef82007-06-17 19:56:36 -05001480lpfc_cmpl_els_plogi(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
1481 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05001482{
James Smart2e0fef82007-06-17 19:56:36 -05001483 struct lpfc_vport *vport = cmdiocb->vport;
1484 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05001485 IOCB_t *irsp;
dea31012005-04-17 16:05:31 -05001486 struct lpfc_nodelist *ndlp;
James Smart92795652006-07-06 15:50:02 -04001487 struct lpfc_dmabuf *prsp;
dea31012005-04-17 16:05:31 -05001488 int disc, rc, did, type;
1489
dea31012005-04-17 16:05:31 -05001490 /* we pass cmdiocb to state machine which needs rspiocb as well */
1491 cmdiocb->context_un.rsp_iocb = rspiocb;
1492
1493 irsp = &rspiocb->iocb;
James Smart858c9f62007-06-17 19:56:39 -05001494 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
1495 "PLOGI cmpl: status:x%x/x%x did:x%x",
1496 irsp->ulpStatus, irsp->un.ulpWord[4],
1497 irsp->un.elsreq64.remoteID);
1498
James Smart2e0fef82007-06-17 19:56:36 -05001499 ndlp = lpfc_findnode_did(vport, irsp->un.elsreq64.remoteID);
James Smarte47c9092008-02-08 18:49:26 -05001500 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp)) {
James Smarte8b62012007-08-02 11:10:09 -04001501 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
1502 "0136 PLOGI completes to NPort x%x "
1503 "with no ndlp. Data: x%x x%x x%x\n",
1504 irsp->un.elsreq64.remoteID,
1505 irsp->ulpStatus, irsp->un.ulpWord[4],
1506 irsp->ulpIoTag);
James Smart488d1462006-03-07 15:02:37 -05001507 goto out;
James Smarted957682007-06-17 19:56:37 -05001508 }
dea31012005-04-17 16:05:31 -05001509
1510 /* Since ndlp can be freed in the disc state machine, note if this node
1511 * is being used during discovery.
1512 */
James Smart2e0fef82007-06-17 19:56:36 -05001513 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001514 disc = (ndlp->nlp_flag & NLP_NPR_2B_DISC);
James Smart488d1462006-03-07 15:02:37 -05001515 ndlp->nlp_flag &= ~NLP_NPR_2B_DISC;
James Smart2e0fef82007-06-17 19:56:36 -05001516 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001517 rc = 0;
1518
1519 /* PLOGI completes to NPort <nlp_DID> */
James Smarte8b62012007-08-02 11:10:09 -04001520 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
1521 "0102 PLOGI completes to NPort x%x "
1522 "Data: x%x x%x x%x x%x x%x\n",
1523 ndlp->nlp_DID, irsp->ulpStatus, irsp->un.ulpWord[4],
1524 irsp->ulpTimeout, disc, vport->num_disc_nodes);
dea31012005-04-17 16:05:31 -05001525 /* Check to see if link went down during discovery */
James Smart2e0fef82007-06-17 19:56:36 -05001526 if (lpfc_els_chk_latt(vport)) {
1527 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001528 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
James Smart2e0fef82007-06-17 19:56:36 -05001529 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001530 goto out;
1531 }
1532
1533 /* ndlp could be freed in DSM, save these values now */
1534 type = ndlp->nlp_type;
1535 did = ndlp->nlp_DID;
1536
1537 if (irsp->ulpStatus) {
1538 /* Check for retry */
1539 if (lpfc_els_retry(phba, cmdiocb, rspiocb)) {
1540 /* ELS command is being retried */
1541 if (disc) {
James Smart2e0fef82007-06-17 19:56:36 -05001542 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001543 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
James Smart2e0fef82007-06-17 19:56:36 -05001544 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001545 }
1546 goto out;
1547 }
James Smart2a9bf3d2010-06-07 15:24:45 -04001548 /* PLOGI failed Don't print the vport to vport rjts */
1549 if (irsp->ulpStatus != IOSTAT_LS_RJT ||
1550 (((irsp->un.ulpWord[4]) >> 16 != LSRJT_INVALID_CMD) &&
1551 ((irsp->un.ulpWord[4]) >> 16 != LSRJT_UNABLE_TPC)) ||
1552 (phba)->pport->cfg_log_verbose & LOG_ELS)
1553 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
James Smarte40a02c2010-02-26 14:13:54 -05001554 "2753 PLOGI failure DID:%06X Status:x%x/x%x\n",
1555 ndlp->nlp_DID, irsp->ulpStatus,
1556 irsp->un.ulpWord[4]);
dea31012005-04-17 16:05:31 -05001557 /* Do not call DSM for lpfc_els_abort'ed ELS cmds */
James Smarte47c9092008-02-08 18:49:26 -05001558 if (lpfc_error_lost_link(irsp))
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001559 rc = NLP_STE_FREED_NODE;
James Smarte47c9092008-02-08 18:49:26 -05001560 else
James Smart2e0fef82007-06-17 19:56:36 -05001561 rc = lpfc_disc_state_machine(vport, ndlp, cmdiocb,
James Smart92d7f7b2007-06-17 19:56:38 -05001562 NLP_EVT_CMPL_PLOGI);
dea31012005-04-17 16:05:31 -05001563 } else {
1564 /* Good status, call state machine */
James Smart92795652006-07-06 15:50:02 -04001565 prsp = list_entry(((struct lpfc_dmabuf *)
James Smart92d7f7b2007-06-17 19:56:38 -05001566 cmdiocb->context2)->list.next,
1567 struct lpfc_dmabuf, list);
1568 ndlp = lpfc_plogi_confirm_nport(phba, prsp->virt, ndlp);
James Smart2e0fef82007-06-17 19:56:36 -05001569 rc = lpfc_disc_state_machine(vport, ndlp, cmdiocb,
James Smart92d7f7b2007-06-17 19:56:38 -05001570 NLP_EVT_CMPL_PLOGI);
dea31012005-04-17 16:05:31 -05001571 }
1572
James Smart2e0fef82007-06-17 19:56:36 -05001573 if (disc && vport->num_disc_nodes) {
dea31012005-04-17 16:05:31 -05001574 /* Check to see if there are more PLOGIs to be sent */
James Smart2e0fef82007-06-17 19:56:36 -05001575 lpfc_more_plogi(vport);
dea31012005-04-17 16:05:31 -05001576
James Smart2e0fef82007-06-17 19:56:36 -05001577 if (vport->num_disc_nodes == 0) {
1578 spin_lock_irq(shost->host_lock);
1579 vport->fc_flag &= ~FC_NDISC_ACTIVE;
1580 spin_unlock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001581
James Smart2e0fef82007-06-17 19:56:36 -05001582 lpfc_can_disctmo(vport);
James Smart87af33f2007-10-27 13:37:43 -04001583 lpfc_end_rscn(vport);
dea31012005-04-17 16:05:31 -05001584 }
1585 }
1586
1587out:
1588 lpfc_els_free_iocb(phba, cmdiocb);
1589 return;
1590}
1591
James Smarte59058c2008-08-24 21:49:00 -04001592/**
James Smart3621a712009-04-06 18:47:14 -04001593 * lpfc_issue_els_plogi - Issue an plogi iocb command for a vport
James Smarte59058c2008-08-24 21:49:00 -04001594 * @vport: pointer to a host virtual N_Port data structure.
1595 * @did: destination port identifier.
1596 * @retry: number of retries to the command IOCB.
1597 *
1598 * This routine issues a Port Login (PLOGI) command to a remote N_Port
1599 * (with the @did) for a @vport. Before issuing a PLOGI to a remote N_Port,
1600 * the ndlp with the remote N_Port DID must exist on the @vport's ndlp list.
1601 * This routine constructs the proper feilds of the PLOGI IOCB and invokes
1602 * the lpfc_sli_issue_iocb() routine to send out PLOGI ELS command.
1603 *
1604 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
1605 * will be incremented by 1 for holding the ndlp and the reference to ndlp
1606 * will be stored into the context1 field of the IOCB for the completion
1607 * callback function to the PLOGI ELS command.
1608 *
1609 * Return code
1610 * 0 - Successfully issued a plogi for @vport
1611 * 1 - failed to issue a plogi for @vport
1612 **/
dea31012005-04-17 16:05:31 -05001613int
James Smart2e0fef82007-06-17 19:56:36 -05001614lpfc_issue_els_plogi(struct lpfc_vport *vport, uint32_t did, uint8_t retry)
dea31012005-04-17 16:05:31 -05001615{
James Smart2e0fef82007-06-17 19:56:36 -05001616 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05001617 struct serv_parm *sp;
1618 IOCB_t *icmd;
James Smart98c9ea52007-10-27 13:37:33 -04001619 struct lpfc_nodelist *ndlp;
dea31012005-04-17 16:05:31 -05001620 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05001621 struct lpfc_sli *psli;
1622 uint8_t *pcmd;
1623 uint16_t cmdsize;
James Smart92d7f7b2007-06-17 19:56:38 -05001624 int ret;
dea31012005-04-17 16:05:31 -05001625
1626 psli = &phba->sli;
dea31012005-04-17 16:05:31 -05001627
James Smart98c9ea52007-10-27 13:37:33 -04001628 ndlp = lpfc_findnode_did(vport, did);
James Smarte47c9092008-02-08 18:49:26 -05001629 if (ndlp && !NLP_CHK_NODE_ACT(ndlp))
1630 ndlp = NULL;
James Smart98c9ea52007-10-27 13:37:33 -04001631
James Smarte47c9092008-02-08 18:49:26 -05001632 /* If ndlp is not NULL, we will bump the reference count on it */
James Smart92d7f7b2007-06-17 19:56:38 -05001633 cmdsize = (sizeof(uint32_t) + sizeof(struct serv_parm));
James Smart98c9ea52007-10-27 13:37:33 -04001634 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp, did,
James Smart2e0fef82007-06-17 19:56:36 -05001635 ELS_CMD_PLOGI);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001636 if (!elsiocb)
1637 return 1;
dea31012005-04-17 16:05:31 -05001638
1639 icmd = &elsiocb->iocb;
1640 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
1641
1642 /* For PLOGI request, remainder of payload is service parameters */
1643 *((uint32_t *) (pcmd)) = ELS_CMD_PLOGI;
James Smart92d7f7b2007-06-17 19:56:38 -05001644 pcmd += sizeof(uint32_t);
1645 memcpy(pcmd, &vport->fc_sparam, sizeof(struct serv_parm));
dea31012005-04-17 16:05:31 -05001646 sp = (struct serv_parm *) pcmd;
1647
1648 if (sp->cmn.fcphLow < FC_PH_4_3)
1649 sp->cmn.fcphLow = FC_PH_4_3;
1650
1651 if (sp->cmn.fcphHigh < FC_PH3)
1652 sp->cmn.fcphHigh = FC_PH3;
1653
James Smart858c9f62007-06-17 19:56:39 -05001654 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
1655 "Issue PLOGI: did:x%x",
1656 did, 0, 0);
1657
dea31012005-04-17 16:05:31 -05001658 phba->fc_stat.elsXmitPLOGI++;
1659 elsiocb->iocb_cmpl = lpfc_cmpl_els_plogi;
James Smart3772a992009-05-22 14:50:54 -04001660 ret = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
James Smart92d7f7b2007-06-17 19:56:38 -05001661
1662 if (ret == IOCB_ERROR) {
dea31012005-04-17 16:05:31 -05001663 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001664 return 1;
dea31012005-04-17 16:05:31 -05001665 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001666 return 0;
dea31012005-04-17 16:05:31 -05001667}
1668
James Smarte59058c2008-08-24 21:49:00 -04001669/**
James Smart3621a712009-04-06 18:47:14 -04001670 * lpfc_cmpl_els_prli - Completion callback function for prli
James Smarte59058c2008-08-24 21:49:00 -04001671 * @phba: pointer to lpfc hba data structure.
1672 * @cmdiocb: pointer to lpfc command iocb data structure.
1673 * @rspiocb: pointer to lpfc response iocb data structure.
1674 *
1675 * This routine is the completion callback function for a Process Login
1676 * (PRLI) ELS command. The PRLI response IOCB status is checked for error
1677 * status. If there is error status reported, PRLI retry shall be attempted
1678 * by invoking the lpfc_els_retry() routine. Otherwise, the state
1679 * NLP_EVT_CMPL_PRLI is sent to the Discover State Machine (DSM) for this
1680 * ndlp to mark the PRLI completion.
1681 **/
dea31012005-04-17 16:05:31 -05001682static void
James Smart2e0fef82007-06-17 19:56:36 -05001683lpfc_cmpl_els_prli(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
1684 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05001685{
James Smart2e0fef82007-06-17 19:56:36 -05001686 struct lpfc_vport *vport = cmdiocb->vport;
1687 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05001688 IOCB_t *irsp;
1689 struct lpfc_sli *psli;
1690 struct lpfc_nodelist *ndlp;
1691
1692 psli = &phba->sli;
1693 /* we pass cmdiocb to state machine which needs rspiocb as well */
1694 cmdiocb->context_un.rsp_iocb = rspiocb;
1695
1696 irsp = &(rspiocb->iocb);
1697 ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
James Smart2e0fef82007-06-17 19:56:36 -05001698 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001699 ndlp->nlp_flag &= ~NLP_PRLI_SND;
James Smart2e0fef82007-06-17 19:56:36 -05001700 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001701
James Smart858c9f62007-06-17 19:56:39 -05001702 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
1703 "PRLI cmpl: status:x%x/x%x did:x%x",
1704 irsp->ulpStatus, irsp->un.ulpWord[4],
1705 ndlp->nlp_DID);
dea31012005-04-17 16:05:31 -05001706 /* PRLI completes to NPort <nlp_DID> */
James Smarte8b62012007-08-02 11:10:09 -04001707 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
1708 "0103 PRLI completes to NPort x%x "
1709 "Data: x%x x%x x%x x%x\n",
1710 ndlp->nlp_DID, irsp->ulpStatus, irsp->un.ulpWord[4],
1711 irsp->ulpTimeout, vport->num_disc_nodes);
dea31012005-04-17 16:05:31 -05001712
James Smart2e0fef82007-06-17 19:56:36 -05001713 vport->fc_prli_sent--;
dea31012005-04-17 16:05:31 -05001714 /* Check to see if link went down during discovery */
James Smart2e0fef82007-06-17 19:56:36 -05001715 if (lpfc_els_chk_latt(vport))
dea31012005-04-17 16:05:31 -05001716 goto out;
1717
1718 if (irsp->ulpStatus) {
1719 /* Check for retry */
1720 if (lpfc_els_retry(phba, cmdiocb, rspiocb)) {
1721 /* ELS command is being retried */
1722 goto out;
1723 }
1724 /* PRLI failed */
James Smarte40a02c2010-02-26 14:13:54 -05001725 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
1726 "2754 PRLI failure DID:%06X Status:x%x/x%x\n",
1727 ndlp->nlp_DID, irsp->ulpStatus,
1728 irsp->un.ulpWord[4]);
dea31012005-04-17 16:05:31 -05001729 /* Do not call DSM for lpfc_els_abort'ed ELS cmds */
James Smarte47c9092008-02-08 18:49:26 -05001730 if (lpfc_error_lost_link(irsp))
dea31012005-04-17 16:05:31 -05001731 goto out;
James Smarte47c9092008-02-08 18:49:26 -05001732 else
James Smart2e0fef82007-06-17 19:56:36 -05001733 lpfc_disc_state_machine(vport, ndlp, cmdiocb,
James Smart92d7f7b2007-06-17 19:56:38 -05001734 NLP_EVT_CMPL_PRLI);
James Smarte47c9092008-02-08 18:49:26 -05001735 } else
dea31012005-04-17 16:05:31 -05001736 /* Good status, call state machine */
James Smart2e0fef82007-06-17 19:56:36 -05001737 lpfc_disc_state_machine(vport, ndlp, cmdiocb,
James Smart92d7f7b2007-06-17 19:56:38 -05001738 NLP_EVT_CMPL_PRLI);
dea31012005-04-17 16:05:31 -05001739out:
1740 lpfc_els_free_iocb(phba, cmdiocb);
1741 return;
1742}
1743
James Smarte59058c2008-08-24 21:49:00 -04001744/**
James Smart3621a712009-04-06 18:47:14 -04001745 * lpfc_issue_els_prli - Issue a prli iocb command for a vport
James Smarte59058c2008-08-24 21:49:00 -04001746 * @vport: pointer to a host virtual N_Port data structure.
1747 * @ndlp: pointer to a node-list data structure.
1748 * @retry: number of retries to the command IOCB.
1749 *
1750 * This routine issues a Process Login (PRLI) ELS command for the
1751 * @vport. The PRLI service parameters are set up in the payload of the
1752 * PRLI Request command and the pointer to lpfc_cmpl_els_prli() routine
1753 * is put to the IOCB completion callback func field before invoking the
1754 * routine lpfc_sli_issue_iocb() to send out PRLI command.
1755 *
1756 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
1757 * will be incremented by 1 for holding the ndlp and the reference to ndlp
1758 * will be stored into the context1 field of the IOCB for the completion
1759 * callback function to the PRLI ELS command.
1760 *
1761 * Return code
1762 * 0 - successfully issued prli iocb command for @vport
1763 * 1 - failed to issue prli iocb command for @vport
1764 **/
dea31012005-04-17 16:05:31 -05001765int
James Smart2e0fef82007-06-17 19:56:36 -05001766lpfc_issue_els_prli(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
dea31012005-04-17 16:05:31 -05001767 uint8_t retry)
1768{
James Smart2e0fef82007-06-17 19:56:36 -05001769 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1770 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05001771 PRLI *npr;
1772 IOCB_t *icmd;
1773 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05001774 uint8_t *pcmd;
1775 uint16_t cmdsize;
1776
James Smart92d7f7b2007-06-17 19:56:38 -05001777 cmdsize = (sizeof(uint32_t) + sizeof(PRLI));
James Smart2e0fef82007-06-17 19:56:36 -05001778 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
1779 ndlp->nlp_DID, ELS_CMD_PRLI);
James Smart488d1462006-03-07 15:02:37 -05001780 if (!elsiocb)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001781 return 1;
dea31012005-04-17 16:05:31 -05001782
1783 icmd = &elsiocb->iocb;
1784 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
1785
1786 /* For PRLI request, remainder of payload is service parameters */
James Smart92d7f7b2007-06-17 19:56:38 -05001787 memset(pcmd, 0, (sizeof(PRLI) + sizeof(uint32_t)));
dea31012005-04-17 16:05:31 -05001788 *((uint32_t *) (pcmd)) = ELS_CMD_PRLI;
James Smart92d7f7b2007-06-17 19:56:38 -05001789 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05001790
1791 /* For PRLI, remainder of payload is PRLI parameter page */
1792 npr = (PRLI *) pcmd;
1793 /*
1794 * If our firmware version is 3.20 or later,
1795 * set the following bits for FC-TAPE support.
1796 */
1797 if (phba->vpd.rev.feaLevelHigh >= 0x02) {
1798 npr->ConfmComplAllowed = 1;
1799 npr->Retry = 1;
1800 npr->TaskRetryIdReq = 1;
1801 }
1802 npr->estabImagePair = 1;
1803 npr->readXferRdyDis = 1;
1804
1805 /* For FCP support */
1806 npr->prliType = PRLI_FCP_TYPE;
1807 npr->initiatorFunc = 1;
1808
James Smart858c9f62007-06-17 19:56:39 -05001809 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
1810 "Issue PRLI: did:x%x",
1811 ndlp->nlp_DID, 0, 0);
1812
dea31012005-04-17 16:05:31 -05001813 phba->fc_stat.elsXmitPRLI++;
1814 elsiocb->iocb_cmpl = lpfc_cmpl_els_prli;
James Smart2e0fef82007-06-17 19:56:36 -05001815 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001816 ndlp->nlp_flag |= NLP_PRLI_SND;
James Smart2e0fef82007-06-17 19:56:36 -05001817 spin_unlock_irq(shost->host_lock);
James Smart3772a992009-05-22 14:50:54 -04001818 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) ==
1819 IOCB_ERROR) {
James Smart2e0fef82007-06-17 19:56:36 -05001820 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001821 ndlp->nlp_flag &= ~NLP_PRLI_SND;
James Smart2e0fef82007-06-17 19:56:36 -05001822 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001823 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001824 return 1;
dea31012005-04-17 16:05:31 -05001825 }
James Smart2e0fef82007-06-17 19:56:36 -05001826 vport->fc_prli_sent++;
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001827 return 0;
dea31012005-04-17 16:05:31 -05001828}
1829
James Smarte59058c2008-08-24 21:49:00 -04001830/**
James Smart3621a712009-04-06 18:47:14 -04001831 * lpfc_rscn_disc - Perform rscn discovery for a vport
James Smart90160e02008-08-24 21:49:45 -04001832 * @vport: pointer to a host virtual N_Port data structure.
1833 *
1834 * This routine performs Registration State Change Notification (RSCN)
1835 * discovery for a @vport. If the @vport's node port recovery count is not
1836 * zero, it will invoke the lpfc_els_disc_plogi() to perform PLOGI for all
1837 * the nodes that need recovery. If none of the PLOGI were needed through
1838 * the lpfc_els_disc_plogi() routine, the lpfc_end_rscn() routine shall be
1839 * invoked to check and handle possible more RSCN came in during the period
1840 * of processing the current ones.
1841 **/
1842static void
1843lpfc_rscn_disc(struct lpfc_vport *vport)
1844{
1845 lpfc_can_disctmo(vport);
1846
1847 /* RSCN discovery */
1848 /* go thru NPR nodes and issue ELS PLOGIs */
1849 if (vport->fc_npr_cnt)
1850 if (lpfc_els_disc_plogi(vport))
1851 return;
1852
1853 lpfc_end_rscn(vport);
1854}
1855
1856/**
James Smart3621a712009-04-06 18:47:14 -04001857 * lpfc_adisc_done - Complete the adisc phase of discovery
James Smart90160e02008-08-24 21:49:45 -04001858 * @vport: pointer to lpfc_vport hba data structure that finished all ADISCs.
1859 *
1860 * This function is called when the final ADISC is completed during discovery.
1861 * This function handles clearing link attention or issuing reg_vpi depending
1862 * on whether npiv is enabled. This function also kicks off the PLOGI phase of
1863 * discovery.
1864 * This function is called with no locks held.
1865 **/
1866static void
1867lpfc_adisc_done(struct lpfc_vport *vport)
1868{
1869 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1870 struct lpfc_hba *phba = vport->phba;
1871
1872 /*
1873 * For NPIV, cmpl_reg_vpi will set port_state to READY,
1874 * and continue discovery.
1875 */
1876 if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
James Smart6fb120a2009-05-22 14:52:59 -04001877 !(vport->fc_flag & FC_RSCN_MODE) &&
1878 (phba->sli_rev < LPFC_SLI_REV4)) {
James Smart90160e02008-08-24 21:49:45 -04001879 lpfc_issue_reg_vpi(phba, vport);
1880 return;
1881 }
1882 /*
1883 * For SLI2, we need to set port_state to READY
1884 * and continue discovery.
1885 */
1886 if (vport->port_state < LPFC_VPORT_READY) {
1887 /* If we get here, there is nothing to ADISC */
1888 if (vport->port_type == LPFC_PHYSICAL_PORT)
1889 lpfc_issue_clear_la(phba, vport);
1890 if (!(vport->fc_flag & FC_ABORT_DISCOVERY)) {
1891 vport->num_disc_nodes = 0;
1892 /* go thru NPR list, issue ELS PLOGIs */
1893 if (vport->fc_npr_cnt)
1894 lpfc_els_disc_plogi(vport);
1895 if (!vport->num_disc_nodes) {
1896 spin_lock_irq(shost->host_lock);
1897 vport->fc_flag &= ~FC_NDISC_ACTIVE;
1898 spin_unlock_irq(shost->host_lock);
1899 lpfc_can_disctmo(vport);
1900 lpfc_end_rscn(vport);
1901 }
1902 }
1903 vport->port_state = LPFC_VPORT_READY;
1904 } else
1905 lpfc_rscn_disc(vport);
1906}
1907
1908/**
James Smart3621a712009-04-06 18:47:14 -04001909 * lpfc_more_adisc - Issue more adisc as needed
James Smarte59058c2008-08-24 21:49:00 -04001910 * @vport: pointer to a host virtual N_Port data structure.
1911 *
1912 * This routine determines whether there are more ndlps on a @vport
1913 * node list need to have Address Discover (ADISC) issued. If so, it will
1914 * invoke the lpfc_els_disc_adisc() routine to issue ADISC on the @vport's
1915 * remaining nodes which need to have ADISC sent.
1916 **/
James Smart0ff10d42008-01-11 01:52:36 -05001917void
James Smart2e0fef82007-06-17 19:56:36 -05001918lpfc_more_adisc(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05001919{
1920 int sentadisc;
1921
James Smart2e0fef82007-06-17 19:56:36 -05001922 if (vport->num_disc_nodes)
1923 vport->num_disc_nodes--;
dea31012005-04-17 16:05:31 -05001924 /* Continue discovery with <num_disc_nodes> ADISCs to go */
James Smarte8b62012007-08-02 11:10:09 -04001925 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
1926 "0210 Continue discovery with %d ADISCs to go "
1927 "Data: x%x x%x x%x\n",
1928 vport->num_disc_nodes, vport->fc_adisc_cnt,
1929 vport->fc_flag, vport->port_state);
dea31012005-04-17 16:05:31 -05001930 /* Check to see if there are more ADISCs to be sent */
James Smart2e0fef82007-06-17 19:56:36 -05001931 if (vport->fc_flag & FC_NLP_MORE) {
1932 lpfc_set_disctmo(vport);
1933 /* go thru NPR nodes and issue any remaining ELS ADISCs */
1934 sentadisc = lpfc_els_disc_adisc(vport);
dea31012005-04-17 16:05:31 -05001935 }
James Smart90160e02008-08-24 21:49:45 -04001936 if (!vport->num_disc_nodes)
1937 lpfc_adisc_done(vport);
dea31012005-04-17 16:05:31 -05001938 return;
1939}
1940
James Smarte59058c2008-08-24 21:49:00 -04001941/**
James Smart3621a712009-04-06 18:47:14 -04001942 * lpfc_cmpl_els_adisc - Completion callback function for adisc
James Smarte59058c2008-08-24 21:49:00 -04001943 * @phba: pointer to lpfc hba data structure.
1944 * @cmdiocb: pointer to lpfc command iocb data structure.
1945 * @rspiocb: pointer to lpfc response iocb data structure.
1946 *
1947 * This routine is the completion function for issuing the Address Discover
1948 * (ADISC) command. It first checks to see whether link went down during
1949 * the discovery process. If so, the node will be marked as node port
1950 * recovery for issuing discover IOCB by the link attention handler and
1951 * exit. Otherwise, the response status is checked. If error was reported
1952 * in the response status, the ADISC command shall be retried by invoking
1953 * the lpfc_els_retry() routine. Otherwise, if no error was reported in
1954 * the response status, the state machine is invoked to set transition
1955 * with respect to NLP_EVT_CMPL_ADISC event.
1956 **/
dea31012005-04-17 16:05:31 -05001957static void
James Smart2e0fef82007-06-17 19:56:36 -05001958lpfc_cmpl_els_adisc(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
1959 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05001960{
James Smart2e0fef82007-06-17 19:56:36 -05001961 struct lpfc_vport *vport = cmdiocb->vport;
1962 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05001963 IOCB_t *irsp;
dea31012005-04-17 16:05:31 -05001964 struct lpfc_nodelist *ndlp;
James Smart2e0fef82007-06-17 19:56:36 -05001965 int disc;
dea31012005-04-17 16:05:31 -05001966
1967 /* we pass cmdiocb to state machine which needs rspiocb as well */
1968 cmdiocb->context_un.rsp_iocb = rspiocb;
1969
1970 irsp = &(rspiocb->iocb);
1971 ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
dea31012005-04-17 16:05:31 -05001972
James Smart858c9f62007-06-17 19:56:39 -05001973 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
1974 "ADISC cmpl: status:x%x/x%x did:x%x",
1975 irsp->ulpStatus, irsp->un.ulpWord[4],
1976 ndlp->nlp_DID);
1977
dea31012005-04-17 16:05:31 -05001978 /* Since ndlp can be freed in the disc state machine, note if this node
1979 * is being used during discovery.
1980 */
James Smart2e0fef82007-06-17 19:56:36 -05001981 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001982 disc = (ndlp->nlp_flag & NLP_NPR_2B_DISC);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05001983 ndlp->nlp_flag &= ~(NLP_ADISC_SND | NLP_NPR_2B_DISC);
James Smart2e0fef82007-06-17 19:56:36 -05001984 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001985 /* ADISC completes to NPort <nlp_DID> */
James Smarte8b62012007-08-02 11:10:09 -04001986 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
1987 "0104 ADISC completes to NPort x%x "
1988 "Data: x%x x%x x%x x%x x%x\n",
1989 ndlp->nlp_DID, irsp->ulpStatus, irsp->un.ulpWord[4],
1990 irsp->ulpTimeout, disc, vport->num_disc_nodes);
dea31012005-04-17 16:05:31 -05001991 /* Check to see if link went down during discovery */
James Smart2e0fef82007-06-17 19:56:36 -05001992 if (lpfc_els_chk_latt(vport)) {
1993 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001994 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
James Smart2e0fef82007-06-17 19:56:36 -05001995 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001996 goto out;
1997 }
1998
1999 if (irsp->ulpStatus) {
2000 /* Check for retry */
2001 if (lpfc_els_retry(phba, cmdiocb, rspiocb)) {
2002 /* ELS command is being retried */
2003 if (disc) {
James Smart2e0fef82007-06-17 19:56:36 -05002004 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002005 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
James Smart2e0fef82007-06-17 19:56:36 -05002006 spin_unlock_irq(shost->host_lock);
2007 lpfc_set_disctmo(vport);
dea31012005-04-17 16:05:31 -05002008 }
2009 goto out;
2010 }
2011 /* ADISC failed */
James Smarte40a02c2010-02-26 14:13:54 -05002012 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
2013 "2755 ADISC failure DID:%06X Status:x%x/x%x\n",
2014 ndlp->nlp_DID, irsp->ulpStatus,
2015 irsp->un.ulpWord[4]);
dea31012005-04-17 16:05:31 -05002016 /* Do not call DSM for lpfc_els_abort'ed ELS cmds */
James Smarte47c9092008-02-08 18:49:26 -05002017 if (!lpfc_error_lost_link(irsp))
James Smart2e0fef82007-06-17 19:56:36 -05002018 lpfc_disc_state_machine(vport, ndlp, cmdiocb,
James Smart858c9f62007-06-17 19:56:39 -05002019 NLP_EVT_CMPL_ADISC);
James Smarte47c9092008-02-08 18:49:26 -05002020 } else
dea31012005-04-17 16:05:31 -05002021 /* Good status, call state machine */
James Smart2e0fef82007-06-17 19:56:36 -05002022 lpfc_disc_state_machine(vport, ndlp, cmdiocb,
dea31012005-04-17 16:05:31 -05002023 NLP_EVT_CMPL_ADISC);
dea31012005-04-17 16:05:31 -05002024
James Smart90160e02008-08-24 21:49:45 -04002025 /* Check to see if there are more ADISCs to be sent */
2026 if (disc && vport->num_disc_nodes)
James Smart2e0fef82007-06-17 19:56:36 -05002027 lpfc_more_adisc(vport);
dea31012005-04-17 16:05:31 -05002028out:
2029 lpfc_els_free_iocb(phba, cmdiocb);
2030 return;
2031}
2032
James Smarte59058c2008-08-24 21:49:00 -04002033/**
James Smart3621a712009-04-06 18:47:14 -04002034 * lpfc_issue_els_adisc - Issue an address discover iocb to an node on a vport
James Smarte59058c2008-08-24 21:49:00 -04002035 * @vport: pointer to a virtual N_Port data structure.
2036 * @ndlp: pointer to a node-list data structure.
2037 * @retry: number of retries to the command IOCB.
2038 *
2039 * This routine issues an Address Discover (ADISC) for an @ndlp on a
2040 * @vport. It prepares the payload of the ADISC ELS command, updates the
2041 * and states of the ndlp, and invokes the lpfc_sli_issue_iocb() routine
2042 * to issue the ADISC ELS command.
2043 *
2044 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
2045 * will be incremented by 1 for holding the ndlp and the reference to ndlp
2046 * will be stored into the context1 field of the IOCB for the completion
2047 * callback function to the ADISC ELS command.
2048 *
2049 * Return code
2050 * 0 - successfully issued adisc
2051 * 1 - failed to issue adisc
2052 **/
dea31012005-04-17 16:05:31 -05002053int
James Smart2e0fef82007-06-17 19:56:36 -05002054lpfc_issue_els_adisc(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
dea31012005-04-17 16:05:31 -05002055 uint8_t retry)
2056{
James Smart2e0fef82007-06-17 19:56:36 -05002057 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2058 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05002059 ADISC *ap;
2060 IOCB_t *icmd;
2061 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05002062 uint8_t *pcmd;
2063 uint16_t cmdsize;
2064
James Smart92d7f7b2007-06-17 19:56:38 -05002065 cmdsize = (sizeof(uint32_t) + sizeof(ADISC));
James Smart2e0fef82007-06-17 19:56:36 -05002066 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
2067 ndlp->nlp_DID, ELS_CMD_ADISC);
James Smart488d1462006-03-07 15:02:37 -05002068 if (!elsiocb)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002069 return 1;
dea31012005-04-17 16:05:31 -05002070
2071 icmd = &elsiocb->iocb;
2072 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
2073
2074 /* For ADISC request, remainder of payload is service parameters */
2075 *((uint32_t *) (pcmd)) = ELS_CMD_ADISC;
James Smart92d7f7b2007-06-17 19:56:38 -05002076 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05002077
2078 /* Fill in ADISC payload */
2079 ap = (ADISC *) pcmd;
2080 ap->hardAL_PA = phba->fc_pref_ALPA;
James Smart92d7f7b2007-06-17 19:56:38 -05002081 memcpy(&ap->portName, &vport->fc_portname, sizeof(struct lpfc_name));
2082 memcpy(&ap->nodeName, &vport->fc_nodename, sizeof(struct lpfc_name));
James Smart2e0fef82007-06-17 19:56:36 -05002083 ap->DID = be32_to_cpu(vport->fc_myDID);
dea31012005-04-17 16:05:31 -05002084
James Smart858c9f62007-06-17 19:56:39 -05002085 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2086 "Issue ADISC: did:x%x",
2087 ndlp->nlp_DID, 0, 0);
2088
dea31012005-04-17 16:05:31 -05002089 phba->fc_stat.elsXmitADISC++;
2090 elsiocb->iocb_cmpl = lpfc_cmpl_els_adisc;
James Smart2e0fef82007-06-17 19:56:36 -05002091 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002092 ndlp->nlp_flag |= NLP_ADISC_SND;
James Smart2e0fef82007-06-17 19:56:36 -05002093 spin_unlock_irq(shost->host_lock);
James Smart3772a992009-05-22 14:50:54 -04002094 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) ==
2095 IOCB_ERROR) {
James Smart2e0fef82007-06-17 19:56:36 -05002096 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002097 ndlp->nlp_flag &= ~NLP_ADISC_SND;
James Smart2e0fef82007-06-17 19:56:36 -05002098 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002099 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002100 return 1;
dea31012005-04-17 16:05:31 -05002101 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002102 return 0;
dea31012005-04-17 16:05:31 -05002103}
2104
James Smarte59058c2008-08-24 21:49:00 -04002105/**
James Smart3621a712009-04-06 18:47:14 -04002106 * lpfc_cmpl_els_logo - Completion callback function for logo
James Smarte59058c2008-08-24 21:49:00 -04002107 * @phba: pointer to lpfc hba data structure.
2108 * @cmdiocb: pointer to lpfc command iocb data structure.
2109 * @rspiocb: pointer to lpfc response iocb data structure.
2110 *
2111 * This routine is the completion function for issuing the ELS Logout (LOGO)
2112 * command. If no error status was reported from the LOGO response, the
2113 * state machine of the associated ndlp shall be invoked for transition with
2114 * respect to NLP_EVT_CMPL_LOGO event. Otherwise, if error status was reported,
2115 * the lpfc_els_retry() routine will be invoked to retry the LOGO command.
2116 **/
dea31012005-04-17 16:05:31 -05002117static void
James Smart2e0fef82007-06-17 19:56:36 -05002118lpfc_cmpl_els_logo(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
2119 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05002120{
James Smart2e0fef82007-06-17 19:56:36 -05002121 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
2122 struct lpfc_vport *vport = ndlp->vport;
2123 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05002124 IOCB_t *irsp;
2125 struct lpfc_sli *psli;
dea31012005-04-17 16:05:31 -05002126
2127 psli = &phba->sli;
2128 /* we pass cmdiocb to state machine which needs rspiocb as well */
2129 cmdiocb->context_un.rsp_iocb = rspiocb;
2130
2131 irsp = &(rspiocb->iocb);
James Smart2e0fef82007-06-17 19:56:36 -05002132 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002133 ndlp->nlp_flag &= ~NLP_LOGO_SND;
James Smart2e0fef82007-06-17 19:56:36 -05002134 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002135
James Smart858c9f62007-06-17 19:56:39 -05002136 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2137 "LOGO cmpl: status:x%x/x%x did:x%x",
2138 irsp->ulpStatus, irsp->un.ulpWord[4],
2139 ndlp->nlp_DID);
dea31012005-04-17 16:05:31 -05002140 /* LOGO completes to NPort <nlp_DID> */
James Smarte8b62012007-08-02 11:10:09 -04002141 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
2142 "0105 LOGO completes to NPort x%x "
2143 "Data: x%x x%x x%x x%x\n",
2144 ndlp->nlp_DID, irsp->ulpStatus, irsp->un.ulpWord[4],
2145 irsp->ulpTimeout, vport->num_disc_nodes);
dea31012005-04-17 16:05:31 -05002146 /* Check to see if link went down during discovery */
James Smart2e0fef82007-06-17 19:56:36 -05002147 if (lpfc_els_chk_latt(vport))
dea31012005-04-17 16:05:31 -05002148 goto out;
2149
James Smart92d7f7b2007-06-17 19:56:38 -05002150 if (ndlp->nlp_flag & NLP_TARGET_REMOVE) {
2151 /* NLP_EVT_DEVICE_RM should unregister the RPI
2152 * which should abort all outstanding IOs.
2153 */
2154 lpfc_disc_state_machine(vport, ndlp, cmdiocb,
2155 NLP_EVT_DEVICE_RM);
2156 goto out;
2157 }
2158
dea31012005-04-17 16:05:31 -05002159 if (irsp->ulpStatus) {
2160 /* Check for retry */
James Smart2e0fef82007-06-17 19:56:36 -05002161 if (lpfc_els_retry(phba, cmdiocb, rspiocb))
dea31012005-04-17 16:05:31 -05002162 /* ELS command is being retried */
2163 goto out;
dea31012005-04-17 16:05:31 -05002164 /* LOGO failed */
James Smarte40a02c2010-02-26 14:13:54 -05002165 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
2166 "2756 LOGO failure DID:%06X Status:x%x/x%x\n",
2167 ndlp->nlp_DID, irsp->ulpStatus,
2168 irsp->un.ulpWord[4]);
dea31012005-04-17 16:05:31 -05002169 /* Do not call DSM for lpfc_els_abort'ed ELS cmds */
James Smart858c9f62007-06-17 19:56:39 -05002170 if (lpfc_error_lost_link(irsp))
dea31012005-04-17 16:05:31 -05002171 goto out;
James Smart858c9f62007-06-17 19:56:39 -05002172 else
James Smart2e0fef82007-06-17 19:56:36 -05002173 lpfc_disc_state_machine(vport, ndlp, cmdiocb,
James Smart92d7f7b2007-06-17 19:56:38 -05002174 NLP_EVT_CMPL_LOGO);
James Smarte47c9092008-02-08 18:49:26 -05002175 } else
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05002176 /* Good status, call state machine.
2177 * This will unregister the rpi if needed.
2178 */
James Smart2e0fef82007-06-17 19:56:36 -05002179 lpfc_disc_state_machine(vport, ndlp, cmdiocb,
James Smart92d7f7b2007-06-17 19:56:38 -05002180 NLP_EVT_CMPL_LOGO);
dea31012005-04-17 16:05:31 -05002181out:
2182 lpfc_els_free_iocb(phba, cmdiocb);
2183 return;
2184}
2185
James Smarte59058c2008-08-24 21:49:00 -04002186/**
James Smart3621a712009-04-06 18:47:14 -04002187 * lpfc_issue_els_logo - Issue a logo to an node on a vport
James Smarte59058c2008-08-24 21:49:00 -04002188 * @vport: pointer to a virtual N_Port data structure.
2189 * @ndlp: pointer to a node-list data structure.
2190 * @retry: number of retries to the command IOCB.
2191 *
2192 * This routine constructs and issues an ELS Logout (LOGO) iocb command
2193 * to a remote node, referred by an @ndlp on a @vport. It constructs the
2194 * payload of the IOCB, properly sets up the @ndlp state, and invokes the
2195 * lpfc_sli_issue_iocb() routine to send out the LOGO ELS command.
2196 *
2197 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
2198 * will be incremented by 1 for holding the ndlp and the reference to ndlp
2199 * will be stored into the context1 field of the IOCB for the completion
2200 * callback function to the LOGO ELS command.
2201 *
2202 * Return code
2203 * 0 - successfully issued logo
2204 * 1 - failed to issue logo
2205 **/
dea31012005-04-17 16:05:31 -05002206int
James Smart2e0fef82007-06-17 19:56:36 -05002207lpfc_issue_els_logo(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
dea31012005-04-17 16:05:31 -05002208 uint8_t retry)
2209{
James Smart2e0fef82007-06-17 19:56:36 -05002210 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2211 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05002212 IOCB_t *icmd;
2213 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05002214 uint8_t *pcmd;
2215 uint16_t cmdsize;
James Smart92d7f7b2007-06-17 19:56:38 -05002216 int rc;
dea31012005-04-17 16:05:31 -05002217
James Smart98c9ea52007-10-27 13:37:33 -04002218 spin_lock_irq(shost->host_lock);
2219 if (ndlp->nlp_flag & NLP_LOGO_SND) {
2220 spin_unlock_irq(shost->host_lock);
2221 return 0;
2222 }
2223 spin_unlock_irq(shost->host_lock);
2224
James Smart92d7f7b2007-06-17 19:56:38 -05002225 cmdsize = (2 * sizeof(uint32_t)) + sizeof(struct lpfc_name);
James Smart2e0fef82007-06-17 19:56:36 -05002226 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
2227 ndlp->nlp_DID, ELS_CMD_LOGO);
James Smart488d1462006-03-07 15:02:37 -05002228 if (!elsiocb)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002229 return 1;
dea31012005-04-17 16:05:31 -05002230
2231 icmd = &elsiocb->iocb;
2232 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
2233 *((uint32_t *) (pcmd)) = ELS_CMD_LOGO;
James Smart92d7f7b2007-06-17 19:56:38 -05002234 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05002235
2236 /* Fill in LOGO payload */
James Smart2e0fef82007-06-17 19:56:36 -05002237 *((uint32_t *) (pcmd)) = be32_to_cpu(vport->fc_myDID);
James Smart92d7f7b2007-06-17 19:56:38 -05002238 pcmd += sizeof(uint32_t);
2239 memcpy(pcmd, &vport->fc_portname, sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -05002240
James Smart858c9f62007-06-17 19:56:39 -05002241 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2242 "Issue LOGO: did:x%x",
2243 ndlp->nlp_DID, 0, 0);
2244
dea31012005-04-17 16:05:31 -05002245 phba->fc_stat.elsXmitLOGO++;
2246 elsiocb->iocb_cmpl = lpfc_cmpl_els_logo;
James Smart2e0fef82007-06-17 19:56:36 -05002247 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002248 ndlp->nlp_flag |= NLP_LOGO_SND;
James Smart2e0fef82007-06-17 19:56:36 -05002249 spin_unlock_irq(shost->host_lock);
James Smart3772a992009-05-22 14:50:54 -04002250 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
James Smart92d7f7b2007-06-17 19:56:38 -05002251
2252 if (rc == IOCB_ERROR) {
James Smart2e0fef82007-06-17 19:56:36 -05002253 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002254 ndlp->nlp_flag &= ~NLP_LOGO_SND;
James Smart2e0fef82007-06-17 19:56:36 -05002255 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002256 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002257 return 1;
dea31012005-04-17 16:05:31 -05002258 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002259 return 0;
dea31012005-04-17 16:05:31 -05002260}
2261
James Smarte59058c2008-08-24 21:49:00 -04002262/**
James Smart3621a712009-04-06 18:47:14 -04002263 * lpfc_cmpl_els_cmd - Completion callback function for generic els command
James Smarte59058c2008-08-24 21:49:00 -04002264 * @phba: pointer to lpfc hba data structure.
2265 * @cmdiocb: pointer to lpfc command iocb data structure.
2266 * @rspiocb: pointer to lpfc response iocb data structure.
2267 *
2268 * This routine is a generic completion callback function for ELS commands.
2269 * Specifically, it is the callback function which does not need to perform
2270 * any command specific operations. It is currently used by the ELS command
2271 * issuing routines for the ELS State Change Request (SCR),
2272 * lpfc_issue_els_scr(), and the ELS Fibre Channel Address Resolution
2273 * Protocol Response (FARPR) routine, lpfc_issue_els_farpr(). Other than
2274 * certain debug loggings, this callback function simply invokes the
2275 * lpfc_els_chk_latt() routine to check whether link went down during the
2276 * discovery process.
2277 **/
dea31012005-04-17 16:05:31 -05002278static void
James Smart2e0fef82007-06-17 19:56:36 -05002279lpfc_cmpl_els_cmd(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
2280 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05002281{
James Smart2e0fef82007-06-17 19:56:36 -05002282 struct lpfc_vport *vport = cmdiocb->vport;
dea31012005-04-17 16:05:31 -05002283 IOCB_t *irsp;
2284
2285 irsp = &rspiocb->iocb;
2286
James Smart858c9f62007-06-17 19:56:39 -05002287 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2288 "ELS cmd cmpl: status:x%x/x%x did:x%x",
2289 irsp->ulpStatus, irsp->un.ulpWord[4],
2290 irsp->un.elsreq64.remoteID);
dea31012005-04-17 16:05:31 -05002291 /* ELS cmd tag <ulpIoTag> completes */
James Smarte8b62012007-08-02 11:10:09 -04002292 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
2293 "0106 ELS cmd tag x%x completes Data: x%x x%x x%x\n",
2294 irsp->ulpIoTag, irsp->ulpStatus,
2295 irsp->un.ulpWord[4], irsp->ulpTimeout);
dea31012005-04-17 16:05:31 -05002296 /* Check to see if link went down during discovery */
James Smart2e0fef82007-06-17 19:56:36 -05002297 lpfc_els_chk_latt(vport);
dea31012005-04-17 16:05:31 -05002298 lpfc_els_free_iocb(phba, cmdiocb);
2299 return;
2300}
2301
James Smarte59058c2008-08-24 21:49:00 -04002302/**
James Smart3621a712009-04-06 18:47:14 -04002303 * lpfc_issue_els_scr - Issue a scr to an node on a vport
James Smarte59058c2008-08-24 21:49:00 -04002304 * @vport: pointer to a host virtual N_Port data structure.
2305 * @nportid: N_Port identifier to the remote node.
2306 * @retry: number of retries to the command IOCB.
2307 *
2308 * This routine issues a State Change Request (SCR) to a fabric node
2309 * on a @vport. The remote node @nportid is passed into the function. It
2310 * first search the @vport node list to find the matching ndlp. If no such
2311 * ndlp is found, a new ndlp shall be created for this (SCR) purpose. An
2312 * IOCB is allocated, payload prepared, and the lpfc_sli_issue_iocb()
2313 * routine is invoked to send the SCR IOCB.
2314 *
2315 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
2316 * will be incremented by 1 for holding the ndlp and the reference to ndlp
2317 * will be stored into the context1 field of the IOCB for the completion
2318 * callback function to the SCR ELS command.
2319 *
2320 * Return code
2321 * 0 - Successfully issued scr command
2322 * 1 - Failed to issue scr command
2323 **/
dea31012005-04-17 16:05:31 -05002324int
James Smart2e0fef82007-06-17 19:56:36 -05002325lpfc_issue_els_scr(struct lpfc_vport *vport, uint32_t nportid, uint8_t retry)
dea31012005-04-17 16:05:31 -05002326{
James Smart2e0fef82007-06-17 19:56:36 -05002327 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05002328 IOCB_t *icmd;
2329 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05002330 struct lpfc_sli *psli;
2331 uint8_t *pcmd;
2332 uint16_t cmdsize;
2333 struct lpfc_nodelist *ndlp;
2334
2335 psli = &phba->sli;
James Smart92d7f7b2007-06-17 19:56:38 -05002336 cmdsize = (sizeof(uint32_t) + sizeof(SCR));
dea31012005-04-17 16:05:31 -05002337
James Smarte47c9092008-02-08 18:49:26 -05002338 ndlp = lpfc_findnode_did(vport, nportid);
2339 if (!ndlp) {
2340 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
2341 if (!ndlp)
2342 return 1;
2343 lpfc_nlp_init(vport, ndlp, nportid);
2344 lpfc_enqueue_node(vport, ndlp);
2345 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
2346 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
2347 if (!ndlp)
2348 return 1;
2349 }
dea31012005-04-17 16:05:31 -05002350
James Smart2e0fef82007-06-17 19:56:36 -05002351 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
2352 ndlp->nlp_DID, ELS_CMD_SCR);
2353
James Smart488d1462006-03-07 15:02:37 -05002354 if (!elsiocb) {
James Smartfa4066b2008-01-11 01:53:27 -05002355 /* This will trigger the release of the node just
2356 * allocated
2357 */
James Smart329f9bc2007-04-25 09:53:01 -04002358 lpfc_nlp_put(ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002359 return 1;
dea31012005-04-17 16:05:31 -05002360 }
2361
2362 icmd = &elsiocb->iocb;
2363 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
2364
2365 *((uint32_t *) (pcmd)) = ELS_CMD_SCR;
James Smart92d7f7b2007-06-17 19:56:38 -05002366 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05002367
2368 /* For SCR, remainder of payload is SCR parameter page */
James Smart92d7f7b2007-06-17 19:56:38 -05002369 memset(pcmd, 0, sizeof(SCR));
dea31012005-04-17 16:05:31 -05002370 ((SCR *) pcmd)->Function = SCR_FUNC_FULL;
2371
James Smart858c9f62007-06-17 19:56:39 -05002372 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2373 "Issue SCR: did:x%x",
2374 ndlp->nlp_DID, 0, 0);
2375
dea31012005-04-17 16:05:31 -05002376 phba->fc_stat.elsXmitSCR++;
2377 elsiocb->iocb_cmpl = lpfc_cmpl_els_cmd;
James Smart3772a992009-05-22 14:50:54 -04002378 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) ==
2379 IOCB_ERROR) {
James Smartfa4066b2008-01-11 01:53:27 -05002380 /* The additional lpfc_nlp_put will cause the following
2381 * lpfc_els_free_iocb routine to trigger the rlease of
2382 * the node.
2383 */
James Smart329f9bc2007-04-25 09:53:01 -04002384 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05002385 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002386 return 1;
dea31012005-04-17 16:05:31 -05002387 }
James Smartfa4066b2008-01-11 01:53:27 -05002388 /* This will cause the callback-function lpfc_cmpl_els_cmd to
2389 * trigger the release of node.
2390 */
James Smart329f9bc2007-04-25 09:53:01 -04002391 lpfc_nlp_put(ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002392 return 0;
dea31012005-04-17 16:05:31 -05002393}
2394
James Smarte59058c2008-08-24 21:49:00 -04002395/**
James Smart3621a712009-04-06 18:47:14 -04002396 * lpfc_issue_els_farpr - Issue a farp to an node on a vport
James Smarte59058c2008-08-24 21:49:00 -04002397 * @vport: pointer to a host virtual N_Port data structure.
2398 * @nportid: N_Port identifier to the remote node.
2399 * @retry: number of retries to the command IOCB.
2400 *
2401 * This routine issues a Fibre Channel Address Resolution Response
2402 * (FARPR) to a node on a vport. The remote node N_Port identifier (@nportid)
2403 * is passed into the function. It first search the @vport node list to find
2404 * the matching ndlp. If no such ndlp is found, a new ndlp shall be created
2405 * for this (FARPR) purpose. An IOCB is allocated, payload prepared, and the
2406 * lpfc_sli_issue_iocb() routine is invoked to send the FARPR ELS command.
2407 *
2408 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
2409 * will be incremented by 1 for holding the ndlp and the reference to ndlp
2410 * will be stored into the context1 field of the IOCB for the completion
2411 * callback function to the PARPR ELS command.
2412 *
2413 * Return code
2414 * 0 - Successfully issued farpr command
2415 * 1 - Failed to issue farpr command
2416 **/
dea31012005-04-17 16:05:31 -05002417static int
James Smart2e0fef82007-06-17 19:56:36 -05002418lpfc_issue_els_farpr(struct lpfc_vport *vport, uint32_t nportid, uint8_t retry)
dea31012005-04-17 16:05:31 -05002419{
James Smart2e0fef82007-06-17 19:56:36 -05002420 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05002421 IOCB_t *icmd;
2422 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05002423 struct lpfc_sli *psli;
2424 FARP *fp;
2425 uint8_t *pcmd;
2426 uint32_t *lp;
2427 uint16_t cmdsize;
2428 struct lpfc_nodelist *ondlp;
2429 struct lpfc_nodelist *ndlp;
2430
2431 psli = &phba->sli;
James Smart92d7f7b2007-06-17 19:56:38 -05002432 cmdsize = (sizeof(uint32_t) + sizeof(FARP));
dea31012005-04-17 16:05:31 -05002433
James Smarte47c9092008-02-08 18:49:26 -05002434 ndlp = lpfc_findnode_did(vport, nportid);
2435 if (!ndlp) {
2436 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
2437 if (!ndlp)
2438 return 1;
2439 lpfc_nlp_init(vport, ndlp, nportid);
2440 lpfc_enqueue_node(vport, ndlp);
2441 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
2442 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
2443 if (!ndlp)
2444 return 1;
2445 }
James Smart2e0fef82007-06-17 19:56:36 -05002446
2447 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
2448 ndlp->nlp_DID, ELS_CMD_RNID);
James Smart488d1462006-03-07 15:02:37 -05002449 if (!elsiocb) {
James Smartfa4066b2008-01-11 01:53:27 -05002450 /* This will trigger the release of the node just
2451 * allocated
2452 */
James Smart329f9bc2007-04-25 09:53:01 -04002453 lpfc_nlp_put(ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002454 return 1;
dea31012005-04-17 16:05:31 -05002455 }
2456
2457 icmd = &elsiocb->iocb;
2458 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
2459
2460 *((uint32_t *) (pcmd)) = ELS_CMD_FARPR;
James Smart92d7f7b2007-06-17 19:56:38 -05002461 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05002462
2463 /* Fill in FARPR payload */
2464 fp = (FARP *) (pcmd);
James Smart92d7f7b2007-06-17 19:56:38 -05002465 memset(fp, 0, sizeof(FARP));
dea31012005-04-17 16:05:31 -05002466 lp = (uint32_t *) pcmd;
2467 *lp++ = be32_to_cpu(nportid);
James Smart2e0fef82007-06-17 19:56:36 -05002468 *lp++ = be32_to_cpu(vport->fc_myDID);
dea31012005-04-17 16:05:31 -05002469 fp->Rflags = 0;
2470 fp->Mflags = (FARP_MATCH_PORT | FARP_MATCH_NODE);
2471
James Smart92d7f7b2007-06-17 19:56:38 -05002472 memcpy(&fp->RportName, &vport->fc_portname, sizeof(struct lpfc_name));
2473 memcpy(&fp->RnodeName, &vport->fc_nodename, sizeof(struct lpfc_name));
James Smart2e0fef82007-06-17 19:56:36 -05002474 ondlp = lpfc_findnode_did(vport, nportid);
James Smarte47c9092008-02-08 18:49:26 -05002475 if (ondlp && NLP_CHK_NODE_ACT(ondlp)) {
dea31012005-04-17 16:05:31 -05002476 memcpy(&fp->OportName, &ondlp->nlp_portname,
James Smart92d7f7b2007-06-17 19:56:38 -05002477 sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -05002478 memcpy(&fp->OnodeName, &ondlp->nlp_nodename,
James Smart92d7f7b2007-06-17 19:56:38 -05002479 sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -05002480 }
2481
James Smart858c9f62007-06-17 19:56:39 -05002482 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2483 "Issue FARPR: did:x%x",
2484 ndlp->nlp_DID, 0, 0);
2485
dea31012005-04-17 16:05:31 -05002486 phba->fc_stat.elsXmitFARPR++;
2487 elsiocb->iocb_cmpl = lpfc_cmpl_els_cmd;
James Smart3772a992009-05-22 14:50:54 -04002488 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) ==
2489 IOCB_ERROR) {
James Smartfa4066b2008-01-11 01:53:27 -05002490 /* The additional lpfc_nlp_put will cause the following
2491 * lpfc_els_free_iocb routine to trigger the release of
2492 * the node.
2493 */
James Smart329f9bc2007-04-25 09:53:01 -04002494 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05002495 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002496 return 1;
dea31012005-04-17 16:05:31 -05002497 }
James Smartfa4066b2008-01-11 01:53:27 -05002498 /* This will cause the callback-function lpfc_cmpl_els_cmd to
2499 * trigger the release of the node.
2500 */
James Smart329f9bc2007-04-25 09:53:01 -04002501 lpfc_nlp_put(ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002502 return 0;
dea31012005-04-17 16:05:31 -05002503}
2504
James Smarte59058c2008-08-24 21:49:00 -04002505/**
James Smart3621a712009-04-06 18:47:14 -04002506 * lpfc_cancel_retry_delay_tmo - Cancel the timer with delayed iocb-cmd retry
James Smarte59058c2008-08-24 21:49:00 -04002507 * @vport: pointer to a host virtual N_Port data structure.
2508 * @nlp: pointer to a node-list data structure.
2509 *
2510 * This routine cancels the timer with a delayed IOCB-command retry for
2511 * a @vport's @ndlp. It stops the timer for the delayed function retrial and
2512 * removes the ELS retry event if it presents. In addition, if the
2513 * NLP_NPR_2B_DISC bit is set in the @nlp's nlp_flag bitmap, ADISC IOCB
2514 * commands are sent for the @vport's nodes that require issuing discovery
2515 * ADISC.
2516 **/
dea31012005-04-17 16:05:31 -05002517void
James Smart2e0fef82007-06-17 19:56:36 -05002518lpfc_cancel_retry_delay_tmo(struct lpfc_vport *vport, struct lpfc_nodelist *nlp)
James Smartfdcebe22006-03-07 15:04:01 -05002519{
James Smart2e0fef82007-06-17 19:56:36 -05002520 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smarte47c9092008-02-08 18:49:26 -05002521 struct lpfc_work_evt *evtp;
James Smart2e0fef82007-06-17 19:56:36 -05002522
James Smart0d2b6b82008-06-14 22:52:47 -04002523 if (!(nlp->nlp_flag & NLP_DELAY_TMO))
2524 return;
James Smart2e0fef82007-06-17 19:56:36 -05002525 spin_lock_irq(shost->host_lock);
James Smartfdcebe22006-03-07 15:04:01 -05002526 nlp->nlp_flag &= ~NLP_DELAY_TMO;
James Smart2e0fef82007-06-17 19:56:36 -05002527 spin_unlock_irq(shost->host_lock);
James Smartfdcebe22006-03-07 15:04:01 -05002528 del_timer_sync(&nlp->nlp_delayfunc);
2529 nlp->nlp_last_elscmd = 0;
James Smarte47c9092008-02-08 18:49:26 -05002530 if (!list_empty(&nlp->els_retry_evt.evt_listp)) {
James Smartfdcebe22006-03-07 15:04:01 -05002531 list_del_init(&nlp->els_retry_evt.evt_listp);
James Smarte47c9092008-02-08 18:49:26 -05002532 /* Decrement nlp reference count held for the delayed retry */
2533 evtp = &nlp->els_retry_evt;
2534 lpfc_nlp_put((struct lpfc_nodelist *)evtp->evt_arg1);
2535 }
James Smartfdcebe22006-03-07 15:04:01 -05002536 if (nlp->nlp_flag & NLP_NPR_2B_DISC) {
James Smart2e0fef82007-06-17 19:56:36 -05002537 spin_lock_irq(shost->host_lock);
James Smartfdcebe22006-03-07 15:04:01 -05002538 nlp->nlp_flag &= ~NLP_NPR_2B_DISC;
James Smart2e0fef82007-06-17 19:56:36 -05002539 spin_unlock_irq(shost->host_lock);
2540 if (vport->num_disc_nodes) {
James Smart0d2b6b82008-06-14 22:52:47 -04002541 if (vport->port_state < LPFC_VPORT_READY) {
2542 /* Check if there are more ADISCs to be sent */
2543 lpfc_more_adisc(vport);
James Smart0d2b6b82008-06-14 22:52:47 -04002544 } else {
2545 /* Check if there are more PLOGIs to be sent */
2546 lpfc_more_plogi(vport);
James Smart90160e02008-08-24 21:49:45 -04002547 if (vport->num_disc_nodes == 0) {
2548 spin_lock_irq(shost->host_lock);
2549 vport->fc_flag &= ~FC_NDISC_ACTIVE;
2550 spin_unlock_irq(shost->host_lock);
2551 lpfc_can_disctmo(vport);
2552 lpfc_end_rscn(vport);
2553 }
James Smartfdcebe22006-03-07 15:04:01 -05002554 }
2555 }
2556 }
2557 return;
2558}
2559
James Smarte59058c2008-08-24 21:49:00 -04002560/**
James Smart3621a712009-04-06 18:47:14 -04002561 * lpfc_els_retry_delay - Timer function with a ndlp delayed function timer
James Smarte59058c2008-08-24 21:49:00 -04002562 * @ptr: holder for the pointer to the timer function associated data (ndlp).
2563 *
2564 * This routine is invoked by the ndlp delayed-function timer to check
2565 * whether there is any pending ELS retry event(s) with the node. If not, it
2566 * simply returns. Otherwise, if there is at least one ELS delayed event, it
2567 * adds the delayed events to the HBA work list and invokes the
2568 * lpfc_worker_wake_up() routine to wake up worker thread to process the
2569 * event. Note that lpfc_nlp_get() is called before posting the event to
2570 * the work list to hold reference count of ndlp so that it guarantees the
2571 * reference to ndlp will still be available when the worker thread gets
2572 * to the event associated with the ndlp.
2573 **/
James Smartfdcebe22006-03-07 15:04:01 -05002574void
dea31012005-04-17 16:05:31 -05002575lpfc_els_retry_delay(unsigned long ptr)
2576{
James Smart2e0fef82007-06-17 19:56:36 -05002577 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) ptr;
2578 struct lpfc_vport *vport = ndlp->vport;
James Smart2e0fef82007-06-17 19:56:36 -05002579 struct lpfc_hba *phba = vport->phba;
James Smart92d7f7b2007-06-17 19:56:38 -05002580 unsigned long flags;
James Smart2e0fef82007-06-17 19:56:36 -05002581 struct lpfc_work_evt *evtp = &ndlp->els_retry_evt;
dea31012005-04-17 16:05:31 -05002582
James Smart92d7f7b2007-06-17 19:56:38 -05002583 spin_lock_irqsave(&phba->hbalock, flags);
dea31012005-04-17 16:05:31 -05002584 if (!list_empty(&evtp->evt_listp)) {
James Smart92d7f7b2007-06-17 19:56:38 -05002585 spin_unlock_irqrestore(&phba->hbalock, flags);
dea31012005-04-17 16:05:31 -05002586 return;
2587 }
2588
James Smartfa4066b2008-01-11 01:53:27 -05002589 /* We need to hold the node by incrementing the reference
2590 * count until the queued work is done
2591 */
2592 evtp->evt_arg1 = lpfc_nlp_get(ndlp);
James Smart5e9d9b82008-06-14 22:52:53 -04002593 if (evtp->evt_arg1) {
2594 evtp->evt = LPFC_EVT_ELS_RETRY;
2595 list_add_tail(&evtp->evt_listp, &phba->work_list);
James Smart92d7f7b2007-06-17 19:56:38 -05002596 lpfc_worker_wake_up(phba);
James Smart5e9d9b82008-06-14 22:52:53 -04002597 }
James Smart92d7f7b2007-06-17 19:56:38 -05002598 spin_unlock_irqrestore(&phba->hbalock, flags);
dea31012005-04-17 16:05:31 -05002599 return;
2600}
2601
James Smarte59058c2008-08-24 21:49:00 -04002602/**
James Smart3621a712009-04-06 18:47:14 -04002603 * lpfc_els_retry_delay_handler - Work thread handler for ndlp delayed function
James Smarte59058c2008-08-24 21:49:00 -04002604 * @ndlp: pointer to a node-list data structure.
2605 *
2606 * This routine is the worker-thread handler for processing the @ndlp delayed
2607 * event(s), posted by the lpfc_els_retry_delay() routine. It simply retrieves
2608 * the last ELS command from the associated ndlp and invokes the proper ELS
2609 * function according to the delayed ELS command to retry the command.
2610 **/
dea31012005-04-17 16:05:31 -05002611void
2612lpfc_els_retry_delay_handler(struct lpfc_nodelist *ndlp)
2613{
James Smart2e0fef82007-06-17 19:56:36 -05002614 struct lpfc_vport *vport = ndlp->vport;
2615 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2616 uint32_t cmd, did, retry;
dea31012005-04-17 16:05:31 -05002617
James Smart2e0fef82007-06-17 19:56:36 -05002618 spin_lock_irq(shost->host_lock);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05002619 did = ndlp->nlp_DID;
2620 cmd = ndlp->nlp_last_elscmd;
2621 ndlp->nlp_last_elscmd = 0;
dea31012005-04-17 16:05:31 -05002622
2623 if (!(ndlp->nlp_flag & NLP_DELAY_TMO)) {
James Smart2e0fef82007-06-17 19:56:36 -05002624 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002625 return;
2626 }
2627
2628 ndlp->nlp_flag &= ~NLP_DELAY_TMO;
James Smart2e0fef82007-06-17 19:56:36 -05002629 spin_unlock_irq(shost->host_lock);
James Smart1a169682006-03-07 15:04:06 -05002630 /*
2631 * If a discovery event readded nlp_delayfunc after timer
2632 * firing and before processing the timer, cancel the
2633 * nlp_delayfunc.
2634 */
2635 del_timer_sync(&ndlp->nlp_delayfunc);
dea31012005-04-17 16:05:31 -05002636 retry = ndlp->nlp_retry;
James Smart4d9ab992009-10-02 15:16:39 -04002637 ndlp->nlp_retry = 0;
dea31012005-04-17 16:05:31 -05002638
2639 switch (cmd) {
2640 case ELS_CMD_FLOGI:
James Smart2e0fef82007-06-17 19:56:36 -05002641 lpfc_issue_els_flogi(vport, ndlp, retry);
dea31012005-04-17 16:05:31 -05002642 break;
2643 case ELS_CMD_PLOGI:
James Smart2e0fef82007-06-17 19:56:36 -05002644 if (!lpfc_issue_els_plogi(vport, ndlp->nlp_DID, retry)) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05002645 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05002646 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
Jamie Wellnitz6ad42532006-02-28 19:25:16 -05002647 }
dea31012005-04-17 16:05:31 -05002648 break;
2649 case ELS_CMD_ADISC:
James Smart2e0fef82007-06-17 19:56:36 -05002650 if (!lpfc_issue_els_adisc(vport, ndlp, retry)) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05002651 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05002652 lpfc_nlp_set_state(vport, ndlp, NLP_STE_ADISC_ISSUE);
Jamie Wellnitz6ad42532006-02-28 19:25:16 -05002653 }
dea31012005-04-17 16:05:31 -05002654 break;
2655 case ELS_CMD_PRLI:
James Smart2e0fef82007-06-17 19:56:36 -05002656 if (!lpfc_issue_els_prli(vport, ndlp, retry)) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05002657 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05002658 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PRLI_ISSUE);
Jamie Wellnitz6ad42532006-02-28 19:25:16 -05002659 }
dea31012005-04-17 16:05:31 -05002660 break;
2661 case ELS_CMD_LOGO:
James Smart2e0fef82007-06-17 19:56:36 -05002662 if (!lpfc_issue_els_logo(vport, ndlp, retry)) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05002663 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05002664 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
Jamie Wellnitz6ad42532006-02-28 19:25:16 -05002665 }
dea31012005-04-17 16:05:31 -05002666 break;
James Smart92d7f7b2007-06-17 19:56:38 -05002667 case ELS_CMD_FDISC:
2668 lpfc_issue_els_fdisc(vport, ndlp, retry);
2669 break;
dea31012005-04-17 16:05:31 -05002670 }
2671 return;
2672}
2673
James Smarte59058c2008-08-24 21:49:00 -04002674/**
James Smart3621a712009-04-06 18:47:14 -04002675 * lpfc_els_retry - Make retry decision on an els command iocb
James Smarte59058c2008-08-24 21:49:00 -04002676 * @phba: pointer to lpfc hba data structure.
2677 * @cmdiocb: pointer to lpfc command iocb data structure.
2678 * @rspiocb: pointer to lpfc response iocb data structure.
2679 *
2680 * This routine makes a retry decision on an ELS command IOCB, which has
2681 * failed. The following ELS IOCBs use this function for retrying the command
2682 * when previously issued command responsed with error status: FLOGI, PLOGI,
2683 * PRLI, ADISC, LOGO, and FDISC. Based on the ELS command type and the
2684 * returned error status, it makes the decision whether a retry shall be
2685 * issued for the command, and whether a retry shall be made immediately or
2686 * delayed. In the former case, the corresponding ELS command issuing-function
2687 * is called to retry the command. In the later case, the ELS command shall
2688 * be posted to the ndlp delayed event and delayed function timer set to the
2689 * ndlp for the delayed command issusing.
2690 *
2691 * Return code
2692 * 0 - No retry of els command is made
2693 * 1 - Immediate or delayed retry of els command is made
2694 **/
dea31012005-04-17 16:05:31 -05002695static int
James Smart2e0fef82007-06-17 19:56:36 -05002696lpfc_els_retry(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
2697 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05002698{
James Smart2e0fef82007-06-17 19:56:36 -05002699 struct lpfc_vport *vport = cmdiocb->vport;
2700 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2701 IOCB_t *irsp = &rspiocb->iocb;
2702 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
2703 struct lpfc_dmabuf *pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
dea31012005-04-17 16:05:31 -05002704 uint32_t *elscmd;
2705 struct ls_rjt stat;
James Smart2e0fef82007-06-17 19:56:36 -05002706 int retry = 0, maxretry = lpfc_max_els_tries, delay = 0;
James Smart98c9ea52007-10-27 13:37:33 -04002707 int logerr = 0;
James Smart2e0fef82007-06-17 19:56:36 -05002708 uint32_t cmd = 0;
James Smart488d1462006-03-07 15:02:37 -05002709 uint32_t did;
dea31012005-04-17 16:05:31 -05002710
James Smart488d1462006-03-07 15:02:37 -05002711
dea31012005-04-17 16:05:31 -05002712 /* Note: context2 may be 0 for internal driver abort
2713 * of delays ELS command.
2714 */
2715
2716 if (pcmd && pcmd->virt) {
2717 elscmd = (uint32_t *) (pcmd->virt);
2718 cmd = *elscmd++;
2719 }
2720
James Smarte47c9092008-02-08 18:49:26 -05002721 if (ndlp && NLP_CHK_NODE_ACT(ndlp))
James Smart488d1462006-03-07 15:02:37 -05002722 did = ndlp->nlp_DID;
2723 else {
2724 /* We should only hit this case for retrying PLOGI */
2725 did = irsp->un.elsreq64.remoteID;
James Smart2e0fef82007-06-17 19:56:36 -05002726 ndlp = lpfc_findnode_did(vport, did);
James Smarte47c9092008-02-08 18:49:26 -05002727 if ((!ndlp || !NLP_CHK_NODE_ACT(ndlp))
2728 && (cmd != ELS_CMD_PLOGI))
James Smart488d1462006-03-07 15:02:37 -05002729 return 1;
2730 }
2731
James Smart858c9f62007-06-17 19:56:39 -05002732 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2733 "Retry ELS: wd7:x%x wd4:x%x did:x%x",
2734 *(((uint32_t *) irsp) + 7), irsp->un.ulpWord[4], ndlp->nlp_DID);
2735
dea31012005-04-17 16:05:31 -05002736 switch (irsp->ulpStatus) {
2737 case IOSTAT_FCP_RSP_ERROR:
2738 case IOSTAT_REMOTE_STOP:
2739 break;
2740
2741 case IOSTAT_LOCAL_REJECT:
2742 switch ((irsp->un.ulpWord[4] & 0xff)) {
2743 case IOERR_LOOP_OPEN_FAILURE:
James Smarteaf15d52008-12-04 22:39:29 -05002744 if (cmd == ELS_CMD_FLOGI) {
2745 if (PCI_DEVICE_ID_HORNET ==
2746 phba->pcidev->device) {
2747 phba->fc_topology = TOPOLOGY_LOOP;
2748 phba->pport->fc_myDID = 0;
2749 phba->alpa_map[0] = 0;
2750 phba->alpa_map[1] = 0;
2751 }
2752 }
James Smart2e0fef82007-06-17 19:56:36 -05002753 if (cmd == ELS_CMD_PLOGI && cmdiocb->retry == 0)
James Smart92d7f7b2007-06-17 19:56:38 -05002754 delay = 1000;
dea31012005-04-17 16:05:31 -05002755 retry = 1;
2756 break;
2757
James Smart92d7f7b2007-06-17 19:56:38 -05002758 case IOERR_ILLEGAL_COMMAND:
James Smart7f5f3d02008-02-08 18:50:14 -05002759 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
2760 "0124 Retry illegal cmd x%x "
2761 "retry:x%x delay:x%x\n",
2762 cmd, cmdiocb->retry, delay);
2763 retry = 1;
2764 /* All command's retry policy */
2765 maxretry = 8;
2766 if (cmdiocb->retry > 2)
2767 delay = 1000;
James Smart92d7f7b2007-06-17 19:56:38 -05002768 break;
2769
dea31012005-04-17 16:05:31 -05002770 case IOERR_NO_RESOURCES:
James Smart98c9ea52007-10-27 13:37:33 -04002771 logerr = 1; /* HBA out of resources */
James Smart858c9f62007-06-17 19:56:39 -05002772 retry = 1;
2773 if (cmdiocb->retry > 100)
2774 delay = 100;
2775 maxretry = 250;
2776 break;
2777
2778 case IOERR_ILLEGAL_FRAME:
James Smart92d7f7b2007-06-17 19:56:38 -05002779 delay = 100;
dea31012005-04-17 16:05:31 -05002780 retry = 1;
2781 break;
2782
James Smart858c9f62007-06-17 19:56:39 -05002783 case IOERR_SEQUENCE_TIMEOUT:
dea31012005-04-17 16:05:31 -05002784 case IOERR_INVALID_RPI:
2785 retry = 1;
2786 break;
2787 }
2788 break;
2789
2790 case IOSTAT_NPORT_RJT:
2791 case IOSTAT_FABRIC_RJT:
2792 if (irsp->un.ulpWord[4] & RJT_UNAVAIL_TEMP) {
2793 retry = 1;
2794 break;
2795 }
2796 break;
2797
2798 case IOSTAT_NPORT_BSY:
2799 case IOSTAT_FABRIC_BSY:
James Smart98c9ea52007-10-27 13:37:33 -04002800 logerr = 1; /* Fabric / Remote NPort out of resources */
dea31012005-04-17 16:05:31 -05002801 retry = 1;
2802 break;
2803
2804 case IOSTAT_LS_RJT:
2805 stat.un.lsRjtError = be32_to_cpu(irsp->un.ulpWord[4]);
2806 /* Added for Vendor specifc support
2807 * Just keep retrying for these Rsn / Exp codes
2808 */
2809 switch (stat.un.b.lsRjtRsnCode) {
2810 case LSRJT_UNABLE_TPC:
2811 if (stat.un.b.lsRjtRsnCodeExp ==
2812 LSEXP_CMD_IN_PROGRESS) {
2813 if (cmd == ELS_CMD_PLOGI) {
James Smart92d7f7b2007-06-17 19:56:38 -05002814 delay = 1000;
dea31012005-04-17 16:05:31 -05002815 maxretry = 48;
2816 }
2817 retry = 1;
2818 break;
2819 }
James Smartffc95492010-06-07 15:23:17 -04002820 if (stat.un.b.lsRjtRsnCodeExp ==
2821 LSEXP_CANT_GIVE_DATA) {
2822 if (cmd == ELS_CMD_PLOGI) {
2823 delay = 1000;
2824 maxretry = 48;
2825 }
2826 retry = 1;
2827 break;
2828 }
dea31012005-04-17 16:05:31 -05002829 if (cmd == ELS_CMD_PLOGI) {
James Smart92d7f7b2007-06-17 19:56:38 -05002830 delay = 1000;
dea31012005-04-17 16:05:31 -05002831 maxretry = lpfc_max_els_tries + 1;
2832 retry = 1;
2833 break;
2834 }
James Smart92d7f7b2007-06-17 19:56:38 -05002835 if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
2836 (cmd == ELS_CMD_FDISC) &&
2837 (stat.un.b.lsRjtRsnCodeExp == LSEXP_OUT_OF_RESOURCE)){
James Smarte8b62012007-08-02 11:10:09 -04002838 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
2839 "0125 FDISC Failed (x%x). "
2840 "Fabric out of resources\n",
2841 stat.un.lsRjtError);
James Smart92d7f7b2007-06-17 19:56:38 -05002842 lpfc_vport_set_state(vport,
2843 FC_VPORT_NO_FABRIC_RSCS);
2844 }
dea31012005-04-17 16:05:31 -05002845 break;
2846
2847 case LSRJT_LOGICAL_BSY:
James Smart858c9f62007-06-17 19:56:39 -05002848 if ((cmd == ELS_CMD_PLOGI) ||
2849 (cmd == ELS_CMD_PRLI)) {
James Smart92d7f7b2007-06-17 19:56:38 -05002850 delay = 1000;
dea31012005-04-17 16:05:31 -05002851 maxretry = 48;
James Smart92d7f7b2007-06-17 19:56:38 -05002852 } else if (cmd == ELS_CMD_FDISC) {
James Smart51ef4c22007-08-02 11:10:31 -04002853 /* FDISC retry policy */
2854 maxretry = 48;
2855 if (cmdiocb->retry >= 32)
2856 delay = 1000;
dea31012005-04-17 16:05:31 -05002857 }
2858 retry = 1;
2859 break;
James Smart92d7f7b2007-06-17 19:56:38 -05002860
2861 case LSRJT_LOGICAL_ERR:
James Smart7f5f3d02008-02-08 18:50:14 -05002862 /* There are some cases where switches return this
2863 * error when they are not ready and should be returning
2864 * Logical Busy. We should delay every time.
2865 */
2866 if (cmd == ELS_CMD_FDISC &&
2867 stat.un.b.lsRjtRsnCodeExp == LSEXP_PORT_LOGIN_REQ) {
2868 maxretry = 3;
2869 delay = 1000;
2870 retry = 1;
2871 break;
2872 }
James Smart92d7f7b2007-06-17 19:56:38 -05002873 case LSRJT_PROTOCOL_ERR:
2874 if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
2875 (cmd == ELS_CMD_FDISC) &&
2876 ((stat.un.b.lsRjtRsnCodeExp == LSEXP_INVALID_PNAME) ||
2877 (stat.un.b.lsRjtRsnCodeExp == LSEXP_INVALID_NPORT_ID))
2878 ) {
James Smarte8b62012007-08-02 11:10:09 -04002879 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
James Smartd7c255b2008-08-24 21:50:00 -04002880 "0122 FDISC Failed (x%x). "
James Smarte8b62012007-08-02 11:10:09 -04002881 "Fabric Detected Bad WWN\n",
2882 stat.un.lsRjtError);
James Smart92d7f7b2007-06-17 19:56:38 -05002883 lpfc_vport_set_state(vport,
2884 FC_VPORT_FABRIC_REJ_WWN);
2885 }
2886 break;
dea31012005-04-17 16:05:31 -05002887 }
2888 break;
2889
2890 case IOSTAT_INTERMED_RSP:
2891 case IOSTAT_BA_RJT:
2892 break;
2893
2894 default:
2895 break;
2896 }
2897
James Smart488d1462006-03-07 15:02:37 -05002898 if (did == FDMI_DID)
dea31012005-04-17 16:05:31 -05002899 retry = 1;
dea31012005-04-17 16:05:31 -05002900
James Smart695a8142010-01-26 23:08:03 -05002901 if (((cmd == ELS_CMD_FLOGI) || (cmd == ELS_CMD_FDISC)) &&
James Smart1b32f6a2008-02-08 18:49:39 -05002902 (phba->fc_topology != TOPOLOGY_LOOP) &&
2903 !lpfc_error_lost_link(irsp)) {
James Smart98c9ea52007-10-27 13:37:33 -04002904 /* FLOGI retry policy */
2905 retry = 1;
James Smart6669f9b2009-10-02 15:16:45 -04002906 /* retry forever */
2907 maxretry = 0;
2908 if (cmdiocb->retry >= 100)
2909 delay = 5000;
2910 else if (cmdiocb->retry >= 32)
James Smart98c9ea52007-10-27 13:37:33 -04002911 delay = 1000;
2912 }
2913
James Smart6669f9b2009-10-02 15:16:45 -04002914 cmdiocb->retry++;
2915 if (maxretry && (cmdiocb->retry >= maxretry)) {
dea31012005-04-17 16:05:31 -05002916 phba->fc_stat.elsRetryExceeded++;
2917 retry = 0;
2918 }
2919
James Smarted957682007-06-17 19:56:37 -05002920 if ((vport->load_flag & FC_UNLOADING) != 0)
2921 retry = 0;
2922
dea31012005-04-17 16:05:31 -05002923 if (retry) {
James Smart38b92ef2010-08-04 16:11:39 -04002924 if ((cmd == ELS_CMD_PLOGI) || (cmd == ELS_CMD_FDISC)) {
2925 /* Stop retrying PLOGI and FDISC if in FCF discovery */
2926 if (phba->fcf.fcf_flag & FCF_DISCOVERY) {
2927 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
2928 "2849 Stop retry ELS command "
2929 "x%x to remote NPORT x%x, "
2930 "Data: x%x x%x\n", cmd, did,
2931 cmdiocb->retry, delay);
2932 return 0;
2933 }
2934 }
dea31012005-04-17 16:05:31 -05002935
2936 /* Retry ELS command <elsCmd> to remote NPORT <did> */
James Smarte8b62012007-08-02 11:10:09 -04002937 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
2938 "0107 Retry ELS command x%x to remote "
2939 "NPORT x%x Data: x%x x%x\n",
2940 cmd, did, cmdiocb->retry, delay);
dea31012005-04-17 16:05:31 -05002941
James Smart858c9f62007-06-17 19:56:39 -05002942 if (((cmd == ELS_CMD_PLOGI) || (cmd == ELS_CMD_ADISC)) &&
2943 ((irsp->ulpStatus != IOSTAT_LOCAL_REJECT) ||
2944 ((irsp->un.ulpWord[4] & 0xff) != IOERR_NO_RESOURCES))) {
2945 /* Don't reset timer for no resources */
2946
dea31012005-04-17 16:05:31 -05002947 /* If discovery / RSCN timer is running, reset it */
James Smart2e0fef82007-06-17 19:56:36 -05002948 if (timer_pending(&vport->fc_disctmo) ||
James Smart92d7f7b2007-06-17 19:56:38 -05002949 (vport->fc_flag & FC_RSCN_MODE))
James Smart2e0fef82007-06-17 19:56:36 -05002950 lpfc_set_disctmo(vport);
dea31012005-04-17 16:05:31 -05002951 }
2952
2953 phba->fc_stat.elsXmitRetry++;
James Smart58da1ff2008-04-07 10:15:56 -04002954 if (ndlp && NLP_CHK_NODE_ACT(ndlp) && delay) {
dea31012005-04-17 16:05:31 -05002955 phba->fc_stat.elsDelayRetry++;
2956 ndlp->nlp_retry = cmdiocb->retry;
2957
James Smart92d7f7b2007-06-17 19:56:38 -05002958 /* delay is specified in milliseconds */
2959 mod_timer(&ndlp->nlp_delayfunc,
2960 jiffies + msecs_to_jiffies(delay));
James Smart2e0fef82007-06-17 19:56:36 -05002961 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002962 ndlp->nlp_flag |= NLP_DELAY_TMO;
James Smart2e0fef82007-06-17 19:56:36 -05002963 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002964
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05002965 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart858c9f62007-06-17 19:56:39 -05002966 if (cmd == ELS_CMD_PRLI)
2967 lpfc_nlp_set_state(vport, ndlp,
2968 NLP_STE_REG_LOGIN_ISSUE);
2969 else
2970 lpfc_nlp_set_state(vport, ndlp,
2971 NLP_STE_NPR_NODE);
dea31012005-04-17 16:05:31 -05002972 ndlp->nlp_last_elscmd = cmd;
2973
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002974 return 1;
dea31012005-04-17 16:05:31 -05002975 }
2976 switch (cmd) {
2977 case ELS_CMD_FLOGI:
James Smart2e0fef82007-06-17 19:56:36 -05002978 lpfc_issue_els_flogi(vport, ndlp, cmdiocb->retry);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002979 return 1;
James Smart92d7f7b2007-06-17 19:56:38 -05002980 case ELS_CMD_FDISC:
2981 lpfc_issue_els_fdisc(vport, ndlp, cmdiocb->retry);
2982 return 1;
dea31012005-04-17 16:05:31 -05002983 case ELS_CMD_PLOGI:
James Smart58da1ff2008-04-07 10:15:56 -04002984 if (ndlp && NLP_CHK_NODE_ACT(ndlp)) {
James Smart488d1462006-03-07 15:02:37 -05002985 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05002986 lpfc_nlp_set_state(vport, ndlp,
James Smartde0c5b32007-04-25 09:52:27 -04002987 NLP_STE_PLOGI_ISSUE);
James Smart488d1462006-03-07 15:02:37 -05002988 }
James Smart2e0fef82007-06-17 19:56:36 -05002989 lpfc_issue_els_plogi(vport, did, cmdiocb->retry);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002990 return 1;
dea31012005-04-17 16:05:31 -05002991 case ELS_CMD_ADISC:
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05002992 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05002993 lpfc_nlp_set_state(vport, ndlp, NLP_STE_ADISC_ISSUE);
2994 lpfc_issue_els_adisc(vport, ndlp, cmdiocb->retry);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002995 return 1;
dea31012005-04-17 16:05:31 -05002996 case ELS_CMD_PRLI:
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05002997 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05002998 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PRLI_ISSUE);
2999 lpfc_issue_els_prli(vport, ndlp, cmdiocb->retry);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003000 return 1;
dea31012005-04-17 16:05:31 -05003001 case ELS_CMD_LOGO:
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003002 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05003003 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
3004 lpfc_issue_els_logo(vport, ndlp, cmdiocb->retry);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003005 return 1;
dea31012005-04-17 16:05:31 -05003006 }
3007 }
dea31012005-04-17 16:05:31 -05003008 /* No retry ELS command <elsCmd> to remote NPORT <did> */
James Smart98c9ea52007-10-27 13:37:33 -04003009 if (logerr) {
3010 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
3011 "0137 No retry ELS command x%x to remote "
3012 "NPORT x%x: Out of Resources: Error:x%x/%x\n",
3013 cmd, did, irsp->ulpStatus,
3014 irsp->un.ulpWord[4]);
3015 }
3016 else {
3017 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
James Smarta58cbd52007-08-02 11:09:43 -04003018 "0108 No retry ELS command x%x to remote "
3019 "NPORT x%x Retried:%d Error:x%x/%x\n",
3020 cmd, did, cmdiocb->retry, irsp->ulpStatus,
3021 irsp->un.ulpWord[4]);
James Smart98c9ea52007-10-27 13:37:33 -04003022 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003023 return 0;
dea31012005-04-17 16:05:31 -05003024}
3025
James Smarte59058c2008-08-24 21:49:00 -04003026/**
James Smart3621a712009-04-06 18:47:14 -04003027 * lpfc_els_free_data - Free lpfc dma buffer and data structure with an iocb
James Smarte59058c2008-08-24 21:49:00 -04003028 * @phba: pointer to lpfc hba data structure.
3029 * @buf_ptr1: pointer to the lpfc DMA buffer data structure.
3030 *
3031 * This routine releases the lpfc DMA (Direct Memory Access) buffer(s)
3032 * associated with a command IOCB back to the lpfc DMA buffer pool. It first
3033 * checks to see whether there is a lpfc DMA buffer associated with the
3034 * response of the command IOCB. If so, it will be released before releasing
3035 * the lpfc DMA buffer associated with the IOCB itself.
3036 *
3037 * Return code
3038 * 0 - Successfully released lpfc DMA buffer (currently, always return 0)
3039 **/
James Smart09372822008-01-11 01:52:54 -05003040static int
James Smart87af33f2007-10-27 13:37:43 -04003041lpfc_els_free_data(struct lpfc_hba *phba, struct lpfc_dmabuf *buf_ptr1)
3042{
3043 struct lpfc_dmabuf *buf_ptr;
3044
James Smarte59058c2008-08-24 21:49:00 -04003045 /* Free the response before processing the command. */
James Smart87af33f2007-10-27 13:37:43 -04003046 if (!list_empty(&buf_ptr1->list)) {
3047 list_remove_head(&buf_ptr1->list, buf_ptr,
3048 struct lpfc_dmabuf,
3049 list);
3050 lpfc_mbuf_free(phba, buf_ptr->virt, buf_ptr->phys);
3051 kfree(buf_ptr);
3052 }
3053 lpfc_mbuf_free(phba, buf_ptr1->virt, buf_ptr1->phys);
3054 kfree(buf_ptr1);
3055 return 0;
3056}
3057
James Smarte59058c2008-08-24 21:49:00 -04003058/**
James Smart3621a712009-04-06 18:47:14 -04003059 * lpfc_els_free_bpl - Free lpfc dma buffer and data structure with bpl
James Smarte59058c2008-08-24 21:49:00 -04003060 * @phba: pointer to lpfc hba data structure.
3061 * @buf_ptr: pointer to the lpfc dma buffer data structure.
3062 *
3063 * This routine releases the lpfc Direct Memory Access (DMA) buffer
3064 * associated with a Buffer Pointer List (BPL) back to the lpfc DMA buffer
3065 * pool.
3066 *
3067 * Return code
3068 * 0 - Successfully released lpfc DMA buffer (currently, always return 0)
3069 **/
James Smart09372822008-01-11 01:52:54 -05003070static int
James Smart87af33f2007-10-27 13:37:43 -04003071lpfc_els_free_bpl(struct lpfc_hba *phba, struct lpfc_dmabuf *buf_ptr)
3072{
3073 lpfc_mbuf_free(phba, buf_ptr->virt, buf_ptr->phys);
3074 kfree(buf_ptr);
3075 return 0;
3076}
3077
James Smarte59058c2008-08-24 21:49:00 -04003078/**
James Smart3621a712009-04-06 18:47:14 -04003079 * lpfc_els_free_iocb - Free a command iocb and its associated resources
James Smarte59058c2008-08-24 21:49:00 -04003080 * @phba: pointer to lpfc hba data structure.
3081 * @elsiocb: pointer to lpfc els command iocb data structure.
3082 *
3083 * This routine frees a command IOCB and its associated resources. The
3084 * command IOCB data structure contains the reference to various associated
3085 * resources, these fields must be set to NULL if the associated reference
3086 * not present:
3087 * context1 - reference to ndlp
3088 * context2 - reference to cmd
3089 * context2->next - reference to rsp
3090 * context3 - reference to bpl
3091 *
3092 * It first properly decrements the reference count held on ndlp for the
3093 * IOCB completion callback function. If LPFC_DELAY_MEM_FREE flag is not
3094 * set, it invokes the lpfc_els_free_data() routine to release the Direct
3095 * Memory Access (DMA) buffers associated with the IOCB. Otherwise, it
3096 * adds the DMA buffer the @phba data structure for the delayed release.
3097 * If reference to the Buffer Pointer List (BPL) is present, the
3098 * lpfc_els_free_bpl() routine is invoked to release the DMA memory
3099 * associated with BPL. Finally, the lpfc_sli_release_iocbq() routine is
3100 * invoked to release the IOCB data structure back to @phba IOCBQ list.
3101 *
3102 * Return code
3103 * 0 - Success (currently, always return 0)
3104 **/
James Smart87af33f2007-10-27 13:37:43 -04003105int
James Smart329f9bc2007-04-25 09:53:01 -04003106lpfc_els_free_iocb(struct lpfc_hba *phba, struct lpfc_iocbq *elsiocb)
dea31012005-04-17 16:05:31 -05003107{
3108 struct lpfc_dmabuf *buf_ptr, *buf_ptr1;
James Smarta8adb832007-10-27 13:37:53 -04003109 struct lpfc_nodelist *ndlp;
dea31012005-04-17 16:05:31 -05003110
James Smarta8adb832007-10-27 13:37:53 -04003111 ndlp = (struct lpfc_nodelist *)elsiocb->context1;
3112 if (ndlp) {
3113 if (ndlp->nlp_flag & NLP_DEFER_RM) {
3114 lpfc_nlp_put(ndlp);
3115
3116 /* If the ndlp is not being used by another discovery
3117 * thread, free it.
3118 */
3119 if (!lpfc_nlp_not_used(ndlp)) {
3120 /* If ndlp is being used by another discovery
3121 * thread, just clear NLP_DEFER_RM
3122 */
3123 ndlp->nlp_flag &= ~NLP_DEFER_RM;
3124 }
3125 }
3126 else
3127 lpfc_nlp_put(ndlp);
James Smart329f9bc2007-04-25 09:53:01 -04003128 elsiocb->context1 = NULL;
3129 }
dea31012005-04-17 16:05:31 -05003130 /* context2 = cmd, context2->next = rsp, context3 = bpl */
3131 if (elsiocb->context2) {
James Smart0ff10d42008-01-11 01:52:36 -05003132 if (elsiocb->iocb_flag & LPFC_DELAY_MEM_FREE) {
3133 /* Firmware could still be in progress of DMAing
3134 * payload, so don't free data buffer till after
3135 * a hbeat.
3136 */
3137 elsiocb->iocb_flag &= ~LPFC_DELAY_MEM_FREE;
3138 buf_ptr = elsiocb->context2;
3139 elsiocb->context2 = NULL;
3140 if (buf_ptr) {
3141 buf_ptr1 = NULL;
3142 spin_lock_irq(&phba->hbalock);
3143 if (!list_empty(&buf_ptr->list)) {
3144 list_remove_head(&buf_ptr->list,
3145 buf_ptr1, struct lpfc_dmabuf,
3146 list);
3147 INIT_LIST_HEAD(&buf_ptr1->list);
3148 list_add_tail(&buf_ptr1->list,
3149 &phba->elsbuf);
3150 phba->elsbuf_cnt++;
3151 }
3152 INIT_LIST_HEAD(&buf_ptr->list);
3153 list_add_tail(&buf_ptr->list, &phba->elsbuf);
3154 phba->elsbuf_cnt++;
3155 spin_unlock_irq(&phba->hbalock);
3156 }
3157 } else {
3158 buf_ptr1 = (struct lpfc_dmabuf *) elsiocb->context2;
3159 lpfc_els_free_data(phba, buf_ptr1);
3160 }
dea31012005-04-17 16:05:31 -05003161 }
3162
3163 if (elsiocb->context3) {
3164 buf_ptr = (struct lpfc_dmabuf *) elsiocb->context3;
James Smart87af33f2007-10-27 13:37:43 -04003165 lpfc_els_free_bpl(phba, buf_ptr);
dea31012005-04-17 16:05:31 -05003166 }
James Bottomley604a3e32005-10-29 10:28:33 -05003167 lpfc_sli_release_iocbq(phba, elsiocb);
dea31012005-04-17 16:05:31 -05003168 return 0;
3169}
3170
James Smarte59058c2008-08-24 21:49:00 -04003171/**
James Smart3621a712009-04-06 18:47:14 -04003172 * lpfc_cmpl_els_logo_acc - Completion callback function to logo acc response
James Smarte59058c2008-08-24 21:49:00 -04003173 * @phba: pointer to lpfc hba data structure.
3174 * @cmdiocb: pointer to lpfc command iocb data structure.
3175 * @rspiocb: pointer to lpfc response iocb data structure.
3176 *
3177 * This routine is the completion callback function to the Logout (LOGO)
3178 * Accept (ACC) Response ELS command. This routine is invoked to indicate
3179 * the completion of the LOGO process. It invokes the lpfc_nlp_not_used() to
3180 * release the ndlp if it has the last reference remaining (reference count
3181 * is 1). If succeeded (meaning ndlp released), it sets the IOCB context1
3182 * field to NULL to inform the following lpfc_els_free_iocb() routine no
3183 * ndlp reference count needs to be decremented. Otherwise, the ndlp
3184 * reference use-count shall be decremented by the lpfc_els_free_iocb()
3185 * routine. Finally, the lpfc_els_free_iocb() is invoked to release the
3186 * IOCB data structure.
3187 **/
dea31012005-04-17 16:05:31 -05003188static void
James Smart2e0fef82007-06-17 19:56:36 -05003189lpfc_cmpl_els_logo_acc(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
3190 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05003191{
James Smart2e0fef82007-06-17 19:56:36 -05003192 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
3193 struct lpfc_vport *vport = cmdiocb->vport;
James Smart858c9f62007-06-17 19:56:39 -05003194 IOCB_t *irsp;
3195
3196 irsp = &rspiocb->iocb;
3197 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
3198 "ACC LOGO cmpl: status:x%x/x%x did:x%x",
3199 irsp->ulpStatus, irsp->un.ulpWord[4], ndlp->nlp_DID);
dea31012005-04-17 16:05:31 -05003200 /* ACC to LOGO completes to NPort <nlp_DID> */
James Smarte8b62012007-08-02 11:10:09 -04003201 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
3202 "0109 ACC to LOGO completes to NPort x%x "
3203 "Data: x%x x%x x%x\n",
3204 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
3205 ndlp->nlp_rpi);
James Smart87af33f2007-10-27 13:37:43 -04003206
3207 if (ndlp->nlp_state == NLP_STE_NPR_NODE) {
3208 /* NPort Recovery mode or node is just allocated */
3209 if (!lpfc_nlp_not_used(ndlp)) {
3210 /* If the ndlp is being used by another discovery
3211 * thread, just unregister the RPI.
3212 */
3213 lpfc_unreg_rpi(vport, ndlp);
James Smartfa4066b2008-01-11 01:53:27 -05003214 } else {
3215 /* Indicate the node has already released, should
3216 * not reference to it from within lpfc_els_free_iocb.
3217 */
3218 cmdiocb->context1 = NULL;
James Smart87af33f2007-10-27 13:37:43 -04003219 }
dea31012005-04-17 16:05:31 -05003220 }
3221 lpfc_els_free_iocb(phba, cmdiocb);
3222 return;
3223}
3224
James Smarte59058c2008-08-24 21:49:00 -04003225/**
James Smart3621a712009-04-06 18:47:14 -04003226 * lpfc_mbx_cmpl_dflt_rpi - Completion callbk func for unreg dflt rpi mbox cmd
James Smarte59058c2008-08-24 21:49:00 -04003227 * @phba: pointer to lpfc hba data structure.
3228 * @pmb: pointer to the driver internal queue element for mailbox command.
3229 *
3230 * This routine is the completion callback function for unregister default
3231 * RPI (Remote Port Index) mailbox command to the @phba. It simply releases
3232 * the associated lpfc Direct Memory Access (DMA) buffer back to the pool and
3233 * decrements the ndlp reference count held for this completion callback
3234 * function. After that, it invokes the lpfc_nlp_not_used() to check
3235 * whether there is only one reference left on the ndlp. If so, it will
3236 * perform one more decrement and trigger the release of the ndlp.
3237 **/
James Smart858c9f62007-06-17 19:56:39 -05003238void
3239lpfc_mbx_cmpl_dflt_rpi(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
3240{
3241 struct lpfc_dmabuf *mp = (struct lpfc_dmabuf *) (pmb->context1);
3242 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) pmb->context2;
3243
James Smart6fb120a2009-05-22 14:52:59 -04003244 /*
3245 * This routine is used to register and unregister in previous SLI
3246 * modes.
3247 */
3248 if ((pmb->u.mb.mbxCommand == MBX_UNREG_LOGIN) &&
3249 (phba->sli_rev == LPFC_SLI_REV4))
3250 lpfc_sli4_free_rpi(phba, pmb->u.mb.un.varUnregLogin.rpi);
3251
James Smart858c9f62007-06-17 19:56:39 -05003252 pmb->context1 = NULL;
3253 lpfc_mbuf_free(phba, mp->virt, mp->phys);
3254 kfree(mp);
3255 mempool_free(pmb, phba->mbox_mem_pool);
James Smart58da1ff2008-04-07 10:15:56 -04003256 if (ndlp && NLP_CHK_NODE_ACT(ndlp)) {
James Smarta8adb832007-10-27 13:37:53 -04003257 lpfc_nlp_put(ndlp);
James Smarta8adb832007-10-27 13:37:53 -04003258 /* This is the end of the default RPI cleanup logic for this
3259 * ndlp. If no other discovery threads are using this ndlp.
3260 * we should free all resources associated with it.
3261 */
3262 lpfc_nlp_not_used(ndlp);
3263 }
James Smart3772a992009-05-22 14:50:54 -04003264
James Smart858c9f62007-06-17 19:56:39 -05003265 return;
3266}
3267
James Smarte59058c2008-08-24 21:49:00 -04003268/**
James Smart3621a712009-04-06 18:47:14 -04003269 * lpfc_cmpl_els_rsp - Completion callback function for els response iocb cmd
James Smarte59058c2008-08-24 21:49:00 -04003270 * @phba: pointer to lpfc hba data structure.
3271 * @cmdiocb: pointer to lpfc command iocb data structure.
3272 * @rspiocb: pointer to lpfc response iocb data structure.
3273 *
3274 * This routine is the completion callback function for ELS Response IOCB
3275 * command. In normal case, this callback function just properly sets the
3276 * nlp_flag bitmap in the ndlp data structure, if the mbox command reference
3277 * field in the command IOCB is not NULL, the referred mailbox command will
3278 * be send out, and then invokes the lpfc_els_free_iocb() routine to release
3279 * the IOCB. Under error conditions, such as when a LS_RJT is returned or a
3280 * link down event occurred during the discovery, the lpfc_nlp_not_used()
3281 * routine shall be invoked trying to release the ndlp if no other threads
3282 * are currently referring it.
3283 **/
dea31012005-04-17 16:05:31 -05003284static void
James Smart858c9f62007-06-17 19:56:39 -05003285lpfc_cmpl_els_rsp(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
James Smart329f9bc2007-04-25 09:53:01 -04003286 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -05003287{
James Smart2e0fef82007-06-17 19:56:36 -05003288 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
3289 struct lpfc_vport *vport = ndlp ? ndlp->vport : NULL;
3290 struct Scsi_Host *shost = vport ? lpfc_shost_from_vport(vport) : NULL;
James Smart87af33f2007-10-27 13:37:43 -04003291 IOCB_t *irsp;
3292 uint8_t *pcmd;
dea31012005-04-17 16:05:31 -05003293 LPFC_MBOXQ_t *mbox = NULL;
James Smart2e0fef82007-06-17 19:56:36 -05003294 struct lpfc_dmabuf *mp = NULL;
James Smart87af33f2007-10-27 13:37:43 -04003295 uint32_t ls_rjt = 0;
dea31012005-04-17 16:05:31 -05003296
James Smart33ccf8d2006-08-17 11:57:58 -04003297 irsp = &rspiocb->iocb;
3298
dea31012005-04-17 16:05:31 -05003299 if (cmdiocb->context_un.mbox)
3300 mbox = cmdiocb->context_un.mbox;
3301
James Smartfa4066b2008-01-11 01:53:27 -05003302 /* First determine if this is a LS_RJT cmpl. Note, this callback
3303 * function can have cmdiocb->contest1 (ndlp) field set to NULL.
3304 */
James Smart87af33f2007-10-27 13:37:43 -04003305 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) cmdiocb->context2)->virt);
James Smart58da1ff2008-04-07 10:15:56 -04003306 if (ndlp && NLP_CHK_NODE_ACT(ndlp) &&
3307 (*((uint32_t *) (pcmd)) == ELS_CMD_LS_RJT)) {
James Smartfa4066b2008-01-11 01:53:27 -05003308 /* A LS_RJT associated with Default RPI cleanup has its own
Daniel Mack3ad2f3f2010-02-03 08:01:28 +08003309 * separate code path.
James Smart87af33f2007-10-27 13:37:43 -04003310 */
3311 if (!(ndlp->nlp_flag & NLP_RM_DFLT_RPI))
3312 ls_rjt = 1;
3313 }
3314
dea31012005-04-17 16:05:31 -05003315 /* Check to see if link went down during discovery */
James Smart58da1ff2008-04-07 10:15:56 -04003316 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp) || lpfc_els_chk_latt(vport)) {
dea31012005-04-17 16:05:31 -05003317 if (mbox) {
James Smart14691152006-12-02 13:34:28 -05003318 mp = (struct lpfc_dmabuf *) mbox->context1;
3319 if (mp) {
3320 lpfc_mbuf_free(phba, mp->virt, mp->phys);
3321 kfree(mp);
3322 }
James Smart329f9bc2007-04-25 09:53:01 -04003323 mempool_free(mbox, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -05003324 }
James Smart58da1ff2008-04-07 10:15:56 -04003325 if (ndlp && NLP_CHK_NODE_ACT(ndlp) &&
3326 (ndlp->nlp_flag & NLP_RM_DFLT_RPI))
James Smartfa4066b2008-01-11 01:53:27 -05003327 if (lpfc_nlp_not_used(ndlp)) {
James Smart98c9ea52007-10-27 13:37:33 -04003328 ndlp = NULL;
James Smartfa4066b2008-01-11 01:53:27 -05003329 /* Indicate the node has already released,
3330 * should not reference to it from within
3331 * the routine lpfc_els_free_iocb.
3332 */
3333 cmdiocb->context1 = NULL;
3334 }
dea31012005-04-17 16:05:31 -05003335 goto out;
3336 }
3337
James Smart858c9f62007-06-17 19:56:39 -05003338 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
James Smart51ef4c22007-08-02 11:10:31 -04003339 "ELS rsp cmpl: status:x%x/x%x did:x%x",
James Smart858c9f62007-06-17 19:56:39 -05003340 irsp->ulpStatus, irsp->un.ulpWord[4],
James Smart51ef4c22007-08-02 11:10:31 -04003341 cmdiocb->iocb.un.elsreq64.remoteID);
dea31012005-04-17 16:05:31 -05003342 /* ELS response tag <ulpIoTag> completes */
James Smarte8b62012007-08-02 11:10:09 -04003343 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
3344 "0110 ELS response tag x%x completes "
3345 "Data: x%x x%x x%x x%x x%x x%x x%x\n",
3346 cmdiocb->iocb.ulpIoTag, rspiocb->iocb.ulpStatus,
3347 rspiocb->iocb.un.ulpWord[4], rspiocb->iocb.ulpTimeout,
3348 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
3349 ndlp->nlp_rpi);
dea31012005-04-17 16:05:31 -05003350 if (mbox) {
3351 if ((rspiocb->iocb.ulpStatus == 0)
3352 && (ndlp->nlp_flag & NLP_ACC_REGLOGIN)) {
James Smart2e0fef82007-06-17 19:56:36 -05003353 lpfc_unreg_rpi(vport, ndlp);
James Smarte47c9092008-02-08 18:49:26 -05003354 /* Increment reference count to ndlp to hold the
3355 * reference to ndlp for the callback function.
3356 */
James Smart329f9bc2007-04-25 09:53:01 -04003357 mbox->context2 = lpfc_nlp_get(ndlp);
James Smart2e0fef82007-06-17 19:56:36 -05003358 mbox->vport = vport;
James Smart858c9f62007-06-17 19:56:39 -05003359 if (ndlp->nlp_flag & NLP_RM_DFLT_RPI) {
3360 mbox->mbox_flag |= LPFC_MBX_IMED_UNREG;
3361 mbox->mbox_cmpl = lpfc_mbx_cmpl_dflt_rpi;
3362 }
3363 else {
3364 mbox->mbox_cmpl = lpfc_mbx_cmpl_reg_login;
3365 ndlp->nlp_prev_state = ndlp->nlp_state;
3366 lpfc_nlp_set_state(vport, ndlp,
James Smart2e0fef82007-06-17 19:56:36 -05003367 NLP_STE_REG_LOGIN_ISSUE);
James Smart858c9f62007-06-17 19:56:39 -05003368 }
James Smart0b727fe2007-10-27 13:37:25 -04003369 if (lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT)
James Smarte47c9092008-02-08 18:49:26 -05003370 != MBX_NOT_FINISHED)
dea31012005-04-17 16:05:31 -05003371 goto out;
James Smarte47c9092008-02-08 18:49:26 -05003372 else
3373 /* Decrement the ndlp reference count we
3374 * set for this failed mailbox command.
3375 */
3376 lpfc_nlp_put(ndlp);
James Smart98c9ea52007-10-27 13:37:33 -04003377
3378 /* ELS rsp: Cannot issue reg_login for <NPortid> */
3379 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
3380 "0138 ELS rsp: Cannot issue reg_login for x%x "
3381 "Data: x%x x%x x%x\n",
3382 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
3383 ndlp->nlp_rpi);
3384
James Smartfa4066b2008-01-11 01:53:27 -05003385 if (lpfc_nlp_not_used(ndlp)) {
James Smart98c9ea52007-10-27 13:37:33 -04003386 ndlp = NULL;
James Smartfa4066b2008-01-11 01:53:27 -05003387 /* Indicate node has already been released,
3388 * should not reference to it from within
3389 * the routine lpfc_els_free_iocb.
3390 */
3391 cmdiocb->context1 = NULL;
3392 }
dea31012005-04-17 16:05:31 -05003393 } else {
James Smart858c9f62007-06-17 19:56:39 -05003394 /* Do not drop node for lpfc_els_abort'ed ELS cmds */
3395 if (!lpfc_error_lost_link(irsp) &&
3396 ndlp->nlp_flag & NLP_ACC_REGLOGIN) {
James Smartfa4066b2008-01-11 01:53:27 -05003397 if (lpfc_nlp_not_used(ndlp)) {
James Smart98c9ea52007-10-27 13:37:33 -04003398 ndlp = NULL;
James Smartfa4066b2008-01-11 01:53:27 -05003399 /* Indicate node has already been
3400 * released, should not reference
3401 * to it from within the routine
3402 * lpfc_els_free_iocb.
3403 */
3404 cmdiocb->context1 = NULL;
3405 }
dea31012005-04-17 16:05:31 -05003406 }
3407 }
James Smart14691152006-12-02 13:34:28 -05003408 mp = (struct lpfc_dmabuf *) mbox->context1;
3409 if (mp) {
3410 lpfc_mbuf_free(phba, mp->virt, mp->phys);
3411 kfree(mp);
3412 }
3413 mempool_free(mbox, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -05003414 }
3415out:
James Smart58da1ff2008-04-07 10:15:56 -04003416 if (ndlp && NLP_CHK_NODE_ACT(ndlp)) {
James Smart2e0fef82007-06-17 19:56:36 -05003417 spin_lock_irq(shost->host_lock);
James Smart858c9f62007-06-17 19:56:39 -05003418 ndlp->nlp_flag &= ~(NLP_ACC_REGLOGIN | NLP_RM_DFLT_RPI);
James Smart2e0fef82007-06-17 19:56:36 -05003419 spin_unlock_irq(shost->host_lock);
James Smart87af33f2007-10-27 13:37:43 -04003420
3421 /* If the node is not being used by another discovery thread,
3422 * and we are sending a reject, we are done with it.
3423 * Release driver reference count here and free associated
3424 * resources.
3425 */
3426 if (ls_rjt)
James Smartfa4066b2008-01-11 01:53:27 -05003427 if (lpfc_nlp_not_used(ndlp))
3428 /* Indicate node has already been released,
3429 * should not reference to it from within
3430 * the routine lpfc_els_free_iocb.
3431 */
3432 cmdiocb->context1 = NULL;
dea31012005-04-17 16:05:31 -05003433 }
James Smart87af33f2007-10-27 13:37:43 -04003434
dea31012005-04-17 16:05:31 -05003435 lpfc_els_free_iocb(phba, cmdiocb);
3436 return;
3437}
3438
James Smarte59058c2008-08-24 21:49:00 -04003439/**
James Smart3621a712009-04-06 18:47:14 -04003440 * lpfc_els_rsp_acc - Prepare and issue an acc response iocb command
James Smarte59058c2008-08-24 21:49:00 -04003441 * @vport: pointer to a host virtual N_Port data structure.
3442 * @flag: the els command code to be accepted.
3443 * @oldiocb: pointer to the original lpfc command iocb data structure.
3444 * @ndlp: pointer to a node-list data structure.
3445 * @mbox: pointer to the driver internal queue element for mailbox command.
3446 *
3447 * This routine prepares and issues an Accept (ACC) response IOCB
3448 * command. It uses the @flag to properly set up the IOCB field for the
3449 * specific ACC response command to be issued and invokes the
3450 * lpfc_sli_issue_iocb() routine to send out ACC response IOCB. If a
3451 * @mbox pointer is passed in, it will be put into the context_un.mbox
3452 * field of the IOCB for the completion callback function to issue the
3453 * mailbox command to the HBA later when callback is invoked.
3454 *
3455 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
3456 * will be incremented by 1 for holding the ndlp and the reference to ndlp
3457 * will be stored into the context1 field of the IOCB for the completion
3458 * callback function to the corresponding response ELS IOCB command.
3459 *
3460 * Return code
3461 * 0 - Successfully issued acc response
3462 * 1 - Failed to issue acc response
3463 **/
dea31012005-04-17 16:05:31 -05003464int
James Smart2e0fef82007-06-17 19:56:36 -05003465lpfc_els_rsp_acc(struct lpfc_vport *vport, uint32_t flag,
3466 struct lpfc_iocbq *oldiocb, struct lpfc_nodelist *ndlp,
James Smart51ef4c22007-08-02 11:10:31 -04003467 LPFC_MBOXQ_t *mbox)
dea31012005-04-17 16:05:31 -05003468{
James Smart2e0fef82007-06-17 19:56:36 -05003469 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
3470 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05003471 IOCB_t *icmd;
3472 IOCB_t *oldcmd;
3473 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05003474 struct lpfc_sli *psli;
3475 uint8_t *pcmd;
3476 uint16_t cmdsize;
3477 int rc;
James Smart82d9a2a2006-04-15 11:53:05 -04003478 ELS_PKT *els_pkt_ptr;
dea31012005-04-17 16:05:31 -05003479
3480 psli = &phba->sli;
dea31012005-04-17 16:05:31 -05003481 oldcmd = &oldiocb->iocb;
3482
3483 switch (flag) {
3484 case ELS_CMD_ACC:
James Smart92d7f7b2007-06-17 19:56:38 -05003485 cmdsize = sizeof(uint32_t);
James Smart2e0fef82007-06-17 19:56:36 -05003486 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry,
3487 ndlp, ndlp->nlp_DID, ELS_CMD_ACC);
James Smart488d1462006-03-07 15:02:37 -05003488 if (!elsiocb) {
James Smart2e0fef82007-06-17 19:56:36 -05003489 spin_lock_irq(shost->host_lock);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05003490 ndlp->nlp_flag &= ~NLP_LOGO_ACC;
James Smart2e0fef82007-06-17 19:56:36 -05003491 spin_unlock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003492 return 1;
dea31012005-04-17 16:05:31 -05003493 }
James Smart2e0fef82007-06-17 19:56:36 -05003494
dea31012005-04-17 16:05:31 -05003495 icmd = &elsiocb->iocb;
3496 icmd->ulpContext = oldcmd->ulpContext; /* Xri */
3497 pcmd = (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
3498 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
James Smart92d7f7b2007-06-17 19:56:38 -05003499 pcmd += sizeof(uint32_t);
James Smart858c9f62007-06-17 19:56:39 -05003500
3501 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
3502 "Issue ACC: did:x%x flg:x%x",
3503 ndlp->nlp_DID, ndlp->nlp_flag, 0);
dea31012005-04-17 16:05:31 -05003504 break;
3505 case ELS_CMD_PLOGI:
James Smart92d7f7b2007-06-17 19:56:38 -05003506 cmdsize = (sizeof(struct serv_parm) + sizeof(uint32_t));
James Smart2e0fef82007-06-17 19:56:36 -05003507 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry,
3508 ndlp, ndlp->nlp_DID, ELS_CMD_ACC);
James Smart488d1462006-03-07 15:02:37 -05003509 if (!elsiocb)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003510 return 1;
James Smart488d1462006-03-07 15:02:37 -05003511
dea31012005-04-17 16:05:31 -05003512 icmd = &elsiocb->iocb;
3513 icmd->ulpContext = oldcmd->ulpContext; /* Xri */
3514 pcmd = (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
3515
3516 if (mbox)
3517 elsiocb->context_un.mbox = mbox;
3518
3519 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
James Smart92d7f7b2007-06-17 19:56:38 -05003520 pcmd += sizeof(uint32_t);
3521 memcpy(pcmd, &vport->fc_sparam, sizeof(struct serv_parm));
James Smart858c9f62007-06-17 19:56:39 -05003522
3523 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
3524 "Issue ACC PLOGI: did:x%x flg:x%x",
3525 ndlp->nlp_DID, ndlp->nlp_flag, 0);
dea31012005-04-17 16:05:31 -05003526 break;
James Smart82d9a2a2006-04-15 11:53:05 -04003527 case ELS_CMD_PRLO:
James Smart92d7f7b2007-06-17 19:56:38 -05003528 cmdsize = sizeof(uint32_t) + sizeof(PRLO);
James Smart2e0fef82007-06-17 19:56:36 -05003529 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry,
James Smart82d9a2a2006-04-15 11:53:05 -04003530 ndlp, ndlp->nlp_DID, ELS_CMD_PRLO);
3531 if (!elsiocb)
3532 return 1;
3533
3534 icmd = &elsiocb->iocb;
3535 icmd->ulpContext = oldcmd->ulpContext; /* Xri */
3536 pcmd = (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
3537
3538 memcpy(pcmd, ((struct lpfc_dmabuf *) oldiocb->context2)->virt,
James Smart92d7f7b2007-06-17 19:56:38 -05003539 sizeof(uint32_t) + sizeof(PRLO));
James Smart82d9a2a2006-04-15 11:53:05 -04003540 *((uint32_t *) (pcmd)) = ELS_CMD_PRLO_ACC;
3541 els_pkt_ptr = (ELS_PKT *) pcmd;
3542 els_pkt_ptr->un.prlo.acceptRspCode = PRLO_REQ_EXECUTED;
James Smart858c9f62007-06-17 19:56:39 -05003543
3544 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
3545 "Issue ACC PRLO: did:x%x flg:x%x",
3546 ndlp->nlp_DID, ndlp->nlp_flag, 0);
James Smart82d9a2a2006-04-15 11:53:05 -04003547 break;
dea31012005-04-17 16:05:31 -05003548 default:
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003549 return 1;
dea31012005-04-17 16:05:31 -05003550 }
dea31012005-04-17 16:05:31 -05003551 /* Xmit ELS ACC response tag <ulpIoTag> */
James Smarte8b62012007-08-02 11:10:09 -04003552 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
3553 "0128 Xmit ELS ACC response tag x%x, XRI: x%x, "
3554 "DID: x%x, nlp_flag: x%x nlp_state: x%x RPI: x%x\n",
3555 elsiocb->iotag, elsiocb->iocb.ulpContext,
3556 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
3557 ndlp->nlp_rpi);
dea31012005-04-17 16:05:31 -05003558 if (ndlp->nlp_flag & NLP_LOGO_ACC) {
James Smart2e0fef82007-06-17 19:56:36 -05003559 spin_lock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003560 ndlp->nlp_flag &= ~NLP_LOGO_ACC;
James Smart2e0fef82007-06-17 19:56:36 -05003561 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05003562 elsiocb->iocb_cmpl = lpfc_cmpl_els_logo_acc;
3563 } else {
James Smart858c9f62007-06-17 19:56:39 -05003564 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
dea31012005-04-17 16:05:31 -05003565 }
3566
3567 phba->fc_stat.elsXmitACC++;
James Smart3772a992009-05-22 14:50:54 -04003568 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
dea31012005-04-17 16:05:31 -05003569 if (rc == IOCB_ERROR) {
3570 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003571 return 1;
dea31012005-04-17 16:05:31 -05003572 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003573 return 0;
dea31012005-04-17 16:05:31 -05003574}
3575
James Smarte59058c2008-08-24 21:49:00 -04003576/**
James Smart3621a712009-04-06 18:47:14 -04003577 * lpfc_els_rsp_reject - Propare and issue a rjt response iocb command
James Smarte59058c2008-08-24 21:49:00 -04003578 * @vport: pointer to a virtual N_Port data structure.
3579 * @rejectError:
3580 * @oldiocb: pointer to the original lpfc command iocb data structure.
3581 * @ndlp: pointer to a node-list data structure.
3582 * @mbox: pointer to the driver internal queue element for mailbox command.
3583 *
3584 * This routine prepares and issue an Reject (RJT) response IOCB
3585 * command. If a @mbox pointer is passed in, it will be put into the
3586 * context_un.mbox field of the IOCB for the completion callback function
3587 * to issue to the HBA later.
3588 *
3589 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
3590 * will be incremented by 1 for holding the ndlp and the reference to ndlp
3591 * will be stored into the context1 field of the IOCB for the completion
3592 * callback function to the reject response ELS IOCB command.
3593 *
3594 * Return code
3595 * 0 - Successfully issued reject response
3596 * 1 - Failed to issue reject response
3597 **/
dea31012005-04-17 16:05:31 -05003598int
James Smart2e0fef82007-06-17 19:56:36 -05003599lpfc_els_rsp_reject(struct lpfc_vport *vport, uint32_t rejectError,
James Smart858c9f62007-06-17 19:56:39 -05003600 struct lpfc_iocbq *oldiocb, struct lpfc_nodelist *ndlp,
3601 LPFC_MBOXQ_t *mbox)
dea31012005-04-17 16:05:31 -05003602{
James Smart2e0fef82007-06-17 19:56:36 -05003603 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05003604 IOCB_t *icmd;
3605 IOCB_t *oldcmd;
3606 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05003607 struct lpfc_sli *psli;
3608 uint8_t *pcmd;
3609 uint16_t cmdsize;
3610 int rc;
3611
3612 psli = &phba->sli;
James Smart92d7f7b2007-06-17 19:56:38 -05003613 cmdsize = 2 * sizeof(uint32_t);
James Smart2e0fef82007-06-17 19:56:36 -05003614 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry, ndlp,
3615 ndlp->nlp_DID, ELS_CMD_LS_RJT);
James Smart488d1462006-03-07 15:02:37 -05003616 if (!elsiocb)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003617 return 1;
dea31012005-04-17 16:05:31 -05003618
3619 icmd = &elsiocb->iocb;
3620 oldcmd = &oldiocb->iocb;
3621 icmd->ulpContext = oldcmd->ulpContext; /* Xri */
3622 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
3623
3624 *((uint32_t *) (pcmd)) = ELS_CMD_LS_RJT;
James Smart92d7f7b2007-06-17 19:56:38 -05003625 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05003626 *((uint32_t *) (pcmd)) = rejectError;
3627
James Smart51ef4c22007-08-02 11:10:31 -04003628 if (mbox)
James Smart858c9f62007-06-17 19:56:39 -05003629 elsiocb->context_un.mbox = mbox;
James Smart858c9f62007-06-17 19:56:39 -05003630
dea31012005-04-17 16:05:31 -05003631 /* Xmit ELS RJT <err> response tag <ulpIoTag> */
James Smarte8b62012007-08-02 11:10:09 -04003632 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
3633 "0129 Xmit ELS RJT x%x response tag x%x "
3634 "xri x%x, did x%x, nlp_flag x%x, nlp_state x%x, "
3635 "rpi x%x\n",
3636 rejectError, elsiocb->iotag,
3637 elsiocb->iocb.ulpContext, ndlp->nlp_DID,
3638 ndlp->nlp_flag, ndlp->nlp_state, ndlp->nlp_rpi);
James Smart858c9f62007-06-17 19:56:39 -05003639 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
3640 "Issue LS_RJT: did:x%x flg:x%x err:x%x",
3641 ndlp->nlp_DID, ndlp->nlp_flag, rejectError);
3642
dea31012005-04-17 16:05:31 -05003643 phba->fc_stat.elsXmitLSRJT++;
James Smart858c9f62007-06-17 19:56:39 -05003644 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
James Smart3772a992009-05-22 14:50:54 -04003645 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
James Smart51ef4c22007-08-02 11:10:31 -04003646
dea31012005-04-17 16:05:31 -05003647 if (rc == IOCB_ERROR) {
3648 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003649 return 1;
dea31012005-04-17 16:05:31 -05003650 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003651 return 0;
dea31012005-04-17 16:05:31 -05003652}
3653
James Smarte59058c2008-08-24 21:49:00 -04003654/**
James Smart3621a712009-04-06 18:47:14 -04003655 * lpfc_els_rsp_adisc_acc - Prepare and issue acc response to adisc iocb cmd
James Smarte59058c2008-08-24 21:49:00 -04003656 * @vport: pointer to a virtual N_Port data structure.
3657 * @oldiocb: pointer to the original lpfc command iocb data structure.
3658 * @ndlp: pointer to a node-list data structure.
3659 *
3660 * This routine prepares and issues an Accept (ACC) response to Address
3661 * Discover (ADISC) ELS command. It simply prepares the payload of the IOCB
3662 * and invokes the lpfc_sli_issue_iocb() routine to send out the command.
3663 *
3664 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
3665 * will be incremented by 1 for holding the ndlp and the reference to ndlp
3666 * will be stored into the context1 field of the IOCB for the completion
3667 * callback function to the ADISC Accept response ELS IOCB command.
3668 *
3669 * Return code
3670 * 0 - Successfully issued acc adisc response
3671 * 1 - Failed to issue adisc acc response
3672 **/
dea31012005-04-17 16:05:31 -05003673int
James Smart2e0fef82007-06-17 19:56:36 -05003674lpfc_els_rsp_adisc_acc(struct lpfc_vport *vport, struct lpfc_iocbq *oldiocb,
3675 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05003676{
James Smart2e0fef82007-06-17 19:56:36 -05003677 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05003678 ADISC *ap;
James Smart2e0fef82007-06-17 19:56:36 -05003679 IOCB_t *icmd, *oldcmd;
dea31012005-04-17 16:05:31 -05003680 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05003681 uint8_t *pcmd;
3682 uint16_t cmdsize;
3683 int rc;
3684
James Smart92d7f7b2007-06-17 19:56:38 -05003685 cmdsize = sizeof(uint32_t) + sizeof(ADISC);
James Smart2e0fef82007-06-17 19:56:36 -05003686 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry, ndlp,
3687 ndlp->nlp_DID, ELS_CMD_ACC);
James Smart488d1462006-03-07 15:02:37 -05003688 if (!elsiocb)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003689 return 1;
dea31012005-04-17 16:05:31 -05003690
dea31012005-04-17 16:05:31 -05003691 icmd = &elsiocb->iocb;
3692 oldcmd = &oldiocb->iocb;
3693 icmd->ulpContext = oldcmd->ulpContext; /* Xri */
James Smart5b8bd0c2007-04-25 09:52:49 -04003694
3695 /* Xmit ADISC ACC response tag <ulpIoTag> */
James Smarte8b62012007-08-02 11:10:09 -04003696 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
3697 "0130 Xmit ADISC ACC response iotag x%x xri: "
3698 "x%x, did x%x, nlp_flag x%x, nlp_state x%x rpi x%x\n",
3699 elsiocb->iotag, elsiocb->iocb.ulpContext,
3700 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
3701 ndlp->nlp_rpi);
dea31012005-04-17 16:05:31 -05003702 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
3703
3704 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
James Smart92d7f7b2007-06-17 19:56:38 -05003705 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05003706
3707 ap = (ADISC *) (pcmd);
3708 ap->hardAL_PA = phba->fc_pref_ALPA;
James Smart92d7f7b2007-06-17 19:56:38 -05003709 memcpy(&ap->portName, &vport->fc_portname, sizeof(struct lpfc_name));
3710 memcpy(&ap->nodeName, &vport->fc_nodename, sizeof(struct lpfc_name));
James Smart2e0fef82007-06-17 19:56:36 -05003711 ap->DID = be32_to_cpu(vport->fc_myDID);
dea31012005-04-17 16:05:31 -05003712
James Smart858c9f62007-06-17 19:56:39 -05003713 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
3714 "Issue ACC ADISC: did:x%x flg:x%x",
3715 ndlp->nlp_DID, ndlp->nlp_flag, 0);
3716
dea31012005-04-17 16:05:31 -05003717 phba->fc_stat.elsXmitACC++;
James Smart858c9f62007-06-17 19:56:39 -05003718 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
James Smart3772a992009-05-22 14:50:54 -04003719 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
dea31012005-04-17 16:05:31 -05003720 if (rc == IOCB_ERROR) {
3721 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003722 return 1;
dea31012005-04-17 16:05:31 -05003723 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003724 return 0;
dea31012005-04-17 16:05:31 -05003725}
3726
James Smarte59058c2008-08-24 21:49:00 -04003727/**
James Smart3621a712009-04-06 18:47:14 -04003728 * lpfc_els_rsp_prli_acc - Prepare and issue acc response to prli iocb cmd
James Smarte59058c2008-08-24 21:49:00 -04003729 * @vport: pointer to a virtual N_Port data structure.
3730 * @oldiocb: pointer to the original lpfc command iocb data structure.
3731 * @ndlp: pointer to a node-list data structure.
3732 *
3733 * This routine prepares and issues an Accept (ACC) response to Process
3734 * Login (PRLI) ELS command. It simply prepares the payload of the IOCB
3735 * and invokes the lpfc_sli_issue_iocb() routine to send out the command.
3736 *
3737 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
3738 * will be incremented by 1 for holding the ndlp and the reference to ndlp
3739 * will be stored into the context1 field of the IOCB for the completion
3740 * callback function to the PRLI Accept response ELS IOCB command.
3741 *
3742 * Return code
3743 * 0 - Successfully issued acc prli response
3744 * 1 - Failed to issue acc prli response
3745 **/
dea31012005-04-17 16:05:31 -05003746int
James Smart2e0fef82007-06-17 19:56:36 -05003747lpfc_els_rsp_prli_acc(struct lpfc_vport *vport, struct lpfc_iocbq *oldiocb,
James Smart5b8bd0c2007-04-25 09:52:49 -04003748 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05003749{
James Smart2e0fef82007-06-17 19:56:36 -05003750 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05003751 PRLI *npr;
3752 lpfc_vpd_t *vpd;
3753 IOCB_t *icmd;
3754 IOCB_t *oldcmd;
3755 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05003756 struct lpfc_sli *psli;
3757 uint8_t *pcmd;
3758 uint16_t cmdsize;
3759 int rc;
3760
3761 psli = &phba->sli;
dea31012005-04-17 16:05:31 -05003762
James Smart92d7f7b2007-06-17 19:56:38 -05003763 cmdsize = sizeof(uint32_t) + sizeof(PRLI);
James Smart2e0fef82007-06-17 19:56:36 -05003764 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry, ndlp,
James Smart92d7f7b2007-06-17 19:56:38 -05003765 ndlp->nlp_DID, (ELS_CMD_ACC | (ELS_CMD_PRLI & ~ELS_RSP_MASK)));
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003766 if (!elsiocb)
3767 return 1;
dea31012005-04-17 16:05:31 -05003768
dea31012005-04-17 16:05:31 -05003769 icmd = &elsiocb->iocb;
3770 oldcmd = &oldiocb->iocb;
3771 icmd->ulpContext = oldcmd->ulpContext; /* Xri */
James Smart5b8bd0c2007-04-25 09:52:49 -04003772 /* Xmit PRLI ACC response tag <ulpIoTag> */
James Smarte8b62012007-08-02 11:10:09 -04003773 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
3774 "0131 Xmit PRLI ACC response tag x%x xri x%x, "
3775 "did x%x, nlp_flag x%x, nlp_state x%x, rpi x%x\n",
3776 elsiocb->iotag, elsiocb->iocb.ulpContext,
3777 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
3778 ndlp->nlp_rpi);
dea31012005-04-17 16:05:31 -05003779 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
3780
3781 *((uint32_t *) (pcmd)) = (ELS_CMD_ACC | (ELS_CMD_PRLI & ~ELS_RSP_MASK));
James Smart92d7f7b2007-06-17 19:56:38 -05003782 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05003783
3784 /* For PRLI, remainder of payload is PRLI parameter page */
James Smart92d7f7b2007-06-17 19:56:38 -05003785 memset(pcmd, 0, sizeof(PRLI));
dea31012005-04-17 16:05:31 -05003786
3787 npr = (PRLI *) pcmd;
3788 vpd = &phba->vpd;
3789 /*
James Smart0d2b6b82008-06-14 22:52:47 -04003790 * If the remote port is a target and our firmware version is 3.20 or
3791 * later, set the following bits for FC-TAPE support.
dea31012005-04-17 16:05:31 -05003792 */
James Smart0d2b6b82008-06-14 22:52:47 -04003793 if ((ndlp->nlp_type & NLP_FCP_TARGET) &&
3794 (vpd->rev.feaLevelHigh >= 0x02)) {
dea31012005-04-17 16:05:31 -05003795 npr->ConfmComplAllowed = 1;
3796 npr->Retry = 1;
3797 npr->TaskRetryIdReq = 1;
3798 }
3799
3800 npr->acceptRspCode = PRLI_REQ_EXECUTED;
3801 npr->estabImagePair = 1;
3802 npr->readXferRdyDis = 1;
3803 npr->ConfmComplAllowed = 1;
3804
3805 npr->prliType = PRLI_FCP_TYPE;
3806 npr->initiatorFunc = 1;
3807
James Smart858c9f62007-06-17 19:56:39 -05003808 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
3809 "Issue ACC PRLI: did:x%x flg:x%x",
3810 ndlp->nlp_DID, ndlp->nlp_flag, 0);
3811
dea31012005-04-17 16:05:31 -05003812 phba->fc_stat.elsXmitACC++;
James Smart858c9f62007-06-17 19:56:39 -05003813 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
dea31012005-04-17 16:05:31 -05003814
James Smart3772a992009-05-22 14:50:54 -04003815 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
dea31012005-04-17 16:05:31 -05003816 if (rc == IOCB_ERROR) {
3817 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003818 return 1;
dea31012005-04-17 16:05:31 -05003819 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003820 return 0;
dea31012005-04-17 16:05:31 -05003821}
3822
James Smarte59058c2008-08-24 21:49:00 -04003823/**
James Smart3621a712009-04-06 18:47:14 -04003824 * lpfc_els_rsp_rnid_acc - Issue rnid acc response iocb command
James Smarte59058c2008-08-24 21:49:00 -04003825 * @vport: pointer to a virtual N_Port data structure.
3826 * @format: rnid command format.
3827 * @oldiocb: pointer to the original lpfc command iocb data structure.
3828 * @ndlp: pointer to a node-list data structure.
3829 *
3830 * This routine issues a Request Node Identification Data (RNID) Accept
3831 * (ACC) response. It constructs the RNID ACC response command according to
3832 * the proper @format and then calls the lpfc_sli_issue_iocb() routine to
3833 * issue the response. Note that this command does not need to hold the ndlp
3834 * reference count for the callback. So, the ndlp reference count taken by
3835 * the lpfc_prep_els_iocb() routine is put back and the context1 field of
3836 * IOCB is set to NULL to indicate to the lpfc_els_free_iocb() routine that
3837 * there is no ndlp reference available.
3838 *
3839 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
3840 * will be incremented by 1 for holding the ndlp and the reference to ndlp
3841 * will be stored into the context1 field of the IOCB for the completion
3842 * callback function. However, for the RNID Accept Response ELS command,
3843 * this is undone later by this routine after the IOCB is allocated.
3844 *
3845 * Return code
3846 * 0 - Successfully issued acc rnid response
3847 * 1 - Failed to issue acc rnid response
3848 **/
dea31012005-04-17 16:05:31 -05003849static int
James Smart2e0fef82007-06-17 19:56:36 -05003850lpfc_els_rsp_rnid_acc(struct lpfc_vport *vport, uint8_t format,
James Smart329f9bc2007-04-25 09:53:01 -04003851 struct lpfc_iocbq *oldiocb, struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05003852{
James Smart2e0fef82007-06-17 19:56:36 -05003853 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05003854 RNID *rn;
James Smart2e0fef82007-06-17 19:56:36 -05003855 IOCB_t *icmd, *oldcmd;
dea31012005-04-17 16:05:31 -05003856 struct lpfc_iocbq *elsiocb;
dea31012005-04-17 16:05:31 -05003857 struct lpfc_sli *psli;
3858 uint8_t *pcmd;
3859 uint16_t cmdsize;
3860 int rc;
3861
3862 psli = &phba->sli;
James Smart92d7f7b2007-06-17 19:56:38 -05003863 cmdsize = sizeof(uint32_t) + sizeof(uint32_t)
3864 + (2 * sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -05003865 if (format)
James Smart92d7f7b2007-06-17 19:56:38 -05003866 cmdsize += sizeof(RNID_TOP_DISC);
dea31012005-04-17 16:05:31 -05003867
James Smart2e0fef82007-06-17 19:56:36 -05003868 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry, ndlp,
3869 ndlp->nlp_DID, ELS_CMD_ACC);
James Smart488d1462006-03-07 15:02:37 -05003870 if (!elsiocb)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003871 return 1;
dea31012005-04-17 16:05:31 -05003872
dea31012005-04-17 16:05:31 -05003873 icmd = &elsiocb->iocb;
3874 oldcmd = &oldiocb->iocb;
3875 icmd->ulpContext = oldcmd->ulpContext; /* Xri */
James Smart5b8bd0c2007-04-25 09:52:49 -04003876 /* Xmit RNID ACC response tag <ulpIoTag> */
James Smarte8b62012007-08-02 11:10:09 -04003877 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
3878 "0132 Xmit RNID ACC response tag x%x xri x%x\n",
3879 elsiocb->iotag, elsiocb->iocb.ulpContext);
dea31012005-04-17 16:05:31 -05003880 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
dea31012005-04-17 16:05:31 -05003881 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
James Smart92d7f7b2007-06-17 19:56:38 -05003882 pcmd += sizeof(uint32_t);
dea31012005-04-17 16:05:31 -05003883
James Smart92d7f7b2007-06-17 19:56:38 -05003884 memset(pcmd, 0, sizeof(RNID));
dea31012005-04-17 16:05:31 -05003885 rn = (RNID *) (pcmd);
3886 rn->Format = format;
James Smart92d7f7b2007-06-17 19:56:38 -05003887 rn->CommonLen = (2 * sizeof(struct lpfc_name));
3888 memcpy(&rn->portName, &vport->fc_portname, sizeof(struct lpfc_name));
3889 memcpy(&rn->nodeName, &vport->fc_nodename, sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -05003890 switch (format) {
3891 case 0:
3892 rn->SpecificLen = 0;
3893 break;
3894 case RNID_TOPOLOGY_DISC:
James Smart92d7f7b2007-06-17 19:56:38 -05003895 rn->SpecificLen = sizeof(RNID_TOP_DISC);
dea31012005-04-17 16:05:31 -05003896 memcpy(&rn->un.topologyDisc.portName,
James Smart92d7f7b2007-06-17 19:56:38 -05003897 &vport->fc_portname, sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -05003898 rn->un.topologyDisc.unitType = RNID_HBA;
3899 rn->un.topologyDisc.physPort = 0;
3900 rn->un.topologyDisc.attachedNodes = 0;
3901 break;
3902 default:
3903 rn->CommonLen = 0;
3904 rn->SpecificLen = 0;
3905 break;
3906 }
3907
James Smart858c9f62007-06-17 19:56:39 -05003908 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
3909 "Issue ACC RNID: did:x%x flg:x%x",
3910 ndlp->nlp_DID, ndlp->nlp_flag, 0);
3911
dea31012005-04-17 16:05:31 -05003912 phba->fc_stat.elsXmitACC++;
James Smart858c9f62007-06-17 19:56:39 -05003913 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
James Smart329f9bc2007-04-25 09:53:01 -04003914 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05003915 elsiocb->context1 = NULL; /* Don't need ndlp for cmpl,
3916 * it could be freed */
3917
James Smart3772a992009-05-22 14:50:54 -04003918 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
dea31012005-04-17 16:05:31 -05003919 if (rc == IOCB_ERROR) {
3920 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003921 return 1;
dea31012005-04-17 16:05:31 -05003922 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003923 return 0;
dea31012005-04-17 16:05:31 -05003924}
3925
James Smarte59058c2008-08-24 21:49:00 -04003926/**
James Smart3621a712009-04-06 18:47:14 -04003927 * lpfc_els_disc_adisc - Issue remaining adisc iocbs to npr nodes of a vport
James Smarte59058c2008-08-24 21:49:00 -04003928 * @vport: pointer to a host virtual N_Port data structure.
3929 *
3930 * This routine issues Address Discover (ADISC) ELS commands to those
3931 * N_Ports which are in node port recovery state and ADISC has not been issued
3932 * for the @vport. Each time an ELS ADISC IOCB is issued by invoking the
3933 * lpfc_issue_els_adisc() routine, the per @vport number of discover count
3934 * (num_disc_nodes) shall be incremented. If the num_disc_nodes reaches a
3935 * pre-configured threshold (cfg_discovery_threads), the @vport fc_flag will
3936 * be marked with FC_NLP_MORE bit and the process of issuing remaining ADISC
3937 * IOCBs quit for later pick up. On the other hand, after walking through
3938 * all the ndlps with the @vport and there is none ADISC IOCB issued, the
3939 * @vport fc_flag shall be cleared with FC_NLP_MORE bit indicating there is
3940 * no more ADISC need to be sent.
3941 *
3942 * Return code
3943 * The number of N_Ports with adisc issued.
3944 **/
dea31012005-04-17 16:05:31 -05003945int
James Smart2e0fef82007-06-17 19:56:36 -05003946lpfc_els_disc_adisc(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05003947{
James Smart2e0fef82007-06-17 19:56:36 -05003948 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05003949 struct lpfc_nodelist *ndlp, *next_ndlp;
James Smart2e0fef82007-06-17 19:56:36 -05003950 int sentadisc = 0;
dea31012005-04-17 16:05:31 -05003951
James Smart685f0bf2007-04-25 09:53:08 -04003952 /* go thru NPR nodes and issue any remaining ELS ADISCs */
James Smart2e0fef82007-06-17 19:56:36 -05003953 list_for_each_entry_safe(ndlp, next_ndlp, &vport->fc_nodes, nlp_listp) {
James Smarte47c9092008-02-08 18:49:26 -05003954 if (!NLP_CHK_NODE_ACT(ndlp))
3955 continue;
James Smart685f0bf2007-04-25 09:53:08 -04003956 if (ndlp->nlp_state == NLP_STE_NPR_NODE &&
3957 (ndlp->nlp_flag & NLP_NPR_2B_DISC) != 0 &&
3958 (ndlp->nlp_flag & NLP_NPR_ADISC) != 0) {
James Smart2e0fef82007-06-17 19:56:36 -05003959 spin_lock_irq(shost->host_lock);
James Smart685f0bf2007-04-25 09:53:08 -04003960 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
James Smart2e0fef82007-06-17 19:56:36 -05003961 spin_unlock_irq(shost->host_lock);
James Smart685f0bf2007-04-25 09:53:08 -04003962 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05003963 lpfc_nlp_set_state(vport, ndlp, NLP_STE_ADISC_ISSUE);
3964 lpfc_issue_els_adisc(vport, ndlp, 0);
James Smart685f0bf2007-04-25 09:53:08 -04003965 sentadisc++;
James Smart2e0fef82007-06-17 19:56:36 -05003966 vport->num_disc_nodes++;
3967 if (vport->num_disc_nodes >=
James Smart3de2a652007-08-02 11:09:59 -04003968 vport->cfg_discovery_threads) {
James Smart2e0fef82007-06-17 19:56:36 -05003969 spin_lock_irq(shost->host_lock);
3970 vport->fc_flag |= FC_NLP_MORE;
3971 spin_unlock_irq(shost->host_lock);
James Smart685f0bf2007-04-25 09:53:08 -04003972 break;
dea31012005-04-17 16:05:31 -05003973 }
3974 }
3975 }
3976 if (sentadisc == 0) {
James Smart2e0fef82007-06-17 19:56:36 -05003977 spin_lock_irq(shost->host_lock);
3978 vport->fc_flag &= ~FC_NLP_MORE;
3979 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05003980 }
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05003981 return sentadisc;
dea31012005-04-17 16:05:31 -05003982}
3983
James Smarte59058c2008-08-24 21:49:00 -04003984/**
James Smart3621a712009-04-06 18:47:14 -04003985 * lpfc_els_disc_plogi - Issue plogi for all npr nodes of a vport before adisc
James Smarte59058c2008-08-24 21:49:00 -04003986 * @vport: pointer to a host virtual N_Port data structure.
3987 *
3988 * This routine issues Port Login (PLOGI) ELS commands to all the N_Ports
3989 * which are in node port recovery state, with a @vport. Each time an ELS
3990 * ADISC PLOGI IOCB is issued by invoking the lpfc_issue_els_plogi() routine,
3991 * the per @vport number of discover count (num_disc_nodes) shall be
3992 * incremented. If the num_disc_nodes reaches a pre-configured threshold
3993 * (cfg_discovery_threads), the @vport fc_flag will be marked with FC_NLP_MORE
3994 * bit set and quit the process of issuing remaining ADISC PLOGIN IOCBs for
3995 * later pick up. On the other hand, after walking through all the ndlps with
3996 * the @vport and there is none ADISC PLOGI IOCB issued, the @vport fc_flag
3997 * shall be cleared with the FC_NLP_MORE bit indicating there is no more ADISC
3998 * PLOGI need to be sent.
3999 *
4000 * Return code
4001 * The number of N_Ports with plogi issued.
4002 **/
dea31012005-04-17 16:05:31 -05004003int
James Smart2e0fef82007-06-17 19:56:36 -05004004lpfc_els_disc_plogi(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05004005{
James Smart2e0fef82007-06-17 19:56:36 -05004006 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05004007 struct lpfc_nodelist *ndlp, *next_ndlp;
James Smart2e0fef82007-06-17 19:56:36 -05004008 int sentplogi = 0;
dea31012005-04-17 16:05:31 -05004009
James Smart2e0fef82007-06-17 19:56:36 -05004010 /* go thru NPR nodes and issue any remaining ELS PLOGIs */
4011 list_for_each_entry_safe(ndlp, next_ndlp, &vport->fc_nodes, nlp_listp) {
James Smarte47c9092008-02-08 18:49:26 -05004012 if (!NLP_CHK_NODE_ACT(ndlp))
4013 continue;
James Smart685f0bf2007-04-25 09:53:08 -04004014 if (ndlp->nlp_state == NLP_STE_NPR_NODE &&
4015 (ndlp->nlp_flag & NLP_NPR_2B_DISC) != 0 &&
4016 (ndlp->nlp_flag & NLP_DELAY_TMO) == 0 &&
4017 (ndlp->nlp_flag & NLP_NPR_ADISC) == 0) {
4018 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05004019 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
4020 lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0);
James Smart685f0bf2007-04-25 09:53:08 -04004021 sentplogi++;
James Smart2e0fef82007-06-17 19:56:36 -05004022 vport->num_disc_nodes++;
4023 if (vport->num_disc_nodes >=
James Smart3de2a652007-08-02 11:09:59 -04004024 vport->cfg_discovery_threads) {
James Smart2e0fef82007-06-17 19:56:36 -05004025 spin_lock_irq(shost->host_lock);
4026 vport->fc_flag |= FC_NLP_MORE;
4027 spin_unlock_irq(shost->host_lock);
James Smart685f0bf2007-04-25 09:53:08 -04004028 break;
dea31012005-04-17 16:05:31 -05004029 }
4030 }
4031 }
James Smart87af33f2007-10-27 13:37:43 -04004032 if (sentplogi) {
4033 lpfc_set_disctmo(vport);
4034 }
4035 else {
James Smart2e0fef82007-06-17 19:56:36 -05004036 spin_lock_irq(shost->host_lock);
4037 vport->fc_flag &= ~FC_NLP_MORE;
4038 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05004039 }
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004040 return sentplogi;
dea31012005-04-17 16:05:31 -05004041}
4042
James Smarte59058c2008-08-24 21:49:00 -04004043/**
James Smart3621a712009-04-06 18:47:14 -04004044 * lpfc_els_flush_rscn - Clean up any rscn activities with a vport
James Smarte59058c2008-08-24 21:49:00 -04004045 * @vport: pointer to a host virtual N_Port data structure.
4046 *
4047 * This routine cleans up any Registration State Change Notification
4048 * (RSCN) activity with a @vport. Note that the fc_rscn_flush flag of the
4049 * @vport together with the host_lock is used to prevent multiple thread
4050 * trying to access the RSCN array on a same @vport at the same time.
4051 **/
James Smart92d7f7b2007-06-17 19:56:38 -05004052void
James Smart2e0fef82007-06-17 19:56:36 -05004053lpfc_els_flush_rscn(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05004054{
James Smart2e0fef82007-06-17 19:56:36 -05004055 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
4056 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05004057 int i;
4058
James Smart7f5f3d02008-02-08 18:50:14 -05004059 spin_lock_irq(shost->host_lock);
4060 if (vport->fc_rscn_flush) {
4061 /* Another thread is walking fc_rscn_id_list on this vport */
4062 spin_unlock_irq(shost->host_lock);
4063 return;
4064 }
4065 /* Indicate we are walking lpfc_els_flush_rscn on this vport */
4066 vport->fc_rscn_flush = 1;
4067 spin_unlock_irq(shost->host_lock);
4068
James Smart2e0fef82007-06-17 19:56:36 -05004069 for (i = 0; i < vport->fc_rscn_id_cnt; i++) {
James Smart92d7f7b2007-06-17 19:56:38 -05004070 lpfc_in_buf_free(phba, vport->fc_rscn_id_list[i]);
James Smart2e0fef82007-06-17 19:56:36 -05004071 vport->fc_rscn_id_list[i] = NULL;
dea31012005-04-17 16:05:31 -05004072 }
James Smart2e0fef82007-06-17 19:56:36 -05004073 spin_lock_irq(shost->host_lock);
4074 vport->fc_rscn_id_cnt = 0;
4075 vport->fc_flag &= ~(FC_RSCN_MODE | FC_RSCN_DISCOVERY);
4076 spin_unlock_irq(shost->host_lock);
4077 lpfc_can_disctmo(vport);
James Smart7f5f3d02008-02-08 18:50:14 -05004078 /* Indicate we are done walking this fc_rscn_id_list */
4079 vport->fc_rscn_flush = 0;
dea31012005-04-17 16:05:31 -05004080}
4081
James Smarte59058c2008-08-24 21:49:00 -04004082/**
James Smart3621a712009-04-06 18:47:14 -04004083 * lpfc_rscn_payload_check - Check whether there is a pending rscn to a did
James Smarte59058c2008-08-24 21:49:00 -04004084 * @vport: pointer to a host virtual N_Port data structure.
4085 * @did: remote destination port identifier.
4086 *
4087 * This routine checks whether there is any pending Registration State
4088 * Configuration Notification (RSCN) to a @did on @vport.
4089 *
4090 * Return code
4091 * None zero - The @did matched with a pending rscn
4092 * 0 - not able to match @did with a pending rscn
4093 **/
dea31012005-04-17 16:05:31 -05004094int
James Smart2e0fef82007-06-17 19:56:36 -05004095lpfc_rscn_payload_check(struct lpfc_vport *vport, uint32_t did)
dea31012005-04-17 16:05:31 -05004096{
4097 D_ID ns_did;
4098 D_ID rscn_did;
dea31012005-04-17 16:05:31 -05004099 uint32_t *lp;
James Smart92d7f7b2007-06-17 19:56:38 -05004100 uint32_t payload_len, i;
James Smart7f5f3d02008-02-08 18:50:14 -05004101 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05004102
4103 ns_did.un.word = did;
dea31012005-04-17 16:05:31 -05004104
4105 /* Never match fabric nodes for RSCNs */
4106 if ((did & Fabric_DID_MASK) == Fabric_DID_MASK)
James Smart2e0fef82007-06-17 19:56:36 -05004107 return 0;
dea31012005-04-17 16:05:31 -05004108
4109 /* If we are doing a FULL RSCN rediscovery, match everything */
James Smart2e0fef82007-06-17 19:56:36 -05004110 if (vport->fc_flag & FC_RSCN_DISCOVERY)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004111 return did;
dea31012005-04-17 16:05:31 -05004112
James Smart7f5f3d02008-02-08 18:50:14 -05004113 spin_lock_irq(shost->host_lock);
4114 if (vport->fc_rscn_flush) {
4115 /* Another thread is walking fc_rscn_id_list on this vport */
4116 spin_unlock_irq(shost->host_lock);
4117 return 0;
4118 }
4119 /* Indicate we are walking fc_rscn_id_list on this vport */
4120 vport->fc_rscn_flush = 1;
4121 spin_unlock_irq(shost->host_lock);
James Smart2e0fef82007-06-17 19:56:36 -05004122 for (i = 0; i < vport->fc_rscn_id_cnt; i++) {
James Smart92d7f7b2007-06-17 19:56:38 -05004123 lp = vport->fc_rscn_id_list[i]->virt;
4124 payload_len = be32_to_cpu(*lp++ & ~ELS_CMD_MASK);
4125 payload_len -= sizeof(uint32_t); /* take off word 0 */
dea31012005-04-17 16:05:31 -05004126 while (payload_len) {
James Smart92d7f7b2007-06-17 19:56:38 -05004127 rscn_did.un.word = be32_to_cpu(*lp++);
4128 payload_len -= sizeof(uint32_t);
James Smarteaf15d52008-12-04 22:39:29 -05004129 switch (rscn_did.un.b.resv & RSCN_ADDRESS_FORMAT_MASK) {
4130 case RSCN_ADDRESS_FORMAT_PORT:
James Smart6fb120a2009-05-22 14:52:59 -04004131 if ((ns_did.un.b.domain == rscn_did.un.b.domain)
4132 && (ns_did.un.b.area == rscn_did.un.b.area)
4133 && (ns_did.un.b.id == rscn_did.un.b.id))
James Smart7f5f3d02008-02-08 18:50:14 -05004134 goto return_did_out;
dea31012005-04-17 16:05:31 -05004135 break;
James Smarteaf15d52008-12-04 22:39:29 -05004136 case RSCN_ADDRESS_FORMAT_AREA:
dea31012005-04-17 16:05:31 -05004137 if ((ns_did.un.b.domain == rscn_did.un.b.domain)
4138 && (ns_did.un.b.area == rscn_did.un.b.area))
James Smart7f5f3d02008-02-08 18:50:14 -05004139 goto return_did_out;
dea31012005-04-17 16:05:31 -05004140 break;
James Smarteaf15d52008-12-04 22:39:29 -05004141 case RSCN_ADDRESS_FORMAT_DOMAIN:
dea31012005-04-17 16:05:31 -05004142 if (ns_did.un.b.domain == rscn_did.un.b.domain)
James Smart7f5f3d02008-02-08 18:50:14 -05004143 goto return_did_out;
dea31012005-04-17 16:05:31 -05004144 break;
James Smarteaf15d52008-12-04 22:39:29 -05004145 case RSCN_ADDRESS_FORMAT_FABRIC:
James Smart7f5f3d02008-02-08 18:50:14 -05004146 goto return_did_out;
dea31012005-04-17 16:05:31 -05004147 }
4148 }
James Smart92d7f7b2007-06-17 19:56:38 -05004149 }
James Smart7f5f3d02008-02-08 18:50:14 -05004150 /* Indicate we are done with walking fc_rscn_id_list on this vport */
4151 vport->fc_rscn_flush = 0;
James Smart92d7f7b2007-06-17 19:56:38 -05004152 return 0;
James Smart7f5f3d02008-02-08 18:50:14 -05004153return_did_out:
4154 /* Indicate we are done with walking fc_rscn_id_list on this vport */
4155 vport->fc_rscn_flush = 0;
4156 return did;
dea31012005-04-17 16:05:31 -05004157}
4158
James Smarte59058c2008-08-24 21:49:00 -04004159/**
James Smart3621a712009-04-06 18:47:14 -04004160 * lpfc_rscn_recovery_check - Send recovery event to vport nodes matching rscn
James Smarte59058c2008-08-24 21:49:00 -04004161 * @vport: pointer to a host virtual N_Port data structure.
4162 *
4163 * This routine sends recovery (NLP_EVT_DEVICE_RECOVERY) event to the
4164 * state machine for a @vport's nodes that are with pending RSCN (Registration
4165 * State Change Notification).
4166 *
4167 * Return code
4168 * 0 - Successful (currently alway return 0)
4169 **/
dea31012005-04-17 16:05:31 -05004170static int
James Smart2e0fef82007-06-17 19:56:36 -05004171lpfc_rscn_recovery_check(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05004172{
James Smart685f0bf2007-04-25 09:53:08 -04004173 struct lpfc_nodelist *ndlp = NULL;
dea31012005-04-17 16:05:31 -05004174
James Smart0d2b6b82008-06-14 22:52:47 -04004175 /* Move all affected nodes by pending RSCNs to NPR state. */
James Smart2e0fef82007-06-17 19:56:36 -05004176 list_for_each_entry(ndlp, &vport->fc_nodes, nlp_listp) {
James Smarte47c9092008-02-08 18:49:26 -05004177 if (!NLP_CHK_NODE_ACT(ndlp) ||
James Smart0d2b6b82008-06-14 22:52:47 -04004178 (ndlp->nlp_state == NLP_STE_UNUSED_NODE) ||
4179 !lpfc_rscn_payload_check(vport, ndlp->nlp_DID))
dea31012005-04-17 16:05:31 -05004180 continue;
James Smart2e0fef82007-06-17 19:56:36 -05004181 lpfc_disc_state_machine(vport, ndlp, NULL,
James Smart0d2b6b82008-06-14 22:52:47 -04004182 NLP_EVT_DEVICE_RECOVERY);
4183 lpfc_cancel_retry_delay_tmo(vport, ndlp);
dea31012005-04-17 16:05:31 -05004184 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004185 return 0;
dea31012005-04-17 16:05:31 -05004186}
4187
James Smarte59058c2008-08-24 21:49:00 -04004188/**
James Smart3621a712009-04-06 18:47:14 -04004189 * lpfc_send_rscn_event - Send an RSCN event to management application
James Smartddcc50f2008-12-04 22:38:46 -05004190 * @vport: pointer to a host virtual N_Port data structure.
4191 * @cmdiocb: pointer to lpfc command iocb data structure.
4192 *
4193 * lpfc_send_rscn_event sends an RSCN netlink event to management
4194 * applications.
4195 */
4196static void
4197lpfc_send_rscn_event(struct lpfc_vport *vport,
4198 struct lpfc_iocbq *cmdiocb)
4199{
4200 struct lpfc_dmabuf *pcmd;
4201 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
4202 uint32_t *payload_ptr;
4203 uint32_t payload_len;
4204 struct lpfc_rscn_event_header *rscn_event_data;
4205
4206 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
4207 payload_ptr = (uint32_t *) pcmd->virt;
4208 payload_len = be32_to_cpu(*payload_ptr & ~ELS_CMD_MASK);
4209
4210 rscn_event_data = kmalloc(sizeof(struct lpfc_rscn_event_header) +
4211 payload_len, GFP_KERNEL);
4212 if (!rscn_event_data) {
4213 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
4214 "0147 Failed to allocate memory for RSCN event\n");
4215 return;
4216 }
4217 rscn_event_data->event_type = FC_REG_RSCN_EVENT;
4218 rscn_event_data->payload_length = payload_len;
4219 memcpy(rscn_event_data->rscn_payload, payload_ptr,
4220 payload_len);
4221
4222 fc_host_post_vendor_event(shost,
4223 fc_get_event_number(),
4224 sizeof(struct lpfc_els_event_header) + payload_len,
4225 (char *)rscn_event_data,
4226 LPFC_NL_VENDOR_ID);
4227
4228 kfree(rscn_event_data);
4229}
4230
4231/**
James Smart3621a712009-04-06 18:47:14 -04004232 * lpfc_els_rcv_rscn - Process an unsolicited rscn iocb
James Smarte59058c2008-08-24 21:49:00 -04004233 * @vport: pointer to a host virtual N_Port data structure.
4234 * @cmdiocb: pointer to lpfc command iocb data structure.
4235 * @ndlp: pointer to a node-list data structure.
4236 *
4237 * This routine processes an unsolicited RSCN (Registration State Change
4238 * Notification) IOCB. First, the payload of the unsolicited RSCN is walked
4239 * to invoke fc_host_post_event() routine to the FC transport layer. If the
4240 * discover state machine is about to begin discovery, it just accepts the
4241 * RSCN and the discovery process will satisfy the RSCN. If this RSCN only
4242 * contains N_Port IDs for other vports on this HBA, it just accepts the
4243 * RSCN and ignore processing it. If the state machine is in the recovery
4244 * state, the fc_rscn_id_list of this @vport is walked and the
4245 * lpfc_rscn_recovery_check() routine is invoked to send recovery event for
4246 * all nodes that match RSCN payload. Otherwise, the lpfc_els_handle_rscn()
4247 * routine is invoked to handle the RSCN event.
4248 *
4249 * Return code
4250 * 0 - Just sent the acc response
4251 * 1 - Sent the acc response and waited for name server completion
4252 **/
dea31012005-04-17 16:05:31 -05004253static int
James Smart2e0fef82007-06-17 19:56:36 -05004254lpfc_els_rcv_rscn(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
James Smart51ef4c22007-08-02 11:10:31 -04004255 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05004256{
James Smart2e0fef82007-06-17 19:56:36 -05004257 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
4258 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05004259 struct lpfc_dmabuf *pcmd;
James Smart92d7f7b2007-06-17 19:56:38 -05004260 uint32_t *lp, *datap;
dea31012005-04-17 16:05:31 -05004261 IOCB_t *icmd;
James Smart92d7f7b2007-06-17 19:56:38 -05004262 uint32_t payload_len, length, nportid, *cmd;
James Smart7f5f3d02008-02-08 18:50:14 -05004263 int rscn_cnt;
James Smart92d7f7b2007-06-17 19:56:38 -05004264 int rscn_id = 0, hba_id = 0;
James Smartd2873e42006-08-18 17:46:43 -04004265 int i;
dea31012005-04-17 16:05:31 -05004266
4267 icmd = &cmdiocb->iocb;
4268 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
4269 lp = (uint32_t *) pcmd->virt;
4270
James Smart92d7f7b2007-06-17 19:56:38 -05004271 payload_len = be32_to_cpu(*lp++ & ~ELS_CMD_MASK);
4272 payload_len -= sizeof(uint32_t); /* take off word 0 */
dea31012005-04-17 16:05:31 -05004273 /* RSCN received */
James Smarte8b62012007-08-02 11:10:09 -04004274 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
4275 "0214 RSCN received Data: x%x x%x x%x x%x\n",
James Smart7f5f3d02008-02-08 18:50:14 -05004276 vport->fc_flag, payload_len, *lp,
4277 vport->fc_rscn_id_cnt);
James Smartddcc50f2008-12-04 22:38:46 -05004278
4279 /* Send an RSCN event to the management application */
4280 lpfc_send_rscn_event(vport, cmdiocb);
4281
James Smartd2873e42006-08-18 17:46:43 -04004282 for (i = 0; i < payload_len/sizeof(uint32_t); i++)
James Smart2e0fef82007-06-17 19:56:36 -05004283 fc_host_post_event(shost, fc_get_event_number(),
James Smartd2873e42006-08-18 17:46:43 -04004284 FCH_EVT_RSCN, lp[i]);
4285
dea31012005-04-17 16:05:31 -05004286 /* If we are about to begin discovery, just ACC the RSCN.
4287 * Discovery processing will satisfy it.
4288 */
James Smart2e0fef82007-06-17 19:56:36 -05004289 if (vport->port_state <= LPFC_NS_QRY) {
James Smart858c9f62007-06-17 19:56:39 -05004290 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
4291 "RCV RSCN ignore: did:x%x/ste:x%x flg:x%x",
4292 ndlp->nlp_DID, vport->port_state, ndlp->nlp_flag);
4293
James Smart51ef4c22007-08-02 11:10:31 -04004294 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004295 return 0;
dea31012005-04-17 16:05:31 -05004296 }
4297
James Smart92d7f7b2007-06-17 19:56:38 -05004298 /* If this RSCN just contains NPortIDs for other vports on this HBA,
4299 * just ACC and ignore it.
4300 */
4301 if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
James Smart3de2a652007-08-02 11:09:59 -04004302 !(vport->cfg_peer_port_login)) {
James Smart92d7f7b2007-06-17 19:56:38 -05004303 i = payload_len;
4304 datap = lp;
4305 while (i > 0) {
4306 nportid = *datap++;
4307 nportid = ((be32_to_cpu(nportid)) & Mask_DID);
4308 i -= sizeof(uint32_t);
4309 rscn_id++;
James Smart549e55c2007-08-02 11:09:51 -04004310 if (lpfc_find_vport_by_did(phba, nportid))
4311 hba_id++;
James Smart92d7f7b2007-06-17 19:56:38 -05004312 }
4313 if (rscn_id == hba_id) {
4314 /* ALL NPortIDs in RSCN are on HBA */
James Smarte8b62012007-08-02 11:10:09 -04004315 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
James Smartd7c255b2008-08-24 21:50:00 -04004316 "0219 Ignore RSCN "
James Smarte8b62012007-08-02 11:10:09 -04004317 "Data: x%x x%x x%x x%x\n",
4318 vport->fc_flag, payload_len,
James Smart7f5f3d02008-02-08 18:50:14 -05004319 *lp, vport->fc_rscn_id_cnt);
James Smart858c9f62007-06-17 19:56:39 -05004320 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
4321 "RCV RSCN vport: did:x%x/ste:x%x flg:x%x",
4322 ndlp->nlp_DID, vport->port_state,
4323 ndlp->nlp_flag);
4324
James Smart92d7f7b2007-06-17 19:56:38 -05004325 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb,
James Smart51ef4c22007-08-02 11:10:31 -04004326 ndlp, NULL);
James Smart92d7f7b2007-06-17 19:56:38 -05004327 return 0;
4328 }
4329 }
4330
James Smart7f5f3d02008-02-08 18:50:14 -05004331 spin_lock_irq(shost->host_lock);
4332 if (vport->fc_rscn_flush) {
4333 /* Another thread is walking fc_rscn_id_list on this vport */
James Smart7f5f3d02008-02-08 18:50:14 -05004334 vport->fc_flag |= FC_RSCN_DISCOVERY;
James Smart97957242009-12-21 17:03:15 -05004335 spin_unlock_irq(shost->host_lock);
James Smart58da1ff2008-04-07 10:15:56 -04004336 /* Send back ACC */
4337 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
James Smart7f5f3d02008-02-08 18:50:14 -05004338 return 0;
4339 }
4340 /* Indicate we are walking fc_rscn_id_list on this vport */
4341 vport->fc_rscn_flush = 1;
4342 spin_unlock_irq(shost->host_lock);
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02004343 /* Get the array count after successfully have the token */
James Smart7f5f3d02008-02-08 18:50:14 -05004344 rscn_cnt = vport->fc_rscn_id_cnt;
dea31012005-04-17 16:05:31 -05004345 /* If we are already processing an RSCN, save the received
4346 * RSCN payload buffer, cmdiocb->context2 to process later.
4347 */
James Smart2e0fef82007-06-17 19:56:36 -05004348 if (vport->fc_flag & (FC_RSCN_MODE | FC_NDISC_ACTIVE)) {
James Smart858c9f62007-06-17 19:56:39 -05004349 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
4350 "RCV RSCN defer: did:x%x/ste:x%x flg:x%x",
4351 ndlp->nlp_DID, vport->port_state, ndlp->nlp_flag);
4352
James Smart09372822008-01-11 01:52:54 -05004353 spin_lock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05004354 vport->fc_flag |= FC_RSCN_DEFERRED;
4355 if ((rscn_cnt < FC_MAX_HOLD_RSCN) &&
James Smart2e0fef82007-06-17 19:56:36 -05004356 !(vport->fc_flag & FC_RSCN_DISCOVERY)) {
James Smart2e0fef82007-06-17 19:56:36 -05004357 vport->fc_flag |= FC_RSCN_MODE;
4358 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05004359 if (rscn_cnt) {
4360 cmd = vport->fc_rscn_id_list[rscn_cnt-1]->virt;
4361 length = be32_to_cpu(*cmd & ~ELS_CMD_MASK);
4362 }
4363 if ((rscn_cnt) &&
4364 (payload_len + length <= LPFC_BPL_SIZE)) {
4365 *cmd &= ELS_CMD_MASK;
James Smart7f5f3d02008-02-08 18:50:14 -05004366 *cmd |= cpu_to_be32(payload_len + length);
James Smart92d7f7b2007-06-17 19:56:38 -05004367 memcpy(((uint8_t *)cmd) + length, lp,
4368 payload_len);
4369 } else {
4370 vport->fc_rscn_id_list[rscn_cnt] = pcmd;
4371 vport->fc_rscn_id_cnt++;
4372 /* If we zero, cmdiocb->context2, the calling
4373 * routine will not try to free it.
4374 */
4375 cmdiocb->context2 = NULL;
4376 }
dea31012005-04-17 16:05:31 -05004377 /* Deferred RSCN */
James Smarte8b62012007-08-02 11:10:09 -04004378 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
4379 "0235 Deferred RSCN "
4380 "Data: x%x x%x x%x\n",
4381 vport->fc_rscn_id_cnt, vport->fc_flag,
4382 vport->port_state);
dea31012005-04-17 16:05:31 -05004383 } else {
James Smart2e0fef82007-06-17 19:56:36 -05004384 vport->fc_flag |= FC_RSCN_DISCOVERY;
4385 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05004386 /* ReDiscovery RSCN */
James Smarte8b62012007-08-02 11:10:09 -04004387 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
4388 "0234 ReDiscovery RSCN "
4389 "Data: x%x x%x x%x\n",
4390 vport->fc_rscn_id_cnt, vport->fc_flag,
4391 vport->port_state);
dea31012005-04-17 16:05:31 -05004392 }
James Smart7f5f3d02008-02-08 18:50:14 -05004393 /* Indicate we are done walking fc_rscn_id_list on this vport */
4394 vport->fc_rscn_flush = 0;
dea31012005-04-17 16:05:31 -05004395 /* Send back ACC */
James Smart51ef4c22007-08-02 11:10:31 -04004396 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
dea31012005-04-17 16:05:31 -05004397 /* send RECOVERY event for ALL nodes that match RSCN payload */
James Smart2e0fef82007-06-17 19:56:36 -05004398 lpfc_rscn_recovery_check(vport);
James Smart09372822008-01-11 01:52:54 -05004399 spin_lock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05004400 vport->fc_flag &= ~FC_RSCN_DEFERRED;
James Smart09372822008-01-11 01:52:54 -05004401 spin_unlock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004402 return 0;
dea31012005-04-17 16:05:31 -05004403 }
James Smart858c9f62007-06-17 19:56:39 -05004404 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
4405 "RCV RSCN: did:x%x/ste:x%x flg:x%x",
4406 ndlp->nlp_DID, vport->port_state, ndlp->nlp_flag);
4407
James Smart2e0fef82007-06-17 19:56:36 -05004408 spin_lock_irq(shost->host_lock);
4409 vport->fc_flag |= FC_RSCN_MODE;
4410 spin_unlock_irq(shost->host_lock);
4411 vport->fc_rscn_id_list[vport->fc_rscn_id_cnt++] = pcmd;
James Smart7f5f3d02008-02-08 18:50:14 -05004412 /* Indicate we are done walking fc_rscn_id_list on this vport */
4413 vport->fc_rscn_flush = 0;
dea31012005-04-17 16:05:31 -05004414 /*
4415 * If we zero, cmdiocb->context2, the calling routine will
4416 * not try to free it.
4417 */
4418 cmdiocb->context2 = NULL;
James Smart2e0fef82007-06-17 19:56:36 -05004419 lpfc_set_disctmo(vport);
dea31012005-04-17 16:05:31 -05004420 /* Send back ACC */
James Smart51ef4c22007-08-02 11:10:31 -04004421 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
dea31012005-04-17 16:05:31 -05004422 /* send RECOVERY event for ALL nodes that match RSCN payload */
James Smart2e0fef82007-06-17 19:56:36 -05004423 lpfc_rscn_recovery_check(vport);
James Smart2e0fef82007-06-17 19:56:36 -05004424 return lpfc_els_handle_rscn(vport);
dea31012005-04-17 16:05:31 -05004425}
4426
James Smarte59058c2008-08-24 21:49:00 -04004427/**
James Smart3621a712009-04-06 18:47:14 -04004428 * lpfc_els_handle_rscn - Handle rscn for a vport
James Smarte59058c2008-08-24 21:49:00 -04004429 * @vport: pointer to a host virtual N_Port data structure.
4430 *
4431 * This routine handles the Registration State Configuration Notification
4432 * (RSCN) for a @vport. If login to NameServer does not exist, a new ndlp shall
4433 * be created and a Port Login (PLOGI) to the NameServer is issued. Otherwise,
4434 * if the ndlp to NameServer exists, a Common Transport (CT) command to the
4435 * NameServer shall be issued. If CT command to the NameServer fails to be
4436 * issued, the lpfc_els_flush_rscn() routine shall be invoked to clean up any
4437 * RSCN activities with the @vport.
4438 *
4439 * Return code
4440 * 0 - Cleaned up rscn on the @vport
4441 * 1 - Wait for plogi to name server before proceed
4442 **/
dea31012005-04-17 16:05:31 -05004443int
James Smart2e0fef82007-06-17 19:56:36 -05004444lpfc_els_handle_rscn(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05004445{
4446 struct lpfc_nodelist *ndlp;
James Smart2e0fef82007-06-17 19:56:36 -05004447 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05004448
James Smart92d7f7b2007-06-17 19:56:38 -05004449 /* Ignore RSCN if the port is being torn down. */
4450 if (vport->load_flag & FC_UNLOADING) {
4451 lpfc_els_flush_rscn(vport);
4452 return 0;
4453 }
4454
dea31012005-04-17 16:05:31 -05004455 /* Start timer for RSCN processing */
James Smart2e0fef82007-06-17 19:56:36 -05004456 lpfc_set_disctmo(vport);
dea31012005-04-17 16:05:31 -05004457
4458 /* RSCN processed */
James Smarte8b62012007-08-02 11:10:09 -04004459 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
4460 "0215 RSCN processed Data: x%x x%x x%x x%x\n",
4461 vport->fc_flag, 0, vport->fc_rscn_id_cnt,
4462 vport->port_state);
dea31012005-04-17 16:05:31 -05004463
4464 /* To process RSCN, first compare RSCN data with NameServer */
James Smart2e0fef82007-06-17 19:56:36 -05004465 vport->fc_ns_retry = 0;
James Smart0ff10d42008-01-11 01:52:36 -05004466 vport->num_disc_nodes = 0;
4467
James Smart2e0fef82007-06-17 19:56:36 -05004468 ndlp = lpfc_findnode_did(vport, NameServer_DID);
James Smarte47c9092008-02-08 18:49:26 -05004469 if (ndlp && NLP_CHK_NODE_ACT(ndlp)
4470 && ndlp->nlp_state == NLP_STE_UNMAPPED_NODE) {
dea31012005-04-17 16:05:31 -05004471 /* Good ndlp, issue CT Request to NameServer */
James Smart92d7f7b2007-06-17 19:56:38 -05004472 if (lpfc_ns_cmd(vport, SLI_CTNS_GID_FT, 0, 0) == 0)
dea31012005-04-17 16:05:31 -05004473 /* Wait for NameServer query cmpl before we can
4474 continue */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004475 return 1;
dea31012005-04-17 16:05:31 -05004476 } else {
4477 /* If login to NameServer does not exist, issue one */
4478 /* Good status, issue PLOGI to NameServer */
James Smart2e0fef82007-06-17 19:56:36 -05004479 ndlp = lpfc_findnode_did(vport, NameServer_DID);
James Smarte47c9092008-02-08 18:49:26 -05004480 if (ndlp && NLP_CHK_NODE_ACT(ndlp))
dea31012005-04-17 16:05:31 -05004481 /* Wait for NameServer login cmpl before we can
4482 continue */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004483 return 1;
James Smart2e0fef82007-06-17 19:56:36 -05004484
James Smarte47c9092008-02-08 18:49:26 -05004485 if (ndlp) {
4486 ndlp = lpfc_enable_node(vport, ndlp,
4487 NLP_STE_PLOGI_ISSUE);
4488 if (!ndlp) {
4489 lpfc_els_flush_rscn(vport);
4490 return 0;
4491 }
4492 ndlp->nlp_prev_state = NLP_STE_UNUSED_NODE;
dea31012005-04-17 16:05:31 -05004493 } else {
James Smarte47c9092008-02-08 18:49:26 -05004494 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
4495 if (!ndlp) {
4496 lpfc_els_flush_rscn(vport);
4497 return 0;
4498 }
James Smart2e0fef82007-06-17 19:56:36 -05004499 lpfc_nlp_init(vport, ndlp, NameServer_DID);
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05004500 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05004501 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
dea31012005-04-17 16:05:31 -05004502 }
James Smarte47c9092008-02-08 18:49:26 -05004503 ndlp->nlp_type |= NLP_FABRIC;
4504 lpfc_issue_els_plogi(vport, NameServer_DID, 0);
4505 /* Wait for NameServer login cmpl before we can
4506 * continue
4507 */
4508 return 1;
dea31012005-04-17 16:05:31 -05004509 }
4510
James Smart2e0fef82007-06-17 19:56:36 -05004511 lpfc_els_flush_rscn(vport);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004512 return 0;
dea31012005-04-17 16:05:31 -05004513}
4514
James Smarte59058c2008-08-24 21:49:00 -04004515/**
James Smart3621a712009-04-06 18:47:14 -04004516 * lpfc_els_rcv_flogi - Process an unsolicited flogi iocb
James Smarte59058c2008-08-24 21:49:00 -04004517 * @vport: pointer to a host virtual N_Port data structure.
4518 * @cmdiocb: pointer to lpfc command iocb data structure.
4519 * @ndlp: pointer to a node-list data structure.
4520 *
4521 * This routine processes Fabric Login (FLOGI) IOCB received as an ELS
4522 * unsolicited event. An unsolicited FLOGI can be received in a point-to-
4523 * point topology. As an unsolicited FLOGI should not be received in a loop
4524 * mode, any unsolicited FLOGI received in loop mode shall be ignored. The
4525 * lpfc_check_sparm() routine is invoked to check the parameters in the
4526 * unsolicited FLOGI. If parameters validation failed, the routine
4527 * lpfc_els_rsp_reject() shall be called with reject reason code set to
4528 * LSEXP_SPARM_OPTIONS to reject the FLOGI. Otherwise, the Port WWN in the
4529 * FLOGI shall be compared with the Port WWN of the @vport to determine who
4530 * will initiate PLOGI. The higher lexicographical value party shall has
4531 * higher priority (as the winning port) and will initiate PLOGI and
4532 * communicate Port_IDs (Addresses) for both nodes in PLOGI. The result
4533 * of this will be marked in the @vport fc_flag field with FC_PT2PT_PLOGI
4534 * and then the lpfc_els_rsp_acc() routine is invoked to accept the FLOGI.
4535 *
4536 * Return code
4537 * 0 - Successfully processed the unsolicited flogi
4538 * 1 - Failed to process the unsolicited flogi
4539 **/
dea31012005-04-17 16:05:31 -05004540static int
James Smart2e0fef82007-06-17 19:56:36 -05004541lpfc_els_rcv_flogi(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
James Smart51ef4c22007-08-02 11:10:31 -04004542 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05004543{
James Smart2e0fef82007-06-17 19:56:36 -05004544 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
4545 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05004546 struct lpfc_dmabuf *pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
4547 uint32_t *lp = (uint32_t *) pcmd->virt;
4548 IOCB_t *icmd = &cmdiocb->iocb;
4549 struct serv_parm *sp;
4550 LPFC_MBOXQ_t *mbox;
4551 struct ls_rjt stat;
4552 uint32_t cmd, did;
4553 int rc;
4554
4555 cmd = *lp++;
4556 sp = (struct serv_parm *) lp;
4557
4558 /* FLOGI received */
4559
James Smart2e0fef82007-06-17 19:56:36 -05004560 lpfc_set_disctmo(vport);
dea31012005-04-17 16:05:31 -05004561
4562 if (phba->fc_topology == TOPOLOGY_LOOP) {
4563 /* We should never receive a FLOGI in loop mode, ignore it */
4564 did = icmd->un.elsreq64.remoteID;
4565
4566 /* An FLOGI ELS command <elsCmd> was received from DID <did> in
4567 Loop Mode */
James Smarte8b62012007-08-02 11:10:09 -04004568 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
4569 "0113 An FLOGI ELS command x%x was "
4570 "received from DID x%x in Loop Mode\n",
4571 cmd, did);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004572 return 1;
dea31012005-04-17 16:05:31 -05004573 }
4574
4575 did = Fabric_DID;
4576
James Smart341af102010-01-26 23:07:37 -05004577 if ((lpfc_check_sparm(vport, ndlp, sp, CLASS3, 1))) {
dea31012005-04-17 16:05:31 -05004578 /* For a FLOGI we accept, then if our portname is greater
4579 * then the remote portname we initiate Nport login.
4580 */
4581
James Smart2e0fef82007-06-17 19:56:36 -05004582 rc = memcmp(&vport->fc_portname, &sp->portName,
James Smart92d7f7b2007-06-17 19:56:38 -05004583 sizeof(struct lpfc_name));
dea31012005-04-17 16:05:31 -05004584
4585 if (!rc) {
James Smart2e0fef82007-06-17 19:56:36 -05004586 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4587 if (!mbox)
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004588 return 1;
James Smart2e0fef82007-06-17 19:56:36 -05004589
dea31012005-04-17 16:05:31 -05004590 lpfc_linkdown(phba);
4591 lpfc_init_link(phba, mbox,
4592 phba->cfg_topology,
4593 phba->cfg_link_speed);
James Smart04c68492009-05-22 14:52:52 -04004594 mbox->u.mb.un.varInitLnk.lipsr_AL_PA = 0;
dea31012005-04-17 16:05:31 -05004595 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
James Smarted957682007-06-17 19:56:37 -05004596 mbox->vport = vport;
James Smart0b727fe2007-10-27 13:37:25 -04004597 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
James Smart5b8bd0c2007-04-25 09:52:49 -04004598 lpfc_set_loopback_flag(phba);
dea31012005-04-17 16:05:31 -05004599 if (rc == MBX_NOT_FINISHED) {
James Smart329f9bc2007-04-25 09:53:01 -04004600 mempool_free(mbox, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -05004601 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004602 return 1;
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004603 } else if (rc > 0) { /* greater than */
James Smart2e0fef82007-06-17 19:56:36 -05004604 spin_lock_irq(shost->host_lock);
4605 vport->fc_flag |= FC_PT2PT_PLOGI;
4606 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05004607 }
James Smart2e0fef82007-06-17 19:56:36 -05004608 spin_lock_irq(shost->host_lock);
4609 vport->fc_flag |= FC_PT2PT;
4610 vport->fc_flag &= ~(FC_FABRIC | FC_PUBLIC_LOOP);
4611 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05004612 } else {
4613 /* Reject this request because invalid parameters */
4614 stat.un.b.lsRjtRsvd0 = 0;
4615 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
4616 stat.un.b.lsRjtRsnCodeExp = LSEXP_SPARM_OPTIONS;
4617 stat.un.b.vendorUnique = 0;
James Smart858c9f62007-06-17 19:56:39 -05004618 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp,
4619 NULL);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004620 return 1;
dea31012005-04-17 16:05:31 -05004621 }
4622
4623 /* Send back ACC */
James Smart51ef4c22007-08-02 11:10:31 -04004624 lpfc_els_rsp_acc(vport, ELS_CMD_PLOGI, cmdiocb, ndlp, NULL);
dea31012005-04-17 16:05:31 -05004625
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004626 return 0;
dea31012005-04-17 16:05:31 -05004627}
4628
James Smarte59058c2008-08-24 21:49:00 -04004629/**
James Smart3621a712009-04-06 18:47:14 -04004630 * lpfc_els_rcv_rnid - Process an unsolicited rnid iocb
James Smarte59058c2008-08-24 21:49:00 -04004631 * @vport: pointer to a host virtual N_Port data structure.
4632 * @cmdiocb: pointer to lpfc command iocb data structure.
4633 * @ndlp: pointer to a node-list data structure.
4634 *
4635 * This routine processes Request Node Identification Data (RNID) IOCB
4636 * received as an ELS unsolicited event. Only when the RNID specified format
4637 * 0x0 or 0xDF (Topology Discovery Specific Node Identification Data)
4638 * present, this routine will invoke the lpfc_els_rsp_rnid_acc() routine to
4639 * Accept (ACC) the RNID ELS command. All the other RNID formats are
4640 * rejected by invoking the lpfc_els_rsp_reject() routine.
4641 *
4642 * Return code
4643 * 0 - Successfully processed rnid iocb (currently always return 0)
4644 **/
dea31012005-04-17 16:05:31 -05004645static int
James Smart2e0fef82007-06-17 19:56:36 -05004646lpfc_els_rcv_rnid(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
4647 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05004648{
4649 struct lpfc_dmabuf *pcmd;
4650 uint32_t *lp;
4651 IOCB_t *icmd;
4652 RNID *rn;
4653 struct ls_rjt stat;
4654 uint32_t cmd, did;
4655
4656 icmd = &cmdiocb->iocb;
4657 did = icmd->un.elsreq64.remoteID;
4658 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
4659 lp = (uint32_t *) pcmd->virt;
4660
4661 cmd = *lp++;
4662 rn = (RNID *) lp;
4663
4664 /* RNID received */
4665
4666 switch (rn->Format) {
4667 case 0:
4668 case RNID_TOPOLOGY_DISC:
4669 /* Send back ACC */
James Smart2e0fef82007-06-17 19:56:36 -05004670 lpfc_els_rsp_rnid_acc(vport, rn->Format, cmdiocb, ndlp);
dea31012005-04-17 16:05:31 -05004671 break;
4672 default:
4673 /* Reject this request because format not supported */
4674 stat.un.b.lsRjtRsvd0 = 0;
4675 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
4676 stat.un.b.lsRjtRsnCodeExp = LSEXP_CANT_GIVE_DATA;
4677 stat.un.b.vendorUnique = 0;
James Smart858c9f62007-06-17 19:56:39 -05004678 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp,
4679 NULL);
dea31012005-04-17 16:05:31 -05004680 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004681 return 0;
dea31012005-04-17 16:05:31 -05004682}
4683
James Smarte59058c2008-08-24 21:49:00 -04004684/**
James Smart3621a712009-04-06 18:47:14 -04004685 * lpfc_els_rcv_lirr - Process an unsolicited lirr iocb
James Smarte59058c2008-08-24 21:49:00 -04004686 * @vport: pointer to a host virtual N_Port data structure.
4687 * @cmdiocb: pointer to lpfc command iocb data structure.
4688 * @ndlp: pointer to a node-list data structure.
4689 *
4690 * This routine processes a Link Incident Report Registration(LIRR) IOCB
4691 * received as an ELS unsolicited event. Currently, this function just invokes
4692 * the lpfc_els_rsp_reject() routine to reject the LIRR IOCB unconditionally.
4693 *
4694 * Return code
4695 * 0 - Successfully processed lirr iocb (currently always return 0)
4696 **/
dea31012005-04-17 16:05:31 -05004697static int
James Smart2e0fef82007-06-17 19:56:36 -05004698lpfc_els_rcv_lirr(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
4699 struct lpfc_nodelist *ndlp)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05004700{
4701 struct ls_rjt stat;
4702
4703 /* For now, unconditionally reject this command */
4704 stat.un.b.lsRjtRsvd0 = 0;
4705 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
4706 stat.un.b.lsRjtRsnCodeExp = LSEXP_CANT_GIVE_DATA;
4707 stat.un.b.vendorUnique = 0;
James Smart858c9f62007-06-17 19:56:39 -05004708 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05004709 return 0;
4710}
4711
James Smarte59058c2008-08-24 21:49:00 -04004712/**
James Smart5ffc2662009-11-18 15:39:44 -05004713 * lpfc_els_rcv_rrq - Process an unsolicited rrq iocb
4714 * @vport: pointer to a host virtual N_Port data structure.
4715 * @cmdiocb: pointer to lpfc command iocb data structure.
4716 * @ndlp: pointer to a node-list data structure.
4717 *
4718 * This routine processes a Reinstate Recovery Qualifier (RRQ) IOCB
4719 * received as an ELS unsolicited event. A request to RRQ shall only
4720 * be accepted if the Originator Nx_Port N_Port_ID or the Responder
4721 * Nx_Port N_Port_ID of the target Exchange is the same as the
4722 * N_Port_ID of the Nx_Port that makes the request. If the RRQ is
4723 * not accepted, an LS_RJT with reason code "Unable to perform
4724 * command request" and reason code explanation "Invalid Originator
4725 * S_ID" shall be returned. For now, we just unconditionally accept
4726 * RRQ from the target.
4727 **/
4728static void
4729lpfc_els_rcv_rrq(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
4730 struct lpfc_nodelist *ndlp)
4731{
4732 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
4733}
4734
4735/**
James Smart3621a712009-04-06 18:47:14 -04004736 * lpfc_els_rsp_rps_acc - Completion callbk func for MBX_READ_LNK_STAT mbox cmd
James Smarte59058c2008-08-24 21:49:00 -04004737 * @phba: pointer to lpfc hba data structure.
4738 * @pmb: pointer to the driver internal queue element for mailbox command.
4739 *
4740 * This routine is the completion callback function for the MBX_READ_LNK_STAT
4741 * mailbox command. This callback function is to actually send the Accept
4742 * (ACC) response to a Read Port Status (RPS) unsolicited IOCB event. It
4743 * collects the link statistics from the completion of the MBX_READ_LNK_STAT
4744 * mailbox command, constructs the RPS response with the link statistics
4745 * collected, and then invokes the lpfc_sli_issue_iocb() routine to send ACC
4746 * response to the RPS.
4747 *
4748 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
4749 * will be incremented by 1 for holding the ndlp and the reference to ndlp
4750 * will be stored into the context1 field of the IOCB for the completion
4751 * callback function to the RPS Accept Response ELS IOCB command.
4752 *
4753 **/
Jamie Wellnitz082c0262006-02-28 19:25:30 -05004754static void
James Smart329f9bc2007-04-25 09:53:01 -04004755lpfc_els_rsp_rps_acc(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05004756{
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05004757 MAILBOX_t *mb;
4758 IOCB_t *icmd;
4759 RPS_RSP *rps_rsp;
4760 uint8_t *pcmd;
4761 struct lpfc_iocbq *elsiocb;
4762 struct lpfc_nodelist *ndlp;
4763 uint16_t xri, status;
4764 uint32_t cmdsize;
4765
James Smart04c68492009-05-22 14:52:52 -04004766 mb = &pmb->u.mb;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05004767
4768 ndlp = (struct lpfc_nodelist *) pmb->context2;
4769 xri = (uint16_t) ((unsigned long)(pmb->context1));
Randy Dunlap041976f2006-06-25 01:58:51 -07004770 pmb->context1 = NULL;
4771 pmb->context2 = NULL;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05004772
4773 if (mb->mbxStatus) {
James Smart329f9bc2007-04-25 09:53:01 -04004774 mempool_free(pmb, phba->mbox_mem_pool);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05004775 return;
4776 }
4777
4778 cmdsize = sizeof(RPS_RSP) + sizeof(uint32_t);
James Smart329f9bc2007-04-25 09:53:01 -04004779 mempool_free(pmb, phba->mbox_mem_pool);
James Smart2e0fef82007-06-17 19:56:36 -05004780 elsiocb = lpfc_prep_els_iocb(phba->pport, 0, cmdsize,
4781 lpfc_max_els_tries, ndlp,
4782 ndlp->nlp_DID, ELS_CMD_ACC);
James Smartfa4066b2008-01-11 01:53:27 -05004783
4784 /* Decrement the ndlp reference count from previous mbox command */
James Smart329f9bc2007-04-25 09:53:01 -04004785 lpfc_nlp_put(ndlp);
James Smartfa4066b2008-01-11 01:53:27 -05004786
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004787 if (!elsiocb)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05004788 return;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05004789
4790 icmd = &elsiocb->iocb;
4791 icmd->ulpContext = xri;
4792
4793 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
4794 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
James Smart92d7f7b2007-06-17 19:56:38 -05004795 pcmd += sizeof(uint32_t); /* Skip past command */
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05004796 rps_rsp = (RPS_RSP *)pcmd;
4797
4798 if (phba->fc_topology != TOPOLOGY_LOOP)
4799 status = 0x10;
4800 else
4801 status = 0x8;
James Smart2e0fef82007-06-17 19:56:36 -05004802 if (phba->pport->fc_flag & FC_FABRIC)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05004803 status |= 0x4;
4804
4805 rps_rsp->rsvd1 = 0;
James Smart09372822008-01-11 01:52:54 -05004806 rps_rsp->portStatus = cpu_to_be16(status);
4807 rps_rsp->linkFailureCnt = cpu_to_be32(mb->un.varRdLnk.linkFailureCnt);
4808 rps_rsp->lossSyncCnt = cpu_to_be32(mb->un.varRdLnk.lossSyncCnt);
4809 rps_rsp->lossSignalCnt = cpu_to_be32(mb->un.varRdLnk.lossSignalCnt);
4810 rps_rsp->primSeqErrCnt = cpu_to_be32(mb->un.varRdLnk.primSeqErrCnt);
4811 rps_rsp->invalidXmitWord = cpu_to_be32(mb->un.varRdLnk.invalidXmitWord);
4812 rps_rsp->crcCnt = cpu_to_be32(mb->un.varRdLnk.crcCnt);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05004813 /* Xmit ELS RPS ACC response tag <ulpIoTag> */
James Smarte8b62012007-08-02 11:10:09 -04004814 lpfc_printf_vlog(ndlp->vport, KERN_INFO, LOG_ELS,
4815 "0118 Xmit ELS RPS ACC response tag x%x xri x%x, "
4816 "did x%x, nlp_flag x%x, nlp_state x%x, rpi x%x\n",
4817 elsiocb->iotag, elsiocb->iocb.ulpContext,
4818 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
4819 ndlp->nlp_rpi);
James Smart858c9f62007-06-17 19:56:39 -05004820 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05004821 phba->fc_stat.elsXmitACC++;
James Smart3772a992009-05-22 14:50:54 -04004822 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) == IOCB_ERROR)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05004823 lpfc_els_free_iocb(phba, elsiocb);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05004824 return;
4825}
4826
James Smarte59058c2008-08-24 21:49:00 -04004827/**
James Smart3621a712009-04-06 18:47:14 -04004828 * lpfc_els_rcv_rps - Process an unsolicited rps iocb
James Smarte59058c2008-08-24 21:49:00 -04004829 * @vport: pointer to a host virtual N_Port data structure.
4830 * @cmdiocb: pointer to lpfc command iocb data structure.
4831 * @ndlp: pointer to a node-list data structure.
4832 *
4833 * This routine processes Read Port Status (RPS) IOCB received as an
4834 * ELS unsolicited event. It first checks the remote port state. If the
4835 * remote port is not in NLP_STE_UNMAPPED_NODE state or NLP_STE_MAPPED_NODE
4836 * state, it invokes the lpfc_els_rsp_reject() routine to send the reject
4837 * response. Otherwise, it issue the MBX_READ_LNK_STAT mailbox command
4838 * for reading the HBA link statistics. It is for the callback function,
4839 * lpfc_els_rsp_rps_acc(), set to the MBX_READ_LNK_STAT mailbox command
4840 * to actually sending out RPS Accept (ACC) response.
4841 *
4842 * Return codes
4843 * 0 - Successfully processed rps iocb (currently always return 0)
4844 **/
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05004845static int
James Smart2e0fef82007-06-17 19:56:36 -05004846lpfc_els_rcv_rps(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
4847 struct lpfc_nodelist *ndlp)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05004848{
James Smart2e0fef82007-06-17 19:56:36 -05004849 struct lpfc_hba *phba = vport->phba;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05004850 uint32_t *lp;
4851 uint8_t flag;
4852 LPFC_MBOXQ_t *mbox;
4853 struct lpfc_dmabuf *pcmd;
4854 RPS *rps;
4855 struct ls_rjt stat;
4856
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004857 if ((ndlp->nlp_state != NLP_STE_UNMAPPED_NODE) &&
James Smart90160e02008-08-24 21:49:45 -04004858 (ndlp->nlp_state != NLP_STE_MAPPED_NODE))
4859 /* reject the unsolicited RPS request and done with it */
4860 goto reject_out;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05004861
4862 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
4863 lp = (uint32_t *) pcmd->virt;
4864 flag = (be32_to_cpu(*lp++) & 0xf);
4865 rps = (RPS *) lp;
4866
4867 if ((flag == 0) ||
4868 ((flag == 1) && (be32_to_cpu(rps->un.portNum) == 0)) ||
James Smart2e0fef82007-06-17 19:56:36 -05004869 ((flag == 2) && (memcmp(&rps->un.portName, &vport->fc_portname,
James Smart92d7f7b2007-06-17 19:56:38 -05004870 sizeof(struct lpfc_name)) == 0))) {
James Smart2e0fef82007-06-17 19:56:36 -05004871
James Smart92d7f7b2007-06-17 19:56:38 -05004872 printk("Fix me....\n");
4873 dump_stack();
James Smart2e0fef82007-06-17 19:56:36 -05004874 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_ATOMIC);
4875 if (mbox) {
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05004876 lpfc_read_lnk_stat(phba, mbox);
4877 mbox->context1 =
James Smart92d7f7b2007-06-17 19:56:38 -05004878 (void *)((unsigned long) cmdiocb->iocb.ulpContext);
James Smart329f9bc2007-04-25 09:53:01 -04004879 mbox->context2 = lpfc_nlp_get(ndlp);
James Smart92d7f7b2007-06-17 19:56:38 -05004880 mbox->vport = vport;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05004881 mbox->mbox_cmpl = lpfc_els_rsp_rps_acc;
James Smartfa4066b2008-01-11 01:53:27 -05004882 if (lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT)
James Smart0b727fe2007-10-27 13:37:25 -04004883 != MBX_NOT_FINISHED)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05004884 /* Mbox completion will send ELS Response */
4885 return 0;
James Smartfa4066b2008-01-11 01:53:27 -05004886 /* Decrement reference count used for the failed mbox
4887 * command.
4888 */
James Smart329f9bc2007-04-25 09:53:01 -04004889 lpfc_nlp_put(ndlp);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05004890 mempool_free(mbox, phba->mbox_mem_pool);
4891 }
4892 }
James Smart90160e02008-08-24 21:49:45 -04004893
4894reject_out:
4895 /* issue rejection response */
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05004896 stat.un.b.lsRjtRsvd0 = 0;
4897 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
4898 stat.un.b.lsRjtRsnCodeExp = LSEXP_CANT_GIVE_DATA;
4899 stat.un.b.vendorUnique = 0;
James Smart858c9f62007-06-17 19:56:39 -05004900 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05004901 return 0;
4902}
4903
James Smarte59058c2008-08-24 21:49:00 -04004904/**
James Smart3621a712009-04-06 18:47:14 -04004905 * lpfc_els_rsp_rpl_acc - Issue an accept rpl els command
James Smarte59058c2008-08-24 21:49:00 -04004906 * @vport: pointer to a host virtual N_Port data structure.
4907 * @cmdsize: size of the ELS command.
4908 * @oldiocb: pointer to the original lpfc command iocb data structure.
4909 * @ndlp: pointer to a node-list data structure.
4910 *
4911 * This routine issuees an Accept (ACC) Read Port List (RPL) ELS command.
4912 * It is to be called by the lpfc_els_rcv_rpl() routine to accept the RPL.
4913 *
4914 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
4915 * will be incremented by 1 for holding the ndlp and the reference to ndlp
4916 * will be stored into the context1 field of the IOCB for the completion
4917 * callback function to the RPL Accept Response ELS command.
4918 *
4919 * Return code
4920 * 0 - Successfully issued ACC RPL ELS command
4921 * 1 - Failed to issue ACC RPL ELS command
4922 **/
Jamie Wellnitz082c0262006-02-28 19:25:30 -05004923static int
James Smart2e0fef82007-06-17 19:56:36 -05004924lpfc_els_rsp_rpl_acc(struct lpfc_vport *vport, uint16_t cmdsize,
4925 struct lpfc_iocbq *oldiocb, struct lpfc_nodelist *ndlp)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05004926{
James Smart2e0fef82007-06-17 19:56:36 -05004927 struct lpfc_hba *phba = vport->phba;
4928 IOCB_t *icmd, *oldcmd;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05004929 RPL_RSP rpl_rsp;
4930 struct lpfc_iocbq *elsiocb;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05004931 uint8_t *pcmd;
4932
James Smart2e0fef82007-06-17 19:56:36 -05004933 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry, ndlp,
4934 ndlp->nlp_DID, ELS_CMD_ACC);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05004935
James Smart488d1462006-03-07 15:02:37 -05004936 if (!elsiocb)
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05004937 return 1;
James Smart488d1462006-03-07 15:02:37 -05004938
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05004939 icmd = &elsiocb->iocb;
4940 oldcmd = &oldiocb->iocb;
4941 icmd->ulpContext = oldcmd->ulpContext; /* Xri */
4942
4943 pcmd = (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
4944 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
James Smart92d7f7b2007-06-17 19:56:38 -05004945 pcmd += sizeof(uint16_t);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05004946 *((uint16_t *)(pcmd)) = be16_to_cpu(cmdsize);
4947 pcmd += sizeof(uint16_t);
4948
4949 /* Setup the RPL ACC payload */
4950 rpl_rsp.listLen = be32_to_cpu(1);
4951 rpl_rsp.index = 0;
4952 rpl_rsp.port_num_blk.portNum = 0;
James Smart2e0fef82007-06-17 19:56:36 -05004953 rpl_rsp.port_num_blk.portID = be32_to_cpu(vport->fc_myDID);
4954 memcpy(&rpl_rsp.port_num_blk.portName, &vport->fc_portname,
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05004955 sizeof(struct lpfc_name));
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05004956 memcpy(pcmd, &rpl_rsp, cmdsize - sizeof(uint32_t));
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05004957 /* Xmit ELS RPL ACC response tag <ulpIoTag> */
James Smarte8b62012007-08-02 11:10:09 -04004958 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
4959 "0120 Xmit ELS RPL ACC response tag x%x "
4960 "xri x%x, did x%x, nlp_flag x%x, nlp_state x%x, "
4961 "rpi x%x\n",
4962 elsiocb->iotag, elsiocb->iocb.ulpContext,
4963 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
4964 ndlp->nlp_rpi);
James Smart858c9f62007-06-17 19:56:39 -05004965 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05004966 phba->fc_stat.elsXmitACC++;
James Smart3772a992009-05-22 14:50:54 -04004967 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) ==
4968 IOCB_ERROR) {
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05004969 lpfc_els_free_iocb(phba, elsiocb);
4970 return 1;
4971 }
4972 return 0;
4973}
4974
James Smarte59058c2008-08-24 21:49:00 -04004975/**
James Smart3621a712009-04-06 18:47:14 -04004976 * lpfc_els_rcv_rpl - Process an unsolicited rpl iocb
James Smarte59058c2008-08-24 21:49:00 -04004977 * @vport: pointer to a host virtual N_Port data structure.
4978 * @cmdiocb: pointer to lpfc command iocb data structure.
4979 * @ndlp: pointer to a node-list data structure.
4980 *
4981 * This routine processes Read Port List (RPL) IOCB received as an ELS
4982 * unsolicited event. It first checks the remote port state. If the remote
4983 * port is not in NLP_STE_UNMAPPED_NODE and NLP_STE_MAPPED_NODE states, it
4984 * invokes the lpfc_els_rsp_reject() routine to send reject response.
4985 * Otherwise, this routine then invokes the lpfc_els_rsp_rpl_acc() routine
4986 * to accept the RPL.
4987 *
4988 * Return code
4989 * 0 - Successfully processed rpl iocb (currently always return 0)
4990 **/
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05004991static int
James Smart2e0fef82007-06-17 19:56:36 -05004992lpfc_els_rcv_rpl(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
4993 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05004994{
4995 struct lpfc_dmabuf *pcmd;
4996 uint32_t *lp;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05004997 uint32_t maxsize;
4998 uint16_t cmdsize;
4999 RPL *rpl;
5000 struct ls_rjt stat;
dea31012005-04-17 16:05:31 -05005001
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05005002 if ((ndlp->nlp_state != NLP_STE_UNMAPPED_NODE) &&
5003 (ndlp->nlp_state != NLP_STE_MAPPED_NODE)) {
James Smart90160e02008-08-24 21:49:45 -04005004 /* issue rejection response */
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005005 stat.un.b.lsRjtRsvd0 = 0;
5006 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
5007 stat.un.b.lsRjtRsnCodeExp = LSEXP_CANT_GIVE_DATA;
5008 stat.un.b.vendorUnique = 0;
James Smart858c9f62007-06-17 19:56:39 -05005009 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp,
5010 NULL);
James Smart90160e02008-08-24 21:49:45 -04005011 /* rejected the unsolicited RPL request and done with it */
5012 return 0;
dea31012005-04-17 16:05:31 -05005013 }
5014
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005015 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
5016 lp = (uint32_t *) pcmd->virt;
5017 rpl = (RPL *) (lp + 1);
5018
5019 maxsize = be32_to_cpu(rpl->maxsize);
5020
5021 /* We support only one port */
5022 if ((rpl->index == 0) &&
5023 ((maxsize == 0) ||
5024 ((maxsize * sizeof(uint32_t)) >= sizeof(RPL_RSP)))) {
5025 cmdsize = sizeof(uint32_t) + sizeof(RPL_RSP);
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05005026 } else {
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005027 cmdsize = sizeof(uint32_t) + maxsize * sizeof(uint32_t);
5028 }
James Smart2e0fef82007-06-17 19:56:36 -05005029 lpfc_els_rsp_rpl_acc(vport, cmdsize, cmdiocb, ndlp);
dea31012005-04-17 16:05:31 -05005030
5031 return 0;
5032}
5033
James Smarte59058c2008-08-24 21:49:00 -04005034/**
James Smart3621a712009-04-06 18:47:14 -04005035 * lpfc_els_rcv_farp - Process an unsolicited farp request els command
James Smarte59058c2008-08-24 21:49:00 -04005036 * @vport: pointer to a virtual N_Port data structure.
5037 * @cmdiocb: pointer to lpfc command iocb data structure.
5038 * @ndlp: pointer to a node-list data structure.
5039 *
5040 * This routine processes Fibre Channel Address Resolution Protocol
5041 * (FARP) Request IOCB received as an ELS unsolicited event. Currently,
5042 * the lpfc driver only supports matching on WWPN or WWNN for FARP. As such,
5043 * FARP_MATCH_PORT flag and FARP_MATCH_NODE flag are checked against the
5044 * Match Flag in the FARP request IOCB: if FARP_MATCH_PORT flag is set, the
5045 * remote PortName is compared against the FC PortName stored in the @vport
5046 * data structure; if FARP_MATCH_NODE flag is set, the remote NodeName is
5047 * compared against the FC NodeName stored in the @vport data structure.
5048 * If any of these matches and the FARP_REQUEST_FARPR flag is set in the
5049 * FARP request IOCB Response Flag, the lpfc_issue_els_farpr() routine is
5050 * invoked to send out FARP Response to the remote node. Before sending the
5051 * FARP Response, however, the FARP_REQUEST_PLOGI flag is check in the FARP
5052 * request IOCB Response Flag and, if it is set, the lpfc_issue_els_plogi()
5053 * routine is invoked to log into the remote port first.
5054 *
5055 * Return code
5056 * 0 - Either the FARP Match Mode not supported or successfully processed
5057 **/
dea31012005-04-17 16:05:31 -05005058static int
James Smart2e0fef82007-06-17 19:56:36 -05005059lpfc_els_rcv_farp(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
5060 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05005061{
5062 struct lpfc_dmabuf *pcmd;
5063 uint32_t *lp;
5064 IOCB_t *icmd;
5065 FARP *fp;
5066 uint32_t cmd, cnt, did;
5067
5068 icmd = &cmdiocb->iocb;
5069 did = icmd->un.elsreq64.remoteID;
5070 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
5071 lp = (uint32_t *) pcmd->virt;
5072
5073 cmd = *lp++;
5074 fp = (FARP *) lp;
dea31012005-04-17 16:05:31 -05005075 /* FARP-REQ received from DID <did> */
James Smarte8b62012007-08-02 11:10:09 -04005076 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
5077 "0601 FARP-REQ received from DID x%x\n", did);
dea31012005-04-17 16:05:31 -05005078 /* We will only support match on WWPN or WWNN */
5079 if (fp->Mflags & ~(FARP_MATCH_NODE | FARP_MATCH_PORT)) {
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05005080 return 0;
dea31012005-04-17 16:05:31 -05005081 }
5082
5083 cnt = 0;
5084 /* If this FARP command is searching for my portname */
5085 if (fp->Mflags & FARP_MATCH_PORT) {
James Smart2e0fef82007-06-17 19:56:36 -05005086 if (memcmp(&fp->RportName, &vport->fc_portname,
James Smart92d7f7b2007-06-17 19:56:38 -05005087 sizeof(struct lpfc_name)) == 0)
dea31012005-04-17 16:05:31 -05005088 cnt = 1;
5089 }
5090
5091 /* If this FARP command is searching for my nodename */
5092 if (fp->Mflags & FARP_MATCH_NODE) {
James Smart2e0fef82007-06-17 19:56:36 -05005093 if (memcmp(&fp->RnodeName, &vport->fc_nodename,
James Smart92d7f7b2007-06-17 19:56:38 -05005094 sizeof(struct lpfc_name)) == 0)
dea31012005-04-17 16:05:31 -05005095 cnt = 1;
5096 }
5097
5098 if (cnt) {
5099 if ((ndlp->nlp_state == NLP_STE_UNMAPPED_NODE) ||
5100 (ndlp->nlp_state == NLP_STE_MAPPED_NODE)) {
5101 /* Log back into the node before sending the FARP. */
5102 if (fp->Rflags & FARP_REQUEST_PLOGI) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05005103 ndlp->nlp_prev_state = ndlp->nlp_state;
James Smart2e0fef82007-06-17 19:56:36 -05005104 lpfc_nlp_set_state(vport, ndlp,
James Smartde0c5b32007-04-25 09:52:27 -04005105 NLP_STE_PLOGI_ISSUE);
James Smart2e0fef82007-06-17 19:56:36 -05005106 lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0);
dea31012005-04-17 16:05:31 -05005107 }
5108
5109 /* Send a FARP response to that node */
James Smart2e0fef82007-06-17 19:56:36 -05005110 if (fp->Rflags & FARP_REQUEST_FARPR)
5111 lpfc_issue_els_farpr(vport, did, 0);
dea31012005-04-17 16:05:31 -05005112 }
5113 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05005114 return 0;
dea31012005-04-17 16:05:31 -05005115}
5116
James Smarte59058c2008-08-24 21:49:00 -04005117/**
James Smart3621a712009-04-06 18:47:14 -04005118 * lpfc_els_rcv_farpr - Process an unsolicited farp response iocb
James Smarte59058c2008-08-24 21:49:00 -04005119 * @vport: pointer to a host virtual N_Port data structure.
5120 * @cmdiocb: pointer to lpfc command iocb data structure.
5121 * @ndlp: pointer to a node-list data structure.
5122 *
5123 * This routine processes Fibre Channel Address Resolution Protocol
5124 * Response (FARPR) IOCB received as an ELS unsolicited event. It simply
5125 * invokes the lpfc_els_rsp_acc() routine to the remote node to accept
5126 * the FARP response request.
5127 *
5128 * Return code
5129 * 0 - Successfully processed FARPR IOCB (currently always return 0)
5130 **/
dea31012005-04-17 16:05:31 -05005131static int
James Smart2e0fef82007-06-17 19:56:36 -05005132lpfc_els_rcv_farpr(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
5133 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05005134{
5135 struct lpfc_dmabuf *pcmd;
5136 uint32_t *lp;
5137 IOCB_t *icmd;
5138 uint32_t cmd, did;
5139
5140 icmd = &cmdiocb->iocb;
5141 did = icmd->un.elsreq64.remoteID;
5142 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
5143 lp = (uint32_t *) pcmd->virt;
5144
5145 cmd = *lp++;
5146 /* FARP-RSP received from DID <did> */
James Smarte8b62012007-08-02 11:10:09 -04005147 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
5148 "0600 FARP-RSP received from DID x%x\n", did);
dea31012005-04-17 16:05:31 -05005149 /* ACCEPT the Farp resp request */
James Smart51ef4c22007-08-02 11:10:31 -04005150 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
dea31012005-04-17 16:05:31 -05005151
5152 return 0;
5153}
5154
James Smarte59058c2008-08-24 21:49:00 -04005155/**
James Smart3621a712009-04-06 18:47:14 -04005156 * lpfc_els_rcv_fan - Process an unsolicited fan iocb command
James Smarte59058c2008-08-24 21:49:00 -04005157 * @vport: pointer to a host virtual N_Port data structure.
5158 * @cmdiocb: pointer to lpfc command iocb data structure.
5159 * @fan_ndlp: pointer to a node-list data structure.
5160 *
5161 * This routine processes a Fabric Address Notification (FAN) IOCB
5162 * command received as an ELS unsolicited event. The FAN ELS command will
5163 * only be processed on a physical port (i.e., the @vport represents the
5164 * physical port). The fabric NodeName and PortName from the FAN IOCB are
5165 * compared against those in the phba data structure. If any of those is
5166 * different, the lpfc_initial_flogi() routine is invoked to initialize
5167 * Fabric Login (FLOGI) to the fabric to start the discover over. Otherwise,
5168 * if both of those are identical, the lpfc_issue_fabric_reglogin() routine
5169 * is invoked to register login to the fabric.
5170 *
5171 * Return code
5172 * 0 - Successfully processed fan iocb (currently always return 0).
5173 **/
dea31012005-04-17 16:05:31 -05005174static int
James Smart2e0fef82007-06-17 19:56:36 -05005175lpfc_els_rcv_fan(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
5176 struct lpfc_nodelist *fan_ndlp)
dea31012005-04-17 16:05:31 -05005177{
James Smart2e0fef82007-06-17 19:56:36 -05005178 struct lpfc_hba *phba = vport->phba;
James Smart0d2b6b82008-06-14 22:52:47 -04005179 uint32_t *lp;
5180 FAN *fp;
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05005181
James Smart0d2b6b82008-06-14 22:52:47 -04005182 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS, "0265 FAN received\n");
5183 lp = (uint32_t *)((struct lpfc_dmabuf *)cmdiocb->context2)->virt;
5184 fp = (FAN *) ++lp;
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05005185 /* FAN received; Fan does not have a reply sequence */
James Smart0d2b6b82008-06-14 22:52:47 -04005186 if ((vport == phba->pport) &&
5187 (vport->port_state == LPFC_LOCAL_CFG_LINK)) {
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05005188 if ((memcmp(&phba->fc_fabparam.nodeName, &fp->FnodeName,
James Smart0d2b6b82008-06-14 22:52:47 -04005189 sizeof(struct lpfc_name))) ||
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05005190 (memcmp(&phba->fc_fabparam.portName, &fp->FportName,
James Smart0d2b6b82008-06-14 22:52:47 -04005191 sizeof(struct lpfc_name)))) {
5192 /* This port has switched fabrics. FLOGI is required */
James Smart2e0fef82007-06-17 19:56:36 -05005193 lpfc_initial_flogi(vport);
James Smart0d2b6b82008-06-14 22:52:47 -04005194 } else {
5195 /* FAN verified - skip FLOGI */
5196 vport->fc_myDID = vport->fc_prevDID;
James Smart6fb120a2009-05-22 14:52:59 -04005197 if (phba->sli_rev < LPFC_SLI_REV4)
5198 lpfc_issue_fabric_reglogin(vport);
5199 else
5200 lpfc_issue_reg_vfi(vport);
dea31012005-04-17 16:05:31 -05005201 }
dea31012005-04-17 16:05:31 -05005202 }
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05005203 return 0;
dea31012005-04-17 16:05:31 -05005204}
5205
James Smarte59058c2008-08-24 21:49:00 -04005206/**
James Smart3621a712009-04-06 18:47:14 -04005207 * lpfc_els_timeout - Handler funciton to the els timer
James Smarte59058c2008-08-24 21:49:00 -04005208 * @ptr: holder for the timer function associated data.
5209 *
5210 * This routine is invoked by the ELS timer after timeout. It posts the ELS
5211 * timer timeout event by setting the WORKER_ELS_TMO bit to the work port
5212 * event bitmap and then invokes the lpfc_worker_wake_up() routine to wake
5213 * up the worker thread. It is for the worker thread to invoke the routine
5214 * lpfc_els_timeout_handler() to work on the posted event WORKER_ELS_TMO.
5215 **/
dea31012005-04-17 16:05:31 -05005216void
5217lpfc_els_timeout(unsigned long ptr)
5218{
James Smart2e0fef82007-06-17 19:56:36 -05005219 struct lpfc_vport *vport = (struct lpfc_vport *) ptr;
5220 struct lpfc_hba *phba = vport->phba;
James Smart5e9d9b82008-06-14 22:52:53 -04005221 uint32_t tmo_posted;
dea31012005-04-17 16:05:31 -05005222 unsigned long iflag;
5223
James Smart2e0fef82007-06-17 19:56:36 -05005224 spin_lock_irqsave(&vport->work_port_lock, iflag);
James Smart5e9d9b82008-06-14 22:52:53 -04005225 tmo_posted = vport->work_port_events & WORKER_ELS_TMO;
5226 if (!tmo_posted)
James Smart2e0fef82007-06-17 19:56:36 -05005227 vport->work_port_events |= WORKER_ELS_TMO;
James Smart5e9d9b82008-06-14 22:52:53 -04005228 spin_unlock_irqrestore(&vport->work_port_lock, iflag);
James Smart92d7f7b2007-06-17 19:56:38 -05005229
James Smart5e9d9b82008-06-14 22:52:53 -04005230 if (!tmo_posted)
5231 lpfc_worker_wake_up(phba);
dea31012005-04-17 16:05:31 -05005232 return;
5233}
5234
James Smart2a9bf3d2010-06-07 15:24:45 -04005235
James Smarte59058c2008-08-24 21:49:00 -04005236/**
James Smart3621a712009-04-06 18:47:14 -04005237 * lpfc_els_timeout_handler - Process an els timeout event
James Smarte59058c2008-08-24 21:49:00 -04005238 * @vport: pointer to a virtual N_Port data structure.
5239 *
5240 * This routine is the actual handler function that processes an ELS timeout
5241 * event. It walks the ELS ring to get and abort all the IOCBs (except the
5242 * ABORT/CLOSE/FARP/FARPR/FDISC), which are associated with the @vport by
5243 * invoking the lpfc_sli_issue_abort_iotag() routine.
5244 **/
dea31012005-04-17 16:05:31 -05005245void
James Smart2e0fef82007-06-17 19:56:36 -05005246lpfc_els_timeout_handler(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05005247{
James Smart2e0fef82007-06-17 19:56:36 -05005248 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05005249 struct lpfc_sli_ring *pring;
5250 struct lpfc_iocbq *tmp_iocb, *piocb;
5251 IOCB_t *cmd = NULL;
5252 struct lpfc_dmabuf *pcmd;
James Smart2e0fef82007-06-17 19:56:36 -05005253 uint32_t els_command = 0;
dea31012005-04-17 16:05:31 -05005254 uint32_t timeout;
James Smart2e0fef82007-06-17 19:56:36 -05005255 uint32_t remote_ID = 0xffffffff;
James Smart2a9bf3d2010-06-07 15:24:45 -04005256 LIST_HEAD(txcmplq_completions);
5257 LIST_HEAD(abort_list);
dea31012005-04-17 16:05:31 -05005258
James Smart2a9bf3d2010-06-07 15:24:45 -04005259
dea31012005-04-17 16:05:31 -05005260 timeout = (uint32_t)(phba->fc_ratov << 1);
5261
5262 pring = &phba->sli.ring[LPFC_ELS_RING];
dea31012005-04-17 16:05:31 -05005263
James Smart2a9bf3d2010-06-07 15:24:45 -04005264 spin_lock_irq(&phba->hbalock);
5265 list_splice_init(&pring->txcmplq, &txcmplq_completions);
5266 spin_unlock_irq(&phba->hbalock);
5267
5268 list_for_each_entry_safe(piocb, tmp_iocb, &txcmplq_completions, list) {
dea31012005-04-17 16:05:31 -05005269 cmd = &piocb->iocb;
5270
James Smart2e0fef82007-06-17 19:56:36 -05005271 if ((piocb->iocb_flag & LPFC_IO_LIBDFC) != 0 ||
5272 piocb->iocb.ulpCommand == CMD_ABORT_XRI_CN ||
5273 piocb->iocb.ulpCommand == CMD_CLOSE_XRI_CN)
dea31012005-04-17 16:05:31 -05005274 continue;
James Smart2e0fef82007-06-17 19:56:36 -05005275
5276 if (piocb->vport != vport)
5277 continue;
5278
dea31012005-04-17 16:05:31 -05005279 pcmd = (struct lpfc_dmabuf *) piocb->context2;
James Smart2e0fef82007-06-17 19:56:36 -05005280 if (pcmd)
5281 els_command = *(uint32_t *) (pcmd->virt);
dea31012005-04-17 16:05:31 -05005282
James Smart92d7f7b2007-06-17 19:56:38 -05005283 if (els_command == ELS_CMD_FARP ||
5284 els_command == ELS_CMD_FARPR ||
5285 els_command == ELS_CMD_FDISC)
dea31012005-04-17 16:05:31 -05005286 continue;
James Smart92d7f7b2007-06-17 19:56:38 -05005287
dea31012005-04-17 16:05:31 -05005288 if (piocb->drvrTimeout > 0) {
James Smart92d7f7b2007-06-17 19:56:38 -05005289 if (piocb->drvrTimeout >= timeout)
dea31012005-04-17 16:05:31 -05005290 piocb->drvrTimeout -= timeout;
James Smart92d7f7b2007-06-17 19:56:38 -05005291 else
dea31012005-04-17 16:05:31 -05005292 piocb->drvrTimeout = 0;
dea31012005-04-17 16:05:31 -05005293 continue;
5294 }
5295
James Smart2e0fef82007-06-17 19:56:36 -05005296 remote_ID = 0xffffffff;
5297 if (cmd->ulpCommand != CMD_GEN_REQUEST64_CR)
dea31012005-04-17 16:05:31 -05005298 remote_ID = cmd->un.elsreq64.remoteID;
James Smart2e0fef82007-06-17 19:56:36 -05005299 else {
5300 struct lpfc_nodelist *ndlp;
5301 ndlp = __lpfc_findnode_rpi(vport, cmd->ulpContext);
James Smart58da1ff2008-04-07 10:15:56 -04005302 if (ndlp && NLP_CHK_NODE_ACT(ndlp))
James Smart2e0fef82007-06-17 19:56:36 -05005303 remote_ID = ndlp->nlp_DID;
dea31012005-04-17 16:05:31 -05005304 }
James Smart2a9bf3d2010-06-07 15:24:45 -04005305 list_add_tail(&piocb->dlist, &abort_list);
dea31012005-04-17 16:05:31 -05005306 }
James Smart2a9bf3d2010-06-07 15:24:45 -04005307 spin_lock_irq(&phba->hbalock);
5308 list_splice(&txcmplq_completions, &pring->txcmplq);
James Smart2e0fef82007-06-17 19:56:36 -05005309 spin_unlock_irq(&phba->hbalock);
James Smart5a0e3262006-07-06 15:49:16 -04005310
James Smart2a9bf3d2010-06-07 15:24:45 -04005311 list_for_each_entry_safe(piocb, tmp_iocb, &abort_list, dlist) {
5312 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
5313 "0127 ELS timeout Data: x%x x%x x%x "
5314 "x%x\n", els_command,
5315 remote_ID, cmd->ulpCommand, cmd->ulpIoTag);
5316 spin_lock_irq(&phba->hbalock);
5317 list_del_init(&piocb->dlist);
5318 lpfc_sli_issue_abort_iotag(phba, pring, piocb);
5319 spin_unlock_irq(&phba->hbalock);
5320 }
5321
James Smart2e0fef82007-06-17 19:56:36 -05005322 if (phba->sli.ring[LPFC_ELS_RING].txcmplq_cnt)
5323 mod_timer(&vport->els_tmofunc, jiffies + HZ * timeout);
dea31012005-04-17 16:05:31 -05005324}
5325
James Smarte59058c2008-08-24 21:49:00 -04005326/**
James Smart3621a712009-04-06 18:47:14 -04005327 * lpfc_els_flush_cmd - Clean up the outstanding els commands to a vport
James Smarte59058c2008-08-24 21:49:00 -04005328 * @vport: pointer to a host virtual N_Port data structure.
5329 *
5330 * This routine is used to clean up all the outstanding ELS commands on a
5331 * @vport. It first aborts the @vport by invoking lpfc_fabric_abort_vport()
5332 * routine. After that, it walks the ELS transmit queue to remove all the
5333 * IOCBs with the @vport other than the QUE_RING and ABORT/CLOSE IOCBs. For
5334 * the IOCBs with a non-NULL completion callback function, the callback
5335 * function will be invoked with the status set to IOSTAT_LOCAL_REJECT and
5336 * un.ulpWord[4] set to IOERR_SLI_ABORTED. For IOCBs with a NULL completion
5337 * callback function, the IOCB will simply be released. Finally, it walks
5338 * the ELS transmit completion queue to issue an abort IOCB to any transmit
5339 * completion queue IOCB that is associated with the @vport and is not
5340 * an IOCB from libdfc (i.e., the management plane IOCBs that are not
5341 * part of the discovery state machine) out to HBA by invoking the
5342 * lpfc_sli_issue_abort_iotag() routine. Note that this function issues the
5343 * abort IOCB to any transmit completion queueed IOCB, it does not guarantee
5344 * the IOCBs are aborted when this function returns.
5345 **/
dea31012005-04-17 16:05:31 -05005346void
James Smart2e0fef82007-06-17 19:56:36 -05005347lpfc_els_flush_cmd(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05005348{
James Smart2534ba72007-04-25 09:52:20 -04005349 LIST_HEAD(completions);
James Smart2e0fef82007-06-17 19:56:36 -05005350 struct lpfc_hba *phba = vport->phba;
James Smart329f9bc2007-04-25 09:53:01 -04005351 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
dea31012005-04-17 16:05:31 -05005352 struct lpfc_iocbq *tmp_iocb, *piocb;
5353 IOCB_t *cmd = NULL;
James Smart92d7f7b2007-06-17 19:56:38 -05005354
5355 lpfc_fabric_abort_vport(vport);
dea31012005-04-17 16:05:31 -05005356
James Smart2e0fef82007-06-17 19:56:36 -05005357 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05005358 list_for_each_entry_safe(piocb, tmp_iocb, &pring->txq, list) {
5359 cmd = &piocb->iocb;
5360
5361 if (piocb->iocb_flag & LPFC_IO_LIBDFC) {
5362 continue;
5363 }
5364
5365 /* Do not flush out the QUE_RING and ABORT/CLOSE iocbs */
James Smart329f9bc2007-04-25 09:53:01 -04005366 if (cmd->ulpCommand == CMD_QUE_RING_BUF_CN ||
5367 cmd->ulpCommand == CMD_QUE_RING_BUF64_CN ||
5368 cmd->ulpCommand == CMD_CLOSE_XRI_CN ||
5369 cmd->ulpCommand == CMD_ABORT_XRI_CN)
dea31012005-04-17 16:05:31 -05005370 continue;
dea31012005-04-17 16:05:31 -05005371
James Smart2e0fef82007-06-17 19:56:36 -05005372 if (piocb->vport != vport)
5373 continue;
5374
James Smart2534ba72007-04-25 09:52:20 -04005375 list_move_tail(&piocb->list, &completions);
James Smart1dcb58e2007-04-25 09:51:30 -04005376 pring->txq_cnt--;
dea31012005-04-17 16:05:31 -05005377 }
5378
5379 list_for_each_entry_safe(piocb, tmp_iocb, &pring->txcmplq, list) {
dea31012005-04-17 16:05:31 -05005380 if (piocb->iocb_flag & LPFC_IO_LIBDFC) {
5381 continue;
5382 }
dea31012005-04-17 16:05:31 -05005383
James Smart2e0fef82007-06-17 19:56:36 -05005384 if (piocb->vport != vport)
5385 continue;
5386
James Smart07951072007-04-25 09:51:38 -04005387 lpfc_sli_issue_abort_iotag(phba, pring, piocb);
dea31012005-04-17 16:05:31 -05005388 }
James Smart2e0fef82007-06-17 19:56:36 -05005389 spin_unlock_irq(&phba->hbalock);
James Smart2534ba72007-04-25 09:52:20 -04005390
James Smarta257bf92009-04-06 18:48:10 -04005391 /* Cancell all the IOCBs from the completions list */
5392 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
5393 IOERR_SLI_ABORTED);
James Smart2534ba72007-04-25 09:52:20 -04005394
dea31012005-04-17 16:05:31 -05005395 return;
5396}
5397
James Smarte59058c2008-08-24 21:49:00 -04005398/**
James Smart3621a712009-04-06 18:47:14 -04005399 * lpfc_els_flush_all_cmd - Clean up all the outstanding els commands to a HBA
James Smarte59058c2008-08-24 21:49:00 -04005400 * @phba: pointer to lpfc hba data structure.
5401 *
5402 * This routine is used to clean up all the outstanding ELS commands on a
5403 * @phba. It first aborts the @phba by invoking the lpfc_fabric_abort_hba()
5404 * routine. After that, it walks the ELS transmit queue to remove all the
5405 * IOCBs to the @phba other than the QUE_RING and ABORT/CLOSE IOCBs. For
5406 * the IOCBs with the completion callback function associated, the callback
5407 * function will be invoked with the status set to IOSTAT_LOCAL_REJECT and
5408 * un.ulpWord[4] set to IOERR_SLI_ABORTED. For IOCBs without the completion
5409 * callback function associated, the IOCB will simply be released. Finally,
5410 * it walks the ELS transmit completion queue to issue an abort IOCB to any
5411 * transmit completion queue IOCB that is not an IOCB from libdfc (i.e., the
5412 * management plane IOCBs that are not part of the discovery state machine)
5413 * out to HBA by invoking the lpfc_sli_issue_abort_iotag() routine.
5414 **/
James Smart549e55c2007-08-02 11:09:51 -04005415void
5416lpfc_els_flush_all_cmd(struct lpfc_hba *phba)
5417{
5418 LIST_HEAD(completions);
5419 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
5420 struct lpfc_iocbq *tmp_iocb, *piocb;
5421 IOCB_t *cmd = NULL;
5422
5423 lpfc_fabric_abort_hba(phba);
5424 spin_lock_irq(&phba->hbalock);
5425 list_for_each_entry_safe(piocb, tmp_iocb, &pring->txq, list) {
5426 cmd = &piocb->iocb;
5427 if (piocb->iocb_flag & LPFC_IO_LIBDFC)
5428 continue;
5429 /* Do not flush out the QUE_RING and ABORT/CLOSE iocbs */
5430 if (cmd->ulpCommand == CMD_QUE_RING_BUF_CN ||
5431 cmd->ulpCommand == CMD_QUE_RING_BUF64_CN ||
5432 cmd->ulpCommand == CMD_CLOSE_XRI_CN ||
5433 cmd->ulpCommand == CMD_ABORT_XRI_CN)
5434 continue;
5435 list_move_tail(&piocb->list, &completions);
5436 pring->txq_cnt--;
5437 }
5438 list_for_each_entry_safe(piocb, tmp_iocb, &pring->txcmplq, list) {
5439 if (piocb->iocb_flag & LPFC_IO_LIBDFC)
5440 continue;
5441 lpfc_sli_issue_abort_iotag(phba, pring, piocb);
5442 }
5443 spin_unlock_irq(&phba->hbalock);
James Smarta257bf92009-04-06 18:48:10 -04005444
5445 /* Cancel all the IOCBs from the completions list */
5446 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
5447 IOERR_SLI_ABORTED);
5448
James Smart549e55c2007-08-02 11:09:51 -04005449 return;
5450}
5451
James Smarte59058c2008-08-24 21:49:00 -04005452/**
James Smart3621a712009-04-06 18:47:14 -04005453 * lpfc_send_els_failure_event - Posts an ELS command failure event
James Smartea2151b2008-09-07 11:52:10 -04005454 * @phba: Pointer to hba context object.
5455 * @cmdiocbp: Pointer to command iocb which reported error.
5456 * @rspiocbp: Pointer to response iocb which reported error.
5457 *
5458 * This function sends an event when there is an ELS command
5459 * failure.
5460 **/
5461void
5462lpfc_send_els_failure_event(struct lpfc_hba *phba,
5463 struct lpfc_iocbq *cmdiocbp,
5464 struct lpfc_iocbq *rspiocbp)
5465{
5466 struct lpfc_vport *vport = cmdiocbp->vport;
5467 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
5468 struct lpfc_lsrjt_event lsrjt_event;
5469 struct lpfc_fabric_event_header fabric_event;
5470 struct ls_rjt stat;
5471 struct lpfc_nodelist *ndlp;
5472 uint32_t *pcmd;
5473
5474 ndlp = cmdiocbp->context1;
5475 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp))
5476 return;
5477
5478 if (rspiocbp->iocb.ulpStatus == IOSTAT_LS_RJT) {
5479 lsrjt_event.header.event_type = FC_REG_ELS_EVENT;
5480 lsrjt_event.header.subcategory = LPFC_EVENT_LSRJT_RCV;
5481 memcpy(lsrjt_event.header.wwpn, &ndlp->nlp_portname,
5482 sizeof(struct lpfc_name));
5483 memcpy(lsrjt_event.header.wwnn, &ndlp->nlp_nodename,
5484 sizeof(struct lpfc_name));
5485 pcmd = (uint32_t *) (((struct lpfc_dmabuf *)
5486 cmdiocbp->context2)->virt);
James Smart49198b32010-04-06 15:04:33 -04005487 lsrjt_event.command = (pcmd != NULL) ? *pcmd : 0;
James Smartea2151b2008-09-07 11:52:10 -04005488 stat.un.lsRjtError = be32_to_cpu(rspiocbp->iocb.un.ulpWord[4]);
5489 lsrjt_event.reason_code = stat.un.b.lsRjtRsnCode;
5490 lsrjt_event.explanation = stat.un.b.lsRjtRsnCodeExp;
5491 fc_host_post_vendor_event(shost,
5492 fc_get_event_number(),
5493 sizeof(lsrjt_event),
5494 (char *)&lsrjt_event,
James Smartddcc50f2008-12-04 22:38:46 -05005495 LPFC_NL_VENDOR_ID);
James Smartea2151b2008-09-07 11:52:10 -04005496 return;
5497 }
5498 if ((rspiocbp->iocb.ulpStatus == IOSTAT_NPORT_BSY) ||
5499 (rspiocbp->iocb.ulpStatus == IOSTAT_FABRIC_BSY)) {
5500 fabric_event.event_type = FC_REG_FABRIC_EVENT;
5501 if (rspiocbp->iocb.ulpStatus == IOSTAT_NPORT_BSY)
5502 fabric_event.subcategory = LPFC_EVENT_PORT_BUSY;
5503 else
5504 fabric_event.subcategory = LPFC_EVENT_FABRIC_BUSY;
5505 memcpy(fabric_event.wwpn, &ndlp->nlp_portname,
5506 sizeof(struct lpfc_name));
5507 memcpy(fabric_event.wwnn, &ndlp->nlp_nodename,
5508 sizeof(struct lpfc_name));
5509 fc_host_post_vendor_event(shost,
5510 fc_get_event_number(),
5511 sizeof(fabric_event),
5512 (char *)&fabric_event,
James Smartddcc50f2008-12-04 22:38:46 -05005513 LPFC_NL_VENDOR_ID);
James Smartea2151b2008-09-07 11:52:10 -04005514 return;
5515 }
5516
5517}
5518
5519/**
James Smart3621a712009-04-06 18:47:14 -04005520 * lpfc_send_els_event - Posts unsolicited els event
James Smartea2151b2008-09-07 11:52:10 -04005521 * @vport: Pointer to vport object.
5522 * @ndlp: Pointer FC node object.
5523 * @cmd: ELS command code.
5524 *
5525 * This function posts an event when there is an incoming
5526 * unsolicited ELS command.
5527 **/
5528static void
5529lpfc_send_els_event(struct lpfc_vport *vport,
5530 struct lpfc_nodelist *ndlp,
James Smartddcc50f2008-12-04 22:38:46 -05005531 uint32_t *payload)
James Smartea2151b2008-09-07 11:52:10 -04005532{
James Smartddcc50f2008-12-04 22:38:46 -05005533 struct lpfc_els_event_header *els_data = NULL;
5534 struct lpfc_logo_event *logo_data = NULL;
James Smartea2151b2008-09-07 11:52:10 -04005535 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
5536
James Smartddcc50f2008-12-04 22:38:46 -05005537 if (*payload == ELS_CMD_LOGO) {
5538 logo_data = kmalloc(sizeof(struct lpfc_logo_event), GFP_KERNEL);
5539 if (!logo_data) {
5540 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
5541 "0148 Failed to allocate memory "
5542 "for LOGO event\n");
5543 return;
5544 }
5545 els_data = &logo_data->header;
5546 } else {
5547 els_data = kmalloc(sizeof(struct lpfc_els_event_header),
5548 GFP_KERNEL);
5549 if (!els_data) {
5550 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
5551 "0149 Failed to allocate memory "
5552 "for ELS event\n");
5553 return;
5554 }
5555 }
5556 els_data->event_type = FC_REG_ELS_EVENT;
5557 switch (*payload) {
James Smartea2151b2008-09-07 11:52:10 -04005558 case ELS_CMD_PLOGI:
James Smartddcc50f2008-12-04 22:38:46 -05005559 els_data->subcategory = LPFC_EVENT_PLOGI_RCV;
James Smartea2151b2008-09-07 11:52:10 -04005560 break;
5561 case ELS_CMD_PRLO:
James Smartddcc50f2008-12-04 22:38:46 -05005562 els_data->subcategory = LPFC_EVENT_PRLO_RCV;
James Smartea2151b2008-09-07 11:52:10 -04005563 break;
5564 case ELS_CMD_ADISC:
James Smartddcc50f2008-12-04 22:38:46 -05005565 els_data->subcategory = LPFC_EVENT_ADISC_RCV;
5566 break;
5567 case ELS_CMD_LOGO:
5568 els_data->subcategory = LPFC_EVENT_LOGO_RCV;
5569 /* Copy the WWPN in the LOGO payload */
5570 memcpy(logo_data->logo_wwpn, &payload[2],
5571 sizeof(struct lpfc_name));
James Smartea2151b2008-09-07 11:52:10 -04005572 break;
5573 default:
Julia Lawalle9161412009-02-08 22:43:19 +01005574 kfree(els_data);
James Smartea2151b2008-09-07 11:52:10 -04005575 return;
5576 }
James Smartddcc50f2008-12-04 22:38:46 -05005577 memcpy(els_data->wwpn, &ndlp->nlp_portname, sizeof(struct lpfc_name));
5578 memcpy(els_data->wwnn, &ndlp->nlp_nodename, sizeof(struct lpfc_name));
5579 if (*payload == ELS_CMD_LOGO) {
5580 fc_host_post_vendor_event(shost,
5581 fc_get_event_number(),
5582 sizeof(struct lpfc_logo_event),
5583 (char *)logo_data,
5584 LPFC_NL_VENDOR_ID);
5585 kfree(logo_data);
5586 } else {
5587 fc_host_post_vendor_event(shost,
5588 fc_get_event_number(),
5589 sizeof(struct lpfc_els_event_header),
5590 (char *)els_data,
5591 LPFC_NL_VENDOR_ID);
5592 kfree(els_data);
5593 }
James Smartea2151b2008-09-07 11:52:10 -04005594
5595 return;
5596}
5597
5598
5599/**
James Smart3621a712009-04-06 18:47:14 -04005600 * lpfc_els_unsol_buffer - Process an unsolicited event data buffer
James Smarte59058c2008-08-24 21:49:00 -04005601 * @phba: pointer to lpfc hba data structure.
5602 * @pring: pointer to a SLI ring.
5603 * @vport: pointer to a host virtual N_Port data structure.
5604 * @elsiocb: pointer to lpfc els command iocb data structure.
5605 *
5606 * This routine is used for processing the IOCB associated with a unsolicited
5607 * event. It first determines whether there is an existing ndlp that matches
5608 * the DID from the unsolicited IOCB. If not, it will create a new one with
5609 * the DID from the unsolicited IOCB. The ELS command from the unsolicited
5610 * IOCB is then used to invoke the proper routine and to set up proper state
5611 * of the discovery state machine.
5612 **/
James Smarted957682007-06-17 19:56:37 -05005613static void
5614lpfc_els_unsol_buffer(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
James Smart92d7f7b2007-06-17 19:56:38 -05005615 struct lpfc_vport *vport, struct lpfc_iocbq *elsiocb)
dea31012005-04-17 16:05:31 -05005616{
James Smart87af33f2007-10-27 13:37:43 -04005617 struct Scsi_Host *shost;
dea31012005-04-17 16:05:31 -05005618 struct lpfc_nodelist *ndlp;
dea31012005-04-17 16:05:31 -05005619 struct ls_rjt stat;
James Smart92d7f7b2007-06-17 19:56:38 -05005620 uint32_t *payload;
James Smart2e0fef82007-06-17 19:56:36 -05005621 uint32_t cmd, did, newnode, rjt_err = 0;
James Smarted957682007-06-17 19:56:37 -05005622 IOCB_t *icmd = &elsiocb->iocb;
dea31012005-04-17 16:05:31 -05005623
James Smarte47c9092008-02-08 18:49:26 -05005624 if (!vport || !(elsiocb->context2))
dea31012005-04-17 16:05:31 -05005625 goto dropit;
James Smart2e0fef82007-06-17 19:56:36 -05005626
dea31012005-04-17 16:05:31 -05005627 newnode = 0;
James Smart92d7f7b2007-06-17 19:56:38 -05005628 payload = ((struct lpfc_dmabuf *)elsiocb->context2)->virt;
5629 cmd = *payload;
James Smarted957682007-06-17 19:56:37 -05005630 if ((phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) == 0)
James Smart495a7142008-06-14 22:52:59 -04005631 lpfc_post_buffer(phba, pring, 1);
dea31012005-04-17 16:05:31 -05005632
James Smart858c9f62007-06-17 19:56:39 -05005633 did = icmd->un.rcvels.remoteID;
5634 if (icmd->ulpStatus) {
5635 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
5636 "RCV Unsol ELS: status:x%x/x%x did:x%x",
5637 icmd->ulpStatus, icmd->un.ulpWord[4], did);
dea31012005-04-17 16:05:31 -05005638 goto dropit;
James Smart858c9f62007-06-17 19:56:39 -05005639 }
dea31012005-04-17 16:05:31 -05005640
5641 /* Check to see if link went down during discovery */
James Smarted957682007-06-17 19:56:37 -05005642 if (lpfc_els_chk_latt(vport))
dea31012005-04-17 16:05:31 -05005643 goto dropit;
dea31012005-04-17 16:05:31 -05005644
James Smartc8685952009-11-18 15:39:16 -05005645 /* Ignore traffic received during vport shutdown. */
James Smart92d7f7b2007-06-17 19:56:38 -05005646 if (vport->load_flag & FC_UNLOADING)
5647 goto dropit;
5648
James Smart2e0fef82007-06-17 19:56:36 -05005649 ndlp = lpfc_findnode_did(vport, did);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05005650 if (!ndlp) {
dea31012005-04-17 16:05:31 -05005651 /* Cannot find existing Fabric ndlp, so allocate a new one */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05005652 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
James Smarted957682007-06-17 19:56:37 -05005653 if (!ndlp)
dea31012005-04-17 16:05:31 -05005654 goto dropit;
dea31012005-04-17 16:05:31 -05005655
James Smart2e0fef82007-06-17 19:56:36 -05005656 lpfc_nlp_init(vport, ndlp, did);
James Smart98c9ea52007-10-27 13:37:33 -04005657 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
dea31012005-04-17 16:05:31 -05005658 newnode = 1;
James Smarte47c9092008-02-08 18:49:26 -05005659 if ((did & Fabric_DID_MASK) == Fabric_DID_MASK)
dea31012005-04-17 16:05:31 -05005660 ndlp->nlp_type |= NLP_FABRIC;
James Smart58da1ff2008-04-07 10:15:56 -04005661 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
5662 ndlp = lpfc_enable_node(vport, ndlp,
5663 NLP_STE_UNUSED_NODE);
5664 if (!ndlp)
5665 goto dropit;
5666 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
5667 newnode = 1;
5668 if ((did & Fabric_DID_MASK) == Fabric_DID_MASK)
5669 ndlp->nlp_type |= NLP_FABRIC;
5670 } else if (ndlp->nlp_state == NLP_STE_UNUSED_NODE) {
5671 /* This is similar to the new node path */
5672 ndlp = lpfc_nlp_get(ndlp);
5673 if (!ndlp)
5674 goto dropit;
5675 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
5676 newnode = 1;
James Smart87af33f2007-10-27 13:37:43 -04005677 }
dea31012005-04-17 16:05:31 -05005678
5679 phba->fc_stat.elsRcvFrame++;
James Smarte47c9092008-02-08 18:49:26 -05005680
James Smart329f9bc2007-04-25 09:53:01 -04005681 elsiocb->context1 = lpfc_nlp_get(ndlp);
James Smart2e0fef82007-06-17 19:56:36 -05005682 elsiocb->vport = vport;
dea31012005-04-17 16:05:31 -05005683
5684 if ((cmd & ELS_CMD_MASK) == ELS_CMD_RSCN) {
5685 cmd &= ELS_CMD_MASK;
5686 }
5687 /* ELS command <elsCmd> received from NPORT <did> */
James Smarte8b62012007-08-02 11:10:09 -04005688 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
5689 "0112 ELS command x%x received from NPORT x%x "
5690 "Data: x%x\n", cmd, did, vport->port_state);
dea31012005-04-17 16:05:31 -05005691 switch (cmd) {
5692 case ELS_CMD_PLOGI:
James Smart858c9f62007-06-17 19:56:39 -05005693 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
5694 "RCV PLOGI: did:x%x/ste:x%x flg:x%x",
5695 did, vport->port_state, ndlp->nlp_flag);
5696
dea31012005-04-17 16:05:31 -05005697 phba->fc_stat.elsRcvPLOGI++;
James Smart858c9f62007-06-17 19:56:39 -05005698 ndlp = lpfc_plogi_confirm_nport(phba, payload, ndlp);
5699
James Smartddcc50f2008-12-04 22:38:46 -05005700 lpfc_send_els_event(vport, ndlp, payload);
James Smart858c9f62007-06-17 19:56:39 -05005701 if (vport->port_state < LPFC_DISC_AUTH) {
James Smart1b32f6a2008-02-08 18:49:39 -05005702 if (!(phba->pport->fc_flag & FC_PT2PT) ||
5703 (phba->pport->fc_flag & FC_PT2PT_PLOGI)) {
5704 rjt_err = LSRJT_UNABLE_TPC;
5705 break;
5706 }
5707 /* We get here, and drop thru, if we are PT2PT with
5708 * another NPort and the other side has initiated
5709 * the PLOGI before responding to our FLOGI.
5710 */
dea31012005-04-17 16:05:31 -05005711 }
James Smart87af33f2007-10-27 13:37:43 -04005712
5713 shost = lpfc_shost_from_vport(vport);
5714 spin_lock_irq(shost->host_lock);
5715 ndlp->nlp_flag &= ~NLP_TARGET_REMOVE;
5716 spin_unlock_irq(shost->host_lock);
5717
James Smart2e0fef82007-06-17 19:56:36 -05005718 lpfc_disc_state_machine(vport, ndlp, elsiocb,
5719 NLP_EVT_RCV_PLOGI);
James Smart858c9f62007-06-17 19:56:39 -05005720
dea31012005-04-17 16:05:31 -05005721 break;
5722 case ELS_CMD_FLOGI:
James Smart858c9f62007-06-17 19:56:39 -05005723 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
5724 "RCV FLOGI: did:x%x/ste:x%x flg:x%x",
5725 did, vport->port_state, ndlp->nlp_flag);
5726
dea31012005-04-17 16:05:31 -05005727 phba->fc_stat.elsRcvFLOGI++;
James Smart51ef4c22007-08-02 11:10:31 -04005728 lpfc_els_rcv_flogi(vport, elsiocb, ndlp);
James Smart87af33f2007-10-27 13:37:43 -04005729 if (newnode)
James Smart98c9ea52007-10-27 13:37:33 -04005730 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05005731 break;
5732 case ELS_CMD_LOGO:
James Smart858c9f62007-06-17 19:56:39 -05005733 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
5734 "RCV LOGO: did:x%x/ste:x%x flg:x%x",
5735 did, vport->port_state, ndlp->nlp_flag);
5736
dea31012005-04-17 16:05:31 -05005737 phba->fc_stat.elsRcvLOGO++;
James Smartddcc50f2008-12-04 22:38:46 -05005738 lpfc_send_els_event(vport, ndlp, payload);
James Smart2e0fef82007-06-17 19:56:36 -05005739 if (vport->port_state < LPFC_DISC_AUTH) {
James Smart858c9f62007-06-17 19:56:39 -05005740 rjt_err = LSRJT_UNABLE_TPC;
dea31012005-04-17 16:05:31 -05005741 break;
5742 }
James Smart2e0fef82007-06-17 19:56:36 -05005743 lpfc_disc_state_machine(vport, ndlp, elsiocb, NLP_EVT_RCV_LOGO);
dea31012005-04-17 16:05:31 -05005744 break;
5745 case ELS_CMD_PRLO:
James Smart858c9f62007-06-17 19:56:39 -05005746 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
5747 "RCV PRLO: did:x%x/ste:x%x flg:x%x",
5748 did, vport->port_state, ndlp->nlp_flag);
5749
dea31012005-04-17 16:05:31 -05005750 phba->fc_stat.elsRcvPRLO++;
James Smartddcc50f2008-12-04 22:38:46 -05005751 lpfc_send_els_event(vport, ndlp, payload);
James Smart2e0fef82007-06-17 19:56:36 -05005752 if (vport->port_state < LPFC_DISC_AUTH) {
James Smart858c9f62007-06-17 19:56:39 -05005753 rjt_err = LSRJT_UNABLE_TPC;
dea31012005-04-17 16:05:31 -05005754 break;
5755 }
James Smart2e0fef82007-06-17 19:56:36 -05005756 lpfc_disc_state_machine(vport, ndlp, elsiocb, NLP_EVT_RCV_PRLO);
dea31012005-04-17 16:05:31 -05005757 break;
5758 case ELS_CMD_RSCN:
5759 phba->fc_stat.elsRcvRSCN++;
James Smart51ef4c22007-08-02 11:10:31 -04005760 lpfc_els_rcv_rscn(vport, elsiocb, ndlp);
James Smart87af33f2007-10-27 13:37:43 -04005761 if (newnode)
James Smart98c9ea52007-10-27 13:37:33 -04005762 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05005763 break;
5764 case ELS_CMD_ADISC:
James Smart858c9f62007-06-17 19:56:39 -05005765 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
5766 "RCV ADISC: did:x%x/ste:x%x flg:x%x",
5767 did, vport->port_state, ndlp->nlp_flag);
5768
James Smartddcc50f2008-12-04 22:38:46 -05005769 lpfc_send_els_event(vport, ndlp, payload);
dea31012005-04-17 16:05:31 -05005770 phba->fc_stat.elsRcvADISC++;
James Smart2e0fef82007-06-17 19:56:36 -05005771 if (vport->port_state < LPFC_DISC_AUTH) {
James Smart858c9f62007-06-17 19:56:39 -05005772 rjt_err = LSRJT_UNABLE_TPC;
dea31012005-04-17 16:05:31 -05005773 break;
5774 }
James Smart2e0fef82007-06-17 19:56:36 -05005775 lpfc_disc_state_machine(vport, ndlp, elsiocb,
5776 NLP_EVT_RCV_ADISC);
dea31012005-04-17 16:05:31 -05005777 break;
5778 case ELS_CMD_PDISC:
James Smart858c9f62007-06-17 19:56:39 -05005779 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
5780 "RCV PDISC: did:x%x/ste:x%x flg:x%x",
5781 did, vport->port_state, ndlp->nlp_flag);
5782
dea31012005-04-17 16:05:31 -05005783 phba->fc_stat.elsRcvPDISC++;
James Smart2e0fef82007-06-17 19:56:36 -05005784 if (vport->port_state < LPFC_DISC_AUTH) {
James Smart858c9f62007-06-17 19:56:39 -05005785 rjt_err = LSRJT_UNABLE_TPC;
dea31012005-04-17 16:05:31 -05005786 break;
5787 }
James Smart2e0fef82007-06-17 19:56:36 -05005788 lpfc_disc_state_machine(vport, ndlp, elsiocb,
5789 NLP_EVT_RCV_PDISC);
dea31012005-04-17 16:05:31 -05005790 break;
5791 case ELS_CMD_FARPR:
James Smart858c9f62007-06-17 19:56:39 -05005792 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
5793 "RCV FARPR: did:x%x/ste:x%x flg:x%x",
5794 did, vport->port_state, ndlp->nlp_flag);
5795
dea31012005-04-17 16:05:31 -05005796 phba->fc_stat.elsRcvFARPR++;
James Smart2e0fef82007-06-17 19:56:36 -05005797 lpfc_els_rcv_farpr(vport, elsiocb, ndlp);
dea31012005-04-17 16:05:31 -05005798 break;
5799 case ELS_CMD_FARP:
James Smart858c9f62007-06-17 19:56:39 -05005800 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
5801 "RCV FARP: did:x%x/ste:x%x flg:x%x",
5802 did, vport->port_state, ndlp->nlp_flag);
5803
dea31012005-04-17 16:05:31 -05005804 phba->fc_stat.elsRcvFARP++;
James Smart2e0fef82007-06-17 19:56:36 -05005805 lpfc_els_rcv_farp(vport, elsiocb, ndlp);
dea31012005-04-17 16:05:31 -05005806 break;
5807 case ELS_CMD_FAN:
James Smart858c9f62007-06-17 19:56:39 -05005808 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
5809 "RCV FAN: did:x%x/ste:x%x flg:x%x",
5810 did, vport->port_state, ndlp->nlp_flag);
5811
dea31012005-04-17 16:05:31 -05005812 phba->fc_stat.elsRcvFAN++;
James Smart2e0fef82007-06-17 19:56:36 -05005813 lpfc_els_rcv_fan(vport, elsiocb, ndlp);
dea31012005-04-17 16:05:31 -05005814 break;
dea31012005-04-17 16:05:31 -05005815 case ELS_CMD_PRLI:
James Smart858c9f62007-06-17 19:56:39 -05005816 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
5817 "RCV PRLI: did:x%x/ste:x%x flg:x%x",
5818 did, vport->port_state, ndlp->nlp_flag);
5819
dea31012005-04-17 16:05:31 -05005820 phba->fc_stat.elsRcvPRLI++;
James Smart2e0fef82007-06-17 19:56:36 -05005821 if (vport->port_state < LPFC_DISC_AUTH) {
James Smart858c9f62007-06-17 19:56:39 -05005822 rjt_err = LSRJT_UNABLE_TPC;
dea31012005-04-17 16:05:31 -05005823 break;
5824 }
James Smart2e0fef82007-06-17 19:56:36 -05005825 lpfc_disc_state_machine(vport, ndlp, elsiocb, NLP_EVT_RCV_PRLI);
dea31012005-04-17 16:05:31 -05005826 break;
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005827 case ELS_CMD_LIRR:
James Smart858c9f62007-06-17 19:56:39 -05005828 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
5829 "RCV LIRR: did:x%x/ste:x%x flg:x%x",
5830 did, vport->port_state, ndlp->nlp_flag);
5831
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005832 phba->fc_stat.elsRcvLIRR++;
James Smart2e0fef82007-06-17 19:56:36 -05005833 lpfc_els_rcv_lirr(vport, elsiocb, ndlp);
James Smart87af33f2007-10-27 13:37:43 -04005834 if (newnode)
James Smart98c9ea52007-10-27 13:37:33 -04005835 lpfc_nlp_put(ndlp);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005836 break;
5837 case ELS_CMD_RPS:
James Smart858c9f62007-06-17 19:56:39 -05005838 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
5839 "RCV RPS: did:x%x/ste:x%x flg:x%x",
5840 did, vport->port_state, ndlp->nlp_flag);
5841
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005842 phba->fc_stat.elsRcvRPS++;
James Smart2e0fef82007-06-17 19:56:36 -05005843 lpfc_els_rcv_rps(vport, elsiocb, ndlp);
James Smart87af33f2007-10-27 13:37:43 -04005844 if (newnode)
James Smart98c9ea52007-10-27 13:37:33 -04005845 lpfc_nlp_put(ndlp);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005846 break;
5847 case ELS_CMD_RPL:
James Smart858c9f62007-06-17 19:56:39 -05005848 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
5849 "RCV RPL: did:x%x/ste:x%x flg:x%x",
5850 did, vport->port_state, ndlp->nlp_flag);
5851
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005852 phba->fc_stat.elsRcvRPL++;
James Smart2e0fef82007-06-17 19:56:36 -05005853 lpfc_els_rcv_rpl(vport, elsiocb, ndlp);
James Smart87af33f2007-10-27 13:37:43 -04005854 if (newnode)
James Smart98c9ea52007-10-27 13:37:33 -04005855 lpfc_nlp_put(ndlp);
Jamie Wellnitz7bb3b132006-02-28 19:25:15 -05005856 break;
dea31012005-04-17 16:05:31 -05005857 case ELS_CMD_RNID:
James Smart858c9f62007-06-17 19:56:39 -05005858 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
5859 "RCV RNID: did:x%x/ste:x%x flg:x%x",
5860 did, vport->port_state, ndlp->nlp_flag);
5861
dea31012005-04-17 16:05:31 -05005862 phba->fc_stat.elsRcvRNID++;
James Smart2e0fef82007-06-17 19:56:36 -05005863 lpfc_els_rcv_rnid(vport, elsiocb, ndlp);
James Smart87af33f2007-10-27 13:37:43 -04005864 if (newnode)
James Smart98c9ea52007-10-27 13:37:33 -04005865 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05005866 break;
James Smart5ffc2662009-11-18 15:39:44 -05005867 case ELS_CMD_RRQ:
5868 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
5869 "RCV RRQ: did:x%x/ste:x%x flg:x%x",
5870 did, vport->port_state, ndlp->nlp_flag);
5871
5872 phba->fc_stat.elsRcvRRQ++;
5873 lpfc_els_rcv_rrq(vport, elsiocb, ndlp);
5874 if (newnode)
5875 lpfc_nlp_put(ndlp);
5876 break;
dea31012005-04-17 16:05:31 -05005877 default:
James Smart858c9f62007-06-17 19:56:39 -05005878 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
5879 "RCV ELS cmd: cmd:x%x did:x%x/ste:x%x",
5880 cmd, did, vport->port_state);
5881
dea31012005-04-17 16:05:31 -05005882 /* Unsupported ELS command, reject */
James Smart858c9f62007-06-17 19:56:39 -05005883 rjt_err = LSRJT_INVALID_CMD;
dea31012005-04-17 16:05:31 -05005884
5885 /* Unknown ELS command <elsCmd> received from NPORT <did> */
James Smarte8b62012007-08-02 11:10:09 -04005886 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
5887 "0115 Unknown ELS command x%x "
5888 "received from NPORT x%x\n", cmd, did);
James Smart87af33f2007-10-27 13:37:43 -04005889 if (newnode)
James Smart98c9ea52007-10-27 13:37:33 -04005890 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05005891 break;
5892 }
5893
5894 /* check if need to LS_RJT received ELS cmd */
5895 if (rjt_err) {
James Smart92d7f7b2007-06-17 19:56:38 -05005896 memset(&stat, 0, sizeof(stat));
James Smart858c9f62007-06-17 19:56:39 -05005897 stat.un.b.lsRjtRsnCode = rjt_err;
James.Smart@Emulex.Com1f679ca2005-06-25 10:34:27 -04005898 stat.un.b.lsRjtRsnCodeExp = LSEXP_NOTHING_MORE;
James Smart858c9f62007-06-17 19:56:39 -05005899 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, elsiocb, ndlp,
5900 NULL);
dea31012005-04-17 16:05:31 -05005901 }
5902
James Smartd7c255b2008-08-24 21:50:00 -04005903 lpfc_nlp_put(elsiocb->context1);
5904 elsiocb->context1 = NULL;
James Smarted957682007-06-17 19:56:37 -05005905 return;
5906
5907dropit:
James Smart98c9ea52007-10-27 13:37:33 -04005908 if (vport && !(vport->load_flag & FC_UNLOADING))
James Smart6fb120a2009-05-22 14:52:59 -04005909 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
5910 "0111 Dropping received ELS cmd "
James Smarted957682007-06-17 19:56:37 -05005911 "Data: x%x x%x x%x\n",
James Smart6fb120a2009-05-22 14:52:59 -04005912 icmd->ulpStatus, icmd->un.ulpWord[4], icmd->ulpTimeout);
James Smarted957682007-06-17 19:56:37 -05005913 phba->fc_stat.elsRcvDrop++;
5914}
5915
James Smarte59058c2008-08-24 21:49:00 -04005916/**
James Smart3621a712009-04-06 18:47:14 -04005917 * lpfc_find_vport_by_vpid - Find a vport on a HBA through vport identifier
James Smarte59058c2008-08-24 21:49:00 -04005918 * @phba: pointer to lpfc hba data structure.
5919 * @vpi: host virtual N_Port identifier.
5920 *
5921 * This routine finds a vport on a HBA (referred by @phba) through a
5922 * @vpi. The function walks the HBA's vport list and returns the address
5923 * of the vport with the matching @vpi.
5924 *
5925 * Return code
5926 * NULL - No vport with the matching @vpi found
5927 * Otherwise - Address to the vport with the matching @vpi.
5928 **/
James Smart6669f9b2009-10-02 15:16:45 -04005929struct lpfc_vport *
James Smart92d7f7b2007-06-17 19:56:38 -05005930lpfc_find_vport_by_vpid(struct lpfc_hba *phba, uint16_t vpi)
5931{
5932 struct lpfc_vport *vport;
James Smart549e55c2007-08-02 11:09:51 -04005933 unsigned long flags;
James Smart92d7f7b2007-06-17 19:56:38 -05005934
James Smart549e55c2007-08-02 11:09:51 -04005935 spin_lock_irqsave(&phba->hbalock, flags);
James Smart92d7f7b2007-06-17 19:56:38 -05005936 list_for_each_entry(vport, &phba->port_list, listentry) {
James Smart549e55c2007-08-02 11:09:51 -04005937 if (vport->vpi == vpi) {
5938 spin_unlock_irqrestore(&phba->hbalock, flags);
James Smart92d7f7b2007-06-17 19:56:38 -05005939 return vport;
James Smart549e55c2007-08-02 11:09:51 -04005940 }
James Smart92d7f7b2007-06-17 19:56:38 -05005941 }
James Smart549e55c2007-08-02 11:09:51 -04005942 spin_unlock_irqrestore(&phba->hbalock, flags);
James Smart92d7f7b2007-06-17 19:56:38 -05005943 return NULL;
5944}
James Smarted957682007-06-17 19:56:37 -05005945
James Smarte59058c2008-08-24 21:49:00 -04005946/**
James Smart3621a712009-04-06 18:47:14 -04005947 * lpfc_els_unsol_event - Process an unsolicited event from an els sli ring
James Smarte59058c2008-08-24 21:49:00 -04005948 * @phba: pointer to lpfc hba data structure.
5949 * @pring: pointer to a SLI ring.
5950 * @elsiocb: pointer to lpfc els iocb data structure.
5951 *
5952 * This routine is used to process an unsolicited event received from a SLI
5953 * (Service Level Interface) ring. The actual processing of the data buffer
5954 * associated with the unsolicited event is done by invoking the routine
5955 * lpfc_els_unsol_buffer() after properly set up the iocb buffer from the
5956 * SLI ring on which the unsolicited event was received.
5957 **/
James Smarted957682007-06-17 19:56:37 -05005958void
5959lpfc_els_unsol_event(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
5960 struct lpfc_iocbq *elsiocb)
5961{
5962 struct lpfc_vport *vport = phba->pport;
James Smarted957682007-06-17 19:56:37 -05005963 IOCB_t *icmd = &elsiocb->iocb;
James Smarted957682007-06-17 19:56:37 -05005964 dma_addr_t paddr;
James Smart92d7f7b2007-06-17 19:56:38 -05005965 struct lpfc_dmabuf *bdeBuf1 = elsiocb->context2;
5966 struct lpfc_dmabuf *bdeBuf2 = elsiocb->context3;
James Smarted957682007-06-17 19:56:37 -05005967
James Smartd7c255b2008-08-24 21:50:00 -04005968 elsiocb->context1 = NULL;
James Smart92d7f7b2007-06-17 19:56:38 -05005969 elsiocb->context2 = NULL;
5970 elsiocb->context3 = NULL;
5971
5972 if (icmd->ulpStatus == IOSTAT_NEED_BUFFER) {
5973 lpfc_sli_hbqbuf_add_hbqs(phba, LPFC_ELS_HBQ);
5974 } else if (icmd->ulpStatus == IOSTAT_LOCAL_REJECT &&
5975 (icmd->un.ulpWord[4] & 0xff) == IOERR_RCV_BUFFER_WAITING) {
James Smarted957682007-06-17 19:56:37 -05005976 phba->fc_stat.NoRcvBuf++;
5977 /* Not enough posted buffers; Try posting more buffers */
James Smart92d7f7b2007-06-17 19:56:38 -05005978 if (!(phba->sli3_options & LPFC_SLI3_HBQ_ENABLED))
James Smart495a7142008-06-14 22:52:59 -04005979 lpfc_post_buffer(phba, pring, 0);
James Smarted957682007-06-17 19:56:37 -05005980 return;
5981 }
5982
James Smart92d7f7b2007-06-17 19:56:38 -05005983 if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
5984 (icmd->ulpCommand == CMD_IOCB_RCV_ELS64_CX ||
5985 icmd->ulpCommand == CMD_IOCB_RCV_SEQ64_CX)) {
5986 if (icmd->unsli3.rcvsli3.vpi == 0xffff)
5987 vport = phba->pport;
James Smart6fb120a2009-05-22 14:52:59 -04005988 else
5989 vport = lpfc_find_vport_by_vpid(phba,
5990 icmd->unsli3.rcvsli3.vpi - phba->vpi_base);
James Smart92d7f7b2007-06-17 19:56:38 -05005991 }
James Smart7f5f3d02008-02-08 18:50:14 -05005992 /* If there are no BDEs associated
5993 * with this IOCB, there is nothing to do.
5994 */
James Smarted957682007-06-17 19:56:37 -05005995 if (icmd->ulpBdeCount == 0)
5996 return;
5997
James Smart7f5f3d02008-02-08 18:50:14 -05005998 /* type of ELS cmd is first 32bit word
5999 * in packet
6000 */
James Smarted957682007-06-17 19:56:37 -05006001 if (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) {
James Smart92d7f7b2007-06-17 19:56:38 -05006002 elsiocb->context2 = bdeBuf1;
James Smarted957682007-06-17 19:56:37 -05006003 } else {
6004 paddr = getPaddr(icmd->un.cont64[0].addrHigh,
6005 icmd->un.cont64[0].addrLow);
James Smart92d7f7b2007-06-17 19:56:38 -05006006 elsiocb->context2 = lpfc_sli_ringpostbuf_get(phba, pring,
6007 paddr);
James Smarted957682007-06-17 19:56:37 -05006008 }
6009
James Smart92d7f7b2007-06-17 19:56:38 -05006010 lpfc_els_unsol_buffer(phba, pring, vport, elsiocb);
6011 /*
6012 * The different unsolicited event handlers would tell us
6013 * if they are done with "mp" by setting context2 to NULL.
6014 */
dea31012005-04-17 16:05:31 -05006015 if (elsiocb->context2) {
James Smart92d7f7b2007-06-17 19:56:38 -05006016 lpfc_in_buf_free(phba, (struct lpfc_dmabuf *)elsiocb->context2);
6017 elsiocb->context2 = NULL;
dea31012005-04-17 16:05:31 -05006018 }
James Smarted957682007-06-17 19:56:37 -05006019
6020 /* RCV_ELS64_CX provide for 2 BDEs - process 2nd if included */
James Smart92d7f7b2007-06-17 19:56:38 -05006021 if ((phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) &&
James Smarted957682007-06-17 19:56:37 -05006022 icmd->ulpBdeCount == 2) {
James Smart92d7f7b2007-06-17 19:56:38 -05006023 elsiocb->context2 = bdeBuf2;
6024 lpfc_els_unsol_buffer(phba, pring, vport, elsiocb);
James Smarted957682007-06-17 19:56:37 -05006025 /* free mp if we are done with it */
6026 if (elsiocb->context2) {
James Smart92d7f7b2007-06-17 19:56:38 -05006027 lpfc_in_buf_free(phba, elsiocb->context2);
6028 elsiocb->context2 = NULL;
James Smarted957682007-06-17 19:56:37 -05006029 }
dea31012005-04-17 16:05:31 -05006030 }
dea31012005-04-17 16:05:31 -05006031}
James Smart92d7f7b2007-06-17 19:56:38 -05006032
James Smarte59058c2008-08-24 21:49:00 -04006033/**
James Smart3621a712009-04-06 18:47:14 -04006034 * lpfc_do_scr_ns_plogi - Issue a plogi to the name server for scr
James Smarte59058c2008-08-24 21:49:00 -04006035 * @phba: pointer to lpfc hba data structure.
6036 * @vport: pointer to a virtual N_Port data structure.
6037 *
6038 * This routine issues a Port Login (PLOGI) to the Name Server with
6039 * State Change Request (SCR) for a @vport. This routine will create an
6040 * ndlp for the Name Server associated to the @vport if such node does
6041 * not already exist. The PLOGI to Name Server is issued by invoking the
6042 * lpfc_issue_els_plogi() routine. If Fabric-Device Management Interface
6043 * (FDMI) is configured to the @vport, a FDMI node will be created and
6044 * the PLOGI to FDMI is issued by invoking lpfc_issue_els_plogi() routine.
6045 **/
James Smart92d7f7b2007-06-17 19:56:38 -05006046void
6047lpfc_do_scr_ns_plogi(struct lpfc_hba *phba, struct lpfc_vport *vport)
6048{
6049 struct lpfc_nodelist *ndlp, *ndlp_fdmi;
6050
6051 ndlp = lpfc_findnode_did(vport, NameServer_DID);
6052 if (!ndlp) {
6053 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
6054 if (!ndlp) {
6055 if (phba->fc_topology == TOPOLOGY_LOOP) {
6056 lpfc_disc_start(vport);
6057 return;
6058 }
6059 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
James Smarte8b62012007-08-02 11:10:09 -04006060 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
6061 "0251 NameServer login: no memory\n");
James Smart92d7f7b2007-06-17 19:56:38 -05006062 return;
6063 }
6064 lpfc_nlp_init(vport, ndlp, NameServer_DID);
James Smarte47c9092008-02-08 18:49:26 -05006065 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
6066 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
6067 if (!ndlp) {
6068 if (phba->fc_topology == TOPOLOGY_LOOP) {
6069 lpfc_disc_start(vport);
6070 return;
6071 }
6072 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
6073 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
6074 "0348 NameServer login: node freed\n");
6075 return;
6076 }
James Smart92d7f7b2007-06-17 19:56:38 -05006077 }
James Smart58da1ff2008-04-07 10:15:56 -04006078 ndlp->nlp_type |= NLP_FABRIC;
James Smart92d7f7b2007-06-17 19:56:38 -05006079
6080 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
6081
6082 if (lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0)) {
6083 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
James Smarte8b62012007-08-02 11:10:09 -04006084 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
6085 "0252 Cannot issue NameServer login\n");
James Smart92d7f7b2007-06-17 19:56:38 -05006086 return;
6087 }
6088
James Smart3de2a652007-08-02 11:09:59 -04006089 if (vport->cfg_fdmi_on) {
James Smart92d7f7b2007-06-17 19:56:38 -05006090 ndlp_fdmi = mempool_alloc(phba->nlp_mem_pool,
6091 GFP_KERNEL);
6092 if (ndlp_fdmi) {
6093 lpfc_nlp_init(vport, ndlp_fdmi, FDMI_DID);
6094 ndlp_fdmi->nlp_type |= NLP_FABRIC;
James Smart58da1ff2008-04-07 10:15:56 -04006095 lpfc_nlp_set_state(vport, ndlp_fdmi,
6096 NLP_STE_PLOGI_ISSUE);
James Smart92d7f7b2007-06-17 19:56:38 -05006097 lpfc_issue_els_plogi(vport, ndlp_fdmi->nlp_DID,
6098 0);
6099 }
6100 }
6101 return;
6102}
6103
James Smarte59058c2008-08-24 21:49:00 -04006104/**
James Smart3621a712009-04-06 18:47:14 -04006105 * lpfc_cmpl_reg_new_vport - Completion callback function to register new vport
James Smarte59058c2008-08-24 21:49:00 -04006106 * @phba: pointer to lpfc hba data structure.
6107 * @pmb: pointer to the driver internal queue element for mailbox command.
6108 *
6109 * This routine is the completion callback function to register new vport
6110 * mailbox command. If the new vport mailbox command completes successfully,
6111 * the fabric registration login shall be performed on physical port (the
6112 * new vport created is actually a physical port, with VPI 0) or the port
6113 * login to Name Server for State Change Request (SCR) will be performed
6114 * on virtual port (real virtual port, with VPI greater than 0).
6115 **/
James Smart92d7f7b2007-06-17 19:56:38 -05006116static void
6117lpfc_cmpl_reg_new_vport(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
6118{
6119 struct lpfc_vport *vport = pmb->vport;
6120 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
6121 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) pmb->context2;
James Smart04c68492009-05-22 14:52:52 -04006122 MAILBOX_t *mb = &pmb->u.mb;
James Smart695a8142010-01-26 23:08:03 -05006123 int rc;
James Smart92d7f7b2007-06-17 19:56:38 -05006124
James Smart09372822008-01-11 01:52:54 -05006125 spin_lock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05006126 vport->fc_flag &= ~FC_VPORT_NEEDS_REG_VPI;
James Smart09372822008-01-11 01:52:54 -05006127 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05006128
6129 if (mb->mbxStatus) {
James Smarte8b62012007-08-02 11:10:09 -04006130 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
James Smart38b92ef2010-08-04 16:11:39 -04006131 "0915 Register VPI failed : Status: x%x"
6132 " upd bit: x%x \n", mb->mbxStatus,
6133 mb->un.varRegVpi.upd);
6134 if (phba->sli_rev == LPFC_SLI_REV4 &&
6135 mb->un.varRegVpi.upd)
6136 goto mbox_err_exit ;
James Smart92d7f7b2007-06-17 19:56:38 -05006137
6138 switch (mb->mbxStatus) {
6139 case 0x11: /* unsupported feature */
6140 case 0x9603: /* max_vpi exceeded */
James Smart7f5f3d02008-02-08 18:50:14 -05006141 case 0x9602: /* Link event since CLEAR_LA */
James Smart92d7f7b2007-06-17 19:56:38 -05006142 /* giving up on vport registration */
6143 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
6144 spin_lock_irq(shost->host_lock);
6145 vport->fc_flag &= ~(FC_FABRIC | FC_PUBLIC_LOOP);
6146 spin_unlock_irq(shost->host_lock);
6147 lpfc_can_disctmo(vport);
6148 break;
James Smart695a8142010-01-26 23:08:03 -05006149 /* If reg_vpi fail with invalid VPI status, re-init VPI */
6150 case 0x20:
6151 spin_lock_irq(shost->host_lock);
6152 vport->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
6153 spin_unlock_irq(shost->host_lock);
6154 lpfc_init_vpi(phba, pmb, vport->vpi);
6155 pmb->vport = vport;
6156 pmb->mbox_cmpl = lpfc_init_vpi_cmpl;
6157 rc = lpfc_sli_issue_mbox(phba, pmb,
6158 MBX_NOWAIT);
6159 if (rc == MBX_NOT_FINISHED) {
6160 lpfc_printf_vlog(vport,
6161 KERN_ERR, LOG_MBOX,
6162 "2732 Failed to issue INIT_VPI"
6163 " mailbox command\n");
6164 } else {
6165 lpfc_nlp_put(ndlp);
6166 return;
6167 }
6168
James Smart92d7f7b2007-06-17 19:56:38 -05006169 default:
6170 /* Try to recover from this error */
6171 lpfc_mbx_unreg_vpi(vport);
James Smart09372822008-01-11 01:52:54 -05006172 spin_lock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05006173 vport->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
James Smart09372822008-01-11 01:52:54 -05006174 spin_unlock_irq(shost->host_lock);
James Smart4b40c592010-03-15 11:25:44 -04006175 if (vport->port_type == LPFC_PHYSICAL_PORT
6176 && !(vport->fc_flag & FC_LOGO_RCVD_DID_CHNG))
James Smart7f5f3d02008-02-08 18:50:14 -05006177 lpfc_initial_flogi(vport);
6178 else
6179 lpfc_initial_fdisc(vport);
James Smart92d7f7b2007-06-17 19:56:38 -05006180 break;
6181 }
James Smart92d7f7b2007-06-17 19:56:38 -05006182 } else {
James Smart695a8142010-01-26 23:08:03 -05006183 spin_lock_irq(shost->host_lock);
James Smart19878072009-12-21 17:02:00 -05006184 vport->vpi_state |= LPFC_VPI_REGISTERED;
James Smart695a8142010-01-26 23:08:03 -05006185 spin_unlock_irq(shost->host_lock);
6186 if (vport == phba->pport) {
James Smart6fb120a2009-05-22 14:52:59 -04006187 if (phba->sli_rev < LPFC_SLI_REV4)
6188 lpfc_issue_fabric_reglogin(vport);
James Smart695a8142010-01-26 23:08:03 -05006189 else {
James Smartfc2b9892010-02-26 14:15:29 -05006190 /*
6191 * If the physical port is instantiated using
6192 * FDISC, do not start vport discovery.
6193 */
6194 if (vport->port_state != LPFC_FDISC)
6195 lpfc_start_fdiscs(phba);
James Smart695a8142010-01-26 23:08:03 -05006196 lpfc_do_scr_ns_plogi(phba, vport);
6197 }
6198 } else
James Smart92d7f7b2007-06-17 19:56:38 -05006199 lpfc_do_scr_ns_plogi(phba, vport);
6200 }
James Smart38b92ef2010-08-04 16:11:39 -04006201mbox_err_exit:
James Smartfa4066b2008-01-11 01:53:27 -05006202 /* Now, we decrement the ndlp reference count held for this
6203 * callback function
6204 */
6205 lpfc_nlp_put(ndlp);
6206
James Smart92d7f7b2007-06-17 19:56:38 -05006207 mempool_free(pmb, phba->mbox_mem_pool);
6208 return;
6209}
6210
James Smarte59058c2008-08-24 21:49:00 -04006211/**
James Smart3621a712009-04-06 18:47:14 -04006212 * lpfc_register_new_vport - Register a new vport with a HBA
James Smarte59058c2008-08-24 21:49:00 -04006213 * @phba: pointer to lpfc hba data structure.
6214 * @vport: pointer to a host virtual N_Port data structure.
6215 * @ndlp: pointer to a node-list data structure.
6216 *
6217 * This routine registers the @vport as a new virtual port with a HBA.
6218 * It is done through a registering vpi mailbox command.
6219 **/
James Smart695a8142010-01-26 23:08:03 -05006220void
James Smart92d7f7b2007-06-17 19:56:38 -05006221lpfc_register_new_vport(struct lpfc_hba *phba, struct lpfc_vport *vport,
6222 struct lpfc_nodelist *ndlp)
6223{
James Smart09372822008-01-11 01:52:54 -05006224 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart92d7f7b2007-06-17 19:56:38 -05006225 LPFC_MBOXQ_t *mbox;
6226
6227 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
6228 if (mbox) {
James Smart6fb120a2009-05-22 14:52:59 -04006229 lpfc_reg_vpi(vport, mbox);
James Smart92d7f7b2007-06-17 19:56:38 -05006230 mbox->vport = vport;
6231 mbox->context2 = lpfc_nlp_get(ndlp);
6232 mbox->mbox_cmpl = lpfc_cmpl_reg_new_vport;
James Smart0b727fe2007-10-27 13:37:25 -04006233 if (lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT)
James Smart92d7f7b2007-06-17 19:56:38 -05006234 == MBX_NOT_FINISHED) {
James Smartfa4066b2008-01-11 01:53:27 -05006235 /* mailbox command not success, decrement ndlp
6236 * reference count for this command
6237 */
6238 lpfc_nlp_put(ndlp);
James Smart92d7f7b2007-06-17 19:56:38 -05006239 mempool_free(mbox, phba->mbox_mem_pool);
James Smart92d7f7b2007-06-17 19:56:38 -05006240
James Smarte8b62012007-08-02 11:10:09 -04006241 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
6242 "0253 Register VPI: Can't send mbox\n");
James Smartfa4066b2008-01-11 01:53:27 -05006243 goto mbox_err_exit;
James Smart92d7f7b2007-06-17 19:56:38 -05006244 }
6245 } else {
James Smarte8b62012007-08-02 11:10:09 -04006246 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
6247 "0254 Register VPI: no memory\n");
James Smartfa4066b2008-01-11 01:53:27 -05006248 goto mbox_err_exit;
James Smart92d7f7b2007-06-17 19:56:38 -05006249 }
James Smartfa4066b2008-01-11 01:53:27 -05006250 return;
6251
6252mbox_err_exit:
6253 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
6254 spin_lock_irq(shost->host_lock);
6255 vport->fc_flag &= ~FC_VPORT_NEEDS_REG_VPI;
6256 spin_unlock_irq(shost->host_lock);
6257 return;
James Smart92d7f7b2007-06-17 19:56:38 -05006258}
6259
James Smarte59058c2008-08-24 21:49:00 -04006260/**
James Smart0c9ab6f2010-02-26 14:15:57 -05006261 * lpfc_cancel_all_vport_retry_delay_timer - Cancel all vport retry delay timer
James Smart695a8142010-01-26 23:08:03 -05006262 * @phba: pointer to lpfc hba data structure.
6263 *
James Smart0c9ab6f2010-02-26 14:15:57 -05006264 * This routine cancels the retry delay timers to all the vports.
James Smart695a8142010-01-26 23:08:03 -05006265 **/
6266void
James Smart0c9ab6f2010-02-26 14:15:57 -05006267lpfc_cancel_all_vport_retry_delay_timer(struct lpfc_hba *phba)
James Smart695a8142010-01-26 23:08:03 -05006268{
6269 struct lpfc_vport **vports;
6270 struct lpfc_nodelist *ndlp;
James Smart695a8142010-01-26 23:08:03 -05006271 uint32_t link_state;
James Smart0c9ab6f2010-02-26 14:15:57 -05006272 int i;
James Smart695a8142010-01-26 23:08:03 -05006273
6274 /* Treat this failure as linkdown for all vports */
6275 link_state = phba->link_state;
6276 lpfc_linkdown(phba);
6277 phba->link_state = link_state;
6278
6279 vports = lpfc_create_vport_work_array(phba);
6280
6281 if (vports) {
6282 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
6283 ndlp = lpfc_findnode_did(vports[i], Fabric_DID);
6284 if (ndlp)
6285 lpfc_cancel_retry_delay_tmo(vports[i], ndlp);
6286 lpfc_els_flush_cmd(vports[i]);
6287 }
6288 lpfc_destroy_vport_work_array(phba, vports);
6289 }
James Smart0c9ab6f2010-02-26 14:15:57 -05006290}
6291
6292/**
6293 * lpfc_retry_pport_discovery - Start timer to retry FLOGI.
6294 * @phba: pointer to lpfc hba data structure.
6295 *
6296 * This routine abort all pending discovery commands and
6297 * start a timer to retry FLOGI for the physical port
6298 * discovery.
6299 **/
6300void
6301lpfc_retry_pport_discovery(struct lpfc_hba *phba)
6302{
6303 struct lpfc_nodelist *ndlp;
6304 struct Scsi_Host *shost;
6305
6306 /* Cancel the all vports retry delay retry timers */
6307 lpfc_cancel_all_vport_retry_delay_timer(phba);
James Smart695a8142010-01-26 23:08:03 -05006308
6309 /* If fabric require FLOGI, then re-instantiate physical login */
6310 ndlp = lpfc_findnode_did(phba->pport, Fabric_DID);
6311 if (!ndlp)
6312 return;
6313
James Smart695a8142010-01-26 23:08:03 -05006314 shost = lpfc_shost_from_vport(phba->pport);
6315 mod_timer(&ndlp->nlp_delayfunc, jiffies + HZ);
6316 spin_lock_irq(shost->host_lock);
6317 ndlp->nlp_flag |= NLP_DELAY_TMO;
6318 spin_unlock_irq(shost->host_lock);
6319 ndlp->nlp_last_elscmd = ELS_CMD_FLOGI;
6320 phba->pport->port_state = LPFC_FLOGI;
6321 return;
6322}
6323
6324/**
6325 * lpfc_fabric_login_reqd - Check if FLOGI required.
6326 * @phba: pointer to lpfc hba data structure.
6327 * @cmdiocb: pointer to FDISC command iocb.
6328 * @rspiocb: pointer to FDISC response iocb.
6329 *
6330 * This routine checks if a FLOGI is reguired for FDISC
6331 * to succeed.
6332 **/
6333static int
6334lpfc_fabric_login_reqd(struct lpfc_hba *phba,
6335 struct lpfc_iocbq *cmdiocb,
6336 struct lpfc_iocbq *rspiocb)
6337{
6338
6339 if ((rspiocb->iocb.ulpStatus != IOSTAT_FABRIC_RJT) ||
6340 (rspiocb->iocb.un.ulpWord[4] != RJT_LOGIN_REQUIRED))
6341 return 0;
6342 else
6343 return 1;
6344}
6345
6346/**
James Smart3621a712009-04-06 18:47:14 -04006347 * lpfc_cmpl_els_fdisc - Completion function for fdisc iocb command
James Smarte59058c2008-08-24 21:49:00 -04006348 * @phba: pointer to lpfc hba data structure.
6349 * @cmdiocb: pointer to lpfc command iocb data structure.
6350 * @rspiocb: pointer to lpfc response iocb data structure.
6351 *
6352 * This routine is the completion callback function to a Fabric Discover
6353 * (FDISC) ELS command. Since all the FDISC ELS commands are issued
6354 * single threaded, each FDISC completion callback function will reset
6355 * the discovery timer for all vports such that the timers will not get
6356 * unnecessary timeout. The function checks the FDISC IOCB status. If error
6357 * detected, the vport will be set to FC_VPORT_FAILED state. Otherwise,the
6358 * vport will set to FC_VPORT_ACTIVE state. It then checks whether the DID
6359 * assigned to the vport has been changed with the completion of the FDISC
6360 * command. If so, both RPI (Remote Port Index) and VPI (Virtual Port Index)
6361 * are unregistered from the HBA, and then the lpfc_register_new_vport()
6362 * routine is invoked to register new vport with the HBA. Otherwise, the
6363 * lpfc_do_scr_ns_plogi() routine is invoked to issue a PLOGI to the Name
6364 * Server for State Change Request (SCR).
6365 **/
James Smart92d7f7b2007-06-17 19:56:38 -05006366static void
6367lpfc_cmpl_els_fdisc(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
6368 struct lpfc_iocbq *rspiocb)
6369{
6370 struct lpfc_vport *vport = cmdiocb->vport;
6371 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
6372 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
6373 struct lpfc_nodelist *np;
6374 struct lpfc_nodelist *next_np;
6375 IOCB_t *irsp = &rspiocb->iocb;
6376 struct lpfc_iocbq *piocb;
6377
James Smarte8b62012007-08-02 11:10:09 -04006378 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
6379 "0123 FDISC completes. x%x/x%x prevDID: x%x\n",
6380 irsp->ulpStatus, irsp->un.ulpWord[4],
6381 vport->fc_prevDID);
James Smart92d7f7b2007-06-17 19:56:38 -05006382 /* Since all FDISCs are being single threaded, we
6383 * must reset the discovery timer for ALL vports
6384 * waiting to send FDISC when one completes.
6385 */
6386 list_for_each_entry(piocb, &phba->fabric_iocb_list, list) {
6387 lpfc_set_disctmo(piocb->vport);
6388 }
6389
James Smart858c9f62007-06-17 19:56:39 -05006390 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
6391 "FDISC cmpl: status:x%x/x%x prevdid:x%x",
6392 irsp->ulpStatus, irsp->un.ulpWord[4], vport->fc_prevDID);
6393
James Smart92d7f7b2007-06-17 19:56:38 -05006394 if (irsp->ulpStatus) {
James Smart695a8142010-01-26 23:08:03 -05006395
6396 if (lpfc_fabric_login_reqd(phba, cmdiocb, rspiocb)) {
6397 lpfc_retry_pport_discovery(phba);
6398 goto out;
6399 }
6400
James Smart92d7f7b2007-06-17 19:56:38 -05006401 /* Check for retry */
6402 if (lpfc_els_retry(phba, cmdiocb, rspiocb))
6403 goto out;
James Smart92d7f7b2007-06-17 19:56:38 -05006404 /* FDISC failed */
James Smarte8b62012007-08-02 11:10:09 -04006405 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
James Smartd7c255b2008-08-24 21:50:00 -04006406 "0126 FDISC failed. (%d/%d)\n",
James Smarte8b62012007-08-02 11:10:09 -04006407 irsp->ulpStatus, irsp->un.ulpWord[4]);
James Smartd7c255b2008-08-24 21:50:00 -04006408 goto fdisc_failed;
6409 }
James Smartd7c255b2008-08-24 21:50:00 -04006410 spin_lock_irq(shost->host_lock);
James Smart695a8142010-01-26 23:08:03 -05006411 vport->fc_flag &= ~FC_VPORT_CVL_RCVD;
James Smart4b40c592010-03-15 11:25:44 -04006412 vport->fc_flag &= ~FC_VPORT_LOGO_RCVD;
James Smartd7c255b2008-08-24 21:50:00 -04006413 vport->fc_flag |= FC_FABRIC;
6414 if (vport->phba->fc_topology == TOPOLOGY_LOOP)
6415 vport->fc_flag |= FC_PUBLIC_LOOP;
6416 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05006417
James Smartd7c255b2008-08-24 21:50:00 -04006418 vport->fc_myDID = irsp->un.ulpWord[4] & Mask_DID;
6419 lpfc_vport_set_state(vport, FC_VPORT_ACTIVE);
6420 if ((vport->fc_prevDID != vport->fc_myDID) &&
6421 !(vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)) {
6422 /* If our NportID changed, we need to ensure all
6423 * remaining NPORTs get unreg_login'ed so we can
6424 * issue unreg_vpi.
6425 */
6426 list_for_each_entry_safe(np, next_np,
6427 &vport->fc_nodes, nlp_listp) {
6428 if (!NLP_CHK_NODE_ACT(ndlp) ||
6429 (np->nlp_state != NLP_STE_NPR_NODE) ||
6430 !(np->nlp_flag & NLP_NPR_ADISC))
6431 continue;
James Smart09372822008-01-11 01:52:54 -05006432 spin_lock_irq(shost->host_lock);
James Smartd7c255b2008-08-24 21:50:00 -04006433 np->nlp_flag &= ~NLP_NPR_ADISC;
James Smart09372822008-01-11 01:52:54 -05006434 spin_unlock_irq(shost->host_lock);
James Smartd7c255b2008-08-24 21:50:00 -04006435 lpfc_unreg_rpi(vport, np);
James Smart92d7f7b2007-06-17 19:56:38 -05006436 }
James Smart78730cf2010-04-06 15:06:30 -04006437 lpfc_cleanup_pending_mbox(vport);
James Smartd7c255b2008-08-24 21:50:00 -04006438 lpfc_mbx_unreg_vpi(vport);
6439 spin_lock_irq(shost->host_lock);
6440 vport->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
James Smart0f65ff62010-02-26 14:14:23 -05006441 if (phba->sli_rev == LPFC_SLI_REV4)
6442 vport->fc_flag |= FC_VPORT_NEEDS_INIT_VPI;
James Smart4b40c592010-03-15 11:25:44 -04006443 else
6444 vport->fc_flag |= FC_LOGO_RCVD_DID_CHNG;
James Smartd7c255b2008-08-24 21:50:00 -04006445 spin_unlock_irq(shost->host_lock);
James Smart38b92ef2010-08-04 16:11:39 -04006446 } else if ((phba->sli_rev == LPFC_SLI_REV4) &&
6447 !(vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)) {
6448 /*
6449 * Driver needs to re-reg VPI in order for f/w
6450 * to update the MAC address.
6451 */
6452 lpfc_register_new_vport(phba, vport, ndlp);
6453 return ;
James Smart92d7f7b2007-06-17 19:56:38 -05006454 }
6455
James Smartecfd03c2010-02-12 14:41:27 -05006456 if (vport->fc_flag & FC_VPORT_NEEDS_INIT_VPI)
6457 lpfc_issue_init_vpi(vport);
6458 else if (vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)
James Smartd7c255b2008-08-24 21:50:00 -04006459 lpfc_register_new_vport(phba, vport, ndlp);
6460 else
6461 lpfc_do_scr_ns_plogi(phba, vport);
6462 goto out;
6463fdisc_failed:
6464 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
6465 /* Cancel discovery timer */
6466 lpfc_can_disctmo(vport);
6467 lpfc_nlp_put(ndlp);
James Smart92d7f7b2007-06-17 19:56:38 -05006468out:
6469 lpfc_els_free_iocb(phba, cmdiocb);
6470}
6471
James Smarte59058c2008-08-24 21:49:00 -04006472/**
James Smart3621a712009-04-06 18:47:14 -04006473 * lpfc_issue_els_fdisc - Issue a fdisc iocb command
James Smarte59058c2008-08-24 21:49:00 -04006474 * @vport: pointer to a virtual N_Port data structure.
6475 * @ndlp: pointer to a node-list data structure.
6476 * @retry: number of retries to the command IOCB.
6477 *
6478 * This routine prepares and issues a Fabric Discover (FDISC) IOCB to
6479 * a remote node (@ndlp) off a @vport. It uses the lpfc_issue_fabric_iocb()
6480 * routine to issue the IOCB, which makes sure only one outstanding fabric
6481 * IOCB will be sent off HBA at any given time.
6482 *
6483 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
6484 * will be incremented by 1 for holding the ndlp and the reference to ndlp
6485 * will be stored into the context1 field of the IOCB for the completion
6486 * callback function to the FDISC ELS command.
6487 *
6488 * Return code
6489 * 0 - Successfully issued fdisc iocb command
6490 * 1 - Failed to issue fdisc iocb command
6491 **/
Adrian Bunka6ababd2007-11-05 18:07:33 +01006492static int
James Smart92d7f7b2007-06-17 19:56:38 -05006493lpfc_issue_els_fdisc(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
6494 uint8_t retry)
6495{
6496 struct lpfc_hba *phba = vport->phba;
6497 IOCB_t *icmd;
6498 struct lpfc_iocbq *elsiocb;
6499 struct serv_parm *sp;
6500 uint8_t *pcmd;
6501 uint16_t cmdsize;
6502 int did = ndlp->nlp_DID;
6503 int rc;
James Smart92d7f7b2007-06-17 19:56:38 -05006504
James Smart5ffc2662009-11-18 15:39:44 -05006505 vport->port_state = LPFC_FDISC;
James Smart92d7f7b2007-06-17 19:56:38 -05006506 cmdsize = (sizeof(uint32_t) + sizeof(struct serv_parm));
6507 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp, did,
6508 ELS_CMD_FDISC);
6509 if (!elsiocb) {
James Smart92d7f7b2007-06-17 19:56:38 -05006510 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
James Smarte8b62012007-08-02 11:10:09 -04006511 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
6512 "0255 Issue FDISC: no IOCB\n");
James Smart92d7f7b2007-06-17 19:56:38 -05006513 return 1;
6514 }
6515
6516 icmd = &elsiocb->iocb;
6517 icmd->un.elsreq64.myID = 0;
6518 icmd->un.elsreq64.fl = 1;
6519
James Smartf1126682009-06-10 17:22:44 -04006520 if (phba->sli_rev == LPFC_SLI_REV4) {
6521 /* FDISC needs to be 1 for WQE VPI */
6522 elsiocb->iocb.ulpCt_h = (SLI4_CT_VPI >> 1) & 1;
6523 elsiocb->iocb.ulpCt_l = SLI4_CT_VPI & 1 ;
6524 /* Set the ulpContext to the vpi */
6525 elsiocb->iocb.ulpContext = vport->vpi + phba->vpi_base;
6526 } else {
6527 /* For FDISC, Let FDISC rsp set the NPortID for this VPI */
6528 icmd->ulpCt_h = 1;
6529 icmd->ulpCt_l = 0;
6530 }
James Smart92d7f7b2007-06-17 19:56:38 -05006531
6532 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
6533 *((uint32_t *) (pcmd)) = ELS_CMD_FDISC;
6534 pcmd += sizeof(uint32_t); /* CSP Word 1 */
6535 memcpy(pcmd, &vport->phba->pport->fc_sparam, sizeof(struct serv_parm));
6536 sp = (struct serv_parm *) pcmd;
6537 /* Setup CSPs accordingly for Fabric */
6538 sp->cmn.e_d_tov = 0;
6539 sp->cmn.w2.r_a_tov = 0;
6540 sp->cls1.classValid = 0;
6541 sp->cls2.seqDelivery = 1;
6542 sp->cls3.seqDelivery = 1;
6543
6544 pcmd += sizeof(uint32_t); /* CSP Word 2 */
6545 pcmd += sizeof(uint32_t); /* CSP Word 3 */
6546 pcmd += sizeof(uint32_t); /* CSP Word 4 */
6547 pcmd += sizeof(uint32_t); /* Port Name */
6548 memcpy(pcmd, &vport->fc_portname, 8);
6549 pcmd += sizeof(uint32_t); /* Node Name */
6550 pcmd += sizeof(uint32_t); /* Node Name */
6551 memcpy(pcmd, &vport->fc_nodename, 8);
6552
6553 lpfc_set_disctmo(vport);
6554
6555 phba->fc_stat.elsXmitFDISC++;
6556 elsiocb->iocb_cmpl = lpfc_cmpl_els_fdisc;
6557
James Smart858c9f62007-06-17 19:56:39 -05006558 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
6559 "Issue FDISC: did:x%x",
6560 did, 0, 0);
6561
James Smart92d7f7b2007-06-17 19:56:38 -05006562 rc = lpfc_issue_fabric_iocb(phba, elsiocb);
6563 if (rc == IOCB_ERROR) {
6564 lpfc_els_free_iocb(phba, elsiocb);
James Smart92d7f7b2007-06-17 19:56:38 -05006565 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
James Smarte8b62012007-08-02 11:10:09 -04006566 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
6567 "0256 Issue FDISC: Cannot send IOCB\n");
James Smart92d7f7b2007-06-17 19:56:38 -05006568 return 1;
6569 }
6570 lpfc_vport_set_state(vport, FC_VPORT_INITIALIZING);
James Smart92d7f7b2007-06-17 19:56:38 -05006571 return 0;
6572}
6573
James Smarte59058c2008-08-24 21:49:00 -04006574/**
James Smart3621a712009-04-06 18:47:14 -04006575 * lpfc_cmpl_els_npiv_logo - Completion function with vport logo
James Smarte59058c2008-08-24 21:49:00 -04006576 * @phba: pointer to lpfc hba data structure.
6577 * @cmdiocb: pointer to lpfc command iocb data structure.
6578 * @rspiocb: pointer to lpfc response iocb data structure.
6579 *
6580 * This routine is the completion callback function to the issuing of a LOGO
6581 * ELS command off a vport. It frees the command IOCB and then decrement the
6582 * reference count held on ndlp for this completion function, indicating that
6583 * the reference to the ndlp is no long needed. Note that the
6584 * lpfc_els_free_iocb() routine decrements the ndlp reference held for this
6585 * callback function and an additional explicit ndlp reference decrementation
6586 * will trigger the actual release of the ndlp.
6587 **/
James Smart92d7f7b2007-06-17 19:56:38 -05006588static void
6589lpfc_cmpl_els_npiv_logo(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
6590 struct lpfc_iocbq *rspiocb)
6591{
6592 struct lpfc_vport *vport = cmdiocb->vport;
James Smart858c9f62007-06-17 19:56:39 -05006593 IOCB_t *irsp;
James Smarte47c9092008-02-08 18:49:26 -05006594 struct lpfc_nodelist *ndlp;
6595 ndlp = (struct lpfc_nodelist *)cmdiocb->context1;
James Smart858c9f62007-06-17 19:56:39 -05006596
6597 irsp = &rspiocb->iocb;
6598 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
6599 "LOGO npiv cmpl: status:x%x/x%x did:x%x",
6600 irsp->ulpStatus, irsp->un.ulpWord[4], irsp->un.rcvels.remoteID);
James Smart92d7f7b2007-06-17 19:56:38 -05006601
6602 lpfc_els_free_iocb(phba, cmdiocb);
6603 vport->unreg_vpi_cmpl = VPORT_ERROR;
James Smarte47c9092008-02-08 18:49:26 -05006604
6605 /* Trigger the release of the ndlp after logo */
6606 lpfc_nlp_put(ndlp);
James Smart92d7f7b2007-06-17 19:56:38 -05006607}
6608
James Smarte59058c2008-08-24 21:49:00 -04006609/**
James Smart3621a712009-04-06 18:47:14 -04006610 * lpfc_issue_els_npiv_logo - Issue a logo off a vport
James Smarte59058c2008-08-24 21:49:00 -04006611 * @vport: pointer to a virtual N_Port data structure.
6612 * @ndlp: pointer to a node-list data structure.
6613 *
6614 * This routine issues a LOGO ELS command to an @ndlp off a @vport.
6615 *
6616 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
6617 * will be incremented by 1 for holding the ndlp and the reference to ndlp
6618 * will be stored into the context1 field of the IOCB for the completion
6619 * callback function to the LOGO ELS command.
6620 *
6621 * Return codes
6622 * 0 - Successfully issued logo off the @vport
6623 * 1 - Failed to issue logo off the @vport
6624 **/
James Smart92d7f7b2007-06-17 19:56:38 -05006625int
6626lpfc_issue_els_npiv_logo(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
6627{
6628 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
6629 struct lpfc_hba *phba = vport->phba;
James Smart92d7f7b2007-06-17 19:56:38 -05006630 IOCB_t *icmd;
6631 struct lpfc_iocbq *elsiocb;
6632 uint8_t *pcmd;
6633 uint16_t cmdsize;
6634
6635 cmdsize = 2 * sizeof(uint32_t) + sizeof(struct lpfc_name);
6636 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, 0, ndlp, ndlp->nlp_DID,
6637 ELS_CMD_LOGO);
6638 if (!elsiocb)
6639 return 1;
6640
6641 icmd = &elsiocb->iocb;
6642 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
6643 *((uint32_t *) (pcmd)) = ELS_CMD_LOGO;
6644 pcmd += sizeof(uint32_t);
6645
6646 /* Fill in LOGO payload */
6647 *((uint32_t *) (pcmd)) = be32_to_cpu(vport->fc_myDID);
6648 pcmd += sizeof(uint32_t);
6649 memcpy(pcmd, &vport->fc_portname, sizeof(struct lpfc_name));
6650
James Smart858c9f62007-06-17 19:56:39 -05006651 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
6652 "Issue LOGO npiv did:x%x flg:x%x",
6653 ndlp->nlp_DID, ndlp->nlp_flag, 0);
6654
James Smart92d7f7b2007-06-17 19:56:38 -05006655 elsiocb->iocb_cmpl = lpfc_cmpl_els_npiv_logo;
6656 spin_lock_irq(shost->host_lock);
6657 ndlp->nlp_flag |= NLP_LOGO_SND;
6658 spin_unlock_irq(shost->host_lock);
James Smart3772a992009-05-22 14:50:54 -04006659 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) ==
6660 IOCB_ERROR) {
James Smart92d7f7b2007-06-17 19:56:38 -05006661 spin_lock_irq(shost->host_lock);
6662 ndlp->nlp_flag &= ~NLP_LOGO_SND;
6663 spin_unlock_irq(shost->host_lock);
6664 lpfc_els_free_iocb(phba, elsiocb);
6665 return 1;
6666 }
6667 return 0;
6668}
6669
James Smarte59058c2008-08-24 21:49:00 -04006670/**
James Smart3621a712009-04-06 18:47:14 -04006671 * lpfc_fabric_block_timeout - Handler function to the fabric block timer
James Smarte59058c2008-08-24 21:49:00 -04006672 * @ptr: holder for the timer function associated data.
6673 *
6674 * This routine is invoked by the fabric iocb block timer after
6675 * timeout. It posts the fabric iocb block timeout event by setting the
6676 * WORKER_FABRIC_BLOCK_TMO bit to work port event bitmap and then invokes
6677 * lpfc_worker_wake_up() routine to wake up the worker thread. It is for
6678 * the worker thread to invoke the lpfc_unblock_fabric_iocbs() on the
6679 * posted event WORKER_FABRIC_BLOCK_TMO.
6680 **/
James Smart92d7f7b2007-06-17 19:56:38 -05006681void
6682lpfc_fabric_block_timeout(unsigned long ptr)
6683{
6684 struct lpfc_hba *phba = (struct lpfc_hba *) ptr;
6685 unsigned long iflags;
6686 uint32_t tmo_posted;
James Smart5e9d9b82008-06-14 22:52:53 -04006687
James Smart92d7f7b2007-06-17 19:56:38 -05006688 spin_lock_irqsave(&phba->pport->work_port_lock, iflags);
6689 tmo_posted = phba->pport->work_port_events & WORKER_FABRIC_BLOCK_TMO;
6690 if (!tmo_posted)
6691 phba->pport->work_port_events |= WORKER_FABRIC_BLOCK_TMO;
6692 spin_unlock_irqrestore(&phba->pport->work_port_lock, iflags);
6693
James Smart5e9d9b82008-06-14 22:52:53 -04006694 if (!tmo_posted)
6695 lpfc_worker_wake_up(phba);
6696 return;
James Smart92d7f7b2007-06-17 19:56:38 -05006697}
6698
James Smarte59058c2008-08-24 21:49:00 -04006699/**
James Smart3621a712009-04-06 18:47:14 -04006700 * lpfc_resume_fabric_iocbs - Issue a fabric iocb from driver internal list
James Smarte59058c2008-08-24 21:49:00 -04006701 * @phba: pointer to lpfc hba data structure.
6702 *
6703 * This routine issues one fabric iocb from the driver internal list to
6704 * the HBA. It first checks whether it's ready to issue one fabric iocb to
6705 * the HBA (whether there is no outstanding fabric iocb). If so, it shall
6706 * remove one pending fabric iocb from the driver internal list and invokes
6707 * lpfc_sli_issue_iocb() routine to send the fabric iocb to the HBA.
6708 **/
James Smart92d7f7b2007-06-17 19:56:38 -05006709static void
6710lpfc_resume_fabric_iocbs(struct lpfc_hba *phba)
6711{
6712 struct lpfc_iocbq *iocb;
6713 unsigned long iflags;
6714 int ret;
James Smart92d7f7b2007-06-17 19:56:38 -05006715 IOCB_t *cmd;
6716
6717repeat:
6718 iocb = NULL;
6719 spin_lock_irqsave(&phba->hbalock, iflags);
James Smart7f5f3d02008-02-08 18:50:14 -05006720 /* Post any pending iocb to the SLI layer */
James Smart92d7f7b2007-06-17 19:56:38 -05006721 if (atomic_read(&phba->fabric_iocb_count) == 0) {
6722 list_remove_head(&phba->fabric_iocb_list, iocb, typeof(*iocb),
6723 list);
6724 if (iocb)
James Smart7f5f3d02008-02-08 18:50:14 -05006725 /* Increment fabric iocb count to hold the position */
James Smart92d7f7b2007-06-17 19:56:38 -05006726 atomic_inc(&phba->fabric_iocb_count);
6727 }
6728 spin_unlock_irqrestore(&phba->hbalock, iflags);
6729 if (iocb) {
6730 iocb->fabric_iocb_cmpl = iocb->iocb_cmpl;
6731 iocb->iocb_cmpl = lpfc_cmpl_fabric_iocb;
6732 iocb->iocb_flag |= LPFC_IO_FABRIC;
6733
James Smart858c9f62007-06-17 19:56:39 -05006734 lpfc_debugfs_disc_trc(iocb->vport, LPFC_DISC_TRC_ELS_CMD,
6735 "Fabric sched1: ste:x%x",
6736 iocb->vport->port_state, 0, 0);
6737
James Smart3772a992009-05-22 14:50:54 -04006738 ret = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, iocb, 0);
James Smart92d7f7b2007-06-17 19:56:38 -05006739
6740 if (ret == IOCB_ERROR) {
6741 iocb->iocb_cmpl = iocb->fabric_iocb_cmpl;
6742 iocb->fabric_iocb_cmpl = NULL;
6743 iocb->iocb_flag &= ~LPFC_IO_FABRIC;
6744 cmd = &iocb->iocb;
6745 cmd->ulpStatus = IOSTAT_LOCAL_REJECT;
6746 cmd->un.ulpWord[4] = IOERR_SLI_ABORTED;
6747 iocb->iocb_cmpl(phba, iocb, iocb);
6748
6749 atomic_dec(&phba->fabric_iocb_count);
6750 goto repeat;
6751 }
6752 }
6753
6754 return;
6755}
6756
James Smarte59058c2008-08-24 21:49:00 -04006757/**
James Smart3621a712009-04-06 18:47:14 -04006758 * lpfc_unblock_fabric_iocbs - Unblock issuing fabric iocb command
James Smarte59058c2008-08-24 21:49:00 -04006759 * @phba: pointer to lpfc hba data structure.
6760 *
6761 * This routine unblocks the issuing fabric iocb command. The function
6762 * will clear the fabric iocb block bit and then invoke the routine
6763 * lpfc_resume_fabric_iocbs() to issue one of the pending fabric iocb
6764 * from the driver internal fabric iocb list.
6765 **/
James Smart92d7f7b2007-06-17 19:56:38 -05006766void
6767lpfc_unblock_fabric_iocbs(struct lpfc_hba *phba)
6768{
6769 clear_bit(FABRIC_COMANDS_BLOCKED, &phba->bit_flags);
6770
6771 lpfc_resume_fabric_iocbs(phba);
6772 return;
6773}
6774
James Smarte59058c2008-08-24 21:49:00 -04006775/**
James Smart3621a712009-04-06 18:47:14 -04006776 * lpfc_block_fabric_iocbs - Block issuing fabric iocb command
James Smarte59058c2008-08-24 21:49:00 -04006777 * @phba: pointer to lpfc hba data structure.
6778 *
6779 * This routine blocks the issuing fabric iocb for a specified amount of
6780 * time (currently 100 ms). This is done by set the fabric iocb block bit
6781 * and set up a timeout timer for 100ms. When the block bit is set, no more
6782 * fabric iocb will be issued out of the HBA.
6783 **/
James Smart92d7f7b2007-06-17 19:56:38 -05006784static void
6785lpfc_block_fabric_iocbs(struct lpfc_hba *phba)
6786{
6787 int blocked;
6788
6789 blocked = test_and_set_bit(FABRIC_COMANDS_BLOCKED, &phba->bit_flags);
James Smart7f5f3d02008-02-08 18:50:14 -05006790 /* Start a timer to unblock fabric iocbs after 100ms */
James Smart92d7f7b2007-06-17 19:56:38 -05006791 if (!blocked)
6792 mod_timer(&phba->fabric_block_timer, jiffies + HZ/10 );
6793
6794 return;
6795}
6796
James Smarte59058c2008-08-24 21:49:00 -04006797/**
James Smart3621a712009-04-06 18:47:14 -04006798 * lpfc_cmpl_fabric_iocb - Completion callback function for fabric iocb
James Smarte59058c2008-08-24 21:49:00 -04006799 * @phba: pointer to lpfc hba data structure.
6800 * @cmdiocb: pointer to lpfc command iocb data structure.
6801 * @rspiocb: pointer to lpfc response iocb data structure.
6802 *
6803 * This routine is the callback function that is put to the fabric iocb's
6804 * callback function pointer (iocb->iocb_cmpl). The original iocb's callback
6805 * function pointer has been stored in iocb->fabric_iocb_cmpl. This callback
6806 * function first restores and invokes the original iocb's callback function
6807 * and then invokes the lpfc_resume_fabric_iocbs() routine to issue the next
6808 * fabric bound iocb from the driver internal fabric iocb list onto the wire.
6809 **/
James Smart92d7f7b2007-06-17 19:56:38 -05006810static void
6811lpfc_cmpl_fabric_iocb(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
6812 struct lpfc_iocbq *rspiocb)
6813{
6814 struct ls_rjt stat;
6815
6816 if ((cmdiocb->iocb_flag & LPFC_IO_FABRIC) != LPFC_IO_FABRIC)
6817 BUG();
6818
6819 switch (rspiocb->iocb.ulpStatus) {
6820 case IOSTAT_NPORT_RJT:
6821 case IOSTAT_FABRIC_RJT:
6822 if (rspiocb->iocb.un.ulpWord[4] & RJT_UNAVAIL_TEMP) {
6823 lpfc_block_fabric_iocbs(phba);
6824 }
6825 break;
6826
6827 case IOSTAT_NPORT_BSY:
6828 case IOSTAT_FABRIC_BSY:
6829 lpfc_block_fabric_iocbs(phba);
6830 break;
6831
6832 case IOSTAT_LS_RJT:
6833 stat.un.lsRjtError =
6834 be32_to_cpu(rspiocb->iocb.un.ulpWord[4]);
6835 if ((stat.un.b.lsRjtRsnCode == LSRJT_UNABLE_TPC) ||
6836 (stat.un.b.lsRjtRsnCode == LSRJT_LOGICAL_BSY))
6837 lpfc_block_fabric_iocbs(phba);
6838 break;
6839 }
6840
6841 if (atomic_read(&phba->fabric_iocb_count) == 0)
6842 BUG();
6843
6844 cmdiocb->iocb_cmpl = cmdiocb->fabric_iocb_cmpl;
6845 cmdiocb->fabric_iocb_cmpl = NULL;
6846 cmdiocb->iocb_flag &= ~LPFC_IO_FABRIC;
6847 cmdiocb->iocb_cmpl(phba, cmdiocb, rspiocb);
6848
6849 atomic_dec(&phba->fabric_iocb_count);
6850 if (!test_bit(FABRIC_COMANDS_BLOCKED, &phba->bit_flags)) {
James Smart7f5f3d02008-02-08 18:50:14 -05006851 /* Post any pending iocbs to HBA */
6852 lpfc_resume_fabric_iocbs(phba);
James Smart92d7f7b2007-06-17 19:56:38 -05006853 }
6854}
6855
James Smarte59058c2008-08-24 21:49:00 -04006856/**
James Smart3621a712009-04-06 18:47:14 -04006857 * lpfc_issue_fabric_iocb - Issue a fabric iocb command
James Smarte59058c2008-08-24 21:49:00 -04006858 * @phba: pointer to lpfc hba data structure.
6859 * @iocb: pointer to lpfc command iocb data structure.
6860 *
6861 * This routine is used as the top-level API for issuing a fabric iocb command
6862 * such as FLOGI and FDISC. To accommodate certain switch fabric, this driver
6863 * function makes sure that only one fabric bound iocb will be outstanding at
6864 * any given time. As such, this function will first check to see whether there
6865 * is already an outstanding fabric iocb on the wire. If so, it will put the
6866 * newly issued iocb onto the driver internal fabric iocb list, waiting to be
6867 * issued later. Otherwise, it will issue the iocb on the wire and update the
6868 * fabric iocb count it indicate that there is one fabric iocb on the wire.
6869 *
6870 * Note, this implementation has a potential sending out fabric IOCBs out of
6871 * order. The problem is caused by the construction of the "ready" boolen does
6872 * not include the condition that the internal fabric IOCB list is empty. As
6873 * such, it is possible a fabric IOCB issued by this routine might be "jump"
6874 * ahead of the fabric IOCBs in the internal list.
6875 *
6876 * Return code
6877 * IOCB_SUCCESS - either fabric iocb put on the list or issued successfully
6878 * IOCB_ERROR - failed to issue fabric iocb
6879 **/
Adrian Bunka6ababd2007-11-05 18:07:33 +01006880static int
James Smart92d7f7b2007-06-17 19:56:38 -05006881lpfc_issue_fabric_iocb(struct lpfc_hba *phba, struct lpfc_iocbq *iocb)
6882{
6883 unsigned long iflags;
James Smart92d7f7b2007-06-17 19:56:38 -05006884 int ready;
6885 int ret;
6886
6887 if (atomic_read(&phba->fabric_iocb_count) > 1)
6888 BUG();
6889
6890 spin_lock_irqsave(&phba->hbalock, iflags);
6891 ready = atomic_read(&phba->fabric_iocb_count) == 0 &&
6892 !test_bit(FABRIC_COMANDS_BLOCKED, &phba->bit_flags);
6893
James Smart7f5f3d02008-02-08 18:50:14 -05006894 if (ready)
6895 /* Increment fabric iocb count to hold the position */
6896 atomic_inc(&phba->fabric_iocb_count);
James Smart92d7f7b2007-06-17 19:56:38 -05006897 spin_unlock_irqrestore(&phba->hbalock, iflags);
6898 if (ready) {
6899 iocb->fabric_iocb_cmpl = iocb->iocb_cmpl;
6900 iocb->iocb_cmpl = lpfc_cmpl_fabric_iocb;
6901 iocb->iocb_flag |= LPFC_IO_FABRIC;
6902
James Smart858c9f62007-06-17 19:56:39 -05006903 lpfc_debugfs_disc_trc(iocb->vport, LPFC_DISC_TRC_ELS_CMD,
6904 "Fabric sched2: ste:x%x",
6905 iocb->vport->port_state, 0, 0);
6906
James Smart3772a992009-05-22 14:50:54 -04006907 ret = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, iocb, 0);
James Smart92d7f7b2007-06-17 19:56:38 -05006908
6909 if (ret == IOCB_ERROR) {
6910 iocb->iocb_cmpl = iocb->fabric_iocb_cmpl;
6911 iocb->fabric_iocb_cmpl = NULL;
6912 iocb->iocb_flag &= ~LPFC_IO_FABRIC;
6913 atomic_dec(&phba->fabric_iocb_count);
6914 }
6915 } else {
6916 spin_lock_irqsave(&phba->hbalock, iflags);
6917 list_add_tail(&iocb->list, &phba->fabric_iocb_list);
6918 spin_unlock_irqrestore(&phba->hbalock, iflags);
6919 ret = IOCB_SUCCESS;
6920 }
6921 return ret;
6922}
6923
James Smarte59058c2008-08-24 21:49:00 -04006924/**
James Smart3621a712009-04-06 18:47:14 -04006925 * lpfc_fabric_abort_vport - Abort a vport's iocbs from driver fabric iocb list
James Smarte59058c2008-08-24 21:49:00 -04006926 * @vport: pointer to a virtual N_Port data structure.
6927 *
6928 * This routine aborts all the IOCBs associated with a @vport from the
6929 * driver internal fabric IOCB list. The list contains fabric IOCBs to be
6930 * issued to the ELS IOCB ring. This abort function walks the fabric IOCB
6931 * list, removes each IOCB associated with the @vport off the list, set the
6932 * status feild to IOSTAT_LOCAL_REJECT, and invokes the callback function
6933 * associated with the IOCB.
6934 **/
Adrian Bunka6ababd2007-11-05 18:07:33 +01006935static void lpfc_fabric_abort_vport(struct lpfc_vport *vport)
James Smart92d7f7b2007-06-17 19:56:38 -05006936{
6937 LIST_HEAD(completions);
6938 struct lpfc_hba *phba = vport->phba;
6939 struct lpfc_iocbq *tmp_iocb, *piocb;
James Smart92d7f7b2007-06-17 19:56:38 -05006940
6941 spin_lock_irq(&phba->hbalock);
6942 list_for_each_entry_safe(piocb, tmp_iocb, &phba->fabric_iocb_list,
6943 list) {
6944
6945 if (piocb->vport != vport)
6946 continue;
6947
6948 list_move_tail(&piocb->list, &completions);
6949 }
6950 spin_unlock_irq(&phba->hbalock);
6951
James Smarta257bf92009-04-06 18:48:10 -04006952 /* Cancel all the IOCBs from the completions list */
6953 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
6954 IOERR_SLI_ABORTED);
James Smart92d7f7b2007-06-17 19:56:38 -05006955}
6956
James Smarte59058c2008-08-24 21:49:00 -04006957/**
James Smart3621a712009-04-06 18:47:14 -04006958 * lpfc_fabric_abort_nport - Abort a ndlp's iocbs from driver fabric iocb list
James Smarte59058c2008-08-24 21:49:00 -04006959 * @ndlp: pointer to a node-list data structure.
6960 *
6961 * This routine aborts all the IOCBs associated with an @ndlp from the
6962 * driver internal fabric IOCB list. The list contains fabric IOCBs to be
6963 * issued to the ELS IOCB ring. This abort function walks the fabric IOCB
6964 * list, removes each IOCB associated with the @ndlp off the list, set the
6965 * status feild to IOSTAT_LOCAL_REJECT, and invokes the callback function
6966 * associated with the IOCB.
6967 **/
James Smart92d7f7b2007-06-17 19:56:38 -05006968void lpfc_fabric_abort_nport(struct lpfc_nodelist *ndlp)
6969{
6970 LIST_HEAD(completions);
James Smarta257bf92009-04-06 18:48:10 -04006971 struct lpfc_hba *phba = ndlp->phba;
James Smart92d7f7b2007-06-17 19:56:38 -05006972 struct lpfc_iocbq *tmp_iocb, *piocb;
6973 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
James Smart92d7f7b2007-06-17 19:56:38 -05006974
6975 spin_lock_irq(&phba->hbalock);
6976 list_for_each_entry_safe(piocb, tmp_iocb, &phba->fabric_iocb_list,
6977 list) {
6978 if ((lpfc_check_sli_ndlp(phba, pring, piocb, ndlp))) {
6979
6980 list_move_tail(&piocb->list, &completions);
6981 }
6982 }
6983 spin_unlock_irq(&phba->hbalock);
6984
James Smarta257bf92009-04-06 18:48:10 -04006985 /* Cancel all the IOCBs from the completions list */
6986 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
6987 IOERR_SLI_ABORTED);
James Smart92d7f7b2007-06-17 19:56:38 -05006988}
6989
James Smarte59058c2008-08-24 21:49:00 -04006990/**
James Smart3621a712009-04-06 18:47:14 -04006991 * lpfc_fabric_abort_hba - Abort all iocbs on driver fabric iocb list
James Smarte59058c2008-08-24 21:49:00 -04006992 * @phba: pointer to lpfc hba data structure.
6993 *
6994 * This routine aborts all the IOCBs currently on the driver internal
6995 * fabric IOCB list. The list contains fabric IOCBs to be issued to the ELS
6996 * IOCB ring. This function takes the entire IOCB list off the fabric IOCB
6997 * list, removes IOCBs off the list, set the status feild to
6998 * IOSTAT_LOCAL_REJECT, and invokes the callback function associated with
6999 * the IOCB.
7000 **/
James Smart92d7f7b2007-06-17 19:56:38 -05007001void lpfc_fabric_abort_hba(struct lpfc_hba *phba)
7002{
7003 LIST_HEAD(completions);
James Smart92d7f7b2007-06-17 19:56:38 -05007004
7005 spin_lock_irq(&phba->hbalock);
7006 list_splice_init(&phba->fabric_iocb_list, &completions);
7007 spin_unlock_irq(&phba->hbalock);
7008
James Smarta257bf92009-04-06 18:48:10 -04007009 /* Cancel all the IOCBs from the completions list */
7010 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
7011 IOERR_SLI_ABORTED);
James Smart92d7f7b2007-06-17 19:56:38 -05007012}
James Smart6fb120a2009-05-22 14:52:59 -04007013
7014/**
7015 * lpfc_sli4_els_xri_aborted - Slow-path process of els xri abort
7016 * @phba: pointer to lpfc hba data structure.
7017 * @axri: pointer to the els xri abort wcqe structure.
7018 *
7019 * This routine is invoked by the worker thread to process a SLI4 slow-path
7020 * ELS aborted xri.
7021 **/
7022void
7023lpfc_sli4_els_xri_aborted(struct lpfc_hba *phba,
7024 struct sli4_wcqe_xri_aborted *axri)
7025{
7026 uint16_t xri = bf_get(lpfc_wcqe_xa_xri, axri);
7027 struct lpfc_sglq *sglq_entry = NULL, *sglq_next = NULL;
7028 unsigned long iflag = 0;
James Smart589a52d2010-07-14 15:30:54 -04007029 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
James Smart6fb120a2009-05-22 14:52:59 -04007030
James Smart0f65ff62010-02-26 14:14:23 -05007031 spin_lock_irqsave(&phba->hbalock, iflag);
7032 spin_lock(&phba->sli4_hba.abts_sgl_list_lock);
James Smart6fb120a2009-05-22 14:52:59 -04007033 list_for_each_entry_safe(sglq_entry, sglq_next,
7034 &phba->sli4_hba.lpfc_abts_els_sgl_list, list) {
7035 if (sglq_entry->sli4_xritag == xri) {
7036 list_del(&sglq_entry->list);
James Smart6fb120a2009-05-22 14:52:59 -04007037 list_add_tail(&sglq_entry->list,
7038 &phba->sli4_hba.lpfc_sgl_list);
James Smart0f65ff62010-02-26 14:14:23 -05007039 sglq_entry->state = SGL_FREED;
7040 spin_unlock(&phba->sli4_hba.abts_sgl_list_lock);
James Smart6fb120a2009-05-22 14:52:59 -04007041 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart589a52d2010-07-14 15:30:54 -04007042
7043 /* Check if TXQ queue needs to be serviced */
7044 if (pring->txq_cnt)
7045 lpfc_worker_wake_up(phba);
James Smart6fb120a2009-05-22 14:52:59 -04007046 return;
7047 }
7048 }
James Smart0f65ff62010-02-26 14:14:23 -05007049 spin_unlock(&phba->sli4_hba.abts_sgl_list_lock);
7050 sglq_entry = __lpfc_get_active_sglq(phba, xri);
7051 if (!sglq_entry || (sglq_entry->sli4_xritag != xri)) {
7052 spin_unlock_irqrestore(&phba->hbalock, iflag);
7053 return;
7054 }
7055 sglq_entry->state = SGL_XRI_ABORTED;
7056 spin_unlock_irqrestore(&phba->hbalock, iflag);
7057 return;
James Smart6fb120a2009-05-22 14:52:59 -04007058}