]> bbs.cooldavid.org Git - net-next-2.6.git/blob - drivers/scsi/lpfc/lpfc_els.c
xen: do not release any memory under 1M in domain 0
[net-next-2.6.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) 2004-2009 Emulex.  All rights reserved.           *
5  * EMULEX and SLI are trademarks of Emulex.                        *
6  * www.emulex.com                                                  *
7  * Portions Copyright (C) 2004-2005 Christoph Hellwig              *
8  *                                                                 *
9  * This program is free software; you can redistribute it and/or   *
10  * modify it under the terms of version 2 of the GNU General       *
11  * Public License as published by the Free Software Foundation.    *
12  * This program is distributed in the hope that it will be useful. *
13  * ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND          *
14  * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY,  *
15  * FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE      *
16  * DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD *
17  * TO BE LEGALLY INVALID.  See the GNU General Public License for  *
18  * more details, a copy of which can be found in the file COPYING  *
19  * included with this package.                                     *
20  *******************************************************************/
21 /* See Fibre Channel protocol T11 FC-LS for details */
22 #include <linux/blkdev.h>
23 #include <linux/pci.h>
24 #include <linux/slab.h>
25 #include <linux/interrupt.h>
26
27 #include <scsi/scsi.h>
28 #include <scsi/scsi_device.h>
29 #include <scsi/scsi_host.h>
30 #include <scsi/scsi_transport_fc.h>
31
32 #include "lpfc_hw4.h"
33 #include "lpfc_hw.h"
34 #include "lpfc_sli.h"
35 #include "lpfc_sli4.h"
36 #include "lpfc_nl.h"
37 #include "lpfc_disc.h"
38 #include "lpfc_scsi.h"
39 #include "lpfc.h"
40 #include "lpfc_logmsg.h"
41 #include "lpfc_crtn.h"
42 #include "lpfc_vport.h"
43 #include "lpfc_debugfs.h"
44
45 static int lpfc_els_retry(struct lpfc_hba *, struct lpfc_iocbq *,
46                           struct lpfc_iocbq *);
47 static void lpfc_cmpl_fabric_iocb(struct lpfc_hba *, struct lpfc_iocbq *,
48                         struct lpfc_iocbq *);
49 static void lpfc_fabric_abort_vport(struct lpfc_vport *vport);
50 static int lpfc_issue_els_fdisc(struct lpfc_vport *vport,
51                                 struct lpfc_nodelist *ndlp, uint8_t retry);
52 static int lpfc_issue_fabric_iocb(struct lpfc_hba *phba,
53                                   struct lpfc_iocbq *iocb);
54
55 static int lpfc_max_els_tries = 3;
56
57 /**
58  * lpfc_els_chk_latt - Check host link attention event for a vport
59  * @vport: pointer to a host virtual N_Port data structure.
60  *
61  * This routine checks whether there is an outstanding host link
62  * attention event during the discovery process with the @vport. It is done
63  * by reading the HBA's Host Attention (HA) register. If there is any host
64  * link attention events during this @vport's discovery process, the @vport
65  * shall be marked as FC_ABORT_DISCOVERY, a host link attention clear shall
66  * be issued if the link state is not already in host link cleared state,
67  * and a return code shall indicate whether the host link attention event
68  * had happened.
69  *
70  * Note that, if either the host link is in state LPFC_LINK_DOWN or @vport
71  * state in LPFC_VPORT_READY, the request for checking host link attention
72  * event will be ignored and a return code shall indicate no host link
73  * attention event had happened.
74  *
75  * Return codes
76  *   0 - no host link attention event happened
77  *   1 - host link attention event happened
78  **/
79 int
80 lpfc_els_chk_latt(struct lpfc_vport *vport)
81 {
82         struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
83         struct lpfc_hba  *phba = vport->phba;
84         uint32_t ha_copy;
85
86         if (vport->port_state >= LPFC_VPORT_READY ||
87             phba->link_state == LPFC_LINK_DOWN ||
88             phba->sli_rev > LPFC_SLI_REV3)
89                 return 0;
90
91         /* Read the HBA Host Attention Register */
92         ha_copy = readl(phba->HAregaddr);
93
94         if (!(ha_copy & HA_LATT))
95                 return 0;
96
97         /* Pending Link Event during Discovery */
98         lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
99                          "0237 Pending Link Event during "
100                          "Discovery: State x%x\n",
101                          phba->pport->port_state);
102
103         /* CLEAR_LA should re-enable link attention events and
104          * we should then imediately take a LATT event. The
105          * LATT processing should call lpfc_linkdown() which
106          * will cleanup any left over in-progress discovery
107          * events.
108          */
109         spin_lock_irq(shost->host_lock);
110         vport->fc_flag |= FC_ABORT_DISCOVERY;
111         spin_unlock_irq(shost->host_lock);
112
113         if (phba->link_state != LPFC_CLEAR_LA)
114                 lpfc_issue_clear_la(phba, vport);
115
116         return 1;
117 }
118
119 /**
120  * lpfc_prep_els_iocb - Allocate and prepare a lpfc iocb data structure
121  * @vport: pointer to a host virtual N_Port data structure.
122  * @expectRsp: flag indicating whether response is expected.
123  * @cmdSize: size of the ELS command.
124  * @retry: number of retries to the command IOCB when it fails.
125  * @ndlp: pointer to a node-list data structure.
126  * @did: destination identifier.
127  * @elscmd: the ELS command code.
128  *
129  * This routine is used for allocating a lpfc-IOCB data structure from
130  * the driver lpfc-IOCB free-list and prepare the IOCB with the parameters
131  * passed into the routine for discovery state machine to issue an Extended
132  * Link Service (ELS) commands. It is a generic lpfc-IOCB allocation
133  * and preparation routine that is used by all the discovery state machine
134  * routines and the ELS command-specific fields will be later set up by
135  * the individual discovery machine routines after calling this routine
136  * allocating and preparing a generic IOCB data structure. It fills in the
137  * Buffer Descriptor Entries (BDEs), allocates buffers for both command
138  * payload and response payload (if expected). The reference count on the
139  * ndlp is incremented by 1 and the reference to the ndlp is put into
140  * context1 of the IOCB data structure for this IOCB to hold the ndlp
141  * reference for the command's callback function to access later.
142  *
143  * Return code
144  *   Pointer to the newly allocated/prepared els iocb data structure
145  *   NULL - when els iocb data structure allocation/preparation failed
146  **/
147 struct lpfc_iocbq *
148 lpfc_prep_els_iocb(struct lpfc_vport *vport, uint8_t expectRsp,
149                    uint16_t cmdSize, uint8_t retry,
150                    struct lpfc_nodelist *ndlp, uint32_t did,
151                    uint32_t elscmd)
152 {
153         struct lpfc_hba  *phba = vport->phba;
154         struct lpfc_iocbq *elsiocb;
155         struct lpfc_dmabuf *pcmd, *prsp, *pbuflist;
156         struct ulp_bde64 *bpl;
157         IOCB_t *icmd;
158
159
160         if (!lpfc_is_link_up(phba))
161                 return NULL;
162
163         /* Allocate buffer for  command iocb */
164         elsiocb = lpfc_sli_get_iocbq(phba);
165
166         if (elsiocb == NULL)
167                 return NULL;
168
169         /*
170          * If this command is for fabric controller and HBA running
171          * in FIP mode send FLOGI, FDISC and LOGO as FIP frames.
172          */
173         if ((did == Fabric_DID) &&
174                 (phba->hba_flag & HBA_FIP_SUPPORT) &&
175                 ((elscmd == ELS_CMD_FLOGI) ||
176                  (elscmd == ELS_CMD_FDISC) ||
177                  (elscmd == ELS_CMD_LOGO)))
178                 switch (elscmd) {
179                 case ELS_CMD_FLOGI:
180                 elsiocb->iocb_flag |= ((ELS_ID_FLOGI << LPFC_FIP_ELS_ID_SHIFT)
181                                         & LPFC_FIP_ELS_ID_MASK);
182                 break;
183                 case ELS_CMD_FDISC:
184                 elsiocb->iocb_flag |= ((ELS_ID_FDISC << LPFC_FIP_ELS_ID_SHIFT)
185                                         & LPFC_FIP_ELS_ID_MASK);
186                 break;
187                 case ELS_CMD_LOGO:
188                 elsiocb->iocb_flag |= ((ELS_ID_LOGO << LPFC_FIP_ELS_ID_SHIFT)
189                                         & LPFC_FIP_ELS_ID_MASK);
190                 break;
191                 }
192         else
193                 elsiocb->iocb_flag &= ~LPFC_FIP_ELS_ID_MASK;
194
195         icmd = &elsiocb->iocb;
196
197         /* fill in BDEs for command */
198         /* Allocate buffer for command payload */
199         pcmd = kmalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
200         if (pcmd)
201                 pcmd->virt = lpfc_mbuf_alloc(phba, MEM_PRI, &pcmd->phys);
202         if (!pcmd || !pcmd->virt)
203                 goto els_iocb_free_pcmb_exit;
204
205         INIT_LIST_HEAD(&pcmd->list);
206
207         /* Allocate buffer for response payload */
208         if (expectRsp) {
209                 prsp = kmalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
210                 if (prsp)
211                         prsp->virt = lpfc_mbuf_alloc(phba, MEM_PRI,
212                                                      &prsp->phys);
213                 if (!prsp || !prsp->virt)
214                         goto els_iocb_free_prsp_exit;
215                 INIT_LIST_HEAD(&prsp->list);
216         } else
217                 prsp = NULL;
218
219         /* Allocate buffer for Buffer ptr list */
220         pbuflist = kmalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
221         if (pbuflist)
222                 pbuflist->virt = lpfc_mbuf_alloc(phba, MEM_PRI,
223                                                  &pbuflist->phys);
224         if (!pbuflist || !pbuflist->virt)
225                 goto els_iocb_free_pbuf_exit;
226
227         INIT_LIST_HEAD(&pbuflist->list);
228
229         icmd->un.elsreq64.bdl.addrHigh = putPaddrHigh(pbuflist->phys);
230         icmd->un.elsreq64.bdl.addrLow = putPaddrLow(pbuflist->phys);
231         icmd->un.elsreq64.bdl.bdeFlags = BUFF_TYPE_BLP_64;
232         icmd->un.elsreq64.remoteID = did;       /* DID */
233         if (expectRsp) {
234                 icmd->un.elsreq64.bdl.bdeSize = (2 * sizeof(struct ulp_bde64));
235                 icmd->ulpCommand = CMD_ELS_REQUEST64_CR;
236                 icmd->ulpTimeout = phba->fc_ratov * 2;
237         } else {
238                 icmd->un.elsreq64.bdl.bdeSize = sizeof(struct ulp_bde64);
239                 icmd->ulpCommand = CMD_XMIT_ELS_RSP64_CX;
240         }
241         icmd->ulpBdeCount = 1;
242         icmd->ulpLe = 1;
243         icmd->ulpClass = CLASS3;
244
245         if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) {
246                 icmd->un.elsreq64.myID = vport->fc_myDID;
247
248                 /* For ELS_REQUEST64_CR, use the VPI by default */
249                 icmd->ulpContext = vport->vpi + phba->vpi_base;
250                 icmd->ulpCt_h = 0;
251                 /* The CT field must be 0=INVALID_RPI for the ECHO cmd */
252                 if (elscmd == ELS_CMD_ECHO)
253                         icmd->ulpCt_l = 0; /* context = invalid RPI */
254                 else
255                         icmd->ulpCt_l = 1; /* context = VPI */
256         }
257
258         bpl = (struct ulp_bde64 *) pbuflist->virt;
259         bpl->addrLow = le32_to_cpu(putPaddrLow(pcmd->phys));
260         bpl->addrHigh = le32_to_cpu(putPaddrHigh(pcmd->phys));
261         bpl->tus.f.bdeSize = cmdSize;
262         bpl->tus.f.bdeFlags = 0;
263         bpl->tus.w = le32_to_cpu(bpl->tus.w);
264
265         if (expectRsp) {
266                 bpl++;
267                 bpl->addrLow = le32_to_cpu(putPaddrLow(prsp->phys));
268                 bpl->addrHigh = le32_to_cpu(putPaddrHigh(prsp->phys));
269                 bpl->tus.f.bdeSize = FCELSSIZE;
270                 bpl->tus.f.bdeFlags = BUFF_TYPE_BDE_64;
271                 bpl->tus.w = le32_to_cpu(bpl->tus.w);
272         }
273
274         /* prevent preparing iocb with NULL ndlp reference */
275         elsiocb->context1 = lpfc_nlp_get(ndlp);
276         if (!elsiocb->context1)
277                 goto els_iocb_free_pbuf_exit;
278         elsiocb->context2 = pcmd;
279         elsiocb->context3 = pbuflist;
280         elsiocb->retry = retry;
281         elsiocb->vport = vport;
282         elsiocb->drvrTimeout = (phba->fc_ratov << 1) + LPFC_DRVR_TIMEOUT;
283
284         if (prsp) {
285                 list_add(&prsp->list, &pcmd->list);
286         }
287         if (expectRsp) {
288                 /* Xmit ELS command <elsCmd> to remote NPORT <did> */
289                 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
290                                  "0116 Xmit ELS command x%x to remote "
291                                  "NPORT x%x I/O tag: x%x, port state: x%x\n",
292                                  elscmd, did, elsiocb->iotag,
293                                  vport->port_state);
294         } else {
295                 /* Xmit ELS response <elsCmd> to remote NPORT <did> */
296                 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
297                                  "0117 Xmit ELS response x%x to remote "
298                                  "NPORT x%x I/O tag: x%x, size: x%x\n",
299                                  elscmd, ndlp->nlp_DID, elsiocb->iotag,
300                                  cmdSize);
301         }
302         return elsiocb;
303
304 els_iocb_free_pbuf_exit:
305         if (expectRsp)
306                 lpfc_mbuf_free(phba, prsp->virt, prsp->phys);
307         kfree(pbuflist);
308
309 els_iocb_free_prsp_exit:
310         lpfc_mbuf_free(phba, pcmd->virt, pcmd->phys);
311         kfree(prsp);
312
313 els_iocb_free_pcmb_exit:
314         kfree(pcmd);
315         lpfc_sli_release_iocbq(phba, elsiocb);
316         return NULL;
317 }
318
319 /**
320  * lpfc_issue_fabric_reglogin - Issue fabric registration login for a vport
321  * @vport: pointer to a host virtual N_Port data structure.
322  *
323  * This routine issues a fabric registration login for a @vport. An
324  * active ndlp node with Fabric_DID must already exist for this @vport.
325  * The routine invokes two mailbox commands to carry out fabric registration
326  * login through the HBA firmware: the first mailbox command requests the
327  * HBA to perform link configuration for the @vport; and the second mailbox
328  * command requests the HBA to perform the actual fabric registration login
329  * with the @vport.
330  *
331  * Return code
332  *   0 - successfully issued fabric registration login for @vport
333  *   -ENXIO -- failed to issue fabric registration login for @vport
334  **/
335 int
336 lpfc_issue_fabric_reglogin(struct lpfc_vport *vport)
337 {
338         struct lpfc_hba  *phba = vport->phba;
339         LPFC_MBOXQ_t *mbox;
340         struct lpfc_dmabuf *mp;
341         struct lpfc_nodelist *ndlp;
342         struct serv_parm *sp;
343         int rc;
344         int err = 0;
345
346         sp = &phba->fc_fabparam;
347         ndlp = lpfc_findnode_did(vport, Fabric_DID);
348         if (!ndlp || !NLP_CHK_NODE_ACT(ndlp)) {
349                 err = 1;
350                 goto fail;
351         }
352
353         mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
354         if (!mbox) {
355                 err = 2;
356                 goto fail;
357         }
358
359         vport->port_state = LPFC_FABRIC_CFG_LINK;
360         lpfc_config_link(phba, mbox);
361         mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
362         mbox->vport = vport;
363
364         rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
365         if (rc == MBX_NOT_FINISHED) {
366                 err = 3;
367                 goto fail_free_mbox;
368         }
369
370         mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
371         if (!mbox) {
372                 err = 4;
373                 goto fail;
374         }
375         rc = lpfc_reg_rpi(phba, vport->vpi, Fabric_DID, (uint8_t *)sp, mbox, 0);
376         if (rc) {
377                 err = 5;
378                 goto fail_free_mbox;
379         }
380
381         mbox->mbox_cmpl = lpfc_mbx_cmpl_fabric_reg_login;
382         mbox->vport = vport;
383         /* increment the reference count on ndlp to hold reference
384          * for the callback routine.
385          */
386         mbox->context2 = lpfc_nlp_get(ndlp);
387
388         rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
389         if (rc == MBX_NOT_FINISHED) {
390                 err = 6;
391                 goto fail_issue_reg_login;
392         }
393
394         return 0;
395
396 fail_issue_reg_login:
397         /* decrement the reference count on ndlp just incremented
398          * for the failed mbox command.
399          */
400         lpfc_nlp_put(ndlp);
401         mp = (struct lpfc_dmabuf *) mbox->context1;
402         lpfc_mbuf_free(phba, mp->virt, mp->phys);
403         kfree(mp);
404 fail_free_mbox:
405         mempool_free(mbox, phba->mbox_mem_pool);
406
407 fail:
408         lpfc_vport_set_state(vport, FC_VPORT_FAILED);
409         lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
410                 "0249 Cannot issue Register Fabric login: Err %d\n", err);
411         return -ENXIO;
412 }
413
414 /**
415  * lpfc_issue_reg_vfi - Register VFI for this vport's fabric login
416  * @vport: pointer to a host virtual N_Port data structure.
417  *
418  * This routine issues a REG_VFI mailbox for the vfi, vpi, fcfi triplet for
419  * the @vport. This mailbox command is necessary for FCoE only.
420  *
421  * Return code
422  *   0 - successfully issued REG_VFI for @vport
423  *   A failure code otherwise.
424  **/
425 static int
426 lpfc_issue_reg_vfi(struct lpfc_vport *vport)
427 {
428         struct lpfc_hba  *phba = vport->phba;
429         LPFC_MBOXQ_t *mboxq;
430         struct lpfc_nodelist *ndlp;
431         struct serv_parm *sp;
432         struct lpfc_dmabuf *dmabuf;
433         int rc = 0;
434
435         sp = &phba->fc_fabparam;
436         ndlp = lpfc_findnode_did(vport, Fabric_DID);
437         if (!ndlp || !NLP_CHK_NODE_ACT(ndlp)) {
438                 rc = -ENODEV;
439                 goto fail;
440         }
441
442         dmabuf = kzalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
443         if (!dmabuf) {
444                 rc = -ENOMEM;
445                 goto fail;
446         }
447         dmabuf->virt = lpfc_mbuf_alloc(phba, MEM_PRI, &dmabuf->phys);
448         if (!dmabuf->virt) {
449                 rc = -ENOMEM;
450                 goto fail_free_dmabuf;
451         }
452         mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
453         if (!mboxq) {
454                 rc = -ENOMEM;
455                 goto fail_free_coherent;
456         }
457         vport->port_state = LPFC_FABRIC_CFG_LINK;
458         memcpy(dmabuf->virt, &phba->fc_fabparam, sizeof(vport->fc_sparam));
459         lpfc_reg_vfi(mboxq, vport, dmabuf->phys);
460         mboxq->mbox_cmpl = lpfc_mbx_cmpl_reg_vfi;
461         mboxq->vport = vport;
462         mboxq->context1 = dmabuf;
463         rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
464         if (rc == MBX_NOT_FINISHED) {
465                 rc = -ENXIO;
466                 goto fail_free_mbox;
467         }
468         return 0;
469
470 fail_free_mbox:
471         mempool_free(mboxq, phba->mbox_mem_pool);
472 fail_free_coherent:
473         lpfc_mbuf_free(phba, dmabuf->virt, dmabuf->phys);
474 fail_free_dmabuf:
475         kfree(dmabuf);
476 fail:
477         lpfc_vport_set_state(vport, FC_VPORT_FAILED);
478         lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
479                 "0289 Issue Register VFI failed: Err %d\n", rc);
480         return rc;
481 }
482
483 /**
484  * lpfc_cmpl_els_flogi_fabric - Completion function for flogi to a fabric port
485  * @vport: pointer to a host virtual N_Port data structure.
486  * @ndlp: pointer to a node-list data structure.
487  * @sp: pointer to service parameter data structure.
488  * @irsp: pointer to the IOCB within the lpfc response IOCB.
489  *
490  * This routine is invoked by the lpfc_cmpl_els_flogi() completion callback
491  * function to handle the completion of a Fabric Login (FLOGI) into a fabric
492  * port in a fabric topology. It properly sets up the parameters to the @ndlp
493  * from the IOCB response. It also check the newly assigned N_Port ID to the
494  * @vport against the previously assigned N_Port ID. If it is different from
495  * the previously assigned Destination ID (DID), the lpfc_unreg_rpi() routine
496  * is invoked on all the remaining nodes with the @vport to unregister the
497  * Remote Port Indicators (RPIs). Finally, the lpfc_issue_fabric_reglogin()
498  * is invoked to register login to the fabric.
499  *
500  * Return code
501  *   0 - Success (currently, always return 0)
502  **/
503 static int
504 lpfc_cmpl_els_flogi_fabric(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
505                            struct serv_parm *sp, IOCB_t *irsp)
506 {
507         struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
508         struct lpfc_hba  *phba = vport->phba;
509         struct lpfc_nodelist *np;
510         struct lpfc_nodelist *next_np;
511
512         spin_lock_irq(shost->host_lock);
513         vport->fc_flag |= FC_FABRIC;
514         spin_unlock_irq(shost->host_lock);
515
516         phba->fc_edtov = be32_to_cpu(sp->cmn.e_d_tov);
517         if (sp->cmn.edtovResolution)    /* E_D_TOV ticks are in nanoseconds */
518                 phba->fc_edtov = (phba->fc_edtov + 999999) / 1000000;
519
520         phba->fc_ratov = (be32_to_cpu(sp->cmn.w2.r_a_tov) + 999) / 1000;
521
522         if (phba->fc_topology == TOPOLOGY_LOOP) {
523                 spin_lock_irq(shost->host_lock);
524                 vport->fc_flag |= FC_PUBLIC_LOOP;
525                 spin_unlock_irq(shost->host_lock);
526         } else {
527                 /*
528                  * If we are a N-port connected to a Fabric, fixup sparam's so
529                  * logins to devices on remote loops work.
530                  */
531                 vport->fc_sparam.cmn.altBbCredit = 1;
532         }
533
534         vport->fc_myDID = irsp->un.ulpWord[4] & Mask_DID;
535         memcpy(&ndlp->nlp_portname, &sp->portName, sizeof(struct lpfc_name));
536         memcpy(&ndlp->nlp_nodename, &sp->nodeName, sizeof(struct lpfc_name));
537         ndlp->nlp_class_sup = 0;
538         if (sp->cls1.classValid)
539                 ndlp->nlp_class_sup |= FC_COS_CLASS1;
540         if (sp->cls2.classValid)
541                 ndlp->nlp_class_sup |= FC_COS_CLASS2;
542         if (sp->cls3.classValid)
543                 ndlp->nlp_class_sup |= FC_COS_CLASS3;
544         if (sp->cls4.classValid)
545                 ndlp->nlp_class_sup |= FC_COS_CLASS4;
546         ndlp->nlp_maxframe = ((sp->cmn.bbRcvSizeMsb & 0x0F) << 8) |
547                                 sp->cmn.bbRcvSizeLsb;
548         memcpy(&phba->fc_fabparam, sp, sizeof(struct serv_parm));
549
550         if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) {
551                 if (sp->cmn.response_multiple_NPort) {
552                         lpfc_printf_vlog(vport, KERN_WARNING,
553                                          LOG_ELS | LOG_VPORT,
554                                          "1816 FLOGI NPIV supported, "
555                                          "response data 0x%x\n",
556                                          sp->cmn.response_multiple_NPort);
557                         phba->link_flag |= LS_NPIV_FAB_SUPPORTED;
558                 } else {
559                         /* Because we asked f/w for NPIV it still expects us
560                         to call reg_vnpid atleast for the physcial host */
561                         lpfc_printf_vlog(vport, KERN_WARNING,
562                                          LOG_ELS | LOG_VPORT,
563                                          "1817 Fabric does not support NPIV "
564                                          "- configuring single port mode.\n");
565                         phba->link_flag &= ~LS_NPIV_FAB_SUPPORTED;
566                 }
567         }
568
569         if ((vport->fc_prevDID != vport->fc_myDID) &&
570                 !(vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)) {
571
572                 /* If our NportID changed, we need to ensure all
573                  * remaining NPORTs get unreg_login'ed.
574                  */
575                 list_for_each_entry_safe(np, next_np,
576                                         &vport->fc_nodes, nlp_listp) {
577                         if (!NLP_CHK_NODE_ACT(np))
578                                 continue;
579                         if ((np->nlp_state != NLP_STE_NPR_NODE) ||
580                                    !(np->nlp_flag & NLP_NPR_ADISC))
581                                 continue;
582                         spin_lock_irq(shost->host_lock);
583                         np->nlp_flag &= ~NLP_NPR_ADISC;
584                         spin_unlock_irq(shost->host_lock);
585                         lpfc_unreg_rpi(vport, np);
586                 }
587                 lpfc_cleanup_pending_mbox(vport);
588                 if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) {
589                         lpfc_mbx_unreg_vpi(vport);
590                         spin_lock_irq(shost->host_lock);
591                         vport->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
592                         spin_unlock_irq(shost->host_lock);
593                 }
594                 /*
595                  * If VPI is unreged, driver need to do INIT_VPI
596                  * before re-registering
597                  */
598                 if (phba->sli_rev == LPFC_SLI_REV4) {
599                         spin_lock_irq(shost->host_lock);
600                         vport->fc_flag |= FC_VPORT_NEEDS_INIT_VPI;
601                         spin_unlock_irq(shost->host_lock);
602                 }
603         } else if ((phba->sli_rev == LPFC_SLI_REV4) &&
604                 !(vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)) {
605                         /*
606                          * Driver needs to re-reg VPI in order for f/w
607                          * to update the MAC address.
608                          */
609                         lpfc_register_new_vport(phba, vport, ndlp);
610                         return 0;
611         }
612
613         if (phba->sli_rev < LPFC_SLI_REV4) {
614                 lpfc_nlp_set_state(vport, ndlp, NLP_STE_REG_LOGIN_ISSUE);
615                 if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED &&
616                     vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)
617                         lpfc_register_new_vport(phba, vport, ndlp);
618                 else
619                         lpfc_issue_fabric_reglogin(vport);
620         } else {
621                 ndlp->nlp_type |= NLP_FABRIC;
622                 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
623                 if ((!(vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)) &&
624                         (vport->vpi_state & LPFC_VPI_REGISTERED)) {
625                         lpfc_start_fdiscs(phba);
626                         lpfc_do_scr_ns_plogi(phba, vport);
627                 } else if (vport->fc_flag & FC_VFI_REGISTERED)
628                         lpfc_issue_init_vpi(vport);
629                 else
630                         lpfc_issue_reg_vfi(vport);
631         }
632         return 0;
633 }
634 /**
635  * lpfc_cmpl_els_flogi_nport - Completion function for flogi to an N_Port
636  * @vport: pointer to a host virtual N_Port data structure.
637  * @ndlp: pointer to a node-list data structure.
638  * @sp: pointer to service parameter data structure.
639  *
640  * This routine is invoked by the lpfc_cmpl_els_flogi() completion callback
641  * function to handle the completion of a Fabric Login (FLOGI) into an N_Port
642  * in a point-to-point topology. First, the @vport's N_Port Name is compared
643  * with the received N_Port Name: if the @vport's N_Port Name is greater than
644  * the received N_Port Name lexicographically, this node shall assign local
645  * N_Port ID (PT2PT_LocalID: 1) and remote N_Port ID (PT2PT_RemoteID: 2) and
646  * will send out Port Login (PLOGI) with the N_Port IDs assigned. Otherwise,
647  * this node shall just wait for the remote node to issue PLOGI and assign
648  * N_Port IDs.
649  *
650  * Return code
651  *   0 - Success
652  *   -ENXIO - Fail
653  **/
654 static int
655 lpfc_cmpl_els_flogi_nport(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
656                           struct serv_parm *sp)
657 {
658         struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
659         struct lpfc_hba  *phba = vport->phba;
660         LPFC_MBOXQ_t *mbox;
661         int rc;
662
663         spin_lock_irq(shost->host_lock);
664         vport->fc_flag &= ~(FC_FABRIC | FC_PUBLIC_LOOP);
665         spin_unlock_irq(shost->host_lock);
666
667         phba->fc_edtov = FF_DEF_EDTOV;
668         phba->fc_ratov = FF_DEF_RATOV;
669         rc = memcmp(&vport->fc_portname, &sp->portName,
670                     sizeof(vport->fc_portname));
671         if (rc >= 0) {
672                 /* This side will initiate the PLOGI */
673                 spin_lock_irq(shost->host_lock);
674                 vport->fc_flag |= FC_PT2PT_PLOGI;
675                 spin_unlock_irq(shost->host_lock);
676
677                 /*
678                  * N_Port ID cannot be 0, set our to LocalID the other
679                  * side will be RemoteID.
680                  */
681
682                 /* not equal */
683                 if (rc)
684                         vport->fc_myDID = PT2PT_LocalID;
685
686                 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
687                 if (!mbox)
688                         goto fail;
689
690                 lpfc_config_link(phba, mbox);
691
692                 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
693                 mbox->vport = vport;
694                 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
695                 if (rc == MBX_NOT_FINISHED) {
696                         mempool_free(mbox, phba->mbox_mem_pool);
697                         goto fail;
698                 }
699                 /* Decrement ndlp reference count indicating that ndlp can be
700                  * safely released when other references to it are done.
701                  */
702                 lpfc_nlp_put(ndlp);
703
704                 ndlp = lpfc_findnode_did(vport, PT2PT_RemoteID);
705                 if (!ndlp) {
706                         /*
707                          * Cannot find existing Fabric ndlp, so allocate a
708                          * new one
709                          */
710                         ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
711                         if (!ndlp)
712                                 goto fail;
713                         lpfc_nlp_init(vport, ndlp, PT2PT_RemoteID);
714                 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
715                         ndlp = lpfc_enable_node(vport, ndlp,
716                                                 NLP_STE_UNUSED_NODE);
717                         if(!ndlp)
718                                 goto fail;
719                 }
720
721                 memcpy(&ndlp->nlp_portname, &sp->portName,
722                        sizeof(struct lpfc_name));
723                 memcpy(&ndlp->nlp_nodename, &sp->nodeName,
724                        sizeof(struct lpfc_name));
725                 /* Set state will put ndlp onto node list if not already done */
726                 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
727                 spin_lock_irq(shost->host_lock);
728                 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
729                 spin_unlock_irq(shost->host_lock);
730         } else
731                 /* This side will wait for the PLOGI, decrement ndlp reference
732                  * count indicating that ndlp can be released when other
733                  * references to it are done.
734                  */
735                 lpfc_nlp_put(ndlp);
736
737         /* If we are pt2pt with another NPort, force NPIV off! */
738         phba->sli3_options &= ~LPFC_SLI3_NPIV_ENABLED;
739
740         spin_lock_irq(shost->host_lock);
741         vport->fc_flag |= FC_PT2PT;
742         spin_unlock_irq(shost->host_lock);
743
744         /* Start discovery - this should just do CLEAR_LA */
745         lpfc_disc_start(vport);
746         return 0;
747 fail:
748         return -ENXIO;
749 }
750
751 /**
752  * lpfc_cmpl_els_flogi - Completion callback function for flogi
753  * @phba: pointer to lpfc hba data structure.
754  * @cmdiocb: pointer to lpfc command iocb data structure.
755  * @rspiocb: pointer to lpfc response iocb data structure.
756  *
757  * This routine is the top-level completion callback function for issuing
758  * a Fabric Login (FLOGI) command. If the response IOCB reported error,
759  * the lpfc_els_retry() routine shall be invoked to retry the FLOGI. If
760  * retry has been made (either immediately or delayed with lpfc_els_retry()
761  * returning 1), the command IOCB will be released and function returned.
762  * If the retry attempt has been given up (possibly reach the maximum
763  * number of retries), one additional decrement of ndlp reference shall be
764  * invoked before going out after releasing the command IOCB. This will
765  * actually release the remote node (Note, lpfc_els_free_iocb() will also
766  * invoke one decrement of ndlp reference count). If no error reported in
767  * the IOCB status, the command Port ID field is used to determine whether
768  * this is a point-to-point topology or a fabric topology: if the Port ID
769  * field is assigned, it is a fabric topology; otherwise, it is a
770  * point-to-point topology. The routine lpfc_cmpl_els_flogi_fabric() or
771  * lpfc_cmpl_els_flogi_nport() shall be invoked accordingly to handle the
772  * specific topology completion conditions.
773  **/
774 static void
775 lpfc_cmpl_els_flogi(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
776                     struct lpfc_iocbq *rspiocb)
777 {
778         struct lpfc_vport *vport = cmdiocb->vport;
779         struct Scsi_Host  *shost = lpfc_shost_from_vport(vport);
780         IOCB_t *irsp = &rspiocb->iocb;
781         struct lpfc_nodelist *ndlp = cmdiocb->context1;
782         struct lpfc_dmabuf *pcmd = cmdiocb->context2, *prsp;
783         struct serv_parm *sp;
784         uint16_t fcf_index;
785         int rc;
786
787         /* Check to see if link went down during discovery */
788         if (lpfc_els_chk_latt(vport)) {
789                 /* One additional decrement on node reference count to
790                  * trigger the release of the node
791                  */
792                 lpfc_nlp_put(ndlp);
793                 goto out;
794         }
795
796         lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
797                 "FLOGI cmpl:      status:x%x/x%x state:x%x",
798                 irsp->ulpStatus, irsp->un.ulpWord[4],
799                 vport->port_state);
800
801         if (irsp->ulpStatus) {
802                 /*
803                  * In case of FIP mode, perform round robin FCF failover
804                  * due to new FCF discovery
805                  */
806                 if ((phba->hba_flag & HBA_FIP_SUPPORT) &&
807                     (phba->fcf.fcf_flag & FCF_DISCOVERY) &&
808                     (irsp->ulpStatus != IOSTAT_LOCAL_REJECT) &&
809                     (irsp->un.ulpWord[4] != IOERR_SLI_ABORTED)) {
810                         lpfc_printf_log(phba, KERN_WARNING, LOG_FIP | LOG_ELS,
811                                         "2611 FLOGI failed on registered "
812                                         "FCF record fcf_index(%d), status: "
813                                         "x%x/x%x, tmo:x%x, trying to perform "
814                                         "round robin failover\n",
815                                         phba->fcf.current_rec.fcf_indx,
816                                         irsp->ulpStatus, irsp->un.ulpWord[4],
817                                         irsp->ulpTimeout);
818                         fcf_index = lpfc_sli4_fcf_rr_next_index_get(phba);
819                         if (fcf_index == LPFC_FCOE_FCF_NEXT_NONE) {
820                                 /*
821                                  * Exhausted the eligible FCF record list,
822                                  * fail through to retry FLOGI on current
823                                  * FCF record.
824                                  */
825                                 lpfc_printf_log(phba, KERN_WARNING,
826                                                 LOG_FIP | LOG_ELS,
827                                                 "2760 Completed one round "
828                                                 "of FLOGI FCF round robin "
829                                                 "failover list, retry FLOGI "
830                                                 "on currently registered "
831                                                 "FCF index:%d\n",
832                                                 phba->fcf.current_rec.fcf_indx);
833                         } else {
834                                 lpfc_printf_log(phba, KERN_INFO,
835                                                 LOG_FIP | LOG_ELS,
836                                                 "2794 FLOGI FCF round robin "
837                                                 "failover to FCF index x%x\n",
838                                                 fcf_index);
839                                 rc = lpfc_sli4_fcf_rr_read_fcf_rec(phba,
840                                                                    fcf_index);
841                                 if (rc)
842                                         lpfc_printf_log(phba, KERN_WARNING,
843                                                         LOG_FIP | LOG_ELS,
844                                                         "2761 FLOGI round "
845                                                         "robin FCF failover "
846                                                         "read FCF failed "
847                                                         "rc:x%x, fcf_index:"
848                                                         "%d\n", rc,
849                                                 phba->fcf.current_rec.fcf_indx);
850                                 else
851                                         goto out;
852                         }
853                 }
854
855                 /* FLOGI failure */
856                 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
857                                 "2858 FLOGI failure Status:x%x/x%x TMO:x%x\n",
858                                 irsp->ulpStatus, irsp->un.ulpWord[4],
859                                 irsp->ulpTimeout);
860
861                 /* Check for retry */
862                 if (lpfc_els_retry(phba, cmdiocb, rspiocb))
863                         goto out;
864
865                 /* FLOGI failed, so there is no fabric */
866                 spin_lock_irq(shost->host_lock);
867                 vport->fc_flag &= ~(FC_FABRIC | FC_PUBLIC_LOOP);
868                 spin_unlock_irq(shost->host_lock);
869
870                 /* If private loop, then allow max outstanding els to be
871                  * LPFC_MAX_DISC_THREADS (32). Scanning in the case of no
872                  * alpa map would take too long otherwise.
873                  */
874                 if (phba->alpa_map[0] == 0) {
875                         vport->cfg_discovery_threads = LPFC_MAX_DISC_THREADS;
876                 }
877
878                 /* FLOGI failure */
879                 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
880                                  "0100 FLOGI failure Status:x%x/x%x TMO:x%x\n",
881                                  irsp->ulpStatus, irsp->un.ulpWord[4],
882                                  irsp->ulpTimeout);
883                 goto flogifail;
884         }
885         spin_lock_irq(shost->host_lock);
886         vport->fc_flag &= ~FC_VPORT_CVL_RCVD;
887         vport->fc_flag &= ~FC_VPORT_LOGO_RCVD;
888         spin_unlock_irq(shost->host_lock);
889
890         /*
891          * The FLogI succeeded.  Sync the data for the CPU before
892          * accessing it.
893          */
894         prsp = list_get_first(&pcmd->list, struct lpfc_dmabuf, list);
895
896         sp = prsp->virt + sizeof(uint32_t);
897
898         /* FLOGI completes successfully */
899         lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
900                          "0101 FLOGI completes successfully "
901                          "Data: x%x x%x x%x x%x\n",
902                          irsp->un.ulpWord[4], sp->cmn.e_d_tov,
903                          sp->cmn.w2.r_a_tov, sp->cmn.edtovResolution);
904
905         if (vport->port_state == LPFC_FLOGI) {
906                 /*
907                  * If Common Service Parameters indicate Nport
908                  * we are point to point, if Fport we are Fabric.
909                  */
910                 if (sp->cmn.fPort)
911                         rc = lpfc_cmpl_els_flogi_fabric(vport, ndlp, sp, irsp);
912                 else if (!(phba->hba_flag & HBA_FCOE_SUPPORT))
913                         rc = lpfc_cmpl_els_flogi_nport(vport, ndlp, sp);
914                 else {
915                         lpfc_printf_vlog(vport, KERN_ERR,
916                                 LOG_FIP | LOG_ELS,
917                                 "2831 FLOGI response with cleared Fabric "
918                                 "bit fcf_index 0x%x "
919                                 "Switch Name %02x%02x%02x%02x%02x%02x%02x%02x "
920                                 "Fabric Name "
921                                 "%02x%02x%02x%02x%02x%02x%02x%02x\n",
922                                 phba->fcf.current_rec.fcf_indx,
923                                 phba->fcf.current_rec.switch_name[0],
924                                 phba->fcf.current_rec.switch_name[1],
925                                 phba->fcf.current_rec.switch_name[2],
926                                 phba->fcf.current_rec.switch_name[3],
927                                 phba->fcf.current_rec.switch_name[4],
928                                 phba->fcf.current_rec.switch_name[5],
929                                 phba->fcf.current_rec.switch_name[6],
930                                 phba->fcf.current_rec.switch_name[7],
931                                 phba->fcf.current_rec.fabric_name[0],
932                                 phba->fcf.current_rec.fabric_name[1],
933                                 phba->fcf.current_rec.fabric_name[2],
934                                 phba->fcf.current_rec.fabric_name[3],
935                                 phba->fcf.current_rec.fabric_name[4],
936                                 phba->fcf.current_rec.fabric_name[5],
937                                 phba->fcf.current_rec.fabric_name[6],
938                                 phba->fcf.current_rec.fabric_name[7]);
939                         lpfc_nlp_put(ndlp);
940                         spin_lock_irq(&phba->hbalock);
941                         phba->fcf.fcf_flag &= ~FCF_DISCOVERY;
942                         spin_unlock_irq(&phba->hbalock);
943                         goto out;
944                 }
945                 if (!rc) {
946                         /* Mark the FCF discovery process done */
947                         if (phba->hba_flag & HBA_FIP_SUPPORT)
948                                 lpfc_printf_vlog(vport, KERN_INFO, LOG_FIP |
949                                                 LOG_ELS,
950                                                 "2769 FLOGI successful on FCF "
951                                                 "record: current_fcf_index:"
952                                                 "x%x, terminate FCF round "
953                                                 "robin failover process\n",
954                                                 phba->fcf.current_rec.fcf_indx);
955                         spin_lock_irq(&phba->hbalock);
956                         phba->fcf.fcf_flag &= ~FCF_DISCOVERY;
957                         spin_unlock_irq(&phba->hbalock);
958                         goto out;
959                 }
960         }
961
962 flogifail:
963         lpfc_nlp_put(ndlp);
964
965         if (!lpfc_error_lost_link(irsp)) {
966                 /* FLOGI failed, so just use loop map to make discovery list */
967                 lpfc_disc_list_loopmap(vport);
968
969                 /* Start discovery */
970                 lpfc_disc_start(vport);
971         } else if (((irsp->ulpStatus != IOSTAT_LOCAL_REJECT) ||
972                         ((irsp->un.ulpWord[4] != IOERR_SLI_ABORTED) &&
973                         (irsp->un.ulpWord[4] != IOERR_SLI_DOWN))) &&
974                         (phba->link_state != LPFC_CLEAR_LA)) {
975                 /* If FLOGI failed enable link interrupt. */
976                 lpfc_issue_clear_la(phba, vport);
977         }
978 out:
979         lpfc_els_free_iocb(phba, cmdiocb);
980 }
981
982 /**
983  * lpfc_issue_els_flogi - Issue an flogi iocb command for a vport
984  * @vport: pointer to a host virtual N_Port data structure.
985  * @ndlp: pointer to a node-list data structure.
986  * @retry: number of retries to the command IOCB.
987  *
988  * This routine issues a Fabric Login (FLOGI) Request ELS command
989  * for a @vport. The initiator service parameters are put into the payload
990  * of the FLOGI Request IOCB and the top-level callback function pointer
991  * to lpfc_cmpl_els_flogi() routine is put to the IOCB completion callback
992  * function field. The lpfc_issue_fabric_iocb routine is invoked to send
993  * out FLOGI ELS command with one outstanding fabric IOCB at a time.
994  *
995  * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
996  * will be incremented by 1 for holding the ndlp and the reference to ndlp
997  * will be stored into the context1 field of the IOCB for the completion
998  * callback function to the FLOGI ELS command.
999  *
1000  * Return code
1001  *   0 - successfully issued flogi iocb for @vport
1002  *   1 - failed to issue flogi iocb for @vport
1003  **/
1004 static int
1005 lpfc_issue_els_flogi(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1006                      uint8_t retry)
1007 {
1008         struct lpfc_hba  *phba = vport->phba;
1009         struct serv_parm *sp;
1010         IOCB_t *icmd;
1011         struct lpfc_iocbq *elsiocb;
1012         struct lpfc_sli_ring *pring;
1013         uint8_t *pcmd;
1014         uint16_t cmdsize;
1015         uint32_t tmo;
1016         int rc;
1017
1018         pring = &phba->sli.ring[LPFC_ELS_RING];
1019
1020         cmdsize = (sizeof(uint32_t) + sizeof(struct serv_parm));
1021         elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
1022                                      ndlp->nlp_DID, ELS_CMD_FLOGI);
1023
1024         if (!elsiocb)
1025                 return 1;
1026
1027         icmd = &elsiocb->iocb;
1028         pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
1029
1030         /* For FLOGI request, remainder of payload is service parameters */
1031         *((uint32_t *) (pcmd)) = ELS_CMD_FLOGI;
1032         pcmd += sizeof(uint32_t);
1033         memcpy(pcmd, &vport->fc_sparam, sizeof(struct serv_parm));
1034         sp = (struct serv_parm *) pcmd;
1035
1036         /* Setup CSPs accordingly for Fabric */
1037         sp->cmn.e_d_tov = 0;
1038         sp->cmn.w2.r_a_tov = 0;
1039         sp->cls1.classValid = 0;
1040         sp->cls2.seqDelivery = 1;
1041         sp->cls3.seqDelivery = 1;
1042         if (sp->cmn.fcphLow < FC_PH3)
1043                 sp->cmn.fcphLow = FC_PH3;
1044         if (sp->cmn.fcphHigh < FC_PH3)
1045                 sp->cmn.fcphHigh = FC_PH3;
1046
1047         if  (phba->sli_rev == LPFC_SLI_REV4) {
1048                 elsiocb->iocb.ulpCt_h = ((SLI4_CT_FCFI >> 1) & 1);
1049                 elsiocb->iocb.ulpCt_l = (SLI4_CT_FCFI & 1);
1050                 /* FLOGI needs to be 3 for WQE FCFI */
1051                 /* Set the fcfi to the fcfi we registered with */
1052                 elsiocb->iocb.ulpContext = phba->fcf.fcfi;
1053         } else if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) {
1054                 sp->cmn.request_multiple_Nport = 1;
1055                 /* For FLOGI, Let FLOGI rsp set the NPortID for VPI 0 */
1056                 icmd->ulpCt_h = 1;
1057                 icmd->ulpCt_l = 0;
1058         }
1059
1060         if (phba->fc_topology != TOPOLOGY_LOOP) {
1061                 icmd->un.elsreq64.myID = 0;
1062                 icmd->un.elsreq64.fl = 1;
1063         }
1064
1065         tmo = phba->fc_ratov;
1066         phba->fc_ratov = LPFC_DISC_FLOGI_TMO;
1067         lpfc_set_disctmo(vport);
1068         phba->fc_ratov = tmo;
1069
1070         phba->fc_stat.elsXmitFLOGI++;
1071         elsiocb->iocb_cmpl = lpfc_cmpl_els_flogi;
1072
1073         lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
1074                 "Issue FLOGI:     opt:x%x",
1075                 phba->sli3_options, 0, 0);
1076
1077         rc = lpfc_issue_fabric_iocb(phba, elsiocb);
1078         if (rc == IOCB_ERROR) {
1079                 lpfc_els_free_iocb(phba, elsiocb);
1080                 return 1;
1081         }
1082         return 0;
1083 }
1084
1085 /**
1086  * lpfc_els_abort_flogi - Abort all outstanding flogi iocbs
1087  * @phba: pointer to lpfc hba data structure.
1088  *
1089  * This routine aborts all the outstanding Fabric Login (FLOGI) IOCBs
1090  * with a @phba. This routine walks all the outstanding IOCBs on the txcmplq
1091  * list and issues an abort IOCB commond on each outstanding IOCB that
1092  * contains a active Fabric_DID ndlp. Note that this function is to issue
1093  * the abort IOCB command on all the outstanding IOCBs, thus when this
1094  * function returns, it does not guarantee all the IOCBs are actually aborted.
1095  *
1096  * Return code
1097  *   0 - Successfully issued abort iocb on all outstanding flogis (Always 0)
1098  **/
1099 int
1100 lpfc_els_abort_flogi(struct lpfc_hba *phba)
1101 {
1102         struct lpfc_sli_ring *pring;
1103         struct lpfc_iocbq *iocb, *next_iocb;
1104         struct lpfc_nodelist *ndlp;
1105         IOCB_t *icmd;
1106
1107         /* Abort outstanding I/O on NPort <nlp_DID> */
1108         lpfc_printf_log(phba, KERN_INFO, LOG_DISCOVERY,
1109                         "0201 Abort outstanding I/O on NPort x%x\n",
1110                         Fabric_DID);
1111
1112         pring = &phba->sli.ring[LPFC_ELS_RING];
1113
1114         /*
1115          * Check the txcmplq for an iocb that matches the nport the driver is
1116          * searching for.
1117          */
1118         spin_lock_irq(&phba->hbalock);
1119         list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq, list) {
1120                 icmd = &iocb->iocb;
1121                 if (icmd->ulpCommand == CMD_ELS_REQUEST64_CR &&
1122                     icmd->un.elsreq64.bdl.ulpIoTag32) {
1123                         ndlp = (struct lpfc_nodelist *)(iocb->context1);
1124                         if (ndlp && NLP_CHK_NODE_ACT(ndlp) &&
1125                             (ndlp->nlp_DID == Fabric_DID))
1126                                 lpfc_sli_issue_abort_iotag(phba, pring, iocb);
1127                 }
1128         }
1129         spin_unlock_irq(&phba->hbalock);
1130
1131         return 0;
1132 }
1133
1134 /**
1135  * lpfc_initial_flogi - Issue an initial fabric login for a vport
1136  * @vport: pointer to a host virtual N_Port data structure.
1137  *
1138  * This routine issues an initial Fabric Login (FLOGI) for the @vport
1139  * specified. It first searches the ndlp with the Fabric_DID (0xfffffe) from
1140  * the @vport's ndlp list. If no such ndlp found, it will create an ndlp and
1141  * put it into the @vport's ndlp list. If an inactive ndlp found on the list,
1142  * it will just be enabled and made active. The lpfc_issue_els_flogi() routine
1143  * is then invoked with the @vport and the ndlp to perform the FLOGI for the
1144  * @vport.
1145  *
1146  * Return code
1147  *   0 - failed to issue initial flogi for @vport
1148  *   1 - successfully issued initial flogi for @vport
1149  **/
1150 int
1151 lpfc_initial_flogi(struct lpfc_vport *vport)
1152 {
1153         struct lpfc_hba *phba = vport->phba;
1154         struct lpfc_nodelist *ndlp;
1155
1156         vport->port_state = LPFC_FLOGI;
1157         lpfc_set_disctmo(vport);
1158
1159         /* First look for the Fabric ndlp */
1160         ndlp = lpfc_findnode_did(vport, Fabric_DID);
1161         if (!ndlp) {
1162                 /* Cannot find existing Fabric ndlp, so allocate a new one */
1163                 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
1164                 if (!ndlp)
1165                         return 0;
1166                 lpfc_nlp_init(vport, ndlp, Fabric_DID);
1167                 /* Set the node type */
1168                 ndlp->nlp_type |= NLP_FABRIC;
1169                 /* Put ndlp onto node list */
1170                 lpfc_enqueue_node(vport, ndlp);
1171         } else if (!NLP_CHK_NODE_ACT(ndlp)) {
1172                 /* re-setup ndlp without removing from node list */
1173                 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
1174                 if (!ndlp)
1175                         return 0;
1176         }
1177
1178         if (lpfc_issue_els_flogi(vport, ndlp, 0))
1179                 /* This decrement of reference count to node shall kick off
1180                  * the release of the node.
1181                  */
1182                 lpfc_nlp_put(ndlp);
1183
1184         return 1;
1185 }
1186
1187 /**
1188  * lpfc_initial_fdisc - Issue an initial fabric discovery for a vport
1189  * @vport: pointer to a host virtual N_Port data structure.
1190  *
1191  * This routine issues an initial Fabric Discover (FDISC) for the @vport
1192  * specified. It first searches the ndlp with the Fabric_DID (0xfffffe) from
1193  * the @vport's ndlp list. If no such ndlp found, it will create an ndlp and
1194  * put it into the @vport's ndlp list. If an inactive ndlp found on the list,
1195  * it will just be enabled and made active. The lpfc_issue_els_fdisc() routine
1196  * is then invoked with the @vport and the ndlp to perform the FDISC for the
1197  * @vport.
1198  *
1199  * Return code
1200  *   0 - failed to issue initial fdisc for @vport
1201  *   1 - successfully issued initial fdisc for @vport
1202  **/
1203 int
1204 lpfc_initial_fdisc(struct lpfc_vport *vport)
1205 {
1206         struct lpfc_hba *phba = vport->phba;
1207         struct lpfc_nodelist *ndlp;
1208
1209         /* First look for the Fabric ndlp */
1210         ndlp = lpfc_findnode_did(vport, Fabric_DID);
1211         if (!ndlp) {
1212                 /* Cannot find existing Fabric ndlp, so allocate a new one */
1213                 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
1214                 if (!ndlp)
1215                         return 0;
1216                 lpfc_nlp_init(vport, ndlp, Fabric_DID);
1217                 /* Put ndlp onto node list */
1218                 lpfc_enqueue_node(vport, ndlp);
1219         } else if (!NLP_CHK_NODE_ACT(ndlp)) {
1220                 /* re-setup ndlp without removing from node list */
1221                 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
1222                 if (!ndlp)
1223                         return 0;
1224         }
1225
1226         if (lpfc_issue_els_fdisc(vport, ndlp, 0)) {
1227                 /* decrement node reference count to trigger the release of
1228                  * the node.
1229                  */
1230                 lpfc_nlp_put(ndlp);
1231                 return 0;
1232         }
1233         return 1;
1234 }
1235
1236 /**
1237  * lpfc_more_plogi - Check and issue remaining plogis for a vport
1238  * @vport: pointer to a host virtual N_Port data structure.
1239  *
1240  * This routine checks whether there are more remaining Port Logins
1241  * (PLOGI) to be issued for the @vport. If so, it will invoke the routine
1242  * lpfc_els_disc_plogi() to go through the Node Port Recovery (NPR) nodes
1243  * to issue ELS PLOGIs up to the configured discover threads with the
1244  * @vport (@vport->cfg_discovery_threads). The function also decrement
1245  * the @vport's num_disc_node by 1 if it is not already 0.
1246  **/
1247 void
1248 lpfc_more_plogi(struct lpfc_vport *vport)
1249 {
1250         int sentplogi;
1251
1252         if (vport->num_disc_nodes)
1253                 vport->num_disc_nodes--;
1254
1255         /* Continue discovery with <num_disc_nodes> PLOGIs to go */
1256         lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
1257                          "0232 Continue discovery with %d PLOGIs to go "
1258                          "Data: x%x x%x x%x\n",
1259                          vport->num_disc_nodes, vport->fc_plogi_cnt,
1260                          vport->fc_flag, vport->port_state);
1261         /* Check to see if there are more PLOGIs to be sent */
1262         if (vport->fc_flag & FC_NLP_MORE)
1263                 /* go thru NPR nodes and issue any remaining ELS PLOGIs */
1264                 sentplogi = lpfc_els_disc_plogi(vport);
1265
1266         return;
1267 }
1268
1269 /**
1270  * lpfc_plogi_confirm_nport - Confirm pologi wwpn matches stored ndlp
1271  * @phba: pointer to lpfc hba data structure.
1272  * @prsp: pointer to response IOCB payload.
1273  * @ndlp: pointer to a node-list data structure.
1274  *
1275  * This routine checks and indicates whether the WWPN of an N_Port, retrieved
1276  * from a PLOGI, matches the WWPN that is stored in the @ndlp for that N_POrt.
1277  * The following cases are considered N_Port confirmed:
1278  * 1) The N_Port is a Fabric ndlp; 2) The @ndlp is on vport list and matches
1279  * the WWPN of the N_Port logged into; 3) The @ndlp is not on vport list but
1280  * it does not have WWPN assigned either. If the WWPN is confirmed, the
1281  * pointer to the @ndlp will be returned. If the WWPN is not confirmed:
1282  * 1) if there is a node on vport list other than the @ndlp with the same
1283  * WWPN of the N_Port PLOGI logged into, the lpfc_unreg_rpi() will be invoked
1284  * on that node to release the RPI associated with the node; 2) if there is
1285  * no node found on vport list with the same WWPN of the N_Port PLOGI logged
1286  * into, a new node shall be allocated (or activated). In either case, the
1287  * parameters of the @ndlp shall be copied to the new_ndlp, the @ndlp shall
1288  * be released and the new_ndlp shall be put on to the vport node list and
1289  * its pointer returned as the confirmed node.
1290  *
1291  * Note that before the @ndlp got "released", the keepDID from not-matching
1292  * or inactive "new_ndlp" on the vport node list is assigned to the nlp_DID
1293  * of the @ndlp. This is because the release of @ndlp is actually to put it
1294  * into an inactive state on the vport node list and the vport node list
1295  * management algorithm does not allow two node with a same DID.
1296  *
1297  * Return code
1298  *   pointer to the PLOGI N_Port @ndlp
1299  **/
1300 static struct lpfc_nodelist *
1301 lpfc_plogi_confirm_nport(struct lpfc_hba *phba, uint32_t *prsp,
1302                          struct lpfc_nodelist *ndlp)
1303 {
1304         struct lpfc_vport    *vport = ndlp->vport;
1305         struct lpfc_nodelist *new_ndlp;
1306         struct lpfc_rport_data *rdata;
1307         struct fc_rport *rport;
1308         struct serv_parm *sp;
1309         uint8_t  name[sizeof(struct lpfc_name)];
1310         uint32_t rc, keepDID = 0;
1311         int  put_node;
1312         int  put_rport;
1313
1314         /* Fabric nodes can have the same WWPN so we don't bother searching
1315          * by WWPN.  Just return the ndlp that was given to us.
1316          */
1317         if (ndlp->nlp_type & NLP_FABRIC)
1318                 return ndlp;
1319
1320         sp = (struct serv_parm *) ((uint8_t *) prsp + sizeof(uint32_t));
1321         memset(name, 0, sizeof(struct lpfc_name));
1322
1323         /* Now we find out if the NPort we are logging into, matches the WWPN
1324          * we have for that ndlp. If not, we have some work to do.
1325          */
1326         new_ndlp = lpfc_findnode_wwpn(vport, &sp->portName);
1327
1328         if (new_ndlp == ndlp && NLP_CHK_NODE_ACT(new_ndlp))
1329                 return ndlp;
1330
1331         if (!new_ndlp) {
1332                 rc = memcmp(&ndlp->nlp_portname, name,
1333                             sizeof(struct lpfc_name));
1334                 if (!rc)
1335                         return ndlp;
1336                 new_ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_ATOMIC);
1337                 if (!new_ndlp)
1338                         return ndlp;
1339                 lpfc_nlp_init(vport, new_ndlp, ndlp->nlp_DID);
1340         } else if (!NLP_CHK_NODE_ACT(new_ndlp)) {
1341                 rc = memcmp(&ndlp->nlp_portname, name,
1342                             sizeof(struct lpfc_name));
1343                 if (!rc)
1344                         return ndlp;
1345                 new_ndlp = lpfc_enable_node(vport, new_ndlp,
1346                                                 NLP_STE_UNUSED_NODE);
1347                 if (!new_ndlp)
1348                         return ndlp;
1349                 keepDID = new_ndlp->nlp_DID;
1350         } else
1351                 keepDID = new_ndlp->nlp_DID;
1352
1353         lpfc_unreg_rpi(vport, new_ndlp);
1354         new_ndlp->nlp_DID = ndlp->nlp_DID;
1355         new_ndlp->nlp_prev_state = ndlp->nlp_prev_state;
1356
1357         if (ndlp->nlp_flag & NLP_NPR_2B_DISC)
1358                 new_ndlp->nlp_flag |= NLP_NPR_2B_DISC;
1359         ndlp->nlp_flag &= ~NLP_NPR_2B_DISC;
1360
1361         /* Set state will put new_ndlp on to node list if not already done */
1362         lpfc_nlp_set_state(vport, new_ndlp, ndlp->nlp_state);
1363
1364         /* Move this back to NPR state */
1365         if (memcmp(&ndlp->nlp_portname, name, sizeof(struct lpfc_name)) == 0) {
1366                 /* The new_ndlp is replacing ndlp totally, so we need
1367                  * to put ndlp on UNUSED list and try to free it.
1368                  */
1369
1370                 /* Fix up the rport accordingly */
1371                 rport =  ndlp->rport;
1372                 if (rport) {
1373                         rdata = rport->dd_data;
1374                         if (rdata->pnode == ndlp) {
1375                                 lpfc_nlp_put(ndlp);
1376                                 ndlp->rport = NULL;
1377                                 rdata->pnode = lpfc_nlp_get(new_ndlp);
1378                                 new_ndlp->rport = rport;
1379                         }
1380                         new_ndlp->nlp_type = ndlp->nlp_type;
1381                 }
1382                 /* We shall actually free the ndlp with both nlp_DID and
1383                  * nlp_portname fields equals 0 to avoid any ndlp on the
1384                  * nodelist never to be used.
1385                  */
1386                 if (ndlp->nlp_DID == 0) {
1387                         spin_lock_irq(&phba->ndlp_lock);
1388                         NLP_SET_FREE_REQ(ndlp);
1389                         spin_unlock_irq(&phba->ndlp_lock);
1390                 }
1391
1392                 /* Two ndlps cannot have the same did on the nodelist */
1393                 ndlp->nlp_DID = keepDID;
1394                 lpfc_drop_node(vport, ndlp);
1395         }
1396         else {
1397                 lpfc_unreg_rpi(vport, ndlp);
1398                 /* Two ndlps cannot have the same did */
1399                 ndlp->nlp_DID = keepDID;
1400                 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
1401                 /* Since we are swapping the ndlp passed in with the new one
1402                  * and the did has already been swapped, copy over the
1403                  * state and names.
1404                  */
1405                 memcpy(&new_ndlp->nlp_portname, &ndlp->nlp_portname,
1406                         sizeof(struct lpfc_name));
1407                 memcpy(&new_ndlp->nlp_nodename, &ndlp->nlp_nodename,
1408                         sizeof(struct lpfc_name));
1409                 new_ndlp->nlp_state = ndlp->nlp_state;
1410                 /* Fix up the rport accordingly */
1411                 rport = ndlp->rport;
1412                 if (rport) {
1413                         rdata = rport->dd_data;
1414                         put_node = rdata->pnode != NULL;
1415                         put_rport = ndlp->rport != NULL;
1416                         rdata->pnode = NULL;
1417                         ndlp->rport = NULL;
1418                         if (put_node)
1419                                 lpfc_nlp_put(ndlp);
1420                         if (put_rport)
1421                                 put_device(&rport->dev);
1422                 }
1423         }
1424         return new_ndlp;
1425 }
1426
1427 /**
1428  * lpfc_end_rscn - Check and handle more rscn for a vport
1429  * @vport: pointer to a host virtual N_Port data structure.
1430  *
1431  * This routine checks whether more Registration State Change
1432  * Notifications (RSCNs) came in while the discovery state machine was in
1433  * the FC_RSCN_MODE. If so, the lpfc_els_handle_rscn() routine will be
1434  * invoked to handle the additional RSCNs for the @vport. Otherwise, the
1435  * FC_RSCN_MODE bit will be cleared with the @vport to mark as the end of
1436  * handling the RSCNs.
1437  **/
1438 void
1439 lpfc_end_rscn(struct lpfc_vport *vport)
1440 {
1441         struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1442
1443         if (vport->fc_flag & FC_RSCN_MODE) {
1444                 /*
1445                  * Check to see if more RSCNs came in while we were
1446                  * processing this one.
1447                  */
1448                 if (vport->fc_rscn_id_cnt ||
1449                     (vport->fc_flag & FC_RSCN_DISCOVERY) != 0)
1450                         lpfc_els_handle_rscn(vport);
1451                 else {
1452                         spin_lock_irq(shost->host_lock);
1453                         vport->fc_flag &= ~FC_RSCN_MODE;
1454                         spin_unlock_irq(shost->host_lock);
1455                 }
1456         }
1457 }
1458
1459 /**
1460  * lpfc_cmpl_els_plogi - Completion callback function for plogi
1461  * @phba: pointer to lpfc hba data structure.
1462  * @cmdiocb: pointer to lpfc command iocb data structure.
1463  * @rspiocb: pointer to lpfc response iocb data structure.
1464  *
1465  * This routine is the completion callback function for issuing the Port
1466  * Login (PLOGI) command. For PLOGI completion, there must be an active
1467  * ndlp on the vport node list that matches the remote node ID from the
1468  * PLOGI reponse IOCB. If such ndlp does not exist, the PLOGI is simply
1469  * ignored and command IOCB released. The PLOGI response IOCB status is
1470  * checked for error conditons. If there is error status reported, PLOGI
1471  * retry shall be attempted by invoking the lpfc_els_retry() routine.
1472  * Otherwise, the lpfc_plogi_confirm_nport() routine shall be invoked on
1473  * the ndlp and the NLP_EVT_CMPL_PLOGI state to the Discover State Machine
1474  * (DSM) is set for this PLOGI completion. Finally, it checks whether
1475  * there are additional N_Port nodes with the vport that need to perform
1476  * PLOGI. If so, the lpfc_more_plogi() routine is invoked to issue addition
1477  * PLOGIs.
1478  **/
1479 static void
1480 lpfc_cmpl_els_plogi(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
1481                     struct lpfc_iocbq *rspiocb)
1482 {
1483         struct lpfc_vport *vport = cmdiocb->vport;
1484         struct Scsi_Host  *shost = lpfc_shost_from_vport(vport);
1485         IOCB_t *irsp;
1486         struct lpfc_nodelist *ndlp;
1487         struct lpfc_dmabuf *prsp;
1488         int disc, rc, did, type;
1489
1490         /* we pass cmdiocb to state machine which needs rspiocb as well */
1491         cmdiocb->context_un.rsp_iocb = rspiocb;
1492
1493         irsp = &rspiocb->iocb;
1494         lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
1495                 "PLOGI cmpl:      status:x%x/x%x did:x%x",
1496                 irsp->ulpStatus, irsp->un.ulpWord[4],
1497                 irsp->un.elsreq64.remoteID);
1498
1499         ndlp = lpfc_findnode_did(vport, irsp->un.elsreq64.remoteID);
1500         if (!ndlp || !NLP_CHK_NODE_ACT(ndlp)) {
1501                 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
1502                                  "0136 PLOGI completes to NPort x%x "
1503                                  "with no ndlp. Data: x%x x%x x%x\n",
1504                                  irsp->un.elsreq64.remoteID,
1505                                  irsp->ulpStatus, irsp->un.ulpWord[4],
1506                                  irsp->ulpIoTag);
1507                 goto out;
1508         }
1509
1510         /* Since ndlp can be freed in the disc state machine, note if this node
1511          * is being used during discovery.
1512          */
1513         spin_lock_irq(shost->host_lock);
1514         disc = (ndlp->nlp_flag & NLP_NPR_2B_DISC);
1515         ndlp->nlp_flag &= ~NLP_NPR_2B_DISC;
1516         spin_unlock_irq(shost->host_lock);
1517         rc   = 0;
1518
1519         /* PLOGI completes to NPort <nlp_DID> */
1520         lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
1521                          "0102 PLOGI completes to NPort x%x "
1522                          "Data: x%x x%x x%x x%x x%x\n",
1523                          ndlp->nlp_DID, irsp->ulpStatus, irsp->un.ulpWord[4],
1524                          irsp->ulpTimeout, disc, vport->num_disc_nodes);
1525         /* Check to see if link went down during discovery */
1526         if (lpfc_els_chk_latt(vport)) {
1527                 spin_lock_irq(shost->host_lock);
1528                 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
1529                 spin_unlock_irq(shost->host_lock);
1530                 goto out;
1531         }
1532
1533         /* ndlp could be freed in DSM, save these values now */
1534         type = ndlp->nlp_type;
1535         did = ndlp->nlp_DID;
1536
1537         if (irsp->ulpStatus) {
1538                 /* Check for retry */
1539                 if (lpfc_els_retry(phba, cmdiocb, rspiocb)) {
1540                         /* ELS command is being retried */
1541                         if (disc) {
1542                                 spin_lock_irq(shost->host_lock);
1543                                 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
1544                                 spin_unlock_irq(shost->host_lock);
1545                         }
1546                         goto out;
1547                 }
1548                 /* PLOGI failed Don't print the vport to vport rjts */
1549                 if (irsp->ulpStatus != IOSTAT_LS_RJT ||
1550                         (((irsp->un.ulpWord[4]) >> 16 != LSRJT_INVALID_CMD) &&
1551                         ((irsp->un.ulpWord[4]) >> 16 != LSRJT_UNABLE_TPC)) ||
1552                         (phba)->pport->cfg_log_verbose & LOG_ELS)
1553                         lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
1554                                  "2753 PLOGI failure DID:%06X Status:x%x/x%x\n",
1555                                  ndlp->nlp_DID, irsp->ulpStatus,
1556                                  irsp->un.ulpWord[4]);
1557                 /* Do not call DSM for lpfc_els_abort'ed ELS cmds */
1558                 if (lpfc_error_lost_link(irsp))
1559                         rc = NLP_STE_FREED_NODE;
1560                 else
1561                         rc = lpfc_disc_state_machine(vport, ndlp, cmdiocb,
1562                                                      NLP_EVT_CMPL_PLOGI);
1563         } else {
1564                 /* Good status, call state machine */
1565                 prsp = list_entry(((struct lpfc_dmabuf *)
1566                                    cmdiocb->context2)->list.next,
1567                                   struct lpfc_dmabuf, list);
1568                 ndlp = lpfc_plogi_confirm_nport(phba, prsp->virt, ndlp);
1569                 rc = lpfc_disc_state_machine(vport, ndlp, cmdiocb,
1570                                              NLP_EVT_CMPL_PLOGI);
1571         }
1572
1573         if (disc && vport->num_disc_nodes) {
1574                 /* Check to see if there are more PLOGIs to be sent */
1575                 lpfc_more_plogi(vport);
1576
1577                 if (vport->num_disc_nodes == 0) {
1578                         spin_lock_irq(shost->host_lock);
1579                         vport->fc_flag &= ~FC_NDISC_ACTIVE;
1580                         spin_unlock_irq(shost->host_lock);
1581
1582                         lpfc_can_disctmo(vport);
1583                         lpfc_end_rscn(vport);
1584                 }
1585         }
1586
1587 out:
1588         lpfc_els_free_iocb(phba, cmdiocb);
1589         return;
1590 }
1591
1592 /**
1593  * lpfc_issue_els_plogi - Issue an plogi iocb command for a vport
1594  * @vport: pointer to a host virtual N_Port data structure.
1595  * @did: destination port identifier.
1596  * @retry: number of retries to the command IOCB.
1597  *
1598  * This routine issues a Port Login (PLOGI) command to a remote N_Port
1599  * (with the @did) for a @vport. Before issuing a PLOGI to a remote N_Port,
1600  * the ndlp with the remote N_Port DID must exist on the @vport's ndlp list.
1601  * This routine constructs the proper feilds of the PLOGI IOCB and invokes
1602  * the lpfc_sli_issue_iocb() routine to send out PLOGI ELS command.
1603  *
1604  * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
1605  * will be incremented by 1 for holding the ndlp and the reference to ndlp
1606  * will be stored into the context1 field of the IOCB for the completion
1607  * callback function to the PLOGI ELS command.
1608  *
1609  * Return code
1610  *   0 - Successfully issued a plogi for @vport
1611  *   1 - failed to issue a plogi for @vport
1612  **/
1613 int
1614 lpfc_issue_els_plogi(struct lpfc_vport *vport, uint32_t did, uint8_t retry)
1615 {
1616         struct lpfc_hba  *phba = vport->phba;
1617         struct serv_parm *sp;
1618         IOCB_t *icmd;
1619         struct lpfc_nodelist *ndlp;
1620         struct lpfc_iocbq *elsiocb;
1621         struct lpfc_sli *psli;
1622         uint8_t *pcmd;
1623         uint16_t cmdsize;
1624         int ret;
1625
1626         psli = &phba->sli;
1627
1628         ndlp = lpfc_findnode_did(vport, did);
1629         if (ndlp && !NLP_CHK_NODE_ACT(ndlp))
1630                 ndlp = NULL;
1631
1632         /* If ndlp is not NULL, we will bump the reference count on it */
1633         cmdsize = (sizeof(uint32_t) + sizeof(struct serv_parm));
1634         elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp, did,
1635                                      ELS_CMD_PLOGI);
1636         if (!elsiocb)
1637                 return 1;
1638
1639         icmd = &elsiocb->iocb;
1640         pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
1641
1642         /* For PLOGI request, remainder of payload is service parameters */
1643         *((uint32_t *) (pcmd)) = ELS_CMD_PLOGI;
1644         pcmd += sizeof(uint32_t);
1645         memcpy(pcmd, &vport->fc_sparam, sizeof(struct serv_parm));
1646         sp = (struct serv_parm *) pcmd;
1647
1648         if (sp->cmn.fcphLow < FC_PH_4_3)
1649                 sp->cmn.fcphLow = FC_PH_4_3;
1650
1651         if (sp->cmn.fcphHigh < FC_PH3)
1652                 sp->cmn.fcphHigh = FC_PH3;
1653
1654         lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
1655                 "Issue PLOGI:     did:x%x",
1656                 did, 0, 0);
1657
1658         phba->fc_stat.elsXmitPLOGI++;
1659         elsiocb->iocb_cmpl = lpfc_cmpl_els_plogi;
1660         ret = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
1661
1662         if (ret == IOCB_ERROR) {
1663                 lpfc_els_free_iocb(phba, elsiocb);
1664                 return 1;
1665         }
1666         return 0;
1667 }
1668
1669 /**
1670  * lpfc_cmpl_els_prli - Completion callback function for prli
1671  * @phba: pointer to lpfc hba data structure.
1672  * @cmdiocb: pointer to lpfc command iocb data structure.
1673  * @rspiocb: pointer to lpfc response iocb data structure.
1674  *
1675  * This routine is the completion callback function for a Process Login
1676  * (PRLI) ELS command. The PRLI response IOCB status is checked for error
1677  * status. If there is error status reported, PRLI retry shall be attempted
1678  * by invoking the lpfc_els_retry() routine. Otherwise, the state
1679  * NLP_EVT_CMPL_PRLI is sent to the Discover State Machine (DSM) for this
1680  * ndlp to mark the PRLI completion.
1681  **/
1682 static void
1683 lpfc_cmpl_els_prli(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
1684                    struct lpfc_iocbq *rspiocb)
1685 {
1686         struct lpfc_vport *vport = cmdiocb->vport;
1687         struct Scsi_Host  *shost = lpfc_shost_from_vport(vport);
1688         IOCB_t *irsp;
1689         struct lpfc_sli *psli;
1690         struct lpfc_nodelist *ndlp;
1691
1692         psli = &phba->sli;
1693         /* we pass cmdiocb to state machine which needs rspiocb as well */
1694         cmdiocb->context_un.rsp_iocb = rspiocb;
1695
1696         irsp = &(rspiocb->iocb);
1697         ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
1698         spin_lock_irq(shost->host_lock);
1699         ndlp->nlp_flag &= ~NLP_PRLI_SND;
1700         spin_unlock_irq(shost->host_lock);
1701
1702         lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
1703                 "PRLI cmpl:       status:x%x/x%x did:x%x",
1704                 irsp->ulpStatus, irsp->un.ulpWord[4],
1705                 ndlp->nlp_DID);
1706         /* PRLI completes to NPort <nlp_DID> */
1707         lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
1708                          "0103 PRLI completes to NPort x%x "
1709                          "Data: x%x x%x x%x x%x\n",
1710                          ndlp->nlp_DID, irsp->ulpStatus, irsp->un.ulpWord[4],
1711                          irsp->ulpTimeout, vport->num_disc_nodes);
1712
1713         vport->fc_prli_sent--;
1714         /* Check to see if link went down during discovery */
1715         if (lpfc_els_chk_latt(vport))
1716                 goto out;
1717
1718         if (irsp->ulpStatus) {
1719                 /* Check for retry */
1720                 if (lpfc_els_retry(phba, cmdiocb, rspiocb)) {
1721                         /* ELS command is being retried */
1722                         goto out;
1723                 }
1724                 /* PRLI failed */
1725                 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
1726                                  "2754 PRLI failure DID:%06X Status:x%x/x%x\n",
1727                                  ndlp->nlp_DID, irsp->ulpStatus,
1728                                  irsp->un.ulpWord[4]);
1729                 /* Do not call DSM for lpfc_els_abort'ed ELS cmds */
1730                 if (lpfc_error_lost_link(irsp))
1731                         goto out;
1732                 else
1733                         lpfc_disc_state_machine(vport, ndlp, cmdiocb,
1734                                                 NLP_EVT_CMPL_PRLI);
1735         } else
1736                 /* Good status, call state machine */
1737                 lpfc_disc_state_machine(vport, ndlp, cmdiocb,
1738                                         NLP_EVT_CMPL_PRLI);
1739 out:
1740         lpfc_els_free_iocb(phba, cmdiocb);
1741         return;
1742 }
1743
1744 /**
1745  * lpfc_issue_els_prli - Issue a prli iocb command for a vport
1746  * @vport: pointer to a host virtual N_Port data structure.
1747  * @ndlp: pointer to a node-list data structure.
1748  * @retry: number of retries to the command IOCB.
1749  *
1750  * This routine issues a Process Login (PRLI) ELS command for the
1751  * @vport. The PRLI service parameters are set up in the payload of the
1752  * PRLI Request command and the pointer to lpfc_cmpl_els_prli() routine
1753  * is put to the IOCB completion callback func field before invoking the
1754  * routine lpfc_sli_issue_iocb() to send out PRLI command.
1755  *
1756  * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
1757  * will be incremented by 1 for holding the ndlp and the reference to ndlp
1758  * will be stored into the context1 field of the IOCB for the completion
1759  * callback function to the PRLI ELS command.
1760  *
1761  * Return code
1762  *   0 - successfully issued prli iocb command for @vport
1763  *   1 - failed to issue prli iocb command for @vport
1764  **/
1765 int
1766 lpfc_issue_els_prli(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1767                     uint8_t retry)
1768 {
1769         struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1770         struct lpfc_hba *phba = vport->phba;
1771         PRLI *npr;
1772         IOCB_t *icmd;
1773         struct lpfc_iocbq *elsiocb;
1774         uint8_t *pcmd;
1775         uint16_t cmdsize;
1776
1777         cmdsize = (sizeof(uint32_t) + sizeof(PRLI));
1778         elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
1779                                      ndlp->nlp_DID, ELS_CMD_PRLI);
1780         if (!elsiocb)
1781                 return 1;
1782
1783         icmd = &elsiocb->iocb;
1784         pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
1785
1786         /* For PRLI request, remainder of payload is service parameters */
1787         memset(pcmd, 0, (sizeof(PRLI) + sizeof(uint32_t)));
1788         *((uint32_t *) (pcmd)) = ELS_CMD_PRLI;
1789         pcmd += sizeof(uint32_t);
1790
1791         /* For PRLI, remainder of payload is PRLI parameter page */
1792         npr = (PRLI *) pcmd;
1793         /*
1794          * If our firmware version is 3.20 or later,
1795          * set the following bits for FC-TAPE support.
1796          */
1797         if (phba->vpd.rev.feaLevelHigh >= 0x02) {
1798                 npr->ConfmComplAllowed = 1;
1799                 npr->Retry = 1;
1800                 npr->TaskRetryIdReq = 1;
1801         }
1802         npr->estabImagePair = 1;
1803         npr->readXferRdyDis = 1;
1804
1805         /* For FCP support */
1806         npr->prliType = PRLI_FCP_TYPE;
1807         npr->initiatorFunc = 1;
1808
1809         lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
1810                 "Issue PRLI:      did:x%x",
1811                 ndlp->nlp_DID, 0, 0);
1812
1813         phba->fc_stat.elsXmitPRLI++;
1814         elsiocb->iocb_cmpl = lpfc_cmpl_els_prli;
1815         spin_lock_irq(shost->host_lock);
1816         ndlp->nlp_flag |= NLP_PRLI_SND;
1817         spin_unlock_irq(shost->host_lock);
1818         if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) ==
1819             IOCB_ERROR) {
1820                 spin_lock_irq(shost->host_lock);
1821                 ndlp->nlp_flag &= ~NLP_PRLI_SND;
1822                 spin_unlock_irq(shost->host_lock);
1823                 lpfc_els_free_iocb(phba, elsiocb);
1824                 return 1;
1825         }
1826         vport->fc_prli_sent++;
1827         return 0;
1828 }
1829
1830 /**
1831  * lpfc_rscn_disc - Perform rscn discovery for a vport
1832  * @vport: pointer to a host virtual N_Port data structure.
1833  *
1834  * This routine performs Registration State Change Notification (RSCN)
1835  * discovery for a @vport. If the @vport's node port recovery count is not
1836  * zero, it will invoke the lpfc_els_disc_plogi() to perform PLOGI for all
1837  * the nodes that need recovery. If none of the PLOGI were needed through
1838  * the lpfc_els_disc_plogi() routine, the lpfc_end_rscn() routine shall be
1839  * invoked to check and handle possible more RSCN came in during the period
1840  * of processing the current ones.
1841  **/
1842 static void
1843 lpfc_rscn_disc(struct lpfc_vport *vport)
1844 {
1845         lpfc_can_disctmo(vport);
1846
1847         /* RSCN discovery */
1848         /* go thru NPR nodes and issue ELS PLOGIs */
1849         if (vport->fc_npr_cnt)
1850                 if (lpfc_els_disc_plogi(vport))
1851                         return;
1852
1853         lpfc_end_rscn(vport);
1854 }
1855
1856 /**
1857  * lpfc_adisc_done - Complete the adisc phase of discovery
1858  * @vport: pointer to lpfc_vport hba data structure that finished all ADISCs.
1859  *
1860  * This function is called when the final ADISC is completed during discovery.
1861  * This function handles clearing link attention or issuing reg_vpi depending
1862  * on whether npiv is enabled. This function also kicks off the PLOGI phase of
1863  * discovery.
1864  * This function is called with no locks held.
1865  **/
1866 static void
1867 lpfc_adisc_done(struct lpfc_vport *vport)
1868 {
1869         struct Scsi_Host   *shost = lpfc_shost_from_vport(vport);
1870         struct lpfc_hba   *phba = vport->phba;
1871
1872         /*
1873          * For NPIV, cmpl_reg_vpi will set port_state to READY,
1874          * and continue discovery.
1875          */
1876         if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
1877             !(vport->fc_flag & FC_RSCN_MODE) &&
1878             (phba->sli_rev < LPFC_SLI_REV4)) {
1879                 lpfc_issue_reg_vpi(phba, vport);
1880                 return;
1881         }
1882         /*
1883         * For SLI2, we need to set port_state to READY
1884         * and continue discovery.
1885         */
1886         if (vport->port_state < LPFC_VPORT_READY) {
1887                 /* If we get here, there is nothing to ADISC */
1888                 if (vport->port_type == LPFC_PHYSICAL_PORT)
1889                         lpfc_issue_clear_la(phba, vport);
1890                 if (!(vport->fc_flag & FC_ABORT_DISCOVERY)) {
1891                         vport->num_disc_nodes = 0;
1892                         /* go thru NPR list, issue ELS PLOGIs */
1893                         if (vport->fc_npr_cnt)
1894                                 lpfc_els_disc_plogi(vport);
1895                         if (!vport->num_disc_nodes) {
1896                                 spin_lock_irq(shost->host_lock);
1897                                 vport->fc_flag &= ~FC_NDISC_ACTIVE;
1898                                 spin_unlock_irq(shost->host_lock);
1899                                 lpfc_can_disctmo(vport);
1900                                 lpfc_end_rscn(vport);
1901                         }
1902                 }
1903                 vport->port_state = LPFC_VPORT_READY;
1904         } else
1905                 lpfc_rscn_disc(vport);
1906 }
1907
1908 /**
1909  * lpfc_more_adisc - Issue more adisc as needed
1910  * @vport: pointer to a host virtual N_Port data structure.
1911  *
1912  * This routine determines whether there are more ndlps on a @vport
1913  * node list need to have Address Discover (ADISC) issued. If so, it will
1914  * invoke the lpfc_els_disc_adisc() routine to issue ADISC on the @vport's
1915  * remaining nodes which need to have ADISC sent.
1916  **/
1917 void
1918 lpfc_more_adisc(struct lpfc_vport *vport)
1919 {
1920         int sentadisc;
1921
1922         if (vport->num_disc_nodes)
1923                 vport->num_disc_nodes--;
1924         /* Continue discovery with <num_disc_nodes> ADISCs to go */
1925         lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
1926                          "0210 Continue discovery with %d ADISCs to go "
1927                          "Data: x%x x%x x%x\n",
1928                          vport->num_disc_nodes, vport->fc_adisc_cnt,
1929                          vport->fc_flag, vport->port_state);
1930         /* Check to see if there are more ADISCs to be sent */
1931         if (vport->fc_flag & FC_NLP_MORE) {
1932                 lpfc_set_disctmo(vport);
1933                 /* go thru NPR nodes and issue any remaining ELS ADISCs */
1934                 sentadisc = lpfc_els_disc_adisc(vport);
1935         }
1936         if (!vport->num_disc_nodes)
1937                 lpfc_adisc_done(vport);
1938         return;
1939 }
1940
1941 /**
1942  * lpfc_cmpl_els_adisc - Completion callback function for adisc
1943  * @phba: pointer to lpfc hba data structure.
1944  * @cmdiocb: pointer to lpfc command iocb data structure.
1945  * @rspiocb: pointer to lpfc response iocb data structure.
1946  *
1947  * This routine is the completion function for issuing the Address Discover
1948  * (ADISC) command. It first checks to see whether link went down during
1949  * the discovery process. If so, the node will be marked as node port
1950  * recovery for issuing discover IOCB by the link attention handler and
1951  * exit. Otherwise, the response status is checked. If error was reported
1952  * in the response status, the ADISC command shall be retried by invoking
1953  * the lpfc_els_retry() routine. Otherwise, if no error was reported in
1954  * the response status, the state machine is invoked to set transition
1955  * with respect to NLP_EVT_CMPL_ADISC event.
1956  **/
1957 static void
1958 lpfc_cmpl_els_adisc(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
1959                     struct lpfc_iocbq *rspiocb)
1960 {
1961         struct lpfc_vport *vport = cmdiocb->vport;
1962         struct Scsi_Host  *shost = lpfc_shost_from_vport(vport);
1963         IOCB_t *irsp;
1964         struct lpfc_nodelist *ndlp;
1965         int  disc;
1966
1967         /* we pass cmdiocb to state machine which needs rspiocb as well */
1968         cmdiocb->context_un.rsp_iocb = rspiocb;
1969
1970         irsp = &(rspiocb->iocb);
1971         ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
1972
1973         lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
1974                 "ADISC cmpl:      status:x%x/x%x did:x%x",
1975                 irsp->ulpStatus, irsp->un.ulpWord[4],
1976                 ndlp->nlp_DID);
1977
1978         /* Since ndlp can be freed in the disc state machine, note if this node
1979          * is being used during discovery.
1980          */
1981         spin_lock_irq(shost->host_lock);
1982         disc = (ndlp->nlp_flag & NLP_NPR_2B_DISC);
1983         ndlp->nlp_flag &= ~(NLP_ADISC_SND | NLP_NPR_2B_DISC);
1984         spin_unlock_irq(shost->host_lock);
1985         /* ADISC completes to NPort <nlp_DID> */
1986         lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
1987                          "0104 ADISC completes to NPort x%x "
1988                          "Data: x%x x%x x%x x%x x%x\n",
1989                          ndlp->nlp_DID, irsp->ulpStatus, irsp->un.ulpWord[4],
1990                          irsp->ulpTimeout, disc, vport->num_disc_nodes);
1991         /* Check to see if link went down during discovery */
1992         if (lpfc_els_chk_latt(vport)) {
1993                 spin_lock_irq(shost->host_lock);
1994                 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
1995                 spin_unlock_irq(shost->host_lock);
1996                 goto out;
1997         }
1998
1999         if (irsp->ulpStatus) {
2000                 /* Check for retry */
2001                 if (lpfc_els_retry(phba, cmdiocb, rspiocb)) {
2002                         /* ELS command is being retried */
2003                         if (disc) {
2004                                 spin_lock_irq(shost->host_lock);
2005                                 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
2006                                 spin_unlock_irq(shost->host_lock);
2007                                 lpfc_set_disctmo(vport);
2008                         }
2009                         goto out;
2010                 }
2011                 /* ADISC failed */
2012                 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
2013                                  "2755 ADISC failure DID:%06X Status:x%x/x%x\n",
2014                                  ndlp->nlp_DID, irsp->ulpStatus,
2015                                  irsp->un.ulpWord[4]);
2016                 /* Do not call DSM for lpfc_els_abort'ed ELS cmds */
2017                 if (!lpfc_error_lost_link(irsp))
2018                         lpfc_disc_state_machine(vport, ndlp, cmdiocb,
2019                                                 NLP_EVT_CMPL_ADISC);
2020         } else
2021                 /* Good status, call state machine */
2022                 lpfc_disc_state_machine(vport, ndlp, cmdiocb,
2023                                         NLP_EVT_CMPL_ADISC);
2024
2025         /* Check to see if there are more ADISCs to be sent */
2026         if (disc && vport->num_disc_nodes)
2027                 lpfc_more_adisc(vport);
2028 out:
2029         lpfc_els_free_iocb(phba, cmdiocb);
2030         return;
2031 }
2032
2033 /**
2034  * lpfc_issue_els_adisc - Issue an address discover iocb to an node on a vport
2035  * @vport: pointer to a virtual N_Port data structure.
2036  * @ndlp: pointer to a node-list data structure.
2037  * @retry: number of retries to the command IOCB.
2038  *
2039  * This routine issues an Address Discover (ADISC) for an @ndlp on a
2040  * @vport. It prepares the payload of the ADISC ELS command, updates the
2041  * and states of the ndlp, and invokes the lpfc_sli_issue_iocb() routine
2042  * to issue the ADISC ELS command.
2043  *
2044  * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
2045  * will be incremented by 1 for holding the ndlp and the reference to ndlp
2046  * will be stored into the context1 field of the IOCB for the completion
2047  * callback function to the ADISC ELS command.
2048  *
2049  * Return code
2050  *   0 - successfully issued adisc
2051  *   1 - failed to issue adisc
2052  **/
2053 int
2054 lpfc_issue_els_adisc(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2055                      uint8_t retry)
2056 {
2057         struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2058         struct lpfc_hba  *phba = vport->phba;
2059         ADISC *ap;
2060         IOCB_t *icmd;
2061         struct lpfc_iocbq *elsiocb;
2062         uint8_t *pcmd;
2063         uint16_t cmdsize;
2064
2065         cmdsize = (sizeof(uint32_t) + sizeof(ADISC));
2066         elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
2067                                      ndlp->nlp_DID, ELS_CMD_ADISC);
2068         if (!elsiocb)
2069                 return 1;
2070
2071         icmd = &elsiocb->iocb;
2072         pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
2073
2074         /* For ADISC request, remainder of payload is service parameters */
2075         *((uint32_t *) (pcmd)) = ELS_CMD_ADISC;
2076         pcmd += sizeof(uint32_t);
2077
2078         /* Fill in ADISC payload */
2079         ap = (ADISC *) pcmd;
2080         ap->hardAL_PA = phba->fc_pref_ALPA;
2081         memcpy(&ap->portName, &vport->fc_portname, sizeof(struct lpfc_name));
2082         memcpy(&ap->nodeName, &vport->fc_nodename, sizeof(struct lpfc_name));
2083         ap->DID = be32_to_cpu(vport->fc_myDID);
2084
2085         lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2086                 "Issue ADISC:     did:x%x",
2087                 ndlp->nlp_DID, 0, 0);
2088
2089         phba->fc_stat.elsXmitADISC++;
2090         elsiocb->iocb_cmpl = lpfc_cmpl_els_adisc;
2091         spin_lock_irq(shost->host_lock);
2092         ndlp->nlp_flag |= NLP_ADISC_SND;
2093         spin_unlock_irq(shost->host_lock);
2094         if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) ==
2095             IOCB_ERROR) {
2096                 spin_lock_irq(shost->host_lock);
2097                 ndlp->nlp_flag &= ~NLP_ADISC_SND;
2098                 spin_unlock_irq(shost->host_lock);
2099                 lpfc_els_free_iocb(phba, elsiocb);
2100                 return 1;
2101         }
2102         return 0;
2103 }
2104
2105 /**
2106  * lpfc_cmpl_els_logo - Completion callback function for logo
2107  * @phba: pointer to lpfc hba data structure.
2108  * @cmdiocb: pointer to lpfc command iocb data structure.
2109  * @rspiocb: pointer to lpfc response iocb data structure.
2110  *
2111  * This routine is the completion function for issuing the ELS Logout (LOGO)
2112  * command. If no error status was reported from the LOGO response, the
2113  * state machine of the associated ndlp shall be invoked for transition with
2114  * respect to NLP_EVT_CMPL_LOGO event. Otherwise, if error status was reported,
2115  * the lpfc_els_retry() routine will be invoked to retry the LOGO command.
2116  **/
2117 static void
2118 lpfc_cmpl_els_logo(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
2119                    struct lpfc_iocbq *rspiocb)
2120 {
2121         struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
2122         struct lpfc_vport *vport = ndlp->vport;
2123         struct Scsi_Host  *shost = lpfc_shost_from_vport(vport);
2124         IOCB_t *irsp;
2125         struct lpfc_sli *psli;
2126
2127         psli = &phba->sli;
2128         /* we pass cmdiocb to state machine which needs rspiocb as well */
2129         cmdiocb->context_un.rsp_iocb = rspiocb;
2130
2131         irsp = &(rspiocb->iocb);
2132         spin_lock_irq(shost->host_lock);
2133         ndlp->nlp_flag &= ~NLP_LOGO_SND;
2134         spin_unlock_irq(shost->host_lock);
2135
2136         lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2137                 "LOGO cmpl:       status:x%x/x%x did:x%x",
2138                 irsp->ulpStatus, irsp->un.ulpWord[4],
2139                 ndlp->nlp_DID);
2140         /* LOGO completes to NPort <nlp_DID> */
2141         lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
2142                          "0105 LOGO completes to NPort x%x "
2143                          "Data: x%x x%x x%x x%x\n",
2144                          ndlp->nlp_DID, irsp->ulpStatus, irsp->un.ulpWord[4],
2145                          irsp->ulpTimeout, vport->num_disc_nodes);
2146         /* Check to see if link went down during discovery */
2147         if (lpfc_els_chk_latt(vport))
2148                 goto out;
2149
2150         if (ndlp->nlp_flag & NLP_TARGET_REMOVE) {
2151                 /* NLP_EVT_DEVICE_RM should unregister the RPI
2152                  * which should abort all outstanding IOs.
2153                  */
2154                 lpfc_disc_state_machine(vport, ndlp, cmdiocb,
2155                                         NLP_EVT_DEVICE_RM);
2156                 goto out;
2157         }
2158
2159         if (irsp->ulpStatus) {
2160                 /* Check for retry */
2161                 if (lpfc_els_retry(phba, cmdiocb, rspiocb))
2162                         /* ELS command is being retried */
2163                         goto out;
2164                 /* LOGO failed */
2165                 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
2166                                  "2756 LOGO failure DID:%06X Status:x%x/x%x\n",
2167                                  ndlp->nlp_DID, irsp->ulpStatus,
2168                                  irsp->un.ulpWord[4]);
2169                 /* Do not call DSM for lpfc_els_abort'ed ELS cmds */
2170                 if (lpfc_error_lost_link(irsp))
2171                         goto out;
2172                 else
2173                         lpfc_disc_state_machine(vport, ndlp, cmdiocb,
2174                                                 NLP_EVT_CMPL_LOGO);
2175         } else
2176                 /* Good status, call state machine.
2177                  * This will unregister the rpi if needed.
2178                  */
2179                 lpfc_disc_state_machine(vport, ndlp, cmdiocb,
2180                                         NLP_EVT_CMPL_LOGO);
2181 out:
2182         lpfc_els_free_iocb(phba, cmdiocb);
2183         return;
2184 }
2185
2186 /**
2187  * lpfc_issue_els_logo - Issue a logo to an node on a vport
2188  * @vport: pointer to a virtual N_Port data structure.
2189  * @ndlp: pointer to a node-list data structure.
2190  * @retry: number of retries to the command IOCB.
2191  *
2192  * This routine constructs and issues an ELS Logout (LOGO) iocb command
2193  * to a remote node, referred by an @ndlp on a @vport. It constructs the
2194  * payload of the IOCB, properly sets up the @ndlp state, and invokes the
2195  * lpfc_sli_issue_iocb() routine to send out the LOGO ELS command.
2196  *
2197  * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
2198  * will be incremented by 1 for holding the ndlp and the reference to ndlp
2199  * will be stored into the context1 field of the IOCB for the completion
2200  * callback function to the LOGO ELS command.
2201  *
2202  * Return code
2203  *   0 - successfully issued logo
2204  *   1 - failed to issue logo
2205  **/
2206 int
2207 lpfc_issue_els_logo(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2208                     uint8_t retry)
2209 {
2210         struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2211         struct lpfc_hba  *phba = vport->phba;
2212         IOCB_t *icmd;
2213         struct lpfc_iocbq *elsiocb;
2214         uint8_t *pcmd;
2215         uint16_t cmdsize;
2216         int rc;
2217
2218         spin_lock_irq(shost->host_lock);
2219         if (ndlp->nlp_flag & NLP_LOGO_SND) {
2220                 spin_unlock_irq(shost->host_lock);
2221                 return 0;
2222         }
2223         spin_unlock_irq(shost->host_lock);
2224
2225         cmdsize = (2 * sizeof(uint32_t)) + sizeof(struct lpfc_name);
2226         elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
2227                                      ndlp->nlp_DID, ELS_CMD_LOGO);
2228         if (!elsiocb)
2229                 return 1;
2230
2231         icmd = &elsiocb->iocb;
2232         pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
2233         *((uint32_t *) (pcmd)) = ELS_CMD_LOGO;
2234         pcmd += sizeof(uint32_t);
2235
2236         /* Fill in LOGO payload */
2237         *((uint32_t *) (pcmd)) = be32_to_cpu(vport->fc_myDID);
2238         pcmd += sizeof(uint32_t);
2239         memcpy(pcmd, &vport->fc_portname, sizeof(struct lpfc_name));
2240
2241         lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2242                 "Issue LOGO:      did:x%x",
2243                 ndlp->nlp_DID, 0, 0);
2244
2245         phba->fc_stat.elsXmitLOGO++;
2246         elsiocb->iocb_cmpl = lpfc_cmpl_els_logo;
2247         spin_lock_irq(shost->host_lock);
2248         ndlp->nlp_flag |= NLP_LOGO_SND;
2249         spin_unlock_irq(shost->host_lock);
2250         rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
2251
2252         if (rc == IOCB_ERROR) {
2253                 spin_lock_irq(shost->host_lock);
2254                 ndlp->nlp_flag &= ~NLP_LOGO_SND;
2255                 spin_unlock_irq(shost->host_lock);
2256                 lpfc_els_free_iocb(phba, elsiocb);
2257                 return 1;
2258         }
2259         return 0;
2260 }
2261
2262 /**
2263  * lpfc_cmpl_els_cmd - Completion callback function for generic els command
2264  * @phba: pointer to lpfc hba data structure.
2265  * @cmdiocb: pointer to lpfc command iocb data structure.
2266  * @rspiocb: pointer to lpfc response iocb data structure.
2267  *
2268  * This routine is a generic completion callback function for ELS commands.
2269  * Specifically, it is the callback function which does not need to perform
2270  * any command specific operations. It is currently used by the ELS command
2271  * issuing routines for the ELS State Change  Request (SCR),
2272  * lpfc_issue_els_scr(), and the ELS Fibre Channel Address Resolution
2273  * Protocol Response (FARPR) routine, lpfc_issue_els_farpr(). Other than
2274  * certain debug loggings, this callback function simply invokes the
2275  * lpfc_els_chk_latt() routine to check whether link went down during the
2276  * discovery process.
2277  **/
2278 static void
2279 lpfc_cmpl_els_cmd(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
2280                   struct lpfc_iocbq *rspiocb)
2281 {
2282         struct lpfc_vport *vport = cmdiocb->vport;
2283         IOCB_t *irsp;
2284
2285         irsp = &rspiocb->iocb;
2286
2287         lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2288                 "ELS cmd cmpl:    status:x%x/x%x did:x%x",
2289                 irsp->ulpStatus, irsp->un.ulpWord[4],
2290                 irsp->un.elsreq64.remoteID);
2291         /* ELS cmd tag <ulpIoTag> completes */
2292         lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
2293                          "0106 ELS cmd tag x%x completes Data: x%x x%x x%x\n",
2294                          irsp->ulpIoTag, irsp->ulpStatus,
2295                          irsp->un.ulpWord[4], irsp->ulpTimeout);
2296         /* Check to see if link went down during discovery */
2297         lpfc_els_chk_latt(vport);
2298         lpfc_els_free_iocb(phba, cmdiocb);
2299         return;
2300 }
2301
2302 /**
2303  * lpfc_issue_els_scr - Issue a scr to an node on a vport
2304  * @vport: pointer to a host virtual N_Port data structure.
2305  * @nportid: N_Port identifier to the remote node.
2306  * @retry: number of retries to the command IOCB.
2307  *
2308  * This routine issues a State Change Request (SCR) to a fabric node
2309  * on a @vport. The remote node @nportid is passed into the function. It
2310  * first search the @vport node list to find the matching ndlp. If no such
2311  * ndlp is found, a new ndlp shall be created for this (SCR) purpose. An
2312  * IOCB is allocated, payload prepared, and the lpfc_sli_issue_iocb()
2313  * routine is invoked to send the SCR IOCB.
2314  *
2315  * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
2316  * will be incremented by 1 for holding the ndlp and the reference to ndlp
2317  * will be stored into the context1 field of the IOCB for the completion
2318  * callback function to the SCR ELS command.
2319  *
2320  * Return code
2321  *   0 - Successfully issued scr command
2322  *   1 - Failed to issue scr command
2323  **/
2324 int
2325 lpfc_issue_els_scr(struct lpfc_vport *vport, uint32_t nportid, uint8_t retry)
2326 {
2327         struct lpfc_hba  *phba = vport->phba;
2328         IOCB_t *icmd;
2329         struct lpfc_iocbq *elsiocb;
2330         struct lpfc_sli *psli;
2331         uint8_t *pcmd;
2332         uint16_t cmdsize;
2333         struct lpfc_nodelist *ndlp;
2334
2335         psli = &phba->sli;
2336         cmdsize = (sizeof(uint32_t) + sizeof(SCR));
2337
2338         ndlp = lpfc_findnode_did(vport, nportid);
2339         if (!ndlp) {
2340                 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
2341                 if (!ndlp)
2342                         return 1;
2343                 lpfc_nlp_init(vport, ndlp, nportid);
2344                 lpfc_enqueue_node(vport, ndlp);
2345         } else if (!NLP_CHK_NODE_ACT(ndlp)) {
2346                 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
2347                 if (!ndlp)
2348                         return 1;
2349         }
2350
2351         elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
2352                                      ndlp->nlp_DID, ELS_CMD_SCR);
2353
2354         if (!elsiocb) {
2355                 /* This will trigger the release of the node just
2356                  * allocated
2357                  */
2358                 lpfc_nlp_put(ndlp);
2359                 return 1;
2360         }
2361
2362         icmd = &elsiocb->iocb;
2363         pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
2364
2365         *((uint32_t *) (pcmd)) = ELS_CMD_SCR;
2366         pcmd += sizeof(uint32_t);
2367
2368         /* For SCR, remainder of payload is SCR parameter page */
2369         memset(pcmd, 0, sizeof(SCR));
2370         ((SCR *) pcmd)->Function = SCR_FUNC_FULL;
2371
2372         lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2373                 "Issue SCR:       did:x%x",
2374                 ndlp->nlp_DID, 0, 0);
2375
2376         phba->fc_stat.elsXmitSCR++;
2377         elsiocb->iocb_cmpl = lpfc_cmpl_els_cmd;
2378         if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) ==
2379             IOCB_ERROR) {
2380                 /* The additional lpfc_nlp_put will cause the following
2381                  * lpfc_els_free_iocb routine to trigger the rlease of
2382                  * the node.
2383                  */
2384                 lpfc_nlp_put(ndlp);
2385                 lpfc_els_free_iocb(phba, elsiocb);
2386                 return 1;
2387         }
2388         /* This will cause the callback-function lpfc_cmpl_els_cmd to
2389          * trigger the release of node.
2390          */
2391         lpfc_nlp_put(ndlp);
2392         return 0;
2393 }
2394
2395 /**
2396  * lpfc_issue_els_farpr - Issue a farp to an node on a vport
2397  * @vport: pointer to a host virtual N_Port data structure.
2398  * @nportid: N_Port identifier to the remote node.
2399  * @retry: number of retries to the command IOCB.
2400  *
2401  * This routine issues a Fibre Channel Address Resolution Response
2402  * (FARPR) to a node on a vport. The remote node N_Port identifier (@nportid)
2403  * is passed into the function. It first search the @vport node list to find
2404  * the matching ndlp. If no such ndlp is found, a new ndlp shall be created
2405  * for this (FARPR) purpose. An IOCB is allocated, payload prepared, and the
2406  * lpfc_sli_issue_iocb() routine is invoked to send the FARPR ELS command.
2407  *
2408  * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
2409  * will be incremented by 1 for holding the ndlp and the reference to ndlp
2410  * will be stored into the context1 field of the IOCB for the completion
2411  * callback function to the PARPR ELS command.
2412  *
2413  * Return code
2414  *   0 - Successfully issued farpr command
2415  *   1 - Failed to issue farpr command
2416  **/
2417 static int
2418 lpfc_issue_els_farpr(struct lpfc_vport *vport, uint32_t nportid, uint8_t retry)
2419 {
2420         struct lpfc_hba  *phba = vport->phba;
2421         IOCB_t *icmd;
2422         struct lpfc_iocbq *elsiocb;
2423         struct lpfc_sli *psli;
2424         FARP *fp;
2425         uint8_t *pcmd;
2426         uint32_t *lp;
2427         uint16_t cmdsize;
2428         struct lpfc_nodelist *ondlp;
2429         struct lpfc_nodelist *ndlp;
2430
2431         psli = &phba->sli;
2432         cmdsize = (sizeof(uint32_t) + sizeof(FARP));
2433
2434         ndlp = lpfc_findnode_did(vport, nportid);
2435         if (!ndlp) {
2436                 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
2437                 if (!ndlp)
2438                         return 1;
2439                 lpfc_nlp_init(vport, ndlp, nportid);
2440                 lpfc_enqueue_node(vport, ndlp);
2441         } else if (!NLP_CHK_NODE_ACT(ndlp)) {
2442                 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
2443                 if (!ndlp)
2444                         return 1;
2445         }
2446
2447         elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp,
2448                                      ndlp->nlp_DID, ELS_CMD_RNID);
2449         if (!elsiocb) {
2450                 /* This will trigger the release of the node just
2451                  * allocated
2452                  */
2453                 lpfc_nlp_put(ndlp);
2454                 return 1;
2455         }
2456
2457         icmd = &elsiocb->iocb;
2458         pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
2459
2460         *((uint32_t *) (pcmd)) = ELS_CMD_FARPR;
2461         pcmd += sizeof(uint32_t);
2462
2463         /* Fill in FARPR payload */
2464         fp = (FARP *) (pcmd);
2465         memset(fp, 0, sizeof(FARP));
2466         lp = (uint32_t *) pcmd;
2467         *lp++ = be32_to_cpu(nportid);
2468         *lp++ = be32_to_cpu(vport->fc_myDID);
2469         fp->Rflags = 0;
2470         fp->Mflags = (FARP_MATCH_PORT | FARP_MATCH_NODE);
2471
2472         memcpy(&fp->RportName, &vport->fc_portname, sizeof(struct lpfc_name));
2473         memcpy(&fp->RnodeName, &vport->fc_nodename, sizeof(struct lpfc_name));
2474         ondlp = lpfc_findnode_did(vport, nportid);
2475         if (ondlp && NLP_CHK_NODE_ACT(ondlp)) {
2476                 memcpy(&fp->OportName, &ondlp->nlp_portname,
2477                        sizeof(struct lpfc_name));
2478                 memcpy(&fp->OnodeName, &ondlp->nlp_nodename,
2479                        sizeof(struct lpfc_name));
2480         }
2481
2482         lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2483                 "Issue FARPR:     did:x%x",
2484                 ndlp->nlp_DID, 0, 0);
2485
2486         phba->fc_stat.elsXmitFARPR++;
2487         elsiocb->iocb_cmpl = lpfc_cmpl_els_cmd;
2488         if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) ==
2489             IOCB_ERROR) {
2490                 /* The additional lpfc_nlp_put will cause the following
2491                  * lpfc_els_free_iocb routine to trigger the release of
2492                  * the node.
2493                  */
2494                 lpfc_nlp_put(ndlp);
2495                 lpfc_els_free_iocb(phba, elsiocb);
2496                 return 1;
2497         }
2498         /* This will cause the callback-function lpfc_cmpl_els_cmd to
2499          * trigger the release of the node.
2500          */
2501         lpfc_nlp_put(ndlp);
2502         return 0;
2503 }
2504
2505 /**
2506  * lpfc_cancel_retry_delay_tmo - Cancel the timer with delayed iocb-cmd retry
2507  * @vport: pointer to a host virtual N_Port data structure.
2508  * @nlp: pointer to a node-list data structure.
2509  *
2510  * This routine cancels the timer with a delayed IOCB-command retry for
2511  * a @vport's @ndlp. It stops the timer for the delayed function retrial and
2512  * removes the ELS retry event if it presents. In addition, if the
2513  * NLP_NPR_2B_DISC bit is set in the @nlp's nlp_flag bitmap, ADISC IOCB
2514  * commands are sent for the @vport's nodes that require issuing discovery
2515  * ADISC.
2516  **/
2517 void
2518 lpfc_cancel_retry_delay_tmo(struct lpfc_vport *vport, struct lpfc_nodelist *nlp)
2519 {
2520         struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2521         struct lpfc_work_evt *evtp;
2522
2523         if (!(nlp->nlp_flag & NLP_DELAY_TMO))
2524                 return;
2525         spin_lock_irq(shost->host_lock);
2526         nlp->nlp_flag &= ~NLP_DELAY_TMO;
2527         spin_unlock_irq(shost->host_lock);
2528         del_timer_sync(&nlp->nlp_delayfunc);
2529         nlp->nlp_last_elscmd = 0;
2530         if (!list_empty(&nlp->els_retry_evt.evt_listp)) {
2531                 list_del_init(&nlp->els_retry_evt.evt_listp);
2532                 /* Decrement nlp reference count held for the delayed retry */
2533                 evtp = &nlp->els_retry_evt;
2534                 lpfc_nlp_put((struct lpfc_nodelist *)evtp->evt_arg1);
2535         }
2536         if (nlp->nlp_flag & NLP_NPR_2B_DISC) {
2537                 spin_lock_irq(shost->host_lock);
2538                 nlp->nlp_flag &= ~NLP_NPR_2B_DISC;
2539                 spin_unlock_irq(shost->host_lock);
2540                 if (vport->num_disc_nodes) {
2541                         if (vport->port_state < LPFC_VPORT_READY) {
2542                                 /* Check if there are more ADISCs to be sent */
2543                                 lpfc_more_adisc(vport);
2544                         } else {
2545                                 /* Check if there are more PLOGIs to be sent */
2546                                 lpfc_more_plogi(vport);
2547                                 if (vport->num_disc_nodes == 0) {
2548                                         spin_lock_irq(shost->host_lock);
2549                                         vport->fc_flag &= ~FC_NDISC_ACTIVE;
2550                                         spin_unlock_irq(shost->host_lock);
2551                                         lpfc_can_disctmo(vport);
2552                                         lpfc_end_rscn(vport);
2553                                 }
2554                         }
2555                 }
2556         }
2557         return;
2558 }
2559
2560 /**
2561  * lpfc_els_retry_delay - Timer function with a ndlp delayed function timer
2562  * @ptr: holder for the pointer to the timer function associated data (ndlp).
2563  *
2564  * This routine is invoked by the ndlp delayed-function timer to check
2565  * whether there is any pending ELS retry event(s) with the node. If not, it
2566  * simply returns. Otherwise, if there is at least one ELS delayed event, it
2567  * adds the delayed events to the HBA work list and invokes the
2568  * lpfc_worker_wake_up() routine to wake up worker thread to process the
2569  * event. Note that lpfc_nlp_get() is called before posting the event to
2570  * the work list to hold reference count of ndlp so that it guarantees the
2571  * reference to ndlp will still be available when the worker thread gets
2572  * to the event associated with the ndlp.
2573  **/
2574 void
2575 lpfc_els_retry_delay(unsigned long ptr)
2576 {
2577         struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) ptr;
2578         struct lpfc_vport *vport = ndlp->vport;
2579         struct lpfc_hba   *phba = vport->phba;
2580         unsigned long flags;
2581         struct lpfc_work_evt  *evtp = &ndlp->els_retry_evt;
2582
2583         spin_lock_irqsave(&phba->hbalock, flags);
2584         if (!list_empty(&evtp->evt_listp)) {
2585                 spin_unlock_irqrestore(&phba->hbalock, flags);
2586                 return;
2587         }
2588
2589         /* We need to hold the node by incrementing the reference
2590          * count until the queued work is done
2591          */
2592         evtp->evt_arg1  = lpfc_nlp_get(ndlp);
2593         if (evtp->evt_arg1) {
2594                 evtp->evt = LPFC_EVT_ELS_RETRY;
2595                 list_add_tail(&evtp->evt_listp, &phba->work_list);
2596                 lpfc_worker_wake_up(phba);
2597         }
2598         spin_unlock_irqrestore(&phba->hbalock, flags);
2599         return;
2600 }
2601
2602 /**
2603  * lpfc_els_retry_delay_handler - Work thread handler for ndlp delayed function
2604  * @ndlp: pointer to a node-list data structure.
2605  *
2606  * This routine is the worker-thread handler for processing the @ndlp delayed
2607  * event(s), posted by the lpfc_els_retry_delay() routine. It simply retrieves
2608  * the last ELS command from the associated ndlp and invokes the proper ELS
2609  * function according to the delayed ELS command to retry the command.
2610  **/
2611 void
2612 lpfc_els_retry_delay_handler(struct lpfc_nodelist *ndlp)
2613 {
2614         struct lpfc_vport *vport = ndlp->vport;
2615         struct Scsi_Host  *shost = lpfc_shost_from_vport(vport);
2616         uint32_t cmd, did, retry;
2617
2618         spin_lock_irq(shost->host_lock);
2619         did = ndlp->nlp_DID;
2620         cmd = ndlp->nlp_last_elscmd;
2621         ndlp->nlp_last_elscmd = 0;
2622
2623         if (!(ndlp->nlp_flag & NLP_DELAY_TMO)) {
2624                 spin_unlock_irq(shost->host_lock);
2625                 return;
2626         }
2627
2628         ndlp->nlp_flag &= ~NLP_DELAY_TMO;
2629         spin_unlock_irq(shost->host_lock);
2630         /*
2631          * If a discovery event readded nlp_delayfunc after timer
2632          * firing and before processing the timer, cancel the
2633          * nlp_delayfunc.
2634          */
2635         del_timer_sync(&ndlp->nlp_delayfunc);
2636         retry = ndlp->nlp_retry;
2637         ndlp->nlp_retry = 0;
2638
2639         switch (cmd) {
2640         case ELS_CMD_FLOGI:
2641                 lpfc_issue_els_flogi(vport, ndlp, retry);
2642                 break;
2643         case ELS_CMD_PLOGI:
2644                 if (!lpfc_issue_els_plogi(vport, ndlp->nlp_DID, retry)) {
2645                         ndlp->nlp_prev_state = ndlp->nlp_state;
2646                         lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
2647                 }
2648                 break;
2649         case ELS_CMD_ADISC:
2650                 if (!lpfc_issue_els_adisc(vport, ndlp, retry)) {
2651                         ndlp->nlp_prev_state = ndlp->nlp_state;
2652                         lpfc_nlp_set_state(vport, ndlp, NLP_STE_ADISC_ISSUE);
2653                 }
2654                 break;
2655         case ELS_CMD_PRLI:
2656                 if (!lpfc_issue_els_prli(vport, ndlp, retry)) {
2657                         ndlp->nlp_prev_state = ndlp->nlp_state;
2658                         lpfc_nlp_set_state(vport, ndlp, NLP_STE_PRLI_ISSUE);
2659                 }
2660                 break;
2661         case ELS_CMD_LOGO:
2662                 if (!lpfc_issue_els_logo(vport, ndlp, retry)) {
2663                         ndlp->nlp_prev_state = ndlp->nlp_state;
2664                         lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
2665                 }
2666                 break;
2667         case ELS_CMD_FDISC:
2668                 lpfc_issue_els_fdisc(vport, ndlp, retry);
2669                 break;
2670         }
2671         return;
2672 }
2673
2674 /**
2675  * lpfc_els_retry - Make retry decision on an els command iocb
2676  * @phba: pointer to lpfc hba data structure.
2677  * @cmdiocb: pointer to lpfc command iocb data structure.
2678  * @rspiocb: pointer to lpfc response iocb data structure.
2679  *
2680  * This routine makes a retry decision on an ELS command IOCB, which has
2681  * failed. The following ELS IOCBs use this function for retrying the command
2682  * when previously issued command responsed with error status: FLOGI, PLOGI,
2683  * PRLI, ADISC, LOGO, and FDISC. Based on the ELS command type and the
2684  * returned error status, it makes the decision whether a retry shall be
2685  * issued for the command, and whether a retry shall be made immediately or
2686  * delayed. In the former case, the corresponding ELS command issuing-function
2687  * is called to retry the command. In the later case, the ELS command shall
2688  * be posted to the ndlp delayed event and delayed function timer set to the
2689  * ndlp for the delayed command issusing.
2690  *
2691  * Return code
2692  *   0 - No retry of els command is made
2693  *   1 - Immediate or delayed retry of els command is made
2694  **/
2695 static int
2696 lpfc_els_retry(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
2697                struct lpfc_iocbq *rspiocb)
2698 {
2699         struct lpfc_vport *vport = cmdiocb->vport;
2700         struct Scsi_Host  *shost = lpfc_shost_from_vport(vport);
2701         IOCB_t *irsp = &rspiocb->iocb;
2702         struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
2703         struct lpfc_dmabuf *pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
2704         uint32_t *elscmd;
2705         struct ls_rjt stat;
2706         int retry = 0, maxretry = lpfc_max_els_tries, delay = 0;
2707         int logerr = 0;
2708         uint32_t cmd = 0;
2709         uint32_t did;
2710
2711
2712         /* Note: context2 may be 0 for internal driver abort
2713          * of delays ELS command.
2714          */
2715
2716         if (pcmd && pcmd->virt) {
2717                 elscmd = (uint32_t *) (pcmd->virt);
2718                 cmd = *elscmd++;
2719         }
2720
2721         if (ndlp && NLP_CHK_NODE_ACT(ndlp))
2722                 did = ndlp->nlp_DID;
2723         else {
2724                 /* We should only hit this case for retrying PLOGI */
2725                 did = irsp->un.elsreq64.remoteID;
2726                 ndlp = lpfc_findnode_did(vport, did);
2727                 if ((!ndlp || !NLP_CHK_NODE_ACT(ndlp))
2728                     && (cmd != ELS_CMD_PLOGI))
2729                         return 1;
2730         }
2731
2732         lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2733                 "Retry ELS:       wd7:x%x wd4:x%x did:x%x",
2734                 *(((uint32_t *) irsp) + 7), irsp->un.ulpWord[4], ndlp->nlp_DID);
2735
2736         switch (irsp->ulpStatus) {
2737         case IOSTAT_FCP_RSP_ERROR:
2738         case IOSTAT_REMOTE_STOP:
2739                 break;
2740
2741         case IOSTAT_LOCAL_REJECT:
2742                 switch ((irsp->un.ulpWord[4] & 0xff)) {
2743                 case IOERR_LOOP_OPEN_FAILURE:
2744                         if (cmd == ELS_CMD_FLOGI) {
2745                                 if (PCI_DEVICE_ID_HORNET ==
2746                                         phba->pcidev->device) {
2747                                         phba->fc_topology = TOPOLOGY_LOOP;
2748                                         phba->pport->fc_myDID = 0;
2749                                         phba->alpa_map[0] = 0;
2750                                         phba->alpa_map[1] = 0;
2751                                 }
2752                         }
2753                         if (cmd == ELS_CMD_PLOGI && cmdiocb->retry == 0)
2754                                 delay = 1000;
2755                         retry = 1;
2756                         break;
2757
2758                 case IOERR_ILLEGAL_COMMAND:
2759                         lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
2760                                          "0124 Retry illegal cmd x%x "
2761                                          "retry:x%x delay:x%x\n",
2762                                          cmd, cmdiocb->retry, delay);
2763                         retry = 1;
2764                         /* All command's retry policy */
2765                         maxretry = 8;
2766                         if (cmdiocb->retry > 2)
2767                                 delay = 1000;
2768                         break;
2769
2770                 case IOERR_NO_RESOURCES:
2771                         logerr = 1; /* HBA out of resources */
2772                         retry = 1;
2773                         if (cmdiocb->retry > 100)
2774                                 delay = 100;
2775                         maxretry = 250;
2776                         break;
2777
2778                 case IOERR_ILLEGAL_FRAME:
2779                         delay = 100;
2780                         retry = 1;
2781                         break;
2782
2783                 case IOERR_SEQUENCE_TIMEOUT:
2784                 case IOERR_INVALID_RPI:
2785                         retry = 1;
2786                         break;
2787                 }
2788                 break;
2789
2790         case IOSTAT_NPORT_RJT:
2791         case IOSTAT_FABRIC_RJT:
2792                 if (irsp->un.ulpWord[4] & RJT_UNAVAIL_TEMP) {
2793                         retry = 1;
2794                         break;
2795                 }
2796                 break;
2797
2798         case IOSTAT_NPORT_BSY:
2799         case IOSTAT_FABRIC_BSY:
2800                 logerr = 1; /* Fabric / Remote NPort out of resources */
2801                 retry = 1;
2802                 break;
2803
2804         case IOSTAT_LS_RJT:
2805                 stat.un.lsRjtError = be32_to_cpu(irsp->un.ulpWord[4]);
2806                 /* Added for Vendor specifc support
2807                  * Just keep retrying for these Rsn / Exp codes
2808                  */
2809                 switch (stat.un.b.lsRjtRsnCode) {
2810                 case LSRJT_UNABLE_TPC:
2811                         if (stat.un.b.lsRjtRsnCodeExp ==
2812                             LSEXP_CMD_IN_PROGRESS) {
2813                                 if (cmd == ELS_CMD_PLOGI) {
2814                                         delay = 1000;
2815                                         maxretry = 48;
2816                                 }
2817                                 retry = 1;
2818                                 break;
2819                         }
2820                         if (stat.un.b.lsRjtRsnCodeExp ==
2821                             LSEXP_CANT_GIVE_DATA) {
2822                                 if (cmd == ELS_CMD_PLOGI) {
2823                                         delay = 1000;
2824                                         maxretry = 48;
2825                                 }
2826                                 retry = 1;
2827                                 break;
2828                         }
2829                         if (cmd == ELS_CMD_PLOGI) {
2830                                 delay = 1000;
2831                                 maxretry = lpfc_max_els_tries + 1;
2832                                 retry = 1;
2833                                 break;
2834                         }
2835                         if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
2836                           (cmd == ELS_CMD_FDISC) &&
2837                           (stat.un.b.lsRjtRsnCodeExp == LSEXP_OUT_OF_RESOURCE)){
2838                                 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
2839                                                  "0125 FDISC Failed (x%x). "
2840                                                  "Fabric out of resources\n",
2841                                                  stat.un.lsRjtError);
2842                                 lpfc_vport_set_state(vport,
2843                                                      FC_VPORT_NO_FABRIC_RSCS);
2844                         }
2845                         break;
2846
2847                 case LSRJT_LOGICAL_BSY:
2848                         if ((cmd == ELS_CMD_PLOGI) ||
2849                             (cmd == ELS_CMD_PRLI)) {
2850                                 delay = 1000;
2851                                 maxretry = 48;
2852                         } else if (cmd == ELS_CMD_FDISC) {
2853                                 /* FDISC retry policy */
2854                                 maxretry = 48;
2855                                 if (cmdiocb->retry >= 32)
2856                                         delay = 1000;
2857                         }
2858                         retry = 1;
2859                         break;
2860
2861                 case LSRJT_LOGICAL_ERR:
2862                         /* There are some cases where switches return this
2863                          * error when they are not ready and should be returning
2864                          * Logical Busy. We should delay every time.
2865                          */
2866                         if (cmd == ELS_CMD_FDISC &&
2867                             stat.un.b.lsRjtRsnCodeExp == LSEXP_PORT_LOGIN_REQ) {
2868                                 maxretry = 3;
2869                                 delay = 1000;
2870                                 retry = 1;
2871                                 break;
2872                         }
2873                 case LSRJT_PROTOCOL_ERR:
2874                         if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
2875                           (cmd == ELS_CMD_FDISC) &&
2876                           ((stat.un.b.lsRjtRsnCodeExp == LSEXP_INVALID_PNAME) ||
2877                           (stat.un.b.lsRjtRsnCodeExp == LSEXP_INVALID_NPORT_ID))
2878                           ) {
2879                                 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
2880                                                  "0122 FDISC Failed (x%x). "
2881                                                  "Fabric Detected Bad WWN\n",
2882                                                  stat.un.lsRjtError);
2883                                 lpfc_vport_set_state(vport,
2884                                                      FC_VPORT_FABRIC_REJ_WWN);
2885                         }
2886                         break;
2887                 }
2888                 break;
2889
2890         case IOSTAT_INTERMED_RSP:
2891         case IOSTAT_BA_RJT:
2892                 break;
2893
2894         default:
2895                 break;
2896         }
2897
2898         if (did == FDMI_DID)
2899                 retry = 1;
2900
2901         if (((cmd == ELS_CMD_FLOGI) || (cmd == ELS_CMD_FDISC)) &&
2902             (phba->fc_topology != TOPOLOGY_LOOP) &&
2903             !lpfc_error_lost_link(irsp)) {
2904                 /* FLOGI retry policy */
2905                 retry = 1;
2906                 /* retry forever */
2907                 maxretry = 0;
2908                 if (cmdiocb->retry >= 100)
2909                         delay = 5000;
2910                 else if (cmdiocb->retry >= 32)
2911                         delay = 1000;
2912         }
2913
2914         cmdiocb->retry++;
2915         if (maxretry && (cmdiocb->retry >= maxretry)) {
2916                 phba->fc_stat.elsRetryExceeded++;
2917                 retry = 0;
2918         }
2919
2920         if ((vport->load_flag & FC_UNLOADING) != 0)
2921                 retry = 0;
2922
2923         if (retry) {
2924                 if ((cmd == ELS_CMD_PLOGI) || (cmd == ELS_CMD_FDISC)) {
2925                         /* Stop retrying PLOGI and FDISC if in FCF discovery */
2926                         if (phba->fcf.fcf_flag & FCF_DISCOVERY) {
2927                                 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
2928                                                  "2849 Stop retry ELS command "
2929                                                  "x%x to remote NPORT x%x, "
2930                                                  "Data: x%x x%x\n", cmd, did,
2931                                                  cmdiocb->retry, delay);
2932                                 return 0;
2933                         }
2934                 }
2935
2936                 /* Retry ELS command <elsCmd> to remote NPORT <did> */
2937                 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
2938                                  "0107 Retry ELS command x%x to remote "
2939                                  "NPORT x%x Data: x%x x%x\n",
2940                                  cmd, did, cmdiocb->retry, delay);
2941
2942                 if (((cmd == ELS_CMD_PLOGI) || (cmd == ELS_CMD_ADISC)) &&
2943                         ((irsp->ulpStatus != IOSTAT_LOCAL_REJECT) ||
2944                         ((irsp->un.ulpWord[4] & 0xff) != IOERR_NO_RESOURCES))) {
2945                         /* Don't reset timer for no resources */
2946
2947                         /* If discovery / RSCN timer is running, reset it */
2948                         if (timer_pending(&vport->fc_disctmo) ||
2949                             (vport->fc_flag & FC_RSCN_MODE))
2950                                 lpfc_set_disctmo(vport);
2951                 }
2952
2953                 phba->fc_stat.elsXmitRetry++;
2954                 if (ndlp && NLP_CHK_NODE_ACT(ndlp) && delay) {
2955                         phba->fc_stat.elsDelayRetry++;
2956                         ndlp->nlp_retry = cmdiocb->retry;
2957
2958                         /* delay is specified in milliseconds */
2959                         mod_timer(&ndlp->nlp_delayfunc,
2960                                 jiffies + msecs_to_jiffies(delay));
2961                         spin_lock_irq(shost->host_lock);
2962                         ndlp->nlp_flag |= NLP_DELAY_TMO;
2963                         spin_unlock_irq(shost->host_lock);
2964
2965                         ndlp->nlp_prev_state = ndlp->nlp_state;
2966                         if (cmd == ELS_CMD_PRLI)
2967                                 lpfc_nlp_set_state(vport, ndlp,
2968                                         NLP_STE_REG_LOGIN_ISSUE);
2969                         else
2970                                 lpfc_nlp_set_state(vport, ndlp,
2971                                         NLP_STE_NPR_NODE);
2972                         ndlp->nlp_last_elscmd = cmd;
2973
2974                         return 1;
2975                 }
2976                 switch (cmd) {
2977                 case ELS_CMD_FLOGI:
2978                         lpfc_issue_els_flogi(vport, ndlp, cmdiocb->retry);
2979                         return 1;
2980                 case ELS_CMD_FDISC:
2981                         lpfc_issue_els_fdisc(vport, ndlp, cmdiocb->retry);
2982                         return 1;
2983                 case ELS_CMD_PLOGI:
2984                         if (ndlp && NLP_CHK_NODE_ACT(ndlp)) {
2985                                 ndlp->nlp_prev_state = ndlp->nlp_state;
2986                                 lpfc_nlp_set_state(vport, ndlp,
2987                                                    NLP_STE_PLOGI_ISSUE);
2988                         }
2989                         lpfc_issue_els_plogi(vport, did, cmdiocb->retry);
2990                         return 1;
2991                 case ELS_CMD_ADISC:
2992                         ndlp->nlp_prev_state = ndlp->nlp_state;
2993                         lpfc_nlp_set_state(vport, ndlp, NLP_STE_ADISC_ISSUE);
2994                         lpfc_issue_els_adisc(vport, ndlp, cmdiocb->retry);
2995                         return 1;
2996                 case ELS_CMD_PRLI:
2997                         ndlp->nlp_prev_state = ndlp->nlp_state;
2998                         lpfc_nlp_set_state(vport, ndlp, NLP_STE_PRLI_ISSUE);
2999                         lpfc_issue_els_prli(vport, ndlp, cmdiocb->retry);
3000                         return 1;
3001                 case ELS_CMD_LOGO:
3002                         ndlp->nlp_prev_state = ndlp->nlp_state;
3003                         lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
3004                         lpfc_issue_els_logo(vport, ndlp, cmdiocb->retry);
3005                         return 1;
3006                 }
3007         }
3008         /* No retry ELS command <elsCmd> to remote NPORT <did> */
3009         if (logerr) {
3010                 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
3011                          "0137 No retry ELS command x%x to remote "
3012                          "NPORT x%x: Out of Resources: Error:x%x/%x\n",
3013                          cmd, did, irsp->ulpStatus,
3014                          irsp->un.ulpWord[4]);
3015         }
3016         else {
3017                 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
3018                          "0108 No retry ELS command x%x to remote "
3019                          "NPORT x%x Retried:%d Error:x%x/%x\n",
3020                          cmd, did, cmdiocb->retry, irsp->ulpStatus,
3021                          irsp->un.ulpWord[4]);
3022         }
3023         return 0;
3024 }
3025
3026 /**
3027  * lpfc_els_free_data - Free lpfc dma buffer and data structure with an iocb
3028  * @phba: pointer to lpfc hba data structure.
3029  * @buf_ptr1: pointer to the lpfc DMA buffer data structure.
3030  *
3031  * This routine releases the lpfc DMA (Direct Memory Access) buffer(s)
3032  * associated with a command IOCB back to the lpfc DMA buffer pool. It first
3033  * checks to see whether there is a lpfc DMA buffer associated with the
3034  * response of the command IOCB. If so, it will be released before releasing
3035  * the lpfc DMA buffer associated with the IOCB itself.
3036  *
3037  * Return code
3038  *   0 - Successfully released lpfc DMA buffer (currently, always return 0)
3039  **/
3040 static int
3041 lpfc_els_free_data(struct lpfc_hba *phba, struct lpfc_dmabuf *buf_ptr1)
3042 {
3043         struct lpfc_dmabuf *buf_ptr;
3044
3045         /* Free the response before processing the command. */
3046         if (!list_empty(&buf_ptr1->list)) {
3047                 list_remove_head(&buf_ptr1->list, buf_ptr,
3048                                  struct lpfc_dmabuf,
3049                                  list);
3050                 lpfc_mbuf_free(phba, buf_ptr->virt, buf_ptr->phys);
3051                 kfree(buf_ptr);
3052         }
3053         lpfc_mbuf_free(phba, buf_ptr1->virt, buf_ptr1->phys);
3054         kfree(buf_ptr1);
3055         return 0;
3056 }
3057
3058 /**
3059  * lpfc_els_free_bpl - Free lpfc dma buffer and data structure with bpl
3060  * @phba: pointer to lpfc hba data structure.
3061  * @buf_ptr: pointer to the lpfc dma buffer data structure.
3062  *
3063  * This routine releases the lpfc Direct Memory Access (DMA) buffer
3064  * associated with a Buffer Pointer List (BPL) back to the lpfc DMA buffer
3065  * pool.
3066  *
3067  * Return code
3068  *   0 - Successfully released lpfc DMA buffer (currently, always return 0)
3069  **/
3070 static int
3071 lpfc_els_free_bpl(struct lpfc_hba *phba, struct lpfc_dmabuf *buf_ptr)
3072 {
3073         lpfc_mbuf_free(phba, buf_ptr->virt, buf_ptr->phys);
3074         kfree(buf_ptr);
3075         return 0;
3076 }
3077
3078 /**
3079  * lpfc_els_free_iocb - Free a command iocb and its associated resources
3080  * @phba: pointer to lpfc hba data structure.
3081  * @elsiocb: pointer to lpfc els command iocb data structure.
3082  *
3083  * This routine frees a command IOCB and its associated resources. The
3084  * command IOCB data structure contains the reference to various associated
3085  * resources, these fields must be set to NULL if the associated reference
3086  * not present:
3087  *   context1 - reference to ndlp
3088  *   context2 - reference to cmd
3089  *   context2->next - reference to rsp
3090  *   context3 - reference to bpl
3091  *
3092  * It first properly decrements the reference count held on ndlp for the
3093  * IOCB completion callback function. If LPFC_DELAY_MEM_FREE flag is not
3094  * set, it invokes the lpfc_els_free_data() routine to release the Direct
3095  * Memory Access (DMA) buffers associated with the IOCB. Otherwise, it
3096  * adds the DMA buffer the @phba data structure for the delayed release.
3097  * If reference to the Buffer Pointer List (BPL) is present, the
3098  * lpfc_els_free_bpl() routine is invoked to release the DMA memory
3099  * associated with BPL. Finally, the lpfc_sli_release_iocbq() routine is
3100  * invoked to release the IOCB data structure back to @phba IOCBQ list.
3101  *
3102  * Return code
3103  *   0 - Success (currently, always return 0)
3104  **/
3105 int
3106 lpfc_els_free_iocb(struct lpfc_hba *phba, struct lpfc_iocbq *elsiocb)
3107 {
3108         struct lpfc_dmabuf *buf_ptr, *buf_ptr1;
3109         struct lpfc_nodelist *ndlp;
3110
3111         ndlp = (struct lpfc_nodelist *)elsiocb->context1;
3112         if (ndlp) {
3113                 if (ndlp->nlp_flag & NLP_DEFER_RM) {
3114                         lpfc_nlp_put(ndlp);
3115
3116                         /* If the ndlp is not being used by another discovery
3117                          * thread, free it.
3118                          */
3119                         if (!lpfc_nlp_not_used(ndlp)) {
3120                                 /* If ndlp is being used by another discovery
3121                                  * thread, just clear NLP_DEFER_RM
3122                                  */
3123                                 ndlp->nlp_flag &= ~NLP_DEFER_RM;
3124                         }
3125                 }
3126                 else
3127                         lpfc_nlp_put(ndlp);
3128                 elsiocb->context1 = NULL;
3129         }
3130         /* context2  = cmd,  context2->next = rsp, context3 = bpl */
3131         if (elsiocb->context2) {
3132                 if (elsiocb->iocb_flag & LPFC_DELAY_MEM_FREE) {
3133                         /* Firmware could still be in progress of DMAing
3134                          * payload, so don't free data buffer till after
3135                          * a hbeat.
3136                          */
3137                         elsiocb->iocb_flag &= ~LPFC_DELAY_MEM_FREE;
3138                         buf_ptr = elsiocb->context2;
3139                         elsiocb->context2 = NULL;
3140                         if (buf_ptr) {
3141                                 buf_ptr1 = NULL;
3142                                 spin_lock_irq(&phba->hbalock);
3143                                 if (!list_empty(&buf_ptr->list)) {
3144                                         list_remove_head(&buf_ptr->list,
3145                                                 buf_ptr1, struct lpfc_dmabuf,
3146                                                 list);
3147                                         INIT_LIST_HEAD(&buf_ptr1->list);
3148                                         list_add_tail(&buf_ptr1->list,
3149                                                 &phba->elsbuf);
3150                                         phba->elsbuf_cnt++;
3151                                 }
3152                                 INIT_LIST_HEAD(&buf_ptr->list);
3153                                 list_add_tail(&buf_ptr->list, &phba->elsbuf);
3154                                 phba->elsbuf_cnt++;
3155                                 spin_unlock_irq(&phba->hbalock);
3156                         }
3157                 } else {
3158                         buf_ptr1 = (struct lpfc_dmabuf *) elsiocb->context2;
3159                         lpfc_els_free_data(phba, buf_ptr1);
3160                 }
3161         }
3162
3163         if (elsiocb->context3) {
3164                 buf_ptr = (struct lpfc_dmabuf *) elsiocb->context3;
3165                 lpfc_els_free_bpl(phba, buf_ptr);
3166         }
3167         lpfc_sli_release_iocbq(phba, elsiocb);
3168         return 0;
3169 }
3170
3171 /**
3172  * lpfc_cmpl_els_logo_acc - Completion callback function to logo acc response
3173  * @phba: pointer to lpfc hba data structure.
3174  * @cmdiocb: pointer to lpfc command iocb data structure.
3175  * @rspiocb: pointer to lpfc response iocb data structure.
3176  *
3177  * This routine is the completion callback function to the Logout (LOGO)
3178  * Accept (ACC) Response ELS command. This routine is invoked to indicate
3179  * the completion of the LOGO process. It invokes the lpfc_nlp_not_used() to
3180  * release the ndlp if it has the last reference remaining (reference count
3181  * is 1). If succeeded (meaning ndlp released), it sets the IOCB context1
3182  * field to NULL to inform the following lpfc_els_free_iocb() routine no
3183  * ndlp reference count needs to be decremented. Otherwise, the ndlp
3184  * reference use-count shall be decremented by the lpfc_els_free_iocb()
3185  * routine. Finally, the lpfc_els_free_iocb() is invoked to release the
3186  * IOCB data structure.
3187  **/
3188 static void
3189 lpfc_cmpl_els_logo_acc(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
3190                        struct lpfc_iocbq *rspiocb)
3191 {
3192         struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
3193         struct lpfc_vport *vport = cmdiocb->vport;
3194         IOCB_t *irsp;
3195
3196         irsp = &rspiocb->iocb;
3197         lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
3198                 "ACC LOGO cmpl:   status:x%x/x%x did:x%x",
3199                 irsp->ulpStatus, irsp->un.ulpWord[4], ndlp->nlp_DID);
3200         /* ACC to LOGO completes to NPort <nlp_DID> */
3201         lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
3202                          "0109 ACC to LOGO completes to NPort x%x "
3203                          "Data: x%x x%x x%x\n",
3204                          ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
3205                          ndlp->nlp_rpi);
3206
3207         if (ndlp->nlp_state == NLP_STE_NPR_NODE) {
3208                 /* NPort Recovery mode or node is just allocated */
3209                 if (!lpfc_nlp_not_used(ndlp)) {
3210                         /* If the ndlp is being used by another discovery
3211                          * thread, just unregister the RPI.
3212                          */
3213                         lpfc_unreg_rpi(vport, ndlp);
3214                 } else {
3215                         /* Indicate the node has already released, should
3216                          * not reference to it from within lpfc_els_free_iocb.
3217                          */
3218                         cmdiocb->context1 = NULL;
3219                 }
3220         }
3221         lpfc_els_free_iocb(phba, cmdiocb);
3222         return;
3223 }
3224
3225 /**
3226  * lpfc_mbx_cmpl_dflt_rpi - Completion callbk func for unreg dflt rpi mbox cmd
3227  * @phba: pointer to lpfc hba data structure.
3228  * @pmb: pointer to the driver internal queue element for mailbox command.
3229  *
3230  * This routine is the completion callback function for unregister default
3231  * RPI (Remote Port Index) mailbox command to the @phba. It simply releases
3232  * the associated lpfc Direct Memory Access (DMA) buffer back to the pool and
3233  * decrements the ndlp reference count held for this completion callback
3234  * function. After that, it invokes the lpfc_nlp_not_used() to check
3235  * whether there is only one reference left on the ndlp. If so, it will
3236  * perform one more decrement and trigger the release of the ndlp.
3237  **/
3238 void
3239 lpfc_mbx_cmpl_dflt_rpi(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
3240 {
3241         struct lpfc_dmabuf *mp = (struct lpfc_dmabuf *) (pmb->context1);
3242         struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) pmb->context2;
3243
3244         /*
3245          * This routine is used to register and unregister in previous SLI
3246          * modes.
3247          */
3248         if ((pmb->u.mb.mbxCommand == MBX_UNREG_LOGIN) &&
3249             (phba->sli_rev == LPFC_SLI_REV4))
3250                 lpfc_sli4_free_rpi(phba, pmb->u.mb.un.varUnregLogin.rpi);
3251
3252         pmb->context1 = NULL;
3253         pmb->context2 = NULL;
3254
3255         lpfc_mbuf_free(phba, mp->virt, mp->phys);
3256         kfree(mp);
3257         mempool_free(pmb, phba->mbox_mem_pool);
3258         if (ndlp && NLP_CHK_NODE_ACT(ndlp)) {
3259                 lpfc_nlp_put(ndlp);
3260                 /* This is the end of the default RPI cleanup logic for this
3261                  * ndlp. If no other discovery threads are using this ndlp.
3262                  * we should free all resources associated with it.
3263                  */
3264                 lpfc_nlp_not_used(ndlp);
3265         }
3266
3267         return;
3268 }
3269
3270 /**
3271  * lpfc_cmpl_els_rsp - Completion callback function for els response iocb cmd
3272  * @phba: pointer to lpfc hba data structure.
3273  * @cmdiocb: pointer to lpfc command iocb data structure.
3274  * @rspiocb: pointer to lpfc response iocb data structure.
3275  *
3276  * This routine is the completion callback function for ELS Response IOCB
3277  * command. In normal case, this callback function just properly sets the
3278  * nlp_flag bitmap in the ndlp data structure, if the mbox command reference
3279  * field in the command IOCB is not NULL, the referred mailbox command will
3280  * be send out, and then invokes the lpfc_els_free_iocb() routine to release
3281  * the IOCB. Under error conditions, such as when a LS_RJT is returned or a
3282  * link down event occurred during the discovery, the lpfc_nlp_not_used()
3283  * routine shall be invoked trying to release the ndlp if no other threads
3284  * are currently referring it.
3285  **/
3286 static void
3287 lpfc_cmpl_els_rsp(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
3288                   struct lpfc_iocbq *rspiocb)
3289 {
3290         struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
3291         struct lpfc_vport *vport = ndlp ? ndlp->vport : NULL;
3292         struct Scsi_Host  *shost = vport ? lpfc_shost_from_vport(vport) : NULL;
3293         IOCB_t  *irsp;
3294         uint8_t *pcmd;
3295         LPFC_MBOXQ_t *mbox = NULL;
3296         struct lpfc_dmabuf *mp = NULL;
3297         uint32_t ls_rjt = 0;
3298
3299         irsp = &rspiocb->iocb;
3300
3301         if (cmdiocb->context_un.mbox)
3302                 mbox = cmdiocb->context_un.mbox;
3303
3304         /* First determine if this is a LS_RJT cmpl. Note, this callback
3305          * function can have cmdiocb->contest1 (ndlp) field set to NULL.
3306          */
3307         pcmd = (uint8_t *) (((struct lpfc_dmabuf *) cmdiocb->context2)->virt);
3308         if (ndlp && NLP_CHK_NODE_ACT(ndlp) &&
3309             (*((uint32_t *) (pcmd)) == ELS_CMD_LS_RJT)) {
3310                 /* A LS_RJT associated with Default RPI cleanup has its own
3311                  * separate code path.
3312                  */
3313                 if (!(ndlp->nlp_flag & NLP_RM_DFLT_RPI))
3314                         ls_rjt = 1;
3315         }
3316
3317         /* Check to see if link went down during discovery */
3318         if (!ndlp || !NLP_CHK_NODE_ACT(ndlp) || lpfc_els_chk_latt(vport)) {
3319                 if (mbox) {
3320                         mp = (struct lpfc_dmabuf *) mbox->context1;
3321                         if (mp) {
3322                                 lpfc_mbuf_free(phba, mp->virt, mp->phys);
3323                                 kfree(mp);
3324                         }
3325                         mempool_free(mbox, phba->mbox_mem_pool);
3326                 }
3327                 if (ndlp && NLP_CHK_NODE_ACT(ndlp) &&
3328                     (ndlp->nlp_flag & NLP_RM_DFLT_RPI))
3329                         if (lpfc_nlp_not_used(ndlp)) {
3330                                 ndlp = NULL;
3331                                 /* Indicate the node has already released,
3332                                  * should not reference to it from within
3333                                  * the routine lpfc_els_free_iocb.
3334                                  */
3335                                 cmdiocb->context1 = NULL;
3336                         }
3337                 goto out;
3338         }
3339
3340         lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
3341                 "ELS rsp cmpl:    status:x%x/x%x did:x%x",
3342                 irsp->ulpStatus, irsp->un.ulpWord[4],
3343                 cmdiocb->iocb.un.elsreq64.remoteID);
3344         /* ELS response tag <ulpIoTag> completes */
3345         lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
3346                          "0110 ELS response tag x%x completes "
3347                          "Data: x%x x%x x%x x%x x%x x%x x%x\n",
3348                          cmdiocb->iocb.ulpIoTag, rspiocb->iocb.ulpStatus,
3349                          rspiocb->iocb.un.ulpWord[4], rspiocb->iocb.ulpTimeout,
3350                          ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
3351                          ndlp->nlp_rpi);
3352         if (mbox) {
3353                 if ((rspiocb->iocb.ulpStatus == 0)
3354                     && (ndlp->nlp_flag & NLP_ACC_REGLOGIN)) {
3355                         lpfc_unreg_rpi(vport, ndlp);
3356                         /* Increment reference count to ndlp to hold the
3357                          * reference to ndlp for the callback function.
3358                          */
3359                         mbox->context2 = lpfc_nlp_get(ndlp);
3360                         mbox->vport = vport;
3361                         if (ndlp->nlp_flag & NLP_RM_DFLT_RPI) {
3362                                 mbox->mbox_flag |= LPFC_MBX_IMED_UNREG;
3363                                 mbox->mbox_cmpl = lpfc_mbx_cmpl_dflt_rpi;
3364                         }
3365                         else {
3366                                 mbox->mbox_cmpl = lpfc_mbx_cmpl_reg_login;
3367                                 ndlp->nlp_prev_state = ndlp->nlp_state;
3368                                 lpfc_nlp_set_state(vport, ndlp,
3369                                            NLP_STE_REG_LOGIN_ISSUE);
3370                         }
3371                         if (lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT)
3372                             != MBX_NOT_FINISHED)
3373                                 goto out;
3374                         else
3375                                 /* Decrement the ndlp reference count we
3376                                  * set for this failed mailbox command.
3377                                  */
3378                                 lpfc_nlp_put(ndlp);
3379
3380                         /* ELS rsp: Cannot issue reg_login for <NPortid> */
3381                         lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
3382                                 "0138 ELS rsp: Cannot issue reg_login for x%x "
3383                                 "Data: x%x x%x x%x\n",
3384                                 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
3385                                 ndlp->nlp_rpi);
3386
3387                         if (lpfc_nlp_not_used(ndlp)) {
3388                                 ndlp = NULL;
3389                                 /* Indicate node has already been released,
3390                                  * should not reference to it from within
3391                                  * the routine lpfc_els_free_iocb.
3392                                  */
3393                                 cmdiocb->context1 = NULL;
3394                         }
3395                 } else {
3396                         /* Do not drop node for lpfc_els_abort'ed ELS cmds */
3397                         if (!lpfc_error_lost_link(irsp) &&
3398                             ndlp->nlp_flag & NLP_ACC_REGLOGIN) {
3399                                 if (lpfc_nlp_not_used(ndlp)) {
3400                                         ndlp = NULL;
3401                                         /* Indicate node has already been
3402                                          * released, should not reference
3403                                          * to it from within the routine
3404                                          * lpfc_els_free_iocb.
3405                                          */
3406                                         cmdiocb->context1 = NULL;
3407                                 }
3408                         }
3409                 }
3410                 mp = (struct lpfc_dmabuf *) mbox->context1;
3411                 if (mp) {
3412                         lpfc_mbuf_free(phba, mp->virt, mp->phys);
3413                         kfree(mp);
3414                 }
3415                 mempool_free(mbox, phba->mbox_mem_pool);
3416         }
3417 out:
3418         if (ndlp && NLP_CHK_NODE_ACT(ndlp)) {
3419                 spin_lock_irq(shost->host_lock);
3420                 ndlp->nlp_flag &= ~(NLP_ACC_REGLOGIN | NLP_RM_DFLT_RPI);
3421                 spin_unlock_irq(shost->host_lock);
3422
3423                 /* If the node is not being used by another discovery thread,
3424                  * and we are sending a reject, we are done with it.
3425                  * Release driver reference count here and free associated
3426                  * resources.
3427                  */
3428                 if (ls_rjt)
3429                         if (lpfc_nlp_not_used(ndlp))
3430                                 /* Indicate node has already been released,
3431                                  * should not reference to it from within
3432                                  * the routine lpfc_els_free_iocb.
3433                                  */
3434                                 cmdiocb->context1 = NULL;
3435         }
3436
3437         lpfc_els_free_iocb(phba, cmdiocb);
3438         return;
3439 }
3440
3441 /**
3442  * lpfc_els_rsp_acc - Prepare and issue an acc response iocb command
3443  * @vport: pointer to a host virtual N_Port data structure.
3444  * @flag: the els command code to be accepted.
3445  * @oldiocb: pointer to the original lpfc command iocb data structure.
3446  * @ndlp: pointer to a node-list data structure.
3447  * @mbox: pointer to the driver internal queue element for mailbox command.
3448  *
3449  * This routine prepares and issues an Accept (ACC) response IOCB
3450  * command. It uses the @flag to properly set up the IOCB field for the
3451  * specific ACC response command to be issued and invokes the
3452  * lpfc_sli_issue_iocb() routine to send out ACC response IOCB. If a
3453  * @mbox pointer is passed in, it will be put into the context_un.mbox
3454  * field of the IOCB for the completion callback function to issue the
3455  * mailbox command to the HBA later when callback is invoked.
3456  *
3457  * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
3458  * will be incremented by 1 for holding the ndlp and the reference to ndlp
3459  * will be stored into the context1 field of the IOCB for the completion
3460  * callback function to the corresponding response ELS IOCB command.
3461  *
3462  * Return code
3463  *   0 - Successfully issued acc response
3464  *   1 - Failed to issue acc response
3465  **/
3466 int
3467 lpfc_els_rsp_acc(struct lpfc_vport *vport, uint32_t flag,
3468                  struct lpfc_iocbq *oldiocb, struct lpfc_nodelist *ndlp,
3469                  LPFC_MBOXQ_t *mbox)
3470 {
3471         struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
3472         struct lpfc_hba  *phba = vport->phba;
3473         IOCB_t *icmd;
3474         IOCB_t *oldcmd;
3475         struct lpfc_iocbq *elsiocb;
3476         struct lpfc_sli *psli;
3477         uint8_t *pcmd;
3478         uint16_t cmdsize;
3479         int rc;
3480         ELS_PKT *els_pkt_ptr;
3481
3482         psli = &phba->sli;
3483         oldcmd = &oldiocb->iocb;
3484
3485         switch (flag) {
3486         case ELS_CMD_ACC:
3487                 cmdsize = sizeof(uint32_t);
3488                 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry,
3489                                              ndlp, ndlp->nlp_DID, ELS_CMD_ACC);
3490                 if (!elsiocb) {
3491                         spin_lock_irq(shost->host_lock);
3492                         ndlp->nlp_flag &= ~NLP_LOGO_ACC;
3493                         spin_unlock_irq(shost->host_lock);
3494                         return 1;
3495                 }
3496
3497                 icmd = &elsiocb->iocb;
3498                 icmd->ulpContext = oldcmd->ulpContext;  /* Xri */
3499                 pcmd = (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
3500                 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
3501                 pcmd += sizeof(uint32_t);
3502
3503                 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
3504                         "Issue ACC:       did:x%x flg:x%x",
3505                         ndlp->nlp_DID, ndlp->nlp_flag, 0);
3506                 break;
3507         case ELS_CMD_PLOGI:
3508                 cmdsize = (sizeof(struct serv_parm) + sizeof(uint32_t));
3509                 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry,
3510                                              ndlp, ndlp->nlp_DID, ELS_CMD_ACC);
3511                 if (!elsiocb)
3512                         return 1;
3513
3514                 icmd = &elsiocb->iocb;
3515                 icmd->ulpContext = oldcmd->ulpContext;  /* Xri */
3516                 pcmd = (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
3517
3518                 if (mbox)
3519                         elsiocb->context_un.mbox = mbox;
3520
3521                 *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
3522                 pcmd += sizeof(uint32_t);
3523                 memcpy(pcmd, &vport->fc_sparam, sizeof(struct serv_parm));
3524
3525                 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
3526                         "Issue ACC PLOGI: did:x%x flg:x%x",
3527                         ndlp->nlp_DID, ndlp->nlp_flag, 0);
3528                 break;
3529         case ELS_CMD_PRLO:
3530                 cmdsize = sizeof(uint32_t) + sizeof(PRLO);
3531                 elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry,
3532                                              ndlp, ndlp->nlp_DID, ELS_CMD_PRLO);
3533                 if (!elsiocb)
3534                         return 1;
3535
3536                 icmd = &elsiocb->iocb;
3537                 icmd->ulpContext = oldcmd->ulpContext; /* Xri */
3538                 pcmd = (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
3539
3540                 memcpy(pcmd, ((struct lpfc_dmabuf *) oldiocb->context2)->virt,
3541                        sizeof(uint32_t) + sizeof(PRLO));
3542                 *((uint32_t *) (pcmd)) = ELS_CMD_PRLO_ACC;
3543                 els_pkt_ptr = (ELS_PKT *) pcmd;
3544                 els_pkt_ptr->un.prlo.acceptRspCode = PRLO_REQ_EXECUTED;
3545
3546                 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
3547                         "Issue ACC PRLO:  did:x%x flg:x%x",
3548                         ndlp->nlp_DID, ndlp->nlp_flag, 0);
3549                 break;
3550         default:
3551                 return 1;
3552         }
3553         /* Xmit ELS ACC response tag <ulpIoTag> */
3554         lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
3555                          "0128 Xmit ELS ACC response tag x%x, XRI: x%x, "
3556                          "DID: x%x, nlp_flag: x%x nlp_state: x%x RPI: x%x\n",
3557                          elsiocb->iotag, elsiocb->iocb.ulpContext,
3558                          ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
3559                          ndlp->nlp_rpi);
3560         if (ndlp->nlp_flag & NLP_LOGO_ACC) {
3561                 spin_lock_irq(shost->host_lock);
3562                 ndlp->nlp_flag &= ~NLP_LOGO_ACC;
3563                 spin_unlock_irq(shost->host_lock);
3564                 elsiocb->iocb_cmpl = lpfc_cmpl_els_logo_acc;
3565         } else {
3566                 elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
3567         }
3568
3569         phba->fc_stat.elsXmitACC++;
3570         rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
3571         if (rc == IOCB_ERROR) {
3572                 lpfc_els_free_iocb(phba, elsiocb);
3573                 return 1;
3574         }
3575         return 0;
3576 }
3577
3578 /**
3579  * lpfc_els_rsp_reject - Propare and issue a rjt response iocb command
3580  * @vport: pointer to a virtual N_Port data structure.
3581  * @rejectError:
3582  * @oldiocb: pointer to the original lpfc command iocb data structure.
3583  * @ndlp: pointer to a node-list data structure.
3584  * @mbox: pointer to the driver internal queue element for mailbox command.
3585  *
3586  * This routine prepares and issue an Reject (RJT) response IOCB
3587  * command. If a @mbox pointer is passed in, it will be put into the
3588  * context_un.mbox field of the IOCB for the completion callback function
3589  * to issue to the HBA later.
3590  *
3591  * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
3592  * will be incremented by 1 for holding the ndlp and the reference to ndlp
3593  * will be stored into the context1 field of the IOCB for the completion
3594  * callback function to the reject response ELS IOCB command.
3595  *
3596  * Return code
3597  *   0 - Successfully issued reject response
3598  *   1 - Failed to issue reject response
3599  **/
3600 int
3601 lpfc_els_rsp_reject(struct lpfc_vport *vport, uint32_t rejectError,
3602                     struct lpfc_iocbq *oldiocb, struct lpfc_nodelist *ndlp,
3603                     LPFC_MBOXQ_t *mbox)
3604 {
3605         struct lpfc_hba  *phba = vport->phba;
3606         IOCB_t *icmd;
3607         IOCB_t *oldcmd;
3608         struct lpfc_iocbq *elsiocb;
3609         struct lpfc_sli *psli;
3610         uint8_t *pcmd;
3611         uint16_t cmdsize;
3612         int rc;
3613
3614         psli = &phba->sli;
3615         cmdsize = 2 * sizeof(uint32_t);
3616         elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry, ndlp,
3617                                      ndlp->nlp_DID, ELS_CMD_LS_RJT);
3618         if (!elsiocb)
3619                 return 1;
3620
3621         icmd = &elsiocb->iocb;
3622         oldcmd = &oldiocb->iocb;
3623         icmd->ulpContext = oldcmd->ulpContext;  /* Xri */
3624         pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
3625
3626         *((uint32_t *) (pcmd)) = ELS_CMD_LS_RJT;
3627         pcmd += sizeof(uint32_t);
3628         *((uint32_t *) (pcmd)) = rejectError;
3629
3630         if (mbox)
3631                 elsiocb->context_un.mbox = mbox;
3632
3633         /* Xmit ELS RJT <err> response tag <ulpIoTag> */
3634         lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
3635                          "0129 Xmit ELS RJT x%x response tag x%x "
3636                          "xri x%x, did x%x, nlp_flag x%x, nlp_state x%x, "
3637                          "rpi x%x\n",
3638                          rejectError, elsiocb->iotag,
3639                          elsiocb->iocb.ulpContext, ndlp->nlp_DID,
3640                          ndlp->nlp_flag, ndlp->nlp_state, ndlp->nlp_rpi);
3641         lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
3642                 "Issue LS_RJT:    did:x%x flg:x%x err:x%x",
3643                 ndlp->nlp_DID, ndlp->nlp_flag, rejectError);
3644
3645         phba->fc_stat.elsXmitLSRJT++;
3646         elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
3647         rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
3648
3649         if (rc == IOCB_ERROR) {
3650                 lpfc_els_free_iocb(phba, elsiocb);
3651                 return 1;
3652         }
3653         return 0;
3654 }
3655
3656 /**
3657  * lpfc_els_rsp_adisc_acc - Prepare and issue acc response to adisc iocb cmd
3658  * @vport: pointer to a virtual N_Port data structure.
3659  * @oldiocb: pointer to the original lpfc command iocb data structure.
3660  * @ndlp: pointer to a node-list data structure.
3661  *
3662  * This routine prepares and issues an Accept (ACC) response to Address
3663  * Discover (ADISC) ELS command. It simply prepares the payload of the IOCB
3664  * and invokes the lpfc_sli_issue_iocb() routine to send out the command.
3665  *
3666  * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
3667  * will be incremented by 1 for holding the ndlp and the reference to ndlp
3668  * will be stored into the context1 field of the IOCB for the completion
3669  * callback function to the ADISC Accept response ELS IOCB command.
3670  *
3671  * Return code
3672  *   0 - Successfully issued acc adisc response
3673  *   1 - Failed to issue adisc acc response
3674  **/
3675 int
3676 lpfc_els_rsp_adisc_acc(struct lpfc_vport *vport, struct lpfc_iocbq *oldiocb,
3677                        struct lpfc_nodelist *ndlp)
3678 {
3679         struct lpfc_hba  *phba = vport->phba;
3680         ADISC *ap;
3681         IOCB_t *icmd, *oldcmd;
3682         struct lpfc_iocbq *elsiocb;
3683         uint8_t *pcmd;
3684         uint16_t cmdsize;
3685         int rc;
3686
3687         cmdsize = sizeof(uint32_t) + sizeof(ADISC);
3688         elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry, ndlp,
3689                                      ndlp->nlp_DID, ELS_CMD_ACC);
3690         if (!elsiocb)
3691                 return 1;
3692
3693         icmd = &elsiocb->iocb;
3694         oldcmd = &oldiocb->iocb;
3695         icmd->ulpContext = oldcmd->ulpContext;  /* Xri */
3696
3697         /* Xmit ADISC ACC response tag <ulpIoTag> */
3698         lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
3699                          "0130 Xmit ADISC ACC response iotag x%x xri: "
3700                          "x%x, did x%x, nlp_flag x%x, nlp_state x%x rpi x%x\n",
3701                          elsiocb->iotag, elsiocb->iocb.ulpContext,
3702                          ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
3703                          ndlp->nlp_rpi);
3704         pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
3705
3706         *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
3707         pcmd += sizeof(uint32_t);
3708
3709         ap = (ADISC *) (pcmd);
3710         ap->hardAL_PA = phba->fc_pref_ALPA;
3711         memcpy(&ap->portName, &vport->fc_portname, sizeof(struct lpfc_name));
3712         memcpy(&ap->nodeName, &vport->fc_nodename, sizeof(struct lpfc_name));
3713         ap->DID = be32_to_cpu(vport->fc_myDID);
3714
3715         lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
3716                 "Issue ACC ADISC: did:x%x flg:x%x",
3717                 ndlp->nlp_DID, ndlp->nlp_flag, 0);
3718
3719         phba->fc_stat.elsXmitACC++;
3720         elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
3721         rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
3722         if (rc == IOCB_ERROR) {
3723                 lpfc_els_free_iocb(phba, elsiocb);
3724                 return 1;
3725         }
3726         return 0;
3727 }
3728
3729 /**
3730  * lpfc_els_rsp_prli_acc - Prepare and issue acc response to prli iocb cmd
3731  * @vport: pointer to a virtual N_Port data structure.
3732  * @oldiocb: pointer to the original lpfc command iocb data structure.
3733  * @ndlp: pointer to a node-list data structure.
3734  *
3735  * This routine prepares and issues an Accept (ACC) response to Process
3736  * Login (PRLI) ELS command. It simply prepares the payload of the IOCB
3737  * and invokes the lpfc_sli_issue_iocb() routine to send out the command.
3738  *
3739  * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
3740  * will be incremented by 1 for holding the ndlp and the reference to ndlp
3741  * will be stored into the context1 field of the IOCB for the completion
3742  * callback function to the PRLI Accept response ELS IOCB command.
3743  *
3744  * Return code
3745  *   0 - Successfully issued acc prli response
3746  *   1 - Failed to issue acc prli response
3747  **/
3748 int
3749 lpfc_els_rsp_prli_acc(struct lpfc_vport *vport, struct lpfc_iocbq *oldiocb,
3750                       struct lpfc_nodelist *ndlp)
3751 {
3752         struct lpfc_hba  *phba = vport->phba;
3753         PRLI *npr;
3754         lpfc_vpd_t *vpd;
3755         IOCB_t *icmd;
3756         IOCB_t *oldcmd;
3757         struct lpfc_iocbq *elsiocb;
3758         struct lpfc_sli *psli;
3759         uint8_t *pcmd;
3760         uint16_t cmdsize;
3761         int rc;
3762
3763         psli = &phba->sli;
3764
3765         cmdsize = sizeof(uint32_t) + sizeof(PRLI);
3766         elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry, ndlp,
3767                 ndlp->nlp_DID, (ELS_CMD_ACC | (ELS_CMD_PRLI & ~ELS_RSP_MASK)));
3768         if (!elsiocb)
3769                 return 1;
3770
3771         icmd = &elsiocb->iocb;
3772         oldcmd = &oldiocb->iocb;
3773         icmd->ulpContext = oldcmd->ulpContext;  /* Xri */
3774         /* Xmit PRLI ACC response tag <ulpIoTag> */
3775         lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
3776                          "0131 Xmit PRLI ACC response tag x%x xri x%x, "
3777                          "did x%x, nlp_flag x%x, nlp_state x%x, rpi x%x\n",
3778                          elsiocb->iotag, elsiocb->iocb.ulpContext,
3779                          ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
3780                          ndlp->nlp_rpi);
3781         pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
3782
3783         *((uint32_t *) (pcmd)) = (ELS_CMD_ACC | (ELS_CMD_PRLI & ~ELS_RSP_MASK));
3784         pcmd += sizeof(uint32_t);
3785
3786         /* For PRLI, remainder of payload is PRLI parameter page */
3787         memset(pcmd, 0, sizeof(PRLI));
3788
3789         npr = (PRLI *) pcmd;
3790         vpd = &phba->vpd;
3791         /*
3792          * If the remote port is a target and our firmware version is 3.20 or
3793          * later, set the following bits for FC-TAPE support.
3794          */
3795         if ((ndlp->nlp_type & NLP_FCP_TARGET) &&
3796             (vpd->rev.feaLevelHigh >= 0x02)) {
3797                 npr->ConfmComplAllowed = 1;
3798                 npr->Retry = 1;
3799                 npr->TaskRetryIdReq = 1;
3800         }
3801
3802         npr->acceptRspCode = PRLI_REQ_EXECUTED;
3803         npr->estabImagePair = 1;
3804         npr->readXferRdyDis = 1;
3805         npr->ConfmComplAllowed = 1;
3806
3807         npr->prliType = PRLI_FCP_TYPE;
3808         npr->initiatorFunc = 1;
3809
3810         lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
3811                 "Issue ACC PRLI:  did:x%x flg:x%x",
3812                 ndlp->nlp_DID, ndlp->nlp_flag, 0);
3813
3814         phba->fc_stat.elsXmitACC++;
3815         elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
3816
3817         rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
3818         if (rc == IOCB_ERROR) {
3819                 lpfc_els_free_iocb(phba, elsiocb);
3820                 return 1;
3821         }
3822         return 0;
3823 }
3824
3825 /**
3826  * lpfc_els_rsp_rnid_acc - Issue rnid acc response iocb command
3827  * @vport: pointer to a virtual N_Port data structure.
3828  * @format: rnid command format.
3829  * @oldiocb: pointer to the original lpfc command iocb data structure.
3830  * @ndlp: pointer to a node-list data structure.
3831  *
3832  * This routine issues a Request Node Identification Data (RNID) Accept
3833  * (ACC) response. It constructs the RNID ACC response command according to
3834  * the proper @format and then calls the lpfc_sli_issue_iocb() routine to
3835  * issue the response. Note that this command does not need to hold the ndlp
3836  * reference count for the callback. So, the ndlp reference count taken by
3837  * the lpfc_prep_els_iocb() routine is put back and the context1 field of
3838  * IOCB is set to NULL to indicate to the lpfc_els_free_iocb() routine that
3839  * there is no ndlp reference available.
3840  *
3841  * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
3842  * will be incremented by 1 for holding the ndlp and the reference to ndlp
3843  * will be stored into the context1 field of the IOCB for the completion
3844  * callback function. However, for the RNID Accept Response ELS command,
3845  * this is undone later by this routine after the IOCB is allocated.
3846  *
3847  * Return code
3848  *   0 - Successfully issued acc rnid response
3849  *   1 - Failed to issue acc rnid response
3850  **/
3851 static int
3852 lpfc_els_rsp_rnid_acc(struct lpfc_vport *vport, uint8_t format,
3853                       struct lpfc_iocbq *oldiocb, struct lpfc_nodelist *ndlp)
3854 {
3855         struct lpfc_hba  *phba = vport->phba;
3856         RNID *rn;
3857         IOCB_t *icmd, *oldcmd;
3858         struct lpfc_iocbq *elsiocb;
3859         struct lpfc_sli *psli;
3860         uint8_t *pcmd;
3861         uint16_t cmdsize;
3862         int rc;
3863
3864         psli = &phba->sli;
3865         cmdsize = sizeof(uint32_t) + sizeof(uint32_t)
3866                                         + (2 * sizeof(struct lpfc_name));
3867         if (format)
3868                 cmdsize += sizeof(RNID_TOP_DISC);
3869
3870         elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry, ndlp,
3871                                      ndlp->nlp_DID, ELS_CMD_ACC);
3872         if (!elsiocb)
3873                 return 1;
3874
3875         icmd = &elsiocb->iocb;
3876         oldcmd = &oldiocb->iocb;
3877         icmd->ulpContext = oldcmd->ulpContext;  /* Xri */
3878         /* Xmit RNID ACC response tag <ulpIoTag> */
3879         lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
3880                          "0132 Xmit RNID ACC response tag x%x xri x%x\n",
3881                          elsiocb->iotag, elsiocb->iocb.ulpContext);
3882         pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
3883         *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
3884         pcmd += sizeof(uint32_t);
3885
3886         memset(pcmd, 0, sizeof(RNID));
3887         rn = (RNID *) (pcmd);
3888         rn->Format = format;
3889         rn->CommonLen = (2 * sizeof(struct lpfc_name));
3890         memcpy(&rn->portName, &vport->fc_portname, sizeof(struct lpfc_name));
3891         memcpy(&rn->nodeName, &vport->fc_nodename, sizeof(struct lpfc_name));
3892         switch (format) {
3893         case 0:
3894                 rn->SpecificLen = 0;
3895                 break;
3896         case RNID_TOPOLOGY_DISC:
3897                 rn->SpecificLen = sizeof(RNID_TOP_DISC);
3898                 memcpy(&rn->un.topologyDisc.portName,
3899                        &vport->fc_portname, sizeof(struct lpfc_name));
3900                 rn->un.topologyDisc.unitType = RNID_HBA;
3901                 rn->un.topologyDisc.physPort = 0;
3902                 rn->un.topologyDisc.attachedNodes = 0;
3903                 break;
3904         default:
3905                 rn->CommonLen = 0;
3906                 rn->SpecificLen = 0;
3907                 break;
3908         }
3909
3910         lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_RSP,
3911                 "Issue ACC RNID:  did:x%x flg:x%x",
3912                 ndlp->nlp_DID, ndlp->nlp_flag, 0);
3913
3914         phba->fc_stat.elsXmitACC++;
3915         elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
3916         lpfc_nlp_put(ndlp);
3917         elsiocb->context1 = NULL;  /* Don't need ndlp for cmpl,
3918                                     * it could be freed */
3919
3920         rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0);
3921         if (rc == IOCB_ERROR) {
3922                 lpfc_els_free_iocb(phba, elsiocb);
3923                 return 1;
3924         }
3925         return 0;
3926 }
3927
3928 /**
3929  * lpfc_els_disc_adisc - Issue remaining adisc iocbs to npr nodes of a vport
3930  * @vport: pointer to a host virtual N_Port data structure.
3931  *
3932  * This routine issues Address Discover (ADISC) ELS commands to those
3933  * N_Ports which are in node port recovery state and ADISC has not been issued
3934  * for the @vport. Each time an ELS ADISC IOCB is issued by invoking the
3935  * lpfc_issue_els_adisc() routine, the per @vport number of discover count
3936  * (num_disc_nodes) shall be incremented. If the num_disc_nodes reaches a
3937  * pre-configured threshold (cfg_discovery_threads), the @vport fc_flag will
3938  * be marked with FC_NLP_MORE bit and the process of issuing remaining ADISC
3939  * IOCBs quit for later pick up. On the other hand, after walking through
3940  * all the ndlps with the @vport and there is none ADISC IOCB issued, the
3941  * @vport fc_flag shall be cleared with FC_NLP_MORE bit indicating there is
3942  * no more ADISC need to be sent.
3943  *
3944  * Return code
3945  *    The number of N_Ports with adisc issued.
3946  **/
3947 int
3948 lpfc_els_disc_adisc(struct lpfc_vport *vport)
3949 {
3950         struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
3951         struct lpfc_nodelist *ndlp, *next_ndlp;
3952         int sentadisc = 0;
3953
3954         /* go thru NPR nodes and issue any remaining ELS ADISCs */
3955         list_for_each_entry_safe(ndlp, next_ndlp, &vport->fc_nodes, nlp_listp) {
3956                 if (!NLP_CHK_NODE_ACT(ndlp))
3957                         continue;
3958                 if (ndlp->nlp_state == NLP_STE_NPR_NODE &&
3959                     (ndlp->nlp_flag & NLP_NPR_2B_DISC) != 0 &&
3960                     (ndlp->nlp_flag & NLP_NPR_ADISC) != 0) {
3961                         spin_lock_irq(shost->host_lock);
3962                         ndlp->nlp_flag &= ~NLP_NPR_ADISC;
3963                         spin_unlock_irq(shost->host_lock);
3964                         ndlp->nlp_prev_state = ndlp->nlp_state;
3965                         lpfc_nlp_set_state(vport, ndlp, NLP_STE_ADISC_ISSUE);
3966                         lpfc_issue_els_adisc(vport, ndlp, 0);
3967                         sentadisc++;
3968                         vport->num_disc_nodes++;
3969                         if (vport->num_disc_nodes >=
3970                             vport->cfg_discovery_threads) {
3971                                 spin_lock_irq(shost->host_lock);
3972                                 vport->fc_flag |= FC_NLP_MORE;
3973                                 spin_unlock_irq(shost->host_lock);
3974                                 break;
3975                         }
3976                 }
3977         }
3978         if (sentadisc == 0) {
3979                 spin_lock_irq(shost->host_lock);
3980                 vport->fc_flag &= ~FC_NLP_MORE;
3981                 spin_unlock_irq(shost->host_lock);
3982         }
3983         return sentadisc;
3984 }
3985
3986 /**
3987  * lpfc_els_disc_plogi - Issue plogi for all npr nodes of a vport before adisc
3988  * @vport: pointer to a host virtual N_Port data structure.
3989  *
3990  * This routine issues Port Login (PLOGI) ELS commands to all the N_Ports
3991  * which are in node port recovery state, with a @vport. Each time an ELS
3992  * ADISC PLOGI IOCB is issued by invoking the lpfc_issue_els_plogi() routine,
3993  * the per @vport number of discover count (num_disc_nodes) shall be
3994  * incremented. If the num_disc_nodes reaches a pre-configured threshold
3995  * (cfg_discovery_threads), the @vport fc_flag will be marked with FC_NLP_MORE
3996  * bit set and quit the process of issuing remaining ADISC PLOGIN IOCBs for
3997  * later pick up. On the other hand, after walking through all the ndlps with
3998  * the @vport and there is none ADISC PLOGI IOCB issued, the @vport fc_flag
3999  * shall be cleared with the FC_NLP_MORE bit indicating there is no more ADISC
4000  * PLOGI need to be sent.
4001  *
4002  * Return code
4003  *   The number of N_Ports with plogi issued.
4004  **/
4005 int
4006 lpfc_els_disc_plogi(struct lpfc_vport *vport)
4007 {
4008         struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
4009         struct lpfc_nodelist *ndlp, *next_ndlp;
4010         int sentplogi = 0;
4011
4012         /* go thru NPR nodes and issue any remaining ELS PLOGIs */
4013         list_for_each_entry_safe(ndlp, next_ndlp, &vport->fc_nodes, nlp_listp) {
4014                 if (!NLP_CHK_NODE_ACT(ndlp))
4015                         continue;
4016                 if (ndlp->nlp_state == NLP_STE_NPR_NODE &&
4017                     (ndlp->nlp_flag & NLP_NPR_2B_DISC) != 0 &&
4018                     (ndlp->nlp_flag & NLP_DELAY_TMO) == 0 &&
4019                     (ndlp->nlp_flag & NLP_NPR_ADISC) == 0) {
4020                         ndlp->nlp_prev_state = ndlp->nlp_state;
4021                         lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
4022                         lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0);
4023                         sentplogi++;
4024                         vport->num_disc_nodes++;
4025                         if (vport->num_disc_nodes >=
4026                             vport->cfg_discovery_threads) {
4027                                 spin_lock_irq(shost->host_lock);
4028                                 vport->fc_flag |= FC_NLP_MORE;
4029                                 spin_unlock_irq(shost->host_lock);
4030                                 break;
4031                         }
4032                 }
4033         }
4034         if (sentplogi) {
4035                 lpfc_set_disctmo(vport);
4036         }
4037         else {
4038                 spin_lock_irq(shost->host_lock);
4039                 vport->fc_flag &= ~FC_NLP_MORE;
4040                 spin_unlock_irq(shost->host_lock);
4041         }
4042         return sentplogi;
4043 }
4044
4045 /**
4046  * lpfc_els_flush_rscn - Clean up any rscn activities with a vport
4047  * @vport: pointer to a host virtual N_Port data structure.
4048  *
4049  * This routine cleans up any Registration State Change Notification
4050  * (RSCN) activity with a @vport. Note that the fc_rscn_flush flag of the
4051  * @vport together with the host_lock is used to prevent multiple thread
4052  * trying to access the RSCN array on a same @vport at the same time.
4053  **/
4054 void
4055 lpfc_els_flush_rscn(struct lpfc_vport *vport)
4056 {
4057         struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
4058         struct lpfc_hba  *phba = vport->phba;
4059         int i;
4060
4061         spin_lock_irq(shost->host_lock);
4062         if (vport->fc_rscn_flush) {
4063                 /* Another thread is walking fc_rscn_id_list on this vport */
4064                 spin_unlock_irq(shost->host_lock);
4065                 return;
4066         }
4067         /* Indicate we are walking lpfc_els_flush_rscn on this vport */
4068         vport->fc_rscn_flush = 1;
4069         spin_unlock_irq(shost->host_lock);
4070
4071         for (i = 0; i < vport->fc_rscn_id_cnt; i++) {
4072                 lpfc_in_buf_free(phba, vport->fc_rscn_id_list[i]);
4073                 vport->fc_rscn_id_list[i] = NULL;
4074         }
4075         spin_lock_irq(shost->host_lock);
4076         vport->fc_rscn_id_cnt = 0;
4077         vport->fc_flag &= ~(FC_RSCN_MODE | FC_RSCN_DISCOVERY);
4078         spin_unlock_irq(shost->host_lock);
4079         lpfc_can_disctmo(vport);
4080         /* Indicate we are done walking this fc_rscn_id_list */
4081         vport->fc_rscn_flush = 0;
4082 }
4083
4084 /**
4085  * lpfc_rscn_payload_check - Check whether there is a pending rscn to a did
4086  * @vport: pointer to a host virtual N_Port data structure.
4087  * @did: remote destination port identifier.
4088  *
4089  * This routine checks whether there is any pending Registration State
4090  * Configuration Notification (RSCN) to a @did on @vport.
4091  *
4092  * Return code
4093  *   None zero - The @did matched with a pending rscn
4094  *   0 - not able to match @did with a pending rscn
4095  **/
4096 int
4097 lpfc_rscn_payload_check(struct lpfc_vport *vport, uint32_t did)
4098 {
4099         D_ID ns_did;
4100         D_ID rscn_did;
4101         uint32_t *lp;
4102         uint32_t payload_len, i;
4103         struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
4104
4105         ns_did.un.word = did;
4106
4107         /* Never match fabric nodes for RSCNs */
4108         if ((did & Fabric_DID_MASK) == Fabric_DID_MASK)
4109                 return 0;
4110
4111         /* If we are doing a FULL RSCN rediscovery, match everything */
4112         if (vport->fc_flag & FC_RSCN_DISCOVERY)
4113                 return did;
4114
4115         spin_lock_irq(shost->host_lock);
4116         if (vport->fc_rscn_flush) {
4117                 /* Another thread is walking fc_rscn_id_list on this vport */
4118                 spin_unlock_irq(shost->host_lock);
4119                 return 0;
4120         }
4121         /* Indicate we are walking fc_rscn_id_list on this vport */
4122         vport->fc_rscn_flush = 1;
4123         spin_unlock_irq(shost->host_lock);
4124         for (i = 0; i < vport->fc_rscn_id_cnt; i++) {
4125                 lp = vport->fc_rscn_id_list[i]->virt;
4126                 payload_len = be32_to_cpu(*lp++ & ~ELS_CMD_MASK);
4127                 payload_len -= sizeof(uint32_t);        /* take off word 0 */
4128                 while (payload_len) {
4129                         rscn_did.un.word = be32_to_cpu(*lp++);
4130                         payload_len -= sizeof(uint32_t);
4131                         switch (rscn_did.un.b.resv & RSCN_ADDRESS_FORMAT_MASK) {
4132                         case RSCN_ADDRESS_FORMAT_PORT:
4133                                 if ((ns_did.un.b.domain == rscn_did.un.b.domain)
4134                                     && (ns_did.un.b.area == rscn_did.un.b.area)
4135                                     && (ns_did.un.b.id == rscn_did.un.b.id))
4136                                         goto return_did_out;
4137                                 break;
4138                         case RSCN_ADDRESS_FORMAT_AREA:
4139                                 if ((ns_did.un.b.domain == rscn_did.un.b.domain)
4140                                     && (ns_did.un.b.area == rscn_did.un.b.area))
4141                                         goto return_did_out;
4142                                 break;
4143                         case RSCN_ADDRESS_FORMAT_DOMAIN:
4144                                 if (ns_did.un.b.domain == rscn_did.un.b.domain)
4145                                         goto return_did_out;
4146                                 break;
4147                         case RSCN_ADDRESS_FORMAT_FABRIC:
4148                                 goto return_did_out;
4149                         }
4150                 }
4151         }
4152         /* Indicate we are done with walking fc_rscn_id_list on this vport */
4153         vport->fc_rscn_flush = 0;
4154         return 0;
4155 return_did_out:
4156         /* Indicate we are done with walking fc_rscn_id_list on this vport */
4157         vport->fc_rscn_flush = 0;
4158         return did;
4159 }
4160
4161 /**
4162  * lpfc_rscn_recovery_check - Send recovery event to vport nodes matching rscn
4163  * @vport: pointer to a host virtual N_Port data structure.
4164  *
4165  * This routine sends recovery (NLP_EVT_DEVICE_RECOVERY) event to the
4166  * state machine for a @vport's nodes that are with pending RSCN (Registration
4167  * State Change Notification).
4168  *
4169  * Return code
4170  *   0 - Successful (currently alway return 0)
4171  **/
4172 static int
4173 lpfc_rscn_recovery_check(struct lpfc_vport *vport)
4174 {
4175         struct lpfc_nodelist *ndlp = NULL;
4176
4177         /* Move all affected nodes by pending RSCNs to NPR state. */
4178         list_for_each_entry(ndlp, &vport->fc_nodes, nlp_listp) {
4179                 if (!NLP_CHK_NODE_ACT(ndlp) ||
4180                     (ndlp->nlp_state == NLP_STE_UNUSED_NODE) ||
4181                     !lpfc_rscn_payload_check(vport, ndlp->nlp_DID))
4182                         continue;
4183                 lpfc_disc_state_machine(vport, ndlp, NULL,
4184                                         NLP_EVT_DEVICE_RECOVERY);
4185                 lpfc_cancel_retry_delay_tmo(vport, ndlp);
4186         }
4187         return 0;
4188 }
4189
4190 /**
4191  * lpfc_send_rscn_event - Send an RSCN event to management application
4192  * @vport: pointer to a host virtual N_Port data structure.
4193  * @cmdiocb: pointer to lpfc command iocb data structure.
4194  *
4195  * lpfc_send_rscn_event sends an RSCN netlink event to management
4196  * applications.
4197  */
4198 static void
4199 lpfc_send_rscn_event(struct lpfc_vport *vport,
4200                 struct lpfc_iocbq *cmdiocb)
4201 {
4202         struct lpfc_dmabuf *pcmd;
4203         struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
4204         uint32_t *payload_ptr;
4205         uint32_t payload_len;
4206         struct lpfc_rscn_event_header *rscn_event_data;
4207
4208         pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
4209         payload_ptr = (uint32_t *) pcmd->virt;
4210         payload_len = be32_to_cpu(*payload_ptr & ~ELS_CMD_MASK);
4211
4212         rscn_event_data = kmalloc(sizeof(struct lpfc_rscn_event_header) +
4213                 payload_len, GFP_KERNEL);
4214         if (!rscn_event_data) {
4215                 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
4216                         "0147 Failed to allocate memory for RSCN event\n");
4217                 return;
4218         }
4219         rscn_event_data->event_type = FC_REG_RSCN_EVENT;
4220         rscn_event_data->payload_length = payload_len;
4221         memcpy(rscn_event_data->rscn_payload, payload_ptr,
4222                 payload_len);
4223
4224         fc_host_post_vendor_event(shost,
4225                 fc_get_event_number(),
4226                 sizeof(struct lpfc_els_event_header) + payload_len,
4227                 (char *)rscn_event_data,
4228                 LPFC_NL_VENDOR_ID);
4229
4230         kfree(rscn_event_data);
4231 }
4232
4233 /**
4234  * lpfc_els_rcv_rscn - Process an unsolicited rscn iocb
4235  * @vport: pointer to a host virtual N_Port data structure.
4236  * @cmdiocb: pointer to lpfc command iocb data structure.
4237  * @ndlp: pointer to a node-list data structure.
4238  *
4239  * This routine processes an unsolicited RSCN (Registration State Change
4240  * Notification) IOCB. First, the payload of the unsolicited RSCN is walked
4241  * to invoke fc_host_post_event() routine to the FC transport layer. If the
4242  * discover state machine is about to begin discovery, it just accepts the
4243  * RSCN and the discovery process will satisfy the RSCN. If this RSCN only
4244  * contains N_Port IDs for other vports on this HBA, it just accepts the
4245  * RSCN and ignore processing it. If the state machine is in the recovery
4246  * state, the fc_rscn_id_list of this @vport is walked and the
4247  * lpfc_rscn_recovery_check() routine is invoked to send recovery event for
4248  * all nodes that match RSCN payload. Otherwise, the lpfc_els_handle_rscn()
4249  * routine is invoked to handle the RSCN event.
4250  *
4251  * Return code
4252  *   0 - Just sent the acc response
4253  *   1 - Sent the acc response and waited for name server completion
4254  **/
4255 static int
4256 lpfc_els_rcv_rscn(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
4257                   struct lpfc_nodelist *ndlp)
4258 {
4259         struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
4260         struct lpfc_hba  *phba = vport->phba;
4261         struct lpfc_dmabuf *pcmd;
4262         uint32_t *lp, *datap;
4263         IOCB_t *icmd;
4264         uint32_t payload_len, length, nportid, *cmd;
4265         int rscn_cnt;
4266         int rscn_id = 0, hba_id = 0;
4267         int i;
4268
4269         icmd = &cmdiocb->iocb;
4270         pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
4271         lp = (uint32_t *) pcmd->virt;
4272
4273         payload_len = be32_to_cpu(*lp++ & ~ELS_CMD_MASK);
4274         payload_len -= sizeof(uint32_t);        /* take off word 0 */
4275         /* RSCN received */
4276         lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
4277                          "0214 RSCN received Data: x%x x%x x%x x%x\n",
4278                          vport->fc_flag, payload_len, *lp,
4279                          vport->fc_rscn_id_cnt);
4280
4281         /* Send an RSCN event to the management application */
4282         lpfc_send_rscn_event(vport, cmdiocb);
4283
4284         for (i = 0; i < payload_len/sizeof(uint32_t); i++)
4285                 fc_host_post_event(shost, fc_get_event_number(),
4286                         FCH_EVT_RSCN, lp[i]);
4287
4288         /* If we are about to begin discovery, just ACC the RSCN.
4289          * Discovery processing will satisfy it.
4290          */
4291         if (vport->port_state <= LPFC_NS_QRY) {
4292                 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
4293                         "RCV RSCN ignore: did:x%x/ste:x%x flg:x%x",
4294                         ndlp->nlp_DID, vport->port_state, ndlp->nlp_flag);
4295
4296                 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
4297                 return 0;
4298         }
4299
4300         /* If this RSCN just contains NPortIDs for other vports on this HBA,
4301          * just ACC and ignore it.
4302          */
4303         if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
4304                 !(vport->cfg_peer_port_login)) {
4305                 i = payload_len;
4306                 datap = lp;
4307                 while (i > 0) {
4308                         nportid = *datap++;
4309                         nportid = ((be32_to_cpu(nportid)) & Mask_DID);
4310                         i -= sizeof(uint32_t);
4311                         rscn_id++;
4312                         if (lpfc_find_vport_by_did(phba, nportid))
4313                                 hba_id++;
4314                 }
4315                 if (rscn_id == hba_id) {
4316                         /* ALL NPortIDs in RSCN are on HBA */
4317                         lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
4318                                          "0219 Ignore RSCN "
4319                                          "Data: x%x x%x x%x x%x\n",
4320                                          vport->fc_flag, payload_len,
4321                                          *lp, vport->fc_rscn_id_cnt);
4322                         lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
4323                                 "RCV RSCN vport:  did:x%x/ste:x%x flg:x%x",
4324                                 ndlp->nlp_DID, vport->port_state,
4325                                 ndlp->nlp_flag);
4326
4327                         lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb,
4328                                 ndlp, NULL);
4329                         return 0;
4330                 }
4331         }
4332
4333         spin_lock_irq(shost->host_lock);
4334         if (vport->fc_rscn_flush) {
4335                 /* Another thread is walking fc_rscn_id_list on this vport */
4336                 vport->fc_flag |= FC_RSCN_DISCOVERY;
4337                 spin_unlock_irq(shost->host_lock);
4338                 /* Send back ACC */
4339                 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
4340                 return 0;
4341         }
4342         /* Indicate we are walking fc_rscn_id_list on this vport */
4343         vport->fc_rscn_flush = 1;
4344         spin_unlock_irq(shost->host_lock);
4345         /* Get the array count after successfully have the token */
4346         rscn_cnt = vport->fc_rscn_id_cnt;
4347         /* If we are already processing an RSCN, save the received
4348          * RSCN payload buffer, cmdiocb->context2 to process later.
4349          */
4350         if (vport->fc_flag & (FC_RSCN_MODE | FC_NDISC_ACTIVE)) {
4351                 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
4352                         "RCV RSCN defer:  did:x%x/ste:x%x flg:x%x",
4353                         ndlp->nlp_DID, vport->port_state, ndlp->nlp_flag);
4354
4355                 spin_lock_irq(shost->host_lock);
4356                 vport->fc_flag |= FC_RSCN_DEFERRED;
4357                 if ((rscn_cnt < FC_MAX_HOLD_RSCN) &&
4358                     !(vport->fc_flag & FC_RSCN_DISCOVERY)) {
4359                         vport->fc_flag |= FC_RSCN_MODE;
4360                         spin_unlock_irq(shost->host_lock);
4361                         if (rscn_cnt) {
4362                                 cmd = vport->fc_rscn_id_list[rscn_cnt-1]->virt;
4363                                 length = be32_to_cpu(*cmd & ~ELS_CMD_MASK);
4364                         }
4365                         if ((rscn_cnt) &&
4366                             (payload_len + length <= LPFC_BPL_SIZE)) {
4367                                 *cmd &= ELS_CMD_MASK;
4368                                 *cmd |= cpu_to_be32(payload_len + length);
4369                                 memcpy(((uint8_t *)cmd) + length, lp,
4370                                        payload_len);
4371                         } else {
4372                                 vport->fc_rscn_id_list[rscn_cnt] = pcmd;
4373                                 vport->fc_rscn_id_cnt++;
4374                                 /* If we zero, cmdiocb->context2, the calling
4375                                  * routine will not try to free it.
4376                                  */
4377                                 cmdiocb->context2 = NULL;
4378                         }
4379                         /* Deferred RSCN */
4380                         lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
4381                                          "0235 Deferred RSCN "
4382                                          "Data: x%x x%x x%x\n",
4383                                          vport->fc_rscn_id_cnt, vport->fc_flag,
4384                                          vport->port_state);
4385                 } else {
4386                         vport->fc_flag |= FC_RSCN_DISCOVERY;
4387                         spin_unlock_irq(shost->host_lock);
4388                         /* ReDiscovery RSCN */
4389                         lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
4390                                          "0234 ReDiscovery RSCN "
4391                                          "Data: x%x x%x x%x\n",
4392                                          vport->fc_rscn_id_cnt, vport->fc_flag,
4393                                          vport->port_state);
4394                 }
4395                 /* Indicate we are done walking fc_rscn_id_list on this vport */
4396                 vport->fc_rscn_flush = 0;
4397                 /* Send back ACC */
4398                 lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
4399                 /* send RECOVERY event for ALL nodes that match RSCN payload */
4400                 lpfc_rscn_recovery_check(vport);
4401                 spin_lock_irq(shost->host_lock);
4402                 vport->fc_flag &= ~FC_RSCN_DEFERRED;
4403                 spin_unlock_irq(shost->host_lock);
4404                 return 0;
4405         }
4406         lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
4407                 "RCV RSCN:        did:x%x/ste:x%x flg:x%x",
4408                 ndlp->nlp_DID, vport->port_state, ndlp->nlp_flag);
4409
4410         spin_lock_irq(shost->host_lock);
4411         vport->fc_flag |= FC_RSCN_MODE;
4412         spin_unlock_irq(shost->host_lock);
4413         vport->fc_rscn_id_list[vport->fc_rscn_id_cnt++] = pcmd;
4414         /* Indicate we are done walking fc_rscn_id_list on this vport */
4415         vport->fc_rscn_flush = 0;
4416         /*
4417          * If we zero, cmdiocb->context2, the calling routine will
4418          * not try to free it.
4419          */
4420         cmdiocb->context2 = NULL;
4421         lpfc_set_disctmo(vport);
4422         /* Send back ACC */
4423         lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
4424         /* send RECOVERY event for ALL nodes that match RSCN payload */
4425         lpfc_rscn_recovery_check(vport);
4426         return lpfc_els_handle_rscn(vport);
4427 }
4428
4429 /**
4430  * lpfc_els_handle_rscn - Handle rscn for a vport
4431  * @vport: pointer to a host virtual N_Port data structure.
4432  *
4433  * This routine handles the Registration State Configuration Notification
4434  * (RSCN) for a @vport. If login to NameServer does not exist, a new ndlp shall
4435  * be created and a Port Login (PLOGI) to the NameServer is issued. Otherwise,
4436  * if the ndlp to NameServer exists, a Common Transport (CT) command to the
4437  * NameServer shall be issued. If CT command to the NameServer fails to be
4438  * issued, the lpfc_els_flush_rscn() routine shall be invoked to clean up any
4439  * RSCN activities with the @vport.
4440  *
4441  * Return code
4442  *   0 - Cleaned up rscn on the @vport
4443  *   1 - Wait for plogi to name server before proceed
4444  **/
4445 int
4446 lpfc_els_handle_rscn(struct lpfc_vport *vport)
4447 {
4448         struct lpfc_nodelist *ndlp;
4449         struct lpfc_hba *phba = vport->phba;
4450
4451         /* Ignore RSCN if the port is being torn down. */
4452         if (vport->load_flag & FC_UNLOADING) {
4453                 lpfc_els_flush_rscn(vport);
4454                 return 0;
4455         }
4456
4457         /* Start timer for RSCN processing */
4458         lpfc_set_disctmo(vport);
4459
4460         /* RSCN processed */
4461         lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
4462                          "0215 RSCN processed Data: x%x x%x x%x x%x\n",
4463                          vport->fc_flag, 0, vport->fc_rscn_id_cnt,
4464                          vport->port_state);
4465
4466         /* To process RSCN, first compare RSCN data with NameServer */
4467         vport->fc_ns_retry = 0;
4468         vport->num_disc_nodes = 0;
4469
4470         ndlp = lpfc_findnode_did(vport, NameServer_DID);
4471         if (ndlp && NLP_CHK_NODE_ACT(ndlp)
4472             && ndlp->nlp_state == NLP_STE_UNMAPPED_NODE) {
4473                 /* Good ndlp, issue CT Request to NameServer */
4474                 if (lpfc_ns_cmd(vport, SLI_CTNS_GID_FT, 0, 0) == 0)
4475                         /* Wait for NameServer query cmpl before we can
4476                            continue */
4477                         return 1;
4478         } else {
4479                 /* If login to NameServer does not exist, issue one */
4480                 /* Good status, issue PLOGI to NameServer */
4481                 ndlp = lpfc_findnode_did(vport, NameServer_DID);
4482                 if (ndlp && NLP_CHK_NODE_ACT(ndlp))
4483                         /* Wait for NameServer login cmpl before we can
4484                            continue */
4485                         return 1;
4486
4487                 if (ndlp) {
4488                         ndlp = lpfc_enable_node(vport, ndlp,
4489                                                 NLP_STE_PLOGI_ISSUE);
4490                         if (!ndlp) {
4491                                 lpfc_els_flush_rscn(vport);
4492                                 return 0;
4493                         }
4494                         ndlp->nlp_prev_state = NLP_STE_UNUSED_NODE;
4495                 } else {
4496                         ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
4497                         if (!ndlp) {
4498                                 lpfc_els_flush_rscn(vport);
4499                                 return 0;
4500                         }
4501                         lpfc_nlp_init(vport, ndlp, NameServer_DID);
4502                         ndlp->nlp_prev_state = ndlp->nlp_state;
4503                         lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
4504                 }
4505                 ndlp->nlp_type |= NLP_FABRIC;
4506                 lpfc_issue_els_plogi(vport, NameServer_DID, 0);
4507                 /* Wait for NameServer login cmpl before we can
4508                  * continue
4509                  */
4510                 return 1;
4511         }
4512
4513         lpfc_els_flush_rscn(vport);
4514         return 0;
4515 }
4516
4517 /**
4518  * lpfc_els_rcv_flogi - Process an unsolicited flogi iocb
4519  * @vport: pointer to a host virtual N_Port data structure.
4520  * @cmdiocb: pointer to lpfc command iocb data structure.
4521  * @ndlp: pointer to a node-list data structure.
4522  *
4523  * This routine processes Fabric Login (FLOGI) IOCB received as an ELS
4524  * unsolicited event. An unsolicited FLOGI can be received in a point-to-
4525  * point topology. As an unsolicited FLOGI should not be received in a loop
4526  * mode, any unsolicited FLOGI received in loop mode shall be ignored. The
4527  * lpfc_check_sparm() routine is invoked to check the parameters in the
4528  * unsolicited FLOGI. If parameters validation failed, the routine
4529  * lpfc_els_rsp_reject() shall be called with reject reason code set to
4530  * LSEXP_SPARM_OPTIONS to reject the FLOGI. Otherwise, the Port WWN in the
4531  * FLOGI shall be compared with the Port WWN of the @vport to determine who
4532  * will initiate PLOGI. The higher lexicographical value party shall has
4533  * higher priority (as the winning port) and will initiate PLOGI and
4534  * communicate Port_IDs (Addresses) for both nodes in PLOGI. The result
4535  * of this will be marked in the @vport fc_flag field with FC_PT2PT_PLOGI
4536  * and then the lpfc_els_rsp_acc() routine is invoked to accept the FLOGI.
4537  *
4538  * Return code
4539  *   0 - Successfully processed the unsolicited flogi
4540  *   1 - Failed to process the unsolicited flogi
4541  **/
4542 static int
4543 lpfc_els_rcv_flogi(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
4544                    struct lpfc_nodelist *ndlp)
4545 {
4546         struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
4547         struct lpfc_hba  *phba = vport->phba;
4548         struct lpfc_dmabuf *pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
4549         uint32_t *lp = (uint32_t *) pcmd->virt;
4550         IOCB_t *icmd = &cmdiocb->iocb;
4551         struct serv_parm *sp;
4552         LPFC_MBOXQ_t *mbox;
4553         struct ls_rjt stat;
4554         uint32_t cmd, did;
4555         int rc;
4556
4557         cmd = *lp++;
4558         sp = (struct serv_parm *) lp;
4559
4560         /* FLOGI received */
4561
4562         lpfc_set_disctmo(vport);
4563
4564         if (phba->fc_topology == TOPOLOGY_LOOP) {
4565                 /* We should never receive a FLOGI in loop mode, ignore it */
4566                 did = icmd->un.elsreq64.remoteID;
4567
4568                 /* An FLOGI ELS command <elsCmd> was received from DID <did> in
4569                    Loop Mode */
4570                 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
4571                                  "0113 An FLOGI ELS command x%x was "
4572                                  "received from DID x%x in Loop Mode\n",
4573                                  cmd, did);
4574                 return 1;
4575         }
4576
4577         did = Fabric_DID;
4578
4579         if ((lpfc_check_sparm(vport, ndlp, sp, CLASS3, 1))) {
4580                 /* For a FLOGI we accept, then if our portname is greater
4581                  * then the remote portname we initiate Nport login.
4582                  */
4583
4584                 rc = memcmp(&vport->fc_portname, &sp->portName,
4585                             sizeof(struct lpfc_name));
4586
4587                 if (!rc) {
4588                         mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4589                         if (!mbox)
4590                                 return 1;
4591
4592                         lpfc_linkdown(phba);
4593                         lpfc_init_link(phba, mbox,
4594                                        phba->cfg_topology,
4595                                        phba->cfg_link_speed);
4596                         mbox->u.mb.un.varInitLnk.lipsr_AL_PA = 0;
4597                         mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
4598                         mbox->vport = vport;
4599                         rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
4600                         lpfc_set_loopback_flag(phba);
4601                         if (rc == MBX_NOT_FINISHED) {
4602                                 mempool_free(mbox, phba->mbox_mem_pool);
4603                         }
4604                         return 1;
4605                 } else if (rc > 0) {    /* greater than */
4606                         spin_lock_irq(shost->host_lock);
4607                         vport->fc_flag |= FC_PT2PT_PLOGI;
4608                         spin_unlock_irq(shost->host_lock);
4609                 }
4610                 spin_lock_irq(shost->host_lock);
4611                 vport->fc_flag |= FC_PT2PT;
4612                 vport->fc_flag &= ~(FC_FABRIC | FC_PUBLIC_LOOP);
4613                 spin_unlock_irq(shost->host_lock);
4614         } else {
4615                 /* Reject this request because invalid parameters */
4616                 stat.un.b.lsRjtRsvd0 = 0;
4617                 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
4618                 stat.un.b.lsRjtRsnCodeExp = LSEXP_SPARM_OPTIONS;
4619                 stat.un.b.vendorUnique = 0;
4620                 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp,
4621                         NULL);
4622                 return 1;
4623         }
4624
4625         /* Send back ACC */
4626         lpfc_els_rsp_acc(vport, ELS_CMD_PLOGI, cmdiocb, ndlp, NULL);
4627
4628         return 0;
4629 }
4630
4631 /**
4632  * lpfc_els_rcv_rnid - Process an unsolicited rnid iocb
4633  * @vport: pointer to a host virtual N_Port data structure.
4634  * @cmdiocb: pointer to lpfc command iocb data structure.
4635  * @ndlp: pointer to a node-list data structure.
4636  *
4637  * This routine processes Request Node Identification Data (RNID) IOCB
4638  * received as an ELS unsolicited event. Only when the RNID specified format
4639  * 0x0 or 0xDF (Topology Discovery Specific Node Identification Data)
4640  * present, this routine will invoke the lpfc_els_rsp_rnid_acc() routine to
4641  * Accept (ACC) the RNID ELS command. All the other RNID formats are
4642  * rejected by invoking the lpfc_els_rsp_reject() routine.
4643  *
4644  * Return code
4645  *   0 - Successfully processed rnid iocb (currently always return 0)
4646  **/
4647 static int
4648 lpfc_els_rcv_rnid(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
4649                   struct lpfc_nodelist *ndlp)
4650 {
4651         struct lpfc_dmabuf *pcmd;
4652         uint32_t *lp;
4653         IOCB_t *icmd;
4654         RNID *rn;
4655         struct ls_rjt stat;
4656         uint32_t cmd, did;
4657
4658         icmd = &cmdiocb->iocb;
4659         did = icmd->un.elsreq64.remoteID;
4660         pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
4661         lp = (uint32_t *) pcmd->virt;
4662
4663         cmd = *lp++;
4664         rn = (RNID *) lp;
4665
4666         /* RNID received */
4667
4668         switch (rn->Format) {
4669         case 0:
4670         case RNID_TOPOLOGY_DISC:
4671                 /* Send back ACC */
4672                 lpfc_els_rsp_rnid_acc(vport, rn->Format, cmdiocb, ndlp);
4673                 break;
4674         default:
4675                 /* Reject this request because format not supported */
4676                 stat.un.b.lsRjtRsvd0 = 0;
4677                 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
4678                 stat.un.b.lsRjtRsnCodeExp = LSEXP_CANT_GIVE_DATA;
4679                 stat.un.b.vendorUnique = 0;
4680                 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp,
4681                         NULL);
4682         }
4683         return 0;
4684 }
4685
4686 /**
4687  * lpfc_els_rcv_lirr - Process an unsolicited lirr iocb
4688  * @vport: pointer to a host virtual N_Port data structure.
4689  * @cmdiocb: pointer to lpfc command iocb data structure.
4690  * @ndlp: pointer to a node-list data structure.
4691  *
4692  * This routine processes a Link Incident Report Registration(LIRR) IOCB
4693  * received as an ELS unsolicited event. Currently, this function just invokes
4694  * the lpfc_els_rsp_reject() routine to reject the LIRR IOCB unconditionally.
4695  *
4696  * Return code
4697  *   0 - Successfully processed lirr iocb (currently always return 0)
4698  **/
4699 static int
4700 lpfc_els_rcv_lirr(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
4701                   struct lpfc_nodelist *ndlp)
4702 {
4703         struct ls_rjt stat;
4704
4705         /* For now, unconditionally reject this command */
4706         stat.un.b.lsRjtRsvd0 = 0;
4707         stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
4708         stat.un.b.lsRjtRsnCodeExp = LSEXP_CANT_GIVE_DATA;
4709         stat.un.b.vendorUnique = 0;
4710         lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
4711         return 0;
4712 }
4713
4714 /**
4715  * lpfc_els_rcv_rrq - Process an unsolicited rrq iocb
4716  * @vport: pointer to a host virtual N_Port data structure.
4717  * @cmdiocb: pointer to lpfc command iocb data structure.
4718  * @ndlp: pointer to a node-list data structure.
4719  *
4720  * This routine processes a Reinstate Recovery Qualifier (RRQ) IOCB
4721  * received as an ELS unsolicited event. A request to RRQ shall only
4722  * be accepted if the Originator Nx_Port N_Port_ID or the Responder
4723  * Nx_Port N_Port_ID of the target Exchange is the same as the
4724  * N_Port_ID of the Nx_Port that makes the request. If the RRQ is
4725  * not accepted, an LS_RJT with reason code "Unable to perform
4726  * command request" and reason code explanation "Invalid Originator
4727  * S_ID" shall be returned. For now, we just unconditionally accept
4728  * RRQ from the target.
4729  **/
4730 static void
4731 lpfc_els_rcv_rrq(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
4732                  struct lpfc_nodelist *ndlp)
4733 {
4734         lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
4735 }
4736
4737 /**
4738  * lpfc_els_rsp_rps_acc - Completion callbk func for MBX_READ_LNK_STAT mbox cmd
4739  * @phba: pointer to lpfc hba data structure.
4740  * @pmb: pointer to the driver internal queue element for mailbox command.
4741  *
4742  * This routine is the completion callback function for the MBX_READ_LNK_STAT
4743  * mailbox command. This callback function is to actually send the Accept
4744  * (ACC) response to a Read Port Status (RPS) unsolicited IOCB event. It
4745  * collects the link statistics from the completion of the MBX_READ_LNK_STAT
4746  * mailbox command, constructs the RPS response with the link statistics
4747  * collected, and then invokes the lpfc_sli_issue_iocb() routine to send ACC
4748  * response to the RPS.
4749  *
4750  * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
4751  * will be incremented by 1 for holding the ndlp and the reference to ndlp
4752  * will be stored into the context1 field of the IOCB for the completion
4753  * callback function to the RPS Accept Response ELS IOCB command.
4754  *
4755  **/
4756 static void
4757 lpfc_els_rsp_rps_acc(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
4758 {
4759         MAILBOX_t *mb;
4760         IOCB_t *icmd;
4761         RPS_RSP *rps_rsp;
4762         uint8_t *pcmd;
4763         struct lpfc_iocbq *elsiocb;
4764         struct lpfc_nodelist *ndlp;
4765         uint16_t xri, status;
4766         uint32_t cmdsize;
4767
4768         mb = &pmb->u.mb;
4769
4770         ndlp = (struct lpfc_nodelist *) pmb->context2;
4771         xri = (uint16_t) ((unsigned long)(pmb->context1));
4772         pmb->context1 = NULL;
4773         pmb->context2 = NULL;
4774
4775         if (mb->mbxStatus) {
4776                 mempool_free(pmb, phba->mbox_mem_pool);
4777                 return;
4778         }
4779
4780         cmdsize = sizeof(RPS_RSP) + sizeof(uint32_t);
4781         mempool_free(pmb, phba->mbox_mem_pool);
4782         elsiocb = lpfc_prep_els_iocb(phba->pport, 0, cmdsize,
4783                                      lpfc_max_els_tries, ndlp,
4784                                      ndlp->nlp_DID, ELS_CMD_ACC);
4785
4786         /* Decrement the ndlp reference count from previous mbox command */
4787         lpfc_nlp_put(ndlp);
4788
4789         if (!elsiocb)
4790                 return;
4791
4792         icmd = &elsiocb->iocb;
4793         icmd->ulpContext = xri;
4794
4795         pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
4796         *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
4797         pcmd += sizeof(uint32_t); /* Skip past command */
4798         rps_rsp = (RPS_RSP *)pcmd;
4799
4800         if (phba->fc_topology != TOPOLOGY_LOOP)
4801                 status = 0x10;
4802         else
4803                 status = 0x8;
4804         if (phba->pport->fc_flag & FC_FABRIC)
4805                 status |= 0x4;
4806
4807         rps_rsp->rsvd1 = 0;
4808         rps_rsp->portStatus = cpu_to_be16(status);
4809         rps_rsp->linkFailureCnt = cpu_to_be32(mb->un.varRdLnk.linkFailureCnt);
4810         rps_rsp->lossSyncCnt = cpu_to_be32(mb->un.varRdLnk.lossSyncCnt);
4811         rps_rsp->lossSignalCnt = cpu_to_be32(mb->un.varRdLnk.lossSignalCnt);
4812         rps_rsp->primSeqErrCnt = cpu_to_be32(mb->un.varRdLnk.primSeqErrCnt);
4813         rps_rsp->invalidXmitWord = cpu_to_be32(mb->un.varRdLnk.invalidXmitWord);
4814         rps_rsp->crcCnt = cpu_to_be32(mb->un.varRdLnk.crcCnt);
4815         /* Xmit ELS RPS ACC response tag <ulpIoTag> */
4816         lpfc_printf_vlog(ndlp->vport, KERN_INFO, LOG_ELS,
4817                          "0118 Xmit ELS RPS ACC response tag x%x xri x%x, "
4818                          "did x%x, nlp_flag x%x, nlp_state x%x, rpi x%x\n",
4819                          elsiocb->iotag, elsiocb->iocb.ulpContext,
4820                          ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
4821                          ndlp->nlp_rpi);
4822         elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
4823         phba->fc_stat.elsXmitACC++;
4824         if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) == IOCB_ERROR)
4825                 lpfc_els_free_iocb(phba, elsiocb);
4826         return;
4827 }
4828
4829 /**
4830  * lpfc_els_rcv_rps - Process an unsolicited rps iocb
4831  * @vport: pointer to a host virtual N_Port data structure.
4832  * @cmdiocb: pointer to lpfc command iocb data structure.
4833  * @ndlp: pointer to a node-list data structure.
4834  *
4835  * This routine processes Read Port Status (RPS) IOCB received as an
4836  * ELS unsolicited event. It first checks the remote port state. If the
4837  * remote port is not in NLP_STE_UNMAPPED_NODE state or NLP_STE_MAPPED_NODE
4838  * state, it invokes the lpfc_els_rsp_reject() routine to send the reject
4839  * response. Otherwise, it issue the MBX_READ_LNK_STAT mailbox command
4840  * for reading the HBA link statistics. It is for the callback function,
4841  * lpfc_els_rsp_rps_acc(), set to the MBX_READ_LNK_STAT mailbox command
4842  * to actually sending out RPS Accept (ACC) response.
4843  *
4844  * Return codes
4845  *   0 - Successfully processed rps iocb (currently always return 0)
4846  **/
4847 static int
4848 lpfc_els_rcv_rps(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
4849                  struct lpfc_nodelist *ndlp)
4850 {
4851         struct lpfc_hba *phba = vport->phba;
4852         uint32_t *lp;
4853         uint8_t flag;
4854         LPFC_MBOXQ_t *mbox;
4855         struct lpfc_dmabuf *pcmd;
4856         RPS *rps;
4857         struct ls_rjt stat;
4858
4859         if ((ndlp->nlp_state != NLP_STE_UNMAPPED_NODE) &&
4860             (ndlp->nlp_state != NLP_STE_MAPPED_NODE))
4861                 /* reject the unsolicited RPS request and done with it */
4862                 goto reject_out;
4863
4864         pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
4865         lp = (uint32_t *) pcmd->virt;
4866         flag = (be32_to_cpu(*lp++) & 0xf);
4867         rps = (RPS *) lp;
4868
4869         if ((flag == 0) ||
4870             ((flag == 1) && (be32_to_cpu(rps->un.portNum) == 0)) ||
4871             ((flag == 2) && (memcmp(&rps->un.portName, &vport->fc_portname,
4872                                     sizeof(struct lpfc_name)) == 0))) {
4873
4874                 printk("Fix me....\n");
4875                 dump_stack();
4876                 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_ATOMIC);
4877                 if (mbox) {
4878                         lpfc_read_lnk_stat(phba, mbox);
4879                         mbox->context1 =
4880                             (void *)((unsigned long) cmdiocb->iocb.ulpContext);
4881                         mbox->context2 = lpfc_nlp_get(ndlp);
4882                         mbox->vport = vport;
4883                         mbox->mbox_cmpl = lpfc_els_rsp_rps_acc;
4884                         if (lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT)
4885                                 != MBX_NOT_FINISHED)
4886                                 /* Mbox completion will send ELS Response */
4887                                 return 0;
4888                         /* Decrement reference count used for the failed mbox
4889                          * command.
4890                          */
4891                         lpfc_nlp_put(ndlp);
4892                         mempool_free(mbox, phba->mbox_mem_pool);
4893                 }
4894         }
4895
4896 reject_out:
4897         /* issue rejection response */
4898         stat.un.b.lsRjtRsvd0 = 0;
4899         stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
4900         stat.un.b.lsRjtRsnCodeExp = LSEXP_CANT_GIVE_DATA;
4901         stat.un.b.vendorUnique = 0;
4902         lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp, NULL);
4903         return 0;
4904 }
4905
4906 /**
4907  * lpfc_els_rsp_rpl_acc - Issue an accept rpl els command
4908  * @vport: pointer to a host virtual N_Port data structure.
4909  * @cmdsize: size of the ELS command.
4910  * @oldiocb: pointer to the original lpfc command iocb data structure.
4911  * @ndlp: pointer to a node-list data structure.
4912  *
4913  * This routine issuees an Accept (ACC) Read Port List (RPL) ELS command.
4914  * It is to be called by the lpfc_els_rcv_rpl() routine to accept the RPL.
4915  *
4916  * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
4917  * will be incremented by 1 for holding the ndlp and the reference to ndlp
4918  * will be stored into the context1 field of the IOCB for the completion
4919  * callback function to the RPL Accept Response ELS command.
4920  *
4921  * Return code
4922  *   0 - Successfully issued ACC RPL ELS command
4923  *   1 - Failed to issue ACC RPL ELS command
4924  **/
4925 static int
4926 lpfc_els_rsp_rpl_acc(struct lpfc_vport *vport, uint16_t cmdsize,
4927                      struct lpfc_iocbq *oldiocb, struct lpfc_nodelist *ndlp)
4928 {
4929         struct lpfc_hba *phba = vport->phba;
4930         IOCB_t *icmd, *oldcmd;
4931         RPL_RSP rpl_rsp;
4932         struct lpfc_iocbq *elsiocb;
4933         uint8_t *pcmd;
4934
4935         elsiocb = lpfc_prep_els_iocb(vport, 0, cmdsize, oldiocb->retry, ndlp,
4936                                      ndlp->nlp_DID, ELS_CMD_ACC);
4937
4938         if (!elsiocb)
4939                 return 1;
4940
4941         icmd = &elsiocb->iocb;
4942         oldcmd = &oldiocb->iocb;
4943         icmd->ulpContext = oldcmd->ulpContext;  /* Xri */
4944
4945         pcmd = (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
4946         *((uint32_t *) (pcmd)) = ELS_CMD_ACC;
4947         pcmd += sizeof(uint16_t);
4948         *((uint16_t *)(pcmd)) = be16_to_cpu(cmdsize);
4949         pcmd += sizeof(uint16_t);
4950
4951         /* Setup the RPL ACC payload */
4952         rpl_rsp.listLen = be32_to_cpu(1);
4953         rpl_rsp.index = 0;
4954         rpl_rsp.port_num_blk.portNum = 0;
4955         rpl_rsp.port_num_blk.portID = be32_to_cpu(vport->fc_myDID);
4956         memcpy(&rpl_rsp.port_num_blk.portName, &vport->fc_portname,
4957             sizeof(struct lpfc_name));
4958         memcpy(pcmd, &rpl_rsp, cmdsize - sizeof(uint32_t));
4959         /* Xmit ELS RPL ACC response tag <ulpIoTag> */
4960         lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
4961                          "0120 Xmit ELS RPL ACC response tag x%x "
4962                          "xri x%x, did x%x, nlp_flag x%x, nlp_state x%x, "
4963                          "rpi x%x\n",
4964                          elsiocb->iotag, elsiocb->iocb.ulpContext,
4965                          ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_state,
4966                          ndlp->nlp_rpi);
4967         elsiocb->iocb_cmpl = lpfc_cmpl_els_rsp;
4968         phba->fc_stat.elsXmitACC++;
4969         if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) ==
4970             IOCB_ERROR) {
4971                 lpfc_els_free_iocb(phba, elsiocb);
4972                 return 1;
4973         }
4974         return 0;
4975 }
4976
4977 /**
4978  * lpfc_els_rcv_rpl - Process an unsolicited rpl iocb
4979  * @vport: pointer to a host virtual N_Port data structure.
4980  * @cmdiocb: pointer to lpfc command iocb data structure.
4981  * @ndlp: pointer to a node-list data structure.
4982  *
4983  * This routine processes Read Port List (RPL) IOCB received as an ELS
4984  * unsolicited event. It first checks the remote port state. If the remote
4985  * port is not in NLP_STE_UNMAPPED_NODE and NLP_STE_MAPPED_NODE states, it
4986  * invokes the lpfc_els_rsp_reject() routine to send reject response.
4987  * Otherwise, this routine then invokes the lpfc_els_rsp_rpl_acc() routine
4988  * to accept the RPL.
4989  *
4990  * Return code
4991  *   0 - Successfully processed rpl iocb (currently always return 0)
4992  **/
4993 static int
4994 lpfc_els_rcv_rpl(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
4995                  struct lpfc_nodelist *ndlp)
4996 {
4997         struct lpfc_dmabuf *pcmd;
4998         uint32_t *lp;
4999         uint32_t maxsize;
5000         uint16_t cmdsize;
5001         RPL *rpl;
5002         struct ls_rjt stat;
5003
5004         if ((ndlp->nlp_state != NLP_STE_UNMAPPED_NODE) &&
5005             (ndlp->nlp_state != NLP_STE_MAPPED_NODE)) {
5006                 /* issue rejection response */
5007                 stat.un.b.lsRjtRsvd0 = 0;
5008                 stat.un.b.lsRjtRsnCode = LSRJT_UNABLE_TPC;
5009                 stat.un.b.lsRjtRsnCodeExp = LSEXP_CANT_GIVE_DATA;
5010                 stat.un.b.vendorUnique = 0;
5011                 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, cmdiocb, ndlp,
5012                         NULL);
5013                 /* rejected the unsolicited RPL request and done with it */
5014                 return 0;
5015         }
5016
5017         pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
5018         lp = (uint32_t *) pcmd->virt;
5019         rpl = (RPL *) (lp + 1);
5020
5021         maxsize = be32_to_cpu(rpl->maxsize);
5022
5023         /* We support only one port */
5024         if ((rpl->index == 0) &&
5025             ((maxsize == 0) ||
5026              ((maxsize * sizeof(uint32_t)) >= sizeof(RPL_RSP)))) {
5027                 cmdsize = sizeof(uint32_t) + sizeof(RPL_RSP);
5028         } else {
5029                 cmdsize = sizeof(uint32_t) + maxsize * sizeof(uint32_t);
5030         }
5031         lpfc_els_rsp_rpl_acc(vport, cmdsize, cmdiocb, ndlp);
5032
5033         return 0;
5034 }
5035
5036 /**
5037  * lpfc_els_rcv_farp - Process an unsolicited farp request els command
5038  * @vport: pointer to a virtual N_Port data structure.
5039  * @cmdiocb: pointer to lpfc command iocb data structure.
5040  * @ndlp: pointer to a node-list data structure.
5041  *
5042  * This routine processes Fibre Channel Address Resolution Protocol
5043  * (FARP) Request IOCB received as an ELS unsolicited event. Currently,
5044  * the lpfc driver only supports matching on WWPN or WWNN for FARP. As such,
5045  * FARP_MATCH_PORT flag and FARP_MATCH_NODE flag are checked against the
5046  * Match Flag in the FARP request IOCB: if FARP_MATCH_PORT flag is set, the
5047  * remote PortName is compared against the FC PortName stored in the @vport
5048  * data structure; if FARP_MATCH_NODE flag is set, the remote NodeName is
5049  * compared against the FC NodeName stored in the @vport data structure.
5050  * If any of these matches and the FARP_REQUEST_FARPR flag is set in the
5051  * FARP request IOCB Response Flag, the lpfc_issue_els_farpr() routine is
5052  * invoked to send out FARP Response to the remote node. Before sending the
5053  * FARP Response, however, the FARP_REQUEST_PLOGI flag is check in the FARP
5054  * request IOCB Response Flag and, if it is set, the lpfc_issue_els_plogi()
5055  * routine is invoked to log into the remote port first.
5056  *
5057  * Return code
5058  *   0 - Either the FARP Match Mode not supported or successfully processed
5059  **/
5060 static int
5061 lpfc_els_rcv_farp(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
5062                   struct lpfc_nodelist *ndlp)
5063 {
5064         struct lpfc_dmabuf *pcmd;
5065         uint32_t *lp;
5066         IOCB_t *icmd;
5067         FARP *fp;
5068         uint32_t cmd, cnt, did;
5069
5070         icmd = &cmdiocb->iocb;
5071         did = icmd->un.elsreq64.remoteID;
5072         pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
5073         lp = (uint32_t *) pcmd->virt;
5074
5075         cmd = *lp++;
5076         fp = (FARP *) lp;
5077         /* FARP-REQ received from DID <did> */
5078         lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
5079                          "0601 FARP-REQ received from DID x%x\n", did);
5080         /* We will only support match on WWPN or WWNN */
5081         if (fp->Mflags & ~(FARP_MATCH_NODE | FARP_MATCH_PORT)) {
5082                 return 0;
5083         }
5084
5085         cnt = 0;
5086         /* If this FARP command is searching for my portname */
5087         if (fp->Mflags & FARP_MATCH_PORT) {
5088                 if (memcmp(&fp->RportName, &vport->fc_portname,
5089                            sizeof(struct lpfc_name)) == 0)
5090                         cnt = 1;
5091         }
5092
5093         /* If this FARP command is searching for my nodename */
5094         if (fp->Mflags & FARP_MATCH_NODE) {
5095                 if (memcmp(&fp->RnodeName, &vport->fc_nodename,
5096                            sizeof(struct lpfc_name)) == 0)
5097                         cnt = 1;
5098         }
5099
5100         if (cnt) {
5101                 if ((ndlp->nlp_state == NLP_STE_UNMAPPED_NODE) ||
5102                    (ndlp->nlp_state == NLP_STE_MAPPED_NODE)) {
5103                         /* Log back into the node before sending the FARP. */
5104                         if (fp->Rflags & FARP_REQUEST_PLOGI) {
5105                                 ndlp->nlp_prev_state = ndlp->nlp_state;
5106                                 lpfc_nlp_set_state(vport, ndlp,
5107                                                    NLP_STE_PLOGI_ISSUE);
5108                                 lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0);
5109                         }
5110
5111                         /* Send a FARP response to that node */
5112                         if (fp->Rflags & FARP_REQUEST_FARPR)
5113                                 lpfc_issue_els_farpr(vport, did, 0);
5114                 }
5115         }
5116         return 0;
5117 }
5118
5119 /**
5120  * lpfc_els_rcv_farpr - Process an unsolicited farp response iocb
5121  * @vport: pointer to a host virtual N_Port data structure.
5122  * @cmdiocb: pointer to lpfc command iocb data structure.
5123  * @ndlp: pointer to a node-list data structure.
5124  *
5125  * This routine processes Fibre Channel Address Resolution Protocol
5126  * Response (FARPR) IOCB received as an ELS unsolicited event. It simply
5127  * invokes the lpfc_els_rsp_acc() routine to the remote node to accept
5128  * the FARP response request.
5129  *
5130  * Return code
5131  *   0 - Successfully processed FARPR IOCB (currently always return 0)
5132  **/
5133 static int
5134 lpfc_els_rcv_farpr(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
5135                    struct lpfc_nodelist  *ndlp)
5136 {
5137         struct lpfc_dmabuf *pcmd;
5138         uint32_t *lp;
5139         IOCB_t *icmd;
5140         uint32_t cmd, did;
5141
5142         icmd = &cmdiocb->iocb;
5143         did = icmd->un.elsreq64.remoteID;
5144         pcmd = (struct lpfc_dmabuf *) cmdiocb->context2;
5145         lp = (uint32_t *) pcmd->virt;
5146
5147         cmd = *lp++;
5148         /* FARP-RSP received from DID <did> */
5149         lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
5150                          "0600 FARP-RSP received from DID x%x\n", did);
5151         /* ACCEPT the Farp resp request */
5152         lpfc_els_rsp_acc(vport, ELS_CMD_ACC, cmdiocb, ndlp, NULL);
5153
5154         return 0;
5155 }
5156
5157 /**
5158  * lpfc_els_rcv_fan - Process an unsolicited fan iocb command
5159  * @vport: pointer to a host virtual N_Port data structure.
5160  * @cmdiocb: pointer to lpfc command iocb data structure.
5161  * @fan_ndlp: pointer to a node-list data structure.
5162  *
5163  * This routine processes a Fabric Address Notification (FAN) IOCB
5164  * command received as an ELS unsolicited event. The FAN ELS command will
5165  * only be processed on a physical port (i.e., the @vport represents the
5166  * physical port). The fabric NodeName and PortName from the FAN IOCB are
5167  * compared against those in the phba data structure. If any of those is
5168  * different, the lpfc_initial_flogi() routine is invoked to initialize
5169  * Fabric Login (FLOGI) to the fabric to start the discover over. Otherwise,
5170  * if both of those are identical, the lpfc_issue_fabric_reglogin() routine
5171  * is invoked to register login to the fabric.
5172  *
5173  * Return code
5174  *   0 - Successfully processed fan iocb (currently always return 0).
5175  **/
5176 static int
5177 lpfc_els_rcv_fan(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
5178                  struct lpfc_nodelist *fan_ndlp)
5179 {
5180         struct lpfc_hba *phba = vport->phba;
5181         uint32_t *lp;
5182         FAN *fp;
5183
5184         lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS, "0265 FAN received\n");
5185         lp = (uint32_t *)((struct lpfc_dmabuf *)cmdiocb->context2)->virt;
5186         fp = (FAN *) ++lp;
5187         /* FAN received; Fan does not have a reply sequence */
5188         if ((vport == phba->pport) &&
5189             (vport->port_state == LPFC_LOCAL_CFG_LINK)) {
5190                 if ((memcmp(&phba->fc_fabparam.nodeName, &fp->FnodeName,
5191                             sizeof(struct lpfc_name))) ||
5192                     (memcmp(&phba->fc_fabparam.portName, &fp->FportName,
5193                             sizeof(struct lpfc_name)))) {
5194                         /* This port has switched fabrics. FLOGI is required */
5195                         lpfc_initial_flogi(vport);
5196                 } else {
5197                         /* FAN verified - skip FLOGI */
5198                         vport->fc_myDID = vport->fc_prevDID;
5199                         if (phba->sli_rev < LPFC_SLI_REV4)
5200                                 lpfc_issue_fabric_reglogin(vport);
5201                         else
5202                                 lpfc_issue_reg_vfi(vport);
5203                 }
5204         }
5205         return 0;
5206 }
5207
5208 /**
5209  * lpfc_els_timeout - Handler funciton to the els timer
5210  * @ptr: holder for the timer function associated data.
5211  *
5212  * This routine is invoked by the ELS timer after timeout. It posts the ELS
5213  * timer timeout event by setting the WORKER_ELS_TMO bit to the work port
5214  * event bitmap and then invokes the lpfc_worker_wake_up() routine to wake
5215  * up the worker thread. It is for the worker thread to invoke the routine
5216  * lpfc_els_timeout_handler() to work on the posted event WORKER_ELS_TMO.
5217  **/
5218 void
5219 lpfc_els_timeout(unsigned long ptr)
5220 {
5221         struct lpfc_vport *vport = (struct lpfc_vport *) ptr;
5222         struct lpfc_hba   *phba = vport->phba;
5223         uint32_t tmo_posted;
5224         unsigned long iflag;
5225
5226         spin_lock_irqsave(&vport->work_port_lock, iflag);
5227         tmo_posted = vport->work_port_events & WORKER_ELS_TMO;
5228         if (!tmo_posted)
5229                 vport->work_port_events |= WORKER_ELS_TMO;
5230         spin_unlock_irqrestore(&vport->work_port_lock, iflag);
5231
5232         if (!tmo_posted)
5233                 lpfc_worker_wake_up(phba);
5234         return;
5235 }
5236
5237
5238 /**
5239  * lpfc_els_timeout_handler - Process an els timeout event
5240  * @vport: pointer to a virtual N_Port data structure.
5241  *
5242  * This routine is the actual handler function that processes an ELS timeout
5243  * event. It walks the ELS ring to get and abort all the IOCBs (except the
5244  * ABORT/CLOSE/FARP/FARPR/FDISC), which are associated with the @vport by
5245  * invoking the lpfc_sli_issue_abort_iotag() routine.
5246  **/
5247 void
5248 lpfc_els_timeout_handler(struct lpfc_vport *vport)
5249 {
5250         struct lpfc_hba  *phba = vport->phba;
5251         struct lpfc_sli_ring *pring;
5252         struct lpfc_iocbq *tmp_iocb, *piocb;
5253         IOCB_t *cmd = NULL;
5254         struct lpfc_dmabuf *pcmd;
5255         uint32_t els_command = 0;
5256         uint32_t timeout;
5257         uint32_t remote_ID = 0xffffffff;
5258         LIST_HEAD(txcmplq_completions);
5259         LIST_HEAD(abort_list);
5260
5261
5262         timeout = (uint32_t)(phba->fc_ratov << 1);
5263
5264         pring = &phba->sli.ring[LPFC_ELS_RING];
5265
5266         spin_lock_irq(&phba->hbalock);
5267         list_splice_init(&pring->txcmplq, &txcmplq_completions);
5268         spin_unlock_irq(&phba->hbalock);
5269
5270         list_for_each_entry_safe(piocb, tmp_iocb, &txcmplq_completions, list) {
5271                 cmd = &piocb->iocb;
5272
5273                 if ((piocb->iocb_flag & LPFC_IO_LIBDFC) != 0 ||
5274                     piocb->iocb.ulpCommand == CMD_ABORT_XRI_CN ||
5275                     piocb->iocb.ulpCommand == CMD_CLOSE_XRI_CN)
5276                         continue;
5277
5278                 if (piocb->vport != vport)
5279                         continue;
5280
5281                 pcmd = (struct lpfc_dmabuf *) piocb->context2;
5282                 if (pcmd)
5283                         els_command = *(uint32_t *) (pcmd->virt);
5284
5285                 if (els_command == ELS_CMD_FARP ||
5286                     els_command == ELS_CMD_FARPR ||
5287                     els_command == ELS_CMD_FDISC)
5288                         continue;
5289
5290                 if (piocb->drvrTimeout > 0) {
5291                         if (piocb->drvrTimeout >= timeout)
5292                                 piocb->drvrTimeout -= timeout;
5293                         else
5294                                 piocb->drvrTimeout = 0;
5295                         continue;
5296                 }
5297
5298                 remote_ID = 0xffffffff;
5299                 if (cmd->ulpCommand != CMD_GEN_REQUEST64_CR)
5300                         remote_ID = cmd->un.elsreq64.remoteID;
5301                 else {
5302                         struct lpfc_nodelist *ndlp;
5303                         ndlp = __lpfc_findnode_rpi(vport, cmd->ulpContext);
5304                         if (ndlp && NLP_CHK_NODE_ACT(ndlp))
5305                                 remote_ID = ndlp->nlp_DID;
5306                 }
5307                 list_add_tail(&piocb->dlist, &abort_list);
5308         }
5309         spin_lock_irq(&phba->hbalock);
5310         list_splice(&txcmplq_completions, &pring->txcmplq);
5311         spin_unlock_irq(&phba->hbalock);
5312
5313         list_for_each_entry_safe(piocb, tmp_iocb, &abort_list, dlist) {
5314                 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
5315                          "0127 ELS timeout Data: x%x x%x x%x "
5316                          "x%x\n", els_command,
5317                          remote_ID, cmd->ulpCommand, cmd->ulpIoTag);
5318                 spin_lock_irq(&phba->hbalock);
5319                 list_del_init(&piocb->dlist);
5320                 lpfc_sli_issue_abort_iotag(phba, pring, piocb);
5321                 spin_unlock_irq(&phba->hbalock);
5322         }
5323
5324         if (phba->sli.ring[LPFC_ELS_RING].txcmplq_cnt)
5325                 mod_timer(&vport->els_tmofunc, jiffies + HZ * timeout);
5326 }
5327
5328 /**
5329  * lpfc_els_flush_cmd - Clean up the outstanding els commands to a vport
5330  * @vport: pointer to a host virtual N_Port data structure.
5331  *
5332  * This routine is used to clean up all the outstanding ELS commands on a
5333  * @vport. It first aborts the @vport by invoking lpfc_fabric_abort_vport()
5334  * routine. After that, it walks the ELS transmit queue to remove all the
5335  * IOCBs with the @vport other than the QUE_RING and ABORT/CLOSE IOCBs. For
5336  * the IOCBs with a non-NULL completion callback function, the callback
5337  * function will be invoked with the status set to IOSTAT_LOCAL_REJECT and
5338  * un.ulpWord[4] set to IOERR_SLI_ABORTED. For IOCBs with a NULL completion
5339  * callback function, the IOCB will simply be released. Finally, it walks
5340  * the ELS transmit completion queue to issue an abort IOCB to any transmit
5341  * completion queue IOCB that is associated with the @vport and is not
5342  * an IOCB from libdfc (i.e., the management plane IOCBs that are not
5343  * part of the discovery state machine) out to HBA by invoking the
5344  * lpfc_sli_issue_abort_iotag() routine. Note that this function issues the
5345  * abort IOCB to any transmit completion queueed IOCB, it does not guarantee
5346  * the IOCBs are aborted when this function returns.
5347  **/
5348 void
5349 lpfc_els_flush_cmd(struct lpfc_vport *vport)
5350 {
5351         LIST_HEAD(completions);
5352         struct lpfc_hba  *phba = vport->phba;
5353         struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
5354         struct lpfc_iocbq *tmp_iocb, *piocb;
5355         IOCB_t *cmd = NULL;
5356
5357         lpfc_fabric_abort_vport(vport);
5358
5359         spin_lock_irq(&phba->hbalock);
5360         list_for_each_entry_safe(piocb, tmp_iocb, &pring->txq, list) {
5361                 cmd = &piocb->iocb;
5362
5363                 if (piocb->iocb_flag & LPFC_IO_LIBDFC) {
5364                         continue;
5365                 }
5366
5367                 /* Do not flush out the QUE_RING and ABORT/CLOSE iocbs */
5368                 if (cmd->ulpCommand == CMD_QUE_RING_BUF_CN ||
5369                     cmd->ulpCommand == CMD_QUE_RING_BUF64_CN ||
5370                     cmd->ulpCommand == CMD_CLOSE_XRI_CN ||
5371                     cmd->ulpCommand == CMD_ABORT_XRI_CN)
5372                         continue;
5373
5374                 if (piocb->vport != vport)
5375                         continue;
5376
5377                 list_move_tail(&piocb->list, &completions);
5378                 pring->txq_cnt--;
5379         }
5380
5381         list_for_each_entry_safe(piocb, tmp_iocb, &pring->txcmplq, list) {
5382                 if (piocb->iocb_flag & LPFC_IO_LIBDFC) {
5383                         continue;
5384                 }
5385
5386                 if (piocb->vport != vport)
5387                         continue;
5388
5389                 lpfc_sli_issue_abort_iotag(phba, pring, piocb);
5390         }
5391         spin_unlock_irq(&phba->hbalock);
5392
5393         /* Cancell all the IOCBs from the completions list */
5394         lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
5395                               IOERR_SLI_ABORTED);
5396
5397         return;
5398 }
5399
5400 /**
5401  * lpfc_els_flush_all_cmd - Clean up all the outstanding els commands to a HBA
5402  * @phba: pointer to lpfc hba data structure.
5403  *
5404  * This routine is used to clean up all the outstanding ELS commands on a
5405  * @phba. It first aborts the @phba by invoking the lpfc_fabric_abort_hba()
5406  * routine. After that, it walks the ELS transmit queue to remove all the
5407  * IOCBs to the @phba other than the QUE_RING and ABORT/CLOSE IOCBs. For
5408  * the IOCBs with the completion callback function associated, the callback
5409  * function will be invoked with the status set to IOSTAT_LOCAL_REJECT and
5410  * un.ulpWord[4] set to IOERR_SLI_ABORTED. For IOCBs without the completion
5411  * callback function associated, the IOCB will simply be released. Finally,
5412  * it walks the ELS transmit completion queue to issue an abort IOCB to any
5413  * transmit completion queue IOCB that is not an IOCB from libdfc (i.e., the
5414  * management plane IOCBs that are not part of the discovery state machine)
5415  * out to HBA by invoking the lpfc_sli_issue_abort_iotag() routine.
5416  **/
5417 void
5418 lpfc_els_flush_all_cmd(struct lpfc_hba  *phba)
5419 {
5420         LIST_HEAD(completions);
5421         struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
5422         struct lpfc_iocbq *tmp_iocb, *piocb;
5423         IOCB_t *cmd = NULL;
5424
5425         lpfc_fabric_abort_hba(phba);
5426         spin_lock_irq(&phba->hbalock);
5427         list_for_each_entry_safe(piocb, tmp_iocb, &pring->txq, list) {
5428                 cmd = &piocb->iocb;
5429                 if (piocb->iocb_flag & LPFC_IO_LIBDFC)
5430                         continue;
5431                 /* Do not flush out the QUE_RING and ABORT/CLOSE iocbs */
5432                 if (cmd->ulpCommand == CMD_QUE_RING_BUF_CN ||
5433                     cmd->ulpCommand == CMD_QUE_RING_BUF64_CN ||
5434                     cmd->ulpCommand == CMD_CLOSE_XRI_CN ||
5435                     cmd->ulpCommand == CMD_ABORT_XRI_CN)
5436                         continue;
5437                 list_move_tail(&piocb->list, &completions);
5438                 pring->txq_cnt--;
5439         }
5440         list_for_each_entry_safe(piocb, tmp_iocb, &pring->txcmplq, list) {
5441                 if (piocb->iocb_flag & LPFC_IO_LIBDFC)
5442                         continue;
5443                 lpfc_sli_issue_abort_iotag(phba, pring, piocb);
5444         }
5445         spin_unlock_irq(&phba->hbalock);
5446
5447         /* Cancel all the IOCBs from the completions list */
5448         lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
5449                               IOERR_SLI_ABORTED);
5450
5451         return;
5452 }
5453
5454 /**
5455  * lpfc_send_els_failure_event - Posts an ELS command failure event
5456  * @phba: Pointer to hba context object.
5457  * @cmdiocbp: Pointer to command iocb which reported error.
5458  * @rspiocbp: Pointer to response iocb which reported error.
5459  *
5460  * This function sends an event when there is an ELS command
5461  * failure.
5462  **/
5463 void
5464 lpfc_send_els_failure_event(struct lpfc_hba *phba,
5465                         struct lpfc_iocbq *cmdiocbp,
5466                         struct lpfc_iocbq *rspiocbp)
5467 {
5468         struct lpfc_vport *vport = cmdiocbp->vport;
5469         struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
5470         struct lpfc_lsrjt_event lsrjt_event;
5471         struct lpfc_fabric_event_header fabric_event;
5472         struct ls_rjt stat;
5473         struct lpfc_nodelist *ndlp;
5474         uint32_t *pcmd;
5475
5476         ndlp = cmdiocbp->context1;
5477         if (!ndlp || !NLP_CHK_NODE_ACT(ndlp))
5478                 return;
5479
5480         if (rspiocbp->iocb.ulpStatus == IOSTAT_LS_RJT) {
5481                 lsrjt_event.header.event_type = FC_REG_ELS_EVENT;
5482                 lsrjt_event.header.subcategory = LPFC_EVENT_LSRJT_RCV;
5483                 memcpy(lsrjt_event.header.wwpn, &ndlp->nlp_portname,
5484                         sizeof(struct lpfc_name));
5485                 memcpy(lsrjt_event.header.wwnn, &ndlp->nlp_nodename,
5486                         sizeof(struct lpfc_name));
5487                 pcmd = (uint32_t *) (((struct lpfc_dmabuf *)
5488                         cmdiocbp->context2)->virt);
5489                 lsrjt_event.command = (pcmd != NULL) ? *pcmd : 0;
5490                 stat.un.lsRjtError = be32_to_cpu(rspiocbp->iocb.un.ulpWord[4]);
5491                 lsrjt_event.reason_code = stat.un.b.lsRjtRsnCode;
5492                 lsrjt_event.explanation = stat.un.b.lsRjtRsnCodeExp;
5493                 fc_host_post_vendor_event(shost,
5494                         fc_get_event_number(),
5495                         sizeof(lsrjt_event),
5496                         (char *)&lsrjt_event,
5497                         LPFC_NL_VENDOR_ID);
5498                 return;
5499         }
5500         if ((rspiocbp->iocb.ulpStatus == IOSTAT_NPORT_BSY) ||
5501                 (rspiocbp->iocb.ulpStatus == IOSTAT_FABRIC_BSY)) {
5502                 fabric_event.event_type = FC_REG_FABRIC_EVENT;
5503                 if (rspiocbp->iocb.ulpStatus == IOSTAT_NPORT_BSY)
5504                         fabric_event.subcategory = LPFC_EVENT_PORT_BUSY;
5505                 else
5506                         fabric_event.subcategory = LPFC_EVENT_FABRIC_BUSY;
5507                 memcpy(fabric_event.wwpn, &ndlp->nlp_portname,
5508                         sizeof(struct lpfc_name));
5509                 memcpy(fabric_event.wwnn, &ndlp->nlp_nodename,
5510                         sizeof(struct lpfc_name));
5511                 fc_host_post_vendor_event(shost,
5512                         fc_get_event_number(),
5513                         sizeof(fabric_event),
5514                         (char *)&fabric_event,
5515                         LPFC_NL_VENDOR_ID);
5516                 return;
5517         }
5518
5519 }
5520
5521 /**
5522  * lpfc_send_els_event - Posts unsolicited els event
5523  * @vport: Pointer to vport object.
5524  * @ndlp: Pointer FC node object.
5525  * @cmd: ELS command code.
5526  *
5527  * This function posts an event when there is an incoming
5528  * unsolicited ELS command.
5529  **/
5530 static void
5531 lpfc_send_els_event(struct lpfc_vport *vport,
5532                     struct lpfc_nodelist *ndlp,
5533                     uint32_t *payload)
5534 {
5535         struct lpfc_els_event_header *els_data = NULL;
5536         struct lpfc_logo_event *logo_data = NULL;
5537         struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
5538
5539         if (*payload == ELS_CMD_LOGO) {
5540                 logo_data = kmalloc(sizeof(struct lpfc_logo_event), GFP_KERNEL);
5541                 if (!logo_data) {
5542                         lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
5543                                 "0148 Failed to allocate memory "
5544                                 "for LOGO event\n");
5545                         return;
5546                 }
5547                 els_data = &logo_data->header;
5548         } else {
5549                 els_data = kmalloc(sizeof(struct lpfc_els_event_header),
5550                         GFP_KERNEL);
5551                 if (!els_data) {
5552                         lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
5553                                 "0149 Failed to allocate memory "
5554                                 "for ELS event\n");
5555                         return;
5556                 }
5557         }
5558         els_data->event_type = FC_REG_ELS_EVENT;
5559         switch (*payload) {
5560         case ELS_CMD_PLOGI:
5561                 els_data->subcategory = LPFC_EVENT_PLOGI_RCV;
5562                 break;
5563         case ELS_CMD_PRLO:
5564                 els_data->subcategory = LPFC_EVENT_PRLO_RCV;
5565                 break;
5566         case ELS_CMD_ADISC:
5567                 els_data->subcategory = LPFC_EVENT_ADISC_RCV;
5568                 break;
5569         case ELS_CMD_LOGO:
5570                 els_data->subcategory = LPFC_EVENT_LOGO_RCV;
5571                 /* Copy the WWPN in the LOGO payload */
5572                 memcpy(logo_data->logo_wwpn, &payload[2],
5573                         sizeof(struct lpfc_name));
5574                 break;
5575         default:
5576                 kfree(els_data);
5577                 return;
5578         }
5579         memcpy(els_data->wwpn, &ndlp->nlp_portname, sizeof(struct lpfc_name));
5580         memcpy(els_data->wwnn, &ndlp->nlp_nodename, sizeof(struct lpfc_name));
5581         if (*payload == ELS_CMD_LOGO) {
5582                 fc_host_post_vendor_event(shost,
5583                         fc_get_event_number(),
5584                         sizeof(struct lpfc_logo_event),
5585                         (char *)logo_data,
5586                         LPFC_NL_VENDOR_ID);
5587                 kfree(logo_data);
5588         } else {
5589                 fc_host_post_vendor_event(shost,
5590                         fc_get_event_number(),
5591                         sizeof(struct lpfc_els_event_header),
5592                         (char *)els_data,
5593                         LPFC_NL_VENDOR_ID);
5594                 kfree(els_data);
5595         }
5596
5597         return;
5598 }
5599
5600
5601 /**
5602  * lpfc_els_unsol_buffer - Process an unsolicited event data buffer
5603  * @phba: pointer to lpfc hba data structure.
5604  * @pring: pointer to a SLI ring.
5605  * @vport: pointer to a host virtual N_Port data structure.
5606  * @elsiocb: pointer to lpfc els command iocb data structure.
5607  *
5608  * This routine is used for processing the IOCB associated with a unsolicited
5609  * event. It first determines whether there is an existing ndlp that matches
5610  * the DID from the unsolicited IOCB. If not, it will create a new one with
5611  * the DID from the unsolicited IOCB. The ELS command from the unsolicited
5612  * IOCB is then used to invoke the proper routine and to set up proper state
5613  * of the discovery state machine.
5614  **/
5615 static void
5616 lpfc_els_unsol_buffer(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
5617                       struct lpfc_vport *vport, struct lpfc_iocbq *elsiocb)
5618 {
5619         struct Scsi_Host  *shost;
5620         struct lpfc_nodelist *ndlp;
5621         struct ls_rjt stat;
5622         uint32_t *payload;
5623         uint32_t cmd, did, newnode, rjt_err = 0;
5624         IOCB_t *icmd = &elsiocb->iocb;
5625
5626         if (!vport || !(elsiocb->context2))
5627                 goto dropit;
5628
5629         newnode = 0;
5630         payload = ((struct lpfc_dmabuf *)elsiocb->context2)->virt;
5631         cmd = *payload;
5632         if ((phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) == 0)
5633                 lpfc_post_buffer(phba, pring, 1);
5634
5635         did = icmd->un.rcvels.remoteID;
5636         if (icmd->ulpStatus) {
5637                 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
5638                         "RCV Unsol ELS:  status:x%x/x%x did:x%x",
5639                         icmd->ulpStatus, icmd->un.ulpWord[4], did);
5640                 goto dropit;
5641         }
5642
5643         /* Check to see if link went down during discovery */
5644         if (lpfc_els_chk_latt(vport))
5645                 goto dropit;
5646
5647         /* Ignore traffic received during vport shutdown. */
5648         if (vport->load_flag & FC_UNLOADING)
5649                 goto dropit;
5650
5651         ndlp = lpfc_findnode_did(vport, did);
5652         if (!ndlp) {
5653                 /* Cannot find existing Fabric ndlp, so allocate a new one */
5654                 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
5655                 if (!ndlp)
5656                         goto dropit;
5657
5658                 lpfc_nlp_init(vport, ndlp, did);
5659                 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
5660                 newnode = 1;
5661                 if ((did & Fabric_DID_MASK) == Fabric_DID_MASK)
5662                         ndlp->nlp_type |= NLP_FABRIC;
5663         } else if (!NLP_CHK_NODE_ACT(ndlp)) {
5664                 ndlp = lpfc_enable_node(vport, ndlp,
5665                                         NLP_STE_UNUSED_NODE);
5666                 if (!ndlp)
5667                         goto dropit;
5668                 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
5669                 newnode = 1;
5670                 if ((did & Fabric_DID_MASK) == Fabric_DID_MASK)
5671                         ndlp->nlp_type |= NLP_FABRIC;
5672         } else if (ndlp->nlp_state == NLP_STE_UNUSED_NODE) {
5673                 /* This is similar to the new node path */
5674                 ndlp = lpfc_nlp_get(ndlp);
5675                 if (!ndlp)
5676                         goto dropit;
5677                 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
5678                 newnode = 1;
5679         }
5680
5681         phba->fc_stat.elsRcvFrame++;
5682
5683         elsiocb->context1 = lpfc_nlp_get(ndlp);
5684         elsiocb->vport = vport;
5685
5686         if ((cmd & ELS_CMD_MASK) == ELS_CMD_RSCN) {
5687                 cmd &= ELS_CMD_MASK;
5688         }
5689         /* ELS command <elsCmd> received from NPORT <did> */
5690         lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
5691                          "0112 ELS command x%x received from NPORT x%x "
5692                          "Data: x%x\n", cmd, did, vport->port_state);
5693         switch (cmd) {
5694         case ELS_CMD_PLOGI:
5695                 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
5696                         "RCV PLOGI:       did:x%x/ste:x%x flg:x%x",
5697                         did, vport->port_state, ndlp->nlp_flag);
5698
5699                 phba->fc_stat.elsRcvPLOGI++;
5700                 ndlp = lpfc_plogi_confirm_nport(phba, payload, ndlp);
5701
5702                 lpfc_send_els_event(vport, ndlp, payload);
5703                 if (vport->port_state < LPFC_DISC_AUTH) {
5704                         if (!(phba->pport->fc_flag & FC_PT2PT) ||
5705                                 (phba->pport->fc_flag & FC_PT2PT_PLOGI)) {
5706                                 rjt_err = LSRJT_UNABLE_TPC;
5707                                 break;
5708                         }
5709                         /* We get here, and drop thru, if we are PT2PT with
5710                          * another NPort and the other side has initiated
5711                          * the PLOGI before responding to our FLOGI.
5712                          */
5713                 }
5714
5715                 shost = lpfc_shost_from_vport(vport);
5716                 spin_lock_irq(shost->host_lock);
5717                 ndlp->nlp_flag &= ~NLP_TARGET_REMOVE;
5718                 spin_unlock_irq(shost->host_lock);
5719
5720                 lpfc_disc_state_machine(vport, ndlp, elsiocb,
5721                                         NLP_EVT_RCV_PLOGI);
5722
5723                 break;
5724         case ELS_CMD_FLOGI:
5725                 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
5726                         "RCV FLOGI:       did:x%x/ste:x%x flg:x%x",
5727                         did, vport->port_state, ndlp->nlp_flag);
5728
5729                 phba->fc_stat.elsRcvFLOGI++;
5730                 lpfc_els_rcv_flogi(vport, elsiocb, ndlp);
5731                 if (newnode)
5732                         lpfc_nlp_put(ndlp);
5733                 break;
5734         case ELS_CMD_LOGO:
5735                 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
5736                         "RCV LOGO:        did:x%x/ste:x%x flg:x%x",
5737                         did, vport->port_state, ndlp->nlp_flag);
5738
5739                 phba->fc_stat.elsRcvLOGO++;
5740                 lpfc_send_els_event(vport, ndlp, payload);
5741                 if (vport->port_state < LPFC_DISC_AUTH) {
5742                         rjt_err = LSRJT_UNABLE_TPC;
5743                         break;
5744                 }
5745                 lpfc_disc_state_machine(vport, ndlp, elsiocb, NLP_EVT_RCV_LOGO);
5746                 break;
5747         case ELS_CMD_PRLO:
5748                 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
5749                         "RCV PRLO:        did:x%x/ste:x%x flg:x%x",
5750                         did, vport->port_state, ndlp->nlp_flag);
5751
5752                 phba->fc_stat.elsRcvPRLO++;
5753                 lpfc_send_els_event(vport, ndlp, payload);
5754                 if (vport->port_state < LPFC_DISC_AUTH) {
5755                         rjt_err = LSRJT_UNABLE_TPC;
5756                         break;
5757                 }
5758                 lpfc_disc_state_machine(vport, ndlp, elsiocb, NLP_EVT_RCV_PRLO);
5759                 break;
5760         case ELS_CMD_RSCN:
5761                 phba->fc_stat.elsRcvRSCN++;
5762                 lpfc_els_rcv_rscn(vport, elsiocb, ndlp);
5763                 if (newnode)
5764                         lpfc_nlp_put(ndlp);
5765                 break;
5766         case ELS_CMD_ADISC:
5767                 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
5768                         "RCV ADISC:       did:x%x/ste:x%x flg:x%x",
5769                         did, vport->port_state, ndlp->nlp_flag);
5770
5771                 lpfc_send_els_event(vport, ndlp, payload);
5772                 phba->fc_stat.elsRcvADISC++;
5773                 if (vport->port_state < LPFC_DISC_AUTH) {
5774                         rjt_err = LSRJT_UNABLE_TPC;
5775                         break;
5776                 }
5777                 lpfc_disc_state_machine(vport, ndlp, elsiocb,
5778                                         NLP_EVT_RCV_ADISC);
5779                 break;
5780         case ELS_CMD_PDISC:
5781                 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
5782                         "RCV PDISC:       did:x%x/ste:x%x flg:x%x",
5783                         did, vport->port_state, ndlp->nlp_flag);
5784
5785                 phba->fc_stat.elsRcvPDISC++;
5786                 if (vport->port_state < LPFC_DISC_AUTH) {
5787                         rjt_err = LSRJT_UNABLE_TPC;
5788                         break;
5789                 }
5790                 lpfc_disc_state_machine(vport, ndlp, elsiocb,
5791                                         NLP_EVT_RCV_PDISC);
5792                 break;
5793         case ELS_CMD_FARPR:
5794                 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
5795                         "RCV FARPR:       did:x%x/ste:x%x flg:x%x",
5796                         did, vport->port_state, ndlp->nlp_flag);
5797
5798                 phba->fc_stat.elsRcvFARPR++;
5799                 lpfc_els_rcv_farpr(vport, elsiocb, ndlp);
5800                 break;
5801         case ELS_CMD_FARP:
5802                 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
5803                         "RCV FARP:        did:x%x/ste:x%x flg:x%x",
5804                         did, vport->port_state, ndlp->nlp_flag);
5805
5806                 phba->fc_stat.elsRcvFARP++;
5807                 lpfc_els_rcv_farp(vport, elsiocb, ndlp);
5808                 break;
5809         case ELS_CMD_FAN:
5810                 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
5811                         "RCV FAN:         did:x%x/ste:x%x flg:x%x",
5812                         did, vport->port_state, ndlp->nlp_flag);
5813
5814                 phba->fc_stat.elsRcvFAN++;
5815                 lpfc_els_rcv_fan(vport, elsiocb, ndlp);
5816                 break;
5817         case ELS_CMD_PRLI:
5818                 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
5819                         "RCV PRLI:        did:x%x/ste:x%x flg:x%x",
5820                         did, vport->port_state, ndlp->nlp_flag);
5821
5822                 phba->fc_stat.elsRcvPRLI++;
5823                 if (vport->port_state < LPFC_DISC_AUTH) {
5824                         rjt_err = LSRJT_UNABLE_TPC;
5825                         break;
5826                 }
5827                 lpfc_disc_state_machine(vport, ndlp, elsiocb, NLP_EVT_RCV_PRLI);
5828                 break;
5829         case ELS_CMD_LIRR:
5830                 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
5831                         "RCV LIRR:        did:x%x/ste:x%x flg:x%x",
5832                         did, vport->port_state, ndlp->nlp_flag);
5833
5834                 phba->fc_stat.elsRcvLIRR++;
5835                 lpfc_els_rcv_lirr(vport, elsiocb, ndlp);
5836                 if (newnode)
5837                         lpfc_nlp_put(ndlp);
5838                 break;
5839         case ELS_CMD_RPS:
5840                 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
5841                         "RCV RPS:         did:x%x/ste:x%x flg:x%x",
5842                         did, vport->port_state, ndlp->nlp_flag);
5843
5844                 phba->fc_stat.elsRcvRPS++;
5845                 lpfc_els_rcv_rps(vport, elsiocb, ndlp);
5846                 if (newnode)
5847                         lpfc_nlp_put(ndlp);
5848                 break;
5849         case ELS_CMD_RPL:
5850                 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
5851                         "RCV RPL:         did:x%x/ste:x%x flg:x%x",
5852                         did, vport->port_state, ndlp->nlp_flag);
5853
5854                 phba->fc_stat.elsRcvRPL++;
5855                 lpfc_els_rcv_rpl(vport, elsiocb, ndlp);
5856                 if (newnode)
5857                         lpfc_nlp_put(ndlp);
5858                 break;
5859         case ELS_CMD_RNID:
5860                 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
5861                         "RCV RNID:        did:x%x/ste:x%x flg:x%x",
5862                         did, vport->port_state, ndlp->nlp_flag);
5863
5864                 phba->fc_stat.elsRcvRNID++;
5865                 lpfc_els_rcv_rnid(vport, elsiocb, ndlp);
5866                 if (newnode)
5867                         lpfc_nlp_put(ndlp);
5868                 break;
5869         case ELS_CMD_RRQ:
5870                 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
5871                         "RCV RRQ:         did:x%x/ste:x%x flg:x%x",
5872                         did, vport->port_state, ndlp->nlp_flag);
5873
5874                 phba->fc_stat.elsRcvRRQ++;
5875                 lpfc_els_rcv_rrq(vport, elsiocb, ndlp);
5876                 if (newnode)
5877                         lpfc_nlp_put(ndlp);
5878                 break;
5879         default:
5880                 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_UNSOL,
5881                         "RCV ELS cmd:     cmd:x%x did:x%x/ste:x%x",
5882                         cmd, did, vport->port_state);
5883
5884                 /* Unsupported ELS command, reject */
5885                 rjt_err = LSRJT_INVALID_CMD;
5886
5887                 /* Unknown ELS command <elsCmd> received from NPORT <did> */
5888                 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
5889                                  "0115 Unknown ELS command x%x "
5890                                  "received from NPORT x%x\n", cmd, did);
5891                 if (newnode)
5892                         lpfc_nlp_put(ndlp);
5893                 break;
5894         }
5895
5896         /* check if need to LS_RJT received ELS cmd */
5897         if (rjt_err) {
5898                 memset(&stat, 0, sizeof(stat));
5899                 stat.un.b.lsRjtRsnCode = rjt_err;
5900                 stat.un.b.lsRjtRsnCodeExp = LSEXP_NOTHING_MORE;
5901                 lpfc_els_rsp_reject(vport, stat.un.lsRjtError, elsiocb, ndlp,
5902                         NULL);
5903         }
5904
5905         lpfc_nlp_put(elsiocb->context1);
5906         elsiocb->context1 = NULL;
5907         return;
5908
5909 dropit:
5910         if (vport && !(vport->load_flag & FC_UNLOADING))
5911                 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
5912                         "0111 Dropping received ELS cmd "
5913                         "Data: x%x x%x x%x\n",
5914                         icmd->ulpStatus, icmd->un.ulpWord[4], icmd->ulpTimeout);
5915         phba->fc_stat.elsRcvDrop++;
5916 }
5917
5918 /**
5919  * lpfc_find_vport_by_vpid - Find a vport on a HBA through vport identifier
5920  * @phba: pointer to lpfc hba data structure.
5921  * @vpi: host virtual N_Port identifier.
5922  *
5923  * This routine finds a vport on a HBA (referred by @phba) through a
5924  * @vpi. The function walks the HBA's vport list and returns the address
5925  * of the vport with the matching @vpi.
5926  *
5927  * Return code
5928  *    NULL - No vport with the matching @vpi found
5929  *    Otherwise - Address to the vport with the matching @vpi.
5930  **/
5931 struct lpfc_vport *
5932 lpfc_find_vport_by_vpid(struct lpfc_hba *phba, uint16_t vpi)
5933 {
5934         struct lpfc_vport *vport;
5935         unsigned long flags;
5936
5937         spin_lock_irqsave(&phba->hbalock, flags);
5938         list_for_each_entry(vport, &phba->port_list, listentry) {
5939                 if (vport->vpi == vpi) {
5940                         spin_unlock_irqrestore(&phba->hbalock, flags);
5941                         return vport;
5942                 }
5943         }
5944         spin_unlock_irqrestore(&phba->hbalock, flags);
5945         return NULL;
5946 }
5947
5948 /**
5949  * lpfc_els_unsol_event - Process an unsolicited event from an els sli ring
5950  * @phba: pointer to lpfc hba data structure.
5951  * @pring: pointer to a SLI ring.
5952  * @elsiocb: pointer to lpfc els iocb data structure.
5953  *
5954  * This routine is used to process an unsolicited event received from a SLI
5955  * (Service Level Interface) ring. The actual processing of the data buffer
5956  * associated with the unsolicited event is done by invoking the routine
5957  * lpfc_els_unsol_buffer() after properly set up the iocb buffer from the
5958  * SLI ring on which the unsolicited event was received.
5959  **/
5960 void
5961 lpfc_els_unsol_event(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
5962                      struct lpfc_iocbq *elsiocb)
5963 {
5964         struct lpfc_vport *vport = phba->pport;
5965         IOCB_t *icmd = &elsiocb->iocb;
5966         dma_addr_t paddr;
5967         struct lpfc_dmabuf *bdeBuf1 = elsiocb->context2;
5968         struct lpfc_dmabuf *bdeBuf2 = elsiocb->context3;
5969
5970         elsiocb->context1 = NULL;
5971         elsiocb->context2 = NULL;
5972         elsiocb->context3 = NULL;
5973
5974         if (icmd->ulpStatus == IOSTAT_NEED_BUFFER) {
5975                 lpfc_sli_hbqbuf_add_hbqs(phba, LPFC_ELS_HBQ);
5976         } else if (icmd->ulpStatus == IOSTAT_LOCAL_REJECT &&
5977             (icmd->un.ulpWord[4] & 0xff) == IOERR_RCV_BUFFER_WAITING) {
5978                 phba->fc_stat.NoRcvBuf++;
5979                 /* Not enough posted buffers; Try posting more buffers */
5980                 if (!(phba->sli3_options & LPFC_SLI3_HBQ_ENABLED))
5981                         lpfc_post_buffer(phba, pring, 0);
5982                 return;
5983         }
5984
5985         if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
5986             (icmd->ulpCommand == CMD_IOCB_RCV_ELS64_CX ||
5987              icmd->ulpCommand == CMD_IOCB_RCV_SEQ64_CX)) {
5988                 if (icmd->unsli3.rcvsli3.vpi == 0xffff)
5989                         vport = phba->pport;
5990                 else
5991                         vport = lpfc_find_vport_by_vpid(phba,
5992                                 icmd->unsli3.rcvsli3.vpi - phba->vpi_base);
5993         }
5994         /* If there are no BDEs associated
5995          * with this IOCB, there is nothing to do.
5996          */
5997         if (icmd->ulpBdeCount == 0)
5998                 return;
5999
6000         /* type of ELS cmd is first 32bit word
6001          * in packet
6002          */
6003         if (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) {
6004                 elsiocb->context2 = bdeBuf1;
6005         } else {
6006                 paddr = getPaddr(icmd->un.cont64[0].addrHigh,
6007                                  icmd->un.cont64[0].addrLow);
6008                 elsiocb->context2 = lpfc_sli_ringpostbuf_get(phba, pring,
6009                                                              paddr);
6010         }
6011
6012         lpfc_els_unsol_buffer(phba, pring, vport, elsiocb);
6013         /*
6014          * The different unsolicited event handlers would tell us
6015          * if they are done with "mp" by setting context2 to NULL.
6016          */
6017         if (elsiocb->context2) {
6018                 lpfc_in_buf_free(phba, (struct lpfc_dmabuf *)elsiocb->context2);
6019                 elsiocb->context2 = NULL;
6020         }
6021
6022         /* RCV_ELS64_CX provide for 2 BDEs - process 2nd if included */
6023         if ((phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) &&
6024             icmd->ulpBdeCount == 2) {
6025                 elsiocb->context2 = bdeBuf2;
6026                 lpfc_els_unsol_buffer(phba, pring, vport, elsiocb);
6027                 /* free mp if we are done with it */
6028                 if (elsiocb->context2) {
6029                         lpfc_in_buf_free(phba, elsiocb->context2);
6030                         elsiocb->context2 = NULL;
6031                 }
6032         }
6033 }
6034
6035 /**
6036  * lpfc_do_scr_ns_plogi - Issue a plogi to the name server for scr
6037  * @phba: pointer to lpfc hba data structure.
6038  * @vport: pointer to a virtual N_Port data structure.
6039  *
6040  * This routine issues a Port Login (PLOGI) to the Name Server with
6041  * State Change Request (SCR) for a @vport. This routine will create an
6042  * ndlp for the Name Server associated to the @vport if such node does
6043  * not already exist. The PLOGI to Name Server is issued by invoking the
6044  * lpfc_issue_els_plogi() routine. If Fabric-Device Management Interface
6045  * (FDMI) is configured to the @vport, a FDMI node will be created and
6046  * the PLOGI to FDMI is issued by invoking lpfc_issue_els_plogi() routine.
6047  **/
6048 void
6049 lpfc_do_scr_ns_plogi(struct lpfc_hba *phba, struct lpfc_vport *vport)
6050 {
6051         struct lpfc_nodelist *ndlp, *ndlp_fdmi;
6052
6053         ndlp = lpfc_findnode_did(vport, NameServer_DID);
6054         if (!ndlp) {
6055                 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
6056                 if (!ndlp) {
6057                         if (phba->fc_topology == TOPOLOGY_LOOP) {
6058                                 lpfc_disc_start(vport);
6059                                 return;
6060                         }
6061                         lpfc_vport_set_state(vport, FC_VPORT_FAILED);
6062                         lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
6063                                          "0251 NameServer login: no memory\n");
6064                         return;
6065                 }
6066                 lpfc_nlp_init(vport, ndlp, NameServer_DID);
6067         } else if (!NLP_CHK_NODE_ACT(ndlp)) {
6068                 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
6069                 if (!ndlp) {
6070                         if (phba->fc_topology == TOPOLOGY_LOOP) {
6071                                 lpfc_disc_start(vport);
6072                                 return;
6073                         }
6074                         lpfc_vport_set_state(vport, FC_VPORT_FAILED);
6075                         lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
6076                                         "0348 NameServer login: node freed\n");
6077                         return;
6078                 }
6079         }
6080         ndlp->nlp_type |= NLP_FABRIC;
6081
6082         lpfc_nlp_set_state(vport, ndlp, NLP_STE_PLOGI_ISSUE);
6083
6084         if (lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0)) {
6085                 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
6086                 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
6087                                  "0252 Cannot issue NameServer login\n");
6088                 return;
6089         }
6090
6091         if (vport->cfg_fdmi_on) {
6092                 ndlp_fdmi = mempool_alloc(phba->nlp_mem_pool,
6093                                           GFP_KERNEL);
6094                 if (ndlp_fdmi) {
6095                         lpfc_nlp_init(vport, ndlp_fdmi, FDMI_DID);
6096                         ndlp_fdmi->nlp_type |= NLP_FABRIC;
6097                         lpfc_nlp_set_state(vport, ndlp_fdmi,
6098                                 NLP_STE_PLOGI_ISSUE);
6099                         lpfc_issue_els_plogi(vport, ndlp_fdmi->nlp_DID,
6100                                              0);
6101                 }
6102         }
6103         return;
6104 }
6105
6106 /**
6107  * lpfc_cmpl_reg_new_vport - Completion callback function to register new vport
6108  * @phba: pointer to lpfc hba data structure.
6109  * @pmb: pointer to the driver internal queue element for mailbox command.
6110  *
6111  * This routine is the completion callback function to register new vport
6112  * mailbox command. If the new vport mailbox command completes successfully,
6113  * the fabric registration login shall be performed on physical port (the
6114  * new vport created is actually a physical port, with VPI 0) or the port
6115  * login to Name Server for State Change Request (SCR) will be performed
6116  * on virtual port (real virtual port, with VPI greater than 0).
6117  **/
6118 static void
6119 lpfc_cmpl_reg_new_vport(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
6120 {
6121         struct lpfc_vport *vport = pmb->vport;
6122         struct Scsi_Host  *shost = lpfc_shost_from_vport(vport);
6123         struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) pmb->context2;
6124         MAILBOX_t *mb = &pmb->u.mb;
6125         int rc;
6126
6127         spin_lock_irq(shost->host_lock);
6128         vport->fc_flag &= ~FC_VPORT_NEEDS_REG_VPI;
6129         spin_unlock_irq(shost->host_lock);
6130
6131         if (mb->mbxStatus) {
6132                 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
6133                                 "0915 Register VPI failed : Status: x%x"
6134                                 " upd bit: x%x \n", mb->mbxStatus,
6135                                  mb->un.varRegVpi.upd);
6136                 if (phba->sli_rev == LPFC_SLI_REV4 &&
6137                         mb->un.varRegVpi.upd)
6138                         goto mbox_err_exit ;
6139
6140                 switch (mb->mbxStatus) {
6141                 case 0x11:      /* unsupported feature */
6142                 case 0x9603:    /* max_vpi exceeded */
6143                 case 0x9602:    /* Link event since CLEAR_LA */
6144                         /* giving up on vport registration */
6145                         lpfc_vport_set_state(vport, FC_VPORT_FAILED);
6146                         spin_lock_irq(shost->host_lock);
6147                         vport->fc_flag &= ~(FC_FABRIC | FC_PUBLIC_LOOP);
6148                         spin_unlock_irq(shost->host_lock);
6149                         lpfc_can_disctmo(vport);
6150                         break;
6151                 /* If reg_vpi fail with invalid VPI status, re-init VPI */
6152                 case 0x20:
6153                         spin_lock_irq(shost->host_lock);
6154                         vport->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
6155                         spin_unlock_irq(shost->host_lock);
6156                         lpfc_init_vpi(phba, pmb, vport->vpi);
6157                         pmb->vport = vport;
6158                         pmb->mbox_cmpl = lpfc_init_vpi_cmpl;
6159                         rc = lpfc_sli_issue_mbox(phba, pmb,
6160                                 MBX_NOWAIT);
6161                         if (rc == MBX_NOT_FINISHED) {
6162                                 lpfc_printf_vlog(vport,
6163                                         KERN_ERR, LOG_MBOX,
6164                                         "2732 Failed to issue INIT_VPI"
6165                                         " mailbox command\n");
6166                         } else {
6167                                 lpfc_nlp_put(ndlp);
6168                                 return;
6169                         }
6170
6171                 default:
6172                         /* Try to recover from this error */
6173                         lpfc_mbx_unreg_vpi(vport);
6174                         spin_lock_irq(shost->host_lock);
6175                         vport->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
6176                         spin_unlock_irq(shost->host_lock);
6177                         if (vport->port_type == LPFC_PHYSICAL_PORT
6178                                 && !(vport->fc_flag & FC_LOGO_RCVD_DID_CHNG))
6179                                 lpfc_initial_flogi(vport);
6180                         else
6181                                 lpfc_initial_fdisc(vport);
6182                         break;
6183                 }
6184         } else {
6185                 spin_lock_irq(shost->host_lock);
6186                 vport->vpi_state |= LPFC_VPI_REGISTERED;
6187                 spin_unlock_irq(shost->host_lock);
6188                 if (vport == phba->pport) {
6189                         if (phba->sli_rev < LPFC_SLI_REV4)
6190                                 lpfc_issue_fabric_reglogin(vport);
6191                         else {
6192                                 /*
6193                                  * If the physical port is instantiated using
6194                                  * FDISC, do not start vport discovery.
6195                                  */
6196                                 if (vport->port_state != LPFC_FDISC)
6197                                         lpfc_start_fdiscs(phba);
6198                                 lpfc_do_scr_ns_plogi(phba, vport);
6199                         }
6200                 } else
6201                         lpfc_do_scr_ns_plogi(phba, vport);
6202         }
6203 mbox_err_exit:
6204         /* Now, we decrement the ndlp reference count held for this
6205          * callback function
6206          */
6207         lpfc_nlp_put(ndlp);
6208
6209         mempool_free(pmb, phba->mbox_mem_pool);
6210         return;
6211 }
6212
6213 /**
6214  * lpfc_register_new_vport - Register a new vport with a HBA
6215  * @phba: pointer to lpfc hba data structure.
6216  * @vport: pointer to a host virtual N_Port data structure.
6217  * @ndlp: pointer to a node-list data structure.
6218  *
6219  * This routine registers the @vport as a new virtual port with a HBA.
6220  * It is done through a registering vpi mailbox command.
6221  **/
6222 void
6223 lpfc_register_new_vport(struct lpfc_hba *phba, struct lpfc_vport *vport,
6224                         struct lpfc_nodelist *ndlp)
6225 {
6226         struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
6227         LPFC_MBOXQ_t *mbox;
6228
6229         mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
6230         if (mbox) {
6231                 lpfc_reg_vpi(vport, mbox);
6232                 mbox->vport = vport;
6233                 mbox->context2 = lpfc_nlp_get(ndlp);
6234                 mbox->mbox_cmpl = lpfc_cmpl_reg_new_vport;
6235                 if (lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT)
6236                     == MBX_NOT_FINISHED) {
6237                         /* mailbox command not success, decrement ndlp
6238                          * reference count for this command
6239                          */
6240                         lpfc_nlp_put(ndlp);
6241                         mempool_free(mbox, phba->mbox_mem_pool);
6242
6243                         lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
6244                                 "0253 Register VPI: Can't send mbox\n");
6245                         goto mbox_err_exit;
6246                 }
6247         } else {
6248                 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
6249                                  "0254 Register VPI: no memory\n");
6250                 goto mbox_err_exit;
6251         }
6252         return;
6253
6254 mbox_err_exit:
6255         lpfc_vport_set_state(vport, FC_VPORT_FAILED);
6256         spin_lock_irq(shost->host_lock);
6257         vport->fc_flag &= ~FC_VPORT_NEEDS_REG_VPI;
6258         spin_unlock_irq(shost->host_lock);
6259         return;
6260 }
6261
6262 /**
6263  * lpfc_cancel_all_vport_retry_delay_timer - Cancel all vport retry delay timer
6264  * @phba: pointer to lpfc hba data structure.
6265  *
6266  * This routine cancels the retry delay timers to all the vports.
6267  **/
6268 void
6269 lpfc_cancel_all_vport_retry_delay_timer(struct lpfc_hba *phba)
6270 {
6271         struct lpfc_vport **vports;
6272         struct lpfc_nodelist *ndlp;
6273         uint32_t link_state;
6274         int i;
6275
6276         /* Treat this failure as linkdown for all vports */
6277         link_state = phba->link_state;
6278         lpfc_linkdown(phba);
6279         phba->link_state = link_state;
6280
6281         vports = lpfc_create_vport_work_array(phba);
6282
6283         if (vports) {
6284                 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
6285                         ndlp = lpfc_findnode_did(vports[i], Fabric_DID);
6286                         if (ndlp)
6287                                 lpfc_cancel_retry_delay_tmo(vports[i], ndlp);
6288                         lpfc_els_flush_cmd(vports[i]);
6289                 }
6290                 lpfc_destroy_vport_work_array(phba, vports);
6291         }
6292 }
6293
6294 /**
6295  * lpfc_retry_pport_discovery - Start timer to retry FLOGI.
6296  * @phba: pointer to lpfc hba data structure.
6297  *
6298  * This routine abort all pending discovery commands and
6299  * start a timer to retry FLOGI for the physical port
6300  * discovery.
6301  **/
6302 void
6303 lpfc_retry_pport_discovery(struct lpfc_hba *phba)
6304 {
6305         struct lpfc_nodelist *ndlp;
6306         struct Scsi_Host  *shost;
6307
6308         /* Cancel the all vports retry delay retry timers */
6309         lpfc_cancel_all_vport_retry_delay_timer(phba);
6310
6311         /* If fabric require FLOGI, then re-instantiate physical login */
6312         ndlp = lpfc_findnode_did(phba->pport, Fabric_DID);
6313         if (!ndlp)
6314                 return;
6315
6316         shost = lpfc_shost_from_vport(phba->pport);
6317         mod_timer(&ndlp->nlp_delayfunc, jiffies + HZ);
6318         spin_lock_irq(shost->host_lock);
6319         ndlp->nlp_flag |= NLP_DELAY_TMO;
6320         spin_unlock_irq(shost->host_lock);
6321         ndlp->nlp_last_elscmd = ELS_CMD_FLOGI;
6322         phba->pport->port_state = LPFC_FLOGI;
6323         return;
6324 }
6325
6326 /**
6327  * lpfc_fabric_login_reqd - Check if FLOGI required.
6328  * @phba: pointer to lpfc hba data structure.
6329  * @cmdiocb: pointer to FDISC command iocb.
6330  * @rspiocb: pointer to FDISC response iocb.
6331  *
6332  * This routine checks if a FLOGI is reguired for FDISC
6333  * to succeed.
6334  **/
6335 static int
6336 lpfc_fabric_login_reqd(struct lpfc_hba *phba,
6337                 struct lpfc_iocbq *cmdiocb,
6338                 struct lpfc_iocbq *rspiocb)
6339 {
6340
6341         if ((rspiocb->iocb.ulpStatus != IOSTAT_FABRIC_RJT) ||
6342                 (rspiocb->iocb.un.ulpWord[4] != RJT_LOGIN_REQUIRED))
6343                 return 0;
6344         else
6345                 return 1;
6346 }
6347
6348 /**
6349  * lpfc_cmpl_els_fdisc - Completion function for fdisc iocb command
6350  * @phba: pointer to lpfc hba data structure.
6351  * @cmdiocb: pointer to lpfc command iocb data structure.
6352  * @rspiocb: pointer to lpfc response iocb data structure.
6353  *
6354  * This routine is the completion callback function to a Fabric Discover
6355  * (FDISC) ELS command. Since all the FDISC ELS commands are issued
6356  * single threaded, each FDISC completion callback function will reset
6357  * the discovery timer for all vports such that the timers will not get
6358  * unnecessary timeout. The function checks the FDISC IOCB status. If error
6359  * detected, the vport will be set to FC_VPORT_FAILED state. Otherwise,the
6360  * vport will set to FC_VPORT_ACTIVE state. It then checks whether the DID
6361  * assigned to the vport has been changed with the completion of the FDISC
6362  * command. If so, both RPI (Remote Port Index) and VPI (Virtual Port Index)
6363  * are unregistered from the HBA, and then the lpfc_register_new_vport()
6364  * routine is invoked to register new vport with the HBA. Otherwise, the
6365  * lpfc_do_scr_ns_plogi() routine is invoked to issue a PLOGI to the Name
6366  * Server for State Change Request (SCR).
6367  **/
6368 static void
6369 lpfc_cmpl_els_fdisc(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
6370                     struct lpfc_iocbq *rspiocb)
6371 {
6372         struct lpfc_vport *vport = cmdiocb->vport;
6373         struct Scsi_Host  *shost = lpfc_shost_from_vport(vport);
6374         struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) cmdiocb->context1;
6375         struct lpfc_nodelist *np;
6376         struct lpfc_nodelist *next_np;
6377         IOCB_t *irsp = &rspiocb->iocb;
6378         struct lpfc_iocbq *piocb;
6379
6380         lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
6381                          "0123 FDISC completes. x%x/x%x prevDID: x%x\n",
6382                          irsp->ulpStatus, irsp->un.ulpWord[4],
6383                          vport->fc_prevDID);
6384         /* Since all FDISCs are being single threaded, we
6385          * must reset the discovery timer for ALL vports
6386          * waiting to send FDISC when one completes.
6387          */
6388         list_for_each_entry(piocb, &phba->fabric_iocb_list, list) {
6389                 lpfc_set_disctmo(piocb->vport);
6390         }
6391
6392         lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
6393                 "FDISC cmpl:      status:x%x/x%x prevdid:x%x",
6394                 irsp->ulpStatus, irsp->un.ulpWord[4], vport->fc_prevDID);
6395
6396         if (irsp->ulpStatus) {
6397
6398                 if (lpfc_fabric_login_reqd(phba, cmdiocb, rspiocb)) {
6399                         lpfc_retry_pport_discovery(phba);
6400                         goto out;
6401                 }
6402
6403                 /* Check for retry */
6404                 if (lpfc_els_retry(phba, cmdiocb, rspiocb))
6405                         goto out;
6406                 /* FDISC failed */
6407                 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
6408                                  "0126 FDISC failed. (%d/%d)\n",
6409                                  irsp->ulpStatus, irsp->un.ulpWord[4]);
6410                 goto fdisc_failed;
6411         }
6412         spin_lock_irq(shost->host_lock);
6413         vport->fc_flag &= ~FC_VPORT_CVL_RCVD;
6414         vport->fc_flag &= ~FC_VPORT_LOGO_RCVD;
6415         vport->fc_flag |= FC_FABRIC;
6416         if (vport->phba->fc_topology == TOPOLOGY_LOOP)
6417                 vport->fc_flag |=  FC_PUBLIC_LOOP;
6418         spin_unlock_irq(shost->host_lock);
6419
6420         vport->fc_myDID = irsp->un.ulpWord[4] & Mask_DID;
6421         lpfc_vport_set_state(vport, FC_VPORT_ACTIVE);
6422         if ((vport->fc_prevDID != vport->fc_myDID) &&
6423                 !(vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)) {
6424                 /* If our NportID changed, we need to ensure all
6425                  * remaining NPORTs get unreg_login'ed so we can
6426                  * issue unreg_vpi.
6427                  */
6428                 list_for_each_entry_safe(np, next_np,
6429                         &vport->fc_nodes, nlp_listp) {
6430                         if (!NLP_CHK_NODE_ACT(ndlp) ||
6431                             (np->nlp_state != NLP_STE_NPR_NODE) ||
6432                             !(np->nlp_flag & NLP_NPR_ADISC))
6433                                 continue;
6434                         spin_lock_irq(shost->host_lock);
6435                         np->nlp_flag &= ~NLP_NPR_ADISC;
6436                         spin_unlock_irq(shost->host_lock);
6437                         lpfc_unreg_rpi(vport, np);
6438                 }
6439                 lpfc_cleanup_pending_mbox(vport);
6440                 lpfc_mbx_unreg_vpi(vport);
6441                 spin_lock_irq(shost->host_lock);
6442                 vport->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
6443                 if (phba->sli_rev == LPFC_SLI_REV4)
6444                         vport->fc_flag |= FC_VPORT_NEEDS_INIT_VPI;
6445                 else
6446                         vport->fc_flag |= FC_LOGO_RCVD_DID_CHNG;
6447                 spin_unlock_irq(shost->host_lock);
6448         } else if ((phba->sli_rev == LPFC_SLI_REV4) &&
6449                 !(vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)) {
6450                 /*
6451                  * Driver needs to re-reg VPI in order for f/w
6452                  * to update the MAC address.
6453                  */
6454                 lpfc_register_new_vport(phba, vport, ndlp);
6455                 return ;
6456         }
6457
6458         if (vport->fc_flag & FC_VPORT_NEEDS_INIT_VPI)
6459                 lpfc_issue_init_vpi(vport);
6460         else if (vport->fc_flag & FC_VPORT_NEEDS_REG_VPI)
6461                 lpfc_register_new_vport(phba, vport, ndlp);
6462         else
6463                 lpfc_do_scr_ns_plogi(phba, vport);
6464         goto out;
6465 fdisc_failed:
6466         lpfc_vport_set_state(vport, FC_VPORT_FAILED);
6467         /* Cancel discovery timer */
6468         lpfc_can_disctmo(vport);
6469         lpfc_nlp_put(ndlp);
6470 out:
6471         lpfc_els_free_iocb(phba, cmdiocb);
6472 }
6473
6474 /**
6475  * lpfc_issue_els_fdisc - Issue a fdisc iocb command
6476  * @vport: pointer to a virtual N_Port data structure.
6477  * @ndlp: pointer to a node-list data structure.
6478  * @retry: number of retries to the command IOCB.
6479  *
6480  * This routine prepares and issues a Fabric Discover (FDISC) IOCB to
6481  * a remote node (@ndlp) off a @vport. It uses the lpfc_issue_fabric_iocb()
6482  * routine to issue the IOCB, which makes sure only one outstanding fabric
6483  * IOCB will be sent off HBA at any given time.
6484  *
6485  * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
6486  * will be incremented by 1 for holding the ndlp and the reference to ndlp
6487  * will be stored into the context1 field of the IOCB for the completion
6488  * callback function to the FDISC ELS command.
6489  *
6490  * Return code
6491  *   0 - Successfully issued fdisc iocb command
6492  *   1 - Failed to issue fdisc iocb command
6493  **/
6494 static int
6495 lpfc_issue_els_fdisc(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
6496                      uint8_t retry)
6497 {
6498         struct lpfc_hba *phba = vport->phba;
6499         IOCB_t *icmd;
6500         struct lpfc_iocbq *elsiocb;
6501         struct serv_parm *sp;
6502         uint8_t *pcmd;
6503         uint16_t cmdsize;
6504         int did = ndlp->nlp_DID;
6505         int rc;
6506
6507         vport->port_state = LPFC_FDISC;
6508         cmdsize = (sizeof(uint32_t) + sizeof(struct serv_parm));
6509         elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, retry, ndlp, did,
6510                                      ELS_CMD_FDISC);
6511         if (!elsiocb) {
6512                 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
6513                 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
6514                                  "0255 Issue FDISC: no IOCB\n");
6515                 return 1;
6516         }
6517
6518         icmd = &elsiocb->iocb;
6519         icmd->un.elsreq64.myID = 0;
6520         icmd->un.elsreq64.fl = 1;
6521
6522         if  (phba->sli_rev == LPFC_SLI_REV4) {
6523                 /* FDISC needs to be 1 for WQE VPI */
6524                 elsiocb->iocb.ulpCt_h = (SLI4_CT_VPI >> 1) & 1;
6525                 elsiocb->iocb.ulpCt_l = SLI4_CT_VPI & 1 ;
6526                 /* Set the ulpContext to the vpi */
6527                 elsiocb->iocb.ulpContext = vport->vpi + phba->vpi_base;
6528         } else {
6529                 /* For FDISC, Let FDISC rsp set the NPortID for this VPI */
6530                 icmd->ulpCt_h = 1;
6531                 icmd->ulpCt_l = 0;
6532         }
6533
6534         pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
6535         *((uint32_t *) (pcmd)) = ELS_CMD_FDISC;
6536         pcmd += sizeof(uint32_t); /* CSP Word 1 */
6537         memcpy(pcmd, &vport->phba->pport->fc_sparam, sizeof(struct serv_parm));
6538         sp = (struct serv_parm *) pcmd;
6539         /* Setup CSPs accordingly for Fabric */
6540         sp->cmn.e_d_tov = 0;
6541         sp->cmn.w2.r_a_tov = 0;
6542         sp->cls1.classValid = 0;
6543         sp->cls2.seqDelivery = 1;
6544         sp->cls3.seqDelivery = 1;
6545
6546         pcmd += sizeof(uint32_t); /* CSP Word 2 */
6547         pcmd += sizeof(uint32_t); /* CSP Word 3 */
6548         pcmd += sizeof(uint32_t); /* CSP Word 4 */
6549         pcmd += sizeof(uint32_t); /* Port Name */
6550         memcpy(pcmd, &vport->fc_portname, 8);
6551         pcmd += sizeof(uint32_t); /* Node Name */
6552         pcmd += sizeof(uint32_t); /* Node Name */
6553         memcpy(pcmd, &vport->fc_nodename, 8);
6554
6555         lpfc_set_disctmo(vport);
6556
6557         phba->fc_stat.elsXmitFDISC++;
6558         elsiocb->iocb_cmpl = lpfc_cmpl_els_fdisc;
6559
6560         lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
6561                 "Issue FDISC:     did:x%x",
6562                 did, 0, 0);
6563
6564         rc = lpfc_issue_fabric_iocb(phba, elsiocb);
6565         if (rc == IOCB_ERROR) {
6566                 lpfc_els_free_iocb(phba, elsiocb);
6567                 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
6568                 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
6569                                  "0256 Issue FDISC: Cannot send IOCB\n");
6570                 return 1;
6571         }
6572         lpfc_vport_set_state(vport, FC_VPORT_INITIALIZING);
6573         return 0;
6574 }
6575
6576 /**
6577  * lpfc_cmpl_els_npiv_logo - Completion function with vport logo
6578  * @phba: pointer to lpfc hba data structure.
6579  * @cmdiocb: pointer to lpfc command iocb data structure.
6580  * @rspiocb: pointer to lpfc response iocb data structure.
6581  *
6582  * This routine is the completion callback function to the issuing of a LOGO
6583  * ELS command off a vport. It frees the command IOCB and then decrement the
6584  * reference count held on ndlp for this completion function, indicating that
6585  * the reference to the ndlp is no long needed. Note that the
6586  * lpfc_els_free_iocb() routine decrements the ndlp reference held for this
6587  * callback function and an additional explicit ndlp reference decrementation
6588  * will trigger the actual release of the ndlp.
6589  **/
6590 static void
6591 lpfc_cmpl_els_npiv_logo(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
6592                         struct lpfc_iocbq *rspiocb)
6593 {
6594         struct lpfc_vport *vport = cmdiocb->vport;
6595         IOCB_t *irsp;
6596         struct lpfc_nodelist *ndlp;
6597         ndlp = (struct lpfc_nodelist *)cmdiocb->context1;
6598
6599         irsp = &rspiocb->iocb;
6600         lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
6601                 "LOGO npiv cmpl:  status:x%x/x%x did:x%x",
6602                 irsp->ulpStatus, irsp->un.ulpWord[4], irsp->un.rcvels.remoteID);
6603
6604         lpfc_els_free_iocb(phba, cmdiocb);
6605         vport->unreg_vpi_cmpl = VPORT_ERROR;
6606
6607         /* Trigger the release of the ndlp after logo */
6608         lpfc_nlp_put(ndlp);
6609 }
6610
6611 /**
6612  * lpfc_issue_els_npiv_logo - Issue a logo off a vport
6613  * @vport: pointer to a virtual N_Port data structure.
6614  * @ndlp: pointer to a node-list data structure.
6615  *
6616  * This routine issues a LOGO ELS command to an @ndlp off a @vport.
6617  *
6618  * Note that, in lpfc_prep_els_iocb() routine, the reference count of ndlp
6619  * will be incremented by 1 for holding the ndlp and the reference to ndlp
6620  * will be stored into the context1 field of the IOCB for the completion
6621  * callback function to the LOGO ELS command.
6622  *
6623  * Return codes
6624  *   0 - Successfully issued logo off the @vport
6625  *   1 - Failed to issue logo off the @vport
6626  **/
6627 int
6628 lpfc_issue_els_npiv_logo(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
6629 {
6630         struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
6631         struct lpfc_hba  *phba = vport->phba;
6632         IOCB_t *icmd;
6633         struct lpfc_iocbq *elsiocb;
6634         uint8_t *pcmd;
6635         uint16_t cmdsize;
6636
6637         cmdsize = 2 * sizeof(uint32_t) + sizeof(struct lpfc_name);
6638         elsiocb = lpfc_prep_els_iocb(vport, 1, cmdsize, 0, ndlp, ndlp->nlp_DID,
6639                                      ELS_CMD_LOGO);
6640         if (!elsiocb)
6641                 return 1;
6642
6643         icmd = &elsiocb->iocb;
6644         pcmd = (uint8_t *) (((struct lpfc_dmabuf *) elsiocb->context2)->virt);
6645         *((uint32_t *) (pcmd)) = ELS_CMD_LOGO;
6646         pcmd += sizeof(uint32_t);
6647
6648         /* Fill in LOGO payload */
6649         *((uint32_t *) (pcmd)) = be32_to_cpu(vport->fc_myDID);
6650         pcmd += sizeof(uint32_t);
6651         memcpy(pcmd, &vport->fc_portname, sizeof(struct lpfc_name));
6652
6653         lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
6654                 "Issue LOGO npiv  did:x%x flg:x%x",
6655                 ndlp->nlp_DID, ndlp->nlp_flag, 0);
6656
6657         elsiocb->iocb_cmpl = lpfc_cmpl_els_npiv_logo;
6658         spin_lock_irq(shost->host_lock);
6659         ndlp->nlp_flag |= NLP_LOGO_SND;
6660         spin_unlock_irq(shost->host_lock);
6661         if (lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, elsiocb, 0) ==
6662             IOCB_ERROR) {
6663                 spin_lock_irq(shost->host_lock);
6664                 ndlp->nlp_flag &= ~NLP_LOGO_SND;
6665                 spin_unlock_irq(shost->host_lock);
6666                 lpfc_els_free_iocb(phba, elsiocb);
6667                 return 1;
6668         }
6669         return 0;
6670 }
6671
6672 /**
6673  * lpfc_fabric_block_timeout - Handler function to the fabric block timer
6674  * @ptr: holder for the timer function associated data.
6675  *
6676  * This routine is invoked by the fabric iocb block timer after
6677  * timeout. It posts the fabric iocb block timeout event by setting the
6678  * WORKER_FABRIC_BLOCK_TMO bit to work port event bitmap and then invokes
6679  * lpfc_worker_wake_up() routine to wake up the worker thread. It is for
6680  * the worker thread to invoke the lpfc_unblock_fabric_iocbs() on the
6681  * posted event WORKER_FABRIC_BLOCK_TMO.
6682  **/
6683 void
6684 lpfc_fabric_block_timeout(unsigned long ptr)
6685 {
6686         struct lpfc_hba  *phba = (struct lpfc_hba *) ptr;
6687         unsigned long iflags;
6688         uint32_t tmo_posted;
6689
6690         spin_lock_irqsave(&phba->pport->work_port_lock, iflags);
6691         tmo_posted = phba->pport->work_port_events & WORKER_FABRIC_BLOCK_TMO;
6692         if (!tmo_posted)
6693                 phba->pport->work_port_events |= WORKER_FABRIC_BLOCK_TMO;
6694         spin_unlock_irqrestore(&phba->pport->work_port_lock, iflags);
6695
6696         if (!tmo_posted)
6697                 lpfc_worker_wake_up(phba);
6698         return;
6699 }
6700
6701 /**
6702  * lpfc_resume_fabric_iocbs - Issue a fabric iocb from driver internal list
6703  * @phba: pointer to lpfc hba data structure.
6704  *
6705  * This routine issues one fabric iocb from the driver internal list to
6706  * the HBA. It first checks whether it's ready to issue one fabric iocb to
6707  * the HBA (whether there is no outstanding fabric iocb). If so, it shall
6708  * remove one pending fabric iocb from the driver internal list and invokes
6709  * lpfc_sli_issue_iocb() routine to send the fabric iocb to the HBA.
6710  **/
6711 static void
6712 lpfc_resume_fabric_iocbs(struct lpfc_hba *phba)
6713 {
6714         struct lpfc_iocbq *iocb;
6715         unsigned long iflags;
6716         int ret;
6717         IOCB_t *cmd;
6718
6719 repeat:
6720         iocb = NULL;
6721         spin_lock_irqsave(&phba->hbalock, iflags);
6722         /* Post any pending iocb to the SLI layer */
6723         if (atomic_read(&phba->fabric_iocb_count) == 0) {
6724                 list_remove_head(&phba->fabric_iocb_list, iocb, typeof(*iocb),
6725                                  list);
6726                 if (iocb)
6727                         /* Increment fabric iocb count to hold the position */
6728                         atomic_inc(&phba->fabric_iocb_count);
6729         }
6730         spin_unlock_irqrestore(&phba->hbalock, iflags);
6731         if (iocb) {
6732                 iocb->fabric_iocb_cmpl = iocb->iocb_cmpl;
6733                 iocb->iocb_cmpl = lpfc_cmpl_fabric_iocb;
6734                 iocb->iocb_flag |= LPFC_IO_FABRIC;
6735
6736                 lpfc_debugfs_disc_trc(iocb->vport, LPFC_DISC_TRC_ELS_CMD,
6737                         "Fabric sched1:   ste:x%x",
6738                         iocb->vport->port_state, 0, 0);
6739
6740                 ret = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, iocb, 0);
6741
6742                 if (ret == IOCB_ERROR) {
6743                         iocb->iocb_cmpl = iocb->fabric_iocb_cmpl;
6744                         iocb->fabric_iocb_cmpl = NULL;
6745                         iocb->iocb_flag &= ~LPFC_IO_FABRIC;
6746                         cmd = &iocb->iocb;
6747                         cmd->ulpStatus = IOSTAT_LOCAL_REJECT;
6748                         cmd->un.ulpWord[4] = IOERR_SLI_ABORTED;
6749                         iocb->iocb_cmpl(phba, iocb, iocb);
6750
6751                         atomic_dec(&phba->fabric_iocb_count);
6752                         goto repeat;
6753                 }
6754         }
6755
6756         return;
6757 }
6758
6759 /**
6760  * lpfc_unblock_fabric_iocbs - Unblock issuing fabric iocb command
6761  * @phba: pointer to lpfc hba data structure.
6762  *
6763  * This routine unblocks the  issuing fabric iocb command. The function
6764  * will clear the fabric iocb block bit and then invoke the routine
6765  * lpfc_resume_fabric_iocbs() to issue one of the pending fabric iocb
6766  * from the driver internal fabric iocb list.
6767  **/
6768 void
6769 lpfc_unblock_fabric_iocbs(struct lpfc_hba *phba)
6770 {
6771         clear_bit(FABRIC_COMANDS_BLOCKED, &phba->bit_flags);
6772
6773         lpfc_resume_fabric_iocbs(phba);
6774         return;
6775 }
6776
6777 /**
6778  * lpfc_block_fabric_iocbs - Block issuing fabric iocb command
6779  * @phba: pointer to lpfc hba data structure.
6780  *
6781  * This routine blocks the issuing fabric iocb for a specified amount of
6782  * time (currently 100 ms). This is done by set the fabric iocb block bit
6783  * and set up a timeout timer for 100ms. When the block bit is set, no more
6784  * fabric iocb will be issued out of the HBA.
6785  **/
6786 static void
6787 lpfc_block_fabric_iocbs(struct lpfc_hba *phba)
6788 {
6789         int blocked;
6790
6791         blocked = test_and_set_bit(FABRIC_COMANDS_BLOCKED, &phba->bit_flags);
6792         /* Start a timer to unblock fabric iocbs after 100ms */
6793         if (!blocked)
6794                 mod_timer(&phba->fabric_block_timer, jiffies + HZ/10 );
6795
6796         return;
6797 }
6798
6799 /**
6800  * lpfc_cmpl_fabric_iocb - Completion callback function for fabric iocb
6801  * @phba: pointer to lpfc hba data structure.
6802  * @cmdiocb: pointer to lpfc command iocb data structure.
6803  * @rspiocb: pointer to lpfc response iocb data structure.
6804  *
6805  * This routine is the callback function that is put to the fabric iocb's
6806  * callback function pointer (iocb->iocb_cmpl). The original iocb's callback
6807  * function pointer has been stored in iocb->fabric_iocb_cmpl. This callback
6808  * function first restores and invokes the original iocb's callback function
6809  * and then invokes the lpfc_resume_fabric_iocbs() routine to issue the next
6810  * fabric bound iocb from the driver internal fabric iocb list onto the wire.
6811  **/
6812 static void
6813 lpfc_cmpl_fabric_iocb(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
6814         struct lpfc_iocbq *rspiocb)
6815 {
6816         struct ls_rjt stat;
6817
6818         if ((cmdiocb->iocb_flag & LPFC_IO_FABRIC) != LPFC_IO_FABRIC)
6819                 BUG();
6820
6821         switch (rspiocb->iocb.ulpStatus) {
6822                 case IOSTAT_NPORT_RJT:
6823                 case IOSTAT_FABRIC_RJT:
6824                         if (rspiocb->iocb.un.ulpWord[4] & RJT_UNAVAIL_TEMP) {
6825                                 lpfc_block_fabric_iocbs(phba);
6826                         }
6827                         break;
6828
6829                 case IOSTAT_NPORT_BSY:
6830                 case IOSTAT_FABRIC_BSY:
6831                         lpfc_block_fabric_iocbs(phba);
6832                         break;
6833
6834                 case IOSTAT_LS_RJT:
6835                         stat.un.lsRjtError =
6836                                 be32_to_cpu(rspiocb->iocb.un.ulpWord[4]);
6837                         if ((stat.un.b.lsRjtRsnCode == LSRJT_UNABLE_TPC) ||
6838                                 (stat.un.b.lsRjtRsnCode == LSRJT_LOGICAL_BSY))
6839                                 lpfc_block_fabric_iocbs(phba);
6840                         break;
6841         }
6842
6843         if (atomic_read(&phba->fabric_iocb_count) == 0)
6844                 BUG();
6845
6846         cmdiocb->iocb_cmpl = cmdiocb->fabric_iocb_cmpl;
6847         cmdiocb->fabric_iocb_cmpl = NULL;
6848         cmdiocb->iocb_flag &= ~LPFC_IO_FABRIC;
6849         cmdiocb->iocb_cmpl(phba, cmdiocb, rspiocb);
6850
6851         atomic_dec(&phba->fabric_iocb_count);
6852         if (!test_bit(FABRIC_COMANDS_BLOCKED, &phba->bit_flags)) {
6853                 /* Post any pending iocbs to HBA */
6854                 lpfc_resume_fabric_iocbs(phba);
6855         }
6856 }
6857
6858 /**
6859  * lpfc_issue_fabric_iocb - Issue a fabric iocb command
6860  * @phba: pointer to lpfc hba data structure.
6861  * @iocb: pointer to lpfc command iocb data structure.
6862  *
6863  * This routine is used as the top-level API for issuing a fabric iocb command
6864  * such as FLOGI and FDISC. To accommodate certain switch fabric, this driver
6865  * function makes sure that only one fabric bound iocb will be outstanding at
6866  * any given time. As such, this function will first check to see whether there
6867  * is already an outstanding fabric iocb on the wire. If so, it will put the
6868  * newly issued iocb onto the driver internal fabric iocb list, waiting to be
6869  * issued later. Otherwise, it will issue the iocb on the wire and update the
6870  * fabric iocb count it indicate that there is one fabric iocb on the wire.
6871  *
6872  * Note, this implementation has a potential sending out fabric IOCBs out of
6873  * order. The problem is caused by the construction of the "ready" boolen does
6874  * not include the condition that the internal fabric IOCB list is empty. As
6875  * such, it is possible a fabric IOCB issued by this routine might be "jump"
6876  * ahead of the fabric IOCBs in the internal list.
6877  *
6878  * Return code
6879  *   IOCB_SUCCESS - either fabric iocb put on the list or issued successfully
6880  *   IOCB_ERROR - failed to issue fabric iocb
6881  **/
6882 static int
6883 lpfc_issue_fabric_iocb(struct lpfc_hba *phba, struct lpfc_iocbq *iocb)
6884 {
6885         unsigned long iflags;
6886         int ready;
6887         int ret;
6888
6889         if (atomic_read(&phba->fabric_iocb_count) > 1)
6890                 BUG();
6891
6892         spin_lock_irqsave(&phba->hbalock, iflags);
6893         ready = atomic_read(&phba->fabric_iocb_count) == 0 &&
6894                 !test_bit(FABRIC_COMANDS_BLOCKED, &phba->bit_flags);
6895
6896         if (ready)
6897                 /* Increment fabric iocb count to hold the position */
6898                 atomic_inc(&phba->fabric_iocb_count);
6899         spin_unlock_irqrestore(&phba->hbalock, iflags);
6900         if (ready) {
6901                 iocb->fabric_iocb_cmpl = iocb->iocb_cmpl;
6902                 iocb->iocb_cmpl = lpfc_cmpl_fabric_iocb;
6903                 iocb->iocb_flag |= LPFC_IO_FABRIC;
6904
6905                 lpfc_debugfs_disc_trc(iocb->vport, LPFC_DISC_TRC_ELS_CMD,
6906                         "Fabric sched2:   ste:x%x",
6907                         iocb->vport->port_state, 0, 0);
6908
6909                 ret = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, iocb, 0);
6910
6911                 if (ret == IOCB_ERROR) {
6912                         iocb->iocb_cmpl = iocb->fabric_iocb_cmpl;
6913                         iocb->fabric_iocb_cmpl = NULL;
6914                         iocb->iocb_flag &= ~LPFC_IO_FABRIC;
6915                         atomic_dec(&phba->fabric_iocb_count);
6916                 }
6917         } else {
6918                 spin_lock_irqsave(&phba->hbalock, iflags);
6919                 list_add_tail(&iocb->list, &phba->fabric_iocb_list);
6920                 spin_unlock_irqrestore(&phba->hbalock, iflags);
6921                 ret = IOCB_SUCCESS;
6922         }
6923         return ret;
6924 }
6925
6926 /**
6927  * lpfc_fabric_abort_vport - Abort a vport's iocbs from driver fabric iocb list
6928  * @vport: pointer to a virtual N_Port data structure.
6929  *
6930  * This routine aborts all the IOCBs associated with a @vport from the
6931  * driver internal fabric IOCB list. The list contains fabric IOCBs to be
6932  * issued to the ELS IOCB ring. This abort function walks the fabric IOCB
6933  * list, removes each IOCB associated with the @vport off the list, set the
6934  * status feild to IOSTAT_LOCAL_REJECT, and invokes the callback function
6935  * associated with the IOCB.
6936  **/
6937 static void lpfc_fabric_abort_vport(struct lpfc_vport *vport)
6938 {
6939         LIST_HEAD(completions);
6940         struct lpfc_hba  *phba = vport->phba;
6941         struct lpfc_iocbq *tmp_iocb, *piocb;
6942
6943         spin_lock_irq(&phba->hbalock);
6944         list_for_each_entry_safe(piocb, tmp_iocb, &phba->fabric_iocb_list,
6945                                  list) {
6946
6947                 if (piocb->vport != vport)
6948                         continue;
6949
6950                 list_move_tail(&piocb->list, &completions);
6951         }
6952         spin_unlock_irq(&phba->hbalock);
6953
6954         /* Cancel all the IOCBs from the completions list */
6955         lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
6956                               IOERR_SLI_ABORTED);
6957 }
6958
6959 /**
6960  * lpfc_fabric_abort_nport - Abort a ndlp's iocbs from driver fabric iocb list
6961  * @ndlp: pointer to a node-list data structure.
6962  *
6963  * This routine aborts all the IOCBs associated with an @ndlp from the
6964  * driver internal fabric IOCB list. The list contains fabric IOCBs to be
6965  * issued to the ELS IOCB ring. This abort function walks the fabric IOCB
6966  * list, removes each IOCB associated with the @ndlp off the list, set the
6967  * status feild to IOSTAT_LOCAL_REJECT, and invokes the callback function
6968  * associated with the IOCB.
6969  **/
6970 void lpfc_fabric_abort_nport(struct lpfc_nodelist *ndlp)
6971 {
6972         LIST_HEAD(completions);
6973         struct lpfc_hba  *phba = ndlp->phba;
6974         struct lpfc_iocbq *tmp_iocb, *piocb;
6975         struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
6976
6977         spin_lock_irq(&phba->hbalock);
6978         list_for_each_entry_safe(piocb, tmp_iocb, &phba->fabric_iocb_list,
6979                                  list) {
6980                 if ((lpfc_check_sli_ndlp(phba, pring, piocb, ndlp))) {
6981
6982                         list_move_tail(&piocb->list, &completions);
6983                 }
6984         }
6985         spin_unlock_irq(&phba->hbalock);
6986
6987         /* Cancel all the IOCBs from the completions list */
6988         lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
6989                               IOERR_SLI_ABORTED);
6990 }
6991
6992 /**
6993  * lpfc_fabric_abort_hba - Abort all iocbs on driver fabric iocb list
6994  * @phba: pointer to lpfc hba data structure.
6995  *
6996  * This routine aborts all the IOCBs currently on the driver internal
6997  * fabric IOCB list. The list contains fabric IOCBs to be issued to the ELS
6998  * IOCB ring. This function takes the entire IOCB list off the fabric IOCB
6999  * list, removes IOCBs off the list, set the status feild to
7000  * IOSTAT_LOCAL_REJECT, and invokes the callback function associated with
7001  * the IOCB.
7002  **/
7003 void lpfc_fabric_abort_hba(struct lpfc_hba *phba)
7004 {
7005         LIST_HEAD(completions);
7006
7007         spin_lock_irq(&phba->hbalock);
7008         list_splice_init(&phba->fabric_iocb_list, &completions);
7009         spin_unlock_irq(&phba->hbalock);
7010
7011         /* Cancel all the IOCBs from the completions list */
7012         lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
7013                               IOERR_SLI_ABORTED);
7014 }
7015
7016 /**
7017  * lpfc_sli4_els_xri_aborted - Slow-path process of els xri abort
7018  * @phba: pointer to lpfc hba data structure.
7019  * @axri: pointer to the els xri abort wcqe structure.
7020  *
7021  * This routine is invoked by the worker thread to process a SLI4 slow-path
7022  * ELS aborted xri.
7023  **/
7024 void
7025 lpfc_sli4_els_xri_aborted(struct lpfc_hba *phba,
7026                           struct sli4_wcqe_xri_aborted *axri)
7027 {
7028         uint16_t xri = bf_get(lpfc_wcqe_xa_xri, axri);
7029         struct lpfc_sglq *sglq_entry = NULL, *sglq_next = NULL;
7030         unsigned long iflag = 0;
7031         struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
7032
7033         spin_lock_irqsave(&phba->hbalock, iflag);
7034         spin_lock(&phba->sli4_hba.abts_sgl_list_lock);
7035         list_for_each_entry_safe(sglq_entry, sglq_next,
7036                         &phba->sli4_hba.lpfc_abts_els_sgl_list, list) {
7037                 if (sglq_entry->sli4_xritag == xri) {
7038                         list_del(&sglq_entry->list);
7039                         list_add_tail(&sglq_entry->list,
7040                                 &phba->sli4_hba.lpfc_sgl_list);
7041                         sglq_entry->state = SGL_FREED;
7042                         spin_unlock(&phba->sli4_hba.abts_sgl_list_lock);
7043                         spin_unlock_irqrestore(&phba->hbalock, iflag);
7044
7045                         /* Check if TXQ queue needs to be serviced */
7046                         if (pring->txq_cnt)
7047                                 lpfc_worker_wake_up(phba);
7048                         return;
7049                 }
7050         }
7051         spin_unlock(&phba->sli4_hba.abts_sgl_list_lock);
7052         sglq_entry = __lpfc_get_active_sglq(phba, xri);
7053         if (!sglq_entry || (sglq_entry->sli4_xritag != xri)) {
7054                 spin_unlock_irqrestore(&phba->hbalock, iflag);
7055                 return;
7056         }
7057         sglq_entry->state = SGL_XRI_ABORTED;
7058         spin_unlock_irqrestore(&phba->hbalock, iflag);
7059         return;
7060 }