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