]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/scsi/lpfc/lpfc_els.c
lpfc: Make write check error processing more resilient
[mirror_ubuntu-artful-kernel.git] / drivers / scsi / lpfc / lpfc_els.c
CommitLineData
dea3101e
JB
1/*******************************************************************
2 * This file is part of the Emulex Linux Device Driver for *
c44ce173 3 * Fibre Channel Host Bus Adapters. *
f25e8e79 4 * Copyright (C) 2004-2015 Emulex. All rights reserved. *
c44ce173 5 * EMULEX and SLI are trademarks of Emulex. *
dea3101e 6 * www.emulex.com *
c44ce173 7 * Portions Copyright (C) 2004-2005 Christoph Hellwig *
dea3101e
JB
8 * *
9 * This program is free software; you can redistribute it and/or *
c44ce173
JSEC
10 * 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. *
dea3101e 20 *******************************************************************/
09372820 21/* See Fibre Channel protocol T11 FC-LS for details */
dea3101e
JB
22#include <linux/blkdev.h>
23#include <linux/pci.h>
5a0e3ad6 24#include <linux/slab.h>
dea3101e
JB
25#include <linux/interrupt.h>
26
91886523 27#include <scsi/scsi.h>
dea3101e
JB
28#include <scsi/scsi_device.h>
29#include <scsi/scsi_host.h>
30#include <scsi/scsi_transport_fc.h>
31
e74c03c8 32
da0436e9 33#include "lpfc_hw4.h"
dea3101e
JB
34#include "lpfc_hw.h"
35#include "lpfc_sli.h"
da0436e9 36#include "lpfc_sli4.h"
ea2151b4 37#include "lpfc_nl.h"
dea3101e
JB
38#include "lpfc_disc.h"
39#include "lpfc_scsi.h"
40#include "lpfc.h"
41#include "lpfc_logmsg.h"
42#include "lpfc_crtn.h"
92d7f7b0 43#include "lpfc_vport.h"
858c9f6c 44#include "lpfc_debugfs.h"
dea3101e
JB
45
46static int lpfc_els_retry(struct lpfc_hba *, struct lpfc_iocbq *,
47 struct lpfc_iocbq *);
92d7f7b0
JS
48static void lpfc_cmpl_fabric_iocb(struct lpfc_hba *, struct lpfc_iocbq *,
49 struct lpfc_iocbq *);
a6ababd2
AB
50static void lpfc_fabric_abort_vport(struct lpfc_vport *vport);
51static int lpfc_issue_els_fdisc(struct lpfc_vport *vport,
52 struct lpfc_nodelist *ndlp, uint8_t retry);
53static int lpfc_issue_fabric_iocb(struct lpfc_hba *phba,
54 struct lpfc_iocbq *iocb);
92d7f7b0 55
dea3101e
JB
56static int lpfc_max_els_tries = 3;
57
e59058c4 58/**
3621a710 59 * lpfc_els_chk_latt - Check host link attention event for a vport
e59058c4
JS
60 * @vport: pointer to a host virtual N_Port data structure.
61 *
62 * This routine checks whether there is an outstanding host link
63 * attention event during the discovery process with the @vport. It is done
64 * by reading the HBA's Host Attention (HA) register. If there is any host
65 * link attention events during this @vport's discovery process, the @vport
66 * shall be marked as FC_ABORT_DISCOVERY, a host link attention clear shall
67 * be issued if the link state is not already in host link cleared state,
68 * and a return code shall indicate whether the host link attention event
69 * had happened.
70 *
71 * Note that, if either the host link is in state LPFC_LINK_DOWN or @vport
72 * state in LPFC_VPORT_READY, the request for checking host link attention
73 * event will be ignored and a return code shall indicate no host link
74 * attention event had happened.
75 *
76 * Return codes
77 * 0 - no host link attention event happened
78 * 1 - host link attention event happened
79 **/
858c9f6c 80int
2e0fef85 81lpfc_els_chk_latt(struct lpfc_vport *vport)
dea3101e 82{
2e0fef85
JS
83 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
84 struct lpfc_hba *phba = vport->phba;
dea3101e 85 uint32_t ha_copy;
dea3101e 86
2e0fef85 87 if (vport->port_state >= LPFC_VPORT_READY ||
3772a991
JS
88 phba->link_state == LPFC_LINK_DOWN ||
89 phba->sli_rev > LPFC_SLI_REV3)
dea3101e
JB
90 return 0;
91
92 /* Read the HBA Host Attention Register */
9940b97b
JS
93 if (lpfc_readl(phba->HAregaddr, &ha_copy))
94 return 1;
dea3101e
JB
95
96 if (!(ha_copy & HA_LATT))
97 return 0;
98
99 /* Pending Link Event during Discovery */
e8b62011
JS
100 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
101 "0237 Pending Link Event during "
102 "Discovery: State x%x\n",
103 phba->pport->port_state);
dea3101e
JB
104
105 /* CLEAR_LA should re-enable link attention events and
25985edc 106 * we should then immediately take a LATT event. The
dea3101e
JB
107 * LATT processing should call lpfc_linkdown() which
108 * will cleanup any left over in-progress discovery
109 * events.
110 */
2e0fef85
JS
111 spin_lock_irq(shost->host_lock);
112 vport->fc_flag |= FC_ABORT_DISCOVERY;
113 spin_unlock_irq(shost->host_lock);
dea3101e 114
92d7f7b0 115 if (phba->link_state != LPFC_CLEAR_LA)
ed957684 116 lpfc_issue_clear_la(phba, vport);
dea3101e 117
c9f8735b 118 return 1;
dea3101e
JB
119}
120
e59058c4 121/**
3621a710 122 * lpfc_prep_els_iocb - Allocate and prepare a lpfc iocb data structure
e59058c4
JS
123 * @vport: pointer to a host virtual N_Port data structure.
124 * @expectRsp: flag indicating whether response is expected.
125 * @cmdSize: size of the ELS command.
126 * @retry: number of retries to the command IOCB when it fails.
127 * @ndlp: pointer to a node-list data structure.
128 * @did: destination identifier.
129 * @elscmd: the ELS command code.
130 *
131 * This routine is used for allocating a lpfc-IOCB data structure from
132 * the driver lpfc-IOCB free-list and prepare the IOCB with the parameters
133 * passed into the routine for discovery state machine to issue an Extended
134 * Link Service (ELS) commands. It is a generic lpfc-IOCB allocation
135 * and preparation routine that is used by all the discovery state machine
136 * routines and the ELS command-specific fields will be later set up by
137 * the individual discovery machine routines after calling this routine
138 * allocating and preparing a generic IOCB data structure. It fills in the
139 * Buffer Descriptor Entries (BDEs), allocates buffers for both command
140 * payload and response payload (if expected). The reference count on the
141 * ndlp is incremented by 1 and the reference to the ndlp is put into
142 * context1 of the IOCB data structure for this IOCB to hold the ndlp
143 * reference for the command's callback function to access later.
144 *
145 * Return code
146 * Pointer to the newly allocated/prepared els iocb data structure
147 * NULL - when els iocb data structure allocation/preparation failed
148 **/
f1c3b0fc 149struct lpfc_iocbq *
2e0fef85
JS
150lpfc_prep_els_iocb(struct lpfc_vport *vport, uint8_t expectRsp,
151 uint16_t cmdSize, uint8_t retry,
152 struct lpfc_nodelist *ndlp, uint32_t did,
153 uint32_t elscmd)
dea3101e 154{
2e0fef85 155 struct lpfc_hba *phba = vport->phba;
0bd4ca25 156 struct lpfc_iocbq *elsiocb;
dea3101e
JB
157 struct lpfc_dmabuf *pcmd, *prsp, *pbuflist;
158 struct ulp_bde64 *bpl;
159 IOCB_t *icmd;
160
dea3101e 161
2e0fef85
JS
162 if (!lpfc_is_link_up(phba))
163 return NULL;
dea3101e 164
dea3101e 165 /* Allocate buffer for command iocb */
0bd4ca25 166 elsiocb = lpfc_sli_get_iocbq(phba);
dea3101e
JB
167
168 if (elsiocb == NULL)
169 return NULL;
e47c9093 170
0c287589
JS
171 /*
172 * If this command is for fabric controller and HBA running
173 * in FIP mode send FLOGI, FDISC and LOGO as FIP frames.
174 */
175 if ((did == Fabric_DID) &&
45ed1190 176 (phba->hba_flag & HBA_FIP_SUPPORT) &&
0c287589
JS
177 ((elscmd == ELS_CMD_FLOGI) ||
178 (elscmd == ELS_CMD_FDISC) ||
179 (elscmd == ELS_CMD_LOGO)))
c868595d
JS
180 switch (elscmd) {
181 case ELS_CMD_FLOGI:
f0d9bccc
JS
182 elsiocb->iocb_flag |=
183 ((LPFC_ELS_ID_FLOGI << LPFC_FIP_ELS_ID_SHIFT)
c868595d
JS
184 & LPFC_FIP_ELS_ID_MASK);
185 break;
186 case ELS_CMD_FDISC:
f0d9bccc
JS
187 elsiocb->iocb_flag |=
188 ((LPFC_ELS_ID_FDISC << LPFC_FIP_ELS_ID_SHIFT)
c868595d
JS
189 & LPFC_FIP_ELS_ID_MASK);
190 break;
191 case ELS_CMD_LOGO:
f0d9bccc
JS
192 elsiocb->iocb_flag |=
193 ((LPFC_ELS_ID_LOGO << LPFC_FIP_ELS_ID_SHIFT)
c868595d
JS
194 & LPFC_FIP_ELS_ID_MASK);
195 break;
196 }
0c287589 197 else
c868595d 198 elsiocb->iocb_flag &= ~LPFC_FIP_ELS_ID_MASK;
0c287589 199
dea3101e
JB
200 icmd = &elsiocb->iocb;
201
202 /* fill in BDEs for command */
203 /* Allocate buffer for command payload */
98c9ea5c
JS
204 pcmd = kmalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
205 if (pcmd)
206 pcmd->virt = lpfc_mbuf_alloc(phba, MEM_PRI, &pcmd->phys);
fa4066b6
JS
207 if (!pcmd || !pcmd->virt)
208 goto els_iocb_free_pcmb_exit;
dea3101e
JB
209
210 INIT_LIST_HEAD(&pcmd->list);
211
212 /* Allocate buffer for response payload */
213 if (expectRsp) {
92d7f7b0 214 prsp = kmalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
dea3101e
JB
215 if (prsp)
216 prsp->virt = lpfc_mbuf_alloc(phba, MEM_PRI,
217 &prsp->phys);
fa4066b6
JS
218 if (!prsp || !prsp->virt)
219 goto els_iocb_free_prsp_exit;
dea3101e 220 INIT_LIST_HEAD(&prsp->list);
e47c9093 221 } else
dea3101e 222 prsp = NULL;
dea3101e
JB
223
224 /* Allocate buffer for Buffer ptr list */
92d7f7b0 225 pbuflist = kmalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
dea3101e 226 if (pbuflist)
ed957684
JS
227 pbuflist->virt = lpfc_mbuf_alloc(phba, MEM_PRI,
228 &pbuflist->phys);
fa4066b6
JS
229 if (!pbuflist || !pbuflist->virt)
230 goto els_iocb_free_pbuf_exit;
dea3101e
JB
231
232 INIT_LIST_HEAD(&pbuflist->list);
233
dea3101e 234 if (expectRsp) {
939723a4
JS
235 icmd->un.elsreq64.bdl.addrHigh = putPaddrHigh(pbuflist->phys);
236 icmd->un.elsreq64.bdl.addrLow = putPaddrLow(pbuflist->phys);
237 icmd->un.elsreq64.bdl.bdeFlags = BUFF_TYPE_BLP_64;
92d7f7b0 238 icmd->un.elsreq64.bdl.bdeSize = (2 * sizeof(struct ulp_bde64));
939723a4
JS
239
240 icmd->un.elsreq64.remoteID = did; /* DID */
dea3101e 241 icmd->ulpCommand = CMD_ELS_REQUEST64_CR;
88f43a08
JS
242 if (elscmd == ELS_CMD_FLOGI)
243 icmd->ulpTimeout = FF_DEF_RATOV * 2;
244 else
245 icmd->ulpTimeout = phba->fc_ratov * 2;
dea3101e 246 } else {
939723a4
JS
247 icmd->un.xseq64.bdl.addrHigh = putPaddrHigh(pbuflist->phys);
248 icmd->un.xseq64.bdl.addrLow = putPaddrLow(pbuflist->phys);
249 icmd->un.xseq64.bdl.bdeFlags = BUFF_TYPE_BLP_64;
250 icmd->un.xseq64.bdl.bdeSize = sizeof(struct ulp_bde64);
251 icmd->un.xseq64.xmit_els_remoteID = did; /* DID */
dea3101e
JB
252 icmd->ulpCommand = CMD_XMIT_ELS_RSP64_CX;
253 }
dea3101e
JB
254 icmd->ulpBdeCount = 1;
255 icmd->ulpLe = 1;
256 icmd->ulpClass = CLASS3;
257
939723a4
JS
258 /*
259 * If we have NPIV enabled, we want to send ELS traffic by VPI.
260 * For SLI4, since the driver controls VPIs we also want to include
261 * all ELS pt2pt protocol traffic as well.
262 */
263 if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) ||
264 ((phba->sli_rev == LPFC_SLI_REV4) &&
265 (vport->fc_flag & FC_PT2PT))) {
266
267 if (expectRsp) {
268 icmd->un.elsreq64.myID = vport->fc_myDID;
269
270 /* For ELS_REQUEST64_CR, use the VPI by default */
271 icmd->ulpContext = phba->vpi_ids[vport->vpi];
272 }
92d7f7b0 273
92d7f7b0 274 icmd->ulpCt_h = 0;
eada272d
JS
275 /* The CT field must be 0=INVALID_RPI for the ECHO cmd */
276 if (elscmd == ELS_CMD_ECHO)
277 icmd->ulpCt_l = 0; /* context = invalid RPI */
278 else
279 icmd->ulpCt_l = 1; /* context = VPI */
92d7f7b0
JS
280 }
281
dea3101e
JB
282 bpl = (struct ulp_bde64 *) pbuflist->virt;
283 bpl->addrLow = le32_to_cpu(putPaddrLow(pcmd->phys));
284 bpl->addrHigh = le32_to_cpu(putPaddrHigh(pcmd->phys));
285 bpl->tus.f.bdeSize = cmdSize;
286 bpl->tus.f.bdeFlags = 0;
287 bpl->tus.w = le32_to_cpu(bpl->tus.w);
288
289 if (expectRsp) {
290 bpl++;
291 bpl->addrLow = le32_to_cpu(putPaddrLow(prsp->phys));
292 bpl->addrHigh = le32_to_cpu(putPaddrHigh(prsp->phys));
293 bpl->tus.f.bdeSize = FCELSSIZE;
34b02dcd 294 bpl->tus.f.bdeFlags = BUFF_TYPE_BDE_64;
dea3101e
JB
295 bpl->tus.w = le32_to_cpu(bpl->tus.w);
296 }
297
fa4066b6 298 /* prevent preparing iocb with NULL ndlp reference */
51ef4c26 299 elsiocb->context1 = lpfc_nlp_get(ndlp);
fa4066b6
JS
300 if (!elsiocb->context1)
301 goto els_iocb_free_pbuf_exit;
329f9bc7
JS
302 elsiocb->context2 = pcmd;
303 elsiocb->context3 = pbuflist;
dea3101e 304 elsiocb->retry = retry;
2e0fef85 305 elsiocb->vport = vport;
dea3101e
JB
306 elsiocb->drvrTimeout = (phba->fc_ratov << 1) + LPFC_DRVR_TIMEOUT;
307
308 if (prsp) {
309 list_add(&prsp->list, &pcmd->list);
310 }
dea3101e
JB
311 if (expectRsp) {
312 /* Xmit ELS command <elsCmd> to remote NPORT <did> */
e8b62011
JS
313 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
314 "0116 Xmit ELS command x%x to remote "
e74c03c8
JS
315 "NPORT x%x I/O tag: x%x, port state:x%x"
316 " fc_flag:x%x\n",
e8b62011 317 elscmd, did, elsiocb->iotag,
e74c03c8
JS
318 vport->port_state,
319 vport->fc_flag);
dea3101e
JB
320 } else {
321 /* Xmit ELS response <elsCmd> to remote NPORT <did> */
e8b62011
JS
322 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
323 "0117 Xmit ELS response x%x to remote "
e74c03c8
JS
324 "NPORT x%x I/O tag: x%x, size: x%x "
325 "port_state x%x fc_flag x%x\n",
e8b62011 326 elscmd, ndlp->nlp_DID, elsiocb->iotag,
e74c03c8
JS
327 cmdSize, vport->port_state,
328 vport->fc_flag);
dea3101e 329 }
c9f8735b 330 return elsiocb;
dea3101e 331
fa4066b6 332els_iocb_free_pbuf_exit:
eaf15d5b
JS
333 if (expectRsp)
334 lpfc_mbuf_free(phba, prsp->virt, prsp->phys);
fa4066b6
JS
335 kfree(pbuflist);
336
337els_iocb_free_prsp_exit:
338 lpfc_mbuf_free(phba, pcmd->virt, pcmd->phys);
339 kfree(prsp);
340
341els_iocb_free_pcmb_exit:
342 kfree(pcmd);
343 lpfc_sli_release_iocbq(phba, elsiocb);
344 return NULL;
345}
dea3101e 346
e59058c4 347/**
3621a710 348 * lpfc_issue_fabric_reglogin - Issue fabric registration login for a vport
e59058c4
JS
349 * @vport: pointer to a host virtual N_Port data structure.
350 *
351 * This routine issues a fabric registration login for a @vport. An
352 * active ndlp node with Fabric_DID must already exist for this @vport.
353 * The routine invokes two mailbox commands to carry out fabric registration
354 * login through the HBA firmware: the first mailbox command requests the
355 * HBA to perform link configuration for the @vport; and the second mailbox
356 * command requests the HBA to perform the actual fabric registration login
357 * with the @vport.
358 *
359 * Return code
360 * 0 - successfully issued fabric registration login for @vport
361 * -ENXIO -- failed to issue fabric registration login for @vport
362 **/
3772a991 363int
92d7f7b0 364lpfc_issue_fabric_reglogin(struct lpfc_vport *vport)
dea3101e 365{
2e0fef85 366 struct lpfc_hba *phba = vport->phba;
dea3101e 367 LPFC_MBOXQ_t *mbox;
14691150 368 struct lpfc_dmabuf *mp;
92d7f7b0
JS
369 struct lpfc_nodelist *ndlp;
370 struct serv_parm *sp;
dea3101e 371 int rc;
98c9ea5c 372 int err = 0;
dea3101e 373
92d7f7b0
JS
374 sp = &phba->fc_fabparam;
375 ndlp = lpfc_findnode_did(vport, Fabric_DID);
e47c9093 376 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp)) {
98c9ea5c 377 err = 1;
92d7f7b0 378 goto fail;
98c9ea5c 379 }
92d7f7b0
JS
380
381 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
98c9ea5c
JS
382 if (!mbox) {
383 err = 2;
92d7f7b0 384 goto fail;
98c9ea5c 385 }
92d7f7b0
JS
386
387 vport->port_state = LPFC_FABRIC_CFG_LINK;
388 lpfc_config_link(phba, mbox);
389 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
390 mbox->vport = vport;
391
0b727fea 392 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
98c9ea5c
JS
393 if (rc == MBX_NOT_FINISHED) {
394 err = 3;
92d7f7b0 395 goto fail_free_mbox;
98c9ea5c 396 }
92d7f7b0
JS
397
398 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
98c9ea5c
JS
399 if (!mbox) {
400 err = 4;
92d7f7b0 401 goto fail;
98c9ea5c 402 }
4042629e
JS
403 rc = lpfc_reg_rpi(phba, vport->vpi, Fabric_DID, (uint8_t *)sp, mbox,
404 ndlp->nlp_rpi);
98c9ea5c
JS
405 if (rc) {
406 err = 5;
92d7f7b0 407 goto fail_free_mbox;
98c9ea5c 408 }
92d7f7b0
JS
409
410 mbox->mbox_cmpl = lpfc_mbx_cmpl_fabric_reg_login;
411 mbox->vport = vport;
e47c9093
JS
412 /* increment the reference count on ndlp to hold reference
413 * for the callback routine.
414 */
92d7f7b0
JS
415 mbox->context2 = lpfc_nlp_get(ndlp);
416
0b727fea 417 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
98c9ea5c
JS
418 if (rc == MBX_NOT_FINISHED) {
419 err = 6;
92d7f7b0 420 goto fail_issue_reg_login;
98c9ea5c 421 }
92d7f7b0
JS
422
423 return 0;
424
425fail_issue_reg_login:
e47c9093
JS
426 /* decrement the reference count on ndlp just incremented
427 * for the failed mbox command.
428 */
92d7f7b0
JS
429 lpfc_nlp_put(ndlp);
430 mp = (struct lpfc_dmabuf *) mbox->context1;
431 lpfc_mbuf_free(phba, mp->virt, mp->phys);
432 kfree(mp);
433fail_free_mbox:
434 mempool_free(mbox, phba->mbox_mem_pool);
435
436fail:
437 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
e8b62011 438 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
98c9ea5c 439 "0249 Cannot issue Register Fabric login: Err %d\n", err);
92d7f7b0
JS
440 return -ENXIO;
441}
442
6fb120a7
JS
443/**
444 * lpfc_issue_reg_vfi - Register VFI for this vport's fabric login
445 * @vport: pointer to a host virtual N_Port data structure.
446 *
447 * This routine issues a REG_VFI mailbox for the vfi, vpi, fcfi triplet for
1b51197d 448 * the @vport. This mailbox command is necessary for SLI4 port only.
6fb120a7
JS
449 *
450 * Return code
451 * 0 - successfully issued REG_VFI for @vport
452 * A failure code otherwise.
453 **/
1b51197d 454int
6fb120a7
JS
455lpfc_issue_reg_vfi(struct lpfc_vport *vport)
456{
457 struct lpfc_hba *phba = vport->phba;
d6de08cc 458 LPFC_MBOXQ_t *mboxq = NULL;
6fb120a7 459 struct lpfc_nodelist *ndlp;
d6de08cc 460 struct lpfc_dmabuf *dmabuf = NULL;
6fb120a7
JS
461 int rc = 0;
462
939723a4 463 /* move forward in case of SLI4 FC port loopback test and pt2pt mode */
1b51197d 464 if ((phba->sli_rev == LPFC_SLI_REV4) &&
939723a4
JS
465 !(phba->link_flag & LS_LOOPBACK_MODE) &&
466 !(vport->fc_flag & FC_PT2PT)) {
1b51197d
JS
467 ndlp = lpfc_findnode_did(vport, Fabric_DID);
468 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp)) {
469 rc = -ENODEV;
470 goto fail;
471 }
6fb120a7
JS
472 }
473
d6de08cc
JS
474 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
475 if (!mboxq) {
6fb120a7
JS
476 rc = -ENOMEM;
477 goto fail;
478 }
6d368e53 479
d6de08cc
JS
480 /* Supply CSP's only if we are fabric connect or pt-to-pt connect */
481 if ((vport->fc_flag & FC_FABRIC) || (vport->fc_flag & FC_PT2PT)) {
482 dmabuf = kzalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
483 if (!dmabuf) {
484 rc = -ENOMEM;
485 goto fail;
486 }
487 dmabuf->virt = lpfc_mbuf_alloc(phba, MEM_PRI, &dmabuf->phys);
488 if (!dmabuf->virt) {
489 rc = -ENOMEM;
490 goto fail;
491 }
492 memcpy(dmabuf->virt, &phba->fc_fabparam,
493 sizeof(struct serv_parm));
6fb120a7 494 }
d6de08cc 495
6fb120a7 496 vport->port_state = LPFC_FABRIC_CFG_LINK;
d6de08cc
JS
497 if (dmabuf)
498 lpfc_reg_vfi(mboxq, vport, dmabuf->phys);
499 else
500 lpfc_reg_vfi(mboxq, vport, 0);
ae05ebe3 501
6fb120a7
JS
502 mboxq->mbox_cmpl = lpfc_mbx_cmpl_reg_vfi;
503 mboxq->vport = vport;
504 mboxq->context1 = dmabuf;
505 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
506 if (rc == MBX_NOT_FINISHED) {
507 rc = -ENXIO;
d6de08cc 508 goto fail;
6fb120a7
JS
509 }
510 return 0;
511
6fb120a7 512fail:
d6de08cc
JS
513 if (mboxq)
514 mempool_free(mboxq, phba->mbox_mem_pool);
515 if (dmabuf) {
516 if (dmabuf->virt)
517 lpfc_mbuf_free(phba, dmabuf->virt, dmabuf->phys);
518 kfree(dmabuf);
519 }
520
6fb120a7
JS
521 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
522 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
523 "0289 Issue Register VFI failed: Err %d\n", rc);
524 return rc;
525}
526
1b51197d
JS
527/**
528 * lpfc_issue_unreg_vfi - Unregister VFI for this vport's fabric login
529 * @vport: pointer to a host virtual N_Port data structure.
530 *
531 * This routine issues a UNREG_VFI mailbox with the vfi, vpi, fcfi triplet for
532 * the @vport. This mailbox command is necessary for SLI4 port only.
533 *
534 * Return code
535 * 0 - successfully issued REG_VFI for @vport
536 * A failure code otherwise.
537 **/
538int
539lpfc_issue_unreg_vfi(struct lpfc_vport *vport)
540{
541 struct lpfc_hba *phba = vport->phba;
542 struct Scsi_Host *shost;
543 LPFC_MBOXQ_t *mboxq;
544 int rc;
545
546 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
547 if (!mboxq) {
548 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY|LOG_MBOX,
549 "2556 UNREG_VFI mbox allocation failed"
550 "HBA state x%x\n", phba->pport->port_state);
551 return -ENOMEM;
552 }
553
554 lpfc_unreg_vfi(mboxq, vport);
555 mboxq->vport = vport;
556 mboxq->mbox_cmpl = lpfc_unregister_vfi_cmpl;
557
558 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
559 if (rc == MBX_NOT_FINISHED) {
560 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY|LOG_MBOX,
561 "2557 UNREG_VFI issue mbox failed rc x%x "
562 "HBA state x%x\n",
563 rc, phba->pport->port_state);
564 mempool_free(mboxq, phba->mbox_mem_pool);
565 return -EIO;
566 }
567
568 shost = lpfc_shost_from_vport(vport);
569 spin_lock_irq(shost->host_lock);
570 vport->fc_flag &= ~FC_VFI_REGISTERED;
571 spin_unlock_irq(shost->host_lock);
572 return 0;
573}
574
92494144
JS
575/**
576 * lpfc_check_clean_addr_bit - Check whether assigned FCID is clean.
577 * @vport: pointer to a host virtual N_Port data structure.
578 * @sp: pointer to service parameter data structure.
579 *
580 * This routine is called from FLOGI/FDISC completion handler functions.
581 * lpfc_check_clean_addr_bit return 1 when FCID/Fabric portname/ Fabric
582 * node nodename is changed in the completion service parameter else return
583 * 0. This function also set flag in the vport data structure to delay
584 * NP_Port discovery after the FLOGI/FDISC completion if Clean address bit
585 * in FLOGI/FDISC response is cleared and FCID/Fabric portname/ Fabric
586 * node nodename is changed in the completion service parameter.
587 *
588 * Return code
589 * 0 - FCID and Fabric Nodename and Fabric portname is not changed.
590 * 1 - FCID or Fabric Nodename or Fabric portname is changed.
591 *
592 **/
593static uint8_t
594lpfc_check_clean_addr_bit(struct lpfc_vport *vport,
595 struct serv_parm *sp)
596{
597 uint8_t fabric_param_changed = 0;
598 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
599
600 if ((vport->fc_prevDID != vport->fc_myDID) ||
601 memcmp(&vport->fabric_portname, &sp->portName,
602 sizeof(struct lpfc_name)) ||
603 memcmp(&vport->fabric_nodename, &sp->nodeName,
604 sizeof(struct lpfc_name)))
605 fabric_param_changed = 1;
606
607 /*
608 * Word 1 Bit 31 in common service parameter is overloaded.
609 * Word 1 Bit 31 in FLOGI request is multiple NPort request
610 * Word 1 Bit 31 in FLOGI response is clean address bit
611 *
612 * If fabric parameter is changed and clean address bit is
613 * cleared delay nport discovery if
614 * - vport->fc_prevDID != 0 (not initial discovery) OR
615 * - lpfc_delay_discovery module parameter is set.
616 */
617 if (fabric_param_changed && !sp->cmn.clean_address_bit &&
618 (vport->fc_prevDID || lpfc_delay_discovery)) {
619 spin_lock_irq(shost->host_lock);
620 vport->fc_flag |= FC_DISC_DELAYED;
621 spin_unlock_irq(shost->host_lock);
622 }
623
624 return fabric_param_changed;
625}
626
627
e59058c4 628/**
3621a710 629 * lpfc_cmpl_els_flogi_fabric - Completion function for flogi to a fabric port
e59058c4
JS
630 * @vport: pointer to a host virtual N_Port data structure.
631 * @ndlp: pointer to a node-list data structure.
632 * @sp: pointer to service parameter data structure.
633 * @irsp: pointer to the IOCB within the lpfc response IOCB.
634 *
635 * This routine is invoked by the lpfc_cmpl_els_flogi() completion callback
636 * function to handle the completion of a Fabric Login (FLOGI) into a fabric
637 * port in a fabric topology. It properly sets up the parameters to the @ndlp
638 * from the IOCB response. It also check the newly assigned N_Port ID to the
639 * @vport against the previously assigned N_Port ID. If it is different from
640 * the previously assigned Destination ID (DID), the lpfc_unreg_rpi() routine
641 * is invoked on all the remaining nodes with the @vport to unregister the
642 * Remote Port Indicators (RPIs). Finally, the lpfc_issue_fabric_reglogin()
643 * is invoked to register login to the fabric.
644 *
645 * Return code
646 * 0 - Success (currently, always return 0)
647 **/
92d7f7b0
JS
648static int
649lpfc_cmpl_els_flogi_fabric(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
650 struct serv_parm *sp, IOCB_t *irsp)
651{
652 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
653 struct lpfc_hba *phba = vport->phba;
654 struct lpfc_nodelist *np;
655 struct lpfc_nodelist *next_np;
92494144 656 uint8_t fabric_param_changed;
92d7f7b0 657
2e0fef85
JS
658 spin_lock_irq(shost->host_lock);
659 vport->fc_flag |= FC_FABRIC;
660 spin_unlock_irq(shost->host_lock);
dea3101e
JB
661
662 phba->fc_edtov = be32_to_cpu(sp->cmn.e_d_tov);
663 if (sp->cmn.edtovResolution) /* E_D_TOV ticks are in nanoseconds */
664 phba->fc_edtov = (phba->fc_edtov + 999999) / 1000000;
665
12265f68 666 phba->fc_edtovResol = sp->cmn.edtovResolution;
dea3101e
JB
667 phba->fc_ratov = (be32_to_cpu(sp->cmn.w2.r_a_tov) + 999) / 1000;
668
76a95d75 669 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
2e0fef85
JS
670 spin_lock_irq(shost->host_lock);
671 vport->fc_flag |= FC_PUBLIC_LOOP;
672 spin_unlock_irq(shost->host_lock);
dea3101e
JB
673 }
674
2e0fef85 675 vport->fc_myDID = irsp->un.ulpWord[4] & Mask_DID;
dea3101e 676 memcpy(&ndlp->nlp_portname, &sp->portName, sizeof(struct lpfc_name));
92d7f7b0 677 memcpy(&ndlp->nlp_nodename, &sp->nodeName, sizeof(struct lpfc_name));
dea3101e
JB
678 ndlp->nlp_class_sup = 0;
679 if (sp->cls1.classValid)
680 ndlp->nlp_class_sup |= FC_COS_CLASS1;
681 if (sp->cls2.classValid)
682 ndlp->nlp_class_sup |= FC_COS_CLASS2;
683 if (sp->cls3.classValid)
684 ndlp->nlp_class_sup |= FC_COS_CLASS3;
685 if (sp->cls4.classValid)
686 ndlp->nlp_class_sup |= FC_COS_CLASS4;
687 ndlp->nlp_maxframe = ((sp->cmn.bbRcvSizeMsb & 0x0F) << 8) |
688 sp->cmn.bbRcvSizeLsb;
92494144
JS
689
690 fabric_param_changed = lpfc_check_clean_addr_bit(vport, sp);
4258e98e
JS
691 if (fabric_param_changed) {
692 /* Reset FDMI attribute masks based on config parameter */
693 if (phba->cfg_fdmi_on == LPFC_FDMI_NO_SUPPORT) {
694 vport->fdmi_hba_mask = 0;
695 vport->fdmi_port_mask = 0;
696 } else {
697 /* Setup appropriate attribute masks */
698 vport->fdmi_hba_mask = LPFC_FDMI2_HBA_ATTR;
699 if (phba->cfg_fdmi_on == LPFC_FDMI_SMART_SAN)
700 vport->fdmi_port_mask = LPFC_FDMI2_SMART_ATTR;
701 else
702 vport->fdmi_port_mask = LPFC_FDMI2_PORT_ATTR;
703 }
704
705 }
92494144
JS
706 memcpy(&vport->fabric_portname, &sp->portName,
707 sizeof(struct lpfc_name));
708 memcpy(&vport->fabric_nodename, &sp->nodeName,
709 sizeof(struct lpfc_name));
dea3101e
JB
710 memcpy(&phba->fc_fabparam, sp, sizeof(struct serv_parm));
711
92d7f7b0
JS
712 if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) {
713 if (sp->cmn.response_multiple_NPort) {
e8b62011
JS
714 lpfc_printf_vlog(vport, KERN_WARNING,
715 LOG_ELS | LOG_VPORT,
716 "1816 FLOGI NPIV supported, "
717 "response data 0x%x\n",
718 sp->cmn.response_multiple_NPort);
1b51197d 719 spin_lock_irq(&phba->hbalock);
92d7f7b0 720 phba->link_flag |= LS_NPIV_FAB_SUPPORTED;
1b51197d 721 spin_unlock_irq(&phba->hbalock);
92d7f7b0
JS
722 } else {
723 /* Because we asked f/w for NPIV it still expects us
e8b62011
JS
724 to call reg_vnpid atleast for the physcial host */
725 lpfc_printf_vlog(vport, KERN_WARNING,
726 LOG_ELS | LOG_VPORT,
727 "1817 Fabric does not support NPIV "
728 "- configuring single port mode.\n");
1b51197d 729 spin_lock_irq(&phba->hbalock);
92d7f7b0 730 phba->link_flag &= ~LS_NPIV_FAB_SUPPORTED;
1b51197d 731 spin_unlock_irq(&phba->hbalock);
92d7f7b0
JS
732 }
733 }
dea3101e 734
ae05ebe3
JS
735 /*
736 * For FC we need to do some special processing because of the SLI
737 * Port's default settings of the Common Service Parameters.
738 */
d6de08cc
JS
739 if ((phba->sli_rev == LPFC_SLI_REV4) &&
740 (phba->sli4_hba.lnk_info.lnk_tp == LPFC_LNK_TYPE_FC)) {
ae05ebe3 741 /* If physical FC port changed, unreg VFI and ALL VPIs / RPIs */
d6de08cc 742 if (fabric_param_changed)
ae05ebe3
JS
743 lpfc_unregister_fcf_prep(phba);
744
745 /* This should just update the VFI CSPs*/
746 if (vport->fc_flag & FC_VFI_REGISTERED)
747 lpfc_issue_reg_vfi(vport);
748 }
749
92494144 750 if (fabric_param_changed &&
92d7f7b0 751 !(vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)) {
dea3101e 752
92d7f7b0
JS
753 /* If our NportID changed, we need to ensure all
754 * remaining NPORTs get unreg_login'ed.
755 */
756 list_for_each_entry_safe(np, next_np,
757 &vport->fc_nodes, nlp_listp) {
d7c255b2 758 if (!NLP_CHK_NODE_ACT(np))
e47c9093 759 continue;
92d7f7b0
JS
760 if ((np->nlp_state != NLP_STE_NPR_NODE) ||
761 !(np->nlp_flag & NLP_NPR_ADISC))
762 continue;
763 spin_lock_irq(shost->host_lock);
764 np->nlp_flag &= ~NLP_NPR_ADISC;
765 spin_unlock_irq(shost->host_lock);
766 lpfc_unreg_rpi(vport, np);
767 }
78730cfe 768 lpfc_cleanup_pending_mbox(vport);
5af5eee7 769
5248a749 770 if (phba->sli_rev == LPFC_SLI_REV4) {
5af5eee7 771 lpfc_sli4_unreg_all_rpis(vport);
92d7f7b0 772 lpfc_mbx_unreg_vpi(vport);
09372820 773 spin_lock_irq(shost->host_lock);
ecfd03c6
JS
774 vport->fc_flag |= FC_VPORT_NEEDS_INIT_VPI;
775 spin_unlock_irq(shost->host_lock);
776 }
27aa1b73
JS
777
778 /*
779 * For SLI3 and SLI4, the VPI needs to be reregistered in
780 * response to this fabric parameter change event.
781 */
782 spin_lock_irq(shost->host_lock);
783 vport->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
784 spin_unlock_irq(shost->host_lock);
38b92ef8
JS
785 } else if ((phba->sli_rev == LPFC_SLI_REV4) &&
786 !(vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)) {
787 /*
788 * Driver needs to re-reg VPI in order for f/w
789 * to update the MAC address.
790 */
9589b062 791 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
38b92ef8
JS
792 lpfc_register_new_vport(phba, vport, ndlp);
793 return 0;
92d7f7b0 794 }
dea3101e 795
6fb120a7
JS
796 if (phba->sli_rev < LPFC_SLI_REV4) {
797 lpfc_nlp_set_state(vport, ndlp, NLP_STE_REG_LOGIN_ISSUE);
798 if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED &&
799 vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)
800 lpfc_register_new_vport(phba, vport, ndlp);
801 else
802 lpfc_issue_fabric_reglogin(vport);
803 } else {
804 ndlp->nlp_type |= NLP_FABRIC;
805 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
695a814e
JS
806 if ((!(vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)) &&
807 (vport->vpi_state & LPFC_VPI_REGISTERED)) {
6fb120a7
JS
808 lpfc_start_fdiscs(phba);
809 lpfc_do_scr_ns_plogi(phba, vport);
695a814e 810 } else if (vport->fc_flag & FC_VFI_REGISTERED)
ecfd03c6 811 lpfc_issue_init_vpi(vport);
1b51197d
JS
812 else {
813 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
814 "3135 Need register VFI: (x%x/%x)\n",
815 vport->fc_prevDID, vport->fc_myDID);
6fb120a7 816 lpfc_issue_reg_vfi(vport);
1b51197d 817 }
92d7f7b0 818 }
dea3101e 819 return 0;
dea3101e 820}
1b51197d 821
e59058c4 822/**
3621a710 823 * lpfc_cmpl_els_flogi_nport - Completion function for flogi to an N_Port
e59058c4
JS
824 * @vport: pointer to a host virtual N_Port data structure.
825 * @ndlp: pointer to a node-list data structure.
826 * @sp: pointer to service parameter data structure.
827 *
828 * This routine is invoked by the lpfc_cmpl_els_flogi() completion callback
829 * function to handle the completion of a Fabric Login (FLOGI) into an N_Port
830 * in a point-to-point topology. First, the @vport's N_Port Name is compared
831 * with the received N_Port Name: if the @vport's N_Port Name is greater than
832 * the received N_Port Name lexicographically, this node shall assign local
833 * N_Port ID (PT2PT_LocalID: 1) and remote N_Port ID (PT2PT_RemoteID: 2) and
834 * will send out Port Login (PLOGI) with the N_Port IDs assigned. Otherwise,
835 * this node shall just wait for the remote node to issue PLOGI and assign
836 * N_Port IDs.
837 *
838 * Return code
839 * 0 - Success
840 * -ENXIO - Fail
841 **/
dea3101e 842static int
2e0fef85
JS
843lpfc_cmpl_els_flogi_nport(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
844 struct serv_parm *sp)
dea3101e 845{
2e0fef85
JS
846 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
847 struct lpfc_hba *phba = vport->phba;
dea3101e
JB
848 LPFC_MBOXQ_t *mbox;
849 int rc;
850
2e0fef85
JS
851 spin_lock_irq(shost->host_lock);
852 vport->fc_flag &= ~(FC_FABRIC | FC_PUBLIC_LOOP);
d6de08cc 853 vport->fc_flag |= FC_PT2PT;
2e0fef85 854 spin_unlock_irq(shost->host_lock);
dea3101e 855
d6de08cc
JS
856 /* If physical FC port changed, unreg VFI and ALL VPIs / RPIs */
857 if ((phba->sli_rev == LPFC_SLI_REV4) && phba->fc_topology_changed) {
858 lpfc_unregister_fcf_prep(phba);
859
860 spin_lock_irq(shost->host_lock);
861 vport->fc_flag &= ~FC_VFI_REGISTERED;
862 spin_unlock_irq(shost->host_lock);
863 phba->fc_topology_changed = 0;
864 }
865
2e0fef85 866 rc = memcmp(&vport->fc_portname, &sp->portName,
92d7f7b0 867 sizeof(vport->fc_portname));
2eb6862a 868
dea3101e
JB
869 if (rc >= 0) {
870 /* This side will initiate the PLOGI */
2e0fef85
JS
871 spin_lock_irq(shost->host_lock);
872 vport->fc_flag |= FC_PT2PT_PLOGI;
873 spin_unlock_irq(shost->host_lock);
dea3101e
JB
874
875 /*
d6de08cc
JS
876 * N_Port ID cannot be 0, set our Id to LocalID
877 * the other side will be RemoteID.
dea3101e
JB
878 */
879
880 /* not equal */
881 if (rc)
2e0fef85 882 vport->fc_myDID = PT2PT_LocalID;
dea3101e 883
e47c9093
JS
884 /* Decrement ndlp reference count indicating that ndlp can be
885 * safely released when other references to it are done.
886 */
329f9bc7 887 lpfc_nlp_put(ndlp);
dea3101e 888
2e0fef85 889 ndlp = lpfc_findnode_did(vport, PT2PT_RemoteID);
dea3101e
JB
890 if (!ndlp) {
891 /*
892 * Cannot find existing Fabric ndlp, so allocate a
893 * new one
894 */
895 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
896 if (!ndlp)
897 goto fail;
2e0fef85 898 lpfc_nlp_init(vport, ndlp, PT2PT_RemoteID);
e47c9093
JS
899 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
900 ndlp = lpfc_enable_node(vport, ndlp,
901 NLP_STE_UNUSED_NODE);
902 if(!ndlp)
903 goto fail;
dea3101e
JB
904 }
905
906 memcpy(&ndlp->nlp_portname, &sp->portName,
2e0fef85 907 sizeof(struct lpfc_name));
dea3101e 908 memcpy(&ndlp->nlp_nodename, &sp->nodeName,
2e0fef85 909 sizeof(struct lpfc_name));
e47c9093 910 /* Set state will put ndlp onto node list if not already done */
2e0fef85
JS
911 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
912 spin_lock_irq(shost->host_lock);
dea3101e 913 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
2e0fef85 914 spin_unlock_irq(shost->host_lock);
e47c9093
JS
915 } else
916 /* This side will wait for the PLOGI, decrement ndlp reference
917 * count indicating that ndlp can be released when other
918 * references to it are done.
919 */
329f9bc7 920 lpfc_nlp_put(ndlp);
dea3101e 921
09372820
JS
922 /* If we are pt2pt with another NPort, force NPIV off! */
923 phba->sli3_options &= ~LPFC_SLI3_NPIV_ENABLED;
924
d6de08cc
JS
925 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
926 if (!mbox)
927 goto fail;
e74c03c8 928
d6de08cc
JS
929 lpfc_config_link(phba, mbox);
930
931 mbox->mbox_cmpl = lpfc_mbx_cmpl_local_config_link;
932 mbox->vport = vport;
933 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
934 if (rc == MBX_NOT_FINISHED) {
935 mempool_free(mbox, phba->mbox_mem_pool);
936 goto fail;
e74c03c8 937 }
dea3101e 938
dea3101e 939 return 0;
92d7f7b0 940fail:
dea3101e
JB
941 return -ENXIO;
942}
943
e59058c4 944/**
3621a710 945 * lpfc_cmpl_els_flogi - Completion callback function for flogi
e59058c4
JS
946 * @phba: pointer to lpfc hba data structure.
947 * @cmdiocb: pointer to lpfc command iocb data structure.
948 * @rspiocb: pointer to lpfc response iocb data structure.
949 *
950 * This routine is the top-level completion callback function for issuing
951 * a Fabric Login (FLOGI) command. If the response IOCB reported error,
952 * the lpfc_els_retry() routine shall be invoked to retry the FLOGI. If
953 * retry has been made (either immediately or delayed with lpfc_els_retry()
954 * returning 1), the command IOCB will be released and function returned.
955 * If the retry attempt has been given up (possibly reach the maximum
956 * number of retries), one additional decrement of ndlp reference shall be
957 * invoked before going out after releasing the command IOCB. This will
958 * actually release the remote node (Note, lpfc_els_free_iocb() will also
959 * invoke one decrement of ndlp reference count). If no error reported in
960 * the IOCB status, the command Port ID field is used to determine whether
961 * this is a point-to-point topology or a fabric topology: if the Port ID
962 * field is assigned, it is a fabric topology; otherwise, it is a
963 * point-to-point topology. The routine lpfc_cmpl_els_flogi_fabric() or
964 * lpfc_cmpl_els_flogi_nport() shall be invoked accordingly to handle the
965 * specific topology completion conditions.
966 **/
dea3101e 967static void
329f9bc7
JS
968lpfc_cmpl_els_flogi(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
969 struct lpfc_iocbq *rspiocb)
dea3101e 970{
2e0fef85
JS
971 struct lpfc_vport *vport = cmdiocb->vport;
972 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea3101e
JB
973 IOCB_t *irsp = &rspiocb->iocb;
974 struct lpfc_nodelist *ndlp = cmdiocb->context1;
975 struct lpfc_dmabuf *pcmd = cmdiocb->context2, *prsp;
976 struct serv_parm *sp;
0c9ab6f5 977 uint16_t fcf_index;
dea3101e
JB
978 int rc;
979
980 /* Check to see if link went down during discovery */
2e0fef85 981 if (lpfc_els_chk_latt(vport)) {
fa4066b6
JS
982 /* One additional decrement on node reference count to
983 * trigger the release of the node
984 */
329f9bc7 985 lpfc_nlp_put(ndlp);
dea3101e
JB
986 goto out;
987 }
988
858c9f6c
JS
989 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
990 "FLOGI cmpl: status:x%x/x%x state:x%x",
991 irsp->ulpStatus, irsp->un.ulpWord[4],
992 vport->port_state);
993
dea3101e 994 if (irsp->ulpStatus) {
0c9ab6f5 995 /*
a93ff37a 996 * In case of FIP mode, perform roundrobin FCF failover
0c9ab6f5
JS
997 * due to new FCF discovery
998 */
999 if ((phba->hba_flag & HBA_FIP_SUPPORT) &&
80c17849
JS
1000 (phba->fcf.fcf_flag & FCF_DISCOVERY)) {
1001 if (phba->link_state < LPFC_LINK_UP)
1002 goto stop_rr_fcf_flogi;
1003 if ((phba->fcoe_cvl_eventtag_attn ==
1004 phba->fcoe_cvl_eventtag) &&
1005 (irsp->ulpStatus == IOSTAT_LOCAL_REJECT) &&
e3d2b802
JS
1006 ((irsp->un.ulpWord[4] & IOERR_PARAM_MASK) ==
1007 IOERR_SLI_ABORTED))
80c17849
JS
1008 goto stop_rr_fcf_flogi;
1009 else
1010 phba->fcoe_cvl_eventtag_attn =
1011 phba->fcoe_cvl_eventtag;
0c9ab6f5 1012 lpfc_printf_log(phba, KERN_WARNING, LOG_FIP | LOG_ELS,
a93ff37a
JS
1013 "2611 FLOGI failed on FCF (x%x), "
1014 "status:x%x/x%x, tmo:x%x, perform "
1015 "roundrobin FCF failover\n",
38b92ef8
JS
1016 phba->fcf.current_rec.fcf_indx,
1017 irsp->ulpStatus, irsp->un.ulpWord[4],
1018 irsp->ulpTimeout);
7d791df7
JS
1019 lpfc_sli4_set_fcf_flogi_fail(phba,
1020 phba->fcf.current_rec.fcf_indx);
0c9ab6f5 1021 fcf_index = lpfc_sli4_fcf_rr_next_index_get(phba);
a93ff37a
JS
1022 rc = lpfc_sli4_fcf_rr_next_proc(vport, fcf_index);
1023 if (rc)
1024 goto out;
0c9ab6f5
JS
1025 }
1026
80c17849 1027stop_rr_fcf_flogi:
38b92ef8
JS
1028 /* FLOGI failure */
1029 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
8fe5c165
JS
1030 "2858 FLOGI failure Status:x%x/x%x TMO:x%x "
1031 "Data x%x x%x\n",
38b92ef8 1032 irsp->ulpStatus, irsp->un.ulpWord[4],
8fe5c165
JS
1033 irsp->ulpTimeout, phba->hba_flag,
1034 phba->fcf.fcf_flag);
38b92ef8 1035
dea3101e 1036 /* Check for retry */
2e0fef85 1037 if (lpfc_els_retry(phba, cmdiocb, rspiocb))
dea3101e 1038 goto out;
2e0fef85 1039
76a95d75
JS
1040 /* FLOGI failure */
1041 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
1042 "0100 FLOGI failure Status:x%x/x%x TMO:x%x\n",
1043 irsp->ulpStatus, irsp->un.ulpWord[4],
1044 irsp->ulpTimeout);
1045
dea3101e 1046 /* FLOGI failed, so there is no fabric */
2e0fef85
JS
1047 spin_lock_irq(shost->host_lock);
1048 vport->fc_flag &= ~(FC_FABRIC | FC_PUBLIC_LOOP);
1049 spin_unlock_irq(shost->host_lock);
dea3101e 1050
329f9bc7 1051 /* If private loop, then allow max outstanding els to be
dea3101e
JB
1052 * LPFC_MAX_DISC_THREADS (32). Scanning in the case of no
1053 * alpa map would take too long otherwise.
1054 */
1b51197d 1055 if (phba->alpa_map[0] == 0)
3de2a653 1056 vport->cfg_discovery_threads = LPFC_MAX_DISC_THREADS;
ff78d8f9
JS
1057 if ((phba->sli_rev == LPFC_SLI_REV4) &&
1058 (!(vport->fc_flag & FC_VFI_REGISTERED) ||
e74c03c8
JS
1059 (vport->fc_prevDID != vport->fc_myDID) ||
1060 phba->fc_topology_changed)) {
1061 if (vport->fc_flag & FC_VFI_REGISTERED) {
1062 if (phba->fc_topology_changed) {
1063 lpfc_unregister_fcf_prep(phba);
1064 spin_lock_irq(shost->host_lock);
1065 vport->fc_flag &= ~FC_VFI_REGISTERED;
1066 spin_unlock_irq(shost->host_lock);
1067 phba->fc_topology_changed = 0;
1068 } else {
1069 lpfc_sli4_unreg_all_rpis(vport);
1070 }
1071 }
ff78d8f9
JS
1072 lpfc_issue_reg_vfi(vport);
1073 lpfc_nlp_put(ndlp);
1074 goto out;
dea3101e 1075 }
dea3101e
JB
1076 goto flogifail;
1077 }
695a814e
JS
1078 spin_lock_irq(shost->host_lock);
1079 vport->fc_flag &= ~FC_VPORT_CVL_RCVD;
4b40c59e 1080 vport->fc_flag &= ~FC_VPORT_LOGO_RCVD;
695a814e 1081 spin_unlock_irq(shost->host_lock);
dea3101e
JB
1082
1083 /*
1084 * The FLogI succeeded. Sync the data for the CPU before
1085 * accessing it.
1086 */
1087 prsp = list_get_first(&pcmd->list, struct lpfc_dmabuf, list);
a2fc4aef
JS
1088 if (!prsp)
1089 goto out;
dea3101e
JB
1090 sp = prsp->virt + sizeof(uint32_t);
1091
1092 /* FLOGI completes successfully */
e8b62011 1093 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
88f43a08
JS
1094 "0101 FLOGI completes successfully, I/O tag:x%x, "
1095 "Data: x%x x%x x%x x%x x%x x%x\n", cmdiocb->iotag,
e8b62011 1096 irsp->un.ulpWord[4], sp->cmn.e_d_tov,
e74c03c8
JS
1097 sp->cmn.w2.r_a_tov, sp->cmn.edtovResolution,
1098 vport->port_state, vport->fc_flag);
dea3101e 1099
2e0fef85 1100 if (vport->port_state == LPFC_FLOGI) {
dea3101e
JB
1101 /*
1102 * If Common Service Parameters indicate Nport
1103 * we are point to point, if Fport we are Fabric.
1104 */
1105 if (sp->cmn.fPort)
2e0fef85 1106 rc = lpfc_cmpl_els_flogi_fabric(vport, ndlp, sp, irsp);
76a95d75 1107 else if (!(phba->hba_flag & HBA_FCOE_MODE))
2e0fef85 1108 rc = lpfc_cmpl_els_flogi_nport(vport, ndlp, sp);
dbb6b3ab
JS
1109 else {
1110 lpfc_printf_vlog(vport, KERN_ERR,
1111 LOG_FIP | LOG_ELS,
1112 "2831 FLOGI response with cleared Fabric "
1113 "bit fcf_index 0x%x "
1114 "Switch Name %02x%02x%02x%02x%02x%02x%02x%02x "
1115 "Fabric Name "
1116 "%02x%02x%02x%02x%02x%02x%02x%02x\n",
1117 phba->fcf.current_rec.fcf_indx,
1118 phba->fcf.current_rec.switch_name[0],
1119 phba->fcf.current_rec.switch_name[1],
1120 phba->fcf.current_rec.switch_name[2],
1121 phba->fcf.current_rec.switch_name[3],
1122 phba->fcf.current_rec.switch_name[4],
1123 phba->fcf.current_rec.switch_name[5],
1124 phba->fcf.current_rec.switch_name[6],
1125 phba->fcf.current_rec.switch_name[7],
1126 phba->fcf.current_rec.fabric_name[0],
1127 phba->fcf.current_rec.fabric_name[1],
1128 phba->fcf.current_rec.fabric_name[2],
1129 phba->fcf.current_rec.fabric_name[3],
1130 phba->fcf.current_rec.fabric_name[4],
1131 phba->fcf.current_rec.fabric_name[5],
1132 phba->fcf.current_rec.fabric_name[6],
1133 phba->fcf.current_rec.fabric_name[7]);
1134 lpfc_nlp_put(ndlp);
1135 spin_lock_irq(&phba->hbalock);
1136 phba->fcf.fcf_flag &= ~FCF_DISCOVERY;
a93ff37a 1137 phba->hba_flag &= ~(FCF_RR_INPROG | HBA_DEVLOSS_TMO);
dbb6b3ab
JS
1138 spin_unlock_irq(&phba->hbalock);
1139 goto out;
1140 }
0c9ab6f5
JS
1141 if (!rc) {
1142 /* Mark the FCF discovery process done */
999d813f
JS
1143 if (phba->hba_flag & HBA_FIP_SUPPORT)
1144 lpfc_printf_vlog(vport, KERN_INFO, LOG_FIP |
1145 LOG_ELS,
a93ff37a
JS
1146 "2769 FLOGI to FCF (x%x) "
1147 "completed successfully\n",
999d813f 1148 phba->fcf.current_rec.fcf_indx);
0c9ab6f5
JS
1149 spin_lock_irq(&phba->hbalock);
1150 phba->fcf.fcf_flag &= ~FCF_DISCOVERY;
a93ff37a 1151 phba->hba_flag &= ~(FCF_RR_INPROG | HBA_DEVLOSS_TMO);
0c9ab6f5 1152 spin_unlock_irq(&phba->hbalock);
dea3101e 1153 goto out;
0c9ab6f5 1154 }
dea3101e
JB
1155 }
1156
1157flogifail:
8fe5c165
JS
1158 spin_lock_irq(&phba->hbalock);
1159 phba->fcf.fcf_flag &= ~FCF_DISCOVERY;
1160 spin_unlock_irq(&phba->hbalock);
d6de08cc 1161
329f9bc7 1162 lpfc_nlp_put(ndlp);
dea3101e 1163
858c9f6c 1164 if (!lpfc_error_lost_link(irsp)) {
dea3101e 1165 /* FLOGI failed, so just use loop map to make discovery list */
2e0fef85 1166 lpfc_disc_list_loopmap(vport);
dea3101e
JB
1167
1168 /* Start discovery */
2e0fef85 1169 lpfc_disc_start(vport);
87af33fe 1170 } else if (((irsp->ulpStatus != IOSTAT_LOCAL_REJECT) ||
e3d2b802
JS
1171 (((irsp->un.ulpWord[4] & IOERR_PARAM_MASK) !=
1172 IOERR_SLI_ABORTED) &&
1173 ((irsp->un.ulpWord[4] & IOERR_PARAM_MASK) !=
1174 IOERR_SLI_DOWN))) &&
87af33fe
JS
1175 (phba->link_state != LPFC_CLEAR_LA)) {
1176 /* If FLOGI failed enable link interrupt. */
1177 lpfc_issue_clear_la(phba, vport);
dea3101e 1178 }
dea3101e
JB
1179out:
1180 lpfc_els_free_iocb(phba, cmdiocb);
1181}
1182
e59058c4 1183/**
3621a710 1184 * lpfc_issue_els_flogi - Issue an flogi iocb command for a vport
e59058c4
JS
1185 * @vport: pointer to a host virtual N_Port data structure.
1186 * @ndlp: pointer to a node-list data structure.
1187 * @retry: number of retries to the command IOCB.
1188 *
1189 * This routine issues a Fabric Login (FLOGI) Request ELS command
1190 * for a @vport. The initiator service parameters are put into the payload
1191 * of the FLOGI Request IOCB and the top-level callback function pointer
1192 * to lpfc_cmpl_els_flogi() routine is put to the IOCB completion callback
1193 * function field. The lpfc_issue_fabric_iocb routine is invoked to send
1194 * out FLOGI ELS command with one outstanding fabric IOCB at a time.
1195 *
1196 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
1197 * will be incremented by 1 for holding the ndlp and the reference to ndlp
1198 * will be stored into the context1 field of the IOCB for the completion
1199 * callback function to the FLOGI ELS command.
1200 *
1201 * Return code
1202 * 0 - successfully issued flogi iocb for @vport
1203 * 1 - failed to issue flogi iocb for @vport
1204 **/
dea3101e 1205static int
2e0fef85 1206lpfc_issue_els_flogi(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
dea3101e
JB
1207 uint8_t retry)
1208{
2e0fef85 1209 struct lpfc_hba *phba = vport->phba;
dea3101e
JB
1210 struct serv_parm *sp;
1211 IOCB_t *icmd;
1212 struct lpfc_iocbq *elsiocb;
dea3101e
JB
1213 uint8_t *pcmd;
1214 uint16_t cmdsize;
1215 uint32_t tmo;
1216 int rc;
1217
92d7f7b0 1218 cmdsize = (sizeof(uint32_t) + sizeof(struct serv_parm));
2e0fef85
JS
1219 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
1220 ndlp->nlp_DID, ELS_CMD_FLOGI);
92d7f7b0 1221
488d1469 1222 if (!elsiocb)
c9f8735b 1223 return 1;
dea3101e
JB
1224
1225 icmd = &elsiocb->iocb;
1226 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
1227
1228 /* For FLOGI request, remainder of payload is service parameters */
1229 *((uint32_t *) (pcmd)) = ELS_CMD_FLOGI;
92d7f7b0
JS
1230 pcmd += sizeof(uint32_t);
1231 memcpy(pcmd, &vport->fc_sparam, sizeof(struct serv_parm));
dea3101e
JB
1232 sp = (struct serv_parm *) pcmd;
1233
1234 /* Setup CSPs accordingly for Fabric */
1235 sp->cmn.e_d_tov = 0;
1236 sp->cmn.w2.r_a_tov = 0;
df9e1b59 1237 sp->cmn.virtual_fabric_support = 0;
dea3101e 1238 sp->cls1.classValid = 0;
dea3101e
JB
1239 if (sp->cmn.fcphLow < FC_PH3)
1240 sp->cmn.fcphLow = FC_PH3;
1241 if (sp->cmn.fcphHigh < FC_PH3)
1242 sp->cmn.fcphHigh = FC_PH3;
1243
c31098ce
JS
1244 if (phba->sli_rev == LPFC_SLI_REV4) {
1245 if (bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf) ==
1246 LPFC_SLI_INTF_IF_TYPE_0) {
1247 elsiocb->iocb.ulpCt_h = ((SLI4_CT_FCFI >> 1) & 1);
1248 elsiocb->iocb.ulpCt_l = (SLI4_CT_FCFI & 1);
1249 /* FLOGI needs to be 3 for WQE FCFI */
1250 /* Set the fcfi to the fcfi we registered with */
1251 elsiocb->iocb.ulpContext = phba->fcf.fcfi;
1252 }
0f37887e
JS
1253 /* Can't do SLI4 class2 without support sequence coalescing */
1254 sp->cls2.classValid = 0;
1255 sp->cls2.seqDelivery = 0;
5248a749 1256 } else {
0f37887e
JS
1257 /* Historical, setting sequential-delivery bit for SLI3 */
1258 sp->cls2.seqDelivery = (sp->cls2.classValid) ? 1 : 0;
1259 sp->cls3.seqDelivery = (sp->cls3.classValid) ? 1 : 0;
5248a749
JS
1260 if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) {
1261 sp->cmn.request_multiple_Nport = 1;
1262 /* For FLOGI, Let FLOGI rsp set the NPortID for VPI 0 */
1263 icmd->ulpCt_h = 1;
1264 icmd->ulpCt_l = 0;
1265 } else
1266 sp->cmn.request_multiple_Nport = 0;
92d7f7b0
JS
1267 }
1268
76a95d75 1269 if (phba->fc_topology != LPFC_TOPOLOGY_LOOP) {
858c9f6c
JS
1270 icmd->un.elsreq64.myID = 0;
1271 icmd->un.elsreq64.fl = 1;
1272 }
1273
dea3101e
JB
1274 tmo = phba->fc_ratov;
1275 phba->fc_ratov = LPFC_DISC_FLOGI_TMO;
2e0fef85 1276 lpfc_set_disctmo(vport);
dea3101e
JB
1277 phba->fc_ratov = tmo;
1278
1279 phba->fc_stat.elsXmitFLOGI++;
1280 elsiocb->iocb_cmpl = lpfc_cmpl_els_flogi;
858c9f6c
JS
1281
1282 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
1283 "Issue FLOGI: opt:x%x",
1284 phba->sli3_options, 0, 0);
1285
92d7f7b0 1286 rc = lpfc_issue_fabric_iocb(phba, elsiocb);
dea3101e
JB
1287 if (rc == IOCB_ERROR) {
1288 lpfc_els_free_iocb(phba, elsiocb);
c9f8735b 1289 return 1;
dea3101e 1290 }
c9f8735b 1291 return 0;
dea3101e
JB
1292}
1293
e59058c4 1294/**
3621a710 1295 * lpfc_els_abort_flogi - Abort all outstanding flogi iocbs
e59058c4
JS
1296 * @phba: pointer to lpfc hba data structure.
1297 *
1298 * This routine aborts all the outstanding Fabric Login (FLOGI) IOCBs
1299 * with a @phba. This routine walks all the outstanding IOCBs on the txcmplq
1300 * list and issues an abort IOCB commond on each outstanding IOCB that
1301 * contains a active Fabric_DID ndlp. Note that this function is to issue
1302 * the abort IOCB command on all the outstanding IOCBs, thus when this
1303 * function returns, it does not guarantee all the IOCBs are actually aborted.
1304 *
1305 * Return code
3ad2f3fb 1306 * 0 - Successfully issued abort iocb on all outstanding flogis (Always 0)
e59058c4 1307 **/
dea3101e 1308int
2e0fef85 1309lpfc_els_abort_flogi(struct lpfc_hba *phba)
dea3101e
JB
1310{
1311 struct lpfc_sli_ring *pring;
1312 struct lpfc_iocbq *iocb, *next_iocb;
1313 struct lpfc_nodelist *ndlp;
1314 IOCB_t *icmd;
1315
1316 /* Abort outstanding I/O on NPort <nlp_DID> */
1317 lpfc_printf_log(phba, KERN_INFO, LOG_DISCOVERY,
e8b62011
JS
1318 "0201 Abort outstanding I/O on NPort x%x\n",
1319 Fabric_DID);
dea3101e
JB
1320
1321 pring = &phba->sli.ring[LPFC_ELS_RING];
1322
1323 /*
1324 * Check the txcmplq for an iocb that matches the nport the driver is
1325 * searching for.
1326 */
2e0fef85 1327 spin_lock_irq(&phba->hbalock);
dea3101e
JB
1328 list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq, list) {
1329 icmd = &iocb->iocb;
1b51197d 1330 if (icmd->ulpCommand == CMD_ELS_REQUEST64_CR) {
dea3101e 1331 ndlp = (struct lpfc_nodelist *)(iocb->context1);
58da1ffb
JS
1332 if (ndlp && NLP_CHK_NODE_ACT(ndlp) &&
1333 (ndlp->nlp_DID == Fabric_DID))
07951076 1334 lpfc_sli_issue_abort_iotag(phba, pring, iocb);
dea3101e
JB
1335 }
1336 }
2e0fef85 1337 spin_unlock_irq(&phba->hbalock);
dea3101e
JB
1338
1339 return 0;
1340}
1341
e59058c4 1342/**
3621a710 1343 * lpfc_initial_flogi - Issue an initial fabric login for a vport
e59058c4
JS
1344 * @vport: pointer to a host virtual N_Port data structure.
1345 *
1346 * This routine issues an initial Fabric Login (FLOGI) for the @vport
1347 * specified. It first searches the ndlp with the Fabric_DID (0xfffffe) from
1348 * the @vport's ndlp list. If no such ndlp found, it will create an ndlp and
1349 * put it into the @vport's ndlp list. If an inactive ndlp found on the list,
1350 * it will just be enabled and made active. The lpfc_issue_els_flogi() routine
1351 * is then invoked with the @vport and the ndlp to perform the FLOGI for the
1352 * @vport.
1353 *
1354 * Return code
1355 * 0 - failed to issue initial flogi for @vport
1356 * 1 - successfully issued initial flogi for @vport
1357 **/
dea3101e 1358int
2e0fef85 1359lpfc_initial_flogi(struct lpfc_vport *vport)
dea3101e 1360{
2e0fef85 1361 struct lpfc_hba *phba = vport->phba;
dea3101e
JB
1362 struct lpfc_nodelist *ndlp;
1363
98c9ea5c
JS
1364 vport->port_state = LPFC_FLOGI;
1365 lpfc_set_disctmo(vport);
1366
c9f8735b 1367 /* First look for the Fabric ndlp */
2e0fef85 1368 ndlp = lpfc_findnode_did(vport, Fabric_DID);
c9f8735b 1369 if (!ndlp) {
dea3101e 1370 /* Cannot find existing Fabric ndlp, so allocate a new one */
c9f8735b
JW
1371 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
1372 if (!ndlp)
1373 return 0;
2e0fef85 1374 lpfc_nlp_init(vport, ndlp, Fabric_DID);
6fb120a7
JS
1375 /* Set the node type */
1376 ndlp->nlp_type |= NLP_FABRIC;
e47c9093
JS
1377 /* Put ndlp onto node list */
1378 lpfc_enqueue_node(vport, ndlp);
1379 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
1380 /* re-setup ndlp without removing from node list */
1381 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
1382 if (!ndlp)
1383 return 0;
dea3101e 1384 }
87af33fe 1385
5ac6b303 1386 if (lpfc_issue_els_flogi(vport, ndlp, 0)) {
fa4066b6
JS
1387 /* This decrement of reference count to node shall kick off
1388 * the release of the node.
1389 */
329f9bc7 1390 lpfc_nlp_put(ndlp);
5ac6b303
JS
1391 return 0;
1392 }
c9f8735b 1393 return 1;
dea3101e
JB
1394}
1395
e59058c4 1396/**
3621a710 1397 * lpfc_initial_fdisc - Issue an initial fabric discovery for a vport
e59058c4
JS
1398 * @vport: pointer to a host virtual N_Port data structure.
1399 *
1400 * This routine issues an initial Fabric Discover (FDISC) for the @vport
1401 * specified. It first searches the ndlp with the Fabric_DID (0xfffffe) from
1402 * the @vport's ndlp list. If no such ndlp found, it will create an ndlp and
1403 * put it into the @vport's ndlp list. If an inactive ndlp found on the list,
1404 * it will just be enabled and made active. The lpfc_issue_els_fdisc() routine
1405 * is then invoked with the @vport and the ndlp to perform the FDISC for the
1406 * @vport.
1407 *
1408 * Return code
1409 * 0 - failed to issue initial fdisc for @vport
1410 * 1 - successfully issued initial fdisc for @vport
1411 **/
92d7f7b0
JS
1412int
1413lpfc_initial_fdisc(struct lpfc_vport *vport)
1414{
1415 struct lpfc_hba *phba = vport->phba;
1416 struct lpfc_nodelist *ndlp;
1417
1418 /* First look for the Fabric ndlp */
1419 ndlp = lpfc_findnode_did(vport, Fabric_DID);
1420 if (!ndlp) {
1421 /* Cannot find existing Fabric ndlp, so allocate a new one */
1422 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
1423 if (!ndlp)
1424 return 0;
1425 lpfc_nlp_init(vport, ndlp, Fabric_DID);
e47c9093
JS
1426 /* Put ndlp onto node list */
1427 lpfc_enqueue_node(vport, ndlp);
1428 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
1429 /* re-setup ndlp without removing from node list */
1430 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
1431 if (!ndlp)
1432 return 0;
92d7f7b0 1433 }
e47c9093 1434
92d7f7b0 1435 if (lpfc_issue_els_fdisc(vport, ndlp, 0)) {
fa4066b6
JS
1436 /* decrement node reference count to trigger the release of
1437 * the node.
1438 */
92d7f7b0 1439 lpfc_nlp_put(ndlp);
fa4066b6 1440 return 0;
92d7f7b0
JS
1441 }
1442 return 1;
1443}
87af33fe 1444
e59058c4 1445/**
3621a710 1446 * lpfc_more_plogi - Check and issue remaining plogis for a vport
e59058c4
JS
1447 * @vport: pointer to a host virtual N_Port data structure.
1448 *
1449 * This routine checks whether there are more remaining Port Logins
1450 * (PLOGI) to be issued for the @vport. If so, it will invoke the routine
1451 * lpfc_els_disc_plogi() to go through the Node Port Recovery (NPR) nodes
1452 * to issue ELS PLOGIs up to the configured discover threads with the
1453 * @vport (@vport->cfg_discovery_threads). The function also decrement
1454 * the @vport's num_disc_node by 1 if it is not already 0.
1455 **/
87af33fe 1456void
2e0fef85 1457lpfc_more_plogi(struct lpfc_vport *vport)
dea3101e 1458{
2e0fef85
JS
1459 if (vport->num_disc_nodes)
1460 vport->num_disc_nodes--;
dea3101e
JB
1461
1462 /* Continue discovery with <num_disc_nodes> PLOGIs to go */
e8b62011
JS
1463 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
1464 "0232 Continue discovery with %d PLOGIs to go "
1465 "Data: x%x x%x x%x\n",
1466 vport->num_disc_nodes, vport->fc_plogi_cnt,
1467 vport->fc_flag, vport->port_state);
dea3101e 1468 /* Check to see if there are more PLOGIs to be sent */
2e0fef85
JS
1469 if (vport->fc_flag & FC_NLP_MORE)
1470 /* go thru NPR nodes and issue any remaining ELS PLOGIs */
db6f1c2f 1471 lpfc_els_disc_plogi(vport);
2e0fef85 1472
dea3101e
JB
1473 return;
1474}
1475
e59058c4 1476/**
3621a710 1477 * lpfc_plogi_confirm_nport - Confirm pologi wwpn matches stored ndlp
e59058c4
JS
1478 * @phba: pointer to lpfc hba data structure.
1479 * @prsp: pointer to response IOCB payload.
1480 * @ndlp: pointer to a node-list data structure.
1481 *
1482 * This routine checks and indicates whether the WWPN of an N_Port, retrieved
1483 * from a PLOGI, matches the WWPN that is stored in the @ndlp for that N_POrt.
1484 * The following cases are considered N_Port confirmed:
1485 * 1) The N_Port is a Fabric ndlp; 2) The @ndlp is on vport list and matches
1486 * the WWPN of the N_Port logged into; 3) The @ndlp is not on vport list but
1487 * it does not have WWPN assigned either. If the WWPN is confirmed, the
1488 * pointer to the @ndlp will be returned. If the WWPN is not confirmed:
1489 * 1) if there is a node on vport list other than the @ndlp with the same
1490 * WWPN of the N_Port PLOGI logged into, the lpfc_unreg_rpi() will be invoked
1491 * on that node to release the RPI associated with the node; 2) if there is
1492 * no node found on vport list with the same WWPN of the N_Port PLOGI logged
1493 * into, a new node shall be allocated (or activated). In either case, the
1494 * parameters of the @ndlp shall be copied to the new_ndlp, the @ndlp shall
1495 * be released and the new_ndlp shall be put on to the vport node list and
1496 * its pointer returned as the confirmed node.
1497 *
1498 * Note that before the @ndlp got "released", the keepDID from not-matching
1499 * or inactive "new_ndlp" on the vport node list is assigned to the nlp_DID
1500 * of the @ndlp. This is because the release of @ndlp is actually to put it
1501 * into an inactive state on the vport node list and the vport node list
1502 * management algorithm does not allow two node with a same DID.
1503 *
1504 * Return code
1505 * pointer to the PLOGI N_Port @ndlp
1506 **/
488d1469 1507static struct lpfc_nodelist *
92d7f7b0 1508lpfc_plogi_confirm_nport(struct lpfc_hba *phba, uint32_t *prsp,
488d1469
JS
1509 struct lpfc_nodelist *ndlp)
1510{
2e0fef85 1511 struct lpfc_vport *vport = ndlp->vport;
953ceeda 1512 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
488d1469 1513 struct lpfc_nodelist *new_ndlp;
0ff10d46
JS
1514 struct lpfc_rport_data *rdata;
1515 struct fc_rport *rport;
488d1469 1516 struct serv_parm *sp;
92d7f7b0 1517 uint8_t name[sizeof(struct lpfc_name)];
e5abba4c 1518 uint32_t rc, keepDID = 0, keep_nlp_flag = 0;
953ceeda 1519 uint16_t keep_nlp_state;
38b92ef8
JS
1520 int put_node;
1521 int put_rport;
cff261f6 1522 unsigned long *active_rrqs_xri_bitmap = NULL;
488d1469 1523
2fb9bd8b
JS
1524 /* Fabric nodes can have the same WWPN so we don't bother searching
1525 * by WWPN. Just return the ndlp that was given to us.
1526 */
1527 if (ndlp->nlp_type & NLP_FABRIC)
1528 return ndlp;
1529
92d7f7b0 1530 sp = (struct serv_parm *) ((uint8_t *) prsp + sizeof(uint32_t));
685f0bf7 1531 memset(name, 0, sizeof(struct lpfc_name));
488d1469 1532
685f0bf7 1533 /* Now we find out if the NPort we are logging into, matches the WWPN
488d1469
JS
1534 * we have for that ndlp. If not, we have some work to do.
1535 */
2e0fef85 1536 new_ndlp = lpfc_findnode_wwpn(vport, &sp->portName);
488d1469 1537
e47c9093 1538 if (new_ndlp == ndlp && NLP_CHK_NODE_ACT(new_ndlp))
488d1469 1539 return ndlp;
cff261f6
JS
1540 if (phba->sli_rev == LPFC_SLI_REV4) {
1541 active_rrqs_xri_bitmap = mempool_alloc(phba->active_rrq_pool,
1542 GFP_KERNEL);
1543 if (active_rrqs_xri_bitmap)
1544 memset(active_rrqs_xri_bitmap, 0,
1545 phba->cfg_rrq_xri_bitmap_sz);
1546 }
488d1469 1547
34f5ad8b
JS
1548 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
1549 "3178 PLOGI confirm: ndlp %p x%x: new_ndlp %p\n",
1550 ndlp, ndlp->nlp_DID, new_ndlp);
1551
488d1469 1552 if (!new_ndlp) {
2e0fef85
JS
1553 rc = memcmp(&ndlp->nlp_portname, name,
1554 sizeof(struct lpfc_name));
cff261f6
JS
1555 if (!rc) {
1556 if (active_rrqs_xri_bitmap)
1557 mempool_free(active_rrqs_xri_bitmap,
1558 phba->active_rrq_pool);
92795650 1559 return ndlp;
cff261f6 1560 }
488d1469 1561 new_ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_ATOMIC);
cff261f6
JS
1562 if (!new_ndlp) {
1563 if (active_rrqs_xri_bitmap)
1564 mempool_free(active_rrqs_xri_bitmap,
1565 phba->active_rrq_pool);
488d1469 1566 return ndlp;
cff261f6 1567 }
2e0fef85 1568 lpfc_nlp_init(vport, new_ndlp, ndlp->nlp_DID);
e47c9093 1569 } else if (!NLP_CHK_NODE_ACT(new_ndlp)) {
58da1ffb
JS
1570 rc = memcmp(&ndlp->nlp_portname, name,
1571 sizeof(struct lpfc_name));
cff261f6
JS
1572 if (!rc) {
1573 if (active_rrqs_xri_bitmap)
1574 mempool_free(active_rrqs_xri_bitmap,
1575 phba->active_rrq_pool);
58da1ffb 1576 return ndlp;
cff261f6 1577 }
e47c9093
JS
1578 new_ndlp = lpfc_enable_node(vport, new_ndlp,
1579 NLP_STE_UNUSED_NODE);
cff261f6
JS
1580 if (!new_ndlp) {
1581 if (active_rrqs_xri_bitmap)
1582 mempool_free(active_rrqs_xri_bitmap,
1583 phba->active_rrq_pool);
e47c9093 1584 return ndlp;
cff261f6 1585 }
58da1ffb 1586 keepDID = new_ndlp->nlp_DID;
cff261f6
JS
1587 if ((phba->sli_rev == LPFC_SLI_REV4) && active_rrqs_xri_bitmap)
1588 memcpy(active_rrqs_xri_bitmap,
1589 new_ndlp->active_rrqs_xri_bitmap,
1590 phba->cfg_rrq_xri_bitmap_sz);
19ca7609 1591 } else {
58da1ffb 1592 keepDID = new_ndlp->nlp_DID;
cff261f6
JS
1593 if (phba->sli_rev == LPFC_SLI_REV4 &&
1594 active_rrqs_xri_bitmap)
1595 memcpy(active_rrqs_xri_bitmap,
1596 new_ndlp->active_rrqs_xri_bitmap,
1597 phba->cfg_rrq_xri_bitmap_sz);
19ca7609 1598 }
488d1469 1599
2e0fef85 1600 lpfc_unreg_rpi(vport, new_ndlp);
488d1469 1601 new_ndlp->nlp_DID = ndlp->nlp_DID;
92795650 1602 new_ndlp->nlp_prev_state = ndlp->nlp_prev_state;
19ca7609 1603 if (phba->sli_rev == LPFC_SLI_REV4)
cff261f6
JS
1604 memcpy(new_ndlp->active_rrqs_xri_bitmap,
1605 ndlp->active_rrqs_xri_bitmap,
1606 phba->cfg_rrq_xri_bitmap_sz);
0ff10d46 1607
953ceeda 1608 spin_lock_irq(shost->host_lock);
e5abba4c
JS
1609 keep_nlp_flag = new_ndlp->nlp_flag;
1610 new_ndlp->nlp_flag = ndlp->nlp_flag;
1611 ndlp->nlp_flag = keep_nlp_flag;
953ceeda 1612 spin_unlock_irq(shost->host_lock);
0ff10d46 1613
953ceeda
JS
1614 /* Set nlp_states accordingly */
1615 keep_nlp_state = new_ndlp->nlp_state;
2e0fef85 1616 lpfc_nlp_set_state(vport, new_ndlp, ndlp->nlp_state);
488d1469 1617
2e0fef85 1618 /* Move this back to NPR state */
87af33fe
JS
1619 if (memcmp(&ndlp->nlp_portname, name, sizeof(struct lpfc_name)) == 0) {
1620 /* The new_ndlp is replacing ndlp totally, so we need
1621 * to put ndlp on UNUSED list and try to free it.
1622 */
34f5ad8b
JS
1623 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
1624 "3179 PLOGI confirm NEW: %x %x\n",
1625 new_ndlp->nlp_DID, keepDID);
0ff10d46
JS
1626
1627 /* Fix up the rport accordingly */
1628 rport = ndlp->rport;
1629 if (rport) {
1630 rdata = rport->dd_data;
1631 if (rdata->pnode == ndlp) {
466e840b 1632 /* break the link before dropping the ref */
0ff10d46 1633 ndlp->rport = NULL;
466e840b 1634 lpfc_nlp_put(ndlp);
0ff10d46
JS
1635 rdata->pnode = lpfc_nlp_get(new_ndlp);
1636 new_ndlp->rport = rport;
1637 }
1638 new_ndlp->nlp_type = ndlp->nlp_type;
1639 }
58da1ffb
JS
1640 /* We shall actually free the ndlp with both nlp_DID and
1641 * nlp_portname fields equals 0 to avoid any ndlp on the
1642 * nodelist never to be used.
1643 */
1644 if (ndlp->nlp_DID == 0) {
1645 spin_lock_irq(&phba->ndlp_lock);
1646 NLP_SET_FREE_REQ(ndlp);
1647 spin_unlock_irq(&phba->ndlp_lock);
1648 }
0ff10d46 1649
58da1ffb
JS
1650 /* Two ndlps cannot have the same did on the nodelist */
1651 ndlp->nlp_DID = keepDID;
cff261f6
JS
1652 if (phba->sli_rev == LPFC_SLI_REV4 &&
1653 active_rrqs_xri_bitmap)
1654 memcpy(ndlp->active_rrqs_xri_bitmap,
1655 active_rrqs_xri_bitmap,
1656 phba->cfg_rrq_xri_bitmap_sz);
e5abba4c
JS
1657
1658 if (!NLP_CHK_NODE_ACT(ndlp))
1659 lpfc_drop_node(vport, ndlp);
87af33fe 1660 }
92795650 1661 else {
34f5ad8b
JS
1662 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
1663 "3180 PLOGI confirm SWAP: %x %x\n",
1664 new_ndlp->nlp_DID, keepDID);
1665
2e0fef85 1666 lpfc_unreg_rpi(vport, ndlp);
34f5ad8b 1667
58da1ffb
JS
1668 /* Two ndlps cannot have the same did */
1669 ndlp->nlp_DID = keepDID;
cff261f6
JS
1670 if (phba->sli_rev == LPFC_SLI_REV4 &&
1671 active_rrqs_xri_bitmap)
1672 memcpy(ndlp->active_rrqs_xri_bitmap,
1673 active_rrqs_xri_bitmap,
1674 phba->cfg_rrq_xri_bitmap_sz);
34f5ad8b 1675
953ceeda
JS
1676 /* Since we are switching over to the new_ndlp,
1677 * reset the old ndlp state
34f5ad8b
JS
1678 */
1679 if ((ndlp->nlp_state == NLP_STE_UNMAPPED_NODE) ||
1680 (ndlp->nlp_state == NLP_STE_MAPPED_NODE))
953ceeda
JS
1681 keep_nlp_state = NLP_STE_NPR_NODE;
1682 lpfc_nlp_set_state(vport, ndlp, keep_nlp_state);
34f5ad8b 1683
38b92ef8
JS
1684 /* Fix up the rport accordingly */
1685 rport = ndlp->rport;
1686 if (rport) {
1687 rdata = rport->dd_data;
1688 put_node = rdata->pnode != NULL;
1689 put_rport = ndlp->rport != NULL;
1690 rdata->pnode = NULL;
1691 ndlp->rport = NULL;
1692 if (put_node)
1693 lpfc_nlp_put(ndlp);
1694 if (put_rport)
1695 put_device(&rport->dev);
1696 }
92795650 1697 }
cff261f6
JS
1698 if (phba->sli_rev == LPFC_SLI_REV4 &&
1699 active_rrqs_xri_bitmap)
1700 mempool_free(active_rrqs_xri_bitmap,
1701 phba->active_rrq_pool);
488d1469
JS
1702 return new_ndlp;
1703}
1704
e59058c4 1705/**
3621a710 1706 * lpfc_end_rscn - Check and handle more rscn for a vport
e59058c4
JS
1707 * @vport: pointer to a host virtual N_Port data structure.
1708 *
1709 * This routine checks whether more Registration State Change
1710 * Notifications (RSCNs) came in while the discovery state machine was in
1711 * the FC_RSCN_MODE. If so, the lpfc_els_handle_rscn() routine will be
1712 * invoked to handle the additional RSCNs for the @vport. Otherwise, the
1713 * FC_RSCN_MODE bit will be cleared with the @vport to mark as the end of
1714 * handling the RSCNs.
1715 **/
87af33fe
JS
1716void
1717lpfc_end_rscn(struct lpfc_vport *vport)
1718{
1719 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1720
1721 if (vport->fc_flag & FC_RSCN_MODE) {
1722 /*
1723 * Check to see if more RSCNs came in while we were
1724 * processing this one.
1725 */
1726 if (vport->fc_rscn_id_cnt ||
1727 (vport->fc_flag & FC_RSCN_DISCOVERY) != 0)
1728 lpfc_els_handle_rscn(vport);
1729 else {
1730 spin_lock_irq(shost->host_lock);
1731 vport->fc_flag &= ~FC_RSCN_MODE;
1732 spin_unlock_irq(shost->host_lock);
1733 }
1734 }
1735}
1736
19ca7609
JS
1737/**
1738 * lpfc_cmpl_els_rrq - Completion handled for els RRQs.
1739 * @phba: pointer to lpfc hba data structure.
1740 * @cmdiocb: pointer to lpfc command iocb data structure.
1741 * @rspiocb: pointer to lpfc response iocb data structure.
1742 *
1743 * This routine will call the clear rrq function to free the rrq and
1744 * clear the xri's bit in the ndlp's xri_bitmap. If the ndlp does not
1745 * exist then the clear_rrq is still called because the rrq needs to
1746 * be freed.
1747 **/
1748
1749static void
1750lpfc_cmpl_els_rrq(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
1751 struct lpfc_iocbq *rspiocb)
1752{
1753 struct lpfc_vport *vport = cmdiocb->vport;
1754 IOCB_t *irsp;
1755 struct lpfc_nodelist *ndlp;
1756 struct lpfc_node_rrq *rrq;
1757
1758 /* we pass cmdiocb to state machine which needs rspiocb as well */
1759 rrq = cmdiocb->context_un.rrq;
1760 cmdiocb->context_un.rsp_iocb = rspiocb;
1761
1762 irsp = &rspiocb->iocb;
1763 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
1764 "RRQ cmpl: status:x%x/x%x did:x%x",
1765 irsp->ulpStatus, irsp->un.ulpWord[4],
1766 irsp->un.elsreq64.remoteID);
1767
1768 ndlp = lpfc_findnode_did(vport, irsp->un.elsreq64.remoteID);
1769 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp) || ndlp != rrq->ndlp) {
1770 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
1771 "2882 RRQ completes to NPort x%x "
1772 "with no ndlp. Data: x%x x%x x%x\n",
1773 irsp->un.elsreq64.remoteID,
1774 irsp->ulpStatus, irsp->un.ulpWord[4],
1775 irsp->ulpIoTag);
1776 goto out;
1777 }
1778
1779 /* rrq completes to NPort <nlp_DID> */
1780 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
1781 "2880 RRQ completes to NPort x%x "
1782 "Data: x%x x%x x%x x%x x%x\n",
1783 ndlp->nlp_DID, irsp->ulpStatus, irsp->un.ulpWord[4],
1784 irsp->ulpTimeout, rrq->xritag, rrq->rxid);
1785
1786 if (irsp->ulpStatus) {
1787 /* Check for retry */
1788 /* RRQ failed Don't print the vport to vport rjts */
1789 if (irsp->ulpStatus != IOSTAT_LS_RJT ||
1790 (((irsp->un.ulpWord[4]) >> 16 != LSRJT_INVALID_CMD) &&
1791 ((irsp->un.ulpWord[4]) >> 16 != LSRJT_UNABLE_TPC)) ||
1792 (phba)->pport->cfg_log_verbose & LOG_ELS)
1793 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
1794 "2881 RRQ failure DID:%06X Status:x%x/x%x\n",
1795 ndlp->nlp_DID, irsp->ulpStatus,
1796 irsp->un.ulpWord[4]);
1797 }
1798out:
1799 if (rrq)
1800 lpfc_clr_rrq_active(phba, rrq->xritag, rrq);
1801 lpfc_els_free_iocb(phba, cmdiocb);
1802 return;
1803}
e59058c4 1804/**
3621a710 1805 * lpfc_cmpl_els_plogi - Completion callback function for plogi
e59058c4
JS
1806 * @phba: pointer to lpfc hba data structure.
1807 * @cmdiocb: pointer to lpfc command iocb data structure.
1808 * @rspiocb: pointer to lpfc response iocb data structure.
1809 *
1810 * This routine is the completion callback function for issuing the Port
1811 * Login (PLOGI) command. For PLOGI completion, there must be an active
1812 * ndlp on the vport node list that matches the remote node ID from the
25985edc 1813 * PLOGI response IOCB. If such ndlp does not exist, the PLOGI is simply
e59058c4
JS
1814 * ignored and command IOCB released. The PLOGI response IOCB status is
1815 * checked for error conditons. If there is error status reported, PLOGI
1816 * retry shall be attempted by invoking the lpfc_els_retry() routine.
1817 * Otherwise, the lpfc_plogi_confirm_nport() routine shall be invoked on
1818 * the ndlp and the NLP_EVT_CMPL_PLOGI state to the Discover State Machine
1819 * (DSM) is set for this PLOGI completion. Finally, it checks whether
1820 * there are additional N_Port nodes with the vport that need to perform
1821 * PLOGI. If so, the lpfc_more_plogi() routine is invoked to issue addition
1822 * PLOGIs.
1823 **/
dea3101e 1824static void
2e0fef85
JS
1825lpfc_cmpl_els_plogi(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
1826 struct lpfc_iocbq *rspiocb)
dea3101e 1827{
2e0fef85
JS
1828 struct lpfc_vport *vport = cmdiocb->vport;
1829 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea3101e 1830 IOCB_t *irsp;
dea3101e 1831 struct lpfc_nodelist *ndlp;
92795650 1832 struct lpfc_dmabuf *prsp;
eb016566 1833 int disc, rc;
dea3101e 1834
dea3101e
JB
1835 /* we pass cmdiocb to state machine which needs rspiocb as well */
1836 cmdiocb->context_un.rsp_iocb = rspiocb;
1837
1838 irsp = &rspiocb->iocb;
858c9f6c
JS
1839 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
1840 "PLOGI cmpl: status:x%x/x%x did:x%x",
1841 irsp->ulpStatus, irsp->un.ulpWord[4],
1842 irsp->un.elsreq64.remoteID);
1843
2e0fef85 1844 ndlp = lpfc_findnode_did(vport, irsp->un.elsreq64.remoteID);
e47c9093 1845 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp)) {
e8b62011
JS
1846 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
1847 "0136 PLOGI completes to NPort x%x "
1848 "with no ndlp. Data: x%x x%x x%x\n",
1849 irsp->un.elsreq64.remoteID,
1850 irsp->ulpStatus, irsp->un.ulpWord[4],
1851 irsp->ulpIoTag);
488d1469 1852 goto out;
ed957684 1853 }
dea3101e
JB
1854
1855 /* Since ndlp can be freed in the disc state machine, note if this node
1856 * is being used during discovery.
1857 */
2e0fef85 1858 spin_lock_irq(shost->host_lock);
dea3101e 1859 disc = (ndlp->nlp_flag & NLP_NPR_2B_DISC);
488d1469 1860 ndlp->nlp_flag &= ~NLP_NPR_2B_DISC;
2e0fef85 1861 spin_unlock_irq(shost->host_lock);
dea3101e
JB
1862 rc = 0;
1863
1864 /* PLOGI completes to NPort <nlp_DID> */
e8b62011
JS
1865 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
1866 "0102 PLOGI completes to NPort x%x "
1867 "Data: x%x x%x x%x x%x x%x\n",
1868 ndlp->nlp_DID, irsp->ulpStatus, irsp->un.ulpWord[4],
1869 irsp->ulpTimeout, disc, vport->num_disc_nodes);
dea3101e 1870 /* Check to see if link went down during discovery */
2e0fef85
JS
1871 if (lpfc_els_chk_latt(vport)) {
1872 spin_lock_irq(shost->host_lock);
dea3101e 1873 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
2e0fef85 1874 spin_unlock_irq(shost->host_lock);
dea3101e
JB
1875 goto out;
1876 }
1877
dea3101e
JB
1878 if (irsp->ulpStatus) {
1879 /* Check for retry */
1880 if (lpfc_els_retry(phba, cmdiocb, rspiocb)) {
1881 /* ELS command is being retried */
1882 if (disc) {
2e0fef85 1883 spin_lock_irq(shost->host_lock);
dea3101e 1884 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
2e0fef85 1885 spin_unlock_irq(shost->host_lock);
dea3101e
JB
1886 }
1887 goto out;
1888 }
2a9bf3d0
JS
1889 /* PLOGI failed Don't print the vport to vport rjts */
1890 if (irsp->ulpStatus != IOSTAT_LS_RJT ||
1891 (((irsp->un.ulpWord[4]) >> 16 != LSRJT_INVALID_CMD) &&
1892 ((irsp->un.ulpWord[4]) >> 16 != LSRJT_UNABLE_TPC)) ||
1893 (phba)->pport->cfg_log_verbose & LOG_ELS)
1894 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
e40a02c1
JS
1895 "2753 PLOGI failure DID:%06X Status:x%x/x%x\n",
1896 ndlp->nlp_DID, irsp->ulpStatus,
1897 irsp->un.ulpWord[4]);
dea3101e 1898 /* Do not call DSM for lpfc_els_abort'ed ELS cmds */
e47c9093 1899 if (lpfc_error_lost_link(irsp))
c9f8735b 1900 rc = NLP_STE_FREED_NODE;
e47c9093 1901 else
2e0fef85 1902 rc = lpfc_disc_state_machine(vport, ndlp, cmdiocb,
92d7f7b0 1903 NLP_EVT_CMPL_PLOGI);
dea3101e
JB
1904 } else {
1905 /* Good status, call state machine */
92795650 1906 prsp = list_entry(((struct lpfc_dmabuf *)
92d7f7b0
JS
1907 cmdiocb->context2)->list.next,
1908 struct lpfc_dmabuf, list);
1909 ndlp = lpfc_plogi_confirm_nport(phba, prsp->virt, ndlp);
2e0fef85 1910 rc = lpfc_disc_state_machine(vport, ndlp, cmdiocb,
92d7f7b0 1911 NLP_EVT_CMPL_PLOGI);
dea3101e
JB
1912 }
1913
2e0fef85 1914 if (disc && vport->num_disc_nodes) {
dea3101e 1915 /* Check to see if there are more PLOGIs to be sent */
2e0fef85 1916 lpfc_more_plogi(vport);
dea3101e 1917
2e0fef85
JS
1918 if (vport->num_disc_nodes == 0) {
1919 spin_lock_irq(shost->host_lock);
1920 vport->fc_flag &= ~FC_NDISC_ACTIVE;
1921 spin_unlock_irq(shost->host_lock);
dea3101e 1922
2e0fef85 1923 lpfc_can_disctmo(vport);
87af33fe 1924 lpfc_end_rscn(vport);
dea3101e
JB
1925 }
1926 }
1927
1928out:
1929 lpfc_els_free_iocb(phba, cmdiocb);
1930 return;
1931}
1932
e59058c4 1933/**
3621a710 1934 * lpfc_issue_els_plogi - Issue an plogi iocb command for a vport
e59058c4
JS
1935 * @vport: pointer to a host virtual N_Port data structure.
1936 * @did: destination port identifier.
1937 * @retry: number of retries to the command IOCB.
1938 *
1939 * This routine issues a Port Login (PLOGI) command to a remote N_Port
1940 * (with the @did) for a @vport. Before issuing a PLOGI to a remote N_Port,
1941 * the ndlp with the remote N_Port DID must exist on the @vport's ndlp list.
1942 * This routine constructs the proper feilds of the PLOGI IOCB and invokes
1943 * the lpfc_sli_issue_iocb() routine to send out PLOGI ELS command.
1944 *
1945 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
1946 * will be incremented by 1 for holding the ndlp and the reference to ndlp
1947 * will be stored into the context1 field of the IOCB for the completion
1948 * callback function to the PLOGI ELS command.
1949 *
1950 * Return code
1951 * 0 - Successfully issued a plogi for @vport
1952 * 1 - failed to issue a plogi for @vport
1953 **/
dea3101e 1954int
2e0fef85 1955lpfc_issue_els_plogi(struct lpfc_vport *vport, uint32_t did, uint8_t retry)
dea3101e 1956{
2e0fef85 1957 struct lpfc_hba *phba = vport->phba;
dea3101e 1958 struct serv_parm *sp;
98c9ea5c 1959 struct lpfc_nodelist *ndlp;
dea3101e 1960 struct lpfc_iocbq *elsiocb;
dea3101e
JB
1961 uint8_t *pcmd;
1962 uint16_t cmdsize;
92d7f7b0 1963 int ret;
dea3101e 1964
98c9ea5c 1965 ndlp = lpfc_findnode_did(vport, did);
e47c9093
JS
1966 if (ndlp && !NLP_CHK_NODE_ACT(ndlp))
1967 ndlp = NULL;
98c9ea5c 1968
e47c9093 1969 /* If ndlp is not NULL, we will bump the reference count on it */
92d7f7b0 1970 cmdsize = (sizeof(uint32_t) + sizeof(struct serv_parm));
98c9ea5c 1971 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp, did,
2e0fef85 1972 ELS_CMD_PLOGI);
c9f8735b
JW
1973 if (!elsiocb)
1974 return 1;
dea3101e 1975
dea3101e
JB
1976 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
1977
1978 /* For PLOGI request, remainder of payload is service parameters */
1979 *((uint32_t *) (pcmd)) = ELS_CMD_PLOGI;
92d7f7b0
JS
1980 pcmd += sizeof(uint32_t);
1981 memcpy(pcmd, &vport->fc_sparam, sizeof(struct serv_parm));
dea3101e
JB
1982 sp = (struct serv_parm *) pcmd;
1983
5ac6b303
JS
1984 /*
1985 * If we are a N-port connected to a Fabric, fix-up paramm's so logins
1986 * to device on remote loops work.
1987 */
1988 if ((vport->fc_flag & FC_FABRIC) && !(vport->fc_flag & FC_PUBLIC_LOOP))
1989 sp->cmn.altBbCredit = 1;
1990
dea3101e
JB
1991 if (sp->cmn.fcphLow < FC_PH_4_3)
1992 sp->cmn.fcphLow = FC_PH_4_3;
1993
1994 if (sp->cmn.fcphHigh < FC_PH3)
1995 sp->cmn.fcphHigh = FC_PH3;
1996
858c9f6c
JS
1997 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
1998 "Issue PLOGI: did:x%x",
1999 did, 0, 0);
2000
dea3101e
JB
2001 phba->fc_stat.elsXmitPLOGI++;
2002 elsiocb->iocb_cmpl = lpfc_cmpl_els_plogi;
3772a991 2003 ret = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
92d7f7b0
JS
2004
2005 if (ret == IOCB_ERROR) {
dea3101e 2006 lpfc_els_free_iocb(phba, elsiocb);
c9f8735b 2007 return 1;
dea3101e 2008 }
c9f8735b 2009 return 0;
dea3101e
JB
2010}
2011
e59058c4 2012/**
3621a710 2013 * lpfc_cmpl_els_prli - Completion callback function for prli
e59058c4
JS
2014 * @phba: pointer to lpfc hba data structure.
2015 * @cmdiocb: pointer to lpfc command iocb data structure.
2016 * @rspiocb: pointer to lpfc response iocb data structure.
2017 *
2018 * This routine is the completion callback function for a Process Login
2019 * (PRLI) ELS command. The PRLI response IOCB status is checked for error
2020 * status. If there is error status reported, PRLI retry shall be attempted
2021 * by invoking the lpfc_els_retry() routine. Otherwise, the state
2022 * NLP_EVT_CMPL_PRLI is sent to the Discover State Machine (DSM) for this
2023 * ndlp to mark the PRLI completion.
2024 **/
dea3101e 2025static void
2e0fef85
JS
2026lpfc_cmpl_els_prli(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
2027 struct lpfc_iocbq *rspiocb)
dea3101e 2028{
2e0fef85
JS
2029 struct lpfc_vport *vport = cmdiocb->vport;
2030 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea3101e 2031 IOCB_t *irsp;
dea3101e
JB
2032 struct lpfc_nodelist *ndlp;
2033
dea3101e
JB
2034 /* we pass cmdiocb to state machine which needs rspiocb as well */
2035 cmdiocb->context_un.rsp_iocb = rspiocb;
2036
2037 irsp = &(rspiocb->iocb);
2038 ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
2e0fef85 2039 spin_lock_irq(shost->host_lock);
dea3101e 2040 ndlp->nlp_flag &= ~NLP_PRLI_SND;
2e0fef85 2041 spin_unlock_irq(shost->host_lock);
dea3101e 2042
858c9f6c
JS
2043 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2044 "PRLI cmpl: status:x%x/x%x did:x%x",
2045 irsp->ulpStatus, irsp->un.ulpWord[4],
2046 ndlp->nlp_DID);
dea3101e 2047 /* PRLI completes to NPort <nlp_DID> */
e8b62011
JS
2048 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
2049 "0103 PRLI completes to NPort x%x "
2050 "Data: x%x x%x x%x x%x\n",
2051 ndlp->nlp_DID, irsp->ulpStatus, irsp->un.ulpWord[4],
2052 irsp->ulpTimeout, vport->num_disc_nodes);
dea3101e 2053
2e0fef85 2054 vport->fc_prli_sent--;
dea3101e 2055 /* Check to see if link went down during discovery */
2e0fef85 2056 if (lpfc_els_chk_latt(vport))
dea3101e
JB
2057 goto out;
2058
2059 if (irsp->ulpStatus) {
2060 /* Check for retry */
2061 if (lpfc_els_retry(phba, cmdiocb, rspiocb)) {
2062 /* ELS command is being retried */
2063 goto out;
2064 }
2065 /* PRLI failed */
e40a02c1
JS
2066 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
2067 "2754 PRLI failure DID:%06X Status:x%x/x%x\n",
2068 ndlp->nlp_DID, irsp->ulpStatus,
2069 irsp->un.ulpWord[4]);
dea3101e 2070 /* Do not call DSM for lpfc_els_abort'ed ELS cmds */
e47c9093 2071 if (lpfc_error_lost_link(irsp))
dea3101e 2072 goto out;
e47c9093 2073 else
2e0fef85 2074 lpfc_disc_state_machine(vport, ndlp, cmdiocb,
92d7f7b0 2075 NLP_EVT_CMPL_PRLI);
e47c9093 2076 } else
dea3101e 2077 /* Good status, call state machine */
2e0fef85 2078 lpfc_disc_state_machine(vport, ndlp, cmdiocb,
92d7f7b0 2079 NLP_EVT_CMPL_PRLI);
dea3101e
JB
2080out:
2081 lpfc_els_free_iocb(phba, cmdiocb);
2082 return;
2083}
2084
e59058c4 2085/**
3621a710 2086 * lpfc_issue_els_prli - Issue a prli iocb command for a vport
e59058c4
JS
2087 * @vport: pointer to a host virtual N_Port data structure.
2088 * @ndlp: pointer to a node-list data structure.
2089 * @retry: number of retries to the command IOCB.
2090 *
2091 * This routine issues a Process Login (PRLI) ELS command for the
2092 * @vport. The PRLI service parameters are set up in the payload of the
2093 * PRLI Request command and the pointer to lpfc_cmpl_els_prli() routine
2094 * is put to the IOCB completion callback func field before invoking the
2095 * routine lpfc_sli_issue_iocb() to send out PRLI command.
2096 *
2097 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
2098 * will be incremented by 1 for holding the ndlp and the reference to ndlp
2099 * will be stored into the context1 field of the IOCB for the completion
2100 * callback function to the PRLI ELS command.
2101 *
2102 * Return code
2103 * 0 - successfully issued prli iocb command for @vport
2104 * 1 - failed to issue prli iocb command for @vport
2105 **/
dea3101e 2106int
2e0fef85 2107lpfc_issue_els_prli(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
dea3101e
JB
2108 uint8_t retry)
2109{
2e0fef85
JS
2110 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2111 struct lpfc_hba *phba = vport->phba;
dea3101e 2112 PRLI *npr;
dea3101e 2113 struct lpfc_iocbq *elsiocb;
dea3101e
JB
2114 uint8_t *pcmd;
2115 uint16_t cmdsize;
2116
92d7f7b0 2117 cmdsize = (sizeof(uint32_t) + sizeof(PRLI));
2e0fef85
JS
2118 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
2119 ndlp->nlp_DID, ELS_CMD_PRLI);
488d1469 2120 if (!elsiocb)
c9f8735b 2121 return 1;
dea3101e 2122
dea3101e
JB
2123 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
2124
2125 /* For PRLI request, remainder of payload is service parameters */
92d7f7b0 2126 memset(pcmd, 0, (sizeof(PRLI) + sizeof(uint32_t)));
dea3101e 2127 *((uint32_t *) (pcmd)) = ELS_CMD_PRLI;
92d7f7b0 2128 pcmd += sizeof(uint32_t);
dea3101e
JB
2129
2130 /* For PRLI, remainder of payload is PRLI parameter page */
2131 npr = (PRLI *) pcmd;
2132 /*
2133 * If our firmware version is 3.20 or later,
2134 * set the following bits for FC-TAPE support.
2135 */
2136 if (phba->vpd.rev.feaLevelHigh >= 0x02) {
2137 npr->ConfmComplAllowed = 1;
2138 npr->Retry = 1;
2139 npr->TaskRetryIdReq = 1;
2140 }
2141 npr->estabImagePair = 1;
2142 npr->readXferRdyDis = 1;
3cb01c57
JS
2143 if (vport->cfg_first_burst_size)
2144 npr->writeXferRdyDis = 1;
dea3101e
JB
2145
2146 /* For FCP support */
2147 npr->prliType = PRLI_FCP_TYPE;
2148 npr->initiatorFunc = 1;
2149
858c9f6c
JS
2150 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2151 "Issue PRLI: did:x%x",
2152 ndlp->nlp_DID, 0, 0);
2153
dea3101e
JB
2154 phba->fc_stat.elsXmitPRLI++;
2155 elsiocb->iocb_cmpl = lpfc_cmpl_els_prli;
2e0fef85 2156 spin_lock_irq(shost->host_lock);
dea3101e 2157 ndlp->nlp_flag |= NLP_PRLI_SND;
2e0fef85 2158 spin_unlock_irq(shost->host_lock);
3772a991
JS
2159 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) ==
2160 IOCB_ERROR) {
2e0fef85 2161 spin_lock_irq(shost->host_lock);
dea3101e 2162 ndlp->nlp_flag &= ~NLP_PRLI_SND;
2e0fef85 2163 spin_unlock_irq(shost->host_lock);
dea3101e 2164 lpfc_els_free_iocb(phba, elsiocb);
c9f8735b 2165 return 1;
dea3101e 2166 }
2e0fef85 2167 vport->fc_prli_sent++;
c9f8735b 2168 return 0;
dea3101e
JB
2169}
2170
90160e01 2171/**
3621a710 2172 * lpfc_rscn_disc - Perform rscn discovery for a vport
90160e01
JS
2173 * @vport: pointer to a host virtual N_Port data structure.
2174 *
2175 * This routine performs Registration State Change Notification (RSCN)
2176 * discovery for a @vport. If the @vport's node port recovery count is not
2177 * zero, it will invoke the lpfc_els_disc_plogi() to perform PLOGI for all
2178 * the nodes that need recovery. If none of the PLOGI were needed through
2179 * the lpfc_els_disc_plogi() routine, the lpfc_end_rscn() routine shall be
2180 * invoked to check and handle possible more RSCN came in during the period
2181 * of processing the current ones.
2182 **/
2183static void
2184lpfc_rscn_disc(struct lpfc_vport *vport)
2185{
2186 lpfc_can_disctmo(vport);
2187
2188 /* RSCN discovery */
2189 /* go thru NPR nodes and issue ELS PLOGIs */
2190 if (vport->fc_npr_cnt)
2191 if (lpfc_els_disc_plogi(vport))
2192 return;
2193
2194 lpfc_end_rscn(vport);
2195}
2196
2197/**
3621a710 2198 * lpfc_adisc_done - Complete the adisc phase of discovery
90160e01
JS
2199 * @vport: pointer to lpfc_vport hba data structure that finished all ADISCs.
2200 *
2201 * This function is called when the final ADISC is completed during discovery.
2202 * This function handles clearing link attention or issuing reg_vpi depending
2203 * on whether npiv is enabled. This function also kicks off the PLOGI phase of
2204 * discovery.
2205 * This function is called with no locks held.
2206 **/
2207static void
2208lpfc_adisc_done(struct lpfc_vport *vport)
2209{
2210 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2211 struct lpfc_hba *phba = vport->phba;
2212
2213 /*
2214 * For NPIV, cmpl_reg_vpi will set port_state to READY,
2215 * and continue discovery.
2216 */
2217 if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
6fb120a7
JS
2218 !(vport->fc_flag & FC_RSCN_MODE) &&
2219 (phba->sli_rev < LPFC_SLI_REV4)) {
d454c91f
JS
2220 /* The ADISCs are complete. Doesn't matter if they
2221 * succeeded or failed because the ADISC completion
2222 * routine guarantees to call the state machine and
2223 * the RPI is either unregistered (failed ADISC response)
2224 * or the RPI is still valid and the node is marked
2225 * mapped for a target. The exchanges should be in the
2226 * correct state. This code is specific to SLI3.
2227 */
2228 lpfc_issue_clear_la(phba, vport);
90160e01
JS
2229 lpfc_issue_reg_vpi(phba, vport);
2230 return;
2231 }
2232 /*
2233 * For SLI2, we need to set port_state to READY
2234 * and continue discovery.
2235 */
2236 if (vport->port_state < LPFC_VPORT_READY) {
2237 /* If we get here, there is nothing to ADISC */
85c0f177 2238 lpfc_issue_clear_la(phba, vport);
90160e01
JS
2239 if (!(vport->fc_flag & FC_ABORT_DISCOVERY)) {
2240 vport->num_disc_nodes = 0;
2241 /* go thru NPR list, issue ELS PLOGIs */
2242 if (vport->fc_npr_cnt)
2243 lpfc_els_disc_plogi(vport);
2244 if (!vport->num_disc_nodes) {
2245 spin_lock_irq(shost->host_lock);
2246 vport->fc_flag &= ~FC_NDISC_ACTIVE;
2247 spin_unlock_irq(shost->host_lock);
2248 lpfc_can_disctmo(vport);
2249 lpfc_end_rscn(vport);
2250 }
2251 }
2252 vport->port_state = LPFC_VPORT_READY;
2253 } else
2254 lpfc_rscn_disc(vport);
2255}
2256
e59058c4 2257/**
3621a710 2258 * lpfc_more_adisc - Issue more adisc as needed
e59058c4
JS
2259 * @vport: pointer to a host virtual N_Port data structure.
2260 *
2261 * This routine determines whether there are more ndlps on a @vport
2262 * node list need to have Address Discover (ADISC) issued. If so, it will
2263 * invoke the lpfc_els_disc_adisc() routine to issue ADISC on the @vport's
2264 * remaining nodes which need to have ADISC sent.
2265 **/
0ff10d46 2266void
2e0fef85 2267lpfc_more_adisc(struct lpfc_vport *vport)
dea3101e 2268{
2e0fef85
JS
2269 if (vport->num_disc_nodes)
2270 vport->num_disc_nodes--;
dea3101e 2271 /* Continue discovery with <num_disc_nodes> ADISCs to go */
e8b62011
JS
2272 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
2273 "0210 Continue discovery with %d ADISCs to go "
2274 "Data: x%x x%x x%x\n",
2275 vport->num_disc_nodes, vport->fc_adisc_cnt,
2276 vport->fc_flag, vport->port_state);
dea3101e 2277 /* Check to see if there are more ADISCs to be sent */
2e0fef85
JS
2278 if (vport->fc_flag & FC_NLP_MORE) {
2279 lpfc_set_disctmo(vport);
2280 /* go thru NPR nodes and issue any remaining ELS ADISCs */
eb016566 2281 lpfc_els_disc_adisc(vport);
dea3101e 2282 }
90160e01
JS
2283 if (!vport->num_disc_nodes)
2284 lpfc_adisc_done(vport);
dea3101e
JB
2285 return;
2286}
2287
e59058c4 2288/**
3621a710 2289 * lpfc_cmpl_els_adisc - Completion callback function for adisc
e59058c4
JS
2290 * @phba: pointer to lpfc hba data structure.
2291 * @cmdiocb: pointer to lpfc command iocb data structure.
2292 * @rspiocb: pointer to lpfc response iocb data structure.
2293 *
2294 * This routine is the completion function for issuing the Address Discover
2295 * (ADISC) command. It first checks to see whether link went down during
2296 * the discovery process. If so, the node will be marked as node port
2297 * recovery for issuing discover IOCB by the link attention handler and
2298 * exit. Otherwise, the response status is checked. If error was reported
2299 * in the response status, the ADISC command shall be retried by invoking
2300 * the lpfc_els_retry() routine. Otherwise, if no error was reported in
2301 * the response status, the state machine is invoked to set transition
2302 * with respect to NLP_EVT_CMPL_ADISC event.
2303 **/
dea3101e 2304static void
2e0fef85
JS
2305lpfc_cmpl_els_adisc(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
2306 struct lpfc_iocbq *rspiocb)
dea3101e 2307{
2e0fef85
JS
2308 struct lpfc_vport *vport = cmdiocb->vport;
2309 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea3101e 2310 IOCB_t *irsp;
dea3101e 2311 struct lpfc_nodelist *ndlp;
2e0fef85 2312 int disc;
dea3101e
JB
2313
2314 /* we pass cmdiocb to state machine which needs rspiocb as well */
2315 cmdiocb->context_un.rsp_iocb = rspiocb;
2316
2317 irsp = &(rspiocb->iocb);
2318 ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
dea3101e 2319
858c9f6c
JS
2320 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2321 "ADISC cmpl: status:x%x/x%x did:x%x",
2322 irsp->ulpStatus, irsp->un.ulpWord[4],
2323 ndlp->nlp_DID);
2324
dea3101e
JB
2325 /* Since ndlp can be freed in the disc state machine, note if this node
2326 * is being used during discovery.
2327 */
2e0fef85 2328 spin_lock_irq(shost->host_lock);
dea3101e 2329 disc = (ndlp->nlp_flag & NLP_NPR_2B_DISC);
c9f8735b 2330 ndlp->nlp_flag &= ~(NLP_ADISC_SND | NLP_NPR_2B_DISC);
2e0fef85 2331 spin_unlock_irq(shost->host_lock);
dea3101e 2332 /* ADISC completes to NPort <nlp_DID> */
e8b62011
JS
2333 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
2334 "0104 ADISC completes to NPort x%x "
2335 "Data: x%x x%x x%x x%x x%x\n",
2336 ndlp->nlp_DID, irsp->ulpStatus, irsp->un.ulpWord[4],
2337 irsp->ulpTimeout, disc, vport->num_disc_nodes);
dea3101e 2338 /* Check to see if link went down during discovery */
2e0fef85
JS
2339 if (lpfc_els_chk_latt(vport)) {
2340 spin_lock_irq(shost->host_lock);
dea3101e 2341 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
2e0fef85 2342 spin_unlock_irq(shost->host_lock);
dea3101e
JB
2343 goto out;
2344 }
2345
2346 if (irsp->ulpStatus) {
2347 /* Check for retry */
2348 if (lpfc_els_retry(phba, cmdiocb, rspiocb)) {
2349 /* ELS command is being retried */
2350 if (disc) {
2e0fef85 2351 spin_lock_irq(shost->host_lock);
dea3101e 2352 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
2e0fef85
JS
2353 spin_unlock_irq(shost->host_lock);
2354 lpfc_set_disctmo(vport);
dea3101e
JB
2355 }
2356 goto out;
2357 }
2358 /* ADISC failed */
e40a02c1
JS
2359 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
2360 "2755 ADISC failure DID:%06X Status:x%x/x%x\n",
2361 ndlp->nlp_DID, irsp->ulpStatus,
2362 irsp->un.ulpWord[4]);
dea3101e 2363 /* Do not call DSM for lpfc_els_abort'ed ELS cmds */
e47c9093 2364 if (!lpfc_error_lost_link(irsp))
2e0fef85 2365 lpfc_disc_state_machine(vport, ndlp, cmdiocb,
858c9f6c 2366 NLP_EVT_CMPL_ADISC);
e47c9093 2367 } else
dea3101e 2368 /* Good status, call state machine */
2e0fef85 2369 lpfc_disc_state_machine(vport, ndlp, cmdiocb,
dea3101e 2370 NLP_EVT_CMPL_ADISC);
dea3101e 2371
90160e01
JS
2372 /* Check to see if there are more ADISCs to be sent */
2373 if (disc && vport->num_disc_nodes)
2e0fef85 2374 lpfc_more_adisc(vport);
dea3101e
JB
2375out:
2376 lpfc_els_free_iocb(phba, cmdiocb);
2377 return;
2378}
2379
e59058c4 2380/**
3621a710 2381 * lpfc_issue_els_adisc - Issue an address discover iocb to an node on a vport
e59058c4
JS
2382 * @vport: pointer to a virtual N_Port data structure.
2383 * @ndlp: pointer to a node-list data structure.
2384 * @retry: number of retries to the command IOCB.
2385 *
2386 * This routine issues an Address Discover (ADISC) for an @ndlp on a
2387 * @vport. It prepares the payload of the ADISC ELS command, updates the
2388 * and states of the ndlp, and invokes the lpfc_sli_issue_iocb() routine
2389 * to issue the ADISC ELS command.
2390 *
2391 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
2392 * will be incremented by 1 for holding the ndlp and the reference to ndlp
2393 * will be stored into the context1 field of the IOCB for the completion
2394 * callback function to the ADISC ELS command.
2395 *
2396 * Return code
2397 * 0 - successfully issued adisc
2398 * 1 - failed to issue adisc
2399 **/
dea3101e 2400int
2e0fef85 2401lpfc_issue_els_adisc(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
dea3101e
JB
2402 uint8_t retry)
2403{
2e0fef85
JS
2404 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2405 struct lpfc_hba *phba = vport->phba;
dea3101e 2406 ADISC *ap;
dea3101e 2407 struct lpfc_iocbq *elsiocb;
dea3101e
JB
2408 uint8_t *pcmd;
2409 uint16_t cmdsize;
2410
92d7f7b0 2411 cmdsize = (sizeof(uint32_t) + sizeof(ADISC));
2e0fef85
JS
2412 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
2413 ndlp->nlp_DID, ELS_CMD_ADISC);
488d1469 2414 if (!elsiocb)
c9f8735b 2415 return 1;
dea3101e 2416
dea3101e
JB
2417 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
2418
2419 /* For ADISC request, remainder of payload is service parameters */
2420 *((uint32_t *) (pcmd)) = ELS_CMD_ADISC;
92d7f7b0 2421 pcmd += sizeof(uint32_t);
dea3101e
JB
2422
2423 /* Fill in ADISC payload */
2424 ap = (ADISC *) pcmd;
2425 ap->hardAL_PA = phba->fc_pref_ALPA;
92d7f7b0
JS
2426 memcpy(&ap->portName, &vport->fc_portname, sizeof(struct lpfc_name));
2427 memcpy(&ap->nodeName, &vport->fc_nodename, sizeof(struct lpfc_name));
2e0fef85 2428 ap->DID = be32_to_cpu(vport->fc_myDID);
dea3101e 2429
858c9f6c
JS
2430 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2431 "Issue ADISC: did:x%x",
2432 ndlp->nlp_DID, 0, 0);
2433
dea3101e
JB
2434 phba->fc_stat.elsXmitADISC++;
2435 elsiocb->iocb_cmpl = lpfc_cmpl_els_adisc;
2e0fef85 2436 spin_lock_irq(shost->host_lock);
dea3101e 2437 ndlp->nlp_flag |= NLP_ADISC_SND;
2e0fef85 2438 spin_unlock_irq(shost->host_lock);
3772a991
JS
2439 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) ==
2440 IOCB_ERROR) {
2e0fef85 2441 spin_lock_irq(shost->host_lock);
dea3101e 2442 ndlp->nlp_flag &= ~NLP_ADISC_SND;
2e0fef85 2443 spin_unlock_irq(shost->host_lock);
dea3101e 2444 lpfc_els_free_iocb(phba, elsiocb);
c9f8735b 2445 return 1;
dea3101e 2446 }
c9f8735b 2447 return 0;
dea3101e
JB
2448}
2449
e59058c4 2450/**
3621a710 2451 * lpfc_cmpl_els_logo - Completion callback function for logo
e59058c4
JS
2452 * @phba: pointer to lpfc hba data structure.
2453 * @cmdiocb: pointer to lpfc command iocb data structure.
2454 * @rspiocb: pointer to lpfc response iocb data structure.
2455 *
2456 * This routine is the completion function for issuing the ELS Logout (LOGO)
2457 * command. If no error status was reported from the LOGO response, the
2458 * state machine of the associated ndlp shall be invoked for transition with
2459 * respect to NLP_EVT_CMPL_LOGO event. Otherwise, if error status was reported,
2460 * the lpfc_els_retry() routine will be invoked to retry the LOGO command.
2461 **/
dea3101e 2462static void
2e0fef85
JS
2463lpfc_cmpl_els_logo(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
2464 struct lpfc_iocbq *rspiocb)
dea3101e 2465{
2e0fef85
JS
2466 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
2467 struct lpfc_vport *vport = ndlp->vport;
2468 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea3101e 2469 IOCB_t *irsp;
92494144 2470 struct lpfcMboxq *mbox;
086a345f
JS
2471 unsigned long flags;
2472 uint32_t skip_recovery = 0;
dea3101e 2473
dea3101e
JB
2474 /* we pass cmdiocb to state machine which needs rspiocb as well */
2475 cmdiocb->context_un.rsp_iocb = rspiocb;
2476
2477 irsp = &(rspiocb->iocb);
2e0fef85 2478 spin_lock_irq(shost->host_lock);
dea3101e 2479 ndlp->nlp_flag &= ~NLP_LOGO_SND;
2e0fef85 2480 spin_unlock_irq(shost->host_lock);
dea3101e 2481
858c9f6c
JS
2482 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2483 "LOGO cmpl: status:x%x/x%x did:x%x",
2484 irsp->ulpStatus, irsp->un.ulpWord[4],
2485 ndlp->nlp_DID);
086a345f 2486
dea3101e 2487 /* LOGO completes to NPort <nlp_DID> */
e8b62011
JS
2488 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
2489 "0105 LOGO completes to NPort x%x "
2490 "Data: x%x x%x x%x x%x\n",
2491 ndlp->nlp_DID, irsp->ulpStatus, irsp->un.ulpWord[4],
2492 irsp->ulpTimeout, vport->num_disc_nodes);
086a345f
JS
2493
2494 if (lpfc_els_chk_latt(vport)) {
2495 skip_recovery = 1;
dea3101e 2496 goto out;
086a345f 2497 }
dea3101e 2498
086a345f 2499 /* Check to see if link went down during discovery */
92d7f7b0
JS
2500 if (ndlp->nlp_flag & NLP_TARGET_REMOVE) {
2501 /* NLP_EVT_DEVICE_RM should unregister the RPI
2502 * which should abort all outstanding IOs.
2503 */
2504 lpfc_disc_state_machine(vport, ndlp, cmdiocb,
2505 NLP_EVT_DEVICE_RM);
086a345f 2506 skip_recovery = 1;
92d7f7b0
JS
2507 goto out;
2508 }
2509
dea3101e
JB
2510 if (irsp->ulpStatus) {
2511 /* Check for retry */
086a345f 2512 if (lpfc_els_retry(phba, cmdiocb, rspiocb)) {
dea3101e 2513 /* ELS command is being retried */
086a345f 2514 skip_recovery = 1;
dea3101e 2515 goto out;
086a345f 2516 }
dea3101e 2517 /* LOGO failed */
e40a02c1
JS
2518 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
2519 "2756 LOGO failure DID:%06X Status:x%x/x%x\n",
2520 ndlp->nlp_DID, irsp->ulpStatus,
2521 irsp->un.ulpWord[4]);
dea3101e 2522 /* Do not call DSM for lpfc_els_abort'ed ELS cmds */
086a345f
JS
2523 if (lpfc_error_lost_link(irsp)) {
2524 skip_recovery = 1;
dea3101e 2525 goto out;
086a345f
JS
2526 }
2527 }
2528
2529 /* Call state machine. This will unregister the rpi if needed. */
2530 lpfc_disc_state_machine(vport, ndlp, cmdiocb, NLP_EVT_CMPL_LOGO);
2531
dea3101e
JB
2532out:
2533 lpfc_els_free_iocb(phba, cmdiocb);
92494144
JS
2534 /* If we are in pt2pt mode, we could rcv new S_ID on PLOGI */
2535 if ((vport->fc_flag & FC_PT2PT) &&
2536 !(vport->fc_flag & FC_PT2PT_PLOGI)) {
2537 phba->pport->fc_myDID = 0;
2538 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
2539 if (mbox) {
2540 lpfc_config_link(phba, mbox);
2541 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
2542 mbox->vport = vport;
2543 if (lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT) ==
2544 MBX_NOT_FINISHED) {
2545 mempool_free(mbox, phba->mbox_mem_pool);
086a345f 2546 skip_recovery = 1;
92494144
JS
2547 }
2548 }
2549 }
086a345f
JS
2550
2551 /*
2552 * If the node is a target, the handling attempts to recover the port.
2553 * For any other port type, the rpi is unregistered as an implicit
2554 * LOGO.
2555 */
2556 if ((ndlp->nlp_type & NLP_FCP_TARGET) && (skip_recovery == 0)) {
2557 lpfc_cancel_retry_delay_tmo(vport, ndlp);
2558 spin_lock_irqsave(shost->host_lock, flags);
2559 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
2560 spin_unlock_irqrestore(shost->host_lock, flags);
2561
2562 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
2563 "3187 LOGO completes to NPort x%x: Start "
2564 "Recovery Data: x%x x%x x%x x%x\n",
2565 ndlp->nlp_DID, irsp->ulpStatus,
2566 irsp->un.ulpWord[4], irsp->ulpTimeout,
2567 vport->num_disc_nodes);
2568 lpfc_disc_start(vport);
2569 }
dea3101e
JB
2570 return;
2571}
2572
e59058c4 2573/**
3621a710 2574 * lpfc_issue_els_logo - Issue a logo to an node on a vport
e59058c4
JS
2575 * @vport: pointer to a virtual N_Port data structure.
2576 * @ndlp: pointer to a node-list data structure.
2577 * @retry: number of retries to the command IOCB.
2578 *
2579 * This routine constructs and issues an ELS Logout (LOGO) iocb command
2580 * to a remote node, referred by an @ndlp on a @vport. It constructs the
2581 * payload of the IOCB, properly sets up the @ndlp state, and invokes the
2582 * lpfc_sli_issue_iocb() routine to send out the LOGO ELS command.
2583 *
2584 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
2585 * will be incremented by 1 for holding the ndlp and the reference to ndlp
2586 * will be stored into the context1 field of the IOCB for the completion
2587 * callback function to the LOGO ELS command.
2588 *
2589 * Return code
2590 * 0 - successfully issued logo
2591 * 1 - failed to issue logo
2592 **/
dea3101e 2593int
2e0fef85 2594lpfc_issue_els_logo(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
dea3101e
JB
2595 uint8_t retry)
2596{
2e0fef85
JS
2597 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2598 struct lpfc_hba *phba = vport->phba;
dea3101e 2599 struct lpfc_iocbq *elsiocb;
dea3101e
JB
2600 uint8_t *pcmd;
2601 uint16_t cmdsize;
92d7f7b0 2602 int rc;
dea3101e 2603
98c9ea5c
JS
2604 spin_lock_irq(shost->host_lock);
2605 if (ndlp->nlp_flag & NLP_LOGO_SND) {
2606 spin_unlock_irq(shost->host_lock);
2607 return 0;
2608 }
2609 spin_unlock_irq(shost->host_lock);
2610
92d7f7b0 2611 cmdsize = (2 * sizeof(uint32_t)) + sizeof(struct lpfc_name);
2e0fef85
JS
2612 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
2613 ndlp->nlp_DID, ELS_CMD_LOGO);
488d1469 2614 if (!elsiocb)
c9f8735b 2615 return 1;
dea3101e 2616
dea3101e
JB
2617 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
2618 *((uint32_t *) (pcmd)) = ELS_CMD_LOGO;
92d7f7b0 2619 pcmd += sizeof(uint32_t);
dea3101e
JB
2620
2621 /* Fill in LOGO payload */
2e0fef85 2622 *((uint32_t *) (pcmd)) = be32_to_cpu(vport->fc_myDID);
92d7f7b0
JS
2623 pcmd += sizeof(uint32_t);
2624 memcpy(pcmd, &vport->fc_portname, sizeof(struct lpfc_name));
dea3101e 2625
858c9f6c
JS
2626 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2627 "Issue LOGO: did:x%x",
2628 ndlp->nlp_DID, 0, 0);
2629
086a345f
JS
2630 /*
2631 * If we are issuing a LOGO, we may try to recover the remote NPort
2632 * by issuing a PLOGI later. Even though we issue ELS cmds by the
2633 * VPI, if we have a valid RPI, and that RPI gets unreg'ed while
2634 * that ELS command is in-flight, the HBA returns a IOERR_INVALID_RPI
2635 * for that ELS cmd. To avoid this situation, lets get rid of the
2636 * RPI right now, before any ELS cmds are sent.
2637 */
2638 spin_lock_irq(shost->host_lock);
2639 ndlp->nlp_flag |= NLP_ISSUE_LOGO;
2640 spin_unlock_irq(shost->host_lock);
2641 if (lpfc_unreg_rpi(vport, ndlp)) {
2642 lpfc_els_free_iocb(phba, elsiocb);
2643 return 0;
2644 }
2645
dea3101e
JB
2646 phba->fc_stat.elsXmitLOGO++;
2647 elsiocb->iocb_cmpl = lpfc_cmpl_els_logo;
2e0fef85 2648 spin_lock_irq(shost->host_lock);
dea3101e 2649 ndlp->nlp_flag |= NLP_LOGO_SND;
086a345f 2650 ndlp->nlp_flag &= ~NLP_ISSUE_LOGO;
2e0fef85 2651 spin_unlock_irq(shost->host_lock);
3772a991 2652 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
92d7f7b0
JS
2653
2654 if (rc == IOCB_ERROR) {
2e0fef85 2655 spin_lock_irq(shost->host_lock);
dea3101e 2656 ndlp->nlp_flag &= ~NLP_LOGO_SND;
2e0fef85 2657 spin_unlock_irq(shost->host_lock);
dea3101e 2658 lpfc_els_free_iocb(phba, elsiocb);
c9f8735b 2659 return 1;
dea3101e 2660 }
c9f8735b 2661 return 0;
dea3101e
JB
2662}
2663
e59058c4 2664/**
3621a710 2665 * lpfc_cmpl_els_cmd - Completion callback function for generic els command
e59058c4
JS
2666 * @phba: pointer to lpfc hba data structure.
2667 * @cmdiocb: pointer to lpfc command iocb data structure.
2668 * @rspiocb: pointer to lpfc response iocb data structure.
2669 *
2670 * This routine is a generic completion callback function for ELS commands.
2671 * Specifically, it is the callback function which does not need to perform
2672 * any command specific operations. It is currently used by the ELS command
2673 * issuing routines for the ELS State Change Request (SCR),
2674 * lpfc_issue_els_scr(), and the ELS Fibre Channel Address Resolution
2675 * Protocol Response (FARPR) routine, lpfc_issue_els_farpr(). Other than
2676 * certain debug loggings, this callback function simply invokes the
2677 * lpfc_els_chk_latt() routine to check whether link went down during the
2678 * discovery process.
2679 **/
dea3101e 2680static void
2e0fef85
JS
2681lpfc_cmpl_els_cmd(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
2682 struct lpfc_iocbq *rspiocb)
dea3101e 2683{
2e0fef85 2684 struct lpfc_vport *vport = cmdiocb->vport;
dea3101e
JB
2685 IOCB_t *irsp;
2686
2687 irsp = &rspiocb->iocb;
2688
858c9f6c
JS
2689 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2690 "ELS cmd cmpl: status:x%x/x%x did:x%x",
2691 irsp->ulpStatus, irsp->un.ulpWord[4],
2692 irsp->un.elsreq64.remoteID);
dea3101e 2693 /* ELS cmd tag <ulpIoTag> completes */
e8b62011
JS
2694 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
2695 "0106 ELS cmd tag x%x completes Data: x%x x%x x%x\n",
2696 irsp->ulpIoTag, irsp->ulpStatus,
2697 irsp->un.ulpWord[4], irsp->ulpTimeout);
dea3101e 2698 /* Check to see if link went down during discovery */
2e0fef85 2699 lpfc_els_chk_latt(vport);
dea3101e
JB
2700 lpfc_els_free_iocb(phba, cmdiocb);
2701 return;
2702}
2703
e59058c4 2704/**
3621a710 2705 * lpfc_issue_els_scr - Issue a scr to an node on a vport
e59058c4
JS
2706 * @vport: pointer to a host virtual N_Port data structure.
2707 * @nportid: N_Port identifier to the remote node.
2708 * @retry: number of retries to the command IOCB.
2709 *
2710 * This routine issues a State Change Request (SCR) to a fabric node
2711 * on a @vport. The remote node @nportid is passed into the function. It
2712 * first search the @vport node list to find the matching ndlp. If no such
2713 * ndlp is found, a new ndlp shall be created for this (SCR) purpose. An
2714 * IOCB is allocated, payload prepared, and the lpfc_sli_issue_iocb()
2715 * routine is invoked to send the SCR IOCB.
2716 *
2717 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
2718 * will be incremented by 1 for holding the ndlp and the reference to ndlp
2719 * will be stored into the context1 field of the IOCB for the completion
2720 * callback function to the SCR ELS command.
2721 *
2722 * Return code
2723 * 0 - Successfully issued scr command
2724 * 1 - Failed to issue scr command
2725 **/
dea3101e 2726int
2e0fef85 2727lpfc_issue_els_scr(struct lpfc_vport *vport, uint32_t nportid, uint8_t retry)
dea3101e 2728{
2e0fef85 2729 struct lpfc_hba *phba = vport->phba;
dea3101e 2730 struct lpfc_iocbq *elsiocb;
dea3101e
JB
2731 uint8_t *pcmd;
2732 uint16_t cmdsize;
2733 struct lpfc_nodelist *ndlp;
2734
92d7f7b0 2735 cmdsize = (sizeof(uint32_t) + sizeof(SCR));
dea3101e 2736
e47c9093
JS
2737 ndlp = lpfc_findnode_did(vport, nportid);
2738 if (!ndlp) {
2739 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
2740 if (!ndlp)
2741 return 1;
2742 lpfc_nlp_init(vport, ndlp, nportid);
2743 lpfc_enqueue_node(vport, ndlp);
2744 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
2745 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
2746 if (!ndlp)
2747 return 1;
2748 }
2e0fef85
JS
2749
2750 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
2751 ndlp->nlp_DID, ELS_CMD_SCR);
dea3101e 2752
488d1469 2753 if (!elsiocb) {
fa4066b6
JS
2754 /* This will trigger the release of the node just
2755 * allocated
2756 */
329f9bc7 2757 lpfc_nlp_put(ndlp);
c9f8735b 2758 return 1;
dea3101e
JB
2759 }
2760
dea3101e
JB
2761 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
2762
2763 *((uint32_t *) (pcmd)) = ELS_CMD_SCR;
92d7f7b0 2764 pcmd += sizeof(uint32_t);
dea3101e
JB
2765
2766 /* For SCR, remainder of payload is SCR parameter page */
92d7f7b0 2767 memset(pcmd, 0, sizeof(SCR));
dea3101e
JB
2768 ((SCR *) pcmd)->Function = SCR_FUNC_FULL;
2769
858c9f6c
JS
2770 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2771 "Issue SCR: did:x%x",
2772 ndlp->nlp_DID, 0, 0);
2773
dea3101e
JB
2774 phba->fc_stat.elsXmitSCR++;
2775 elsiocb->iocb_cmpl = lpfc_cmpl_els_cmd;
3772a991
JS
2776 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) ==
2777 IOCB_ERROR) {
fa4066b6
JS
2778 /* The additional lpfc_nlp_put will cause the following
2779 * lpfc_els_free_iocb routine to trigger the rlease of
2780 * the node.
2781 */
329f9bc7 2782 lpfc_nlp_put(ndlp);
dea3101e 2783 lpfc_els_free_iocb(phba, elsiocb);
c9f8735b 2784 return 1;
dea3101e 2785 }
fa4066b6
JS
2786 /* This will cause the callback-function lpfc_cmpl_els_cmd to
2787 * trigger the release of node.
2788 */
cff261f6 2789
329f9bc7 2790 lpfc_nlp_put(ndlp);
c9f8735b 2791 return 0;
dea3101e
JB
2792}
2793
e59058c4 2794/**
3621a710 2795 * lpfc_issue_els_farpr - Issue a farp to an node on a vport
e59058c4
JS
2796 * @vport: pointer to a host virtual N_Port data structure.
2797 * @nportid: N_Port identifier to the remote node.
2798 * @retry: number of retries to the command IOCB.
2799 *
2800 * This routine issues a Fibre Channel Address Resolution Response
2801 * (FARPR) to a node on a vport. The remote node N_Port identifier (@nportid)
2802 * is passed into the function. It first search the @vport node list to find
2803 * the matching ndlp. If no such ndlp is found, a new ndlp shall be created
2804 * for this (FARPR) purpose. An IOCB is allocated, payload prepared, and the
2805 * lpfc_sli_issue_iocb() routine is invoked to send the FARPR ELS command.
2806 *
2807 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
2808 * will be incremented by 1 for holding the ndlp and the reference to ndlp
2809 * will be stored into the context1 field of the IOCB for the completion
2810 * callback function to the PARPR ELS command.
2811 *
2812 * Return code
2813 * 0 - Successfully issued farpr command
2814 * 1 - Failed to issue farpr command
2815 **/
dea3101e 2816static int
2e0fef85 2817lpfc_issue_els_farpr(struct lpfc_vport *vport, uint32_t nportid, uint8_t retry)
dea3101e 2818{
2e0fef85 2819 struct lpfc_hba *phba = vport->phba;
dea3101e 2820 struct lpfc_iocbq *elsiocb;
dea3101e
JB
2821 FARP *fp;
2822 uint8_t *pcmd;
2823 uint32_t *lp;
2824 uint16_t cmdsize;
2825 struct lpfc_nodelist *ondlp;
2826 struct lpfc_nodelist *ndlp;
2827
92d7f7b0 2828 cmdsize = (sizeof(uint32_t) + sizeof(FARP));
dea3101e 2829
e47c9093
JS
2830 ndlp = lpfc_findnode_did(vport, nportid);
2831 if (!ndlp) {
2832 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
2833 if (!ndlp)
2834 return 1;
2835 lpfc_nlp_init(vport, ndlp, nportid);
2836 lpfc_enqueue_node(vport, ndlp);
2837 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
2838 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
2839 if (!ndlp)
2840 return 1;
2841 }
2e0fef85
JS
2842
2843 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
2844 ndlp->nlp_DID, ELS_CMD_RNID);
488d1469 2845 if (!elsiocb) {
fa4066b6
JS
2846 /* This will trigger the release of the node just
2847 * allocated
2848 */
329f9bc7 2849 lpfc_nlp_put(ndlp);
c9f8735b 2850 return 1;
dea3101e
JB
2851 }
2852
dea3101e
JB
2853 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
2854
2855 *((uint32_t *) (pcmd)) = ELS_CMD_FARPR;
92d7f7b0 2856 pcmd += sizeof(uint32_t);
dea3101e
JB
2857
2858 /* Fill in FARPR payload */
2859 fp = (FARP *) (pcmd);
92d7f7b0 2860 memset(fp, 0, sizeof(FARP));
dea3101e
JB
2861 lp = (uint32_t *) pcmd;
2862 *lp++ = be32_to_cpu(nportid);
2e0fef85 2863 *lp++ = be32_to_cpu(vport->fc_myDID);
dea3101e
JB
2864 fp->Rflags = 0;
2865 fp->Mflags = (FARP_MATCH_PORT | FARP_MATCH_NODE);
2866
92d7f7b0
JS
2867 memcpy(&fp->RportName, &vport->fc_portname, sizeof(struct lpfc_name));
2868 memcpy(&fp->RnodeName, &vport->fc_nodename, sizeof(struct lpfc_name));
2e0fef85 2869 ondlp = lpfc_findnode_did(vport, nportid);
e47c9093 2870 if (ondlp && NLP_CHK_NODE_ACT(ondlp)) {
dea3101e 2871 memcpy(&fp->OportName, &ondlp->nlp_portname,
92d7f7b0 2872 sizeof(struct lpfc_name));
dea3101e 2873 memcpy(&fp->OnodeName, &ondlp->nlp_nodename,
92d7f7b0 2874 sizeof(struct lpfc_name));
dea3101e
JB
2875 }
2876
858c9f6c
JS
2877 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2878 "Issue FARPR: did:x%x",
2879 ndlp->nlp_DID, 0, 0);
2880
dea3101e
JB
2881 phba->fc_stat.elsXmitFARPR++;
2882 elsiocb->iocb_cmpl = lpfc_cmpl_els_cmd;
3772a991
JS
2883 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) ==
2884 IOCB_ERROR) {
fa4066b6
JS
2885 /* The additional lpfc_nlp_put will cause the following
2886 * lpfc_els_free_iocb routine to trigger the release of
2887 * the node.
2888 */
329f9bc7 2889 lpfc_nlp_put(ndlp);
dea3101e 2890 lpfc_els_free_iocb(phba, elsiocb);
c9f8735b 2891 return 1;
dea3101e 2892 }
fa4066b6
JS
2893 /* This will cause the callback-function lpfc_cmpl_els_cmd to
2894 * trigger the release of the node.
2895 */
329f9bc7 2896 lpfc_nlp_put(ndlp);
c9f8735b 2897 return 0;
dea3101e
JB
2898}
2899
e59058c4 2900/**
3621a710 2901 * lpfc_cancel_retry_delay_tmo - Cancel the timer with delayed iocb-cmd retry
e59058c4
JS
2902 * @vport: pointer to a host virtual N_Port data structure.
2903 * @nlp: pointer to a node-list data structure.
2904 *
2905 * This routine cancels the timer with a delayed IOCB-command retry for
2906 * a @vport's @ndlp. It stops the timer for the delayed function retrial and
2907 * removes the ELS retry event if it presents. In addition, if the
2908 * NLP_NPR_2B_DISC bit is set in the @nlp's nlp_flag bitmap, ADISC IOCB
2909 * commands are sent for the @vport's nodes that require issuing discovery
2910 * ADISC.
2911 **/
fdcebe28 2912void
2e0fef85 2913lpfc_cancel_retry_delay_tmo(struct lpfc_vport *vport, struct lpfc_nodelist *nlp)
fdcebe28 2914{
2e0fef85 2915 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
e47c9093 2916 struct lpfc_work_evt *evtp;
2e0fef85 2917
0d2b6b83
JS
2918 if (!(nlp->nlp_flag & NLP_DELAY_TMO))
2919 return;
2e0fef85 2920 spin_lock_irq(shost->host_lock);
fdcebe28 2921 nlp->nlp_flag &= ~NLP_DELAY_TMO;
2e0fef85 2922 spin_unlock_irq(shost->host_lock);
fdcebe28
JS
2923 del_timer_sync(&nlp->nlp_delayfunc);
2924 nlp->nlp_last_elscmd = 0;
e47c9093 2925 if (!list_empty(&nlp->els_retry_evt.evt_listp)) {
fdcebe28 2926 list_del_init(&nlp->els_retry_evt.evt_listp);
e47c9093
JS
2927 /* Decrement nlp reference count held for the delayed retry */
2928 evtp = &nlp->els_retry_evt;
2929 lpfc_nlp_put((struct lpfc_nodelist *)evtp->evt_arg1);
2930 }
fdcebe28 2931 if (nlp->nlp_flag & NLP_NPR_2B_DISC) {
2e0fef85 2932 spin_lock_irq(shost->host_lock);
fdcebe28 2933 nlp->nlp_flag &= ~NLP_NPR_2B_DISC;
2e0fef85
JS
2934 spin_unlock_irq(shost->host_lock);
2935 if (vport->num_disc_nodes) {
0d2b6b83
JS
2936 if (vport->port_state < LPFC_VPORT_READY) {
2937 /* Check if there are more ADISCs to be sent */
2938 lpfc_more_adisc(vport);
0d2b6b83
JS
2939 } else {
2940 /* Check if there are more PLOGIs to be sent */
2941 lpfc_more_plogi(vport);
90160e01
JS
2942 if (vport->num_disc_nodes == 0) {
2943 spin_lock_irq(shost->host_lock);
2944 vport->fc_flag &= ~FC_NDISC_ACTIVE;
2945 spin_unlock_irq(shost->host_lock);
2946 lpfc_can_disctmo(vport);
2947 lpfc_end_rscn(vport);
2948 }
fdcebe28
JS
2949 }
2950 }
2951 }
2952 return;
2953}
2954
e59058c4 2955/**
3621a710 2956 * lpfc_els_retry_delay - Timer function with a ndlp delayed function timer
e59058c4
JS
2957 * @ptr: holder for the pointer to the timer function associated data (ndlp).
2958 *
2959 * This routine is invoked by the ndlp delayed-function timer to check
2960 * whether there is any pending ELS retry event(s) with the node. If not, it
2961 * simply returns. Otherwise, if there is at least one ELS delayed event, it
2962 * adds the delayed events to the HBA work list and invokes the
2963 * lpfc_worker_wake_up() routine to wake up worker thread to process the
2964 * event. Note that lpfc_nlp_get() is called before posting the event to
2965 * the work list to hold reference count of ndlp so that it guarantees the
2966 * reference to ndlp will still be available when the worker thread gets
2967 * to the event associated with the ndlp.
2968 **/
dea3101e
JB
2969void
2970lpfc_els_retry_delay(unsigned long ptr)
2971{
2e0fef85
JS
2972 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) ptr;
2973 struct lpfc_vport *vport = ndlp->vport;
2e0fef85 2974 struct lpfc_hba *phba = vport->phba;
92d7f7b0 2975 unsigned long flags;
2e0fef85 2976 struct lpfc_work_evt *evtp = &ndlp->els_retry_evt;
dea3101e 2977
92d7f7b0 2978 spin_lock_irqsave(&phba->hbalock, flags);
dea3101e 2979 if (!list_empty(&evtp->evt_listp)) {
92d7f7b0 2980 spin_unlock_irqrestore(&phba->hbalock, flags);
dea3101e
JB
2981 return;
2982 }
2983
fa4066b6
JS
2984 /* We need to hold the node by incrementing the reference
2985 * count until the queued work is done
2986 */
2987 evtp->evt_arg1 = lpfc_nlp_get(ndlp);
5e9d9b82
JS
2988 if (evtp->evt_arg1) {
2989 evtp->evt = LPFC_EVT_ELS_RETRY;
2990 list_add_tail(&evtp->evt_listp, &phba->work_list);
92d7f7b0 2991 lpfc_worker_wake_up(phba);
5e9d9b82 2992 }
92d7f7b0 2993 spin_unlock_irqrestore(&phba->hbalock, flags);
dea3101e
JB
2994 return;
2995}
2996
e59058c4 2997/**
3621a710 2998 * lpfc_els_retry_delay_handler - Work thread handler for ndlp delayed function
e59058c4
JS
2999 * @ndlp: pointer to a node-list data structure.
3000 *
3001 * This routine is the worker-thread handler for processing the @ndlp delayed
3002 * event(s), posted by the lpfc_els_retry_delay() routine. It simply retrieves
3003 * the last ELS command from the associated ndlp and invokes the proper ELS
3004 * function according to the delayed ELS command to retry the command.
3005 **/
dea3101e
JB
3006void
3007lpfc_els_retry_delay_handler(struct lpfc_nodelist *ndlp)
3008{
2e0fef85
JS
3009 struct lpfc_vport *vport = ndlp->vport;
3010 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
eb016566 3011 uint32_t cmd, retry;
dea3101e 3012
2e0fef85 3013 spin_lock_irq(shost->host_lock);
5024ab17
JW
3014 cmd = ndlp->nlp_last_elscmd;
3015 ndlp->nlp_last_elscmd = 0;
dea3101e
JB
3016
3017 if (!(ndlp->nlp_flag & NLP_DELAY_TMO)) {
2e0fef85 3018 spin_unlock_irq(shost->host_lock);
dea3101e
JB
3019 return;
3020 }
3021
3022 ndlp->nlp_flag &= ~NLP_DELAY_TMO;
2e0fef85 3023 spin_unlock_irq(shost->host_lock);
1a169689
JS
3024 /*
3025 * If a discovery event readded nlp_delayfunc after timer
3026 * firing and before processing the timer, cancel the
3027 * nlp_delayfunc.
3028 */
3029 del_timer_sync(&ndlp->nlp_delayfunc);
dea3101e 3030 retry = ndlp->nlp_retry;
4d9ab994 3031 ndlp->nlp_retry = 0;
dea3101e
JB
3032
3033 switch (cmd) {
3034 case ELS_CMD_FLOGI:
2e0fef85 3035 lpfc_issue_els_flogi(vport, ndlp, retry);
dea3101e
JB
3036 break;
3037 case ELS_CMD_PLOGI:
2e0fef85 3038 if (!lpfc_issue_els_plogi(vport, ndlp->nlp_DID, retry)) {
5024ab17 3039 ndlp->nlp_prev_state = ndlp->nlp_state;
2e0fef85 3040 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
6ad42535 3041 }
dea3101e
JB
3042 break;
3043 case ELS_CMD_ADISC:
2e0fef85 3044 if (!lpfc_issue_els_adisc(vport, ndlp, retry)) {
5024ab17 3045 ndlp->nlp_prev_state = ndlp->nlp_state;
2e0fef85 3046 lpfc_nlp_set_state(vport, ndlp, NLP_STE_ADISC_ISSUE);
6ad42535 3047 }
dea3101e
JB
3048 break;
3049 case ELS_CMD_PRLI:
2e0fef85 3050 if (!lpfc_issue_els_prli(vport, ndlp, retry)) {
5024ab17 3051 ndlp->nlp_prev_state = ndlp->nlp_state;
2e0fef85 3052 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PRLI_ISSUE);
6ad42535 3053 }
dea3101e
JB
3054 break;
3055 case ELS_CMD_LOGO:
2e0fef85 3056 if (!lpfc_issue_els_logo(vport, ndlp, retry)) {
5024ab17 3057 ndlp->nlp_prev_state = ndlp->nlp_state;
086a345f 3058 lpfc_nlp_set_state(vport, ndlp, NLP_STE_LOGO_ISSUE);
6ad42535 3059 }
dea3101e 3060 break;
92d7f7b0 3061 case ELS_CMD_FDISC:
fedd3b7b
JS
3062 if (!(vport->fc_flag & FC_VPORT_NEEDS_INIT_VPI))
3063 lpfc_issue_els_fdisc(vport, ndlp, retry);
92d7f7b0 3064 break;
dea3101e
JB
3065 }
3066 return;
3067}
3068
e59058c4 3069/**
3621a710 3070 * lpfc_els_retry - Make retry decision on an els command iocb
e59058c4
JS
3071 * @phba: pointer to lpfc hba data structure.
3072 * @cmdiocb: pointer to lpfc command iocb data structure.
3073 * @rspiocb: pointer to lpfc response iocb data structure.
3074 *
3075 * This routine makes a retry decision on an ELS command IOCB, which has
3076 * failed. The following ELS IOCBs use this function for retrying the command
3077 * when previously issued command responsed with error status: FLOGI, PLOGI,
3078 * PRLI, ADISC, LOGO, and FDISC. Based on the ELS command type and the
3079 * returned error status, it makes the decision whether a retry shall be
3080 * issued for the command, and whether a retry shall be made immediately or
3081 * delayed. In the former case, the corresponding ELS command issuing-function
3082 * is called to retry the command. In the later case, the ELS command shall
3083 * be posted to the ndlp delayed event and delayed function timer set to the
3084 * ndlp for the delayed command issusing.
3085 *
3086 * Return code
3087 * 0 - No retry of els command is made
3088 * 1 - Immediate or delayed retry of els command is made
3089 **/
dea3101e 3090static int
2e0fef85
JS
3091lpfc_els_retry(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
3092 struct lpfc_iocbq *rspiocb)
dea3101e 3093{
2e0fef85
JS
3094 struct lpfc_vport *vport = cmdiocb->vport;
3095 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
3096 IOCB_t *irsp = &rspiocb->iocb;
3097 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
3098 struct lpfc_dmabuf *pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
dea3101e
JB
3099 uint32_t *elscmd;
3100 struct ls_rjt stat;
2e0fef85 3101 int retry = 0, maxretry = lpfc_max_els_tries, delay = 0;
98c9ea5c 3102 int logerr = 0;
2e0fef85 3103 uint32_t cmd = 0;
488d1469 3104 uint32_t did;
dea3101e 3105
488d1469 3106
dea3101e
JB
3107 /* Note: context2 may be 0 for internal driver abort
3108 * of delays ELS command.
3109 */
3110
3111 if (pcmd && pcmd->virt) {
3112 elscmd = (uint32_t *) (pcmd->virt);
3113 cmd = *elscmd++;
3114 }
3115
e47c9093 3116 if (ndlp && NLP_CHK_NODE_ACT(ndlp))
488d1469
JS
3117 did = ndlp->nlp_DID;
3118 else {
3119 /* We should only hit this case for retrying PLOGI */
3120 did = irsp->un.elsreq64.remoteID;
2e0fef85 3121 ndlp = lpfc_findnode_did(vport, did);
e47c9093
JS
3122 if ((!ndlp || !NLP_CHK_NODE_ACT(ndlp))
3123 && (cmd != ELS_CMD_PLOGI))
488d1469
JS
3124 return 1;
3125 }
3126
858c9f6c
JS
3127 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
3128 "Retry ELS: wd7:x%x wd4:x%x did:x%x",
3129 *(((uint32_t *) irsp) + 7), irsp->un.ulpWord[4], ndlp->nlp_DID);
3130
dea3101e
JB
3131 switch (irsp->ulpStatus) {
3132 case IOSTAT_FCP_RSP_ERROR:
1151e3ec 3133 break;
dea3101e 3134 case IOSTAT_REMOTE_STOP:
1151e3ec
JS
3135 if (phba->sli_rev == LPFC_SLI_REV4) {
3136 /* This IO was aborted by the target, we don't
3137 * know the rxid and because we did not send the
3138 * ABTS we cannot generate and RRQ.
3139 */
3140 lpfc_set_rrq_active(phba, ndlp,
ee0f4fe1 3141 cmdiocb->sli4_lxritag, 0, 0);
1151e3ec 3142 }
dea3101e 3143 break;
dea3101e 3144 case IOSTAT_LOCAL_REJECT:
e3d2b802 3145 switch ((irsp->un.ulpWord[4] & IOERR_PARAM_MASK)) {
dea3101e 3146 case IOERR_LOOP_OPEN_FAILURE:
eaf15d5b
JS
3147 if (cmd == ELS_CMD_FLOGI) {
3148 if (PCI_DEVICE_ID_HORNET ==
3149 phba->pcidev->device) {
76a95d75 3150 phba->fc_topology = LPFC_TOPOLOGY_LOOP;
eaf15d5b
JS
3151 phba->pport->fc_myDID = 0;
3152 phba->alpa_map[0] = 0;
3153 phba->alpa_map[1] = 0;
3154 }
3155 }
2e0fef85 3156 if (cmd == ELS_CMD_PLOGI && cmdiocb->retry == 0)
92d7f7b0 3157 delay = 1000;
dea3101e
JB
3158 retry = 1;
3159 break;
3160
92d7f7b0 3161 case IOERR_ILLEGAL_COMMAND:
7f5f3d0d
JS
3162 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
3163 "0124 Retry illegal cmd x%x "
3164 "retry:x%x delay:x%x\n",
3165 cmd, cmdiocb->retry, delay);
3166 retry = 1;
3167 /* All command's retry policy */
3168 maxretry = 8;
3169 if (cmdiocb->retry > 2)
3170 delay = 1000;
92d7f7b0
JS
3171 break;
3172
dea3101e 3173 case IOERR_NO_RESOURCES:
98c9ea5c 3174 logerr = 1; /* HBA out of resources */
858c9f6c
JS
3175 retry = 1;
3176 if (cmdiocb->retry > 100)
3177 delay = 100;
3178 maxretry = 250;
3179 break;
3180
3181 case IOERR_ILLEGAL_FRAME:
92d7f7b0 3182 delay = 100;
dea3101e
JB
3183 retry = 1;
3184 break;
3185
858c9f6c 3186 case IOERR_SEQUENCE_TIMEOUT:
dea3101e 3187 case IOERR_INVALID_RPI:
5b5b36a9
JS
3188 if (cmd == ELS_CMD_PLOGI &&
3189 did == NameServer_DID) {
3190 /* Continue forever if plogi to */
3191 /* the nameserver fails */
3192 maxretry = 0;
3193 delay = 100;
3194 }
dea3101e
JB
3195 retry = 1;
3196 break;
3197 }
3198 break;
3199
3200 case IOSTAT_NPORT_RJT:
3201 case IOSTAT_FABRIC_RJT:
3202 if (irsp->un.ulpWord[4] & RJT_UNAVAIL_TEMP) {
3203 retry = 1;
3204 break;
3205 }
3206 break;
3207
3208 case IOSTAT_NPORT_BSY:
3209 case IOSTAT_FABRIC_BSY:
98c9ea5c 3210 logerr = 1; /* Fabric / Remote NPort out of resources */
dea3101e
JB
3211 retry = 1;
3212 break;
3213
3214 case IOSTAT_LS_RJT:
3215 stat.un.lsRjtError = be32_to_cpu(irsp->un.ulpWord[4]);
3216 /* Added for Vendor specifc support
3217 * Just keep retrying for these Rsn / Exp codes
3218 */
3219 switch (stat.un.b.lsRjtRsnCode) {
3220 case LSRJT_UNABLE_TPC:
3221 if (stat.un.b.lsRjtRsnCodeExp ==
3222 LSEXP_CMD_IN_PROGRESS) {
3223 if (cmd == ELS_CMD_PLOGI) {
92d7f7b0 3224 delay = 1000;
dea3101e
JB
3225 maxretry = 48;
3226 }
3227 retry = 1;
3228 break;
3229 }
ffc95493
JS
3230 if (stat.un.b.lsRjtRsnCodeExp ==
3231 LSEXP_CANT_GIVE_DATA) {
3232 if (cmd == ELS_CMD_PLOGI) {
3233 delay = 1000;
3234 maxretry = 48;
3235 }
3236 retry = 1;
3237 break;
3238 }
4c1b64ba
JS
3239 if ((cmd == ELS_CMD_PLOGI) ||
3240 (cmd == ELS_CMD_PRLI)) {
92d7f7b0 3241 delay = 1000;
dea3101e
JB
3242 maxretry = lpfc_max_els_tries + 1;
3243 retry = 1;
3244 break;
3245 }
92d7f7b0
JS
3246 if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
3247 (cmd == ELS_CMD_FDISC) &&
3248 (stat.un.b.lsRjtRsnCodeExp == LSEXP_OUT_OF_RESOURCE)){
e8b62011
JS
3249 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
3250 "0125 FDISC Failed (x%x). "
3251 "Fabric out of resources\n",
3252 stat.un.lsRjtError);
92d7f7b0
JS
3253 lpfc_vport_set_state(vport,
3254 FC_VPORT_NO_FABRIC_RSCS);
3255 }
dea3101e
JB
3256 break;
3257
3258 case LSRJT_LOGICAL_BSY:
858c9f6c
JS
3259 if ((cmd == ELS_CMD_PLOGI) ||
3260 (cmd == ELS_CMD_PRLI)) {
92d7f7b0 3261 delay = 1000;
dea3101e 3262 maxretry = 48;
92d7f7b0 3263 } else if (cmd == ELS_CMD_FDISC) {
51ef4c26
JS
3264 /* FDISC retry policy */
3265 maxretry = 48;
3266 if (cmdiocb->retry >= 32)
3267 delay = 1000;
dea3101e
JB
3268 }
3269 retry = 1;
3270 break;
92d7f7b0
JS
3271
3272 case LSRJT_LOGICAL_ERR:
7f5f3d0d
JS
3273 /* There are some cases where switches return this
3274 * error when they are not ready and should be returning
3275 * Logical Busy. We should delay every time.
3276 */
3277 if (cmd == ELS_CMD_FDISC &&
3278 stat.un.b.lsRjtRsnCodeExp == LSEXP_PORT_LOGIN_REQ) {
3279 maxretry = 3;
3280 delay = 1000;
3281 retry = 1;
3282 break;
3283 }
92d7f7b0
JS
3284 case LSRJT_PROTOCOL_ERR:
3285 if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
3286 (cmd == ELS_CMD_FDISC) &&
3287 ((stat.un.b.lsRjtRsnCodeExp == LSEXP_INVALID_PNAME) ||
3288 (stat.un.b.lsRjtRsnCodeExp == LSEXP_INVALID_NPORT_ID))
3289 ) {
e8b62011 3290 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
d7c255b2 3291 "0122 FDISC Failed (x%x). "
e8b62011
JS
3292 "Fabric Detected Bad WWN\n",
3293 stat.un.lsRjtError);
92d7f7b0
JS
3294 lpfc_vport_set_state(vport,
3295 FC_VPORT_FABRIC_REJ_WWN);
3296 }
3297 break;
dea3101e
JB
3298 }
3299 break;
3300
3301 case IOSTAT_INTERMED_RSP:
3302 case IOSTAT_BA_RJT:
3303 break;
3304
3305 default:
3306 break;
3307 }
3308
488d1469 3309 if (did == FDMI_DID)
dea3101e 3310 retry = 1;
dea3101e 3311
df9e1b59 3312 if ((cmd == ELS_CMD_FLOGI) &&
76a95d75 3313 (phba->fc_topology != LPFC_TOPOLOGY_LOOP) &&
1b32f6aa 3314 !lpfc_error_lost_link(irsp)) {
98c9ea5c
JS
3315 /* FLOGI retry policy */
3316 retry = 1;
df9e1b59 3317 /* retry FLOGI forever */
6eae4303
JS
3318 if (phba->link_flag != LS_LOOPBACK_MODE)
3319 maxretry = 0;
3320 else
3321 maxretry = 2;
3322
6669f9bb
JS
3323 if (cmdiocb->retry >= 100)
3324 delay = 5000;
3325 else if (cmdiocb->retry >= 32)
98c9ea5c 3326 delay = 1000;
df9e1b59
JS
3327 } else if ((cmd == ELS_CMD_FDISC) && !lpfc_error_lost_link(irsp)) {
3328 /* retry FDISCs every second up to devloss */
3329 retry = 1;
3330 maxretry = vport->cfg_devloss_tmo;
3331 delay = 1000;
98c9ea5c
JS
3332 }
3333
6669f9bb
JS
3334 cmdiocb->retry++;
3335 if (maxretry && (cmdiocb->retry >= maxretry)) {
dea3101e
JB
3336 phba->fc_stat.elsRetryExceeded++;
3337 retry = 0;
3338 }
3339
ed957684
JS
3340 if ((vport->load_flag & FC_UNLOADING) != 0)
3341 retry = 0;
3342
dea3101e 3343 if (retry) {
38b92ef8
JS
3344 if ((cmd == ELS_CMD_PLOGI) || (cmd == ELS_CMD_FDISC)) {
3345 /* Stop retrying PLOGI and FDISC if in FCF discovery */
3346 if (phba->fcf.fcf_flag & FCF_DISCOVERY) {
3347 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
3348 "2849 Stop retry ELS command "
3349 "x%x to remote NPORT x%x, "
3350 "Data: x%x x%x\n", cmd, did,
3351 cmdiocb->retry, delay);
3352 return 0;
3353 }
3354 }
dea3101e
JB
3355
3356 /* Retry ELS command <elsCmd> to remote NPORT <did> */
e8b62011
JS
3357 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
3358 "0107 Retry ELS command x%x to remote "
3359 "NPORT x%x Data: x%x x%x\n",
3360 cmd, did, cmdiocb->retry, delay);
dea3101e 3361
858c9f6c
JS
3362 if (((cmd == ELS_CMD_PLOGI) || (cmd == ELS_CMD_ADISC)) &&
3363 ((irsp->ulpStatus != IOSTAT_LOCAL_REJECT) ||
e3d2b802
JS
3364 ((irsp->un.ulpWord[4] & IOERR_PARAM_MASK) !=
3365 IOERR_NO_RESOURCES))) {
858c9f6c
JS
3366 /* Don't reset timer for no resources */
3367
dea3101e 3368 /* If discovery / RSCN timer is running, reset it */
2e0fef85 3369 if (timer_pending(&vport->fc_disctmo) ||
92d7f7b0 3370 (vport->fc_flag & FC_RSCN_MODE))
2e0fef85 3371 lpfc_set_disctmo(vport);
dea3101e
JB
3372 }
3373
3374 phba->fc_stat.elsXmitRetry++;
58da1ffb 3375 if (ndlp && NLP_CHK_NODE_ACT(ndlp) && delay) {
dea3101e
JB
3376 phba->fc_stat.elsDelayRetry++;
3377 ndlp->nlp_retry = cmdiocb->retry;
3378
92d7f7b0
JS
3379 /* delay is specified in milliseconds */
3380 mod_timer(&ndlp->nlp_delayfunc,
3381 jiffies + msecs_to_jiffies(delay));
2e0fef85 3382 spin_lock_irq(shost->host_lock);
dea3101e 3383 ndlp->nlp_flag |= NLP_DELAY_TMO;
2e0fef85 3384 spin_unlock_irq(shost->host_lock);
dea3101e 3385
5024ab17 3386 ndlp->nlp_prev_state = ndlp->nlp_state;
858c9f6c
JS
3387 if (cmd == ELS_CMD_PRLI)
3388 lpfc_nlp_set_state(vport, ndlp,
4c1b64ba 3389 NLP_STE_PRLI_ISSUE);
858c9f6c
JS
3390 else
3391 lpfc_nlp_set_state(vport, ndlp,
3392 NLP_STE_NPR_NODE);
dea3101e
JB
3393 ndlp->nlp_last_elscmd = cmd;
3394
c9f8735b 3395 return 1;
dea3101e
JB
3396 }
3397 switch (cmd) {
3398 case ELS_CMD_FLOGI:
2e0fef85 3399 lpfc_issue_els_flogi(vport, ndlp, cmdiocb->retry);
c9f8735b 3400 return 1;
92d7f7b0
JS
3401 case ELS_CMD_FDISC:
3402 lpfc_issue_els_fdisc(vport, ndlp, cmdiocb->retry);
3403 return 1;
dea3101e 3404 case ELS_CMD_PLOGI:
58da1ffb 3405 if (ndlp && NLP_CHK_NODE_ACT(ndlp)) {
488d1469 3406 ndlp->nlp_prev_state = ndlp->nlp_state;
2e0fef85 3407 lpfc_nlp_set_state(vport, ndlp,
de0c5b32 3408 NLP_STE_PLOGI_ISSUE);
488d1469 3409 }
2e0fef85 3410 lpfc_issue_els_plogi(vport, did, cmdiocb->retry);
c9f8735b 3411 return 1;
dea3101e 3412 case ELS_CMD_ADISC:
5024ab17 3413 ndlp->nlp_prev_state = ndlp->nlp_state;
2e0fef85
JS
3414 lpfc_nlp_set_state(vport, ndlp, NLP_STE_ADISC_ISSUE);
3415 lpfc_issue_els_adisc(vport, ndlp, cmdiocb->retry);
c9f8735b 3416 return 1;
dea3101e 3417 case ELS_CMD_PRLI:
5024ab17 3418 ndlp->nlp_prev_state = ndlp->nlp_state;
2e0fef85
JS
3419 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PRLI_ISSUE);
3420 lpfc_issue_els_prli(vport, ndlp, cmdiocb->retry);
c9f8735b 3421 return 1;
dea3101e 3422 case ELS_CMD_LOGO:
5024ab17 3423 ndlp->nlp_prev_state = ndlp->nlp_state;
086a345f 3424 lpfc_nlp_set_state(vport, ndlp, NLP_STE_LOGO_ISSUE);
2e0fef85 3425 lpfc_issue_els_logo(vport, ndlp, cmdiocb->retry);
c9f8735b 3426 return 1;
dea3101e
JB
3427 }
3428 }
dea3101e 3429 /* No retry ELS command <elsCmd> to remote NPORT <did> */
98c9ea5c
JS
3430 if (logerr) {
3431 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
3432 "0137 No retry ELS command x%x to remote "
3433 "NPORT x%x: Out of Resources: Error:x%x/%x\n",
3434 cmd, did, irsp->ulpStatus,
3435 irsp->un.ulpWord[4]);
3436 }
3437 else {
3438 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
a58cbd52
JS
3439 "0108 No retry ELS command x%x to remote "
3440 "NPORT x%x Retried:%d Error:x%x/%x\n",
3441 cmd, did, cmdiocb->retry, irsp->ulpStatus,
3442 irsp->un.ulpWord[4]);
98c9ea5c 3443 }
c9f8735b 3444 return 0;
dea3101e
JB
3445}
3446
e59058c4 3447/**
3621a710 3448 * lpfc_els_free_data - Free lpfc dma buffer and data structure with an iocb
e59058c4
JS
3449 * @phba: pointer to lpfc hba data structure.
3450 * @buf_ptr1: pointer to the lpfc DMA buffer data structure.
3451 *
3452 * This routine releases the lpfc DMA (Direct Memory Access) buffer(s)
3453 * associated with a command IOCB back to the lpfc DMA buffer pool. It first
3454 * checks to see whether there is a lpfc DMA buffer associated with the
3455 * response of the command IOCB. If so, it will be released before releasing
3456 * the lpfc DMA buffer associated with the IOCB itself.
3457 *
3458 * Return code
3459 * 0 - Successfully released lpfc DMA buffer (currently, always return 0)
3460 **/
09372820 3461static int
87af33fe
JS
3462lpfc_els_free_data(struct lpfc_hba *phba, struct lpfc_dmabuf *buf_ptr1)
3463{
3464 struct lpfc_dmabuf *buf_ptr;
3465
e59058c4 3466 /* Free the response before processing the command. */
87af33fe
JS
3467 if (!list_empty(&buf_ptr1->list)) {
3468 list_remove_head(&buf_ptr1->list, buf_ptr,
3469 struct lpfc_dmabuf,
3470 list);
3471 lpfc_mbuf_free(phba, buf_ptr->virt, buf_ptr->phys);
3472 kfree(buf_ptr);
3473 }
3474 lpfc_mbuf_free(phba, buf_ptr1->virt, buf_ptr1->phys);
3475 kfree(buf_ptr1);
3476 return 0;
3477}
3478
e59058c4 3479/**
3621a710 3480 * lpfc_els_free_bpl - Free lpfc dma buffer and data structure with bpl
e59058c4
JS
3481 * @phba: pointer to lpfc hba data structure.
3482 * @buf_ptr: pointer to the lpfc dma buffer data structure.
3483 *
3484 * This routine releases the lpfc Direct Memory Access (DMA) buffer
3485 * associated with a Buffer Pointer List (BPL) back to the lpfc DMA buffer
3486 * pool.
3487 *
3488 * Return code
3489 * 0 - Successfully released lpfc DMA buffer (currently, always return 0)
3490 **/
09372820 3491static int
87af33fe
JS
3492lpfc_els_free_bpl(struct lpfc_hba *phba, struct lpfc_dmabuf *buf_ptr)
3493{
3494 lpfc_mbuf_free(phba, buf_ptr->virt, buf_ptr->phys);
3495 kfree(buf_ptr);
3496 return 0;
3497}
3498
e59058c4 3499/**
3621a710 3500 * lpfc_els_free_iocb - Free a command iocb and its associated resources
e59058c4
JS
3501 * @phba: pointer to lpfc hba data structure.
3502 * @elsiocb: pointer to lpfc els command iocb data structure.
3503 *
3504 * This routine frees a command IOCB and its associated resources. The
3505 * command IOCB data structure contains the reference to various associated
3506 * resources, these fields must be set to NULL if the associated reference
3507 * not present:
3508 * context1 - reference to ndlp
3509 * context2 - reference to cmd
3510 * context2->next - reference to rsp
3511 * context3 - reference to bpl
3512 *
3513 * It first properly decrements the reference count held on ndlp for the
3514 * IOCB completion callback function. If LPFC_DELAY_MEM_FREE flag is not
3515 * set, it invokes the lpfc_els_free_data() routine to release the Direct
3516 * Memory Access (DMA) buffers associated with the IOCB. Otherwise, it
3517 * adds the DMA buffer the @phba data structure for the delayed release.
3518 * If reference to the Buffer Pointer List (BPL) is present, the
3519 * lpfc_els_free_bpl() routine is invoked to release the DMA memory
3520 * associated with BPL. Finally, the lpfc_sli_release_iocbq() routine is
3521 * invoked to release the IOCB data structure back to @phba IOCBQ list.
3522 *
3523 * Return code
3524 * 0 - Success (currently, always return 0)
3525 **/
dea3101e 3526int
329f9bc7 3527lpfc_els_free_iocb(struct lpfc_hba *phba, struct lpfc_iocbq *elsiocb)
dea3101e
JB
3528{
3529 struct lpfc_dmabuf *buf_ptr, *buf_ptr1;
a8adb832
JS
3530 struct lpfc_nodelist *ndlp;
3531
3532 ndlp = (struct lpfc_nodelist *)elsiocb->context1;
3533 if (ndlp) {
3534 if (ndlp->nlp_flag & NLP_DEFER_RM) {
3535 lpfc_nlp_put(ndlp);
dea3101e 3536
a8adb832
JS
3537 /* If the ndlp is not being used by another discovery
3538 * thread, free it.
3539 */
3540 if (!lpfc_nlp_not_used(ndlp)) {
3541 /* If ndlp is being used by another discovery
3542 * thread, just clear NLP_DEFER_RM
3543 */
3544 ndlp->nlp_flag &= ~NLP_DEFER_RM;
3545 }
3546 }
3547 else
3548 lpfc_nlp_put(ndlp);
329f9bc7
JS
3549 elsiocb->context1 = NULL;
3550 }
dea3101e
JB
3551 /* context2 = cmd, context2->next = rsp, context3 = bpl */
3552 if (elsiocb->context2) {
0ff10d46
JS
3553 if (elsiocb->iocb_flag & LPFC_DELAY_MEM_FREE) {
3554 /* Firmware could still be in progress of DMAing
3555 * payload, so don't free data buffer till after
3556 * a hbeat.
3557 */
3558 elsiocb->iocb_flag &= ~LPFC_DELAY_MEM_FREE;
3559 buf_ptr = elsiocb->context2;
3560 elsiocb->context2 = NULL;
3561 if (buf_ptr) {
3562 buf_ptr1 = NULL;
3563 spin_lock_irq(&phba->hbalock);
3564 if (!list_empty(&buf_ptr->list)) {
3565 list_remove_head(&buf_ptr->list,
3566 buf_ptr1, struct lpfc_dmabuf,
3567 list);
3568 INIT_LIST_HEAD(&buf_ptr1->list);
3569 list_add_tail(&buf_ptr1->list,
3570 &phba->elsbuf);
3571 phba->elsbuf_cnt++;
3572 }
3573 INIT_LIST_HEAD(&buf_ptr->list);
3574 list_add_tail(&buf_ptr->list, &phba->elsbuf);
3575 phba->elsbuf_cnt++;
3576 spin_unlock_irq(&phba->hbalock);
3577 }
3578 } else {
3579 buf_ptr1 = (struct lpfc_dmabuf *) elsiocb->context2;
3580 lpfc_els_free_data(phba, buf_ptr1);
3581 }
dea3101e
JB
3582 }
3583
3584 if (elsiocb->context3) {
3585 buf_ptr = (struct lpfc_dmabuf *) elsiocb->context3;
87af33fe 3586 lpfc_els_free_bpl(phba, buf_ptr);
dea3101e 3587 }
604a3e30 3588 lpfc_sli_release_iocbq(phba, elsiocb);
dea3101e
JB
3589 return 0;
3590}
3591
e59058c4 3592/**
3621a710 3593 * lpfc_cmpl_els_logo_acc - Completion callback function to logo acc response
e59058c4
JS
3594 * @phba: pointer to lpfc hba data structure.
3595 * @cmdiocb: pointer to lpfc command iocb data structure.
3596 * @rspiocb: pointer to lpfc response iocb data structure.
3597 *
3598 * This routine is the completion callback function to the Logout (LOGO)
3599 * Accept (ACC) Response ELS command. This routine is invoked to indicate
3600 * the completion of the LOGO process. It invokes the lpfc_nlp_not_used() to
3601 * release the ndlp if it has the last reference remaining (reference count
3602 * is 1). If succeeded (meaning ndlp released), it sets the IOCB context1
3603 * field to NULL to inform the following lpfc_els_free_iocb() routine no
3604 * ndlp reference count needs to be decremented. Otherwise, the ndlp
3605 * reference use-count shall be decremented by the lpfc_els_free_iocb()
3606 * routine. Finally, the lpfc_els_free_iocb() is invoked to release the
3607 * IOCB data structure.
3608 **/
dea3101e 3609static void
2e0fef85
JS
3610lpfc_cmpl_els_logo_acc(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
3611 struct lpfc_iocbq *rspiocb)
dea3101e 3612{
2e0fef85
JS
3613 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
3614 struct lpfc_vport *vport = cmdiocb->vport;
858c9f6c
JS
3615 IOCB_t *irsp;
3616
3617 irsp = &rspiocb->iocb;
3618 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
3619 "ACC LOGO cmpl: status:x%x/x%x did:x%x",
3620 irsp->ulpStatus, irsp->un.ulpWord[4], ndlp->nlp_DID);
dea3101e 3621 /* ACC to LOGO completes to NPort <nlp_DID> */
e8b62011
JS
3622 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
3623 "0109 ACC to LOGO completes to NPort x%x "
3624 "Data: x%x x%x x%x\n",
3625 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
3626 ndlp->nlp_rpi);
87af33fe
JS
3627
3628 if (ndlp->nlp_state == NLP_STE_NPR_NODE) {
3629 /* NPort Recovery mode or node is just allocated */
3630 if (!lpfc_nlp_not_used(ndlp)) {
3631 /* If the ndlp is being used by another discovery
3632 * thread, just unregister the RPI.
3633 */
3634 lpfc_unreg_rpi(vport, ndlp);
fa4066b6
JS
3635 } else {
3636 /* Indicate the node has already released, should
3637 * not reference to it from within lpfc_els_free_iocb.
3638 */
3639 cmdiocb->context1 = NULL;
87af33fe 3640 }
dea3101e 3641 }
73d91e50
JS
3642
3643 /*
3644 * The driver received a LOGO from the rport and has ACK'd it.
df9e1b59 3645 * At this point, the driver is done so release the IOCB
73d91e50 3646 */
dea3101e 3647 lpfc_els_free_iocb(phba, cmdiocb);
dea3101e
JB
3648}
3649
e59058c4 3650/**
3621a710 3651 * lpfc_mbx_cmpl_dflt_rpi - Completion callbk func for unreg dflt rpi mbox cmd
e59058c4
JS
3652 * @phba: pointer to lpfc hba data structure.
3653 * @pmb: pointer to the driver internal queue element for mailbox command.
3654 *
3655 * This routine is the completion callback function for unregister default
3656 * RPI (Remote Port Index) mailbox command to the @phba. It simply releases
3657 * the associated lpfc Direct Memory Access (DMA) buffer back to the pool and
3658 * decrements the ndlp reference count held for this completion callback
3659 * function. After that, it invokes the lpfc_nlp_not_used() to check
3660 * whether there is only one reference left on the ndlp. If so, it will
3661 * perform one more decrement and trigger the release of the ndlp.
3662 **/
858c9f6c
JS
3663void
3664lpfc_mbx_cmpl_dflt_rpi(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
3665{
3666 struct lpfc_dmabuf *mp = (struct lpfc_dmabuf *) (pmb->context1);
3667 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) pmb->context2;
3668
3669 pmb->context1 = NULL;
d439d286
JS
3670 pmb->context2 = NULL;
3671
858c9f6c
JS
3672 lpfc_mbuf_free(phba, mp->virt, mp->phys);
3673 kfree(mp);
3674 mempool_free(pmb, phba->mbox_mem_pool);
086a345f 3675 if (ndlp) {
be6bb941
JS
3676 lpfc_printf_vlog(ndlp->vport, KERN_INFO, LOG_NODE,
3677 "0006 rpi%x DID:%x flg:%x %d map:%x %p\n",
3678 ndlp->nlp_rpi, ndlp->nlp_DID, ndlp->nlp_flag,
3679 atomic_read(&ndlp->kref.refcount),
3680 ndlp->nlp_usg_map, ndlp);
086a345f
JS
3681 if (NLP_CHK_NODE_ACT(ndlp)) {
3682 lpfc_nlp_put(ndlp);
3683 /* This is the end of the default RPI cleanup logic for
3684 * this ndlp. If no other discovery threads are using
3685 * this ndlp, free all resources associated with it.
3686 */
3687 lpfc_nlp_not_used(ndlp);
3688 } else {
3689 lpfc_drop_node(ndlp->vport, ndlp);
3690 }
a8adb832 3691 }
3772a991 3692
858c9f6c
JS
3693 return;
3694}
3695
e59058c4 3696/**
3621a710 3697 * lpfc_cmpl_els_rsp - Completion callback function for els response iocb cmd
e59058c4
JS
3698 * @phba: pointer to lpfc hba data structure.
3699 * @cmdiocb: pointer to lpfc command iocb data structure.
3700 * @rspiocb: pointer to lpfc response iocb data structure.
3701 *
3702 * This routine is the completion callback function for ELS Response IOCB
3703 * command. In normal case, this callback function just properly sets the
3704 * nlp_flag bitmap in the ndlp data structure, if the mbox command reference
3705 * field in the command IOCB is not NULL, the referred mailbox command will
3706 * be send out, and then invokes the lpfc_els_free_iocb() routine to release
3707 * the IOCB. Under error conditions, such as when a LS_RJT is returned or a
3708 * link down event occurred during the discovery, the lpfc_nlp_not_used()
3709 * routine shall be invoked trying to release the ndlp if no other threads
3710 * are currently referring it.
3711 **/
dea3101e 3712static void
858c9f6c 3713lpfc_cmpl_els_rsp(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
329f9bc7 3714 struct lpfc_iocbq *rspiocb)
dea3101e 3715{
2e0fef85
JS
3716 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
3717 struct lpfc_vport *vport = ndlp ? ndlp->vport : NULL;
3718 struct Scsi_Host *shost = vport ? lpfc_shost_from_vport(vport) : NULL;
87af33fe
JS
3719 IOCB_t *irsp;
3720 uint8_t *pcmd;
dea3101e 3721 LPFC_MBOXQ_t *mbox = NULL;
2e0fef85 3722 struct lpfc_dmabuf *mp = NULL;
87af33fe 3723 uint32_t ls_rjt = 0;
dea3101e 3724
33ccf8d1
JS
3725 irsp = &rspiocb->iocb;
3726
dea3101e
JB
3727 if (cmdiocb->context_un.mbox)
3728 mbox = cmdiocb->context_un.mbox;
3729
fa4066b6
JS
3730 /* First determine if this is a LS_RJT cmpl. Note, this callback
3731 * function can have cmdiocb->contest1 (ndlp) field set to NULL.
3732 */
87af33fe 3733 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) cmdiocb->context2)->virt);
58da1ffb
JS
3734 if (ndlp && NLP_CHK_NODE_ACT(ndlp) &&
3735 (*((uint32_t *) (pcmd)) == ELS_CMD_LS_RJT)) {
fa4066b6 3736 /* A LS_RJT associated with Default RPI cleanup has its own
3ad2f3fb 3737 * separate code path.
87af33fe
JS
3738 */
3739 if (!(ndlp->nlp_flag & NLP_RM_DFLT_RPI))
3740 ls_rjt = 1;
3741 }
3742
dea3101e 3743 /* Check to see if link went down during discovery */
58da1ffb 3744 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp) || lpfc_els_chk_latt(vport)) {
dea3101e 3745 if (mbox) {
14691150
JS
3746 mp = (struct lpfc_dmabuf *) mbox->context1;
3747 if (mp) {
3748 lpfc_mbuf_free(phba, mp->virt, mp->phys);
3749 kfree(mp);
3750 }
329f9bc7 3751 mempool_free(mbox, phba->mbox_mem_pool);
dea3101e 3752 }
58da1ffb
JS
3753 if (ndlp && NLP_CHK_NODE_ACT(ndlp) &&
3754 (ndlp->nlp_flag & NLP_RM_DFLT_RPI))
fa4066b6 3755 if (lpfc_nlp_not_used(ndlp)) {
98c9ea5c 3756 ndlp = NULL;
fa4066b6
JS
3757 /* Indicate the node has already released,
3758 * should not reference to it from within
3759 * the routine lpfc_els_free_iocb.
3760 */
3761 cmdiocb->context1 = NULL;
3762 }
dea3101e
JB
3763 goto out;
3764 }
3765
858c9f6c 3766 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
51ef4c26 3767 "ELS rsp cmpl: status:x%x/x%x did:x%x",
858c9f6c 3768 irsp->ulpStatus, irsp->un.ulpWord[4],
51ef4c26 3769 cmdiocb->iocb.un.elsreq64.remoteID);
dea3101e 3770 /* ELS response tag <ulpIoTag> completes */
e8b62011
JS
3771 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
3772 "0110 ELS response tag x%x completes "
3773 "Data: x%x x%x x%x x%x x%x x%x x%x\n",
3774 cmdiocb->iocb.ulpIoTag, rspiocb->iocb.ulpStatus,
3775 rspiocb->iocb.un.ulpWord[4], rspiocb->iocb.ulpTimeout,
3776 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
3777 ndlp->nlp_rpi);
dea3101e
JB
3778 if (mbox) {
3779 if ((rspiocb->iocb.ulpStatus == 0)
3780 && (ndlp->nlp_flag & NLP_ACC_REGLOGIN)) {
2e0fef85 3781 lpfc_unreg_rpi(vport, ndlp);
e47c9093
JS
3782 /* Increment reference count to ndlp to hold the
3783 * reference to ndlp for the callback function.
3784 */
329f9bc7 3785 mbox->context2 = lpfc_nlp_get(ndlp);
2e0fef85 3786 mbox->vport = vport;
858c9f6c
JS
3787 if (ndlp->nlp_flag & NLP_RM_DFLT_RPI) {
3788 mbox->mbox_flag |= LPFC_MBX_IMED_UNREG;
3789 mbox->mbox_cmpl = lpfc_mbx_cmpl_dflt_rpi;
3790 }
3791 else {
3792 mbox->mbox_cmpl = lpfc_mbx_cmpl_reg_login;
3793 ndlp->nlp_prev_state = ndlp->nlp_state;
3794 lpfc_nlp_set_state(vport, ndlp,
2e0fef85 3795 NLP_STE_REG_LOGIN_ISSUE);
858c9f6c 3796 }
4b7789b7
JS
3797
3798 ndlp->nlp_flag |= NLP_REG_LOGIN_SEND;
0b727fea 3799 if (lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT)
e47c9093 3800 != MBX_NOT_FINISHED)
dea3101e 3801 goto out;
4b7789b7
JS
3802
3803 /* Decrement the ndlp reference count we
3804 * set for this failed mailbox command.
3805 */
3806 lpfc_nlp_put(ndlp);
3807 ndlp->nlp_flag &= ~NLP_REG_LOGIN_SEND;
98c9ea5c
JS
3808
3809 /* ELS rsp: Cannot issue reg_login for <NPortid> */
3810 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
3811 "0138 ELS rsp: Cannot issue reg_login for x%x "
3812 "Data: x%x x%x x%x\n",
3813 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
3814 ndlp->nlp_rpi);
3815
fa4066b6 3816 if (lpfc_nlp_not_used(ndlp)) {
98c9ea5c 3817 ndlp = NULL;
fa4066b6
JS
3818 /* Indicate node has already been released,
3819 * should not reference to it from within
3820 * the routine lpfc_els_free_iocb.
3821 */
3822 cmdiocb->context1 = NULL;
3823 }
dea3101e 3824 } else {
858c9f6c
JS
3825 /* Do not drop node for lpfc_els_abort'ed ELS cmds */
3826 if (!lpfc_error_lost_link(irsp) &&
3827 ndlp->nlp_flag & NLP_ACC_REGLOGIN) {
fa4066b6 3828 if (lpfc_nlp_not_used(ndlp)) {
98c9ea5c 3829 ndlp = NULL;
fa4066b6
JS
3830 /* Indicate node has already been
3831 * released, should not reference
3832 * to it from within the routine
3833 * lpfc_els_free_iocb.
3834 */
3835 cmdiocb->context1 = NULL;
3836 }
dea3101e
JB
3837 }
3838 }
14691150
JS
3839 mp = (struct lpfc_dmabuf *) mbox->context1;
3840 if (mp) {
3841 lpfc_mbuf_free(phba, mp->virt, mp->phys);
3842 kfree(mp);
3843 }
3844 mempool_free(mbox, phba->mbox_mem_pool);
dea3101e
JB
3845 }
3846out:
58da1ffb 3847 if (ndlp && NLP_CHK_NODE_ACT(ndlp)) {
2e0fef85 3848 spin_lock_irq(shost->host_lock);
858c9f6c 3849 ndlp->nlp_flag &= ~(NLP_ACC_REGLOGIN | NLP_RM_DFLT_RPI);
2e0fef85 3850 spin_unlock_irq(shost->host_lock);
87af33fe
JS
3851
3852 /* If the node is not being used by another discovery thread,
3853 * and we are sending a reject, we are done with it.
3854 * Release driver reference count here and free associated
3855 * resources.
3856 */
3857 if (ls_rjt)
fa4066b6
JS
3858 if (lpfc_nlp_not_used(ndlp))
3859 /* Indicate node has already been released,
3860 * should not reference to it from within
3861 * the routine lpfc_els_free_iocb.
3862 */
3863 cmdiocb->context1 = NULL;
4b7789b7 3864
dea3101e 3865 }
87af33fe 3866
dea3101e
JB
3867 lpfc_els_free_iocb(phba, cmdiocb);
3868 return;
3869}
3870
e59058c4 3871/**
3621a710 3872 * lpfc_els_rsp_acc - Prepare and issue an acc response iocb command
e59058c4
JS
3873 * @vport: pointer to a host virtual N_Port data structure.
3874 * @flag: the els command code to be accepted.
3875 * @oldiocb: pointer to the original lpfc command iocb data structure.
3876 * @ndlp: pointer to a node-list data structure.
3877 * @mbox: pointer to the driver internal queue element for mailbox command.
3878 *
3879 * This routine prepares and issues an Accept (ACC) response IOCB
3880 * command. It uses the @flag to properly set up the IOCB field for the
3881 * specific ACC response command to be issued and invokes the
3882 * lpfc_sli_issue_iocb() routine to send out ACC response IOCB. If a
3883 * @mbox pointer is passed in, it will be put into the context_un.mbox
3884 * field of the IOCB for the completion callback function to issue the
3885 * mailbox command to the HBA later when callback is invoked.
3886 *
3887 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
3888 * will be incremented by 1 for holding the ndlp and the reference to ndlp
3889 * will be stored into the context1 field of the IOCB for the completion
3890 * callback function to the corresponding response ELS IOCB command.
3891 *
3892 * Return code
3893 * 0 - Successfully issued acc response
3894 * 1 - Failed to issue acc response
3895 **/
dea3101e 3896int
2e0fef85
JS
3897lpfc_els_rsp_acc(struct lpfc_vport *vport, uint32_t flag,
3898 struct lpfc_iocbq *oldiocb, struct lpfc_nodelist *ndlp,
51ef4c26 3899 LPFC_MBOXQ_t *mbox)
dea3101e 3900{
2e0fef85
JS
3901 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
3902 struct lpfc_hba *phba = vport->phba;
dea3101e
JB
3903 IOCB_t *icmd;
3904 IOCB_t *oldcmd;
3905 struct lpfc_iocbq *elsiocb;
dea3101e 3906 uint8_t *pcmd;
d6de08cc 3907 struct serv_parm *sp;
dea3101e
JB
3908 uint16_t cmdsize;
3909 int rc;
82d9a2a2 3910 ELS_PKT *els_pkt_ptr;
dea3101e 3911
dea3101e
JB
3912 oldcmd = &oldiocb->iocb;
3913
3914 switch (flag) {
3915 case ELS_CMD_ACC:
92d7f7b0 3916 cmdsize = sizeof(uint32_t);
2e0fef85
JS
3917 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry,
3918 ndlp, ndlp->nlp_DID, ELS_CMD_ACC);
488d1469 3919 if (!elsiocb) {
2e0fef85 3920 spin_lock_irq(shost->host_lock);
5024ab17 3921 ndlp->nlp_flag &= ~NLP_LOGO_ACC;
2e0fef85 3922 spin_unlock_irq(shost->host_lock);
c9f8735b 3923 return 1;
dea3101e 3924 }
2e0fef85 3925
dea3101e 3926 icmd = &elsiocb->iocb;
7851fe2c
JS
3927 icmd->ulpContext = oldcmd->ulpContext; /* Xri / rx_id */
3928 icmd->unsli3.rcvsli3.ox_id = oldcmd->unsli3.rcvsli3.ox_id;
dea3101e
JB
3929 pcmd = (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
3930 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
92d7f7b0 3931 pcmd += sizeof(uint32_t);
858c9f6c
JS
3932
3933 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
3934 "Issue ACC: did:x%x flg:x%x",
3935 ndlp->nlp_DID, ndlp->nlp_flag, 0);
dea3101e 3936 break;
d6de08cc 3937 case ELS_CMD_FLOGI:
dea3101e 3938 case ELS_CMD_PLOGI:
92d7f7b0 3939 cmdsize = (sizeof(struct serv_parm) + sizeof(uint32_t));
2e0fef85
JS
3940 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry,
3941 ndlp, ndlp->nlp_DID, ELS_CMD_ACC);
488d1469 3942 if (!elsiocb)
c9f8735b 3943 return 1;
488d1469 3944
dea3101e 3945 icmd = &elsiocb->iocb;
7851fe2c
JS
3946 icmd->ulpContext = oldcmd->ulpContext; /* Xri / rx_id */
3947 icmd->unsli3.rcvsli3.ox_id = oldcmd->unsli3.rcvsli3.ox_id;
dea3101e
JB
3948 pcmd = (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
3949
3950 if (mbox)
3951 elsiocb->context_un.mbox = mbox;
3952
3953 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
92d7f7b0 3954 pcmd += sizeof(uint32_t);
d6de08cc
JS
3955 sp = (struct serv_parm *)pcmd;
3956
3957 if (flag == ELS_CMD_FLOGI) {
3958 /* Copy the received service parameters back */
3959 memcpy(sp, &phba->fc_fabparam,
3960 sizeof(struct serv_parm));
3961
3962 /* Clear the F_Port bit */
3963 sp->cmn.fPort = 0;
3964
3965 /* Mark all class service parameters as invalid */
3966 sp->cls1.classValid = 0;
3967 sp->cls2.classValid = 0;
3968 sp->cls3.classValid = 0;
3969 sp->cls4.classValid = 0;
3970
3971 /* Copy our worldwide names */
3972 memcpy(&sp->portName, &vport->fc_sparam.portName,
3973 sizeof(struct lpfc_name));
3974 memcpy(&sp->nodeName, &vport->fc_sparam.nodeName,
3975 sizeof(struct lpfc_name));
3976 } else {
3977 memcpy(pcmd, &vport->fc_sparam,
3978 sizeof(struct serv_parm));
3979 }
858c9f6c
JS
3980
3981 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
d6de08cc 3982 "Issue ACC FLOGI/PLOGI: did:x%x flg:x%x",
858c9f6c 3983 ndlp->nlp_DID, ndlp->nlp_flag, 0);
dea3101e 3984 break;
82d9a2a2 3985 case ELS_CMD_PRLO:
92d7f7b0 3986 cmdsize = sizeof(uint32_t) + sizeof(PRLO);
2e0fef85 3987 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry,
82d9a2a2
JS
3988 ndlp, ndlp->nlp_DID, ELS_CMD_PRLO);
3989 if (!elsiocb)
3990 return 1;
3991
3992 icmd = &elsiocb->iocb;
7851fe2c
JS
3993 icmd->ulpContext = oldcmd->ulpContext; /* Xri / rx_id */
3994 icmd->unsli3.rcvsli3.ox_id = oldcmd->unsli3.rcvsli3.ox_id;
82d9a2a2
JS
3995 pcmd = (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
3996
3997 memcpy(pcmd, ((struct lpfc_dmabuf *) oldiocb->context2)->virt,
92d7f7b0 3998 sizeof(uint32_t) + sizeof(PRLO));
82d9a2a2
JS
3999 *((uint32_t *) (pcmd)) = ELS_CMD_PRLO_ACC;
4000 els_pkt_ptr = (ELS_PKT *) pcmd;
4001 els_pkt_ptr->un.prlo.acceptRspCode = PRLO_REQ_EXECUTED;
858c9f6c
JS
4002
4003 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
4004 "Issue ACC PRLO: did:x%x flg:x%x",
4005 ndlp->nlp_DID, ndlp->nlp_flag, 0);
82d9a2a2 4006 break;
dea3101e 4007 default:
c9f8735b 4008 return 1;
dea3101e 4009 }
dea3101e 4010 /* Xmit ELS ACC response tag <ulpIoTag> */
e8b62011
JS
4011 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
4012 "0128 Xmit ELS ACC response tag x%x, XRI: x%x, "
e6446439
JS
4013 "DID: x%x, nlp_flag: x%x nlp_state: x%x RPI: x%x "
4014 "fc_flag x%x\n",
e8b62011
JS
4015 elsiocb->iotag, elsiocb->iocb.ulpContext,
4016 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
e6446439 4017 ndlp->nlp_rpi, vport->fc_flag);
dea3101e 4018 if (ndlp->nlp_flag & NLP_LOGO_ACC) {
2e0fef85 4019 spin_lock_irq(shost->host_lock);
7c5e518c
JS
4020 if (!(ndlp->nlp_flag & NLP_RPI_REGISTERED ||
4021 ndlp->nlp_flag & NLP_REG_LOGIN_SEND))
4022 ndlp->nlp_flag &= ~NLP_LOGO_ACC;
2e0fef85 4023 spin_unlock_irq(shost->host_lock);
dea3101e
JB
4024 elsiocb->iocb_cmpl = lpfc_cmpl_els_logo_acc;
4025 } else {
858c9f6c 4026 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
dea3101e
JB
4027 }
4028
4029 phba->fc_stat.elsXmitACC++;
3772a991 4030 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
dea3101e
JB
4031 if (rc == IOCB_ERROR) {
4032 lpfc_els_free_iocb(phba, elsiocb);
c9f8735b 4033 return 1;
dea3101e 4034 }
c9f8735b 4035 return 0;
dea3101e
JB
4036}
4037
e59058c4 4038/**
3621a710 4039 * lpfc_els_rsp_reject - Propare and issue a rjt response iocb command
e59058c4
JS
4040 * @vport: pointer to a virtual N_Port data structure.
4041 * @rejectError:
4042 * @oldiocb: pointer to the original lpfc command iocb data structure.
4043 * @ndlp: pointer to a node-list data structure.
4044 * @mbox: pointer to the driver internal queue element for mailbox command.
4045 *
4046 * This routine prepares and issue an Reject (RJT) response IOCB
4047 * command. If a @mbox pointer is passed in, it will be put into the
4048 * context_un.mbox field of the IOCB for the completion callback function
4049 * to issue to the HBA later.
4050 *
4051 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
4052 * will be incremented by 1 for holding the ndlp and the reference to ndlp
4053 * will be stored into the context1 field of the IOCB for the completion
4054 * callback function to the reject response ELS IOCB command.
4055 *
4056 * Return code
4057 * 0 - Successfully issued reject response
4058 * 1 - Failed to issue reject response
4059 **/
dea3101e 4060int
2e0fef85 4061lpfc_els_rsp_reject(struct lpfc_vport *vport, uint32_t rejectError,
858c9f6c
JS
4062 struct lpfc_iocbq *oldiocb, struct lpfc_nodelist *ndlp,
4063 LPFC_MBOXQ_t *mbox)
dea3101e 4064{
2e0fef85 4065 struct lpfc_hba *phba = vport->phba;
dea3101e
JB
4066 IOCB_t *icmd;
4067 IOCB_t *oldcmd;
4068 struct lpfc_iocbq *elsiocb;
dea3101e
JB
4069 uint8_t *pcmd;
4070 uint16_t cmdsize;
4071 int rc;
4072
92d7f7b0 4073 cmdsize = 2 * sizeof(uint32_t);
2e0fef85
JS
4074 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry, ndlp,
4075 ndlp->nlp_DID, ELS_CMD_LS_RJT);
488d1469 4076 if (!elsiocb)
c9f8735b 4077 return 1;
dea3101e
JB
4078
4079 icmd = &elsiocb->iocb;
4080 oldcmd = &oldiocb->iocb;
7851fe2c
JS
4081 icmd->ulpContext = oldcmd->ulpContext; /* Xri / rx_id */
4082 icmd->unsli3.rcvsli3.ox_id = oldcmd->unsli3.rcvsli3.ox_id;
dea3101e
JB
4083 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
4084
4085 *((uint32_t *) (pcmd)) = ELS_CMD_LS_RJT;
92d7f7b0 4086 pcmd += sizeof(uint32_t);
dea3101e
JB
4087 *((uint32_t *) (pcmd)) = rejectError;
4088
51ef4c26 4089 if (mbox)
858c9f6c 4090 elsiocb->context_un.mbox = mbox;
858c9f6c 4091
dea3101e 4092 /* Xmit ELS RJT <err> response tag <ulpIoTag> */
e8b62011
JS
4093 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
4094 "0129 Xmit ELS RJT x%x response tag x%x "
4095 "xri x%x, did x%x, nlp_flag x%x, nlp_state x%x, "
4096 "rpi x%x\n",
4097 rejectError, elsiocb->iotag,
4098 elsiocb->iocb.ulpContext, ndlp->nlp_DID,
4099 ndlp->nlp_flag, ndlp->nlp_state, ndlp->nlp_rpi);
858c9f6c
JS
4100 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
4101 "Issue LS_RJT: did:x%x flg:x%x err:x%x",
4102 ndlp->nlp_DID, ndlp->nlp_flag, rejectError);
4103
dea3101e 4104 phba->fc_stat.elsXmitLSRJT++;
858c9f6c 4105 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
3772a991 4106 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
51ef4c26 4107
dea3101e
JB
4108 if (rc == IOCB_ERROR) {
4109 lpfc_els_free_iocb(phba, elsiocb);
c9f8735b 4110 return 1;
dea3101e 4111 }
c9f8735b 4112 return 0;
dea3101e
JB
4113}
4114
e59058c4 4115/**
3621a710 4116 * lpfc_els_rsp_adisc_acc - Prepare and issue acc response to adisc iocb cmd
e59058c4
JS
4117 * @vport: pointer to a virtual N_Port data structure.
4118 * @oldiocb: pointer to the original lpfc command iocb data structure.
4119 * @ndlp: pointer to a node-list data structure.
4120 *
4121 * This routine prepares and issues an Accept (ACC) response to Address
4122 * Discover (ADISC) ELS command. It simply prepares the payload of the IOCB
4123 * and invokes the lpfc_sli_issue_iocb() routine to send out the command.
4124 *
4125 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
4126 * will be incremented by 1 for holding the ndlp and the reference to ndlp
4127 * will be stored into the context1 field of the IOCB for the completion
4128 * callback function to the ADISC Accept response ELS IOCB command.
4129 *
4130 * Return code
4131 * 0 - Successfully issued acc adisc response
4132 * 1 - Failed to issue adisc acc response
4133 **/
dea3101e 4134int
2e0fef85
JS
4135lpfc_els_rsp_adisc_acc(struct lpfc_vport *vport, struct lpfc_iocbq *oldiocb,
4136 struct lpfc_nodelist *ndlp)
dea3101e 4137{
2e0fef85 4138 struct lpfc_hba *phba = vport->phba;
dea3101e 4139 ADISC *ap;
2e0fef85 4140 IOCB_t *icmd, *oldcmd;
dea3101e 4141 struct lpfc_iocbq *elsiocb;
dea3101e
JB
4142 uint8_t *pcmd;
4143 uint16_t cmdsize;
4144 int rc;
4145
92d7f7b0 4146 cmdsize = sizeof(uint32_t) + sizeof(ADISC);
2e0fef85
JS
4147 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry, ndlp,
4148 ndlp->nlp_DID, ELS_CMD_ACC);
488d1469 4149 if (!elsiocb)
c9f8735b 4150 return 1;
dea3101e 4151
5b8bd0c9
JS
4152 icmd = &elsiocb->iocb;
4153 oldcmd = &oldiocb->iocb;
7851fe2c
JS
4154 icmd->ulpContext = oldcmd->ulpContext; /* Xri / rx_id */
4155 icmd->unsli3.rcvsli3.ox_id = oldcmd->unsli3.rcvsli3.ox_id;
5b8bd0c9 4156
dea3101e 4157 /* Xmit ADISC ACC response tag <ulpIoTag> */
e8b62011
JS
4158 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
4159 "0130 Xmit ADISC ACC response iotag x%x xri: "
4160 "x%x, did x%x, nlp_flag x%x, nlp_state x%x rpi x%x\n",
4161 elsiocb->iotag, elsiocb->iocb.ulpContext,
4162 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
4163 ndlp->nlp_rpi);
dea3101e
JB
4164 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
4165
4166 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
92d7f7b0 4167 pcmd += sizeof(uint32_t);
dea3101e
JB
4168
4169 ap = (ADISC *) (pcmd);
4170 ap->hardAL_PA = phba->fc_pref_ALPA;
92d7f7b0
JS
4171 memcpy(&ap->portName, &vport->fc_portname, sizeof(struct lpfc_name));
4172 memcpy(&ap->nodeName, &vport->fc_nodename, sizeof(struct lpfc_name));
2e0fef85 4173 ap->DID = be32_to_cpu(vport->fc_myDID);
dea3101e 4174
858c9f6c
JS
4175 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
4176 "Issue ACC ADISC: did:x%x flg:x%x",
4177 ndlp->nlp_DID, ndlp->nlp_flag, 0);
4178
dea3101e 4179 phba->fc_stat.elsXmitACC++;
858c9f6c 4180 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
3772a991 4181 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
dea3101e
JB
4182 if (rc == IOCB_ERROR) {
4183 lpfc_els_free_iocb(phba, elsiocb);
c9f8735b 4184 return 1;
dea3101e 4185 }
c9f8735b 4186 return 0;
dea3101e
JB
4187}
4188
e59058c4 4189/**
3621a710 4190 * lpfc_els_rsp_prli_acc - Prepare and issue acc response to prli iocb cmd
e59058c4
JS
4191 * @vport: pointer to a virtual N_Port data structure.
4192 * @oldiocb: pointer to the original lpfc command iocb data structure.
4193 * @ndlp: pointer to a node-list data structure.
4194 *
4195 * This routine prepares and issues an Accept (ACC) response to Process
4196 * Login (PRLI) ELS command. It simply prepares the payload of the IOCB
4197 * and invokes the lpfc_sli_issue_iocb() routine to send out the command.
4198 *
4199 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
4200 * will be incremented by 1 for holding the ndlp and the reference to ndlp
4201 * will be stored into the context1 field of the IOCB for the completion
4202 * callback function to the PRLI Accept response ELS IOCB command.
4203 *
4204 * Return code
4205 * 0 - Successfully issued acc prli response
4206 * 1 - Failed to issue acc prli response
4207 **/
dea3101e 4208int
2e0fef85 4209lpfc_els_rsp_prli_acc(struct lpfc_vport *vport, struct lpfc_iocbq *oldiocb,
5b8bd0c9 4210 struct lpfc_nodelist *ndlp)
dea3101e 4211{
2e0fef85 4212 struct lpfc_hba *phba = vport->phba;
dea3101e
JB
4213 PRLI *npr;
4214 lpfc_vpd_t *vpd;
4215 IOCB_t *icmd;
4216 IOCB_t *oldcmd;
4217 struct lpfc_iocbq *elsiocb;
dea3101e
JB
4218 uint8_t *pcmd;
4219 uint16_t cmdsize;
4220 int rc;
4221
92d7f7b0 4222 cmdsize = sizeof(uint32_t) + sizeof(PRLI);
2e0fef85 4223 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry, ndlp,
92d7f7b0 4224 ndlp->nlp_DID, (ELS_CMD_ACC | (ELS_CMD_PRLI & ~ELS_RSP_MASK)));
c9f8735b
JW
4225 if (!elsiocb)
4226 return 1;
dea3101e 4227
5b8bd0c9
JS
4228 icmd = &elsiocb->iocb;
4229 oldcmd = &oldiocb->iocb;
7851fe2c
JS
4230 icmd->ulpContext = oldcmd->ulpContext; /* Xri / rx_id */
4231 icmd->unsli3.rcvsli3.ox_id = oldcmd->unsli3.rcvsli3.ox_id;
4232
dea3101e 4233 /* Xmit PRLI ACC response tag <ulpIoTag> */
e8b62011
JS
4234 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
4235 "0131 Xmit PRLI ACC response tag x%x xri x%x, "
4236 "did x%x, nlp_flag x%x, nlp_state x%x, rpi x%x\n",
4237 elsiocb->iotag, elsiocb->iocb.ulpContext,
4238 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
4239 ndlp->nlp_rpi);
dea3101e
JB
4240 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
4241
4242 *((uint32_t *) (pcmd)) = (ELS_CMD_ACC | (ELS_CMD_PRLI & ~ELS_RSP_MASK));
92d7f7b0 4243 pcmd += sizeof(uint32_t);
dea3101e
JB
4244
4245 /* For PRLI, remainder of payload is PRLI parameter page */
92d7f7b0 4246 memset(pcmd, 0, sizeof(PRLI));
dea3101e
JB
4247
4248 npr = (PRLI *) pcmd;
4249 vpd = &phba->vpd;
4250 /*
0d2b6b83
JS
4251 * If the remote port is a target and our firmware version is 3.20 or
4252 * later, set the following bits for FC-TAPE support.
dea3101e 4253 */
0d2b6b83
JS
4254 if ((ndlp->nlp_type & NLP_FCP_TARGET) &&
4255 (vpd->rev.feaLevelHigh >= 0x02)) {
dea3101e
JB
4256 npr->ConfmComplAllowed = 1;
4257 npr->Retry = 1;
4258 npr->TaskRetryIdReq = 1;
4259 }
4260
4261 npr->acceptRspCode = PRLI_REQ_EXECUTED;
4262 npr->estabImagePair = 1;
4263 npr->readXferRdyDis = 1;
4264 npr->ConfmComplAllowed = 1;
4265
4266 npr->prliType = PRLI_FCP_TYPE;
4267 npr->initiatorFunc = 1;
4268
858c9f6c
JS
4269 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
4270 "Issue ACC PRLI: did:x%x flg:x%x",
4271 ndlp->nlp_DID, ndlp->nlp_flag, 0);
4272
dea3101e 4273 phba->fc_stat.elsXmitACC++;
858c9f6c 4274 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
dea3101e 4275
3772a991 4276 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
dea3101e
JB
4277 if (rc == IOCB_ERROR) {
4278 lpfc_els_free_iocb(phba, elsiocb);
c9f8735b 4279 return 1;
dea3101e 4280 }
c9f8735b 4281 return 0;
dea3101e
JB
4282}
4283
e59058c4 4284/**
3621a710 4285 * lpfc_els_rsp_rnid_acc - Issue rnid acc response iocb command
e59058c4
JS
4286 * @vport: pointer to a virtual N_Port data structure.
4287 * @format: rnid command format.
4288 * @oldiocb: pointer to the original lpfc command iocb data structure.
4289 * @ndlp: pointer to a node-list data structure.
4290 *
4291 * This routine issues a Request Node Identification Data (RNID) Accept
4292 * (ACC) response. It constructs the RNID ACC response command according to
4293 * the proper @format and then calls the lpfc_sli_issue_iocb() routine to
4294 * issue the response. Note that this command does not need to hold the ndlp
4295 * reference count for the callback. So, the ndlp reference count taken by
4296 * the lpfc_prep_els_iocb() routine is put back and the context1 field of
4297 * IOCB is set to NULL to indicate to the lpfc_els_free_iocb() routine that
4298 * there is no ndlp reference available.
4299 *
4300 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
4301 * will be incremented by 1 for holding the ndlp and the reference to ndlp
4302 * will be stored into the context1 field of the IOCB for the completion
4303 * callback function. However, for the RNID Accept Response ELS command,
4304 * this is undone later by this routine after the IOCB is allocated.
4305 *
4306 * Return code
4307 * 0 - Successfully issued acc rnid response
4308 * 1 - Failed to issue acc rnid response
4309 **/
dea3101e 4310static int
2e0fef85 4311lpfc_els_rsp_rnid_acc(struct lpfc_vport *vport, uint8_t format,
329f9bc7 4312 struct lpfc_iocbq *oldiocb, struct lpfc_nodelist *ndlp)
dea3101e 4313{
2e0fef85 4314 struct lpfc_hba *phba = vport->phba;
dea3101e 4315 RNID *rn;
2e0fef85 4316 IOCB_t *icmd, *oldcmd;
dea3101e 4317 struct lpfc_iocbq *elsiocb;
dea3101e
JB
4318 uint8_t *pcmd;
4319 uint16_t cmdsize;
4320 int rc;
4321
92d7f7b0
JS
4322 cmdsize = sizeof(uint32_t) + sizeof(uint32_t)
4323 + (2 * sizeof(struct lpfc_name));
dea3101e 4324 if (format)
92d7f7b0 4325 cmdsize += sizeof(RNID_TOP_DISC);
dea3101e 4326
2e0fef85
JS
4327 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry, ndlp,
4328 ndlp->nlp_DID, ELS_CMD_ACC);
488d1469 4329 if (!elsiocb)
c9f8735b 4330 return 1;
dea3101e 4331
5b8bd0c9
JS
4332 icmd = &elsiocb->iocb;
4333 oldcmd = &oldiocb->iocb;
7851fe2c
JS
4334 icmd->ulpContext = oldcmd->ulpContext; /* Xri / rx_id */
4335 icmd->unsli3.rcvsli3.ox_id = oldcmd->unsli3.rcvsli3.ox_id;
4336
dea3101e 4337 /* Xmit RNID ACC response tag <ulpIoTag> */
e8b62011
JS
4338 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
4339 "0132 Xmit RNID ACC response tag x%x xri x%x\n",
4340 elsiocb->iotag, elsiocb->iocb.ulpContext);
dea3101e 4341 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
dea3101e 4342 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
92d7f7b0 4343 pcmd += sizeof(uint32_t);
dea3101e 4344
92d7f7b0 4345 memset(pcmd, 0, sizeof(RNID));
dea3101e
JB
4346 rn = (RNID *) (pcmd);
4347 rn->Format = format;
92d7f7b0
JS
4348 rn->CommonLen = (2 * sizeof(struct lpfc_name));
4349 memcpy(&rn->portName, &vport->fc_portname, sizeof(struct lpfc_name));
4350 memcpy(&rn->nodeName, &vport->fc_nodename, sizeof(struct lpfc_name));
dea3101e
JB
4351 switch (format) {
4352 case 0:
4353 rn->SpecificLen = 0;
4354 break;
4355 case RNID_TOPOLOGY_DISC:
92d7f7b0 4356 rn->SpecificLen = sizeof(RNID_TOP_DISC);
dea3101e 4357 memcpy(&rn->un.topologyDisc.portName,
92d7f7b0 4358 &vport->fc_portname, sizeof(struct lpfc_name));
dea3101e
JB
4359 rn->un.topologyDisc.unitType = RNID_HBA;
4360 rn->un.topologyDisc.physPort = 0;
4361 rn->un.topologyDisc.attachedNodes = 0;
4362 break;
4363 default:
4364 rn->CommonLen = 0;
4365 rn->SpecificLen = 0;
4366 break;
4367 }
4368
858c9f6c
JS
4369 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
4370 "Issue ACC RNID: did:x%x flg:x%x",
4371 ndlp->nlp_DID, ndlp->nlp_flag, 0);
4372
dea3101e 4373 phba->fc_stat.elsXmitACC++;
858c9f6c 4374 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
dea3101e 4375
3772a991 4376 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
dea3101e
JB
4377 if (rc == IOCB_ERROR) {
4378 lpfc_els_free_iocb(phba, elsiocb);
c9f8735b 4379 return 1;
dea3101e 4380 }
c9f8735b 4381 return 0;
dea3101e
JB
4382}
4383
19ca7609
JS
4384/**
4385 * lpfc_els_clear_rrq - Clear the rq that this rrq describes.
4386 * @vport: pointer to a virtual N_Port data structure.
4387 * @iocb: pointer to the lpfc command iocb data structure.
4388 * @ndlp: pointer to a node-list data structure.
4389 *
4390 * Return
4391 **/
4392static void
4393lpfc_els_clear_rrq(struct lpfc_vport *vport,
4394 struct lpfc_iocbq *iocb, struct lpfc_nodelist *ndlp)
4395{
4396 struct lpfc_hba *phba = vport->phba;
4397 uint8_t *pcmd;
4398 struct RRQ *rrq;
4399 uint16_t rxid;
1151e3ec 4400 uint16_t xri;
19ca7609
JS
4401 struct lpfc_node_rrq *prrq;
4402
4403
4404 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) iocb->context2)->virt);
4405 pcmd += sizeof(uint32_t);
4406 rrq = (struct RRQ *)pcmd;
1151e3ec 4407 rrq->rrq_exchg = be32_to_cpu(rrq->rrq_exchg);
9589b062 4408 rxid = bf_get(rrq_rxid, rrq);
19ca7609
JS
4409
4410 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
4411 "2883 Clear RRQ for SID:x%x OXID:x%x RXID:x%x"
4412 " x%x x%x\n",
1151e3ec 4413 be32_to_cpu(bf_get(rrq_did, rrq)),
9589b062 4414 bf_get(rrq_oxid, rrq),
19ca7609
JS
4415 rxid,
4416 iocb->iotag, iocb->iocb.ulpContext);
4417
4418 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
4419 "Clear RRQ: did:x%x flg:x%x exchg:x%.08x",
4420 ndlp->nlp_DID, ndlp->nlp_flag, rrq->rrq_exchg);
1151e3ec 4421 if (vport->fc_myDID == be32_to_cpu(bf_get(rrq_did, rrq)))
9589b062 4422 xri = bf_get(rrq_oxid, rrq);
1151e3ec
JS
4423 else
4424 xri = rxid;
4425 prrq = lpfc_get_active_rrq(vport, xri, ndlp->nlp_DID);
19ca7609 4426 if (prrq)
1151e3ec 4427 lpfc_clr_rrq_active(phba, xri, prrq);
19ca7609
JS
4428 return;
4429}
4430
12265f68
JS
4431/**
4432 * lpfc_els_rsp_echo_acc - Issue echo acc response
4433 * @vport: pointer to a virtual N_Port data structure.
4434 * @data: pointer to echo data to return in the accept.
4435 * @oldiocb: pointer to the original lpfc command iocb data structure.
4436 * @ndlp: pointer to a node-list data structure.
4437 *
4438 * Return code
4439 * 0 - Successfully issued acc echo response
4440 * 1 - Failed to issue acc echo response
4441 **/
4442static int
4443lpfc_els_rsp_echo_acc(struct lpfc_vport *vport, uint8_t *data,
4444 struct lpfc_iocbq *oldiocb, struct lpfc_nodelist *ndlp)
4445{
4446 struct lpfc_hba *phba = vport->phba;
4447 struct lpfc_iocbq *elsiocb;
12265f68
JS
4448 uint8_t *pcmd;
4449 uint16_t cmdsize;
4450 int rc;
4451
12265f68
JS
4452 cmdsize = oldiocb->iocb.unsli3.rcvsli3.acc_len;
4453
bf08611b
JS
4454 /* The accumulated length can exceed the BPL_SIZE. For
4455 * now, use this as the limit
4456 */
4457 if (cmdsize > LPFC_BPL_SIZE)
4458 cmdsize = LPFC_BPL_SIZE;
12265f68
JS
4459 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry, ndlp,
4460 ndlp->nlp_DID, ELS_CMD_ACC);
4461 if (!elsiocb)
4462 return 1;
4463
7851fe2c
JS
4464 elsiocb->iocb.ulpContext = oldiocb->iocb.ulpContext; /* Xri / rx_id */
4465 elsiocb->iocb.unsli3.rcvsli3.ox_id = oldiocb->iocb.unsli3.rcvsli3.ox_id;
4466
12265f68
JS
4467 /* Xmit ECHO ACC response tag <ulpIoTag> */
4468 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
4469 "2876 Xmit ECHO ACC response tag x%x xri x%x\n",
4470 elsiocb->iotag, elsiocb->iocb.ulpContext);
4471 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
4472 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
4473 pcmd += sizeof(uint32_t);
4474 memcpy(pcmd, data, cmdsize - sizeof(uint32_t));
4475
4476 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
4477 "Issue ACC ECHO: did:x%x flg:x%x",
4478 ndlp->nlp_DID, ndlp->nlp_flag, 0);
4479
4480 phba->fc_stat.elsXmitACC++;
4481 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
12265f68
JS
4482
4483 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
4484 if (rc == IOCB_ERROR) {
4485 lpfc_els_free_iocb(phba, elsiocb);
4486 return 1;
4487 }
4488 return 0;
4489}
4490
e59058c4 4491/**
3621a710 4492 * lpfc_els_disc_adisc - Issue remaining adisc iocbs to npr nodes of a vport
e59058c4
JS
4493 * @vport: pointer to a host virtual N_Port data structure.
4494 *
4495 * This routine issues Address Discover (ADISC) ELS commands to those
4496 * N_Ports which are in node port recovery state and ADISC has not been issued
4497 * for the @vport. Each time an ELS ADISC IOCB is issued by invoking the
4498 * lpfc_issue_els_adisc() routine, the per @vport number of discover count
4499 * (num_disc_nodes) shall be incremented. If the num_disc_nodes reaches a
4500 * pre-configured threshold (cfg_discovery_threads), the @vport fc_flag will
4501 * be marked with FC_NLP_MORE bit and the process of issuing remaining ADISC
4502 * IOCBs quit for later pick up. On the other hand, after walking through
4503 * all the ndlps with the @vport and there is none ADISC IOCB issued, the
4504 * @vport fc_flag shall be cleared with FC_NLP_MORE bit indicating there is
4505 * no more ADISC need to be sent.
4506 *
4507 * Return code
4508 * The number of N_Ports with adisc issued.
4509 **/
dea3101e 4510int
2e0fef85 4511lpfc_els_disc_adisc(struct lpfc_vport *vport)
dea3101e 4512{
2e0fef85 4513 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea3101e 4514 struct lpfc_nodelist *ndlp, *next_ndlp;
2e0fef85 4515 int sentadisc = 0;
dea3101e 4516
685f0bf7 4517 /* go thru NPR nodes and issue any remaining ELS ADISCs */
2e0fef85 4518 list_for_each_entry_safe(ndlp, next_ndlp, &vport->fc_nodes, nlp_listp) {
e47c9093
JS
4519 if (!NLP_CHK_NODE_ACT(ndlp))
4520 continue;
685f0bf7
JS
4521 if (ndlp->nlp_state == NLP_STE_NPR_NODE &&
4522 (ndlp->nlp_flag & NLP_NPR_2B_DISC) != 0 &&
4523 (ndlp->nlp_flag & NLP_NPR_ADISC) != 0) {
2e0fef85 4524 spin_lock_irq(shost->host_lock);
685f0bf7 4525 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
2e0fef85 4526 spin_unlock_irq(shost->host_lock);
685f0bf7 4527 ndlp->nlp_prev_state = ndlp->nlp_state;
2e0fef85
JS
4528 lpfc_nlp_set_state(vport, ndlp, NLP_STE_ADISC_ISSUE);
4529 lpfc_issue_els_adisc(vport, ndlp, 0);
685f0bf7 4530 sentadisc++;
2e0fef85
JS
4531 vport->num_disc_nodes++;
4532 if (vport->num_disc_nodes >=
3de2a653 4533 vport->cfg_discovery_threads) {
2e0fef85
JS
4534 spin_lock_irq(shost->host_lock);
4535 vport->fc_flag |= FC_NLP_MORE;
4536 spin_unlock_irq(shost->host_lock);
685f0bf7 4537 break;
dea3101e
JB
4538 }
4539 }
4540 }
4541 if (sentadisc == 0) {
2e0fef85
JS
4542 spin_lock_irq(shost->host_lock);
4543 vport->fc_flag &= ~FC_NLP_MORE;
4544 spin_unlock_irq(shost->host_lock);
dea3101e 4545 }
2fe165b6 4546 return sentadisc;
dea3101e
JB
4547}
4548
e59058c4 4549/**
3621a710 4550 * lpfc_els_disc_plogi - Issue plogi for all npr nodes of a vport before adisc
e59058c4
JS
4551 * @vport: pointer to a host virtual N_Port data structure.
4552 *
4553 * This routine issues Port Login (PLOGI) ELS commands to all the N_Ports
4554 * which are in node port recovery state, with a @vport. Each time an ELS
4555 * ADISC PLOGI IOCB is issued by invoking the lpfc_issue_els_plogi() routine,
4556 * the per @vport number of discover count (num_disc_nodes) shall be
4557 * incremented. If the num_disc_nodes reaches a pre-configured threshold
4558 * (cfg_discovery_threads), the @vport fc_flag will be marked with FC_NLP_MORE
4559 * bit set and quit the process of issuing remaining ADISC PLOGIN IOCBs for
4560 * later pick up. On the other hand, after walking through all the ndlps with
4561 * the @vport and there is none ADISC PLOGI IOCB issued, the @vport fc_flag
4562 * shall be cleared with the FC_NLP_MORE bit indicating there is no more ADISC
4563 * PLOGI need to be sent.
4564 *
4565 * Return code
4566 * The number of N_Ports with plogi issued.
4567 **/
dea3101e 4568int
2e0fef85 4569lpfc_els_disc_plogi(struct lpfc_vport *vport)
dea3101e 4570{
2e0fef85 4571 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea3101e 4572 struct lpfc_nodelist *ndlp, *next_ndlp;
2e0fef85 4573 int sentplogi = 0;
dea3101e 4574
2e0fef85
JS
4575 /* go thru NPR nodes and issue any remaining ELS PLOGIs */
4576 list_for_each_entry_safe(ndlp, next_ndlp, &vport->fc_nodes, nlp_listp) {
e47c9093
JS
4577 if (!NLP_CHK_NODE_ACT(ndlp))
4578 continue;
685f0bf7 4579 if (ndlp->nlp_state == NLP_STE_NPR_NODE &&
8b017a30
JS
4580 (ndlp->nlp_flag & NLP_NPR_2B_DISC) != 0 &&
4581 (ndlp->nlp_flag & NLP_DELAY_TMO) == 0 &&
4582 (ndlp->nlp_flag & NLP_NPR_ADISC) == 0) {
685f0bf7 4583 ndlp->nlp_prev_state = ndlp->nlp_state;
2e0fef85
JS
4584 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
4585 lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0);
685f0bf7 4586 sentplogi++;
2e0fef85
JS
4587 vport->num_disc_nodes++;
4588 if (vport->num_disc_nodes >=
8b017a30 4589 vport->cfg_discovery_threads) {
2e0fef85
JS
4590 spin_lock_irq(shost->host_lock);
4591 vport->fc_flag |= FC_NLP_MORE;
4592 spin_unlock_irq(shost->host_lock);
685f0bf7 4593 break;
dea3101e
JB
4594 }
4595 }
4596 }
87af33fe
JS
4597 if (sentplogi) {
4598 lpfc_set_disctmo(vport);
4599 }
4600 else {
2e0fef85
JS
4601 spin_lock_irq(shost->host_lock);
4602 vport->fc_flag &= ~FC_NLP_MORE;
4603 spin_unlock_irq(shost->host_lock);
dea3101e 4604 }
2fe165b6 4605 return sentplogi;
dea3101e
JB
4606}
4607
86478875
JS
4608void
4609lpfc_rdp_res_link_service(struct fc_rdp_link_service_desc *desc,
4610 uint32_t word0)
4611{
4612
4613 desc->tag = cpu_to_be32(RDP_LINK_SERVICE_DESC_TAG);
4614 desc->payload.els_req = word0;
4615 desc->length = cpu_to_be32(sizeof(desc->payload));
4616}
4617
4618void
4619lpfc_rdp_res_sfp_desc(struct fc_rdp_sfp_desc *desc,
4620 uint8_t *page_a0, uint8_t *page_a2)
4621{
4622 uint16_t wavelength;
4623 uint16_t temperature;
4624 uint16_t rx_power;
4625 uint16_t tx_bias;
4626 uint16_t tx_power;
4627 uint16_t vcc;
4628 uint16_t flag = 0;
4629 struct sff_trasnceiver_codes_byte4 *trasn_code_byte4;
4630 struct sff_trasnceiver_codes_byte5 *trasn_code_byte5;
4631
4632 desc->tag = cpu_to_be32(RDP_SFP_DESC_TAG);
4633
4634 trasn_code_byte4 = (struct sff_trasnceiver_codes_byte4 *)
4635 &page_a0[SSF_TRANSCEIVER_CODE_B4];
4636 trasn_code_byte5 = (struct sff_trasnceiver_codes_byte5 *)
4637 &page_a0[SSF_TRANSCEIVER_CODE_B5];
4638
4639 if ((trasn_code_byte4->fc_sw_laser) ||
4640 (trasn_code_byte5->fc_sw_laser_sl) ||
4641 (trasn_code_byte5->fc_sw_laser_sn)) { /* check if its short WL */
4642 flag |= (SFP_FLAG_PT_SWLASER << SFP_FLAG_PT_SHIFT);
4643 } else if (trasn_code_byte4->fc_lw_laser) {
4644 wavelength = (page_a0[SSF_WAVELENGTH_B1] << 8) |
4645 page_a0[SSF_WAVELENGTH_B0];
4646 if (wavelength == SFP_WAVELENGTH_LC1310)
4647 flag |= SFP_FLAG_PT_LWLASER_LC1310 << SFP_FLAG_PT_SHIFT;
4648 if (wavelength == SFP_WAVELENGTH_LL1550)
4649 flag |= SFP_FLAG_PT_LWLASER_LL1550 << SFP_FLAG_PT_SHIFT;
4650 }
4651 /* check if its SFP+ */
4652 flag |= ((page_a0[SSF_IDENTIFIER] == SFF_PG0_IDENT_SFP) ?
4653 SFP_FLAG_CT_SFP_PLUS : SFP_FLAG_CT_UNKNOWN)
4654 << SFP_FLAG_CT_SHIFT;
4655
4656 /* check if its OPTICAL */
4657 flag |= ((page_a0[SSF_CONNECTOR] == SFF_PG0_CONNECTOR_LC) ?
4658 SFP_FLAG_IS_OPTICAL_PORT : 0)
4659 << SFP_FLAG_IS_OPTICAL_SHIFT;
4660
4661 temperature = (page_a2[SFF_TEMPERATURE_B1] << 8 |
4662 page_a2[SFF_TEMPERATURE_B0]);
4663 vcc = (page_a2[SFF_VCC_B1] << 8 |
4664 page_a2[SFF_VCC_B0]);
4665 tx_power = (page_a2[SFF_TXPOWER_B1] << 8 |
4666 page_a2[SFF_TXPOWER_B0]);
4667 tx_bias = (page_a2[SFF_TX_BIAS_CURRENT_B1] << 8 |
4668 page_a2[SFF_TX_BIAS_CURRENT_B0]);
4669 rx_power = (page_a2[SFF_RXPOWER_B1] << 8 |
4670 page_a2[SFF_RXPOWER_B0]);
4671 desc->sfp_info.temperature = cpu_to_be16(temperature);
4672 desc->sfp_info.rx_power = cpu_to_be16(rx_power);
4673 desc->sfp_info.tx_bias = cpu_to_be16(tx_bias);
4674 desc->sfp_info.tx_power = cpu_to_be16(tx_power);
4675 desc->sfp_info.vcc = cpu_to_be16(vcc);
4676
4677 desc->sfp_info.flags = cpu_to_be16(flag);
4678 desc->length = cpu_to_be32(sizeof(desc->sfp_info));
4679}
4680
4681void
4682lpfc_rdp_res_link_error(struct fc_rdp_link_error_status_desc *desc,
4683 READ_LNK_VAR *stat)
4684{
4685 uint32_t type;
4686
4687 desc->tag = cpu_to_be32(RDP_LINK_ERROR_STATUS_DESC_TAG);
4688
4689 type = VN_PT_PHY_PF_PORT << VN_PT_PHY_SHIFT;
4690
4691 desc->info.port_type = cpu_to_be32(type);
4692
4693 desc->info.link_status.link_failure_cnt =
4694 cpu_to_be32(stat->linkFailureCnt);
4695 desc->info.link_status.loss_of_synch_cnt =
4696 cpu_to_be32(stat->lossSyncCnt);
4697 desc->info.link_status.loss_of_signal_cnt =
4698 cpu_to_be32(stat->lossSignalCnt);
4699 desc->info.link_status.primitive_seq_proto_err =
4700 cpu_to_be32(stat->primSeqErrCnt);
4701 desc->info.link_status.invalid_trans_word =
4702 cpu_to_be32(stat->invalidXmitWord);
4703 desc->info.link_status.invalid_crc_cnt = cpu_to_be32(stat->crcCnt);
4704
4705 desc->length = cpu_to_be32(sizeof(desc->info));
4706}
4707
4258e98e
JS
4708int
4709lpfc_rdp_res_fec_desc(struct fc_fec_rdp_desc *desc, READ_LNK_VAR *stat)
4710{
4711 if (bf_get(lpfc_read_link_stat_gec2, stat) == 0)
4712 return 0;
4713 desc->tag = cpu_to_be32(RDP_FEC_DESC_TAG);
4714
4715 desc->info.CorrectedBlocks =
4716 cpu_to_be32(stat->fecCorrBlkCount);
4717 desc->info.UncorrectableBlocks =
4718 cpu_to_be32(stat->fecUncorrBlkCount);
4719
4720 desc->length = cpu_to_be32(sizeof(desc->info));
4721
4722 return sizeof(struct fc_fec_rdp_desc);
4723}
4724
86478875
JS
4725void
4726lpfc_rdp_res_speed(struct fc_rdp_port_speed_desc *desc, struct lpfc_hba *phba)
4727{
4728 uint16_t rdp_cap = 0;
4729 uint16_t rdp_speed;
4730
4731 desc->tag = cpu_to_be32(RDP_PORT_SPEED_DESC_TAG);
4732
81e75177
JS
4733 switch (phba->fc_linkspeed) {
4734 case LPFC_LINK_SPEED_1GHZ:
86478875
JS
4735 rdp_speed = RDP_PS_1GB;
4736 break;
81e75177 4737 case LPFC_LINK_SPEED_2GHZ:
86478875
JS
4738 rdp_speed = RDP_PS_2GB;
4739 break;
81e75177 4740 case LPFC_LINK_SPEED_4GHZ:
86478875
JS
4741 rdp_speed = RDP_PS_4GB;
4742 break;
81e75177 4743 case LPFC_LINK_SPEED_8GHZ:
86478875
JS
4744 rdp_speed = RDP_PS_8GB;
4745 break;
81e75177 4746 case LPFC_LINK_SPEED_10GHZ:
86478875
JS
4747 rdp_speed = RDP_PS_10GB;
4748 break;
81e75177 4749 case LPFC_LINK_SPEED_16GHZ:
86478875
JS
4750 rdp_speed = RDP_PS_16GB;
4751 break;
86478875
JS
4752 default:
4753 rdp_speed = RDP_PS_UNKNOWN;
4754 break;
4755 }
4756
4757 desc->info.port_speed.speed = cpu_to_be16(rdp_speed);
4758
d38dd52c
JS
4759 if (phba->lmt & LMT_32Gb)
4760 rdp_cap |= RDP_PS_32GB;
86478875
JS
4761 if (phba->lmt & LMT_16Gb)
4762 rdp_cap |= RDP_PS_16GB;
4763 if (phba->lmt & LMT_10Gb)
4764 rdp_cap |= RDP_PS_10GB;
4765 if (phba->lmt & LMT_8Gb)
4766 rdp_cap |= RDP_PS_8GB;
4767 if (phba->lmt & LMT_4Gb)
4768 rdp_cap |= RDP_PS_4GB;
4769 if (phba->lmt & LMT_2Gb)
4770 rdp_cap |= RDP_PS_2GB;
4771 if (phba->lmt & LMT_1Gb)
4772 rdp_cap |= RDP_PS_1GB;
4773
4774 if (rdp_cap == 0)
4775 rdp_cap = RDP_CAP_UNKNOWN;
4776
4777 desc->info.port_speed.capabilities = cpu_to_be16(rdp_cap);
4778 desc->length = cpu_to_be32(sizeof(desc->info));
4779}
4780
4781void
4782lpfc_rdp_res_diag_port_names(struct fc_rdp_port_name_desc *desc,
4783 struct lpfc_hba *phba)
4784{
4785
4786 desc->tag = cpu_to_be32(RDP_PORT_NAMES_DESC_TAG);
4787
4788 memcpy(desc->port_names.wwnn, phba->wwnn,
4789 sizeof(desc->port_names.wwnn));
4790
4791 memcpy(desc->port_names.wwpn, &phba->wwpn,
4792 sizeof(desc->port_names.wwpn));
4793
4794 desc->length = cpu_to_be32(sizeof(desc->port_names));
4795}
4796
4797void
4798lpfc_rdp_res_attach_port_names(struct fc_rdp_port_name_desc *desc,
4799 struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
4800{
4801
4802 desc->tag = cpu_to_be32(RDP_PORT_NAMES_DESC_TAG);
4803 if (vport->fc_flag & FC_FABRIC) {
4804 memcpy(desc->port_names.wwnn, &vport->fabric_nodename,
4805 sizeof(desc->port_names.wwnn));
4806
4807 memcpy(desc->port_names.wwpn, &vport->fabric_portname,
4808 sizeof(desc->port_names.wwpn));
4809 } else { /* Point to Point */
4810 memcpy(desc->port_names.wwnn, &ndlp->nlp_nodename,
4811 sizeof(desc->port_names.wwnn));
4812
4813 memcpy(desc->port_names.wwnn, &ndlp->nlp_portname,
4814 sizeof(desc->port_names.wwpn));
4815 }
4816
4817 desc->length = cpu_to_be32(sizeof(desc->port_names));
4818}
4819
4820void
4821lpfc_els_rdp_cmpl(struct lpfc_hba *phba, struct lpfc_rdp_context *rdp_context,
4822 int status)
4823{
4824 struct lpfc_nodelist *ndlp = rdp_context->ndlp;
4825 struct lpfc_vport *vport = ndlp->vport;
4826 struct lpfc_iocbq *elsiocb;
eb8d68c9 4827 struct ulp_bde64 *bpl;
86478875
JS
4828 IOCB_t *icmd;
4829 uint8_t *pcmd;
4830 struct ls_rjt *stat;
4831 struct fc_rdp_res_frame *rdp_res;
4832 uint32_t cmdsize;
4258e98e 4833 int rc, fec_size;
86478875
JS
4834
4835 if (status != SUCCESS)
4836 goto error;
eb8d68c9
JS
4837
4838 /* This will change once we know the true size of the RDP payload */
86478875
JS
4839 cmdsize = sizeof(struct fc_rdp_res_frame);
4840
4841 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize,
4842 lpfc_max_els_tries, rdp_context->ndlp,
4843 rdp_context->ndlp->nlp_DID, ELS_CMD_ACC);
4844 lpfc_nlp_put(ndlp);
4845 if (!elsiocb)
4846 goto free_rdp_context;
4847
4848 icmd = &elsiocb->iocb;
4849 icmd->ulpContext = rdp_context->rx_id;
4850 icmd->unsli3.rcvsli3.ox_id = rdp_context->ox_id;
4851
4852 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
4853 "2171 Xmit RDP response tag x%x xri x%x, "
4854 "did x%x, nlp_flag x%x, nlp_state x%x, rpi x%x",
4855 elsiocb->iotag, elsiocb->iocb.ulpContext,
4856 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
4857 ndlp->nlp_rpi);
4858 rdp_res = (struct fc_rdp_res_frame *)
4859 (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
4860 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
4861 memset(pcmd, 0, sizeof(struct fc_rdp_res_frame));
4862 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
4863
4864 /* For RDP payload */
4865 lpfc_rdp_res_link_service(&rdp_res->link_service_desc, ELS_CMD_RDP);
4866
4867 lpfc_rdp_res_sfp_desc(&rdp_res->sfp_desc,
4868 rdp_context->page_a0, rdp_context->page_a2);
4869 lpfc_rdp_res_speed(&rdp_res->portspeed_desc, phba);
4870 lpfc_rdp_res_link_error(&rdp_res->link_error_desc,
4871 &rdp_context->link_stat);
4872 lpfc_rdp_res_diag_port_names(&rdp_res->diag_port_names_desc, phba);
4873 lpfc_rdp_res_attach_port_names(&rdp_res->attached_port_names_desc,
4874 vport, ndlp);
4258e98e
JS
4875 fec_size = lpfc_rdp_res_fec_desc(&rdp_res->fec_desc,
4876 &rdp_context->link_stat);
4877 rdp_res->length = cpu_to_be32(fec_size + RDP_DESC_PAYLOAD_SIZE);
86478875
JS
4878 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
4879
eb8d68c9
JS
4880 /* Now that we know the true size of the payload, update the BPL */
4881 bpl = (struct ulp_bde64 *)
4882 (((struct lpfc_dmabuf *)(elsiocb->context3))->virt);
4883 bpl->tus.f.bdeSize = (fec_size + RDP_DESC_PAYLOAD_SIZE + 8);
4884 bpl->tus.f.bdeFlags = 0;
4885 bpl->tus.w = le32_to_cpu(bpl->tus.w);
4886
86478875
JS
4887 phba->fc_stat.elsXmitACC++;
4888 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
4889 if (rc == IOCB_ERROR)
4890 lpfc_els_free_iocb(phba, elsiocb);
4891
4892 kfree(rdp_context);
4893
4894 return;
4895error:
4896 cmdsize = 2 * sizeof(uint32_t);
4897 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, lpfc_max_els_tries,
4898 ndlp, ndlp->nlp_DID, ELS_CMD_LS_RJT);
4899 lpfc_nlp_put(ndlp);
4900 if (!elsiocb)
4901 goto free_rdp_context;
4902
4903 icmd = &elsiocb->iocb;
4904 icmd->ulpContext = rdp_context->rx_id;
4905 icmd->unsli3.rcvsli3.ox_id = rdp_context->ox_id;
4906 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
4907
4908 *((uint32_t *) (pcmd)) = ELS_CMD_LS_RJT;
4909 stat = (struct ls_rjt *)(pcmd + sizeof(uint32_t));
4910 stat->un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
4911
4912 phba->fc_stat.elsXmitLSRJT++;
4913 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
4914 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
4915
4916 if (rc == IOCB_ERROR)
4917 lpfc_els_free_iocb(phba, elsiocb);
4918free_rdp_context:
4919 kfree(rdp_context);
4920}
4921
4922int
4923lpfc_get_rdp_info(struct lpfc_hba *phba, struct lpfc_rdp_context *rdp_context)
4924{
4925 LPFC_MBOXQ_t *mbox = NULL;
4926 int rc;
4927
4928 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4929 if (!mbox) {
4930 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_ELS,
4931 "7105 failed to allocate mailbox memory");
4932 return 1;
4933 }
4934
4935 if (lpfc_sli4_dump_page_a0(phba, mbox))
4936 goto prep_mbox_fail;
4937 mbox->vport = rdp_context->ndlp->vport;
4938 mbox->mbox_cmpl = lpfc_mbx_cmpl_rdp_page_a0;
4939 mbox->context2 = (struct lpfc_rdp_context *) rdp_context;
4940 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
4941 if (rc == MBX_NOT_FINISHED)
4942 goto issue_mbox_fail;
4943
4944 return 0;
4945
4946prep_mbox_fail:
4947issue_mbox_fail:
4948 mempool_free(mbox, phba->mbox_mem_pool);
4949 return 1;
4950}
4951
4952/*
4953 * lpfc_els_rcv_rdp - Process an unsolicited RDP ELS.
4954 * @vport: pointer to a host virtual N_Port data structure.
4955 * @cmdiocb: pointer to lpfc command iocb data structure.
4956 * @ndlp: pointer to a node-list data structure.
4957 *
4958 * This routine processes an unsolicited RDP(Read Diagnostic Parameters)
4959 * IOCB. First, the payload of the unsolicited RDP is checked.
4960 * Then it will (1) send MBX_DUMP_MEMORY, Embedded DMP_LMSD sub command TYPE-3
4961 * for Page A0, (2) send MBX_DUMP_MEMORY, DMP_LMSD for Page A2,
4962 * (3) send MBX_READ_LNK_STAT to get link stat, (4) Call lpfc_els_rdp_cmpl
4963 * gather all data and send RDP response.
4964 *
4965 * Return code
4966 * 0 - Sent the acc response
4967 * 1 - Sent the reject response.
4968 */
4969static int
4970lpfc_els_rcv_rdp(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
4971 struct lpfc_nodelist *ndlp)
4972{
4973 struct lpfc_hba *phba = vport->phba;
4974 struct lpfc_dmabuf *pcmd;
4975 uint8_t rjt_err, rjt_expl = LSEXP_NOTHING_MORE;
4976 struct fc_rdp_req_frame *rdp_req;
4977 struct lpfc_rdp_context *rdp_context;
4978 IOCB_t *cmd = NULL;
4979 struct ls_rjt stat;
4980
4981 if (phba->sli_rev < LPFC_SLI_REV4 ||
4982 (bf_get(lpfc_sli_intf_if_type,
4983 &phba->sli4_hba.sli_intf) !=
4984 LPFC_SLI_INTF_IF_TYPE_2)) {
4985 rjt_err = LSRJT_UNABLE_TPC;
4986 rjt_expl = LSEXP_REQ_UNSUPPORTED;
4987 goto error;
4988 }
4989
4990 if (phba->sli_rev < LPFC_SLI_REV4 || (phba->hba_flag & HBA_FCOE_MODE)) {
4991 rjt_err = LSRJT_UNABLE_TPC;
4992 rjt_expl = LSEXP_REQ_UNSUPPORTED;
4993 goto error;
4994 }
4995
4996 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
4997 rdp_req = (struct fc_rdp_req_frame *) pcmd->virt;
4998
4999
5000 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
5001 "2422 ELS RDP Request "
5002 "dec len %d tag x%x port_id %d len %d\n",
5003 be32_to_cpu(rdp_req->rdp_des_length),
5004 be32_to_cpu(rdp_req->nport_id_desc.tag),
5005 be32_to_cpu(rdp_req->nport_id_desc.nport_id),
5006 be32_to_cpu(rdp_req->nport_id_desc.length));
5007
5008 if (sizeof(struct fc_rdp_nport_desc) !=
5009 be32_to_cpu(rdp_req->rdp_des_length))
5010 goto rjt_logerr;
5011 if (RDP_N_PORT_DESC_TAG != be32_to_cpu(rdp_req->nport_id_desc.tag))
5012 goto rjt_logerr;
5013 if (RDP_NPORT_ID_SIZE !=
5014 be32_to_cpu(rdp_req->nport_id_desc.length))
5015 goto rjt_logerr;
5016 rdp_context = kmalloc(sizeof(struct lpfc_rdp_context), GFP_KERNEL);
5017 if (!rdp_context) {
5018 rjt_err = LSRJT_UNABLE_TPC;
5019 goto error;
5020 }
5021
5022 memset(rdp_context, 0, sizeof(struct lpfc_rdp_context));
5023 cmd = &cmdiocb->iocb;
5024 rdp_context->ndlp = lpfc_nlp_get(ndlp);
5025 rdp_context->ox_id = cmd->unsli3.rcvsli3.ox_id;
5026 rdp_context->rx_id = cmd->ulpContext;
5027 rdp_context->cmpl = lpfc_els_rdp_cmpl;
5028 if (lpfc_get_rdp_info(phba, rdp_context)) {
5029 lpfc_printf_vlog(ndlp->vport, KERN_WARNING, LOG_ELS,
5030 "2423 Unable to send mailbox");
5031 kfree(rdp_context);
5032 rjt_err = LSRJT_UNABLE_TPC;
5033 lpfc_nlp_put(ndlp);
5034 goto error;
5035 }
5036
5037 return 0;
5038
5039rjt_logerr:
5040 rjt_err = LSRJT_LOGICAL_ERR;
5041
5042error:
5043 memset(&stat, 0, sizeof(stat));
5044 stat.un.b.lsRjtRsnCode = rjt_err;
5045 stat.un.b.lsRjtRsnCodeExp = rjt_expl;
5046 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
5047 return 1;
5048}
5049
5050
8b017a30
JS
5051static void
5052lpfc_els_lcb_rsp(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
5053{
5054 MAILBOX_t *mb;
5055 IOCB_t *icmd;
5056 uint8_t *pcmd;
5057 struct lpfc_iocbq *elsiocb;
5058 struct lpfc_nodelist *ndlp;
5059 struct ls_rjt *stat;
481ad967 5060 union lpfc_sli4_cfg_shdr *shdr;
8b017a30
JS
5061 struct lpfc_lcb_context *lcb_context;
5062 struct fc_lcb_res_frame *lcb_res;
481ad967 5063 uint32_t cmdsize, shdr_status, shdr_add_status;
8b017a30
JS
5064 int rc;
5065
5066 mb = &pmb->u.mb;
8b017a30
JS
5067 lcb_context = (struct lpfc_lcb_context *)pmb->context1;
5068 ndlp = lcb_context->ndlp;
5069 pmb->context1 = NULL;
5070 pmb->context2 = NULL;
5071
481ad967
JS
5072 shdr = (union lpfc_sli4_cfg_shdr *)
5073 &pmb->u.mqe.un.beacon_config.header.cfg_shdr;
5074 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
5075 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
5076
5077 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX,
5078 "0194 SET_BEACON_CONFIG mailbox "
5079 "completed with status x%x add_status x%x,"
5080 " mbx status x%x\n",
5081 shdr_status, shdr_add_status, mb->mbxStatus);
5082
5083 if (mb->mbxStatus && !(shdr_status &&
5084 shdr_add_status == ADD_STATUS_OPERATION_ALREADY_ACTIVE)) {
8b017a30
JS
5085 mempool_free(pmb, phba->mbox_mem_pool);
5086 goto error;
5087 }
5088
5089 mempool_free(pmb, phba->mbox_mem_pool);
8b017a30
JS
5090 cmdsize = sizeof(struct fc_lcb_res_frame);
5091 elsiocb = lpfc_prep_els_iocb(phba->pport, 0, cmdsize,
5092 lpfc_max_els_tries, ndlp,
5093 ndlp->nlp_DID, ELS_CMD_ACC);
5094
5095 /* Decrement the ndlp reference count from previous mbox command */
5096 lpfc_nlp_put(ndlp);
5097
5098 if (!elsiocb)
5099 goto free_lcb_context;
5100
5101 lcb_res = (struct fc_lcb_res_frame *)
5102 (((struct lpfc_dmabuf *)elsiocb->context2)->virt);
5103
5104 icmd = &elsiocb->iocb;
5105 icmd->ulpContext = lcb_context->rx_id;
5106 icmd->unsli3.rcvsli3.ox_id = lcb_context->ox_id;
5107
5108 pcmd = (uint8_t *)(((struct lpfc_dmabuf *)elsiocb->context2)->virt);
5109 *((uint32_t *)(pcmd)) = ELS_CMD_ACC;
5110 lcb_res->lcb_sub_command = lcb_context->sub_command;
5111 lcb_res->lcb_type = lcb_context->type;
5112 lcb_res->lcb_frequency = lcb_context->frequency;
5113 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
5114 phba->fc_stat.elsXmitACC++;
5115 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
5116 if (rc == IOCB_ERROR)
5117 lpfc_els_free_iocb(phba, elsiocb);
5118
5119 kfree(lcb_context);
5120 return;
5121
5122error:
5123 cmdsize = sizeof(struct fc_lcb_res_frame);
5124 elsiocb = lpfc_prep_els_iocb(phba->pport, 0, cmdsize,
5125 lpfc_max_els_tries, ndlp,
5126 ndlp->nlp_DID, ELS_CMD_LS_RJT);
5127 lpfc_nlp_put(ndlp);
5128 if (!elsiocb)
5129 goto free_lcb_context;
5130
5131 icmd = &elsiocb->iocb;
5132 icmd->ulpContext = lcb_context->rx_id;
5133 icmd->unsli3.rcvsli3.ox_id = lcb_context->ox_id;
5134 pcmd = (uint8_t *)(((struct lpfc_dmabuf *)elsiocb->context2)->virt);
5135
5136 *((uint32_t *)(pcmd)) = ELS_CMD_LS_RJT;
5137 stat = (struct ls_rjt *)(pcmd + sizeof(uint32_t));
5138 stat->un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
5139
5140 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
5141 phba->fc_stat.elsXmitLSRJT++;
5142 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
5143 if (rc == IOCB_ERROR)
5144 lpfc_els_free_iocb(phba, elsiocb);
5145free_lcb_context:
5146 kfree(lcb_context);
5147}
5148
5149static int
5150lpfc_sli4_set_beacon(struct lpfc_vport *vport,
5151 struct lpfc_lcb_context *lcb_context,
5152 uint32_t beacon_state)
5153{
5154 struct lpfc_hba *phba = vport->phba;
5155 LPFC_MBOXQ_t *mbox = NULL;
5156 uint32_t len;
5157 int rc;
5158
5159 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5160 if (!mbox)
5161 return 1;
5162
5163 len = sizeof(struct lpfc_mbx_set_beacon_config) -
5164 sizeof(struct lpfc_sli4_cfg_mhdr);
5165 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
5166 LPFC_MBOX_OPCODE_SET_BEACON_CONFIG, len,
5167 LPFC_SLI4_MBX_EMBED);
5168 mbox->context1 = (void *)lcb_context;
5169 mbox->vport = phba->pport;
5170 mbox->mbox_cmpl = lpfc_els_lcb_rsp;
5171 bf_set(lpfc_mbx_set_beacon_port_num, &mbox->u.mqe.un.beacon_config,
5172 phba->sli4_hba.physical_port);
5173 bf_set(lpfc_mbx_set_beacon_state, &mbox->u.mqe.un.beacon_config,
5174 beacon_state);
5175 bf_set(lpfc_mbx_set_beacon_port_type, &mbox->u.mqe.un.beacon_config, 1);
5176 bf_set(lpfc_mbx_set_beacon_duration, &mbox->u.mqe.un.beacon_config, 0);
5177 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
5178 if (rc == MBX_NOT_FINISHED) {
5179 mempool_free(mbox, phba->mbox_mem_pool);
5180 return 1;
5181 }
5182
5183 return 0;
5184}
5185
5186
5187/**
5188 * lpfc_els_rcv_lcb - Process an unsolicited LCB
5189 * @vport: pointer to a host virtual N_Port data structure.
5190 * @cmdiocb: pointer to lpfc command iocb data structure.
5191 * @ndlp: pointer to a node-list data structure.
5192 *
5193 * This routine processes an unsolicited LCB(LINK CABLE BEACON) IOCB.
5194 * First, the payload of the unsolicited LCB is checked.
5195 * Then based on Subcommand beacon will either turn on or off.
5196 *
5197 * Return code
5198 * 0 - Sent the acc response
5199 * 1 - Sent the reject response.
5200 **/
5201static int
5202lpfc_els_rcv_lcb(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
5203 struct lpfc_nodelist *ndlp)
5204{
5205 struct lpfc_hba *phba = vport->phba;
5206 struct lpfc_dmabuf *pcmd;
8b017a30
JS
5207 uint8_t *lp;
5208 struct fc_lcb_request_frame *beacon;
5209 struct lpfc_lcb_context *lcb_context;
5210 uint8_t state, rjt_err;
5211 struct ls_rjt stat;
5212
8b017a30
JS
5213 pcmd = (struct lpfc_dmabuf *)cmdiocb->context2;
5214 lp = (uint8_t *)pcmd->virt;
5215 beacon = (struct fc_lcb_request_frame *)pcmd->virt;
5216
5217 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
5218 "0192 ELS LCB Data x%x x%x x%x x%x sub x%x "
5219 "type x%x frequency %x duration x%x\n",
5220 lp[0], lp[1], lp[2],
5221 beacon->lcb_command,
5222 beacon->lcb_sub_command,
5223 beacon->lcb_type,
5224 beacon->lcb_frequency,
5225 be16_to_cpu(beacon->lcb_duration));
5226
5227 if (phba->sli_rev < LPFC_SLI_REV4 ||
5228 (bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf) !=
5229 LPFC_SLI_INTF_IF_TYPE_2)) {
5230 rjt_err = LSRJT_CMD_UNSUPPORTED;
5231 goto rjt;
5232 }
8b017a30
JS
5233
5234 if (phba->hba_flag & HBA_FCOE_MODE) {
5235 rjt_err = LSRJT_CMD_UNSUPPORTED;
5236 goto rjt;
5237 }
5238 if (beacon->lcb_frequency == 0) {
5239 rjt_err = LSRJT_CMD_UNSUPPORTED;
5240 goto rjt;
5241 }
5242 if ((beacon->lcb_type != LPFC_LCB_GREEN) &&
5243 (beacon->lcb_type != LPFC_LCB_AMBER)) {
5244 rjt_err = LSRJT_CMD_UNSUPPORTED;
5245 goto rjt;
5246 }
5247 if ((beacon->lcb_sub_command != LPFC_LCB_ON) &&
5248 (beacon->lcb_sub_command != LPFC_LCB_OFF)) {
5249 rjt_err = LSRJT_CMD_UNSUPPORTED;
5250 goto rjt;
5251 }
5252 if ((beacon->lcb_sub_command == LPFC_LCB_ON) &&
5253 (beacon->lcb_type != LPFC_LCB_GREEN) &&
5254 (beacon->lcb_type != LPFC_LCB_AMBER)) {
5255 rjt_err = LSRJT_CMD_UNSUPPORTED;
5256 goto rjt;
5257 }
5258 if (be16_to_cpu(beacon->lcb_duration) != 0) {
5259 rjt_err = LSRJT_CMD_UNSUPPORTED;
5260 goto rjt;
5261 }
5262
e7950423
SM
5263 lcb_context = kmalloc(sizeof(*lcb_context), GFP_KERNEL);
5264 if (!lcb_context) {
5265 rjt_err = LSRJT_UNABLE_TPC;
5266 goto rjt;
5267 }
5268
8b017a30
JS
5269 state = (beacon->lcb_sub_command == LPFC_LCB_ON) ? 1 : 0;
5270 lcb_context->sub_command = beacon->lcb_sub_command;
5271 lcb_context->type = beacon->lcb_type;
5272 lcb_context->frequency = beacon->lcb_frequency;
5273 lcb_context->ox_id = cmdiocb->iocb.unsli3.rcvsli3.ox_id;
5274 lcb_context->rx_id = cmdiocb->iocb.ulpContext;
5275 lcb_context->ndlp = lpfc_nlp_get(ndlp);
5276 if (lpfc_sli4_set_beacon(vport, lcb_context, state)) {
5277 lpfc_printf_vlog(ndlp->vport, KERN_ERR,
5278 LOG_ELS, "0193 failed to send mail box");
e7950423 5279 kfree(lcb_context);
8b017a30
JS
5280 lpfc_nlp_put(ndlp);
5281 rjt_err = LSRJT_UNABLE_TPC;
5282 goto rjt;
5283 }
5284 return 0;
5285rjt:
5286 memset(&stat, 0, sizeof(stat));
5287 stat.un.b.lsRjtRsnCode = rjt_err;
5288 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
5289 return 1;
5290}
5291
5292
e59058c4 5293/**
3621a710 5294 * lpfc_els_flush_rscn - Clean up any rscn activities with a vport
e59058c4
JS
5295 * @vport: pointer to a host virtual N_Port data structure.
5296 *
5297 * This routine cleans up any Registration State Change Notification
5298 * (RSCN) activity with a @vport. Note that the fc_rscn_flush flag of the
5299 * @vport together with the host_lock is used to prevent multiple thread
5300 * trying to access the RSCN array on a same @vport at the same time.
5301 **/
92d7f7b0 5302void
2e0fef85 5303lpfc_els_flush_rscn(struct lpfc_vport *vport)
dea3101e 5304{
2e0fef85
JS
5305 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
5306 struct lpfc_hba *phba = vport->phba;
dea3101e
JB
5307 int i;
5308
7f5f3d0d
JS
5309 spin_lock_irq(shost->host_lock);
5310 if (vport->fc_rscn_flush) {
5311 /* Another thread is walking fc_rscn_id_list on this vport */
5312 spin_unlock_irq(shost->host_lock);
5313 return;
5314 }
5315 /* Indicate we are walking lpfc_els_flush_rscn on this vport */
5316 vport->fc_rscn_flush = 1;
5317 spin_unlock_irq(shost->host_lock);
5318
2e0fef85 5319 for (i = 0; i < vport->fc_rscn_id_cnt; i++) {
92d7f7b0 5320 lpfc_in_buf_free(phba, vport->fc_rscn_id_list[i]);
2e0fef85 5321 vport->fc_rscn_id_list[i] = NULL;
dea3101e 5322 }
2e0fef85
JS
5323 spin_lock_irq(shost->host_lock);
5324 vport->fc_rscn_id_cnt = 0;
5325 vport->fc_flag &= ~(FC_RSCN_MODE | FC_RSCN_DISCOVERY);
5326 spin_unlock_irq(shost->host_lock);
5327 lpfc_can_disctmo(vport);
7f5f3d0d
JS
5328 /* Indicate we are done walking this fc_rscn_id_list */
5329 vport->fc_rscn_flush = 0;
dea3101e
JB
5330}
5331
e59058c4 5332/**
3621a710 5333 * lpfc_rscn_payload_check - Check whether there is a pending rscn to a did
e59058c4
JS
5334 * @vport: pointer to a host virtual N_Port data structure.
5335 * @did: remote destination port identifier.
5336 *
5337 * This routine checks whether there is any pending Registration State
5338 * Configuration Notification (RSCN) to a @did on @vport.
5339 *
5340 * Return code
5341 * None zero - The @did matched with a pending rscn
5342 * 0 - not able to match @did with a pending rscn
5343 **/
dea3101e 5344int
2e0fef85 5345lpfc_rscn_payload_check(struct lpfc_vport *vport, uint32_t did)
dea3101e
JB
5346{
5347 D_ID ns_did;
5348 D_ID rscn_did;
dea3101e 5349 uint32_t *lp;
92d7f7b0 5350 uint32_t payload_len, i;
7f5f3d0d 5351 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea3101e
JB
5352
5353 ns_did.un.word = did;
dea3101e
JB
5354
5355 /* Never match fabric nodes for RSCNs */
5356 if ((did & Fabric_DID_MASK) == Fabric_DID_MASK)
2e0fef85 5357 return 0;
dea3101e
JB
5358
5359 /* If we are doing a FULL RSCN rediscovery, match everything */
2e0fef85 5360 if (vport->fc_flag & FC_RSCN_DISCOVERY)
c9f8735b 5361 return did;
dea3101e 5362
7f5f3d0d
JS
5363 spin_lock_irq(shost->host_lock);
5364 if (vport->fc_rscn_flush) {
5365 /* Another thread is walking fc_rscn_id_list on this vport */
5366 spin_unlock_irq(shost->host_lock);
5367 return 0;
5368 }
5369 /* Indicate we are walking fc_rscn_id_list on this vport */
5370 vport->fc_rscn_flush = 1;
5371 spin_unlock_irq(shost->host_lock);
2e0fef85 5372 for (i = 0; i < vport->fc_rscn_id_cnt; i++) {
92d7f7b0
JS
5373 lp = vport->fc_rscn_id_list[i]->virt;
5374 payload_len = be32_to_cpu(*lp++ & ~ELS_CMD_MASK);
5375 payload_len -= sizeof(uint32_t); /* take off word 0 */
dea3101e 5376 while (payload_len) {
92d7f7b0
JS
5377 rscn_did.un.word = be32_to_cpu(*lp++);
5378 payload_len -= sizeof(uint32_t);
eaf15d5b
JS
5379 switch (rscn_did.un.b.resv & RSCN_ADDRESS_FORMAT_MASK) {
5380 case RSCN_ADDRESS_FORMAT_PORT:
6fb120a7
JS
5381 if ((ns_did.un.b.domain == rscn_did.un.b.domain)
5382 && (ns_did.un.b.area == rscn_did.un.b.area)
5383 && (ns_did.un.b.id == rscn_did.un.b.id))
7f5f3d0d 5384 goto return_did_out;
dea3101e 5385 break;
eaf15d5b 5386 case RSCN_ADDRESS_FORMAT_AREA:
dea3101e
JB
5387 if ((ns_did.un.b.domain == rscn_did.un.b.domain)
5388 && (ns_did.un.b.area == rscn_did.un.b.area))
7f5f3d0d 5389 goto return_did_out;
dea3101e 5390 break;
eaf15d5b 5391 case RSCN_ADDRESS_FORMAT_DOMAIN:
dea3101e 5392 if (ns_did.un.b.domain == rscn_did.un.b.domain)
7f5f3d0d 5393 goto return_did_out;
dea3101e 5394 break;
eaf15d5b 5395 case RSCN_ADDRESS_FORMAT_FABRIC:
7f5f3d0d 5396 goto return_did_out;
dea3101e
JB
5397 }
5398 }
92d7f7b0 5399 }
7f5f3d0d
JS
5400 /* Indicate we are done with walking fc_rscn_id_list on this vport */
5401 vport->fc_rscn_flush = 0;
92d7f7b0 5402 return 0;
7f5f3d0d
JS
5403return_did_out:
5404 /* Indicate we are done with walking fc_rscn_id_list on this vport */
5405 vport->fc_rscn_flush = 0;
5406 return did;
dea3101e
JB
5407}
5408
e59058c4 5409/**
3621a710 5410 * lpfc_rscn_recovery_check - Send recovery event to vport nodes matching rscn
e59058c4
JS
5411 * @vport: pointer to a host virtual N_Port data structure.
5412 *
5413 * This routine sends recovery (NLP_EVT_DEVICE_RECOVERY) event to the
5414 * state machine for a @vport's nodes that are with pending RSCN (Registration
5415 * State Change Notification).
5416 *
5417 * Return code
5418 * 0 - Successful (currently alway return 0)
5419 **/
dea3101e 5420static int
2e0fef85 5421lpfc_rscn_recovery_check(struct lpfc_vport *vport)
dea3101e 5422{
685f0bf7 5423 struct lpfc_nodelist *ndlp = NULL;
dea3101e 5424
0d2b6b83 5425 /* Move all affected nodes by pending RSCNs to NPR state. */
2e0fef85 5426 list_for_each_entry(ndlp, &vport->fc_nodes, nlp_listp) {
e47c9093 5427 if (!NLP_CHK_NODE_ACT(ndlp) ||
0d2b6b83
JS
5428 (ndlp->nlp_state == NLP_STE_UNUSED_NODE) ||
5429 !lpfc_rscn_payload_check(vport, ndlp->nlp_DID))
685f0bf7 5430 continue;
2e0fef85 5431 lpfc_disc_state_machine(vport, ndlp, NULL,
0d2b6b83
JS
5432 NLP_EVT_DEVICE_RECOVERY);
5433 lpfc_cancel_retry_delay_tmo(vport, ndlp);
dea3101e 5434 }
c9f8735b 5435 return 0;
dea3101e
JB
5436}
5437
ddcc50f0 5438/**
3621a710 5439 * lpfc_send_rscn_event - Send an RSCN event to management application
ddcc50f0
JS
5440 * @vport: pointer to a host virtual N_Port data structure.
5441 * @cmdiocb: pointer to lpfc command iocb data structure.
5442 *
5443 * lpfc_send_rscn_event sends an RSCN netlink event to management
5444 * applications.
5445 */
5446static void
5447lpfc_send_rscn_event(struct lpfc_vport *vport,
5448 struct lpfc_iocbq *cmdiocb)
5449{
5450 struct lpfc_dmabuf *pcmd;
5451 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
5452 uint32_t *payload_ptr;
5453 uint32_t payload_len;
5454 struct lpfc_rscn_event_header *rscn_event_data;
5455
5456 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
5457 payload_ptr = (uint32_t *) pcmd->virt;
5458 payload_len = be32_to_cpu(*payload_ptr & ~ELS_CMD_MASK);
5459
5460 rscn_event_data = kmalloc(sizeof(struct lpfc_rscn_event_header) +
5461 payload_len, GFP_KERNEL);
5462 if (!rscn_event_data) {
5463 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
5464 "0147 Failed to allocate memory for RSCN event\n");
5465 return;
5466 }
5467 rscn_event_data->event_type = FC_REG_RSCN_EVENT;
5468 rscn_event_data->payload_length = payload_len;
5469 memcpy(rscn_event_data->rscn_payload, payload_ptr,
5470 payload_len);
5471
5472 fc_host_post_vendor_event(shost,
5473 fc_get_event_number(),
6599eaaa 5474 sizeof(struct lpfc_rscn_event_header) + payload_len,
ddcc50f0
JS
5475 (char *)rscn_event_data,
5476 LPFC_NL_VENDOR_ID);
5477
5478 kfree(rscn_event_data);
5479}
5480
e59058c4 5481/**
3621a710 5482 * lpfc_els_rcv_rscn - Process an unsolicited rscn iocb
e59058c4
JS
5483 * @vport: pointer to a host virtual N_Port data structure.
5484 * @cmdiocb: pointer to lpfc command iocb data structure.
5485 * @ndlp: pointer to a node-list data structure.
5486 *
5487 * This routine processes an unsolicited RSCN (Registration State Change
5488 * Notification) IOCB. First, the payload of the unsolicited RSCN is walked
5489 * to invoke fc_host_post_event() routine to the FC transport layer. If the
5490 * discover state machine is about to begin discovery, it just accepts the
5491 * RSCN and the discovery process will satisfy the RSCN. If this RSCN only
5492 * contains N_Port IDs for other vports on this HBA, it just accepts the
5493 * RSCN and ignore processing it. If the state machine is in the recovery
5494 * state, the fc_rscn_id_list of this @vport is walked and the
5495 * lpfc_rscn_recovery_check() routine is invoked to send recovery event for
5496 * all nodes that match RSCN payload. Otherwise, the lpfc_els_handle_rscn()
5497 * routine is invoked to handle the RSCN event.
5498 *
5499 * Return code
5500 * 0 - Just sent the acc response
5501 * 1 - Sent the acc response and waited for name server completion
5502 **/
dea3101e 5503static int
2e0fef85 5504lpfc_els_rcv_rscn(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
51ef4c26 5505 struct lpfc_nodelist *ndlp)
dea3101e 5506{
2e0fef85
JS
5507 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
5508 struct lpfc_hba *phba = vport->phba;
dea3101e 5509 struct lpfc_dmabuf *pcmd;
92d7f7b0 5510 uint32_t *lp, *datap;
92d7f7b0 5511 uint32_t payload_len, length, nportid, *cmd;
7f5f3d0d 5512 int rscn_cnt;
92d7f7b0 5513 int rscn_id = 0, hba_id = 0;
d2873e4c 5514 int i;
dea3101e 5515
dea3101e
JB
5516 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
5517 lp = (uint32_t *) pcmd->virt;
5518
92d7f7b0
JS
5519 payload_len = be32_to_cpu(*lp++ & ~ELS_CMD_MASK);
5520 payload_len -= sizeof(uint32_t); /* take off word 0 */
dea3101e 5521 /* RSCN received */
e8b62011
JS
5522 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
5523 "0214 RSCN received Data: x%x x%x x%x x%x\n",
7f5f3d0d
JS
5524 vport->fc_flag, payload_len, *lp,
5525 vport->fc_rscn_id_cnt);
ddcc50f0
JS
5526
5527 /* Send an RSCN event to the management application */
5528 lpfc_send_rscn_event(vport, cmdiocb);
5529
d2873e4c 5530 for (i = 0; i < payload_len/sizeof(uint32_t); i++)
2e0fef85 5531 fc_host_post_event(shost, fc_get_event_number(),
d2873e4c
JS
5532 FCH_EVT_RSCN, lp[i]);
5533
dea3101e
JB
5534 /* If we are about to begin discovery, just ACC the RSCN.
5535 * Discovery processing will satisfy it.
5536 */
2e0fef85 5537 if (vport->port_state <= LPFC_NS_QRY) {
858c9f6c
JS
5538 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
5539 "RCV RSCN ignore: did:x%x/ste:x%x flg:x%x",
5540 ndlp->nlp_DID, vport->port_state, ndlp->nlp_flag);
5541
51ef4c26 5542 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
c9f8735b 5543 return 0;
dea3101e
JB
5544 }
5545
92d7f7b0
JS
5546 /* If this RSCN just contains NPortIDs for other vports on this HBA,
5547 * just ACC and ignore it.
5548 */
5549 if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
3de2a653 5550 !(vport->cfg_peer_port_login)) {
92d7f7b0
JS
5551 i = payload_len;
5552 datap = lp;
5553 while (i > 0) {
5554 nportid = *datap++;
5555 nportid = ((be32_to_cpu(nportid)) & Mask_DID);
5556 i -= sizeof(uint32_t);
5557 rscn_id++;
549e55cd
JS
5558 if (lpfc_find_vport_by_did(phba, nportid))
5559 hba_id++;
92d7f7b0
JS
5560 }
5561 if (rscn_id == hba_id) {
5562 /* ALL NPortIDs in RSCN are on HBA */
e8b62011 5563 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
d7c255b2 5564 "0219 Ignore RSCN "
e8b62011
JS
5565 "Data: x%x x%x x%x x%x\n",
5566 vport->fc_flag, payload_len,
7f5f3d0d 5567 *lp, vport->fc_rscn_id_cnt);
858c9f6c
JS
5568 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
5569 "RCV RSCN vport: did:x%x/ste:x%x flg:x%x",
5570 ndlp->nlp_DID, vport->port_state,
5571 ndlp->nlp_flag);
5572
92d7f7b0 5573 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb,
51ef4c26 5574 ndlp, NULL);
92d7f7b0
JS
5575 return 0;
5576 }
5577 }
5578
7f5f3d0d
JS
5579 spin_lock_irq(shost->host_lock);
5580 if (vport->fc_rscn_flush) {
5581 /* Another thread is walking fc_rscn_id_list on this vport */
7f5f3d0d 5582 vport->fc_flag |= FC_RSCN_DISCOVERY;
97957244 5583 spin_unlock_irq(shost->host_lock);
58da1ffb
JS
5584 /* Send back ACC */
5585 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
7f5f3d0d
JS
5586 return 0;
5587 }
5588 /* Indicate we are walking fc_rscn_id_list on this vport */
5589 vport->fc_rscn_flush = 1;
5590 spin_unlock_irq(shost->host_lock);
af901ca1 5591 /* Get the array count after successfully have the token */
7f5f3d0d 5592 rscn_cnt = vport->fc_rscn_id_cnt;
dea3101e
JB
5593 /* If we are already processing an RSCN, save the received
5594 * RSCN payload buffer, cmdiocb->context2 to process later.
5595 */
2e0fef85 5596 if (vport->fc_flag & (FC_RSCN_MODE | FC_NDISC_ACTIVE)) {
858c9f6c
JS
5597 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
5598 "RCV RSCN defer: did:x%x/ste:x%x flg:x%x",
5599 ndlp->nlp_DID, vport->port_state, ndlp->nlp_flag);
5600
09372820 5601 spin_lock_irq(shost->host_lock);
92d7f7b0
JS
5602 vport->fc_flag |= FC_RSCN_DEFERRED;
5603 if ((rscn_cnt < FC_MAX_HOLD_RSCN) &&
2e0fef85 5604 !(vport->fc_flag & FC_RSCN_DISCOVERY)) {
2e0fef85
JS
5605 vport->fc_flag |= FC_RSCN_MODE;
5606 spin_unlock_irq(shost->host_lock);
92d7f7b0
JS
5607 if (rscn_cnt) {
5608 cmd = vport->fc_rscn_id_list[rscn_cnt-1]->virt;
5609 length = be32_to_cpu(*cmd & ~ELS_CMD_MASK);
5610 }
5611 if ((rscn_cnt) &&
5612 (payload_len + length <= LPFC_BPL_SIZE)) {
5613 *cmd &= ELS_CMD_MASK;
7f5f3d0d 5614 *cmd |= cpu_to_be32(payload_len + length);
92d7f7b0
JS
5615 memcpy(((uint8_t *)cmd) + length, lp,
5616 payload_len);
5617 } else {
5618 vport->fc_rscn_id_list[rscn_cnt] = pcmd;
5619 vport->fc_rscn_id_cnt++;
5620 /* If we zero, cmdiocb->context2, the calling
5621 * routine will not try to free it.
5622 */
5623 cmdiocb->context2 = NULL;
5624 }
dea3101e 5625 /* Deferred RSCN */
e8b62011
JS
5626 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
5627 "0235 Deferred RSCN "
5628 "Data: x%x x%x x%x\n",
5629 vport->fc_rscn_id_cnt, vport->fc_flag,
5630 vport->port_state);
dea3101e 5631 } else {
2e0fef85
JS
5632 vport->fc_flag |= FC_RSCN_DISCOVERY;
5633 spin_unlock_irq(shost->host_lock);
dea3101e 5634 /* ReDiscovery RSCN */
e8b62011
JS
5635 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
5636 "0234 ReDiscovery RSCN "
5637 "Data: x%x x%x x%x\n",
5638 vport->fc_rscn_id_cnt, vport->fc_flag,
5639 vport->port_state);
dea3101e 5640 }
7f5f3d0d
JS
5641 /* Indicate we are done walking fc_rscn_id_list on this vport */
5642 vport->fc_rscn_flush = 0;
dea3101e 5643 /* Send back ACC */
51ef4c26 5644 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
dea3101e 5645 /* send RECOVERY event for ALL nodes that match RSCN payload */
2e0fef85 5646 lpfc_rscn_recovery_check(vport);
09372820 5647 spin_lock_irq(shost->host_lock);
92d7f7b0 5648 vport->fc_flag &= ~FC_RSCN_DEFERRED;
09372820 5649 spin_unlock_irq(shost->host_lock);
c9f8735b 5650 return 0;
dea3101e 5651 }
858c9f6c
JS
5652 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
5653 "RCV RSCN: did:x%x/ste:x%x flg:x%x",
5654 ndlp->nlp_DID, vport->port_state, ndlp->nlp_flag);
5655
2e0fef85
JS
5656 spin_lock_irq(shost->host_lock);
5657 vport->fc_flag |= FC_RSCN_MODE;
5658 spin_unlock_irq(shost->host_lock);
5659 vport->fc_rscn_id_list[vport->fc_rscn_id_cnt++] = pcmd;
7f5f3d0d
JS
5660 /* Indicate we are done walking fc_rscn_id_list on this vport */
5661 vport->fc_rscn_flush = 0;
dea3101e
JB
5662 /*
5663 * If we zero, cmdiocb->context2, the calling routine will
5664 * not try to free it.
5665 */
5666 cmdiocb->context2 = NULL;
2e0fef85 5667 lpfc_set_disctmo(vport);
dea3101e 5668 /* Send back ACC */
51ef4c26 5669 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
dea3101e 5670 /* send RECOVERY event for ALL nodes that match RSCN payload */
2e0fef85 5671 lpfc_rscn_recovery_check(vport);
2e0fef85 5672 return lpfc_els_handle_rscn(vport);
dea3101e
JB
5673}
5674
e59058c4 5675/**
3621a710 5676 * lpfc_els_handle_rscn - Handle rscn for a vport
e59058c4
JS
5677 * @vport: pointer to a host virtual N_Port data structure.
5678 *
5679 * This routine handles the Registration State Configuration Notification
5680 * (RSCN) for a @vport. If login to NameServer does not exist, a new ndlp shall
5681 * be created and a Port Login (PLOGI) to the NameServer is issued. Otherwise,
5682 * if the ndlp to NameServer exists, a Common Transport (CT) command to the
5683 * NameServer shall be issued. If CT command to the NameServer fails to be
5684 * issued, the lpfc_els_flush_rscn() routine shall be invoked to clean up any
5685 * RSCN activities with the @vport.
5686 *
5687 * Return code
5688 * 0 - Cleaned up rscn on the @vport
5689 * 1 - Wait for plogi to name server before proceed
5690 **/
dea3101e 5691int
2e0fef85 5692lpfc_els_handle_rscn(struct lpfc_vport *vport)
dea3101e
JB
5693{
5694 struct lpfc_nodelist *ndlp;
2e0fef85 5695 struct lpfc_hba *phba = vport->phba;
dea3101e 5696
92d7f7b0
JS
5697 /* Ignore RSCN if the port is being torn down. */
5698 if (vport->load_flag & FC_UNLOADING) {
5699 lpfc_els_flush_rscn(vport);
5700 return 0;
5701 }
5702
dea3101e 5703 /* Start timer for RSCN processing */
2e0fef85 5704 lpfc_set_disctmo(vport);
dea3101e
JB
5705
5706 /* RSCN processed */
e8b62011
JS
5707 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
5708 "0215 RSCN processed Data: x%x x%x x%x x%x\n",
5709 vport->fc_flag, 0, vport->fc_rscn_id_cnt,
5710 vport->port_state);
dea3101e
JB
5711
5712 /* To process RSCN, first compare RSCN data with NameServer */
2e0fef85 5713 vport->fc_ns_retry = 0;
0ff10d46
JS
5714 vport->num_disc_nodes = 0;
5715
2e0fef85 5716 ndlp = lpfc_findnode_did(vport, NameServer_DID);
e47c9093
JS
5717 if (ndlp && NLP_CHK_NODE_ACT(ndlp)
5718 && ndlp->nlp_state == NLP_STE_UNMAPPED_NODE) {
dea3101e 5719 /* Good ndlp, issue CT Request to NameServer */
92d7f7b0 5720 if (lpfc_ns_cmd(vport, SLI_CTNS_GID_FT, 0, 0) == 0)
dea3101e
JB
5721 /* Wait for NameServer query cmpl before we can
5722 continue */
c9f8735b 5723 return 1;
dea3101e
JB
5724 } else {
5725 /* If login to NameServer does not exist, issue one */
5726 /* Good status, issue PLOGI to NameServer */
2e0fef85 5727 ndlp = lpfc_findnode_did(vport, NameServer_DID);
e47c9093 5728 if (ndlp && NLP_CHK_NODE_ACT(ndlp))
dea3101e
JB
5729 /* Wait for NameServer login cmpl before we can
5730 continue */
c9f8735b 5731 return 1;
2e0fef85 5732
e47c9093
JS
5733 if (ndlp) {
5734 ndlp = lpfc_enable_node(vport, ndlp,
5735 NLP_STE_PLOGI_ISSUE);
5736 if (!ndlp) {
5737 lpfc_els_flush_rscn(vport);
5738 return 0;
5739 }
5740 ndlp->nlp_prev_state = NLP_STE_UNUSED_NODE;
dea3101e 5741 } else {
e47c9093
JS
5742 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
5743 if (!ndlp) {
5744 lpfc_els_flush_rscn(vport);
5745 return 0;
5746 }
2e0fef85 5747 lpfc_nlp_init(vport, ndlp, NameServer_DID);
5024ab17 5748 ndlp->nlp_prev_state = ndlp->nlp_state;
2e0fef85 5749 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
dea3101e 5750 }
e47c9093
JS
5751 ndlp->nlp_type |= NLP_FABRIC;
5752 lpfc_issue_els_plogi(vport, NameServer_DID, 0);
5753 /* Wait for NameServer login cmpl before we can
5754 * continue
5755 */
5756 return 1;
dea3101e
JB
5757 }
5758
2e0fef85 5759 lpfc_els_flush_rscn(vport);
c9f8735b 5760 return 0;
dea3101e
JB
5761}
5762
e59058c4 5763/**
3621a710 5764 * lpfc_els_rcv_flogi - Process an unsolicited flogi iocb
e59058c4
JS
5765 * @vport: pointer to a host virtual N_Port data structure.
5766 * @cmdiocb: pointer to lpfc command iocb data structure.
5767 * @ndlp: pointer to a node-list data structure.
5768 *
5769 * This routine processes Fabric Login (FLOGI) IOCB received as an ELS
5770 * unsolicited event. An unsolicited FLOGI can be received in a point-to-
5771 * point topology. As an unsolicited FLOGI should not be received in a loop
5772 * mode, any unsolicited FLOGI received in loop mode shall be ignored. The
5773 * lpfc_check_sparm() routine is invoked to check the parameters in the
5774 * unsolicited FLOGI. If parameters validation failed, the routine
5775 * lpfc_els_rsp_reject() shall be called with reject reason code set to
5776 * LSEXP_SPARM_OPTIONS to reject the FLOGI. Otherwise, the Port WWN in the
5777 * FLOGI shall be compared with the Port WWN of the @vport to determine who
5778 * will initiate PLOGI. The higher lexicographical value party shall has
5779 * higher priority (as the winning port) and will initiate PLOGI and
5780 * communicate Port_IDs (Addresses) for both nodes in PLOGI. The result
5781 * of this will be marked in the @vport fc_flag field with FC_PT2PT_PLOGI
5782 * and then the lpfc_els_rsp_acc() routine is invoked to accept the FLOGI.
5783 *
5784 * Return code
5785 * 0 - Successfully processed the unsolicited flogi
5786 * 1 - Failed to process the unsolicited flogi
5787 **/
dea3101e 5788static int
2e0fef85 5789lpfc_els_rcv_flogi(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
51ef4c26 5790 struct lpfc_nodelist *ndlp)
dea3101e 5791{
2e0fef85
JS
5792 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
5793 struct lpfc_hba *phba = vport->phba;
dea3101e
JB
5794 struct lpfc_dmabuf *pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
5795 uint32_t *lp = (uint32_t *) pcmd->virt;
5796 IOCB_t *icmd = &cmdiocb->iocb;
5797 struct serv_parm *sp;
5798 LPFC_MBOXQ_t *mbox;
dea3101e
JB
5799 uint32_t cmd, did;
5800 int rc;
e74c03c8
JS
5801 uint32_t fc_flag = 0;
5802 uint32_t port_state = 0;
dea3101e
JB
5803
5804 cmd = *lp++;
5805 sp = (struct serv_parm *) lp;
5806
5807 /* FLOGI received */
5808
2e0fef85 5809 lpfc_set_disctmo(vport);
dea3101e 5810
76a95d75 5811 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
dea3101e
JB
5812 /* We should never receive a FLOGI in loop mode, ignore it */
5813 did = icmd->un.elsreq64.remoteID;
5814
5815 /* An FLOGI ELS command <elsCmd> was received from DID <did> in
5816 Loop Mode */
e8b62011
JS
5817 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
5818 "0113 An FLOGI ELS command x%x was "
5819 "received from DID x%x in Loop Mode\n",
5820 cmd, did);
c9f8735b 5821 return 1;
dea3101e
JB
5822 }
5823
d6de08cc 5824 (void) lpfc_check_sparm(vport, ndlp, sp, CLASS3, 1);
dea3101e 5825
dea3101e 5826
d6de08cc
JS
5827 /*
5828 * If our portname is greater than the remote portname,
5829 * then we initiate Nport login.
5830 */
939723a4 5831
d6de08cc
JS
5832 rc = memcmp(&vport->fc_portname, &sp->portName,
5833 sizeof(struct lpfc_name));
939723a4 5834
d6de08cc
JS
5835 if (!rc) {
5836 if (phba->sli_rev < LPFC_SLI_REV4) {
5837 mbox = mempool_alloc(phba->mbox_mem_pool,
5838 GFP_KERNEL);
5839 if (!mbox)
5840 return 1;
5841 lpfc_linkdown(phba);
5842 lpfc_init_link(phba, mbox,
5843 phba->cfg_topology,
5844 phba->cfg_link_speed);
5845 mbox->u.mb.un.varInitLnk.lipsr_AL_PA = 0;
5846 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
5847 mbox->vport = vport;
5848 rc = lpfc_sli_issue_mbox(phba, mbox,
5849 MBX_NOWAIT);
5850 lpfc_set_loopback_flag(phba);
5851 if (rc == MBX_NOT_FINISHED)
5852 mempool_free(mbox, phba->mbox_mem_pool);
5853 return 1;
5854 }
5855
5856 /* abort the flogi coming back to ourselves
5857 * due to external loopback on the port.
939723a4 5858 */
d6de08cc
JS
5859 lpfc_els_abort_flogi(phba);
5860 return 0;
5861
5862 } else if (rc > 0) { /* greater than */
2e0fef85 5863 spin_lock_irq(shost->host_lock);
d6de08cc 5864 vport->fc_flag |= FC_PT2PT_PLOGI;
2e0fef85 5865 spin_unlock_irq(shost->host_lock);
939723a4 5866
d6de08cc
JS
5867 /* If we have the high WWPN we can assign our own
5868 * myDID; otherwise, we have to WAIT for a PLOGI
5869 * from the remote NPort to find out what it
5870 * will be.
939723a4 5871 */
d6de08cc 5872 vport->fc_myDID = PT2PT_LocalID;
dea3101e 5873 } else {
d6de08cc
JS
5874 vport->fc_myDID = PT2PT_RemoteID;
5875 }
939723a4 5876
d6de08cc
JS
5877 /*
5878 * The vport state should go to LPFC_FLOGI only
5879 * AFTER we issue a FLOGI, not receive one.
5880 */
5881 spin_lock_irq(shost->host_lock);
5882 fc_flag = vport->fc_flag;
5883 port_state = vport->port_state;
5884 vport->fc_flag |= FC_PT2PT;
5885 vport->fc_flag &= ~(FC_FABRIC | FC_PUBLIC_LOOP);
5886 spin_unlock_irq(shost->host_lock);
5887 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
5888 "3311 Rcv Flogi PS x%x new PS x%x "
5889 "fc_flag x%x new fc_flag x%x\n",
5890 port_state, vport->port_state,
5891 fc_flag, vport->fc_flag);
939723a4 5892
d6de08cc
JS
5893 /*
5894 * We temporarily set fc_myDID to make it look like we are
5895 * a Fabric. This is done just so we end up with the right
5896 * did / sid on the FLOGI ACC rsp.
5897 */
5898 did = vport->fc_myDID;
5899 vport->fc_myDID = Fabric_DID;
dea3101e 5900
d6de08cc 5901 memcpy(&phba->fc_fabparam, sp, sizeof(struct serv_parm));
eec3d312 5902
dea3101e 5903 /* Send back ACC */
d6de08cc 5904 lpfc_els_rsp_acc(vport, ELS_CMD_FLOGI, cmdiocb, ndlp, NULL);
dea3101e 5905
939723a4
JS
5906 /* Now lets put fc_myDID back to what its supposed to be */
5907 vport->fc_myDID = did;
5908
c9f8735b 5909 return 0;
dea3101e
JB
5910}
5911
e59058c4 5912/**
3621a710 5913 * lpfc_els_rcv_rnid - Process an unsolicited rnid iocb
e59058c4
JS
5914 * @vport: pointer to a host virtual N_Port data structure.
5915 * @cmdiocb: pointer to lpfc command iocb data structure.
5916 * @ndlp: pointer to a node-list data structure.
5917 *
5918 * This routine processes Request Node Identification Data (RNID) IOCB
5919 * received as an ELS unsolicited event. Only when the RNID specified format
5920 * 0x0 or 0xDF (Topology Discovery Specific Node Identification Data)
5921 * present, this routine will invoke the lpfc_els_rsp_rnid_acc() routine to
5922 * Accept (ACC) the RNID ELS command. All the other RNID formats are
5923 * rejected by invoking the lpfc_els_rsp_reject() routine.
5924 *
5925 * Return code
5926 * 0 - Successfully processed rnid iocb (currently always return 0)
5927 **/
dea3101e 5928static int
2e0fef85
JS
5929lpfc_els_rcv_rnid(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
5930 struct lpfc_nodelist *ndlp)
dea3101e
JB
5931{
5932 struct lpfc_dmabuf *pcmd;
5933 uint32_t *lp;
dea3101e
JB
5934 RNID *rn;
5935 struct ls_rjt stat;
eb016566 5936 uint32_t cmd;
dea3101e 5937
dea3101e
JB
5938 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
5939 lp = (uint32_t *) pcmd->virt;
5940
5941 cmd = *lp++;
5942 rn = (RNID *) lp;
5943
5944 /* RNID received */
5945
5946 switch (rn->Format) {
5947 case 0:
5948 case RNID_TOPOLOGY_DISC:
5949 /* Send back ACC */
2e0fef85 5950 lpfc_els_rsp_rnid_acc(vport, rn->Format, cmdiocb, ndlp);
dea3101e
JB
5951 break;
5952 default:
5953 /* Reject this request because format not supported */
5954 stat.un.b.lsRjtRsvd0 = 0;
5955 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
5956 stat.un.b.lsRjtRsnCodeExp = LSEXP_CANT_GIVE_DATA;
5957 stat.un.b.vendorUnique = 0;
858c9f6c
JS
5958 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp,
5959 NULL);
dea3101e 5960 }
c9f8735b 5961 return 0;
dea3101e
JB
5962}
5963
12265f68
JS
5964/**
5965 * lpfc_els_rcv_echo - Process an unsolicited echo iocb
5966 * @vport: pointer to a host virtual N_Port data structure.
5967 * @cmdiocb: pointer to lpfc command iocb data structure.
5968 * @ndlp: pointer to a node-list data structure.
5969 *
5970 * Return code
5971 * 0 - Successfully processed echo iocb (currently always return 0)
5972 **/
5973static int
5974lpfc_els_rcv_echo(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
5975 struct lpfc_nodelist *ndlp)
5976{
5977 uint8_t *pcmd;
5978
5979 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) cmdiocb->context2)->virt);
5980
5981 /* skip over first word of echo command to find echo data */
5982 pcmd += sizeof(uint32_t);
5983
5984 lpfc_els_rsp_echo_acc(vport, pcmd, cmdiocb, ndlp);
5985 return 0;
5986}
5987
e59058c4 5988/**
3621a710 5989 * lpfc_els_rcv_lirr - Process an unsolicited lirr iocb
e59058c4
JS
5990 * @vport: pointer to a host virtual N_Port data structure.
5991 * @cmdiocb: pointer to lpfc command iocb data structure.
5992 * @ndlp: pointer to a node-list data structure.
5993 *
5994 * This routine processes a Link Incident Report Registration(LIRR) IOCB
5995 * received as an ELS unsolicited event. Currently, this function just invokes
5996 * the lpfc_els_rsp_reject() routine to reject the LIRR IOCB unconditionally.
5997 *
5998 * Return code
5999 * 0 - Successfully processed lirr iocb (currently always return 0)
6000 **/
dea3101e 6001static int
2e0fef85
JS
6002lpfc_els_rcv_lirr(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
6003 struct lpfc_nodelist *ndlp)
7bb3b137
JW
6004{
6005 struct ls_rjt stat;
6006
6007 /* For now, unconditionally reject this command */
6008 stat.un.b.lsRjtRsvd0 = 0;
6009 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
6010 stat.un.b.lsRjtRsnCodeExp = LSEXP_CANT_GIVE_DATA;
6011 stat.un.b.vendorUnique = 0;
858c9f6c 6012 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
7bb3b137
JW
6013 return 0;
6014}
6015
5ffc266e
JS
6016/**
6017 * lpfc_els_rcv_rrq - Process an unsolicited rrq iocb
6018 * @vport: pointer to a host virtual N_Port data structure.
6019 * @cmdiocb: pointer to lpfc command iocb data structure.
6020 * @ndlp: pointer to a node-list data structure.
6021 *
6022 * This routine processes a Reinstate Recovery Qualifier (RRQ) IOCB
6023 * received as an ELS unsolicited event. A request to RRQ shall only
6024 * be accepted if the Originator Nx_Port N_Port_ID or the Responder
6025 * Nx_Port N_Port_ID of the target Exchange is the same as the
6026 * N_Port_ID of the Nx_Port that makes the request. If the RRQ is
6027 * not accepted, an LS_RJT with reason code "Unable to perform
6028 * command request" and reason code explanation "Invalid Originator
6029 * S_ID" shall be returned. For now, we just unconditionally accept
6030 * RRQ from the target.
6031 **/
6032static void
6033lpfc_els_rcv_rrq(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
6034 struct lpfc_nodelist *ndlp)
6035{
6036 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
19ca7609
JS
6037 if (vport->phba->sli_rev == LPFC_SLI_REV4)
6038 lpfc_els_clear_rrq(vport, cmdiocb, ndlp);
5ffc266e
JS
6039}
6040
12265f68
JS
6041/**
6042 * lpfc_els_rsp_rls_acc - Completion callbk func for MBX_READ_LNK_STAT mbox cmd
6043 * @phba: pointer to lpfc hba data structure.
6044 * @pmb: pointer to the driver internal queue element for mailbox command.
6045 *
6046 * This routine is the completion callback function for the MBX_READ_LNK_STAT
6047 * mailbox command. This callback function is to actually send the Accept
6048 * (ACC) response to a Read Port Status (RPS) unsolicited IOCB event. It
6049 * collects the link statistics from the completion of the MBX_READ_LNK_STAT
6050 * mailbox command, constructs the RPS response with the link statistics
6051 * collected, and then invokes the lpfc_sli_issue_iocb() routine to send ACC
6052 * response to the RPS.
6053 *
6054 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
6055 * will be incremented by 1 for holding the ndlp and the reference to ndlp
6056 * will be stored into the context1 field of the IOCB for the completion
6057 * callback function to the RPS Accept Response ELS IOCB command.
6058 *
6059 **/
6060static void
6061lpfc_els_rsp_rls_acc(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
6062{
6063 MAILBOX_t *mb;
6064 IOCB_t *icmd;
6065 struct RLS_RSP *rls_rsp;
6066 uint8_t *pcmd;
6067 struct lpfc_iocbq *elsiocb;
6068 struct lpfc_nodelist *ndlp;
7851fe2c
JS
6069 uint16_t oxid;
6070 uint16_t rxid;
12265f68
JS
6071 uint32_t cmdsize;
6072
6073 mb = &pmb->u.mb;
6074
6075 ndlp = (struct lpfc_nodelist *) pmb->context2;
7851fe2c
JS
6076 rxid = (uint16_t) ((unsigned long)(pmb->context1) & 0xffff);
6077 oxid = (uint16_t) (((unsigned long)(pmb->context1) >> 16) & 0xffff);
12265f68
JS
6078 pmb->context1 = NULL;
6079 pmb->context2 = NULL;
6080
6081 if (mb->mbxStatus) {
6082 mempool_free(pmb, phba->mbox_mem_pool);
6083 return;
6084 }
6085
6086 cmdsize = sizeof(struct RLS_RSP) + sizeof(uint32_t);
12265f68
JS
6087 elsiocb = lpfc_prep_els_iocb(phba->pport, 0, cmdsize,
6088 lpfc_max_els_tries, ndlp,
6089 ndlp->nlp_DID, ELS_CMD_ACC);
6090
6091 /* Decrement the ndlp reference count from previous mbox command */
6092 lpfc_nlp_put(ndlp);
6093
37db57e3
JS
6094 if (!elsiocb) {
6095 mempool_free(pmb, phba->mbox_mem_pool);
12265f68 6096 return;
37db57e3 6097 }
12265f68
JS
6098
6099 icmd = &elsiocb->iocb;
7851fe2c
JS
6100 icmd->ulpContext = rxid;
6101 icmd->unsli3.rcvsli3.ox_id = oxid;
12265f68
JS
6102
6103 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
6104 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
6105 pcmd += sizeof(uint32_t); /* Skip past command */
6106 rls_rsp = (struct RLS_RSP *)pcmd;
6107
6108 rls_rsp->linkFailureCnt = cpu_to_be32(mb->un.varRdLnk.linkFailureCnt);
6109 rls_rsp->lossSyncCnt = cpu_to_be32(mb->un.varRdLnk.lossSyncCnt);
6110 rls_rsp->lossSignalCnt = cpu_to_be32(mb->un.varRdLnk.lossSignalCnt);
6111 rls_rsp->primSeqErrCnt = cpu_to_be32(mb->un.varRdLnk.primSeqErrCnt);
6112 rls_rsp->invalidXmitWord = cpu_to_be32(mb->un.varRdLnk.invalidXmitWord);
6113 rls_rsp->crcCnt = cpu_to_be32(mb->un.varRdLnk.crcCnt);
37db57e3 6114 mempool_free(pmb, phba->mbox_mem_pool);
12265f68
JS
6115 /* Xmit ELS RLS ACC response tag <ulpIoTag> */
6116 lpfc_printf_vlog(ndlp->vport, KERN_INFO, LOG_ELS,
6117 "2874 Xmit ELS RLS ACC response tag x%x xri x%x, "
6118 "did x%x, nlp_flag x%x, nlp_state x%x, rpi x%x\n",
6119 elsiocb->iotag, elsiocb->iocb.ulpContext,
6120 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
6121 ndlp->nlp_rpi);
6122 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
6123 phba->fc_stat.elsXmitACC++;
6124 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) == IOCB_ERROR)
6125 lpfc_els_free_iocb(phba, elsiocb);
6126}
6127
e59058c4 6128/**
3621a710 6129 * lpfc_els_rsp_rps_acc - Completion callbk func for MBX_READ_LNK_STAT mbox cmd
e59058c4
JS
6130 * @phba: pointer to lpfc hba data structure.
6131 * @pmb: pointer to the driver internal queue element for mailbox command.
6132 *
6133 * This routine is the completion callback function for the MBX_READ_LNK_STAT
6134 * mailbox command. This callback function is to actually send the Accept
6135 * (ACC) response to a Read Port Status (RPS) unsolicited IOCB event. It
6136 * collects the link statistics from the completion of the MBX_READ_LNK_STAT
6137 * mailbox command, constructs the RPS response with the link statistics
6138 * collected, and then invokes the lpfc_sli_issue_iocb() routine to send ACC
6139 * response to the RPS.
6140 *
6141 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
6142 * will be incremented by 1 for holding the ndlp and the reference to ndlp
6143 * will be stored into the context1 field of the IOCB for the completion
6144 * callback function to the RPS Accept Response ELS IOCB command.
6145 *
6146 **/
082c0266 6147static void
329f9bc7 6148lpfc_els_rsp_rps_acc(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
7bb3b137 6149{
7bb3b137
JW
6150 MAILBOX_t *mb;
6151 IOCB_t *icmd;
6152 RPS_RSP *rps_rsp;
6153 uint8_t *pcmd;
6154 struct lpfc_iocbq *elsiocb;
6155 struct lpfc_nodelist *ndlp;
7851fe2c
JS
6156 uint16_t status;
6157 uint16_t oxid;
6158 uint16_t rxid;
7bb3b137
JW
6159 uint32_t cmdsize;
6160
04c68496 6161 mb = &pmb->u.mb;
7bb3b137
JW
6162
6163 ndlp = (struct lpfc_nodelist *) pmb->context2;
7851fe2c
JS
6164 rxid = (uint16_t) ((unsigned long)(pmb->context1) & 0xffff);
6165 oxid = (uint16_t) (((unsigned long)(pmb->context1) >> 16) & 0xffff);
041976fb
RD
6166 pmb->context1 = NULL;
6167 pmb->context2 = NULL;
7bb3b137
JW
6168
6169 if (mb->mbxStatus) {
329f9bc7 6170 mempool_free(pmb, phba->mbox_mem_pool);
7bb3b137
JW
6171 return;
6172 }
6173
6174 cmdsize = sizeof(RPS_RSP) + sizeof(uint32_t);
329f9bc7 6175 mempool_free(pmb, phba->mbox_mem_pool);
2e0fef85
JS
6176 elsiocb = lpfc_prep_els_iocb(phba->pport, 0, cmdsize,
6177 lpfc_max_els_tries, ndlp,
6178 ndlp->nlp_DID, ELS_CMD_ACC);
fa4066b6
JS
6179
6180 /* Decrement the ndlp reference count from previous mbox command */
329f9bc7 6181 lpfc_nlp_put(ndlp);
fa4066b6 6182
c9f8735b 6183 if (!elsiocb)
7bb3b137 6184 return;
7bb3b137
JW
6185
6186 icmd = &elsiocb->iocb;
7851fe2c
JS
6187 icmd->ulpContext = rxid;
6188 icmd->unsli3.rcvsli3.ox_id = oxid;
7bb3b137
JW
6189
6190 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
6191 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
92d7f7b0 6192 pcmd += sizeof(uint32_t); /* Skip past command */
7bb3b137
JW
6193 rps_rsp = (RPS_RSP *)pcmd;
6194
76a95d75 6195 if (phba->fc_topology != LPFC_TOPOLOGY_LOOP)
7bb3b137
JW
6196 status = 0x10;
6197 else
6198 status = 0x8;
2e0fef85 6199 if (phba->pport->fc_flag & FC_FABRIC)
7bb3b137
JW
6200 status |= 0x4;
6201
6202 rps_rsp->rsvd1 = 0;
09372820
JS
6203 rps_rsp->portStatus = cpu_to_be16(status);
6204 rps_rsp->linkFailureCnt = cpu_to_be32(mb->un.varRdLnk.linkFailureCnt);
6205 rps_rsp->lossSyncCnt = cpu_to_be32(mb->un.varRdLnk.lossSyncCnt);
6206 rps_rsp->lossSignalCnt = cpu_to_be32(mb->un.varRdLnk.lossSignalCnt);
6207 rps_rsp->primSeqErrCnt = cpu_to_be32(mb->un.varRdLnk.primSeqErrCnt);
6208 rps_rsp->invalidXmitWord = cpu_to_be32(mb->un.varRdLnk.invalidXmitWord);
6209 rps_rsp->crcCnt = cpu_to_be32(mb->un.varRdLnk.crcCnt);
7bb3b137 6210 /* Xmit ELS RPS ACC response tag <ulpIoTag> */
e8b62011
JS
6211 lpfc_printf_vlog(ndlp->vport, KERN_INFO, LOG_ELS,
6212 "0118 Xmit ELS RPS ACC response tag x%x xri x%x, "
6213 "did x%x, nlp_flag x%x, nlp_state x%x, rpi x%x\n",
6214 elsiocb->iotag, elsiocb->iocb.ulpContext,
6215 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
6216 ndlp->nlp_rpi);
858c9f6c 6217 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
7bb3b137 6218 phba->fc_stat.elsXmitACC++;
3772a991 6219 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) == IOCB_ERROR)
7bb3b137 6220 lpfc_els_free_iocb(phba, elsiocb);
7bb3b137
JW
6221 return;
6222}
6223
e59058c4 6224/**
12265f68
JS
6225 * lpfc_els_rcv_rls - Process an unsolicited rls iocb
6226 * @vport: pointer to a host virtual N_Port data structure.
6227 * @cmdiocb: pointer to lpfc command iocb data structure.
6228 * @ndlp: pointer to a node-list data structure.
6229 *
6230 * This routine processes Read Port Status (RPL) IOCB received as an
6231 * ELS unsolicited event. It first checks the remote port state. If the
6232 * remote port is not in NLP_STE_UNMAPPED_NODE state or NLP_STE_MAPPED_NODE
6233 * state, it invokes the lpfc_els_rsl_reject() routine to send the reject
6234 * response. Otherwise, it issue the MBX_READ_LNK_STAT mailbox command
6235 * for reading the HBA link statistics. It is for the callback function,
6236 * lpfc_els_rsp_rls_acc(), set to the MBX_READ_LNK_STAT mailbox command
6237 * to actually sending out RPL Accept (ACC) response.
6238 *
6239 * Return codes
6240 * 0 - Successfully processed rls iocb (currently always return 0)
6241 **/
6242static int
6243lpfc_els_rcv_rls(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
6244 struct lpfc_nodelist *ndlp)
6245{
6246 struct lpfc_hba *phba = vport->phba;
6247 LPFC_MBOXQ_t *mbox;
12265f68
JS
6248 struct ls_rjt stat;
6249
6250 if ((ndlp->nlp_state != NLP_STE_UNMAPPED_NODE) &&
6251 (ndlp->nlp_state != NLP_STE_MAPPED_NODE))
6252 /* reject the unsolicited RPS request and done with it */
6253 goto reject_out;
6254
12265f68
JS
6255 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_ATOMIC);
6256 if (mbox) {
6257 lpfc_read_lnk_stat(phba, mbox);
7851fe2c
JS
6258 mbox->context1 = (void *)((unsigned long)
6259 ((cmdiocb->iocb.unsli3.rcvsli3.ox_id << 16) |
6260 cmdiocb->iocb.ulpContext)); /* rx_id */
12265f68
JS
6261 mbox->context2 = lpfc_nlp_get(ndlp);
6262 mbox->vport = vport;
6263 mbox->mbox_cmpl = lpfc_els_rsp_rls_acc;
6264 if (lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT)
6265 != MBX_NOT_FINISHED)
6266 /* Mbox completion will send ELS Response */
6267 return 0;
6268 /* Decrement reference count used for the failed mbox
6269 * command.
6270 */
6271 lpfc_nlp_put(ndlp);
6272 mempool_free(mbox, phba->mbox_mem_pool);
6273 }
6274reject_out:
6275 /* issue rejection response */
6276 stat.un.b.lsRjtRsvd0 = 0;
6277 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
6278 stat.un.b.lsRjtRsnCodeExp = LSEXP_CANT_GIVE_DATA;
6279 stat.un.b.vendorUnique = 0;
6280 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
6281 return 0;
6282}
6283
6284/**
6285 * lpfc_els_rcv_rtv - Process an unsolicited rtv iocb
6286 * @vport: pointer to a host virtual N_Port data structure.
6287 * @cmdiocb: pointer to lpfc command iocb data structure.
6288 * @ndlp: pointer to a node-list data structure.
6289 *
6290 * This routine processes Read Timout Value (RTV) IOCB received as an
6291 * ELS unsolicited event. It first checks the remote port state. If the
6292 * remote port is not in NLP_STE_UNMAPPED_NODE state or NLP_STE_MAPPED_NODE
6293 * state, it invokes the lpfc_els_rsl_reject() routine to send the reject
6294 * response. Otherwise, it sends the Accept(ACC) response to a Read Timeout
6295 * Value (RTV) unsolicited IOCB event.
6296 *
6297 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
6298 * will be incremented by 1 for holding the ndlp and the reference to ndlp
6299 * will be stored into the context1 field of the IOCB for the completion
6300 * callback function to the RPS Accept Response ELS IOCB command.
6301 *
6302 * Return codes
6303 * 0 - Successfully processed rtv iocb (currently always return 0)
6304 **/
6305static int
6306lpfc_els_rcv_rtv(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
6307 struct lpfc_nodelist *ndlp)
6308{
6309 struct lpfc_hba *phba = vport->phba;
6310 struct ls_rjt stat;
6311 struct RTV_RSP *rtv_rsp;
6312 uint8_t *pcmd;
6313 struct lpfc_iocbq *elsiocb;
6314 uint32_t cmdsize;
6315
6316
6317 if ((ndlp->nlp_state != NLP_STE_UNMAPPED_NODE) &&
6318 (ndlp->nlp_state != NLP_STE_MAPPED_NODE))
6319 /* reject the unsolicited RPS request and done with it */
6320 goto reject_out;
6321
6322 cmdsize = sizeof(struct RTV_RSP) + sizeof(uint32_t);
6323 elsiocb = lpfc_prep_els_iocb(phba->pport, 0, cmdsize,
6324 lpfc_max_els_tries, ndlp,
6325 ndlp->nlp_DID, ELS_CMD_ACC);
6326
6327 if (!elsiocb)
6328 return 1;
6329
6330 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
6331 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
6332 pcmd += sizeof(uint32_t); /* Skip past command */
6333
6334 /* use the command's xri in the response */
7851fe2c
JS
6335 elsiocb->iocb.ulpContext = cmdiocb->iocb.ulpContext; /* Xri / rx_id */
6336 elsiocb->iocb.unsli3.rcvsli3.ox_id = cmdiocb->iocb.unsli3.rcvsli3.ox_id;
12265f68
JS
6337
6338 rtv_rsp = (struct RTV_RSP *)pcmd;
6339
6340 /* populate RTV payload */
6341 rtv_rsp->ratov = cpu_to_be32(phba->fc_ratov * 1000); /* report msecs */
6342 rtv_rsp->edtov = cpu_to_be32(phba->fc_edtov);
6343 bf_set(qtov_edtovres, rtv_rsp, phba->fc_edtovResol ? 1 : 0);
6344 bf_set(qtov_rttov, rtv_rsp, 0); /* Field is for FC ONLY */
6345 rtv_rsp->qtov = cpu_to_be32(rtv_rsp->qtov);
6346
6347 /* Xmit ELS RLS ACC response tag <ulpIoTag> */
6348 lpfc_printf_vlog(ndlp->vport, KERN_INFO, LOG_ELS,
6349 "2875 Xmit ELS RTV ACC response tag x%x xri x%x, "
6350 "did x%x, nlp_flag x%x, nlp_state x%x, rpi x%x, "
6351 "Data: x%x x%x x%x\n",
6352 elsiocb->iotag, elsiocb->iocb.ulpContext,
6353 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
6354 ndlp->nlp_rpi,
6355 rtv_rsp->ratov, rtv_rsp->edtov, rtv_rsp->qtov);
6356 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
6357 phba->fc_stat.elsXmitACC++;
6358 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) == IOCB_ERROR)
6359 lpfc_els_free_iocb(phba, elsiocb);
6360 return 0;
6361
6362reject_out:
6363 /* issue rejection response */
6364 stat.un.b.lsRjtRsvd0 = 0;
6365 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
6366 stat.un.b.lsRjtRsnCodeExp = LSEXP_CANT_GIVE_DATA;
6367 stat.un.b.vendorUnique = 0;
6368 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
6369 return 0;
6370}
6371
6372/* lpfc_els_rcv_rps - Process an unsolicited rps iocb
e59058c4
JS
6373 * @vport: pointer to a host virtual N_Port data structure.
6374 * @cmdiocb: pointer to lpfc command iocb data structure.
6375 * @ndlp: pointer to a node-list data structure.
6376 *
6377 * This routine processes Read Port Status (RPS) IOCB received as an
6378 * ELS unsolicited event. It first checks the remote port state. If the
6379 * remote port is not in NLP_STE_UNMAPPED_NODE state or NLP_STE_MAPPED_NODE
6380 * state, it invokes the lpfc_els_rsp_reject() routine to send the reject
6381 * response. Otherwise, it issue the MBX_READ_LNK_STAT mailbox command
6382 * for reading the HBA link statistics. It is for the callback function,
6383 * lpfc_els_rsp_rps_acc(), set to the MBX_READ_LNK_STAT mailbox command
6384 * to actually sending out RPS Accept (ACC) response.
6385 *
6386 * Return codes
6387 * 0 - Successfully processed rps iocb (currently always return 0)
6388 **/
7bb3b137 6389static int
2e0fef85
JS
6390lpfc_els_rcv_rps(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
6391 struct lpfc_nodelist *ndlp)
dea3101e 6392{
2e0fef85 6393 struct lpfc_hba *phba = vport->phba;
dea3101e 6394 uint32_t *lp;
7bb3b137
JW
6395 uint8_t flag;
6396 LPFC_MBOXQ_t *mbox;
6397 struct lpfc_dmabuf *pcmd;
6398 RPS *rps;
6399 struct ls_rjt stat;
6400
2fe165b6 6401 if ((ndlp->nlp_state != NLP_STE_UNMAPPED_NODE) &&
90160e01
JS
6402 (ndlp->nlp_state != NLP_STE_MAPPED_NODE))
6403 /* reject the unsolicited RPS request and done with it */
6404 goto reject_out;
7bb3b137
JW
6405
6406 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
6407 lp = (uint32_t *) pcmd->virt;
6408 flag = (be32_to_cpu(*lp++) & 0xf);
6409 rps = (RPS *) lp;
6410
6411 if ((flag == 0) ||
6412 ((flag == 1) && (be32_to_cpu(rps->un.portNum) == 0)) ||
2e0fef85 6413 ((flag == 2) && (memcmp(&rps->un.portName, &vport->fc_portname,
92d7f7b0 6414 sizeof(struct lpfc_name)) == 0))) {
2e0fef85 6415
92d7f7b0
JS
6416 printk("Fix me....\n");
6417 dump_stack();
2e0fef85
JS
6418 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_ATOMIC);
6419 if (mbox) {
7bb3b137 6420 lpfc_read_lnk_stat(phba, mbox);
7851fe2c
JS
6421 mbox->context1 = (void *)((unsigned long)
6422 ((cmdiocb->iocb.unsli3.rcvsli3.ox_id << 16) |
6423 cmdiocb->iocb.ulpContext)); /* rx_id */
329f9bc7 6424 mbox->context2 = lpfc_nlp_get(ndlp);
92d7f7b0 6425 mbox->vport = vport;
7bb3b137 6426 mbox->mbox_cmpl = lpfc_els_rsp_rps_acc;
fa4066b6 6427 if (lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT)
0b727fea 6428 != MBX_NOT_FINISHED)
7bb3b137
JW
6429 /* Mbox completion will send ELS Response */
6430 return 0;
fa4066b6
JS
6431 /* Decrement reference count used for the failed mbox
6432 * command.
6433 */
329f9bc7 6434 lpfc_nlp_put(ndlp);
7bb3b137
JW
6435 mempool_free(mbox, phba->mbox_mem_pool);
6436 }
6437 }
90160e01
JS
6438
6439reject_out:
6440 /* issue rejection response */
7bb3b137
JW
6441 stat.un.b.lsRjtRsvd0 = 0;
6442 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
6443 stat.un.b.lsRjtRsnCodeExp = LSEXP_CANT_GIVE_DATA;
6444 stat.un.b.vendorUnique = 0;
858c9f6c 6445 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
7bb3b137
JW
6446 return 0;
6447}
6448
19ca7609
JS
6449/* lpfc_issue_els_rrq - Process an unsolicited rps iocb
6450 * @vport: pointer to a host virtual N_Port data structure.
6451 * @ndlp: pointer to a node-list data structure.
6452 * @did: DID of the target.
6453 * @rrq: Pointer to the rrq struct.
6454 *
6455 * Build a ELS RRQ command and send it to the target. If the issue_iocb is
6456 * Successful the the completion handler will clear the RRQ.
6457 *
6458 * Return codes
6459 * 0 - Successfully sent rrq els iocb.
6460 * 1 - Failed to send rrq els iocb.
6461 **/
6462static int
6463lpfc_issue_els_rrq(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
6464 uint32_t did, struct lpfc_node_rrq *rrq)
6465{
6466 struct lpfc_hba *phba = vport->phba;
6467 struct RRQ *els_rrq;
19ca7609
JS
6468 struct lpfc_iocbq *elsiocb;
6469 uint8_t *pcmd;
6470 uint16_t cmdsize;
6471 int ret;
6472
6473
6474 if (ndlp != rrq->ndlp)
6475 ndlp = rrq->ndlp;
6476 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp))
6477 return 1;
6478
6479 /* If ndlp is not NULL, we will bump the reference count on it */
6480 cmdsize = (sizeof(uint32_t) + sizeof(struct RRQ));
6481 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, 0, ndlp, did,
6482 ELS_CMD_RRQ);
6483 if (!elsiocb)
6484 return 1;
6485
19ca7609
JS
6486 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
6487
6488 /* For RRQ request, remainder of payload is Exchange IDs */
6489 *((uint32_t *) (pcmd)) = ELS_CMD_RRQ;
6490 pcmd += sizeof(uint32_t);
6491 els_rrq = (struct RRQ *) pcmd;
6492
ee0f4fe1 6493 bf_set(rrq_oxid, els_rrq, phba->sli4_hba.xri_ids[rrq->xritag]);
19ca7609
JS
6494 bf_set(rrq_rxid, els_rrq, rrq->rxid);
6495 bf_set(rrq_did, els_rrq, vport->fc_myDID);
6496 els_rrq->rrq = cpu_to_be32(els_rrq->rrq);
6497 els_rrq->rrq_exchg = cpu_to_be32(els_rrq->rrq_exchg);
6498
6499
6500 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
6501 "Issue RRQ: did:x%x",
6502 did, rrq->xritag, rrq->rxid);
6503 elsiocb->context_un.rrq = rrq;
6504 elsiocb->iocb_cmpl = lpfc_cmpl_els_rrq;
6505 ret = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
6506
6507 if (ret == IOCB_ERROR) {
6508 lpfc_els_free_iocb(phba, elsiocb);
6509 return 1;
6510 }
6511 return 0;
6512}
6513
6514/**
6515 * lpfc_send_rrq - Sends ELS RRQ if needed.
6516 * @phba: pointer to lpfc hba data structure.
6517 * @rrq: pointer to the active rrq.
6518 *
6519 * This routine will call the lpfc_issue_els_rrq if the rrq is
6520 * still active for the xri. If this function returns a failure then
6521 * the caller needs to clean up the RRQ by calling lpfc_clr_active_rrq.
6522 *
6523 * Returns 0 Success.
6524 * 1 Failure.
6525 **/
6526int
6527lpfc_send_rrq(struct lpfc_hba *phba, struct lpfc_node_rrq *rrq)
6528{
6529 struct lpfc_nodelist *ndlp = lpfc_findnode_did(rrq->vport,
6530 rrq->nlp_DID);
6531 if (lpfc_test_rrq_active(phba, ndlp, rrq->xritag))
6532 return lpfc_issue_els_rrq(rrq->vport, ndlp,
6533 rrq->nlp_DID, rrq);
6534 else
6535 return 1;
6536}
6537
e59058c4 6538/**
3621a710 6539 * lpfc_els_rsp_rpl_acc - Issue an accept rpl els command
e59058c4
JS
6540 * @vport: pointer to a host virtual N_Port data structure.
6541 * @cmdsize: size of the ELS command.
6542 * @oldiocb: pointer to the original lpfc command iocb data structure.
6543 * @ndlp: pointer to a node-list data structure.
6544 *
6545 * This routine issuees an Accept (ACC) Read Port List (RPL) ELS command.
6546 * It is to be called by the lpfc_els_rcv_rpl() routine to accept the RPL.
6547 *
6548 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
6549 * will be incremented by 1 for holding the ndlp and the reference to ndlp
6550 * will be stored into the context1 field of the IOCB for the completion
6551 * callback function to the RPL Accept Response ELS command.
6552 *
6553 * Return code
6554 * 0 - Successfully issued ACC RPL ELS command
6555 * 1 - Failed to issue ACC RPL ELS command
6556 **/
082c0266 6557static int
2e0fef85
JS
6558lpfc_els_rsp_rpl_acc(struct lpfc_vport *vport, uint16_t cmdsize,
6559 struct lpfc_iocbq *oldiocb, struct lpfc_nodelist *ndlp)
7bb3b137 6560{
2e0fef85
JS
6561 struct lpfc_hba *phba = vport->phba;
6562 IOCB_t *icmd, *oldcmd;
7bb3b137
JW
6563 RPL_RSP rpl_rsp;
6564 struct lpfc_iocbq *elsiocb;
7bb3b137 6565 uint8_t *pcmd;
dea3101e 6566
2e0fef85
JS
6567 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry, ndlp,
6568 ndlp->nlp_DID, ELS_CMD_ACC);
7bb3b137 6569
488d1469 6570 if (!elsiocb)
7bb3b137 6571 return 1;
488d1469 6572
7bb3b137
JW
6573 icmd = &elsiocb->iocb;
6574 oldcmd = &oldiocb->iocb;
7851fe2c
JS
6575 icmd->ulpContext = oldcmd->ulpContext; /* Xri / rx_id */
6576 icmd->unsli3.rcvsli3.ox_id = oldcmd->unsli3.rcvsli3.ox_id;
7bb3b137
JW
6577
6578 pcmd = (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
6579 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
92d7f7b0 6580 pcmd += sizeof(uint16_t);
7bb3b137
JW
6581 *((uint16_t *)(pcmd)) = be16_to_cpu(cmdsize);
6582 pcmd += sizeof(uint16_t);
6583
6584 /* Setup the RPL ACC payload */
6585 rpl_rsp.listLen = be32_to_cpu(1);
6586 rpl_rsp.index = 0;
6587 rpl_rsp.port_num_blk.portNum = 0;
2e0fef85
JS
6588 rpl_rsp.port_num_blk.portID = be32_to_cpu(vport->fc_myDID);
6589 memcpy(&rpl_rsp.port_num_blk.portName, &vport->fc_portname,
7bb3b137 6590 sizeof(struct lpfc_name));
7bb3b137 6591 memcpy(pcmd, &rpl_rsp, cmdsize - sizeof(uint32_t));
7bb3b137 6592 /* Xmit ELS RPL ACC response tag <ulpIoTag> */
e8b62011
JS
6593 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
6594 "0120 Xmit ELS RPL ACC response tag x%x "
6595 "xri x%x, did x%x, nlp_flag x%x, nlp_state x%x, "
6596 "rpi x%x\n",
6597 elsiocb->iotag, elsiocb->iocb.ulpContext,
6598 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
6599 ndlp->nlp_rpi);
858c9f6c 6600 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
7bb3b137 6601 phba->fc_stat.elsXmitACC++;
3772a991
JS
6602 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) ==
6603 IOCB_ERROR) {
7bb3b137
JW
6604 lpfc_els_free_iocb(phba, elsiocb);
6605 return 1;
6606 }
6607 return 0;
6608}
6609
e59058c4 6610/**
3621a710 6611 * lpfc_els_rcv_rpl - Process an unsolicited rpl iocb
e59058c4
JS
6612 * @vport: pointer to a host virtual N_Port data structure.
6613 * @cmdiocb: pointer to lpfc command iocb data structure.
6614 * @ndlp: pointer to a node-list data structure.
6615 *
6616 * This routine processes Read Port List (RPL) IOCB received as an ELS
6617 * unsolicited event. It first checks the remote port state. If the remote
6618 * port is not in NLP_STE_UNMAPPED_NODE and NLP_STE_MAPPED_NODE states, it
6619 * invokes the lpfc_els_rsp_reject() routine to send reject response.
6620 * Otherwise, this routine then invokes the lpfc_els_rsp_rpl_acc() routine
6621 * to accept the RPL.
6622 *
6623 * Return code
6624 * 0 - Successfully processed rpl iocb (currently always return 0)
6625 **/
7bb3b137 6626static int
2e0fef85
JS
6627lpfc_els_rcv_rpl(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
6628 struct lpfc_nodelist *ndlp)
7bb3b137
JW
6629{
6630 struct lpfc_dmabuf *pcmd;
6631 uint32_t *lp;
6632 uint32_t maxsize;
6633 uint16_t cmdsize;
6634 RPL *rpl;
6635 struct ls_rjt stat;
6636
2fe165b6
JW
6637 if ((ndlp->nlp_state != NLP_STE_UNMAPPED_NODE) &&
6638 (ndlp->nlp_state != NLP_STE_MAPPED_NODE)) {
90160e01 6639 /* issue rejection response */
7bb3b137
JW
6640 stat.un.b.lsRjtRsvd0 = 0;
6641 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
6642 stat.un.b.lsRjtRsnCodeExp = LSEXP_CANT_GIVE_DATA;
6643 stat.un.b.vendorUnique = 0;
858c9f6c
JS
6644 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp,
6645 NULL);
90160e01
JS
6646 /* rejected the unsolicited RPL request and done with it */
6647 return 0;
7bb3b137
JW
6648 }
6649
dea3101e
JB
6650 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
6651 lp = (uint32_t *) pcmd->virt;
7bb3b137 6652 rpl = (RPL *) (lp + 1);
7bb3b137 6653 maxsize = be32_to_cpu(rpl->maxsize);
dea3101e 6654
7bb3b137
JW
6655 /* We support only one port */
6656 if ((rpl->index == 0) &&
6657 ((maxsize == 0) ||
6658 ((maxsize * sizeof(uint32_t)) >= sizeof(RPL_RSP)))) {
6659 cmdsize = sizeof(uint32_t) + sizeof(RPL_RSP);
2fe165b6 6660 } else {
7bb3b137
JW
6661 cmdsize = sizeof(uint32_t) + maxsize * sizeof(uint32_t);
6662 }
2e0fef85 6663 lpfc_els_rsp_rpl_acc(vport, cmdsize, cmdiocb, ndlp);
dea3101e
JB
6664
6665 return 0;
6666}
6667
e59058c4 6668/**
3621a710 6669 * lpfc_els_rcv_farp - Process an unsolicited farp request els command
e59058c4
JS
6670 * @vport: pointer to a virtual N_Port data structure.
6671 * @cmdiocb: pointer to lpfc command iocb data structure.
6672 * @ndlp: pointer to a node-list data structure.
6673 *
6674 * This routine processes Fibre Channel Address Resolution Protocol
6675 * (FARP) Request IOCB received as an ELS unsolicited event. Currently,
6676 * the lpfc driver only supports matching on WWPN or WWNN for FARP. As such,
6677 * FARP_MATCH_PORT flag and FARP_MATCH_NODE flag are checked against the
6678 * Match Flag in the FARP request IOCB: if FARP_MATCH_PORT flag is set, the
6679 * remote PortName is compared against the FC PortName stored in the @vport
6680 * data structure; if FARP_MATCH_NODE flag is set, the remote NodeName is
6681 * compared against the FC NodeName stored in the @vport data structure.
6682 * If any of these matches and the FARP_REQUEST_FARPR flag is set in the
6683 * FARP request IOCB Response Flag, the lpfc_issue_els_farpr() routine is
6684 * invoked to send out FARP Response to the remote node. Before sending the
6685 * FARP Response, however, the FARP_REQUEST_PLOGI flag is check in the FARP
6686 * request IOCB Response Flag and, if it is set, the lpfc_issue_els_plogi()
6687 * routine is invoked to log into the remote port first.
6688 *
6689 * Return code
6690 * 0 - Either the FARP Match Mode not supported or successfully processed
6691 **/
dea3101e 6692static int
2e0fef85
JS
6693lpfc_els_rcv_farp(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
6694 struct lpfc_nodelist *ndlp)
dea3101e
JB
6695{
6696 struct lpfc_dmabuf *pcmd;
6697 uint32_t *lp;
6698 IOCB_t *icmd;
6699 FARP *fp;
6700 uint32_t cmd, cnt, did;
6701
6702 icmd = &cmdiocb->iocb;
6703 did = icmd->un.elsreq64.remoteID;
6704 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
6705 lp = (uint32_t *) pcmd->virt;
6706
6707 cmd = *lp++;
6708 fp = (FARP *) lp;
dea3101e 6709 /* FARP-REQ received from DID <did> */
e8b62011
JS
6710 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
6711 "0601 FARP-REQ received from DID x%x\n", did);
dea3101e
JB
6712 /* We will only support match on WWPN or WWNN */
6713 if (fp->Mflags & ~(FARP_MATCH_NODE | FARP_MATCH_PORT)) {
c9f8735b 6714 return 0;
dea3101e
JB
6715 }
6716
6717 cnt = 0;
6718 /* If this FARP command is searching for my portname */
6719 if (fp->Mflags & FARP_MATCH_PORT) {
2e0fef85 6720 if (memcmp(&fp->RportName, &vport->fc_portname,
92d7f7b0 6721 sizeof(struct lpfc_name)) == 0)
dea3101e
JB
6722 cnt = 1;
6723 }
6724
6725 /* If this FARP command is searching for my nodename */
6726 if (fp->Mflags & FARP_MATCH_NODE) {
2e0fef85 6727 if (memcmp(&fp->RnodeName, &vport->fc_nodename,
92d7f7b0 6728 sizeof(struct lpfc_name)) == 0)
dea3101e
JB
6729 cnt = 1;
6730 }
6731
6732 if (cnt) {
6733 if ((ndlp->nlp_state == NLP_STE_UNMAPPED_NODE) ||
6734 (ndlp->nlp_state == NLP_STE_MAPPED_NODE)) {
6735 /* Log back into the node before sending the FARP. */
6736 if (fp->Rflags & FARP_REQUEST_PLOGI) {
5024ab17 6737 ndlp->nlp_prev_state = ndlp->nlp_state;
2e0fef85 6738 lpfc_nlp_set_state(vport, ndlp,
de0c5b32 6739 NLP_STE_PLOGI_ISSUE);
2e0fef85 6740 lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0);
dea3101e
JB
6741 }
6742
6743 /* Send a FARP response to that node */
2e0fef85
JS
6744 if (fp->Rflags & FARP_REQUEST_FARPR)
6745 lpfc_issue_els_farpr(vport, did, 0);
dea3101e
JB
6746 }
6747 }
c9f8735b 6748 return 0;
dea3101e
JB
6749}
6750
e59058c4 6751/**
3621a710 6752 * lpfc_els_rcv_farpr - Process an unsolicited farp response iocb
e59058c4
JS
6753 * @vport: pointer to a host virtual N_Port data structure.
6754 * @cmdiocb: pointer to lpfc command iocb data structure.
6755 * @ndlp: pointer to a node-list data structure.
6756 *
6757 * This routine processes Fibre Channel Address Resolution Protocol
6758 * Response (FARPR) IOCB received as an ELS unsolicited event. It simply
6759 * invokes the lpfc_els_rsp_acc() routine to the remote node to accept
6760 * the FARP response request.
6761 *
6762 * Return code
6763 * 0 - Successfully processed FARPR IOCB (currently always return 0)
6764 **/
dea3101e 6765static int
2e0fef85
JS
6766lpfc_els_rcv_farpr(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
6767 struct lpfc_nodelist *ndlp)
dea3101e
JB
6768{
6769 struct lpfc_dmabuf *pcmd;
6770 uint32_t *lp;
6771 IOCB_t *icmd;
6772 uint32_t cmd, did;
6773
6774 icmd = &cmdiocb->iocb;
6775 did = icmd->un.elsreq64.remoteID;
6776 pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
6777 lp = (uint32_t *) pcmd->virt;
6778
6779 cmd = *lp++;
6780 /* FARP-RSP received from DID <did> */
e8b62011
JS
6781 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
6782 "0600 FARP-RSP received from DID x%x\n", did);
dea3101e 6783 /* ACCEPT the Farp resp request */
51ef4c26 6784 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
dea3101e
JB
6785
6786 return 0;
6787}
6788
e59058c4 6789/**
3621a710 6790 * lpfc_els_rcv_fan - Process an unsolicited fan iocb command
e59058c4
JS
6791 * @vport: pointer to a host virtual N_Port data structure.
6792 * @cmdiocb: pointer to lpfc command iocb data structure.
6793 * @fan_ndlp: pointer to a node-list data structure.
6794 *
6795 * This routine processes a Fabric Address Notification (FAN) IOCB
6796 * command received as an ELS unsolicited event. The FAN ELS command will
6797 * only be processed on a physical port (i.e., the @vport represents the
6798 * physical port). The fabric NodeName and PortName from the FAN IOCB are
6799 * compared against those in the phba data structure. If any of those is
6800 * different, the lpfc_initial_flogi() routine is invoked to initialize
6801 * Fabric Login (FLOGI) to the fabric to start the discover over. Otherwise,
6802 * if both of those are identical, the lpfc_issue_fabric_reglogin() routine
6803 * is invoked to register login to the fabric.
6804 *
6805 * Return code
6806 * 0 - Successfully processed fan iocb (currently always return 0).
6807 **/
dea3101e 6808static int
2e0fef85
JS
6809lpfc_els_rcv_fan(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
6810 struct lpfc_nodelist *fan_ndlp)
dea3101e 6811{
0d2b6b83 6812 struct lpfc_hba *phba = vport->phba;
dea3101e 6813 uint32_t *lp;
5024ab17 6814 FAN *fp;
dea3101e 6815
0d2b6b83
JS
6816 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS, "0265 FAN received\n");
6817 lp = (uint32_t *)((struct lpfc_dmabuf *)cmdiocb->context2)->virt;
6818 fp = (FAN *) ++lp;
5024ab17 6819 /* FAN received; Fan does not have a reply sequence */
0d2b6b83
JS
6820 if ((vport == phba->pport) &&
6821 (vport->port_state == LPFC_LOCAL_CFG_LINK)) {
5024ab17 6822 if ((memcmp(&phba->fc_fabparam.nodeName, &fp->FnodeName,
0d2b6b83 6823 sizeof(struct lpfc_name))) ||
5024ab17 6824 (memcmp(&phba->fc_fabparam.portName, &fp->FportName,
0d2b6b83
JS
6825 sizeof(struct lpfc_name)))) {
6826 /* This port has switched fabrics. FLOGI is required */
76a95d75 6827 lpfc_issue_init_vfi(vport);
0d2b6b83
JS
6828 } else {
6829 /* FAN verified - skip FLOGI */
6830 vport->fc_myDID = vport->fc_prevDID;
6fb120a7
JS
6831 if (phba->sli_rev < LPFC_SLI_REV4)
6832 lpfc_issue_fabric_reglogin(vport);
1b51197d
JS
6833 else {
6834 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
6835 "3138 Need register VFI: (x%x/%x)\n",
6836 vport->fc_prevDID, vport->fc_myDID);
6fb120a7 6837 lpfc_issue_reg_vfi(vport);
1b51197d 6838 }
5024ab17 6839 }
dea3101e 6840 }
c9f8735b 6841 return 0;
dea3101e
JB
6842}
6843
e59058c4 6844/**
3621a710 6845 * lpfc_els_timeout - Handler funciton to the els timer
e59058c4
JS
6846 * @ptr: holder for the timer function associated data.
6847 *
6848 * This routine is invoked by the ELS timer after timeout. It posts the ELS
6849 * timer timeout event by setting the WORKER_ELS_TMO bit to the work port
6850 * event bitmap and then invokes the lpfc_worker_wake_up() routine to wake
6851 * up the worker thread. It is for the worker thread to invoke the routine
6852 * lpfc_els_timeout_handler() to work on the posted event WORKER_ELS_TMO.
6853 **/
dea3101e
JB
6854void
6855lpfc_els_timeout(unsigned long ptr)
6856{
2e0fef85
JS
6857 struct lpfc_vport *vport = (struct lpfc_vport *) ptr;
6858 struct lpfc_hba *phba = vport->phba;
5e9d9b82 6859 uint32_t tmo_posted;
dea3101e
JB
6860 unsigned long iflag;
6861
2e0fef85 6862 spin_lock_irqsave(&vport->work_port_lock, iflag);
5e9d9b82 6863 tmo_posted = vport->work_port_events & WORKER_ELS_TMO;
06918ac5 6864 if ((!tmo_posted) && (!(vport->load_flag & FC_UNLOADING)))
2e0fef85 6865 vport->work_port_events |= WORKER_ELS_TMO;
5e9d9b82 6866 spin_unlock_irqrestore(&vport->work_port_lock, iflag);
92d7f7b0 6867
06918ac5 6868 if ((!tmo_posted) && (!(vport->load_flag & FC_UNLOADING)))
5e9d9b82 6869 lpfc_worker_wake_up(phba);
dea3101e
JB
6870 return;
6871}
6872
2a9bf3d0 6873
e59058c4 6874/**
3621a710 6875 * lpfc_els_timeout_handler - Process an els timeout event
e59058c4
JS
6876 * @vport: pointer to a virtual N_Port data structure.
6877 *
6878 * This routine is the actual handler function that processes an ELS timeout
6879 * event. It walks the ELS ring to get and abort all the IOCBs (except the
6880 * ABORT/CLOSE/FARP/FARPR/FDISC), which are associated with the @vport by
6881 * invoking the lpfc_sli_issue_abort_iotag() routine.
6882 **/
dea3101e 6883void
2e0fef85 6884lpfc_els_timeout_handler(struct lpfc_vport *vport)
dea3101e 6885{
2e0fef85 6886 struct lpfc_hba *phba = vport->phba;
dea3101e
JB
6887 struct lpfc_sli_ring *pring;
6888 struct lpfc_iocbq *tmp_iocb, *piocb;
6889 IOCB_t *cmd = NULL;
6890 struct lpfc_dmabuf *pcmd;
2e0fef85 6891 uint32_t els_command = 0;
dea3101e 6892 uint32_t timeout;
2e0fef85 6893 uint32_t remote_ID = 0xffffffff;
2a9bf3d0
JS
6894 LIST_HEAD(abort_list);
6895
dea3101e 6896
dea3101e
JB
6897 timeout = (uint32_t)(phba->fc_ratov << 1);
6898
6899 pring = &phba->sli.ring[LPFC_ELS_RING];
06918ac5
JS
6900 if ((phba->pport->load_flag & FC_UNLOADING))
6901 return;
2a9bf3d0 6902 spin_lock_irq(&phba->hbalock);
0976e1a6
JS
6903 if (phba->sli_rev == LPFC_SLI_REV4)
6904 spin_lock(&pring->ring_lock);
2a9bf3d0 6905
06918ac5
JS
6906 if ((phba->pport->load_flag & FC_UNLOADING)) {
6907 if (phba->sli_rev == LPFC_SLI_REV4)
6908 spin_unlock(&pring->ring_lock);
6909 spin_unlock_irq(&phba->hbalock);
6910 return;
6911 }
6912
0976e1a6 6913 list_for_each_entry_safe(piocb, tmp_iocb, &pring->txcmplq, list) {
dea3101e
JB
6914 cmd = &piocb->iocb;
6915
2e0fef85
JS
6916 if ((piocb->iocb_flag & LPFC_IO_LIBDFC) != 0 ||
6917 piocb->iocb.ulpCommand == CMD_ABORT_XRI_CN ||
6918 piocb->iocb.ulpCommand == CMD_CLOSE_XRI_CN)
dea3101e 6919 continue;
2e0fef85
JS
6920
6921 if (piocb->vport != vport)
6922 continue;
6923
dea3101e 6924 pcmd = (struct lpfc_dmabuf *) piocb->context2;
2e0fef85
JS
6925 if (pcmd)
6926 els_command = *(uint32_t *) (pcmd->virt);
dea3101e 6927
92d7f7b0
JS
6928 if (els_command == ELS_CMD_FARP ||
6929 els_command == ELS_CMD_FARPR ||
6930 els_command == ELS_CMD_FDISC)
6931 continue;
6932
dea3101e 6933 if (piocb->drvrTimeout > 0) {
92d7f7b0 6934 if (piocb->drvrTimeout >= timeout)
dea3101e 6935 piocb->drvrTimeout -= timeout;
92d7f7b0 6936 else
dea3101e 6937 piocb->drvrTimeout = 0;
dea3101e
JB
6938 continue;
6939 }
6940
2e0fef85
JS
6941 remote_ID = 0xffffffff;
6942 if (cmd->ulpCommand != CMD_GEN_REQUEST64_CR)
dea3101e 6943 remote_ID = cmd->un.elsreq64.remoteID;
2e0fef85
JS
6944 else {
6945 struct lpfc_nodelist *ndlp;
6946 ndlp = __lpfc_findnode_rpi(vport, cmd->ulpContext);
58da1ffb 6947 if (ndlp && NLP_CHK_NODE_ACT(ndlp))
2e0fef85 6948 remote_ID = ndlp->nlp_DID;
dea3101e 6949 }
2a9bf3d0
JS
6950 list_add_tail(&piocb->dlist, &abort_list);
6951 }
0976e1a6
JS
6952 if (phba->sli_rev == LPFC_SLI_REV4)
6953 spin_unlock(&pring->ring_lock);
2a9bf3d0
JS
6954 spin_unlock_irq(&phba->hbalock);
6955
6956 list_for_each_entry_safe(piocb, tmp_iocb, &abort_list, dlist) {
15026c9e 6957 cmd = &piocb->iocb;
e8b62011 6958 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
2a9bf3d0
JS
6959 "0127 ELS timeout Data: x%x x%x x%x "
6960 "x%x\n", els_command,
6961 remote_ID, cmd->ulpCommand, cmd->ulpIoTag);
6962 spin_lock_irq(&phba->hbalock);
6963 list_del_init(&piocb->dlist);
07951076 6964 lpfc_sli_issue_abort_iotag(phba, pring, piocb);
2a9bf3d0 6965 spin_unlock_irq(&phba->hbalock);
dea3101e 6966 }
5a0e326d 6967
0e9bb8d7 6968 if (!list_empty(&phba->sli.ring[LPFC_ELS_RING].txcmplq))
06918ac5
JS
6969 if (!(phba->pport->load_flag & FC_UNLOADING))
6970 mod_timer(&vport->els_tmofunc,
6971 jiffies + msecs_to_jiffies(1000 * timeout));
dea3101e
JB
6972}
6973
e59058c4 6974/**
3621a710 6975 * lpfc_els_flush_cmd - Clean up the outstanding els commands to a vport
e59058c4
JS
6976 * @vport: pointer to a host virtual N_Port data structure.
6977 *
6978 * This routine is used to clean up all the outstanding ELS commands on a
6979 * @vport. It first aborts the @vport by invoking lpfc_fabric_abort_vport()
6980 * routine. After that, it walks the ELS transmit queue to remove all the
6981 * IOCBs with the @vport other than the QUE_RING and ABORT/CLOSE IOCBs. For
6982 * the IOCBs with a non-NULL completion callback function, the callback
6983 * function will be invoked with the status set to IOSTAT_LOCAL_REJECT and
6984 * un.ulpWord[4] set to IOERR_SLI_ABORTED. For IOCBs with a NULL completion
6985 * callback function, the IOCB will simply be released. Finally, it walks
6986 * the ELS transmit completion queue to issue an abort IOCB to any transmit
6987 * completion queue IOCB that is associated with the @vport and is not
6988 * an IOCB from libdfc (i.e., the management plane IOCBs that are not
6989 * part of the discovery state machine) out to HBA by invoking the
6990 * lpfc_sli_issue_abort_iotag() routine. Note that this function issues the
6991 * abort IOCB to any transmit completion queueed IOCB, it does not guarantee
6992 * the IOCBs are aborted when this function returns.
6993 **/
dea3101e 6994void
2e0fef85 6995lpfc_els_flush_cmd(struct lpfc_vport *vport)
dea3101e 6996{
0976e1a6 6997 LIST_HEAD(abort_list);
2e0fef85 6998 struct lpfc_hba *phba = vport->phba;
329f9bc7 6999 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
dea3101e
JB
7000 struct lpfc_iocbq *tmp_iocb, *piocb;
7001 IOCB_t *cmd = NULL;
92d7f7b0
JS
7002
7003 lpfc_fabric_abort_vport(vport);
0976e1a6
JS
7004 /*
7005 * For SLI3, only the hbalock is required. But SLI4 needs to coordinate
7006 * with the ring insert operation. Because lpfc_sli_issue_abort_iotag
7007 * ultimately grabs the ring_lock, the driver must splice the list into
7008 * a working list and release the locks before calling the abort.
7009 */
7010 spin_lock_irq(&phba->hbalock);
7011 if (phba->sli_rev == LPFC_SLI_REV4)
7012 spin_lock(&pring->ring_lock);
7013
7014 list_for_each_entry_safe(piocb, tmp_iocb, &pring->txcmplq, list) {
7015 if (piocb->iocb_flag & LPFC_IO_LIBDFC)
7016 continue;
7017
7018 if (piocb->vport != vport)
7019 continue;
7020 list_add_tail(&piocb->dlist, &abort_list);
7021 }
7022 if (phba->sli_rev == LPFC_SLI_REV4)
7023 spin_unlock(&pring->ring_lock);
7024 spin_unlock_irq(&phba->hbalock);
7025 /* Abort each iocb on the aborted list and remove the dlist links. */
7026 list_for_each_entry_safe(piocb, tmp_iocb, &abort_list, dlist) {
7027 spin_lock_irq(&phba->hbalock);
7028 list_del_init(&piocb->dlist);
7029 lpfc_sli_issue_abort_iotag(phba, pring, piocb);
7030 spin_unlock_irq(&phba->hbalock);
7031 }
7032 if (!list_empty(&abort_list))
7033 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
7034 "3387 abort list for txq not empty\n");
7035 INIT_LIST_HEAD(&abort_list);
dea3101e 7036
2e0fef85 7037 spin_lock_irq(&phba->hbalock);
0976e1a6
JS
7038 if (phba->sli_rev == LPFC_SLI_REV4)
7039 spin_lock(&pring->ring_lock);
7040
dea3101e
JB
7041 list_for_each_entry_safe(piocb, tmp_iocb, &pring->txq, list) {
7042 cmd = &piocb->iocb;
7043
7044 if (piocb->iocb_flag & LPFC_IO_LIBDFC) {
7045 continue;
7046 }
7047
7048 /* Do not flush out the QUE_RING and ABORT/CLOSE iocbs */
329f9bc7
JS
7049 if (cmd->ulpCommand == CMD_QUE_RING_BUF_CN ||
7050 cmd->ulpCommand == CMD_QUE_RING_BUF64_CN ||
7051 cmd->ulpCommand == CMD_CLOSE_XRI_CN ||
7052 cmd->ulpCommand == CMD_ABORT_XRI_CN)
dea3101e 7053 continue;
dea3101e 7054
2e0fef85
JS
7055 if (piocb->vport != vport)
7056 continue;
7057
0976e1a6
JS
7058 list_del_init(&piocb->list);
7059 list_add_tail(&piocb->list, &abort_list);
dea3101e 7060 }
0976e1a6
JS
7061 if (phba->sli_rev == LPFC_SLI_REV4)
7062 spin_unlock(&pring->ring_lock);
2e0fef85 7063 spin_unlock_irq(&phba->hbalock);
2534ba75 7064
a257bf90 7065 /* Cancell all the IOCBs from the completions list */
0976e1a6
JS
7066 lpfc_sli_cancel_iocbs(phba, &abort_list,
7067 IOSTAT_LOCAL_REJECT, IOERR_SLI_ABORTED);
2534ba75 7068
dea3101e
JB
7069 return;
7070}
7071
e59058c4 7072/**
3621a710 7073 * lpfc_els_flush_all_cmd - Clean up all the outstanding els commands to a HBA
e59058c4
JS
7074 * @phba: pointer to lpfc hba data structure.
7075 *
7076 * This routine is used to clean up all the outstanding ELS commands on a
7077 * @phba. It first aborts the @phba by invoking the lpfc_fabric_abort_hba()
7078 * routine. After that, it walks the ELS transmit queue to remove all the
7079 * IOCBs to the @phba other than the QUE_RING and ABORT/CLOSE IOCBs. For
7080 * the IOCBs with the completion callback function associated, the callback
7081 * function will be invoked with the status set to IOSTAT_LOCAL_REJECT and
7082 * un.ulpWord[4] set to IOERR_SLI_ABORTED. For IOCBs without the completion
7083 * callback function associated, the IOCB will simply be released. Finally,
7084 * it walks the ELS transmit completion queue to issue an abort IOCB to any
7085 * transmit completion queue IOCB that is not an IOCB from libdfc (i.e., the
7086 * management plane IOCBs that are not part of the discovery state machine)
7087 * out to HBA by invoking the lpfc_sli_issue_abort_iotag() routine.
7088 **/
549e55cd
JS
7089void
7090lpfc_els_flush_all_cmd(struct lpfc_hba *phba)
7091{
0976e1a6
JS
7092 struct lpfc_vport *vport;
7093 list_for_each_entry(vport, &phba->port_list, listentry)
7094 lpfc_els_flush_cmd(vport);
a257bf90 7095
549e55cd
JS
7096 return;
7097}
7098
ea2151b4 7099/**
3621a710 7100 * lpfc_send_els_failure_event - Posts an ELS command failure event
ea2151b4
JS
7101 * @phba: Pointer to hba context object.
7102 * @cmdiocbp: Pointer to command iocb which reported error.
7103 * @rspiocbp: Pointer to response iocb which reported error.
7104 *
7105 * This function sends an event when there is an ELS command
7106 * failure.
7107 **/
7108void
7109lpfc_send_els_failure_event(struct lpfc_hba *phba,
7110 struct lpfc_iocbq *cmdiocbp,
7111 struct lpfc_iocbq *rspiocbp)
7112{
7113 struct lpfc_vport *vport = cmdiocbp->vport;
7114 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
7115 struct lpfc_lsrjt_event lsrjt_event;
7116 struct lpfc_fabric_event_header fabric_event;
7117 struct ls_rjt stat;
7118 struct lpfc_nodelist *ndlp;
7119 uint32_t *pcmd;
7120
7121 ndlp = cmdiocbp->context1;
7122 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp))
7123 return;
7124
7125 if (rspiocbp->iocb.ulpStatus == IOSTAT_LS_RJT) {
7126 lsrjt_event.header.event_type = FC_REG_ELS_EVENT;
7127 lsrjt_event.header.subcategory = LPFC_EVENT_LSRJT_RCV;
7128 memcpy(lsrjt_event.header.wwpn, &ndlp->nlp_portname,
7129 sizeof(struct lpfc_name));
7130 memcpy(lsrjt_event.header.wwnn, &ndlp->nlp_nodename,
7131 sizeof(struct lpfc_name));
7132 pcmd = (uint32_t *) (((struct lpfc_dmabuf *)
7133 cmdiocbp->context2)->virt);
49198b37 7134 lsrjt_event.command = (pcmd != NULL) ? *pcmd : 0;
ea2151b4
JS
7135 stat.un.lsRjtError = be32_to_cpu(rspiocbp->iocb.un.ulpWord[4]);
7136 lsrjt_event.reason_code = stat.un.b.lsRjtRsnCode;
7137 lsrjt_event.explanation = stat.un.b.lsRjtRsnCodeExp;
7138 fc_host_post_vendor_event(shost,
7139 fc_get_event_number(),
7140 sizeof(lsrjt_event),
7141 (char *)&lsrjt_event,
ddcc50f0 7142 LPFC_NL_VENDOR_ID);
ea2151b4
JS
7143 return;
7144 }
7145 if ((rspiocbp->iocb.ulpStatus == IOSTAT_NPORT_BSY) ||
7146 (rspiocbp->iocb.ulpStatus == IOSTAT_FABRIC_BSY)) {
7147 fabric_event.event_type = FC_REG_FABRIC_EVENT;
7148 if (rspiocbp->iocb.ulpStatus == IOSTAT_NPORT_BSY)
7149 fabric_event.subcategory = LPFC_EVENT_PORT_BUSY;
7150 else
7151 fabric_event.subcategory = LPFC_EVENT_FABRIC_BUSY;
7152 memcpy(fabric_event.wwpn, &ndlp->nlp_portname,
7153 sizeof(struct lpfc_name));
7154 memcpy(fabric_event.wwnn, &ndlp->nlp_nodename,
7155 sizeof(struct lpfc_name));
7156 fc_host_post_vendor_event(shost,
7157 fc_get_event_number(),
7158 sizeof(fabric_event),
7159 (char *)&fabric_event,
ddcc50f0 7160 LPFC_NL_VENDOR_ID);
ea2151b4
JS
7161 return;
7162 }
7163
7164}
7165
7166/**
3621a710 7167 * lpfc_send_els_event - Posts unsolicited els event
ea2151b4
JS
7168 * @vport: Pointer to vport object.
7169 * @ndlp: Pointer FC node object.
7170 * @cmd: ELS command code.
7171 *
7172 * This function posts an event when there is an incoming
7173 * unsolicited ELS command.
7174 **/
7175static void
7176lpfc_send_els_event(struct lpfc_vport *vport,
7177 struct lpfc_nodelist *ndlp,
ddcc50f0 7178 uint32_t *payload)
ea2151b4 7179{
ddcc50f0
JS
7180 struct lpfc_els_event_header *els_data = NULL;
7181 struct lpfc_logo_event *logo_data = NULL;
ea2151b4
JS
7182 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
7183
ddcc50f0
JS
7184 if (*payload == ELS_CMD_LOGO) {
7185 logo_data = kmalloc(sizeof(struct lpfc_logo_event), GFP_KERNEL);
7186 if (!logo_data) {
7187 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
7188 "0148 Failed to allocate memory "
7189 "for LOGO event\n");
7190 return;
7191 }
7192 els_data = &logo_data->header;
7193 } else {
7194 els_data = kmalloc(sizeof(struct lpfc_els_event_header),
7195 GFP_KERNEL);
7196 if (!els_data) {
7197 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
7198 "0149 Failed to allocate memory "
7199 "for ELS event\n");
7200 return;
7201 }
7202 }
7203 els_data->event_type = FC_REG_ELS_EVENT;
7204 switch (*payload) {
ea2151b4 7205 case ELS_CMD_PLOGI:
ddcc50f0 7206 els_data->subcategory = LPFC_EVENT_PLOGI_RCV;
ea2151b4
JS
7207 break;
7208 case ELS_CMD_PRLO:
ddcc50f0 7209 els_data->subcategory = LPFC_EVENT_PRLO_RCV;
ea2151b4
JS
7210 break;
7211 case ELS_CMD_ADISC:
ddcc50f0
JS
7212 els_data->subcategory = LPFC_EVENT_ADISC_RCV;
7213 break;
7214 case ELS_CMD_LOGO:
7215 els_data->subcategory = LPFC_EVENT_LOGO_RCV;
7216 /* Copy the WWPN in the LOGO payload */
7217 memcpy(logo_data->logo_wwpn, &payload[2],
7218 sizeof(struct lpfc_name));
ea2151b4
JS
7219 break;
7220 default:
e916141c 7221 kfree(els_data);
ea2151b4
JS
7222 return;
7223 }
ddcc50f0
JS
7224 memcpy(els_data->wwpn, &ndlp->nlp_portname, sizeof(struct lpfc_name));
7225 memcpy(els_data->wwnn, &ndlp->nlp_nodename, sizeof(struct lpfc_name));
7226 if (*payload == ELS_CMD_LOGO) {
7227 fc_host_post_vendor_event(shost,
7228 fc_get_event_number(),
7229 sizeof(struct lpfc_logo_event),
7230 (char *)logo_data,
7231 LPFC_NL_VENDOR_ID);
7232 kfree(logo_data);
7233 } else {
7234 fc_host_post_vendor_event(shost,
7235 fc_get_event_number(),
7236 sizeof(struct lpfc_els_event_header),
7237 (char *)els_data,
7238 LPFC_NL_VENDOR_ID);
7239 kfree(els_data);
7240 }
ea2151b4
JS
7241
7242 return;
7243}
7244
7245
e59058c4 7246/**
3621a710 7247 * lpfc_els_unsol_buffer - Process an unsolicited event data buffer
e59058c4
JS
7248 * @phba: pointer to lpfc hba data structure.
7249 * @pring: pointer to a SLI ring.
7250 * @vport: pointer to a host virtual N_Port data structure.
7251 * @elsiocb: pointer to lpfc els command iocb data structure.
7252 *
7253 * This routine is used for processing the IOCB associated with a unsolicited
7254 * event. It first determines whether there is an existing ndlp that matches
7255 * the DID from the unsolicited IOCB. If not, it will create a new one with
7256 * the DID from the unsolicited IOCB. The ELS command from the unsolicited
7257 * IOCB is then used to invoke the proper routine and to set up proper state
7258 * of the discovery state machine.
7259 **/
ed957684
JS
7260static void
7261lpfc_els_unsol_buffer(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
92d7f7b0 7262 struct lpfc_vport *vport, struct lpfc_iocbq *elsiocb)
dea3101e 7263{
87af33fe 7264 struct Scsi_Host *shost;
dea3101e 7265 struct lpfc_nodelist *ndlp;
dea3101e 7266 struct ls_rjt stat;
92d7f7b0 7267 uint32_t *payload;
303f2f9c
JS
7268 uint32_t cmd, did, newnode;
7269 uint8_t rjt_exp, rjt_err = 0;
ed957684 7270 IOCB_t *icmd = &elsiocb->iocb;
dea3101e 7271
e47c9093 7272 if (!vport || !(elsiocb->context2))
dea3101e 7273 goto dropit;
2e0fef85 7274
dea3101e 7275 newnode = 0;
92d7f7b0
JS
7276 payload = ((struct lpfc_dmabuf *)elsiocb->context2)->virt;
7277 cmd = *payload;
ed957684 7278 if ((phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) == 0)
495a714c 7279 lpfc_post_buffer(phba, pring, 1);
dea3101e 7280
858c9f6c
JS
7281 did = icmd->un.rcvels.remoteID;
7282 if (icmd->ulpStatus) {
7283 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
7284 "RCV Unsol ELS: status:x%x/x%x did:x%x",
7285 icmd->ulpStatus, icmd->un.ulpWord[4], did);
dea3101e 7286 goto dropit;
858c9f6c 7287 }
dea3101e
JB
7288
7289 /* Check to see if link went down during discovery */
ed957684 7290 if (lpfc_els_chk_latt(vport))
dea3101e 7291 goto dropit;
dea3101e 7292
c868595d 7293 /* Ignore traffic received during vport shutdown. */
92d7f7b0
JS
7294 if (vport->load_flag & FC_UNLOADING)
7295 goto dropit;
7296
92494144
JS
7297 /* If NPort discovery is delayed drop incoming ELS */
7298 if ((vport->fc_flag & FC_DISC_DELAYED) &&
7299 (cmd != ELS_CMD_PLOGI))
7300 goto dropit;
7301
2e0fef85 7302 ndlp = lpfc_findnode_did(vport, did);
c9f8735b 7303 if (!ndlp) {
dea3101e 7304 /* Cannot find existing Fabric ndlp, so allocate a new one */
c9f8735b 7305 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
ed957684 7306 if (!ndlp)
dea3101e 7307 goto dropit;
dea3101e 7308
2e0fef85 7309 lpfc_nlp_init(vport, ndlp, did);
98c9ea5c 7310 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
dea3101e 7311 newnode = 1;
e47c9093 7312 if ((did & Fabric_DID_MASK) == Fabric_DID_MASK)
dea3101e 7313 ndlp->nlp_type |= NLP_FABRIC;
58da1ffb
JS
7314 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
7315 ndlp = lpfc_enable_node(vport, ndlp,
7316 NLP_STE_UNUSED_NODE);
7317 if (!ndlp)
7318 goto dropit;
7319 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
7320 newnode = 1;
7321 if ((did & Fabric_DID_MASK) == Fabric_DID_MASK)
7322 ndlp->nlp_type |= NLP_FABRIC;
7323 } else if (ndlp->nlp_state == NLP_STE_UNUSED_NODE) {
7324 /* This is similar to the new node path */
7325 ndlp = lpfc_nlp_get(ndlp);
7326 if (!ndlp)
7327 goto dropit;
7328 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
7329 newnode = 1;
87af33fe 7330 }
dea3101e
JB
7331
7332 phba->fc_stat.elsRcvFrame++;
e47c9093 7333
12838e74
JS
7334 /*
7335 * Do not process any unsolicited ELS commands
7336 * if the ndlp is in DEV_LOSS
7337 */
466e840b
JS
7338 shost = lpfc_shost_from_vport(vport);
7339 spin_lock_irq(shost->host_lock);
7340 if (ndlp->nlp_flag & NLP_IN_DEV_LOSS) {
7341 spin_unlock_irq(shost->host_lock);
12838e74 7342 goto dropit;
466e840b
JS
7343 }
7344 spin_unlock_irq(shost->host_lock);
12838e74 7345
329f9bc7 7346 elsiocb->context1 = lpfc_nlp_get(ndlp);
2e0fef85 7347 elsiocb->vport = vport;
dea3101e
JB
7348
7349 if ((cmd & ELS_CMD_MASK) == ELS_CMD_RSCN) {
7350 cmd &= ELS_CMD_MASK;
7351 }
7352 /* ELS command <elsCmd> received from NPORT <did> */
e8b62011
JS
7353 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
7354 "0112 ELS command x%x received from NPORT x%x "
e74c03c8
JS
7355 "Data: x%x x%x x%x x%x\n",
7356 cmd, did, vport->port_state, vport->fc_flag,
7357 vport->fc_myDID, vport->fc_prevDID);
eec3d312
JS
7358
7359 /* reject till our FLOGI completes */
7360 if ((vport->port_state < LPFC_FABRIC_CFG_LINK) &&
d6de08cc 7361 (cmd != ELS_CMD_FLOGI)) {
eec3d312
JS
7362 rjt_err = LSRJT_UNABLE_TPC;
7363 rjt_exp = LSEXP_NOTHING_MORE;
7364 goto lsrjt;
7365 }
7366
dea3101e
JB
7367 switch (cmd) {
7368 case ELS_CMD_PLOGI:
858c9f6c
JS
7369 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
7370 "RCV PLOGI: did:x%x/ste:x%x flg:x%x",
7371 did, vport->port_state, ndlp->nlp_flag);
7372
dea3101e 7373 phba->fc_stat.elsRcvPLOGI++;
858c9f6c 7374 ndlp = lpfc_plogi_confirm_nport(phba, payload, ndlp);
e74c03c8
JS
7375 if (phba->sli_rev == LPFC_SLI_REV4 &&
7376 (phba->pport->fc_flag & FC_PT2PT)) {
7377 vport->fc_prevDID = vport->fc_myDID;
7378 /* Our DID needs to be updated before registering
7379 * the vfi. This is done in lpfc_rcv_plogi but
7380 * that is called after the reg_vfi.
7381 */
7382 vport->fc_myDID = elsiocb->iocb.un.rcvels.parmRo;
7383 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
7384 "3312 Remote port assigned DID x%x "
7385 "%x\n", vport->fc_myDID,
7386 vport->fc_prevDID);
7387 }
858c9f6c 7388
ddcc50f0 7389 lpfc_send_els_event(vport, ndlp, payload);
92494144
JS
7390
7391 /* If Nport discovery is delayed, reject PLOGIs */
7392 if (vport->fc_flag & FC_DISC_DELAYED) {
7393 rjt_err = LSRJT_UNABLE_TPC;
303f2f9c 7394 rjt_exp = LSEXP_NOTHING_MORE;
92494144
JS
7395 break;
7396 }
d6de08cc 7397
858c9f6c 7398 if (vport->port_state < LPFC_DISC_AUTH) {
1b32f6aa
JS
7399 if (!(phba->pport->fc_flag & FC_PT2PT) ||
7400 (phba->pport->fc_flag & FC_PT2PT_PLOGI)) {
7401 rjt_err = LSRJT_UNABLE_TPC;
303f2f9c 7402 rjt_exp = LSEXP_NOTHING_MORE;
1b32f6aa
JS
7403 break;
7404 }
dea3101e 7405 }
87af33fe 7406
87af33fe
JS
7407 spin_lock_irq(shost->host_lock);
7408 ndlp->nlp_flag &= ~NLP_TARGET_REMOVE;
7409 spin_unlock_irq(shost->host_lock);
7410
2e0fef85
JS
7411 lpfc_disc_state_machine(vport, ndlp, elsiocb,
7412 NLP_EVT_RCV_PLOGI);
858c9f6c 7413
dea3101e
JB
7414 break;
7415 case ELS_CMD_FLOGI:
858c9f6c
JS
7416 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
7417 "RCV FLOGI: did:x%x/ste:x%x flg:x%x",
7418 did, vport->port_state, ndlp->nlp_flag);
7419
dea3101e 7420 phba->fc_stat.elsRcvFLOGI++;
51ef4c26 7421 lpfc_els_rcv_flogi(vport, elsiocb, ndlp);
87af33fe 7422 if (newnode)
98c9ea5c 7423 lpfc_nlp_put(ndlp);
dea3101e
JB
7424 break;
7425 case ELS_CMD_LOGO:
858c9f6c
JS
7426 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
7427 "RCV LOGO: did:x%x/ste:x%x flg:x%x",
7428 did, vport->port_state, ndlp->nlp_flag);
7429
dea3101e 7430 phba->fc_stat.elsRcvLOGO++;
ddcc50f0 7431 lpfc_send_els_event(vport, ndlp, payload);
2e0fef85 7432 if (vport->port_state < LPFC_DISC_AUTH) {
858c9f6c 7433 rjt_err = LSRJT_UNABLE_TPC;
303f2f9c 7434 rjt_exp = LSEXP_NOTHING_MORE;
dea3101e
JB
7435 break;
7436 }
2e0fef85 7437 lpfc_disc_state_machine(vport, ndlp, elsiocb, NLP_EVT_RCV_LOGO);
dea3101e
JB
7438 break;
7439 case ELS_CMD_PRLO:
858c9f6c
JS
7440 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
7441 "RCV PRLO: did:x%x/ste:x%x flg:x%x",
7442 did, vport->port_state, ndlp->nlp_flag);
7443
dea3101e 7444 phba->fc_stat.elsRcvPRLO++;
ddcc50f0 7445 lpfc_send_els_event(vport, ndlp, payload);
2e0fef85 7446 if (vport->port_state < LPFC_DISC_AUTH) {
858c9f6c 7447 rjt_err = LSRJT_UNABLE_TPC;
303f2f9c 7448 rjt_exp = LSEXP_NOTHING_MORE;
dea3101e
JB
7449 break;
7450 }
2e0fef85 7451 lpfc_disc_state_machine(vport, ndlp, elsiocb, NLP_EVT_RCV_PRLO);
dea3101e 7452 break;
8b017a30
JS
7453 case ELS_CMD_LCB:
7454 phba->fc_stat.elsRcvLCB++;
7455 lpfc_els_rcv_lcb(vport, elsiocb, ndlp);
7456 break;
86478875
JS
7457 case ELS_CMD_RDP:
7458 phba->fc_stat.elsRcvRDP++;
7459 lpfc_els_rcv_rdp(vport, elsiocb, ndlp);
7460 break;
dea3101e
JB
7461 case ELS_CMD_RSCN:
7462 phba->fc_stat.elsRcvRSCN++;
51ef4c26 7463 lpfc_els_rcv_rscn(vport, elsiocb, ndlp);
87af33fe 7464 if (newnode)
98c9ea5c 7465 lpfc_nlp_put(ndlp);
dea3101e
JB
7466 break;
7467 case ELS_CMD_ADISC:
858c9f6c
JS
7468 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
7469 "RCV ADISC: did:x%x/ste:x%x flg:x%x",
7470 did, vport->port_state, ndlp->nlp_flag);
7471
ddcc50f0 7472 lpfc_send_els_event(vport, ndlp, payload);
dea3101e 7473 phba->fc_stat.elsRcvADISC++;
2e0fef85 7474 if (vport->port_state < LPFC_DISC_AUTH) {
858c9f6c 7475 rjt_err = LSRJT_UNABLE_TPC;
303f2f9c 7476 rjt_exp = LSEXP_NOTHING_MORE;
dea3101e
JB
7477 break;
7478 }
2e0fef85
JS
7479 lpfc_disc_state_machine(vport, ndlp, elsiocb,
7480 NLP_EVT_RCV_ADISC);
dea3101e
JB
7481 break;
7482 case ELS_CMD_PDISC:
858c9f6c
JS
7483 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
7484 "RCV PDISC: did:x%x/ste:x%x flg:x%x",
7485 did, vport->port_state, ndlp->nlp_flag);
7486
dea3101e 7487 phba->fc_stat.elsRcvPDISC++;
2e0fef85 7488 if (vport->port_state < LPFC_DISC_AUTH) {
858c9f6c 7489 rjt_err = LSRJT_UNABLE_TPC;
303f2f9c 7490 rjt_exp = LSEXP_NOTHING_MORE;
dea3101e
JB
7491 break;
7492 }
2e0fef85
JS
7493 lpfc_disc_state_machine(vport, ndlp, elsiocb,
7494 NLP_EVT_RCV_PDISC);
dea3101e
JB
7495 break;
7496 case ELS_CMD_FARPR:
858c9f6c
JS
7497 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
7498 "RCV FARPR: did:x%x/ste:x%x flg:x%x",
7499 did, vport->port_state, ndlp->nlp_flag);
7500
dea3101e 7501 phba->fc_stat.elsRcvFARPR++;
2e0fef85 7502 lpfc_els_rcv_farpr(vport, elsiocb, ndlp);
dea3101e
JB
7503 break;
7504 case ELS_CMD_FARP:
858c9f6c
JS
7505 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
7506 "RCV FARP: did:x%x/ste:x%x flg:x%x",
7507 did, vport->port_state, ndlp->nlp_flag);
7508
dea3101e 7509 phba->fc_stat.elsRcvFARP++;
2e0fef85 7510 lpfc_els_rcv_farp(vport, elsiocb, ndlp);
dea3101e
JB
7511 break;
7512 case ELS_CMD_FAN:
858c9f6c
JS
7513 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
7514 "RCV FAN: did:x%x/ste:x%x flg:x%x",
7515 did, vport->port_state, ndlp->nlp_flag);
7516
dea3101e 7517 phba->fc_stat.elsRcvFAN++;
2e0fef85 7518 lpfc_els_rcv_fan(vport, elsiocb, ndlp);
dea3101e 7519 break;
dea3101e 7520 case ELS_CMD_PRLI:
858c9f6c
JS
7521 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
7522 "RCV PRLI: did:x%x/ste:x%x flg:x%x",
7523 did, vport->port_state, ndlp->nlp_flag);
7524
dea3101e 7525 phba->fc_stat.elsRcvPRLI++;
2e0fef85 7526 if (vport->port_state < LPFC_DISC_AUTH) {
858c9f6c 7527 rjt_err = LSRJT_UNABLE_TPC;
303f2f9c 7528 rjt_exp = LSEXP_NOTHING_MORE;
dea3101e
JB
7529 break;
7530 }
2e0fef85 7531 lpfc_disc_state_machine(vport, ndlp, elsiocb, NLP_EVT_RCV_PRLI);
dea3101e 7532 break;
7bb3b137 7533 case ELS_CMD_LIRR:
858c9f6c
JS
7534 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
7535 "RCV LIRR: did:x%x/ste:x%x flg:x%x",
7536 did, vport->port_state, ndlp->nlp_flag);
7537
7bb3b137 7538 phba->fc_stat.elsRcvLIRR++;
2e0fef85 7539 lpfc_els_rcv_lirr(vport, elsiocb, ndlp);
87af33fe 7540 if (newnode)
98c9ea5c 7541 lpfc_nlp_put(ndlp);
7bb3b137 7542 break;
12265f68
JS
7543 case ELS_CMD_RLS:
7544 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
7545 "RCV RLS: did:x%x/ste:x%x flg:x%x",
7546 did, vport->port_state, ndlp->nlp_flag);
7547
7548 phba->fc_stat.elsRcvRLS++;
7549 lpfc_els_rcv_rls(vport, elsiocb, ndlp);
7550 if (newnode)
7551 lpfc_nlp_put(ndlp);
7552 break;
7bb3b137 7553 case ELS_CMD_RPS:
858c9f6c
JS
7554 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
7555 "RCV RPS: did:x%x/ste:x%x flg:x%x",
7556 did, vport->port_state, ndlp->nlp_flag);
7557
7bb3b137 7558 phba->fc_stat.elsRcvRPS++;
2e0fef85 7559 lpfc_els_rcv_rps(vport, elsiocb, ndlp);
87af33fe 7560 if (newnode)
98c9ea5c 7561 lpfc_nlp_put(ndlp);
7bb3b137
JW
7562 break;
7563 case ELS_CMD_RPL:
858c9f6c
JS
7564 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
7565 "RCV RPL: did:x%x/ste:x%x flg:x%x",
7566 did, vport->port_state, ndlp->nlp_flag);
7567
7bb3b137 7568 phba->fc_stat.elsRcvRPL++;
2e0fef85 7569 lpfc_els_rcv_rpl(vport, elsiocb, ndlp);
87af33fe 7570 if (newnode)
98c9ea5c 7571 lpfc_nlp_put(ndlp);
7bb3b137 7572 break;
dea3101e 7573 case ELS_CMD_RNID:
858c9f6c
JS
7574 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
7575 "RCV RNID: did:x%x/ste:x%x flg:x%x",
7576 did, vport->port_state, ndlp->nlp_flag);
7577
dea3101e 7578 phba->fc_stat.elsRcvRNID++;
2e0fef85 7579 lpfc_els_rcv_rnid(vport, elsiocb, ndlp);
87af33fe 7580 if (newnode)
98c9ea5c 7581 lpfc_nlp_put(ndlp);
dea3101e 7582 break;
12265f68
JS
7583 case ELS_CMD_RTV:
7584 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
7585 "RCV RTV: did:x%x/ste:x%x flg:x%x",
7586 did, vport->port_state, ndlp->nlp_flag);
7587 phba->fc_stat.elsRcvRTV++;
7588 lpfc_els_rcv_rtv(vport, elsiocb, ndlp);
7589 if (newnode)
7590 lpfc_nlp_put(ndlp);
7591 break;
5ffc266e
JS
7592 case ELS_CMD_RRQ:
7593 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
7594 "RCV RRQ: did:x%x/ste:x%x flg:x%x",
7595 did, vport->port_state, ndlp->nlp_flag);
7596
7597 phba->fc_stat.elsRcvRRQ++;
7598 lpfc_els_rcv_rrq(vport, elsiocb, ndlp);
7599 if (newnode)
7600 lpfc_nlp_put(ndlp);
7601 break;
12265f68
JS
7602 case ELS_CMD_ECHO:
7603 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
7604 "RCV ECHO: did:x%x/ste:x%x flg:x%x",
7605 did, vport->port_state, ndlp->nlp_flag);
7606
7607 phba->fc_stat.elsRcvECHO++;
7608 lpfc_els_rcv_echo(vport, elsiocb, ndlp);
7609 if (newnode)
7610 lpfc_nlp_put(ndlp);
7611 break;
303f2f9c
JS
7612 case ELS_CMD_REC:
7613 /* receive this due to exchange closed */
7614 rjt_err = LSRJT_UNABLE_TPC;
7615 rjt_exp = LSEXP_INVALID_OX_RX;
7616 break;
dea3101e 7617 default:
858c9f6c
JS
7618 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
7619 "RCV ELS cmd: cmd:x%x did:x%x/ste:x%x",
7620 cmd, did, vport->port_state);
7621
dea3101e 7622 /* Unsupported ELS command, reject */
63e801ce 7623 rjt_err = LSRJT_CMD_UNSUPPORTED;
303f2f9c 7624 rjt_exp = LSEXP_NOTHING_MORE;
dea3101e
JB
7625
7626 /* Unknown ELS command <elsCmd> received from NPORT <did> */
e8b62011
JS
7627 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
7628 "0115 Unknown ELS command x%x "
7629 "received from NPORT x%x\n", cmd, did);
87af33fe 7630 if (newnode)
98c9ea5c 7631 lpfc_nlp_put(ndlp);
dea3101e
JB
7632 break;
7633 }
7634
eec3d312 7635lsrjt:
dea3101e
JB
7636 /* check if need to LS_RJT received ELS cmd */
7637 if (rjt_err) {
92d7f7b0 7638 memset(&stat, 0, sizeof(stat));
858c9f6c 7639 stat.un.b.lsRjtRsnCode = rjt_err;
303f2f9c 7640 stat.un.b.lsRjtRsnCodeExp = rjt_exp;
858c9f6c
JS
7641 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, elsiocb, ndlp,
7642 NULL);
dea3101e
JB
7643 }
7644
d7c255b2
JS
7645 lpfc_nlp_put(elsiocb->context1);
7646 elsiocb->context1 = NULL;
ed957684
JS
7647 return;
7648
7649dropit:
98c9ea5c 7650 if (vport && !(vport->load_flag & FC_UNLOADING))
6fb120a7
JS
7651 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
7652 "0111 Dropping received ELS cmd "
ed957684 7653 "Data: x%x x%x x%x\n",
6fb120a7 7654 icmd->ulpStatus, icmd->un.ulpWord[4], icmd->ulpTimeout);
ed957684
JS
7655 phba->fc_stat.elsRcvDrop++;
7656}
7657
e59058c4 7658/**
3621a710 7659 * lpfc_els_unsol_event - Process an unsolicited event from an els sli ring
e59058c4
JS
7660 * @phba: pointer to lpfc hba data structure.
7661 * @pring: pointer to a SLI ring.
7662 * @elsiocb: pointer to lpfc els iocb data structure.
7663 *
7664 * This routine is used to process an unsolicited event received from a SLI
7665 * (Service Level Interface) ring. The actual processing of the data buffer
7666 * associated with the unsolicited event is done by invoking the routine
7667 * lpfc_els_unsol_buffer() after properly set up the iocb buffer from the
7668 * SLI ring on which the unsolicited event was received.
7669 **/
ed957684
JS
7670void
7671lpfc_els_unsol_event(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
7672 struct lpfc_iocbq *elsiocb)
7673{
7674 struct lpfc_vport *vport = phba->pport;
ed957684 7675 IOCB_t *icmd = &elsiocb->iocb;
ed957684 7676 dma_addr_t paddr;
92d7f7b0
JS
7677 struct lpfc_dmabuf *bdeBuf1 = elsiocb->context2;
7678 struct lpfc_dmabuf *bdeBuf2 = elsiocb->context3;
7679
d7c255b2 7680 elsiocb->context1 = NULL;
92d7f7b0
JS
7681 elsiocb->context2 = NULL;
7682 elsiocb->context3 = NULL;
ed957684 7683
92d7f7b0
JS
7684 if (icmd->ulpStatus == IOSTAT_NEED_BUFFER) {
7685 lpfc_sli_hbqbuf_add_hbqs(phba, LPFC_ELS_HBQ);
7686 } else if (icmd->ulpStatus == IOSTAT_LOCAL_REJECT &&
e3d2b802
JS
7687 (icmd->un.ulpWord[4] & IOERR_PARAM_MASK) ==
7688 IOERR_RCV_BUFFER_WAITING) {
ed957684
JS
7689 phba->fc_stat.NoRcvBuf++;
7690 /* Not enough posted buffers; Try posting more buffers */
92d7f7b0 7691 if (!(phba->sli3_options & LPFC_SLI3_HBQ_ENABLED))
495a714c 7692 lpfc_post_buffer(phba, pring, 0);
ed957684
JS
7693 return;
7694 }
7695
92d7f7b0
JS
7696 if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
7697 (icmd->ulpCommand == CMD_IOCB_RCV_ELS64_CX ||
7698 icmd->ulpCommand == CMD_IOCB_RCV_SEQ64_CX)) {
7699 if (icmd->unsli3.rcvsli3.vpi == 0xffff)
7700 vport = phba->pport;
6fb120a7
JS
7701 else
7702 vport = lpfc_find_vport_by_vpid(phba,
6d368e53 7703 icmd->unsli3.rcvsli3.vpi);
92d7f7b0 7704 }
6d368e53 7705
7f5f3d0d
JS
7706 /* If there are no BDEs associated
7707 * with this IOCB, there is nothing to do.
7708 */
ed957684
JS
7709 if (icmd->ulpBdeCount == 0)
7710 return;
7711
7f5f3d0d
JS
7712 /* type of ELS cmd is first 32bit word
7713 * in packet
7714 */
ed957684 7715 if (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) {
92d7f7b0 7716 elsiocb->context2 = bdeBuf1;
ed957684
JS
7717 } else {
7718 paddr = getPaddr(icmd->un.cont64[0].addrHigh,
7719 icmd->un.cont64[0].addrLow);
92d7f7b0
JS
7720 elsiocb->context2 = lpfc_sli_ringpostbuf_get(phba, pring,
7721 paddr);
ed957684
JS
7722 }
7723
92d7f7b0
JS
7724 lpfc_els_unsol_buffer(phba, pring, vport, elsiocb);
7725 /*
7726 * The different unsolicited event handlers would tell us
7727 * if they are done with "mp" by setting context2 to NULL.
7728 */
dea3101e 7729 if (elsiocb->context2) {
92d7f7b0
JS
7730 lpfc_in_buf_free(phba, (struct lpfc_dmabuf *)elsiocb->context2);
7731 elsiocb->context2 = NULL;
dea3101e 7732 }
ed957684
JS
7733
7734 /* RCV_ELS64_CX provide for 2 BDEs - process 2nd if included */
92d7f7b0 7735 if ((phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) &&
ed957684 7736 icmd->ulpBdeCount == 2) {
92d7f7b0
JS
7737 elsiocb->context2 = bdeBuf2;
7738 lpfc_els_unsol_buffer(phba, pring, vport, elsiocb);
ed957684
JS
7739 /* free mp if we are done with it */
7740 if (elsiocb->context2) {
92d7f7b0
JS
7741 lpfc_in_buf_free(phba, elsiocb->context2);
7742 elsiocb->context2 = NULL;
7743 }
7744 }
7745}
7746
4258e98e
JS
7747void
7748lpfc_start_fdmi(struct lpfc_vport *vport)
7749{
7750 struct lpfc_hba *phba = vport->phba;
7751 struct lpfc_nodelist *ndlp;
7752
7753 /* If this is the first time, allocate an ndlp and initialize
7754 * it. Otherwise, make sure the node is enabled and then do the
7755 * login.
7756 */
7757 ndlp = lpfc_findnode_did(vport, FDMI_DID);
7758 if (!ndlp) {
7759 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
7760 if (ndlp) {
7761 lpfc_nlp_init(vport, ndlp, FDMI_DID);
7762 ndlp->nlp_type |= NLP_FABRIC;
7763 } else {
7764 return;
7765 }
7766 }
7767 if (!NLP_CHK_NODE_ACT(ndlp))
7768 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_NPR_NODE);
7769
7770 if (ndlp) {
7771 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
7772 lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0);
7773 }
7774}
7775
e59058c4 7776/**
3621a710 7777 * lpfc_do_scr_ns_plogi - Issue a plogi to the name server for scr
e59058c4
JS
7778 * @phba: pointer to lpfc hba data structure.
7779 * @vport: pointer to a virtual N_Port data structure.
7780 *
7781 * This routine issues a Port Login (PLOGI) to the Name Server with
7782 * State Change Request (SCR) for a @vport. This routine will create an
7783 * ndlp for the Name Server associated to the @vport if such node does
7784 * not already exist. The PLOGI to Name Server is issued by invoking the
7785 * lpfc_issue_els_plogi() routine. If Fabric-Device Management Interface
7786 * (FDMI) is configured to the @vport, a FDMI node will be created and
7787 * the PLOGI to FDMI is issued by invoking lpfc_issue_els_plogi() routine.
7788 **/
92d7f7b0
JS
7789void
7790lpfc_do_scr_ns_plogi(struct lpfc_hba *phba, struct lpfc_vport *vport)
7791{
4258e98e 7792 struct lpfc_nodelist *ndlp;
92494144
JS
7793 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
7794
7795 /*
7796 * If lpfc_delay_discovery parameter is set and the clean address
7797 * bit is cleared and fc fabric parameters chenged, delay FC NPort
7798 * discovery.
7799 */
7800 spin_lock_irq(shost->host_lock);
7801 if (vport->fc_flag & FC_DISC_DELAYED) {
7802 spin_unlock_irq(shost->host_lock);
18775708
JS
7803 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY,
7804 "3334 Delay fc port discovery for %d seconds\n",
7805 phba->fc_ratov);
92494144 7806 mod_timer(&vport->delayed_disc_tmo,
256ec0d0 7807 jiffies + msecs_to_jiffies(1000 * phba->fc_ratov));
92494144
JS
7808 return;
7809 }
7810 spin_unlock_irq(shost->host_lock);
92d7f7b0
JS
7811
7812 ndlp = lpfc_findnode_did(vport, NameServer_DID);
7813 if (!ndlp) {
7814 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
7815 if (!ndlp) {
76a95d75 7816 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
92d7f7b0
JS
7817 lpfc_disc_start(vport);
7818 return;
7819 }
7820 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
e8b62011
JS
7821 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
7822 "0251 NameServer login: no memory\n");
92d7f7b0
JS
7823 return;
7824 }
7825 lpfc_nlp_init(vport, ndlp, NameServer_DID);
e47c9093
JS
7826 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
7827 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
7828 if (!ndlp) {
76a95d75 7829 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
e47c9093
JS
7830 lpfc_disc_start(vport);
7831 return;
7832 }
7833 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
7834 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
7835 "0348 NameServer login: node freed\n");
7836 return;
7837 }
92d7f7b0 7838 }
58da1ffb 7839 ndlp->nlp_type |= NLP_FABRIC;
92d7f7b0
JS
7840
7841 lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
7842
7843 if (lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0)) {
7844 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
e8b62011
JS
7845 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
7846 "0252 Cannot issue NameServer login\n");
92d7f7b0
JS
7847 return;
7848 }
7849
4258e98e
JS
7850 if ((phba->cfg_fdmi_on > LPFC_FDMI_NO_SUPPORT) &&
7851 (vport->load_flag & FC_ALLOW_FDMI))
7852 lpfc_start_fdmi(vport);
92d7f7b0
JS
7853}
7854
e59058c4 7855/**
3621a710 7856 * lpfc_cmpl_reg_new_vport - Completion callback function to register new vport
e59058c4
JS
7857 * @phba: pointer to lpfc hba data structure.
7858 * @pmb: pointer to the driver internal queue element for mailbox command.
7859 *
7860 * This routine is the completion callback function to register new vport
7861 * mailbox command. If the new vport mailbox command completes successfully,
7862 * the fabric registration login shall be performed on physical port (the
7863 * new vport created is actually a physical port, with VPI 0) or the port
7864 * login to Name Server for State Change Request (SCR) will be performed
7865 * on virtual port (real virtual port, with VPI greater than 0).
7866 **/
92d7f7b0
JS
7867static void
7868lpfc_cmpl_reg_new_vport(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
7869{
7870 struct lpfc_vport *vport = pmb->vport;
7871 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
7872 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) pmb->context2;
04c68496 7873 MAILBOX_t *mb = &pmb->u.mb;
695a814e 7874 int rc;
92d7f7b0 7875
09372820 7876 spin_lock_irq(shost->host_lock);
92d7f7b0 7877 vport->fc_flag &= ~FC_VPORT_NEEDS_REG_VPI;
09372820 7878 spin_unlock_irq(shost->host_lock);
92d7f7b0
JS
7879
7880 if (mb->mbxStatus) {
e8b62011 7881 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
38b92ef8
JS
7882 "0915 Register VPI failed : Status: x%x"
7883 " upd bit: x%x \n", mb->mbxStatus,
7884 mb->un.varRegVpi.upd);
7885 if (phba->sli_rev == LPFC_SLI_REV4 &&
7886 mb->un.varRegVpi.upd)
7887 goto mbox_err_exit ;
92d7f7b0
JS
7888
7889 switch (mb->mbxStatus) {
7890 case 0x11: /* unsupported feature */
7891 case 0x9603: /* max_vpi exceeded */
7f5f3d0d 7892 case 0x9602: /* Link event since CLEAR_LA */
92d7f7b0
JS
7893 /* giving up on vport registration */
7894 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
7895 spin_lock_irq(shost->host_lock);
7896 vport->fc_flag &= ~(FC_FABRIC | FC_PUBLIC_LOOP);
7897 spin_unlock_irq(shost->host_lock);
7898 lpfc_can_disctmo(vport);
7899 break;
695a814e
JS
7900 /* If reg_vpi fail with invalid VPI status, re-init VPI */
7901 case 0x20:
7902 spin_lock_irq(shost->host_lock);
7903 vport->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
7904 spin_unlock_irq(shost->host_lock);
7905 lpfc_init_vpi(phba, pmb, vport->vpi);
7906 pmb->vport = vport;
7907 pmb->mbox_cmpl = lpfc_init_vpi_cmpl;
7908 rc = lpfc_sli_issue_mbox(phba, pmb,
7909 MBX_NOWAIT);
7910 if (rc == MBX_NOT_FINISHED) {
7911 lpfc_printf_vlog(vport,
7912 KERN_ERR, LOG_MBOX,
7913 "2732 Failed to issue INIT_VPI"
7914 " mailbox command\n");
7915 } else {
7916 lpfc_nlp_put(ndlp);
7917 return;
7918 }
7919
92d7f7b0
JS
7920 default:
7921 /* Try to recover from this error */
5af5eee7
JS
7922 if (phba->sli_rev == LPFC_SLI_REV4)
7923 lpfc_sli4_unreg_all_rpis(vport);
92d7f7b0 7924 lpfc_mbx_unreg_vpi(vport);
09372820 7925 spin_lock_irq(shost->host_lock);
92d7f7b0 7926 vport->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
09372820 7927 spin_unlock_irq(shost->host_lock);
4b40c59e
JS
7928 if (vport->port_type == LPFC_PHYSICAL_PORT
7929 && !(vport->fc_flag & FC_LOGO_RCVD_DID_CHNG))
76a95d75 7930 lpfc_issue_init_vfi(vport);
7f5f3d0d
JS
7931 else
7932 lpfc_initial_fdisc(vport);
92d7f7b0
JS
7933 break;
7934 }
92d7f7b0 7935 } else {
695a814e 7936 spin_lock_irq(shost->host_lock);
1987807d 7937 vport->vpi_state |= LPFC_VPI_REGISTERED;
695a814e
JS
7938 spin_unlock_irq(shost->host_lock);
7939 if (vport == phba->pport) {
6fb120a7
JS
7940 if (phba->sli_rev < LPFC_SLI_REV4)
7941 lpfc_issue_fabric_reglogin(vport);
695a814e 7942 else {
fc2b989b
JS
7943 /*
7944 * If the physical port is instantiated using
7945 * FDISC, do not start vport discovery.
7946 */
7947 if (vport->port_state != LPFC_FDISC)
7948 lpfc_start_fdiscs(phba);
695a814e
JS
7949 lpfc_do_scr_ns_plogi(phba, vport);
7950 }
7951 } else
92d7f7b0
JS
7952 lpfc_do_scr_ns_plogi(phba, vport);
7953 }
38b92ef8 7954mbox_err_exit:
fa4066b6
JS
7955 /* Now, we decrement the ndlp reference count held for this
7956 * callback function
7957 */
7958 lpfc_nlp_put(ndlp);
7959
92d7f7b0
JS
7960 mempool_free(pmb, phba->mbox_mem_pool);
7961 return;
7962}
7963
e59058c4 7964/**
3621a710 7965 * lpfc_register_new_vport - Register a new vport with a HBA
e59058c4
JS
7966 * @phba: pointer to lpfc hba data structure.
7967 * @vport: pointer to a host virtual N_Port data structure.
7968 * @ndlp: pointer to a node-list data structure.
7969 *
7970 * This routine registers the @vport as a new virtual port with a HBA.
7971 * It is done through a registering vpi mailbox command.
7972 **/
695a814e 7973void
92d7f7b0
JS
7974lpfc_register_new_vport(struct lpfc_hba *phba, struct lpfc_vport *vport,
7975 struct lpfc_nodelist *ndlp)
7976{
09372820 7977 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
92d7f7b0
JS
7978 LPFC_MBOXQ_t *mbox;
7979
7980 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
7981 if (mbox) {
6fb120a7 7982 lpfc_reg_vpi(vport, mbox);
92d7f7b0
JS
7983 mbox->vport = vport;
7984 mbox->context2 = lpfc_nlp_get(ndlp);
7985 mbox->mbox_cmpl = lpfc_cmpl_reg_new_vport;
0b727fea 7986 if (lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT)
92d7f7b0 7987 == MBX_NOT_FINISHED) {
fa4066b6
JS
7988 /* mailbox command not success, decrement ndlp
7989 * reference count for this command
7990 */
7991 lpfc_nlp_put(ndlp);
92d7f7b0 7992 mempool_free(mbox, phba->mbox_mem_pool);
92d7f7b0 7993
e8b62011
JS
7994 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
7995 "0253 Register VPI: Can't send mbox\n");
fa4066b6 7996 goto mbox_err_exit;
92d7f7b0
JS
7997 }
7998 } else {
e8b62011
JS
7999 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
8000 "0254 Register VPI: no memory\n");
fa4066b6 8001 goto mbox_err_exit;
92d7f7b0 8002 }
fa4066b6
JS
8003 return;
8004
8005mbox_err_exit:
8006 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
8007 spin_lock_irq(shost->host_lock);
8008 vport->fc_flag &= ~FC_VPORT_NEEDS_REG_VPI;
8009 spin_unlock_irq(shost->host_lock);
8010 return;
92d7f7b0
JS
8011}
8012
695a814e 8013/**
0c9ab6f5 8014 * lpfc_cancel_all_vport_retry_delay_timer - Cancel all vport retry delay timer
695a814e
JS
8015 * @phba: pointer to lpfc hba data structure.
8016 *
0c9ab6f5 8017 * This routine cancels the retry delay timers to all the vports.
695a814e
JS
8018 **/
8019void
0c9ab6f5 8020lpfc_cancel_all_vport_retry_delay_timer(struct lpfc_hba *phba)
695a814e
JS
8021{
8022 struct lpfc_vport **vports;
8023 struct lpfc_nodelist *ndlp;
695a814e 8024 uint32_t link_state;
0c9ab6f5 8025 int i;
695a814e
JS
8026
8027 /* Treat this failure as linkdown for all vports */
8028 link_state = phba->link_state;
8029 lpfc_linkdown(phba);
8030 phba->link_state = link_state;
8031
8032 vports = lpfc_create_vport_work_array(phba);
8033
8034 if (vports) {
8035 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
8036 ndlp = lpfc_findnode_did(vports[i], Fabric_DID);
8037 if (ndlp)
8038 lpfc_cancel_retry_delay_tmo(vports[i], ndlp);
8039 lpfc_els_flush_cmd(vports[i]);
8040 }
8041 lpfc_destroy_vport_work_array(phba, vports);
8042 }
0c9ab6f5
JS
8043}
8044
8045/**
8046 * lpfc_retry_pport_discovery - Start timer to retry FLOGI.
8047 * @phba: pointer to lpfc hba data structure.
8048 *
8049 * This routine abort all pending discovery commands and
8050 * start a timer to retry FLOGI for the physical port
8051 * discovery.
8052 **/
8053void
8054lpfc_retry_pport_discovery(struct lpfc_hba *phba)
8055{
8056 struct lpfc_nodelist *ndlp;
8057 struct Scsi_Host *shost;
8058
8059 /* Cancel the all vports retry delay retry timers */
8060 lpfc_cancel_all_vport_retry_delay_timer(phba);
695a814e
JS
8061
8062 /* If fabric require FLOGI, then re-instantiate physical login */
8063 ndlp = lpfc_findnode_did(phba->pport, Fabric_DID);
8064 if (!ndlp)
8065 return;
8066
695a814e 8067 shost = lpfc_shost_from_vport(phba->pport);
256ec0d0 8068 mod_timer(&ndlp->nlp_delayfunc, jiffies + msecs_to_jiffies(1000));
695a814e
JS
8069 spin_lock_irq(shost->host_lock);
8070 ndlp->nlp_flag |= NLP_DELAY_TMO;
8071 spin_unlock_irq(shost->host_lock);
8072 ndlp->nlp_last_elscmd = ELS_CMD_FLOGI;
8073 phba->pport->port_state = LPFC_FLOGI;
8074 return;
8075}
8076
8077/**
8078 * lpfc_fabric_login_reqd - Check if FLOGI required.
8079 * @phba: pointer to lpfc hba data structure.
8080 * @cmdiocb: pointer to FDISC command iocb.
8081 * @rspiocb: pointer to FDISC response iocb.
8082 *
8083 * This routine checks if a FLOGI is reguired for FDISC
8084 * to succeed.
8085 **/
8086static int
8087lpfc_fabric_login_reqd(struct lpfc_hba *phba,
8088 struct lpfc_iocbq *cmdiocb,
8089 struct lpfc_iocbq *rspiocb)
8090{
8091
8092 if ((rspiocb->iocb.ulpStatus != IOSTAT_FABRIC_RJT) ||
8093 (rspiocb->iocb.un.ulpWord[4] != RJT_LOGIN_REQUIRED))
8094 return 0;
8095 else
8096 return 1;
8097}
8098
e59058c4 8099/**
3621a710 8100 * lpfc_cmpl_els_fdisc - Completion function for fdisc iocb command
e59058c4
JS
8101 * @phba: pointer to lpfc hba data structure.
8102 * @cmdiocb: pointer to lpfc command iocb data structure.
8103 * @rspiocb: pointer to lpfc response iocb data structure.
8104 *
8105 * This routine is the completion callback function to a Fabric Discover
8106 * (FDISC) ELS command. Since all the FDISC ELS commands are issued
8107 * single threaded, each FDISC completion callback function will reset
8108 * the discovery timer for all vports such that the timers will not get
8109 * unnecessary timeout. The function checks the FDISC IOCB status. If error
8110 * detected, the vport will be set to FC_VPORT_FAILED state. Otherwise,the
8111 * vport will set to FC_VPORT_ACTIVE state. It then checks whether the DID
8112 * assigned to the vport has been changed with the completion of the FDISC
8113 * command. If so, both RPI (Remote Port Index) and VPI (Virtual Port Index)
8114 * are unregistered from the HBA, and then the lpfc_register_new_vport()
8115 * routine is invoked to register new vport with the HBA. Otherwise, the
8116 * lpfc_do_scr_ns_plogi() routine is invoked to issue a PLOGI to the Name
8117 * Server for State Change Request (SCR).
8118 **/
92d7f7b0
JS
8119static void
8120lpfc_cmpl_els_fdisc(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
8121 struct lpfc_iocbq *rspiocb)
8122{
8123 struct lpfc_vport *vport = cmdiocb->vport;
8124 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
8125 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
8126 struct lpfc_nodelist *np;
8127 struct lpfc_nodelist *next_np;
8128 IOCB_t *irsp = &rspiocb->iocb;
8129 struct lpfc_iocbq *piocb;
92494144
JS
8130 struct lpfc_dmabuf *pcmd = cmdiocb->context2, *prsp;
8131 struct serv_parm *sp;
8132 uint8_t fabric_param_changed;
92d7f7b0 8133
e8b62011
JS
8134 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
8135 "0123 FDISC completes. x%x/x%x prevDID: x%x\n",
8136 irsp->ulpStatus, irsp->un.ulpWord[4],
8137 vport->fc_prevDID);
92d7f7b0
JS
8138 /* Since all FDISCs are being single threaded, we
8139 * must reset the discovery timer for ALL vports
8140 * waiting to send FDISC when one completes.
8141 */
8142 list_for_each_entry(piocb, &phba->fabric_iocb_list, list) {
8143 lpfc_set_disctmo(piocb->vport);
8144 }
8145
858c9f6c
JS
8146 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
8147 "FDISC cmpl: status:x%x/x%x prevdid:x%x",
8148 irsp->ulpStatus, irsp->un.ulpWord[4], vport->fc_prevDID);
8149
92d7f7b0 8150 if (irsp->ulpStatus) {
695a814e
JS
8151
8152 if (lpfc_fabric_login_reqd(phba, cmdiocb, rspiocb)) {
8153 lpfc_retry_pport_discovery(phba);
8154 goto out;
8155 }
8156
92d7f7b0
JS
8157 /* Check for retry */
8158 if (lpfc_els_retry(phba, cmdiocb, rspiocb))
8159 goto out;
92d7f7b0 8160 /* FDISC failed */
e8b62011 8161 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
6b5151fd 8162 "0126 FDISC failed. (x%x/x%x)\n",
e8b62011 8163 irsp->ulpStatus, irsp->un.ulpWord[4]);
d7c255b2
JS
8164 goto fdisc_failed;
8165 }
d7c255b2 8166 spin_lock_irq(shost->host_lock);
695a814e 8167 vport->fc_flag &= ~FC_VPORT_CVL_RCVD;
4b40c59e 8168 vport->fc_flag &= ~FC_VPORT_LOGO_RCVD;
d7c255b2 8169 vport->fc_flag |= FC_FABRIC;
76a95d75 8170 if (vport->phba->fc_topology == LPFC_TOPOLOGY_LOOP)
d7c255b2
JS
8171 vport->fc_flag |= FC_PUBLIC_LOOP;
8172 spin_unlock_irq(shost->host_lock);
92d7f7b0 8173
d7c255b2
JS
8174 vport->fc_myDID = irsp->un.ulpWord[4] & Mask_DID;
8175 lpfc_vport_set_state(vport, FC_VPORT_ACTIVE);
92494144 8176 prsp = list_get_first(&pcmd->list, struct lpfc_dmabuf, list);
a2fc4aef
JS
8177 if (!prsp)
8178 goto out;
92494144
JS
8179 sp = prsp->virt + sizeof(uint32_t);
8180 fabric_param_changed = lpfc_check_clean_addr_bit(vport, sp);
8181 memcpy(&vport->fabric_portname, &sp->portName,
8182 sizeof(struct lpfc_name));
8183 memcpy(&vport->fabric_nodename, &sp->nodeName,
8184 sizeof(struct lpfc_name));
8185 if (fabric_param_changed &&
d7c255b2
JS
8186 !(vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)) {
8187 /* If our NportID changed, we need to ensure all
8188 * remaining NPORTs get unreg_login'ed so we can
8189 * issue unreg_vpi.
8190 */
8191 list_for_each_entry_safe(np, next_np,
8192 &vport->fc_nodes, nlp_listp) {
8193 if (!NLP_CHK_NODE_ACT(ndlp) ||
8194 (np->nlp_state != NLP_STE_NPR_NODE) ||
8195 !(np->nlp_flag & NLP_NPR_ADISC))
8196 continue;
09372820 8197 spin_lock_irq(shost->host_lock);
d7c255b2 8198 np->nlp_flag &= ~NLP_NPR_ADISC;
09372820 8199 spin_unlock_irq(shost->host_lock);
d7c255b2 8200 lpfc_unreg_rpi(vport, np);
92d7f7b0 8201 }
78730cfe 8202 lpfc_cleanup_pending_mbox(vport);
5af5eee7
JS
8203
8204 if (phba->sli_rev == LPFC_SLI_REV4)
8205 lpfc_sli4_unreg_all_rpis(vport);
8206
d7c255b2
JS
8207 lpfc_mbx_unreg_vpi(vport);
8208 spin_lock_irq(shost->host_lock);
8209 vport->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
0f65ff68
JS
8210 if (phba->sli_rev == LPFC_SLI_REV4)
8211 vport->fc_flag |= FC_VPORT_NEEDS_INIT_VPI;
4b40c59e
JS
8212 else
8213 vport->fc_flag |= FC_LOGO_RCVD_DID_CHNG;
d7c255b2 8214 spin_unlock_irq(shost->host_lock);
38b92ef8
JS
8215 } else if ((phba->sli_rev == LPFC_SLI_REV4) &&
8216 !(vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)) {
8217 /*
8218 * Driver needs to re-reg VPI in order for f/w
8219 * to update the MAC address.
8220 */
8221 lpfc_register_new_vport(phba, vport, ndlp);
5ac6b303 8222 goto out;
92d7f7b0
JS
8223 }
8224
ecfd03c6
JS
8225 if (vport->fc_flag & FC_VPORT_NEEDS_INIT_VPI)
8226 lpfc_issue_init_vpi(vport);
8227 else if (vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)
d7c255b2
JS
8228 lpfc_register_new_vport(phba, vport, ndlp);
8229 else
8230 lpfc_do_scr_ns_plogi(phba, vport);
8231 goto out;
8232fdisc_failed:
c84163d1
JS
8233 if (vport->fc_vport->vport_state != FC_VPORT_NO_FABRIC_RSCS)
8234 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
d7c255b2
JS
8235 /* Cancel discovery timer */
8236 lpfc_can_disctmo(vport);
8237 lpfc_nlp_put(ndlp);
92d7f7b0
JS
8238out:
8239 lpfc_els_free_iocb(phba, cmdiocb);
8240}
8241
e59058c4 8242/**
3621a710 8243 * lpfc_issue_els_fdisc - Issue a fdisc iocb command
e59058c4
JS
8244 * @vport: pointer to a virtual N_Port data structure.
8245 * @ndlp: pointer to a node-list data structure.
8246 * @retry: number of retries to the command IOCB.
8247 *
8248 * This routine prepares and issues a Fabric Discover (FDISC) IOCB to
8249 * a remote node (@ndlp) off a @vport. It uses the lpfc_issue_fabric_iocb()
8250 * routine to issue the IOCB, which makes sure only one outstanding fabric
8251 * IOCB will be sent off HBA at any given time.
8252 *
8253 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
8254 * will be incremented by 1 for holding the ndlp and the reference to ndlp
8255 * will be stored into the context1 field of the IOCB for the completion
8256 * callback function to the FDISC ELS command.
8257 *
8258 * Return code
8259 * 0 - Successfully issued fdisc iocb command
8260 * 1 - Failed to issue fdisc iocb command
8261 **/
a6ababd2 8262static int
92d7f7b0
JS
8263lpfc_issue_els_fdisc(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
8264 uint8_t retry)
8265{
8266 struct lpfc_hba *phba = vport->phba;
8267 IOCB_t *icmd;
8268 struct lpfc_iocbq *elsiocb;
8269 struct serv_parm *sp;
8270 uint8_t *pcmd;
8271 uint16_t cmdsize;
8272 int did = ndlp->nlp_DID;
8273 int rc;
92d7f7b0 8274
5ffc266e 8275 vport->port_state = LPFC_FDISC;
6b5151fd 8276 vport->fc_myDID = 0;
92d7f7b0
JS
8277 cmdsize = (sizeof(uint32_t) + sizeof(struct serv_parm));
8278 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp, did,
8279 ELS_CMD_FDISC);
8280 if (!elsiocb) {
92d7f7b0 8281 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
e8b62011
JS
8282 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
8283 "0255 Issue FDISC: no IOCB\n");
92d7f7b0
JS
8284 return 1;
8285 }
8286
8287 icmd = &elsiocb->iocb;
8288 icmd->un.elsreq64.myID = 0;
8289 icmd->un.elsreq64.fl = 1;
8290
73d91e50
JS
8291 /*
8292 * SLI3 ports require a different context type value than SLI4.
8293 * Catch SLI3 ports here and override the prep.
8294 */
8295 if (phba->sli_rev == LPFC_SLI_REV3) {
f1126688
JS
8296 icmd->ulpCt_h = 1;
8297 icmd->ulpCt_l = 0;
8298 }
92d7f7b0
JS
8299
8300 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
8301 *((uint32_t *) (pcmd)) = ELS_CMD_FDISC;
8302 pcmd += sizeof(uint32_t); /* CSP Word 1 */
8303 memcpy(pcmd, &vport->phba->pport->fc_sparam, sizeof(struct serv_parm));
8304 sp = (struct serv_parm *) pcmd;
8305 /* Setup CSPs accordingly for Fabric */
8306 sp->cmn.e_d_tov = 0;
8307 sp->cmn.w2.r_a_tov = 0;
df9e1b59 8308 sp->cmn.virtual_fabric_support = 0;
92d7f7b0
JS
8309 sp->cls1.classValid = 0;
8310 sp->cls2.seqDelivery = 1;
8311 sp->cls3.seqDelivery = 1;
8312
8313 pcmd += sizeof(uint32_t); /* CSP Word 2 */
8314 pcmd += sizeof(uint32_t); /* CSP Word 3 */
8315 pcmd += sizeof(uint32_t); /* CSP Word 4 */
8316 pcmd += sizeof(uint32_t); /* Port Name */
8317 memcpy(pcmd, &vport->fc_portname, 8);
8318 pcmd += sizeof(uint32_t); /* Node Name */
8319 pcmd += sizeof(uint32_t); /* Node Name */
8320 memcpy(pcmd, &vport->fc_nodename, 8);
8321
8322 lpfc_set_disctmo(vport);
8323
8324 phba->fc_stat.elsXmitFDISC++;
8325 elsiocb->iocb_cmpl = lpfc_cmpl_els_fdisc;
8326
858c9f6c
JS
8327 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
8328 "Issue FDISC: did:x%x",
8329 did, 0, 0);
8330
92d7f7b0
JS
8331 rc = lpfc_issue_fabric_iocb(phba, elsiocb);
8332 if (rc == IOCB_ERROR) {
8333 lpfc_els_free_iocb(phba, elsiocb);
92d7f7b0 8334 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
e8b62011
JS
8335 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
8336 "0256 Issue FDISC: Cannot send IOCB\n");
92d7f7b0
JS
8337 return 1;
8338 }
8339 lpfc_vport_set_state(vport, FC_VPORT_INITIALIZING);
92d7f7b0
JS
8340 return 0;
8341}
8342
e59058c4 8343/**
3621a710 8344 * lpfc_cmpl_els_npiv_logo - Completion function with vport logo
e59058c4
JS
8345 * @phba: pointer to lpfc hba data structure.
8346 * @cmdiocb: pointer to lpfc command iocb data structure.
8347 * @rspiocb: pointer to lpfc response iocb data structure.
8348 *
8349 * This routine is the completion callback function to the issuing of a LOGO
8350 * ELS command off a vport. It frees the command IOCB and then decrement the
8351 * reference count held on ndlp for this completion function, indicating that
8352 * the reference to the ndlp is no long needed. Note that the
8353 * lpfc_els_free_iocb() routine decrements the ndlp reference held for this
8354 * callback function and an additional explicit ndlp reference decrementation
8355 * will trigger the actual release of the ndlp.
8356 **/
92d7f7b0
JS
8357static void
8358lpfc_cmpl_els_npiv_logo(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
8359 struct lpfc_iocbq *rspiocb)
8360{
8361 struct lpfc_vport *vport = cmdiocb->vport;
858c9f6c 8362 IOCB_t *irsp;
e47c9093 8363 struct lpfc_nodelist *ndlp;
9589b062 8364 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
858c9f6c 8365
9589b062 8366 ndlp = (struct lpfc_nodelist *)cmdiocb->context1;
858c9f6c
JS
8367 irsp = &rspiocb->iocb;
8368 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
8369 "LOGO npiv cmpl: status:x%x/x%x did:x%x",
8370 irsp->ulpStatus, irsp->un.ulpWord[4], irsp->un.rcvels.remoteID);
92d7f7b0
JS
8371
8372 lpfc_els_free_iocb(phba, cmdiocb);
8373 vport->unreg_vpi_cmpl = VPORT_ERROR;
e47c9093
JS
8374
8375 /* Trigger the release of the ndlp after logo */
8376 lpfc_nlp_put(ndlp);
9589b062
JS
8377
8378 /* NPIV LOGO completes to NPort <nlp_DID> */
8379 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
8380 "2928 NPIV LOGO completes to NPort x%x "
8381 "Data: x%x x%x x%x x%x\n",
8382 ndlp->nlp_DID, irsp->ulpStatus, irsp->un.ulpWord[4],
8383 irsp->ulpTimeout, vport->num_disc_nodes);
8384
8385 if (irsp->ulpStatus == IOSTAT_SUCCESS) {
8386 spin_lock_irq(shost->host_lock);
73dc0dbe 8387 vport->fc_flag &= ~FC_NDISC_ACTIVE;
9589b062
JS
8388 vport->fc_flag &= ~FC_FABRIC;
8389 spin_unlock_irq(shost->host_lock);
73dc0dbe 8390 lpfc_can_disctmo(vport);
9589b062 8391 }
92d7f7b0
JS
8392}
8393
e59058c4 8394/**
3621a710 8395 * lpfc_issue_els_npiv_logo - Issue a logo off a vport
e59058c4
JS
8396 * @vport: pointer to a virtual N_Port data structure.
8397 * @ndlp: pointer to a node-list data structure.
8398 *
8399 * This routine issues a LOGO ELS command to an @ndlp off a @vport.
8400 *
8401 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
8402 * will be incremented by 1 for holding the ndlp and the reference to ndlp
8403 * will be stored into the context1 field of the IOCB for the completion
8404 * callback function to the LOGO ELS command.
8405 *
8406 * Return codes
8407 * 0 - Successfully issued logo off the @vport
8408 * 1 - Failed to issue logo off the @vport
8409 **/
92d7f7b0
JS
8410int
8411lpfc_issue_els_npiv_logo(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
8412{
8413 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
8414 struct lpfc_hba *phba = vport->phba;
92d7f7b0
JS
8415 struct lpfc_iocbq *elsiocb;
8416 uint8_t *pcmd;
8417 uint16_t cmdsize;
8418
8419 cmdsize = 2 * sizeof(uint32_t) + sizeof(struct lpfc_name);
8420 elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, 0, ndlp, ndlp->nlp_DID,
8421 ELS_CMD_LOGO);
8422 if (!elsiocb)
8423 return 1;
8424
92d7f7b0
JS
8425 pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
8426 *((uint32_t *) (pcmd)) = ELS_CMD_LOGO;
8427 pcmd += sizeof(uint32_t);
8428
8429 /* Fill in LOGO payload */
8430 *((uint32_t *) (pcmd)) = be32_to_cpu(vport->fc_myDID);
8431 pcmd += sizeof(uint32_t);
8432 memcpy(pcmd, &vport->fc_portname, sizeof(struct lpfc_name));
8433
858c9f6c
JS
8434 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
8435 "Issue LOGO npiv did:x%x flg:x%x",
8436 ndlp->nlp_DID, ndlp->nlp_flag, 0);
8437
92d7f7b0
JS
8438 elsiocb->iocb_cmpl = lpfc_cmpl_els_npiv_logo;
8439 spin_lock_irq(shost->host_lock);
8440 ndlp->nlp_flag |= NLP_LOGO_SND;
8441 spin_unlock_irq(shost->host_lock);
3772a991
JS
8442 if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) ==
8443 IOCB_ERROR) {
92d7f7b0
JS
8444 spin_lock_irq(shost->host_lock);
8445 ndlp->nlp_flag &= ~NLP_LOGO_SND;
8446 spin_unlock_irq(shost->host_lock);
8447 lpfc_els_free_iocb(phba, elsiocb);
8448 return 1;
8449 }
8450 return 0;
8451}
8452
e59058c4 8453/**
3621a710 8454 * lpfc_fabric_block_timeout - Handler function to the fabric block timer
e59058c4
JS
8455 * @ptr: holder for the timer function associated data.
8456 *
8457 * This routine is invoked by the fabric iocb block timer after
8458 * timeout. It posts the fabric iocb block timeout event by setting the
8459 * WORKER_FABRIC_BLOCK_TMO bit to work port event bitmap and then invokes
8460 * lpfc_worker_wake_up() routine to wake up the worker thread. It is for
8461 * the worker thread to invoke the lpfc_unblock_fabric_iocbs() on the
8462 * posted event WORKER_FABRIC_BLOCK_TMO.
8463 **/
92d7f7b0
JS
8464void
8465lpfc_fabric_block_timeout(unsigned long ptr)
8466{
8467 struct lpfc_hba *phba = (struct lpfc_hba *) ptr;
8468 unsigned long iflags;
8469 uint32_t tmo_posted;
5e9d9b82 8470
92d7f7b0
JS
8471 spin_lock_irqsave(&phba->pport->work_port_lock, iflags);
8472 tmo_posted = phba->pport->work_port_events & WORKER_FABRIC_BLOCK_TMO;
8473 if (!tmo_posted)
8474 phba->pport->work_port_events |= WORKER_FABRIC_BLOCK_TMO;
8475 spin_unlock_irqrestore(&phba->pport->work_port_lock, iflags);
8476
5e9d9b82
JS
8477 if (!tmo_posted)
8478 lpfc_worker_wake_up(phba);
8479 return;
92d7f7b0
JS
8480}
8481
e59058c4 8482/**
3621a710 8483 * lpfc_resume_fabric_iocbs - Issue a fabric iocb from driver internal list
e59058c4
JS
8484 * @phba: pointer to lpfc hba data structure.
8485 *
8486 * This routine issues one fabric iocb from the driver internal list to
8487 * the HBA. It first checks whether it's ready to issue one fabric iocb to
8488 * the HBA (whether there is no outstanding fabric iocb). If so, it shall
8489 * remove one pending fabric iocb from the driver internal list and invokes
8490 * lpfc_sli_issue_iocb() routine to send the fabric iocb to the HBA.
8491 **/
92d7f7b0
JS
8492static void
8493lpfc_resume_fabric_iocbs(struct lpfc_hba *phba)
8494{
8495 struct lpfc_iocbq *iocb;
8496 unsigned long iflags;
8497 int ret;
92d7f7b0
JS
8498 IOCB_t *cmd;
8499
8500repeat:
8501 iocb = NULL;
8502 spin_lock_irqsave(&phba->hbalock, iflags);
7f5f3d0d 8503 /* Post any pending iocb to the SLI layer */
92d7f7b0
JS
8504 if (atomic_read(&phba->fabric_iocb_count) == 0) {
8505 list_remove_head(&phba->fabric_iocb_list, iocb, typeof(*iocb),
8506 list);
8507 if (iocb)
7f5f3d0d 8508 /* Increment fabric iocb count to hold the position */
92d7f7b0
JS
8509 atomic_inc(&phba->fabric_iocb_count);
8510 }
8511 spin_unlock_irqrestore(&phba->hbalock, iflags);
8512 if (iocb) {
8513 iocb->fabric_iocb_cmpl = iocb->iocb_cmpl;
8514 iocb->iocb_cmpl = lpfc_cmpl_fabric_iocb;
8515 iocb->iocb_flag |= LPFC_IO_FABRIC;
8516
858c9f6c
JS
8517 lpfc_debugfs_disc_trc(iocb->vport, LPFC_DISC_TRC_ELS_CMD,
8518 "Fabric sched1: ste:x%x",
8519 iocb->vport->port_state, 0, 0);
8520
3772a991 8521 ret = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, iocb, 0);
92d7f7b0
JS
8522
8523 if (ret == IOCB_ERROR) {
8524 iocb->iocb_cmpl = iocb->fabric_iocb_cmpl;
8525 iocb->fabric_iocb_cmpl = NULL;
8526 iocb->iocb_flag &= ~LPFC_IO_FABRIC;
8527 cmd = &iocb->iocb;
8528 cmd->ulpStatus = IOSTAT_LOCAL_REJECT;
8529 cmd->un.ulpWord[4] = IOERR_SLI_ABORTED;
8530 iocb->iocb_cmpl(phba, iocb, iocb);
8531
8532 atomic_dec(&phba->fabric_iocb_count);
8533 goto repeat;
8534 }
8535 }
8536
8537 return;
8538}
8539
e59058c4 8540/**
3621a710 8541 * lpfc_unblock_fabric_iocbs - Unblock issuing fabric iocb command
e59058c4
JS
8542 * @phba: pointer to lpfc hba data structure.
8543 *
8544 * This routine unblocks the issuing fabric iocb command. The function
8545 * will clear the fabric iocb block bit and then invoke the routine
8546 * lpfc_resume_fabric_iocbs() to issue one of the pending fabric iocb
8547 * from the driver internal fabric iocb list.
8548 **/
92d7f7b0
JS
8549void
8550lpfc_unblock_fabric_iocbs(struct lpfc_hba *phba)
8551{
8552 clear_bit(FABRIC_COMANDS_BLOCKED, &phba->bit_flags);
8553
8554 lpfc_resume_fabric_iocbs(phba);
8555 return;
8556}
8557
e59058c4 8558/**
3621a710 8559 * lpfc_block_fabric_iocbs - Block issuing fabric iocb command
e59058c4
JS
8560 * @phba: pointer to lpfc hba data structure.
8561 *
8562 * This routine blocks the issuing fabric iocb for a specified amount of
8563 * time (currently 100 ms). This is done by set the fabric iocb block bit
8564 * and set up a timeout timer for 100ms. When the block bit is set, no more
8565 * fabric iocb will be issued out of the HBA.
8566 **/
92d7f7b0
JS
8567static void
8568lpfc_block_fabric_iocbs(struct lpfc_hba *phba)
8569{
8570 int blocked;
8571
8572 blocked = test_and_set_bit(FABRIC_COMANDS_BLOCKED, &phba->bit_flags);
7f5f3d0d 8573 /* Start a timer to unblock fabric iocbs after 100ms */
92d7f7b0 8574 if (!blocked)
256ec0d0
JS
8575 mod_timer(&phba->fabric_block_timer,
8576 jiffies + msecs_to_jiffies(100));
92d7f7b0
JS
8577
8578 return;
8579}
8580
e59058c4 8581/**
3621a710 8582 * lpfc_cmpl_fabric_iocb - Completion callback function for fabric iocb
e59058c4
JS
8583 * @phba: pointer to lpfc hba data structure.
8584 * @cmdiocb: pointer to lpfc command iocb data structure.
8585 * @rspiocb: pointer to lpfc response iocb data structure.
8586 *
8587 * This routine is the callback function that is put to the fabric iocb's
8588 * callback function pointer (iocb->iocb_cmpl). The original iocb's callback
8589 * function pointer has been stored in iocb->fabric_iocb_cmpl. This callback
8590 * function first restores and invokes the original iocb's callback function
8591 * and then invokes the lpfc_resume_fabric_iocbs() routine to issue the next
8592 * fabric bound iocb from the driver internal fabric iocb list onto the wire.
8593 **/
92d7f7b0
JS
8594static void
8595lpfc_cmpl_fabric_iocb(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
8596 struct lpfc_iocbq *rspiocb)
8597{
8598 struct ls_rjt stat;
8599
8600 if ((cmdiocb->iocb_flag & LPFC_IO_FABRIC) != LPFC_IO_FABRIC)
8601 BUG();
8602
8603 switch (rspiocb->iocb.ulpStatus) {
8604 case IOSTAT_NPORT_RJT:
8605 case IOSTAT_FABRIC_RJT:
8606 if (rspiocb->iocb.un.ulpWord[4] & RJT_UNAVAIL_TEMP) {
8607 lpfc_block_fabric_iocbs(phba);
ed957684 8608 }
92d7f7b0
JS
8609 break;
8610
8611 case IOSTAT_NPORT_BSY:
8612 case IOSTAT_FABRIC_BSY:
8613 lpfc_block_fabric_iocbs(phba);
8614 break;
8615
8616 case IOSTAT_LS_RJT:
8617 stat.un.lsRjtError =
8618 be32_to_cpu(rspiocb->iocb.un.ulpWord[4]);
8619 if ((stat.un.b.lsRjtRsnCode == LSRJT_UNABLE_TPC) ||
8620 (stat.un.b.lsRjtRsnCode == LSRJT_LOGICAL_BSY))
8621 lpfc_block_fabric_iocbs(phba);
8622 break;
8623 }
8624
8625 if (atomic_read(&phba->fabric_iocb_count) == 0)
8626 BUG();
8627
8628 cmdiocb->iocb_cmpl = cmdiocb->fabric_iocb_cmpl;
8629 cmdiocb->fabric_iocb_cmpl = NULL;
8630 cmdiocb->iocb_flag &= ~LPFC_IO_FABRIC;
8631 cmdiocb->iocb_cmpl(phba, cmdiocb, rspiocb);
8632
8633 atomic_dec(&phba->fabric_iocb_count);
8634 if (!test_bit(FABRIC_COMANDS_BLOCKED, &phba->bit_flags)) {
7f5f3d0d
JS
8635 /* Post any pending iocbs to HBA */
8636 lpfc_resume_fabric_iocbs(phba);
92d7f7b0
JS
8637 }
8638}
8639
e59058c4 8640/**
3621a710 8641 * lpfc_issue_fabric_iocb - Issue a fabric iocb command
e59058c4
JS
8642 * @phba: pointer to lpfc hba data structure.
8643 * @iocb: pointer to lpfc command iocb data structure.
8644 *
8645 * This routine is used as the top-level API for issuing a fabric iocb command
8646 * such as FLOGI and FDISC. To accommodate certain switch fabric, this driver
8647 * function makes sure that only one fabric bound iocb will be outstanding at
8648 * any given time. As such, this function will first check to see whether there
8649 * is already an outstanding fabric iocb on the wire. If so, it will put the
8650 * newly issued iocb onto the driver internal fabric iocb list, waiting to be
8651 * issued later. Otherwise, it will issue the iocb on the wire and update the
8652 * fabric iocb count it indicate that there is one fabric iocb on the wire.
8653 *
8654 * Note, this implementation has a potential sending out fabric IOCBs out of
8655 * order. The problem is caused by the construction of the "ready" boolen does
8656 * not include the condition that the internal fabric IOCB list is empty. As
8657 * such, it is possible a fabric IOCB issued by this routine might be "jump"
8658 * ahead of the fabric IOCBs in the internal list.
8659 *
8660 * Return code
8661 * IOCB_SUCCESS - either fabric iocb put on the list or issued successfully
8662 * IOCB_ERROR - failed to issue fabric iocb
8663 **/
a6ababd2 8664static int
92d7f7b0
JS
8665lpfc_issue_fabric_iocb(struct lpfc_hba *phba, struct lpfc_iocbq *iocb)
8666{
8667 unsigned long iflags;
92d7f7b0
JS
8668 int ready;
8669 int ret;
8670
8671 if (atomic_read(&phba->fabric_iocb_count) > 1)
8672 BUG();
8673
8674 spin_lock_irqsave(&phba->hbalock, iflags);
8675 ready = atomic_read(&phba->fabric_iocb_count) == 0 &&
8676 !test_bit(FABRIC_COMANDS_BLOCKED, &phba->bit_flags);
8677
7f5f3d0d
JS
8678 if (ready)
8679 /* Increment fabric iocb count to hold the position */
8680 atomic_inc(&phba->fabric_iocb_count);
92d7f7b0
JS
8681 spin_unlock_irqrestore(&phba->hbalock, iflags);
8682 if (ready) {
8683 iocb->fabric_iocb_cmpl = iocb->iocb_cmpl;
8684 iocb->iocb_cmpl = lpfc_cmpl_fabric_iocb;
8685 iocb->iocb_flag |= LPFC_IO_FABRIC;
8686
858c9f6c
JS
8687 lpfc_debugfs_disc_trc(iocb->vport, LPFC_DISC_TRC_ELS_CMD,
8688 "Fabric sched2: ste:x%x",
8689 iocb->vport->port_state, 0, 0);
8690
3772a991 8691 ret = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, iocb, 0);
92d7f7b0
JS
8692
8693 if (ret == IOCB_ERROR) {
8694 iocb->iocb_cmpl = iocb->fabric_iocb_cmpl;
8695 iocb->fabric_iocb_cmpl = NULL;
8696 iocb->iocb_flag &= ~LPFC_IO_FABRIC;
8697 atomic_dec(&phba->fabric_iocb_count);
8698 }
8699 } else {
8700 spin_lock_irqsave(&phba->hbalock, iflags);
8701 list_add_tail(&iocb->list, &phba->fabric_iocb_list);
8702 spin_unlock_irqrestore(&phba->hbalock, iflags);
8703 ret = IOCB_SUCCESS;
8704 }
8705 return ret;
8706}
8707
e59058c4 8708/**
3621a710 8709 * lpfc_fabric_abort_vport - Abort a vport's iocbs from driver fabric iocb list
e59058c4
JS
8710 * @vport: pointer to a virtual N_Port data structure.
8711 *
8712 * This routine aborts all the IOCBs associated with a @vport from the
8713 * driver internal fabric IOCB list. The list contains fabric IOCBs to be
8714 * issued to the ELS IOCB ring. This abort function walks the fabric IOCB
8715 * list, removes each IOCB associated with the @vport off the list, set the
8716 * status feild to IOSTAT_LOCAL_REJECT, and invokes the callback function
8717 * associated with the IOCB.
8718 **/
a6ababd2 8719static void lpfc_fabric_abort_vport(struct lpfc_vport *vport)
92d7f7b0
JS
8720{
8721 LIST_HEAD(completions);
8722 struct lpfc_hba *phba = vport->phba;
8723 struct lpfc_iocbq *tmp_iocb, *piocb;
92d7f7b0
JS
8724
8725 spin_lock_irq(&phba->hbalock);
8726 list_for_each_entry_safe(piocb, tmp_iocb, &phba->fabric_iocb_list,
8727 list) {
8728
8729 if (piocb->vport != vport)
8730 continue;
8731
8732 list_move_tail(&piocb->list, &completions);
8733 }
8734 spin_unlock_irq(&phba->hbalock);
8735
a257bf90
JS
8736 /* Cancel all the IOCBs from the completions list */
8737 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
8738 IOERR_SLI_ABORTED);
92d7f7b0
JS
8739}
8740
e59058c4 8741/**
3621a710 8742 * lpfc_fabric_abort_nport - Abort a ndlp's iocbs from driver fabric iocb list
e59058c4
JS
8743 * @ndlp: pointer to a node-list data structure.
8744 *
8745 * This routine aborts all the IOCBs associated with an @ndlp from the
8746 * driver internal fabric IOCB list. The list contains fabric IOCBs to be
8747 * issued to the ELS IOCB ring. This abort function walks the fabric IOCB
8748 * list, removes each IOCB associated with the @ndlp off the list, set the
8749 * status feild to IOSTAT_LOCAL_REJECT, and invokes the callback function
8750 * associated with the IOCB.
8751 **/
92d7f7b0
JS
8752void lpfc_fabric_abort_nport(struct lpfc_nodelist *ndlp)
8753{
8754 LIST_HEAD(completions);
a257bf90 8755 struct lpfc_hba *phba = ndlp->phba;
92d7f7b0
JS
8756 struct lpfc_iocbq *tmp_iocb, *piocb;
8757 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
92d7f7b0
JS
8758
8759 spin_lock_irq(&phba->hbalock);
8760 list_for_each_entry_safe(piocb, tmp_iocb, &phba->fabric_iocb_list,
8761 list) {
8762 if ((lpfc_check_sli_ndlp(phba, pring, piocb, ndlp))) {
8763
8764 list_move_tail(&piocb->list, &completions);
ed957684 8765 }
dea3101e 8766 }
92d7f7b0
JS
8767 spin_unlock_irq(&phba->hbalock);
8768
a257bf90
JS
8769 /* Cancel all the IOCBs from the completions list */
8770 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
8771 IOERR_SLI_ABORTED);
92d7f7b0
JS
8772}
8773
e59058c4 8774/**
3621a710 8775 * lpfc_fabric_abort_hba - Abort all iocbs on driver fabric iocb list
e59058c4
JS
8776 * @phba: pointer to lpfc hba data structure.
8777 *
8778 * This routine aborts all the IOCBs currently on the driver internal
8779 * fabric IOCB list. The list contains fabric IOCBs to be issued to the ELS
8780 * IOCB ring. This function takes the entire IOCB list off the fabric IOCB
8781 * list, removes IOCBs off the list, set the status feild to
8782 * IOSTAT_LOCAL_REJECT, and invokes the callback function associated with
8783 * the IOCB.
8784 **/
92d7f7b0
JS
8785void lpfc_fabric_abort_hba(struct lpfc_hba *phba)
8786{
8787 LIST_HEAD(completions);
92d7f7b0
JS
8788
8789 spin_lock_irq(&phba->hbalock);
8790 list_splice_init(&phba->fabric_iocb_list, &completions);
8791 spin_unlock_irq(&phba->hbalock);
8792
a257bf90
JS
8793 /* Cancel all the IOCBs from the completions list */
8794 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
8795 IOERR_SLI_ABORTED);
dea3101e 8796}
6fb120a7 8797
1151e3ec
JS
8798/**
8799 * lpfc_sli4_vport_delete_els_xri_aborted -Remove all ndlp references for vport
8800 * @vport: pointer to lpfc vport data structure.
8801 *
8802 * This routine is invoked by the vport cleanup for deletions and the cleanup
8803 * for an ndlp on removal.
8804 **/
8805void
8806lpfc_sli4_vport_delete_els_xri_aborted(struct lpfc_vport *vport)
8807{
8808 struct lpfc_hba *phba = vport->phba;
8809 struct lpfc_sglq *sglq_entry = NULL, *sglq_next = NULL;
8810 unsigned long iflag = 0;
8811
8812 spin_lock_irqsave(&phba->hbalock, iflag);
8813 spin_lock(&phba->sli4_hba.abts_sgl_list_lock);
8814 list_for_each_entry_safe(sglq_entry, sglq_next,
8815 &phba->sli4_hba.lpfc_abts_els_sgl_list, list) {
8816 if (sglq_entry->ndlp && sglq_entry->ndlp->vport == vport)
8817 sglq_entry->ndlp = NULL;
8818 }
8819 spin_unlock(&phba->sli4_hba.abts_sgl_list_lock);
8820 spin_unlock_irqrestore(&phba->hbalock, iflag);
8821 return;
8822}
8823
6fb120a7
JS
8824/**
8825 * lpfc_sli4_els_xri_aborted - Slow-path process of els xri abort
8826 * @phba: pointer to lpfc hba data structure.
8827 * @axri: pointer to the els xri abort wcqe structure.
8828 *
8829 * This routine is invoked by the worker thread to process a SLI4 slow-path
8830 * ELS aborted xri.
8831 **/
8832void
8833lpfc_sli4_els_xri_aborted(struct lpfc_hba *phba,
8834 struct sli4_wcqe_xri_aborted *axri)
8835{
8836 uint16_t xri = bf_get(lpfc_wcqe_xa_xri, axri);
19ca7609 8837 uint16_t rxid = bf_get(lpfc_wcqe_xa_remote_xid, axri);
7851fe2c 8838 uint16_t lxri = 0;
19ca7609 8839
6fb120a7
JS
8840 struct lpfc_sglq *sglq_entry = NULL, *sglq_next = NULL;
8841 unsigned long iflag = 0;
19ca7609 8842 struct lpfc_nodelist *ndlp;
589a52d6 8843 struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
6fb120a7 8844
0f65ff68
JS
8845 spin_lock_irqsave(&phba->hbalock, iflag);
8846 spin_lock(&phba->sli4_hba.abts_sgl_list_lock);
6fb120a7
JS
8847 list_for_each_entry_safe(sglq_entry, sglq_next,
8848 &phba->sli4_hba.lpfc_abts_els_sgl_list, list) {
8849 if (sglq_entry->sli4_xritag == xri) {
8850 list_del(&sglq_entry->list);
19ca7609
JS
8851 ndlp = sglq_entry->ndlp;
8852 sglq_entry->ndlp = NULL;
dafe8cea 8853 spin_lock(&pring->ring_lock);
6fb120a7
JS
8854 list_add_tail(&sglq_entry->list,
8855 &phba->sli4_hba.lpfc_sgl_list);
0f65ff68 8856 sglq_entry->state = SGL_FREED;
dafe8cea 8857 spin_unlock(&pring->ring_lock);
0f65ff68 8858 spin_unlock(&phba->sli4_hba.abts_sgl_list_lock);
6fb120a7 8859 spin_unlock_irqrestore(&phba->hbalock, iflag);
ee0f4fe1
JS
8860 lpfc_set_rrq_active(phba, ndlp,
8861 sglq_entry->sli4_lxritag,
8862 rxid, 1);
589a52d6
JS
8863
8864 /* Check if TXQ queue needs to be serviced */
0e9bb8d7 8865 if (!(list_empty(&pring->txq)))
589a52d6 8866 lpfc_worker_wake_up(phba);
6fb120a7
JS
8867 return;
8868 }
8869 }
0f65ff68 8870 spin_unlock(&phba->sli4_hba.abts_sgl_list_lock);
7851fe2c
JS
8871 lxri = lpfc_sli4_xri_inrange(phba, xri);
8872 if (lxri == NO_XRI) {
8873 spin_unlock_irqrestore(&phba->hbalock, iflag);
8874 return;
8875 }
dafe8cea 8876 spin_lock(&pring->ring_lock);
7851fe2c 8877 sglq_entry = __lpfc_get_active_sglq(phba, lxri);
0f65ff68 8878 if (!sglq_entry || (sglq_entry->sli4_xritag != xri)) {
dafe8cea 8879 spin_unlock(&pring->ring_lock);
0f65ff68
JS
8880 spin_unlock_irqrestore(&phba->hbalock, iflag);
8881 return;
8882 }
8883 sglq_entry->state = SGL_XRI_ABORTED;
dafe8cea 8884 spin_unlock(&pring->ring_lock);
0f65ff68
JS
8885 spin_unlock_irqrestore(&phba->hbalock, iflag);
8886 return;
6fb120a7 8887}
086a345f
JS
8888
8889/* lpfc_sli_abts_recover_port - Recover a port that failed a BLS_ABORT req.
8890 * @vport: pointer to virtual port object.
8891 * @ndlp: nodelist pointer for the impacted node.
8892 *
8893 * The driver calls this routine in response to an SLI4 XRI ABORT CQE
8894 * or an SLI3 ASYNC_STATUS_CN event from the port. For either event,
8895 * the driver is required to send a LOGO to the remote node before it
8896 * attempts to recover its login to the remote node.
8897 */
8898void
8899lpfc_sli_abts_recover_port(struct lpfc_vport *vport,
8900 struct lpfc_nodelist *ndlp)
8901{
8902 struct Scsi_Host *shost;
8903 struct lpfc_hba *phba;
8904 unsigned long flags = 0;
8905
8906 shost = lpfc_shost_from_vport(vport);
8907 phba = vport->phba;
8908 if (ndlp->nlp_state != NLP_STE_MAPPED_NODE) {
8909 lpfc_printf_log(phba, KERN_INFO,
8910 LOG_SLI, "3093 No rport recovery needed. "
8911 "rport in state 0x%x\n", ndlp->nlp_state);
8912 return;
8913 }
8914 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
8915 "3094 Start rport recovery on shost id 0x%x "
8916 "fc_id 0x%06x vpi 0x%x rpi 0x%x state 0x%x "
8917 "flags 0x%x\n",
8918 shost->host_no, ndlp->nlp_DID,
8919 vport->vpi, ndlp->nlp_rpi, ndlp->nlp_state,
8920 ndlp->nlp_flag);
8921 /*
8922 * The rport is not responding. Remove the FCP-2 flag to prevent
8923 * an ADISC in the follow-up recovery code.
8924 */
8925 spin_lock_irqsave(shost->host_lock, flags);
8926 ndlp->nlp_fcp_info &= ~NLP_FCP_2_DEVICE;
8927 spin_unlock_irqrestore(shost->host_lock, flags);
8928 lpfc_issue_els_logo(vport, ndlp, 0);
8929 lpfc_nlp_set_state(vport, ndlp, NLP_STE_LOGO_ISSUE);
8930}
8931