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