1 /*******************************************************************
2 * This file is part of the Emulex Linux Device Driver for *
3 * Fibre Channel Host Bus Adapters. *
4 * Copyright (C) 2017-2020 Broadcom. All Rights Reserved. The term *
5 * “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. *
6 * Copyright (C) 2004-2016 Emulex. All rights reserved. *
7 * EMULEX and SLI are trademarks of Emulex. *
9 * Portions Copyright (C) 2004-2005 Christoph Hellwig *
11 * This program is free software; you can redistribute it and/or *
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. *
22 *******************************************************************/
23 /* See Fibre Channel protocol T11 FC-LS for details */
24 #include <linux/blkdev.h>
25 #include <linux/pci.h>
26 #include <linux/slab.h>
27 #include <linux/interrupt.h>
29 #include <scsi/scsi.h>
30 #include <scsi/scsi_device.h>
31 #include <scsi/scsi_host.h>
32 #include <scsi/scsi_transport_fc.h>
33 #include <uapi/scsi/fc/fc_fs.h>
34 #include <uapi/scsi/fc/fc_els.h>
39 #include "lpfc_sli4.h"
41 #include "lpfc_disc.h"
42 #include "lpfc_scsi.h"
44 #include "lpfc_logmsg.h"
45 #include "lpfc_crtn.h"
46 #include "lpfc_vport.h"
47 #include "lpfc_debugfs.h"
49 static int lpfc_els_retry(struct lpfc_hba
*, struct lpfc_iocbq
*,
51 static void lpfc_cmpl_fabric_iocb(struct lpfc_hba
*, struct lpfc_iocbq
*,
53 static void lpfc_fabric_abort_vport(struct lpfc_vport
*vport
);
54 static int lpfc_issue_els_fdisc(struct lpfc_vport
*vport
,
55 struct lpfc_nodelist
*ndlp
, uint8_t retry
);
56 static int lpfc_issue_fabric_iocb(struct lpfc_hba
*phba
,
57 struct lpfc_iocbq
*iocb
);
59 static int lpfc_max_els_tries
= 3;
62 * lpfc_els_chk_latt - Check host link attention event for a vport
63 * @vport: pointer to a host virtual N_Port data structure.
65 * This routine checks whether there is an outstanding host link
66 * attention event during the discovery process with the @vport. It is done
67 * by reading the HBA's Host Attention (HA) register. If there is any host
68 * link attention events during this @vport's discovery process, the @vport
69 * shall be marked as FC_ABORT_DISCOVERY, a host link attention clear shall
70 * be issued if the link state is not already in host link cleared state,
71 * and a return code shall indicate whether the host link attention event
74 * Note that, if either the host link is in state LPFC_LINK_DOWN or @vport
75 * state in LPFC_VPORT_READY, the request for checking host link attention
76 * event will be ignored and a return code shall indicate no host link
77 * attention event had happened.
80 * 0 - no host link attention event happened
81 * 1 - host link attention event happened
84 lpfc_els_chk_latt(struct lpfc_vport
*vport
)
86 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
87 struct lpfc_hba
*phba
= vport
->phba
;
90 if (vport
->port_state
>= LPFC_VPORT_READY
||
91 phba
->link_state
== LPFC_LINK_DOWN
||
92 phba
->sli_rev
> LPFC_SLI_REV3
)
95 /* Read the HBA Host Attention Register */
96 if (lpfc_readl(phba
->HAregaddr
, &ha_copy
))
99 if (!(ha_copy
& HA_LATT
))
102 /* Pending Link Event during Discovery */
103 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_TRACE_EVENT
,
104 "0237 Pending Link Event during "
105 "Discovery: State x%x\n",
106 phba
->pport
->port_state
);
108 /* CLEAR_LA should re-enable link attention events and
109 * we should then immediately take a LATT event. The
110 * LATT processing should call lpfc_linkdown() which
111 * will cleanup any left over in-progress discovery
114 spin_lock_irq(shost
->host_lock
);
115 vport
->fc_flag
|= FC_ABORT_DISCOVERY
;
116 spin_unlock_irq(shost
->host_lock
);
118 if (phba
->link_state
!= LPFC_CLEAR_LA
)
119 lpfc_issue_clear_la(phba
, vport
);
125 * lpfc_prep_els_iocb - Allocate and prepare a lpfc iocb data structure
126 * @vport: pointer to a host virtual N_Port data structure.
127 * @expectRsp: flag indicating whether response is expected.
128 * @cmdSize: size of the ELS command.
129 * @retry: number of retries to the command IOCB when it fails.
130 * @ndlp: pointer to a node-list data structure.
131 * @did: destination identifier.
132 * @elscmd: the ELS command code.
134 * This routine is used for allocating a lpfc-IOCB data structure from
135 * the driver lpfc-IOCB free-list and prepare the IOCB with the parameters
136 * passed into the routine for discovery state machine to issue an Extended
137 * Link Service (ELS) commands. It is a generic lpfc-IOCB allocation
138 * and preparation routine that is used by all the discovery state machine
139 * routines and the ELS command-specific fields will be later set up by
140 * the individual discovery machine routines after calling this routine
141 * allocating and preparing a generic IOCB data structure. It fills in the
142 * Buffer Descriptor Entries (BDEs), allocates buffers for both command
143 * payload and response payload (if expected). The reference count on the
144 * ndlp is incremented by 1 and the reference to the ndlp is put into
145 * context1 of the IOCB data structure for this IOCB to hold the ndlp
146 * reference for the command's callback function to access later.
149 * Pointer to the newly allocated/prepared els iocb data structure
150 * NULL - when els iocb data structure allocation/preparation failed
153 lpfc_prep_els_iocb(struct lpfc_vport
*vport
, uint8_t expectRsp
,
154 uint16_t cmdSize
, uint8_t retry
,
155 struct lpfc_nodelist
*ndlp
, uint32_t did
,
158 struct lpfc_hba
*phba
= vport
->phba
;
159 struct lpfc_iocbq
*elsiocb
;
160 struct lpfc_dmabuf
*pcmd
, *prsp
, *pbuflist
;
161 struct ulp_bde64
*bpl
;
165 if (!lpfc_is_link_up(phba
))
168 /* Allocate buffer for command iocb */
169 elsiocb
= lpfc_sli_get_iocbq(phba
);
175 * If this command is for fabric controller and HBA running
176 * in FIP mode send FLOGI, FDISC and LOGO as FIP frames.
178 if ((did
== Fabric_DID
) &&
179 (phba
->hba_flag
& HBA_FIP_SUPPORT
) &&
180 ((elscmd
== ELS_CMD_FLOGI
) ||
181 (elscmd
== ELS_CMD_FDISC
) ||
182 (elscmd
== ELS_CMD_LOGO
)))
185 elsiocb
->iocb_flag
|=
186 ((LPFC_ELS_ID_FLOGI
<< LPFC_FIP_ELS_ID_SHIFT
)
187 & LPFC_FIP_ELS_ID_MASK
);
190 elsiocb
->iocb_flag
|=
191 ((LPFC_ELS_ID_FDISC
<< LPFC_FIP_ELS_ID_SHIFT
)
192 & LPFC_FIP_ELS_ID_MASK
);
195 elsiocb
->iocb_flag
|=
196 ((LPFC_ELS_ID_LOGO
<< LPFC_FIP_ELS_ID_SHIFT
)
197 & LPFC_FIP_ELS_ID_MASK
);
201 elsiocb
->iocb_flag
&= ~LPFC_FIP_ELS_ID_MASK
;
203 icmd
= &elsiocb
->iocb
;
205 /* fill in BDEs for command */
206 /* Allocate buffer for command payload */
207 pcmd
= kmalloc(sizeof(struct lpfc_dmabuf
), GFP_KERNEL
);
209 pcmd
->virt
= lpfc_mbuf_alloc(phba
, MEM_PRI
, &pcmd
->phys
);
210 if (!pcmd
|| !pcmd
->virt
)
211 goto els_iocb_free_pcmb_exit
;
213 INIT_LIST_HEAD(&pcmd
->list
);
215 /* Allocate buffer for response payload */
217 prsp
= kmalloc(sizeof(struct lpfc_dmabuf
), GFP_KERNEL
);
219 prsp
->virt
= lpfc_mbuf_alloc(phba
, MEM_PRI
,
221 if (!prsp
|| !prsp
->virt
)
222 goto els_iocb_free_prsp_exit
;
223 INIT_LIST_HEAD(&prsp
->list
);
227 /* Allocate buffer for Buffer ptr list */
228 pbuflist
= kmalloc(sizeof(struct lpfc_dmabuf
), GFP_KERNEL
);
230 pbuflist
->virt
= lpfc_mbuf_alloc(phba
, MEM_PRI
,
232 if (!pbuflist
|| !pbuflist
->virt
)
233 goto els_iocb_free_pbuf_exit
;
235 INIT_LIST_HEAD(&pbuflist
->list
);
238 icmd
->un
.elsreq64
.bdl
.addrHigh
= putPaddrHigh(pbuflist
->phys
);
239 icmd
->un
.elsreq64
.bdl
.addrLow
= putPaddrLow(pbuflist
->phys
);
240 icmd
->un
.elsreq64
.bdl
.bdeFlags
= BUFF_TYPE_BLP_64
;
241 icmd
->un
.elsreq64
.bdl
.bdeSize
= (2 * sizeof(struct ulp_bde64
));
243 icmd
->un
.elsreq64
.remoteID
= did
; /* DID */
244 icmd
->ulpCommand
= CMD_ELS_REQUEST64_CR
;
245 if (elscmd
== ELS_CMD_FLOGI
)
246 icmd
->ulpTimeout
= FF_DEF_RATOV
* 2;
247 else if (elscmd
== ELS_CMD_LOGO
)
248 icmd
->ulpTimeout
= phba
->fc_ratov
;
250 icmd
->ulpTimeout
= phba
->fc_ratov
* 2;
252 icmd
->un
.xseq64
.bdl
.addrHigh
= putPaddrHigh(pbuflist
->phys
);
253 icmd
->un
.xseq64
.bdl
.addrLow
= putPaddrLow(pbuflist
->phys
);
254 icmd
->un
.xseq64
.bdl
.bdeFlags
= BUFF_TYPE_BLP_64
;
255 icmd
->un
.xseq64
.bdl
.bdeSize
= sizeof(struct ulp_bde64
);
256 icmd
->un
.xseq64
.xmit_els_remoteID
= did
; /* DID */
257 icmd
->ulpCommand
= CMD_XMIT_ELS_RSP64_CX
;
259 icmd
->ulpBdeCount
= 1;
261 icmd
->ulpClass
= CLASS3
;
264 * If we have NPIV enabled, we want to send ELS traffic by VPI.
265 * For SLI4, since the driver controls VPIs we also want to include
266 * all ELS pt2pt protocol traffic as well.
268 if ((phba
->sli3_options
& LPFC_SLI3_NPIV_ENABLED
) ||
269 ((phba
->sli_rev
== LPFC_SLI_REV4
) &&
270 (vport
->fc_flag
& FC_PT2PT
))) {
273 icmd
->un
.elsreq64
.myID
= vport
->fc_myDID
;
275 /* For ELS_REQUEST64_CR, use the VPI by default */
276 icmd
->ulpContext
= phba
->vpi_ids
[vport
->vpi
];
280 /* The CT field must be 0=INVALID_RPI for the ECHO cmd */
281 if (elscmd
== ELS_CMD_ECHO
)
282 icmd
->ulpCt_l
= 0; /* context = invalid RPI */
284 icmd
->ulpCt_l
= 1; /* context = VPI */
287 bpl
= (struct ulp_bde64
*) pbuflist
->virt
;
288 bpl
->addrLow
= le32_to_cpu(putPaddrLow(pcmd
->phys
));
289 bpl
->addrHigh
= le32_to_cpu(putPaddrHigh(pcmd
->phys
));
290 bpl
->tus
.f
.bdeSize
= cmdSize
;
291 bpl
->tus
.f
.bdeFlags
= 0;
292 bpl
->tus
.w
= le32_to_cpu(bpl
->tus
.w
);
296 bpl
->addrLow
= le32_to_cpu(putPaddrLow(prsp
->phys
));
297 bpl
->addrHigh
= le32_to_cpu(putPaddrHigh(prsp
->phys
));
298 bpl
->tus
.f
.bdeSize
= FCELSSIZE
;
299 bpl
->tus
.f
.bdeFlags
= BUFF_TYPE_BDE_64
;
300 bpl
->tus
.w
= le32_to_cpu(bpl
->tus
.w
);
303 elsiocb
->context2
= pcmd
;
304 elsiocb
->context3
= pbuflist
;
305 elsiocb
->retry
= retry
;
306 elsiocb
->vport
= vport
;
307 elsiocb
->drvrTimeout
= (phba
->fc_ratov
<< 1) + LPFC_DRVR_TIMEOUT
;
310 list_add(&prsp
->list
, &pcmd
->list
);
313 /* Xmit ELS command <elsCmd> to remote NPORT <did> */
314 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_ELS
,
315 "0116 Xmit ELS command x%x to remote "
316 "NPORT x%x I/O tag: x%x, port state:x%x "
317 "rpi x%x fc_flag:x%x\n",
318 elscmd
, did
, elsiocb
->iotag
,
319 vport
->port_state
, ndlp
->nlp_rpi
,
322 /* Xmit ELS response <elsCmd> to remote NPORT <did> */
323 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_ELS
,
324 "0117 Xmit ELS response x%x to remote "
325 "NPORT x%x I/O tag: x%x, size: x%x "
326 "port_state x%x rpi x%x fc_flag x%x\n",
327 elscmd
, ndlp
->nlp_DID
, elsiocb
->iotag
,
328 cmdSize
, vport
->port_state
,
329 ndlp
->nlp_rpi
, vport
->fc_flag
);
333 els_iocb_free_pbuf_exit
:
335 lpfc_mbuf_free(phba
, prsp
->virt
, prsp
->phys
);
338 els_iocb_free_prsp_exit
:
339 lpfc_mbuf_free(phba
, pcmd
->virt
, pcmd
->phys
);
342 els_iocb_free_pcmb_exit
:
344 lpfc_sli_release_iocbq(phba
, elsiocb
);
349 * lpfc_issue_fabric_reglogin - Issue fabric registration login for a vport
350 * @vport: pointer to a host virtual N_Port data structure.
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
361 * 0 - successfully issued fabric registration login for @vport
362 * -ENXIO -- failed to issue fabric registration login for @vport
365 lpfc_issue_fabric_reglogin(struct lpfc_vport
*vport
)
367 struct lpfc_hba
*phba
= vport
->phba
;
369 struct lpfc_dmabuf
*mp
;
370 struct lpfc_nodelist
*ndlp
;
371 struct serv_parm
*sp
;
375 sp
= &phba
->fc_fabparam
;
376 ndlp
= lpfc_findnode_did(vport
, Fabric_DID
);
382 mbox
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
388 vport
->port_state
= LPFC_FABRIC_CFG_LINK
;
389 lpfc_config_link(phba
, mbox
);
390 mbox
->mbox_cmpl
= lpfc_sli_def_mbox_cmpl
;
393 rc
= lpfc_sli_issue_mbox(phba
, mbox
, MBX_NOWAIT
);
394 if (rc
== MBX_NOT_FINISHED
) {
399 mbox
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
404 rc
= lpfc_reg_rpi(phba
, vport
->vpi
, Fabric_DID
, (uint8_t *)sp
, mbox
,
411 mbox
->mbox_cmpl
= lpfc_mbx_cmpl_fabric_reg_login
;
413 /* increment the reference count on ndlp to hold reference
414 * for the callback routine.
416 mbox
->ctx_ndlp
= lpfc_nlp_get(ndlp
);
417 if (!mbox
->ctx_ndlp
) {
422 rc
= lpfc_sli_issue_mbox(phba
, mbox
, MBX_NOWAIT
);
423 if (rc
== MBX_NOT_FINISHED
) {
425 goto fail_issue_reg_login
;
430 fail_issue_reg_login
:
431 /* decrement the reference count on ndlp just incremented
432 * for the failed mbox command.
436 mp
= (struct lpfc_dmabuf
*)mbox
->ctx_buf
;
437 lpfc_mbuf_free(phba
, mp
->virt
, mp
->phys
);
440 mempool_free(mbox
, phba
->mbox_mem_pool
);
443 lpfc_vport_set_state(vport
, FC_VPORT_FAILED
);
444 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_TRACE_EVENT
,
445 "0249 Cannot issue Register Fabric login: Err %d\n",
451 * lpfc_issue_reg_vfi - Register VFI for this vport's fabric login
452 * @vport: pointer to a host virtual N_Port data structure.
454 * This routine issues a REG_VFI mailbox for the vfi, vpi, fcfi triplet for
455 * the @vport. This mailbox command is necessary for SLI4 port only.
458 * 0 - successfully issued REG_VFI for @vport
459 * A failure code otherwise.
462 lpfc_issue_reg_vfi(struct lpfc_vport
*vport
)
464 struct lpfc_hba
*phba
= vport
->phba
;
465 LPFC_MBOXQ_t
*mboxq
= NULL
;
466 struct lpfc_nodelist
*ndlp
;
467 struct lpfc_dmabuf
*dmabuf
= NULL
;
470 /* move forward in case of SLI4 FC port loopback test and pt2pt mode */
471 if ((phba
->sli_rev
== LPFC_SLI_REV4
) &&
472 !(phba
->link_flag
& LS_LOOPBACK_MODE
) &&
473 !(vport
->fc_flag
& FC_PT2PT
)) {
474 ndlp
= lpfc_findnode_did(vport
, Fabric_DID
);
481 mboxq
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
487 /* Supply CSP's only if we are fabric connect or pt-to-pt connect */
488 if ((vport
->fc_flag
& FC_FABRIC
) || (vport
->fc_flag
& FC_PT2PT
)) {
489 dmabuf
= kzalloc(sizeof(struct lpfc_dmabuf
), GFP_KERNEL
);
494 dmabuf
->virt
= lpfc_mbuf_alloc(phba
, MEM_PRI
, &dmabuf
->phys
);
499 memcpy(dmabuf
->virt
, &phba
->fc_fabparam
,
500 sizeof(struct serv_parm
));
503 vport
->port_state
= LPFC_FABRIC_CFG_LINK
;
505 lpfc_reg_vfi(mboxq
, vport
, dmabuf
->phys
);
507 lpfc_reg_vfi(mboxq
, vport
, 0);
509 mboxq
->mbox_cmpl
= lpfc_mbx_cmpl_reg_vfi
;
510 mboxq
->vport
= vport
;
511 mboxq
->ctx_buf
= dmabuf
;
512 rc
= lpfc_sli_issue_mbox(phba
, mboxq
, MBX_NOWAIT
);
513 if (rc
== MBX_NOT_FINISHED
) {
521 mempool_free(mboxq
, phba
->mbox_mem_pool
);
524 lpfc_mbuf_free(phba
, dmabuf
->virt
, dmabuf
->phys
);
528 lpfc_vport_set_state(vport
, FC_VPORT_FAILED
);
529 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_TRACE_EVENT
,
530 "0289 Issue Register VFI failed: Err %d\n", rc
);
535 * lpfc_issue_unreg_vfi - Unregister VFI for this vport's fabric login
536 * @vport: pointer to a host virtual N_Port data structure.
538 * This routine issues a UNREG_VFI mailbox with the vfi, vpi, fcfi triplet for
539 * the @vport. This mailbox command is necessary for SLI4 port only.
542 * 0 - successfully issued REG_VFI for @vport
543 * A failure code otherwise.
546 lpfc_issue_unreg_vfi(struct lpfc_vport
*vport
)
548 struct lpfc_hba
*phba
= vport
->phba
;
549 struct Scsi_Host
*shost
;
553 mboxq
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
555 lpfc_printf_log(phba
, KERN_ERR
, LOG_TRACE_EVENT
,
556 "2556 UNREG_VFI mbox allocation failed"
557 "HBA state x%x\n", phba
->pport
->port_state
);
561 lpfc_unreg_vfi(mboxq
, vport
);
562 mboxq
->vport
= vport
;
563 mboxq
->mbox_cmpl
= lpfc_unregister_vfi_cmpl
;
565 rc
= lpfc_sli_issue_mbox(phba
, mboxq
, MBX_NOWAIT
);
566 if (rc
== MBX_NOT_FINISHED
) {
567 lpfc_printf_log(phba
, KERN_ERR
, LOG_TRACE_EVENT
,
568 "2557 UNREG_VFI issue mbox failed rc x%x "
570 rc
, phba
->pport
->port_state
);
571 mempool_free(mboxq
, phba
->mbox_mem_pool
);
575 shost
= lpfc_shost_from_vport(vport
);
576 spin_lock_irq(shost
->host_lock
);
577 vport
->fc_flag
&= ~FC_VFI_REGISTERED
;
578 spin_unlock_irq(shost
->host_lock
);
583 * lpfc_check_clean_addr_bit - Check whether assigned FCID is clean.
584 * @vport: pointer to a host virtual N_Port data structure.
585 * @sp: pointer to service parameter data structure.
587 * This routine is called from FLOGI/FDISC completion handler functions.
588 * lpfc_check_clean_addr_bit return 1 when FCID/Fabric portname/ Fabric
589 * node nodename is changed in the completion service parameter else return
590 * 0. This function also set flag in the vport data structure to delay
591 * NP_Port discovery after the FLOGI/FDISC completion if Clean address bit
592 * in FLOGI/FDISC response is cleared and FCID/Fabric portname/ Fabric
593 * node nodename is changed in the completion service parameter.
596 * 0 - FCID and Fabric Nodename and Fabric portname is not changed.
597 * 1 - FCID or Fabric Nodename or Fabric portname is changed.
601 lpfc_check_clean_addr_bit(struct lpfc_vport
*vport
,
602 struct serv_parm
*sp
)
604 struct lpfc_hba
*phba
= vport
->phba
;
605 uint8_t fabric_param_changed
= 0;
606 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
608 if ((vport
->fc_prevDID
!= vport
->fc_myDID
) ||
609 memcmp(&vport
->fabric_portname
, &sp
->portName
,
610 sizeof(struct lpfc_name
)) ||
611 memcmp(&vport
->fabric_nodename
, &sp
->nodeName
,
612 sizeof(struct lpfc_name
)) ||
613 (vport
->vport_flag
& FAWWPN_PARAM_CHG
)) {
614 fabric_param_changed
= 1;
615 vport
->vport_flag
&= ~FAWWPN_PARAM_CHG
;
618 * Word 1 Bit 31 in common service parameter is overloaded.
619 * Word 1 Bit 31 in FLOGI request is multiple NPort request
620 * Word 1 Bit 31 in FLOGI response is clean address bit
622 * If fabric parameter is changed and clean address bit is
623 * cleared delay nport discovery if
624 * - vport->fc_prevDID != 0 (not initial discovery) OR
625 * - lpfc_delay_discovery module parameter is set.
627 if (fabric_param_changed
&& !sp
->cmn
.clean_address_bit
&&
628 (vport
->fc_prevDID
|| phba
->cfg_delay_discovery
)) {
629 spin_lock_irq(shost
->host_lock
);
630 vport
->fc_flag
|= FC_DISC_DELAYED
;
631 spin_unlock_irq(shost
->host_lock
);
634 return fabric_param_changed
;
639 * lpfc_cmpl_els_flogi_fabric - Completion function for flogi to a fabric port
640 * @vport: pointer to a host virtual N_Port data structure.
641 * @ndlp: pointer to a node-list data structure.
642 * @sp: pointer to service parameter data structure.
643 * @irsp: pointer to the IOCB within the lpfc response IOCB.
645 * This routine is invoked by the lpfc_cmpl_els_flogi() completion callback
646 * function to handle the completion of a Fabric Login (FLOGI) into a fabric
647 * port in a fabric topology. It properly sets up the parameters to the @ndlp
648 * from the IOCB response. It also check the newly assigned N_Port ID to the
649 * @vport against the previously assigned N_Port ID. If it is different from
650 * the previously assigned Destination ID (DID), the lpfc_unreg_rpi() routine
651 * is invoked on all the remaining nodes with the @vport to unregister the
652 * Remote Port Indicators (RPIs). Finally, the lpfc_issue_fabric_reglogin()
653 * is invoked to register login to the fabric.
656 * 0 - Success (currently, always return 0)
659 lpfc_cmpl_els_flogi_fabric(struct lpfc_vport
*vport
, struct lpfc_nodelist
*ndlp
,
660 struct serv_parm
*sp
, IOCB_t
*irsp
)
662 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
663 struct lpfc_hba
*phba
= vport
->phba
;
664 struct lpfc_nodelist
*np
;
665 struct lpfc_nodelist
*next_np
;
666 uint8_t fabric_param_changed
;
668 spin_lock_irq(shost
->host_lock
);
669 vport
->fc_flag
|= FC_FABRIC
;
670 spin_unlock_irq(shost
->host_lock
);
672 phba
->fc_edtov
= be32_to_cpu(sp
->cmn
.e_d_tov
);
673 if (sp
->cmn
.edtovResolution
) /* E_D_TOV ticks are in nanoseconds */
674 phba
->fc_edtov
= (phba
->fc_edtov
+ 999999) / 1000000;
676 phba
->fc_edtovResol
= sp
->cmn
.edtovResolution
;
677 phba
->fc_ratov
= (be32_to_cpu(sp
->cmn
.w2
.r_a_tov
) + 999) / 1000;
679 if (phba
->fc_topology
== LPFC_TOPOLOGY_LOOP
) {
680 spin_lock_irq(shost
->host_lock
);
681 vport
->fc_flag
|= FC_PUBLIC_LOOP
;
682 spin_unlock_irq(shost
->host_lock
);
685 vport
->fc_myDID
= irsp
->un
.ulpWord
[4] & Mask_DID
;
686 memcpy(&ndlp
->nlp_portname
, &sp
->portName
, sizeof(struct lpfc_name
));
687 memcpy(&ndlp
->nlp_nodename
, &sp
->nodeName
, sizeof(struct lpfc_name
));
688 ndlp
->nlp_class_sup
= 0;
689 if (sp
->cls1
.classValid
)
690 ndlp
->nlp_class_sup
|= FC_COS_CLASS1
;
691 if (sp
->cls2
.classValid
)
692 ndlp
->nlp_class_sup
|= FC_COS_CLASS2
;
693 if (sp
->cls3
.classValid
)
694 ndlp
->nlp_class_sup
|= FC_COS_CLASS3
;
695 if (sp
->cls4
.classValid
)
696 ndlp
->nlp_class_sup
|= FC_COS_CLASS4
;
697 ndlp
->nlp_maxframe
= ((sp
->cmn
.bbRcvSizeMsb
& 0x0F) << 8) |
698 sp
->cmn
.bbRcvSizeLsb
;
700 fabric_param_changed
= lpfc_check_clean_addr_bit(vport
, sp
);
701 if (fabric_param_changed
) {
702 /* Reset FDMI attribute masks based on config parameter */
703 if (phba
->cfg_enable_SmartSAN
||
704 (phba
->cfg_fdmi_on
== LPFC_FDMI_SUPPORT
)) {
705 /* Setup appropriate attribute masks */
706 vport
->fdmi_hba_mask
= LPFC_FDMI2_HBA_ATTR
;
707 if (phba
->cfg_enable_SmartSAN
)
708 vport
->fdmi_port_mask
= LPFC_FDMI2_SMART_ATTR
;
710 vport
->fdmi_port_mask
= LPFC_FDMI2_PORT_ATTR
;
712 vport
->fdmi_hba_mask
= 0;
713 vport
->fdmi_port_mask
= 0;
717 memcpy(&vport
->fabric_portname
, &sp
->portName
,
718 sizeof(struct lpfc_name
));
719 memcpy(&vport
->fabric_nodename
, &sp
->nodeName
,
720 sizeof(struct lpfc_name
));
721 memcpy(&phba
->fc_fabparam
, sp
, sizeof(struct serv_parm
));
723 if (phba
->sli3_options
& LPFC_SLI3_NPIV_ENABLED
) {
724 if (sp
->cmn
.response_multiple_NPort
) {
725 lpfc_printf_vlog(vport
, KERN_WARNING
,
727 "1816 FLOGI NPIV supported, "
728 "response data 0x%x\n",
729 sp
->cmn
.response_multiple_NPort
);
730 spin_lock_irq(&phba
->hbalock
);
731 phba
->link_flag
|= LS_NPIV_FAB_SUPPORTED
;
732 spin_unlock_irq(&phba
->hbalock
);
734 /* Because we asked f/w for NPIV it still expects us
735 to call reg_vnpid atleast for the physcial host */
736 lpfc_printf_vlog(vport
, KERN_WARNING
,
738 "1817 Fabric does not support NPIV "
739 "- configuring single port mode.\n");
740 spin_lock_irq(&phba
->hbalock
);
741 phba
->link_flag
&= ~LS_NPIV_FAB_SUPPORTED
;
742 spin_unlock_irq(&phba
->hbalock
);
747 * For FC we need to do some special processing because of the SLI
748 * Port's default settings of the Common Service Parameters.
750 if ((phba
->sli_rev
== LPFC_SLI_REV4
) &&
751 (phba
->sli4_hba
.lnk_info
.lnk_tp
== LPFC_LNK_TYPE_FC
)) {
752 /* If physical FC port changed, unreg VFI and ALL VPIs / RPIs */
753 if (fabric_param_changed
)
754 lpfc_unregister_fcf_prep(phba
);
756 /* This should just update the VFI CSPs*/
757 if (vport
->fc_flag
& FC_VFI_REGISTERED
)
758 lpfc_issue_reg_vfi(vport
);
761 if (fabric_param_changed
&&
762 !(vport
->fc_flag
& FC_VPORT_NEEDS_REG_VPI
)) {
764 /* If our NportID changed, we need to ensure all
765 * remaining NPORTs get unreg_login'ed.
767 list_for_each_entry_safe(np
, next_np
,
768 &vport
->fc_nodes
, nlp_listp
) {
769 if ((np
->nlp_state
!= NLP_STE_NPR_NODE
) ||
770 !(np
->nlp_flag
& NLP_NPR_ADISC
))
772 spin_lock_irq(&np
->lock
);
773 np
->nlp_flag
&= ~NLP_NPR_ADISC
;
774 spin_unlock_irq(&np
->lock
);
775 lpfc_unreg_rpi(vport
, np
);
777 lpfc_cleanup_pending_mbox(vport
);
779 if (phba
->sli_rev
== LPFC_SLI_REV4
) {
780 lpfc_sli4_unreg_all_rpis(vport
);
781 lpfc_mbx_unreg_vpi(vport
);
782 spin_lock_irq(shost
->host_lock
);
783 vport
->fc_flag
|= FC_VPORT_NEEDS_INIT_VPI
;
784 spin_unlock_irq(shost
->host_lock
);
788 * For SLI3 and SLI4, the VPI needs to be reregistered in
789 * response to this fabric parameter change event.
791 spin_lock_irq(shost
->host_lock
);
792 vport
->fc_flag
|= FC_VPORT_NEEDS_REG_VPI
;
793 spin_unlock_irq(shost
->host_lock
);
794 } else if ((phba
->sli_rev
== LPFC_SLI_REV4
) &&
795 !(vport
->fc_flag
& FC_VPORT_NEEDS_REG_VPI
)) {
797 * Driver needs to re-reg VPI in order for f/w
798 * to update the MAC address.
800 lpfc_nlp_set_state(vport
, ndlp
, NLP_STE_UNMAPPED_NODE
);
801 lpfc_register_new_vport(phba
, vport
, ndlp
);
805 if (phba
->sli_rev
< LPFC_SLI_REV4
) {
806 lpfc_nlp_set_state(vport
, ndlp
, NLP_STE_REG_LOGIN_ISSUE
);
807 if (phba
->sli3_options
& LPFC_SLI3_NPIV_ENABLED
&&
808 vport
->fc_flag
& FC_VPORT_NEEDS_REG_VPI
)
809 lpfc_register_new_vport(phba
, vport
, ndlp
);
811 lpfc_issue_fabric_reglogin(vport
);
813 ndlp
->nlp_type
|= NLP_FABRIC
;
814 lpfc_nlp_set_state(vport
, ndlp
, NLP_STE_UNMAPPED_NODE
);
815 if ((!(vport
->fc_flag
& FC_VPORT_NEEDS_REG_VPI
)) &&
816 (vport
->vpi_state
& LPFC_VPI_REGISTERED
)) {
817 lpfc_start_fdiscs(phba
);
818 lpfc_do_scr_ns_plogi(phba
, vport
);
819 } else if (vport
->fc_flag
& FC_VFI_REGISTERED
)
820 lpfc_issue_init_vpi(vport
);
822 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_ELS
,
823 "3135 Need register VFI: (x%x/%x)\n",
824 vport
->fc_prevDID
, vport
->fc_myDID
);
825 lpfc_issue_reg_vfi(vport
);
832 * lpfc_cmpl_els_flogi_nport - Completion function for flogi to an N_Port
833 * @vport: pointer to a host virtual N_Port data structure.
834 * @ndlp: pointer to a node-list data structure.
835 * @sp: pointer to service parameter data structure.
837 * This routine is invoked by the lpfc_cmpl_els_flogi() completion callback
838 * function to handle the completion of a Fabric Login (FLOGI) into an N_Port
839 * in a point-to-point topology. First, the @vport's N_Port Name is compared
840 * with the received N_Port Name: if the @vport's N_Port Name is greater than
841 * the received N_Port Name lexicographically, this node shall assign local
842 * N_Port ID (PT2PT_LocalID: 1) and remote N_Port ID (PT2PT_RemoteID: 2) and
843 * will send out Port Login (PLOGI) with the N_Port IDs assigned. Otherwise,
844 * this node shall just wait for the remote node to issue PLOGI and assign
852 lpfc_cmpl_els_flogi_nport(struct lpfc_vport
*vport
, struct lpfc_nodelist
*ndlp
,
853 struct serv_parm
*sp
)
855 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
856 struct lpfc_hba
*phba
= vport
->phba
;
860 spin_lock_irq(shost
->host_lock
);
861 vport
->fc_flag
&= ~(FC_FABRIC
| FC_PUBLIC_LOOP
);
862 vport
->fc_flag
|= FC_PT2PT
;
863 spin_unlock_irq(shost
->host_lock
);
865 /* If we are pt2pt with another NPort, force NPIV off! */
866 phba
->sli3_options
&= ~LPFC_SLI3_NPIV_ENABLED
;
868 /* If physical FC port changed, unreg VFI and ALL VPIs / RPIs */
869 if ((phba
->sli_rev
== LPFC_SLI_REV4
) && phba
->fc_topology_changed
) {
870 lpfc_unregister_fcf_prep(phba
);
872 spin_lock_irq(shost
->host_lock
);
873 vport
->fc_flag
&= ~FC_VFI_REGISTERED
;
874 spin_unlock_irq(shost
->host_lock
);
875 phba
->fc_topology_changed
= 0;
878 rc
= memcmp(&vport
->fc_portname
, &sp
->portName
,
879 sizeof(vport
->fc_portname
));
882 /* This side will initiate the PLOGI */
883 spin_lock_irq(shost
->host_lock
);
884 vport
->fc_flag
|= FC_PT2PT_PLOGI
;
885 spin_unlock_irq(shost
->host_lock
);
888 * N_Port ID cannot be 0, set our Id to LocalID
889 * the other side will be RemoteID.
894 vport
->fc_myDID
= PT2PT_LocalID
;
896 /* Decrement ndlp reference count indicating that ndlp can be
897 * safely released when other references to it are done.
901 ndlp
= lpfc_findnode_did(vport
, PT2PT_RemoteID
);
904 * Cannot find existing Fabric ndlp, so allocate a
907 ndlp
= lpfc_nlp_init(vport
, PT2PT_RemoteID
);
912 memcpy(&ndlp
->nlp_portname
, &sp
->portName
,
913 sizeof(struct lpfc_name
));
914 memcpy(&ndlp
->nlp_nodename
, &sp
->nodeName
,
915 sizeof(struct lpfc_name
));
916 /* Set state will put ndlp onto node list if not already done */
917 lpfc_nlp_set_state(vport
, ndlp
, NLP_STE_NPR_NODE
);
918 spin_lock_irq(&ndlp
->lock
);
919 ndlp
->nlp_flag
|= NLP_NPR_2B_DISC
;
920 spin_unlock_irq(&ndlp
->lock
);
922 mbox
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
926 lpfc_config_link(phba
, mbox
);
928 mbox
->mbox_cmpl
= lpfc_mbx_cmpl_local_config_link
;
930 rc
= lpfc_sli_issue_mbox(phba
, mbox
, MBX_NOWAIT
);
931 if (rc
== MBX_NOT_FINISHED
) {
932 mempool_free(mbox
, phba
->mbox_mem_pool
);
936 /* This side will wait for the PLOGI, decrement ndlp reference
937 * count indicating that ndlp can be released when other
938 * references to it are done.
942 /* Start discovery - this should just do CLEAR_LA */
943 lpfc_disc_start(vport
);
952 * lpfc_cmpl_els_flogi - Completion callback function for flogi
953 * @phba: pointer to lpfc hba data structure.
954 * @cmdiocb: pointer to lpfc command iocb data structure.
955 * @rspiocb: pointer to lpfc response iocb data structure.
957 * This routine is the top-level completion callback function for issuing
958 * a Fabric Login (FLOGI) command. If the response IOCB reported error,
959 * the lpfc_els_retry() routine shall be invoked to retry the FLOGI. If
960 * retry has been made (either immediately or delayed with lpfc_els_retry()
961 * returning 1), the command IOCB will be released and function returned.
962 * If the retry attempt has been given up (possibly reach the maximum
963 * number of retries), one additional decrement of ndlp reference shall be
964 * invoked before going out after releasing the command IOCB. This will
965 * actually release the remote node (Note, lpfc_els_free_iocb() will also
966 * invoke one decrement of ndlp reference count). If no error reported in
967 * the IOCB status, the command Port ID field is used to determine whether
968 * this is a point-to-point topology or a fabric topology: if the Port ID
969 * field is assigned, it is a fabric topology; otherwise, it is a
970 * point-to-point topology. The routine lpfc_cmpl_els_flogi_fabric() or
971 * lpfc_cmpl_els_flogi_nport() shall be invoked accordingly to handle the
972 * specific topology completion conditions.
975 lpfc_cmpl_els_flogi(struct lpfc_hba
*phba
, struct lpfc_iocbq
*cmdiocb
,
976 struct lpfc_iocbq
*rspiocb
)
978 struct lpfc_vport
*vport
= cmdiocb
->vport
;
979 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
980 IOCB_t
*irsp
= &rspiocb
->iocb
;
981 struct lpfc_nodelist
*ndlp
= cmdiocb
->context1
;
982 struct lpfc_dmabuf
*pcmd
= cmdiocb
->context2
, *prsp
;
983 struct serv_parm
*sp
;
987 /* Check to see if link went down during discovery */
988 if (lpfc_els_chk_latt(vport
)) {
989 /* One additional decrement on node reference count to
990 * trigger the release of the node
996 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_CMD
,
997 "FLOGI cmpl: status:x%x/x%x state:x%x",
998 irsp
->ulpStatus
, irsp
->un
.ulpWord
[4],
1001 if (irsp
->ulpStatus
) {
1003 * In case of FIP mode, perform roundrobin FCF failover
1004 * due to new FCF discovery
1006 if ((phba
->hba_flag
& HBA_FIP_SUPPORT
) &&
1007 (phba
->fcf
.fcf_flag
& FCF_DISCOVERY
)) {
1008 if (phba
->link_state
< LPFC_LINK_UP
)
1009 goto stop_rr_fcf_flogi
;
1010 if ((phba
->fcoe_cvl_eventtag_attn
==
1011 phba
->fcoe_cvl_eventtag
) &&
1012 (irsp
->ulpStatus
== IOSTAT_LOCAL_REJECT
) &&
1013 ((irsp
->un
.ulpWord
[4] & IOERR_PARAM_MASK
) ==
1015 goto stop_rr_fcf_flogi
;
1017 phba
->fcoe_cvl_eventtag_attn
=
1018 phba
->fcoe_cvl_eventtag
;
1019 lpfc_printf_log(phba
, KERN_WARNING
, LOG_FIP
| LOG_ELS
,
1020 "2611 FLOGI failed on FCF (x%x), "
1021 "status:x%x/x%x, tmo:x%x, perform "
1022 "roundrobin FCF failover\n",
1023 phba
->fcf
.current_rec
.fcf_indx
,
1024 irsp
->ulpStatus
, irsp
->un
.ulpWord
[4],
1026 lpfc_sli4_set_fcf_flogi_fail(phba
,
1027 phba
->fcf
.current_rec
.fcf_indx
);
1028 fcf_index
= lpfc_sli4_fcf_rr_next_index_get(phba
);
1029 rc
= lpfc_sli4_fcf_rr_next_proc(vport
, fcf_index
);
1036 if (!(irsp
->ulpStatus
== IOSTAT_LOCAL_REJECT
&&
1037 ((irsp
->un
.ulpWord
[4] & IOERR_PARAM_MASK
) ==
1038 IOERR_LOOP_OPEN_FAILURE
)))
1039 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_TRACE_EVENT
,
1040 "2858 FLOGI failure Status:x%x/x%x TMO"
1041 ":x%x Data x%x x%x\n",
1042 irsp
->ulpStatus
, irsp
->un
.ulpWord
[4],
1043 irsp
->ulpTimeout
, phba
->hba_flag
,
1044 phba
->fcf
.fcf_flag
);
1046 /* Check for retry */
1047 if (lpfc_els_retry(phba
, cmdiocb
, rspiocb
))
1050 lpfc_printf_vlog(vport
, KERN_WARNING
, LOG_TRACE_EVENT
,
1051 "0150 FLOGI failure Status:x%x/x%x "
1052 "xri x%x TMO:x%x\n",
1053 irsp
->ulpStatus
, irsp
->un
.ulpWord
[4],
1054 cmdiocb
->sli4_xritag
, irsp
->ulpTimeout
);
1056 /* If this is not a loop open failure, bail out */
1057 if (!(irsp
->ulpStatus
== IOSTAT_LOCAL_REJECT
&&
1058 ((irsp
->un
.ulpWord
[4] & IOERR_PARAM_MASK
) ==
1059 IOERR_LOOP_OPEN_FAILURE
)))
1062 /* FLOGI failed, so there is no fabric */
1063 spin_lock_irq(shost
->host_lock
);
1064 vport
->fc_flag
&= ~(FC_FABRIC
| FC_PUBLIC_LOOP
);
1065 spin_unlock_irq(shost
->host_lock
);
1067 /* If private loop, then allow max outstanding els to be
1068 * LPFC_MAX_DISC_THREADS (32). Scanning in the case of no
1069 * alpa map would take too long otherwise.
1071 if (phba
->alpa_map
[0] == 0)
1072 vport
->cfg_discovery_threads
= LPFC_MAX_DISC_THREADS
;
1073 if ((phba
->sli_rev
== LPFC_SLI_REV4
) &&
1074 (!(vport
->fc_flag
& FC_VFI_REGISTERED
) ||
1075 (vport
->fc_prevDID
!= vport
->fc_myDID
) ||
1076 phba
->fc_topology_changed
)) {
1077 if (vport
->fc_flag
& FC_VFI_REGISTERED
) {
1078 if (phba
->fc_topology_changed
) {
1079 lpfc_unregister_fcf_prep(phba
);
1080 spin_lock_irq(shost
->host_lock
);
1081 vport
->fc_flag
&= ~FC_VFI_REGISTERED
;
1082 spin_unlock_irq(shost
->host_lock
);
1083 phba
->fc_topology_changed
= 0;
1085 lpfc_sli4_unreg_all_rpis(vport
);
1089 /* Do not register VFI if the driver aborted FLOGI */
1090 if (!lpfc_error_lost_link(irsp
))
1091 lpfc_issue_reg_vfi(vport
);
1098 spin_lock_irq(shost
->host_lock
);
1099 vport
->fc_flag
&= ~FC_VPORT_CVL_RCVD
;
1100 vport
->fc_flag
&= ~FC_VPORT_LOGO_RCVD
;
1101 spin_unlock_irq(shost
->host_lock
);
1104 * The FLogI succeeded. Sync the data for the CPU before
1107 prsp
= list_get_first(&pcmd
->list
, struct lpfc_dmabuf
, list
);
1110 sp
= prsp
->virt
+ sizeof(uint32_t);
1112 /* FLOGI completes successfully */
1113 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_ELS
,
1114 "0101 FLOGI completes successfully, I/O tag:x%x, "
1115 "xri x%x Data: x%x x%x x%x x%x x%x %x\n",
1116 cmdiocb
->iotag
, cmdiocb
->sli4_xritag
,
1117 irsp
->un
.ulpWord
[4], sp
->cmn
.e_d_tov
,
1118 sp
->cmn
.w2
.r_a_tov
, sp
->cmn
.edtovResolution
,
1119 vport
->port_state
, vport
->fc_flag
);
1121 if (vport
->port_state
== LPFC_FLOGI
) {
1123 * If Common Service Parameters indicate Nport
1124 * we are point to point, if Fport we are Fabric.
1127 rc
= lpfc_cmpl_els_flogi_fabric(vport
, ndlp
, sp
, irsp
);
1128 else if (!(phba
->hba_flag
& HBA_FCOE_MODE
))
1129 rc
= lpfc_cmpl_els_flogi_nport(vport
, ndlp
, sp
);
1131 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_TRACE_EVENT
,
1132 "2831 FLOGI response with cleared Fabric "
1133 "bit fcf_index 0x%x "
1134 "Switch Name %02x%02x%02x%02x%02x%02x%02x%02x "
1136 "%02x%02x%02x%02x%02x%02x%02x%02x\n",
1137 phba
->fcf
.current_rec
.fcf_indx
,
1138 phba
->fcf
.current_rec
.switch_name
[0],
1139 phba
->fcf
.current_rec
.switch_name
[1],
1140 phba
->fcf
.current_rec
.switch_name
[2],
1141 phba
->fcf
.current_rec
.switch_name
[3],
1142 phba
->fcf
.current_rec
.switch_name
[4],
1143 phba
->fcf
.current_rec
.switch_name
[5],
1144 phba
->fcf
.current_rec
.switch_name
[6],
1145 phba
->fcf
.current_rec
.switch_name
[7],
1146 phba
->fcf
.current_rec
.fabric_name
[0],
1147 phba
->fcf
.current_rec
.fabric_name
[1],
1148 phba
->fcf
.current_rec
.fabric_name
[2],
1149 phba
->fcf
.current_rec
.fabric_name
[3],
1150 phba
->fcf
.current_rec
.fabric_name
[4],
1151 phba
->fcf
.current_rec
.fabric_name
[5],
1152 phba
->fcf
.current_rec
.fabric_name
[6],
1153 phba
->fcf
.current_rec
.fabric_name
[7]);
1156 spin_lock_irq(&phba
->hbalock
);
1157 phba
->fcf
.fcf_flag
&= ~FCF_DISCOVERY
;
1158 phba
->hba_flag
&= ~(FCF_RR_INPROG
| HBA_DEVLOSS_TMO
);
1159 spin_unlock_irq(&phba
->hbalock
);
1160 phba
->fcf
.fcf_redisc_attempted
= 0; /* reset */
1164 /* Mark the FCF discovery process done */
1165 if (phba
->hba_flag
& HBA_FIP_SUPPORT
)
1166 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_FIP
|
1168 "2769 FLOGI to FCF (x%x) "
1169 "completed successfully\n",
1170 phba
->fcf
.current_rec
.fcf_indx
);
1171 spin_lock_irq(&phba
->hbalock
);
1172 phba
->fcf
.fcf_flag
&= ~FCF_DISCOVERY
;
1173 phba
->hba_flag
&= ~(FCF_RR_INPROG
| HBA_DEVLOSS_TMO
);
1174 spin_unlock_irq(&phba
->hbalock
);
1175 phba
->fcf
.fcf_redisc_attempted
= 0; /* reset */
1181 spin_lock_irq(&phba
->hbalock
);
1182 phba
->fcf
.fcf_flag
&= ~FCF_DISCOVERY
;
1183 spin_unlock_irq(&phba
->hbalock
);
1186 if (!lpfc_error_lost_link(irsp
)) {
1187 /* FLOGI failed, so just use loop map to make discovery list */
1188 lpfc_disc_list_loopmap(vport
);
1190 /* Start discovery */
1191 lpfc_disc_start(vport
);
1192 } else if (((irsp
->ulpStatus
!= IOSTAT_LOCAL_REJECT
) ||
1193 (((irsp
->un
.ulpWord
[4] & IOERR_PARAM_MASK
) !=
1194 IOERR_SLI_ABORTED
) &&
1195 ((irsp
->un
.ulpWord
[4] & IOERR_PARAM_MASK
) !=
1196 IOERR_SLI_DOWN
))) &&
1197 (phba
->link_state
!= LPFC_CLEAR_LA
)) {
1198 /* If FLOGI failed enable link interrupt. */
1199 lpfc_issue_clear_la(phba
, vport
);
1202 lpfc_els_free_iocb(phba
, cmdiocb
);
1207 * lpfc_cmpl_els_link_down - Completion callback function for ELS command
1208 * aborted during a link down
1209 * @phba: pointer to lpfc hba data structure.
1210 * @cmdiocb: pointer to lpfc command iocb data structure.
1211 * @rspiocb: pointer to lpfc response iocb data structure.
1215 lpfc_cmpl_els_link_down(struct lpfc_hba
*phba
, struct lpfc_iocbq
*cmdiocb
,
1216 struct lpfc_iocbq
*rspiocb
)
1222 pcmd
= (uint32_t *)(((struct lpfc_dmabuf
*)cmdiocb
->context2
)->virt
);
1224 irsp
= &rspiocb
->iocb
;
1226 lpfc_printf_log(phba
, KERN_INFO
, LOG_ELS
,
1227 "6445 ELS completes after LINK_DOWN: "
1228 " Status %x/%x cmd x%x flg x%x\n",
1229 irsp
->ulpStatus
, irsp
->un
.ulpWord
[4], cmd
,
1230 cmdiocb
->iocb_flag
);
1232 if (cmdiocb
->iocb_flag
& LPFC_IO_FABRIC
) {
1233 cmdiocb
->iocb_flag
&= ~LPFC_IO_FABRIC
;
1234 atomic_dec(&phba
->fabric_iocb_count
);
1236 lpfc_els_free_iocb(phba
, cmdiocb
);
1240 * lpfc_issue_els_flogi - Issue an flogi iocb command for a vport
1241 * @vport: pointer to a host virtual N_Port data structure.
1242 * @ndlp: pointer to a node-list data structure.
1243 * @retry: number of retries to the command IOCB.
1245 * This routine issues a Fabric Login (FLOGI) Request ELS command
1246 * for a @vport. The initiator service parameters are put into the payload
1247 * of the FLOGI Request IOCB and the top-level callback function pointer
1248 * to lpfc_cmpl_els_flogi() routine is put to the IOCB completion callback
1249 * function field. The lpfc_issue_fabric_iocb routine is invoked to send
1250 * out FLOGI ELS command with one outstanding fabric IOCB at a time.
1252 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
1253 * will be incremented by 1 for holding the ndlp and the reference to ndlp
1254 * will be stored into the context1 field of the IOCB for the completion
1255 * callback function to the FLOGI ELS command.
1258 * 0 - successfully issued flogi iocb for @vport
1259 * 1 - failed to issue flogi iocb for @vport
1262 lpfc_issue_els_flogi(struct lpfc_vport
*vport
, struct lpfc_nodelist
*ndlp
,
1265 struct lpfc_hba
*phba
= vport
->phba
;
1266 struct serv_parm
*sp
;
1268 struct lpfc_iocbq
*elsiocb
;
1269 struct lpfc_iocbq defer_flogi_acc
;
1275 cmdsize
= (sizeof(uint32_t) + sizeof(struct serv_parm
));
1276 elsiocb
= lpfc_prep_els_iocb(vport
, 1, cmdsize
, retry
, ndlp
,
1277 ndlp
->nlp_DID
, ELS_CMD_FLOGI
);
1282 icmd
= &elsiocb
->iocb
;
1283 pcmd
= (uint8_t *) (((struct lpfc_dmabuf
*) elsiocb
->context2
)->virt
);
1285 /* For FLOGI request, remainder of payload is service parameters */
1286 *((uint32_t *) (pcmd
)) = ELS_CMD_FLOGI
;
1287 pcmd
+= sizeof(uint32_t);
1288 memcpy(pcmd
, &vport
->fc_sparam
, sizeof(struct serv_parm
));
1289 sp
= (struct serv_parm
*) pcmd
;
1291 /* Setup CSPs accordingly for Fabric */
1292 sp
->cmn
.e_d_tov
= 0;
1293 sp
->cmn
.w2
.r_a_tov
= 0;
1294 sp
->cmn
.virtual_fabric_support
= 0;
1295 sp
->cls1
.classValid
= 0;
1296 if (sp
->cmn
.fcphLow
< FC_PH3
)
1297 sp
->cmn
.fcphLow
= FC_PH3
;
1298 if (sp
->cmn
.fcphHigh
< FC_PH3
)
1299 sp
->cmn
.fcphHigh
= FC_PH3
;
1301 if (phba
->sli_rev
== LPFC_SLI_REV4
) {
1302 if (bf_get(lpfc_sli_intf_if_type
, &phba
->sli4_hba
.sli_intf
) ==
1303 LPFC_SLI_INTF_IF_TYPE_0
) {
1304 elsiocb
->iocb
.ulpCt_h
= ((SLI4_CT_FCFI
>> 1) & 1);
1305 elsiocb
->iocb
.ulpCt_l
= (SLI4_CT_FCFI
& 1);
1306 /* FLOGI needs to be 3 for WQE FCFI */
1307 /* Set the fcfi to the fcfi we registered with */
1308 elsiocb
->iocb
.ulpContext
= phba
->fcf
.fcfi
;
1310 /* Can't do SLI4 class2 without support sequence coalescing */
1311 sp
->cls2
.classValid
= 0;
1312 sp
->cls2
.seqDelivery
= 0;
1314 /* Historical, setting sequential-delivery bit for SLI3 */
1315 sp
->cls2
.seqDelivery
= (sp
->cls2
.classValid
) ? 1 : 0;
1316 sp
->cls3
.seqDelivery
= (sp
->cls3
.classValid
) ? 1 : 0;
1317 if (phba
->sli3_options
& LPFC_SLI3_NPIV_ENABLED
) {
1318 sp
->cmn
.request_multiple_Nport
= 1;
1319 /* For FLOGI, Let FLOGI rsp set the NPortID for VPI 0 */
1323 sp
->cmn
.request_multiple_Nport
= 0;
1326 if (phba
->fc_topology
!= LPFC_TOPOLOGY_LOOP
) {
1327 icmd
->un
.elsreq64
.myID
= 0;
1328 icmd
->un
.elsreq64
.fl
= 1;
1331 tmo
= phba
->fc_ratov
;
1332 phba
->fc_ratov
= LPFC_DISC_FLOGI_TMO
;
1333 lpfc_set_disctmo(vport
);
1334 phba
->fc_ratov
= tmo
;
1336 phba
->fc_stat
.elsXmitFLOGI
++;
1337 elsiocb
->iocb_cmpl
= lpfc_cmpl_els_flogi
;
1339 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_CMD
,
1340 "Issue FLOGI: opt:x%x",
1341 phba
->sli3_options
, 0, 0);
1343 elsiocb
->context1
= lpfc_nlp_get(ndlp
);
1344 if (!elsiocb
->context1
)
1347 rc
= lpfc_issue_fabric_iocb(phba
, elsiocb
);
1348 if (rc
== IOCB_ERROR
)
1351 phba
->hba_flag
|= HBA_FLOGI_ISSUED
;
1353 /* Check for a deferred FLOGI ACC condition */
1354 if (phba
->defer_flogi_acc_flag
) {
1355 did
= vport
->fc_myDID
;
1356 vport
->fc_myDID
= Fabric_DID
;
1358 memset(&defer_flogi_acc
, 0, sizeof(struct lpfc_iocbq
));
1360 defer_flogi_acc
.iocb
.ulpContext
= phba
->defer_flogi_acc_rx_id
;
1361 defer_flogi_acc
.iocb
.unsli3
.rcvsli3
.ox_id
=
1362 phba
->defer_flogi_acc_ox_id
;
1364 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_ELS
,
1365 "3354 Xmit deferred FLOGI ACC: rx_id: x%x,"
1366 " ox_id: x%x, hba_flag x%x\n",
1367 phba
->defer_flogi_acc_rx_id
,
1368 phba
->defer_flogi_acc_ox_id
, phba
->hba_flag
);
1370 /* Send deferred FLOGI ACC */
1371 lpfc_els_rsp_acc(vport
, ELS_CMD_FLOGI
, &defer_flogi_acc
,
1374 phba
->defer_flogi_acc_flag
= false;
1376 vport
->fc_myDID
= did
;
1382 lpfc_els_free_iocb(phba
, elsiocb
);
1387 * lpfc_els_abort_flogi - Abort all outstanding flogi iocbs
1388 * @phba: pointer to lpfc hba data structure.
1390 * This routine aborts all the outstanding Fabric Login (FLOGI) IOCBs
1391 * with a @phba. This routine walks all the outstanding IOCBs on the txcmplq
1392 * list and issues an abort IOCB commond on each outstanding IOCB that
1393 * contains a active Fabric_DID ndlp. Note that this function is to issue
1394 * the abort IOCB command on all the outstanding IOCBs, thus when this
1395 * function returns, it does not guarantee all the IOCBs are actually aborted.
1398 * 0 - Successfully issued abort iocb on all outstanding flogis (Always 0)
1401 lpfc_els_abort_flogi(struct lpfc_hba
*phba
)
1403 struct lpfc_sli_ring
*pring
;
1404 struct lpfc_iocbq
*iocb
, *next_iocb
;
1405 struct lpfc_nodelist
*ndlp
;
1408 /* Abort outstanding I/O on NPort <nlp_DID> */
1409 lpfc_printf_log(phba
, KERN_INFO
, LOG_DISCOVERY
,
1410 "0201 Abort outstanding I/O on NPort x%x\n",
1413 pring
= lpfc_phba_elsring(phba
);
1414 if (unlikely(!pring
))
1418 * Check the txcmplq for an iocb that matches the nport the driver is
1421 spin_lock_irq(&phba
->hbalock
);
1422 list_for_each_entry_safe(iocb
, next_iocb
, &pring
->txcmplq
, list
) {
1424 if (icmd
->ulpCommand
== CMD_ELS_REQUEST64_CR
) {
1425 ndlp
= (struct lpfc_nodelist
*)(iocb
->context1
);
1426 if (ndlp
&& (ndlp
->nlp_DID
== Fabric_DID
))
1427 lpfc_sli_issue_abort_iotag(phba
, pring
, iocb
,
1431 spin_unlock_irq(&phba
->hbalock
);
1437 * lpfc_initial_flogi - Issue an initial fabric login for a vport
1438 * @vport: pointer to a host virtual N_Port data structure.
1440 * This routine issues an initial Fabric Login (FLOGI) for the @vport
1441 * specified. It first searches the ndlp with the Fabric_DID (0xfffffe) from
1442 * the @vport's ndlp list. If no such ndlp found, it will create an ndlp and
1443 * put it into the @vport's ndlp list. If an inactive ndlp found on the list,
1444 * it will just be enabled and made active. The lpfc_issue_els_flogi() routine
1445 * is then invoked with the @vport and the ndlp to perform the FLOGI for the
1449 * 0 - failed to issue initial flogi for @vport
1450 * 1 - successfully issued initial flogi for @vport
1453 lpfc_initial_flogi(struct lpfc_vport
*vport
)
1455 struct lpfc_nodelist
*ndlp
;
1457 vport
->port_state
= LPFC_FLOGI
;
1458 lpfc_set_disctmo(vport
);
1460 /* First look for the Fabric ndlp */
1461 ndlp
= lpfc_findnode_did(vport
, Fabric_DID
);
1463 /* Cannot find existing Fabric ndlp, so allocate a new one */
1464 ndlp
= lpfc_nlp_init(vport
, Fabric_DID
);
1467 /* Set the node type */
1468 ndlp
->nlp_type
|= NLP_FABRIC
;
1470 /* Put ndlp onto node list */
1471 lpfc_enqueue_node(vport
, ndlp
);
1474 if (lpfc_issue_els_flogi(vport
, ndlp
, 0)) {
1475 /* This decrement of reference count to node shall kick off
1476 * the release of the node.
1485 * lpfc_initial_fdisc - Issue an initial fabric discovery for a vport
1486 * @vport: pointer to a host virtual N_Port data structure.
1488 * This routine issues an initial Fabric Discover (FDISC) for the @vport
1489 * specified. It first searches the ndlp with the Fabric_DID (0xfffffe) from
1490 * the @vport's ndlp list. If no such ndlp found, it will create an ndlp and
1491 * put it into the @vport's ndlp list. If an inactive ndlp found on the list,
1492 * it will just be enabled and made active. The lpfc_issue_els_fdisc() routine
1493 * is then invoked with the @vport and the ndlp to perform the FDISC for the
1497 * 0 - failed to issue initial fdisc for @vport
1498 * 1 - successfully issued initial fdisc for @vport
1501 lpfc_initial_fdisc(struct lpfc_vport
*vport
)
1503 struct lpfc_nodelist
*ndlp
;
1505 /* First look for the Fabric ndlp */
1506 ndlp
= lpfc_findnode_did(vport
, Fabric_DID
);
1508 /* Cannot find existing Fabric ndlp, so allocate a new one */
1509 ndlp
= lpfc_nlp_init(vport
, Fabric_DID
);
1513 /* NPIV is only supported in Fabrics. */
1514 ndlp
->nlp_type
|= NLP_FABRIC
;
1516 /* Put ndlp onto node list */
1517 lpfc_enqueue_node(vport
, ndlp
);
1520 if (lpfc_issue_els_fdisc(vport
, ndlp
, 0)) {
1521 /* decrement node reference count to trigger the release of
1531 * lpfc_more_plogi - Check and issue remaining plogis for a vport
1532 * @vport: pointer to a host virtual N_Port data structure.
1534 * This routine checks whether there are more remaining Port Logins
1535 * (PLOGI) to be issued for the @vport. If so, it will invoke the routine
1536 * lpfc_els_disc_plogi() to go through the Node Port Recovery (NPR) nodes
1537 * to issue ELS PLOGIs up to the configured discover threads with the
1538 * @vport (@vport->cfg_discovery_threads). The function also decrement
1539 * the @vport's num_disc_node by 1 if it is not already 0.
1542 lpfc_more_plogi(struct lpfc_vport
*vport
)
1544 if (vport
->num_disc_nodes
)
1545 vport
->num_disc_nodes
--;
1547 /* Continue discovery with <num_disc_nodes> PLOGIs to go */
1548 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_DISCOVERY
,
1549 "0232 Continue discovery with %d PLOGIs to go "
1550 "Data: x%x x%x x%x\n",
1551 vport
->num_disc_nodes
, vport
->fc_plogi_cnt
,
1552 vport
->fc_flag
, vport
->port_state
);
1553 /* Check to see if there are more PLOGIs to be sent */
1554 if (vport
->fc_flag
& FC_NLP_MORE
)
1555 /* go thru NPR nodes and issue any remaining ELS PLOGIs */
1556 lpfc_els_disc_plogi(vport
);
1562 * lpfc_plogi_confirm_nport - Confirm plogi wwpn matches stored ndlp
1563 * @phba: pointer to lpfc hba data structure.
1564 * @prsp: pointer to response IOCB payload.
1565 * @ndlp: pointer to a node-list data structure.
1567 * This routine checks and indicates whether the WWPN of an N_Port, retrieved
1568 * from a PLOGI, matches the WWPN that is stored in the @ndlp for that N_POrt.
1569 * The following cases are considered N_Port confirmed:
1570 * 1) The N_Port is a Fabric ndlp; 2) The @ndlp is on vport list and matches
1571 * the WWPN of the N_Port logged into; 3) The @ndlp is not on vport list but
1572 * it does not have WWPN assigned either. If the WWPN is confirmed, the
1573 * pointer to the @ndlp will be returned. If the WWPN is not confirmed:
1574 * 1) if there is a node on vport list other than the @ndlp with the same
1575 * WWPN of the N_Port PLOGI logged into, the lpfc_unreg_rpi() will be invoked
1576 * on that node to release the RPI associated with the node; 2) if there is
1577 * no node found on vport list with the same WWPN of the N_Port PLOGI logged
1578 * into, a new node shall be allocated (or activated). In either case, the
1579 * parameters of the @ndlp shall be copied to the new_ndlp, the @ndlp shall
1580 * be released and the new_ndlp shall be put on to the vport node list and
1581 * its pointer returned as the confirmed node.
1583 * Note that before the @ndlp got "released", the keepDID from not-matching
1584 * or inactive "new_ndlp" on the vport node list is assigned to the nlp_DID
1585 * of the @ndlp. This is because the release of @ndlp is actually to put it
1586 * into an inactive state on the vport node list and the vport node list
1587 * management algorithm does not allow two node with a same DID.
1590 * pointer to the PLOGI N_Port @ndlp
1592 static struct lpfc_nodelist
*
1593 lpfc_plogi_confirm_nport(struct lpfc_hba
*phba
, uint32_t *prsp
,
1594 struct lpfc_nodelist
*ndlp
)
1596 struct lpfc_vport
*vport
= ndlp
->vport
;
1597 struct lpfc_nodelist
*new_ndlp
;
1598 struct serv_parm
*sp
;
1599 uint8_t name
[sizeof(struct lpfc_name
)];
1600 uint32_t rc
, keepDID
= 0, keep_nlp_flag
= 0;
1601 uint32_t keep_new_nlp_flag
= 0;
1602 uint16_t keep_nlp_state
;
1603 u32 keep_nlp_fc4_type
= 0;
1604 struct lpfc_nvme_rport
*keep_nrport
= NULL
;
1605 unsigned long *active_rrqs_xri_bitmap
= NULL
;
1607 /* Fabric nodes can have the same WWPN so we don't bother searching
1608 * by WWPN. Just return the ndlp that was given to us.
1610 if (ndlp
->nlp_type
& NLP_FABRIC
)
1613 sp
= (struct serv_parm
*) ((uint8_t *) prsp
+ sizeof(uint32_t));
1614 memset(name
, 0, sizeof(struct lpfc_name
));
1616 /* Now we find out if the NPort we are logging into, matches the WWPN
1617 * we have for that ndlp. If not, we have some work to do.
1619 new_ndlp
= lpfc_findnode_wwpn(vport
, &sp
->portName
);
1621 /* return immediately if the WWPN matches ndlp */
1622 if (new_ndlp
== ndlp
)
1625 if (phba
->sli_rev
== LPFC_SLI_REV4
) {
1626 active_rrqs_xri_bitmap
= mempool_alloc(phba
->active_rrq_pool
,
1628 if (active_rrqs_xri_bitmap
)
1629 memset(active_rrqs_xri_bitmap
, 0,
1630 phba
->cfg_rrq_xri_bitmap_sz
);
1633 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_ELS
| LOG_NODE
,
1634 "3178 PLOGI confirm: ndlp x%x x%x x%x: "
1635 "new_ndlp x%x x%x x%x\n",
1636 ndlp
->nlp_DID
, ndlp
->nlp_flag
, ndlp
->nlp_fc4_type
,
1637 (new_ndlp
? new_ndlp
->nlp_DID
: 0),
1638 (new_ndlp
? new_ndlp
->nlp_flag
: 0),
1639 (new_ndlp
? new_ndlp
->nlp_fc4_type
: 0));
1642 rc
= memcmp(&ndlp
->nlp_portname
, name
,
1643 sizeof(struct lpfc_name
));
1645 if (active_rrqs_xri_bitmap
)
1646 mempool_free(active_rrqs_xri_bitmap
,
1647 phba
->active_rrq_pool
);
1650 new_ndlp
= lpfc_nlp_init(vport
, ndlp
->nlp_DID
);
1652 if (active_rrqs_xri_bitmap
)
1653 mempool_free(active_rrqs_xri_bitmap
,
1654 phba
->active_rrq_pool
);
1658 keepDID
= new_ndlp
->nlp_DID
;
1659 if (phba
->sli_rev
== LPFC_SLI_REV4
&&
1660 active_rrqs_xri_bitmap
)
1661 memcpy(active_rrqs_xri_bitmap
,
1662 new_ndlp
->active_rrqs_xri_bitmap
,
1663 phba
->cfg_rrq_xri_bitmap_sz
);
1666 /* At this point in this routine, we know new_ndlp will be
1667 * returned. however, any previous GID_FTs that were done
1668 * would have updated nlp_fc4_type in ndlp, so we must ensure
1669 * new_ndlp has the right value.
1671 if (vport
->fc_flag
& FC_FABRIC
) {
1672 keep_nlp_fc4_type
= new_ndlp
->nlp_fc4_type
;
1673 new_ndlp
->nlp_fc4_type
= ndlp
->nlp_fc4_type
;
1676 lpfc_unreg_rpi(vport
, new_ndlp
);
1677 new_ndlp
->nlp_DID
= ndlp
->nlp_DID
;
1678 new_ndlp
->nlp_prev_state
= ndlp
->nlp_prev_state
;
1679 if (phba
->sli_rev
== LPFC_SLI_REV4
)
1680 memcpy(new_ndlp
->active_rrqs_xri_bitmap
,
1681 ndlp
->active_rrqs_xri_bitmap
,
1682 phba
->cfg_rrq_xri_bitmap_sz
);
1684 /* Lock both ndlps */
1685 spin_lock_irq(&ndlp
->lock
);
1686 spin_lock_irq(&new_ndlp
->lock
);
1687 keep_new_nlp_flag
= new_ndlp
->nlp_flag
;
1688 keep_nlp_flag
= ndlp
->nlp_flag
;
1689 new_ndlp
->nlp_flag
= ndlp
->nlp_flag
;
1691 /* if new_ndlp had NLP_UNREG_INP set, keep it */
1692 if (keep_new_nlp_flag
& NLP_UNREG_INP
)
1693 new_ndlp
->nlp_flag
|= NLP_UNREG_INP
;
1695 new_ndlp
->nlp_flag
&= ~NLP_UNREG_INP
;
1697 /* if new_ndlp had NLP_RPI_REGISTERED set, keep it */
1698 if (keep_new_nlp_flag
& NLP_RPI_REGISTERED
)
1699 new_ndlp
->nlp_flag
|= NLP_RPI_REGISTERED
;
1701 new_ndlp
->nlp_flag
&= ~NLP_RPI_REGISTERED
;
1703 ndlp
->nlp_flag
= keep_new_nlp_flag
;
1705 /* if ndlp had NLP_UNREG_INP set, keep it */
1706 if (keep_nlp_flag
& NLP_UNREG_INP
)
1707 ndlp
->nlp_flag
|= NLP_UNREG_INP
;
1709 ndlp
->nlp_flag
&= ~NLP_UNREG_INP
;
1711 /* if ndlp had NLP_RPI_REGISTERED set, keep it */
1712 if (keep_nlp_flag
& NLP_RPI_REGISTERED
)
1713 ndlp
->nlp_flag
|= NLP_RPI_REGISTERED
;
1715 ndlp
->nlp_flag
&= ~NLP_RPI_REGISTERED
;
1717 spin_unlock_irq(&new_ndlp
->lock
);
1718 spin_unlock_irq(&ndlp
->lock
);
1720 /* Set nlp_states accordingly */
1721 keep_nlp_state
= new_ndlp
->nlp_state
;
1722 lpfc_nlp_set_state(vport
, new_ndlp
, ndlp
->nlp_state
);
1724 /* interchange the nvme remoteport structs */
1725 keep_nrport
= new_ndlp
->nrport
;
1726 new_ndlp
->nrport
= ndlp
->nrport
;
1728 /* Move this back to NPR state */
1729 if (memcmp(&ndlp
->nlp_portname
, name
, sizeof(struct lpfc_name
)) == 0) {
1730 /* The new_ndlp is replacing ndlp totally, so we need
1731 * to put ndlp on UNUSED list and try to free it.
1733 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_ELS
,
1734 "3179 PLOGI confirm NEW: %x %x\n",
1735 new_ndlp
->nlp_DID
, keepDID
);
1737 /* Two ndlps cannot have the same did on the nodelist.
1738 * Note: for this case, ndlp has a NULL WWPN so setting
1739 * the nlp_fc4_type isn't required.
1741 ndlp
->nlp_DID
= keepDID
;
1742 lpfc_nlp_set_state(vport
, ndlp
, keep_nlp_state
);
1743 if (phba
->sli_rev
== LPFC_SLI_REV4
&&
1744 active_rrqs_xri_bitmap
)
1745 memcpy(ndlp
->active_rrqs_xri_bitmap
,
1746 active_rrqs_xri_bitmap
,
1747 phba
->cfg_rrq_xri_bitmap_sz
);
1750 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_ELS
,
1751 "3180 PLOGI confirm SWAP: %x %x\n",
1752 new_ndlp
->nlp_DID
, keepDID
);
1754 lpfc_unreg_rpi(vport
, ndlp
);
1756 /* Two ndlps cannot have the same did and the fc4
1757 * type must be transferred because the ndlp is in
1760 ndlp
->nlp_DID
= keepDID
;
1761 ndlp
->nlp_fc4_type
= keep_nlp_fc4_type
;
1763 if (phba
->sli_rev
== LPFC_SLI_REV4
&&
1764 active_rrqs_xri_bitmap
)
1765 memcpy(ndlp
->active_rrqs_xri_bitmap
,
1766 active_rrqs_xri_bitmap
,
1767 phba
->cfg_rrq_xri_bitmap_sz
);
1769 /* Since we are switching over to the new_ndlp,
1770 * reset the old ndlp state
1772 if ((ndlp
->nlp_state
== NLP_STE_UNMAPPED_NODE
) ||
1773 (ndlp
->nlp_state
== NLP_STE_MAPPED_NODE
))
1774 keep_nlp_state
= NLP_STE_NPR_NODE
;
1775 lpfc_nlp_set_state(vport
, ndlp
, keep_nlp_state
);
1776 ndlp
->nrport
= keep_nrport
;
1780 * If ndlp is not associated with any rport we can drop it here else
1781 * let dev_loss_tmo_callbk trigger DEVICE_RM event
1783 if (!ndlp
->rport
&& (ndlp
->nlp_state
== NLP_STE_NPR_NODE
))
1784 lpfc_disc_state_machine(vport
, ndlp
, NULL
, NLP_EVT_DEVICE_RM
);
1786 if (phba
->sli_rev
== LPFC_SLI_REV4
&&
1787 active_rrqs_xri_bitmap
)
1788 mempool_free(active_rrqs_xri_bitmap
,
1789 phba
->active_rrq_pool
);
1791 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_ELS
| LOG_NODE
,
1792 "3173 PLOGI confirm exit: new_ndlp x%x x%x x%x\n",
1793 new_ndlp
->nlp_DID
, new_ndlp
->nlp_flag
,
1794 new_ndlp
->nlp_fc4_type
);
1800 * lpfc_end_rscn - Check and handle more rscn for a vport
1801 * @vport: pointer to a host virtual N_Port data structure.
1803 * This routine checks whether more Registration State Change
1804 * Notifications (RSCNs) came in while the discovery state machine was in
1805 * the FC_RSCN_MODE. If so, the lpfc_els_handle_rscn() routine will be
1806 * invoked to handle the additional RSCNs for the @vport. Otherwise, the
1807 * FC_RSCN_MODE bit will be cleared with the @vport to mark as the end of
1808 * handling the RSCNs.
1811 lpfc_end_rscn(struct lpfc_vport
*vport
)
1813 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
1815 if (vport
->fc_flag
& FC_RSCN_MODE
) {
1817 * Check to see if more RSCNs came in while we were
1818 * processing this one.
1820 if (vport
->fc_rscn_id_cnt
||
1821 (vport
->fc_flag
& FC_RSCN_DISCOVERY
) != 0)
1822 lpfc_els_handle_rscn(vport
);
1824 spin_lock_irq(shost
->host_lock
);
1825 vport
->fc_flag
&= ~FC_RSCN_MODE
;
1826 spin_unlock_irq(shost
->host_lock
);
1832 * lpfc_cmpl_els_rrq - Completion handled for els RRQs.
1833 * @phba: pointer to lpfc hba data structure.
1834 * @cmdiocb: pointer to lpfc command iocb data structure.
1835 * @rspiocb: pointer to lpfc response iocb data structure.
1837 * This routine will call the clear rrq function to free the rrq and
1838 * clear the xri's bit in the ndlp's xri_bitmap. If the ndlp does not
1839 * exist then the clear_rrq is still called because the rrq needs to
1844 lpfc_cmpl_els_rrq(struct lpfc_hba
*phba
, struct lpfc_iocbq
*cmdiocb
,
1845 struct lpfc_iocbq
*rspiocb
)
1847 struct lpfc_vport
*vport
= cmdiocb
->vport
;
1849 struct lpfc_nodelist
*ndlp
;
1850 struct lpfc_node_rrq
*rrq
;
1852 /* we pass cmdiocb to state machine which needs rspiocb as well */
1853 rrq
= cmdiocb
->context_un
.rrq
;
1854 cmdiocb
->context_un
.rsp_iocb
= rspiocb
;
1856 irsp
= &rspiocb
->iocb
;
1857 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_CMD
,
1858 "RRQ cmpl: status:x%x/x%x did:x%x",
1859 irsp
->ulpStatus
, irsp
->un
.ulpWord
[4],
1860 irsp
->un
.elsreq64
.remoteID
);
1862 ndlp
= lpfc_findnode_did(vport
, irsp
->un
.elsreq64
.remoteID
);
1863 if (!ndlp
|| ndlp
!= rrq
->ndlp
) {
1864 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_TRACE_EVENT
,
1865 "2882 RRQ completes to NPort x%x "
1866 "with no ndlp. Data: x%x x%x x%x\n",
1867 irsp
->un
.elsreq64
.remoteID
,
1868 irsp
->ulpStatus
, irsp
->un
.ulpWord
[4],
1873 /* rrq completes to NPort <nlp_DID> */
1874 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_ELS
,
1875 "2880 RRQ completes to NPort x%x "
1876 "Data: x%x x%x x%x x%x x%x\n",
1877 ndlp
->nlp_DID
, irsp
->ulpStatus
, irsp
->un
.ulpWord
[4],
1878 irsp
->ulpTimeout
, rrq
->xritag
, rrq
->rxid
);
1880 if (irsp
->ulpStatus
) {
1881 /* Check for retry */
1882 /* RRQ failed Don't print the vport to vport rjts */
1883 if (irsp
->ulpStatus
!= IOSTAT_LS_RJT
||
1884 (((irsp
->un
.ulpWord
[4]) >> 16 != LSRJT_INVALID_CMD
) &&
1885 ((irsp
->un
.ulpWord
[4]) >> 16 != LSRJT_UNABLE_TPC
)) ||
1886 (phba
)->pport
->cfg_log_verbose
& LOG_ELS
)
1887 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_TRACE_EVENT
,
1888 "2881 RRQ failure DID:%06X Status:"
1890 ndlp
->nlp_DID
, irsp
->ulpStatus
,
1891 irsp
->un
.ulpWord
[4]);
1895 lpfc_clr_rrq_active(phba
, rrq
->xritag
, rrq
);
1897 lpfc_els_free_iocb(phba
, cmdiocb
);
1902 * lpfc_cmpl_els_plogi - Completion callback function for plogi
1903 * @phba: pointer to lpfc hba data structure.
1904 * @cmdiocb: pointer to lpfc command iocb data structure.
1905 * @rspiocb: pointer to lpfc response iocb data structure.
1907 * This routine is the completion callback function for issuing the Port
1908 * Login (PLOGI) command. For PLOGI completion, there must be an active
1909 * ndlp on the vport node list that matches the remote node ID from the
1910 * PLOGI response IOCB. If such ndlp does not exist, the PLOGI is simply
1911 * ignored and command IOCB released. The PLOGI response IOCB status is
1912 * checked for error conditons. If there is error status reported, PLOGI
1913 * retry shall be attempted by invoking the lpfc_els_retry() routine.
1914 * Otherwise, the lpfc_plogi_confirm_nport() routine shall be invoked on
1915 * the ndlp and the NLP_EVT_CMPL_PLOGI state to the Discover State Machine
1916 * (DSM) is set for this PLOGI completion. Finally, it checks whether
1917 * there are additional N_Port nodes with the vport that need to perform
1918 * PLOGI. If so, the lpfc_more_plogi() routine is invoked to issue addition
1922 lpfc_cmpl_els_plogi(struct lpfc_hba
*phba
, struct lpfc_iocbq
*cmdiocb
,
1923 struct lpfc_iocbq
*rspiocb
)
1925 struct lpfc_vport
*vport
= cmdiocb
->vport
;
1926 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
1928 struct lpfc_nodelist
*ndlp
, *free_ndlp
;
1929 struct lpfc_dmabuf
*prsp
;
1932 /* we pass cmdiocb to state machine which needs rspiocb as well */
1933 cmdiocb
->context_un
.rsp_iocb
= rspiocb
;
1935 irsp
= &rspiocb
->iocb
;
1936 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_CMD
,
1937 "PLOGI cmpl: status:x%x/x%x did:x%x",
1938 irsp
->ulpStatus
, irsp
->un
.ulpWord
[4],
1939 irsp
->un
.elsreq64
.remoteID
);
1941 ndlp
= lpfc_findnode_did(vport
, irsp
->un
.elsreq64
.remoteID
);
1943 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_TRACE_EVENT
,
1944 "0136 PLOGI completes to NPort x%x "
1945 "with no ndlp. Data: x%x x%x x%x\n",
1946 irsp
->un
.elsreq64
.remoteID
,
1947 irsp
->ulpStatus
, irsp
->un
.ulpWord
[4],
1952 /* Since ndlp can be freed in the disc state machine, note if this node
1953 * is being used during discovery.
1955 spin_lock_irq(&ndlp
->lock
);
1956 disc
= (ndlp
->nlp_flag
& NLP_NPR_2B_DISC
);
1957 ndlp
->nlp_flag
&= ~NLP_NPR_2B_DISC
;
1958 spin_unlock_irq(&ndlp
->lock
);
1960 /* PLOGI completes to NPort <nlp_DID> */
1961 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_ELS
,
1962 "0102 PLOGI completes to NPort x%06x "
1963 "Data: x%x x%x x%x x%x x%x\n",
1964 ndlp
->nlp_DID
, ndlp
->nlp_fc4_type
,
1965 irsp
->ulpStatus
, irsp
->un
.ulpWord
[4],
1966 disc
, vport
->num_disc_nodes
);
1968 /* Check to see if link went down during discovery */
1969 if (lpfc_els_chk_latt(vport
)) {
1970 spin_lock_irq(&ndlp
->lock
);
1971 ndlp
->nlp_flag
|= NLP_NPR_2B_DISC
;
1972 spin_unlock_irq(&ndlp
->lock
);
1976 if (irsp
->ulpStatus
) {
1977 /* Check for retry */
1978 if (lpfc_els_retry(phba
, cmdiocb
, rspiocb
)) {
1979 /* ELS command is being retried */
1981 spin_lock_irq(&ndlp
->lock
);
1982 ndlp
->nlp_flag
|= NLP_NPR_2B_DISC
;
1983 spin_unlock_irq(&ndlp
->lock
);
1987 /* PLOGI failed Don't print the vport to vport rjts */
1988 if (irsp
->ulpStatus
!= IOSTAT_LS_RJT
||
1989 (((irsp
->un
.ulpWord
[4]) >> 16 != LSRJT_INVALID_CMD
) &&
1990 ((irsp
->un
.ulpWord
[4]) >> 16 != LSRJT_UNABLE_TPC
)) ||
1991 (phba
)->pport
->cfg_log_verbose
& LOG_ELS
)
1992 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_TRACE_EVENT
,
1993 "2753 PLOGI failure DID:%06X Status:x%x/x%x\n",
1994 ndlp
->nlp_DID
, irsp
->ulpStatus
,
1995 irsp
->un
.ulpWord
[4]);
1997 /* Do not call DSM for lpfc_els_abort'ed ELS cmds */
1998 if (lpfc_error_lost_link(irsp
))
2001 lpfc_disc_state_machine(vport
, ndlp
, cmdiocb
,
2002 NLP_EVT_CMPL_PLOGI
);
2004 /* As long as this node is not registered with the scsi or nvme
2005 * transport, it is no longer an active node. Otherwise
2006 * devloss handles the final cleanup.
2008 if (!(ndlp
->fc4_xpt_flags
& (SCSI_XPT_REGD
| NVME_XPT_REGD
))) {
2009 spin_lock_irq(&ndlp
->lock
);
2010 ndlp
->nlp_flag
&= ~NLP_NPR_2B_DISC
;
2011 spin_unlock_irq(&ndlp
->lock
);
2012 lpfc_disc_state_machine(vport
, ndlp
, cmdiocb
,
2016 /* Good status, call state machine */
2017 prsp
= list_entry(((struct lpfc_dmabuf
*)
2018 cmdiocb
->context2
)->list
.next
,
2019 struct lpfc_dmabuf
, list
);
2020 ndlp
= lpfc_plogi_confirm_nport(phba
, prsp
->virt
, ndlp
);
2021 lpfc_disc_state_machine(vport
, ndlp
, cmdiocb
,
2022 NLP_EVT_CMPL_PLOGI
);
2026 if (disc
&& vport
->num_disc_nodes
) {
2027 /* Check to see if there are more PLOGIs to be sent */
2028 lpfc_more_plogi(vport
);
2030 if (vport
->num_disc_nodes
== 0) {
2031 spin_lock_irq(shost
->host_lock
);
2032 vport
->fc_flag
&= ~FC_NDISC_ACTIVE
;
2033 spin_unlock_irq(shost
->host_lock
);
2035 lpfc_can_disctmo(vport
);
2036 lpfc_end_rscn(vport
);
2041 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_NODE
,
2042 "PLOGI Cmpl PUT: did:x%x refcnt %d",
2043 ndlp
->nlp_DID
, kref_read(&ndlp
->kref
), 0);
2046 /* Release the reference on the original I/O request. */
2047 free_ndlp
= (struct lpfc_nodelist
*)cmdiocb
->context1
;
2049 lpfc_els_free_iocb(phba
, cmdiocb
);
2050 lpfc_nlp_put(free_ndlp
);
2055 * lpfc_issue_els_plogi - Issue an plogi iocb command for a vport
2056 * @vport: pointer to a host virtual N_Port data structure.
2057 * @did: destination port identifier.
2058 * @retry: number of retries to the command IOCB.
2060 * This routine issues a Port Login (PLOGI) command to a remote N_Port
2061 * (with the @did) for a @vport. Before issuing a PLOGI to a remote N_Port,
2062 * the ndlp with the remote N_Port DID must exist on the @vport's ndlp list.
2063 * This routine constructs the proper feilds of the PLOGI IOCB and invokes
2064 * the lpfc_sli_issue_iocb() routine to send out PLOGI ELS command.
2066 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
2067 * will be incremented by 1 for holding the ndlp and the reference to ndlp
2068 * will be stored into the context1 field of the IOCB for the completion
2069 * callback function to the PLOGI ELS command.
2072 * 0 - Successfully issued a plogi for @vport
2073 * 1 - failed to issue a plogi for @vport
2076 lpfc_issue_els_plogi(struct lpfc_vport
*vport
, uint32_t did
, uint8_t retry
)
2078 struct lpfc_hba
*phba
= vport
->phba
;
2079 struct serv_parm
*sp
;
2080 struct lpfc_nodelist
*ndlp
;
2081 struct lpfc_iocbq
*elsiocb
;
2086 ndlp
= lpfc_findnode_did(vport
, did
);
2089 /* Defer the processing of the issue PLOGI until after the
2090 * outstanding UNREG_RPI mbox command completes, unless we
2091 * are going offline. This logic does not apply for Fabric DIDs
2093 if ((ndlp
->nlp_flag
& NLP_UNREG_INP
) &&
2094 ((ndlp
->nlp_DID
& Fabric_DID_MASK
) != Fabric_DID_MASK
) &&
2095 !(vport
->fc_flag
& FC_OFFLINE_MODE
)) {
2096 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_DISCOVERY
,
2097 "4110 Issue PLOGI x%x deferred "
2098 "on NPort x%x rpi x%x Data: x%px\n",
2099 ndlp
->nlp_defer_did
, ndlp
->nlp_DID
,
2100 ndlp
->nlp_rpi
, ndlp
);
2102 /* We can only defer 1st PLOGI */
2103 if (ndlp
->nlp_defer_did
== NLP_EVT_NOTHING_PENDING
)
2104 ndlp
->nlp_defer_did
= did
;
2109 /* If ndlp is not NULL, we will bump the reference count on it */
2110 cmdsize
= (sizeof(uint32_t) + sizeof(struct serv_parm
));
2111 elsiocb
= lpfc_prep_els_iocb(vport
, 1, cmdsize
, retry
, ndlp
, did
,
2116 spin_lock_irq(&ndlp
->lock
);
2117 ndlp
->nlp_flag
&= ~NLP_FCP_PRLI_RJT
;
2118 spin_unlock_irq(&ndlp
->lock
);
2120 pcmd
= (uint8_t *) (((struct lpfc_dmabuf
*) elsiocb
->context2
)->virt
);
2122 /* For PLOGI request, remainder of payload is service parameters */
2123 *((uint32_t *) (pcmd
)) = ELS_CMD_PLOGI
;
2124 pcmd
+= sizeof(uint32_t);
2125 memcpy(pcmd
, &vport
->fc_sparam
, sizeof(struct serv_parm
));
2126 sp
= (struct serv_parm
*) pcmd
;
2129 * If we are a N-port connected to a Fabric, fix-up paramm's so logins
2130 * to device on remote loops work.
2132 if ((vport
->fc_flag
& FC_FABRIC
) && !(vport
->fc_flag
& FC_PUBLIC_LOOP
))
2133 sp
->cmn
.altBbCredit
= 1;
2135 if (sp
->cmn
.fcphLow
< FC_PH_4_3
)
2136 sp
->cmn
.fcphLow
= FC_PH_4_3
;
2138 if (sp
->cmn
.fcphHigh
< FC_PH3
)
2139 sp
->cmn
.fcphHigh
= FC_PH3
;
2141 sp
->cmn
.valid_vendor_ver_level
= 0;
2142 memset(sp
->un
.vendorVersion
, 0, sizeof(sp
->un
.vendorVersion
));
2143 sp
->cmn
.bbRcvSizeMsb
&= 0xF;
2145 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_CMD
,
2146 "Issue PLOGI: did:x%x",
2149 /* If our firmware supports this feature, convey that
2150 * information to the target using the vendor specific field.
2152 if (phba
->sli
.sli_flag
& LPFC_SLI_SUPPRESS_RSP
) {
2153 sp
->cmn
.valid_vendor_ver_level
= 1;
2154 sp
->un
.vv
.vid
= cpu_to_be32(LPFC_VV_EMLX_ID
);
2155 sp
->un
.vv
.flags
= cpu_to_be32(LPFC_VV_SUPPRESS_RSP
);
2158 phba
->fc_stat
.elsXmitPLOGI
++;
2159 elsiocb
->iocb_cmpl
= lpfc_cmpl_els_plogi
;
2161 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_CMD
,
2162 "Issue PLOGI: did:x%x refcnt %d",
2163 did
, kref_read(&ndlp
->kref
), 0);
2164 elsiocb
->context1
= lpfc_nlp_get(ndlp
);
2165 if (!elsiocb
->context1
)
2168 ret
= lpfc_sli_issue_iocb(phba
, LPFC_ELS_RING
, elsiocb
, 0);
2176 lpfc_els_free_iocb(phba
, elsiocb
);
2181 * lpfc_cmpl_els_prli - Completion callback function for prli
2182 * @phba: pointer to lpfc hba data structure.
2183 * @cmdiocb: pointer to lpfc command iocb data structure.
2184 * @rspiocb: pointer to lpfc response iocb data structure.
2186 * This routine is the completion callback function for a Process Login
2187 * (PRLI) ELS command. The PRLI response IOCB status is checked for error
2188 * status. If there is error status reported, PRLI retry shall be attempted
2189 * by invoking the lpfc_els_retry() routine. Otherwise, the state
2190 * NLP_EVT_CMPL_PRLI is sent to the Discover State Machine (DSM) for this
2191 * ndlp to mark the PRLI completion.
2194 lpfc_cmpl_els_prli(struct lpfc_hba
*phba
, struct lpfc_iocbq
*cmdiocb
,
2195 struct lpfc_iocbq
*rspiocb
)
2197 struct lpfc_vport
*vport
= cmdiocb
->vport
;
2199 struct lpfc_nodelist
*ndlp
;
2203 /* we pass cmdiocb to state machine which needs rspiocb as well */
2204 cmdiocb
->context_un
.rsp_iocb
= rspiocb
;
2206 irsp
= &(rspiocb
->iocb
);
2207 ndlp
= (struct lpfc_nodelist
*) cmdiocb
->context1
;
2208 spin_lock_irq(&ndlp
->lock
);
2209 ndlp
->nlp_flag
&= ~NLP_PRLI_SND
;
2211 /* Driver supports multiple FC4 types. Counters matter. */
2212 vport
->fc_prli_sent
--;
2213 ndlp
->fc4_prli_sent
--;
2214 spin_unlock_irq(&ndlp
->lock
);
2216 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_CMD
,
2217 "PRLI cmpl: status:x%x/x%x did:x%x",
2218 irsp
->ulpStatus
, irsp
->un
.ulpWord
[4],
2221 /* PRLI completes to NPort <nlp_DID> */
2222 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_ELS
,
2223 "0103 PRLI completes to NPort x%06x "
2224 "Data: x%x x%x x%x x%x\n",
2225 ndlp
->nlp_DID
, irsp
->ulpStatus
, irsp
->un
.ulpWord
[4],
2226 vport
->num_disc_nodes
, ndlp
->fc4_prli_sent
);
2228 /* Check to see if link went down during discovery */
2229 if (lpfc_els_chk_latt(vport
))
2232 if (irsp
->ulpStatus
) {
2233 /* Check for retry */
2234 if (lpfc_els_retry(phba
, cmdiocb
, rspiocb
)) {
2235 /* ELS command is being retried */
2239 /* If we don't send GFT_ID to Fabric, a PRLI error
2240 * could be expected.
2242 if ((vport
->fc_flag
& FC_FABRIC
) ||
2243 (vport
->cfg_enable_fc4_type
!= LPFC_ENABLE_BOTH
)) {
2245 loglevel
= LOG_TRACE_EVENT
;
2252 lpfc_printf_vlog(vport
, mode
, loglevel
,
2253 "2754 PRLI failure DID:%06X Status:x%x/x%x, "
2255 ndlp
->nlp_DID
, irsp
->ulpStatus
,
2256 irsp
->un
.ulpWord
[4], ndlp
->fc4_prli_sent
);
2258 /* Do not call DSM for lpfc_els_abort'ed ELS cmds */
2259 if (lpfc_error_lost_link(irsp
))
2262 lpfc_disc_state_machine(vport
, ndlp
, cmdiocb
,
2265 /* As long as this node is not registered with the SCSI
2266 * or NVMe transport and no other PRLIs are outstanding,
2267 * it is no longer an active node. Otherwise devloss
2268 * handles the final cleanup.
2270 if (!(ndlp
->fc4_xpt_flags
& (SCSI_XPT_REGD
| NVME_XPT_REGD
)) &&
2271 !ndlp
->fc4_prli_sent
) {
2272 spin_lock_irq(&ndlp
->lock
);
2273 ndlp
->nlp_flag
&= ~NLP_NPR_2B_DISC
;
2274 spin_unlock_irq(&ndlp
->lock
);
2275 lpfc_disc_state_machine(vport
, ndlp
, cmdiocb
,
2279 /* Good status, call state machine. However, if another
2280 * PRLI is outstanding, don't call the state machine
2281 * because final disposition to Mapped or Unmapped is
2284 lpfc_disc_state_machine(vport
, ndlp
, cmdiocb
,
2289 lpfc_els_free_iocb(phba
, cmdiocb
);
2295 * lpfc_issue_els_prli - Issue a prli iocb command for a vport
2296 * @vport: pointer to a host virtual N_Port data structure.
2297 * @ndlp: pointer to a node-list data structure.
2298 * @retry: number of retries to the command IOCB.
2300 * This routine issues a Process Login (PRLI) ELS command for the
2301 * @vport. The PRLI service parameters are set up in the payload of the
2302 * PRLI Request command and the pointer to lpfc_cmpl_els_prli() routine
2303 * is put to the IOCB completion callback func field before invoking the
2304 * routine lpfc_sli_issue_iocb() to send out PRLI command.
2306 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
2307 * will be incremented by 1 for holding the ndlp and the reference to ndlp
2308 * will be stored into the context1 field of the IOCB for the completion
2309 * callback function to the PRLI ELS command.
2312 * 0 - successfully issued prli iocb command for @vport
2313 * 1 - failed to issue prli iocb command for @vport
2316 lpfc_issue_els_prli(struct lpfc_vport
*vport
, struct lpfc_nodelist
*ndlp
,
2320 struct lpfc_hba
*phba
= vport
->phba
;
2322 struct lpfc_nvme_prli
*npr_nvme
;
2323 struct lpfc_iocbq
*elsiocb
;
2326 u32 local_nlp_type
, elscmd
;
2329 * If we are in RSCN mode, the FC4 types supported from a
2330 * previous GFT_ID command may not be accurate. So, if we
2331 * are a NVME Initiator, always look for the possibility of
2332 * the remote NPort beng a NVME Target.
2334 if (phba
->sli_rev
== LPFC_SLI_REV4
&&
2335 vport
->fc_flag
& FC_RSCN_MODE
&&
2336 vport
->nvmei_support
)
2337 ndlp
->nlp_fc4_type
|= NLP_FC4_NVME
;
2338 local_nlp_type
= ndlp
->nlp_fc4_type
;
2340 /* This routine will issue 1 or 2 PRLIs, so zero all the ndlp
2341 * fields here before any of them can complete.
2343 ndlp
->nlp_type
&= ~(NLP_FCP_TARGET
| NLP_FCP_INITIATOR
);
2344 ndlp
->nlp_type
&= ~(NLP_NVME_TARGET
| NLP_NVME_INITIATOR
);
2345 ndlp
->nlp_fcp_info
&= ~NLP_FCP_2_DEVICE
;
2346 ndlp
->nlp_flag
&= ~(NLP_FIRSTBURST
| NLP_NPR_2B_DISC
);
2347 ndlp
->nvme_fb_size
= 0;
2350 if (local_nlp_type
& NLP_FC4_FCP
) {
2351 /* Payload is 4 + 16 = 20 x14 bytes. */
2352 cmdsize
= (sizeof(uint32_t) + sizeof(PRLI
));
2353 elscmd
= ELS_CMD_PRLI
;
2354 } else if (local_nlp_type
& NLP_FC4_NVME
) {
2355 /* Payload is 4 + 20 = 24 x18 bytes. */
2356 cmdsize
= (sizeof(uint32_t) + sizeof(struct lpfc_nvme_prli
));
2357 elscmd
= ELS_CMD_NVMEPRLI
;
2359 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_DISCOVERY
,
2360 "3083 Unknown FC_TYPE x%x ndlp x%06x\n",
2361 ndlp
->nlp_fc4_type
, ndlp
->nlp_DID
);
2365 /* SLI3 ports don't support NVME. If this rport is a strict NVME
2366 * FC4 type, implicitly LOGO.
2368 if (phba
->sli_rev
== LPFC_SLI_REV3
&&
2369 ndlp
->nlp_fc4_type
== NLP_FC4_NVME
) {
2370 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_DISCOVERY
,
2371 "3088 Rport fc4 type 0x%x not supported by SLI3 adapter\n",
2373 lpfc_disc_state_machine(vport
, ndlp
, NULL
, NLP_EVT_DEVICE_RM
);
2377 elsiocb
= lpfc_prep_els_iocb(vport
, 1, cmdsize
, retry
, ndlp
,
2378 ndlp
->nlp_DID
, elscmd
);
2382 pcmd
= (uint8_t *) (((struct lpfc_dmabuf
*) elsiocb
->context2
)->virt
);
2384 /* For PRLI request, remainder of payload is service parameters */
2385 memset(pcmd
, 0, cmdsize
);
2387 if (local_nlp_type
& NLP_FC4_FCP
) {
2388 /* Remainder of payload is FCP PRLI parameter page.
2389 * Note: this data structure is defined as
2390 * BE/LE in the structure definition so no
2391 * byte swap call is made.
2393 *((uint32_t *)(pcmd
)) = ELS_CMD_PRLI
;
2394 pcmd
+= sizeof(uint32_t);
2398 * If our firmware version is 3.20 or later,
2399 * set the following bits for FC-TAPE support.
2401 if (phba
->vpd
.rev
.feaLevelHigh
>= 0x02) {
2402 npr
->ConfmComplAllowed
= 1;
2404 npr
->TaskRetryIdReq
= 1;
2406 npr
->estabImagePair
= 1;
2407 npr
->readXferRdyDis
= 1;
2408 if (vport
->cfg_first_burst_size
)
2409 npr
->writeXferRdyDis
= 1;
2411 /* For FCP support */
2412 npr
->prliType
= PRLI_FCP_TYPE
;
2413 npr
->initiatorFunc
= 1;
2414 elsiocb
->iocb_flag
|= LPFC_PRLI_FCP_REQ
;
2416 /* Remove FCP type - processed. */
2417 local_nlp_type
&= ~NLP_FC4_FCP
;
2418 } else if (local_nlp_type
& NLP_FC4_NVME
) {
2419 /* Remainder of payload is NVME PRLI parameter page.
2420 * This data structure is the newer definition that
2421 * uses bf macros so a byte swap is required.
2423 *((uint32_t *)(pcmd
)) = ELS_CMD_NVMEPRLI
;
2424 pcmd
+= sizeof(uint32_t);
2425 npr_nvme
= (struct lpfc_nvme_prli
*)pcmd
;
2426 bf_set(prli_type_code
, npr_nvme
, PRLI_NVME_TYPE
);
2427 bf_set(prli_estabImagePair
, npr_nvme
, 0); /* Should be 0 */
2429 bf_set(prli_nsler
, npr_nvme
, 1);
2430 bf_set(prli_conf
, npr_nvme
, 1);
2433 /* Only initiators request first burst. */
2434 if ((phba
->cfg_nvme_enable_fb
) &&
2435 !phba
->nvmet_support
)
2436 bf_set(prli_fba
, npr_nvme
, 1);
2438 if (phba
->nvmet_support
) {
2439 bf_set(prli_tgt
, npr_nvme
, 1);
2440 bf_set(prli_disc
, npr_nvme
, 1);
2442 bf_set(prli_init
, npr_nvme
, 1);
2443 bf_set(prli_conf
, npr_nvme
, 1);
2446 npr_nvme
->word1
= cpu_to_be32(npr_nvme
->word1
);
2447 npr_nvme
->word4
= cpu_to_be32(npr_nvme
->word4
);
2448 elsiocb
->iocb_flag
|= LPFC_PRLI_NVME_REQ
;
2450 /* Remove NVME type - processed. */
2451 local_nlp_type
&= ~NLP_FC4_NVME
;
2454 phba
->fc_stat
.elsXmitPRLI
++;
2455 elsiocb
->iocb_cmpl
= lpfc_cmpl_els_prli
;
2456 spin_lock_irq(&ndlp
->lock
);
2457 ndlp
->nlp_flag
|= NLP_PRLI_SND
;
2459 /* The vport counters are used for lpfc_scan_finished, but
2460 * the ndlp is used to track outstanding PRLIs for different
2463 vport
->fc_prli_sent
++;
2464 ndlp
->fc4_prli_sent
++;
2465 spin_unlock_irq(&ndlp
->lock
);
2467 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_CMD
,
2468 "Issue PRLI: did:x%x refcnt %d",
2469 ndlp
->nlp_DID
, kref_read(&ndlp
->kref
), 0);
2470 elsiocb
->context1
= lpfc_nlp_get(ndlp
);
2471 if (!elsiocb
->context1
)
2474 rc
= lpfc_sli_issue_iocb(phba
, LPFC_ELS_RING
, elsiocb
, 0);
2475 if (rc
== IOCB_ERROR
)
2479 /* The driver supports 2 FC4 types. Make sure
2480 * a PRLI is issued for all types before exiting.
2482 if (phba
->sli_rev
== LPFC_SLI_REV4
&&
2483 local_nlp_type
& (NLP_FC4_FCP
| NLP_FC4_NVME
))
2484 goto send_next_prli
;
2491 spin_lock_irq(&ndlp
->lock
);
2492 ndlp
->nlp_flag
&= ~NLP_PRLI_SND
;
2493 spin_unlock_irq(&ndlp
->lock
);
2494 lpfc_els_free_iocb(phba
, elsiocb
);
2499 * lpfc_rscn_disc - Perform rscn discovery for a vport
2500 * @vport: pointer to a host virtual N_Port data structure.
2502 * This routine performs Registration State Change Notification (RSCN)
2503 * discovery for a @vport. If the @vport's node port recovery count is not
2504 * zero, it will invoke the lpfc_els_disc_plogi() to perform PLOGI for all
2505 * the nodes that need recovery. If none of the PLOGI were needed through
2506 * the lpfc_els_disc_plogi() routine, the lpfc_end_rscn() routine shall be
2507 * invoked to check and handle possible more RSCN came in during the period
2508 * of processing the current ones.
2511 lpfc_rscn_disc(struct lpfc_vport
*vport
)
2513 lpfc_can_disctmo(vport
);
2515 /* RSCN discovery */
2516 /* go thru NPR nodes and issue ELS PLOGIs */
2517 if (vport
->fc_npr_cnt
)
2518 if (lpfc_els_disc_plogi(vport
))
2521 lpfc_end_rscn(vport
);
2525 * lpfc_adisc_done - Complete the adisc phase of discovery
2526 * @vport: pointer to lpfc_vport hba data structure that finished all ADISCs.
2528 * This function is called when the final ADISC is completed during discovery.
2529 * This function handles clearing link attention or issuing reg_vpi depending
2530 * on whether npiv is enabled. This function also kicks off the PLOGI phase of
2532 * This function is called with no locks held.
2535 lpfc_adisc_done(struct lpfc_vport
*vport
)
2537 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
2538 struct lpfc_hba
*phba
= vport
->phba
;
2541 * For NPIV, cmpl_reg_vpi will set port_state to READY,
2542 * and continue discovery.
2544 if ((phba
->sli3_options
& LPFC_SLI3_NPIV_ENABLED
) &&
2545 !(vport
->fc_flag
& FC_RSCN_MODE
) &&
2546 (phba
->sli_rev
< LPFC_SLI_REV4
)) {
2547 /* The ADISCs are complete. Doesn't matter if they
2548 * succeeded or failed because the ADISC completion
2549 * routine guarantees to call the state machine and
2550 * the RPI is either unregistered (failed ADISC response)
2551 * or the RPI is still valid and the node is marked
2552 * mapped for a target. The exchanges should be in the
2553 * correct state. This code is specific to SLI3.
2555 lpfc_issue_clear_la(phba
, vport
);
2556 lpfc_issue_reg_vpi(phba
, vport
);
2560 * For SLI2, we need to set port_state to READY
2561 * and continue discovery.
2563 if (vport
->port_state
< LPFC_VPORT_READY
) {
2564 /* If we get here, there is nothing to ADISC */
2565 lpfc_issue_clear_la(phba
, vport
);
2566 if (!(vport
->fc_flag
& FC_ABORT_DISCOVERY
)) {
2567 vport
->num_disc_nodes
= 0;
2568 /* go thru NPR list, issue ELS PLOGIs */
2569 if (vport
->fc_npr_cnt
)
2570 lpfc_els_disc_plogi(vport
);
2571 if (!vport
->num_disc_nodes
) {
2572 spin_lock_irq(shost
->host_lock
);
2573 vport
->fc_flag
&= ~FC_NDISC_ACTIVE
;
2574 spin_unlock_irq(shost
->host_lock
);
2575 lpfc_can_disctmo(vport
);
2576 lpfc_end_rscn(vport
);
2579 vport
->port_state
= LPFC_VPORT_READY
;
2581 lpfc_rscn_disc(vport
);
2585 * lpfc_more_adisc - Issue more adisc as needed
2586 * @vport: pointer to a host virtual N_Port data structure.
2588 * This routine determines whether there are more ndlps on a @vport
2589 * node list need to have Address Discover (ADISC) issued. If so, it will
2590 * invoke the lpfc_els_disc_adisc() routine to issue ADISC on the @vport's
2591 * remaining nodes which need to have ADISC sent.
2594 lpfc_more_adisc(struct lpfc_vport
*vport
)
2596 if (vport
->num_disc_nodes
)
2597 vport
->num_disc_nodes
--;
2598 /* Continue discovery with <num_disc_nodes> ADISCs to go */
2599 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_DISCOVERY
,
2600 "0210 Continue discovery with %d ADISCs to go "
2601 "Data: x%x x%x x%x\n",
2602 vport
->num_disc_nodes
, vport
->fc_adisc_cnt
,
2603 vport
->fc_flag
, vport
->port_state
);
2604 /* Check to see if there are more ADISCs to be sent */
2605 if (vport
->fc_flag
& FC_NLP_MORE
) {
2606 lpfc_set_disctmo(vport
);
2607 /* go thru NPR nodes and issue any remaining ELS ADISCs */
2608 lpfc_els_disc_adisc(vport
);
2610 if (!vport
->num_disc_nodes
)
2611 lpfc_adisc_done(vport
);
2616 * lpfc_cmpl_els_adisc - Completion callback function for adisc
2617 * @phba: pointer to lpfc hba data structure.
2618 * @cmdiocb: pointer to lpfc command iocb data structure.
2619 * @rspiocb: pointer to lpfc response iocb data structure.
2621 * This routine is the completion function for issuing the Address Discover
2622 * (ADISC) command. It first checks to see whether link went down during
2623 * the discovery process. If so, the node will be marked as node port
2624 * recovery for issuing discover IOCB by the link attention handler and
2625 * exit. Otherwise, the response status is checked. If error was reported
2626 * in the response status, the ADISC command shall be retried by invoking
2627 * the lpfc_els_retry() routine. Otherwise, if no error was reported in
2628 * the response status, the state machine is invoked to set transition
2629 * with respect to NLP_EVT_CMPL_ADISC event.
2632 lpfc_cmpl_els_adisc(struct lpfc_hba
*phba
, struct lpfc_iocbq
*cmdiocb
,
2633 struct lpfc_iocbq
*rspiocb
)
2635 struct lpfc_vport
*vport
= cmdiocb
->vport
;
2637 struct lpfc_nodelist
*ndlp
;
2640 /* we pass cmdiocb to state machine which needs rspiocb as well */
2641 cmdiocb
->context_un
.rsp_iocb
= rspiocb
;
2643 irsp
= &(rspiocb
->iocb
);
2644 ndlp
= (struct lpfc_nodelist
*) cmdiocb
->context1
;
2646 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_CMD
,
2647 "ADISC cmpl: status:x%x/x%x did:x%x",
2648 irsp
->ulpStatus
, irsp
->un
.ulpWord
[4],
2651 /* Since ndlp can be freed in the disc state machine, note if this node
2652 * is being used during discovery.
2654 spin_lock_irq(&ndlp
->lock
);
2655 disc
= (ndlp
->nlp_flag
& NLP_NPR_2B_DISC
);
2656 ndlp
->nlp_flag
&= ~(NLP_ADISC_SND
| NLP_NPR_2B_DISC
);
2657 spin_unlock_irq(&ndlp
->lock
);
2658 /* ADISC completes to NPort <nlp_DID> */
2659 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_ELS
,
2660 "0104 ADISC completes to NPort x%x "
2661 "Data: x%x x%x x%x x%x x%x\n",
2662 ndlp
->nlp_DID
, irsp
->ulpStatus
, irsp
->un
.ulpWord
[4],
2663 irsp
->ulpTimeout
, disc
, vport
->num_disc_nodes
);
2664 /* Check to see if link went down during discovery */
2665 if (lpfc_els_chk_latt(vport
)) {
2666 spin_lock_irq(&ndlp
->lock
);
2667 ndlp
->nlp_flag
|= NLP_NPR_2B_DISC
;
2668 spin_unlock_irq(&ndlp
->lock
);
2672 if (irsp
->ulpStatus
) {
2673 /* Check for retry */
2674 if (lpfc_els_retry(phba
, cmdiocb
, rspiocb
)) {
2675 /* ELS command is being retried */
2677 spin_lock_irq(&ndlp
->lock
);
2678 ndlp
->nlp_flag
|= NLP_NPR_2B_DISC
;
2679 spin_unlock_irq(&ndlp
->lock
);
2680 lpfc_set_disctmo(vport
);
2685 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_TRACE_EVENT
,
2686 "2755 ADISC failure DID:%06X Status:x%x/x%x\n",
2687 ndlp
->nlp_DID
, irsp
->ulpStatus
,
2688 irsp
->un
.ulpWord
[4]);
2689 /* Do not call DSM for lpfc_els_abort'ed ELS cmds */
2690 if (lpfc_error_lost_link(irsp
))
2693 lpfc_disc_state_machine(vport
, ndlp
, cmdiocb
,
2694 NLP_EVT_CMPL_ADISC
);
2696 /* As long as this node is not registered with the SCSI or NVMe
2697 * transport, it is no longer an active node. Otherwise
2698 * devloss handles the final cleanup.
2700 if (!(ndlp
->fc4_xpt_flags
& (SCSI_XPT_REGD
| NVME_XPT_REGD
))) {
2701 spin_lock_irq(&ndlp
->lock
);
2702 ndlp
->nlp_flag
&= ~NLP_NPR_2B_DISC
;
2703 spin_unlock_irq(&ndlp
->lock
);
2704 lpfc_disc_state_machine(vport
, ndlp
, cmdiocb
,
2708 /* Good status, call state machine */
2709 lpfc_disc_state_machine(vport
, ndlp
, cmdiocb
,
2710 NLP_EVT_CMPL_ADISC
);
2713 /* Check to see if there are more ADISCs to be sent */
2714 if (disc
&& vport
->num_disc_nodes
)
2715 lpfc_more_adisc(vport
);
2717 lpfc_els_free_iocb(phba
, cmdiocb
);
2723 * lpfc_issue_els_adisc - Issue an address discover iocb to an node on a vport
2724 * @vport: pointer to a virtual N_Port data structure.
2725 * @ndlp: pointer to a node-list data structure.
2726 * @retry: number of retries to the command IOCB.
2728 * This routine issues an Address Discover (ADISC) for an @ndlp on a
2729 * @vport. It prepares the payload of the ADISC ELS command, updates the
2730 * and states of the ndlp, and invokes the lpfc_sli_issue_iocb() routine
2731 * to issue the ADISC ELS command.
2733 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
2734 * will be incremented by 1 for holding the ndlp and the reference to ndlp
2735 * will be stored into the context1 field of the IOCB for the completion
2736 * callback function to the ADISC ELS command.
2739 * 0 - successfully issued adisc
2740 * 1 - failed to issue adisc
2743 lpfc_issue_els_adisc(struct lpfc_vport
*vport
, struct lpfc_nodelist
*ndlp
,
2747 struct lpfc_hba
*phba
= vport
->phba
;
2749 struct lpfc_iocbq
*elsiocb
;
2753 cmdsize
= (sizeof(uint32_t) + sizeof(ADISC
));
2754 elsiocb
= lpfc_prep_els_iocb(vport
, 1, cmdsize
, retry
, ndlp
,
2755 ndlp
->nlp_DID
, ELS_CMD_ADISC
);
2759 pcmd
= (uint8_t *) (((struct lpfc_dmabuf
*) elsiocb
->context2
)->virt
);
2761 /* For ADISC request, remainder of payload is service parameters */
2762 *((uint32_t *) (pcmd
)) = ELS_CMD_ADISC
;
2763 pcmd
+= sizeof(uint32_t);
2765 /* Fill in ADISC payload */
2766 ap
= (ADISC
*) pcmd
;
2767 ap
->hardAL_PA
= phba
->fc_pref_ALPA
;
2768 memcpy(&ap
->portName
, &vport
->fc_portname
, sizeof(struct lpfc_name
));
2769 memcpy(&ap
->nodeName
, &vport
->fc_nodename
, sizeof(struct lpfc_name
));
2770 ap
->DID
= be32_to_cpu(vport
->fc_myDID
);
2772 phba
->fc_stat
.elsXmitADISC
++;
2773 elsiocb
->iocb_cmpl
= lpfc_cmpl_els_adisc
;
2774 spin_lock_irq(&ndlp
->lock
);
2775 ndlp
->nlp_flag
|= NLP_ADISC_SND
;
2776 spin_unlock_irq(&ndlp
->lock
);
2777 elsiocb
->context1
= lpfc_nlp_get(ndlp
);
2778 if (!elsiocb
->context1
)
2781 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_CMD
,
2782 "Issue ADISC: did:x%x refcnt %d",
2783 ndlp
->nlp_DID
, kref_read(&ndlp
->kref
), 0);
2784 rc
= lpfc_sli_issue_iocb(phba
, LPFC_ELS_RING
, elsiocb
, 0);
2785 if (rc
== IOCB_ERROR
)
2792 spin_lock_irq(&ndlp
->lock
);
2793 ndlp
->nlp_flag
&= ~NLP_ADISC_SND
;
2794 spin_unlock_irq(&ndlp
->lock
);
2795 lpfc_els_free_iocb(phba
, elsiocb
);
2800 * lpfc_cmpl_els_logo - Completion callback function for logo
2801 * @phba: pointer to lpfc hba data structure.
2802 * @cmdiocb: pointer to lpfc command iocb data structure.
2803 * @rspiocb: pointer to lpfc response iocb data structure.
2805 * This routine is the completion function for issuing the ELS Logout (LOGO)
2806 * command. If no error status was reported from the LOGO response, the
2807 * state machine of the associated ndlp shall be invoked for transition with
2808 * respect to NLP_EVT_CMPL_LOGO event. Otherwise, if error status was reported,
2809 * the lpfc_els_retry() routine will be invoked to retry the LOGO command.
2812 lpfc_cmpl_els_logo(struct lpfc_hba
*phba
, struct lpfc_iocbq
*cmdiocb
,
2813 struct lpfc_iocbq
*rspiocb
)
2815 struct lpfc_nodelist
*ndlp
= (struct lpfc_nodelist
*) cmdiocb
->context1
;
2816 struct lpfc_vport
*vport
= ndlp
->vport
;
2818 struct lpfcMboxq
*mbox
;
2819 unsigned long flags
;
2820 uint32_t skip_recovery
= 0;
2822 /* we pass cmdiocb to state machine which needs rspiocb as well */
2823 cmdiocb
->context_un
.rsp_iocb
= rspiocb
;
2825 irsp
= &(rspiocb
->iocb
);
2826 spin_lock_irq(&ndlp
->lock
);
2827 ndlp
->nlp_flag
&= ~NLP_LOGO_SND
;
2828 spin_unlock_irq(&ndlp
->lock
);
2830 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_CMD
,
2831 "LOGO cmpl: status:x%x/x%x did:x%x",
2832 irsp
->ulpStatus
, irsp
->un
.ulpWord
[4],
2835 /* LOGO completes to NPort <nlp_DID> */
2836 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_ELS
,
2837 "0105 LOGO completes to NPort x%x "
2838 "refcnt %d nflags x%x Data: x%x x%x x%x x%x\n",
2839 ndlp
->nlp_DID
, kref_read(&ndlp
->kref
), ndlp
->nlp_flag
,
2840 irsp
->ulpStatus
, irsp
->un
.ulpWord
[4],
2841 irsp
->ulpTimeout
, vport
->num_disc_nodes
);
2843 if (lpfc_els_chk_latt(vport
)) {
2848 /* The LOGO will not be retried on failure. A LOGO was
2849 * issued to the remote rport and a ACC or RJT or no Answer are
2850 * all acceptable. Note the failure and move forward with
2851 * discovery. The PLOGI will retry.
2853 if (irsp
->ulpStatus
) {
2855 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_TRACE_EVENT
,
2856 "2756 LOGO failure, No Retry DID:%06X Status:x%x/x%x\n",
2857 ndlp
->nlp_DID
, irsp
->ulpStatus
,
2858 irsp
->un
.ulpWord
[4]);
2859 /* Do not call DSM for lpfc_els_abort'ed ELS cmds */
2860 if (lpfc_error_lost_link(irsp
)) {
2866 /* Call state machine. This will unregister the rpi if needed. */
2867 lpfc_disc_state_machine(vport
, ndlp
, cmdiocb
, NLP_EVT_CMPL_LOGO
);
2869 /* The driver sets this flag for an NPIV instance that doesn't want to
2870 * log into the remote port.
2872 if (ndlp
->nlp_flag
& NLP_TARGET_REMOVE
) {
2873 lpfc_disc_state_machine(vport
, ndlp
, cmdiocb
,
2875 lpfc_els_free_iocb(phba
, cmdiocb
);
2878 /* Presume the node was released. */
2883 /* Driver is done with the IO. */
2884 lpfc_els_free_iocb(phba
, cmdiocb
);
2887 /* If we are in pt2pt mode, we could rcv new S_ID on PLOGI */
2888 if ((vport
->fc_flag
& FC_PT2PT
) &&
2889 !(vport
->fc_flag
& FC_PT2PT_PLOGI
)) {
2890 phba
->pport
->fc_myDID
= 0;
2892 if ((vport
->cfg_enable_fc4_type
== LPFC_ENABLE_BOTH
) ||
2893 (vport
->cfg_enable_fc4_type
== LPFC_ENABLE_NVME
)) {
2894 if (phba
->nvmet_support
)
2895 lpfc_nvmet_update_targetport(phba
);
2897 lpfc_nvme_update_localport(phba
->pport
);
2900 mbox
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
2902 lpfc_config_link(phba
, mbox
);
2903 mbox
->mbox_cmpl
= lpfc_sli_def_mbox_cmpl
;
2904 mbox
->vport
= vport
;
2905 if (lpfc_sli_issue_mbox(phba
, mbox
, MBX_NOWAIT
) ==
2907 mempool_free(mbox
, phba
->mbox_mem_pool
);
2914 * If the node is a target, the handling attempts to recover the port.
2915 * For any other port type, the rpi is unregistered as an implicit
2918 if (ndlp
->nlp_type
& (NLP_FCP_TARGET
| NLP_NVME_TARGET
) &&
2919 skip_recovery
== 0) {
2920 lpfc_cancel_retry_delay_tmo(vport
, ndlp
);
2921 spin_lock_irqsave(&ndlp
->lock
, flags
);
2922 ndlp
->nlp_flag
|= NLP_NPR_2B_DISC
;
2923 spin_unlock_irqrestore(&ndlp
->lock
, flags
);
2925 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_ELS
,
2926 "3187 LOGO completes to NPort x%x: Start "
2927 "Recovery Data: x%x x%x x%x x%x\n",
2928 ndlp
->nlp_DID
, irsp
->ulpStatus
,
2929 irsp
->un
.ulpWord
[4], irsp
->ulpTimeout
,
2930 vport
->num_disc_nodes
);
2931 lpfc_disc_start(vport
);
2935 /* Cleanup path for failed REG_RPI handling. If REG_RPI fails, the
2936 * driver sends a LOGO to the rport to cleanup. For fabric and
2937 * initiator ports cleanup the node as long as it the node is not
2938 * register with the transport.
2940 if (!(ndlp
->fc4_xpt_flags
& (SCSI_XPT_REGD
| NVME_XPT_REGD
))) {
2941 spin_lock_irq(&ndlp
->lock
);
2942 ndlp
->nlp_flag
&= ~NLP_NPR_2B_DISC
;
2943 spin_unlock_irq(&ndlp
->lock
);
2944 lpfc_disc_state_machine(vport
, ndlp
, cmdiocb
,
2950 * lpfc_issue_els_logo - Issue a logo to an node on a vport
2951 * @vport: pointer to a virtual N_Port data structure.
2952 * @ndlp: pointer to a node-list data structure.
2953 * @retry: number of retries to the command IOCB.
2955 * This routine constructs and issues an ELS Logout (LOGO) iocb command
2956 * to a remote node, referred by an @ndlp on a @vport. It constructs the
2957 * payload of the IOCB, properly sets up the @ndlp state, and invokes the
2958 * lpfc_sli_issue_iocb() routine to send out the LOGO ELS command.
2960 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
2961 * will be incremented by 1 for holding the ndlp and the reference to ndlp
2962 * will be stored into the context1 field of the IOCB for the completion
2963 * callback function to the LOGO ELS command.
2965 * Callers of this routine are expected to unregister the RPI first
2968 * 0 - successfully issued logo
2969 * 1 - failed to issue logo
2972 lpfc_issue_els_logo(struct lpfc_vport
*vport
, struct lpfc_nodelist
*ndlp
,
2975 struct lpfc_hba
*phba
= vport
->phba
;
2976 struct lpfc_iocbq
*elsiocb
;
2981 spin_lock_irq(&ndlp
->lock
);
2982 if (ndlp
->nlp_flag
& NLP_LOGO_SND
) {
2983 spin_unlock_irq(&ndlp
->lock
);
2986 spin_unlock_irq(&ndlp
->lock
);
2988 cmdsize
= (2 * sizeof(uint32_t)) + sizeof(struct lpfc_name
);
2989 elsiocb
= lpfc_prep_els_iocb(vport
, 1, cmdsize
, retry
, ndlp
,
2990 ndlp
->nlp_DID
, ELS_CMD_LOGO
);
2994 pcmd
= (uint8_t *) (((struct lpfc_dmabuf
*) elsiocb
->context2
)->virt
);
2995 *((uint32_t *) (pcmd
)) = ELS_CMD_LOGO
;
2996 pcmd
+= sizeof(uint32_t);
2998 /* Fill in LOGO payload */
2999 *((uint32_t *) (pcmd
)) = be32_to_cpu(vport
->fc_myDID
);
3000 pcmd
+= sizeof(uint32_t);
3001 memcpy(pcmd
, &vport
->fc_portname
, sizeof(struct lpfc_name
));
3003 phba
->fc_stat
.elsXmitLOGO
++;
3004 elsiocb
->iocb_cmpl
= lpfc_cmpl_els_logo
;
3005 spin_lock_irq(&ndlp
->lock
);
3006 ndlp
->nlp_flag
|= NLP_LOGO_SND
;
3007 ndlp
->nlp_flag
&= ~NLP_ISSUE_LOGO
;
3008 spin_unlock_irq(&ndlp
->lock
);
3009 elsiocb
->context1
= lpfc_nlp_get(ndlp
);
3010 if (!elsiocb
->context1
)
3013 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_CMD
,
3014 "Issue LOGO: did:x%x refcnt %d",
3015 ndlp
->nlp_DID
, kref_read(&ndlp
->kref
), 0);
3016 rc
= lpfc_sli_issue_iocb(phba
, LPFC_ELS_RING
, elsiocb
, 0);
3017 if (rc
== IOCB_ERROR
)
3020 spin_lock_irq(&ndlp
->lock
);
3021 ndlp
->nlp_prev_state
= ndlp
->nlp_state
;
3022 spin_unlock_irq(&ndlp
->lock
);
3023 lpfc_nlp_set_state(vport
, ndlp
, NLP_STE_LOGO_ISSUE
);
3029 spin_lock_irq(&ndlp
->lock
);
3030 ndlp
->nlp_flag
&= ~NLP_LOGO_SND
;
3031 spin_unlock_irq(&ndlp
->lock
);
3032 lpfc_els_free_iocb(phba
, elsiocb
);
3037 * lpfc_cmpl_els_cmd - Completion callback function for generic els command
3038 * @phba: pointer to lpfc hba data structure.
3039 * @cmdiocb: pointer to lpfc command iocb data structure.
3040 * @rspiocb: pointer to lpfc response iocb data structure.
3042 * This routine is a generic completion callback function for ELS commands.
3043 * Specifically, it is the callback function which does not need to perform
3044 * any command specific operations. It is currently used by the ELS command
3045 * issuing routines for RSCN, lpfc_issue_els_rscn, and the ELS Fibre Channel
3046 * Address Resolution Protocol Response (FARPR) routine, lpfc_issue_els_farpr().
3047 * Other than certain debug loggings, this callback function simply invokes the
3048 * lpfc_els_chk_latt() routine to check whether link went down during the
3049 * discovery process.
3052 lpfc_cmpl_els_cmd(struct lpfc_hba
*phba
, struct lpfc_iocbq
*cmdiocb
,
3053 struct lpfc_iocbq
*rspiocb
)
3055 struct lpfc_vport
*vport
= cmdiocb
->vport
;
3056 struct lpfc_nodelist
*free_ndlp
;
3059 irsp
= &rspiocb
->iocb
;
3061 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_CMD
,
3062 "ELS cmd cmpl: status:x%x/x%x did:x%x",
3063 irsp
->ulpStatus
, irsp
->un
.ulpWord
[4],
3064 irsp
->un
.elsreq64
.remoteID
);
3066 /* ELS cmd tag <ulpIoTag> completes */
3067 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_ELS
,
3068 "0106 ELS cmd tag x%x completes Data: x%x x%x x%x\n",
3069 irsp
->ulpIoTag
, irsp
->ulpStatus
,
3070 irsp
->un
.ulpWord
[4], irsp
->ulpTimeout
);
3072 /* Check to see if link went down during discovery */
3073 lpfc_els_chk_latt(vport
);
3075 free_ndlp
= (struct lpfc_nodelist
*)cmdiocb
->context1
;
3077 lpfc_els_free_iocb(phba
, cmdiocb
);
3078 lpfc_nlp_put(free_ndlp
);
3082 * lpfc_cmpl_els_disc_cmd - Completion callback function for Discovery ELS cmd
3083 * @phba: pointer to lpfc hba data structure.
3084 * @cmdiocb: pointer to lpfc command iocb data structure.
3085 * @rspiocb: pointer to lpfc response iocb data structure.
3087 * This routine is a generic completion callback function for Discovery ELS cmd.
3088 * Currently used by the ELS command issuing routines for the ELS State Change
3089 * Request (SCR), lpfc_issue_els_scr() and the ELS RDF, lpfc_issue_els_rdf().
3090 * These commands will be retried once only for ELS timeout errors.
3093 lpfc_cmpl_els_disc_cmd(struct lpfc_hba
*phba
, struct lpfc_iocbq
*cmdiocb
,
3094 struct lpfc_iocbq
*rspiocb
)
3096 struct lpfc_vport
*vport
= cmdiocb
->vport
;
3098 struct lpfc_els_rdf_rsp
*prdf
;
3099 struct lpfc_dmabuf
*pcmd
, *prsp
;
3102 struct lpfc_nodelist
*ndlp
= cmdiocb
->context1
;
3104 irsp
= &rspiocb
->iocb
;
3106 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_CMD
,
3107 "ELS cmd cmpl: status:x%x/x%x did:x%x",
3108 irsp
->ulpStatus
, irsp
->un
.ulpWord
[4],
3109 irsp
->un
.elsreq64
.remoteID
);
3110 /* ELS cmd tag <ulpIoTag> completes */
3111 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_ELS
,
3112 "0217 ELS cmd tag x%x completes Data: x%x x%x x%x "
3114 irsp
->ulpIoTag
, irsp
->ulpStatus
,
3115 irsp
->un
.ulpWord
[4], irsp
->ulpTimeout
,
3118 pcmd
= (struct lpfc_dmabuf
*)cmdiocb
->context2
;
3122 pdata
= (u32
*)pcmd
->virt
;
3127 /* Only 1 retry for ELS Timeout only */
3128 if (irsp
->ulpStatus
== IOSTAT_LOCAL_REJECT
&&
3129 ((irsp
->un
.ulpWord
[4] & IOERR_PARAM_MASK
) ==
3130 IOERR_SEQUENCE_TIMEOUT
)) {
3132 if (cmdiocb
->retry
<= 1) {
3135 lpfc_issue_els_scr(vport
, cmdiocb
->retry
);
3138 cmdiocb
->context1
= NULL
; /* save ndlp refcnt */
3139 lpfc_issue_els_rdf(vport
, cmdiocb
->retry
);
3144 phba
->fc_stat
.elsRetryExceeded
++;
3146 if (irsp
->ulpStatus
) {
3147 /* ELS discovery cmd completes with error */
3148 lpfc_printf_vlog(vport
, KERN_WARNING
, LOG_ELS
,
3149 "4203 ELS cmd x%x error: x%x x%X\n", cmd
,
3150 irsp
->ulpStatus
, irsp
->un
.ulpWord
[4]);
3154 /* The RDF response doesn't have any impact on the running driver
3155 * but the notification descriptors are dumped here for support.
3157 if (cmd
== ELS_CMD_RDF
) {
3160 prsp
= list_get_first(&pcmd
->list
, struct lpfc_dmabuf
, list
);
3164 prdf
= (struct lpfc_els_rdf_rsp
*)prsp
->virt
;
3168 for (i
= 0; i
< ELS_RDF_REG_TAG_CNT
&&
3169 i
< be32_to_cpu(prdf
->reg_d1
.reg_desc
.count
); i
++)
3170 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_ELS
,
3171 "4677 Fabric RDF Notification Grant Data: "
3174 prdf
->reg_d1
.desc_tags
[i
]));
3178 /* Check to see if link went down during discovery */
3179 lpfc_els_chk_latt(vport
);
3180 lpfc_els_free_iocb(phba
, cmdiocb
);
3186 * lpfc_issue_els_scr - Issue a scr to an node on a vport
3187 * @vport: pointer to a host virtual N_Port data structure.
3188 * @retry: retry counter for the command IOCB.
3190 * This routine issues a State Change Request (SCR) to a fabric node
3191 * on a @vport. The remote node is Fabric Controller (0xfffffd). It
3192 * first search the @vport node list to find the matching ndlp. If no such
3193 * ndlp is found, a new ndlp shall be created for this (SCR) purpose. An
3194 * IOCB is allocated, payload prepared, and the lpfc_sli_issue_iocb()
3195 * routine is invoked to send the SCR IOCB.
3197 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
3198 * will be incremented by 1 for holding the ndlp and the reference to ndlp
3199 * will be stored into the context1 field of the IOCB for the completion
3200 * callback function to the SCR ELS command.
3203 * 0 - Successfully issued scr command
3204 * 1 - Failed to issue scr command
3207 lpfc_issue_els_scr(struct lpfc_vport
*vport
, uint8_t retry
)
3210 struct lpfc_hba
*phba
= vport
->phba
;
3211 struct lpfc_iocbq
*elsiocb
;
3214 struct lpfc_nodelist
*ndlp
;
3216 cmdsize
= (sizeof(uint32_t) + sizeof(SCR
));
3218 ndlp
= lpfc_findnode_did(vport
, Fabric_Cntl_DID
);
3220 ndlp
= lpfc_nlp_init(vport
, Fabric_Cntl_DID
);
3223 lpfc_enqueue_node(vport
, ndlp
);
3226 elsiocb
= lpfc_prep_els_iocb(vport
, 1, cmdsize
, retry
, ndlp
,
3227 ndlp
->nlp_DID
, ELS_CMD_SCR
);
3232 pcmd
= (uint8_t *) (((struct lpfc_dmabuf
*) elsiocb
->context2
)->virt
);
3234 *((uint32_t *) (pcmd
)) = ELS_CMD_SCR
;
3235 pcmd
+= sizeof(uint32_t);
3237 /* For SCR, remainder of payload is SCR parameter page */
3238 memset(pcmd
, 0, sizeof(SCR
));
3239 ((SCR
*) pcmd
)->Function
= SCR_FUNC_FULL
;
3241 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_CMD
,
3242 "Issue SCR: did:x%x",
3243 ndlp
->nlp_DID
, 0, 0);
3245 phba
->fc_stat
.elsXmitSCR
++;
3246 elsiocb
->iocb_cmpl
= lpfc_cmpl_els_disc_cmd
;
3247 elsiocb
->context1
= lpfc_nlp_get(ndlp
);
3248 if (!elsiocb
->context1
)
3251 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_CMD
,
3252 "Issue SCR: did:x%x refcnt %d",
3253 ndlp
->nlp_DID
, kref_read(&ndlp
->kref
), 0);
3255 rc
= lpfc_sli_issue_iocb(phba
, LPFC_ELS_RING
, elsiocb
, 0);
3256 if (rc
== IOCB_ERROR
)
3259 /* Keep the ndlp just in case RDF is being sent */
3265 lpfc_els_free_iocb(phba
, elsiocb
);
3270 * lpfc_issue_els_rscn - Issue an RSCN to the Fabric Controller (Fabric)
3271 * or the other nport (pt2pt).
3272 * @vport: pointer to a host virtual N_Port data structure.
3273 * @retry: number of retries to the command IOCB.
3275 * This routine issues a RSCN to the Fabric Controller (DID 0xFFFFFD)
3276 * when connected to a fabric, or to the remote port when connected
3277 * in point-to-point mode. When sent to the Fabric Controller, it will
3278 * replay the RSCN to registered recipients.
3280 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
3281 * will be incremented by 1 for holding the ndlp and the reference to ndlp
3282 * will be stored into the context1 field of the IOCB for the completion
3283 * callback function to the RSCN ELS command.
3286 * 0 - Successfully issued RSCN command
3287 * 1 - Failed to issue RSCN command
3290 lpfc_issue_els_rscn(struct lpfc_vport
*vport
, uint8_t retry
)
3293 struct lpfc_hba
*phba
= vport
->phba
;
3294 struct lpfc_iocbq
*elsiocb
;
3295 struct lpfc_nodelist
*ndlp
;
3297 struct fc_els_rscn rscn
;
3298 struct fc_els_rscn_page portid
;
3301 uint16_t cmdsize
= sizeof(*event
);
3303 /* Not supported for private loop */
3304 if (phba
->fc_topology
== LPFC_TOPOLOGY_LOOP
&&
3305 !(vport
->fc_flag
& FC_PUBLIC_LOOP
))
3308 if (vport
->fc_flag
& FC_PT2PT
) {
3309 /* find any mapped nport - that would be the other nport */
3310 ndlp
= lpfc_findnode_mapped(vport
);
3314 nportid
= FC_FID_FCTRL
;
3315 /* find the fabric controller node */
3316 ndlp
= lpfc_findnode_did(vport
, nportid
);
3318 /* if one didn't exist, make one */
3319 ndlp
= lpfc_nlp_init(vport
, nportid
);
3322 lpfc_enqueue_node(vport
, ndlp
);
3326 elsiocb
= lpfc_prep_els_iocb(vport
, 1, cmdsize
, retry
, ndlp
,
3327 ndlp
->nlp_DID
, ELS_CMD_RSCN_XMT
);
3332 event
= ((struct lpfc_dmabuf
*)elsiocb
->context2
)->virt
;
3334 event
->rscn
.rscn_cmd
= ELS_RSCN
;
3335 event
->rscn
.rscn_page_len
= sizeof(struct fc_els_rscn_page
);
3336 event
->rscn
.rscn_plen
= cpu_to_be16(cmdsize
);
3338 nportid
= vport
->fc_myDID
;
3339 /* appears that page flags must be 0 for fabric to broadcast RSCN */
3340 event
->portid
.rscn_page_flags
= 0;
3341 event
->portid
.rscn_fid
[0] = (nportid
& 0x00FF0000) >> 16;
3342 event
->portid
.rscn_fid
[1] = (nportid
& 0x0000FF00) >> 8;
3343 event
->portid
.rscn_fid
[2] = nportid
& 0x000000FF;
3345 phba
->fc_stat
.elsXmitRSCN
++;
3346 elsiocb
->iocb_cmpl
= lpfc_cmpl_els_cmd
;
3347 elsiocb
->context1
= lpfc_nlp_get(ndlp
);
3348 if (!elsiocb
->context1
)
3351 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_CMD
,
3352 "Issue RSCN: did:x%x",
3353 ndlp
->nlp_DID
, 0, 0);
3355 rc
= lpfc_sli_issue_iocb(phba
, LPFC_ELS_RING
, elsiocb
, 0);
3356 if (rc
== IOCB_ERROR
)
3359 /* This will cause the callback-function lpfc_cmpl_els_cmd to
3360 * trigger the release of node.
3362 if (!(vport
->fc_flag
& FC_PT2PT
))
3368 lpfc_els_free_iocb(phba
, elsiocb
);
3373 * lpfc_issue_els_farpr - Issue a farp to an node on a vport
3374 * @vport: pointer to a host virtual N_Port data structure.
3375 * @nportid: N_Port identifier to the remote node.
3376 * @retry: number of retries to the command IOCB.
3378 * This routine issues a Fibre Channel Address Resolution Response
3379 * (FARPR) to a node on a vport. The remote node N_Port identifier (@nportid)
3380 * is passed into the function. It first search the @vport node list to find
3381 * the matching ndlp. If no such ndlp is found, a new ndlp shall be created
3382 * for this (FARPR) purpose. An IOCB is allocated, payload prepared, and the
3383 * lpfc_sli_issue_iocb() routine is invoked to send the FARPR ELS command.
3385 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
3386 * will be incremented by 1 for holding the ndlp and the reference to ndlp
3387 * will be stored into the context1 field of the IOCB for the completion
3388 * callback function to the PARPR ELS command.
3391 * 0 - Successfully issued farpr command
3392 * 1 - Failed to issue farpr command
3395 lpfc_issue_els_farpr(struct lpfc_vport
*vport
, uint32_t nportid
, uint8_t retry
)
3398 struct lpfc_hba
*phba
= vport
->phba
;
3399 struct lpfc_iocbq
*elsiocb
;
3404 struct lpfc_nodelist
*ondlp
;
3405 struct lpfc_nodelist
*ndlp
;
3407 cmdsize
= (sizeof(uint32_t) + sizeof(FARP
));
3409 ndlp
= lpfc_findnode_did(vport
, nportid
);
3411 ndlp
= lpfc_nlp_init(vport
, nportid
);
3414 lpfc_enqueue_node(vport
, ndlp
);
3417 elsiocb
= lpfc_prep_els_iocb(vport
, 1, cmdsize
, retry
, ndlp
,
3418 ndlp
->nlp_DID
, ELS_CMD_RNID
);
3422 pcmd
= (uint8_t *) (((struct lpfc_dmabuf
*) elsiocb
->context2
)->virt
);
3424 *((uint32_t *) (pcmd
)) = ELS_CMD_FARPR
;
3425 pcmd
+= sizeof(uint32_t);
3427 /* Fill in FARPR payload */
3428 fp
= (FARP
*) (pcmd
);
3429 memset(fp
, 0, sizeof(FARP
));
3430 lp
= (uint32_t *) pcmd
;
3431 *lp
++ = be32_to_cpu(nportid
);
3432 *lp
++ = be32_to_cpu(vport
->fc_myDID
);
3434 fp
->Mflags
= (FARP_MATCH_PORT
| FARP_MATCH_NODE
);
3436 memcpy(&fp
->RportName
, &vport
->fc_portname
, sizeof(struct lpfc_name
));
3437 memcpy(&fp
->RnodeName
, &vport
->fc_nodename
, sizeof(struct lpfc_name
));
3438 ondlp
= lpfc_findnode_did(vport
, nportid
);
3440 memcpy(&fp
->OportName
, &ondlp
->nlp_portname
,
3441 sizeof(struct lpfc_name
));
3442 memcpy(&fp
->OnodeName
, &ondlp
->nlp_nodename
,
3443 sizeof(struct lpfc_name
));
3446 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_CMD
,
3447 "Issue FARPR: did:x%x",
3448 ndlp
->nlp_DID
, 0, 0);
3450 phba
->fc_stat
.elsXmitFARPR
++;
3451 elsiocb
->iocb_cmpl
= lpfc_cmpl_els_cmd
;
3452 elsiocb
->context1
= lpfc_nlp_get(ndlp
);
3453 if (!elsiocb
->context1
) {
3454 lpfc_els_free_iocb(phba
, elsiocb
);
3458 rc
= lpfc_sli_issue_iocb(phba
, LPFC_ELS_RING
, elsiocb
, 0);
3459 if (rc
== IOCB_ERROR
) {
3460 /* The additional lpfc_nlp_put will cause the following
3461 * lpfc_els_free_iocb routine to trigger the release of
3465 lpfc_els_free_iocb(phba
, elsiocb
);
3468 /* This will cause the callback-function lpfc_cmpl_els_cmd to
3469 * trigger the release of the node.
3471 /* Don't release reference count as RDF is likely outstanding */
3476 * lpfc_issue_els_rdf - Register for diagnostic functions from the fabric.
3477 * @vport: pointer to a host virtual N_Port data structure.
3478 * @retry: retry counter for the command IOCB.
3480 * This routine issues an ELS RDF to the Fabric Controller to register
3481 * for diagnostic functions.
3483 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
3484 * will be incremented by 1 for holding the ndlp and the reference to ndlp
3485 * will be stored into the context1 field of the IOCB for the completion
3486 * callback function to the RDF ELS command.
3489 * 0 - Successfully issued rdf command
3490 * 1 - Failed to issue rdf command
3493 lpfc_issue_els_rdf(struct lpfc_vport
*vport
, uint8_t retry
)
3495 struct lpfc_hba
*phba
= vport
->phba
;
3496 struct lpfc_iocbq
*elsiocb
;
3497 struct lpfc_els_rdf_req
*prdf
;
3498 struct lpfc_nodelist
*ndlp
;
3502 cmdsize
= sizeof(*prdf
);
3504 ndlp
= lpfc_findnode_did(vport
, Fabric_Cntl_DID
);
3506 ndlp
= lpfc_nlp_init(vport
, Fabric_Cntl_DID
);
3509 lpfc_enqueue_node(vport
, ndlp
);
3512 /* RDF ELS is not required on an NPIV VN_Port. */
3513 if (vport
->port_type
== LPFC_NPIV_PORT
) {
3518 elsiocb
= lpfc_prep_els_iocb(vport
, 1, cmdsize
, retry
, ndlp
,
3519 ndlp
->nlp_DID
, ELS_CMD_RDF
);
3523 /* Configure the payload for the supported FPIN events. */
3524 prdf
= (struct lpfc_els_rdf_req
*)
3525 (((struct lpfc_dmabuf
*)elsiocb
->context2
)->virt
);
3526 memset(prdf
, 0, cmdsize
);
3527 prdf
->rdf
.fpin_cmd
= ELS_RDF
;
3528 prdf
->rdf
.desc_len
= cpu_to_be32(sizeof(struct lpfc_els_rdf_req
) -
3529 sizeof(struct fc_els_rdf
));
3530 prdf
->reg_d1
.reg_desc
.desc_tag
= cpu_to_be32(ELS_DTAG_FPIN_REGISTER
);
3531 prdf
->reg_d1
.reg_desc
.desc_len
= cpu_to_be32(
3532 FC_TLV_DESC_LENGTH_FROM_SZ(prdf
->reg_d1
));
3533 prdf
->reg_d1
.reg_desc
.count
= cpu_to_be32(ELS_RDF_REG_TAG_CNT
);
3534 prdf
->reg_d1
.desc_tags
[0] = cpu_to_be32(ELS_DTAG_LNK_INTEGRITY
);
3535 prdf
->reg_d1
.desc_tags
[1] = cpu_to_be32(ELS_DTAG_DELIVERY
);
3536 prdf
->reg_d1
.desc_tags
[2] = cpu_to_be32(ELS_DTAG_PEER_CONGEST
);
3537 prdf
->reg_d1
.desc_tags
[3] = cpu_to_be32(ELS_DTAG_CONGESTION
);
3539 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_ELS
,
3540 "6444 Xmit RDF to remote NPORT x%x\n",
3543 elsiocb
->iocb_cmpl
= lpfc_cmpl_els_disc_cmd
;
3544 elsiocb
->context1
= lpfc_nlp_get(ndlp
);
3545 if (!elsiocb
->context1
)
3548 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_CMD
,
3549 "Issue RDF: did:x%x refcnt %d",
3550 ndlp
->nlp_DID
, kref_read(&ndlp
->kref
), 0);
3552 rc
= lpfc_sli_issue_iocb(phba
, LPFC_ELS_RING
, elsiocb
, 0);
3553 if (rc
== IOCB_ERROR
)
3560 lpfc_els_free_iocb(phba
, elsiocb
);
3565 * lpfc_cancel_retry_delay_tmo - Cancel the timer with delayed iocb-cmd retry
3566 * @vport: pointer to a host virtual N_Port data structure.
3567 * @nlp: pointer to a node-list data structure.
3569 * This routine cancels the timer with a delayed IOCB-command retry for
3570 * a @vport's @ndlp. It stops the timer for the delayed function retrial and
3571 * removes the ELS retry event if it presents. In addition, if the
3572 * NLP_NPR_2B_DISC bit is set in the @nlp's nlp_flag bitmap, ADISC IOCB
3573 * commands are sent for the @vport's nodes that require issuing discovery
3577 lpfc_cancel_retry_delay_tmo(struct lpfc_vport
*vport
, struct lpfc_nodelist
*nlp
)
3579 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
3580 struct lpfc_work_evt
*evtp
;
3582 if (!(nlp
->nlp_flag
& NLP_DELAY_TMO
))
3584 spin_lock_irq(&nlp
->lock
);
3585 nlp
->nlp_flag
&= ~NLP_DELAY_TMO
;
3586 spin_unlock_irq(&nlp
->lock
);
3587 del_timer_sync(&nlp
->nlp_delayfunc
);
3588 nlp
->nlp_last_elscmd
= 0;
3589 if (!list_empty(&nlp
->els_retry_evt
.evt_listp
)) {
3590 list_del_init(&nlp
->els_retry_evt
.evt_listp
);
3591 /* Decrement nlp reference count held for the delayed retry */
3592 evtp
= &nlp
->els_retry_evt
;
3593 lpfc_nlp_put((struct lpfc_nodelist
*)evtp
->evt_arg1
);
3595 if (nlp
->nlp_flag
& NLP_NPR_2B_DISC
) {
3596 spin_lock_irq(&nlp
->lock
);
3597 nlp
->nlp_flag
&= ~NLP_NPR_2B_DISC
;
3598 spin_unlock_irq(&nlp
->lock
);
3599 if (vport
->num_disc_nodes
) {
3600 if (vport
->port_state
< LPFC_VPORT_READY
) {
3601 /* Check if there are more ADISCs to be sent */
3602 lpfc_more_adisc(vport
);
3604 /* Check if there are more PLOGIs to be sent */
3605 lpfc_more_plogi(vport
);
3606 if (vport
->num_disc_nodes
== 0) {
3607 spin_lock_irq(shost
->host_lock
);
3608 vport
->fc_flag
&= ~FC_NDISC_ACTIVE
;
3609 spin_unlock_irq(shost
->host_lock
);
3610 lpfc_can_disctmo(vport
);
3611 lpfc_end_rscn(vport
);
3620 * lpfc_els_retry_delay - Timer function with a ndlp delayed function timer
3621 * @t: pointer to the timer function associated data (ndlp).
3623 * This routine is invoked by the ndlp delayed-function timer to check
3624 * whether there is any pending ELS retry event(s) with the node. If not, it
3625 * simply returns. Otherwise, if there is at least one ELS delayed event, it
3626 * adds the delayed events to the HBA work list and invokes the
3627 * lpfc_worker_wake_up() routine to wake up worker thread to process the
3628 * event. Note that lpfc_nlp_get() is called before posting the event to
3629 * the work list to hold reference count of ndlp so that it guarantees the
3630 * reference to ndlp will still be available when the worker thread gets
3631 * to the event associated with the ndlp.
3634 lpfc_els_retry_delay(struct timer_list
*t
)
3636 struct lpfc_nodelist
*ndlp
= from_timer(ndlp
, t
, nlp_delayfunc
);
3637 struct lpfc_vport
*vport
= ndlp
->vport
;
3638 struct lpfc_hba
*phba
= vport
->phba
;
3639 unsigned long flags
;
3640 struct lpfc_work_evt
*evtp
= &ndlp
->els_retry_evt
;
3642 spin_lock_irqsave(&phba
->hbalock
, flags
);
3643 if (!list_empty(&evtp
->evt_listp
)) {
3644 spin_unlock_irqrestore(&phba
->hbalock
, flags
);
3648 /* We need to hold the node by incrementing the reference
3649 * count until the queued work is done
3651 evtp
->evt_arg1
= lpfc_nlp_get(ndlp
);
3652 if (evtp
->evt_arg1
) {
3653 evtp
->evt
= LPFC_EVT_ELS_RETRY
;
3654 list_add_tail(&evtp
->evt_listp
, &phba
->work_list
);
3655 lpfc_worker_wake_up(phba
);
3657 spin_unlock_irqrestore(&phba
->hbalock
, flags
);
3662 * lpfc_els_retry_delay_handler - Work thread handler for ndlp delayed function
3663 * @ndlp: pointer to a node-list data structure.
3665 * This routine is the worker-thread handler for processing the @ndlp delayed
3666 * event(s), posted by the lpfc_els_retry_delay() routine. It simply retrieves
3667 * the last ELS command from the associated ndlp and invokes the proper ELS
3668 * function according to the delayed ELS command to retry the command.
3671 lpfc_els_retry_delay_handler(struct lpfc_nodelist
*ndlp
)
3673 struct lpfc_vport
*vport
= ndlp
->vport
;
3674 uint32_t cmd
, retry
;
3676 spin_lock_irq(&ndlp
->lock
);
3677 cmd
= ndlp
->nlp_last_elscmd
;
3678 ndlp
->nlp_last_elscmd
= 0;
3680 if (!(ndlp
->nlp_flag
& NLP_DELAY_TMO
)) {
3681 spin_unlock_irq(&ndlp
->lock
);
3685 ndlp
->nlp_flag
&= ~NLP_DELAY_TMO
;
3686 spin_unlock_irq(&ndlp
->lock
);
3688 * If a discovery event readded nlp_delayfunc after timer
3689 * firing and before processing the timer, cancel the
3692 del_timer_sync(&ndlp
->nlp_delayfunc
);
3693 retry
= ndlp
->nlp_retry
;
3694 ndlp
->nlp_retry
= 0;
3698 lpfc_issue_els_flogi(vport
, ndlp
, retry
);
3701 if (!lpfc_issue_els_plogi(vport
, ndlp
->nlp_DID
, retry
)) {
3702 ndlp
->nlp_prev_state
= ndlp
->nlp_state
;
3703 lpfc_nlp_set_state(vport
, ndlp
, NLP_STE_PLOGI_ISSUE
);
3707 if (!lpfc_issue_els_adisc(vport
, ndlp
, retry
)) {
3708 ndlp
->nlp_prev_state
= ndlp
->nlp_state
;
3709 lpfc_nlp_set_state(vport
, ndlp
, NLP_STE_ADISC_ISSUE
);
3713 case ELS_CMD_NVMEPRLI
:
3714 if (!lpfc_issue_els_prli(vport
, ndlp
, retry
)) {
3715 ndlp
->nlp_prev_state
= ndlp
->nlp_state
;
3716 lpfc_nlp_set_state(vport
, ndlp
, NLP_STE_PRLI_ISSUE
);
3720 if (!lpfc_issue_els_logo(vport
, ndlp
, retry
)) {
3721 ndlp
->nlp_prev_state
= ndlp
->nlp_state
;
3722 lpfc_nlp_set_state(vport
, ndlp
, NLP_STE_LOGO_ISSUE
);
3726 if (!(vport
->fc_flag
& FC_VPORT_NEEDS_INIT_VPI
))
3727 lpfc_issue_els_fdisc(vport
, ndlp
, retry
);
3734 * lpfc_link_reset - Issue link reset
3735 * @vport: pointer to a virtual N_Port data structure.
3737 * This routine performs link reset by sending INIT_LINK mailbox command.
3738 * For SLI-3 adapter, link attention interrupt is enabled before issuing
3739 * INIT_LINK mailbox command.
3742 * 0 - Link reset initiated successfully
3743 * 1 - Failed to initiate link reset
3746 lpfc_link_reset(struct lpfc_vport
*vport
)
3748 struct lpfc_hba
*phba
= vport
->phba
;
3753 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_ELS
,
3754 "2851 Attempt link reset\n");
3755 mbox
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
3757 lpfc_printf_log(phba
, KERN_ERR
, LOG_TRACE_EVENT
,
3758 "2852 Failed to allocate mbox memory");
3762 /* Enable Link attention interrupts */
3763 if (phba
->sli_rev
<= LPFC_SLI_REV3
) {
3764 spin_lock_irq(&phba
->hbalock
);
3765 phba
->sli
.sli_flag
|= LPFC_PROCESS_LA
;
3766 control
= readl(phba
->HCregaddr
);
3767 control
|= HC_LAINT_ENA
;
3768 writel(control
, phba
->HCregaddr
);
3769 readl(phba
->HCregaddr
); /* flush */
3770 spin_unlock_irq(&phba
->hbalock
);
3773 lpfc_init_link(phba
, mbox
, phba
->cfg_topology
,
3774 phba
->cfg_link_speed
);
3775 mbox
->mbox_cmpl
= lpfc_sli_def_mbox_cmpl
;
3776 mbox
->vport
= vport
;
3777 rc
= lpfc_sli_issue_mbox(phba
, mbox
, MBX_NOWAIT
);
3778 if ((rc
!= MBX_BUSY
) && (rc
!= MBX_SUCCESS
)) {
3779 lpfc_printf_log(phba
, KERN_ERR
, LOG_TRACE_EVENT
,
3780 "2853 Failed to issue INIT_LINK "
3781 "mbox command, rc:x%x\n", rc
);
3782 mempool_free(mbox
, phba
->mbox_mem_pool
);
3790 * lpfc_els_retry - Make retry decision on an els command iocb
3791 * @phba: pointer to lpfc hba data structure.
3792 * @cmdiocb: pointer to lpfc command iocb data structure.
3793 * @rspiocb: pointer to lpfc response iocb data structure.
3795 * This routine makes a retry decision on an ELS command IOCB, which has
3796 * failed. The following ELS IOCBs use this function for retrying the command
3797 * when previously issued command responsed with error status: FLOGI, PLOGI,
3798 * PRLI, ADISC, LOGO, and FDISC. Based on the ELS command type and the
3799 * returned error status, it makes the decision whether a retry shall be
3800 * issued for the command, and whether a retry shall be made immediately or
3801 * delayed. In the former case, the corresponding ELS command issuing-function
3802 * is called to retry the command. In the later case, the ELS command shall
3803 * be posted to the ndlp delayed event and delayed function timer set to the
3804 * ndlp for the delayed command issusing.
3807 * 0 - No retry of els command is made
3808 * 1 - Immediate or delayed retry of els command is made
3811 lpfc_els_retry(struct lpfc_hba
*phba
, struct lpfc_iocbq
*cmdiocb
,
3812 struct lpfc_iocbq
*rspiocb
)
3814 struct lpfc_vport
*vport
= cmdiocb
->vport
;
3815 IOCB_t
*irsp
= &rspiocb
->iocb
;
3816 struct lpfc_nodelist
*ndlp
= (struct lpfc_nodelist
*) cmdiocb
->context1
;
3817 struct lpfc_dmabuf
*pcmd
= (struct lpfc_dmabuf
*) cmdiocb
->context2
;
3820 int retry
= 0, maxretry
= lpfc_max_els_tries
, delay
= 0;
3824 int link_reset
= 0, rc
;
3827 /* Note: context2 may be 0 for internal driver abort
3828 * of delays ELS command.
3831 if (pcmd
&& pcmd
->virt
) {
3832 elscmd
= (uint32_t *) (pcmd
->virt
);
3837 did
= ndlp
->nlp_DID
;
3839 /* We should only hit this case for retrying PLOGI */
3840 did
= irsp
->un
.elsreq64
.remoteID
;
3841 ndlp
= lpfc_findnode_did(vport
, did
);
3842 if (!ndlp
&& (cmd
!= ELS_CMD_PLOGI
))
3846 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_CMD
,
3847 "Retry ELS: wd7:x%x wd4:x%x did:x%x",
3848 *(((uint32_t *) irsp
) + 7), irsp
->un
.ulpWord
[4], ndlp
->nlp_DID
);
3850 switch (irsp
->ulpStatus
) {
3851 case IOSTAT_FCP_RSP_ERROR
:
3853 case IOSTAT_REMOTE_STOP
:
3854 if (phba
->sli_rev
== LPFC_SLI_REV4
) {
3855 /* This IO was aborted by the target, we don't
3856 * know the rxid and because we did not send the
3857 * ABTS we cannot generate and RRQ.
3859 lpfc_set_rrq_active(phba
, ndlp
,
3860 cmdiocb
->sli4_lxritag
, 0, 0);
3863 case IOSTAT_LOCAL_REJECT
:
3864 switch ((irsp
->un
.ulpWord
[4] & IOERR_PARAM_MASK
)) {
3865 case IOERR_LOOP_OPEN_FAILURE
:
3866 if (cmd
== ELS_CMD_FLOGI
) {
3867 if (PCI_DEVICE_ID_HORNET
==
3868 phba
->pcidev
->device
) {
3869 phba
->fc_topology
= LPFC_TOPOLOGY_LOOP
;
3870 phba
->pport
->fc_myDID
= 0;
3871 phba
->alpa_map
[0] = 0;
3872 phba
->alpa_map
[1] = 0;
3875 if (cmd
== ELS_CMD_PLOGI
&& cmdiocb
->retry
== 0)
3880 case IOERR_ILLEGAL_COMMAND
:
3881 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_TRACE_EVENT
,
3882 "0124 Retry illegal cmd x%x "
3883 "retry:x%x delay:x%x\n",
3884 cmd
, cmdiocb
->retry
, delay
);
3886 /* All command's retry policy */
3888 if (cmdiocb
->retry
> 2)
3892 case IOERR_NO_RESOURCES
:
3893 logerr
= 1; /* HBA out of resources */
3895 if (cmdiocb
->retry
> 100)
3900 case IOERR_ILLEGAL_FRAME
:
3905 case IOERR_INVALID_RPI
:
3906 if (cmd
== ELS_CMD_PLOGI
&&
3907 did
== NameServer_DID
) {
3908 /* Continue forever if plogi to */
3909 /* the nameserver fails */
3916 case IOERR_SEQUENCE_TIMEOUT
:
3917 if (cmd
== ELS_CMD_PLOGI
&&
3918 did
== NameServer_DID
&&
3919 (cmdiocb
->retry
+ 1) == maxretry
) {
3920 /* Reset the Link */
3930 case IOSTAT_NPORT_RJT
:
3931 case IOSTAT_FABRIC_RJT
:
3932 if (irsp
->un
.ulpWord
[4] & RJT_UNAVAIL_TEMP
) {
3938 case IOSTAT_NPORT_BSY
:
3939 case IOSTAT_FABRIC_BSY
:
3940 logerr
= 1; /* Fabric / Remote NPort out of resources */
3945 stat
.un
.lsRjtError
= be32_to_cpu(irsp
->un
.ulpWord
[4]);
3946 /* Added for Vendor specifc support
3947 * Just keep retrying for these Rsn / Exp codes
3949 switch (stat
.un
.b
.lsRjtRsnCode
) {
3950 case LSRJT_UNABLE_TPC
:
3951 /* The driver has a VALID PLOGI but the rport has
3952 * rejected the PRLI - can't do it now. Delay
3953 * for 1 second and try again.
3955 * However, if explanation is REQ_UNSUPPORTED there's
3956 * no point to retry PRLI.
3958 if ((cmd
== ELS_CMD_PRLI
|| cmd
== ELS_CMD_NVMEPRLI
) &&
3959 stat
.un
.b
.lsRjtRsnCodeExp
!=
3960 LSEXP_REQ_UNSUPPORTED
) {
3962 maxretry
= lpfc_max_els_tries
+ 1;
3967 /* Legacy bug fix code for targets with PLOGI delays. */
3968 if (stat
.un
.b
.lsRjtRsnCodeExp
==
3969 LSEXP_CMD_IN_PROGRESS
) {
3970 if (cmd
== ELS_CMD_PLOGI
) {
3977 if (stat
.un
.b
.lsRjtRsnCodeExp
==
3978 LSEXP_CANT_GIVE_DATA
) {
3979 if (cmd
== ELS_CMD_PLOGI
) {
3986 if (cmd
== ELS_CMD_PLOGI
) {
3988 maxretry
= lpfc_max_els_tries
+ 1;
3992 if ((phba
->sli3_options
& LPFC_SLI3_NPIV_ENABLED
) &&
3993 (cmd
== ELS_CMD_FDISC
) &&
3994 (stat
.un
.b
.lsRjtRsnCodeExp
== LSEXP_OUT_OF_RESOURCE
)){
3995 lpfc_printf_vlog(vport
, KERN_ERR
,
3997 "0125 FDISC Failed (x%x). "
3998 "Fabric out of resources\n",
3999 stat
.un
.lsRjtError
);
4000 lpfc_vport_set_state(vport
,
4001 FC_VPORT_NO_FABRIC_RSCS
);
4005 case LSRJT_LOGICAL_BSY
:
4006 if ((cmd
== ELS_CMD_PLOGI
) ||
4007 (cmd
== ELS_CMD_PRLI
) ||
4008 (cmd
== ELS_CMD_NVMEPRLI
)) {
4011 } else if (cmd
== ELS_CMD_FDISC
) {
4012 /* FDISC retry policy */
4014 if (cmdiocb
->retry
>= 32)
4020 case LSRJT_LOGICAL_ERR
:
4021 /* There are some cases where switches return this
4022 * error when they are not ready and should be returning
4023 * Logical Busy. We should delay every time.
4025 if (cmd
== ELS_CMD_FDISC
&&
4026 stat
.un
.b
.lsRjtRsnCodeExp
== LSEXP_PORT_LOGIN_REQ
) {
4030 } else if (cmd
== ELS_CMD_FLOGI
&&
4031 stat
.un
.b
.lsRjtRsnCodeExp
==
4032 LSEXP_NOTHING_MORE
) {
4033 vport
->fc_sparam
.cmn
.bbRcvSizeMsb
&= 0xf;
4035 lpfc_printf_vlog(vport
, KERN_ERR
,
4037 "0820 FLOGI Failed (x%x). "
4038 "BBCredit Not Supported\n",
4039 stat
.un
.lsRjtError
);
4043 case LSRJT_PROTOCOL_ERR
:
4044 if ((phba
->sli3_options
& LPFC_SLI3_NPIV_ENABLED
) &&
4045 (cmd
== ELS_CMD_FDISC
) &&
4046 ((stat
.un
.b
.lsRjtRsnCodeExp
== LSEXP_INVALID_PNAME
) ||
4047 (stat
.un
.b
.lsRjtRsnCodeExp
== LSEXP_INVALID_NPORT_ID
))
4049 lpfc_printf_vlog(vport
, KERN_ERR
,
4051 "0122 FDISC Failed (x%x). "
4052 "Fabric Detected Bad WWN\n",
4053 stat
.un
.lsRjtError
);
4054 lpfc_vport_set_state(vport
,
4055 FC_VPORT_FABRIC_REJ_WWN
);
4058 case LSRJT_VENDOR_UNIQUE
:
4059 if ((stat
.un
.b
.vendorUnique
== 0x45) &&
4060 (cmd
== ELS_CMD_FLOGI
)) {
4064 case LSRJT_CMD_UNSUPPORTED
:
4065 /* lpfc nvmet returns this type of LS_RJT when it
4066 * receives an FCP PRLI because lpfc nvmet only
4067 * support NVME. ELS request is terminated for FCP4
4070 if (stat
.un
.b
.lsRjtRsnCodeExp
==
4071 LSEXP_REQ_UNSUPPORTED
&& cmd
== ELS_CMD_PRLI
) {
4072 spin_lock_irq(&ndlp
->lock
);
4073 ndlp
->nlp_flag
|= NLP_FCP_PRLI_RJT
;
4074 spin_unlock_irq(&ndlp
->lock
);
4082 case IOSTAT_INTERMED_RSP
:
4091 rc
= lpfc_link_reset(vport
);
4093 /* Do not give up. Retry PLOGI one more time and attempt
4094 * link reset if PLOGI fails again.
4103 if (did
== FDMI_DID
)
4106 if ((cmd
== ELS_CMD_FLOGI
) &&
4107 (phba
->fc_topology
!= LPFC_TOPOLOGY_LOOP
) &&
4108 !lpfc_error_lost_link(irsp
)) {
4109 /* FLOGI retry policy */
4111 /* retry FLOGI forever */
4112 if (phba
->link_flag
!= LS_LOOPBACK_MODE
)
4117 if (cmdiocb
->retry
>= 100)
4119 else if (cmdiocb
->retry
>= 32)
4121 } else if ((cmd
== ELS_CMD_FDISC
) && !lpfc_error_lost_link(irsp
)) {
4122 /* retry FDISCs every second up to devloss */
4124 maxretry
= vport
->cfg_devloss_tmo
;
4129 if (maxretry
&& (cmdiocb
->retry
>= maxretry
)) {
4130 phba
->fc_stat
.elsRetryExceeded
++;
4134 if ((vport
->load_flag
& FC_UNLOADING
) != 0)
4139 if ((cmd
== ELS_CMD_PLOGI
) || (cmd
== ELS_CMD_FDISC
)) {
4140 /* Stop retrying PLOGI and FDISC if in FCF discovery */
4141 if (phba
->fcf
.fcf_flag
& FCF_DISCOVERY
) {
4142 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_ELS
,
4143 "2849 Stop retry ELS command "
4144 "x%x to remote NPORT x%x, "
4145 "Data: x%x x%x\n", cmd
, did
,
4146 cmdiocb
->retry
, delay
);
4151 /* Retry ELS command <elsCmd> to remote NPORT <did> */
4152 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_ELS
,
4153 "0107 Retry ELS command x%x to remote "
4154 "NPORT x%x Data: x%x x%x\n",
4155 cmd
, did
, cmdiocb
->retry
, delay
);
4157 if (((cmd
== ELS_CMD_PLOGI
) || (cmd
== ELS_CMD_ADISC
)) &&
4158 ((irsp
->ulpStatus
!= IOSTAT_LOCAL_REJECT
) ||
4159 ((irsp
->un
.ulpWord
[4] & IOERR_PARAM_MASK
) !=
4160 IOERR_NO_RESOURCES
))) {
4161 /* Don't reset timer for no resources */
4163 /* If discovery / RSCN timer is running, reset it */
4164 if (timer_pending(&vport
->fc_disctmo
) ||
4165 (vport
->fc_flag
& FC_RSCN_MODE
))
4166 lpfc_set_disctmo(vport
);
4169 phba
->fc_stat
.elsXmitRetry
++;
4170 if (ndlp
&& delay
) {
4171 phba
->fc_stat
.elsDelayRetry
++;
4172 ndlp
->nlp_retry
= cmdiocb
->retry
;
4174 /* delay is specified in milliseconds */
4175 mod_timer(&ndlp
->nlp_delayfunc
,
4176 jiffies
+ msecs_to_jiffies(delay
));
4177 spin_lock_irq(&ndlp
->lock
);
4178 ndlp
->nlp_flag
|= NLP_DELAY_TMO
;
4179 spin_unlock_irq(&ndlp
->lock
);
4181 ndlp
->nlp_prev_state
= ndlp
->nlp_state
;
4182 if ((cmd
== ELS_CMD_PRLI
) ||
4183 (cmd
== ELS_CMD_NVMEPRLI
))
4184 lpfc_nlp_set_state(vport
, ndlp
,
4185 NLP_STE_PRLI_ISSUE
);
4187 lpfc_nlp_set_state(vport
, ndlp
,
4189 ndlp
->nlp_last_elscmd
= cmd
;
4195 lpfc_issue_els_flogi(vport
, ndlp
, cmdiocb
->retry
);
4198 lpfc_issue_els_fdisc(vport
, ndlp
, cmdiocb
->retry
);
4202 ndlp
->nlp_prev_state
= ndlp
->nlp_state
;
4203 lpfc_nlp_set_state(vport
, ndlp
,
4204 NLP_STE_PLOGI_ISSUE
);
4206 lpfc_issue_els_plogi(vport
, did
, cmdiocb
->retry
);
4209 ndlp
->nlp_prev_state
= ndlp
->nlp_state
;
4210 lpfc_nlp_set_state(vport
, ndlp
, NLP_STE_ADISC_ISSUE
);
4211 lpfc_issue_els_adisc(vport
, ndlp
, cmdiocb
->retry
);
4214 case ELS_CMD_NVMEPRLI
:
4215 ndlp
->nlp_prev_state
= ndlp
->nlp_state
;
4216 lpfc_nlp_set_state(vport
, ndlp
, NLP_STE_PRLI_ISSUE
);
4217 lpfc_issue_els_prli(vport
, ndlp
, cmdiocb
->retry
);
4220 ndlp
->nlp_prev_state
= ndlp
->nlp_state
;
4221 lpfc_nlp_set_state(vport
, ndlp
, NLP_STE_LOGO_ISSUE
);
4222 lpfc_issue_els_logo(vport
, ndlp
, cmdiocb
->retry
);
4226 /* No retry ELS command <elsCmd> to remote NPORT <did> */
4228 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_TRACE_EVENT
,
4229 "0137 No retry ELS command x%x to remote "
4230 "NPORT x%x: Out of Resources: Error:x%x/%x\n",
4231 cmd
, did
, irsp
->ulpStatus
,
4232 irsp
->un
.ulpWord
[4]);
4235 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_ELS
,
4236 "0108 No retry ELS command x%x to remote "
4237 "NPORT x%x Retried:%d Error:x%x/%x\n",
4238 cmd
, did
, cmdiocb
->retry
, irsp
->ulpStatus
,
4239 irsp
->un
.ulpWord
[4]);
4245 * lpfc_els_free_data - Free lpfc dma buffer and data structure with an iocb
4246 * @phba: pointer to lpfc hba data structure.
4247 * @buf_ptr1: pointer to the lpfc DMA buffer data structure.
4249 * This routine releases the lpfc DMA (Direct Memory Access) buffer(s)
4250 * associated with a command IOCB back to the lpfc DMA buffer pool. It first
4251 * checks to see whether there is a lpfc DMA buffer associated with the
4252 * response of the command IOCB. If so, it will be released before releasing
4253 * the lpfc DMA buffer associated with the IOCB itself.
4256 * 0 - Successfully released lpfc DMA buffer (currently, always return 0)
4259 lpfc_els_free_data(struct lpfc_hba
*phba
, struct lpfc_dmabuf
*buf_ptr1
)
4261 struct lpfc_dmabuf
*buf_ptr
;
4263 /* Free the response before processing the command. */
4264 if (!list_empty(&buf_ptr1
->list
)) {
4265 list_remove_head(&buf_ptr1
->list
, buf_ptr
,
4268 lpfc_mbuf_free(phba
, buf_ptr
->virt
, buf_ptr
->phys
);
4271 lpfc_mbuf_free(phba
, buf_ptr1
->virt
, buf_ptr1
->phys
);
4277 * lpfc_els_free_bpl - Free lpfc dma buffer and data structure with bpl
4278 * @phba: pointer to lpfc hba data structure.
4279 * @buf_ptr: pointer to the lpfc dma buffer data structure.
4281 * This routine releases the lpfc Direct Memory Access (DMA) buffer
4282 * associated with a Buffer Pointer List (BPL) back to the lpfc DMA buffer
4286 * 0 - Successfully released lpfc DMA buffer (currently, always return 0)
4289 lpfc_els_free_bpl(struct lpfc_hba
*phba
, struct lpfc_dmabuf
*buf_ptr
)
4291 lpfc_mbuf_free(phba
, buf_ptr
->virt
, buf_ptr
->phys
);
4297 * lpfc_els_free_iocb - Free a command iocb and its associated resources
4298 * @phba: pointer to lpfc hba data structure.
4299 * @elsiocb: pointer to lpfc els command iocb data structure.
4301 * This routine frees a command IOCB and its associated resources. The
4302 * command IOCB data structure contains the reference to various associated
4303 * resources, these fields must be set to NULL if the associated reference
4305 * context1 - reference to ndlp
4306 * context2 - reference to cmd
4307 * context2->next - reference to rsp
4308 * context3 - reference to bpl
4310 * It first properly decrements the reference count held on ndlp for the
4311 * IOCB completion callback function. If LPFC_DELAY_MEM_FREE flag is not
4312 * set, it invokes the lpfc_els_free_data() routine to release the Direct
4313 * Memory Access (DMA) buffers associated with the IOCB. Otherwise, it
4314 * adds the DMA buffer the @phba data structure for the delayed release.
4315 * If reference to the Buffer Pointer List (BPL) is present, the
4316 * lpfc_els_free_bpl() routine is invoked to release the DMA memory
4317 * associated with BPL. Finally, the lpfc_sli_release_iocbq() routine is
4318 * invoked to release the IOCB data structure back to @phba IOCBQ list.
4321 * 0 - Success (currently, always return 0)
4324 lpfc_els_free_iocb(struct lpfc_hba
*phba
, struct lpfc_iocbq
*elsiocb
)
4326 struct lpfc_dmabuf
*buf_ptr
, *buf_ptr1
;
4328 /* The I/O job is complete. Clear the context1 data. */
4329 elsiocb
->context1
= NULL
;
4331 /* context2 = cmd, context2->next = rsp, context3 = bpl */
4332 if (elsiocb
->context2
) {
4333 if (elsiocb
->iocb_flag
& LPFC_DELAY_MEM_FREE
) {
4334 /* Firmware could still be in progress of DMAing
4335 * payload, so don't free data buffer till after
4338 elsiocb
->iocb_flag
&= ~LPFC_DELAY_MEM_FREE
;
4339 buf_ptr
= elsiocb
->context2
;
4340 elsiocb
->context2
= NULL
;
4343 spin_lock_irq(&phba
->hbalock
);
4344 if (!list_empty(&buf_ptr
->list
)) {
4345 list_remove_head(&buf_ptr
->list
,
4346 buf_ptr1
, struct lpfc_dmabuf
,
4348 INIT_LIST_HEAD(&buf_ptr1
->list
);
4349 list_add_tail(&buf_ptr1
->list
,
4353 INIT_LIST_HEAD(&buf_ptr
->list
);
4354 list_add_tail(&buf_ptr
->list
, &phba
->elsbuf
);
4356 spin_unlock_irq(&phba
->hbalock
);
4359 buf_ptr1
= (struct lpfc_dmabuf
*) elsiocb
->context2
;
4360 lpfc_els_free_data(phba
, buf_ptr1
);
4361 elsiocb
->context2
= NULL
;
4365 if (elsiocb
->context3
) {
4366 buf_ptr
= (struct lpfc_dmabuf
*) elsiocb
->context3
;
4367 lpfc_els_free_bpl(phba
, buf_ptr
);
4368 elsiocb
->context3
= NULL
;
4370 lpfc_sli_release_iocbq(phba
, elsiocb
);
4375 * lpfc_cmpl_els_logo_acc - Completion callback function to logo acc response
4376 * @phba: pointer to lpfc hba data structure.
4377 * @cmdiocb: pointer to lpfc command iocb data structure.
4378 * @rspiocb: pointer to lpfc response iocb data structure.
4380 * This routine is the completion callback function to the Logout (LOGO)
4381 * Accept (ACC) Response ELS command. This routine is invoked to indicate
4382 * the completion of the LOGO process. It invokes the lpfc_nlp_not_used() to
4383 * release the ndlp if it has the last reference remaining (reference count
4384 * is 1). If succeeded (meaning ndlp released), it sets the IOCB context1
4385 * field to NULL to inform the following lpfc_els_free_iocb() routine no
4386 * ndlp reference count needs to be decremented. Otherwise, the ndlp
4387 * reference use-count shall be decremented by the lpfc_els_free_iocb()
4388 * routine. Finally, the lpfc_els_free_iocb() is invoked to release the
4389 * IOCB data structure.
4392 lpfc_cmpl_els_logo_acc(struct lpfc_hba
*phba
, struct lpfc_iocbq
*cmdiocb
,
4393 struct lpfc_iocbq
*rspiocb
)
4395 struct lpfc_nodelist
*ndlp
= (struct lpfc_nodelist
*) cmdiocb
->context1
;
4396 struct lpfc_vport
*vport
= cmdiocb
->vport
;
4399 irsp
= &rspiocb
->iocb
;
4400 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_RSP
,
4401 "ACC LOGO cmpl: status:x%x/x%x did:x%x",
4402 irsp
->ulpStatus
, irsp
->un
.ulpWord
[4], ndlp
->nlp_DID
);
4403 /* ACC to LOGO completes to NPort <nlp_DID> */
4404 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_ELS
,
4405 "0109 ACC to LOGO completes to NPort x%x refcnt %d"
4406 "Data: x%x x%x x%x\n",
4407 ndlp
->nlp_DID
, kref_read(&ndlp
->kref
), ndlp
->nlp_flag
,
4408 ndlp
->nlp_state
, ndlp
->nlp_rpi
);
4410 if (ndlp
->nlp_state
== NLP_STE_NPR_NODE
) {
4411 /* NPort Recovery mode or node is just allocated */
4412 if (!lpfc_nlp_not_used(ndlp
)) {
4413 /* If the ndlp is being used by another discovery
4414 * thread, just unregister the RPI.
4416 lpfc_unreg_rpi(vport
, ndlp
);
4418 /* Indicate the node has already released, should
4419 * not reference to it from within lpfc_els_free_iocb.
4421 cmdiocb
->context1
= NULL
;
4426 * The driver received a LOGO from the rport and has ACK'd it.
4427 * At this point, the driver is done so release the IOCB
4429 lpfc_els_free_iocb(phba
, cmdiocb
);
4434 * lpfc_mbx_cmpl_dflt_rpi - Completion callbk func for unreg dflt rpi mbox cmd
4435 * @phba: pointer to lpfc hba data structure.
4436 * @pmb: pointer to the driver internal queue element for mailbox command.
4438 * This routine is the completion callback function for unregister default
4439 * RPI (Remote Port Index) mailbox command to the @phba. It simply releases
4440 * the associated lpfc Direct Memory Access (DMA) buffer back to the pool and
4441 * decrements the ndlp reference count held for this completion callback
4442 * function. After that, it invokes the lpfc_nlp_not_used() to check
4443 * whether there is only one reference left on the ndlp. If so, it will
4444 * perform one more decrement and trigger the release of the ndlp.
4447 lpfc_mbx_cmpl_dflt_rpi(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*pmb
)
4449 struct lpfc_dmabuf
*mp
= (struct lpfc_dmabuf
*)(pmb
->ctx_buf
);
4450 struct lpfc_nodelist
*ndlp
= (struct lpfc_nodelist
*)pmb
->ctx_ndlp
;
4452 pmb
->ctx_buf
= NULL
;
4453 pmb
->ctx_ndlp
= NULL
;
4455 lpfc_mbuf_free(phba
, mp
->virt
, mp
->phys
);
4457 mempool_free(pmb
, phba
->mbox_mem_pool
);
4459 lpfc_printf_vlog(ndlp
->vport
, KERN_INFO
, LOG_NODE
,
4460 "0006 rpi x%x DID:%x flg:%x %d x%px\n",
4461 ndlp
->nlp_rpi
, ndlp
->nlp_DID
, ndlp
->nlp_flag
,
4462 kref_read(&ndlp
->kref
),
4464 /* This is the end of the default RPI cleanup logic for
4465 * this ndlp and it could get released. Clear the nlp_flags to
4466 * prevent any further processing.
4468 ndlp
->nlp_flag
&= ~NLP_REG_LOGIN_SEND
;
4470 lpfc_nlp_not_used(ndlp
);
4477 * lpfc_cmpl_els_rsp - Completion callback function for els response iocb cmd
4478 * @phba: pointer to lpfc hba data structure.
4479 * @cmdiocb: pointer to lpfc command iocb data structure.
4480 * @rspiocb: pointer to lpfc response iocb data structure.
4482 * This routine is the completion callback function for ELS Response IOCB
4483 * command. In normal case, this callback function just properly sets the
4484 * nlp_flag bitmap in the ndlp data structure, if the mbox command reference
4485 * field in the command IOCB is not NULL, the referred mailbox command will
4486 * be send out, and then invokes the lpfc_els_free_iocb() routine to release
4487 * the IOCB. Under error conditions, such as when a LS_RJT is returned or a
4488 * link down event occurred during the discovery, the lpfc_nlp_not_used()
4489 * routine shall be invoked trying to release the ndlp if no other threads
4490 * are currently referring it.
4493 lpfc_cmpl_els_rsp(struct lpfc_hba
*phba
, struct lpfc_iocbq
*cmdiocb
,
4494 struct lpfc_iocbq
*rspiocb
)
4496 struct lpfc_nodelist
*ndlp
= (struct lpfc_nodelist
*) cmdiocb
->context1
;
4497 struct lpfc_vport
*vport
= ndlp
? ndlp
->vport
: NULL
;
4498 struct Scsi_Host
*shost
= vport
? lpfc_shost_from_vport(vport
) : NULL
;
4501 LPFC_MBOXQ_t
*mbox
= NULL
;
4502 struct lpfc_dmabuf
*mp
= NULL
;
4503 uint32_t ls_rjt
= 0;
4505 irsp
= &rspiocb
->iocb
;
4508 lpfc_printf_log(phba
, KERN_ERR
, LOG_TRACE_EVENT
,
4509 "3177 ELS response failed\n");
4512 if (cmdiocb
->context_un
.mbox
)
4513 mbox
= cmdiocb
->context_un
.mbox
;
4515 /* First determine if this is a LS_RJT cmpl. Note, this callback
4516 * function can have cmdiocb->contest1 (ndlp) field set to NULL.
4518 pcmd
= (uint8_t *) (((struct lpfc_dmabuf
*) cmdiocb
->context2
)->virt
);
4519 if (ndlp
&& (*((uint32_t *) (pcmd
)) == ELS_CMD_LS_RJT
)) {
4520 /* A LS_RJT associated with Default RPI cleanup has its own
4521 * separate code path.
4523 if (!(ndlp
->nlp_flag
& NLP_RM_DFLT_RPI
))
4527 /* Check to see if link went down during discovery */
4528 if (!ndlp
|| lpfc_els_chk_latt(vport
)) {
4530 mp
= (struct lpfc_dmabuf
*)mbox
->ctx_buf
;
4532 lpfc_mbuf_free(phba
, mp
->virt
, mp
->phys
);
4535 mempool_free(mbox
, phba
->mbox_mem_pool
);
4537 if (ndlp
&& (ndlp
->nlp_flag
& NLP_RM_DFLT_RPI
))
4538 if (lpfc_nlp_not_used(ndlp
)) {
4540 /* Indicate the node has already released,
4541 * should not reference to it from within
4542 * the routine lpfc_els_free_iocb.
4544 cmdiocb
->context1
= NULL
;
4549 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_RSP
,
4550 "ELS rsp cmpl: status:x%x/x%x did:x%x",
4551 irsp
->ulpStatus
, irsp
->un
.ulpWord
[4],
4552 cmdiocb
->iocb
.un
.elsreq64
.remoteID
);
4553 /* ELS response tag <ulpIoTag> completes */
4554 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_ELS
,
4555 "0110 ELS response tag x%x completes "
4556 "Data: x%x x%x x%x x%x x%x x%x x%x\n",
4557 cmdiocb
->iocb
.ulpIoTag
, rspiocb
->iocb
.ulpStatus
,
4558 rspiocb
->iocb
.un
.ulpWord
[4], rspiocb
->iocb
.ulpTimeout
,
4559 ndlp
->nlp_DID
, ndlp
->nlp_flag
, ndlp
->nlp_state
,
4562 if ((rspiocb
->iocb
.ulpStatus
== 0) &&
4563 (ndlp
->nlp_flag
& NLP_ACC_REGLOGIN
)) {
4564 if (!lpfc_unreg_rpi(vport
, ndlp
) &&
4565 (!(vport
->fc_flag
& FC_PT2PT
))) {
4566 if (ndlp
->nlp_state
== NLP_STE_REG_LOGIN_ISSUE
) {
4567 lpfc_printf_vlog(vport
, KERN_INFO
,
4571 "Data: x%x x%x x%x\n",
4578 lpfc_mbuf_free(phba
, mp
->virt
,
4582 mempool_free(mbox
, phba
->mbox_mem_pool
);
4587 /* Increment reference count to ndlp to hold the
4588 * reference to ndlp for the callback function.
4590 mbox
->ctx_ndlp
= lpfc_nlp_get(ndlp
);
4591 if (!mbox
->ctx_ndlp
)
4594 mbox
->vport
= vport
;
4595 if (ndlp
->nlp_flag
& NLP_RM_DFLT_RPI
) {
4596 mbox
->mbox_flag
|= LPFC_MBX_IMED_UNREG
;
4597 mbox
->mbox_cmpl
= lpfc_mbx_cmpl_dflt_rpi
;
4600 mbox
->mbox_cmpl
= lpfc_mbx_cmpl_reg_login
;
4601 ndlp
->nlp_prev_state
= ndlp
->nlp_state
;
4602 lpfc_nlp_set_state(vport
, ndlp
,
4603 NLP_STE_REG_LOGIN_ISSUE
);
4606 ndlp
->nlp_flag
|= NLP_REG_LOGIN_SEND
;
4607 if (lpfc_sli_issue_mbox(phba
, mbox
, MBX_NOWAIT
)
4608 != MBX_NOT_FINISHED
)
4611 /* Decrement the ndlp reference count we
4612 * set for this failed mailbox command.
4615 ndlp
->nlp_flag
&= ~NLP_REG_LOGIN_SEND
;
4617 /* ELS rsp: Cannot issue reg_login for <NPortid> */
4618 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_TRACE_EVENT
,
4619 "0138 ELS rsp: Cannot issue reg_login for x%x "
4620 "Data: x%x x%x x%x\n",
4621 ndlp
->nlp_DID
, ndlp
->nlp_flag
, ndlp
->nlp_state
,
4624 if (lpfc_nlp_not_used(ndlp
)) {
4626 /* Indicate node has already been released,
4627 * should not reference to it from within
4628 * the routine lpfc_els_free_iocb.
4630 cmdiocb
->context1
= NULL
;
4633 /* Do not drop node for lpfc_els_abort'ed ELS cmds */
4634 if (!lpfc_error_lost_link(irsp
) &&
4635 ndlp
->nlp_flag
& NLP_ACC_REGLOGIN
) {
4636 if (lpfc_nlp_not_used(ndlp
)) {
4638 /* Indicate node has already been
4639 * released, should not reference
4640 * to it from within the routine
4641 * lpfc_els_free_iocb.
4643 cmdiocb
->context1
= NULL
;
4647 mp
= (struct lpfc_dmabuf
*)mbox
->ctx_buf
;
4649 lpfc_mbuf_free(phba
, mp
->virt
, mp
->phys
);
4652 mempool_free(mbox
, phba
->mbox_mem_pool
);
4655 if (ndlp
&& shost
) {
4656 spin_lock_irq(&ndlp
->lock
);
4658 ndlp
->nlp_flag
&= ~NLP_ACC_REGLOGIN
;
4659 ndlp
->nlp_flag
&= ~NLP_RM_DFLT_RPI
;
4660 spin_unlock_irq(&ndlp
->lock
);
4662 /* If the node is not being used by another discovery thread,
4663 * and we are sending a reject, we are done with it.
4664 * Release driver reference count here and free associated
4668 if (lpfc_nlp_not_used(ndlp
))
4669 /* Indicate node has already been released,
4670 * should not reference to it from within
4671 * the routine lpfc_els_free_iocb.
4673 cmdiocb
->context1
= NULL
;
4676 /* Release the originating I/O reference. */
4677 lpfc_els_free_iocb(phba
, cmdiocb
);
4683 * lpfc_els_rsp_acc - Prepare and issue an acc response iocb command
4684 * @vport: pointer to a host virtual N_Port data structure.
4685 * @flag: the els command code to be accepted.
4686 * @oldiocb: pointer to the original lpfc command iocb data structure.
4687 * @ndlp: pointer to a node-list data structure.
4688 * @mbox: pointer to the driver internal queue element for mailbox command.
4690 * This routine prepares and issues an Accept (ACC) response IOCB
4691 * command. It uses the @flag to properly set up the IOCB field for the
4692 * specific ACC response command to be issued and invokes the
4693 * lpfc_sli_issue_iocb() routine to send out ACC response IOCB. If a
4694 * @mbox pointer is passed in, it will be put into the context_un.mbox
4695 * field of the IOCB for the completion callback function to issue the
4696 * mailbox command to the HBA later when callback is invoked.
4698 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
4699 * will be incremented by 1 for holding the ndlp and the reference to ndlp
4700 * will be stored into the context1 field of the IOCB for the completion
4701 * callback function to the corresponding response ELS IOCB command.
4704 * 0 - Successfully issued acc response
4705 * 1 - Failed to issue acc response
4708 lpfc_els_rsp_acc(struct lpfc_vport
*vport
, uint32_t flag
,
4709 struct lpfc_iocbq
*oldiocb
, struct lpfc_nodelist
*ndlp
,
4712 struct lpfc_hba
*phba
= vport
->phba
;
4715 struct lpfc_iocbq
*elsiocb
;
4717 struct serv_parm
*sp
;
4720 ELS_PKT
*els_pkt_ptr
;
4722 oldcmd
= &oldiocb
->iocb
;
4726 cmdsize
= sizeof(uint32_t);
4727 elsiocb
= lpfc_prep_els_iocb(vport
, 0, cmdsize
, oldiocb
->retry
,
4728 ndlp
, ndlp
->nlp_DID
, ELS_CMD_ACC
);
4730 spin_lock_irq(&ndlp
->lock
);
4731 ndlp
->nlp_flag
&= ~NLP_LOGO_ACC
;
4732 spin_unlock_irq(&ndlp
->lock
);
4736 icmd
= &elsiocb
->iocb
;
4737 icmd
->ulpContext
= oldcmd
->ulpContext
; /* Xri / rx_id */
4738 icmd
->unsli3
.rcvsli3
.ox_id
= oldcmd
->unsli3
.rcvsli3
.ox_id
;
4739 pcmd
= (((struct lpfc_dmabuf
*) elsiocb
->context2
)->virt
);
4740 *((uint32_t *) (pcmd
)) = ELS_CMD_ACC
;
4741 pcmd
+= sizeof(uint32_t);
4743 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_RSP
,
4744 "Issue ACC: did:x%x flg:x%x",
4745 ndlp
->nlp_DID
, ndlp
->nlp_flag
, 0);
4749 cmdsize
= (sizeof(struct serv_parm
) + sizeof(uint32_t));
4750 elsiocb
= lpfc_prep_els_iocb(vport
, 0, cmdsize
, oldiocb
->retry
,
4751 ndlp
, ndlp
->nlp_DID
, ELS_CMD_ACC
);
4755 icmd
= &elsiocb
->iocb
;
4756 icmd
->ulpContext
= oldcmd
->ulpContext
; /* Xri / rx_id */
4757 icmd
->unsli3
.rcvsli3
.ox_id
= oldcmd
->unsli3
.rcvsli3
.ox_id
;
4758 pcmd
= (((struct lpfc_dmabuf
*) elsiocb
->context2
)->virt
);
4761 elsiocb
->context_un
.mbox
= mbox
;
4763 *((uint32_t *) (pcmd
)) = ELS_CMD_ACC
;
4764 pcmd
+= sizeof(uint32_t);
4765 sp
= (struct serv_parm
*)pcmd
;
4767 if (flag
== ELS_CMD_FLOGI
) {
4768 /* Copy the received service parameters back */
4769 memcpy(sp
, &phba
->fc_fabparam
,
4770 sizeof(struct serv_parm
));
4772 /* Clear the F_Port bit */
4775 /* Mark all class service parameters as invalid */
4776 sp
->cls1
.classValid
= 0;
4777 sp
->cls2
.classValid
= 0;
4778 sp
->cls3
.classValid
= 0;
4779 sp
->cls4
.classValid
= 0;
4781 /* Copy our worldwide names */
4782 memcpy(&sp
->portName
, &vport
->fc_sparam
.portName
,
4783 sizeof(struct lpfc_name
));
4784 memcpy(&sp
->nodeName
, &vport
->fc_sparam
.nodeName
,
4785 sizeof(struct lpfc_name
));
4787 memcpy(pcmd
, &vport
->fc_sparam
,
4788 sizeof(struct serv_parm
));
4790 sp
->cmn
.valid_vendor_ver_level
= 0;
4791 memset(sp
->un
.vendorVersion
, 0,
4792 sizeof(sp
->un
.vendorVersion
));
4793 sp
->cmn
.bbRcvSizeMsb
&= 0xF;
4795 /* If our firmware supports this feature, convey that
4796 * info to the target using the vendor specific field.
4798 if (phba
->sli
.sli_flag
& LPFC_SLI_SUPPRESS_RSP
) {
4799 sp
->cmn
.valid_vendor_ver_level
= 1;
4800 sp
->un
.vv
.vid
= cpu_to_be32(LPFC_VV_EMLX_ID
);
4802 cpu_to_be32(LPFC_VV_SUPPRESS_RSP
);
4806 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_RSP
,
4807 "Issue ACC FLOGI/PLOGI: did:x%x flg:x%x",
4808 ndlp
->nlp_DID
, ndlp
->nlp_flag
, 0);
4811 cmdsize
= sizeof(uint32_t) + sizeof(PRLO
);
4812 elsiocb
= lpfc_prep_els_iocb(vport
, 0, cmdsize
, oldiocb
->retry
,
4813 ndlp
, ndlp
->nlp_DID
, ELS_CMD_PRLO
);
4817 icmd
= &elsiocb
->iocb
;
4818 icmd
->ulpContext
= oldcmd
->ulpContext
; /* Xri / rx_id */
4819 icmd
->unsli3
.rcvsli3
.ox_id
= oldcmd
->unsli3
.rcvsli3
.ox_id
;
4820 pcmd
= (((struct lpfc_dmabuf
*) elsiocb
->context2
)->virt
);
4822 memcpy(pcmd
, ((struct lpfc_dmabuf
*) oldiocb
->context2
)->virt
,
4823 sizeof(uint32_t) + sizeof(PRLO
));
4824 *((uint32_t *) (pcmd
)) = ELS_CMD_PRLO_ACC
;
4825 els_pkt_ptr
= (ELS_PKT
*) pcmd
;
4826 els_pkt_ptr
->un
.prlo
.acceptRspCode
= PRLO_REQ_EXECUTED
;
4828 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_RSP
,
4829 "Issue ACC PRLO: did:x%x flg:x%x",
4830 ndlp
->nlp_DID
, ndlp
->nlp_flag
, 0);
4835 if (ndlp
->nlp_flag
& NLP_LOGO_ACC
) {
4836 spin_lock_irq(&ndlp
->lock
);
4837 if (!(ndlp
->nlp_flag
& NLP_RPI_REGISTERED
||
4838 ndlp
->nlp_flag
& NLP_REG_LOGIN_SEND
))
4839 ndlp
->nlp_flag
&= ~NLP_LOGO_ACC
;
4840 spin_unlock_irq(&ndlp
->lock
);
4841 elsiocb
->iocb_cmpl
= lpfc_cmpl_els_logo_acc
;
4843 elsiocb
->iocb_cmpl
= lpfc_cmpl_els_rsp
;
4846 phba
->fc_stat
.elsXmitACC
++;
4847 elsiocb
->context1
= lpfc_nlp_get(ndlp
);
4848 if (!elsiocb
->context1
)
4851 rc
= lpfc_sli_issue_iocb(phba
, LPFC_ELS_RING
, elsiocb
, 0);
4852 if (rc
== IOCB_ERROR
)
4855 /* Xmit ELS ACC response tag <ulpIoTag> */
4856 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_ELS
,
4857 "0128 Xmit ELS ACC response Status: x%x, IoTag: x%x, "
4858 "XRI: x%x, DID: x%x, nlp_flag: x%x nlp_state: x%x "
4859 "RPI: x%x, fc_flag x%x\n",
4860 rc
, elsiocb
->iotag
, elsiocb
->sli4_xritag
,
4861 ndlp
->nlp_DID
, ndlp
->nlp_flag
, ndlp
->nlp_state
,
4862 ndlp
->nlp_rpi
, vport
->fc_flag
);
4868 lpfc_els_free_iocb(phba
, elsiocb
);
4873 * lpfc_els_rsp_reject - Propare and issue a rjt response iocb command
4874 * @vport: pointer to a virtual N_Port data structure.
4875 * @rejectError: reject response to issue
4876 * @oldiocb: pointer to the original lpfc command iocb data structure.
4877 * @ndlp: pointer to a node-list data structure.
4878 * @mbox: pointer to the driver internal queue element for mailbox command.
4880 * This routine prepares and issue an Reject (RJT) response IOCB
4881 * command. If a @mbox pointer is passed in, it will be put into the
4882 * context_un.mbox field of the IOCB for the completion callback function
4883 * to issue to the HBA later.
4885 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
4886 * will be incremented by 1 for holding the ndlp and the reference to ndlp
4887 * will be stored into the context1 field of the IOCB for the completion
4888 * callback function to the reject response ELS IOCB command.
4891 * 0 - Successfully issued reject response
4892 * 1 - Failed to issue reject response
4895 lpfc_els_rsp_reject(struct lpfc_vport
*vport
, uint32_t rejectError
,
4896 struct lpfc_iocbq
*oldiocb
, struct lpfc_nodelist
*ndlp
,
4900 struct lpfc_hba
*phba
= vport
->phba
;
4903 struct lpfc_iocbq
*elsiocb
;
4907 cmdsize
= 2 * sizeof(uint32_t);
4908 elsiocb
= lpfc_prep_els_iocb(vport
, 0, cmdsize
, oldiocb
->retry
, ndlp
,
4909 ndlp
->nlp_DID
, ELS_CMD_LS_RJT
);
4913 icmd
= &elsiocb
->iocb
;
4914 oldcmd
= &oldiocb
->iocb
;
4915 icmd
->ulpContext
= oldcmd
->ulpContext
; /* Xri / rx_id */
4916 icmd
->unsli3
.rcvsli3
.ox_id
= oldcmd
->unsli3
.rcvsli3
.ox_id
;
4917 pcmd
= (uint8_t *) (((struct lpfc_dmabuf
*) elsiocb
->context2
)->virt
);
4919 *((uint32_t *) (pcmd
)) = ELS_CMD_LS_RJT
;
4920 pcmd
+= sizeof(uint32_t);
4921 *((uint32_t *) (pcmd
)) = rejectError
;
4924 elsiocb
->context_un
.mbox
= mbox
;
4926 /* Xmit ELS RJT <err> response tag <ulpIoTag> */
4927 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_ELS
,
4928 "0129 Xmit ELS RJT x%x response tag x%x "
4929 "xri x%x, did x%x, nlp_flag x%x, nlp_state x%x, "
4931 rejectError
, elsiocb
->iotag
,
4932 elsiocb
->iocb
.ulpContext
, ndlp
->nlp_DID
,
4933 ndlp
->nlp_flag
, ndlp
->nlp_state
, ndlp
->nlp_rpi
);
4934 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_RSP
,
4935 "Issue LS_RJT: did:x%x flg:x%x err:x%x",
4936 ndlp
->nlp_DID
, ndlp
->nlp_flag
, rejectError
);
4938 phba
->fc_stat
.elsXmitLSRJT
++;
4939 elsiocb
->iocb_cmpl
= lpfc_cmpl_els_rsp
;
4940 elsiocb
->context1
= lpfc_nlp_get(ndlp
);
4941 if (!elsiocb
->context1
)
4944 rc
= lpfc_sli_issue_iocb(phba
, LPFC_ELS_RING
, elsiocb
, 0);
4945 if (rc
== IOCB_ERROR
)
4953 lpfc_els_free_iocb(phba
, elsiocb
);
4958 * lpfc_els_rsp_adisc_acc - Prepare and issue acc response to adisc iocb cmd
4959 * @vport: pointer to a virtual N_Port data structure.
4960 * @oldiocb: pointer to the original lpfc command iocb data structure.
4961 * @ndlp: pointer to a node-list data structure.
4963 * This routine prepares and issues an Accept (ACC) response to Address
4964 * Discover (ADISC) ELS command. It simply prepares the payload of the IOCB
4965 * and invokes the lpfc_sli_issue_iocb() routine to send out the command.
4967 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
4968 * will be incremented by 1 for holding the ndlp and the reference to ndlp
4969 * will be stored into the context1 field of the IOCB for the completion
4970 * callback function to the ADISC Accept response ELS IOCB command.
4973 * 0 - Successfully issued acc adisc response
4974 * 1 - Failed to issue adisc acc response
4977 lpfc_els_rsp_adisc_acc(struct lpfc_vport
*vport
, struct lpfc_iocbq
*oldiocb
,
4978 struct lpfc_nodelist
*ndlp
)
4980 struct lpfc_hba
*phba
= vport
->phba
;
4982 IOCB_t
*icmd
, *oldcmd
;
4983 struct lpfc_iocbq
*elsiocb
;
4988 cmdsize
= sizeof(uint32_t) + sizeof(ADISC
);
4989 elsiocb
= lpfc_prep_els_iocb(vport
, 0, cmdsize
, oldiocb
->retry
, ndlp
,
4990 ndlp
->nlp_DID
, ELS_CMD_ACC
);
4994 icmd
= &elsiocb
->iocb
;
4995 oldcmd
= &oldiocb
->iocb
;
4996 icmd
->ulpContext
= oldcmd
->ulpContext
; /* Xri / rx_id */
4997 icmd
->unsli3
.rcvsli3
.ox_id
= oldcmd
->unsli3
.rcvsli3
.ox_id
;
4999 /* Xmit ADISC ACC response tag <ulpIoTag> */
5000 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_ELS
,
5001 "0130 Xmit ADISC ACC response iotag x%x xri: "
5002 "x%x, did x%x, nlp_flag x%x, nlp_state x%x rpi x%x\n",
5003 elsiocb
->iotag
, elsiocb
->iocb
.ulpContext
,
5004 ndlp
->nlp_DID
, ndlp
->nlp_flag
, ndlp
->nlp_state
,
5006 pcmd
= (uint8_t *) (((struct lpfc_dmabuf
*) elsiocb
->context2
)->virt
);
5008 *((uint32_t *) (pcmd
)) = ELS_CMD_ACC
;
5009 pcmd
+= sizeof(uint32_t);
5011 ap
= (ADISC
*) (pcmd
);
5012 ap
->hardAL_PA
= phba
->fc_pref_ALPA
;
5013 memcpy(&ap
->portName
, &vport
->fc_portname
, sizeof(struct lpfc_name
));
5014 memcpy(&ap
->nodeName
, &vport
->fc_nodename
, sizeof(struct lpfc_name
));
5015 ap
->DID
= be32_to_cpu(vport
->fc_myDID
);
5017 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_RSP
,
5018 "Issue ACC ADISC: did:x%x flg:x%x refcnt %d",
5019 ndlp
->nlp_DID
, ndlp
->nlp_flag
, kref_read(&ndlp
->kref
));
5021 phba
->fc_stat
.elsXmitACC
++;
5022 elsiocb
->iocb_cmpl
= lpfc_cmpl_els_rsp
;
5023 elsiocb
->context1
= lpfc_nlp_get(ndlp
);
5024 if (!elsiocb
->context1
)
5027 rc
= lpfc_sli_issue_iocb(phba
, LPFC_ELS_RING
, elsiocb
, 0);
5028 if (rc
== IOCB_ERROR
)
5031 /* Xmit ELS ACC response tag <ulpIoTag> */
5032 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_ELS
,
5033 "0128 Xmit ELS ACC response Status: x%x, IoTag: x%x, "
5034 "XRI: x%x, DID: x%x, nlp_flag: x%x nlp_state: x%x "
5035 "RPI: x%x, fc_flag x%x\n",
5036 rc
, elsiocb
->iotag
, elsiocb
->sli4_xritag
,
5037 ndlp
->nlp_DID
, ndlp
->nlp_flag
, ndlp
->nlp_state
,
5038 ndlp
->nlp_rpi
, vport
->fc_flag
);
5044 lpfc_els_free_iocb(phba
, elsiocb
);
5049 * lpfc_els_rsp_prli_acc - Prepare and issue acc response to prli iocb cmd
5050 * @vport: pointer to a virtual N_Port data structure.
5051 * @oldiocb: pointer to the original lpfc command iocb data structure.
5052 * @ndlp: pointer to a node-list data structure.
5054 * This routine prepares and issues an Accept (ACC) response to Process
5055 * Login (PRLI) ELS command. It simply prepares the payload of the IOCB
5056 * and invokes the lpfc_sli_issue_iocb() routine to send out the command.
5058 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
5059 * will be incremented by 1 for holding the ndlp and the reference to ndlp
5060 * will be stored into the context1 field of the IOCB for the completion
5061 * callback function to the PRLI Accept response ELS IOCB command.
5064 * 0 - Successfully issued acc prli response
5065 * 1 - Failed to issue acc prli response
5068 lpfc_els_rsp_prli_acc(struct lpfc_vport
*vport
, struct lpfc_iocbq
*oldiocb
,
5069 struct lpfc_nodelist
*ndlp
)
5071 struct lpfc_hba
*phba
= vport
->phba
;
5073 struct lpfc_nvme_prli
*npr_nvme
;
5077 struct lpfc_iocbq
*elsiocb
;
5080 uint32_t prli_fc4_req
, *req_payload
;
5081 struct lpfc_dmabuf
*req_buf
;
5085 /* Need the incoming PRLI payload to determine if the ACC is for an
5086 * FC4 or NVME PRLI type. The PRLI type is at word 1.
5088 req_buf
= (struct lpfc_dmabuf
*)oldiocb
->context2
;
5089 req_payload
= (((uint32_t *)req_buf
->virt
) + 1);
5091 /* PRLI type payload is at byte 3 for FCP or NVME. */
5092 prli_fc4_req
= be32_to_cpu(*req_payload
);
5093 prli_fc4_req
= (prli_fc4_req
>> 24) & 0xff;
5094 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_ELS
,
5095 "6127 PRLI_ACC: Req Type x%x, Word1 x%08x\n",
5096 prli_fc4_req
, *((uint32_t *)req_payload
));
5098 if (prli_fc4_req
== PRLI_FCP_TYPE
) {
5099 cmdsize
= sizeof(uint32_t) + sizeof(PRLI
);
5100 elsrspcmd
= (ELS_CMD_ACC
| (ELS_CMD_PRLI
& ~ELS_RSP_MASK
));
5101 } else if (prli_fc4_req
& PRLI_NVME_TYPE
) {
5102 cmdsize
= sizeof(uint32_t) + sizeof(struct lpfc_nvme_prli
);
5103 elsrspcmd
= (ELS_CMD_ACC
| (ELS_CMD_NVMEPRLI
& ~ELS_RSP_MASK
));
5108 elsiocb
= lpfc_prep_els_iocb(vport
, 0, cmdsize
, oldiocb
->retry
, ndlp
,
5109 ndlp
->nlp_DID
, elsrspcmd
);
5113 icmd
= &elsiocb
->iocb
;
5114 oldcmd
= &oldiocb
->iocb
;
5115 icmd
->ulpContext
= oldcmd
->ulpContext
; /* Xri / rx_id */
5116 icmd
->unsli3
.rcvsli3
.ox_id
= oldcmd
->unsli3
.rcvsli3
.ox_id
;
5118 /* Xmit PRLI ACC response tag <ulpIoTag> */
5119 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_ELS
,
5120 "0131 Xmit PRLI ACC response tag x%x xri x%x, "
5121 "did x%x, nlp_flag x%x, nlp_state x%x, rpi x%x\n",
5122 elsiocb
->iotag
, elsiocb
->iocb
.ulpContext
,
5123 ndlp
->nlp_DID
, ndlp
->nlp_flag
, ndlp
->nlp_state
,
5125 pcmd
= (uint8_t *) (((struct lpfc_dmabuf
*) elsiocb
->context2
)->virt
);
5126 memset(pcmd
, 0, cmdsize
);
5128 *((uint32_t *)(pcmd
)) = elsrspcmd
;
5129 pcmd
+= sizeof(uint32_t);
5131 /* For PRLI, remainder of payload is PRLI parameter page */
5134 if (prli_fc4_req
== PRLI_FCP_TYPE
) {
5136 * If the remote port is a target and our firmware version
5137 * is 3.20 or later, set the following bits for FC-TAPE
5140 npr
= (PRLI
*) pcmd
;
5141 if ((ndlp
->nlp_type
& NLP_FCP_TARGET
) &&
5142 (vpd
->rev
.feaLevelHigh
>= 0x02)) {
5143 npr
->ConfmComplAllowed
= 1;
5145 npr
->TaskRetryIdReq
= 1;
5147 npr
->acceptRspCode
= PRLI_REQ_EXECUTED
;
5148 npr
->estabImagePair
= 1;
5149 npr
->readXferRdyDis
= 1;
5150 npr
->ConfmComplAllowed
= 1;
5151 npr
->prliType
= PRLI_FCP_TYPE
;
5152 npr
->initiatorFunc
= 1;
5153 } else if (prli_fc4_req
& PRLI_NVME_TYPE
) {
5154 /* Respond with an NVME PRLI Type */
5155 npr_nvme
= (struct lpfc_nvme_prli
*) pcmd
;
5156 bf_set(prli_type_code
, npr_nvme
, PRLI_NVME_TYPE
);
5157 bf_set(prli_estabImagePair
, npr_nvme
, 0); /* Should be 0 */
5158 bf_set(prli_acc_rsp_code
, npr_nvme
, PRLI_REQ_EXECUTED
);
5159 if (phba
->nvmet_support
) {
5160 bf_set(prli_tgt
, npr_nvme
, 1);
5161 bf_set(prli_disc
, npr_nvme
, 1);
5162 if (phba
->cfg_nvme_enable_fb
) {
5163 bf_set(prli_fba
, npr_nvme
, 1);
5165 /* TBD. Target mode needs to post buffers
5166 * that support the configured first burst
5169 bf_set(prli_fb_sz
, npr_nvme
,
5170 phba
->cfg_nvmet_fb_size
);
5173 bf_set(prli_init
, npr_nvme
, 1);
5176 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_NVME_DISC
,
5177 "6015 NVME issue PRLI ACC word1 x%08x "
5178 "word4 x%08x word5 x%08x flag x%x, "
5179 "fcp_info x%x nlp_type x%x\n",
5180 npr_nvme
->word1
, npr_nvme
->word4
,
5181 npr_nvme
->word5
, ndlp
->nlp_flag
,
5182 ndlp
->nlp_fcp_info
, ndlp
->nlp_type
);
5183 npr_nvme
->word1
= cpu_to_be32(npr_nvme
->word1
);
5184 npr_nvme
->word4
= cpu_to_be32(npr_nvme
->word4
);
5185 npr_nvme
->word5
= cpu_to_be32(npr_nvme
->word5
);
5187 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_DISCOVERY
,
5188 "6128 Unknown FC_TYPE x%x x%x ndlp x%06x\n",
5189 prli_fc4_req
, ndlp
->nlp_fc4_type
,
5192 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_RSP
,
5193 "Issue ACC PRLI: did:x%x flg:x%x",
5194 ndlp
->nlp_DID
, ndlp
->nlp_flag
, kref_read(&ndlp
->kref
));
5196 phba
->fc_stat
.elsXmitACC
++;
5197 elsiocb
->iocb_cmpl
= lpfc_cmpl_els_rsp
;
5198 elsiocb
->context1
= lpfc_nlp_get(ndlp
);
5199 if (!elsiocb
->context1
)
5202 rc
= lpfc_sli_issue_iocb(phba
, LPFC_ELS_RING
, elsiocb
, 0);
5203 if (rc
== IOCB_ERROR
)
5210 lpfc_els_free_iocb(phba
, elsiocb
);
5215 * lpfc_els_rsp_rnid_acc - Issue rnid acc response iocb command
5216 * @vport: pointer to a virtual N_Port data structure.
5217 * @format: rnid command format.
5218 * @oldiocb: pointer to the original lpfc command iocb data structure.
5219 * @ndlp: pointer to a node-list data structure.
5221 * This routine issues a Request Node Identification Data (RNID) Accept
5222 * (ACC) response. It constructs the RNID ACC response command according to
5223 * the proper @format and then calls the lpfc_sli_issue_iocb() routine to
5224 * issue the response. Note that this command does not need to hold the ndlp
5225 * reference count for the callback. So, the ndlp reference count taken by
5226 * the lpfc_prep_els_iocb() routine is put back and the context1 field of
5227 * IOCB is set to NULL to indicate to the lpfc_els_free_iocb() routine that
5228 * there is no ndlp reference available.
5230 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
5231 * will be incremented by 1 for holding the ndlp and the reference to ndlp
5232 * will be stored into the context1 field of the IOCB for the completion
5233 * callback function. However, for the RNID Accept Response ELS command,
5234 * this is undone later by this routine after the IOCB is allocated.
5237 * 0 - Successfully issued acc rnid response
5238 * 1 - Failed to issue acc rnid response
5241 lpfc_els_rsp_rnid_acc(struct lpfc_vport
*vport
, uint8_t format
,
5242 struct lpfc_iocbq
*oldiocb
, struct lpfc_nodelist
*ndlp
)
5244 struct lpfc_hba
*phba
= vport
->phba
;
5246 IOCB_t
*icmd
, *oldcmd
;
5247 struct lpfc_iocbq
*elsiocb
;
5252 cmdsize
= sizeof(uint32_t) + sizeof(uint32_t)
5253 + (2 * sizeof(struct lpfc_name
));
5255 cmdsize
+= sizeof(RNID_TOP_DISC
);
5257 elsiocb
= lpfc_prep_els_iocb(vport
, 0, cmdsize
, oldiocb
->retry
, ndlp
,
5258 ndlp
->nlp_DID
, ELS_CMD_ACC
);
5262 icmd
= &elsiocb
->iocb
;
5263 oldcmd
= &oldiocb
->iocb
;
5264 icmd
->ulpContext
= oldcmd
->ulpContext
; /* Xri / rx_id */
5265 icmd
->unsli3
.rcvsli3
.ox_id
= oldcmd
->unsli3
.rcvsli3
.ox_id
;
5267 /* Xmit RNID ACC response tag <ulpIoTag> */
5268 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_ELS
,
5269 "0132 Xmit RNID ACC response tag x%x xri x%x\n",
5270 elsiocb
->iotag
, elsiocb
->iocb
.ulpContext
);
5271 pcmd
= (uint8_t *) (((struct lpfc_dmabuf
*) elsiocb
->context2
)->virt
);
5272 *((uint32_t *) (pcmd
)) = ELS_CMD_ACC
;
5273 pcmd
+= sizeof(uint32_t);
5275 memset(pcmd
, 0, sizeof(RNID
));
5276 rn
= (RNID
*) (pcmd
);
5277 rn
->Format
= format
;
5278 rn
->CommonLen
= (2 * sizeof(struct lpfc_name
));
5279 memcpy(&rn
->portName
, &vport
->fc_portname
, sizeof(struct lpfc_name
));
5280 memcpy(&rn
->nodeName
, &vport
->fc_nodename
, sizeof(struct lpfc_name
));
5283 rn
->SpecificLen
= 0;
5285 case RNID_TOPOLOGY_DISC
:
5286 rn
->SpecificLen
= sizeof(RNID_TOP_DISC
);
5287 memcpy(&rn
->un
.topologyDisc
.portName
,
5288 &vport
->fc_portname
, sizeof(struct lpfc_name
));
5289 rn
->un
.topologyDisc
.unitType
= RNID_HBA
;
5290 rn
->un
.topologyDisc
.physPort
= 0;
5291 rn
->un
.topologyDisc
.attachedNodes
= 0;
5295 rn
->SpecificLen
= 0;
5299 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_RSP
,
5300 "Issue ACC RNID: did:x%x flg:x%x refcnt %d",
5301 ndlp
->nlp_DID
, ndlp
->nlp_flag
, kref_read(&ndlp
->kref
));
5303 phba
->fc_stat
.elsXmitACC
++;
5304 elsiocb
->iocb_cmpl
= lpfc_cmpl_els_rsp
;
5305 elsiocb
->context1
= lpfc_nlp_get(ndlp
);
5306 if (!elsiocb
->context1
)
5309 rc
= lpfc_sli_issue_iocb(phba
, LPFC_ELS_RING
, elsiocb
, 0);
5310 if (rc
== IOCB_ERROR
)
5318 lpfc_els_free_iocb(phba
, elsiocb
);
5323 * lpfc_els_clear_rrq - Clear the rq that this rrq describes.
5324 * @vport: pointer to a virtual N_Port data structure.
5325 * @iocb: pointer to the lpfc command iocb data structure.
5326 * @ndlp: pointer to a node-list data structure.
5331 lpfc_els_clear_rrq(struct lpfc_vport
*vport
,
5332 struct lpfc_iocbq
*iocb
, struct lpfc_nodelist
*ndlp
)
5334 struct lpfc_hba
*phba
= vport
->phba
;
5339 struct lpfc_node_rrq
*prrq
;
5342 pcmd
= (uint8_t *) (((struct lpfc_dmabuf
*) iocb
->context2
)->virt
);
5343 pcmd
+= sizeof(uint32_t);
5344 rrq
= (struct RRQ
*)pcmd
;
5345 rrq
->rrq_exchg
= be32_to_cpu(rrq
->rrq_exchg
);
5346 rxid
= bf_get(rrq_rxid
, rrq
);
5348 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_ELS
,
5349 "2883 Clear RRQ for SID:x%x OXID:x%x RXID:x%x"
5351 be32_to_cpu(bf_get(rrq_did
, rrq
)),
5352 bf_get(rrq_oxid
, rrq
),
5354 iocb
->iotag
, iocb
->iocb
.ulpContext
);
5356 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_RSP
,
5357 "Clear RRQ: did:x%x flg:x%x exchg:x%.08x",
5358 ndlp
->nlp_DID
, ndlp
->nlp_flag
, rrq
->rrq_exchg
);
5359 if (vport
->fc_myDID
== be32_to_cpu(bf_get(rrq_did
, rrq
)))
5360 xri
= bf_get(rrq_oxid
, rrq
);
5363 prrq
= lpfc_get_active_rrq(vport
, xri
, ndlp
->nlp_DID
);
5365 lpfc_clr_rrq_active(phba
, xri
, prrq
);
5370 * lpfc_els_rsp_echo_acc - Issue echo acc response
5371 * @vport: pointer to a virtual N_Port data structure.
5372 * @data: pointer to echo data to return in the accept.
5373 * @oldiocb: pointer to the original lpfc command iocb data structure.
5374 * @ndlp: pointer to a node-list data structure.
5377 * 0 - Successfully issued acc echo response
5378 * 1 - Failed to issue acc echo response
5381 lpfc_els_rsp_echo_acc(struct lpfc_vport
*vport
, uint8_t *data
,
5382 struct lpfc_iocbq
*oldiocb
, struct lpfc_nodelist
*ndlp
)
5384 struct lpfc_hba
*phba
= vport
->phba
;
5385 struct lpfc_iocbq
*elsiocb
;
5390 cmdsize
= oldiocb
->iocb
.unsli3
.rcvsli3
.acc_len
;
5392 /* The accumulated length can exceed the BPL_SIZE. For
5393 * now, use this as the limit
5395 if (cmdsize
> LPFC_BPL_SIZE
)
5396 cmdsize
= LPFC_BPL_SIZE
;
5397 elsiocb
= lpfc_prep_els_iocb(vport
, 0, cmdsize
, oldiocb
->retry
, ndlp
,
5398 ndlp
->nlp_DID
, ELS_CMD_ACC
);
5402 elsiocb
->iocb
.ulpContext
= oldiocb
->iocb
.ulpContext
; /* Xri / rx_id */
5403 elsiocb
->iocb
.unsli3
.rcvsli3
.ox_id
= oldiocb
->iocb
.unsli3
.rcvsli3
.ox_id
;
5405 /* Xmit ECHO ACC response tag <ulpIoTag> */
5406 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_ELS
,
5407 "2876 Xmit ECHO ACC response tag x%x xri x%x\n",
5408 elsiocb
->iotag
, elsiocb
->iocb
.ulpContext
);
5409 pcmd
= (uint8_t *) (((struct lpfc_dmabuf
*) elsiocb
->context2
)->virt
);
5410 *((uint32_t *) (pcmd
)) = ELS_CMD_ACC
;
5411 pcmd
+= sizeof(uint32_t);
5412 memcpy(pcmd
, data
, cmdsize
- sizeof(uint32_t));
5414 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_RSP
,
5415 "Issue ACC ECHO: did:x%x flg:x%x refcnt %d",
5416 ndlp
->nlp_DID
, ndlp
->nlp_flag
, kref_read(&ndlp
->kref
));
5418 phba
->fc_stat
.elsXmitACC
++;
5419 elsiocb
->iocb_cmpl
= lpfc_cmpl_els_rsp
;
5420 elsiocb
->context1
= lpfc_nlp_get(ndlp
);
5421 if (!elsiocb
->context1
)
5424 rc
= lpfc_sli_issue_iocb(phba
, LPFC_ELS_RING
, elsiocb
, 0);
5425 if (rc
== IOCB_ERROR
)
5432 lpfc_els_free_iocb(phba
, elsiocb
);
5437 * lpfc_els_disc_adisc - Issue remaining adisc iocbs to npr nodes of a vport
5438 * @vport: pointer to a host virtual N_Port data structure.
5440 * This routine issues Address Discover (ADISC) ELS commands to those
5441 * N_Ports which are in node port recovery state and ADISC has not been issued
5442 * for the @vport. Each time an ELS ADISC IOCB is issued by invoking the
5443 * lpfc_issue_els_adisc() routine, the per @vport number of discover count
5444 * (num_disc_nodes) shall be incremented. If the num_disc_nodes reaches a
5445 * pre-configured threshold (cfg_discovery_threads), the @vport fc_flag will
5446 * be marked with FC_NLP_MORE bit and the process of issuing remaining ADISC
5447 * IOCBs quit for later pick up. On the other hand, after walking through
5448 * all the ndlps with the @vport and there is none ADISC IOCB issued, the
5449 * @vport fc_flag shall be cleared with FC_NLP_MORE bit indicating there is
5450 * no more ADISC need to be sent.
5453 * The number of N_Ports with adisc issued.
5456 lpfc_els_disc_adisc(struct lpfc_vport
*vport
)
5458 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
5459 struct lpfc_nodelist
*ndlp
, *next_ndlp
;
5462 /* go thru NPR nodes and issue any remaining ELS ADISCs */
5463 list_for_each_entry_safe(ndlp
, next_ndlp
, &vport
->fc_nodes
, nlp_listp
) {
5464 if (ndlp
->nlp_state
== NLP_STE_NPR_NODE
&&
5465 (ndlp
->nlp_flag
& NLP_NPR_2B_DISC
) != 0 &&
5466 (ndlp
->nlp_flag
& NLP_NPR_ADISC
) != 0) {
5467 spin_lock_irq(&ndlp
->lock
);
5468 ndlp
->nlp_flag
&= ~NLP_NPR_ADISC
;
5469 spin_unlock_irq(&ndlp
->lock
);
5470 ndlp
->nlp_prev_state
= ndlp
->nlp_state
;
5471 lpfc_nlp_set_state(vport
, ndlp
, NLP_STE_ADISC_ISSUE
);
5472 lpfc_issue_els_adisc(vport
, ndlp
, 0);
5474 vport
->num_disc_nodes
++;
5475 if (vport
->num_disc_nodes
>=
5476 vport
->cfg_discovery_threads
) {
5477 spin_lock_irq(shost
->host_lock
);
5478 vport
->fc_flag
|= FC_NLP_MORE
;
5479 spin_unlock_irq(shost
->host_lock
);
5484 if (sentadisc
== 0) {
5485 spin_lock_irq(shost
->host_lock
);
5486 vport
->fc_flag
&= ~FC_NLP_MORE
;
5487 spin_unlock_irq(shost
->host_lock
);
5493 * lpfc_els_disc_plogi - Issue plogi for all npr nodes of a vport before adisc
5494 * @vport: pointer to a host virtual N_Port data structure.
5496 * This routine issues Port Login (PLOGI) ELS commands to all the N_Ports
5497 * which are in node port recovery state, with a @vport. Each time an ELS
5498 * ADISC PLOGI IOCB is issued by invoking the lpfc_issue_els_plogi() routine,
5499 * the per @vport number of discover count (num_disc_nodes) shall be
5500 * incremented. If the num_disc_nodes reaches a pre-configured threshold
5501 * (cfg_discovery_threads), the @vport fc_flag will be marked with FC_NLP_MORE
5502 * bit set and quit the process of issuing remaining ADISC PLOGIN IOCBs for
5503 * later pick up. On the other hand, after walking through all the ndlps with
5504 * the @vport and there is none ADISC PLOGI IOCB issued, the @vport fc_flag
5505 * shall be cleared with the FC_NLP_MORE bit indicating there is no more ADISC
5506 * PLOGI need to be sent.
5509 * The number of N_Ports with plogi issued.
5512 lpfc_els_disc_plogi(struct lpfc_vport
*vport
)
5514 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
5515 struct lpfc_nodelist
*ndlp
, *next_ndlp
;
5518 /* go thru NPR nodes and issue any remaining ELS PLOGIs */
5519 list_for_each_entry_safe(ndlp
, next_ndlp
, &vport
->fc_nodes
, nlp_listp
) {
5520 if (ndlp
->nlp_state
== NLP_STE_NPR_NODE
&&
5521 (ndlp
->nlp_flag
& NLP_NPR_2B_DISC
) != 0 &&
5522 (ndlp
->nlp_flag
& NLP_DELAY_TMO
) == 0 &&
5523 (ndlp
->nlp_flag
& NLP_NPR_ADISC
) == 0) {
5524 ndlp
->nlp_prev_state
= ndlp
->nlp_state
;
5525 lpfc_nlp_set_state(vport
, ndlp
, NLP_STE_PLOGI_ISSUE
);
5526 lpfc_issue_els_plogi(vport
, ndlp
->nlp_DID
, 0);
5528 vport
->num_disc_nodes
++;
5529 if (vport
->num_disc_nodes
>=
5530 vport
->cfg_discovery_threads
) {
5531 spin_lock_irq(shost
->host_lock
);
5532 vport
->fc_flag
|= FC_NLP_MORE
;
5533 spin_unlock_irq(shost
->host_lock
);
5539 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_DISCOVERY
,
5540 "6452 Discover PLOGI %d flag x%x\n",
5541 sentplogi
, vport
->fc_flag
);
5544 lpfc_set_disctmo(vport
);
5547 spin_lock_irq(shost
->host_lock
);
5548 vport
->fc_flag
&= ~FC_NLP_MORE
;
5549 spin_unlock_irq(shost
->host_lock
);
5555 lpfc_rdp_res_link_service(struct fc_rdp_link_service_desc
*desc
,
5559 desc
->tag
= cpu_to_be32(RDP_LINK_SERVICE_DESC_TAG
);
5560 desc
->payload
.els_req
= word0
;
5561 desc
->length
= cpu_to_be32(sizeof(desc
->payload
));
5563 return sizeof(struct fc_rdp_link_service_desc
);
5567 lpfc_rdp_res_sfp_desc(struct fc_rdp_sfp_desc
*desc
,
5568 uint8_t *page_a0
, uint8_t *page_a2
)
5570 uint16_t wavelength
;
5571 uint16_t temperature
;
5577 struct sff_trasnceiver_codes_byte4
*trasn_code_byte4
;
5578 struct sff_trasnceiver_codes_byte5
*trasn_code_byte5
;
5580 desc
->tag
= cpu_to_be32(RDP_SFP_DESC_TAG
);
5582 trasn_code_byte4
= (struct sff_trasnceiver_codes_byte4
*)
5583 &page_a0
[SSF_TRANSCEIVER_CODE_B4
];
5584 trasn_code_byte5
= (struct sff_trasnceiver_codes_byte5
*)
5585 &page_a0
[SSF_TRANSCEIVER_CODE_B5
];
5587 if ((trasn_code_byte4
->fc_sw_laser
) ||
5588 (trasn_code_byte5
->fc_sw_laser_sl
) ||
5589 (trasn_code_byte5
->fc_sw_laser_sn
)) { /* check if its short WL */
5590 flag
|= (SFP_FLAG_PT_SWLASER
<< SFP_FLAG_PT_SHIFT
);
5591 } else if (trasn_code_byte4
->fc_lw_laser
) {
5592 wavelength
= (page_a0
[SSF_WAVELENGTH_B1
] << 8) |
5593 page_a0
[SSF_WAVELENGTH_B0
];
5594 if (wavelength
== SFP_WAVELENGTH_LC1310
)
5595 flag
|= SFP_FLAG_PT_LWLASER_LC1310
<< SFP_FLAG_PT_SHIFT
;
5596 if (wavelength
== SFP_WAVELENGTH_LL1550
)
5597 flag
|= SFP_FLAG_PT_LWLASER_LL1550
<< SFP_FLAG_PT_SHIFT
;
5599 /* check if its SFP+ */
5600 flag
|= ((page_a0
[SSF_IDENTIFIER
] == SFF_PG0_IDENT_SFP
) ?
5601 SFP_FLAG_CT_SFP_PLUS
: SFP_FLAG_CT_UNKNOWN
)
5602 << SFP_FLAG_CT_SHIFT
;
5604 /* check if its OPTICAL */
5605 flag
|= ((page_a0
[SSF_CONNECTOR
] == SFF_PG0_CONNECTOR_LC
) ?
5606 SFP_FLAG_IS_OPTICAL_PORT
: 0)
5607 << SFP_FLAG_IS_OPTICAL_SHIFT
;
5609 temperature
= (page_a2
[SFF_TEMPERATURE_B1
] << 8 |
5610 page_a2
[SFF_TEMPERATURE_B0
]);
5611 vcc
= (page_a2
[SFF_VCC_B1
] << 8 |
5612 page_a2
[SFF_VCC_B0
]);
5613 tx_power
= (page_a2
[SFF_TXPOWER_B1
] << 8 |
5614 page_a2
[SFF_TXPOWER_B0
]);
5615 tx_bias
= (page_a2
[SFF_TX_BIAS_CURRENT_B1
] << 8 |
5616 page_a2
[SFF_TX_BIAS_CURRENT_B0
]);
5617 rx_power
= (page_a2
[SFF_RXPOWER_B1
] << 8 |
5618 page_a2
[SFF_RXPOWER_B0
]);
5619 desc
->sfp_info
.temperature
= cpu_to_be16(temperature
);
5620 desc
->sfp_info
.rx_power
= cpu_to_be16(rx_power
);
5621 desc
->sfp_info
.tx_bias
= cpu_to_be16(tx_bias
);
5622 desc
->sfp_info
.tx_power
= cpu_to_be16(tx_power
);
5623 desc
->sfp_info
.vcc
= cpu_to_be16(vcc
);
5625 desc
->sfp_info
.flags
= cpu_to_be16(flag
);
5626 desc
->length
= cpu_to_be32(sizeof(desc
->sfp_info
));
5628 return sizeof(struct fc_rdp_sfp_desc
);
5632 lpfc_rdp_res_link_error(struct fc_rdp_link_error_status_desc
*desc
,
5637 desc
->tag
= cpu_to_be32(RDP_LINK_ERROR_STATUS_DESC_TAG
);
5639 type
= VN_PT_PHY_PF_PORT
<< VN_PT_PHY_SHIFT
;
5641 desc
->info
.port_type
= cpu_to_be32(type
);
5643 desc
->info
.link_status
.link_failure_cnt
=
5644 cpu_to_be32(stat
->linkFailureCnt
);
5645 desc
->info
.link_status
.loss_of_synch_cnt
=
5646 cpu_to_be32(stat
->lossSyncCnt
);
5647 desc
->info
.link_status
.loss_of_signal_cnt
=
5648 cpu_to_be32(stat
->lossSignalCnt
);
5649 desc
->info
.link_status
.primitive_seq_proto_err
=
5650 cpu_to_be32(stat
->primSeqErrCnt
);
5651 desc
->info
.link_status
.invalid_trans_word
=
5652 cpu_to_be32(stat
->invalidXmitWord
);
5653 desc
->info
.link_status
.invalid_crc_cnt
= cpu_to_be32(stat
->crcCnt
);
5655 desc
->length
= cpu_to_be32(sizeof(desc
->info
));
5657 return sizeof(struct fc_rdp_link_error_status_desc
);
5661 lpfc_rdp_res_bbc_desc(struct fc_rdp_bbc_desc
*desc
, READ_LNK_VAR
*stat
,
5662 struct lpfc_vport
*vport
)
5666 desc
->tag
= cpu_to_be32(RDP_BBC_DESC_TAG
);
5668 bbCredit
= vport
->fc_sparam
.cmn
.bbCreditLsb
|
5669 (vport
->fc_sparam
.cmn
.bbCreditMsb
<< 8);
5670 desc
->bbc_info
.port_bbc
= cpu_to_be32(bbCredit
);
5671 if (vport
->phba
->fc_topology
!= LPFC_TOPOLOGY_LOOP
) {
5672 bbCredit
= vport
->phba
->fc_fabparam
.cmn
.bbCreditLsb
|
5673 (vport
->phba
->fc_fabparam
.cmn
.bbCreditMsb
<< 8);
5674 desc
->bbc_info
.attached_port_bbc
= cpu_to_be32(bbCredit
);
5676 desc
->bbc_info
.attached_port_bbc
= 0;
5679 desc
->bbc_info
.rtt
= 0;
5680 desc
->length
= cpu_to_be32(sizeof(desc
->bbc_info
));
5682 return sizeof(struct fc_rdp_bbc_desc
);
5686 lpfc_rdp_res_oed_temp_desc(struct lpfc_hba
*phba
,
5687 struct fc_rdp_oed_sfp_desc
*desc
, uint8_t *page_a2
)
5691 desc
->tag
= cpu_to_be32(RDP_OED_DESC_TAG
);
5693 desc
->oed_info
.hi_alarm
= page_a2
[SSF_TEMP_HIGH_ALARM
];
5694 desc
->oed_info
.lo_alarm
= page_a2
[SSF_TEMP_LOW_ALARM
];
5695 desc
->oed_info
.hi_warning
= page_a2
[SSF_TEMP_HIGH_WARNING
];
5696 desc
->oed_info
.lo_warning
= page_a2
[SSF_TEMP_LOW_WARNING
];
5698 if (phba
->sfp_alarm
& LPFC_TRANSGRESSION_HIGH_TEMPERATURE
)
5699 flags
|= RDP_OET_HIGH_ALARM
;
5700 if (phba
->sfp_alarm
& LPFC_TRANSGRESSION_LOW_TEMPERATURE
)
5701 flags
|= RDP_OET_LOW_ALARM
;
5702 if (phba
->sfp_warning
& LPFC_TRANSGRESSION_HIGH_TEMPERATURE
)
5703 flags
|= RDP_OET_HIGH_WARNING
;
5704 if (phba
->sfp_warning
& LPFC_TRANSGRESSION_LOW_TEMPERATURE
)
5705 flags
|= RDP_OET_LOW_WARNING
;
5707 flags
|= ((0xf & RDP_OED_TEMPERATURE
) << RDP_OED_TYPE_SHIFT
);
5708 desc
->oed_info
.function_flags
= cpu_to_be32(flags
);
5709 desc
->length
= cpu_to_be32(sizeof(desc
->oed_info
));
5710 return sizeof(struct fc_rdp_oed_sfp_desc
);
5714 lpfc_rdp_res_oed_voltage_desc(struct lpfc_hba
*phba
,
5715 struct fc_rdp_oed_sfp_desc
*desc
,
5720 desc
->tag
= cpu_to_be32(RDP_OED_DESC_TAG
);
5722 desc
->oed_info
.hi_alarm
= page_a2
[SSF_VOLTAGE_HIGH_ALARM
];
5723 desc
->oed_info
.lo_alarm
= page_a2
[SSF_VOLTAGE_LOW_ALARM
];
5724 desc
->oed_info
.hi_warning
= page_a2
[SSF_VOLTAGE_HIGH_WARNING
];
5725 desc
->oed_info
.lo_warning
= page_a2
[SSF_VOLTAGE_LOW_WARNING
];
5727 if (phba
->sfp_alarm
& LPFC_TRANSGRESSION_HIGH_VOLTAGE
)
5728 flags
|= RDP_OET_HIGH_ALARM
;
5729 if (phba
->sfp_alarm
& LPFC_TRANSGRESSION_LOW_VOLTAGE
)
5730 flags
|= RDP_OET_LOW_ALARM
;
5731 if (phba
->sfp_warning
& LPFC_TRANSGRESSION_HIGH_VOLTAGE
)
5732 flags
|= RDP_OET_HIGH_WARNING
;
5733 if (phba
->sfp_warning
& LPFC_TRANSGRESSION_LOW_VOLTAGE
)
5734 flags
|= RDP_OET_LOW_WARNING
;
5736 flags
|= ((0xf & RDP_OED_VOLTAGE
) << RDP_OED_TYPE_SHIFT
);
5737 desc
->oed_info
.function_flags
= cpu_to_be32(flags
);
5738 desc
->length
= cpu_to_be32(sizeof(desc
->oed_info
));
5739 return sizeof(struct fc_rdp_oed_sfp_desc
);
5743 lpfc_rdp_res_oed_txbias_desc(struct lpfc_hba
*phba
,
5744 struct fc_rdp_oed_sfp_desc
*desc
,
5749 desc
->tag
= cpu_to_be32(RDP_OED_DESC_TAG
);
5751 desc
->oed_info
.hi_alarm
= page_a2
[SSF_BIAS_HIGH_ALARM
];
5752 desc
->oed_info
.lo_alarm
= page_a2
[SSF_BIAS_LOW_ALARM
];
5753 desc
->oed_info
.hi_warning
= page_a2
[SSF_BIAS_HIGH_WARNING
];
5754 desc
->oed_info
.lo_warning
= page_a2
[SSF_BIAS_LOW_WARNING
];
5756 if (phba
->sfp_alarm
& LPFC_TRANSGRESSION_HIGH_TXBIAS
)
5757 flags
|= RDP_OET_HIGH_ALARM
;
5758 if (phba
->sfp_alarm
& LPFC_TRANSGRESSION_LOW_TXBIAS
)
5759 flags
|= RDP_OET_LOW_ALARM
;
5760 if (phba
->sfp_warning
& LPFC_TRANSGRESSION_HIGH_TXBIAS
)
5761 flags
|= RDP_OET_HIGH_WARNING
;
5762 if (phba
->sfp_warning
& LPFC_TRANSGRESSION_LOW_TXBIAS
)
5763 flags
|= RDP_OET_LOW_WARNING
;
5765 flags
|= ((0xf & RDP_OED_TXBIAS
) << RDP_OED_TYPE_SHIFT
);
5766 desc
->oed_info
.function_flags
= cpu_to_be32(flags
);
5767 desc
->length
= cpu_to_be32(sizeof(desc
->oed_info
));
5768 return sizeof(struct fc_rdp_oed_sfp_desc
);
5772 lpfc_rdp_res_oed_txpower_desc(struct lpfc_hba
*phba
,
5773 struct fc_rdp_oed_sfp_desc
*desc
,
5778 desc
->tag
= cpu_to_be32(RDP_OED_DESC_TAG
);
5780 desc
->oed_info
.hi_alarm
= page_a2
[SSF_TXPOWER_HIGH_ALARM
];
5781 desc
->oed_info
.lo_alarm
= page_a2
[SSF_TXPOWER_LOW_ALARM
];
5782 desc
->oed_info
.hi_warning
= page_a2
[SSF_TXPOWER_HIGH_WARNING
];
5783 desc
->oed_info
.lo_warning
= page_a2
[SSF_TXPOWER_LOW_WARNING
];
5785 if (phba
->sfp_alarm
& LPFC_TRANSGRESSION_HIGH_TXPOWER
)
5786 flags
|= RDP_OET_HIGH_ALARM
;
5787 if (phba
->sfp_alarm
& LPFC_TRANSGRESSION_LOW_TXPOWER
)
5788 flags
|= RDP_OET_LOW_ALARM
;
5789 if (phba
->sfp_warning
& LPFC_TRANSGRESSION_HIGH_TXPOWER
)
5790 flags
|= RDP_OET_HIGH_WARNING
;
5791 if (phba
->sfp_warning
& LPFC_TRANSGRESSION_LOW_TXPOWER
)
5792 flags
|= RDP_OET_LOW_WARNING
;
5794 flags
|= ((0xf & RDP_OED_TXPOWER
) << RDP_OED_TYPE_SHIFT
);
5795 desc
->oed_info
.function_flags
= cpu_to_be32(flags
);
5796 desc
->length
= cpu_to_be32(sizeof(desc
->oed_info
));
5797 return sizeof(struct fc_rdp_oed_sfp_desc
);
5802 lpfc_rdp_res_oed_rxpower_desc(struct lpfc_hba
*phba
,
5803 struct fc_rdp_oed_sfp_desc
*desc
,
5808 desc
->tag
= cpu_to_be32(RDP_OED_DESC_TAG
);
5810 desc
->oed_info
.hi_alarm
= page_a2
[SSF_RXPOWER_HIGH_ALARM
];
5811 desc
->oed_info
.lo_alarm
= page_a2
[SSF_RXPOWER_LOW_ALARM
];
5812 desc
->oed_info
.hi_warning
= page_a2
[SSF_RXPOWER_HIGH_WARNING
];
5813 desc
->oed_info
.lo_warning
= page_a2
[SSF_RXPOWER_LOW_WARNING
];
5815 if (phba
->sfp_alarm
& LPFC_TRANSGRESSION_HIGH_RXPOWER
)
5816 flags
|= RDP_OET_HIGH_ALARM
;
5817 if (phba
->sfp_alarm
& LPFC_TRANSGRESSION_LOW_RXPOWER
)
5818 flags
|= RDP_OET_LOW_ALARM
;
5819 if (phba
->sfp_warning
& LPFC_TRANSGRESSION_HIGH_RXPOWER
)
5820 flags
|= RDP_OET_HIGH_WARNING
;
5821 if (phba
->sfp_warning
& LPFC_TRANSGRESSION_LOW_RXPOWER
)
5822 flags
|= RDP_OET_LOW_WARNING
;
5824 flags
|= ((0xf & RDP_OED_RXPOWER
) << RDP_OED_TYPE_SHIFT
);
5825 desc
->oed_info
.function_flags
= cpu_to_be32(flags
);
5826 desc
->length
= cpu_to_be32(sizeof(desc
->oed_info
));
5827 return sizeof(struct fc_rdp_oed_sfp_desc
);
5831 lpfc_rdp_res_opd_desc(struct fc_rdp_opd_sfp_desc
*desc
,
5832 uint8_t *page_a0
, struct lpfc_vport
*vport
)
5834 desc
->tag
= cpu_to_be32(RDP_OPD_DESC_TAG
);
5835 memcpy(desc
->opd_info
.vendor_name
, &page_a0
[SSF_VENDOR_NAME
], 16);
5836 memcpy(desc
->opd_info
.model_number
, &page_a0
[SSF_VENDOR_PN
], 16);
5837 memcpy(desc
->opd_info
.serial_number
, &page_a0
[SSF_VENDOR_SN
], 16);
5838 memcpy(desc
->opd_info
.revision
, &page_a0
[SSF_VENDOR_REV
], 4);
5839 memcpy(desc
->opd_info
.date
, &page_a0
[SSF_DATE_CODE
], 8);
5840 desc
->length
= cpu_to_be32(sizeof(desc
->opd_info
));
5841 return sizeof(struct fc_rdp_opd_sfp_desc
);
5845 lpfc_rdp_res_fec_desc(struct fc_fec_rdp_desc
*desc
, READ_LNK_VAR
*stat
)
5847 if (bf_get(lpfc_read_link_stat_gec2
, stat
) == 0)
5849 desc
->tag
= cpu_to_be32(RDP_FEC_DESC_TAG
);
5851 desc
->info
.CorrectedBlocks
=
5852 cpu_to_be32(stat
->fecCorrBlkCount
);
5853 desc
->info
.UncorrectableBlocks
=
5854 cpu_to_be32(stat
->fecUncorrBlkCount
);
5856 desc
->length
= cpu_to_be32(sizeof(desc
->info
));
5858 return sizeof(struct fc_fec_rdp_desc
);
5862 lpfc_rdp_res_speed(struct fc_rdp_port_speed_desc
*desc
, struct lpfc_hba
*phba
)
5864 uint16_t rdp_cap
= 0;
5867 desc
->tag
= cpu_to_be32(RDP_PORT_SPEED_DESC_TAG
);
5869 switch (phba
->fc_linkspeed
) {
5870 case LPFC_LINK_SPEED_1GHZ
:
5871 rdp_speed
= RDP_PS_1GB
;
5873 case LPFC_LINK_SPEED_2GHZ
:
5874 rdp_speed
= RDP_PS_2GB
;
5876 case LPFC_LINK_SPEED_4GHZ
:
5877 rdp_speed
= RDP_PS_4GB
;
5879 case LPFC_LINK_SPEED_8GHZ
:
5880 rdp_speed
= RDP_PS_8GB
;
5882 case LPFC_LINK_SPEED_10GHZ
:
5883 rdp_speed
= RDP_PS_10GB
;
5885 case LPFC_LINK_SPEED_16GHZ
:
5886 rdp_speed
= RDP_PS_16GB
;
5888 case LPFC_LINK_SPEED_32GHZ
:
5889 rdp_speed
= RDP_PS_32GB
;
5891 case LPFC_LINK_SPEED_64GHZ
:
5892 rdp_speed
= RDP_PS_64GB
;
5895 rdp_speed
= RDP_PS_UNKNOWN
;
5899 desc
->info
.port_speed
.speed
= cpu_to_be16(rdp_speed
);
5901 if (phba
->lmt
& LMT_128Gb
)
5902 rdp_cap
|= RDP_PS_128GB
;
5903 if (phba
->lmt
& LMT_64Gb
)
5904 rdp_cap
|= RDP_PS_64GB
;
5905 if (phba
->lmt
& LMT_32Gb
)
5906 rdp_cap
|= RDP_PS_32GB
;
5907 if (phba
->lmt
& LMT_16Gb
)
5908 rdp_cap
|= RDP_PS_16GB
;
5909 if (phba
->lmt
& LMT_10Gb
)
5910 rdp_cap
|= RDP_PS_10GB
;
5911 if (phba
->lmt
& LMT_8Gb
)
5912 rdp_cap
|= RDP_PS_8GB
;
5913 if (phba
->lmt
& LMT_4Gb
)
5914 rdp_cap
|= RDP_PS_4GB
;
5915 if (phba
->lmt
& LMT_2Gb
)
5916 rdp_cap
|= RDP_PS_2GB
;
5917 if (phba
->lmt
& LMT_1Gb
)
5918 rdp_cap
|= RDP_PS_1GB
;
5921 rdp_cap
= RDP_CAP_UNKNOWN
;
5922 if (phba
->cfg_link_speed
!= LPFC_USER_LINK_SPEED_AUTO
)
5923 rdp_cap
|= RDP_CAP_USER_CONFIGURED
;
5925 desc
->info
.port_speed
.capabilities
= cpu_to_be16(rdp_cap
);
5926 desc
->length
= cpu_to_be32(sizeof(desc
->info
));
5927 return sizeof(struct fc_rdp_port_speed_desc
);
5931 lpfc_rdp_res_diag_port_names(struct fc_rdp_port_name_desc
*desc
,
5932 struct lpfc_vport
*vport
)
5935 desc
->tag
= cpu_to_be32(RDP_PORT_NAMES_DESC_TAG
);
5937 memcpy(desc
->port_names
.wwnn
, &vport
->fc_nodename
,
5938 sizeof(desc
->port_names
.wwnn
));
5940 memcpy(desc
->port_names
.wwpn
, &vport
->fc_portname
,
5941 sizeof(desc
->port_names
.wwpn
));
5943 desc
->length
= cpu_to_be32(sizeof(desc
->port_names
));
5944 return sizeof(struct fc_rdp_port_name_desc
);
5948 lpfc_rdp_res_attach_port_names(struct fc_rdp_port_name_desc
*desc
,
5949 struct lpfc_vport
*vport
, struct lpfc_nodelist
*ndlp
)
5952 desc
->tag
= cpu_to_be32(RDP_PORT_NAMES_DESC_TAG
);
5953 if (vport
->fc_flag
& FC_FABRIC
) {
5954 memcpy(desc
->port_names
.wwnn
, &vport
->fabric_nodename
,
5955 sizeof(desc
->port_names
.wwnn
));
5957 memcpy(desc
->port_names
.wwpn
, &vport
->fabric_portname
,
5958 sizeof(desc
->port_names
.wwpn
));
5959 } else { /* Point to Point */
5960 memcpy(desc
->port_names
.wwnn
, &ndlp
->nlp_nodename
,
5961 sizeof(desc
->port_names
.wwnn
));
5963 memcpy(desc
->port_names
.wwpn
, &ndlp
->nlp_portname
,
5964 sizeof(desc
->port_names
.wwpn
));
5967 desc
->length
= cpu_to_be32(sizeof(desc
->port_names
));
5968 return sizeof(struct fc_rdp_port_name_desc
);
5972 lpfc_els_rdp_cmpl(struct lpfc_hba
*phba
, struct lpfc_rdp_context
*rdp_context
,
5975 struct lpfc_nodelist
*ndlp
= rdp_context
->ndlp
;
5976 struct lpfc_vport
*vport
= ndlp
->vport
;
5977 struct lpfc_iocbq
*elsiocb
;
5978 struct ulp_bde64
*bpl
;
5981 struct ls_rjt
*stat
;
5982 struct fc_rdp_res_frame
*rdp_res
;
5983 uint32_t cmdsize
, len
;
5987 if (status
!= SUCCESS
)
5990 /* This will change once we know the true size of the RDP payload */
5991 cmdsize
= sizeof(struct fc_rdp_res_frame
);
5993 elsiocb
= lpfc_prep_els_iocb(vport
, 0, cmdsize
,
5994 lpfc_max_els_tries
, rdp_context
->ndlp
,
5995 rdp_context
->ndlp
->nlp_DID
, ELS_CMD_ACC
);
5997 goto free_rdp_context
;
5999 icmd
= &elsiocb
->iocb
;
6000 icmd
->ulpContext
= rdp_context
->rx_id
;
6001 icmd
->unsli3
.rcvsli3
.ox_id
= rdp_context
->ox_id
;
6003 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_ELS
,
6004 "2171 Xmit RDP response tag x%x xri x%x, "
6005 "did x%x, nlp_flag x%x, nlp_state x%x, rpi x%x",
6006 elsiocb
->iotag
, elsiocb
->iocb
.ulpContext
,
6007 ndlp
->nlp_DID
, ndlp
->nlp_flag
, ndlp
->nlp_state
,
6009 rdp_res
= (struct fc_rdp_res_frame
*)
6010 (((struct lpfc_dmabuf
*) elsiocb
->context2
)->virt
);
6011 pcmd
= (uint8_t *) (((struct lpfc_dmabuf
*) elsiocb
->context2
)->virt
);
6012 memset(pcmd
, 0, sizeof(struct fc_rdp_res_frame
));
6013 *((uint32_t *) (pcmd
)) = ELS_CMD_ACC
;
6015 /* Update Alarm and Warning */
6016 flag_ptr
= (uint16_t *)(rdp_context
->page_a2
+ SSF_ALARM_FLAGS
);
6017 phba
->sfp_alarm
|= *flag_ptr
;
6018 flag_ptr
= (uint16_t *)(rdp_context
->page_a2
+ SSF_WARNING_FLAGS
);
6019 phba
->sfp_warning
|= *flag_ptr
;
6021 /* For RDP payload */
6023 len
+= lpfc_rdp_res_link_service((struct fc_rdp_link_service_desc
*)
6024 (len
+ pcmd
), ELS_CMD_RDP
);
6026 len
+= lpfc_rdp_res_sfp_desc((struct fc_rdp_sfp_desc
*)(len
+ pcmd
),
6027 rdp_context
->page_a0
, rdp_context
->page_a2
);
6028 len
+= lpfc_rdp_res_speed((struct fc_rdp_port_speed_desc
*)(len
+ pcmd
),
6030 len
+= lpfc_rdp_res_link_error((struct fc_rdp_link_error_status_desc
*)
6031 (len
+ pcmd
), &rdp_context
->link_stat
);
6032 len
+= lpfc_rdp_res_diag_port_names((struct fc_rdp_port_name_desc
*)
6033 (len
+ pcmd
), vport
);
6034 len
+= lpfc_rdp_res_attach_port_names((struct fc_rdp_port_name_desc
*)
6035 (len
+ pcmd
), vport
, ndlp
);
6036 len
+= lpfc_rdp_res_fec_desc((struct fc_fec_rdp_desc
*)(len
+ pcmd
),
6037 &rdp_context
->link_stat
);
6038 len
+= lpfc_rdp_res_bbc_desc((struct fc_rdp_bbc_desc
*)(len
+ pcmd
),
6039 &rdp_context
->link_stat
, vport
);
6040 len
+= lpfc_rdp_res_oed_temp_desc(phba
,
6041 (struct fc_rdp_oed_sfp_desc
*)(len
+ pcmd
),
6042 rdp_context
->page_a2
);
6043 len
+= lpfc_rdp_res_oed_voltage_desc(phba
,
6044 (struct fc_rdp_oed_sfp_desc
*)(len
+ pcmd
),
6045 rdp_context
->page_a2
);
6046 len
+= lpfc_rdp_res_oed_txbias_desc(phba
,
6047 (struct fc_rdp_oed_sfp_desc
*)(len
+ pcmd
),
6048 rdp_context
->page_a2
);
6049 len
+= lpfc_rdp_res_oed_txpower_desc(phba
,
6050 (struct fc_rdp_oed_sfp_desc
*)(len
+ pcmd
),
6051 rdp_context
->page_a2
);
6052 len
+= lpfc_rdp_res_oed_rxpower_desc(phba
,
6053 (struct fc_rdp_oed_sfp_desc
*)(len
+ pcmd
),
6054 rdp_context
->page_a2
);
6055 len
+= lpfc_rdp_res_opd_desc((struct fc_rdp_opd_sfp_desc
*)(len
+ pcmd
),
6056 rdp_context
->page_a0
, vport
);
6058 rdp_res
->length
= cpu_to_be32(len
- 8);
6059 elsiocb
->iocb_cmpl
= lpfc_cmpl_els_rsp
;
6061 /* Now that we know the true size of the payload, update the BPL */
6062 bpl
= (struct ulp_bde64
*)
6063 (((struct lpfc_dmabuf
*)(elsiocb
->context3
))->virt
);
6064 bpl
->tus
.f
.bdeSize
= len
;
6065 bpl
->tus
.f
.bdeFlags
= 0;
6066 bpl
->tus
.w
= le32_to_cpu(bpl
->tus
.w
);
6068 phba
->fc_stat
.elsXmitACC
++;
6069 elsiocb
->context1
= lpfc_nlp_get(ndlp
);
6070 if (!elsiocb
->context1
) {
6071 lpfc_els_free_iocb(phba
, elsiocb
);
6072 goto free_rdp_context
;
6075 rc
= lpfc_sli_issue_iocb(phba
, LPFC_ELS_RING
, elsiocb
, 0);
6076 if (rc
== IOCB_ERROR
) {
6078 lpfc_els_free_iocb(phba
, elsiocb
);
6081 goto free_rdp_context
;
6084 cmdsize
= 2 * sizeof(uint32_t);
6085 elsiocb
= lpfc_prep_els_iocb(vport
, 0, cmdsize
, lpfc_max_els_tries
,
6086 ndlp
, ndlp
->nlp_DID
, ELS_CMD_LS_RJT
);
6088 goto free_rdp_context
;
6090 icmd
= &elsiocb
->iocb
;
6091 icmd
->ulpContext
= rdp_context
->rx_id
;
6092 icmd
->unsli3
.rcvsli3
.ox_id
= rdp_context
->ox_id
;
6093 pcmd
= (uint8_t *) (((struct lpfc_dmabuf
*) elsiocb
->context2
)->virt
);
6095 *((uint32_t *) (pcmd
)) = ELS_CMD_LS_RJT
;
6096 stat
= (struct ls_rjt
*)(pcmd
+ sizeof(uint32_t));
6097 stat
->un
.b
.lsRjtRsnCode
= LSRJT_UNABLE_TPC
;
6099 phba
->fc_stat
.elsXmitLSRJT
++;
6100 elsiocb
->iocb_cmpl
= lpfc_cmpl_els_rsp
;
6101 elsiocb
->context1
= lpfc_nlp_get(ndlp
);
6102 if (!elsiocb
->context1
) {
6103 lpfc_els_free_iocb(phba
, elsiocb
);
6104 goto free_rdp_context
;
6107 rc
= lpfc_sli_issue_iocb(phba
, LPFC_ELS_RING
, elsiocb
, 0);
6108 if (rc
== IOCB_ERROR
) {
6110 lpfc_els_free_iocb(phba
, elsiocb
);
6114 /* This reference put is for the original unsolicited RDP. If the
6115 * iocb prep failed, there is no reference to remove.
6122 lpfc_get_rdp_info(struct lpfc_hba
*phba
, struct lpfc_rdp_context
*rdp_context
)
6124 LPFC_MBOXQ_t
*mbox
= NULL
;
6127 mbox
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
6129 lpfc_printf_log(phba
, KERN_WARNING
, LOG_MBOX
| LOG_ELS
,
6130 "7105 failed to allocate mailbox memory");
6134 if (lpfc_sli4_dump_page_a0(phba
, mbox
))
6135 goto prep_mbox_fail
;
6136 mbox
->vport
= rdp_context
->ndlp
->vport
;
6137 mbox
->mbox_cmpl
= lpfc_mbx_cmpl_rdp_page_a0
;
6138 mbox
->ctx_ndlp
= (struct lpfc_rdp_context
*)rdp_context
;
6139 rc
= lpfc_sli_issue_mbox(phba
, mbox
, MBX_NOWAIT
);
6140 if (rc
== MBX_NOT_FINISHED
)
6141 goto issue_mbox_fail
;
6147 mempool_free(mbox
, phba
->mbox_mem_pool
);
6152 * lpfc_els_rcv_rdp - Process an unsolicited RDP ELS.
6153 * @vport: pointer to a host virtual N_Port data structure.
6154 * @cmdiocb: pointer to lpfc command iocb data structure.
6155 * @ndlp: pointer to a node-list data structure.
6157 * This routine processes an unsolicited RDP(Read Diagnostic Parameters)
6158 * IOCB. First, the payload of the unsolicited RDP is checked.
6159 * Then it will (1) send MBX_DUMP_MEMORY, Embedded DMP_LMSD sub command TYPE-3
6160 * for Page A0, (2) send MBX_DUMP_MEMORY, DMP_LMSD for Page A2,
6161 * (3) send MBX_READ_LNK_STAT to get link stat, (4) Call lpfc_els_rdp_cmpl
6162 * gather all data and send RDP response.
6165 * 0 - Sent the acc response
6166 * 1 - Sent the reject response.
6169 lpfc_els_rcv_rdp(struct lpfc_vport
*vport
, struct lpfc_iocbq
*cmdiocb
,
6170 struct lpfc_nodelist
*ndlp
)
6172 struct lpfc_hba
*phba
= vport
->phba
;
6173 struct lpfc_dmabuf
*pcmd
;
6174 uint8_t rjt_err
, rjt_expl
= LSEXP_NOTHING_MORE
;
6175 struct fc_rdp_req_frame
*rdp_req
;
6176 struct lpfc_rdp_context
*rdp_context
;
6180 if (phba
->sli_rev
< LPFC_SLI_REV4
||
6181 bf_get(lpfc_sli_intf_if_type
, &phba
->sli4_hba
.sli_intf
) <
6182 LPFC_SLI_INTF_IF_TYPE_2
) {
6183 rjt_err
= LSRJT_UNABLE_TPC
;
6184 rjt_expl
= LSEXP_REQ_UNSUPPORTED
;
6188 if (phba
->sli_rev
< LPFC_SLI_REV4
|| (phba
->hba_flag
& HBA_FCOE_MODE
)) {
6189 rjt_err
= LSRJT_UNABLE_TPC
;
6190 rjt_expl
= LSEXP_REQ_UNSUPPORTED
;
6194 pcmd
= (struct lpfc_dmabuf
*) cmdiocb
->context2
;
6195 rdp_req
= (struct fc_rdp_req_frame
*) pcmd
->virt
;
6197 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_ELS
,
6198 "2422 ELS RDP Request "
6199 "dec len %d tag x%x port_id %d len %d\n",
6200 be32_to_cpu(rdp_req
->rdp_des_length
),
6201 be32_to_cpu(rdp_req
->nport_id_desc
.tag
),
6202 be32_to_cpu(rdp_req
->nport_id_desc
.nport_id
),
6203 be32_to_cpu(rdp_req
->nport_id_desc
.length
));
6205 if (sizeof(struct fc_rdp_nport_desc
) !=
6206 be32_to_cpu(rdp_req
->rdp_des_length
))
6208 if (RDP_N_PORT_DESC_TAG
!= be32_to_cpu(rdp_req
->nport_id_desc
.tag
))
6210 if (RDP_NPORT_ID_SIZE
!=
6211 be32_to_cpu(rdp_req
->nport_id_desc
.length
))
6213 rdp_context
= kzalloc(sizeof(struct lpfc_rdp_context
), GFP_KERNEL
);
6215 rjt_err
= LSRJT_UNABLE_TPC
;
6219 cmd
= &cmdiocb
->iocb
;
6220 rdp_context
->ndlp
= lpfc_nlp_get(ndlp
);
6221 if (!rdp_context
->ndlp
) {
6223 rjt_err
= LSRJT_UNABLE_TPC
;
6226 rdp_context
->ox_id
= cmd
->unsli3
.rcvsli3
.ox_id
;
6227 rdp_context
->rx_id
= cmd
->ulpContext
;
6228 rdp_context
->cmpl
= lpfc_els_rdp_cmpl
;
6229 if (lpfc_get_rdp_info(phba
, rdp_context
)) {
6230 lpfc_printf_vlog(ndlp
->vport
, KERN_WARNING
, LOG_ELS
,
6231 "2423 Unable to send mailbox");
6233 rjt_err
= LSRJT_UNABLE_TPC
;
6241 rjt_err
= LSRJT_LOGICAL_ERR
;
6244 memset(&stat
, 0, sizeof(stat
));
6245 stat
.un
.b
.lsRjtRsnCode
= rjt_err
;
6246 stat
.un
.b
.lsRjtRsnCodeExp
= rjt_expl
;
6247 lpfc_els_rsp_reject(vport
, stat
.un
.lsRjtError
, cmdiocb
, ndlp
, NULL
);
6253 lpfc_els_lcb_rsp(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*pmb
)
6258 struct lpfc_iocbq
*elsiocb
;
6259 struct lpfc_nodelist
*ndlp
;
6260 struct ls_rjt
*stat
;
6261 union lpfc_sli4_cfg_shdr
*shdr
;
6262 struct lpfc_lcb_context
*lcb_context
;
6263 struct fc_lcb_res_frame
*lcb_res
;
6264 uint32_t cmdsize
, shdr_status
, shdr_add_status
;
6268 lcb_context
= (struct lpfc_lcb_context
*)pmb
->ctx_ndlp
;
6269 ndlp
= lcb_context
->ndlp
;
6270 pmb
->ctx_ndlp
= NULL
;
6271 pmb
->ctx_buf
= NULL
;
6273 shdr
= (union lpfc_sli4_cfg_shdr
*)
6274 &pmb
->u
.mqe
.un
.beacon_config
.header
.cfg_shdr
;
6275 shdr_status
= bf_get(lpfc_mbox_hdr_status
, &shdr
->response
);
6276 shdr_add_status
= bf_get(lpfc_mbox_hdr_add_status
, &shdr
->response
);
6278 lpfc_printf_log(phba
, KERN_INFO
, LOG_MBOX
,
6279 "0194 SET_BEACON_CONFIG mailbox "
6280 "completed with status x%x add_status x%x,"
6281 " mbx status x%x\n",
6282 shdr_status
, shdr_add_status
, mb
->mbxStatus
);
6284 if ((mb
->mbxStatus
!= MBX_SUCCESS
) || shdr_status
||
6285 (shdr_add_status
== ADD_STATUS_OPERATION_ALREADY_ACTIVE
) ||
6286 (shdr_add_status
== ADD_STATUS_INVALID_REQUEST
)) {
6287 mempool_free(pmb
, phba
->mbox_mem_pool
);
6291 mempool_free(pmb
, phba
->mbox_mem_pool
);
6292 cmdsize
= sizeof(struct fc_lcb_res_frame
);
6293 elsiocb
= lpfc_prep_els_iocb(phba
->pport
, 0, cmdsize
,
6294 lpfc_max_els_tries
, ndlp
,
6295 ndlp
->nlp_DID
, ELS_CMD_ACC
);
6297 /* Decrement the ndlp reference count from previous mbox command */
6301 goto free_lcb_context
;
6303 lcb_res
= (struct fc_lcb_res_frame
*)
6304 (((struct lpfc_dmabuf
*)elsiocb
->context2
)->virt
);
6306 memset(lcb_res
, 0, sizeof(struct fc_lcb_res_frame
));
6307 icmd
= &elsiocb
->iocb
;
6308 icmd
->ulpContext
= lcb_context
->rx_id
;
6309 icmd
->unsli3
.rcvsli3
.ox_id
= lcb_context
->ox_id
;
6311 pcmd
= (uint8_t *)(((struct lpfc_dmabuf
*)elsiocb
->context2
)->virt
);
6312 *((uint32_t *)(pcmd
)) = ELS_CMD_ACC
;
6313 lcb_res
->lcb_sub_command
= lcb_context
->sub_command
;
6314 lcb_res
->lcb_type
= lcb_context
->type
;
6315 lcb_res
->capability
= lcb_context
->capability
;
6316 lcb_res
->lcb_frequency
= lcb_context
->frequency
;
6317 lcb_res
->lcb_duration
= lcb_context
->duration
;
6318 elsiocb
->iocb_cmpl
= lpfc_cmpl_els_rsp
;
6319 phba
->fc_stat
.elsXmitACC
++;
6321 elsiocb
->context1
= lpfc_nlp_get(ndlp
);
6322 if (!elsiocb
->context1
)
6325 rc
= lpfc_sli_issue_iocb(phba
, LPFC_ELS_RING
, elsiocb
, 0);
6331 lpfc_els_free_iocb(phba
, elsiocb
);
6337 cmdsize
= sizeof(struct fc_lcb_res_frame
);
6338 elsiocb
= lpfc_prep_els_iocb(phba
->pport
, 0, cmdsize
,
6339 lpfc_max_els_tries
, ndlp
,
6340 ndlp
->nlp_DID
, ELS_CMD_LS_RJT
);
6343 goto free_lcb_context
;
6345 icmd
= &elsiocb
->iocb
;
6346 icmd
->ulpContext
= lcb_context
->rx_id
;
6347 icmd
->unsli3
.rcvsli3
.ox_id
= lcb_context
->ox_id
;
6348 pcmd
= (uint8_t *)(((struct lpfc_dmabuf
*)elsiocb
->context2
)->virt
);
6350 *((uint32_t *)(pcmd
)) = ELS_CMD_LS_RJT
;
6351 stat
= (struct ls_rjt
*)(pcmd
+ sizeof(uint32_t));
6352 stat
->un
.b
.lsRjtRsnCode
= LSRJT_UNABLE_TPC
;
6354 if (shdr_add_status
== ADD_STATUS_OPERATION_ALREADY_ACTIVE
)
6355 stat
->un
.b
.lsRjtRsnCodeExp
= LSEXP_CMD_IN_PROGRESS
;
6357 elsiocb
->iocb_cmpl
= lpfc_cmpl_els_rsp
;
6358 phba
->fc_stat
.elsXmitLSRJT
++;
6359 elsiocb
->context1
= lpfc_nlp_get(ndlp
);
6360 if (!elsiocb
->context1
) {
6361 lpfc_els_free_iocb(phba
, elsiocb
);
6362 goto free_lcb_context
;
6365 rc
= lpfc_sli_issue_iocb(phba
, LPFC_ELS_RING
, elsiocb
, 0);
6366 if (rc
== IOCB_ERROR
) {
6368 lpfc_els_free_iocb(phba
, elsiocb
);
6375 lpfc_sli4_set_beacon(struct lpfc_vport
*vport
,
6376 struct lpfc_lcb_context
*lcb_context
,
6377 uint32_t beacon_state
)
6379 struct lpfc_hba
*phba
= vport
->phba
;
6380 union lpfc_sli4_cfg_shdr
*cfg_shdr
;
6381 LPFC_MBOXQ_t
*mbox
= NULL
;
6385 mbox
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
6389 cfg_shdr
= &mbox
->u
.mqe
.un
.sli4_config
.header
.cfg_shdr
;
6390 len
= sizeof(struct lpfc_mbx_set_beacon_config
) -
6391 sizeof(struct lpfc_sli4_cfg_mhdr
);
6392 lpfc_sli4_config(phba
, mbox
, LPFC_MBOX_SUBSYSTEM_COMMON
,
6393 LPFC_MBOX_OPCODE_SET_BEACON_CONFIG
, len
,
6394 LPFC_SLI4_MBX_EMBED
);
6395 mbox
->ctx_ndlp
= (void *)lcb_context
;
6396 mbox
->vport
= phba
->pport
;
6397 mbox
->mbox_cmpl
= lpfc_els_lcb_rsp
;
6398 bf_set(lpfc_mbx_set_beacon_port_num
, &mbox
->u
.mqe
.un
.beacon_config
,
6399 phba
->sli4_hba
.physical_port
);
6400 bf_set(lpfc_mbx_set_beacon_state
, &mbox
->u
.mqe
.un
.beacon_config
,
6402 mbox
->u
.mqe
.un
.beacon_config
.word5
= 0; /* Reserved */
6405 * Check bv1s bit before issuing the mailbox
6406 * if bv1s == 1, LCB V1 supported
6407 * else, LCB V0 supported
6410 if (phba
->sli4_hba
.pc_sli4_params
.bv1s
) {
6411 /* COMMON_SET_BEACON_CONFIG_V1 */
6412 cfg_shdr
->request
.word9
= BEACON_VERSION_V1
;
6413 lcb_context
->capability
|= LCB_CAPABILITY_DURATION
;
6414 bf_set(lpfc_mbx_set_beacon_port_type
,
6415 &mbox
->u
.mqe
.un
.beacon_config
, 0);
6416 bf_set(lpfc_mbx_set_beacon_duration_v1
,
6417 &mbox
->u
.mqe
.un
.beacon_config
,
6418 be16_to_cpu(lcb_context
->duration
));
6420 /* COMMON_SET_BEACON_CONFIG_V0 */
6421 if (be16_to_cpu(lcb_context
->duration
) != 0) {
6422 mempool_free(mbox
, phba
->mbox_mem_pool
);
6425 cfg_shdr
->request
.word9
= BEACON_VERSION_V0
;
6426 lcb_context
->capability
&= ~(LCB_CAPABILITY_DURATION
);
6427 bf_set(lpfc_mbx_set_beacon_state
,
6428 &mbox
->u
.mqe
.un
.beacon_config
, beacon_state
);
6429 bf_set(lpfc_mbx_set_beacon_port_type
,
6430 &mbox
->u
.mqe
.un
.beacon_config
, 1);
6431 bf_set(lpfc_mbx_set_beacon_duration
,
6432 &mbox
->u
.mqe
.un
.beacon_config
,
6433 be16_to_cpu(lcb_context
->duration
));
6436 rc
= lpfc_sli_issue_mbox(phba
, mbox
, MBX_NOWAIT
);
6437 if (rc
== MBX_NOT_FINISHED
) {
6438 mempool_free(mbox
, phba
->mbox_mem_pool
);
6447 * lpfc_els_rcv_lcb - Process an unsolicited LCB
6448 * @vport: pointer to a host virtual N_Port data structure.
6449 * @cmdiocb: pointer to lpfc command iocb data structure.
6450 * @ndlp: pointer to a node-list data structure.
6452 * This routine processes an unsolicited LCB(LINK CABLE BEACON) IOCB.
6453 * First, the payload of the unsolicited LCB is checked.
6454 * Then based on Subcommand beacon will either turn on or off.
6457 * 0 - Sent the acc response
6458 * 1 - Sent the reject response.
6461 lpfc_els_rcv_lcb(struct lpfc_vport
*vport
, struct lpfc_iocbq
*cmdiocb
,
6462 struct lpfc_nodelist
*ndlp
)
6464 struct lpfc_hba
*phba
= vport
->phba
;
6465 struct lpfc_dmabuf
*pcmd
;
6467 struct fc_lcb_request_frame
*beacon
;
6468 struct lpfc_lcb_context
*lcb_context
;
6469 u8 state
, rjt_err
= 0;
6472 pcmd
= (struct lpfc_dmabuf
*)cmdiocb
->context2
;
6473 lp
= (uint8_t *)pcmd
->virt
;
6474 beacon
= (struct fc_lcb_request_frame
*)pcmd
->virt
;
6476 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_ELS
,
6477 "0192 ELS LCB Data x%x x%x x%x x%x sub x%x "
6478 "type x%x frequency %x duration x%x\n",
6479 lp
[0], lp
[1], lp
[2],
6480 beacon
->lcb_command
,
6481 beacon
->lcb_sub_command
,
6483 beacon
->lcb_frequency
,
6484 be16_to_cpu(beacon
->lcb_duration
));
6486 if (beacon
->lcb_sub_command
!= LPFC_LCB_ON
&&
6487 beacon
->lcb_sub_command
!= LPFC_LCB_OFF
) {
6488 rjt_err
= LSRJT_CMD_UNSUPPORTED
;
6492 if (phba
->sli_rev
< LPFC_SLI_REV4
||
6493 phba
->hba_flag
& HBA_FCOE_MODE
||
6494 (bf_get(lpfc_sli_intf_if_type
, &phba
->sli4_hba
.sli_intf
) <
6495 LPFC_SLI_INTF_IF_TYPE_2
)) {
6496 rjt_err
= LSRJT_CMD_UNSUPPORTED
;
6500 lcb_context
= kmalloc(sizeof(*lcb_context
), GFP_KERNEL
);
6502 rjt_err
= LSRJT_UNABLE_TPC
;
6506 state
= (beacon
->lcb_sub_command
== LPFC_LCB_ON
) ? 1 : 0;
6507 lcb_context
->sub_command
= beacon
->lcb_sub_command
;
6508 lcb_context
->capability
= 0;
6509 lcb_context
->type
= beacon
->lcb_type
;
6510 lcb_context
->frequency
= beacon
->lcb_frequency
;
6511 lcb_context
->duration
= beacon
->lcb_duration
;
6512 lcb_context
->ox_id
= cmdiocb
->iocb
.unsli3
.rcvsli3
.ox_id
;
6513 lcb_context
->rx_id
= cmdiocb
->iocb
.ulpContext
;
6514 lcb_context
->ndlp
= lpfc_nlp_get(ndlp
);
6515 if (!lcb_context
->ndlp
) {
6516 rjt_err
= LSRJT_UNABLE_TPC
;
6520 if (lpfc_sli4_set_beacon(vport
, lcb_context
, state
)) {
6521 lpfc_printf_vlog(ndlp
->vport
, KERN_ERR
, LOG_TRACE_EVENT
,
6522 "0193 failed to send mail box");
6524 rjt_err
= LSRJT_UNABLE_TPC
;
6532 memset(&stat
, 0, sizeof(stat
));
6533 stat
.un
.b
.lsRjtRsnCode
= rjt_err
;
6534 lpfc_els_rsp_reject(vport
, stat
.un
.lsRjtError
, cmdiocb
, ndlp
, NULL
);
6540 * lpfc_els_flush_rscn - Clean up any rscn activities with a vport
6541 * @vport: pointer to a host virtual N_Port data structure.
6543 * This routine cleans up any Registration State Change Notification
6544 * (RSCN) activity with a @vport. Note that the fc_rscn_flush flag of the
6545 * @vport together with the host_lock is used to prevent multiple thread
6546 * trying to access the RSCN array on a same @vport at the same time.
6549 lpfc_els_flush_rscn(struct lpfc_vport
*vport
)
6551 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
6552 struct lpfc_hba
*phba
= vport
->phba
;
6555 spin_lock_irq(shost
->host_lock
);
6556 if (vport
->fc_rscn_flush
) {
6557 /* Another thread is walking fc_rscn_id_list on this vport */
6558 spin_unlock_irq(shost
->host_lock
);
6561 /* Indicate we are walking lpfc_els_flush_rscn on this vport */
6562 vport
->fc_rscn_flush
= 1;
6563 spin_unlock_irq(shost
->host_lock
);
6565 for (i
= 0; i
< vport
->fc_rscn_id_cnt
; i
++) {
6566 lpfc_in_buf_free(phba
, vport
->fc_rscn_id_list
[i
]);
6567 vport
->fc_rscn_id_list
[i
] = NULL
;
6569 spin_lock_irq(shost
->host_lock
);
6570 vport
->fc_rscn_id_cnt
= 0;
6571 vport
->fc_flag
&= ~(FC_RSCN_MODE
| FC_RSCN_DISCOVERY
);
6572 spin_unlock_irq(shost
->host_lock
);
6573 lpfc_can_disctmo(vport
);
6574 /* Indicate we are done walking this fc_rscn_id_list */
6575 vport
->fc_rscn_flush
= 0;
6579 * lpfc_rscn_payload_check - Check whether there is a pending rscn to a did
6580 * @vport: pointer to a host virtual N_Port data structure.
6581 * @did: remote destination port identifier.
6583 * This routine checks whether there is any pending Registration State
6584 * Configuration Notification (RSCN) to a @did on @vport.
6587 * None zero - The @did matched with a pending rscn
6588 * 0 - not able to match @did with a pending rscn
6591 lpfc_rscn_payload_check(struct lpfc_vport
*vport
, uint32_t did
)
6596 uint32_t payload_len
, i
;
6597 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
6599 ns_did
.un
.word
= did
;
6601 /* Never match fabric nodes for RSCNs */
6602 if ((did
& Fabric_DID_MASK
) == Fabric_DID_MASK
)
6605 /* If we are doing a FULL RSCN rediscovery, match everything */
6606 if (vport
->fc_flag
& FC_RSCN_DISCOVERY
)
6609 spin_lock_irq(shost
->host_lock
);
6610 if (vport
->fc_rscn_flush
) {
6611 /* Another thread is walking fc_rscn_id_list on this vport */
6612 spin_unlock_irq(shost
->host_lock
);
6615 /* Indicate we are walking fc_rscn_id_list on this vport */
6616 vport
->fc_rscn_flush
= 1;
6617 spin_unlock_irq(shost
->host_lock
);
6618 for (i
= 0; i
< vport
->fc_rscn_id_cnt
; i
++) {
6619 lp
= vport
->fc_rscn_id_list
[i
]->virt
;
6620 payload_len
= be32_to_cpu(*lp
++ & ~ELS_CMD_MASK
);
6621 payload_len
-= sizeof(uint32_t); /* take off word 0 */
6622 while (payload_len
) {
6623 rscn_did
.un
.word
= be32_to_cpu(*lp
++);
6624 payload_len
-= sizeof(uint32_t);
6625 switch (rscn_did
.un
.b
.resv
& RSCN_ADDRESS_FORMAT_MASK
) {
6626 case RSCN_ADDRESS_FORMAT_PORT
:
6627 if ((ns_did
.un
.b
.domain
== rscn_did
.un
.b
.domain
)
6628 && (ns_did
.un
.b
.area
== rscn_did
.un
.b
.area
)
6629 && (ns_did
.un
.b
.id
== rscn_did
.un
.b
.id
))
6630 goto return_did_out
;
6632 case RSCN_ADDRESS_FORMAT_AREA
:
6633 if ((ns_did
.un
.b
.domain
== rscn_did
.un
.b
.domain
)
6634 && (ns_did
.un
.b
.area
== rscn_did
.un
.b
.area
))
6635 goto return_did_out
;
6637 case RSCN_ADDRESS_FORMAT_DOMAIN
:
6638 if (ns_did
.un
.b
.domain
== rscn_did
.un
.b
.domain
)
6639 goto return_did_out
;
6641 case RSCN_ADDRESS_FORMAT_FABRIC
:
6642 goto return_did_out
;
6646 /* Indicate we are done with walking fc_rscn_id_list on this vport */
6647 vport
->fc_rscn_flush
= 0;
6650 /* Indicate we are done with walking fc_rscn_id_list on this vport */
6651 vport
->fc_rscn_flush
= 0;
6656 * lpfc_rscn_recovery_check - Send recovery event to vport nodes matching rscn
6657 * @vport: pointer to a host virtual N_Port data structure.
6659 * This routine sends recovery (NLP_EVT_DEVICE_RECOVERY) event to the
6660 * state machine for a @vport's nodes that are with pending RSCN (Registration
6661 * State Change Notification).
6664 * 0 - Successful (currently alway return 0)
6667 lpfc_rscn_recovery_check(struct lpfc_vport
*vport
)
6669 struct lpfc_nodelist
*ndlp
= NULL
;
6671 /* Move all affected nodes by pending RSCNs to NPR state. */
6672 list_for_each_entry(ndlp
, &vport
->fc_nodes
, nlp_listp
) {
6673 if ((ndlp
->nlp_state
== NLP_STE_UNUSED_NODE
) ||
6674 !lpfc_rscn_payload_check(vport
, ndlp
->nlp_DID
))
6677 /* NVME Target mode does not do RSCN Recovery. */
6678 if (vport
->phba
->nvmet_support
)
6681 /* If we are in the process of doing discovery on this
6682 * NPort, let it continue on its own.
6684 switch (ndlp
->nlp_state
) {
6685 case NLP_STE_PLOGI_ISSUE
:
6686 case NLP_STE_ADISC_ISSUE
:
6687 case NLP_STE_REG_LOGIN_ISSUE
:
6688 case NLP_STE_PRLI_ISSUE
:
6689 case NLP_STE_LOGO_ISSUE
:
6693 /* Check to see if we need to NVME rescan this target
6696 if (ndlp
->nlp_fc4_type
& NLP_FC4_NVME
&&
6697 ndlp
->nlp_type
& (NLP_NVME_TARGET
| NLP_NVME_DISCOVERY
))
6698 lpfc_nvme_rescan_port(vport
, ndlp
);
6700 lpfc_disc_state_machine(vport
, ndlp
, NULL
,
6701 NLP_EVT_DEVICE_RECOVERY
);
6702 lpfc_cancel_retry_delay_tmo(vport
, ndlp
);
6708 * lpfc_send_rscn_event - Send an RSCN event to management application
6709 * @vport: pointer to a host virtual N_Port data structure.
6710 * @cmdiocb: pointer to lpfc command iocb data structure.
6712 * lpfc_send_rscn_event sends an RSCN netlink event to management
6716 lpfc_send_rscn_event(struct lpfc_vport
*vport
,
6717 struct lpfc_iocbq
*cmdiocb
)
6719 struct lpfc_dmabuf
*pcmd
;
6720 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
6721 uint32_t *payload_ptr
;
6722 uint32_t payload_len
;
6723 struct lpfc_rscn_event_header
*rscn_event_data
;
6725 pcmd
= (struct lpfc_dmabuf
*) cmdiocb
->context2
;
6726 payload_ptr
= (uint32_t *) pcmd
->virt
;
6727 payload_len
= be32_to_cpu(*payload_ptr
& ~ELS_CMD_MASK
);
6729 rscn_event_data
= kmalloc(sizeof(struct lpfc_rscn_event_header
) +
6730 payload_len
, GFP_KERNEL
);
6731 if (!rscn_event_data
) {
6732 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_TRACE_EVENT
,
6733 "0147 Failed to allocate memory for RSCN event\n");
6736 rscn_event_data
->event_type
= FC_REG_RSCN_EVENT
;
6737 rscn_event_data
->payload_length
= payload_len
;
6738 memcpy(rscn_event_data
->rscn_payload
, payload_ptr
,
6741 fc_host_post_vendor_event(shost
,
6742 fc_get_event_number(),
6743 sizeof(struct lpfc_rscn_event_header
) + payload_len
,
6744 (char *)rscn_event_data
,
6747 kfree(rscn_event_data
);
6751 * lpfc_els_rcv_rscn - Process an unsolicited rscn iocb
6752 * @vport: pointer to a host virtual N_Port data structure.
6753 * @cmdiocb: pointer to lpfc command iocb data structure.
6754 * @ndlp: pointer to a node-list data structure.
6756 * This routine processes an unsolicited RSCN (Registration State Change
6757 * Notification) IOCB. First, the payload of the unsolicited RSCN is walked
6758 * to invoke fc_host_post_event() routine to the FC transport layer. If the
6759 * discover state machine is about to begin discovery, it just accepts the
6760 * RSCN and the discovery process will satisfy the RSCN. If this RSCN only
6761 * contains N_Port IDs for other vports on this HBA, it just accepts the
6762 * RSCN and ignore processing it. If the state machine is in the recovery
6763 * state, the fc_rscn_id_list of this @vport is walked and the
6764 * lpfc_rscn_recovery_check() routine is invoked to send recovery event for
6765 * all nodes that match RSCN payload. Otherwise, the lpfc_els_handle_rscn()
6766 * routine is invoked to handle the RSCN event.
6769 * 0 - Just sent the acc response
6770 * 1 - Sent the acc response and waited for name server completion
6773 lpfc_els_rcv_rscn(struct lpfc_vport
*vport
, struct lpfc_iocbq
*cmdiocb
,
6774 struct lpfc_nodelist
*ndlp
)
6776 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
6777 struct lpfc_hba
*phba
= vport
->phba
;
6778 struct lpfc_dmabuf
*pcmd
;
6779 uint32_t *lp
, *datap
;
6780 uint32_t payload_len
, length
, nportid
, *cmd
;
6782 int rscn_id
= 0, hba_id
= 0;
6785 pcmd
= (struct lpfc_dmabuf
*) cmdiocb
->context2
;
6786 lp
= (uint32_t *) pcmd
->virt
;
6788 payload_len
= be32_to_cpu(*lp
++ & ~ELS_CMD_MASK
);
6789 payload_len
-= sizeof(uint32_t); /* take off word 0 */
6791 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_DISCOVERY
,
6792 "0214 RSCN received Data: x%x x%x x%x x%x\n",
6793 vport
->fc_flag
, payload_len
, *lp
,
6794 vport
->fc_rscn_id_cnt
);
6796 /* Send an RSCN event to the management application */
6797 lpfc_send_rscn_event(vport
, cmdiocb
);
6799 for (i
= 0; i
< payload_len
/sizeof(uint32_t); i
++)
6800 fc_host_post_event(shost
, fc_get_event_number(),
6801 FCH_EVT_RSCN
, lp
[i
]);
6803 /* Check if RSCN is coming from a direct-connected remote NPort */
6804 if (vport
->fc_flag
& FC_PT2PT
) {
6805 /* If so, just ACC it, no other action needed for now */
6806 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_ELS
,
6807 "2024 pt2pt RSCN %08x Data: x%x x%x\n",
6808 *lp
, vport
->fc_flag
, payload_len
);
6809 lpfc_els_rsp_acc(vport
, ELS_CMD_ACC
, cmdiocb
, ndlp
, NULL
);
6811 /* Check to see if we need to NVME rescan this target
6814 if (ndlp
->nlp_fc4_type
& NLP_FC4_NVME
&&
6815 ndlp
->nlp_type
& (NLP_NVME_TARGET
| NLP_NVME_DISCOVERY
))
6816 lpfc_nvme_rescan_port(vport
, ndlp
);
6820 /* If we are about to begin discovery, just ACC the RSCN.
6821 * Discovery processing will satisfy it.
6823 if (vport
->port_state
<= LPFC_NS_QRY
) {
6824 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_UNSOL
,
6825 "RCV RSCN ignore: did:x%x/ste:x%x flg:x%x",
6826 ndlp
->nlp_DID
, vport
->port_state
, ndlp
->nlp_flag
);
6828 lpfc_els_rsp_acc(vport
, ELS_CMD_ACC
, cmdiocb
, ndlp
, NULL
);
6832 /* If this RSCN just contains NPortIDs for other vports on this HBA,
6833 * just ACC and ignore it.
6835 if ((phba
->sli3_options
& LPFC_SLI3_NPIV_ENABLED
) &&
6836 !(vport
->cfg_peer_port_login
)) {
6841 nportid
= ((be32_to_cpu(nportid
)) & Mask_DID
);
6842 i
-= sizeof(uint32_t);
6844 if (lpfc_find_vport_by_did(phba
, nportid
))
6847 if (rscn_id
== hba_id
) {
6848 /* ALL NPortIDs in RSCN are on HBA */
6849 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_DISCOVERY
,
6851 "Data: x%x x%x x%x x%x\n",
6852 vport
->fc_flag
, payload_len
,
6853 *lp
, vport
->fc_rscn_id_cnt
);
6854 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_UNSOL
,
6855 "RCV RSCN vport: did:x%x/ste:x%x flg:x%x",
6856 ndlp
->nlp_DID
, vport
->port_state
,
6859 lpfc_els_rsp_acc(vport
, ELS_CMD_ACC
, cmdiocb
,
6865 spin_lock_irq(shost
->host_lock
);
6866 if (vport
->fc_rscn_flush
) {
6867 /* Another thread is walking fc_rscn_id_list on this vport */
6868 vport
->fc_flag
|= FC_RSCN_DISCOVERY
;
6869 spin_unlock_irq(shost
->host_lock
);
6871 lpfc_els_rsp_acc(vport
, ELS_CMD_ACC
, cmdiocb
, ndlp
, NULL
);
6874 /* Indicate we are walking fc_rscn_id_list on this vport */
6875 vport
->fc_rscn_flush
= 1;
6876 spin_unlock_irq(shost
->host_lock
);
6877 /* Get the array count after successfully have the token */
6878 rscn_cnt
= vport
->fc_rscn_id_cnt
;
6879 /* If we are already processing an RSCN, save the received
6880 * RSCN payload buffer, cmdiocb->context2 to process later.
6882 if (vport
->fc_flag
& (FC_RSCN_MODE
| FC_NDISC_ACTIVE
)) {
6883 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_UNSOL
,
6884 "RCV RSCN defer: did:x%x/ste:x%x flg:x%x",
6885 ndlp
->nlp_DID
, vport
->port_state
, ndlp
->nlp_flag
);
6887 spin_lock_irq(shost
->host_lock
);
6888 vport
->fc_flag
|= FC_RSCN_DEFERRED
;
6890 /* Restart disctmo if its already running */
6891 if (vport
->fc_flag
& FC_DISC_TMO
) {
6892 tmo
= ((phba
->fc_ratov
* 3) + 3);
6893 mod_timer(&vport
->fc_disctmo
,
6894 jiffies
+ msecs_to_jiffies(1000 * tmo
));
6896 if ((rscn_cnt
< FC_MAX_HOLD_RSCN
) &&
6897 !(vport
->fc_flag
& FC_RSCN_DISCOVERY
)) {
6898 vport
->fc_flag
|= FC_RSCN_MODE
;
6899 spin_unlock_irq(shost
->host_lock
);
6901 cmd
= vport
->fc_rscn_id_list
[rscn_cnt
-1]->virt
;
6902 length
= be32_to_cpu(*cmd
& ~ELS_CMD_MASK
);
6905 (payload_len
+ length
<= LPFC_BPL_SIZE
)) {
6906 *cmd
&= ELS_CMD_MASK
;
6907 *cmd
|= cpu_to_be32(payload_len
+ length
);
6908 memcpy(((uint8_t *)cmd
) + length
, lp
,
6911 vport
->fc_rscn_id_list
[rscn_cnt
] = pcmd
;
6912 vport
->fc_rscn_id_cnt
++;
6913 /* If we zero, cmdiocb->context2, the calling
6914 * routine will not try to free it.
6916 cmdiocb
->context2
= NULL
;
6919 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_DISCOVERY
,
6920 "0235 Deferred RSCN "
6921 "Data: x%x x%x x%x\n",
6922 vport
->fc_rscn_id_cnt
, vport
->fc_flag
,
6925 vport
->fc_flag
|= FC_RSCN_DISCOVERY
;
6926 spin_unlock_irq(shost
->host_lock
);
6927 /* ReDiscovery RSCN */
6928 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_DISCOVERY
,
6929 "0234 ReDiscovery RSCN "
6930 "Data: x%x x%x x%x\n",
6931 vport
->fc_rscn_id_cnt
, vport
->fc_flag
,
6934 /* Indicate we are done walking fc_rscn_id_list on this vport */
6935 vport
->fc_rscn_flush
= 0;
6937 lpfc_els_rsp_acc(vport
, ELS_CMD_ACC
, cmdiocb
, ndlp
, NULL
);
6938 /* send RECOVERY event for ALL nodes that match RSCN payload */
6939 lpfc_rscn_recovery_check(vport
);
6942 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_UNSOL
,
6943 "RCV RSCN: did:x%x/ste:x%x flg:x%x",
6944 ndlp
->nlp_DID
, vport
->port_state
, ndlp
->nlp_flag
);
6946 spin_lock_irq(shost
->host_lock
);
6947 vport
->fc_flag
|= FC_RSCN_MODE
;
6948 spin_unlock_irq(shost
->host_lock
);
6949 vport
->fc_rscn_id_list
[vport
->fc_rscn_id_cnt
++] = pcmd
;
6950 /* Indicate we are done walking fc_rscn_id_list on this vport */
6951 vport
->fc_rscn_flush
= 0;
6953 * If we zero, cmdiocb->context2, the calling routine will
6954 * not try to free it.
6956 cmdiocb
->context2
= NULL
;
6957 lpfc_set_disctmo(vport
);
6959 lpfc_els_rsp_acc(vport
, ELS_CMD_ACC
, cmdiocb
, ndlp
, NULL
);
6960 /* send RECOVERY event for ALL nodes that match RSCN payload */
6961 lpfc_rscn_recovery_check(vport
);
6962 return lpfc_els_handle_rscn(vport
);
6966 * lpfc_els_handle_rscn - Handle rscn for a vport
6967 * @vport: pointer to a host virtual N_Port data structure.
6969 * This routine handles the Registration State Configuration Notification
6970 * (RSCN) for a @vport. If login to NameServer does not exist, a new ndlp shall
6971 * be created and a Port Login (PLOGI) to the NameServer is issued. Otherwise,
6972 * if the ndlp to NameServer exists, a Common Transport (CT) command to the
6973 * NameServer shall be issued. If CT command to the NameServer fails to be
6974 * issued, the lpfc_els_flush_rscn() routine shall be invoked to clean up any
6975 * RSCN activities with the @vport.
6978 * 0 - Cleaned up rscn on the @vport
6979 * 1 - Wait for plogi to name server before proceed
6982 lpfc_els_handle_rscn(struct lpfc_vport
*vport
)
6984 struct lpfc_nodelist
*ndlp
;
6985 struct lpfc_hba
*phba
= vport
->phba
;
6987 /* Ignore RSCN if the port is being torn down. */
6988 if (vport
->load_flag
& FC_UNLOADING
) {
6989 lpfc_els_flush_rscn(vport
);
6993 /* Start timer for RSCN processing */
6994 lpfc_set_disctmo(vport
);
6996 /* RSCN processed */
6997 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_DISCOVERY
,
6998 "0215 RSCN processed Data: x%x x%x x%x x%x x%x x%x\n",
6999 vport
->fc_flag
, 0, vport
->fc_rscn_id_cnt
,
7000 vport
->port_state
, vport
->num_disc_nodes
,
7003 /* To process RSCN, first compare RSCN data with NameServer */
7004 vport
->fc_ns_retry
= 0;
7005 vport
->num_disc_nodes
= 0;
7007 ndlp
= lpfc_findnode_did(vport
, NameServer_DID
);
7008 if (ndlp
&& ndlp
->nlp_state
== NLP_STE_UNMAPPED_NODE
) {
7009 /* Good ndlp, issue CT Request to NameServer. Need to
7010 * know how many gidfts were issued. If none, then just
7011 * flush the RSCN. Otherwise, the outstanding requests
7014 if (phba
->cfg_ns_query
== LPFC_NS_QUERY_GID_FT
) {
7015 if (lpfc_issue_gidft(vport
) > 0)
7017 } else if (phba
->cfg_ns_query
== LPFC_NS_QUERY_GID_PT
) {
7018 if (lpfc_issue_gidpt(vport
) > 0)
7024 /* Nameserver login in question. Revalidate. */
7026 ndlp
->nlp_prev_state
= NLP_STE_UNUSED_NODE
;
7027 lpfc_nlp_set_state(vport
, ndlp
, NLP_STE_PLOGI_ISSUE
);
7029 ndlp
= lpfc_nlp_init(vport
, NameServer_DID
);
7031 lpfc_els_flush_rscn(vport
);
7034 ndlp
->nlp_prev_state
= ndlp
->nlp_state
;
7035 lpfc_nlp_set_state(vport
, ndlp
, NLP_STE_PLOGI_ISSUE
);
7037 ndlp
->nlp_type
|= NLP_FABRIC
;
7038 lpfc_issue_els_plogi(vport
, NameServer_DID
, 0);
7039 /* Wait for NameServer login cmpl before we can
7045 lpfc_els_flush_rscn(vport
);
7050 * lpfc_els_rcv_flogi - Process an unsolicited flogi iocb
7051 * @vport: pointer to a host virtual N_Port data structure.
7052 * @cmdiocb: pointer to lpfc command iocb data structure.
7053 * @ndlp: pointer to a node-list data structure.
7055 * This routine processes Fabric Login (FLOGI) IOCB received as an ELS
7056 * unsolicited event. An unsolicited FLOGI can be received in a point-to-
7057 * point topology. As an unsolicited FLOGI should not be received in a loop
7058 * mode, any unsolicited FLOGI received in loop mode shall be ignored. The
7059 * lpfc_check_sparm() routine is invoked to check the parameters in the
7060 * unsolicited FLOGI. If parameters validation failed, the routine
7061 * lpfc_els_rsp_reject() shall be called with reject reason code set to
7062 * LSEXP_SPARM_OPTIONS to reject the FLOGI. Otherwise, the Port WWN in the
7063 * FLOGI shall be compared with the Port WWN of the @vport to determine who
7064 * will initiate PLOGI. The higher lexicographical value party shall has
7065 * higher priority (as the winning port) and will initiate PLOGI and
7066 * communicate Port_IDs (Addresses) for both nodes in PLOGI. The result
7067 * of this will be marked in the @vport fc_flag field with FC_PT2PT_PLOGI
7068 * and then the lpfc_els_rsp_acc() routine is invoked to accept the FLOGI.
7071 * 0 - Successfully processed the unsolicited flogi
7072 * 1 - Failed to process the unsolicited flogi
7075 lpfc_els_rcv_flogi(struct lpfc_vport
*vport
, struct lpfc_iocbq
*cmdiocb
,
7076 struct lpfc_nodelist
*ndlp
)
7078 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
7079 struct lpfc_hba
*phba
= vport
->phba
;
7080 struct lpfc_dmabuf
*pcmd
= (struct lpfc_dmabuf
*) cmdiocb
->context2
;
7081 uint32_t *lp
= (uint32_t *) pcmd
->virt
;
7082 IOCB_t
*icmd
= &cmdiocb
->iocb
;
7083 struct serv_parm
*sp
;
7087 uint32_t fc_flag
= 0;
7088 uint32_t port_state
= 0;
7091 sp
= (struct serv_parm
*) lp
;
7093 /* FLOGI received */
7095 lpfc_set_disctmo(vport
);
7097 if (phba
->fc_topology
== LPFC_TOPOLOGY_LOOP
) {
7098 /* We should never receive a FLOGI in loop mode, ignore it */
7099 did
= icmd
->un
.elsreq64
.remoteID
;
7101 /* An FLOGI ELS command <elsCmd> was received from DID <did> in
7103 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_TRACE_EVENT
,
7104 "0113 An FLOGI ELS command x%x was "
7105 "received from DID x%x in Loop Mode\n",
7110 (void) lpfc_check_sparm(vport
, ndlp
, sp
, CLASS3
, 1);
7113 * If our portname is greater than the remote portname,
7114 * then we initiate Nport login.
7117 rc
= memcmp(&vport
->fc_portname
, &sp
->portName
,
7118 sizeof(struct lpfc_name
));
7121 if (phba
->sli_rev
< LPFC_SLI_REV4
) {
7122 mbox
= mempool_alloc(phba
->mbox_mem_pool
,
7126 lpfc_linkdown(phba
);
7127 lpfc_init_link(phba
, mbox
,
7129 phba
->cfg_link_speed
);
7130 mbox
->u
.mb
.un
.varInitLnk
.lipsr_AL_PA
= 0;
7131 mbox
->mbox_cmpl
= lpfc_sli_def_mbox_cmpl
;
7132 mbox
->vport
= vport
;
7133 rc
= lpfc_sli_issue_mbox(phba
, mbox
,
7135 lpfc_set_loopback_flag(phba
);
7136 if (rc
== MBX_NOT_FINISHED
)
7137 mempool_free(mbox
, phba
->mbox_mem_pool
);
7141 /* abort the flogi coming back to ourselves
7142 * due to external loopback on the port.
7144 lpfc_els_abort_flogi(phba
);
7147 } else if (rc
> 0) { /* greater than */
7148 spin_lock_irq(shost
->host_lock
);
7149 vport
->fc_flag
|= FC_PT2PT_PLOGI
;
7150 spin_unlock_irq(shost
->host_lock
);
7152 /* If we have the high WWPN we can assign our own
7153 * myDID; otherwise, we have to WAIT for a PLOGI
7154 * from the remote NPort to find out what it
7157 vport
->fc_myDID
= PT2PT_LocalID
;
7159 vport
->fc_myDID
= PT2PT_RemoteID
;
7163 * The vport state should go to LPFC_FLOGI only
7164 * AFTER we issue a FLOGI, not receive one.
7166 spin_lock_irq(shost
->host_lock
);
7167 fc_flag
= vport
->fc_flag
;
7168 port_state
= vport
->port_state
;
7169 vport
->fc_flag
|= FC_PT2PT
;
7170 vport
->fc_flag
&= ~(FC_FABRIC
| FC_PUBLIC_LOOP
);
7172 /* Acking an unsol FLOGI. Count 1 for link bounce
7175 vport
->rcv_flogi_cnt
++;
7176 spin_unlock_irq(shost
->host_lock
);
7177 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_ELS
,
7178 "3311 Rcv Flogi PS x%x new PS x%x "
7179 "fc_flag x%x new fc_flag x%x\n",
7180 port_state
, vport
->port_state
,
7181 fc_flag
, vport
->fc_flag
);
7184 * We temporarily set fc_myDID to make it look like we are
7185 * a Fabric. This is done just so we end up with the right
7186 * did / sid on the FLOGI ACC rsp.
7188 did
= vport
->fc_myDID
;
7189 vport
->fc_myDID
= Fabric_DID
;
7191 memcpy(&phba
->fc_fabparam
, sp
, sizeof(struct serv_parm
));
7193 /* Defer ACC response until AFTER we issue a FLOGI */
7194 if (!(phba
->hba_flag
& HBA_FLOGI_ISSUED
)) {
7195 phba
->defer_flogi_acc_rx_id
= cmdiocb
->iocb
.ulpContext
;
7196 phba
->defer_flogi_acc_ox_id
=
7197 cmdiocb
->iocb
.unsli3
.rcvsli3
.ox_id
;
7199 vport
->fc_myDID
= did
;
7201 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_ELS
,
7202 "3344 Deferring FLOGI ACC: rx_id: x%x,"
7203 " ox_id: x%x, hba_flag x%x\n",
7204 phba
->defer_flogi_acc_rx_id
,
7205 phba
->defer_flogi_acc_ox_id
, phba
->hba_flag
);
7207 phba
->defer_flogi_acc_flag
= true;
7213 lpfc_els_rsp_acc(vport
, ELS_CMD_FLOGI
, cmdiocb
, ndlp
, NULL
);
7215 /* Now lets put fc_myDID back to what its supposed to be */
7216 vport
->fc_myDID
= did
;
7222 * lpfc_els_rcv_rnid - Process an unsolicited rnid iocb
7223 * @vport: pointer to a host virtual N_Port data structure.
7224 * @cmdiocb: pointer to lpfc command iocb data structure.
7225 * @ndlp: pointer to a node-list data structure.
7227 * This routine processes Request Node Identification Data (RNID) IOCB
7228 * received as an ELS unsolicited event. Only when the RNID specified format
7229 * 0x0 or 0xDF (Topology Discovery Specific Node Identification Data)
7230 * present, this routine will invoke the lpfc_els_rsp_rnid_acc() routine to
7231 * Accept (ACC) the RNID ELS command. All the other RNID formats are
7232 * rejected by invoking the lpfc_els_rsp_reject() routine.
7235 * 0 - Successfully processed rnid iocb (currently always return 0)
7238 lpfc_els_rcv_rnid(struct lpfc_vport
*vport
, struct lpfc_iocbq
*cmdiocb
,
7239 struct lpfc_nodelist
*ndlp
)
7241 struct lpfc_dmabuf
*pcmd
;
7246 pcmd
= (struct lpfc_dmabuf
*) cmdiocb
->context2
;
7247 lp
= (uint32_t *) pcmd
->virt
;
7254 switch (rn
->Format
) {
7256 case RNID_TOPOLOGY_DISC
:
7258 lpfc_els_rsp_rnid_acc(vport
, rn
->Format
, cmdiocb
, ndlp
);
7261 /* Reject this request because format not supported */
7262 stat
.un
.b
.lsRjtRsvd0
= 0;
7263 stat
.un
.b
.lsRjtRsnCode
= LSRJT_UNABLE_TPC
;
7264 stat
.un
.b
.lsRjtRsnCodeExp
= LSEXP_CANT_GIVE_DATA
;
7265 stat
.un
.b
.vendorUnique
= 0;
7266 lpfc_els_rsp_reject(vport
, stat
.un
.lsRjtError
, cmdiocb
, ndlp
,
7273 * lpfc_els_rcv_echo - Process an unsolicited echo iocb
7274 * @vport: pointer to a host virtual N_Port data structure.
7275 * @cmdiocb: pointer to lpfc command iocb data structure.
7276 * @ndlp: pointer to a node-list data structure.
7279 * 0 - Successfully processed echo iocb (currently always return 0)
7282 lpfc_els_rcv_echo(struct lpfc_vport
*vport
, struct lpfc_iocbq
*cmdiocb
,
7283 struct lpfc_nodelist
*ndlp
)
7287 pcmd
= (uint8_t *) (((struct lpfc_dmabuf
*) cmdiocb
->context2
)->virt
);
7289 /* skip over first word of echo command to find echo data */
7290 pcmd
+= sizeof(uint32_t);
7292 lpfc_els_rsp_echo_acc(vport
, pcmd
, cmdiocb
, ndlp
);
7297 * lpfc_els_rcv_lirr - Process an unsolicited lirr iocb
7298 * @vport: pointer to a host virtual N_Port data structure.
7299 * @cmdiocb: pointer to lpfc command iocb data structure.
7300 * @ndlp: pointer to a node-list data structure.
7302 * This routine processes a Link Incident Report Registration(LIRR) IOCB
7303 * received as an ELS unsolicited event. Currently, this function just invokes
7304 * the lpfc_els_rsp_reject() routine to reject the LIRR IOCB unconditionally.
7307 * 0 - Successfully processed lirr iocb (currently always return 0)
7310 lpfc_els_rcv_lirr(struct lpfc_vport
*vport
, struct lpfc_iocbq
*cmdiocb
,
7311 struct lpfc_nodelist
*ndlp
)
7315 /* For now, unconditionally reject this command */
7316 stat
.un
.b
.lsRjtRsvd0
= 0;
7317 stat
.un
.b
.lsRjtRsnCode
= LSRJT_UNABLE_TPC
;
7318 stat
.un
.b
.lsRjtRsnCodeExp
= LSEXP_CANT_GIVE_DATA
;
7319 stat
.un
.b
.vendorUnique
= 0;
7320 lpfc_els_rsp_reject(vport
, stat
.un
.lsRjtError
, cmdiocb
, ndlp
, NULL
);
7325 * lpfc_els_rcv_rrq - Process an unsolicited rrq iocb
7326 * @vport: pointer to a host virtual N_Port data structure.
7327 * @cmdiocb: pointer to lpfc command iocb data structure.
7328 * @ndlp: pointer to a node-list data structure.
7330 * This routine processes a Reinstate Recovery Qualifier (RRQ) IOCB
7331 * received as an ELS unsolicited event. A request to RRQ shall only
7332 * be accepted if the Originator Nx_Port N_Port_ID or the Responder
7333 * Nx_Port N_Port_ID of the target Exchange is the same as the
7334 * N_Port_ID of the Nx_Port that makes the request. If the RRQ is
7335 * not accepted, an LS_RJT with reason code "Unable to perform
7336 * command request" and reason code explanation "Invalid Originator
7337 * S_ID" shall be returned. For now, we just unconditionally accept
7338 * RRQ from the target.
7341 lpfc_els_rcv_rrq(struct lpfc_vport
*vport
, struct lpfc_iocbq
*cmdiocb
,
7342 struct lpfc_nodelist
*ndlp
)
7344 lpfc_els_rsp_acc(vport
, ELS_CMD_ACC
, cmdiocb
, ndlp
, NULL
);
7345 if (vport
->phba
->sli_rev
== LPFC_SLI_REV4
)
7346 lpfc_els_clear_rrq(vport
, cmdiocb
, ndlp
);
7350 * lpfc_els_rsp_rls_acc - Completion callbk func for MBX_READ_LNK_STAT mbox cmd
7351 * @phba: pointer to lpfc hba data structure.
7352 * @pmb: pointer to the driver internal queue element for mailbox command.
7354 * This routine is the completion callback function for the MBX_READ_LNK_STAT
7355 * mailbox command. This callback function is to actually send the Accept
7356 * (ACC) response to a Read Port Status (RPS) unsolicited IOCB event. It
7357 * collects the link statistics from the completion of the MBX_READ_LNK_STAT
7358 * mailbox command, constructs the RPS response with the link statistics
7359 * collected, and then invokes the lpfc_sli_issue_iocb() routine to send ACC
7360 * response to the RPS.
7362 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
7363 * will be incremented by 1 for holding the ndlp and the reference to ndlp
7364 * will be stored into the context1 field of the IOCB for the completion
7365 * callback function to the RPS Accept Response ELS IOCB command.
7369 lpfc_els_rsp_rls_acc(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*pmb
)
7374 struct RLS_RSP
*rls_rsp
;
7376 struct lpfc_iocbq
*elsiocb
;
7377 struct lpfc_nodelist
*ndlp
;
7384 ndlp
= (struct lpfc_nodelist
*)pmb
->ctx_ndlp
;
7385 rxid
= (uint16_t)((unsigned long)(pmb
->ctx_buf
) & 0xffff);
7386 oxid
= (uint16_t)(((unsigned long)(pmb
->ctx_buf
) >> 16) & 0xffff);
7387 pmb
->ctx_buf
= NULL
;
7388 pmb
->ctx_ndlp
= NULL
;
7390 if (mb
->mbxStatus
) {
7391 mempool_free(pmb
, phba
->mbox_mem_pool
);
7395 cmdsize
= sizeof(struct RLS_RSP
) + sizeof(uint32_t);
7396 elsiocb
= lpfc_prep_els_iocb(phba
->pport
, 0, cmdsize
,
7397 lpfc_max_els_tries
, ndlp
,
7398 ndlp
->nlp_DID
, ELS_CMD_ACC
);
7400 /* Decrement the ndlp reference count from previous mbox command */
7404 mempool_free(pmb
, phba
->mbox_mem_pool
);
7408 icmd
= &elsiocb
->iocb
;
7409 icmd
->ulpContext
= rxid
;
7410 icmd
->unsli3
.rcvsli3
.ox_id
= oxid
;
7412 pcmd
= (uint8_t *) (((struct lpfc_dmabuf
*) elsiocb
->context2
)->virt
);
7413 *((uint32_t *) (pcmd
)) = ELS_CMD_ACC
;
7414 pcmd
+= sizeof(uint32_t); /* Skip past command */
7415 rls_rsp
= (struct RLS_RSP
*)pcmd
;
7417 rls_rsp
->linkFailureCnt
= cpu_to_be32(mb
->un
.varRdLnk
.linkFailureCnt
);
7418 rls_rsp
->lossSyncCnt
= cpu_to_be32(mb
->un
.varRdLnk
.lossSyncCnt
);
7419 rls_rsp
->lossSignalCnt
= cpu_to_be32(mb
->un
.varRdLnk
.lossSignalCnt
);
7420 rls_rsp
->primSeqErrCnt
= cpu_to_be32(mb
->un
.varRdLnk
.primSeqErrCnt
);
7421 rls_rsp
->invalidXmitWord
= cpu_to_be32(mb
->un
.varRdLnk
.invalidXmitWord
);
7422 rls_rsp
->crcCnt
= cpu_to_be32(mb
->un
.varRdLnk
.crcCnt
);
7423 mempool_free(pmb
, phba
->mbox_mem_pool
);
7424 /* Xmit ELS RLS ACC response tag <ulpIoTag> */
7425 lpfc_printf_vlog(ndlp
->vport
, KERN_INFO
, LOG_ELS
,
7426 "2874 Xmit ELS RLS ACC response tag x%x xri x%x, "
7427 "did x%x, nlp_flag x%x, nlp_state x%x, rpi x%x\n",
7428 elsiocb
->iotag
, elsiocb
->iocb
.ulpContext
,
7429 ndlp
->nlp_DID
, ndlp
->nlp_flag
, ndlp
->nlp_state
,
7431 elsiocb
->iocb_cmpl
= lpfc_cmpl_els_rsp
;
7432 phba
->fc_stat
.elsXmitACC
++;
7433 elsiocb
->context1
= lpfc_nlp_get(ndlp
);
7434 if (!elsiocb
->context1
)
7437 rc
= lpfc_sli_issue_iocb(phba
, LPFC_ELS_RING
, elsiocb
, 0);
7438 if (rc
== IOCB_ERROR
)
7445 lpfc_els_free_iocb(phba
, elsiocb
);
7449 * lpfc_els_rcv_rls - Process an unsolicited rls iocb
7450 * @vport: pointer to a host virtual N_Port data structure.
7451 * @cmdiocb: pointer to lpfc command iocb data structure.
7452 * @ndlp: pointer to a node-list data structure.
7454 * This routine processes Read Link Status (RLS) IOCB received as an
7455 * ELS unsolicited event. It first checks the remote port state. If the
7456 * remote port is not in NLP_STE_UNMAPPED_NODE state or NLP_STE_MAPPED_NODE
7457 * state, it invokes the lpfc_els_rsl_reject() routine to send the reject
7458 * response. Otherwise, it issue the MBX_READ_LNK_STAT mailbox command
7459 * for reading the HBA link statistics. It is for the callback function,
7460 * lpfc_els_rsp_rls_acc(), set to the MBX_READ_LNK_STAT mailbox command
7461 * to actually sending out RPL Accept (ACC) response.
7464 * 0 - Successfully processed rls iocb (currently always return 0)
7467 lpfc_els_rcv_rls(struct lpfc_vport
*vport
, struct lpfc_iocbq
*cmdiocb
,
7468 struct lpfc_nodelist
*ndlp
)
7470 struct lpfc_hba
*phba
= vport
->phba
;
7474 if ((ndlp
->nlp_state
!= NLP_STE_UNMAPPED_NODE
) &&
7475 (ndlp
->nlp_state
!= NLP_STE_MAPPED_NODE
))
7476 /* reject the unsolicited RLS request and done with it */
7479 mbox
= mempool_alloc(phba
->mbox_mem_pool
, GFP_ATOMIC
);
7481 lpfc_read_lnk_stat(phba
, mbox
);
7482 mbox
->ctx_buf
= (void *)((unsigned long)
7483 ((cmdiocb
->iocb
.unsli3
.rcvsli3
.ox_id
<< 16) |
7484 cmdiocb
->iocb
.ulpContext
)); /* rx_id */
7485 mbox
->ctx_ndlp
= lpfc_nlp_get(ndlp
);
7486 if (!mbox
->ctx_ndlp
)
7488 mbox
->vport
= vport
;
7489 mbox
->mbox_cmpl
= lpfc_els_rsp_rls_acc
;
7490 if (lpfc_sli_issue_mbox(phba
, mbox
, MBX_NOWAIT
)
7491 != MBX_NOT_FINISHED
)
7492 /* Mbox completion will send ELS Response */
7494 /* Decrement reference count used for the failed mbox
7499 mempool_free(mbox
, phba
->mbox_mem_pool
);
7502 /* issue rejection response */
7503 stat
.un
.b
.lsRjtRsvd0
= 0;
7504 stat
.un
.b
.lsRjtRsnCode
= LSRJT_UNABLE_TPC
;
7505 stat
.un
.b
.lsRjtRsnCodeExp
= LSEXP_CANT_GIVE_DATA
;
7506 stat
.un
.b
.vendorUnique
= 0;
7507 lpfc_els_rsp_reject(vport
, stat
.un
.lsRjtError
, cmdiocb
, ndlp
, NULL
);
7512 * lpfc_els_rcv_rtv - Process an unsolicited rtv iocb
7513 * @vport: pointer to a host virtual N_Port data structure.
7514 * @cmdiocb: pointer to lpfc command iocb data structure.
7515 * @ndlp: pointer to a node-list data structure.
7517 * This routine processes Read Timout Value (RTV) IOCB received as an
7518 * ELS unsolicited event. It first checks the remote port state. If the
7519 * remote port is not in NLP_STE_UNMAPPED_NODE state or NLP_STE_MAPPED_NODE
7520 * state, it invokes the lpfc_els_rsl_reject() routine to send the reject
7521 * response. Otherwise, it sends the Accept(ACC) response to a Read Timeout
7522 * Value (RTV) unsolicited IOCB event.
7524 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
7525 * will be incremented by 1 for holding the ndlp and the reference to ndlp
7526 * will be stored into the context1 field of the IOCB for the completion
7527 * callback function to the RTV Accept Response ELS IOCB command.
7530 * 0 - Successfully processed rtv iocb (currently always return 0)
7533 lpfc_els_rcv_rtv(struct lpfc_vport
*vport
, struct lpfc_iocbq
*cmdiocb
,
7534 struct lpfc_nodelist
*ndlp
)
7537 struct lpfc_hba
*phba
= vport
->phba
;
7539 struct RTV_RSP
*rtv_rsp
;
7541 struct lpfc_iocbq
*elsiocb
;
7545 if ((ndlp
->nlp_state
!= NLP_STE_UNMAPPED_NODE
) &&
7546 (ndlp
->nlp_state
!= NLP_STE_MAPPED_NODE
))
7547 /* reject the unsolicited RTV request and done with it */
7550 cmdsize
= sizeof(struct RTV_RSP
) + sizeof(uint32_t);
7551 elsiocb
= lpfc_prep_els_iocb(phba
->pport
, 0, cmdsize
,
7552 lpfc_max_els_tries
, ndlp
,
7553 ndlp
->nlp_DID
, ELS_CMD_ACC
);
7558 pcmd
= (uint8_t *) (((struct lpfc_dmabuf
*) elsiocb
->context2
)->virt
);
7559 *((uint32_t *) (pcmd
)) = ELS_CMD_ACC
;
7560 pcmd
+= sizeof(uint32_t); /* Skip past command */
7562 /* use the command's xri in the response */
7563 elsiocb
->iocb
.ulpContext
= cmdiocb
->iocb
.ulpContext
; /* Xri / rx_id */
7564 elsiocb
->iocb
.unsli3
.rcvsli3
.ox_id
= cmdiocb
->iocb
.unsli3
.rcvsli3
.ox_id
;
7566 rtv_rsp
= (struct RTV_RSP
*)pcmd
;
7568 /* populate RTV payload */
7569 rtv_rsp
->ratov
= cpu_to_be32(phba
->fc_ratov
* 1000); /* report msecs */
7570 rtv_rsp
->edtov
= cpu_to_be32(phba
->fc_edtov
);
7571 bf_set(qtov_edtovres
, rtv_rsp
, phba
->fc_edtovResol
? 1 : 0);
7572 bf_set(qtov_rttov
, rtv_rsp
, 0); /* Field is for FC ONLY */
7573 rtv_rsp
->qtov
= cpu_to_be32(rtv_rsp
->qtov
);
7575 /* Xmit ELS RLS ACC response tag <ulpIoTag> */
7576 lpfc_printf_vlog(ndlp
->vport
, KERN_INFO
, LOG_ELS
,
7577 "2875 Xmit ELS RTV ACC response tag x%x xri x%x, "
7578 "did x%x, nlp_flag x%x, nlp_state x%x, rpi x%x, "
7579 "Data: x%x x%x x%x\n",
7580 elsiocb
->iotag
, elsiocb
->iocb
.ulpContext
,
7581 ndlp
->nlp_DID
, ndlp
->nlp_flag
, ndlp
->nlp_state
,
7583 rtv_rsp
->ratov
, rtv_rsp
->edtov
, rtv_rsp
->qtov
);
7584 elsiocb
->iocb_cmpl
= lpfc_cmpl_els_rsp
;
7585 phba
->fc_stat
.elsXmitACC
++;
7586 elsiocb
->context1
= lpfc_nlp_get(ndlp
);
7587 if (!elsiocb
->context1
) {
7588 lpfc_els_free_iocb(phba
, elsiocb
);
7592 rc
= lpfc_sli_issue_iocb(phba
, LPFC_ELS_RING
, elsiocb
, 0);
7593 if (rc
== IOCB_ERROR
) {
7595 lpfc_els_free_iocb(phba
, elsiocb
);
7600 /* issue rejection response */
7601 stat
.un
.b
.lsRjtRsvd0
= 0;
7602 stat
.un
.b
.lsRjtRsnCode
= LSRJT_UNABLE_TPC
;
7603 stat
.un
.b
.lsRjtRsnCodeExp
= LSEXP_CANT_GIVE_DATA
;
7604 stat
.un
.b
.vendorUnique
= 0;
7605 lpfc_els_rsp_reject(vport
, stat
.un
.lsRjtError
, cmdiocb
, ndlp
, NULL
);
7609 /* lpfc_issue_els_rrq - Process an unsolicited rrq iocb
7610 * @vport: pointer to a host virtual N_Port data structure.
7611 * @ndlp: pointer to a node-list data structure.
7612 * @did: DID of the target.
7613 * @rrq: Pointer to the rrq struct.
7615 * Build a ELS RRQ command and send it to the target. If the issue_iocb is
7616 * Successful the the completion handler will clear the RRQ.
7619 * 0 - Successfully sent rrq els iocb.
7620 * 1 - Failed to send rrq els iocb.
7623 lpfc_issue_els_rrq(struct lpfc_vport
*vport
, struct lpfc_nodelist
*ndlp
,
7624 uint32_t did
, struct lpfc_node_rrq
*rrq
)
7626 struct lpfc_hba
*phba
= vport
->phba
;
7627 struct RRQ
*els_rrq
;
7628 struct lpfc_iocbq
*elsiocb
;
7634 if (ndlp
!= rrq
->ndlp
)
7639 /* If ndlp is not NULL, we will bump the reference count on it */
7640 cmdsize
= (sizeof(uint32_t) + sizeof(struct RRQ
));
7641 elsiocb
= lpfc_prep_els_iocb(vport
, 1, cmdsize
, 0, ndlp
, did
,
7646 pcmd
= (uint8_t *) (((struct lpfc_dmabuf
*) elsiocb
->context2
)->virt
);
7648 /* For RRQ request, remainder of payload is Exchange IDs */
7649 *((uint32_t *) (pcmd
)) = ELS_CMD_RRQ
;
7650 pcmd
+= sizeof(uint32_t);
7651 els_rrq
= (struct RRQ
*) pcmd
;
7653 bf_set(rrq_oxid
, els_rrq
, phba
->sli4_hba
.xri_ids
[rrq
->xritag
]);
7654 bf_set(rrq_rxid
, els_rrq
, rrq
->rxid
);
7655 bf_set(rrq_did
, els_rrq
, vport
->fc_myDID
);
7656 els_rrq
->rrq
= cpu_to_be32(els_rrq
->rrq
);
7657 els_rrq
->rrq_exchg
= cpu_to_be32(els_rrq
->rrq_exchg
);
7660 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_CMD
,
7661 "Issue RRQ: did:x%x",
7662 did
, rrq
->xritag
, rrq
->rxid
);
7663 elsiocb
->context_un
.rrq
= rrq
;
7664 elsiocb
->iocb_cmpl
= lpfc_cmpl_els_rrq
;
7665 elsiocb
->context1
= lpfc_nlp_get(ndlp
);
7666 if (!elsiocb
->context1
)
7669 ret
= lpfc_sli_issue_iocb(phba
, LPFC_ELS_RING
, elsiocb
, 0);
7670 if (ret
== IOCB_ERROR
)
7677 lpfc_els_free_iocb(phba
, elsiocb
);
7682 * lpfc_send_rrq - Sends ELS RRQ if needed.
7683 * @phba: pointer to lpfc hba data structure.
7684 * @rrq: pointer to the active rrq.
7686 * This routine will call the lpfc_issue_els_rrq if the rrq is
7687 * still active for the xri. If this function returns a failure then
7688 * the caller needs to clean up the RRQ by calling lpfc_clr_active_rrq.
7690 * Returns 0 Success.
7694 lpfc_send_rrq(struct lpfc_hba
*phba
, struct lpfc_node_rrq
*rrq
)
7696 struct lpfc_nodelist
*ndlp
= lpfc_findnode_did(rrq
->vport
,
7701 if (lpfc_test_rrq_active(phba
, ndlp
, rrq
->xritag
))
7702 return lpfc_issue_els_rrq(rrq
->vport
, ndlp
,
7709 * lpfc_els_rsp_rpl_acc - Issue an accept rpl els command
7710 * @vport: pointer to a host virtual N_Port data structure.
7711 * @cmdsize: size of the ELS command.
7712 * @oldiocb: pointer to the original lpfc command iocb data structure.
7713 * @ndlp: pointer to a node-list data structure.
7715 * This routine issuees an Accept (ACC) Read Port List (RPL) ELS command.
7716 * It is to be called by the lpfc_els_rcv_rpl() routine to accept the RPL.
7718 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
7719 * will be incremented by 1 for holding the ndlp and the reference to ndlp
7720 * will be stored into the context1 field of the IOCB for the completion
7721 * callback function to the RPL Accept Response ELS command.
7724 * 0 - Successfully issued ACC RPL ELS command
7725 * 1 - Failed to issue ACC RPL ELS command
7728 lpfc_els_rsp_rpl_acc(struct lpfc_vport
*vport
, uint16_t cmdsize
,
7729 struct lpfc_iocbq
*oldiocb
, struct lpfc_nodelist
*ndlp
)
7732 struct lpfc_hba
*phba
= vport
->phba
;
7733 IOCB_t
*icmd
, *oldcmd
;
7735 struct lpfc_iocbq
*elsiocb
;
7738 elsiocb
= lpfc_prep_els_iocb(vport
, 0, cmdsize
, oldiocb
->retry
, ndlp
,
7739 ndlp
->nlp_DID
, ELS_CMD_ACC
);
7744 icmd
= &elsiocb
->iocb
;
7745 oldcmd
= &oldiocb
->iocb
;
7746 icmd
->ulpContext
= oldcmd
->ulpContext
; /* Xri / rx_id */
7747 icmd
->unsli3
.rcvsli3
.ox_id
= oldcmd
->unsli3
.rcvsli3
.ox_id
;
7749 pcmd
= (((struct lpfc_dmabuf
*) elsiocb
->context2
)->virt
);
7750 *((uint32_t *) (pcmd
)) = ELS_CMD_ACC
;
7751 pcmd
+= sizeof(uint16_t);
7752 *((uint16_t *)(pcmd
)) = be16_to_cpu(cmdsize
);
7753 pcmd
+= sizeof(uint16_t);
7755 /* Setup the RPL ACC payload */
7756 rpl_rsp
.listLen
= be32_to_cpu(1);
7758 rpl_rsp
.port_num_blk
.portNum
= 0;
7759 rpl_rsp
.port_num_blk
.portID
= be32_to_cpu(vport
->fc_myDID
);
7760 memcpy(&rpl_rsp
.port_num_blk
.portName
, &vport
->fc_portname
,
7761 sizeof(struct lpfc_name
));
7762 memcpy(pcmd
, &rpl_rsp
, cmdsize
- sizeof(uint32_t));
7763 /* Xmit ELS RPL ACC response tag <ulpIoTag> */
7764 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_ELS
,
7765 "0120 Xmit ELS RPL ACC response tag x%x "
7766 "xri x%x, did x%x, nlp_flag x%x, nlp_state x%x, "
7768 elsiocb
->iotag
, elsiocb
->iocb
.ulpContext
,
7769 ndlp
->nlp_DID
, ndlp
->nlp_flag
, ndlp
->nlp_state
,
7771 elsiocb
->iocb_cmpl
= lpfc_cmpl_els_rsp
;
7772 phba
->fc_stat
.elsXmitACC
++;
7773 elsiocb
->context1
= lpfc_nlp_get(ndlp
);
7774 if (!elsiocb
->context1
)
7777 rc
= lpfc_sli_issue_iocb(phba
, LPFC_ELS_RING
, elsiocb
, 0);
7778 if (rc
== IOCB_ERROR
)
7785 lpfc_els_free_iocb(phba
, elsiocb
);
7790 * lpfc_els_rcv_rpl - Process an unsolicited rpl iocb
7791 * @vport: pointer to a host virtual N_Port data structure.
7792 * @cmdiocb: pointer to lpfc command iocb data structure.
7793 * @ndlp: pointer to a node-list data structure.
7795 * This routine processes Read Port List (RPL) IOCB received as an ELS
7796 * unsolicited event. It first checks the remote port state. If the remote
7797 * port is not in NLP_STE_UNMAPPED_NODE and NLP_STE_MAPPED_NODE states, it
7798 * invokes the lpfc_els_rsp_reject() routine to send reject response.
7799 * Otherwise, this routine then invokes the lpfc_els_rsp_rpl_acc() routine
7800 * to accept the RPL.
7803 * 0 - Successfully processed rpl iocb (currently always return 0)
7806 lpfc_els_rcv_rpl(struct lpfc_vport
*vport
, struct lpfc_iocbq
*cmdiocb
,
7807 struct lpfc_nodelist
*ndlp
)
7809 struct lpfc_dmabuf
*pcmd
;
7816 if ((ndlp
->nlp_state
!= NLP_STE_UNMAPPED_NODE
) &&
7817 (ndlp
->nlp_state
!= NLP_STE_MAPPED_NODE
)) {
7818 /* issue rejection response */
7819 stat
.un
.b
.lsRjtRsvd0
= 0;
7820 stat
.un
.b
.lsRjtRsnCode
= LSRJT_UNABLE_TPC
;
7821 stat
.un
.b
.lsRjtRsnCodeExp
= LSEXP_CANT_GIVE_DATA
;
7822 stat
.un
.b
.vendorUnique
= 0;
7823 lpfc_els_rsp_reject(vport
, stat
.un
.lsRjtError
, cmdiocb
, ndlp
,
7825 /* rejected the unsolicited RPL request and done with it */
7829 pcmd
= (struct lpfc_dmabuf
*) cmdiocb
->context2
;
7830 lp
= (uint32_t *) pcmd
->virt
;
7831 rpl
= (RPL
*) (lp
+ 1);
7832 maxsize
= be32_to_cpu(rpl
->maxsize
);
7834 /* We support only one port */
7835 if ((rpl
->index
== 0) &&
7837 ((maxsize
* sizeof(uint32_t)) >= sizeof(RPL_RSP
)))) {
7838 cmdsize
= sizeof(uint32_t) + sizeof(RPL_RSP
);
7840 cmdsize
= sizeof(uint32_t) + maxsize
* sizeof(uint32_t);
7842 lpfc_els_rsp_rpl_acc(vport
, cmdsize
, cmdiocb
, ndlp
);
7848 * lpfc_els_rcv_farp - Process an unsolicited farp request els command
7849 * @vport: pointer to a virtual N_Port data structure.
7850 * @cmdiocb: pointer to lpfc command iocb data structure.
7851 * @ndlp: pointer to a node-list data structure.
7853 * This routine processes Fibre Channel Address Resolution Protocol
7854 * (FARP) Request IOCB received as an ELS unsolicited event. Currently,
7855 * the lpfc driver only supports matching on WWPN or WWNN for FARP. As such,
7856 * FARP_MATCH_PORT flag and FARP_MATCH_NODE flag are checked against the
7857 * Match Flag in the FARP request IOCB: if FARP_MATCH_PORT flag is set, the
7858 * remote PortName is compared against the FC PortName stored in the @vport
7859 * data structure; if FARP_MATCH_NODE flag is set, the remote NodeName is
7860 * compared against the FC NodeName stored in the @vport data structure.
7861 * If any of these matches and the FARP_REQUEST_FARPR flag is set in the
7862 * FARP request IOCB Response Flag, the lpfc_issue_els_farpr() routine is
7863 * invoked to send out FARP Response to the remote node. Before sending the
7864 * FARP Response, however, the FARP_REQUEST_PLOGI flag is check in the FARP
7865 * request IOCB Response Flag and, if it is set, the lpfc_issue_els_plogi()
7866 * routine is invoked to log into the remote port first.
7869 * 0 - Either the FARP Match Mode not supported or successfully processed
7872 lpfc_els_rcv_farp(struct lpfc_vport
*vport
, struct lpfc_iocbq
*cmdiocb
,
7873 struct lpfc_nodelist
*ndlp
)
7875 struct lpfc_dmabuf
*pcmd
;
7881 icmd
= &cmdiocb
->iocb
;
7882 did
= icmd
->un
.elsreq64
.remoteID
;
7883 pcmd
= (struct lpfc_dmabuf
*) cmdiocb
->context2
;
7884 lp
= (uint32_t *) pcmd
->virt
;
7888 /* FARP-REQ received from DID <did> */
7889 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_ELS
,
7890 "0601 FARP-REQ received from DID x%x\n", did
);
7891 /* We will only support match on WWPN or WWNN */
7892 if (fp
->Mflags
& ~(FARP_MATCH_NODE
| FARP_MATCH_PORT
)) {
7897 /* If this FARP command is searching for my portname */
7898 if (fp
->Mflags
& FARP_MATCH_PORT
) {
7899 if (memcmp(&fp
->RportName
, &vport
->fc_portname
,
7900 sizeof(struct lpfc_name
)) == 0)
7904 /* If this FARP command is searching for my nodename */
7905 if (fp
->Mflags
& FARP_MATCH_NODE
) {
7906 if (memcmp(&fp
->RnodeName
, &vport
->fc_nodename
,
7907 sizeof(struct lpfc_name
)) == 0)
7912 if ((ndlp
->nlp_state
== NLP_STE_UNMAPPED_NODE
) ||
7913 (ndlp
->nlp_state
== NLP_STE_MAPPED_NODE
)) {
7914 /* Log back into the node before sending the FARP. */
7915 if (fp
->Rflags
& FARP_REQUEST_PLOGI
) {
7916 ndlp
->nlp_prev_state
= ndlp
->nlp_state
;
7917 lpfc_nlp_set_state(vport
, ndlp
,
7918 NLP_STE_PLOGI_ISSUE
);
7919 lpfc_issue_els_plogi(vport
, ndlp
->nlp_DID
, 0);
7922 /* Send a FARP response to that node */
7923 if (fp
->Rflags
& FARP_REQUEST_FARPR
)
7924 lpfc_issue_els_farpr(vport
, did
, 0);
7931 * lpfc_els_rcv_farpr - Process an unsolicited farp response iocb
7932 * @vport: pointer to a host virtual N_Port data structure.
7933 * @cmdiocb: pointer to lpfc command iocb data structure.
7934 * @ndlp: pointer to a node-list data structure.
7936 * This routine processes Fibre Channel Address Resolution Protocol
7937 * Response (FARPR) IOCB received as an ELS unsolicited event. It simply
7938 * invokes the lpfc_els_rsp_acc() routine to the remote node to accept
7939 * the FARP response request.
7942 * 0 - Successfully processed FARPR IOCB (currently always return 0)
7945 lpfc_els_rcv_farpr(struct lpfc_vport
*vport
, struct lpfc_iocbq
*cmdiocb
,
7946 struct lpfc_nodelist
*ndlp
)
7948 struct lpfc_dmabuf
*pcmd
;
7953 icmd
= &cmdiocb
->iocb
;
7954 did
= icmd
->un
.elsreq64
.remoteID
;
7955 pcmd
= (struct lpfc_dmabuf
*) cmdiocb
->context2
;
7956 lp
= (uint32_t *) pcmd
->virt
;
7959 /* FARP-RSP received from DID <did> */
7960 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_ELS
,
7961 "0600 FARP-RSP received from DID x%x\n", did
);
7962 /* ACCEPT the Farp resp request */
7963 lpfc_els_rsp_acc(vport
, ELS_CMD_ACC
, cmdiocb
, ndlp
, NULL
);
7969 * lpfc_els_rcv_fan - Process an unsolicited fan iocb command
7970 * @vport: pointer to a host virtual N_Port data structure.
7971 * @cmdiocb: pointer to lpfc command iocb data structure.
7972 * @fan_ndlp: pointer to a node-list data structure.
7974 * This routine processes a Fabric Address Notification (FAN) IOCB
7975 * command received as an ELS unsolicited event. The FAN ELS command will
7976 * only be processed on a physical port (i.e., the @vport represents the
7977 * physical port). The fabric NodeName and PortName from the FAN IOCB are
7978 * compared against those in the phba data structure. If any of those is
7979 * different, the lpfc_initial_flogi() routine is invoked to initialize
7980 * Fabric Login (FLOGI) to the fabric to start the discover over. Otherwise,
7981 * if both of those are identical, the lpfc_issue_fabric_reglogin() routine
7982 * is invoked to register login to the fabric.
7985 * 0 - Successfully processed fan iocb (currently always return 0).
7988 lpfc_els_rcv_fan(struct lpfc_vport
*vport
, struct lpfc_iocbq
*cmdiocb
,
7989 struct lpfc_nodelist
*fan_ndlp
)
7991 struct lpfc_hba
*phba
= vport
->phba
;
7995 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_ELS
, "0265 FAN received\n");
7996 lp
= (uint32_t *)((struct lpfc_dmabuf
*)cmdiocb
->context2
)->virt
;
7998 /* FAN received; Fan does not have a reply sequence */
7999 if ((vport
== phba
->pport
) &&
8000 (vport
->port_state
== LPFC_LOCAL_CFG_LINK
)) {
8001 if ((memcmp(&phba
->fc_fabparam
.nodeName
, &fp
->FnodeName
,
8002 sizeof(struct lpfc_name
))) ||
8003 (memcmp(&phba
->fc_fabparam
.portName
, &fp
->FportName
,
8004 sizeof(struct lpfc_name
)))) {
8005 /* This port has switched fabrics. FLOGI is required */
8006 lpfc_issue_init_vfi(vport
);
8008 /* FAN verified - skip FLOGI */
8009 vport
->fc_myDID
= vport
->fc_prevDID
;
8010 if (phba
->sli_rev
< LPFC_SLI_REV4
)
8011 lpfc_issue_fabric_reglogin(vport
);
8013 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_ELS
,
8014 "3138 Need register VFI: (x%x/%x)\n",
8015 vport
->fc_prevDID
, vport
->fc_myDID
);
8016 lpfc_issue_reg_vfi(vport
);
8024 * lpfc_els_timeout - Handler funciton to the els timer
8025 * @t: timer context used to obtain the vport.
8027 * This routine is invoked by the ELS timer after timeout. It posts the ELS
8028 * timer timeout event by setting the WORKER_ELS_TMO bit to the work port
8029 * event bitmap and then invokes the lpfc_worker_wake_up() routine to wake
8030 * up the worker thread. It is for the worker thread to invoke the routine
8031 * lpfc_els_timeout_handler() to work on the posted event WORKER_ELS_TMO.
8034 lpfc_els_timeout(struct timer_list
*t
)
8036 struct lpfc_vport
*vport
= from_timer(vport
, t
, els_tmofunc
);
8037 struct lpfc_hba
*phba
= vport
->phba
;
8038 uint32_t tmo_posted
;
8039 unsigned long iflag
;
8041 spin_lock_irqsave(&vport
->work_port_lock
, iflag
);
8042 tmo_posted
= vport
->work_port_events
& WORKER_ELS_TMO
;
8043 if ((!tmo_posted
) && (!(vport
->load_flag
& FC_UNLOADING
)))
8044 vport
->work_port_events
|= WORKER_ELS_TMO
;
8045 spin_unlock_irqrestore(&vport
->work_port_lock
, iflag
);
8047 if ((!tmo_posted
) && (!(vport
->load_flag
& FC_UNLOADING
)))
8048 lpfc_worker_wake_up(phba
);
8054 * lpfc_els_timeout_handler - Process an els timeout event
8055 * @vport: pointer to a virtual N_Port data structure.
8057 * This routine is the actual handler function that processes an ELS timeout
8058 * event. It walks the ELS ring to get and abort all the IOCBs (except the
8059 * ABORT/CLOSE/FARP/FARPR/FDISC), which are associated with the @vport by
8060 * invoking the lpfc_sli_issue_abort_iotag() routine.
8063 lpfc_els_timeout_handler(struct lpfc_vport
*vport
)
8065 struct lpfc_hba
*phba
= vport
->phba
;
8066 struct lpfc_sli_ring
*pring
;
8067 struct lpfc_iocbq
*tmp_iocb
, *piocb
;
8069 struct lpfc_dmabuf
*pcmd
;
8070 uint32_t els_command
= 0;
8072 uint32_t remote_ID
= 0xffffffff;
8073 LIST_HEAD(abort_list
);
8076 timeout
= (uint32_t)(phba
->fc_ratov
<< 1);
8078 pring
= lpfc_phba_elsring(phba
);
8079 if (unlikely(!pring
))
8082 if (phba
->pport
->load_flag
& FC_UNLOADING
)
8085 spin_lock_irq(&phba
->hbalock
);
8086 if (phba
->sli_rev
== LPFC_SLI_REV4
)
8087 spin_lock(&pring
->ring_lock
);
8089 list_for_each_entry_safe(piocb
, tmp_iocb
, &pring
->txcmplq
, list
) {
8092 if ((piocb
->iocb_flag
& LPFC_IO_LIBDFC
) != 0 ||
8093 piocb
->iocb
.ulpCommand
== CMD_ABORT_XRI_CN
||
8094 piocb
->iocb
.ulpCommand
== CMD_CLOSE_XRI_CN
)
8097 if (piocb
->vport
!= vport
)
8100 pcmd
= (struct lpfc_dmabuf
*) piocb
->context2
;
8102 els_command
= *(uint32_t *) (pcmd
->virt
);
8104 if (els_command
== ELS_CMD_FARP
||
8105 els_command
== ELS_CMD_FARPR
||
8106 els_command
== ELS_CMD_FDISC
)
8109 if (piocb
->drvrTimeout
> 0) {
8110 if (piocb
->drvrTimeout
>= timeout
)
8111 piocb
->drvrTimeout
-= timeout
;
8113 piocb
->drvrTimeout
= 0;
8117 remote_ID
= 0xffffffff;
8118 if (cmd
->ulpCommand
!= CMD_GEN_REQUEST64_CR
)
8119 remote_ID
= cmd
->un
.elsreq64
.remoteID
;
8121 struct lpfc_nodelist
*ndlp
;
8122 ndlp
= __lpfc_findnode_rpi(vport
, cmd
->ulpContext
);
8124 remote_ID
= ndlp
->nlp_DID
;
8126 list_add_tail(&piocb
->dlist
, &abort_list
);
8128 if (phba
->sli_rev
== LPFC_SLI_REV4
)
8129 spin_unlock(&pring
->ring_lock
);
8130 spin_unlock_irq(&phba
->hbalock
);
8132 list_for_each_entry_safe(piocb
, tmp_iocb
, &abort_list
, dlist
) {
8134 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_TRACE_EVENT
,
8135 "0127 ELS timeout Data: x%x x%x x%x "
8136 "x%x\n", els_command
,
8137 remote_ID
, cmd
->ulpCommand
, cmd
->ulpIoTag
);
8138 spin_lock_irq(&phba
->hbalock
);
8139 list_del_init(&piocb
->dlist
);
8140 lpfc_sli_issue_abort_iotag(phba
, pring
, piocb
, NULL
);
8141 spin_unlock_irq(&phba
->hbalock
);
8144 if (!list_empty(&pring
->txcmplq
))
8145 if (!(phba
->pport
->load_flag
& FC_UNLOADING
))
8146 mod_timer(&vport
->els_tmofunc
,
8147 jiffies
+ msecs_to_jiffies(1000 * timeout
));
8151 * lpfc_els_flush_cmd - Clean up the outstanding els commands to a vport
8152 * @vport: pointer to a host virtual N_Port data structure.
8154 * This routine is used to clean up all the outstanding ELS commands on a
8155 * @vport. It first aborts the @vport by invoking lpfc_fabric_abort_vport()
8156 * routine. After that, it walks the ELS transmit queue to remove all the
8157 * IOCBs with the @vport other than the QUE_RING and ABORT/CLOSE IOCBs. For
8158 * the IOCBs with a non-NULL completion callback function, the callback
8159 * function will be invoked with the status set to IOSTAT_LOCAL_REJECT and
8160 * un.ulpWord[4] set to IOERR_SLI_ABORTED. For IOCBs with a NULL completion
8161 * callback function, the IOCB will simply be released. Finally, it walks
8162 * the ELS transmit completion queue to issue an abort IOCB to any transmit
8163 * completion queue IOCB that is associated with the @vport and is not
8164 * an IOCB from libdfc (i.e., the management plane IOCBs that are not
8165 * part of the discovery state machine) out to HBA by invoking the
8166 * lpfc_sli_issue_abort_iotag() routine. Note that this function issues the
8167 * abort IOCB to any transmit completion queueed IOCB, it does not guarantee
8168 * the IOCBs are aborted when this function returns.
8171 lpfc_els_flush_cmd(struct lpfc_vport
*vport
)
8173 LIST_HEAD(abort_list
);
8174 struct lpfc_hba
*phba
= vport
->phba
;
8175 struct lpfc_sli_ring
*pring
;
8176 struct lpfc_iocbq
*tmp_iocb
, *piocb
;
8178 unsigned long iflags
= 0;
8180 lpfc_fabric_abort_vport(vport
);
8183 * For SLI3, only the hbalock is required. But SLI4 needs to coordinate
8184 * with the ring insert operation. Because lpfc_sli_issue_abort_iotag
8185 * ultimately grabs the ring_lock, the driver must splice the list into
8186 * a working list and release the locks before calling the abort.
8188 spin_lock_irqsave(&phba
->hbalock
, iflags
);
8189 pring
= lpfc_phba_elsring(phba
);
8191 /* Bail out if we've no ELS wq, like in PCI error recovery case. */
8192 if (unlikely(!pring
)) {
8193 spin_unlock_irqrestore(&phba
->hbalock
, iflags
);
8197 if (phba
->sli_rev
== LPFC_SLI_REV4
)
8198 spin_lock(&pring
->ring_lock
);
8200 /* First we need to issue aborts to outstanding cmds on txcmpl */
8201 list_for_each_entry_safe(piocb
, tmp_iocb
, &pring
->txcmplq
, list
) {
8202 if (piocb
->iocb_flag
& LPFC_IO_LIBDFC
)
8205 if (piocb
->vport
!= vport
)
8208 if (piocb
->iocb_flag
& LPFC_DRIVER_ABORTED
)
8211 /* On the ELS ring we can have ELS_REQUESTs or
8212 * GEN_REQUESTs waiting for a response.
8215 if (cmd
->ulpCommand
== CMD_ELS_REQUEST64_CR
) {
8216 list_add_tail(&piocb
->dlist
, &abort_list
);
8218 /* If the link is down when flushing ELS commands
8219 * the firmware will not complete them till after
8220 * the link comes back up. This may confuse
8221 * discovery for the new link up, so we need to
8222 * change the compl routine to just clean up the iocb
8223 * and avoid any retry logic.
8225 if (phba
->link_state
== LPFC_LINK_DOWN
)
8226 piocb
->iocb_cmpl
= lpfc_cmpl_els_link_down
;
8228 if (cmd
->ulpCommand
== CMD_GEN_REQUEST64_CR
)
8229 list_add_tail(&piocb
->dlist
, &abort_list
);
8232 if (phba
->sli_rev
== LPFC_SLI_REV4
)
8233 spin_unlock(&pring
->ring_lock
);
8234 spin_unlock_irqrestore(&phba
->hbalock
, iflags
);
8236 /* Abort each txcmpl iocb on aborted list and remove the dlist links. */
8237 list_for_each_entry_safe(piocb
, tmp_iocb
, &abort_list
, dlist
) {
8238 spin_lock_irqsave(&phba
->hbalock
, iflags
);
8239 list_del_init(&piocb
->dlist
);
8240 lpfc_sli_issue_abort_iotag(phba
, pring
, piocb
, NULL
);
8241 spin_unlock_irqrestore(&phba
->hbalock
, iflags
);
8243 if (!list_empty(&abort_list
))
8244 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_TRACE_EVENT
,
8245 "3387 abort list for txq not empty\n");
8246 INIT_LIST_HEAD(&abort_list
);
8248 spin_lock_irqsave(&phba
->hbalock
, iflags
);
8249 if (phba
->sli_rev
== LPFC_SLI_REV4
)
8250 spin_lock(&pring
->ring_lock
);
8252 /* No need to abort the txq list,
8253 * just queue them up for lpfc_sli_cancel_iocbs
8255 list_for_each_entry_safe(piocb
, tmp_iocb
, &pring
->txq
, list
) {
8258 if (piocb
->iocb_flag
& LPFC_IO_LIBDFC
) {
8262 /* Do not flush out the QUE_RING and ABORT/CLOSE iocbs */
8263 if (cmd
->ulpCommand
== CMD_QUE_RING_BUF_CN
||
8264 cmd
->ulpCommand
== CMD_QUE_RING_BUF64_CN
||
8265 cmd
->ulpCommand
== CMD_CLOSE_XRI_CN
||
8266 cmd
->ulpCommand
== CMD_ABORT_XRI_CN
)
8269 if (piocb
->vport
!= vport
)
8272 list_del_init(&piocb
->list
);
8273 list_add_tail(&piocb
->list
, &abort_list
);
8276 /* The same holds true for any FLOGI/FDISC on the fabric_iocb_list */
8277 if (vport
== phba
->pport
) {
8278 list_for_each_entry_safe(piocb
, tmp_iocb
,
8279 &phba
->fabric_iocb_list
, list
) {
8281 list_del_init(&piocb
->list
);
8282 list_add_tail(&piocb
->list
, &abort_list
);
8286 if (phba
->sli_rev
== LPFC_SLI_REV4
)
8287 spin_unlock(&pring
->ring_lock
);
8288 spin_unlock_irqrestore(&phba
->hbalock
, iflags
);
8290 /* Cancel all the IOCBs from the completions list */
8291 lpfc_sli_cancel_iocbs(phba
, &abort_list
,
8292 IOSTAT_LOCAL_REJECT
, IOERR_SLI_ABORTED
);
8298 * lpfc_els_flush_all_cmd - Clean up all the outstanding els commands to a HBA
8299 * @phba: pointer to lpfc hba data structure.
8301 * This routine is used to clean up all the outstanding ELS commands on a
8302 * @phba. It first aborts the @phba by invoking the lpfc_fabric_abort_hba()
8303 * routine. After that, it walks the ELS transmit queue to remove all the
8304 * IOCBs to the @phba other than the QUE_RING and ABORT/CLOSE IOCBs. For
8305 * the IOCBs with the completion callback function associated, the callback
8306 * function will be invoked with the status set to IOSTAT_LOCAL_REJECT and
8307 * un.ulpWord[4] set to IOERR_SLI_ABORTED. For IOCBs without the completion
8308 * callback function associated, the IOCB will simply be released. Finally,
8309 * it walks the ELS transmit completion queue to issue an abort IOCB to any
8310 * transmit completion queue IOCB that is not an IOCB from libdfc (i.e., the
8311 * management plane IOCBs that are not part of the discovery state machine)
8312 * out to HBA by invoking the lpfc_sli_issue_abort_iotag() routine.
8315 lpfc_els_flush_all_cmd(struct lpfc_hba
*phba
)
8317 struct lpfc_vport
*vport
;
8319 spin_lock_irq(&phba
->port_list_lock
);
8320 list_for_each_entry(vport
, &phba
->port_list
, listentry
)
8321 lpfc_els_flush_cmd(vport
);
8322 spin_unlock_irq(&phba
->port_list_lock
);
8328 * lpfc_send_els_failure_event - Posts an ELS command failure event
8329 * @phba: Pointer to hba context object.
8330 * @cmdiocbp: Pointer to command iocb which reported error.
8331 * @rspiocbp: Pointer to response iocb which reported error.
8333 * This function sends an event when there is an ELS command
8337 lpfc_send_els_failure_event(struct lpfc_hba
*phba
,
8338 struct lpfc_iocbq
*cmdiocbp
,
8339 struct lpfc_iocbq
*rspiocbp
)
8341 struct lpfc_vport
*vport
= cmdiocbp
->vport
;
8342 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
8343 struct lpfc_lsrjt_event lsrjt_event
;
8344 struct lpfc_fabric_event_header fabric_event
;
8346 struct lpfc_nodelist
*ndlp
;
8349 ndlp
= cmdiocbp
->context1
;
8353 if (rspiocbp
->iocb
.ulpStatus
== IOSTAT_LS_RJT
) {
8354 lsrjt_event
.header
.event_type
= FC_REG_ELS_EVENT
;
8355 lsrjt_event
.header
.subcategory
= LPFC_EVENT_LSRJT_RCV
;
8356 memcpy(lsrjt_event
.header
.wwpn
, &ndlp
->nlp_portname
,
8357 sizeof(struct lpfc_name
));
8358 memcpy(lsrjt_event
.header
.wwnn
, &ndlp
->nlp_nodename
,
8359 sizeof(struct lpfc_name
));
8360 pcmd
= (uint32_t *) (((struct lpfc_dmabuf
*)
8361 cmdiocbp
->context2
)->virt
);
8362 lsrjt_event
.command
= (pcmd
!= NULL
) ? *pcmd
: 0;
8363 stat
.un
.lsRjtError
= be32_to_cpu(rspiocbp
->iocb
.un
.ulpWord
[4]);
8364 lsrjt_event
.reason_code
= stat
.un
.b
.lsRjtRsnCode
;
8365 lsrjt_event
.explanation
= stat
.un
.b
.lsRjtRsnCodeExp
;
8366 fc_host_post_vendor_event(shost
,
8367 fc_get_event_number(),
8368 sizeof(lsrjt_event
),
8369 (char *)&lsrjt_event
,
8373 if ((rspiocbp
->iocb
.ulpStatus
== IOSTAT_NPORT_BSY
) ||
8374 (rspiocbp
->iocb
.ulpStatus
== IOSTAT_FABRIC_BSY
)) {
8375 fabric_event
.event_type
= FC_REG_FABRIC_EVENT
;
8376 if (rspiocbp
->iocb
.ulpStatus
== IOSTAT_NPORT_BSY
)
8377 fabric_event
.subcategory
= LPFC_EVENT_PORT_BUSY
;
8379 fabric_event
.subcategory
= LPFC_EVENT_FABRIC_BUSY
;
8380 memcpy(fabric_event
.wwpn
, &ndlp
->nlp_portname
,
8381 sizeof(struct lpfc_name
));
8382 memcpy(fabric_event
.wwnn
, &ndlp
->nlp_nodename
,
8383 sizeof(struct lpfc_name
));
8384 fc_host_post_vendor_event(shost
,
8385 fc_get_event_number(),
8386 sizeof(fabric_event
),
8387 (char *)&fabric_event
,
8395 * lpfc_send_els_event - Posts unsolicited els event
8396 * @vport: Pointer to vport object.
8397 * @ndlp: Pointer FC node object.
8398 * @payload: ELS command code type.
8400 * This function posts an event when there is an incoming
8401 * unsolicited ELS command.
8404 lpfc_send_els_event(struct lpfc_vport
*vport
,
8405 struct lpfc_nodelist
*ndlp
,
8408 struct lpfc_els_event_header
*els_data
= NULL
;
8409 struct lpfc_logo_event
*logo_data
= NULL
;
8410 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
8412 if (*payload
== ELS_CMD_LOGO
) {
8413 logo_data
= kmalloc(sizeof(struct lpfc_logo_event
), GFP_KERNEL
);
8415 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_TRACE_EVENT
,
8416 "0148 Failed to allocate memory "
8417 "for LOGO event\n");
8420 els_data
= &logo_data
->header
;
8422 els_data
= kmalloc(sizeof(struct lpfc_els_event_header
),
8425 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_TRACE_EVENT
,
8426 "0149 Failed to allocate memory "
8431 els_data
->event_type
= FC_REG_ELS_EVENT
;
8434 els_data
->subcategory
= LPFC_EVENT_PLOGI_RCV
;
8437 els_data
->subcategory
= LPFC_EVENT_PRLO_RCV
;
8440 els_data
->subcategory
= LPFC_EVENT_ADISC_RCV
;
8443 els_data
->subcategory
= LPFC_EVENT_LOGO_RCV
;
8444 /* Copy the WWPN in the LOGO payload */
8445 memcpy(logo_data
->logo_wwpn
, &payload
[2],
8446 sizeof(struct lpfc_name
));
8452 memcpy(els_data
->wwpn
, &ndlp
->nlp_portname
, sizeof(struct lpfc_name
));
8453 memcpy(els_data
->wwnn
, &ndlp
->nlp_nodename
, sizeof(struct lpfc_name
));
8454 if (*payload
== ELS_CMD_LOGO
) {
8455 fc_host_post_vendor_event(shost
,
8456 fc_get_event_number(),
8457 sizeof(struct lpfc_logo_event
),
8462 fc_host_post_vendor_event(shost
,
8463 fc_get_event_number(),
8464 sizeof(struct lpfc_els_event_header
),
8474 DECLARE_ENUM2STR_LOOKUP(lpfc_get_tlv_dtag_nm
, fc_ls_tlv_dtag
,
8475 FC_LS_TLV_DTAG_INIT
);
8477 DECLARE_ENUM2STR_LOOKUP(lpfc_get_fpin_li_event_nm
, fc_fpin_li_event_types
,
8478 FC_FPIN_LI_EVT_TYPES_INIT
);
8481 * lpfc_els_rcv_fpin_li - Process an FPIN Link Integrity Event.
8482 * @vport: Pointer to vport object.
8483 * @tlv: Pointer to the Link Integrity Notification Descriptor.
8485 * This function processes a link integrity FPIN event by
8489 lpfc_els_rcv_fpin_li(struct lpfc_vport
*vport
, struct fc_tlv_desc
*tlv
)
8491 struct fc_fn_li_desc
*li
= (struct fc_fn_li_desc
*)tlv
;
8492 const char *li_evt_str
;
8495 li_evt
= be16_to_cpu(li
->event_type
);
8496 li_evt_str
= lpfc_get_fpin_li_event_nm(li_evt
);
8498 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_ELS
,
8499 "4680 FPIN Link Integrity %s (x%x) "
8500 "Detecting PN x%016llx Attached PN x%016llx "
8501 "Duration %d mSecs Count %d Port Cnt %d\n",
8503 be64_to_cpu(li
->detecting_wwpn
),
8504 be64_to_cpu(li
->attached_wwpn
),
8505 be32_to_cpu(li
->event_threshold
),
8506 be32_to_cpu(li
->event_count
),
8507 be32_to_cpu(li
->pname_count
));
8511 lpfc_els_rcv_fpin(struct lpfc_vport
*vport
, struct fc_els_fpin
*fpin
,
8514 struct fc_tlv_desc
*tlv
;
8515 const char *dtag_nm
;
8516 uint32_t desc_cnt
= 0, bytes_remain
;
8519 /* FPINs handled only if we are in the right discovery state */
8520 if (vport
->port_state
< LPFC_DISC_AUTH
)
8523 /* make sure there is the full fpin header */
8524 if (fpin_length
< sizeof(struct fc_els_fpin
))
8527 tlv
= (struct fc_tlv_desc
*)&fpin
->fpin_desc
[0];
8528 bytes_remain
= fpin_length
- offsetof(struct fc_els_fpin
, fpin_desc
);
8529 bytes_remain
= min_t(u32
, bytes_remain
, be32_to_cpu(fpin
->desc_len
));
8531 /* process each descriptor */
8532 while (bytes_remain
>= FC_TLV_DESC_HDR_SZ
&&
8533 bytes_remain
>= FC_TLV_DESC_SZ_FROM_LENGTH(tlv
)) {
8535 dtag
= be32_to_cpu(tlv
->desc_tag
);
8537 case ELS_DTAG_LNK_INTEGRITY
:
8538 lpfc_els_rcv_fpin_li(vport
, tlv
);
8541 dtag_nm
= lpfc_get_tlv_dtag_nm(dtag
);
8542 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_TRACE_EVENT
,
8543 "4678 skipped FPIN descriptor[%d]: "
8545 desc_cnt
, dtag
, dtag_nm
);
8550 bytes_remain
-= FC_TLV_DESC_SZ_FROM_LENGTH(tlv
);
8551 tlv
= fc_tlv_next_desc(tlv
);
8554 fc_host_fpin_rcv(lpfc_shost_from_vport(vport
), fpin_length
,
8559 * lpfc_els_unsol_buffer - Process an unsolicited event data buffer
8560 * @phba: pointer to lpfc hba data structure.
8561 * @pring: pointer to a SLI ring.
8562 * @vport: pointer to a host virtual N_Port data structure.
8563 * @elsiocb: pointer to lpfc els command iocb data structure.
8565 * This routine is used for processing the IOCB associated with a unsolicited
8566 * event. It first determines whether there is an existing ndlp that matches
8567 * the DID from the unsolicited IOCB. If not, it will create a new one with
8568 * the DID from the unsolicited IOCB. The ELS command from the unsolicited
8569 * IOCB is then used to invoke the proper routine and to set up proper state
8570 * of the discovery state machine.
8573 lpfc_els_unsol_buffer(struct lpfc_hba
*phba
, struct lpfc_sli_ring
*pring
,
8574 struct lpfc_vport
*vport
, struct lpfc_iocbq
*elsiocb
)
8576 struct lpfc_nodelist
*ndlp
;
8578 uint32_t *payload
, payload_len
;
8579 uint32_t cmd
, did
, newnode
;
8580 uint8_t rjt_exp
, rjt_err
= 0, init_link
= 0;
8581 IOCB_t
*icmd
= &elsiocb
->iocb
;
8584 if (!vport
|| !(elsiocb
->context2
))
8588 payload
= ((struct lpfc_dmabuf
*)elsiocb
->context2
)->virt
;
8589 payload_len
= elsiocb
->iocb
.unsli3
.rcvsli3
.acc_len
;
8591 if ((phba
->sli3_options
& LPFC_SLI3_HBQ_ENABLED
) == 0)
8592 lpfc_post_buffer(phba
, pring
, 1);
8594 did
= icmd
->un
.rcvels
.remoteID
;
8595 if (icmd
->ulpStatus
) {
8596 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_UNSOL
,
8597 "RCV Unsol ELS: status:x%x/x%x did:x%x",
8598 icmd
->ulpStatus
, icmd
->un
.ulpWord
[4], did
);
8602 /* Check to see if link went down during discovery */
8603 if (lpfc_els_chk_latt(vport
))
8606 /* Ignore traffic received during vport shutdown. */
8607 if (vport
->load_flag
& FC_UNLOADING
)
8610 /* If NPort discovery is delayed drop incoming ELS */
8611 if ((vport
->fc_flag
& FC_DISC_DELAYED
) &&
8612 (cmd
!= ELS_CMD_PLOGI
))
8615 ndlp
= lpfc_findnode_did(vport
, did
);
8617 /* Cannot find existing Fabric ndlp, so allocate a new one */
8618 ndlp
= lpfc_nlp_init(vport
, did
);
8621 lpfc_nlp_set_state(vport
, ndlp
, NLP_STE_NPR_NODE
);
8623 if ((did
& Fabric_DID_MASK
) == Fabric_DID_MASK
)
8624 ndlp
->nlp_type
|= NLP_FABRIC
;
8625 } else if (ndlp
->nlp_state
== NLP_STE_UNUSED_NODE
) {
8626 lpfc_nlp_set_state(vport
, ndlp
, NLP_STE_NPR_NODE
);
8630 phba
->fc_stat
.elsRcvFrame
++;
8633 * Do not process any unsolicited ELS commands
8634 * if the ndlp is in DEV_LOSS
8636 spin_lock_irq(&ndlp
->lock
);
8637 if (ndlp
->nlp_flag
& NLP_IN_DEV_LOSS
) {
8638 spin_unlock_irq(&ndlp
->lock
);
8643 spin_unlock_irq(&ndlp
->lock
);
8645 elsiocb
->context1
= lpfc_nlp_get(ndlp
);
8646 if (!elsiocb
->context1
)
8648 elsiocb
->vport
= vport
;
8650 if ((cmd
& ELS_CMD_MASK
) == ELS_CMD_RSCN
) {
8651 cmd
&= ELS_CMD_MASK
;
8653 /* ELS command <elsCmd> received from NPORT <did> */
8654 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_ELS
,
8655 "0112 ELS command x%x received from NPORT x%x "
8656 "refcnt %d Data: x%x x%x x%x x%x\n",
8657 cmd
, did
, kref_read(&ndlp
->kref
), vport
->port_state
,
8658 vport
->fc_flag
, vport
->fc_myDID
, vport
->fc_prevDID
);
8660 /* reject till our FLOGI completes or PLOGI assigned DID via PT2PT */
8661 if ((vport
->port_state
< LPFC_FABRIC_CFG_LINK
) &&
8662 (cmd
!= ELS_CMD_FLOGI
) &&
8663 !((cmd
== ELS_CMD_PLOGI
) && (vport
->fc_flag
& FC_PT2PT
))) {
8664 rjt_err
= LSRJT_LOGICAL_BSY
;
8665 rjt_exp
= LSEXP_NOTHING_MORE
;
8671 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_UNSOL
,
8672 "RCV PLOGI: did:x%x/ste:x%x flg:x%x",
8673 did
, vport
->port_state
, ndlp
->nlp_flag
);
8675 phba
->fc_stat
.elsRcvPLOGI
++;
8676 ndlp
= lpfc_plogi_confirm_nport(phba
, payload
, ndlp
);
8677 if (phba
->sli_rev
== LPFC_SLI_REV4
&&
8678 (phba
->pport
->fc_flag
& FC_PT2PT
)) {
8679 vport
->fc_prevDID
= vport
->fc_myDID
;
8680 /* Our DID needs to be updated before registering
8681 * the vfi. This is done in lpfc_rcv_plogi but
8682 * that is called after the reg_vfi.
8684 vport
->fc_myDID
= elsiocb
->iocb
.un
.rcvels
.parmRo
;
8685 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_ELS
,
8686 "3312 Remote port assigned DID x%x "
8687 "%x\n", vport
->fc_myDID
,
8691 lpfc_send_els_event(vport
, ndlp
, payload
);
8693 /* If Nport discovery is delayed, reject PLOGIs */
8694 if (vport
->fc_flag
& FC_DISC_DELAYED
) {
8695 rjt_err
= LSRJT_UNABLE_TPC
;
8696 rjt_exp
= LSEXP_NOTHING_MORE
;
8700 if (vport
->port_state
< LPFC_DISC_AUTH
) {
8701 if (!(phba
->pport
->fc_flag
& FC_PT2PT
) ||
8702 (phba
->pport
->fc_flag
& FC_PT2PT_PLOGI
)) {
8703 rjt_err
= LSRJT_UNABLE_TPC
;
8704 rjt_exp
= LSEXP_NOTHING_MORE
;
8709 spin_lock_irq(&ndlp
->lock
);
8710 ndlp
->nlp_flag
&= ~NLP_TARGET_REMOVE
;
8711 spin_unlock_irq(&ndlp
->lock
);
8713 lpfc_disc_state_machine(vport
, ndlp
, elsiocb
,
8718 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_UNSOL
,
8719 "RCV FLOGI: did:x%x/ste:x%x flg:x%x",
8720 did
, vport
->port_state
, ndlp
->nlp_flag
);
8722 phba
->fc_stat
.elsRcvFLOGI
++;
8724 /* If the driver believes fabric discovery is done and is ready,
8725 * bounce the link. There is some descrepancy.
8727 if (vport
->port_state
>= LPFC_LOCAL_CFG_LINK
&&
8728 vport
->fc_flag
& FC_PT2PT
&&
8729 vport
->rcv_flogi_cnt
>= 1) {
8730 rjt_err
= LSRJT_LOGICAL_BSY
;
8731 rjt_exp
= LSEXP_NOTHING_MORE
;
8736 lpfc_els_rcv_flogi(vport
, elsiocb
, ndlp
);
8738 lpfc_disc_state_machine(vport
, ndlp
, NULL
,
8742 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_UNSOL
,
8743 "RCV LOGO: did:x%x/ste:x%x flg:x%x",
8744 did
, vport
->port_state
, ndlp
->nlp_flag
);
8746 phba
->fc_stat
.elsRcvLOGO
++;
8747 lpfc_send_els_event(vport
, ndlp
, payload
);
8748 if (vport
->port_state
< LPFC_DISC_AUTH
) {
8749 rjt_err
= LSRJT_UNABLE_TPC
;
8750 rjt_exp
= LSEXP_NOTHING_MORE
;
8753 lpfc_disc_state_machine(vport
, ndlp
, elsiocb
, NLP_EVT_RCV_LOGO
);
8756 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_UNSOL
,
8757 "RCV PRLO: did:x%x/ste:x%x flg:x%x",
8758 did
, vport
->port_state
, ndlp
->nlp_flag
);
8760 phba
->fc_stat
.elsRcvPRLO
++;
8761 lpfc_send_els_event(vport
, ndlp
, payload
);
8762 if (vport
->port_state
< LPFC_DISC_AUTH
) {
8763 rjt_err
= LSRJT_UNABLE_TPC
;
8764 rjt_exp
= LSEXP_NOTHING_MORE
;
8767 lpfc_disc_state_machine(vport
, ndlp
, elsiocb
, NLP_EVT_RCV_PRLO
);
8770 phba
->fc_stat
.elsRcvLCB
++;
8771 lpfc_els_rcv_lcb(vport
, elsiocb
, ndlp
);
8774 phba
->fc_stat
.elsRcvRDP
++;
8775 lpfc_els_rcv_rdp(vport
, elsiocb
, ndlp
);
8778 phba
->fc_stat
.elsRcvRSCN
++;
8779 lpfc_els_rcv_rscn(vport
, elsiocb
, ndlp
);
8781 lpfc_disc_state_machine(vport
, ndlp
, NULL
,
8785 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_UNSOL
,
8786 "RCV ADISC: did:x%x/ste:x%x flg:x%x",
8787 did
, vport
->port_state
, ndlp
->nlp_flag
);
8789 lpfc_send_els_event(vport
, ndlp
, payload
);
8790 phba
->fc_stat
.elsRcvADISC
++;
8791 if (vport
->port_state
< LPFC_DISC_AUTH
) {
8792 rjt_err
= LSRJT_UNABLE_TPC
;
8793 rjt_exp
= LSEXP_NOTHING_MORE
;
8796 lpfc_disc_state_machine(vport
, ndlp
, elsiocb
,
8800 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_UNSOL
,
8801 "RCV PDISC: did:x%x/ste:x%x flg:x%x",
8802 did
, vport
->port_state
, ndlp
->nlp_flag
);
8804 phba
->fc_stat
.elsRcvPDISC
++;
8805 if (vport
->port_state
< LPFC_DISC_AUTH
) {
8806 rjt_err
= LSRJT_UNABLE_TPC
;
8807 rjt_exp
= LSEXP_NOTHING_MORE
;
8810 lpfc_disc_state_machine(vport
, ndlp
, elsiocb
,
8814 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_UNSOL
,
8815 "RCV FARPR: did:x%x/ste:x%x flg:x%x",
8816 did
, vport
->port_state
, ndlp
->nlp_flag
);
8818 phba
->fc_stat
.elsRcvFARPR
++;
8819 lpfc_els_rcv_farpr(vport
, elsiocb
, ndlp
);
8822 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_UNSOL
,
8823 "RCV FARP: did:x%x/ste:x%x flg:x%x",
8824 did
, vport
->port_state
, ndlp
->nlp_flag
);
8826 phba
->fc_stat
.elsRcvFARP
++;
8827 lpfc_els_rcv_farp(vport
, elsiocb
, ndlp
);
8830 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_UNSOL
,
8831 "RCV FAN: did:x%x/ste:x%x flg:x%x",
8832 did
, vport
->port_state
, ndlp
->nlp_flag
);
8834 phba
->fc_stat
.elsRcvFAN
++;
8835 lpfc_els_rcv_fan(vport
, elsiocb
, ndlp
);
8838 case ELS_CMD_NVMEPRLI
:
8839 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_UNSOL
,
8840 "RCV PRLI: did:x%x/ste:x%x flg:x%x",
8841 did
, vport
->port_state
, ndlp
->nlp_flag
);
8843 phba
->fc_stat
.elsRcvPRLI
++;
8844 if ((vport
->port_state
< LPFC_DISC_AUTH
) &&
8845 (vport
->fc_flag
& FC_FABRIC
)) {
8846 rjt_err
= LSRJT_UNABLE_TPC
;
8847 rjt_exp
= LSEXP_NOTHING_MORE
;
8850 lpfc_disc_state_machine(vport
, ndlp
, elsiocb
, NLP_EVT_RCV_PRLI
);
8853 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_UNSOL
,
8854 "RCV LIRR: did:x%x/ste:x%x flg:x%x",
8855 did
, vport
->port_state
, ndlp
->nlp_flag
);
8857 phba
->fc_stat
.elsRcvLIRR
++;
8858 lpfc_els_rcv_lirr(vport
, elsiocb
, ndlp
);
8860 lpfc_disc_state_machine(vport
, ndlp
, NULL
,
8864 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_UNSOL
,
8865 "RCV RLS: did:x%x/ste:x%x flg:x%x",
8866 did
, vport
->port_state
, ndlp
->nlp_flag
);
8868 phba
->fc_stat
.elsRcvRLS
++;
8869 lpfc_els_rcv_rls(vport
, elsiocb
, ndlp
);
8871 lpfc_disc_state_machine(vport
, ndlp
, NULL
,
8875 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_UNSOL
,
8876 "RCV RPL: did:x%x/ste:x%x flg:x%x",
8877 did
, vport
->port_state
, ndlp
->nlp_flag
);
8879 phba
->fc_stat
.elsRcvRPL
++;
8880 lpfc_els_rcv_rpl(vport
, elsiocb
, ndlp
);
8882 lpfc_disc_state_machine(vport
, ndlp
, NULL
,
8886 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_UNSOL
,
8887 "RCV RNID: did:x%x/ste:x%x flg:x%x",
8888 did
, vport
->port_state
, ndlp
->nlp_flag
);
8890 phba
->fc_stat
.elsRcvRNID
++;
8891 lpfc_els_rcv_rnid(vport
, elsiocb
, ndlp
);
8893 lpfc_disc_state_machine(vport
, ndlp
, NULL
,
8897 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_UNSOL
,
8898 "RCV RTV: did:x%x/ste:x%x flg:x%x",
8899 did
, vport
->port_state
, ndlp
->nlp_flag
);
8900 phba
->fc_stat
.elsRcvRTV
++;
8901 lpfc_els_rcv_rtv(vport
, elsiocb
, ndlp
);
8903 lpfc_disc_state_machine(vport
, ndlp
, NULL
,
8907 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_UNSOL
,
8908 "RCV RRQ: did:x%x/ste:x%x flg:x%x",
8909 did
, vport
->port_state
, ndlp
->nlp_flag
);
8911 phba
->fc_stat
.elsRcvRRQ
++;
8912 lpfc_els_rcv_rrq(vport
, elsiocb
, ndlp
);
8914 lpfc_disc_state_machine(vport
, ndlp
, NULL
,
8918 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_UNSOL
,
8919 "RCV ECHO: did:x%x/ste:x%x flg:x%x",
8920 did
, vport
->port_state
, ndlp
->nlp_flag
);
8922 phba
->fc_stat
.elsRcvECHO
++;
8923 lpfc_els_rcv_echo(vport
, elsiocb
, ndlp
);
8925 lpfc_disc_state_machine(vport
, ndlp
, NULL
,
8929 /* receive this due to exchange closed */
8930 rjt_err
= LSRJT_UNABLE_TPC
;
8931 rjt_exp
= LSEXP_INVALID_OX_RX
;
8934 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_UNSOL
,
8935 "RCV FPIN: did:x%x/ste:x%x flg:x%x",
8936 did
, vport
->port_state
, ndlp
->nlp_flag
);
8938 lpfc_els_rcv_fpin(vport
, (struct fc_els_fpin
*)payload
,
8941 /* There are no replies, so no rjt codes */
8944 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_UNSOL
,
8945 "RCV ELS cmd: cmd:x%x did:x%x/ste:x%x",
8946 cmd
, did
, vport
->port_state
);
8948 /* Unsupported ELS command, reject */
8949 rjt_err
= LSRJT_CMD_UNSUPPORTED
;
8950 rjt_exp
= LSEXP_NOTHING_MORE
;
8952 /* Unknown ELS command <elsCmd> received from NPORT <did> */
8953 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_TRACE_EVENT
,
8954 "0115 Unknown ELS command x%x "
8955 "received from NPORT x%x\n", cmd
, did
);
8957 lpfc_disc_state_machine(vport
, ndlp
, NULL
,
8963 /* check if need to LS_RJT received ELS cmd */
8965 memset(&stat
, 0, sizeof(stat
));
8966 stat
.un
.b
.lsRjtRsnCode
= rjt_err
;
8967 stat
.un
.b
.lsRjtRsnCodeExp
= rjt_exp
;
8968 lpfc_els_rsp_reject(vport
, stat
.un
.lsRjtError
, elsiocb
, ndlp
,
8970 /* Remove the reference from above for new nodes. */
8972 lpfc_disc_state_machine(vport
, ndlp
, NULL
,
8976 /* Release the reference on this elsiocb, not the ndlp. */
8977 lpfc_nlp_put(elsiocb
->context1
);
8978 elsiocb
->context1
= NULL
;
8980 /* Special case. Driver received an unsolicited command that
8981 * unsupportable given the driver's current state. Reset the
8982 * link and start over.
8985 mbox
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
8988 lpfc_linkdown(phba
);
8989 lpfc_init_link(phba
, mbox
,
8991 phba
->cfg_link_speed
);
8992 mbox
->u
.mb
.un
.varInitLnk
.lipsr_AL_PA
= 0;
8993 mbox
->mbox_cmpl
= lpfc_sli_def_mbox_cmpl
;
8994 mbox
->vport
= vport
;
8995 if (lpfc_sli_issue_mbox(phba
, mbox
, MBX_NOWAIT
) ==
8997 mempool_free(mbox
, phba
->mbox_mem_pool
);
9003 if (vport
&& !(vport
->load_flag
& FC_UNLOADING
))
9004 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_TRACE_EVENT
,
9005 "0111 Dropping received ELS cmd "
9006 "Data: x%x x%x x%x\n",
9007 icmd
->ulpStatus
, icmd
->un
.ulpWord
[4], icmd
->ulpTimeout
);
9008 phba
->fc_stat
.elsRcvDrop
++;
9012 * lpfc_els_unsol_event - Process an unsolicited event from an els sli ring
9013 * @phba: pointer to lpfc hba data structure.
9014 * @pring: pointer to a SLI ring.
9015 * @elsiocb: pointer to lpfc els iocb data structure.
9017 * This routine is used to process an unsolicited event received from a SLI
9018 * (Service Level Interface) ring. The actual processing of the data buffer
9019 * associated with the unsolicited event is done by invoking the routine
9020 * lpfc_els_unsol_buffer() after properly set up the iocb buffer from the
9021 * SLI ring on which the unsolicited event was received.
9024 lpfc_els_unsol_event(struct lpfc_hba
*phba
, struct lpfc_sli_ring
*pring
,
9025 struct lpfc_iocbq
*elsiocb
)
9027 struct lpfc_vport
*vport
= phba
->pport
;
9028 IOCB_t
*icmd
= &elsiocb
->iocb
;
9030 struct lpfc_dmabuf
*bdeBuf1
= elsiocb
->context2
;
9031 struct lpfc_dmabuf
*bdeBuf2
= elsiocb
->context3
;
9033 elsiocb
->context1
= NULL
;
9034 elsiocb
->context2
= NULL
;
9035 elsiocb
->context3
= NULL
;
9037 if (icmd
->ulpStatus
== IOSTAT_NEED_BUFFER
) {
9038 lpfc_sli_hbqbuf_add_hbqs(phba
, LPFC_ELS_HBQ
);
9039 } else if (icmd
->ulpStatus
== IOSTAT_LOCAL_REJECT
&&
9040 (icmd
->un
.ulpWord
[4] & IOERR_PARAM_MASK
) ==
9041 IOERR_RCV_BUFFER_WAITING
) {
9042 phba
->fc_stat
.NoRcvBuf
++;
9043 /* Not enough posted buffers; Try posting more buffers */
9044 if (!(phba
->sli3_options
& LPFC_SLI3_HBQ_ENABLED
))
9045 lpfc_post_buffer(phba
, pring
, 0);
9049 if ((phba
->sli3_options
& LPFC_SLI3_NPIV_ENABLED
) &&
9050 (icmd
->ulpCommand
== CMD_IOCB_RCV_ELS64_CX
||
9051 icmd
->ulpCommand
== CMD_IOCB_RCV_SEQ64_CX
)) {
9052 if (icmd
->unsli3
.rcvsli3
.vpi
== 0xffff)
9053 vport
= phba
->pport
;
9055 vport
= lpfc_find_vport_by_vpid(phba
,
9056 icmd
->unsli3
.rcvsli3
.vpi
);
9059 /* If there are no BDEs associated
9060 * with this IOCB, there is nothing to do.
9062 if (icmd
->ulpBdeCount
== 0)
9065 /* type of ELS cmd is first 32bit word
9068 if (phba
->sli3_options
& LPFC_SLI3_HBQ_ENABLED
) {
9069 elsiocb
->context2
= bdeBuf1
;
9071 paddr
= getPaddr(icmd
->un
.cont64
[0].addrHigh
,
9072 icmd
->un
.cont64
[0].addrLow
);
9073 elsiocb
->context2
= lpfc_sli_ringpostbuf_get(phba
, pring
,
9077 lpfc_els_unsol_buffer(phba
, pring
, vport
, elsiocb
);
9079 * The different unsolicited event handlers would tell us
9080 * if they are done with "mp" by setting context2 to NULL.
9082 if (elsiocb
->context2
) {
9083 lpfc_in_buf_free(phba
, (struct lpfc_dmabuf
*)elsiocb
->context2
);
9084 elsiocb
->context2
= NULL
;
9087 /* RCV_ELS64_CX provide for 2 BDEs - process 2nd if included */
9088 if ((phba
->sli3_options
& LPFC_SLI3_HBQ_ENABLED
) &&
9089 icmd
->ulpBdeCount
== 2) {
9090 elsiocb
->context2
= bdeBuf2
;
9091 lpfc_els_unsol_buffer(phba
, pring
, vport
, elsiocb
);
9092 /* free mp if we are done with it */
9093 if (elsiocb
->context2
) {
9094 lpfc_in_buf_free(phba
, elsiocb
->context2
);
9095 elsiocb
->context2
= NULL
;
9101 lpfc_start_fdmi(struct lpfc_vport
*vport
)
9103 struct lpfc_nodelist
*ndlp
;
9105 /* If this is the first time, allocate an ndlp and initialize
9106 * it. Otherwise, make sure the node is enabled and then do the
9109 ndlp
= lpfc_findnode_did(vport
, FDMI_DID
);
9111 ndlp
= lpfc_nlp_init(vport
, FDMI_DID
);
9113 ndlp
->nlp_type
|= NLP_FABRIC
;
9119 lpfc_nlp_set_state(vport
, ndlp
, NLP_STE_PLOGI_ISSUE
);
9120 lpfc_issue_els_plogi(vport
, ndlp
->nlp_DID
, 0);
9124 * lpfc_do_scr_ns_plogi - Issue a plogi to the name server for scr
9125 * @phba: pointer to lpfc hba data structure.
9126 * @vport: pointer to a virtual N_Port data structure.
9128 * This routine issues a Port Login (PLOGI) to the Name Server with
9129 * State Change Request (SCR) for a @vport. This routine will create an
9130 * ndlp for the Name Server associated to the @vport if such node does
9131 * not already exist. The PLOGI to Name Server is issued by invoking the
9132 * lpfc_issue_els_plogi() routine. If Fabric-Device Management Interface
9133 * (FDMI) is configured to the @vport, a FDMI node will be created and
9134 * the PLOGI to FDMI is issued by invoking lpfc_issue_els_plogi() routine.
9137 lpfc_do_scr_ns_plogi(struct lpfc_hba
*phba
, struct lpfc_vport
*vport
)
9139 struct lpfc_nodelist
*ndlp
;
9140 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
9143 * If lpfc_delay_discovery parameter is set and the clean address
9144 * bit is cleared and fc fabric parameters chenged, delay FC NPort
9147 spin_lock_irq(shost
->host_lock
);
9148 if (vport
->fc_flag
& FC_DISC_DELAYED
) {
9149 spin_unlock_irq(shost
->host_lock
);
9150 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_TRACE_EVENT
,
9151 "3334 Delay fc port discovery for %d secs\n",
9153 mod_timer(&vport
->delayed_disc_tmo
,
9154 jiffies
+ msecs_to_jiffies(1000 * phba
->fc_ratov
));
9157 spin_unlock_irq(shost
->host_lock
);
9159 ndlp
= lpfc_findnode_did(vport
, NameServer_DID
);
9161 ndlp
= lpfc_nlp_init(vport
, NameServer_DID
);
9163 if (phba
->fc_topology
== LPFC_TOPOLOGY_LOOP
) {
9164 lpfc_disc_start(vport
);
9167 lpfc_vport_set_state(vport
, FC_VPORT_FAILED
);
9168 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_TRACE_EVENT
,
9169 "0251 NameServer login: no memory\n");
9174 ndlp
->nlp_type
|= NLP_FABRIC
;
9176 lpfc_nlp_set_state(vport
, ndlp
, NLP_STE_PLOGI_ISSUE
);
9178 if (lpfc_issue_els_plogi(vport
, ndlp
->nlp_DID
, 0)) {
9179 lpfc_vport_set_state(vport
, FC_VPORT_FAILED
);
9180 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_TRACE_EVENT
,
9181 "0252 Cannot issue NameServer login\n");
9185 if ((phba
->cfg_enable_SmartSAN
||
9186 (phba
->cfg_fdmi_on
== LPFC_FDMI_SUPPORT
)) &&
9187 (vport
->load_flag
& FC_ALLOW_FDMI
))
9188 lpfc_start_fdmi(vport
);
9192 * lpfc_cmpl_reg_new_vport - Completion callback function to register new vport
9193 * @phba: pointer to lpfc hba data structure.
9194 * @pmb: pointer to the driver internal queue element for mailbox command.
9196 * This routine is the completion callback function to register new vport
9197 * mailbox command. If the new vport mailbox command completes successfully,
9198 * the fabric registration login shall be performed on physical port (the
9199 * new vport created is actually a physical port, with VPI 0) or the port
9200 * login to Name Server for State Change Request (SCR) will be performed
9201 * on virtual port (real virtual port, with VPI greater than 0).
9204 lpfc_cmpl_reg_new_vport(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*pmb
)
9206 struct lpfc_vport
*vport
= pmb
->vport
;
9207 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
9208 struct lpfc_nodelist
*ndlp
= (struct lpfc_nodelist
*)pmb
->ctx_ndlp
;
9209 MAILBOX_t
*mb
= &pmb
->u
.mb
;
9212 spin_lock_irq(shost
->host_lock
);
9213 vport
->fc_flag
&= ~FC_VPORT_NEEDS_REG_VPI
;
9214 spin_unlock_irq(shost
->host_lock
);
9216 if (mb
->mbxStatus
) {
9217 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_TRACE_EVENT
,
9218 "0915 Register VPI failed : Status: x%x"
9219 " upd bit: x%x \n", mb
->mbxStatus
,
9220 mb
->un
.varRegVpi
.upd
);
9221 if (phba
->sli_rev
== LPFC_SLI_REV4
&&
9222 mb
->un
.varRegVpi
.upd
)
9223 goto mbox_err_exit
;
9225 switch (mb
->mbxStatus
) {
9226 case 0x11: /* unsupported feature */
9227 case 0x9603: /* max_vpi exceeded */
9228 case 0x9602: /* Link event since CLEAR_LA */
9229 /* giving up on vport registration */
9230 lpfc_vport_set_state(vport
, FC_VPORT_FAILED
);
9231 spin_lock_irq(shost
->host_lock
);
9232 vport
->fc_flag
&= ~(FC_FABRIC
| FC_PUBLIC_LOOP
);
9233 spin_unlock_irq(shost
->host_lock
);
9234 lpfc_can_disctmo(vport
);
9236 /* If reg_vpi fail with invalid VPI status, re-init VPI */
9238 spin_lock_irq(shost
->host_lock
);
9239 vport
->fc_flag
|= FC_VPORT_NEEDS_REG_VPI
;
9240 spin_unlock_irq(shost
->host_lock
);
9241 lpfc_init_vpi(phba
, pmb
, vport
->vpi
);
9243 pmb
->mbox_cmpl
= lpfc_init_vpi_cmpl
;
9244 rc
= lpfc_sli_issue_mbox(phba
, pmb
,
9246 if (rc
== MBX_NOT_FINISHED
) {
9247 lpfc_printf_vlog(vport
, KERN_ERR
,
9249 "2732 Failed to issue INIT_VPI"
9250 " mailbox command\n");
9257 /* Try to recover from this error */
9258 if (phba
->sli_rev
== LPFC_SLI_REV4
)
9259 lpfc_sli4_unreg_all_rpis(vport
);
9260 lpfc_mbx_unreg_vpi(vport
);
9261 spin_lock_irq(shost
->host_lock
);
9262 vport
->fc_flag
|= FC_VPORT_NEEDS_REG_VPI
;
9263 spin_unlock_irq(shost
->host_lock
);
9264 if (mb
->mbxStatus
== MBX_NOT_FINISHED
)
9266 if ((vport
->port_type
== LPFC_PHYSICAL_PORT
) &&
9267 !(vport
->fc_flag
& FC_LOGO_RCVD_DID_CHNG
)) {
9268 if (phba
->sli_rev
== LPFC_SLI_REV4
)
9269 lpfc_issue_init_vfi(vport
);
9271 lpfc_initial_flogi(vport
);
9273 lpfc_initial_fdisc(vport
);
9278 spin_lock_irq(shost
->host_lock
);
9279 vport
->vpi_state
|= LPFC_VPI_REGISTERED
;
9280 spin_unlock_irq(shost
->host_lock
);
9281 if (vport
== phba
->pport
) {
9282 if (phba
->sli_rev
< LPFC_SLI_REV4
)
9283 lpfc_issue_fabric_reglogin(vport
);
9286 * If the physical port is instantiated using
9287 * FDISC, do not start vport discovery.
9289 if (vport
->port_state
!= LPFC_FDISC
)
9290 lpfc_start_fdiscs(phba
);
9291 lpfc_do_scr_ns_plogi(phba
, vport
);
9294 lpfc_do_scr_ns_plogi(phba
, vport
);
9298 /* Now, we decrement the ndlp reference count held for this
9303 mempool_free(pmb
, phba
->mbox_mem_pool
);
9308 * lpfc_register_new_vport - Register a new vport with a HBA
9309 * @phba: pointer to lpfc hba data structure.
9310 * @vport: pointer to a host virtual N_Port data structure.
9311 * @ndlp: pointer to a node-list data structure.
9313 * This routine registers the @vport as a new virtual port with a HBA.
9314 * It is done through a registering vpi mailbox command.
9317 lpfc_register_new_vport(struct lpfc_hba
*phba
, struct lpfc_vport
*vport
,
9318 struct lpfc_nodelist
*ndlp
)
9320 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
9323 mbox
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
9325 lpfc_reg_vpi(vport
, mbox
);
9326 mbox
->vport
= vport
;
9327 mbox
->ctx_ndlp
= lpfc_nlp_get(ndlp
);
9328 if (!mbox
->ctx_ndlp
) {
9329 mempool_free(mbox
, phba
->mbox_mem_pool
);
9333 mbox
->mbox_cmpl
= lpfc_cmpl_reg_new_vport
;
9334 if (lpfc_sli_issue_mbox(phba
, mbox
, MBX_NOWAIT
)
9335 == MBX_NOT_FINISHED
) {
9336 /* mailbox command not success, decrement ndlp
9337 * reference count for this command
9340 mempool_free(mbox
, phba
->mbox_mem_pool
);
9342 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_TRACE_EVENT
,
9343 "0253 Register VPI: Can't send mbox\n");
9347 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_TRACE_EVENT
,
9348 "0254 Register VPI: no memory\n");
9354 lpfc_vport_set_state(vport
, FC_VPORT_FAILED
);
9355 spin_lock_irq(shost
->host_lock
);
9356 vport
->fc_flag
&= ~FC_VPORT_NEEDS_REG_VPI
;
9357 spin_unlock_irq(shost
->host_lock
);
9362 * lpfc_cancel_all_vport_retry_delay_timer - Cancel all vport retry delay timer
9363 * @phba: pointer to lpfc hba data structure.
9365 * This routine cancels the retry delay timers to all the vports.
9368 lpfc_cancel_all_vport_retry_delay_timer(struct lpfc_hba
*phba
)
9370 struct lpfc_vport
**vports
;
9371 struct lpfc_nodelist
*ndlp
;
9372 uint32_t link_state
;
9375 /* Treat this failure as linkdown for all vports */
9376 link_state
= phba
->link_state
;
9377 lpfc_linkdown(phba
);
9378 phba
->link_state
= link_state
;
9380 vports
= lpfc_create_vport_work_array(phba
);
9383 for (i
= 0; i
<= phba
->max_vports
&& vports
[i
] != NULL
; i
++) {
9384 ndlp
= lpfc_findnode_did(vports
[i
], Fabric_DID
);
9386 lpfc_cancel_retry_delay_tmo(vports
[i
], ndlp
);
9387 lpfc_els_flush_cmd(vports
[i
]);
9389 lpfc_destroy_vport_work_array(phba
, vports
);
9394 * lpfc_retry_pport_discovery - Start timer to retry FLOGI.
9395 * @phba: pointer to lpfc hba data structure.
9397 * This routine abort all pending discovery commands and
9398 * start a timer to retry FLOGI for the physical port
9402 lpfc_retry_pport_discovery(struct lpfc_hba
*phba
)
9404 struct lpfc_nodelist
*ndlp
;
9406 /* Cancel the all vports retry delay retry timers */
9407 lpfc_cancel_all_vport_retry_delay_timer(phba
);
9409 /* If fabric require FLOGI, then re-instantiate physical login */
9410 ndlp
= lpfc_findnode_did(phba
->pport
, Fabric_DID
);
9414 mod_timer(&ndlp
->nlp_delayfunc
, jiffies
+ msecs_to_jiffies(1000));
9415 spin_lock_irq(&ndlp
->lock
);
9416 ndlp
->nlp_flag
|= NLP_DELAY_TMO
;
9417 spin_unlock_irq(&ndlp
->lock
);
9418 ndlp
->nlp_last_elscmd
= ELS_CMD_FLOGI
;
9419 phba
->pport
->port_state
= LPFC_FLOGI
;
9424 * lpfc_fabric_login_reqd - Check if FLOGI required.
9425 * @phba: pointer to lpfc hba data structure.
9426 * @cmdiocb: pointer to FDISC command iocb.
9427 * @rspiocb: pointer to FDISC response iocb.
9429 * This routine checks if a FLOGI is reguired for FDISC
9433 lpfc_fabric_login_reqd(struct lpfc_hba
*phba
,
9434 struct lpfc_iocbq
*cmdiocb
,
9435 struct lpfc_iocbq
*rspiocb
)
9438 if ((rspiocb
->iocb
.ulpStatus
!= IOSTAT_FABRIC_RJT
) ||
9439 (rspiocb
->iocb
.un
.ulpWord
[4] != RJT_LOGIN_REQUIRED
))
9446 * lpfc_cmpl_els_fdisc - Completion function for fdisc iocb command
9447 * @phba: pointer to lpfc hba data structure.
9448 * @cmdiocb: pointer to lpfc command iocb data structure.
9449 * @rspiocb: pointer to lpfc response iocb data structure.
9451 * This routine is the completion callback function to a Fabric Discover
9452 * (FDISC) ELS command. Since all the FDISC ELS commands are issued
9453 * single threaded, each FDISC completion callback function will reset
9454 * the discovery timer for all vports such that the timers will not get
9455 * unnecessary timeout. The function checks the FDISC IOCB status. If error
9456 * detected, the vport will be set to FC_VPORT_FAILED state. Otherwise,the
9457 * vport will set to FC_VPORT_ACTIVE state. It then checks whether the DID
9458 * assigned to the vport has been changed with the completion of the FDISC
9459 * command. If so, both RPI (Remote Port Index) and VPI (Virtual Port Index)
9460 * are unregistered from the HBA, and then the lpfc_register_new_vport()
9461 * routine is invoked to register new vport with the HBA. Otherwise, the
9462 * lpfc_do_scr_ns_plogi() routine is invoked to issue a PLOGI to the Name
9463 * Server for State Change Request (SCR).
9466 lpfc_cmpl_els_fdisc(struct lpfc_hba
*phba
, struct lpfc_iocbq
*cmdiocb
,
9467 struct lpfc_iocbq
*rspiocb
)
9469 struct lpfc_vport
*vport
= cmdiocb
->vport
;
9470 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
9471 struct lpfc_nodelist
*ndlp
= (struct lpfc_nodelist
*) cmdiocb
->context1
;
9472 struct lpfc_nodelist
*np
;
9473 struct lpfc_nodelist
*next_np
;
9474 IOCB_t
*irsp
= &rspiocb
->iocb
;
9475 struct lpfc_iocbq
*piocb
;
9476 struct lpfc_dmabuf
*pcmd
= cmdiocb
->context2
, *prsp
;
9477 struct serv_parm
*sp
;
9478 uint8_t fabric_param_changed
;
9480 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_ELS
,
9481 "0123 FDISC completes. x%x/x%x prevDID: x%x\n",
9482 irsp
->ulpStatus
, irsp
->un
.ulpWord
[4],
9484 /* Since all FDISCs are being single threaded, we
9485 * must reset the discovery timer for ALL vports
9486 * waiting to send FDISC when one completes.
9488 list_for_each_entry(piocb
, &phba
->fabric_iocb_list
, list
) {
9489 lpfc_set_disctmo(piocb
->vport
);
9492 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_CMD
,
9493 "FDISC cmpl: status:x%x/x%x prevdid:x%x",
9494 irsp
->ulpStatus
, irsp
->un
.ulpWord
[4], vport
->fc_prevDID
);
9496 if (irsp
->ulpStatus
) {
9498 if (lpfc_fabric_login_reqd(phba
, cmdiocb
, rspiocb
)) {
9499 lpfc_retry_pport_discovery(phba
);
9503 /* Check for retry */
9504 if (lpfc_els_retry(phba
, cmdiocb
, rspiocb
))
9507 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_TRACE_EVENT
,
9508 "0126 FDISC failed. (x%x/x%x)\n",
9509 irsp
->ulpStatus
, irsp
->un
.ulpWord
[4]);
9512 spin_lock_irq(shost
->host_lock
);
9513 vport
->fc_flag
&= ~FC_VPORT_CVL_RCVD
;
9514 vport
->fc_flag
&= ~FC_VPORT_LOGO_RCVD
;
9515 vport
->fc_flag
|= FC_FABRIC
;
9516 if (vport
->phba
->fc_topology
== LPFC_TOPOLOGY_LOOP
)
9517 vport
->fc_flag
|= FC_PUBLIC_LOOP
;
9518 spin_unlock_irq(shost
->host_lock
);
9520 vport
->fc_myDID
= irsp
->un
.ulpWord
[4] & Mask_DID
;
9521 lpfc_vport_set_state(vport
, FC_VPORT_ACTIVE
);
9522 prsp
= list_get_first(&pcmd
->list
, struct lpfc_dmabuf
, list
);
9525 sp
= prsp
->virt
+ sizeof(uint32_t);
9526 fabric_param_changed
= lpfc_check_clean_addr_bit(vport
, sp
);
9527 memcpy(&vport
->fabric_portname
, &sp
->portName
,
9528 sizeof(struct lpfc_name
));
9529 memcpy(&vport
->fabric_nodename
, &sp
->nodeName
,
9530 sizeof(struct lpfc_name
));
9531 if (fabric_param_changed
&&
9532 !(vport
->fc_flag
& FC_VPORT_NEEDS_REG_VPI
)) {
9533 /* If our NportID changed, we need to ensure all
9534 * remaining NPORTs get unreg_login'ed so we can
9537 list_for_each_entry_safe(np
, next_np
,
9538 &vport
->fc_nodes
, nlp_listp
) {
9539 if ((np
->nlp_state
!= NLP_STE_NPR_NODE
) ||
9540 !(np
->nlp_flag
& NLP_NPR_ADISC
))
9542 spin_lock_irq(&ndlp
->lock
);
9543 np
->nlp_flag
&= ~NLP_NPR_ADISC
;
9544 spin_unlock_irq(&ndlp
->lock
);
9545 lpfc_unreg_rpi(vport
, np
);
9547 lpfc_cleanup_pending_mbox(vport
);
9549 if (phba
->sli_rev
== LPFC_SLI_REV4
)
9550 lpfc_sli4_unreg_all_rpis(vport
);
9552 lpfc_mbx_unreg_vpi(vport
);
9553 spin_lock_irq(shost
->host_lock
);
9554 vport
->fc_flag
|= FC_VPORT_NEEDS_REG_VPI
;
9555 if (phba
->sli_rev
== LPFC_SLI_REV4
)
9556 vport
->fc_flag
|= FC_VPORT_NEEDS_INIT_VPI
;
9558 vport
->fc_flag
|= FC_LOGO_RCVD_DID_CHNG
;
9559 spin_unlock_irq(shost
->host_lock
);
9560 } else if ((phba
->sli_rev
== LPFC_SLI_REV4
) &&
9561 !(vport
->fc_flag
& FC_VPORT_NEEDS_REG_VPI
)) {
9563 * Driver needs to re-reg VPI in order for f/w
9564 * to update the MAC address.
9566 lpfc_register_new_vport(phba
, vport
, ndlp
);
9567 lpfc_nlp_set_state(vport
, ndlp
, NLP_STE_UNMAPPED_NODE
);
9571 if (vport
->fc_flag
& FC_VPORT_NEEDS_INIT_VPI
)
9572 lpfc_issue_init_vpi(vport
);
9573 else if (vport
->fc_flag
& FC_VPORT_NEEDS_REG_VPI
)
9574 lpfc_register_new_vport(phba
, vport
, ndlp
);
9576 lpfc_do_scr_ns_plogi(phba
, vport
);
9578 /* The FDISC completed successfully. Move the fabric ndlp to
9579 * UNMAPPED state and register with the transport.
9581 lpfc_nlp_set_state(vport
, ndlp
, NLP_STE_UNMAPPED_NODE
);
9585 if (vport
->fc_vport
&&
9586 (vport
->fc_vport
->vport_state
!= FC_VPORT_NO_FABRIC_RSCS
))
9587 lpfc_vport_set_state(vport
, FC_VPORT_FAILED
);
9588 /* Cancel discovery timer */
9589 lpfc_can_disctmo(vport
);
9591 lpfc_els_free_iocb(phba
, cmdiocb
);
9596 * lpfc_issue_els_fdisc - Issue a fdisc iocb command
9597 * @vport: pointer to a virtual N_Port data structure.
9598 * @ndlp: pointer to a node-list data structure.
9599 * @retry: number of retries to the command IOCB.
9601 * This routine prepares and issues a Fabric Discover (FDISC) IOCB to
9602 * a remote node (@ndlp) off a @vport. It uses the lpfc_issue_fabric_iocb()
9603 * routine to issue the IOCB, which makes sure only one outstanding fabric
9604 * IOCB will be sent off HBA at any given time.
9606 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
9607 * will be incremented by 1 for holding the ndlp and the reference to ndlp
9608 * will be stored into the context1 field of the IOCB for the completion
9609 * callback function to the FDISC ELS command.
9612 * 0 - Successfully issued fdisc iocb command
9613 * 1 - Failed to issue fdisc iocb command
9616 lpfc_issue_els_fdisc(struct lpfc_vport
*vport
, struct lpfc_nodelist
*ndlp
,
9619 struct lpfc_hba
*phba
= vport
->phba
;
9621 struct lpfc_iocbq
*elsiocb
;
9622 struct serv_parm
*sp
;
9625 int did
= ndlp
->nlp_DID
;
9628 vport
->port_state
= LPFC_FDISC
;
9629 vport
->fc_myDID
= 0;
9630 cmdsize
= (sizeof(uint32_t) + sizeof(struct serv_parm
));
9631 elsiocb
= lpfc_prep_els_iocb(vport
, 1, cmdsize
, retry
, ndlp
, did
,
9634 lpfc_vport_set_state(vport
, FC_VPORT_FAILED
);
9635 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_TRACE_EVENT
,
9636 "0255 Issue FDISC: no IOCB\n");
9640 icmd
= &elsiocb
->iocb
;
9641 icmd
->un
.elsreq64
.myID
= 0;
9642 icmd
->un
.elsreq64
.fl
= 1;
9645 * SLI3 ports require a different context type value than SLI4.
9646 * Catch SLI3 ports here and override the prep.
9648 if (phba
->sli_rev
== LPFC_SLI_REV3
) {
9653 pcmd
= (uint8_t *) (((struct lpfc_dmabuf
*) elsiocb
->context2
)->virt
);
9654 *((uint32_t *) (pcmd
)) = ELS_CMD_FDISC
;
9655 pcmd
+= sizeof(uint32_t); /* CSP Word 1 */
9656 memcpy(pcmd
, &vport
->phba
->pport
->fc_sparam
, sizeof(struct serv_parm
));
9657 sp
= (struct serv_parm
*) pcmd
;
9658 /* Setup CSPs accordingly for Fabric */
9659 sp
->cmn
.e_d_tov
= 0;
9660 sp
->cmn
.w2
.r_a_tov
= 0;
9661 sp
->cmn
.virtual_fabric_support
= 0;
9662 sp
->cls1
.classValid
= 0;
9663 sp
->cls2
.seqDelivery
= 1;
9664 sp
->cls3
.seqDelivery
= 1;
9666 pcmd
+= sizeof(uint32_t); /* CSP Word 2 */
9667 pcmd
+= sizeof(uint32_t); /* CSP Word 3 */
9668 pcmd
+= sizeof(uint32_t); /* CSP Word 4 */
9669 pcmd
+= sizeof(uint32_t); /* Port Name */
9670 memcpy(pcmd
, &vport
->fc_portname
, 8);
9671 pcmd
+= sizeof(uint32_t); /* Node Name */
9672 pcmd
+= sizeof(uint32_t); /* Node Name */
9673 memcpy(pcmd
, &vport
->fc_nodename
, 8);
9674 sp
->cmn
.valid_vendor_ver_level
= 0;
9675 memset(sp
->un
.vendorVersion
, 0, sizeof(sp
->un
.vendorVersion
));
9676 lpfc_set_disctmo(vport
);
9678 phba
->fc_stat
.elsXmitFDISC
++;
9679 elsiocb
->iocb_cmpl
= lpfc_cmpl_els_fdisc
;
9681 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_CMD
,
9682 "Issue FDISC: did:x%x",
9685 elsiocb
->context1
= lpfc_nlp_get(ndlp
);
9686 if (!elsiocb
->context1
)
9689 rc
= lpfc_issue_fabric_iocb(phba
, elsiocb
);
9690 if (rc
== IOCB_ERROR
) {
9695 lpfc_vport_set_state(vport
, FC_VPORT_INITIALIZING
);
9699 lpfc_els_free_iocb(phba
, elsiocb
);
9700 lpfc_vport_set_state(vport
, FC_VPORT_FAILED
);
9701 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_TRACE_EVENT
,
9702 "0256 Issue FDISC: Cannot send IOCB\n");
9707 * lpfc_cmpl_els_npiv_logo - Completion function with vport logo
9708 * @phba: pointer to lpfc hba data structure.
9709 * @cmdiocb: pointer to lpfc command iocb data structure.
9710 * @rspiocb: pointer to lpfc response iocb data structure.
9712 * This routine is the completion callback function to the issuing of a LOGO
9713 * ELS command off a vport. It frees the command IOCB and then decrement the
9714 * reference count held on ndlp for this completion function, indicating that
9715 * the reference to the ndlp is no long needed. Note that the
9716 * lpfc_els_free_iocb() routine decrements the ndlp reference held for this
9717 * callback function and an additional explicit ndlp reference decrementation
9718 * will trigger the actual release of the ndlp.
9721 lpfc_cmpl_els_npiv_logo(struct lpfc_hba
*phba
, struct lpfc_iocbq
*cmdiocb
,
9722 struct lpfc_iocbq
*rspiocb
)
9724 struct lpfc_vport
*vport
= cmdiocb
->vport
;
9726 struct lpfc_nodelist
*ndlp
;
9727 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
9729 ndlp
= (struct lpfc_nodelist
*)cmdiocb
->context1
;
9730 irsp
= &rspiocb
->iocb
;
9731 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_CMD
,
9732 "LOGO npiv cmpl: status:x%x/x%x did:x%x",
9733 irsp
->ulpStatus
, irsp
->un
.ulpWord
[4], irsp
->un
.rcvels
.remoteID
);
9735 /* NPIV LOGO completes to NPort <nlp_DID> */
9736 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_ELS
,
9737 "2928 NPIV LOGO completes to NPort x%x "
9738 "Data: x%x x%x x%x x%x x%x x%x x%x\n",
9739 ndlp
->nlp_DID
, irsp
->ulpStatus
, irsp
->un
.ulpWord
[4],
9740 irsp
->ulpTimeout
, vport
->num_disc_nodes
,
9741 kref_read(&ndlp
->kref
), ndlp
->nlp_flag
,
9742 ndlp
->fc4_xpt_flags
);
9744 if (irsp
->ulpStatus
== IOSTAT_SUCCESS
) {
9745 spin_lock_irq(shost
->host_lock
);
9746 vport
->fc_flag
&= ~FC_NDISC_ACTIVE
;
9747 vport
->fc_flag
&= ~FC_FABRIC
;
9748 spin_unlock_irq(shost
->host_lock
);
9749 lpfc_can_disctmo(vport
);
9752 /* Safe to release resources now. */
9753 lpfc_els_free_iocb(phba
, cmdiocb
);
9755 vport
->unreg_vpi_cmpl
= VPORT_ERROR
;
9759 * lpfc_issue_els_npiv_logo - Issue a logo off a vport
9760 * @vport: pointer to a virtual N_Port data structure.
9761 * @ndlp: pointer to a node-list data structure.
9763 * This routine issues a LOGO ELS command to an @ndlp off a @vport.
9765 * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
9766 * will be incremented by 1 for holding the ndlp and the reference to ndlp
9767 * will be stored into the context1 field of the IOCB for the completion
9768 * callback function to the LOGO ELS command.
9771 * 0 - Successfully issued logo off the @vport
9772 * 1 - Failed to issue logo off the @vport
9775 lpfc_issue_els_npiv_logo(struct lpfc_vport
*vport
, struct lpfc_nodelist
*ndlp
)
9778 struct lpfc_hba
*phba
= vport
->phba
;
9779 struct lpfc_iocbq
*elsiocb
;
9783 cmdsize
= 2 * sizeof(uint32_t) + sizeof(struct lpfc_name
);
9784 elsiocb
= lpfc_prep_els_iocb(vport
, 1, cmdsize
, 0, ndlp
, ndlp
->nlp_DID
,
9789 pcmd
= (uint8_t *) (((struct lpfc_dmabuf
*) elsiocb
->context2
)->virt
);
9790 *((uint32_t *) (pcmd
)) = ELS_CMD_LOGO
;
9791 pcmd
+= sizeof(uint32_t);
9793 /* Fill in LOGO payload */
9794 *((uint32_t *) (pcmd
)) = be32_to_cpu(vport
->fc_myDID
);
9795 pcmd
+= sizeof(uint32_t);
9796 memcpy(pcmd
, &vport
->fc_portname
, sizeof(struct lpfc_name
));
9798 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_CMD
,
9799 "Issue LOGO npiv did:x%x flg:x%x",
9800 ndlp
->nlp_DID
, ndlp
->nlp_flag
, 0);
9802 elsiocb
->iocb_cmpl
= lpfc_cmpl_els_npiv_logo
;
9803 spin_lock_irq(&ndlp
->lock
);
9804 ndlp
->nlp_flag
|= NLP_LOGO_SND
;
9805 spin_unlock_irq(&ndlp
->lock
);
9806 elsiocb
->context1
= lpfc_nlp_get(ndlp
);
9807 if (!elsiocb
->context1
)
9809 rc
= lpfc_sli_issue_iocb(phba
, LPFC_ELS_RING
, elsiocb
, 0);
9810 if (rc
== IOCB_ERROR
)
9817 spin_lock_irq(&ndlp
->lock
);
9818 ndlp
->nlp_flag
&= ~NLP_LOGO_SND
;
9819 spin_unlock_irq(&ndlp
->lock
);
9820 lpfc_els_free_iocb(phba
, elsiocb
);
9825 * lpfc_fabric_block_timeout - Handler function to the fabric block timer
9826 * @t: timer context used to obtain the lpfc hba.
9828 * This routine is invoked by the fabric iocb block timer after
9829 * timeout. It posts the fabric iocb block timeout event by setting the
9830 * WORKER_FABRIC_BLOCK_TMO bit to work port event bitmap and then invokes
9831 * lpfc_worker_wake_up() routine to wake up the worker thread. It is for
9832 * the worker thread to invoke the lpfc_unblock_fabric_iocbs() on the
9833 * posted event WORKER_FABRIC_BLOCK_TMO.
9836 lpfc_fabric_block_timeout(struct timer_list
*t
)
9838 struct lpfc_hba
*phba
= from_timer(phba
, t
, fabric_block_timer
);
9839 unsigned long iflags
;
9840 uint32_t tmo_posted
;
9842 spin_lock_irqsave(&phba
->pport
->work_port_lock
, iflags
);
9843 tmo_posted
= phba
->pport
->work_port_events
& WORKER_FABRIC_BLOCK_TMO
;
9845 phba
->pport
->work_port_events
|= WORKER_FABRIC_BLOCK_TMO
;
9846 spin_unlock_irqrestore(&phba
->pport
->work_port_lock
, iflags
);
9849 lpfc_worker_wake_up(phba
);
9854 * lpfc_resume_fabric_iocbs - Issue a fabric iocb from driver internal list
9855 * @phba: pointer to lpfc hba data structure.
9857 * This routine issues one fabric iocb from the driver internal list to
9858 * the HBA. It first checks whether it's ready to issue one fabric iocb to
9859 * the HBA (whether there is no outstanding fabric iocb). If so, it shall
9860 * remove one pending fabric iocb from the driver internal list and invokes
9861 * lpfc_sli_issue_iocb() routine to send the fabric iocb to the HBA.
9864 lpfc_resume_fabric_iocbs(struct lpfc_hba
*phba
)
9866 struct lpfc_iocbq
*iocb
;
9867 unsigned long iflags
;
9873 spin_lock_irqsave(&phba
->hbalock
, iflags
);
9874 /* Post any pending iocb to the SLI layer */
9875 if (atomic_read(&phba
->fabric_iocb_count
) == 0) {
9876 list_remove_head(&phba
->fabric_iocb_list
, iocb
, typeof(*iocb
),
9879 /* Increment fabric iocb count to hold the position */
9880 atomic_inc(&phba
->fabric_iocb_count
);
9882 spin_unlock_irqrestore(&phba
->hbalock
, iflags
);
9884 iocb
->fabric_iocb_cmpl
= iocb
->iocb_cmpl
;
9885 iocb
->iocb_cmpl
= lpfc_cmpl_fabric_iocb
;
9886 iocb
->iocb_flag
|= LPFC_IO_FABRIC
;
9888 lpfc_debugfs_disc_trc(iocb
->vport
, LPFC_DISC_TRC_ELS_CMD
,
9889 "Fabric sched1: ste:x%x",
9890 iocb
->vport
->port_state
, 0, 0);
9892 ret
= lpfc_sli_issue_iocb(phba
, LPFC_ELS_RING
, iocb
, 0);
9894 if (ret
== IOCB_ERROR
) {
9895 iocb
->iocb_cmpl
= iocb
->fabric_iocb_cmpl
;
9896 iocb
->fabric_iocb_cmpl
= NULL
;
9897 iocb
->iocb_flag
&= ~LPFC_IO_FABRIC
;
9899 cmd
->ulpStatus
= IOSTAT_LOCAL_REJECT
;
9900 cmd
->un
.ulpWord
[4] = IOERR_SLI_ABORTED
;
9901 iocb
->iocb_cmpl(phba
, iocb
, iocb
);
9903 atomic_dec(&phba
->fabric_iocb_count
);
9910 * lpfc_unblock_fabric_iocbs - Unblock issuing fabric iocb command
9911 * @phba: pointer to lpfc hba data structure.
9913 * This routine unblocks the issuing fabric iocb command. The function
9914 * will clear the fabric iocb block bit and then invoke the routine
9915 * lpfc_resume_fabric_iocbs() to issue one of the pending fabric iocb
9916 * from the driver internal fabric iocb list.
9919 lpfc_unblock_fabric_iocbs(struct lpfc_hba
*phba
)
9921 clear_bit(FABRIC_COMANDS_BLOCKED
, &phba
->bit_flags
);
9923 lpfc_resume_fabric_iocbs(phba
);
9928 * lpfc_block_fabric_iocbs - Block issuing fabric iocb command
9929 * @phba: pointer to lpfc hba data structure.
9931 * This routine blocks the issuing fabric iocb for a specified amount of
9932 * time (currently 100 ms). This is done by set the fabric iocb block bit
9933 * and set up a timeout timer for 100ms. When the block bit is set, no more
9934 * fabric iocb will be issued out of the HBA.
9937 lpfc_block_fabric_iocbs(struct lpfc_hba
*phba
)
9941 blocked
= test_and_set_bit(FABRIC_COMANDS_BLOCKED
, &phba
->bit_flags
);
9942 /* Start a timer to unblock fabric iocbs after 100ms */
9944 mod_timer(&phba
->fabric_block_timer
,
9945 jiffies
+ msecs_to_jiffies(100));
9951 * lpfc_cmpl_fabric_iocb - Completion callback function for fabric iocb
9952 * @phba: pointer to lpfc hba data structure.
9953 * @cmdiocb: pointer to lpfc command iocb data structure.
9954 * @rspiocb: pointer to lpfc response iocb data structure.
9956 * This routine is the callback function that is put to the fabric iocb's
9957 * callback function pointer (iocb->iocb_cmpl). The original iocb's callback
9958 * function pointer has been stored in iocb->fabric_iocb_cmpl. This callback
9959 * function first restores and invokes the original iocb's callback function
9960 * and then invokes the lpfc_resume_fabric_iocbs() routine to issue the next
9961 * fabric bound iocb from the driver internal fabric iocb list onto the wire.
9964 lpfc_cmpl_fabric_iocb(struct lpfc_hba
*phba
, struct lpfc_iocbq
*cmdiocb
,
9965 struct lpfc_iocbq
*rspiocb
)
9969 BUG_ON((cmdiocb
->iocb_flag
& LPFC_IO_FABRIC
) != LPFC_IO_FABRIC
);
9971 switch (rspiocb
->iocb
.ulpStatus
) {
9972 case IOSTAT_NPORT_RJT
:
9973 case IOSTAT_FABRIC_RJT
:
9974 if (rspiocb
->iocb
.un
.ulpWord
[4] & RJT_UNAVAIL_TEMP
) {
9975 lpfc_block_fabric_iocbs(phba
);
9979 case IOSTAT_NPORT_BSY
:
9980 case IOSTAT_FABRIC_BSY
:
9981 lpfc_block_fabric_iocbs(phba
);
9985 stat
.un
.lsRjtError
=
9986 be32_to_cpu(rspiocb
->iocb
.un
.ulpWord
[4]);
9987 if ((stat
.un
.b
.lsRjtRsnCode
== LSRJT_UNABLE_TPC
) ||
9988 (stat
.un
.b
.lsRjtRsnCode
== LSRJT_LOGICAL_BSY
))
9989 lpfc_block_fabric_iocbs(phba
);
9993 BUG_ON(atomic_read(&phba
->fabric_iocb_count
) == 0);
9995 cmdiocb
->iocb_cmpl
= cmdiocb
->fabric_iocb_cmpl
;
9996 cmdiocb
->fabric_iocb_cmpl
= NULL
;
9997 cmdiocb
->iocb_flag
&= ~LPFC_IO_FABRIC
;
9998 cmdiocb
->iocb_cmpl(phba
, cmdiocb
, rspiocb
);
10000 atomic_dec(&phba
->fabric_iocb_count
);
10001 if (!test_bit(FABRIC_COMANDS_BLOCKED
, &phba
->bit_flags
)) {
10002 /* Post any pending iocbs to HBA */
10003 lpfc_resume_fabric_iocbs(phba
);
10008 * lpfc_issue_fabric_iocb - Issue a fabric iocb command
10009 * @phba: pointer to lpfc hba data structure.
10010 * @iocb: pointer to lpfc command iocb data structure.
10012 * This routine is used as the top-level API for issuing a fabric iocb command
10013 * such as FLOGI and FDISC. To accommodate certain switch fabric, this driver
10014 * function makes sure that only one fabric bound iocb will be outstanding at
10015 * any given time. As such, this function will first check to see whether there
10016 * is already an outstanding fabric iocb on the wire. If so, it will put the
10017 * newly issued iocb onto the driver internal fabric iocb list, waiting to be
10018 * issued later. Otherwise, it will issue the iocb on the wire and update the
10019 * fabric iocb count it indicate that there is one fabric iocb on the wire.
10021 * Note, this implementation has a potential sending out fabric IOCBs out of
10022 * order. The problem is caused by the construction of the "ready" boolen does
10023 * not include the condition that the internal fabric IOCB list is empty. As
10024 * such, it is possible a fabric IOCB issued by this routine might be "jump"
10025 * ahead of the fabric IOCBs in the internal list.
10028 * IOCB_SUCCESS - either fabric iocb put on the list or issued successfully
10029 * IOCB_ERROR - failed to issue fabric iocb
10032 lpfc_issue_fabric_iocb(struct lpfc_hba
*phba
, struct lpfc_iocbq
*iocb
)
10034 unsigned long iflags
;
10038 BUG_ON(atomic_read(&phba
->fabric_iocb_count
) > 1);
10040 spin_lock_irqsave(&phba
->hbalock
, iflags
);
10041 ready
= atomic_read(&phba
->fabric_iocb_count
) == 0 &&
10042 !test_bit(FABRIC_COMANDS_BLOCKED
, &phba
->bit_flags
);
10045 /* Increment fabric iocb count to hold the position */
10046 atomic_inc(&phba
->fabric_iocb_count
);
10047 spin_unlock_irqrestore(&phba
->hbalock
, iflags
);
10049 iocb
->fabric_iocb_cmpl
= iocb
->iocb_cmpl
;
10050 iocb
->iocb_cmpl
= lpfc_cmpl_fabric_iocb
;
10051 iocb
->iocb_flag
|= LPFC_IO_FABRIC
;
10053 lpfc_debugfs_disc_trc(iocb
->vport
, LPFC_DISC_TRC_ELS_CMD
,
10054 "Fabric sched2: ste:x%x",
10055 iocb
->vport
->port_state
, 0, 0);
10057 ret
= lpfc_sli_issue_iocb(phba
, LPFC_ELS_RING
, iocb
, 0);
10059 if (ret
== IOCB_ERROR
) {
10060 iocb
->iocb_cmpl
= iocb
->fabric_iocb_cmpl
;
10061 iocb
->fabric_iocb_cmpl
= NULL
;
10062 iocb
->iocb_flag
&= ~LPFC_IO_FABRIC
;
10063 atomic_dec(&phba
->fabric_iocb_count
);
10066 spin_lock_irqsave(&phba
->hbalock
, iflags
);
10067 list_add_tail(&iocb
->list
, &phba
->fabric_iocb_list
);
10068 spin_unlock_irqrestore(&phba
->hbalock
, iflags
);
10069 ret
= IOCB_SUCCESS
;
10075 * lpfc_fabric_abort_vport - Abort a vport's iocbs from driver fabric iocb list
10076 * @vport: pointer to a virtual N_Port data structure.
10078 * This routine aborts all the IOCBs associated with a @vport from the
10079 * driver internal fabric IOCB list. The list contains fabric IOCBs to be
10080 * issued to the ELS IOCB ring. This abort function walks the fabric IOCB
10081 * list, removes each IOCB associated with the @vport off the list, set the
10082 * status feild to IOSTAT_LOCAL_REJECT, and invokes the callback function
10083 * associated with the IOCB.
10085 static void lpfc_fabric_abort_vport(struct lpfc_vport
*vport
)
10087 LIST_HEAD(completions
);
10088 struct lpfc_hba
*phba
= vport
->phba
;
10089 struct lpfc_iocbq
*tmp_iocb
, *piocb
;
10091 spin_lock_irq(&phba
->hbalock
);
10092 list_for_each_entry_safe(piocb
, tmp_iocb
, &phba
->fabric_iocb_list
,
10095 if (piocb
->vport
!= vport
)
10098 list_move_tail(&piocb
->list
, &completions
);
10100 spin_unlock_irq(&phba
->hbalock
);
10102 /* Cancel all the IOCBs from the completions list */
10103 lpfc_sli_cancel_iocbs(phba
, &completions
, IOSTAT_LOCAL_REJECT
,
10104 IOERR_SLI_ABORTED
);
10108 * lpfc_fabric_abort_nport - Abort a ndlp's iocbs from driver fabric iocb list
10109 * @ndlp: pointer to a node-list data structure.
10111 * This routine aborts all the IOCBs associated with an @ndlp from the
10112 * driver internal fabric IOCB list. The list contains fabric IOCBs to be
10113 * issued to the ELS IOCB ring. This abort function walks the fabric IOCB
10114 * list, removes each IOCB associated with the @ndlp off the list, set the
10115 * status feild to IOSTAT_LOCAL_REJECT, and invokes the callback function
10116 * associated with the IOCB.
10118 void lpfc_fabric_abort_nport(struct lpfc_nodelist
*ndlp
)
10120 LIST_HEAD(completions
);
10121 struct lpfc_hba
*phba
= ndlp
->phba
;
10122 struct lpfc_iocbq
*tmp_iocb
, *piocb
;
10123 struct lpfc_sli_ring
*pring
;
10125 pring
= lpfc_phba_elsring(phba
);
10127 if (unlikely(!pring
))
10130 spin_lock_irq(&phba
->hbalock
);
10131 list_for_each_entry_safe(piocb
, tmp_iocb
, &phba
->fabric_iocb_list
,
10133 if ((lpfc_check_sli_ndlp(phba
, pring
, piocb
, ndlp
))) {
10135 list_move_tail(&piocb
->list
, &completions
);
10138 spin_unlock_irq(&phba
->hbalock
);
10140 /* Cancel all the IOCBs from the completions list */
10141 lpfc_sli_cancel_iocbs(phba
, &completions
, IOSTAT_LOCAL_REJECT
,
10142 IOERR_SLI_ABORTED
);
10146 * lpfc_fabric_abort_hba - Abort all iocbs on driver fabric iocb list
10147 * @phba: pointer to lpfc hba data structure.
10149 * This routine aborts all the IOCBs currently on the driver internal
10150 * fabric IOCB list. The list contains fabric IOCBs to be issued to the ELS
10151 * IOCB ring. This function takes the entire IOCB list off the fabric IOCB
10152 * list, removes IOCBs off the list, set the status feild to
10153 * IOSTAT_LOCAL_REJECT, and invokes the callback function associated with
10156 void lpfc_fabric_abort_hba(struct lpfc_hba
*phba
)
10158 LIST_HEAD(completions
);
10160 spin_lock_irq(&phba
->hbalock
);
10161 list_splice_init(&phba
->fabric_iocb_list
, &completions
);
10162 spin_unlock_irq(&phba
->hbalock
);
10164 /* Cancel all the IOCBs from the completions list */
10165 lpfc_sli_cancel_iocbs(phba
, &completions
, IOSTAT_LOCAL_REJECT
,
10166 IOERR_SLI_ABORTED
);
10170 * lpfc_sli4_vport_delete_els_xri_aborted -Remove all ndlp references for vport
10171 * @vport: pointer to lpfc vport data structure.
10173 * This routine is invoked by the vport cleanup for deletions and the cleanup
10174 * for an ndlp on removal.
10177 lpfc_sli4_vport_delete_els_xri_aborted(struct lpfc_vport
*vport
)
10179 struct lpfc_hba
*phba
= vport
->phba
;
10180 struct lpfc_sglq
*sglq_entry
= NULL
, *sglq_next
= NULL
;
10181 unsigned long iflag
= 0;
10183 spin_lock_irqsave(&phba
->hbalock
, iflag
);
10184 spin_lock(&phba
->sli4_hba
.sgl_list_lock
);
10185 list_for_each_entry_safe(sglq_entry
, sglq_next
,
10186 &phba
->sli4_hba
.lpfc_abts_els_sgl_list
, list
) {
10187 if (sglq_entry
->ndlp
&& sglq_entry
->ndlp
->vport
== vport
) {
10188 lpfc_nlp_put(sglq_entry
->ndlp
);
10189 sglq_entry
->ndlp
= NULL
;
10192 spin_unlock(&phba
->sli4_hba
.sgl_list_lock
);
10193 spin_unlock_irqrestore(&phba
->hbalock
, iflag
);
10198 * lpfc_sli4_els_xri_aborted - Slow-path process of els xri abort
10199 * @phba: pointer to lpfc hba data structure.
10200 * @axri: pointer to the els xri abort wcqe structure.
10202 * This routine is invoked by the worker thread to process a SLI4 slow-path
10206 lpfc_sli4_els_xri_aborted(struct lpfc_hba
*phba
,
10207 struct sli4_wcqe_xri_aborted
*axri
)
10209 uint16_t xri
= bf_get(lpfc_wcqe_xa_xri
, axri
);
10210 uint16_t rxid
= bf_get(lpfc_wcqe_xa_remote_xid
, axri
);
10213 struct lpfc_sglq
*sglq_entry
= NULL
, *sglq_next
= NULL
;
10214 unsigned long iflag
= 0;
10215 struct lpfc_nodelist
*ndlp
;
10216 struct lpfc_sli_ring
*pring
;
10218 pring
= lpfc_phba_elsring(phba
);
10220 spin_lock_irqsave(&phba
->hbalock
, iflag
);
10221 spin_lock(&phba
->sli4_hba
.sgl_list_lock
);
10222 list_for_each_entry_safe(sglq_entry
, sglq_next
,
10223 &phba
->sli4_hba
.lpfc_abts_els_sgl_list
, list
) {
10224 if (sglq_entry
->sli4_xritag
== xri
) {
10225 list_del(&sglq_entry
->list
);
10226 ndlp
= sglq_entry
->ndlp
;
10227 sglq_entry
->ndlp
= NULL
;
10228 list_add_tail(&sglq_entry
->list
,
10229 &phba
->sli4_hba
.lpfc_els_sgl_list
);
10230 sglq_entry
->state
= SGL_FREED
;
10231 spin_unlock(&phba
->sli4_hba
.sgl_list_lock
);
10232 spin_unlock_irqrestore(&phba
->hbalock
, iflag
);
10235 lpfc_set_rrq_active(phba
, ndlp
,
10236 sglq_entry
->sli4_lxritag
,
10238 lpfc_nlp_put(ndlp
);
10241 /* Check if TXQ queue needs to be serviced */
10242 if (pring
&& !list_empty(&pring
->txq
))
10243 lpfc_worker_wake_up(phba
);
10247 spin_unlock(&phba
->sli4_hba
.sgl_list_lock
);
10248 lxri
= lpfc_sli4_xri_inrange(phba
, xri
);
10249 if (lxri
== NO_XRI
) {
10250 spin_unlock_irqrestore(&phba
->hbalock
, iflag
);
10253 spin_lock(&phba
->sli4_hba
.sgl_list_lock
);
10254 sglq_entry
= __lpfc_get_active_sglq(phba
, lxri
);
10255 if (!sglq_entry
|| (sglq_entry
->sli4_xritag
!= xri
)) {
10256 spin_unlock(&phba
->sli4_hba
.sgl_list_lock
);
10257 spin_unlock_irqrestore(&phba
->hbalock
, iflag
);
10260 sglq_entry
->state
= SGL_XRI_ABORTED
;
10261 spin_unlock(&phba
->sli4_hba
.sgl_list_lock
);
10262 spin_unlock_irqrestore(&phba
->hbalock
, iflag
);
10266 /* lpfc_sli_abts_recover_port - Recover a port that failed a BLS_ABORT req.
10267 * @vport: pointer to virtual port object.
10268 * @ndlp: nodelist pointer for the impacted node.
10270 * The driver calls this routine in response to an SLI4 XRI ABORT CQE
10271 * or an SLI3 ASYNC_STATUS_CN event from the port. For either event,
10272 * the driver is required to send a LOGO to the remote node before it
10273 * attempts to recover its login to the remote node.
10276 lpfc_sli_abts_recover_port(struct lpfc_vport
*vport
,
10277 struct lpfc_nodelist
*ndlp
)
10279 struct Scsi_Host
*shost
;
10280 struct lpfc_hba
*phba
;
10281 unsigned long flags
= 0;
10283 shost
= lpfc_shost_from_vport(vport
);
10284 phba
= vport
->phba
;
10285 if (ndlp
->nlp_state
!= NLP_STE_MAPPED_NODE
) {
10286 lpfc_printf_log(phba
, KERN_INFO
,
10287 LOG_SLI
, "3093 No rport recovery needed. "
10288 "rport in state 0x%x\n", ndlp
->nlp_state
);
10291 lpfc_printf_log(phba
, KERN_ERR
, LOG_TRACE_EVENT
,
10292 "3094 Start rport recovery on shost id 0x%x "
10293 "fc_id 0x%06x vpi 0x%x rpi 0x%x state 0x%x "
10295 shost
->host_no
, ndlp
->nlp_DID
,
10296 vport
->vpi
, ndlp
->nlp_rpi
, ndlp
->nlp_state
,
10299 * The rport is not responding. Remove the FCP-2 flag to prevent
10300 * an ADISC in the follow-up recovery code.
10302 spin_lock_irqsave(&ndlp
->lock
, flags
);
10303 ndlp
->nlp_fcp_info
&= ~NLP_FCP_2_DEVICE
;
10304 ndlp
->nlp_flag
|= NLP_ISSUE_LOGO
;
10305 spin_unlock_irqrestore(&ndlp
->lock
, flags
);
10306 lpfc_unreg_rpi(vport
, ndlp
);