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