58379ffa97b86328add3f3ea615228a1acc24b40
[pandora-kernel.git] / drivers / scsi / lpfc / lpfc_hbadisc.c
1 /*******************************************************************
2  * This file is part of the Emulex Linux Device Driver for         *
3  * Fibre Channel Host Bus Adapters.                                *
4  * Copyright (C) 2004-2012 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
22 #include <linux/blkdev.h>
23 #include <linux/delay.h>
24 #include <linux/slab.h>
25 #include <linux/pci.h>
26 #include <linux/kthread.h>
27 #include <linux/interrupt.h>
28
29 #include <scsi/scsi.h>
30 #include <scsi/scsi_device.h>
31 #include <scsi/scsi_host.h>
32 #include <scsi/scsi_transport_fc.h>
33
34 #include "lpfc_hw4.h"
35 #include "lpfc_hw.h"
36 #include "lpfc_nl.h"
37 #include "lpfc_disc.h"
38 #include "lpfc_sli.h"
39 #include "lpfc_sli4.h"
40 #include "lpfc_scsi.h"
41 #include "lpfc.h"
42 #include "lpfc_logmsg.h"
43 #include "lpfc_crtn.h"
44 #include "lpfc_vport.h"
45 #include "lpfc_debugfs.h"
46
47 /* AlpaArray for assignment of scsid for scan-down and bind_method */
48 static uint8_t lpfcAlpaArray[] = {
49         0xEF, 0xE8, 0xE4, 0xE2, 0xE1, 0xE0, 0xDC, 0xDA, 0xD9, 0xD6,
50         0xD5, 0xD4, 0xD3, 0xD2, 0xD1, 0xCE, 0xCD, 0xCC, 0xCB, 0xCA,
51         0xC9, 0xC7, 0xC6, 0xC5, 0xC3, 0xBC, 0xBA, 0xB9, 0xB6, 0xB5,
52         0xB4, 0xB3, 0xB2, 0xB1, 0xAE, 0xAD, 0xAC, 0xAB, 0xAA, 0xA9,
53         0xA7, 0xA6, 0xA5, 0xA3, 0x9F, 0x9E, 0x9D, 0x9B, 0x98, 0x97,
54         0x90, 0x8F, 0x88, 0x84, 0x82, 0x81, 0x80, 0x7C, 0x7A, 0x79,
55         0x76, 0x75, 0x74, 0x73, 0x72, 0x71, 0x6E, 0x6D, 0x6C, 0x6B,
56         0x6A, 0x69, 0x67, 0x66, 0x65, 0x63, 0x5C, 0x5A, 0x59, 0x56,
57         0x55, 0x54, 0x53, 0x52, 0x51, 0x4E, 0x4D, 0x4C, 0x4B, 0x4A,
58         0x49, 0x47, 0x46, 0x45, 0x43, 0x3C, 0x3A, 0x39, 0x36, 0x35,
59         0x34, 0x33, 0x32, 0x31, 0x2E, 0x2D, 0x2C, 0x2B, 0x2A, 0x29,
60         0x27, 0x26, 0x25, 0x23, 0x1F, 0x1E, 0x1D, 0x1B, 0x18, 0x17,
61         0x10, 0x0F, 0x08, 0x04, 0x02, 0x01
62 };
63
64 static void lpfc_disc_timeout_handler(struct lpfc_vport *);
65 static void lpfc_disc_flush_list(struct lpfc_vport *vport);
66 static void lpfc_unregister_fcfi_cmpl(struct lpfc_hba *, LPFC_MBOXQ_t *);
67 static int lpfc_fcf_inuse(struct lpfc_hba *);
68
69 void
70 lpfc_terminate_rport_io(struct fc_rport *rport)
71 {
72         struct lpfc_rport_data *rdata;
73         struct lpfc_nodelist * ndlp;
74         struct lpfc_hba *phba;
75
76         rdata = rport->dd_data;
77         ndlp = rdata->pnode;
78
79         if (!ndlp || !NLP_CHK_NODE_ACT(ndlp)) {
80                 if (rport->roles & FC_RPORT_ROLE_FCP_TARGET)
81                         printk(KERN_ERR "Cannot find remote node"
82                         " to terminate I/O Data x%x\n",
83                         rport->port_id);
84                 return;
85         }
86
87         phba  = ndlp->phba;
88
89         lpfc_debugfs_disc_trc(ndlp->vport, LPFC_DISC_TRC_RPORT,
90                 "rport terminate: sid:x%x did:x%x flg:x%x",
91                 ndlp->nlp_sid, ndlp->nlp_DID, ndlp->nlp_flag);
92
93         if (ndlp->nlp_sid != NLP_NO_SID) {
94                 lpfc_sli_abort_iocb(ndlp->vport,
95                         &phba->sli.ring[phba->sli.fcp_ring],
96                         ndlp->nlp_sid, 0, LPFC_CTX_TGT);
97         }
98 }
99
100 /*
101  * This function will be called when dev_loss_tmo fire.
102  */
103 void
104 lpfc_dev_loss_tmo_callbk(struct fc_rport *rport)
105 {
106         struct lpfc_rport_data *rdata;
107         struct lpfc_nodelist * ndlp;
108         struct lpfc_vport *vport;
109         struct lpfc_hba   *phba;
110         struct lpfc_work_evt *evtp;
111         int  put_node;
112         int  put_rport;
113
114         rdata = rport->dd_data;
115         ndlp = rdata->pnode;
116         if (!ndlp || !NLP_CHK_NODE_ACT(ndlp))
117                 return;
118
119         vport = ndlp->vport;
120         phba  = vport->phba;
121
122         lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_RPORT,
123                 "rport devlosscb: sid:x%x did:x%x flg:x%x",
124                 ndlp->nlp_sid, ndlp->nlp_DID, ndlp->nlp_flag);
125
126         lpfc_printf_vlog(ndlp->vport, KERN_INFO, LOG_NODE,
127                          "3181 dev_loss_callbk x%06x, rport %p flg x%x\n",
128                          ndlp->nlp_DID, ndlp->rport, ndlp->nlp_flag);
129
130         /* Don't defer this if we are in the process of deleting the vport
131          * or unloading the driver. The unload will cleanup the node
132          * appropriately we just need to cleanup the ndlp rport info here.
133          */
134         if (vport->load_flag & FC_UNLOADING) {
135                 put_node = rdata->pnode != NULL;
136                 put_rport = ndlp->rport != NULL;
137                 rdata->pnode = NULL;
138                 ndlp->rport = NULL;
139                 if (put_node)
140                         lpfc_nlp_put(ndlp);
141                 if (put_rport)
142                         put_device(&rport->dev);
143                 return;
144         }
145
146         if (ndlp->nlp_state == NLP_STE_MAPPED_NODE)
147                 return;
148
149         if (ndlp->nlp_type & NLP_FABRIC) {
150
151                 /* If the WWPN of the rport and ndlp don't match, ignore it */
152                 if (rport->port_name != wwn_to_u64(ndlp->nlp_portname.u.wwn)) {
153                         put_device(&rport->dev);
154                         return;
155                 }
156         }
157
158         evtp = &ndlp->dev_loss_evt;
159
160         if (!list_empty(&evtp->evt_listp))
161                 return;
162
163         evtp->evt_arg1  = lpfc_nlp_get(ndlp);
164
165         spin_lock_irq(&phba->hbalock);
166         /* We need to hold the node by incrementing the reference
167          * count until this queued work is done
168          */
169         if (evtp->evt_arg1) {
170                 evtp->evt = LPFC_EVT_DEV_LOSS;
171                 list_add_tail(&evtp->evt_listp, &phba->work_list);
172                 lpfc_worker_wake_up(phba);
173         }
174         spin_unlock_irq(&phba->hbalock);
175
176         return;
177 }
178
179 /**
180  * lpfc_dev_loss_tmo_handler - Remote node devloss timeout handler
181  * @ndlp: Pointer to remote node object.
182  *
183  * This function is called from the worker thread when devloss timeout timer
184  * expires. For SLI4 host, this routine shall return 1 when at lease one
185  * remote node, including this @ndlp, is still in use of FCF; otherwise, this
186  * routine shall return 0 when there is no remote node is still in use of FCF
187  * when devloss timeout happened to this @ndlp.
188  **/
189 static int
190 lpfc_dev_loss_tmo_handler(struct lpfc_nodelist *ndlp)
191 {
192         struct lpfc_rport_data *rdata;
193         struct fc_rport   *rport;
194         struct lpfc_vport *vport;
195         struct lpfc_hba   *phba;
196         uint8_t *name;
197         int  put_node;
198         int  put_rport;
199         int warn_on = 0;
200         int fcf_inuse = 0;
201
202         rport = ndlp->rport;
203
204         if (!rport)
205                 return fcf_inuse;
206
207         rdata = rport->dd_data;
208         name = (uint8_t *) &ndlp->nlp_portname;
209         vport = ndlp->vport;
210         phba  = vport->phba;
211
212         if (phba->sli_rev == LPFC_SLI_REV4)
213                 fcf_inuse = lpfc_fcf_inuse(phba);
214
215         lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_RPORT,
216                 "rport devlosstmo:did:x%x type:x%x id:x%x",
217                 ndlp->nlp_DID, ndlp->nlp_type, rport->scsi_target_id);
218
219         lpfc_printf_vlog(ndlp->vport, KERN_INFO, LOG_NODE,
220                          "3182 dev_loss_tmo_handler x%06x, rport %p flg x%x\n",
221                          ndlp->nlp_DID, ndlp->rport, ndlp->nlp_flag);
222
223         /* Don't defer this if we are in the process of deleting the vport
224          * or unloading the driver. The unload will cleanup the node
225          * appropriately we just need to cleanup the ndlp rport info here.
226          */
227         if (vport->load_flag & FC_UNLOADING) {
228                 if (ndlp->nlp_sid != NLP_NO_SID) {
229                         /* flush the target */
230                         lpfc_sli_abort_iocb(vport,
231                                         &phba->sli.ring[phba->sli.fcp_ring],
232                                         ndlp->nlp_sid, 0, LPFC_CTX_TGT);
233                 }
234                 put_node = rdata->pnode != NULL;
235                 put_rport = ndlp->rport != NULL;
236                 rdata->pnode = NULL;
237                 ndlp->rport = NULL;
238                 if (put_node)
239                         lpfc_nlp_put(ndlp);
240                 if (put_rport)
241                         put_device(&rport->dev);
242                 return fcf_inuse;
243         }
244
245         if (ndlp->nlp_state == NLP_STE_MAPPED_NODE) {
246                 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
247                                  "0284 Devloss timeout Ignored on "
248                                  "WWPN %x:%x:%x:%x:%x:%x:%x:%x "
249                                  "NPort x%x\n",
250                                  *name, *(name+1), *(name+2), *(name+3),
251                                  *(name+4), *(name+5), *(name+6), *(name+7),
252                                  ndlp->nlp_DID);
253                 return fcf_inuse;
254         }
255
256         if (ndlp->nlp_type & NLP_FABRIC) {
257                 /* We will clean up these Nodes in linkup */
258                 put_node = rdata->pnode != NULL;
259                 put_rport = ndlp->rport != NULL;
260                 rdata->pnode = NULL;
261                 ndlp->rport = NULL;
262                 if (put_node)
263                         lpfc_nlp_put(ndlp);
264                 if (put_rport)
265                         put_device(&rport->dev);
266                 return fcf_inuse;
267         }
268
269         if (ndlp->nlp_sid != NLP_NO_SID) {
270                 warn_on = 1;
271                 /* flush the target */
272                 lpfc_sli_abort_iocb(vport, &phba->sli.ring[phba->sli.fcp_ring],
273                                     ndlp->nlp_sid, 0, LPFC_CTX_TGT);
274         }
275
276         if (warn_on) {
277                 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
278                                  "0203 Devloss timeout on "
279                                  "WWPN %02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x "
280                                  "NPort x%06x Data: x%x x%x x%x\n",
281                                  *name, *(name+1), *(name+2), *(name+3),
282                                  *(name+4), *(name+5), *(name+6), *(name+7),
283                                  ndlp->nlp_DID, ndlp->nlp_flag,
284                                  ndlp->nlp_state, ndlp->nlp_rpi);
285         } else {
286                 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
287                                  "0204 Devloss timeout on "
288                                  "WWPN %02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x "
289                                  "NPort x%06x Data: x%x x%x x%x\n",
290                                  *name, *(name+1), *(name+2), *(name+3),
291                                  *(name+4), *(name+5), *(name+6), *(name+7),
292                                  ndlp->nlp_DID, ndlp->nlp_flag,
293                                  ndlp->nlp_state, ndlp->nlp_rpi);
294         }
295
296         put_node = rdata->pnode != NULL;
297         put_rport = ndlp->rport != NULL;
298         rdata->pnode = NULL;
299         ndlp->rport = NULL;
300         if (put_node)
301                 lpfc_nlp_put(ndlp);
302         if (put_rport)
303                 put_device(&rport->dev);
304
305         if (!(vport->load_flag & FC_UNLOADING) &&
306             !(ndlp->nlp_flag & NLP_DELAY_TMO) &&
307             !(ndlp->nlp_flag & NLP_NPR_2B_DISC) &&
308             (ndlp->nlp_state != NLP_STE_UNMAPPED_NODE) &&
309             (ndlp->nlp_state != NLP_STE_REG_LOGIN_ISSUE) &&
310             (ndlp->nlp_state != NLP_STE_PRLI_ISSUE))
311                 lpfc_disc_state_machine(vport, ndlp, NULL, NLP_EVT_DEVICE_RM);
312
313         return fcf_inuse;
314 }
315
316 /**
317  * lpfc_sli4_post_dev_loss_tmo_handler - SLI4 post devloss timeout handler
318  * @phba: Pointer to hba context object.
319  * @fcf_inuse: SLI4 FCF in-use state reported from devloss timeout handler.
320  * @nlp_did: remote node identifer with devloss timeout.
321  *
322  * This function is called from the worker thread after invoking devloss
323  * timeout handler and releasing the reference count for the ndlp with
324  * which the devloss timeout was handled for SLI4 host. For the devloss
325  * timeout of the last remote node which had been in use of FCF, when this
326  * routine is invoked, it shall be guaranteed that none of the remote are
327  * in-use of FCF. When devloss timeout to the last remote using the FCF,
328  * if the FIP engine is neither in FCF table scan process nor roundrobin
329  * failover process, the in-use FCF shall be unregistered. If the FIP
330  * engine is in FCF discovery process, the devloss timeout state shall
331  * be set for either the FCF table scan process or roundrobin failover
332  * process to unregister the in-use FCF.
333  **/
334 static void
335 lpfc_sli4_post_dev_loss_tmo_handler(struct lpfc_hba *phba, int fcf_inuse,
336                                     uint32_t nlp_did)
337 {
338         /* If devloss timeout happened to a remote node when FCF had no
339          * longer been in-use, do nothing.
340          */
341         if (!fcf_inuse)
342                 return;
343
344         if ((phba->hba_flag & HBA_FIP_SUPPORT) && !lpfc_fcf_inuse(phba)) {
345                 spin_lock_irq(&phba->hbalock);
346                 if (phba->fcf.fcf_flag & FCF_DISCOVERY) {
347                         if (phba->hba_flag & HBA_DEVLOSS_TMO) {
348                                 spin_unlock_irq(&phba->hbalock);
349                                 return;
350                         }
351                         phba->hba_flag |= HBA_DEVLOSS_TMO;
352                         lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
353                                         "2847 Last remote node (x%x) using "
354                                         "FCF devloss tmo\n", nlp_did);
355                 }
356                 if (phba->fcf.fcf_flag & FCF_REDISC_PROG) {
357                         spin_unlock_irq(&phba->hbalock);
358                         lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
359                                         "2868 Devloss tmo to FCF rediscovery "
360                                         "in progress\n");
361                         return;
362                 }
363                 if (!(phba->hba_flag & (FCF_TS_INPROG | FCF_RR_INPROG))) {
364                         spin_unlock_irq(&phba->hbalock);
365                         lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
366                                         "2869 Devloss tmo to idle FIP engine, "
367                                         "unreg in-use FCF and rescan.\n");
368                         /* Unregister in-use FCF and rescan */
369                         lpfc_unregister_fcf_rescan(phba);
370                         return;
371                 }
372                 spin_unlock_irq(&phba->hbalock);
373                 if (phba->hba_flag & FCF_TS_INPROG)
374                         lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
375                                         "2870 FCF table scan in progress\n");
376                 if (phba->hba_flag & FCF_RR_INPROG)
377                         lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
378                                         "2871 FLOGI roundrobin FCF failover "
379                                         "in progress\n");
380         }
381         lpfc_unregister_unused_fcf(phba);
382 }
383
384 /**
385  * lpfc_alloc_fast_evt - Allocates data structure for posting event
386  * @phba: Pointer to hba context object.
387  *
388  * This function is called from the functions which need to post
389  * events from interrupt context. This function allocates data
390  * structure required for posting event. It also keeps track of
391  * number of events pending and prevent event storm when there are
392  * too many events.
393  **/
394 struct lpfc_fast_path_event *
395 lpfc_alloc_fast_evt(struct lpfc_hba *phba) {
396         struct lpfc_fast_path_event *ret;
397
398         /* If there are lot of fast event do not exhaust memory due to this */
399         if (atomic_read(&phba->fast_event_count) > LPFC_MAX_EVT_COUNT)
400                 return NULL;
401
402         ret = kzalloc(sizeof(struct lpfc_fast_path_event),
403                         GFP_ATOMIC);
404         if (ret) {
405                 atomic_inc(&phba->fast_event_count);
406                 INIT_LIST_HEAD(&ret->work_evt.evt_listp);
407                 ret->work_evt.evt = LPFC_EVT_FASTPATH_MGMT_EVT;
408         }
409         return ret;
410 }
411
412 /**
413  * lpfc_free_fast_evt - Frees event data structure
414  * @phba: Pointer to hba context object.
415  * @evt:  Event object which need to be freed.
416  *
417  * This function frees the data structure required for posting
418  * events.
419  **/
420 void
421 lpfc_free_fast_evt(struct lpfc_hba *phba,
422                 struct lpfc_fast_path_event *evt) {
423
424         atomic_dec(&phba->fast_event_count);
425         kfree(evt);
426 }
427
428 /**
429  * lpfc_send_fastpath_evt - Posts events generated from fast path
430  * @phba: Pointer to hba context object.
431  * @evtp: Event data structure.
432  *
433  * This function is called from worker thread, when the interrupt
434  * context need to post an event. This function posts the event
435  * to fc transport netlink interface.
436  **/
437 static void
438 lpfc_send_fastpath_evt(struct lpfc_hba *phba,
439                 struct lpfc_work_evt *evtp)
440 {
441         unsigned long evt_category, evt_sub_category;
442         struct lpfc_fast_path_event *fast_evt_data;
443         char *evt_data;
444         uint32_t evt_data_size;
445         struct Scsi_Host *shost;
446
447         fast_evt_data = container_of(evtp, struct lpfc_fast_path_event,
448                 work_evt);
449
450         evt_category = (unsigned long) fast_evt_data->un.fabric_evt.event_type;
451         evt_sub_category = (unsigned long) fast_evt_data->un.
452                         fabric_evt.subcategory;
453         shost = lpfc_shost_from_vport(fast_evt_data->vport);
454         if (evt_category == FC_REG_FABRIC_EVENT) {
455                 if (evt_sub_category == LPFC_EVENT_FCPRDCHKERR) {
456                         evt_data = (char *) &fast_evt_data->un.read_check_error;
457                         evt_data_size = sizeof(fast_evt_data->un.
458                                 read_check_error);
459                 } else if ((evt_sub_category == LPFC_EVENT_FABRIC_BUSY) ||
460                         (evt_sub_category == LPFC_EVENT_PORT_BUSY)) {
461                         evt_data = (char *) &fast_evt_data->un.fabric_evt;
462                         evt_data_size = sizeof(fast_evt_data->un.fabric_evt);
463                 } else {
464                         lpfc_free_fast_evt(phba, fast_evt_data);
465                         return;
466                 }
467         } else if (evt_category == FC_REG_SCSI_EVENT) {
468                 switch (evt_sub_category) {
469                 case LPFC_EVENT_QFULL:
470                 case LPFC_EVENT_DEVBSY:
471                         evt_data = (char *) &fast_evt_data->un.scsi_evt;
472                         evt_data_size = sizeof(fast_evt_data->un.scsi_evt);
473                         break;
474                 case LPFC_EVENT_CHECK_COND:
475                         evt_data = (char *) &fast_evt_data->un.check_cond_evt;
476                         evt_data_size =  sizeof(fast_evt_data->un.
477                                 check_cond_evt);
478                         break;
479                 case LPFC_EVENT_VARQUEDEPTH:
480                         evt_data = (char *) &fast_evt_data->un.queue_depth_evt;
481                         evt_data_size = sizeof(fast_evt_data->un.
482                                 queue_depth_evt);
483                         break;
484                 default:
485                         lpfc_free_fast_evt(phba, fast_evt_data);
486                         return;
487                 }
488         } else {
489                 lpfc_free_fast_evt(phba, fast_evt_data);
490                 return;
491         }
492
493         fc_host_post_vendor_event(shost,
494                 fc_get_event_number(),
495                 evt_data_size,
496                 evt_data,
497                 LPFC_NL_VENDOR_ID);
498
499         lpfc_free_fast_evt(phba, fast_evt_data);
500         return;
501 }
502
503 static void
504 lpfc_work_list_done(struct lpfc_hba *phba)
505 {
506         struct lpfc_work_evt  *evtp = NULL;
507         struct lpfc_nodelist  *ndlp;
508         int free_evt;
509         int fcf_inuse;
510         uint32_t nlp_did;
511
512         spin_lock_irq(&phba->hbalock);
513         while (!list_empty(&phba->work_list)) {
514                 list_remove_head((&phba->work_list), evtp, typeof(*evtp),
515                                  evt_listp);
516                 spin_unlock_irq(&phba->hbalock);
517                 free_evt = 1;
518                 switch (evtp->evt) {
519                 case LPFC_EVT_ELS_RETRY:
520                         ndlp = (struct lpfc_nodelist *) (evtp->evt_arg1);
521                         lpfc_els_retry_delay_handler(ndlp);
522                         free_evt = 0; /* evt is part of ndlp */
523                         /* decrement the node reference count held
524                          * for this queued work
525                          */
526                         lpfc_nlp_put(ndlp);
527                         break;
528                 case LPFC_EVT_DEV_LOSS:
529                         ndlp = (struct lpfc_nodelist *)(evtp->evt_arg1);
530                         fcf_inuse = lpfc_dev_loss_tmo_handler(ndlp);
531                         free_evt = 0;
532                         /* decrement the node reference count held for
533                          * this queued work
534                          */
535                         nlp_did = ndlp->nlp_DID;
536                         lpfc_nlp_put(ndlp);
537                         if (phba->sli_rev == LPFC_SLI_REV4)
538                                 lpfc_sli4_post_dev_loss_tmo_handler(phba,
539                                                                     fcf_inuse,
540                                                                     nlp_did);
541                         break;
542                 case LPFC_EVT_ONLINE:
543                         if (phba->link_state < LPFC_LINK_DOWN)
544                                 *(int *) (evtp->evt_arg1) = lpfc_online(phba);
545                         else
546                                 *(int *) (evtp->evt_arg1) = 0;
547                         complete((struct completion *)(evtp->evt_arg2));
548                         break;
549                 case LPFC_EVT_OFFLINE_PREP:
550                         if (phba->link_state >= LPFC_LINK_DOWN)
551                                 lpfc_offline_prep(phba, LPFC_MBX_WAIT);
552                         *(int *)(evtp->evt_arg1) = 0;
553                         complete((struct completion *)(evtp->evt_arg2));
554                         break;
555                 case LPFC_EVT_OFFLINE:
556                         lpfc_offline(phba);
557                         lpfc_sli_brdrestart(phba);
558                         *(int *)(evtp->evt_arg1) =
559                                 lpfc_sli_brdready(phba, HS_FFRDY | HS_MBRDY);
560                         lpfc_unblock_mgmt_io(phba);
561                         complete((struct completion *)(evtp->evt_arg2));
562                         break;
563                 case LPFC_EVT_WARM_START:
564                         lpfc_offline(phba);
565                         lpfc_reset_barrier(phba);
566                         lpfc_sli_brdreset(phba);
567                         lpfc_hba_down_post(phba);
568                         *(int *)(evtp->evt_arg1) =
569                                 lpfc_sli_brdready(phba, HS_MBRDY);
570                         lpfc_unblock_mgmt_io(phba);
571                         complete((struct completion *)(evtp->evt_arg2));
572                         break;
573                 case LPFC_EVT_KILL:
574                         lpfc_offline(phba);
575                         *(int *)(evtp->evt_arg1)
576                                 = (phba->pport->stopped)
577                                         ? 0 : lpfc_sli_brdkill(phba);
578                         lpfc_unblock_mgmt_io(phba);
579                         complete((struct completion *)(evtp->evt_arg2));
580                         break;
581                 case LPFC_EVT_FASTPATH_MGMT_EVT:
582                         lpfc_send_fastpath_evt(phba, evtp);
583                         free_evt = 0;
584                         break;
585                 case LPFC_EVT_RESET_HBA:
586                         if (!(phba->pport->load_flag & FC_UNLOADING))
587                                 lpfc_reset_hba(phba);
588                         break;
589                 }
590                 if (free_evt)
591                         kfree(evtp);
592                 spin_lock_irq(&phba->hbalock);
593         }
594         spin_unlock_irq(&phba->hbalock);
595
596 }
597
598 static void
599 lpfc_work_done(struct lpfc_hba *phba)
600 {
601         struct lpfc_sli_ring *pring;
602         uint32_t ha_copy, status, control, work_port_events;
603         struct lpfc_vport **vports;
604         struct lpfc_vport *vport;
605         int i;
606
607         spin_lock_irq(&phba->hbalock);
608         ha_copy = phba->work_ha;
609         phba->work_ha = 0;
610         spin_unlock_irq(&phba->hbalock);
611
612         /* First, try to post the next mailbox command to SLI4 device */
613         if (phba->pci_dev_grp == LPFC_PCI_DEV_OC)
614                 lpfc_sli4_post_async_mbox(phba);
615
616         if (ha_copy & HA_ERATT)
617                 /* Handle the error attention event */
618                 lpfc_handle_eratt(phba);
619
620         if (ha_copy & HA_MBATT)
621                 lpfc_sli_handle_mb_event(phba);
622
623         if (ha_copy & HA_LATT)
624                 lpfc_handle_latt(phba);
625
626         /* Process SLI4 events */
627         if (phba->pci_dev_grp == LPFC_PCI_DEV_OC) {
628                 if (phba->hba_flag & HBA_RRQ_ACTIVE)
629                         lpfc_handle_rrq_active(phba);
630                 if (phba->hba_flag & FCP_XRI_ABORT_EVENT)
631                         lpfc_sli4_fcp_xri_abort_event_proc(phba);
632                 if (phba->hba_flag & ELS_XRI_ABORT_EVENT)
633                         lpfc_sli4_els_xri_abort_event_proc(phba);
634                 if (phba->hba_flag & ASYNC_EVENT)
635                         lpfc_sli4_async_event_proc(phba);
636                 if (phba->hba_flag & HBA_POST_RECEIVE_BUFFER) {
637                         spin_lock_irq(&phba->hbalock);
638                         phba->hba_flag &= ~HBA_POST_RECEIVE_BUFFER;
639                         spin_unlock_irq(&phba->hbalock);
640                         lpfc_sli_hbqbuf_add_hbqs(phba, LPFC_ELS_HBQ);
641                 }
642                 if (phba->fcf.fcf_flag & FCF_REDISC_EVT)
643                         lpfc_sli4_fcf_redisc_event_proc(phba);
644         }
645
646         vports = lpfc_create_vport_work_array(phba);
647         if (vports != NULL)
648                 for (i = 0; i <= phba->max_vports; i++) {
649                         /*
650                          * We could have no vports in array if unloading, so if
651                          * this happens then just use the pport
652                          */
653                         if (vports[i] == NULL && i == 0)
654                                 vport = phba->pport;
655                         else
656                                 vport = vports[i];
657                         if (vport == NULL)
658                                 break;
659                         spin_lock_irq(&vport->work_port_lock);
660                         work_port_events = vport->work_port_events;
661                         vport->work_port_events &= ~work_port_events;
662                         spin_unlock_irq(&vport->work_port_lock);
663                         if (work_port_events & WORKER_DISC_TMO)
664                                 lpfc_disc_timeout_handler(vport);
665                         if (work_port_events & WORKER_ELS_TMO)
666                                 lpfc_els_timeout_handler(vport);
667                         if (work_port_events & WORKER_HB_TMO)
668                                 lpfc_hb_timeout_handler(phba);
669                         if (work_port_events & WORKER_MBOX_TMO)
670                                 lpfc_mbox_timeout_handler(phba);
671                         if (work_port_events & WORKER_FABRIC_BLOCK_TMO)
672                                 lpfc_unblock_fabric_iocbs(phba);
673                         if (work_port_events & WORKER_FDMI_TMO)
674                                 lpfc_fdmi_timeout_handler(vport);
675                         if (work_port_events & WORKER_RAMP_DOWN_QUEUE)
676                                 lpfc_ramp_down_queue_handler(phba);
677                         if (work_port_events & WORKER_RAMP_UP_QUEUE)
678                                 lpfc_ramp_up_queue_handler(phba);
679                         if (work_port_events & WORKER_DELAYED_DISC_TMO)
680                                 lpfc_delayed_disc_timeout_handler(vport);
681                 }
682         lpfc_destroy_vport_work_array(phba, vports);
683
684         pring = &phba->sli.ring[LPFC_ELS_RING];
685         status = (ha_copy & (HA_RXMASK  << (4*LPFC_ELS_RING)));
686         status >>= (4*LPFC_ELS_RING);
687         if ((status & HA_RXMASK) ||
688             (pring->flag & LPFC_DEFERRED_RING_EVENT) ||
689             (phba->hba_flag & HBA_SP_QUEUE_EVT)) {
690                 if (pring->flag & LPFC_STOP_IOCB_EVENT) {
691                         pring->flag |= LPFC_DEFERRED_RING_EVENT;
692                         /* Set the lpfc data pending flag */
693                         set_bit(LPFC_DATA_READY, &phba->data_flags);
694                 } else {
695                         if (phba->link_state >= LPFC_LINK_UP) {
696                                 pring->flag &= ~LPFC_DEFERRED_RING_EVENT;
697                                 lpfc_sli_handle_slow_ring_event(phba, pring,
698                                                                 (status &
699                                                                 HA_RXMASK));
700                         }
701                 }
702                 if ((phba->sli_rev == LPFC_SLI_REV4) &
703                                  (!list_empty(&pring->txq)))
704                         lpfc_drain_txq(phba);
705                 /*
706                  * Turn on Ring interrupts
707                  */
708                 if (phba->sli_rev <= LPFC_SLI_REV3) {
709                         spin_lock_irq(&phba->hbalock);
710                         control = readl(phba->HCregaddr);
711                         if (!(control & (HC_R0INT_ENA << LPFC_ELS_RING))) {
712                                 lpfc_debugfs_slow_ring_trc(phba,
713                                         "WRK Enable ring: cntl:x%x hacopy:x%x",
714                                         control, ha_copy, 0);
715
716                                 control |= (HC_R0INT_ENA << LPFC_ELS_RING);
717                                 writel(control, phba->HCregaddr);
718                                 readl(phba->HCregaddr); /* flush */
719                         } else {
720                                 lpfc_debugfs_slow_ring_trc(phba,
721                                         "WRK Ring ok:     cntl:x%x hacopy:x%x",
722                                         control, ha_copy, 0);
723                         }
724                         spin_unlock_irq(&phba->hbalock);
725                 }
726         }
727         lpfc_work_list_done(phba);
728 }
729
730 int
731 lpfc_do_work(void *p)
732 {
733         struct lpfc_hba *phba = p;
734         int rc;
735
736         set_user_nice(current, -20);
737         current->flags |= PF_NOFREEZE;
738         phba->data_flags = 0;
739
740         while (!kthread_should_stop()) {
741                 /* wait and check worker queue activities */
742                 rc = wait_event_interruptible(phba->work_waitq,
743                                         (test_and_clear_bit(LPFC_DATA_READY,
744                                                             &phba->data_flags)
745                                          || kthread_should_stop()));
746                 /* Signal wakeup shall terminate the worker thread */
747                 if (rc) {
748                         lpfc_printf_log(phba, KERN_ERR, LOG_ELS,
749                                         "0433 Wakeup on signal: rc=x%x\n", rc);
750                         break;
751                 }
752
753                 /* Attend pending lpfc data processing */
754                 lpfc_work_done(phba);
755         }
756         phba->worker_thread = NULL;
757         lpfc_printf_log(phba, KERN_INFO, LOG_ELS,
758                         "0432 Worker thread stopped.\n");
759         return 0;
760 }
761
762 /*
763  * This is only called to handle FC worker events. Since this a rare
764  * occurrence, we allocate a struct lpfc_work_evt structure here instead of
765  * embedding it in the IOCB.
766  */
767 int
768 lpfc_workq_post_event(struct lpfc_hba *phba, void *arg1, void *arg2,
769                       uint32_t evt)
770 {
771         struct lpfc_work_evt  *evtp;
772         unsigned long flags;
773
774         /*
775          * All Mailbox completions and LPFC_ELS_RING rcv ring IOCB events will
776          * be queued to worker thread for processing
777          */
778         evtp = kmalloc(sizeof(struct lpfc_work_evt), GFP_ATOMIC);
779         if (!evtp)
780                 return 0;
781
782         evtp->evt_arg1  = arg1;
783         evtp->evt_arg2  = arg2;
784         evtp->evt       = evt;
785
786         spin_lock_irqsave(&phba->hbalock, flags);
787         list_add_tail(&evtp->evt_listp, &phba->work_list);
788         spin_unlock_irqrestore(&phba->hbalock, flags);
789
790         lpfc_worker_wake_up(phba);
791
792         return 1;
793 }
794
795 void
796 lpfc_cleanup_rpis(struct lpfc_vport *vport, int remove)
797 {
798         struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
799         struct lpfc_hba  *phba = vport->phba;
800         struct lpfc_nodelist *ndlp, *next_ndlp;
801         int  rc;
802
803         list_for_each_entry_safe(ndlp, next_ndlp, &vport->fc_nodes, nlp_listp) {
804                 if (!NLP_CHK_NODE_ACT(ndlp))
805                         continue;
806                 if (ndlp->nlp_state == NLP_STE_UNUSED_NODE)
807                         continue;
808                 if ((phba->sli3_options & LPFC_SLI3_VPORT_TEARDOWN) ||
809                         ((vport->port_type == LPFC_NPIV_PORT) &&
810                         (ndlp->nlp_DID == NameServer_DID)))
811                         lpfc_unreg_rpi(vport, ndlp);
812
813                 /* Leave Fabric nodes alone on link down */
814                 if ((phba->sli_rev < LPFC_SLI_REV4) &&
815                     (!remove && ndlp->nlp_type & NLP_FABRIC))
816                         continue;
817                 rc = lpfc_disc_state_machine(vport, ndlp, NULL,
818                                              remove
819                                              ? NLP_EVT_DEVICE_RM
820                                              : NLP_EVT_DEVICE_RECOVERY);
821         }
822         if (phba->sli3_options & LPFC_SLI3_VPORT_TEARDOWN) {
823                 if (phba->sli_rev == LPFC_SLI_REV4)
824                         lpfc_sli4_unreg_all_rpis(vport);
825                 lpfc_mbx_unreg_vpi(vport);
826                 spin_lock_irq(shost->host_lock);
827                 vport->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
828                 spin_unlock_irq(shost->host_lock);
829         }
830 }
831
832 void
833 lpfc_port_link_failure(struct lpfc_vport *vport)
834 {
835         lpfc_vport_set_state(vport, FC_VPORT_LINKDOWN);
836
837         /* Cleanup any outstanding received buffers */
838         lpfc_cleanup_rcv_buffers(vport);
839
840         /* Cleanup any outstanding RSCN activity */
841         lpfc_els_flush_rscn(vport);
842
843         /* Cleanup any outstanding ELS commands */
844         lpfc_els_flush_cmd(vport);
845
846         lpfc_cleanup_rpis(vport, 0);
847
848         /* Turn off discovery timer if its running */
849         lpfc_can_disctmo(vport);
850 }
851
852 void
853 lpfc_linkdown_port(struct lpfc_vport *vport)
854 {
855         struct Scsi_Host  *shost = lpfc_shost_from_vport(vport);
856
857         fc_host_post_event(shost, fc_get_event_number(), FCH_EVT_LINKDOWN, 0);
858
859         lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
860                 "Link Down:       state:x%x rtry:x%x flg:x%x",
861                 vport->port_state, vport->fc_ns_retry, vport->fc_flag);
862
863         lpfc_port_link_failure(vport);
864
865         /* Stop delayed Nport discovery */
866         spin_lock_irq(shost->host_lock);
867         vport->fc_flag &= ~FC_DISC_DELAYED;
868         spin_unlock_irq(shost->host_lock);
869         del_timer_sync(&vport->delayed_disc_tmo);
870 }
871
872 int
873 lpfc_linkdown(struct lpfc_hba *phba)
874 {
875         struct lpfc_vport *vport = phba->pport;
876         struct Scsi_Host  *shost = lpfc_shost_from_vport(vport);
877         struct lpfc_vport **vports;
878         LPFC_MBOXQ_t          *mb;
879         int i;
880
881         if (phba->link_state == LPFC_LINK_DOWN)
882                 return 0;
883
884         /* Block all SCSI stack I/Os */
885         lpfc_scsi_dev_block(phba);
886
887         spin_lock_irq(&phba->hbalock);
888         phba->fcf.fcf_flag &= ~(FCF_AVAILABLE | FCF_SCAN_DONE);
889         spin_unlock_irq(&phba->hbalock);
890         if (phba->link_state > LPFC_LINK_DOWN) {
891                 phba->link_state = LPFC_LINK_DOWN;
892                 spin_lock_irq(shost->host_lock);
893                 phba->pport->fc_flag &= ~FC_LBIT;
894                 spin_unlock_irq(shost->host_lock);
895         }
896         vports = lpfc_create_vport_work_array(phba);
897         if (vports != NULL)
898                 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
899                         /* Issue a LINK DOWN event to all nodes */
900                         lpfc_linkdown_port(vports[i]);
901                 }
902         lpfc_destroy_vport_work_array(phba, vports);
903         /* Clean up any firmware default rpi's */
904         mb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
905         if (mb) {
906                 lpfc_unreg_did(phba, 0xffff, LPFC_UNREG_ALL_DFLT_RPIS, mb);
907                 mb->vport = vport;
908                 mb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
909                 if (lpfc_sli_issue_mbox(phba, mb, MBX_NOWAIT)
910                     == MBX_NOT_FINISHED) {
911                         mempool_free(mb, phba->mbox_mem_pool);
912                 }
913         }
914
915         /* Setup myDID for link up if we are in pt2pt mode */
916         if (phba->pport->fc_flag & FC_PT2PT) {
917                 phba->pport->fc_myDID = 0;
918                 mb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
919                 if (mb) {
920                         lpfc_config_link(phba, mb);
921                         mb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
922                         mb->vport = vport;
923                         if (lpfc_sli_issue_mbox(phba, mb, MBX_NOWAIT)
924                             == MBX_NOT_FINISHED) {
925                                 mempool_free(mb, phba->mbox_mem_pool);
926                         }
927                 }
928                 spin_lock_irq(shost->host_lock);
929                 phba->pport->fc_flag &= ~(FC_PT2PT | FC_PT2PT_PLOGI);
930                 spin_unlock_irq(shost->host_lock);
931         }
932
933         return 0;
934 }
935
936 static void
937 lpfc_linkup_cleanup_nodes(struct lpfc_vport *vport)
938 {
939         struct lpfc_nodelist *ndlp;
940
941         list_for_each_entry(ndlp, &vport->fc_nodes, nlp_listp) {
942                 if (!NLP_CHK_NODE_ACT(ndlp))
943                         continue;
944                 if (ndlp->nlp_state == NLP_STE_UNUSED_NODE)
945                         continue;
946                 if (ndlp->nlp_type & NLP_FABRIC) {
947                         /* On Linkup its safe to clean up the ndlp
948                          * from Fabric connections.
949                          */
950                         if (ndlp->nlp_DID != Fabric_DID)
951                                 lpfc_unreg_rpi(vport, ndlp);
952                         lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
953                 } else if (!(ndlp->nlp_flag & NLP_NPR_ADISC)) {
954                         /* Fail outstanding IO now since device is
955                          * marked for PLOGI.
956                          */
957                         lpfc_unreg_rpi(vport, ndlp);
958                 }
959         }
960 }
961
962 static void
963 lpfc_linkup_port(struct lpfc_vport *vport)
964 {
965         struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
966         struct lpfc_hba  *phba = vport->phba;
967
968         if ((vport->load_flag & FC_UNLOADING) != 0)
969                 return;
970
971         lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
972                 "Link Up:         top:x%x speed:x%x flg:x%x",
973                 phba->fc_topology, phba->fc_linkspeed, phba->link_flag);
974
975         /* If NPIV is not enabled, only bring the physical port up */
976         if (!(phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
977                 (vport != phba->pport))
978                 return;
979
980         fc_host_post_event(shost, fc_get_event_number(), FCH_EVT_LINKUP, 0);
981
982         spin_lock_irq(shost->host_lock);
983         vport->fc_flag &= ~(FC_PT2PT | FC_PT2PT_PLOGI | FC_ABORT_DISCOVERY |
984                             FC_RSCN_MODE | FC_NLP_MORE | FC_RSCN_DISCOVERY);
985         vport->fc_flag |= FC_NDISC_ACTIVE;
986         vport->fc_ns_retry = 0;
987         spin_unlock_irq(shost->host_lock);
988
989         if (vport->fc_flag & FC_LBIT)
990                 lpfc_linkup_cleanup_nodes(vport);
991
992 }
993
994 static int
995 lpfc_linkup(struct lpfc_hba *phba)
996 {
997         struct lpfc_vport **vports;
998         int i;
999
1000         lpfc_cleanup_wt_rrqs(phba);
1001         phba->link_state = LPFC_LINK_UP;
1002
1003         /* Unblock fabric iocbs if they are blocked */
1004         clear_bit(FABRIC_COMANDS_BLOCKED, &phba->bit_flags);
1005         del_timer_sync(&phba->fabric_block_timer);
1006
1007         vports = lpfc_create_vport_work_array(phba);
1008         if (vports != NULL)
1009                 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++)
1010                         lpfc_linkup_port(vports[i]);
1011         lpfc_destroy_vport_work_array(phba, vports);
1012         if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
1013             (phba->sli_rev < LPFC_SLI_REV4))
1014                 lpfc_issue_clear_la(phba, phba->pport);
1015
1016         return 0;
1017 }
1018
1019 /*
1020  * This routine handles processing a CLEAR_LA mailbox
1021  * command upon completion. It is setup in the LPFC_MBOXQ
1022  * as the completion routine when the command is
1023  * handed off to the SLI layer.
1024  */
1025 static void
1026 lpfc_mbx_cmpl_clear_la(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
1027 {
1028         struct lpfc_vport *vport = pmb->vport;
1029         struct Scsi_Host  *shost = lpfc_shost_from_vport(vport);
1030         struct lpfc_sli   *psli = &phba->sli;
1031         MAILBOX_t *mb = &pmb->u.mb;
1032         uint32_t control;
1033
1034         /* Since we don't do discovery right now, turn these off here */
1035         psli->ring[psli->extra_ring].flag &= ~LPFC_STOP_IOCB_EVENT;
1036         psli->ring[psli->fcp_ring].flag &= ~LPFC_STOP_IOCB_EVENT;
1037         psli->ring[psli->next_ring].flag &= ~LPFC_STOP_IOCB_EVENT;
1038
1039         /* Check for error */
1040         if ((mb->mbxStatus) && (mb->mbxStatus != 0x1601)) {
1041                 /* CLEAR_LA mbox error <mbxStatus> state <hba_state> */
1042                 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
1043                                  "0320 CLEAR_LA mbxStatus error x%x hba "
1044                                  "state x%x\n",
1045                                  mb->mbxStatus, vport->port_state);
1046                 phba->link_state = LPFC_HBA_ERROR;
1047                 goto out;
1048         }
1049
1050         if (vport->port_type == LPFC_PHYSICAL_PORT)
1051                 phba->link_state = LPFC_HBA_READY;
1052
1053         spin_lock_irq(&phba->hbalock);
1054         psli->sli_flag |= LPFC_PROCESS_LA;
1055         control = readl(phba->HCregaddr);
1056         control |= HC_LAINT_ENA;
1057         writel(control, phba->HCregaddr);
1058         readl(phba->HCregaddr); /* flush */
1059         spin_unlock_irq(&phba->hbalock);
1060         mempool_free(pmb, phba->mbox_mem_pool);
1061         return;
1062
1063 out:
1064         /* Device Discovery completes */
1065         lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
1066                          "0225 Device Discovery completes\n");
1067         mempool_free(pmb, phba->mbox_mem_pool);
1068
1069         spin_lock_irq(shost->host_lock);
1070         vport->fc_flag &= ~FC_ABORT_DISCOVERY;
1071         spin_unlock_irq(shost->host_lock);
1072
1073         lpfc_can_disctmo(vport);
1074
1075         /* turn on Link Attention interrupts */
1076
1077         spin_lock_irq(&phba->hbalock);
1078         psli->sli_flag |= LPFC_PROCESS_LA;
1079         control = readl(phba->HCregaddr);
1080         control |= HC_LAINT_ENA;
1081         writel(control, phba->HCregaddr);
1082         readl(phba->HCregaddr); /* flush */
1083         spin_unlock_irq(&phba->hbalock);
1084
1085         return;
1086 }
1087
1088
1089 static void
1090 lpfc_mbx_cmpl_local_config_link(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
1091 {
1092         struct lpfc_vport *vport = pmb->vport;
1093
1094         if (pmb->u.mb.mbxStatus)
1095                 goto out;
1096
1097         mempool_free(pmb, phba->mbox_mem_pool);
1098
1099         /* don't perform discovery for SLI4 loopback diagnostic test */
1100         if ((phba->sli_rev == LPFC_SLI_REV4) &&
1101             !(phba->hba_flag & HBA_FCOE_MODE) &&
1102             (phba->link_flag & LS_LOOPBACK_MODE))
1103                 return;
1104
1105         if (phba->fc_topology == LPFC_TOPOLOGY_LOOP &&
1106             vport->fc_flag & FC_PUBLIC_LOOP &&
1107             !(vport->fc_flag & FC_LBIT)) {
1108                         /* Need to wait for FAN - use discovery timer
1109                          * for timeout.  port_state is identically
1110                          * LPFC_LOCAL_CFG_LINK while waiting for FAN
1111                          */
1112                         lpfc_set_disctmo(vport);
1113                         return;
1114         }
1115
1116         /* Start discovery by sending a FLOGI. port_state is identically
1117          * LPFC_FLOGI while waiting for FLOGI cmpl
1118          */
1119         if (vport->port_state != LPFC_FLOGI || vport->fc_flag & FC_PT2PT_PLOGI)
1120                 lpfc_initial_flogi(vport);
1121         return;
1122
1123 out:
1124         lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
1125                          "0306 CONFIG_LINK mbxStatus error x%x "
1126                          "HBA state x%x\n",
1127                          pmb->u.mb.mbxStatus, vport->port_state);
1128         mempool_free(pmb, phba->mbox_mem_pool);
1129
1130         lpfc_linkdown(phba);
1131
1132         lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
1133                          "0200 CONFIG_LINK bad hba state x%x\n",
1134                          vport->port_state);
1135
1136         lpfc_issue_clear_la(phba, vport);
1137         return;
1138 }
1139
1140 /**
1141  * lpfc_sli4_clear_fcf_rr_bmask
1142  * @phba pointer to the struct lpfc_hba for this port.
1143  * This fucnction resets the round robin bit mask and clears the
1144  * fcf priority list. The list deletions are done while holding the
1145  * hbalock. The ON_LIST flag and the FLOGI_FAILED flags are cleared
1146  * from the lpfc_fcf_pri record.
1147  **/
1148 void
1149 lpfc_sli4_clear_fcf_rr_bmask(struct lpfc_hba *phba)
1150 {
1151         struct lpfc_fcf_pri *fcf_pri;
1152         struct lpfc_fcf_pri *next_fcf_pri;
1153         memset(phba->fcf.fcf_rr_bmask, 0, sizeof(*phba->fcf.fcf_rr_bmask));
1154         spin_lock_irq(&phba->hbalock);
1155         list_for_each_entry_safe(fcf_pri, next_fcf_pri,
1156                                 &phba->fcf.fcf_pri_list, list) {
1157                 list_del_init(&fcf_pri->list);
1158                 fcf_pri->fcf_rec.flag = 0;
1159         }
1160         spin_unlock_irq(&phba->hbalock);
1161 }
1162 static void
1163 lpfc_mbx_cmpl_reg_fcfi(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
1164 {
1165         struct lpfc_vport *vport = mboxq->vport;
1166
1167         if (mboxq->u.mb.mbxStatus) {
1168                 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
1169                          "2017 REG_FCFI mbxStatus error x%x "
1170                          "HBA state x%x\n",
1171                          mboxq->u.mb.mbxStatus, vport->port_state);
1172                 goto fail_out;
1173         }
1174
1175         /* Start FCoE discovery by sending a FLOGI. */
1176         phba->fcf.fcfi = bf_get(lpfc_reg_fcfi_fcfi, &mboxq->u.mqe.un.reg_fcfi);
1177         /* Set the FCFI registered flag */
1178         spin_lock_irq(&phba->hbalock);
1179         phba->fcf.fcf_flag |= FCF_REGISTERED;
1180         spin_unlock_irq(&phba->hbalock);
1181
1182         /* If there is a pending FCoE event, restart FCF table scan. */
1183         if ((!(phba->hba_flag & FCF_RR_INPROG)) &&
1184                 lpfc_check_pending_fcoe_event(phba, LPFC_UNREG_FCF))
1185                 goto fail_out;
1186
1187         /* Mark successful completion of FCF table scan */
1188         spin_lock_irq(&phba->hbalock);
1189         phba->fcf.fcf_flag |= (FCF_SCAN_DONE | FCF_IN_USE);
1190         phba->hba_flag &= ~FCF_TS_INPROG;
1191         if (vport->port_state != LPFC_FLOGI) {
1192                 phba->hba_flag |= FCF_RR_INPROG;
1193                 spin_unlock_irq(&phba->hbalock);
1194                 lpfc_issue_init_vfi(vport);
1195                 goto out;
1196         }
1197         spin_unlock_irq(&phba->hbalock);
1198         goto out;
1199
1200 fail_out:
1201         spin_lock_irq(&phba->hbalock);
1202         phba->hba_flag &= ~FCF_RR_INPROG;
1203         spin_unlock_irq(&phba->hbalock);
1204 out:
1205         mempool_free(mboxq, phba->mbox_mem_pool);
1206 }
1207
1208 /**
1209  * lpfc_fab_name_match - Check if the fcf fabric name match.
1210  * @fab_name: pointer to fabric name.
1211  * @new_fcf_record: pointer to fcf record.
1212  *
1213  * This routine compare the fcf record's fabric name with provided
1214  * fabric name. If the fabric name are identical this function
1215  * returns 1 else return 0.
1216  **/
1217 static uint32_t
1218 lpfc_fab_name_match(uint8_t *fab_name, struct fcf_record *new_fcf_record)
1219 {
1220         if (fab_name[0] != bf_get(lpfc_fcf_record_fab_name_0, new_fcf_record))
1221                 return 0;
1222         if (fab_name[1] != bf_get(lpfc_fcf_record_fab_name_1, new_fcf_record))
1223                 return 0;
1224         if (fab_name[2] != bf_get(lpfc_fcf_record_fab_name_2, new_fcf_record))
1225                 return 0;
1226         if (fab_name[3] != bf_get(lpfc_fcf_record_fab_name_3, new_fcf_record))
1227                 return 0;
1228         if (fab_name[4] != bf_get(lpfc_fcf_record_fab_name_4, new_fcf_record))
1229                 return 0;
1230         if (fab_name[5] != bf_get(lpfc_fcf_record_fab_name_5, new_fcf_record))
1231                 return 0;
1232         if (fab_name[6] != bf_get(lpfc_fcf_record_fab_name_6, new_fcf_record))
1233                 return 0;
1234         if (fab_name[7] != bf_get(lpfc_fcf_record_fab_name_7, new_fcf_record))
1235                 return 0;
1236         return 1;
1237 }
1238
1239 /**
1240  * lpfc_sw_name_match - Check if the fcf switch name match.
1241  * @fab_name: pointer to fabric name.
1242  * @new_fcf_record: pointer to fcf record.
1243  *
1244  * This routine compare the fcf record's switch name with provided
1245  * switch name. If the switch name are identical this function
1246  * returns 1 else return 0.
1247  **/
1248 static uint32_t
1249 lpfc_sw_name_match(uint8_t *sw_name, struct fcf_record *new_fcf_record)
1250 {
1251         if (sw_name[0] != bf_get(lpfc_fcf_record_switch_name_0, new_fcf_record))
1252                 return 0;
1253         if (sw_name[1] != bf_get(lpfc_fcf_record_switch_name_1, new_fcf_record))
1254                 return 0;
1255         if (sw_name[2] != bf_get(lpfc_fcf_record_switch_name_2, new_fcf_record))
1256                 return 0;
1257         if (sw_name[3] != bf_get(lpfc_fcf_record_switch_name_3, new_fcf_record))
1258                 return 0;
1259         if (sw_name[4] != bf_get(lpfc_fcf_record_switch_name_4, new_fcf_record))
1260                 return 0;
1261         if (sw_name[5] != bf_get(lpfc_fcf_record_switch_name_5, new_fcf_record))
1262                 return 0;
1263         if (sw_name[6] != bf_get(lpfc_fcf_record_switch_name_6, new_fcf_record))
1264                 return 0;
1265         if (sw_name[7] != bf_get(lpfc_fcf_record_switch_name_7, new_fcf_record))
1266                 return 0;
1267         return 1;
1268 }
1269
1270 /**
1271  * lpfc_mac_addr_match - Check if the fcf mac address match.
1272  * @mac_addr: pointer to mac address.
1273  * @new_fcf_record: pointer to fcf record.
1274  *
1275  * This routine compare the fcf record's mac address with HBA's
1276  * FCF mac address. If the mac addresses are identical this function
1277  * returns 1 else return 0.
1278  **/
1279 static uint32_t
1280 lpfc_mac_addr_match(uint8_t *mac_addr, struct fcf_record *new_fcf_record)
1281 {
1282         if (mac_addr[0] != bf_get(lpfc_fcf_record_mac_0, new_fcf_record))
1283                 return 0;
1284         if (mac_addr[1] != bf_get(lpfc_fcf_record_mac_1, new_fcf_record))
1285                 return 0;
1286         if (mac_addr[2] != bf_get(lpfc_fcf_record_mac_2, new_fcf_record))
1287                 return 0;
1288         if (mac_addr[3] != bf_get(lpfc_fcf_record_mac_3, new_fcf_record))
1289                 return 0;
1290         if (mac_addr[4] != bf_get(lpfc_fcf_record_mac_4, new_fcf_record))
1291                 return 0;
1292         if (mac_addr[5] != bf_get(lpfc_fcf_record_mac_5, new_fcf_record))
1293                 return 0;
1294         return 1;
1295 }
1296
1297 static bool
1298 lpfc_vlan_id_match(uint16_t curr_vlan_id, uint16_t new_vlan_id)
1299 {
1300         return (curr_vlan_id == new_vlan_id);
1301 }
1302
1303 /**
1304  * lpfc_update_fcf_record - Update driver fcf record
1305  * __lpfc_update_fcf_record_pri - update the lpfc_fcf_pri record.
1306  * @phba: pointer to lpfc hba data structure.
1307  * @fcf_index: Index for the lpfc_fcf_record.
1308  * @new_fcf_record: pointer to hba fcf record.
1309  *
1310  * This routine updates the driver FCF priority record from the new HBA FCF
1311  * record. This routine is called with the host lock held.
1312  **/
1313 static void
1314 __lpfc_update_fcf_record_pri(struct lpfc_hba *phba, uint16_t fcf_index,
1315                                  struct fcf_record *new_fcf_record
1316                                  )
1317 {
1318         struct lpfc_fcf_pri *fcf_pri;
1319
1320         fcf_pri = &phba->fcf.fcf_pri[fcf_index];
1321         fcf_pri->fcf_rec.fcf_index = fcf_index;
1322         /* FCF record priority */
1323         fcf_pri->fcf_rec.priority = new_fcf_record->fip_priority;
1324
1325 }
1326
1327 /**
1328  * lpfc_copy_fcf_record - Copy fcf information to lpfc_hba.
1329  * @fcf: pointer to driver fcf record.
1330  * @new_fcf_record: pointer to fcf record.
1331  *
1332  * This routine copies the FCF information from the FCF
1333  * record to lpfc_hba data structure.
1334  **/
1335 static void
1336 lpfc_copy_fcf_record(struct lpfc_fcf_rec *fcf_rec,
1337                      struct fcf_record *new_fcf_record)
1338 {
1339         /* Fabric name */
1340         fcf_rec->fabric_name[0] =
1341                 bf_get(lpfc_fcf_record_fab_name_0, new_fcf_record);
1342         fcf_rec->fabric_name[1] =
1343                 bf_get(lpfc_fcf_record_fab_name_1, new_fcf_record);
1344         fcf_rec->fabric_name[2] =
1345                 bf_get(lpfc_fcf_record_fab_name_2, new_fcf_record);
1346         fcf_rec->fabric_name[3] =
1347                 bf_get(lpfc_fcf_record_fab_name_3, new_fcf_record);
1348         fcf_rec->fabric_name[4] =
1349                 bf_get(lpfc_fcf_record_fab_name_4, new_fcf_record);
1350         fcf_rec->fabric_name[5] =
1351                 bf_get(lpfc_fcf_record_fab_name_5, new_fcf_record);
1352         fcf_rec->fabric_name[6] =
1353                 bf_get(lpfc_fcf_record_fab_name_6, new_fcf_record);
1354         fcf_rec->fabric_name[7] =
1355                 bf_get(lpfc_fcf_record_fab_name_7, new_fcf_record);
1356         /* Mac address */
1357         fcf_rec->mac_addr[0] = bf_get(lpfc_fcf_record_mac_0, new_fcf_record);
1358         fcf_rec->mac_addr[1] = bf_get(lpfc_fcf_record_mac_1, new_fcf_record);
1359         fcf_rec->mac_addr[2] = bf_get(lpfc_fcf_record_mac_2, new_fcf_record);
1360         fcf_rec->mac_addr[3] = bf_get(lpfc_fcf_record_mac_3, new_fcf_record);
1361         fcf_rec->mac_addr[4] = bf_get(lpfc_fcf_record_mac_4, new_fcf_record);
1362         fcf_rec->mac_addr[5] = bf_get(lpfc_fcf_record_mac_5, new_fcf_record);
1363         /* FCF record index */
1364         fcf_rec->fcf_indx = bf_get(lpfc_fcf_record_fcf_index, new_fcf_record);
1365         /* FCF record priority */
1366         fcf_rec->priority = new_fcf_record->fip_priority;
1367         /* Switch name */
1368         fcf_rec->switch_name[0] =
1369                 bf_get(lpfc_fcf_record_switch_name_0, new_fcf_record);
1370         fcf_rec->switch_name[1] =
1371                 bf_get(lpfc_fcf_record_switch_name_1, new_fcf_record);
1372         fcf_rec->switch_name[2] =
1373                 bf_get(lpfc_fcf_record_switch_name_2, new_fcf_record);
1374         fcf_rec->switch_name[3] =
1375                 bf_get(lpfc_fcf_record_switch_name_3, new_fcf_record);
1376         fcf_rec->switch_name[4] =
1377                 bf_get(lpfc_fcf_record_switch_name_4, new_fcf_record);
1378         fcf_rec->switch_name[5] =
1379                 bf_get(lpfc_fcf_record_switch_name_5, new_fcf_record);
1380         fcf_rec->switch_name[6] =
1381                 bf_get(lpfc_fcf_record_switch_name_6, new_fcf_record);
1382         fcf_rec->switch_name[7] =
1383                 bf_get(lpfc_fcf_record_switch_name_7, new_fcf_record);
1384 }
1385
1386 /**
1387  * lpfc_update_fcf_record - Update driver fcf record
1388  * @phba: pointer to lpfc hba data structure.
1389  * @fcf_rec: pointer to driver fcf record.
1390  * @new_fcf_record: pointer to hba fcf record.
1391  * @addr_mode: address mode to be set to the driver fcf record.
1392  * @vlan_id: vlan tag to be set to the driver fcf record.
1393  * @flag: flag bits to be set to the driver fcf record.
1394  *
1395  * This routine updates the driver FCF record from the new HBA FCF record
1396  * together with the address mode, vlan_id, and other informations. This
1397  * routine is called with the host lock held.
1398  **/
1399 static void
1400 __lpfc_update_fcf_record(struct lpfc_hba *phba, struct lpfc_fcf_rec *fcf_rec,
1401                        struct fcf_record *new_fcf_record, uint32_t addr_mode,
1402                        uint16_t vlan_id, uint32_t flag)
1403 {
1404         /* Copy the fields from the HBA's FCF record */
1405         lpfc_copy_fcf_record(fcf_rec, new_fcf_record);
1406         /* Update other fields of driver FCF record */
1407         fcf_rec->addr_mode = addr_mode;
1408         fcf_rec->vlan_id = vlan_id;
1409         fcf_rec->flag |= (flag | RECORD_VALID);
1410         __lpfc_update_fcf_record_pri(phba,
1411                 bf_get(lpfc_fcf_record_fcf_index, new_fcf_record),
1412                                  new_fcf_record);
1413 }
1414
1415 /**
1416  * lpfc_register_fcf - Register the FCF with hba.
1417  * @phba: pointer to lpfc hba data structure.
1418  *
1419  * This routine issues a register fcfi mailbox command to register
1420  * the fcf with HBA.
1421  **/
1422 static void
1423 lpfc_register_fcf(struct lpfc_hba *phba)
1424 {
1425         LPFC_MBOXQ_t *fcf_mbxq;
1426         int rc;
1427
1428         spin_lock_irq(&phba->hbalock);
1429         /* If the FCF is not available do nothing. */
1430         if (!(phba->fcf.fcf_flag & FCF_AVAILABLE)) {
1431                 phba->hba_flag &= ~(FCF_TS_INPROG | FCF_RR_INPROG);
1432                 spin_unlock_irq(&phba->hbalock);
1433                 return;
1434         }
1435
1436         /* The FCF is already registered, start discovery */
1437         if (phba->fcf.fcf_flag & FCF_REGISTERED) {
1438                 phba->fcf.fcf_flag |= (FCF_SCAN_DONE | FCF_IN_USE);
1439                 phba->hba_flag &= ~FCF_TS_INPROG;
1440                 if (phba->pport->port_state != LPFC_FLOGI &&
1441                     phba->pport->fc_flag & FC_FABRIC) {
1442                         phba->hba_flag |= FCF_RR_INPROG;
1443                         spin_unlock_irq(&phba->hbalock);
1444                         lpfc_initial_flogi(phba->pport);
1445                         return;
1446                 }
1447                 spin_unlock_irq(&phba->hbalock);
1448                 return;
1449         }
1450         spin_unlock_irq(&phba->hbalock);
1451
1452         fcf_mbxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
1453         if (!fcf_mbxq) {
1454                 spin_lock_irq(&phba->hbalock);
1455                 phba->hba_flag &= ~(FCF_TS_INPROG | FCF_RR_INPROG);
1456                 spin_unlock_irq(&phba->hbalock);
1457                 return;
1458         }
1459
1460         lpfc_reg_fcfi(phba, fcf_mbxq);
1461         fcf_mbxq->vport = phba->pport;
1462         fcf_mbxq->mbox_cmpl = lpfc_mbx_cmpl_reg_fcfi;
1463         rc = lpfc_sli_issue_mbox(phba, fcf_mbxq, MBX_NOWAIT);
1464         if (rc == MBX_NOT_FINISHED) {
1465                 spin_lock_irq(&phba->hbalock);
1466                 phba->hba_flag &= ~(FCF_TS_INPROG | FCF_RR_INPROG);
1467                 spin_unlock_irq(&phba->hbalock);
1468                 mempool_free(fcf_mbxq, phba->mbox_mem_pool);
1469         }
1470
1471         return;
1472 }
1473
1474 /**
1475  * lpfc_match_fcf_conn_list - Check if the FCF record can be used for discovery.
1476  * @phba: pointer to lpfc hba data structure.
1477  * @new_fcf_record: pointer to fcf record.
1478  * @boot_flag: Indicates if this record used by boot bios.
1479  * @addr_mode: The address mode to be used by this FCF
1480  * @vlan_id: The vlan id to be used as vlan tagging by this FCF.
1481  *
1482  * This routine compare the fcf record with connect list obtained from the
1483  * config region to decide if this FCF can be used for SAN discovery. It returns
1484  * 1 if this record can be used for SAN discovery else return zero. If this FCF
1485  * record can be used for SAN discovery, the boot_flag will indicate if this FCF
1486  * is used by boot bios and addr_mode will indicate the addressing mode to be
1487  * used for this FCF when the function returns.
1488  * If the FCF record need to be used with a particular vlan id, the vlan is
1489  * set in the vlan_id on return of the function. If not VLAN tagging need to
1490  * be used with the FCF vlan_id will be set to LPFC_FCOE_NULL_VID;
1491  **/
1492 static int
1493 lpfc_match_fcf_conn_list(struct lpfc_hba *phba,
1494                         struct fcf_record *new_fcf_record,
1495                         uint32_t *boot_flag, uint32_t *addr_mode,
1496                         uint16_t *vlan_id)
1497 {
1498         struct lpfc_fcf_conn_entry *conn_entry;
1499         int i, j, fcf_vlan_id = 0;
1500
1501         /* Find the lowest VLAN id in the FCF record */
1502         for (i = 0; i < 512; i++) {
1503                 if (new_fcf_record->vlan_bitmap[i]) {
1504                         fcf_vlan_id = i * 8;
1505                         j = 0;
1506                         while (!((new_fcf_record->vlan_bitmap[i] >> j) & 1)) {
1507                                 j++;
1508                                 fcf_vlan_id++;
1509                         }
1510                         break;
1511                 }
1512         }
1513
1514         /* FCF not valid/available or solicitation in progress */
1515         if (!bf_get(lpfc_fcf_record_fcf_avail, new_fcf_record) ||
1516             !bf_get(lpfc_fcf_record_fcf_valid, new_fcf_record) ||
1517             bf_get(lpfc_fcf_record_fcf_sol, new_fcf_record))
1518                 return 0;
1519
1520         if (!(phba->hba_flag & HBA_FIP_SUPPORT)) {
1521                 *boot_flag = 0;
1522                 *addr_mode = bf_get(lpfc_fcf_record_mac_addr_prov,
1523                                 new_fcf_record);
1524                 if (phba->valid_vlan)
1525                         *vlan_id = phba->vlan_id;
1526                 else
1527                         *vlan_id = LPFC_FCOE_NULL_VID;
1528                 return 1;
1529         }
1530
1531         /*
1532          * If there are no FCF connection table entry, driver connect to all
1533          * FCFs.
1534          */
1535         if (list_empty(&phba->fcf_conn_rec_list)) {
1536                 *boot_flag = 0;
1537                 *addr_mode = bf_get(lpfc_fcf_record_mac_addr_prov,
1538                         new_fcf_record);
1539
1540                 /*
1541                  * When there are no FCF connect entries, use driver's default
1542                  * addressing mode - FPMA.
1543                  */
1544                 if (*addr_mode & LPFC_FCF_FPMA)
1545                         *addr_mode = LPFC_FCF_FPMA;
1546
1547                 /* If FCF record report a vlan id use that vlan id */
1548                 if (fcf_vlan_id)
1549                         *vlan_id = fcf_vlan_id;
1550                 else
1551                         *vlan_id = LPFC_FCOE_NULL_VID;
1552                 return 1;
1553         }
1554
1555         list_for_each_entry(conn_entry,
1556                             &phba->fcf_conn_rec_list, list) {
1557                 if (!(conn_entry->conn_rec.flags & FCFCNCT_VALID))
1558                         continue;
1559
1560                 if ((conn_entry->conn_rec.flags & FCFCNCT_FBNM_VALID) &&
1561                         !lpfc_fab_name_match(conn_entry->conn_rec.fabric_name,
1562                                              new_fcf_record))
1563                         continue;
1564                 if ((conn_entry->conn_rec.flags & FCFCNCT_SWNM_VALID) &&
1565                         !lpfc_sw_name_match(conn_entry->conn_rec.switch_name,
1566                                             new_fcf_record))
1567                         continue;
1568                 if (conn_entry->conn_rec.flags & FCFCNCT_VLAN_VALID) {
1569                         /*
1570                          * If the vlan bit map does not have the bit set for the
1571                          * vlan id to be used, then it is not a match.
1572                          */
1573                         if (!(new_fcf_record->vlan_bitmap
1574                                 [conn_entry->conn_rec.vlan_tag / 8] &
1575                                 (1 << (conn_entry->conn_rec.vlan_tag % 8))))
1576                                 continue;
1577                 }
1578
1579                 /*
1580                  * If connection record does not support any addressing mode,
1581                  * skip the FCF record.
1582                  */
1583                 if (!(bf_get(lpfc_fcf_record_mac_addr_prov, new_fcf_record)
1584                         & (LPFC_FCF_FPMA | LPFC_FCF_SPMA)))
1585                         continue;
1586
1587                 /*
1588                  * Check if the connection record specifies a required
1589                  * addressing mode.
1590                  */
1591                 if ((conn_entry->conn_rec.flags & FCFCNCT_AM_VALID) &&
1592                         !(conn_entry->conn_rec.flags & FCFCNCT_AM_PREFERRED)) {
1593
1594                         /*
1595                          * If SPMA required but FCF not support this continue.
1596                          */
1597                         if ((conn_entry->conn_rec.flags & FCFCNCT_AM_SPMA) &&
1598                                 !(bf_get(lpfc_fcf_record_mac_addr_prov,
1599                                         new_fcf_record) & LPFC_FCF_SPMA))
1600                                 continue;
1601
1602                         /*
1603                          * If FPMA required but FCF not support this continue.
1604                          */
1605                         if (!(conn_entry->conn_rec.flags & FCFCNCT_AM_SPMA) &&
1606                                 !(bf_get(lpfc_fcf_record_mac_addr_prov,
1607                                 new_fcf_record) & LPFC_FCF_FPMA))
1608                                 continue;
1609                 }
1610
1611                 /*
1612                  * This fcf record matches filtering criteria.
1613                  */
1614                 if (conn_entry->conn_rec.flags & FCFCNCT_BOOT)
1615                         *boot_flag = 1;
1616                 else
1617                         *boot_flag = 0;
1618
1619                 /*
1620                  * If user did not specify any addressing mode, or if the
1621                  * preferred addressing mode specified by user is not supported
1622                  * by FCF, allow fabric to pick the addressing mode.
1623                  */
1624                 *addr_mode = bf_get(lpfc_fcf_record_mac_addr_prov,
1625                                 new_fcf_record);
1626                 /*
1627                  * If the user specified a required address mode, assign that
1628                  * address mode
1629                  */
1630                 if ((conn_entry->conn_rec.flags & FCFCNCT_AM_VALID) &&
1631                         (!(conn_entry->conn_rec.flags & FCFCNCT_AM_PREFERRED)))
1632                         *addr_mode = (conn_entry->conn_rec.flags &
1633                                 FCFCNCT_AM_SPMA) ?
1634                                 LPFC_FCF_SPMA : LPFC_FCF_FPMA;
1635                 /*
1636                  * If the user specified a preferred address mode, use the
1637                  * addr mode only if FCF support the addr_mode.
1638                  */
1639                 else if ((conn_entry->conn_rec.flags & FCFCNCT_AM_VALID) &&
1640                         (conn_entry->conn_rec.flags & FCFCNCT_AM_PREFERRED) &&
1641                         (conn_entry->conn_rec.flags & FCFCNCT_AM_SPMA) &&
1642                         (*addr_mode & LPFC_FCF_SPMA))
1643                                 *addr_mode = LPFC_FCF_SPMA;
1644                 else if ((conn_entry->conn_rec.flags & FCFCNCT_AM_VALID) &&
1645                         (conn_entry->conn_rec.flags & FCFCNCT_AM_PREFERRED) &&
1646                         !(conn_entry->conn_rec.flags & FCFCNCT_AM_SPMA) &&
1647                         (*addr_mode & LPFC_FCF_FPMA))
1648                                 *addr_mode = LPFC_FCF_FPMA;
1649
1650                 /* If matching connect list has a vlan id, use it */
1651                 if (conn_entry->conn_rec.flags & FCFCNCT_VLAN_VALID)
1652                         *vlan_id = conn_entry->conn_rec.vlan_tag;
1653                 /*
1654                  * If no vlan id is specified in connect list, use the vlan id
1655                  * in the FCF record
1656                  */
1657                 else if (fcf_vlan_id)
1658                         *vlan_id = fcf_vlan_id;
1659                 else
1660                         *vlan_id = LPFC_FCOE_NULL_VID;
1661
1662                 return 1;
1663         }
1664
1665         return 0;
1666 }
1667
1668 /**
1669  * lpfc_check_pending_fcoe_event - Check if there is pending fcoe event.
1670  * @phba: pointer to lpfc hba data structure.
1671  * @unreg_fcf: Unregister FCF if FCF table need to be re-scaned.
1672  *
1673  * This function check if there is any fcoe event pending while driver
1674  * scan FCF entries. If there is any pending event, it will restart the
1675  * FCF saning and return 1 else return 0.
1676  */
1677 int
1678 lpfc_check_pending_fcoe_event(struct lpfc_hba *phba, uint8_t unreg_fcf)
1679 {
1680         /*
1681          * If the Link is up and no FCoE events while in the
1682          * FCF discovery, no need to restart FCF discovery.
1683          */
1684         if ((phba->link_state  >= LPFC_LINK_UP) &&
1685             (phba->fcoe_eventtag == phba->fcoe_eventtag_at_fcf_scan))
1686                 return 0;
1687
1688         lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
1689                         "2768 Pending link or FCF event during current "
1690                         "handling of the previous event: link_state:x%x, "
1691                         "evt_tag_at_scan:x%x, evt_tag_current:x%x\n",
1692                         phba->link_state, phba->fcoe_eventtag_at_fcf_scan,
1693                         phba->fcoe_eventtag);
1694
1695         spin_lock_irq(&phba->hbalock);
1696         phba->fcf.fcf_flag &= ~FCF_AVAILABLE;
1697         spin_unlock_irq(&phba->hbalock);
1698
1699         if (phba->link_state >= LPFC_LINK_UP) {
1700                 lpfc_printf_log(phba, KERN_INFO, LOG_FIP | LOG_DISCOVERY,
1701                                 "2780 Restart FCF table scan due to "
1702                                 "pending FCF event:evt_tag_at_scan:x%x, "
1703                                 "evt_tag_current:x%x\n",
1704                                 phba->fcoe_eventtag_at_fcf_scan,
1705                                 phba->fcoe_eventtag);
1706                 lpfc_sli4_fcf_scan_read_fcf_rec(phba, LPFC_FCOE_FCF_GET_FIRST);
1707         } else {
1708                 /*
1709                  * Do not continue FCF discovery and clear FCF_TS_INPROG
1710                  * flag
1711                  */
1712                 lpfc_printf_log(phba, KERN_INFO, LOG_FIP | LOG_DISCOVERY,
1713                                 "2833 Stop FCF discovery process due to link "
1714                                 "state change (x%x)\n", phba->link_state);
1715                 spin_lock_irq(&phba->hbalock);
1716                 phba->hba_flag &= ~(FCF_TS_INPROG | FCF_RR_INPROG);
1717                 phba->fcf.fcf_flag &= ~(FCF_REDISC_FOV | FCF_DISCOVERY);
1718                 spin_unlock_irq(&phba->hbalock);
1719         }
1720
1721         /* Unregister the currently registered FCF if required */
1722         if (unreg_fcf) {
1723                 spin_lock_irq(&phba->hbalock);
1724                 phba->fcf.fcf_flag &= ~FCF_REGISTERED;
1725                 spin_unlock_irq(&phba->hbalock);
1726                 lpfc_sli4_unregister_fcf(phba);
1727         }
1728         return 1;
1729 }
1730
1731 /**
1732  * lpfc_sli4_new_fcf_random_select - Randomly select an eligible new fcf record
1733  * @phba: pointer to lpfc hba data structure.
1734  * @fcf_cnt: number of eligible fcf record seen so far.
1735  *
1736  * This function makes an running random selection decision on FCF record to
1737  * use through a sequence of @fcf_cnt eligible FCF records with equal
1738  * probability. To perform integer manunipulation of random numbers with
1739  * size unit32_t, the lower 16 bits of the 32-bit random number returned
1740  * from prandom_u32() are taken as the random random number generated.
1741  *
1742  * Returns true when outcome is for the newly read FCF record should be
1743  * chosen; otherwise, return false when outcome is for keeping the previously
1744  * chosen FCF record.
1745  **/
1746 static bool
1747 lpfc_sli4_new_fcf_random_select(struct lpfc_hba *phba, uint32_t fcf_cnt)
1748 {
1749         uint32_t rand_num;
1750
1751         /* Get 16-bit uniform random number */
1752         rand_num = 0xFFFF & prandom_u32();
1753
1754         /* Decision with probability 1/fcf_cnt */
1755         if ((fcf_cnt * rand_num) < 0xFFFF)
1756                 return true;
1757         else
1758                 return false;
1759 }
1760
1761 /**
1762  * lpfc_sli4_fcf_rec_mbox_parse - Parse read_fcf mbox command.
1763  * @phba: pointer to lpfc hba data structure.
1764  * @mboxq: pointer to mailbox object.
1765  * @next_fcf_index: pointer to holder of next fcf index.
1766  *
1767  * This routine parses the non-embedded fcf mailbox command by performing the
1768  * necessarily error checking, non-embedded read FCF record mailbox command
1769  * SGE parsing, and endianness swapping.
1770  *
1771  * Returns the pointer to the new FCF record in the non-embedded mailbox
1772  * command DMA memory if successfully, other NULL.
1773  */
1774 static struct fcf_record *
1775 lpfc_sli4_fcf_rec_mbox_parse(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq,
1776                              uint16_t *next_fcf_index)
1777 {
1778         void *virt_addr;
1779         dma_addr_t phys_addr;
1780         struct lpfc_mbx_sge sge;
1781         struct lpfc_mbx_read_fcf_tbl *read_fcf;
1782         uint32_t shdr_status, shdr_add_status;
1783         union lpfc_sli4_cfg_shdr *shdr;
1784         struct fcf_record *new_fcf_record;
1785
1786         /* Get the first SGE entry from the non-embedded DMA memory. This
1787          * routine only uses a single SGE.
1788          */
1789         lpfc_sli4_mbx_sge_get(mboxq, 0, &sge);
1790         phys_addr = getPaddr(sge.pa_hi, sge.pa_lo);
1791         if (unlikely(!mboxq->sge_array)) {
1792                 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX,
1793                                 "2524 Failed to get the non-embedded SGE "
1794                                 "virtual address\n");
1795                 return NULL;
1796         }
1797         virt_addr = mboxq->sge_array->addr[0];
1798
1799         shdr = (union lpfc_sli4_cfg_shdr *)virt_addr;
1800         lpfc_sli_pcimem_bcopy(shdr, shdr,
1801                               sizeof(union lpfc_sli4_cfg_shdr));
1802         shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
1803         shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
1804         if (shdr_status || shdr_add_status) {
1805                 if (shdr_status == STATUS_FCF_TABLE_EMPTY)
1806                         lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
1807                                         "2726 READ_FCF_RECORD Indicates empty "
1808                                         "FCF table.\n");
1809                 else
1810                         lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
1811                                         "2521 READ_FCF_RECORD mailbox failed "
1812                                         "with status x%x add_status x%x, "
1813                                         "mbx\n", shdr_status, shdr_add_status);
1814                 return NULL;
1815         }
1816
1817         /* Interpreting the returned information of the FCF record */
1818         read_fcf = (struct lpfc_mbx_read_fcf_tbl *)virt_addr;
1819         lpfc_sli_pcimem_bcopy(read_fcf, read_fcf,
1820                               sizeof(struct lpfc_mbx_read_fcf_tbl));
1821         *next_fcf_index = bf_get(lpfc_mbx_read_fcf_tbl_nxt_vindx, read_fcf);
1822         new_fcf_record = (struct fcf_record *)(virt_addr +
1823                           sizeof(struct lpfc_mbx_read_fcf_tbl));
1824         lpfc_sli_pcimem_bcopy(new_fcf_record, new_fcf_record,
1825                                 offsetof(struct fcf_record, vlan_bitmap));
1826         new_fcf_record->word137 = le32_to_cpu(new_fcf_record->word137);
1827         new_fcf_record->word138 = le32_to_cpu(new_fcf_record->word138);
1828
1829         return new_fcf_record;
1830 }
1831
1832 /**
1833  * lpfc_sli4_log_fcf_record_info - Log the information of a fcf record
1834  * @phba: pointer to lpfc hba data structure.
1835  * @fcf_record: pointer to the fcf record.
1836  * @vlan_id: the lowest vlan identifier associated to this fcf record.
1837  * @next_fcf_index: the index to the next fcf record in hba's fcf table.
1838  *
1839  * This routine logs the detailed FCF record if the LOG_FIP loggin is
1840  * enabled.
1841  **/
1842 static void
1843 lpfc_sli4_log_fcf_record_info(struct lpfc_hba *phba,
1844                               struct fcf_record *fcf_record,
1845                               uint16_t vlan_id,
1846                               uint16_t next_fcf_index)
1847 {
1848         lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
1849                         "2764 READ_FCF_RECORD:\n"
1850                         "\tFCF_Index     : x%x\n"
1851                         "\tFCF_Avail     : x%x\n"
1852                         "\tFCF_Valid     : x%x\n"
1853                         "\tFCF_SOL       : x%x\n"
1854                         "\tFIP_Priority  : x%x\n"
1855                         "\tMAC_Provider  : x%x\n"
1856                         "\tLowest VLANID : x%x\n"
1857                         "\tFCF_MAC Addr  : x%x:%x:%x:%x:%x:%x\n"
1858                         "\tFabric_Name   : x%x:%x:%x:%x:%x:%x:%x:%x\n"
1859                         "\tSwitch_Name   : x%x:%x:%x:%x:%x:%x:%x:%x\n"
1860                         "\tNext_FCF_Index: x%x\n",
1861                         bf_get(lpfc_fcf_record_fcf_index, fcf_record),
1862                         bf_get(lpfc_fcf_record_fcf_avail, fcf_record),
1863                         bf_get(lpfc_fcf_record_fcf_valid, fcf_record),
1864                         bf_get(lpfc_fcf_record_fcf_sol, fcf_record),
1865                         fcf_record->fip_priority,
1866                         bf_get(lpfc_fcf_record_mac_addr_prov, fcf_record),
1867                         vlan_id,
1868                         bf_get(lpfc_fcf_record_mac_0, fcf_record),
1869                         bf_get(lpfc_fcf_record_mac_1, fcf_record),
1870                         bf_get(lpfc_fcf_record_mac_2, fcf_record),
1871                         bf_get(lpfc_fcf_record_mac_3, fcf_record),
1872                         bf_get(lpfc_fcf_record_mac_4, fcf_record),
1873                         bf_get(lpfc_fcf_record_mac_5, fcf_record),
1874                         bf_get(lpfc_fcf_record_fab_name_0, fcf_record),
1875                         bf_get(lpfc_fcf_record_fab_name_1, fcf_record),
1876                         bf_get(lpfc_fcf_record_fab_name_2, fcf_record),
1877                         bf_get(lpfc_fcf_record_fab_name_3, fcf_record),
1878                         bf_get(lpfc_fcf_record_fab_name_4, fcf_record),
1879                         bf_get(lpfc_fcf_record_fab_name_5, fcf_record),
1880                         bf_get(lpfc_fcf_record_fab_name_6, fcf_record),
1881                         bf_get(lpfc_fcf_record_fab_name_7, fcf_record),
1882                         bf_get(lpfc_fcf_record_switch_name_0, fcf_record),
1883                         bf_get(lpfc_fcf_record_switch_name_1, fcf_record),
1884                         bf_get(lpfc_fcf_record_switch_name_2, fcf_record),
1885                         bf_get(lpfc_fcf_record_switch_name_3, fcf_record),
1886                         bf_get(lpfc_fcf_record_switch_name_4, fcf_record),
1887                         bf_get(lpfc_fcf_record_switch_name_5, fcf_record),
1888                         bf_get(lpfc_fcf_record_switch_name_6, fcf_record),
1889                         bf_get(lpfc_fcf_record_switch_name_7, fcf_record),
1890                         next_fcf_index);
1891 }
1892
1893 /**
1894  lpfc_sli4_fcf_record_match - testing new FCF record for matching existing FCF
1895  * @phba: pointer to lpfc hba data structure.
1896  * @fcf_rec: pointer to an existing FCF record.
1897  * @new_fcf_record: pointer to a new FCF record.
1898  * @new_vlan_id: vlan id from the new FCF record.
1899  *
1900  * This function performs matching test of a new FCF record against an existing
1901  * FCF record. If the new_vlan_id passed in is LPFC_FCOE_IGNORE_VID, vlan id
1902  * will not be used as part of the FCF record matching criteria.
1903  *
1904  * Returns true if all the fields matching, otherwise returns false.
1905  */
1906 static bool
1907 lpfc_sli4_fcf_record_match(struct lpfc_hba *phba,
1908                            struct lpfc_fcf_rec *fcf_rec,
1909                            struct fcf_record *new_fcf_record,
1910                            uint16_t new_vlan_id)
1911 {
1912         if (new_vlan_id != LPFC_FCOE_IGNORE_VID)
1913                 if (!lpfc_vlan_id_match(fcf_rec->vlan_id, new_vlan_id))
1914                         return false;
1915         if (!lpfc_mac_addr_match(fcf_rec->mac_addr, new_fcf_record))
1916                 return false;
1917         if (!lpfc_sw_name_match(fcf_rec->switch_name, new_fcf_record))
1918                 return false;
1919         if (!lpfc_fab_name_match(fcf_rec->fabric_name, new_fcf_record))
1920                 return false;
1921         if (fcf_rec->priority != new_fcf_record->fip_priority)
1922                 return false;
1923         return true;
1924 }
1925
1926 /**
1927  * lpfc_sli4_fcf_rr_next_proc - processing next roundrobin fcf
1928  * @vport: Pointer to vport object.
1929  * @fcf_index: index to next fcf.
1930  *
1931  * This function processing the roundrobin fcf failover to next fcf index.
1932  * When this function is invoked, there will be a current fcf registered
1933  * for flogi.
1934  * Return: 0 for continue retrying flogi on currently registered fcf;
1935  *         1 for stop flogi on currently registered fcf;
1936  */
1937 int lpfc_sli4_fcf_rr_next_proc(struct lpfc_vport *vport, uint16_t fcf_index)
1938 {
1939         struct lpfc_hba *phba = vport->phba;
1940         int rc;
1941
1942         if (fcf_index == LPFC_FCOE_FCF_NEXT_NONE) {
1943                 spin_lock_irq(&phba->hbalock);
1944                 if (phba->hba_flag & HBA_DEVLOSS_TMO) {
1945                         spin_unlock_irq(&phba->hbalock);
1946                         lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
1947                                         "2872 Devloss tmo with no eligible "
1948                                         "FCF, unregister in-use FCF (x%x) "
1949                                         "and rescan FCF table\n",
1950                                         phba->fcf.current_rec.fcf_indx);
1951                         lpfc_unregister_fcf_rescan(phba);
1952                         goto stop_flogi_current_fcf;
1953                 }
1954                 /* Mark the end to FLOGI roundrobin failover */
1955                 phba->hba_flag &= ~FCF_RR_INPROG;
1956                 /* Allow action to new fcf asynchronous event */
1957                 phba->fcf.fcf_flag &= ~(FCF_AVAILABLE | FCF_SCAN_DONE);
1958                 spin_unlock_irq(&phba->hbalock);
1959                 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
1960                                 "2865 No FCF available, stop roundrobin FCF "
1961                                 "failover and change port state:x%x/x%x\n",
1962                                 phba->pport->port_state, LPFC_VPORT_UNKNOWN);
1963                 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
1964                 goto stop_flogi_current_fcf;
1965         } else {
1966                 lpfc_printf_log(phba, KERN_INFO, LOG_FIP | LOG_ELS,
1967                                 "2794 Try FLOGI roundrobin FCF failover to "
1968                                 "(x%x)\n", fcf_index);
1969                 rc = lpfc_sli4_fcf_rr_read_fcf_rec(phba, fcf_index);
1970                 if (rc)
1971                         lpfc_printf_log(phba, KERN_WARNING, LOG_FIP | LOG_ELS,
1972                                         "2761 FLOGI roundrobin FCF failover "
1973                                         "failed (rc:x%x) to read FCF (x%x)\n",
1974                                         rc, phba->fcf.current_rec.fcf_indx);
1975                 else
1976                         goto stop_flogi_current_fcf;
1977         }
1978         return 0;
1979
1980 stop_flogi_current_fcf:
1981         lpfc_can_disctmo(vport);
1982         return 1;
1983 }
1984
1985 /**
1986  * lpfc_sli4_fcf_pri_list_del
1987  * @phba: pointer to lpfc hba data structure.
1988  * @fcf_index the index of the fcf record to delete
1989  * This routine checks the on list flag of the fcf_index to be deleted.
1990  * If it is one the list then it is removed from the list, and the flag
1991  * is cleared. This routine grab the hbalock before removing the fcf
1992  * record from the list.
1993  **/
1994 static void lpfc_sli4_fcf_pri_list_del(struct lpfc_hba *phba,
1995                         uint16_t fcf_index)
1996 {
1997         struct lpfc_fcf_pri *new_fcf_pri;
1998
1999         new_fcf_pri = &phba->fcf.fcf_pri[fcf_index];
2000         lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
2001                 "3058 deleting idx x%x pri x%x flg x%x\n",
2002                 fcf_index, new_fcf_pri->fcf_rec.priority,
2003                  new_fcf_pri->fcf_rec.flag);
2004         spin_lock_irq(&phba->hbalock);
2005         if (new_fcf_pri->fcf_rec.flag & LPFC_FCF_ON_PRI_LIST) {
2006                 if (phba->fcf.current_rec.priority ==
2007                                 new_fcf_pri->fcf_rec.priority)
2008                         phba->fcf.eligible_fcf_cnt--;
2009                 list_del_init(&new_fcf_pri->list);
2010                 new_fcf_pri->fcf_rec.flag &= ~LPFC_FCF_ON_PRI_LIST;
2011         }
2012         spin_unlock_irq(&phba->hbalock);
2013 }
2014
2015 /**
2016  * lpfc_sli4_set_fcf_flogi_fail
2017  * @phba: pointer to lpfc hba data structure.
2018  * @fcf_index the index of the fcf record to update
2019  * This routine acquires the hbalock and then set the LPFC_FCF_FLOGI_FAILED
2020  * flag so the the round robin slection for the particular priority level
2021  * will try a different fcf record that does not have this bit set.
2022  * If the fcf record is re-read for any reason this flag is cleared brfore
2023  * adding it to the priority list.
2024  **/
2025 void
2026 lpfc_sli4_set_fcf_flogi_fail(struct lpfc_hba *phba, uint16_t fcf_index)
2027 {
2028         struct lpfc_fcf_pri *new_fcf_pri;
2029         new_fcf_pri = &phba->fcf.fcf_pri[fcf_index];
2030         spin_lock_irq(&phba->hbalock);
2031         new_fcf_pri->fcf_rec.flag |= LPFC_FCF_FLOGI_FAILED;
2032         spin_unlock_irq(&phba->hbalock);
2033 }
2034
2035 /**
2036  * lpfc_sli4_fcf_pri_list_add
2037  * @phba: pointer to lpfc hba data structure.
2038  * @fcf_index the index of the fcf record to add
2039  * This routine checks the priority of the fcf_index to be added.
2040  * If it is a lower priority than the current head of the fcf_pri list
2041  * then it is added to the list in the right order.
2042  * If it is the same priority as the current head of the list then it
2043  * is added to the head of the list and its bit in the rr_bmask is set.
2044  * If the fcf_index to be added is of a higher priority than the current
2045  * head of the list then the rr_bmask is cleared, its bit is set in the
2046  * rr_bmask and it is added to the head of the list.
2047  * returns:
2048  * 0=success 1=failure
2049  **/
2050 int lpfc_sli4_fcf_pri_list_add(struct lpfc_hba *phba, uint16_t fcf_index,
2051         struct fcf_record *new_fcf_record)
2052 {
2053         uint16_t current_fcf_pri;
2054         uint16_t last_index;
2055         struct lpfc_fcf_pri *fcf_pri;
2056         struct lpfc_fcf_pri *next_fcf_pri;
2057         struct lpfc_fcf_pri *new_fcf_pri;
2058         int ret;
2059
2060         new_fcf_pri = &phba->fcf.fcf_pri[fcf_index];
2061         lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
2062                 "3059 adding idx x%x pri x%x flg x%x\n",
2063                 fcf_index, new_fcf_record->fip_priority,
2064                  new_fcf_pri->fcf_rec.flag);
2065         spin_lock_irq(&phba->hbalock);
2066         if (new_fcf_pri->fcf_rec.flag & LPFC_FCF_ON_PRI_LIST)
2067                 list_del_init(&new_fcf_pri->list);
2068         new_fcf_pri->fcf_rec.fcf_index = fcf_index;
2069         new_fcf_pri->fcf_rec.priority = new_fcf_record->fip_priority;
2070         if (list_empty(&phba->fcf.fcf_pri_list)) {
2071                 list_add(&new_fcf_pri->list, &phba->fcf.fcf_pri_list);
2072                 ret = lpfc_sli4_fcf_rr_index_set(phba,
2073                                 new_fcf_pri->fcf_rec.fcf_index);
2074                 goto out;
2075         }
2076
2077         last_index = find_first_bit(phba->fcf.fcf_rr_bmask,
2078                                 LPFC_SLI4_FCF_TBL_INDX_MAX);
2079         if (last_index >= LPFC_SLI4_FCF_TBL_INDX_MAX) {
2080                 ret = 0; /* Empty rr list */
2081                 goto out;
2082         }
2083         current_fcf_pri = phba->fcf.fcf_pri[last_index].fcf_rec.priority;
2084         if (new_fcf_pri->fcf_rec.priority <=  current_fcf_pri) {
2085                 list_add(&new_fcf_pri->list, &phba->fcf.fcf_pri_list);
2086                 if (new_fcf_pri->fcf_rec.priority <  current_fcf_pri) {
2087                         memset(phba->fcf.fcf_rr_bmask, 0,
2088                                 sizeof(*phba->fcf.fcf_rr_bmask));
2089                         /* fcfs_at_this_priority_level = 1; */
2090                         phba->fcf.eligible_fcf_cnt = 1;
2091                 } else
2092                         /* fcfs_at_this_priority_level++; */
2093                         phba->fcf.eligible_fcf_cnt++;
2094                 ret = lpfc_sli4_fcf_rr_index_set(phba,
2095                                 new_fcf_pri->fcf_rec.fcf_index);
2096                 goto out;
2097         }
2098
2099         list_for_each_entry_safe(fcf_pri, next_fcf_pri,
2100                                 &phba->fcf.fcf_pri_list, list) {
2101                 if (new_fcf_pri->fcf_rec.priority <=
2102                                 fcf_pri->fcf_rec.priority) {
2103                         if (fcf_pri->list.prev == &phba->fcf.fcf_pri_list)
2104                                 list_add(&new_fcf_pri->list,
2105                                                 &phba->fcf.fcf_pri_list);
2106                         else
2107                                 list_add(&new_fcf_pri->list,
2108                                          &((struct lpfc_fcf_pri *)
2109                                         fcf_pri->list.prev)->list);
2110                         ret = 0;
2111                         goto out;
2112                 } else if (fcf_pri->list.next == &phba->fcf.fcf_pri_list
2113                         || new_fcf_pri->fcf_rec.priority <
2114                                 next_fcf_pri->fcf_rec.priority) {
2115                         list_add(&new_fcf_pri->list, &fcf_pri->list);
2116                         ret = 0;
2117                         goto out;
2118                 }
2119                 if (new_fcf_pri->fcf_rec.priority > fcf_pri->fcf_rec.priority)
2120                         continue;
2121
2122         }
2123         ret = 1;
2124 out:
2125         /* we use = instead of |= to clear the FLOGI_FAILED flag. */
2126         new_fcf_pri->fcf_rec.flag = LPFC_FCF_ON_PRI_LIST;
2127         spin_unlock_irq(&phba->hbalock);
2128         return ret;
2129 }
2130
2131 /**
2132  * lpfc_mbx_cmpl_fcf_scan_read_fcf_rec - fcf scan read_fcf mbox cmpl handler.
2133  * @phba: pointer to lpfc hba data structure.
2134  * @mboxq: pointer to mailbox object.
2135  *
2136  * This function iterates through all the fcf records available in
2137  * HBA and chooses the optimal FCF record for discovery. After finding
2138  * the FCF for discovery it registers the FCF record and kicks start
2139  * discovery.
2140  * If FCF_IN_USE flag is set in currently used FCF, the routine tries to
2141  * use an FCF record which matches fabric name and mac address of the
2142  * currently used FCF record.
2143  * If the driver supports only one FCF, it will try to use the FCF record
2144  * used by BOOT_BIOS.
2145  */
2146 void
2147 lpfc_mbx_cmpl_fcf_scan_read_fcf_rec(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
2148 {
2149         struct fcf_record *new_fcf_record;
2150         uint32_t boot_flag, addr_mode;
2151         uint16_t fcf_index, next_fcf_index;
2152         struct lpfc_fcf_rec *fcf_rec = NULL;
2153         uint16_t vlan_id;
2154         uint32_t seed;
2155         bool select_new_fcf;
2156         int rc;
2157
2158         /* If there is pending FCoE event restart FCF table scan */
2159         if (lpfc_check_pending_fcoe_event(phba, LPFC_SKIP_UNREG_FCF)) {
2160                 lpfc_sli4_mbox_cmd_free(phba, mboxq);
2161                 return;
2162         }
2163
2164         /* Parse the FCF record from the non-embedded mailbox command */
2165         new_fcf_record = lpfc_sli4_fcf_rec_mbox_parse(phba, mboxq,
2166                                                       &next_fcf_index);
2167         if (!new_fcf_record) {
2168                 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
2169                                 "2765 Mailbox command READ_FCF_RECORD "
2170                                 "failed to retrieve a FCF record.\n");
2171                 /* Let next new FCF event trigger fast failover */
2172                 spin_lock_irq(&phba->hbalock);
2173                 phba->hba_flag &= ~FCF_TS_INPROG;
2174                 spin_unlock_irq(&phba->hbalock);
2175                 lpfc_sli4_mbox_cmd_free(phba, mboxq);
2176                 return;
2177         }
2178
2179         /* Check the FCF record against the connection list */
2180         rc = lpfc_match_fcf_conn_list(phba, new_fcf_record, &boot_flag,
2181                                       &addr_mode, &vlan_id);
2182
2183         /* Log the FCF record information if turned on */
2184         lpfc_sli4_log_fcf_record_info(phba, new_fcf_record, vlan_id,
2185                                       next_fcf_index);
2186
2187         /*
2188          * If the fcf record does not match with connect list entries
2189          * read the next entry; otherwise, this is an eligible FCF
2190          * record for roundrobin FCF failover.
2191          */
2192         if (!rc) {
2193                 lpfc_sli4_fcf_pri_list_del(phba,
2194                                         bf_get(lpfc_fcf_record_fcf_index,
2195                                                new_fcf_record));
2196                 lpfc_printf_log(phba, KERN_WARNING, LOG_FIP,
2197                                 "2781 FCF (x%x) failed connection "
2198                                 "list check: (x%x/x%x/%x)\n",
2199                                 bf_get(lpfc_fcf_record_fcf_index,
2200                                        new_fcf_record),
2201                                 bf_get(lpfc_fcf_record_fcf_avail,
2202                                        new_fcf_record),
2203                                 bf_get(lpfc_fcf_record_fcf_valid,
2204                                        new_fcf_record),
2205                                 bf_get(lpfc_fcf_record_fcf_sol,
2206                                        new_fcf_record));
2207                 if ((phba->fcf.fcf_flag & FCF_IN_USE) &&
2208                     lpfc_sli4_fcf_record_match(phba, &phba->fcf.current_rec,
2209                     new_fcf_record, LPFC_FCOE_IGNORE_VID)) {
2210                         if (bf_get(lpfc_fcf_record_fcf_index, new_fcf_record) !=
2211                             phba->fcf.current_rec.fcf_indx) {
2212                                 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
2213                                         "2862 FCF (x%x) matches property "
2214                                         "of in-use FCF (x%x)\n",
2215                                         bf_get(lpfc_fcf_record_fcf_index,
2216                                                new_fcf_record),
2217                                         phba->fcf.current_rec.fcf_indx);
2218                                 goto read_next_fcf;
2219                         }
2220                         /*
2221                          * In case the current in-use FCF record becomes
2222                          * invalid/unavailable during FCF discovery that
2223                          * was not triggered by fast FCF failover process,
2224                          * treat it as fast FCF failover.
2225                          */
2226                         if (!(phba->fcf.fcf_flag & FCF_REDISC_PEND) &&
2227                             !(phba->fcf.fcf_flag & FCF_REDISC_FOV)) {
2228                                 lpfc_printf_log(phba, KERN_WARNING, LOG_FIP,
2229                                                 "2835 Invalid in-use FCF "
2230                                                 "(x%x), enter FCF failover "
2231                                                 "table scan.\n",
2232                                                 phba->fcf.current_rec.fcf_indx);
2233                                 spin_lock_irq(&phba->hbalock);
2234                                 phba->fcf.fcf_flag |= FCF_REDISC_FOV;
2235                                 spin_unlock_irq(&phba->hbalock);
2236                                 lpfc_sli4_mbox_cmd_free(phba, mboxq);
2237                                 lpfc_sli4_fcf_scan_read_fcf_rec(phba,
2238                                                 LPFC_FCOE_FCF_GET_FIRST);
2239                                 return;
2240                         }
2241                 }
2242                 goto read_next_fcf;
2243         } else {
2244                 fcf_index = bf_get(lpfc_fcf_record_fcf_index, new_fcf_record);
2245                 rc = lpfc_sli4_fcf_pri_list_add(phba, fcf_index,
2246                                                         new_fcf_record);
2247                 if (rc)
2248                         goto read_next_fcf;
2249         }
2250
2251         /*
2252          * If this is not the first FCF discovery of the HBA, use last
2253          * FCF record for the discovery. The condition that a rescan
2254          * matches the in-use FCF record: fabric name, switch name, mac
2255          * address, and vlan_id.
2256          */
2257         spin_lock_irq(&phba->hbalock);
2258         if (phba->fcf.fcf_flag & FCF_IN_USE) {
2259                 if (phba->cfg_fcf_failover_policy == LPFC_FCF_FOV &&
2260                         lpfc_sli4_fcf_record_match(phba, &phba->fcf.current_rec,
2261                     new_fcf_record, vlan_id)) {
2262                         if (bf_get(lpfc_fcf_record_fcf_index, new_fcf_record) ==
2263                             phba->fcf.current_rec.fcf_indx) {
2264                                 phba->fcf.fcf_flag |= FCF_AVAILABLE;
2265                                 if (phba->fcf.fcf_flag & FCF_REDISC_PEND)
2266                                         /* Stop FCF redisc wait timer */
2267                                         __lpfc_sli4_stop_fcf_redisc_wait_timer(
2268                                                                         phba);
2269                                 else if (phba->fcf.fcf_flag & FCF_REDISC_FOV)
2270                                         /* Fast failover, mark completed */
2271                                         phba->fcf.fcf_flag &= ~FCF_REDISC_FOV;
2272                                 spin_unlock_irq(&phba->hbalock);
2273                                 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
2274                                                 "2836 New FCF matches in-use "
2275                                                 "FCF (x%x), port_state:x%x, "
2276                                                 "fc_flag:x%x\n",
2277                                                 phba->fcf.current_rec.fcf_indx,
2278                                                 phba->pport->port_state,
2279                                                 phba->pport->fc_flag);
2280                                 goto out;
2281                         } else
2282                                 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
2283                                         "2863 New FCF (x%x) matches "
2284                                         "property of in-use FCF (x%x)\n",
2285                                         bf_get(lpfc_fcf_record_fcf_index,
2286                                                new_fcf_record),
2287                                         phba->fcf.current_rec.fcf_indx);
2288                 }
2289                 /*
2290                  * Read next FCF record from HBA searching for the matching
2291                  * with in-use record only if not during the fast failover
2292                  * period. In case of fast failover period, it shall try to
2293                  * determine whether the FCF record just read should be the
2294                  * next candidate.
2295                  */
2296                 if (!(phba->fcf.fcf_flag & FCF_REDISC_FOV)) {
2297                         spin_unlock_irq(&phba->hbalock);
2298                         goto read_next_fcf;
2299                 }
2300         }
2301         /*
2302          * Update on failover FCF record only if it's in FCF fast-failover
2303          * period; otherwise, update on current FCF record.
2304          */
2305         if (phba->fcf.fcf_flag & FCF_REDISC_FOV)
2306                 fcf_rec = &phba->fcf.failover_rec;
2307         else
2308                 fcf_rec = &phba->fcf.current_rec;
2309
2310         if (phba->fcf.fcf_flag & FCF_AVAILABLE) {
2311                 /*
2312                  * If the driver FCF record does not have boot flag
2313                  * set and new hba fcf record has boot flag set, use
2314                  * the new hba fcf record.
2315                  */
2316                 if (boot_flag && !(fcf_rec->flag & BOOT_ENABLE)) {
2317                         /* Choose this FCF record */
2318                         lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
2319                                         "2837 Update current FCF record "
2320                                         "(x%x) with new FCF record (x%x)\n",
2321                                         fcf_rec->fcf_indx,
2322                                         bf_get(lpfc_fcf_record_fcf_index,
2323                                         new_fcf_record));
2324                         __lpfc_update_fcf_record(phba, fcf_rec, new_fcf_record,
2325                                         addr_mode, vlan_id, BOOT_ENABLE);
2326                         spin_unlock_irq(&phba->hbalock);
2327                         goto read_next_fcf;
2328                 }
2329                 /*
2330                  * If the driver FCF record has boot flag set and the
2331                  * new hba FCF record does not have boot flag, read
2332                  * the next FCF record.
2333                  */
2334                 if (!boot_flag && (fcf_rec->flag & BOOT_ENABLE)) {
2335                         spin_unlock_irq(&phba->hbalock);
2336                         goto read_next_fcf;
2337                 }
2338                 /*
2339                  * If the new hba FCF record has lower priority value
2340                  * than the driver FCF record, use the new record.
2341                  */
2342                 if (new_fcf_record->fip_priority < fcf_rec->priority) {
2343                         /* Choose the new FCF record with lower priority */
2344                         lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
2345                                         "2838 Update current FCF record "
2346                                         "(x%x) with new FCF record (x%x)\n",
2347                                         fcf_rec->fcf_indx,
2348                                         bf_get(lpfc_fcf_record_fcf_index,
2349                                                new_fcf_record));
2350                         __lpfc_update_fcf_record(phba, fcf_rec, new_fcf_record,
2351                                         addr_mode, vlan_id, 0);
2352                         /* Reset running random FCF selection count */
2353                         phba->fcf.eligible_fcf_cnt = 1;
2354                 } else if (new_fcf_record->fip_priority == fcf_rec->priority) {
2355                         /* Update running random FCF selection count */
2356                         phba->fcf.eligible_fcf_cnt++;
2357                         select_new_fcf = lpfc_sli4_new_fcf_random_select(phba,
2358                                                 phba->fcf.eligible_fcf_cnt);
2359                         if (select_new_fcf) {
2360                                 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
2361                                         "2839 Update current FCF record "
2362                                         "(x%x) with new FCF record (x%x)\n",
2363                                         fcf_rec->fcf_indx,
2364                                         bf_get(lpfc_fcf_record_fcf_index,
2365                                                new_fcf_record));
2366                                 /* Choose the new FCF by random selection */
2367                                 __lpfc_update_fcf_record(phba, fcf_rec,
2368                                                          new_fcf_record,
2369                                                          addr_mode, vlan_id, 0);
2370                         }
2371                 }
2372                 spin_unlock_irq(&phba->hbalock);
2373                 goto read_next_fcf;
2374         }
2375         /*
2376          * This is the first suitable FCF record, choose this record for
2377          * initial best-fit FCF.
2378          */
2379         if (fcf_rec) {
2380                 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
2381                                 "2840 Update initial FCF candidate "
2382                                 "with FCF (x%x)\n",
2383                                 bf_get(lpfc_fcf_record_fcf_index,
2384                                        new_fcf_record));
2385                 __lpfc_update_fcf_record(phba, fcf_rec, new_fcf_record,
2386                                          addr_mode, vlan_id, (boot_flag ?
2387                                          BOOT_ENABLE : 0));
2388                 phba->fcf.fcf_flag |= FCF_AVAILABLE;
2389                 /* Setup initial running random FCF selection count */
2390                 phba->fcf.eligible_fcf_cnt = 1;
2391                 /* Seeding the random number generator for random selection */
2392                 seed = (uint32_t)(0xFFFFFFFF & jiffies);
2393                 prandom_seed(seed);
2394         }
2395         spin_unlock_irq(&phba->hbalock);
2396         goto read_next_fcf;
2397
2398 read_next_fcf:
2399         lpfc_sli4_mbox_cmd_free(phba, mboxq);
2400         if (next_fcf_index == LPFC_FCOE_FCF_NEXT_NONE || next_fcf_index == 0) {
2401                 if (phba->fcf.fcf_flag & FCF_REDISC_FOV) {
2402                         /*
2403                          * Case of FCF fast failover scan
2404                          */
2405
2406                         /*
2407                          * It has not found any suitable FCF record, cancel
2408                          * FCF scan inprogress, and do nothing
2409                          */
2410                         if (!(phba->fcf.failover_rec.flag & RECORD_VALID)) {
2411                                 lpfc_printf_log(phba, KERN_WARNING, LOG_FIP,
2412                                                "2782 No suitable FCF found: "
2413                                                "(x%x/x%x)\n",
2414                                                phba->fcoe_eventtag_at_fcf_scan,
2415                                                bf_get(lpfc_fcf_record_fcf_index,
2416                                                       new_fcf_record));
2417                                 spin_lock_irq(&phba->hbalock);
2418                                 if (phba->hba_flag & HBA_DEVLOSS_TMO) {
2419                                         phba->hba_flag &= ~FCF_TS_INPROG;
2420                                         spin_unlock_irq(&phba->hbalock);
2421                                         /* Unregister in-use FCF and rescan */
2422                                         lpfc_printf_log(phba, KERN_INFO,
2423                                                         LOG_FIP,
2424                                                         "2864 On devloss tmo "
2425                                                         "unreg in-use FCF and "
2426                                                         "rescan FCF table\n");
2427                                         lpfc_unregister_fcf_rescan(phba);
2428                                         return;
2429                                 }
2430                                 /*
2431                                  * Let next new FCF event trigger fast failover
2432                                  */
2433                                 phba->hba_flag &= ~FCF_TS_INPROG;
2434                                 spin_unlock_irq(&phba->hbalock);
2435                                 return;
2436                         }
2437                         /*
2438                          * It has found a suitable FCF record that is not
2439                          * the same as in-use FCF record, unregister the
2440                          * in-use FCF record, replace the in-use FCF record
2441                          * with the new FCF record, mark FCF fast failover
2442                          * completed, and then start register the new FCF
2443                          * record.
2444                          */
2445
2446                         /* Unregister the current in-use FCF record */
2447                         lpfc_unregister_fcf(phba);
2448
2449                         /* Replace in-use record with the new record */
2450                         lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
2451                                         "2842 Replace in-use FCF (x%x) "
2452                                         "with failover FCF (x%x)\n",
2453                                         phba->fcf.current_rec.fcf_indx,
2454                                         phba->fcf.failover_rec.fcf_indx);
2455                         memcpy(&phba->fcf.current_rec,
2456                                &phba->fcf.failover_rec,
2457                                sizeof(struct lpfc_fcf_rec));
2458                         /*
2459                          * Mark the fast FCF failover rediscovery completed
2460                          * and the start of the first round of the roundrobin
2461                          * FCF failover.
2462                          */
2463                         spin_lock_irq(&phba->hbalock);
2464                         phba->fcf.fcf_flag &= ~FCF_REDISC_FOV;
2465                         spin_unlock_irq(&phba->hbalock);
2466                         /* Register to the new FCF record */
2467                         lpfc_register_fcf(phba);
2468                 } else {
2469                         /*
2470                          * In case of transaction period to fast FCF failover,
2471                          * do nothing when search to the end of the FCF table.
2472                          */
2473                         if ((phba->fcf.fcf_flag & FCF_REDISC_EVT) ||
2474                             (phba->fcf.fcf_flag & FCF_REDISC_PEND))
2475                                 return;
2476
2477                         if (phba->cfg_fcf_failover_policy == LPFC_FCF_FOV &&
2478                                 phba->fcf.fcf_flag & FCF_IN_USE) {
2479                                 /*
2480                                  * In case the current in-use FCF record no
2481                                  * longer existed during FCF discovery that
2482                                  * was not triggered by fast FCF failover
2483                                  * process, treat it as fast FCF failover.
2484                                  */
2485                                 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
2486                                                 "2841 In-use FCF record (x%x) "
2487                                                 "not reported, entering fast "
2488                                                 "FCF failover mode scanning.\n",
2489                                                 phba->fcf.current_rec.fcf_indx);
2490                                 spin_lock_irq(&phba->hbalock);
2491                                 phba->fcf.fcf_flag |= FCF_REDISC_FOV;
2492                                 spin_unlock_irq(&phba->hbalock);
2493                                 lpfc_sli4_fcf_scan_read_fcf_rec(phba,
2494                                                 LPFC_FCOE_FCF_GET_FIRST);
2495                                 return;
2496                         }
2497                         /* Register to the new FCF record */
2498                         lpfc_register_fcf(phba);
2499                 }
2500         } else
2501                 lpfc_sli4_fcf_scan_read_fcf_rec(phba, next_fcf_index);
2502         return;
2503
2504 out:
2505         lpfc_sli4_mbox_cmd_free(phba, mboxq);
2506         lpfc_register_fcf(phba);
2507
2508         return;
2509 }
2510
2511 /**
2512  * lpfc_mbx_cmpl_fcf_rr_read_fcf_rec - fcf roundrobin read_fcf mbox cmpl hdler
2513  * @phba: pointer to lpfc hba data structure.
2514  * @mboxq: pointer to mailbox object.
2515  *
2516  * This is the callback function for FLOGI failure roundrobin FCF failover
2517  * read FCF record mailbox command from the eligible FCF record bmask for
2518  * performing the failover. If the FCF read back is not valid/available, it
2519  * fails through to retrying FLOGI to the currently registered FCF again.
2520  * Otherwise, if the FCF read back is valid and available, it will set the
2521  * newly read FCF record to the failover FCF record, unregister currently
2522  * registered FCF record, copy the failover FCF record to the current
2523  * FCF record, and then register the current FCF record before proceeding
2524  * to trying FLOGI on the new failover FCF.
2525  */
2526 void
2527 lpfc_mbx_cmpl_fcf_rr_read_fcf_rec(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
2528 {
2529         struct fcf_record *new_fcf_record;
2530         uint32_t boot_flag, addr_mode;
2531         uint16_t next_fcf_index, fcf_index;
2532         uint16_t current_fcf_index;
2533         uint16_t vlan_id;
2534         int rc;
2535
2536         /* If link state is not up, stop the roundrobin failover process */
2537         if (phba->link_state < LPFC_LINK_UP) {
2538                 spin_lock_irq(&phba->hbalock);
2539                 phba->fcf.fcf_flag &= ~FCF_DISCOVERY;
2540                 phba->hba_flag &= ~FCF_RR_INPROG;
2541                 spin_unlock_irq(&phba->hbalock);
2542                 goto out;
2543         }
2544
2545         /* Parse the FCF record from the non-embedded mailbox command */
2546         new_fcf_record = lpfc_sli4_fcf_rec_mbox_parse(phba, mboxq,
2547                                                       &next_fcf_index);
2548         if (!new_fcf_record) {
2549                 lpfc_printf_log(phba, KERN_WARNING, LOG_FIP,
2550                                 "2766 Mailbox command READ_FCF_RECORD "
2551                                 "failed to retrieve a FCF record.\n");
2552                 goto error_out;
2553         }
2554
2555         /* Get the needed parameters from FCF record */
2556         rc = lpfc_match_fcf_conn_list(phba, new_fcf_record, &boot_flag,
2557                                       &addr_mode, &vlan_id);
2558
2559         /* Log the FCF record information if turned on */
2560         lpfc_sli4_log_fcf_record_info(phba, new_fcf_record, vlan_id,
2561                                       next_fcf_index);
2562
2563         fcf_index = bf_get(lpfc_fcf_record_fcf_index, new_fcf_record);
2564         if (!rc) {
2565                 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
2566                                 "2848 Remove ineligible FCF (x%x) from "
2567                                 "from roundrobin bmask\n", fcf_index);
2568                 /* Clear roundrobin bmask bit for ineligible FCF */
2569                 lpfc_sli4_fcf_rr_index_clear(phba, fcf_index);
2570                 /* Perform next round of roundrobin FCF failover */
2571                 fcf_index = lpfc_sli4_fcf_rr_next_index_get(phba);
2572                 rc = lpfc_sli4_fcf_rr_next_proc(phba->pport, fcf_index);
2573                 if (rc)
2574                         goto out;
2575                 goto error_out;
2576         }
2577
2578         if (fcf_index == phba->fcf.current_rec.fcf_indx) {
2579                 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
2580                                 "2760 Perform FLOGI roundrobin FCF failover: "
2581                                 "FCF (x%x) back to FCF (x%x)\n",
2582                                 phba->fcf.current_rec.fcf_indx, fcf_index);
2583                 /* Wait 500 ms before retrying FLOGI to current FCF */
2584                 msleep(500);
2585                 lpfc_issue_init_vfi(phba->pport);
2586                 goto out;
2587         }
2588
2589         /* Upload new FCF record to the failover FCF record */
2590         lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
2591                         "2834 Update current FCF (x%x) with new FCF (x%x)\n",
2592                         phba->fcf.failover_rec.fcf_indx, fcf_index);
2593         spin_lock_irq(&phba->hbalock);
2594         __lpfc_update_fcf_record(phba, &phba->fcf.failover_rec,
2595                                  new_fcf_record, addr_mode, vlan_id,
2596                                  (boot_flag ? BOOT_ENABLE : 0));
2597         spin_unlock_irq(&phba->hbalock);
2598
2599         current_fcf_index = phba->fcf.current_rec.fcf_indx;
2600
2601         /* Unregister the current in-use FCF record */
2602         lpfc_unregister_fcf(phba);
2603
2604         /* Replace in-use record with the new record */
2605         memcpy(&phba->fcf.current_rec, &phba->fcf.failover_rec,
2606                sizeof(struct lpfc_fcf_rec));
2607
2608         lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
2609                         "2783 Perform FLOGI roundrobin FCF failover: FCF "
2610                         "(x%x) to FCF (x%x)\n", current_fcf_index, fcf_index);
2611
2612 error_out:
2613         lpfc_register_fcf(phba);
2614 out:
2615         lpfc_sli4_mbox_cmd_free(phba, mboxq);
2616 }
2617
2618 /**
2619  * lpfc_mbx_cmpl_read_fcf_rec - read fcf completion handler.
2620  * @phba: pointer to lpfc hba data structure.
2621  * @mboxq: pointer to mailbox object.
2622  *
2623  * This is the callback function of read FCF record mailbox command for
2624  * updating the eligible FCF bmask for FLOGI failure roundrobin FCF
2625  * failover when a new FCF event happened. If the FCF read back is
2626  * valid/available and it passes the connection list check, it updates
2627  * the bmask for the eligible FCF record for roundrobin failover.
2628  */
2629 void
2630 lpfc_mbx_cmpl_read_fcf_rec(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
2631 {
2632         struct fcf_record *new_fcf_record;
2633         uint32_t boot_flag, addr_mode;
2634         uint16_t fcf_index, next_fcf_index;
2635         uint16_t vlan_id;
2636         int rc;
2637
2638         /* If link state is not up, no need to proceed */
2639         if (phba->link_state < LPFC_LINK_UP)
2640                 goto out;
2641
2642         /* If FCF discovery period is over, no need to proceed */
2643         if (!(phba->fcf.fcf_flag & FCF_DISCOVERY))
2644                 goto out;
2645
2646         /* Parse the FCF record from the non-embedded mailbox command */
2647         new_fcf_record = lpfc_sli4_fcf_rec_mbox_parse(phba, mboxq,
2648                                                       &next_fcf_index);
2649         if (!new_fcf_record) {
2650                 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
2651                                 "2767 Mailbox command READ_FCF_RECORD "
2652                                 "failed to retrieve a FCF record.\n");
2653                 goto out;
2654         }
2655
2656         /* Check the connection list for eligibility */
2657         rc = lpfc_match_fcf_conn_list(phba, new_fcf_record, &boot_flag,
2658                                       &addr_mode, &vlan_id);
2659
2660         /* Log the FCF record information if turned on */
2661         lpfc_sli4_log_fcf_record_info(phba, new_fcf_record, vlan_id,
2662                                       next_fcf_index);
2663
2664         if (!rc)
2665                 goto out;
2666
2667         /* Update the eligible FCF record index bmask */
2668         fcf_index = bf_get(lpfc_fcf_record_fcf_index, new_fcf_record);
2669
2670         rc = lpfc_sli4_fcf_pri_list_add(phba, fcf_index, new_fcf_record);
2671
2672 out:
2673         lpfc_sli4_mbox_cmd_free(phba, mboxq);
2674 }
2675
2676 /**
2677  * lpfc_init_vfi_cmpl - Completion handler for init_vfi mbox command.
2678  * @phba: pointer to lpfc hba data structure.
2679  * @mboxq: pointer to mailbox data structure.
2680  *
2681  * This function handles completion of init vfi mailbox command.
2682  */
2683 void
2684 lpfc_init_vfi_cmpl(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
2685 {
2686         struct lpfc_vport *vport = mboxq->vport;
2687
2688         /*
2689          * VFI not supported on interface type 0, just do the flogi
2690          * Also continue if the VFI is in use - just use the same one.
2691          */
2692         if (mboxq->u.mb.mbxStatus &&
2693             (bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf) !=
2694                         LPFC_SLI_INTF_IF_TYPE_0) &&
2695             mboxq->u.mb.mbxStatus != MBX_VFI_IN_USE) {
2696                 lpfc_printf_vlog(vport, KERN_ERR,
2697                                 LOG_MBOX,
2698                                 "2891 Init VFI mailbox failed 0x%x\n",
2699                                 mboxq->u.mb.mbxStatus);
2700                 mempool_free(mboxq, phba->mbox_mem_pool);
2701                 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
2702                 return;
2703         }
2704
2705         lpfc_initial_flogi(vport);
2706         mempool_free(mboxq, phba->mbox_mem_pool);
2707         return;
2708 }
2709
2710 /**
2711  * lpfc_issue_init_vfi - Issue init_vfi mailbox command.
2712  * @vport: pointer to lpfc_vport data structure.
2713  *
2714  * This function issue a init_vfi mailbox command to initialize the VFI and
2715  * VPI for the physical port.
2716  */
2717 void
2718 lpfc_issue_init_vfi(struct lpfc_vport *vport)
2719 {
2720         LPFC_MBOXQ_t *mboxq;
2721         int rc;
2722         struct lpfc_hba *phba = vport->phba;
2723
2724         mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
2725         if (!mboxq) {
2726                 lpfc_printf_vlog(vport, KERN_ERR,
2727                         LOG_MBOX, "2892 Failed to allocate "
2728                         "init_vfi mailbox\n");
2729                 return;
2730         }
2731         lpfc_init_vfi(mboxq, vport);
2732         mboxq->mbox_cmpl = lpfc_init_vfi_cmpl;
2733         rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
2734         if (rc == MBX_NOT_FINISHED) {
2735                 lpfc_printf_vlog(vport, KERN_ERR,
2736                         LOG_MBOX, "2893 Failed to issue init_vfi mailbox\n");
2737                 mempool_free(mboxq, vport->phba->mbox_mem_pool);
2738         }
2739 }
2740
2741 /**
2742  * lpfc_init_vpi_cmpl - Completion handler for init_vpi mbox command.
2743  * @phba: pointer to lpfc hba data structure.
2744  * @mboxq: pointer to mailbox data structure.
2745  *
2746  * This function handles completion of init vpi mailbox command.
2747  */
2748 void
2749 lpfc_init_vpi_cmpl(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
2750 {
2751         struct lpfc_vport *vport = mboxq->vport;
2752         struct lpfc_nodelist *ndlp;
2753         struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2754
2755         if (mboxq->u.mb.mbxStatus) {
2756                 lpfc_printf_vlog(vport, KERN_ERR,
2757                                 LOG_MBOX,
2758                                 "2609 Init VPI mailbox failed 0x%x\n",
2759                                 mboxq->u.mb.mbxStatus);
2760                 mempool_free(mboxq, phba->mbox_mem_pool);
2761                 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
2762                 return;
2763         }
2764         spin_lock_irq(shost->host_lock);
2765         vport->fc_flag &= ~FC_VPORT_NEEDS_INIT_VPI;
2766         spin_unlock_irq(shost->host_lock);
2767
2768         /* If this port is physical port or FDISC is done, do reg_vpi */
2769         if ((phba->pport == vport) || (vport->port_state == LPFC_FDISC)) {
2770                         ndlp = lpfc_findnode_did(vport, Fabric_DID);
2771                         if (!ndlp)
2772                                 lpfc_printf_vlog(vport, KERN_ERR,
2773                                         LOG_DISCOVERY,
2774                                         "2731 Cannot find fabric "
2775                                         "controller node\n");
2776                         else
2777                                 lpfc_register_new_vport(phba, vport, ndlp);
2778                         mempool_free(mboxq, phba->mbox_mem_pool);
2779                         return;
2780         }
2781
2782         if (phba->link_flag & LS_NPIV_FAB_SUPPORTED)
2783                 lpfc_initial_fdisc(vport);
2784         else {
2785                 lpfc_vport_set_state(vport, FC_VPORT_NO_FABRIC_SUPP);
2786                 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
2787                                  "2606 No NPIV Fabric support\n");
2788         }
2789         mempool_free(mboxq, phba->mbox_mem_pool);
2790         return;
2791 }
2792
2793 /**
2794  * lpfc_issue_init_vpi - Issue init_vpi mailbox command.
2795  * @vport: pointer to lpfc_vport data structure.
2796  *
2797  * This function issue a init_vpi mailbox command to initialize
2798  * VPI for the vport.
2799  */
2800 void
2801 lpfc_issue_init_vpi(struct lpfc_vport *vport)
2802 {
2803         LPFC_MBOXQ_t *mboxq;
2804         int rc, vpi;
2805
2806         if ((vport->port_type != LPFC_PHYSICAL_PORT) && (!vport->vpi)) {
2807                 vpi = lpfc_alloc_vpi(vport->phba);
2808                 if (!vpi) {
2809                         lpfc_printf_vlog(vport, KERN_ERR,
2810                                          LOG_MBOX,
2811                                          "3303 Failed to obtain vport vpi\n");
2812                         lpfc_vport_set_state(vport, FC_VPORT_FAILED);
2813                         return;
2814                 }
2815                 vport->vpi = vpi;
2816         }
2817
2818         mboxq = mempool_alloc(vport->phba->mbox_mem_pool, GFP_KERNEL);
2819         if (!mboxq) {
2820                 lpfc_printf_vlog(vport, KERN_ERR,
2821                         LOG_MBOX, "2607 Failed to allocate "
2822                         "init_vpi mailbox\n");
2823                 return;
2824         }
2825         lpfc_init_vpi(vport->phba, mboxq, vport->vpi);
2826         mboxq->vport = vport;
2827         mboxq->mbox_cmpl = lpfc_init_vpi_cmpl;
2828         rc = lpfc_sli_issue_mbox(vport->phba, mboxq, MBX_NOWAIT);
2829         if (rc == MBX_NOT_FINISHED) {
2830                 lpfc_printf_vlog(vport, KERN_ERR,
2831                         LOG_MBOX, "2608 Failed to issue init_vpi mailbox\n");
2832                 mempool_free(mboxq, vport->phba->mbox_mem_pool);
2833         }
2834 }
2835
2836 /**
2837  * lpfc_start_fdiscs - send fdiscs for each vports on this port.
2838  * @phba: pointer to lpfc hba data structure.
2839  *
2840  * This function loops through the list of vports on the @phba and issues an
2841  * FDISC if possible.
2842  */
2843 void
2844 lpfc_start_fdiscs(struct lpfc_hba *phba)
2845 {
2846         struct lpfc_vport **vports;
2847         int i;
2848
2849         vports = lpfc_create_vport_work_array(phba);
2850         if (vports != NULL) {
2851                 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
2852                         if (vports[i]->port_type == LPFC_PHYSICAL_PORT)
2853                                 continue;
2854                         /* There are no vpi for this vport */
2855                         if (vports[i]->vpi > phba->max_vpi) {
2856                                 lpfc_vport_set_state(vports[i],
2857                                                      FC_VPORT_FAILED);
2858                                 continue;
2859                         }
2860                         if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
2861                                 lpfc_vport_set_state(vports[i],
2862                                                      FC_VPORT_LINKDOWN);
2863                                 continue;
2864                         }
2865                         if (vports[i]->fc_flag & FC_VPORT_NEEDS_INIT_VPI) {
2866                                 lpfc_issue_init_vpi(vports[i]);
2867                                 continue;
2868                         }
2869                         if (phba->link_flag & LS_NPIV_FAB_SUPPORTED)
2870                                 lpfc_initial_fdisc(vports[i]);
2871                         else {
2872                                 lpfc_vport_set_state(vports[i],
2873                                                      FC_VPORT_NO_FABRIC_SUPP);
2874                                 lpfc_printf_vlog(vports[i], KERN_ERR,
2875                                                  LOG_ELS,
2876                                                  "0259 No NPIV "
2877                                                  "Fabric support\n");
2878                         }
2879                 }
2880         }
2881         lpfc_destroy_vport_work_array(phba, vports);
2882 }
2883
2884 void
2885 lpfc_mbx_cmpl_reg_vfi(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
2886 {
2887         struct lpfc_dmabuf *dmabuf = mboxq->context1;
2888         struct lpfc_vport *vport = mboxq->vport;
2889         struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2890
2891         /*
2892          * VFI not supported for interface type 0, so ignore any mailbox
2893          * error (except VFI in use) and continue with the discovery.
2894          */
2895         if (mboxq->u.mb.mbxStatus &&
2896             (bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf) !=
2897                         LPFC_SLI_INTF_IF_TYPE_0) &&
2898             mboxq->u.mb.mbxStatus != MBX_VFI_IN_USE) {
2899                 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
2900                          "2018 REG_VFI mbxStatus error x%x "
2901                          "HBA state x%x\n",
2902                          mboxq->u.mb.mbxStatus, vport->port_state);
2903                 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
2904                         /* FLOGI failed, use loop map to make discovery list */
2905                         lpfc_disc_list_loopmap(vport);
2906                         /* Start discovery */
2907                         lpfc_disc_start(vport);
2908                         goto out_free_mem;
2909                 }
2910                 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
2911                 goto out_free_mem;
2912         }
2913
2914         /* If the VFI is already registered, there is nothing else to do
2915          * Unless this was a VFI update and we are in PT2PT mode, then
2916          * we should drop through to set the port state to ready.
2917          */
2918         if (vport->fc_flag & FC_VFI_REGISTERED)
2919                 if (!(phba->sli_rev == LPFC_SLI_REV4 &&
2920                       vport->fc_flag & FC_PT2PT))
2921                         goto out_free_mem;
2922
2923         /* The VPI is implicitly registered when the VFI is registered */
2924         spin_lock_irq(shost->host_lock);
2925         vport->vpi_state |= LPFC_VPI_REGISTERED;
2926         vport->fc_flag |= FC_VFI_REGISTERED;
2927         vport->fc_flag &= ~FC_VPORT_NEEDS_REG_VPI;
2928         vport->fc_flag &= ~FC_VPORT_NEEDS_INIT_VPI;
2929         spin_unlock_irq(shost->host_lock);
2930
2931         /* In case SLI4 FC loopback test, we are ready */
2932         if ((phba->sli_rev == LPFC_SLI_REV4) &&
2933             (phba->link_flag & LS_LOOPBACK_MODE)) {
2934                 phba->link_state = LPFC_HBA_READY;
2935                 goto out_free_mem;
2936         }
2937
2938         lpfc_printf_vlog(vport, KERN_INFO, LOG_SLI,
2939                          "3313 cmpl reg vfi  port_state:%x fc_flag:%x myDid:%x "
2940                          "alpacnt:%d LinkState:%x topology:%x\n",
2941                          vport->port_state, vport->fc_flag, vport->fc_myDID,
2942                          vport->phba->alpa_map[0],
2943                          phba->link_state, phba->fc_topology);
2944
2945         if (vport->port_state == LPFC_FABRIC_CFG_LINK) {
2946                 /*
2947                  * For private loop or for NPort pt2pt,
2948                  * just start discovery and we are done.
2949                  */
2950                 if ((vport->fc_flag & FC_PT2PT) ||
2951                     ((phba->fc_topology == LPFC_TOPOLOGY_LOOP) &&
2952                     !(vport->fc_flag & FC_PUBLIC_LOOP))) {
2953
2954                         /* Use loop map to make discovery list */
2955                         lpfc_disc_list_loopmap(vport);
2956                         /* Start discovery */
2957                         if (vport->fc_flag & FC_PT2PT)
2958                                 vport->port_state = LPFC_VPORT_READY;
2959                         else
2960                                 lpfc_disc_start(vport);
2961                 } else {
2962                         lpfc_start_fdiscs(phba);
2963                         lpfc_do_scr_ns_plogi(phba, vport);
2964                 }
2965         }
2966
2967 out_free_mem:
2968         mempool_free(mboxq, phba->mbox_mem_pool);
2969         lpfc_mbuf_free(phba, dmabuf->virt, dmabuf->phys);
2970         kfree(dmabuf);
2971         return;
2972 }
2973
2974 static void
2975 lpfc_mbx_cmpl_read_sparam(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
2976 {
2977         MAILBOX_t *mb = &pmb->u.mb;
2978         struct lpfc_dmabuf *mp = (struct lpfc_dmabuf *) pmb->context1;
2979         struct lpfc_vport  *vport = pmb->vport;
2980
2981
2982         /* Check for error */
2983         if (mb->mbxStatus) {
2984                 /* READ_SPARAM mbox error <mbxStatus> state <hba_state> */
2985                 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
2986                                  "0319 READ_SPARAM mbxStatus error x%x "
2987                                  "hba state x%x>\n",
2988                                  mb->mbxStatus, vport->port_state);
2989                 lpfc_linkdown(phba);
2990                 goto out;
2991         }
2992
2993         memcpy((uint8_t *) &vport->fc_sparam, (uint8_t *) mp->virt,
2994                sizeof (struct serv_parm));
2995         lpfc_update_vport_wwn(vport);
2996         if (vport->port_type == LPFC_PHYSICAL_PORT) {
2997                 memcpy(&phba->wwnn, &vport->fc_nodename, sizeof(phba->wwnn));
2998                 memcpy(&phba->wwpn, &vport->fc_portname, sizeof(phba->wwnn));
2999         }
3000
3001         lpfc_mbuf_free(phba, mp->virt, mp->phys);
3002         kfree(mp);
3003         mempool_free(pmb, phba->mbox_mem_pool);
3004         return;
3005
3006 out:
3007         pmb->context1 = NULL;
3008         lpfc_mbuf_free(phba, mp->virt, mp->phys);
3009         kfree(mp);
3010         lpfc_issue_clear_la(phba, vport);
3011         mempool_free(pmb, phba->mbox_mem_pool);
3012         return;
3013 }
3014
3015 static void
3016 lpfc_mbx_process_link_up(struct lpfc_hba *phba, struct lpfc_mbx_read_top *la)
3017 {
3018         struct lpfc_vport *vport = phba->pport;
3019         LPFC_MBOXQ_t *sparam_mbox, *cfglink_mbox = NULL;
3020         struct Scsi_Host *shost;
3021         int i;
3022         struct lpfc_dmabuf *mp;
3023         int rc;
3024         struct fcf_record *fcf_record;
3025         uint32_t fc_flags = 0;
3026
3027         spin_lock_irq(&phba->hbalock);
3028         switch (bf_get(lpfc_mbx_read_top_link_spd, la)) {
3029         case LPFC_LINK_SPEED_1GHZ:
3030         case LPFC_LINK_SPEED_2GHZ:
3031         case LPFC_LINK_SPEED_4GHZ:
3032         case LPFC_LINK_SPEED_8GHZ:
3033         case LPFC_LINK_SPEED_10GHZ:
3034         case LPFC_LINK_SPEED_16GHZ:
3035                 phba->fc_linkspeed = bf_get(lpfc_mbx_read_top_link_spd, la);
3036                 break;
3037         default:
3038                 phba->fc_linkspeed = LPFC_LINK_SPEED_UNKNOWN;
3039                 break;
3040         }
3041
3042         if (phba->fc_topology &&
3043             phba->fc_topology != bf_get(lpfc_mbx_read_top_topology, la)) {
3044                 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
3045                                 "3314 Toplogy changed was 0x%x is 0x%x\n",
3046                                 phba->fc_topology,
3047                                 bf_get(lpfc_mbx_read_top_topology, la));
3048                 phba->fc_topology_changed = 1;
3049         }
3050
3051         phba->fc_topology = bf_get(lpfc_mbx_read_top_topology, la);
3052         phba->link_flag &= ~LS_NPIV_FAB_SUPPORTED;
3053
3054         shost = lpfc_shost_from_vport(vport);
3055         if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
3056                 phba->sli3_options &= ~LPFC_SLI3_NPIV_ENABLED;
3057
3058                 /* if npiv is enabled and this adapter supports npiv log
3059                  * a message that npiv is not supported in this topology
3060                  */
3061                 if (phba->cfg_enable_npiv && phba->max_vpi)
3062                         lpfc_printf_log(phba, KERN_ERR, LOG_LINK_EVENT,
3063                                 "1309 Link Up Event npiv not supported in loop "
3064                                 "topology\n");
3065                                 /* Get Loop Map information */
3066                 if (bf_get(lpfc_mbx_read_top_il, la))
3067                         fc_flags |= FC_LBIT;
3068
3069                 vport->fc_myDID = bf_get(lpfc_mbx_read_top_alpa_granted, la);
3070                 i = la->lilpBde64.tus.f.bdeSize;
3071
3072                 if (i == 0) {
3073                         phba->alpa_map[0] = 0;
3074                 } else {
3075                         if (vport->cfg_log_verbose & LOG_LINK_EVENT) {
3076                                 int numalpa, j, k;
3077                                 union {
3078                                         uint8_t pamap[16];
3079                                         struct {
3080                                                 uint32_t wd1;
3081                                                 uint32_t wd2;
3082                                                 uint32_t wd3;
3083                                                 uint32_t wd4;
3084                                         } pa;
3085                                 } un;
3086                                 numalpa = phba->alpa_map[0];
3087                                 j = 0;
3088                                 while (j < numalpa) {
3089                                         memset(un.pamap, 0, 16);
3090                                         for (k = 1; j < numalpa; k++) {
3091                                                 un.pamap[k - 1] =
3092                                                         phba->alpa_map[j + 1];
3093                                                 j++;
3094                                                 if (k == 16)
3095                                                         break;
3096                                         }
3097                                         /* Link Up Event ALPA map */
3098                                         lpfc_printf_log(phba,
3099                                                         KERN_WARNING,
3100                                                         LOG_LINK_EVENT,
3101                                                         "1304 Link Up Event "
3102                                                         "ALPA map Data: x%x "
3103                                                         "x%x x%x x%x\n",
3104                                                         un.pa.wd1, un.pa.wd2,
3105                                                         un.pa.wd3, un.pa.wd4);
3106                                 }
3107                         }
3108                 }
3109         } else {
3110                 if (!(phba->sli3_options & LPFC_SLI3_NPIV_ENABLED)) {
3111                         if (phba->max_vpi && phba->cfg_enable_npiv &&
3112                            (phba->sli_rev >= LPFC_SLI_REV3))
3113                                 phba->sli3_options |= LPFC_SLI3_NPIV_ENABLED;
3114                 }
3115                 vport->fc_myDID = phba->fc_pref_DID;
3116                 fc_flags |= FC_LBIT;
3117         }
3118         spin_unlock_irq(&phba->hbalock);
3119
3120         if (fc_flags) {
3121                 spin_lock_irq(shost->host_lock);
3122                 vport->fc_flag |= fc_flags;
3123                 spin_unlock_irq(shost->host_lock);
3124         }
3125
3126         lpfc_linkup(phba);
3127         sparam_mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
3128         if (!sparam_mbox)
3129                 goto out;
3130
3131         rc = lpfc_read_sparam(phba, sparam_mbox, 0);
3132         if (rc) {
3133                 mempool_free(sparam_mbox, phba->mbox_mem_pool);
3134                 goto out;
3135         }
3136         sparam_mbox->vport = vport;
3137         sparam_mbox->mbox_cmpl = lpfc_mbx_cmpl_read_sparam;
3138         rc = lpfc_sli_issue_mbox(phba, sparam_mbox, MBX_NOWAIT);
3139         if (rc == MBX_NOT_FINISHED) {
3140                 mp = (struct lpfc_dmabuf *) sparam_mbox->context1;
3141                 lpfc_mbuf_free(phba, mp->virt, mp->phys);
3142                 kfree(mp);
3143                 mempool_free(sparam_mbox, phba->mbox_mem_pool);
3144                 goto out;
3145         }
3146
3147         if (!(phba->hba_flag & HBA_FCOE_MODE)) {
3148                 cfglink_mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
3149                 if (!cfglink_mbox)
3150                         goto out;
3151                 vport->port_state = LPFC_LOCAL_CFG_LINK;
3152                 lpfc_config_link(phba, cfglink_mbox);
3153                 cfglink_mbox->vport = vport;
3154                 cfglink_mbox->mbox_cmpl = lpfc_mbx_cmpl_local_config_link;
3155                 rc = lpfc_sli_issue_mbox(phba, cfglink_mbox, MBX_NOWAIT);
3156                 if (rc == MBX_NOT_FINISHED) {
3157                         mempool_free(cfglink_mbox, phba->mbox_mem_pool);
3158                         goto out;
3159                 }
3160         } else {
3161                 vport->port_state = LPFC_VPORT_UNKNOWN;
3162                 /*
3163                  * Add the driver's default FCF record at FCF index 0 now. This
3164                  * is phase 1 implementation that support FCF index 0 and driver
3165                  * defaults.
3166                  */
3167                 if (!(phba->hba_flag & HBA_FIP_SUPPORT)) {
3168                         fcf_record = kzalloc(sizeof(struct fcf_record),
3169                                         GFP_KERNEL);
3170                         if (unlikely(!fcf_record)) {
3171                                 lpfc_printf_log(phba, KERN_ERR,
3172                                         LOG_MBOX | LOG_SLI,
3173                                         "2554 Could not allocate memory for "
3174                                         "fcf record\n");
3175                                 rc = -ENODEV;
3176                                 goto out;
3177                         }
3178
3179                         lpfc_sli4_build_dflt_fcf_record(phba, fcf_record,
3180                                                 LPFC_FCOE_FCF_DEF_INDEX);
3181                         rc = lpfc_sli4_add_fcf_record(phba, fcf_record);
3182                         if (unlikely(rc)) {
3183                                 lpfc_printf_log(phba, KERN_ERR,
3184                                         LOG_MBOX | LOG_SLI,
3185                                         "2013 Could not manually add FCF "
3186                                         "record 0, status %d\n", rc);
3187                                 rc = -ENODEV;
3188                                 kfree(fcf_record);
3189                                 goto out;
3190                         }
3191                         kfree(fcf_record);
3192                 }
3193                 /*
3194                  * The driver is expected to do FIP/FCF. Call the port
3195                  * and get the FCF Table.
3196                  */
3197                 spin_lock_irq(&phba->hbalock);
3198                 if (phba->hba_flag & FCF_TS_INPROG) {
3199                         spin_unlock_irq(&phba->hbalock);
3200                         return;
3201                 }
3202                 /* This is the initial FCF discovery scan */
3203                 phba->fcf.fcf_flag |= FCF_INIT_DISC;
3204                 spin_unlock_irq(&phba->hbalock);
3205                 lpfc_printf_log(phba, KERN_INFO, LOG_FIP | LOG_DISCOVERY,
3206                                 "2778 Start FCF table scan at linkup\n");
3207                 rc = lpfc_sli4_fcf_scan_read_fcf_rec(phba,
3208                                                      LPFC_FCOE_FCF_GET_FIRST);
3209                 if (rc) {
3210                         spin_lock_irq(&phba->hbalock);
3211                         phba->fcf.fcf_flag &= ~FCF_INIT_DISC;
3212                         spin_unlock_irq(&phba->hbalock);
3213                         goto out;
3214                 }
3215                 /* Reset FCF roundrobin bmask for new discovery */
3216                 lpfc_sli4_clear_fcf_rr_bmask(phba);
3217         }
3218
3219         return;
3220 out:
3221         lpfc_vport_set_state(vport, FC_VPORT_FAILED);
3222         lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
3223                          "0263 Discovery Mailbox error: state: 0x%x : %p %p\n",
3224                          vport->port_state, sparam_mbox, cfglink_mbox);
3225         lpfc_issue_clear_la(phba, vport);
3226         return;
3227 }
3228
3229 static void
3230 lpfc_enable_la(struct lpfc_hba *phba)
3231 {
3232         uint32_t control;
3233         struct lpfc_sli *psli = &phba->sli;
3234         spin_lock_irq(&phba->hbalock);
3235         psli->sli_flag |= LPFC_PROCESS_LA;
3236         if (phba->sli_rev <= LPFC_SLI_REV3) {
3237                 control = readl(phba->HCregaddr);
3238                 control |= HC_LAINT_ENA;
3239                 writel(control, phba->HCregaddr);
3240                 readl(phba->HCregaddr); /* flush */
3241         }
3242         spin_unlock_irq(&phba->hbalock);
3243 }
3244
3245 static void
3246 lpfc_mbx_issue_link_down(struct lpfc_hba *phba)
3247 {
3248         lpfc_linkdown(phba);
3249         lpfc_enable_la(phba);
3250         lpfc_unregister_unused_fcf(phba);
3251         /* turn on Link Attention interrupts - no CLEAR_LA needed */
3252 }
3253
3254
3255 /*
3256  * This routine handles processing a READ_TOPOLOGY mailbox
3257  * command upon completion. It is setup in the LPFC_MBOXQ
3258  * as the completion routine when the command is
3259  * handed off to the SLI layer.
3260  */
3261 void
3262 lpfc_mbx_cmpl_read_topology(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
3263 {
3264         struct lpfc_vport *vport = pmb->vport;
3265         struct Scsi_Host  *shost = lpfc_shost_from_vport(vport);
3266         struct lpfc_mbx_read_top *la;
3267         MAILBOX_t *mb = &pmb->u.mb;
3268         struct lpfc_dmabuf *mp = (struct lpfc_dmabuf *) (pmb->context1);
3269
3270         /* Unblock ELS traffic */
3271         phba->sli.ring[LPFC_ELS_RING].flag &= ~LPFC_STOP_IOCB_EVENT;
3272         /* Check for error */
3273         if (mb->mbxStatus) {
3274                 lpfc_printf_log(phba, KERN_INFO, LOG_LINK_EVENT,
3275                                 "1307 READ_LA mbox error x%x state x%x\n",
3276                                 mb->mbxStatus, vport->port_state);
3277                 lpfc_mbx_issue_link_down(phba);
3278                 phba->link_state = LPFC_HBA_ERROR;
3279                 goto lpfc_mbx_cmpl_read_topology_free_mbuf;
3280         }
3281
3282         la = (struct lpfc_mbx_read_top *) &pmb->u.mb.un.varReadTop;
3283
3284         memcpy(&phba->alpa_map[0], mp->virt, 128);
3285
3286         spin_lock_irq(shost->host_lock);
3287         if (bf_get(lpfc_mbx_read_top_pb, la))
3288                 vport->fc_flag |= FC_BYPASSED_MODE;
3289         else
3290                 vport->fc_flag &= ~FC_BYPASSED_MODE;
3291         spin_unlock_irq(shost->host_lock);
3292
3293         if (phba->fc_eventTag <= la->eventTag) {
3294                 phba->fc_stat.LinkMultiEvent++;
3295                 if (bf_get(lpfc_mbx_read_top_att_type, la) == LPFC_ATT_LINK_UP)
3296                         if (phba->fc_eventTag != 0)
3297                                 lpfc_linkdown(phba);
3298         }
3299
3300         phba->fc_eventTag = la->eventTag;
3301         if (phba->sli_rev < LPFC_SLI_REV4) {
3302                 spin_lock_irq(&phba->hbalock);
3303                 if (bf_get(lpfc_mbx_read_top_mm, la))
3304                         phba->sli.sli_flag |= LPFC_MENLO_MAINT;
3305                 else
3306                         phba->sli.sli_flag &= ~LPFC_MENLO_MAINT;
3307                 spin_unlock_irq(&phba->hbalock);
3308         }
3309
3310         phba->link_events++;
3311         if ((bf_get(lpfc_mbx_read_top_att_type, la) == LPFC_ATT_LINK_UP) &&
3312             !(phba->sli.sli_flag & LPFC_MENLO_MAINT)) {
3313                 phba->fc_stat.LinkUp++;
3314                 if (phba->link_flag & LS_LOOPBACK_MODE) {
3315                         lpfc_printf_log(phba, KERN_ERR, LOG_LINK_EVENT,
3316                                         "1306 Link Up Event in loop back mode "
3317                                         "x%x received Data: x%x x%x x%x x%x\n",
3318                                         la->eventTag, phba->fc_eventTag,
3319                                         bf_get(lpfc_mbx_read_top_alpa_granted,
3320                                                la),
3321                                         bf_get(lpfc_mbx_read_top_link_spd, la),
3322                                         phba->alpa_map[0]);
3323                 } else {
3324                         lpfc_printf_log(phba, KERN_ERR, LOG_LINK_EVENT,
3325                                         "1303 Link Up Event x%x received "
3326                                         "Data: x%x x%x x%x x%x x%x x%x %d\n",
3327                                         la->eventTag, phba->fc_eventTag,
3328                                         bf_get(lpfc_mbx_read_top_alpa_granted,
3329                                                la),
3330                                         bf_get(lpfc_mbx_read_top_link_spd, la),
3331                                         phba->alpa_map[0],
3332                                         bf_get(lpfc_mbx_read_top_mm, la),
3333                                         bf_get(lpfc_mbx_read_top_fa, la),
3334                                         phba->wait_4_mlo_maint_flg);
3335                 }
3336                 lpfc_mbx_process_link_up(phba, la);
3337         } else if (bf_get(lpfc_mbx_read_top_att_type, la) ==
3338                    LPFC_ATT_LINK_DOWN) {
3339                 phba->fc_stat.LinkDown++;
3340                 if (phba->link_flag & LS_LOOPBACK_MODE)
3341                         lpfc_printf_log(phba, KERN_ERR, LOG_LINK_EVENT,
3342                                 "1308 Link Down Event in loop back mode "
3343                                 "x%x received "
3344                                 "Data: x%x x%x x%x\n",
3345                                 la->eventTag, phba->fc_eventTag,
3346                                 phba->pport->port_state, vport->fc_flag);
3347                 else
3348                         lpfc_printf_log(phba, KERN_ERR, LOG_LINK_EVENT,
3349                                 "1305 Link Down Event x%x received "
3350                                 "Data: x%x x%x x%x x%x x%x\n",
3351                                 la->eventTag, phba->fc_eventTag,
3352                                 phba->pport->port_state, vport->fc_flag,
3353                                 bf_get(lpfc_mbx_read_top_mm, la),
3354                                 bf_get(lpfc_mbx_read_top_fa, la));
3355                 lpfc_mbx_issue_link_down(phba);
3356         }
3357         if ((phba->sli.sli_flag & LPFC_MENLO_MAINT) &&
3358             ((bf_get(lpfc_mbx_read_top_att_type, la) == LPFC_ATT_LINK_UP))) {
3359                 if (phba->link_state != LPFC_LINK_DOWN) {
3360                         phba->fc_stat.LinkDown++;
3361                         lpfc_printf_log(phba, KERN_ERR, LOG_LINK_EVENT,
3362                                 "1312 Link Down Event x%x received "
3363                                 "Data: x%x x%x x%x\n",
3364                                 la->eventTag, phba->fc_eventTag,
3365                                 phba->pport->port_state, vport->fc_flag);
3366                         lpfc_mbx_issue_link_down(phba);
3367                 } else
3368                         lpfc_enable_la(phba);
3369
3370                 lpfc_printf_log(phba, KERN_ERR, LOG_LINK_EVENT,
3371                                 "1310 Menlo Maint Mode Link up Event x%x rcvd "
3372                                 "Data: x%x x%x x%x\n",
3373                                 la->eventTag, phba->fc_eventTag,
3374                                 phba->pport->port_state, vport->fc_flag);
3375                 /*
3376                  * The cmnd that triggered this will be waiting for this
3377                  * signal.
3378                  */
3379                 /* WAKEUP for MENLO_SET_MODE or MENLO_RESET command. */
3380                 if (phba->wait_4_mlo_maint_flg) {
3381                         phba->wait_4_mlo_maint_flg = 0;
3382                         wake_up_interruptible(&phba->wait_4_mlo_m_q);
3383                 }
3384         }
3385
3386         if ((phba->sli_rev < LPFC_SLI_REV4) &&
3387             bf_get(lpfc_mbx_read_top_fa, la)) {
3388                 if (phba->sli.sli_flag & LPFC_MENLO_MAINT)
3389                         lpfc_issue_clear_la(phba, vport);
3390                 lpfc_printf_log(phba, KERN_INFO, LOG_LINK_EVENT,
3391                                 "1311 fa %d\n",
3392                                 bf_get(lpfc_mbx_read_top_fa, la));
3393         }
3394
3395 lpfc_mbx_cmpl_read_topology_free_mbuf:
3396         lpfc_mbuf_free(phba, mp->virt, mp->phys);
3397         kfree(mp);
3398         mempool_free(pmb, phba->mbox_mem_pool);
3399         return;
3400 }
3401
3402 /*
3403  * This routine handles processing a REG_LOGIN mailbox
3404  * command upon completion. It is setup in the LPFC_MBOXQ
3405  * as the completion routine when the command is
3406  * handed off to the SLI layer.
3407  */
3408 void
3409 lpfc_mbx_cmpl_reg_login(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
3410 {
3411         struct lpfc_vport  *vport = pmb->vport;
3412         struct lpfc_dmabuf *mp = (struct lpfc_dmabuf *) (pmb->context1);
3413         struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) pmb->context2;
3414         struct Scsi_Host  *shost = lpfc_shost_from_vport(vport);
3415
3416         pmb->context1 = NULL;
3417         pmb->context2 = NULL;
3418
3419         if (ndlp->nlp_flag & NLP_REG_LOGIN_SEND)
3420                 ndlp->nlp_flag &= ~NLP_REG_LOGIN_SEND;
3421
3422         if (ndlp->nlp_flag & NLP_IGNR_REG_CMPL ||
3423             ndlp->nlp_state != NLP_STE_REG_LOGIN_ISSUE) {
3424                 /* We rcvd a rscn after issuing this
3425                  * mbox reg login, we may have cycled
3426                  * back through the state and be
3427                  * back at reg login state so this
3428                  * mbox needs to be ignored becase
3429                  * there is another reg login in
3430                  * process.
3431                  */
3432                 spin_lock_irq(shost->host_lock);
3433                 ndlp->nlp_flag &= ~NLP_IGNR_REG_CMPL;
3434                 spin_unlock_irq(shost->host_lock);
3435         } else
3436                 /* Good status, call state machine */
3437                 lpfc_disc_state_machine(vport, ndlp, pmb,
3438                                 NLP_EVT_CMPL_REG_LOGIN);
3439
3440         lpfc_mbuf_free(phba, mp->virt, mp->phys);
3441         kfree(mp);
3442         mempool_free(pmb, phba->mbox_mem_pool);
3443         /* decrement the node reference count held for this callback
3444          * function.
3445          */
3446         lpfc_nlp_put(ndlp);
3447
3448         return;
3449 }
3450
3451 static void
3452 lpfc_mbx_cmpl_unreg_vpi(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
3453 {
3454         MAILBOX_t *mb = &pmb->u.mb;
3455         struct lpfc_vport *vport = pmb->vport;
3456         struct Scsi_Host  *shost = lpfc_shost_from_vport(vport);
3457
3458         switch (mb->mbxStatus) {
3459         case 0x0011:
3460         case 0x0020:
3461                 lpfc_printf_vlog(vport, KERN_INFO, LOG_NODE,
3462                                  "0911 cmpl_unreg_vpi, mb status = 0x%x\n",
3463                                  mb->mbxStatus);
3464                 break;
3465         /* If VPI is busy, reset the HBA */
3466         case 0x9700:
3467                 lpfc_printf_vlog(vport, KERN_ERR, LOG_NODE,
3468                         "2798 Unreg_vpi failed vpi 0x%x, mb status = 0x%x\n",
3469                         vport->vpi, mb->mbxStatus);
3470                 if (!(phba->pport->load_flag & FC_UNLOADING))
3471                         lpfc_workq_post_event(phba, NULL, NULL,
3472                                 LPFC_EVT_RESET_HBA);
3473         }
3474         spin_lock_irq(shost->host_lock);
3475         vport->vpi_state &= ~LPFC_VPI_REGISTERED;
3476         vport->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
3477         spin_unlock_irq(shost->host_lock);
3478         vport->unreg_vpi_cmpl = VPORT_OK;
3479         mempool_free(pmb, phba->mbox_mem_pool);
3480         lpfc_cleanup_vports_rrqs(vport, NULL);
3481         /*
3482          * This shost reference might have been taken at the beginning of
3483          * lpfc_vport_delete()
3484          */
3485         if ((vport->load_flag & FC_UNLOADING) && (vport != phba->pport))
3486                 scsi_host_put(shost);
3487 }
3488
3489 int
3490 lpfc_mbx_unreg_vpi(struct lpfc_vport *vport)
3491 {
3492         struct lpfc_hba  *phba = vport->phba;
3493         LPFC_MBOXQ_t *mbox;
3494         int rc;
3495
3496         mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
3497         if (!mbox)
3498                 return 1;
3499
3500         lpfc_unreg_vpi(phba, vport->vpi, mbox);
3501         mbox->vport = vport;
3502         mbox->mbox_cmpl = lpfc_mbx_cmpl_unreg_vpi;
3503         rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
3504         if (rc == MBX_NOT_FINISHED) {
3505                 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX | LOG_VPORT,
3506                                  "1800 Could not issue unreg_vpi\n");
3507                 mempool_free(mbox, phba->mbox_mem_pool);
3508                 vport->unreg_vpi_cmpl = VPORT_ERROR;
3509                 return rc;
3510         }
3511         return 0;
3512 }
3513
3514 static void
3515 lpfc_mbx_cmpl_reg_vpi(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
3516 {
3517         struct lpfc_vport *vport = pmb->vport;
3518         struct Scsi_Host  *shost = lpfc_shost_from_vport(vport);
3519         MAILBOX_t *mb = &pmb->u.mb;
3520
3521         switch (mb->mbxStatus) {
3522         case 0x0011:
3523         case 0x9601:
3524         case 0x9602:
3525                 lpfc_printf_vlog(vport, KERN_INFO, LOG_NODE,
3526                                  "0912 cmpl_reg_vpi, mb status = 0x%x\n",
3527                                  mb->mbxStatus);
3528                 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
3529                 spin_lock_irq(shost->host_lock);
3530                 vport->fc_flag &= ~(FC_FABRIC | FC_PUBLIC_LOOP);
3531                 spin_unlock_irq(shost->host_lock);
3532                 vport->fc_myDID = 0;
3533                 goto out;
3534         }
3535
3536         spin_lock_irq(shost->host_lock);
3537         vport->vpi_state |= LPFC_VPI_REGISTERED;
3538         vport->fc_flag &= ~FC_VPORT_NEEDS_REG_VPI;
3539         spin_unlock_irq(shost->host_lock);
3540         vport->num_disc_nodes = 0;
3541         /* go thru NPR list and issue ELS PLOGIs */
3542         if (vport->fc_npr_cnt)
3543                 lpfc_els_disc_plogi(vport);
3544
3545         if (!vport->num_disc_nodes) {
3546                 spin_lock_irq(shost->host_lock);
3547                 vport->fc_flag &= ~FC_NDISC_ACTIVE;
3548                 spin_unlock_irq(shost->host_lock);
3549                 lpfc_can_disctmo(vport);
3550         }
3551         vport->port_state = LPFC_VPORT_READY;
3552
3553 out:
3554         mempool_free(pmb, phba->mbox_mem_pool);
3555         return;
3556 }
3557
3558 /**
3559  * lpfc_create_static_vport - Read HBA config region to create static vports.
3560  * @phba: pointer to lpfc hba data structure.
3561  *
3562  * This routine issue a DUMP mailbox command for config region 22 to get
3563  * the list of static vports to be created. The function create vports
3564  * based on the information returned from the HBA.
3565  **/
3566 void
3567 lpfc_create_static_vport(struct lpfc_hba *phba)
3568 {
3569         LPFC_MBOXQ_t *pmb = NULL;
3570         MAILBOX_t *mb;
3571         struct static_vport_info *vport_info;
3572         int mbx_wait_rc = 0, i;
3573         struct fc_vport_identifiers vport_id;
3574         struct fc_vport *new_fc_vport;
3575         struct Scsi_Host *shost;
3576         struct lpfc_vport *vport;
3577         uint16_t offset = 0;
3578         uint8_t *vport_buff;
3579         struct lpfc_dmabuf *mp;
3580         uint32_t byte_count = 0;
3581
3582         pmb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
3583         if (!pmb) {
3584                 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3585                                 "0542 lpfc_create_static_vport failed to"
3586                                 " allocate mailbox memory\n");
3587                 return;
3588         }
3589         memset(pmb, 0, sizeof(LPFC_MBOXQ_t));
3590         mb = &pmb->u.mb;
3591
3592         vport_info = kzalloc(sizeof(struct static_vport_info), GFP_KERNEL);
3593         if (!vport_info) {
3594                 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3595                                 "0543 lpfc_create_static_vport failed to"
3596                                 " allocate vport_info\n");
3597                 mempool_free(pmb, phba->mbox_mem_pool);
3598                 return;
3599         }
3600
3601         vport_buff = (uint8_t *) vport_info;
3602         do {
3603                 /* free dma buffer from previous round */
3604                 if (pmb->context1) {
3605                         mp = (struct lpfc_dmabuf *)pmb->context1;
3606                         lpfc_mbuf_free(phba, mp->virt, mp->phys);
3607                         kfree(mp);
3608                 }
3609                 if (lpfc_dump_static_vport(phba, pmb, offset))
3610                         goto out;
3611
3612                 pmb->vport = phba->pport;
3613                 mbx_wait_rc = lpfc_sli_issue_mbox_wait(phba, pmb,
3614                                                         LPFC_MBOX_TMO);
3615
3616                 if ((mbx_wait_rc != MBX_SUCCESS) || mb->mbxStatus) {
3617                         lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
3618                                 "0544 lpfc_create_static_vport failed to"
3619                                 " issue dump mailbox command ret 0x%x "
3620                                 "status 0x%x\n",
3621                                 mbx_wait_rc, mb->mbxStatus);
3622                         goto out;
3623                 }
3624
3625                 if (phba->sli_rev == LPFC_SLI_REV4) {
3626                         byte_count = pmb->u.mqe.un.mb_words[5];
3627                         mp = (struct lpfc_dmabuf *)pmb->context1;
3628                         if (byte_count > sizeof(struct static_vport_info) -
3629                                         offset)
3630                                 byte_count = sizeof(struct static_vport_info)
3631                                         - offset;
3632                         memcpy(vport_buff + offset, mp->virt, byte_count);
3633                         offset += byte_count;
3634                 } else {
3635                         if (mb->un.varDmp.word_cnt >
3636                                 sizeof(struct static_vport_info) - offset)
3637                                 mb->un.varDmp.word_cnt =
3638                                         sizeof(struct static_vport_info)
3639                                                 - offset;
3640                         byte_count = mb->un.varDmp.word_cnt;
3641                         lpfc_sli_pcimem_bcopy(((uint8_t *)mb) + DMP_RSP_OFFSET,
3642                                 vport_buff + offset,
3643                                 byte_count);
3644
3645                         offset += byte_count;
3646                 }
3647
3648         } while (byte_count &&
3649                 offset < sizeof(struct static_vport_info));
3650
3651
3652         if ((le32_to_cpu(vport_info->signature) != VPORT_INFO_SIG) ||
3653                 ((le32_to_cpu(vport_info->rev) & VPORT_INFO_REV_MASK)
3654                         != VPORT_INFO_REV)) {
3655                 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3656                         "0545 lpfc_create_static_vport bad"
3657                         " information header 0x%x 0x%x\n",
3658                         le32_to_cpu(vport_info->signature),
3659                         le32_to_cpu(vport_info->rev) & VPORT_INFO_REV_MASK);
3660
3661                 goto out;
3662         }
3663
3664         shost = lpfc_shost_from_vport(phba->pport);
3665
3666         for (i = 0; i < MAX_STATIC_VPORT_COUNT; i++) {
3667                 memset(&vport_id, 0, sizeof(vport_id));
3668                 vport_id.port_name = wwn_to_u64(vport_info->vport_list[i].wwpn);
3669                 vport_id.node_name = wwn_to_u64(vport_info->vport_list[i].wwnn);
3670                 if (!vport_id.port_name || !vport_id.node_name)
3671                         continue;
3672
3673                 vport_id.roles = FC_PORT_ROLE_FCP_INITIATOR;
3674                 vport_id.vport_type = FC_PORTTYPE_NPIV;
3675                 vport_id.disable = false;
3676                 new_fc_vport = fc_vport_create(shost, 0, &vport_id);
3677
3678                 if (!new_fc_vport) {
3679                         lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
3680                                 "0546 lpfc_create_static_vport failed to"
3681                                 " create vport\n");
3682                         continue;
3683                 }
3684
3685                 vport = *(struct lpfc_vport **)new_fc_vport->dd_data;
3686                 vport->vport_flag |= STATIC_VPORT;
3687         }
3688
3689 out:
3690         kfree(vport_info);
3691         if (mbx_wait_rc != MBX_TIMEOUT) {
3692                 if (pmb->context1) {
3693                         mp = (struct lpfc_dmabuf *)pmb->context1;
3694                         lpfc_mbuf_free(phba, mp->virt, mp->phys);
3695                         kfree(mp);
3696                 }
3697                 mempool_free(pmb, phba->mbox_mem_pool);
3698         }
3699
3700         return;
3701 }
3702
3703 /*
3704  * This routine handles processing a Fabric REG_LOGIN mailbox
3705  * command upon completion. It is setup in the LPFC_MBOXQ
3706  * as the completion routine when the command is
3707  * handed off to the SLI layer.
3708  */
3709 void
3710 lpfc_mbx_cmpl_fabric_reg_login(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
3711 {
3712         struct lpfc_vport *vport = pmb->vport;
3713         MAILBOX_t *mb = &pmb->u.mb;
3714         struct lpfc_dmabuf *mp = (struct lpfc_dmabuf *) (pmb->context1);
3715         struct lpfc_nodelist *ndlp;
3716         struct Scsi_Host *shost;
3717
3718         ndlp = (struct lpfc_nodelist *) pmb->context2;
3719         pmb->context1 = NULL;
3720         pmb->context2 = NULL;
3721
3722         if (mb->mbxStatus) {
3723                 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
3724                                  "0258 Register Fabric login error: 0x%x\n",
3725                                  mb->mbxStatus);
3726                 lpfc_mbuf_free(phba, mp->virt, mp->phys);
3727                 kfree(mp);
3728                 mempool_free(pmb, phba->mbox_mem_pool);
3729
3730                 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
3731                         /* FLOGI failed, use loop map to make discovery list */
3732                         lpfc_disc_list_loopmap(vport);
3733
3734                         /* Start discovery */
3735                         lpfc_disc_start(vport);
3736                         /* Decrement the reference count to ndlp after the
3737                          * reference to the ndlp are done.
3738                          */
3739                         lpfc_nlp_put(ndlp);
3740                         return;
3741                 }
3742
3743                 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
3744                 /* Decrement the reference count to ndlp after the reference
3745                  * to the ndlp are done.
3746                  */
3747                 lpfc_nlp_put(ndlp);
3748                 return;
3749         }
3750
3751         if (phba->sli_rev < LPFC_SLI_REV4)
3752                 ndlp->nlp_rpi = mb->un.varWords[0];
3753         ndlp->nlp_flag |= NLP_RPI_REGISTERED;
3754         ndlp->nlp_type |= NLP_FABRIC;
3755         lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
3756
3757         if (vport->port_state == LPFC_FABRIC_CFG_LINK) {
3758                 /* when physical port receive logo donot start
3759                  * vport discovery */
3760                 if (!(vport->fc_flag & FC_LOGO_RCVD_DID_CHNG))
3761                         lpfc_start_fdiscs(phba);
3762                 else {
3763                         shost = lpfc_shost_from_vport(vport);
3764                         spin_lock_irq(shost->host_lock);
3765                         vport->fc_flag &= ~FC_LOGO_RCVD_DID_CHNG ;
3766                         spin_unlock_irq(shost->host_lock);
3767                 }
3768                 lpfc_do_scr_ns_plogi(phba, vport);
3769         }
3770
3771         lpfc_mbuf_free(phba, mp->virt, mp->phys);
3772         kfree(mp);
3773         mempool_free(pmb, phba->mbox_mem_pool);
3774
3775         /* Drop the reference count from the mbox at the end after
3776          * all the current reference to the ndlp have been done.
3777          */
3778         lpfc_nlp_put(ndlp);
3779         return;
3780 }
3781
3782 /*
3783  * This routine handles processing a NameServer REG_LOGIN mailbox
3784  * command upon completion. It is setup in the LPFC_MBOXQ
3785  * as the completion routine when the command is
3786  * handed off to the SLI layer.
3787  */
3788 void
3789 lpfc_mbx_cmpl_ns_reg_login(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
3790 {
3791         MAILBOX_t *mb = &pmb->u.mb;
3792         struct lpfc_dmabuf *mp = (struct lpfc_dmabuf *) (pmb->context1);
3793         struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) pmb->context2;
3794         struct lpfc_vport *vport = pmb->vport;
3795
3796         pmb->context1 = NULL;
3797         pmb->context2 = NULL;
3798
3799         if (mb->mbxStatus) {
3800 out:
3801                 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
3802                                  "0260 Register NameServer error: 0x%x\n",
3803                                  mb->mbxStatus);
3804                 /* decrement the node reference count held for this
3805                  * callback function.
3806                  */
3807                 lpfc_nlp_put(ndlp);
3808                 lpfc_mbuf_free(phba, mp->virt, mp->phys);
3809                 kfree(mp);
3810                 mempool_free(pmb, phba->mbox_mem_pool);
3811
3812                 /* If no other thread is using the ndlp, free it */
3813                 lpfc_nlp_not_used(ndlp);
3814
3815                 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
3816                         /*
3817                          * RegLogin failed, use loop map to make discovery
3818                          * list
3819                          */
3820                         lpfc_disc_list_loopmap(vport);
3821
3822                         /* Start discovery */
3823                         lpfc_disc_start(vport);
3824                         return;
3825                 }
3826                 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
3827                 return;
3828         }
3829
3830         if (phba->sli_rev < LPFC_SLI_REV4)
3831                 ndlp->nlp_rpi = mb->un.varWords[0];
3832         ndlp->nlp_flag |= NLP_RPI_REGISTERED;
3833         ndlp->nlp_type |= NLP_FABRIC;
3834         lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
3835
3836         if (vport->port_state < LPFC_VPORT_READY) {
3837                 /* Link up discovery requires Fabric registration. */
3838                 lpfc_ns_cmd(vport, SLI_CTNS_RFF_ID, 0, 0); /* Do this first! */
3839                 lpfc_ns_cmd(vport, SLI_CTNS_RNN_ID, 0, 0);
3840                 lpfc_ns_cmd(vport, SLI_CTNS_RSNN_NN, 0, 0);
3841                 lpfc_ns_cmd(vport, SLI_CTNS_RSPN_ID, 0, 0);
3842                 lpfc_ns_cmd(vport, SLI_CTNS_RFT_ID, 0, 0);
3843
3844                 /* Issue SCR just before NameServer GID_FT Query */
3845                 lpfc_issue_els_scr(vport, SCR_DID, 0);
3846         }
3847
3848         vport->fc_ns_retry = 0;
3849         /* Good status, issue CT Request to NameServer */
3850         if (lpfc_ns_cmd(vport, SLI_CTNS_GID_FT, 0, 0)) {
3851                 /* Cannot issue NameServer Query, so finish up discovery */
3852                 goto out;
3853         }
3854
3855         /* decrement the node reference count held for this
3856          * callback function.
3857          */
3858         lpfc_nlp_put(ndlp);
3859         lpfc_mbuf_free(phba, mp->virt, mp->phys);
3860         kfree(mp);
3861         mempool_free(pmb, phba->mbox_mem_pool);
3862
3863         return;
3864 }
3865
3866 static void
3867 lpfc_register_remote_port(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
3868 {
3869         struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
3870         struct fc_rport  *rport;
3871         struct lpfc_rport_data *rdata;
3872         struct fc_rport_identifiers rport_ids;
3873         struct lpfc_hba  *phba = vport->phba;
3874
3875         /* Remote port has reappeared. Re-register w/ FC transport */
3876         rport_ids.node_name = wwn_to_u64(ndlp->nlp_nodename.u.wwn);
3877         rport_ids.port_name = wwn_to_u64(ndlp->nlp_portname.u.wwn);
3878         rport_ids.port_id = ndlp->nlp_DID;
3879         rport_ids.roles = FC_RPORT_ROLE_UNKNOWN;
3880
3881         /*
3882          * We leave our node pointer in rport->dd_data when we unregister a
3883          * FCP target port.  But fc_remote_port_add zeros the space to which
3884          * rport->dd_data points.  So, if we're reusing a previously
3885          * registered port, drop the reference that we took the last time we
3886          * registered the port.
3887          */
3888         if (ndlp->rport && ndlp->rport->dd_data &&
3889             ((struct lpfc_rport_data *) ndlp->rport->dd_data)->pnode == ndlp)
3890                 lpfc_nlp_put(ndlp);
3891
3892         lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_RPORT,
3893                 "rport add:       did:x%x flg:x%x type x%x",
3894                 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_type);
3895
3896         /* Don't add the remote port if unloading. */
3897         if (vport->load_flag & FC_UNLOADING)
3898                 return;
3899
3900         ndlp->rport = rport = fc_remote_port_add(shost, 0, &rport_ids);
3901         if (!rport || !get_device(&rport->dev)) {
3902                 dev_printk(KERN_WARNING, &phba->pcidev->dev,
3903                            "Warning: fc_remote_port_add failed\n");
3904                 return;
3905         }
3906
3907         /* initialize static port data */
3908         rport->maxframe_size = ndlp->nlp_maxframe;
3909         rport->supported_classes = ndlp->nlp_class_sup;
3910         rdata = rport->dd_data;
3911         rdata->pnode = lpfc_nlp_get(ndlp);
3912
3913         if (ndlp->nlp_type & NLP_FCP_TARGET)
3914                 rport_ids.roles |= FC_RPORT_ROLE_FCP_TARGET;
3915         if (ndlp->nlp_type & NLP_FCP_INITIATOR)
3916                 rport_ids.roles |= FC_RPORT_ROLE_FCP_INITIATOR;
3917
3918         if (rport_ids.roles !=  FC_RPORT_ROLE_UNKNOWN)
3919                 fc_remote_port_rolechg(rport, rport_ids.roles);
3920
3921         lpfc_printf_vlog(ndlp->vport, KERN_INFO, LOG_NODE,
3922                          "3183 rport register x%06x, rport %p role x%x\n",
3923                          ndlp->nlp_DID, rport, rport_ids.roles);
3924
3925         if ((rport->scsi_target_id != -1) &&
3926             (rport->scsi_target_id < LPFC_MAX_TARGET)) {
3927                 ndlp->nlp_sid = rport->scsi_target_id;
3928         }
3929         return;
3930 }
3931
3932 static void
3933 lpfc_unregister_remote_port(struct lpfc_nodelist *ndlp)
3934 {
3935         struct fc_rport *rport = ndlp->rport;
3936
3937         lpfc_debugfs_disc_trc(ndlp->vport, LPFC_DISC_TRC_RPORT,
3938                 "rport delete:    did:x%x flg:x%x type x%x",
3939                 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_type);
3940
3941         lpfc_printf_vlog(ndlp->vport, KERN_INFO, LOG_NODE,
3942                          "3184 rport unregister x%06x, rport %p\n",
3943                          ndlp->nlp_DID, rport);
3944
3945         fc_remote_port_delete(rport);
3946
3947         return;
3948 }
3949
3950 static void
3951 lpfc_nlp_counters(struct lpfc_vport *vport, int state, int count)
3952 {
3953         struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
3954
3955         spin_lock_irq(shost->host_lock);
3956         switch (state) {
3957         case NLP_STE_UNUSED_NODE:
3958                 vport->fc_unused_cnt += count;
3959                 break;
3960         case NLP_STE_PLOGI_ISSUE:
3961                 vport->fc_plogi_cnt += count;
3962                 break;
3963         case NLP_STE_ADISC_ISSUE:
3964                 vport->fc_adisc_cnt += count;
3965                 break;
3966         case NLP_STE_REG_LOGIN_ISSUE:
3967                 vport->fc_reglogin_cnt += count;
3968                 break;
3969         case NLP_STE_PRLI_ISSUE:
3970                 vport->fc_prli_cnt += count;
3971                 break;
3972         case NLP_STE_UNMAPPED_NODE:
3973                 vport->fc_unmap_cnt += count;
3974                 break;
3975         case NLP_STE_MAPPED_NODE:
3976                 vport->fc_map_cnt += count;
3977                 break;
3978         case NLP_STE_NPR_NODE:
3979                 vport->fc_npr_cnt += count;
3980                 break;
3981         }
3982         spin_unlock_irq(shost->host_lock);
3983 }
3984
3985 static void
3986 lpfc_nlp_state_cleanup(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
3987                        int old_state, int new_state)
3988 {
3989         struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
3990
3991         if (new_state == NLP_STE_UNMAPPED_NODE) {
3992                 ndlp->nlp_flag &= ~NLP_NODEV_REMOVE;
3993                 ndlp->nlp_type |= NLP_FC_NODE;
3994         }
3995         if (new_state == NLP_STE_MAPPED_NODE)
3996                 ndlp->nlp_flag &= ~NLP_NODEV_REMOVE;
3997         if (new_state == NLP_STE_NPR_NODE)
3998                 ndlp->nlp_flag &= ~NLP_RCV_PLOGI;
3999
4000         /* Transport interface */
4001         if (ndlp->rport && (old_state == NLP_STE_MAPPED_NODE ||
4002                             old_state == NLP_STE_UNMAPPED_NODE)) {
4003                 vport->phba->nport_event_cnt++;
4004                 lpfc_unregister_remote_port(ndlp);
4005         }
4006
4007         if (new_state ==  NLP_STE_MAPPED_NODE ||
4008             new_state == NLP_STE_UNMAPPED_NODE) {
4009                 vport->phba->nport_event_cnt++;
4010                 /*
4011                  * Tell the fc transport about the port, if we haven't
4012                  * already. If we have, and it's a scsi entity, be
4013                  * sure to unblock any attached scsi devices
4014                  */
4015                 lpfc_register_remote_port(vport, ndlp);
4016         }
4017         if ((new_state ==  NLP_STE_MAPPED_NODE) &&
4018                 (vport->stat_data_enabled)) {
4019                 /*
4020                  * A new target is discovered, if there is no buffer for
4021                  * statistical data collection allocate buffer.
4022                  */
4023                 ndlp->lat_data = kcalloc(LPFC_MAX_BUCKET_COUNT,
4024                                          sizeof(struct lpfc_scsicmd_bkt),
4025                                          GFP_KERNEL);
4026
4027                 if (!ndlp->lat_data)
4028                         lpfc_printf_vlog(vport, KERN_ERR, LOG_NODE,
4029                                 "0286 lpfc_nlp_state_cleanup failed to "
4030                                 "allocate statistical data buffer DID "
4031                                 "0x%x\n", ndlp->nlp_DID);
4032         }
4033         /*
4034          * if we added to Mapped list, but the remote port
4035          * registration failed or assigned a target id outside
4036          * our presentable range - move the node to the
4037          * Unmapped List
4038          */
4039         if (new_state == NLP_STE_MAPPED_NODE &&
4040             (!ndlp->rport ||
4041              ndlp->rport->scsi_target_id == -1 ||
4042              ndlp->rport->scsi_target_id >= LPFC_MAX_TARGET)) {
4043                 spin_lock_irq(shost->host_lock);
4044                 ndlp->nlp_flag |= NLP_TGT_NO_SCSIID;
4045                 spin_unlock_irq(shost->host_lock);
4046                 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
4047         }
4048 }
4049
4050 static char *
4051 lpfc_nlp_state_name(char *buffer, size_t size, int state)
4052 {
4053         static char *states[] = {
4054                 [NLP_STE_UNUSED_NODE] = "UNUSED",
4055                 [NLP_STE_PLOGI_ISSUE] = "PLOGI",
4056                 [NLP_STE_ADISC_ISSUE] = "ADISC",
4057                 [NLP_STE_REG_LOGIN_ISSUE] = "REGLOGIN",
4058                 [NLP_STE_PRLI_ISSUE] = "PRLI",
4059                 [NLP_STE_LOGO_ISSUE] = "LOGO",
4060                 [NLP_STE_UNMAPPED_NODE] = "UNMAPPED",
4061                 [NLP_STE_MAPPED_NODE] = "MAPPED",
4062                 [NLP_STE_NPR_NODE] = "NPR",
4063         };
4064
4065         if (state < NLP_STE_MAX_STATE && states[state])
4066                 strlcpy(buffer, states[state], size);
4067         else
4068                 snprintf(buffer, size, "unknown (%d)", state);
4069         return buffer;
4070 }
4071
4072 void
4073 lpfc_nlp_set_state(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
4074                    int state)
4075 {
4076         struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
4077         int  old_state = ndlp->nlp_state;
4078         char name1[16], name2[16];
4079
4080         lpfc_printf_vlog(vport, KERN_INFO, LOG_NODE,
4081                          "0904 NPort state transition x%06x, %s -> %s\n",
4082                          ndlp->nlp_DID,
4083                          lpfc_nlp_state_name(name1, sizeof(name1), old_state),
4084                          lpfc_nlp_state_name(name2, sizeof(name2), state));
4085
4086         lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_NODE,
4087                 "node statechg    did:x%x old:%d ste:%d",
4088                 ndlp->nlp_DID, old_state, state);
4089
4090         if (old_state == NLP_STE_NPR_NODE &&
4091             state != NLP_STE_NPR_NODE)
4092                 lpfc_cancel_retry_delay_tmo(vport, ndlp);
4093         if (old_state == NLP_STE_UNMAPPED_NODE) {
4094                 ndlp->nlp_flag &= ~NLP_TGT_NO_SCSIID;
4095                 ndlp->nlp_type &= ~NLP_FC_NODE;
4096         }
4097
4098         if (list_empty(&ndlp->nlp_listp)) {
4099                 spin_lock_irq(shost->host_lock);
4100                 list_add_tail(&ndlp->nlp_listp, &vport->fc_nodes);
4101                 spin_unlock_irq(shost->host_lock);
4102         } else if (old_state)
4103                 lpfc_nlp_counters(vport, old_state, -1);
4104
4105         ndlp->nlp_state = state;
4106         lpfc_nlp_counters(vport, state, 1);
4107         lpfc_nlp_state_cleanup(vport, ndlp, old_state, state);
4108 }
4109
4110 void
4111 lpfc_enqueue_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
4112 {
4113         struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
4114
4115         if (list_empty(&ndlp->nlp_listp)) {
4116                 spin_lock_irq(shost->host_lock);
4117                 list_add_tail(&ndlp->nlp_listp, &vport->fc_nodes);
4118                 spin_unlock_irq(shost->host_lock);
4119         }
4120 }
4121
4122 void
4123 lpfc_dequeue_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
4124 {
4125         struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
4126
4127         lpfc_cancel_retry_delay_tmo(vport, ndlp);
4128         if (ndlp->nlp_state && !list_empty(&ndlp->nlp_listp))
4129                 lpfc_nlp_counters(vport, ndlp->nlp_state, -1);
4130         spin_lock_irq(shost->host_lock);
4131         list_del_init(&ndlp->nlp_listp);
4132         spin_unlock_irq(shost->host_lock);
4133         lpfc_nlp_state_cleanup(vport, ndlp, ndlp->nlp_state,
4134                                 NLP_STE_UNUSED_NODE);
4135 }
4136
4137 static void
4138 lpfc_disable_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
4139 {
4140         lpfc_cancel_retry_delay_tmo(vport, ndlp);
4141         if (ndlp->nlp_state && !list_empty(&ndlp->nlp_listp))
4142                 lpfc_nlp_counters(vport, ndlp->nlp_state, -1);
4143         lpfc_nlp_state_cleanup(vport, ndlp, ndlp->nlp_state,
4144                                 NLP_STE_UNUSED_NODE);
4145 }
4146 /**
4147  * lpfc_initialize_node - Initialize all fields of node object
4148  * @vport: Pointer to Virtual Port object.
4149  * @ndlp: Pointer to FC node object.
4150  * @did: FC_ID of the node.
4151  *
4152  * This function is always called when node object need to be initialized.
4153  * It initializes all the fields of the node object. Although the reference
4154  * to phba from @ndlp can be obtained indirectly through it's reference to
4155  * @vport, a direct reference to phba is taken here by @ndlp. This is due
4156  * to the life-span of the @ndlp might go beyond the existence of @vport as
4157  * the final release of ndlp is determined by its reference count. And, the
4158  * operation on @ndlp needs the reference to phba.
4159  **/
4160 static inline void
4161 lpfc_initialize_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
4162         uint32_t did)
4163 {
4164         INIT_LIST_HEAD(&ndlp->els_retry_evt.evt_listp);
4165         INIT_LIST_HEAD(&ndlp->dev_loss_evt.evt_listp);
4166         init_timer(&ndlp->nlp_delayfunc);
4167         ndlp->nlp_delayfunc.function = lpfc_els_retry_delay;
4168         ndlp->nlp_delayfunc.data = (unsigned long)ndlp;
4169         ndlp->nlp_DID = did;
4170         ndlp->vport = vport;
4171         ndlp->phba = vport->phba;
4172         ndlp->nlp_sid = NLP_NO_SID;
4173         kref_init(&ndlp->kref);
4174         NLP_INT_NODE_ACT(ndlp);
4175         atomic_set(&ndlp->cmd_pending, 0);
4176         ndlp->cmd_qdepth = vport->cfg_tgt_queue_depth;
4177         if (vport->phba->sli_rev == LPFC_SLI_REV4)
4178                 ndlp->nlp_rpi = lpfc_sli4_alloc_rpi(vport->phba);
4179 }
4180
4181 struct lpfc_nodelist *
4182 lpfc_enable_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
4183                  int state)
4184 {
4185         struct lpfc_hba *phba = vport->phba;
4186         uint32_t did;
4187         unsigned long flags;
4188
4189         if (!ndlp)
4190                 return NULL;
4191
4192         spin_lock_irqsave(&phba->ndlp_lock, flags);
4193         /* The ndlp should not be in memory free mode */
4194         if (NLP_CHK_FREE_REQ(ndlp)) {
4195                 spin_unlock_irqrestore(&phba->ndlp_lock, flags);
4196                 lpfc_printf_vlog(vport, KERN_WARNING, LOG_NODE,
4197                                 "0277 lpfc_enable_node: ndlp:x%p "
4198                                 "usgmap:x%x refcnt:%d\n",
4199                                 (void *)ndlp, ndlp->nlp_usg_map,
4200                                 atomic_read(&ndlp->kref.refcount));
4201                 return NULL;
4202         }
4203         /* The ndlp should not already be in active mode */
4204         if (NLP_CHK_NODE_ACT(ndlp)) {
4205                 spin_unlock_irqrestore(&phba->ndlp_lock, flags);
4206                 lpfc_printf_vlog(vport, KERN_WARNING, LOG_NODE,
4207                                 "0278 lpfc_enable_node: ndlp:x%p "
4208                                 "usgmap:x%x refcnt:%d\n",
4209                                 (void *)ndlp, ndlp->nlp_usg_map,
4210                                 atomic_read(&ndlp->kref.refcount));
4211                 return NULL;
4212         }
4213
4214         /* Keep the original DID */
4215         did = ndlp->nlp_DID;
4216
4217         /* re-initialize ndlp except of ndlp linked list pointer */
4218         memset((((char *)ndlp) + sizeof (struct list_head)), 0,
4219                 sizeof (struct lpfc_nodelist) - sizeof (struct list_head));
4220         lpfc_initialize_node(vport, ndlp, did);
4221
4222         spin_unlock_irqrestore(&phba->ndlp_lock, flags);
4223
4224         if (state != NLP_STE_UNUSED_NODE)
4225                 lpfc_nlp_set_state(vport, ndlp, state);
4226
4227         lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_NODE,
4228                 "node enable:       did:x%x",
4229                 ndlp->nlp_DID, 0, 0);
4230         return ndlp;
4231 }
4232
4233 void
4234 lpfc_drop_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
4235 {
4236         /*
4237          * Use of lpfc_drop_node and UNUSED list: lpfc_drop_node should
4238          * be used if we wish to issue the "last" lpfc_nlp_put() to remove
4239          * the ndlp from the vport. The ndlp marked as UNUSED on the list
4240          * until ALL other outstanding threads have completed. We check
4241          * that the ndlp not already in the UNUSED state before we proceed.
4242          */
4243         if (ndlp->nlp_state == NLP_STE_UNUSED_NODE)
4244                 return;
4245         lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNUSED_NODE);
4246         if (vport->phba->sli_rev == LPFC_SLI_REV4)
4247                 lpfc_cleanup_vports_rrqs(vport, ndlp);
4248         lpfc_nlp_put(ndlp);
4249         return;
4250 }
4251
4252 /*
4253  * Start / ReStart rescue timer for Discovery / RSCN handling
4254  */
4255 void
4256 lpfc_set_disctmo(struct lpfc_vport *vport)
4257 {
4258         struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
4259         struct lpfc_hba  *phba = vport->phba;
4260         uint32_t tmo;
4261
4262         if (vport->port_state == LPFC_LOCAL_CFG_LINK) {
4263                 /* For FAN, timeout should be greater than edtov */
4264                 tmo = (((phba->fc_edtov + 999) / 1000) + 1);
4265         } else {
4266                 /* Normal discovery timeout should be > than ELS/CT timeout
4267                  * FC spec states we need 3 * ratov for CT requests
4268                  */
4269                 tmo = ((phba->fc_ratov * 3) + 3);
4270         }
4271
4272
4273         if (!timer_pending(&vport->fc_disctmo)) {
4274                 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
4275                         "set disc timer:  tmo:x%x state:x%x flg:x%x",
4276                         tmo, vport->port_state, vport->fc_flag);
4277         }
4278
4279         mod_timer(&vport->fc_disctmo, jiffies + msecs_to_jiffies(1000 * tmo));
4280         spin_lock_irq(shost->host_lock);
4281         vport->fc_flag |= FC_DISC_TMO;
4282         spin_unlock_irq(shost->host_lock);
4283
4284         /* Start Discovery Timer state <hba_state> */
4285         lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
4286                          "0247 Start Discovery Timer state x%x "
4287                          "Data: x%x x%lx x%x x%x\n",
4288                          vport->port_state, tmo,
4289                          (unsigned long)&vport->fc_disctmo, vport->fc_plogi_cnt,
4290                          vport->fc_adisc_cnt);
4291
4292         return;
4293 }
4294
4295 /*
4296  * Cancel rescue timer for Discovery / RSCN handling
4297  */
4298 int
4299 lpfc_can_disctmo(struct lpfc_vport *vport)
4300 {
4301         struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
4302         unsigned long iflags;
4303
4304         lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
4305                 "can disc timer:  state:x%x rtry:x%x flg:x%x",
4306                 vport->port_state, vport->fc_ns_retry, vport->fc_flag);
4307
4308         /* Turn off discovery timer if its running */
4309         if (vport->fc_flag & FC_DISC_TMO) {
4310                 spin_lock_irqsave(shost->host_lock, iflags);
4311                 vport->fc_flag &= ~FC_DISC_TMO;
4312                 spin_unlock_irqrestore(shost->host_lock, iflags);
4313                 del_timer_sync(&vport->fc_disctmo);
4314                 spin_lock_irqsave(&vport->work_port_lock, iflags);
4315                 vport->work_port_events &= ~WORKER_DISC_TMO;
4316                 spin_unlock_irqrestore(&vport->work_port_lock, iflags);
4317         }
4318
4319         /* Cancel Discovery Timer state <hba_state> */
4320         lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
4321                          "0248 Cancel Discovery Timer state x%x "
4322                          "Data: x%x x%x x%x\n",
4323                          vport->port_state, vport->fc_flag,
4324                          vport->fc_plogi_cnt, vport->fc_adisc_cnt);
4325         return 0;
4326 }
4327
4328 /*
4329  * Check specified ring for outstanding IOCB on the SLI queue
4330  * Return true if iocb matches the specified nport
4331  */
4332 int
4333 lpfc_check_sli_ndlp(struct lpfc_hba *phba,
4334                     struct lpfc_sli_ring *pring,
4335                     struct lpfc_iocbq *iocb,
4336                     struct lpfc_nodelist *ndlp)
4337 {
4338         struct lpfc_sli *psli = &phba->sli;
4339         IOCB_t *icmd = &iocb->iocb;
4340         struct lpfc_vport    *vport = ndlp->vport;
4341
4342         if (iocb->vport != vport)
4343                 return 0;
4344
4345         if (pring->ringno == LPFC_ELS_RING) {
4346                 switch (icmd->ulpCommand) {
4347                 case CMD_GEN_REQUEST64_CR:
4348                         if (iocb->context_un.ndlp == ndlp)
4349                                 return 1;
4350                 case CMD_ELS_REQUEST64_CR:
4351                         if (icmd->un.elsreq64.remoteID == ndlp->nlp_DID)
4352                                 return 1;
4353                 case CMD_XMIT_ELS_RSP64_CX:
4354                         if (iocb->context1 == (uint8_t *) ndlp)
4355                                 return 1;
4356                 }
4357         } else if (pring->ringno == psli->extra_ring) {
4358
4359         } else if (pring->ringno == psli->fcp_ring) {
4360                 /* Skip match check if waiting to relogin to FCP target */
4361                 if ((ndlp->nlp_type & NLP_FCP_TARGET) &&
4362                     (ndlp->nlp_flag & NLP_DELAY_TMO)) {
4363                         return 0;
4364                 }
4365                 if (icmd->ulpContext == (volatile ushort)ndlp->nlp_rpi) {
4366                         return 1;
4367                 }
4368         } else if (pring->ringno == psli->next_ring) {
4369
4370         }
4371         return 0;
4372 }
4373
4374 /*
4375  * Free resources / clean up outstanding I/Os
4376  * associated with nlp_rpi in the LPFC_NODELIST entry.
4377  */
4378 static int
4379 lpfc_no_rpi(struct lpfc_hba *phba, struct lpfc_nodelist *ndlp)
4380 {
4381         LIST_HEAD(completions);
4382         struct lpfc_sli *psli;
4383         struct lpfc_sli_ring *pring;
4384         struct lpfc_iocbq *iocb, *next_iocb;
4385         uint32_t i;
4386
4387         lpfc_fabric_abort_nport(ndlp);
4388
4389         /*
4390          * Everything that matches on txcmplq will be returned
4391          * by firmware with a no rpi error.
4392          */
4393         psli = &phba->sli;
4394         if (ndlp->nlp_flag & NLP_RPI_REGISTERED) {
4395                 /* Now process each ring */
4396                 for (i = 0; i < psli->num_rings; i++) {
4397                         pring = &psli->ring[i];
4398
4399                         spin_lock_irq(&phba->hbalock);
4400                         list_for_each_entry_safe(iocb, next_iocb, &pring->txq,
4401                                                  list) {
4402                                 /*
4403                                  * Check to see if iocb matches the nport we are
4404                                  * looking for
4405                                  */
4406                                 if ((lpfc_check_sli_ndlp(phba, pring, iocb,
4407                                                          ndlp))) {
4408                                         /* It matches, so deque and call compl
4409                                            with an error */
4410                                         list_move_tail(&iocb->list,
4411                                                        &completions);
4412                                 }
4413                         }
4414                         spin_unlock_irq(&phba->hbalock);
4415                 }
4416         }
4417
4418         /* Cancel all the IOCBs from the completions list */
4419         lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
4420                               IOERR_SLI_ABORTED);
4421
4422         return 0;
4423 }
4424
4425 /**
4426  * lpfc_nlp_logo_unreg - Unreg mailbox completion handler before LOGO
4427  * @phba: Pointer to HBA context object.
4428  * @pmb: Pointer to mailbox object.
4429  *
4430  * This function will issue an ELS LOGO command after completing
4431  * the UNREG_RPI.
4432  **/
4433 void
4434 lpfc_nlp_logo_unreg(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
4435 {
4436         struct lpfc_vport  *vport = pmb->vport;
4437         struct lpfc_nodelist *ndlp;
4438
4439         ndlp = (struct lpfc_nodelist *)(pmb->context1);
4440         if (!ndlp)
4441                 return;
4442         lpfc_issue_els_logo(vport, ndlp, 0);
4443 }
4444
4445 /*
4446  * Free rpi associated with LPFC_NODELIST entry.
4447  * This routine is called from lpfc_freenode(), when we are removing
4448  * a LPFC_NODELIST entry. It is also called if the driver initiates a
4449  * LOGO that completes successfully, and we are waiting to PLOGI back
4450  * to the remote NPort. In addition, it is called after we receive
4451  * and unsolicated ELS cmd, send back a rsp, the rsp completes and
4452  * we are waiting to PLOGI back to the remote NPort.
4453  */
4454 int
4455 lpfc_unreg_rpi(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
4456 {
4457         struct lpfc_hba *phba = vport->phba;
4458         LPFC_MBOXQ_t    *mbox;
4459         int rc;
4460         uint16_t rpi;
4461
4462         if (ndlp->nlp_flag & NLP_RPI_REGISTERED) {
4463                 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4464                 if (mbox) {
4465                         /* SLI4 ports require the physical rpi value. */
4466                         rpi = ndlp->nlp_rpi;
4467                         if (phba->sli_rev == LPFC_SLI_REV4)
4468                                 rpi = phba->sli4_hba.rpi_ids[ndlp->nlp_rpi];
4469
4470                         lpfc_unreg_login(phba, vport->vpi, rpi, mbox);
4471                         mbox->vport = vport;
4472                         if (ndlp->nlp_flag & NLP_ISSUE_LOGO) {
4473                                 mbox->context1 = ndlp;
4474                                 mbox->mbox_cmpl = lpfc_nlp_logo_unreg;
4475                         } else {
4476                                 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
4477                         }
4478
4479                         rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
4480                         if (rc == MBX_NOT_FINISHED)
4481                                 mempool_free(mbox, phba->mbox_mem_pool);
4482                 }
4483                 lpfc_no_rpi(phba, ndlp);
4484
4485                 if (phba->sli_rev != LPFC_SLI_REV4)
4486                         ndlp->nlp_rpi = 0;
4487                 ndlp->nlp_flag &= ~NLP_RPI_REGISTERED;
4488                 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
4489                 return 1;
4490         }
4491         return 0;
4492 }
4493
4494 /**
4495  * lpfc_unreg_hba_rpis - Unregister rpis registered to the hba.
4496  * @phba: pointer to lpfc hba data structure.
4497  *
4498  * This routine is invoked to unregister all the currently registered RPIs
4499  * to the HBA.
4500  **/
4501 void
4502 lpfc_unreg_hba_rpis(struct lpfc_hba *phba)
4503 {
4504         struct lpfc_vport **vports;
4505         struct lpfc_nodelist *ndlp;
4506         struct Scsi_Host *shost;
4507         int i;
4508
4509         vports = lpfc_create_vport_work_array(phba);
4510         if (!vports) {
4511                 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY,
4512                         "2884 Vport array allocation failed \n");
4513                 return;
4514         }
4515         for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
4516                 shost = lpfc_shost_from_vport(vports[i]);
4517                 spin_lock_irq(shost->host_lock);
4518                 list_for_each_entry(ndlp, &vports[i]->fc_nodes, nlp_listp) {
4519                         if (ndlp->nlp_flag & NLP_RPI_REGISTERED) {
4520                                 /* The mempool_alloc might sleep */
4521                                 spin_unlock_irq(shost->host_lock);
4522                                 lpfc_unreg_rpi(vports[i], ndlp);
4523                                 spin_lock_irq(shost->host_lock);
4524                         }
4525                 }
4526                 spin_unlock_irq(shost->host_lock);
4527         }
4528         lpfc_destroy_vport_work_array(phba, vports);
4529 }
4530
4531 void
4532 lpfc_unreg_all_rpis(struct lpfc_vport *vport)
4533 {
4534         struct lpfc_hba  *phba  = vport->phba;
4535         LPFC_MBOXQ_t     *mbox;
4536         int rc;
4537
4538         if (phba->sli_rev == LPFC_SLI_REV4) {
4539                 lpfc_sli4_unreg_all_rpis(vport);
4540                 return;
4541         }
4542
4543         mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4544         if (mbox) {
4545                 lpfc_unreg_login(phba, vport->vpi, LPFC_UNREG_ALL_RPIS_VPORT,
4546                                  mbox);
4547                 mbox->vport = vport;
4548                 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
4549                 mbox->context1 = NULL;
4550                 rc = lpfc_sli_issue_mbox_wait(phba, mbox, LPFC_MBOX_TMO);
4551                 if (rc != MBX_TIMEOUT)
4552                         mempool_free(mbox, phba->mbox_mem_pool);
4553
4554                 if ((rc == MBX_TIMEOUT) || (rc == MBX_NOT_FINISHED))
4555                         lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX | LOG_VPORT,
4556                                 "1836 Could not issue "
4557                                 "unreg_login(all_rpis) status %d\n", rc);
4558         }
4559 }
4560
4561 void
4562 lpfc_unreg_default_rpis(struct lpfc_vport *vport)
4563 {
4564         struct lpfc_hba  *phba  = vport->phba;
4565         LPFC_MBOXQ_t     *mbox;
4566         int rc;
4567
4568         mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4569         if (mbox) {
4570                 lpfc_unreg_did(phba, vport->vpi, LPFC_UNREG_ALL_DFLT_RPIS,
4571                                mbox);
4572                 mbox->vport = vport;
4573                 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
4574                 mbox->context1 = NULL;
4575                 rc = lpfc_sli_issue_mbox_wait(phba, mbox, LPFC_MBOX_TMO);
4576                 if (rc != MBX_TIMEOUT)
4577                         mempool_free(mbox, phba->mbox_mem_pool);
4578
4579                 if ((rc == MBX_TIMEOUT) || (rc == MBX_NOT_FINISHED))
4580                         lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX | LOG_VPORT,
4581                                          "1815 Could not issue "
4582                                          "unreg_did (default rpis) status %d\n",
4583                                          rc);
4584         }
4585 }
4586
4587 /*
4588  * Free resources associated with LPFC_NODELIST entry
4589  * so it can be freed.
4590  */
4591 static int
4592 lpfc_cleanup_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
4593 {
4594         struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
4595         struct lpfc_hba  *phba = vport->phba;
4596         LPFC_MBOXQ_t *mb, *nextmb;
4597         struct lpfc_dmabuf *mp;
4598
4599         /* Cleanup node for NPort <nlp_DID> */
4600         lpfc_printf_vlog(vport, KERN_INFO, LOG_NODE,
4601                          "0900 Cleanup node for NPort x%x "
4602                          "Data: x%x x%x x%x\n",
4603                          ndlp->nlp_DID, ndlp->nlp_flag,
4604                          ndlp->nlp_state, ndlp->nlp_rpi);
4605         if (NLP_CHK_FREE_REQ(ndlp)) {
4606                 lpfc_printf_vlog(vport, KERN_WARNING, LOG_NODE,
4607                                 "0280 lpfc_cleanup_node: ndlp:x%p "
4608                                 "usgmap:x%x refcnt:%d\n",
4609                                 (void *)ndlp, ndlp->nlp_usg_map,
4610                                 atomic_read(&ndlp->kref.refcount));
4611                 lpfc_dequeue_node(vport, ndlp);
4612         } else {
4613                 lpfc_printf_vlog(vport, KERN_WARNING, LOG_NODE,
4614                                 "0281 lpfc_cleanup_node: ndlp:x%p "
4615                                 "usgmap:x%x refcnt:%d\n",
4616                                 (void *)ndlp, ndlp->nlp_usg_map,
4617                                 atomic_read(&ndlp->kref.refcount));
4618                 lpfc_disable_node(vport, ndlp);
4619         }
4620
4621
4622         /* Don't need to clean up REG_LOGIN64 cmds for Default RPI cleanup */
4623
4624         /* cleanup any ndlp on mbox q waiting for reglogin cmpl */
4625         if ((mb = phba->sli.mbox_active)) {
4626                 if ((mb->u.mb.mbxCommand == MBX_REG_LOGIN64) &&
4627                    !(mb->mbox_flag & LPFC_MBX_IMED_UNREG) &&
4628                    (ndlp == (struct lpfc_nodelist *) mb->context2)) {
4629                         mb->context2 = NULL;
4630                         mb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
4631                 }
4632         }
4633
4634         spin_lock_irq(&phba->hbalock);
4635         /* Cleanup REG_LOGIN completions which are not yet processed */
4636         list_for_each_entry(mb, &phba->sli.mboxq_cmpl, list) {
4637                 if ((mb->u.mb.mbxCommand != MBX_REG_LOGIN64) ||
4638                         (mb->mbox_flag & LPFC_MBX_IMED_UNREG) ||
4639                         (ndlp != (struct lpfc_nodelist *) mb->context2))
4640                         continue;
4641
4642                 mb->context2 = NULL;
4643                 mb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
4644         }
4645
4646         list_for_each_entry_safe(mb, nextmb, &phba->sli.mboxq, list) {
4647                 if ((mb->u.mb.mbxCommand == MBX_REG_LOGIN64) &&
4648                    !(mb->mbox_flag & LPFC_MBX_IMED_UNREG) &&
4649                     (ndlp == (struct lpfc_nodelist *) mb->context2)) {
4650                         mp = (struct lpfc_dmabuf *) (mb->context1);
4651                         if (mp) {
4652                                 __lpfc_mbuf_free(phba, mp->virt, mp->phys);
4653                                 kfree(mp);
4654                         }
4655                         list_del(&mb->list);
4656                         mempool_free(mb, phba->mbox_mem_pool);
4657                         /* We shall not invoke the lpfc_nlp_put to decrement
4658                          * the ndlp reference count as we are in the process
4659                          * of lpfc_nlp_release.
4660                          */
4661                 }
4662         }
4663         spin_unlock_irq(&phba->hbalock);
4664
4665         lpfc_els_abort(phba, ndlp);
4666
4667         spin_lock_irq(shost->host_lock);
4668         ndlp->nlp_flag &= ~NLP_DELAY_TMO;
4669         spin_unlock_irq(shost->host_lock);
4670
4671         ndlp->nlp_last_elscmd = 0;
4672         del_timer_sync(&ndlp->nlp_delayfunc);
4673
4674         list_del_init(&ndlp->els_retry_evt.evt_listp);
4675         list_del_init(&ndlp->dev_loss_evt.evt_listp);
4676         lpfc_cleanup_vports_rrqs(vport, ndlp);
4677         lpfc_unreg_rpi(vport, ndlp);
4678
4679         return 0;
4680 }
4681
4682 /*
4683  * Check to see if we can free the nlp back to the freelist.
4684  * If we are in the middle of using the nlp in the discovery state
4685  * machine, defer the free till we reach the end of the state machine.
4686  */
4687 static void
4688 lpfc_nlp_remove(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
4689 {
4690         struct lpfc_hba  *phba = vport->phba;
4691         struct lpfc_rport_data *rdata;
4692         LPFC_MBOXQ_t *mbox;
4693         int rc;
4694
4695         lpfc_cancel_retry_delay_tmo(vport, ndlp);
4696         if ((ndlp->nlp_flag & NLP_DEFER_RM) &&
4697             !(ndlp->nlp_flag & NLP_REG_LOGIN_SEND) &&
4698             !(ndlp->nlp_flag & NLP_RPI_REGISTERED)) {
4699                 /* For this case we need to cleanup the default rpi
4700                  * allocated by the firmware.
4701                  */
4702                 if ((mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL))
4703                         != NULL) {
4704                         rc = lpfc_reg_rpi(phba, vport->vpi, ndlp->nlp_DID,
4705                             (uint8_t *) &vport->fc_sparam, mbox, ndlp->nlp_rpi);
4706                         if (rc) {
4707                                 mempool_free(mbox, phba->mbox_mem_pool);
4708                         }
4709                         else {
4710                                 mbox->mbox_flag |= LPFC_MBX_IMED_UNREG;
4711                                 mbox->mbox_cmpl = lpfc_mbx_cmpl_dflt_rpi;
4712                                 mbox->vport = vport;
4713                                 mbox->context2 = ndlp;
4714                                 rc =lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
4715                                 if (rc == MBX_NOT_FINISHED) {
4716                                         mempool_free(mbox, phba->mbox_mem_pool);
4717                                 }
4718                         }
4719                 }
4720         }
4721         lpfc_cleanup_node(vport, ndlp);
4722
4723         /*
4724          * We can get here with a non-NULL ndlp->rport because when we
4725          * unregister a rport we don't break the rport/node linkage.  So if we
4726          * do, make sure we don't leaving any dangling pointers behind.
4727          */
4728         if (ndlp->rport) {
4729                 rdata = ndlp->rport->dd_data;
4730                 rdata->pnode = NULL;
4731                 ndlp->rport = NULL;
4732         }
4733 }
4734
4735 static int
4736 lpfc_matchdid(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
4737               uint32_t did)
4738 {
4739         D_ID mydid, ndlpdid, matchdid;
4740
4741         if (did == Bcast_DID)
4742                 return 0;
4743
4744         /* First check for Direct match */
4745         if (ndlp->nlp_DID == did)
4746                 return 1;
4747
4748         /* Next check for area/domain identically equals 0 match */
4749         mydid.un.word = vport->fc_myDID;
4750         if ((mydid.un.b.domain == 0) && (mydid.un.b.area == 0)) {
4751                 return 0;
4752         }
4753
4754         matchdid.un.word = did;
4755         ndlpdid.un.word = ndlp->nlp_DID;
4756         if (matchdid.un.b.id == ndlpdid.un.b.id) {
4757                 if ((mydid.un.b.domain == matchdid.un.b.domain) &&
4758                     (mydid.un.b.area == matchdid.un.b.area)) {
4759                         if ((ndlpdid.un.b.domain == 0) &&
4760                             (ndlpdid.un.b.area == 0)) {
4761                                 if (ndlpdid.un.b.id)
4762                                         return 1;
4763                         }
4764                         return 0;
4765                 }
4766
4767                 matchdid.un.word = ndlp->nlp_DID;
4768                 if ((mydid.un.b.domain == ndlpdid.un.b.domain) &&
4769                     (mydid.un.b.area == ndlpdid.un.b.area)) {
4770                         if ((matchdid.un.b.domain == 0) &&
4771                             (matchdid.un.b.area == 0)) {
4772                                 if (matchdid.un.b.id)
4773                                         return 1;
4774                         }
4775                 }
4776         }
4777         return 0;
4778 }
4779
4780 /* Search for a nodelist entry */
4781 static struct lpfc_nodelist *
4782 __lpfc_findnode_did(struct lpfc_vport *vport, uint32_t did)
4783 {
4784         struct lpfc_nodelist *ndlp;
4785         uint32_t data1;
4786
4787         list_for_each_entry(ndlp, &vport->fc_nodes, nlp_listp) {
4788                 if (lpfc_matchdid(vport, ndlp, did)) {
4789                         data1 = (((uint32_t) ndlp->nlp_state << 24) |
4790                                  ((uint32_t) ndlp->nlp_xri << 16) |
4791                                  ((uint32_t) ndlp->nlp_type << 8) |
4792                                  ((uint32_t) ndlp->nlp_rpi & 0xff));
4793                         lpfc_printf_vlog(vport, KERN_INFO, LOG_NODE,
4794                                          "0929 FIND node DID "
4795                                          "Data: x%p x%x x%x x%x\n",
4796                                          ndlp, ndlp->nlp_DID,
4797                                          ndlp->nlp_flag, data1);
4798                         return ndlp;
4799                 }
4800         }
4801
4802         /* FIND node did <did> NOT FOUND */
4803         lpfc_printf_vlog(vport, KERN_INFO, LOG_NODE,
4804                          "0932 FIND node did x%x NOT FOUND.\n", did);
4805         return NULL;
4806 }
4807
4808 struct lpfc_nodelist *
4809 lpfc_findnode_did(struct lpfc_vport *vport, uint32_t did)
4810 {
4811         struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
4812         struct lpfc_nodelist *ndlp;
4813         unsigned long iflags;
4814
4815         spin_lock_irqsave(shost->host_lock, iflags);
4816         ndlp = __lpfc_findnode_did(vport, did);
4817         spin_unlock_irqrestore(shost->host_lock, iflags);
4818         return ndlp;
4819 }
4820
4821 struct lpfc_nodelist *
4822 lpfc_setup_disc_node(struct lpfc_vport *vport, uint32_t did)
4823 {
4824         struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
4825         struct lpfc_nodelist *ndlp;
4826
4827         ndlp = lpfc_findnode_did(vport, did);
4828         if (!ndlp) {
4829                 if ((vport->fc_flag & FC_RSCN_MODE) != 0 &&
4830                     lpfc_rscn_payload_check(vport, did) == 0)
4831                         return NULL;
4832                 ndlp = (struct lpfc_nodelist *)
4833                      mempool_alloc(vport->phba->nlp_mem_pool, GFP_KERNEL);
4834                 if (!ndlp)
4835                         return NULL;
4836                 lpfc_nlp_init(vport, ndlp, did);
4837                 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
4838                 spin_lock_irq(shost->host_lock);
4839                 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
4840                 spin_unlock_irq(shost->host_lock);
4841                 return ndlp;
4842         } else if (!NLP_CHK_NODE_ACT(ndlp)) {
4843                 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_NPR_NODE);
4844                 if (!ndlp)
4845                         return NULL;
4846                 spin_lock_irq(shost->host_lock);
4847                 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
4848                 spin_unlock_irq(shost->host_lock);
4849                 return ndlp;
4850         }
4851
4852         if ((vport->fc_flag & FC_RSCN_MODE) &&
4853             !(vport->fc_flag & FC_NDISC_ACTIVE)) {
4854                 if (lpfc_rscn_payload_check(vport, did)) {
4855                         /* If we've already received a PLOGI from this NPort
4856                          * we don't need to try to discover it again.
4857                          */
4858                         if (ndlp->nlp_flag & NLP_RCV_PLOGI)
4859                                 return NULL;
4860
4861                         /* Since this node is marked for discovery,
4862                          * delay timeout is not needed.
4863                          */
4864                         lpfc_cancel_retry_delay_tmo(vport, ndlp);
4865                         spin_lock_irq(shost->host_lock);
4866                         ndlp->nlp_flag |= NLP_NPR_2B_DISC;
4867                         spin_unlock_irq(shost->host_lock);
4868                 } else
4869                         ndlp = NULL;
4870         } else {
4871                 /* If we've already received a PLOGI from this NPort,
4872                  * or we are already in the process of discovery on it,
4873                  * we don't need to try to discover it again.
4874                  */
4875                 if (ndlp->nlp_state == NLP_STE_ADISC_ISSUE ||
4876                     ndlp->nlp_state == NLP_STE_PLOGI_ISSUE ||
4877                     ndlp->nlp_flag & NLP_RCV_PLOGI)
4878                         return NULL;
4879                 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
4880                 spin_lock_irq(shost->host_lock);
4881                 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
4882                 spin_unlock_irq(shost->host_lock);
4883         }
4884         return ndlp;
4885 }
4886
4887 /* Build a list of nodes to discover based on the loopmap */
4888 void
4889 lpfc_disc_list_loopmap(struct lpfc_vport *vport)
4890 {
4891         struct lpfc_hba  *phba = vport->phba;
4892         int j;
4893         uint32_t alpa, index;
4894
4895         if (!lpfc_is_link_up(phba))
4896                 return;
4897
4898         if (phba->fc_topology != LPFC_TOPOLOGY_LOOP)
4899                 return;
4900
4901         /* Check for loop map present or not */
4902         if (phba->alpa_map[0]) {
4903                 for (j = 1; j <= phba->alpa_map[0]; j++) {
4904                         alpa = phba->alpa_map[j];
4905                         if (((vport->fc_myDID & 0xff) == alpa) || (alpa == 0))
4906                                 continue;
4907                         lpfc_setup_disc_node(vport, alpa);
4908                 }
4909         } else {
4910                 /* No alpamap, so try all alpa's */
4911                 for (j = 0; j < FC_MAXLOOP; j++) {
4912                         /* If cfg_scan_down is set, start from highest
4913                          * ALPA (0xef) to lowest (0x1).
4914                          */
4915                         if (vport->cfg_scan_down)
4916                                 index = j;
4917                         else
4918                                 index = FC_MAXLOOP - j - 1;
4919                         alpa = lpfcAlpaArray[index];
4920                         if ((vport->fc_myDID & 0xff) == alpa)
4921                                 continue;
4922                         lpfc_setup_disc_node(vport, alpa);
4923                 }
4924         }
4925         return;
4926 }
4927
4928 void
4929 lpfc_issue_clear_la(struct lpfc_hba *phba, struct lpfc_vport *vport)
4930 {
4931         LPFC_MBOXQ_t *mbox;
4932         struct lpfc_sli *psli = &phba->sli;
4933         struct lpfc_sli_ring *extra_ring = &psli->ring[psli->extra_ring];
4934         struct lpfc_sli_ring *fcp_ring   = &psli->ring[psli->fcp_ring];
4935         struct lpfc_sli_ring *next_ring  = &psli->ring[psli->next_ring];
4936         int  rc;
4937
4938         /*
4939          * if it's not a physical port or if we already send
4940          * clear_la then don't send it.
4941          */
4942         if ((phba->link_state >= LPFC_CLEAR_LA) ||
4943             (vport->port_type != LPFC_PHYSICAL_PORT) ||
4944                 (phba->sli_rev == LPFC_SLI_REV4))
4945                 return;
4946
4947                         /* Link up discovery */
4948         if ((mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL)) != NULL) {
4949                 phba->link_state = LPFC_CLEAR_LA;
4950                 lpfc_clear_la(phba, mbox);
4951                 mbox->mbox_cmpl = lpfc_mbx_cmpl_clear_la;
4952                 mbox->vport = vport;
4953                 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
4954                 if (rc == MBX_NOT_FINISHED) {
4955                         mempool_free(mbox, phba->mbox_mem_pool);
4956                         lpfc_disc_flush_list(vport);
4957                         extra_ring->flag &= ~LPFC_STOP_IOCB_EVENT;
4958                         fcp_ring->flag &= ~LPFC_STOP_IOCB_EVENT;
4959                         next_ring->flag &= ~LPFC_STOP_IOCB_EVENT;
4960                         phba->link_state = LPFC_HBA_ERROR;
4961                 }
4962         }
4963 }
4964
4965 /* Reg_vpi to tell firmware to resume normal operations */
4966 void
4967 lpfc_issue_reg_vpi(struct lpfc_hba *phba, struct lpfc_vport *vport)
4968 {
4969         LPFC_MBOXQ_t *regvpimbox;
4970
4971         regvpimbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4972         if (regvpimbox) {
4973                 lpfc_reg_vpi(vport, regvpimbox);
4974                 regvpimbox->mbox_cmpl = lpfc_mbx_cmpl_reg_vpi;
4975                 regvpimbox->vport = vport;
4976                 if (lpfc_sli_issue_mbox(phba, regvpimbox, MBX_NOWAIT)
4977                                         == MBX_NOT_FINISHED) {
4978                         mempool_free(regvpimbox, phba->mbox_mem_pool);
4979                 }
4980         }
4981 }
4982
4983 /* Start Link up / RSCN discovery on NPR nodes */
4984 void
4985 lpfc_disc_start(struct lpfc_vport *vport)
4986 {
4987         struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
4988         struct lpfc_hba  *phba = vport->phba;
4989         uint32_t num_sent;
4990         uint32_t clear_la_pending;
4991         int did_changed;
4992
4993         if (!lpfc_is_link_up(phba)) {
4994                 lpfc_printf_vlog(vport, KERN_INFO, LOG_SLI,
4995                                  "3315 Link is not up %x\n",
4996                                  phba->link_state);
4997                 return;
4998         }
4999
5000         if (phba->link_state == LPFC_CLEAR_LA)
5001                 clear_la_pending = 1;
5002         else
5003                 clear_la_pending = 0;
5004
5005         if (vport->port_state < LPFC_VPORT_READY)
5006                 vport->port_state = LPFC_DISC_AUTH;
5007
5008         lpfc_set_disctmo(vport);
5009
5010         if (vport->fc_prevDID == vport->fc_myDID)
5011                 did_changed = 0;
5012         else
5013                 did_changed = 1;
5014
5015         vport->fc_prevDID = vport->fc_myDID;
5016         vport->num_disc_nodes = 0;
5017
5018         /* Start Discovery state <hba_state> */
5019         lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
5020                          "0202 Start Discovery hba state x%x "
5021                          "Data: x%x x%x x%x\n",
5022                          vport->port_state, vport->fc_flag, vport->fc_plogi_cnt,
5023                          vport->fc_adisc_cnt);
5024
5025         /* First do ADISCs - if any */
5026         num_sent = lpfc_els_disc_adisc(vport);
5027
5028         if (num_sent)
5029                 return;
5030
5031         /* Register the VPI for SLI3, NON-NPIV only. */
5032         if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
5033             !(vport->fc_flag & FC_PT2PT) &&
5034             !(vport->fc_flag & FC_RSCN_MODE) &&
5035             (phba->sli_rev < LPFC_SLI_REV4)) {
5036                 lpfc_issue_reg_vpi(phba, vport);
5037                 return;
5038         }
5039
5040         /*
5041          * For SLI2, we need to set port_state to READY and continue
5042          * discovery.
5043          */
5044         if (vport->port_state < LPFC_VPORT_READY && !clear_la_pending) {
5045                 /* If we get here, there is nothing to ADISC */
5046                 if (vport->port_type == LPFC_PHYSICAL_PORT)
5047                         lpfc_issue_clear_la(phba, vport);
5048
5049                 if (!(vport->fc_flag & FC_ABORT_DISCOVERY)) {
5050                         vport->num_disc_nodes = 0;
5051                         /* go thru NPR nodes and issue ELS PLOGIs */
5052                         if (vport->fc_npr_cnt)
5053                                 lpfc_els_disc_plogi(vport);
5054
5055                         if (!vport->num_disc_nodes) {
5056                                 spin_lock_irq(shost->host_lock);
5057                                 vport->fc_flag &= ~FC_NDISC_ACTIVE;
5058                                 spin_unlock_irq(shost->host_lock);
5059                                 lpfc_can_disctmo(vport);
5060                         }
5061                 }
5062                 vport->port_state = LPFC_VPORT_READY;
5063         } else {
5064                 /* Next do PLOGIs - if any */
5065                 num_sent = lpfc_els_disc_plogi(vport);
5066
5067                 if (num_sent)
5068                         return;
5069
5070                 if (vport->fc_flag & FC_RSCN_MODE) {
5071                         /* Check to see if more RSCNs came in while we
5072                          * were processing this one.
5073                          */
5074                         if ((vport->fc_rscn_id_cnt == 0) &&
5075                             (!(vport->fc_flag & FC_RSCN_DISCOVERY))) {
5076                                 spin_lock_irq(shost->host_lock);
5077                                 vport->fc_flag &= ~FC_RSCN_MODE;
5078                                 spin_unlock_irq(shost->host_lock);
5079                                 lpfc_can_disctmo(vport);
5080                         } else
5081                                 lpfc_els_handle_rscn(vport);
5082                 }
5083         }
5084         return;
5085 }
5086
5087 /*
5088  *  Ignore completion for all IOCBs on tx and txcmpl queue for ELS
5089  *  ring the match the sppecified nodelist.
5090  */
5091 static void
5092 lpfc_free_tx(struct lpfc_hba *phba, struct lpfc_nodelist *ndlp)
5093 {
5094         LIST_HEAD(completions);
5095         struct lpfc_sli *psli;
5096         IOCB_t     *icmd;
5097         struct lpfc_iocbq    *iocb, *next_iocb;
5098         struct lpfc_sli_ring *pring;
5099
5100         psli = &phba->sli;
5101         pring = &psli->ring[LPFC_ELS_RING];
5102
5103         /* Error matching iocb on txq or txcmplq
5104          * First check the txq.
5105          */
5106         spin_lock_irq(&phba->hbalock);
5107         list_for_each_entry_safe(iocb, next_iocb, &pring->txq, list) {
5108                 if (iocb->context1 != ndlp) {
5109                         continue;
5110                 }
5111                 icmd = &iocb->iocb;
5112                 if ((icmd->ulpCommand == CMD_ELS_REQUEST64_CR) ||
5113                     (icmd->ulpCommand == CMD_XMIT_ELS_RSP64_CX)) {
5114
5115                         list_move_tail(&iocb->list, &completions);
5116                 }
5117         }
5118
5119         /* Next check the txcmplq */
5120         list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq, list) {
5121                 if (iocb->context1 != ndlp) {
5122                         continue;
5123                 }
5124                 icmd = &iocb->iocb;
5125                 if (icmd->ulpCommand == CMD_ELS_REQUEST64_CR ||
5126                     icmd->ulpCommand == CMD_XMIT_ELS_RSP64_CX) {
5127                         lpfc_sli_issue_abort_iotag(phba, pring, iocb);
5128                 }
5129         }
5130         spin_unlock_irq(&phba->hbalock);
5131
5132         /* Cancel all the IOCBs from the completions list */
5133         lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
5134                               IOERR_SLI_ABORTED);
5135 }
5136
5137 static void
5138 lpfc_disc_flush_list(struct lpfc_vport *vport)
5139 {
5140         struct lpfc_nodelist *ndlp, *next_ndlp;
5141         struct lpfc_hba *phba = vport->phba;
5142
5143         if (vport->fc_plogi_cnt || vport->fc_adisc_cnt) {
5144                 list_for_each_entry_safe(ndlp, next_ndlp, &vport->fc_nodes,
5145                                          nlp_listp) {
5146                         if (!NLP_CHK_NODE_ACT(ndlp))
5147                                 continue;
5148                         if (ndlp->nlp_state == NLP_STE_PLOGI_ISSUE ||
5149                             ndlp->nlp_state == NLP_STE_ADISC_ISSUE) {
5150                                 lpfc_free_tx(phba, ndlp);
5151                         }
5152                 }
5153         }
5154 }
5155
5156 void
5157 lpfc_cleanup_discovery_resources(struct lpfc_vport *vport)
5158 {
5159         lpfc_els_flush_rscn(vport);
5160         lpfc_els_flush_cmd(vport);
5161         lpfc_disc_flush_list(vport);
5162 }
5163
5164 /*****************************************************************************/
5165 /*
5166  * NAME:     lpfc_disc_timeout
5167  *
5168  * FUNCTION: Fibre Channel driver discovery timeout routine.
5169  *
5170  * EXECUTION ENVIRONMENT: interrupt only
5171  *
5172  * CALLED FROM:
5173  *      Timer function
5174  *
5175  * RETURNS:
5176  *      none
5177  */
5178 /*****************************************************************************/
5179 void
5180 lpfc_disc_timeout(unsigned long ptr)
5181 {
5182         struct lpfc_vport *vport = (struct lpfc_vport *) ptr;
5183         struct lpfc_hba   *phba = vport->phba;
5184         uint32_t tmo_posted;
5185         unsigned long flags = 0;
5186
5187         if (unlikely(!phba))
5188                 return;
5189
5190         spin_lock_irqsave(&vport->work_port_lock, flags);
5191         tmo_posted = vport->work_port_events & WORKER_DISC_TMO;
5192         if (!tmo_posted)
5193                 vport->work_port_events |= WORKER_DISC_TMO;
5194         spin_unlock_irqrestore(&vport->work_port_lock, flags);
5195
5196         if (!tmo_posted)
5197                 lpfc_worker_wake_up(phba);
5198         return;
5199 }
5200
5201 static void
5202 lpfc_disc_timeout_handler(struct lpfc_vport *vport)
5203 {
5204         struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
5205         struct lpfc_hba  *phba = vport->phba;
5206         struct lpfc_sli  *psli = &phba->sli;
5207         struct lpfc_nodelist *ndlp, *next_ndlp;
5208         LPFC_MBOXQ_t *initlinkmbox;
5209         int rc, clrlaerr = 0;
5210
5211         if (!(vport->fc_flag & FC_DISC_TMO))
5212                 return;
5213
5214         spin_lock_irq(shost->host_lock);
5215         vport->fc_flag &= ~FC_DISC_TMO;
5216         spin_unlock_irq(shost->host_lock);
5217
5218         lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
5219                 "disc timeout:    state:x%x rtry:x%x flg:x%x",
5220                 vport->port_state, vport->fc_ns_retry, vport->fc_flag);
5221
5222         switch (vport->port_state) {
5223
5224         case LPFC_LOCAL_CFG_LINK:
5225         /* port_state is identically  LPFC_LOCAL_CFG_LINK while waiting for
5226          * FAN
5227          */
5228                                 /* FAN timeout */
5229                 lpfc_printf_vlog(vport, KERN_WARNING, LOG_DISCOVERY,
5230                                  "0221 FAN timeout\n");
5231                 /* Start discovery by sending FLOGI, clean up old rpis */
5232                 list_for_each_entry_safe(ndlp, next_ndlp, &vport->fc_nodes,
5233                                          nlp_listp) {
5234                         if (!NLP_CHK_NODE_ACT(ndlp))
5235                                 continue;
5236                         if (ndlp->nlp_state != NLP_STE_NPR_NODE)
5237                                 continue;
5238                         if (ndlp->nlp_type & NLP_FABRIC) {
5239                                 /* Clean up the ndlp on Fabric connections */
5240                                 lpfc_drop_node(vport, ndlp);
5241
5242                         } else if (!(ndlp->nlp_flag & NLP_NPR_ADISC)) {
5243                                 /* Fail outstanding IO now since device
5244                                  * is marked for PLOGI.
5245                                  */
5246                                 lpfc_unreg_rpi(vport, ndlp);
5247                         }
5248                 }
5249                 if (vport->port_state != LPFC_FLOGI) {
5250                         if (phba->sli_rev <= LPFC_SLI_REV3)
5251                                 lpfc_initial_flogi(vport);
5252                         else
5253                                 lpfc_issue_init_vfi(vport);
5254                         return;
5255                 }
5256                 break;
5257
5258         case LPFC_FDISC:
5259         case LPFC_FLOGI:
5260         /* port_state is identically LPFC_FLOGI while waiting for FLOGI cmpl */
5261                 /* Initial FLOGI timeout */
5262                 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
5263                                  "0222 Initial %s timeout\n",
5264                                  vport->vpi ? "FDISC" : "FLOGI");
5265
5266                 /* Assume no Fabric and go on with discovery.
5267                  * Check for outstanding ELS FLOGI to abort.
5268                  */
5269
5270                 /* FLOGI failed, so just use loop map to make discovery list */
5271                 lpfc_disc_list_loopmap(vport);
5272
5273                 /* Start discovery */
5274                 lpfc_disc_start(vport);
5275                 break;
5276
5277         case LPFC_FABRIC_CFG_LINK:
5278         /* hba_state is identically LPFC_FABRIC_CFG_LINK while waiting for
5279            NameServer login */
5280                 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
5281                                  "0223 Timeout while waiting for "
5282                                  "NameServer login\n");
5283                 /* Next look for NameServer ndlp */
5284                 ndlp = lpfc_findnode_did(vport, NameServer_DID);
5285                 if (ndlp && NLP_CHK_NODE_ACT(ndlp))
5286                         lpfc_els_abort(phba, ndlp);
5287
5288                 /* ReStart discovery */
5289                 goto restart_disc;
5290
5291         case LPFC_NS_QRY:
5292         /* Check for wait for NameServer Rsp timeout */
5293                 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
5294                                  "0224 NameServer Query timeout "
5295                                  "Data: x%x x%x\n",
5296                                  vport->fc_ns_retry, LPFC_MAX_NS_RETRY);
5297
5298                 if (vport->fc_ns_retry < LPFC_MAX_NS_RETRY) {
5299                         /* Try it one more time */
5300                         vport->fc_ns_retry++;
5301                         rc = lpfc_ns_cmd(vport, SLI_CTNS_GID_FT,
5302                                          vport->fc_ns_retry, 0);
5303                         if (rc == 0)
5304                                 break;
5305                 }
5306                 vport->fc_ns_retry = 0;
5307
5308 restart_disc:
5309                 /*
5310                  * Discovery is over.
5311                  * set port_state to PORT_READY if SLI2.
5312                  * cmpl_reg_vpi will set port_state to READY for SLI3.
5313                  */
5314                 if (phba->sli_rev < LPFC_SLI_REV4) {
5315                         if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED)
5316                                 lpfc_issue_reg_vpi(phba, vport);
5317                         else  {
5318                                 lpfc_issue_clear_la(phba, vport);
5319                                 vport->port_state = LPFC_VPORT_READY;
5320                         }
5321                 }
5322
5323                 /* Setup and issue mailbox INITIALIZE LINK command */
5324                 initlinkmbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5325                 if (!initlinkmbox) {
5326                         lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
5327                                          "0206 Device Discovery "
5328                                          "completion error\n");
5329                         phba->link_state = LPFC_HBA_ERROR;
5330                         break;
5331                 }
5332
5333                 lpfc_linkdown(phba);
5334                 lpfc_init_link(phba, initlinkmbox, phba->cfg_topology,
5335                                phba->cfg_link_speed);
5336                 initlinkmbox->u.mb.un.varInitLnk.lipsr_AL_PA = 0;
5337                 initlinkmbox->vport = vport;
5338                 initlinkmbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
5339                 rc = lpfc_sli_issue_mbox(phba, initlinkmbox, MBX_NOWAIT);
5340                 lpfc_set_loopback_flag(phba);
5341                 if (rc == MBX_NOT_FINISHED)
5342                         mempool_free(initlinkmbox, phba->mbox_mem_pool);
5343
5344                 break;
5345
5346         case LPFC_DISC_AUTH:
5347         /* Node Authentication timeout */
5348                 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
5349                                  "0227 Node Authentication timeout\n");
5350                 lpfc_disc_flush_list(vport);
5351
5352                 /*
5353                  * set port_state to PORT_READY if SLI2.
5354                  * cmpl_reg_vpi will set port_state to READY for SLI3.
5355                  */
5356                 if (phba->sli_rev < LPFC_SLI_REV4) {
5357                         if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED)
5358                                 lpfc_issue_reg_vpi(phba, vport);
5359                         else  { /* NPIV Not enabled */
5360                                 lpfc_issue_clear_la(phba, vport);
5361                                 vport->port_state = LPFC_VPORT_READY;
5362                         }
5363                 }
5364                 break;
5365
5366         case LPFC_VPORT_READY:
5367                 if (vport->fc_flag & FC_RSCN_MODE) {
5368                         lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
5369                                          "0231 RSCN timeout Data: x%x "
5370                                          "x%x\n",
5371                                          vport->fc_ns_retry, LPFC_MAX_NS_RETRY);
5372
5373                         /* Cleanup any outstanding ELS commands */
5374                         lpfc_els_flush_cmd(vport);
5375
5376                         lpfc_els_flush_rscn(vport);
5377                         lpfc_disc_flush_list(vport);
5378                 }
5379                 break;
5380
5381         default:
5382                 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
5383                                  "0273 Unexpected discovery timeout, "
5384                                  "vport State x%x\n", vport->port_state);
5385                 break;
5386         }
5387
5388         switch (phba->link_state) {
5389         case LPFC_CLEAR_LA:
5390                                 /* CLEAR LA timeout */
5391                 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
5392                                  "0228 CLEAR LA timeout\n");
5393                 clrlaerr = 1;
5394                 break;
5395
5396         case LPFC_LINK_UP:
5397                 lpfc_issue_clear_la(phba, vport);
5398                 /* Drop thru */
5399         case LPFC_LINK_UNKNOWN:
5400         case LPFC_WARM_START:
5401         case LPFC_INIT_START:
5402         case LPFC_INIT_MBX_CMDS:
5403         case LPFC_LINK_DOWN:
5404         case LPFC_HBA_ERROR:
5405                 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
5406                                  "0230 Unexpected timeout, hba link "
5407                                  "state x%x\n", phba->link_state);
5408                 clrlaerr = 1;
5409                 break;
5410
5411         case LPFC_HBA_READY:
5412                 break;
5413         }
5414
5415         if (clrlaerr) {
5416                 lpfc_disc_flush_list(vport);
5417                 psli->ring[(psli->extra_ring)].flag &= ~LPFC_STOP_IOCB_EVENT;
5418                 psli->ring[(psli->fcp_ring)].flag &= ~LPFC_STOP_IOCB_EVENT;
5419                 psli->ring[(psli->next_ring)].flag &= ~LPFC_STOP_IOCB_EVENT;
5420                 vport->port_state = LPFC_VPORT_READY;
5421         }
5422
5423         return;
5424 }
5425
5426 /*
5427  * This routine handles processing a NameServer REG_LOGIN mailbox
5428  * command upon completion. It is setup in the LPFC_MBOXQ
5429  * as the completion routine when the command is
5430  * handed off to the SLI layer.
5431  */
5432 void
5433 lpfc_mbx_cmpl_fdmi_reg_login(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
5434 {
5435         MAILBOX_t *mb = &pmb->u.mb;
5436         struct lpfc_dmabuf   *mp = (struct lpfc_dmabuf *) (pmb->context1);
5437         struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) pmb->context2;
5438         struct lpfc_vport    *vport = pmb->vport;
5439
5440         pmb->context1 = NULL;
5441         pmb->context2 = NULL;
5442
5443         if (phba->sli_rev < LPFC_SLI_REV4)
5444                 ndlp->nlp_rpi = mb->un.varWords[0];
5445         ndlp->nlp_flag |= NLP_RPI_REGISTERED;
5446         ndlp->nlp_type |= NLP_FABRIC;
5447         lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
5448
5449         /*
5450          * Start issuing Fabric-Device Management Interface (FDMI) command to
5451          * 0xfffffa (FDMI well known port) or Delay issuing FDMI command if
5452          * fdmi-on=2 (supporting RPA/hostnmae)
5453          */
5454
5455         if (vport->cfg_fdmi_on == 1)
5456                 lpfc_fdmi_cmd(vport, ndlp, SLI_MGMT_DHBA);
5457         else
5458                 mod_timer(&vport->fc_fdmitmo,
5459                           jiffies + msecs_to_jiffies(1000 * 60));
5460
5461         /* decrement the node reference count held for this callback
5462          * function.
5463          */
5464         lpfc_nlp_put(ndlp);
5465         lpfc_mbuf_free(phba, mp->virt, mp->phys);
5466         kfree(mp);
5467         mempool_free(pmb, phba->mbox_mem_pool);
5468
5469         return;
5470 }
5471
5472 static int
5473 lpfc_filter_by_rpi(struct lpfc_nodelist *ndlp, void *param)
5474 {
5475         uint16_t *rpi = param;
5476
5477         /* check for active node */
5478         if (!NLP_CHK_NODE_ACT(ndlp))
5479                 return 0;
5480
5481         return ndlp->nlp_rpi == *rpi;
5482 }
5483
5484 static int
5485 lpfc_filter_by_wwpn(struct lpfc_nodelist *ndlp, void *param)
5486 {
5487         return memcmp(&ndlp->nlp_portname, param,
5488                       sizeof(ndlp->nlp_portname)) == 0;
5489 }
5490
5491 static struct lpfc_nodelist *
5492 __lpfc_find_node(struct lpfc_vport *vport, node_filter filter, void *param)
5493 {
5494         struct lpfc_nodelist *ndlp;
5495
5496         list_for_each_entry(ndlp, &vport->fc_nodes, nlp_listp) {
5497                 if (filter(ndlp, param)) {
5498                         lpfc_printf_vlog(vport, KERN_INFO, LOG_NODE,
5499                                          "3185 FIND node filter %p DID "
5500                                          "Data: x%p x%x x%x\n",
5501                                          filter, ndlp, ndlp->nlp_DID,
5502                                          ndlp->nlp_flag);
5503                         return ndlp;
5504                 }
5505         }
5506         lpfc_printf_vlog(vport, KERN_INFO, LOG_NODE,
5507                          "3186 FIND node filter %p NOT FOUND.\n", filter);
5508         return NULL;
5509 }
5510
5511 /*
5512  * This routine looks up the ndlp lists for the given RPI. If rpi found it
5513  * returns the node list element pointer else return NULL.
5514  */
5515 struct lpfc_nodelist *
5516 __lpfc_findnode_rpi(struct lpfc_vport *vport, uint16_t rpi)
5517 {
5518         return __lpfc_find_node(vport, lpfc_filter_by_rpi, &rpi);
5519 }
5520
5521 /*
5522  * This routine looks up the ndlp lists for the given WWPN. If WWPN found it
5523  * returns the node element list pointer else return NULL.
5524  */
5525 struct lpfc_nodelist *
5526 lpfc_findnode_wwpn(struct lpfc_vport *vport, struct lpfc_name *wwpn)
5527 {
5528         struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
5529         struct lpfc_nodelist *ndlp;
5530
5531         spin_lock_irq(shost->host_lock);
5532         ndlp = __lpfc_find_node(vport, lpfc_filter_by_wwpn, wwpn);
5533         spin_unlock_irq(shost->host_lock);
5534         return ndlp;
5535 }
5536
5537 /*
5538  * This routine looks up the ndlp lists for the given RPI. If the rpi
5539  * is found, the routine returns the node element list pointer else
5540  * return NULL.
5541  */
5542 struct lpfc_nodelist *
5543 lpfc_findnode_rpi(struct lpfc_vport *vport, uint16_t rpi)
5544 {
5545         struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
5546         struct lpfc_nodelist *ndlp;
5547
5548         spin_lock_irq(shost->host_lock);
5549         ndlp = __lpfc_findnode_rpi(vport, rpi);
5550         spin_unlock_irq(shost->host_lock);
5551         return ndlp;
5552 }
5553
5554 /**
5555  * lpfc_find_vport_by_vpid - Find a vport on a HBA through vport identifier
5556  * @phba: pointer to lpfc hba data structure.
5557  * @vpi: the physical host virtual N_Port identifier.
5558  *
5559  * This routine finds a vport on a HBA (referred by @phba) through a
5560  * @vpi. The function walks the HBA's vport list and returns the address
5561  * of the vport with the matching @vpi.
5562  *
5563  * Return code
5564  *    NULL - No vport with the matching @vpi found
5565  *    Otherwise - Address to the vport with the matching @vpi.
5566  **/
5567 struct lpfc_vport *
5568 lpfc_find_vport_by_vpid(struct lpfc_hba *phba, uint16_t vpi)
5569 {
5570         struct lpfc_vport *vport;
5571         unsigned long flags;
5572         int i = 0;
5573
5574         /* The physical ports are always vpi 0 - translate is unnecessary. */
5575         if (vpi > 0) {
5576                 /*
5577                  * Translate the physical vpi to the logical vpi.  The
5578                  * vport stores the logical vpi.
5579                  */
5580                 for (i = 0; i < phba->max_vpi; i++) {
5581                         if (vpi == phba->vpi_ids[i])
5582                                 break;
5583                 }
5584
5585                 if (i >= phba->max_vpi) {
5586                         lpfc_printf_log(phba, KERN_ERR, LOG_ELS,
5587                                          "2936 Could not find Vport mapped "
5588                                          "to vpi %d\n", vpi);
5589                         return NULL;
5590                 }
5591         }
5592
5593         spin_lock_irqsave(&phba->hbalock, flags);
5594         list_for_each_entry(vport, &phba->port_list, listentry) {
5595                 if (vport->vpi == i) {
5596                         spin_unlock_irqrestore(&phba->hbalock, flags);
5597                         return vport;
5598                 }
5599         }
5600         spin_unlock_irqrestore(&phba->hbalock, flags);
5601         return NULL;
5602 }
5603
5604 void
5605 lpfc_nlp_init(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
5606               uint32_t did)
5607 {
5608         memset(ndlp, 0, sizeof (struct lpfc_nodelist));
5609
5610         lpfc_initialize_node(vport, ndlp, did);
5611         INIT_LIST_HEAD(&ndlp->nlp_listp);
5612
5613         lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_NODE,
5614                 "node init:       did:x%x",
5615                 ndlp->nlp_DID, 0, 0);
5616
5617         return;
5618 }
5619
5620 /* This routine releases all resources associated with a specifc NPort's ndlp
5621  * and mempool_free's the nodelist.
5622  */
5623 static void
5624 lpfc_nlp_release(struct kref *kref)
5625 {
5626         struct lpfc_hba *phba;
5627         unsigned long flags;
5628         struct lpfc_nodelist *ndlp = container_of(kref, struct lpfc_nodelist,
5629                                                   kref);
5630
5631         lpfc_debugfs_disc_trc(ndlp->vport, LPFC_DISC_TRC_NODE,
5632                 "node release:    did:x%x flg:x%x type:x%x",
5633                 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_type);
5634
5635         lpfc_printf_vlog(ndlp->vport, KERN_INFO, LOG_NODE,
5636                         "0279 lpfc_nlp_release: ndlp:x%p did %x "
5637                         "usgmap:x%x refcnt:%d\n",
5638                         (void *)ndlp, ndlp->nlp_DID, ndlp->nlp_usg_map,
5639                         atomic_read(&ndlp->kref.refcount));
5640
5641         /* remove ndlp from action. */
5642         lpfc_nlp_remove(ndlp->vport, ndlp);
5643
5644         /* clear the ndlp active flag for all release cases */
5645         phba = ndlp->phba;
5646         spin_lock_irqsave(&phba->ndlp_lock, flags);
5647         NLP_CLR_NODE_ACT(ndlp);
5648         spin_unlock_irqrestore(&phba->ndlp_lock, flags);
5649         if (phba->sli_rev == LPFC_SLI_REV4)
5650                 lpfc_sli4_free_rpi(phba, ndlp->nlp_rpi);
5651
5652         /* free ndlp memory for final ndlp release */
5653         if (NLP_CHK_FREE_REQ(ndlp)) {
5654                 kfree(ndlp->lat_data);
5655                 mempool_free(ndlp, ndlp->phba->nlp_mem_pool);
5656         }
5657 }
5658
5659 /* This routine bumps the reference count for a ndlp structure to ensure
5660  * that one discovery thread won't free a ndlp while another discovery thread
5661  * is using it.
5662  */
5663 struct lpfc_nodelist *
5664 lpfc_nlp_get(struct lpfc_nodelist *ndlp)
5665 {
5666         struct lpfc_hba *phba;
5667         unsigned long flags;
5668
5669         if (ndlp) {
5670                 lpfc_debugfs_disc_trc(ndlp->vport, LPFC_DISC_TRC_NODE,
5671                         "node get:        did:x%x flg:x%x refcnt:x%x",
5672                         ndlp->nlp_DID, ndlp->nlp_flag,
5673                         atomic_read(&ndlp->kref.refcount));
5674                 /* The check of ndlp usage to prevent incrementing the
5675                  * ndlp reference count that is in the process of being
5676                  * released.
5677                  */
5678                 phba = ndlp->phba;
5679                 spin_lock_irqsave(&phba->ndlp_lock, flags);
5680                 if (!NLP_CHK_NODE_ACT(ndlp) || NLP_CHK_FREE_ACK(ndlp)) {
5681                         spin_unlock_irqrestore(&phba->ndlp_lock, flags);
5682                         lpfc_printf_vlog(ndlp->vport, KERN_WARNING, LOG_NODE,
5683                                 "0276 lpfc_nlp_get: ndlp:x%p "
5684                                 "usgmap:x%x refcnt:%d\n",
5685                                 (void *)ndlp, ndlp->nlp_usg_map,
5686                                 atomic_read(&ndlp->kref.refcount));
5687                         return NULL;
5688                 } else
5689                         kref_get(&ndlp->kref);
5690                 spin_unlock_irqrestore(&phba->ndlp_lock, flags);
5691         }
5692         return ndlp;
5693 }
5694
5695 /* This routine decrements the reference count for a ndlp structure. If the
5696  * count goes to 0, this indicates the the associated nodelist should be
5697  * freed. Returning 1 indicates the ndlp resource has been released; on the
5698  * other hand, returning 0 indicates the ndlp resource has not been released
5699  * yet.
5700  */
5701 int
5702 lpfc_nlp_put(struct lpfc_nodelist *ndlp)
5703 {
5704         struct lpfc_hba *phba;
5705         unsigned long flags;
5706
5707         if (!ndlp)
5708                 return 1;
5709
5710         lpfc_debugfs_disc_trc(ndlp->vport, LPFC_DISC_TRC_NODE,
5711         "node put:        did:x%x flg:x%x refcnt:x%x",
5712                 ndlp->nlp_DID, ndlp->nlp_flag,
5713                 atomic_read(&ndlp->kref.refcount));
5714         phba = ndlp->phba;
5715         spin_lock_irqsave(&phba->ndlp_lock, flags);
5716         /* Check the ndlp memory free acknowledge flag to avoid the
5717          * possible race condition that kref_put got invoked again
5718          * after previous one has done ndlp memory free.
5719          */
5720         if (NLP_CHK_FREE_ACK(ndlp)) {
5721                 spin_unlock_irqrestore(&phba->ndlp_lock, flags);
5722                 lpfc_printf_vlog(ndlp->vport, KERN_WARNING, LOG_NODE,
5723                                 "0274 lpfc_nlp_put: ndlp:x%p "
5724                                 "usgmap:x%x refcnt:%d\n",
5725                                 (void *)ndlp, ndlp->nlp_usg_map,
5726                                 atomic_read(&ndlp->kref.refcount));
5727                 return 1;
5728         }
5729         /* Check the ndlp inactivate log flag to avoid the possible
5730          * race condition that kref_put got invoked again after ndlp
5731          * is already in inactivating state.
5732          */
5733         if (NLP_CHK_IACT_REQ(ndlp)) {
5734                 spin_unlock_irqrestore(&phba->ndlp_lock, flags);
5735                 lpfc_printf_vlog(ndlp->vport, KERN_WARNING, LOG_NODE,
5736                                 "0275 lpfc_nlp_put: ndlp:x%p "
5737                                 "usgmap:x%x refcnt:%d\n",
5738                                 (void *)ndlp, ndlp->nlp_usg_map,
5739                                 atomic_read(&ndlp->kref.refcount));
5740                 return 1;
5741         }
5742         /* For last put, mark the ndlp usage flags to make sure no
5743          * other kref_get and kref_put on the same ndlp shall get
5744          * in between the process when the final kref_put has been
5745          * invoked on this ndlp.
5746          */
5747         if (atomic_read(&ndlp->kref.refcount) == 1) {
5748                 /* Indicate ndlp is put to inactive state. */
5749                 NLP_SET_IACT_REQ(ndlp);
5750                 /* Acknowledge ndlp memory free has been seen. */
5751                 if (NLP_CHK_FREE_REQ(ndlp))
5752                         NLP_SET_FREE_ACK(ndlp);
5753         }
5754         spin_unlock_irqrestore(&phba->ndlp_lock, flags);
5755         /* Note, the kref_put returns 1 when decrementing a reference
5756          * count that was 1, it invokes the release callback function,
5757          * but it still left the reference count as 1 (not actually
5758          * performs the last decrementation). Otherwise, it actually
5759          * decrements the reference count and returns 0.
5760          */
5761         return kref_put(&ndlp->kref, lpfc_nlp_release);
5762 }
5763
5764 /* This routine free's the specified nodelist if it is not in use
5765  * by any other discovery thread. This routine returns 1 if the
5766  * ndlp has been freed. A return value of 0 indicates the ndlp is
5767  * not yet been released.
5768  */
5769 int
5770 lpfc_nlp_not_used(struct lpfc_nodelist *ndlp)
5771 {
5772         lpfc_debugfs_disc_trc(ndlp->vport, LPFC_DISC_TRC_NODE,
5773                 "node not used:   did:x%x flg:x%x refcnt:x%x",
5774                 ndlp->nlp_DID, ndlp->nlp_flag,
5775                 atomic_read(&ndlp->kref.refcount));
5776         if (atomic_read(&ndlp->kref.refcount) == 1)
5777                 if (lpfc_nlp_put(ndlp))
5778                         return 1;
5779         return 0;
5780 }
5781
5782 /**
5783  * lpfc_fcf_inuse - Check if FCF can be unregistered.
5784  * @phba: Pointer to hba context object.
5785  *
5786  * This function iterate through all FC nodes associated
5787  * will all vports to check if there is any node with
5788  * fc_rports associated with it. If there is an fc_rport
5789  * associated with the node, then the node is either in
5790  * discovered state or its devloss_timer is pending.
5791  */
5792 static int
5793 lpfc_fcf_inuse(struct lpfc_hba *phba)
5794 {
5795         struct lpfc_vport **vports;
5796         int i, ret = 0;
5797         struct lpfc_nodelist *ndlp;
5798         struct Scsi_Host  *shost;
5799
5800         vports = lpfc_create_vport_work_array(phba);
5801
5802         /* If driver cannot allocate memory, indicate fcf is in use */
5803         if (!vports)
5804                 return 1;
5805
5806         for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
5807                 shost = lpfc_shost_from_vport(vports[i]);
5808                 spin_lock_irq(shost->host_lock);
5809                 /*
5810                  * IF the CVL_RCVD bit is not set then we have sent the
5811                  * flogi.
5812                  * If dev_loss fires while we are waiting we do not want to
5813                  * unreg the fcf.
5814                  */
5815                 if (!(vports[i]->fc_flag & FC_VPORT_CVL_RCVD)) {
5816                         spin_unlock_irq(shost->host_lock);
5817                         ret =  1;
5818                         goto out;
5819                 }
5820                 list_for_each_entry(ndlp, &vports[i]->fc_nodes, nlp_listp) {
5821                         if (NLP_CHK_NODE_ACT(ndlp) && ndlp->rport &&
5822                           (ndlp->rport->roles & FC_RPORT_ROLE_FCP_TARGET)) {
5823                                 ret = 1;
5824                                 spin_unlock_irq(shost->host_lock);
5825                                 goto out;
5826                         } else if (ndlp->nlp_flag & NLP_RPI_REGISTERED) {
5827                                 ret = 1;
5828                                 lpfc_printf_log(phba, KERN_INFO, LOG_ELS,
5829                                                 "2624 RPI %x DID %x flag %x "
5830                                                 "still logged in\n",
5831                                                 ndlp->nlp_rpi, ndlp->nlp_DID,
5832                                                 ndlp->nlp_flag);
5833                         }
5834                 }
5835                 spin_unlock_irq(shost->host_lock);
5836         }
5837 out:
5838         lpfc_destroy_vport_work_array(phba, vports);
5839         return ret;
5840 }
5841
5842 /**
5843  * lpfc_unregister_vfi_cmpl - Completion handler for unreg vfi.
5844  * @phba: Pointer to hba context object.
5845  * @mboxq: Pointer to mailbox object.
5846  *
5847  * This function frees memory associated with the mailbox command.
5848  */
5849 void
5850 lpfc_unregister_vfi_cmpl(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
5851 {
5852         struct lpfc_vport *vport = mboxq->vport;
5853         struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
5854
5855         if (mboxq->u.mb.mbxStatus) {
5856                 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY|LOG_MBOX,
5857                         "2555 UNREG_VFI mbxStatus error x%x "
5858                         "HBA state x%x\n",
5859                         mboxq->u.mb.mbxStatus, vport->port_state);
5860         }
5861         spin_lock_irq(shost->host_lock);
5862         phba->pport->fc_flag &= ~FC_VFI_REGISTERED;
5863         spin_unlock_irq(shost->host_lock);
5864         mempool_free(mboxq, phba->mbox_mem_pool);
5865         return;
5866 }
5867
5868 /**
5869  * lpfc_unregister_fcfi_cmpl - Completion handler for unreg fcfi.
5870  * @phba: Pointer to hba context object.
5871  * @mboxq: Pointer to mailbox object.
5872  *
5873  * This function frees memory associated with the mailbox command.
5874  */
5875 static void
5876 lpfc_unregister_fcfi_cmpl(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
5877 {
5878         struct lpfc_vport *vport = mboxq->vport;
5879
5880         if (mboxq->u.mb.mbxStatus) {
5881                 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY|LOG_MBOX,
5882                         "2550 UNREG_FCFI mbxStatus error x%x "
5883                         "HBA state x%x\n",
5884                         mboxq->u.mb.mbxStatus, vport->port_state);
5885         }
5886         mempool_free(mboxq, phba->mbox_mem_pool);
5887         return;
5888 }
5889
5890 /**
5891  * lpfc_unregister_fcf_prep - Unregister fcf record preparation
5892  * @phba: Pointer to hba context object.
5893  *
5894  * This function prepare the HBA for unregistering the currently registered
5895  * FCF from the HBA. It performs unregistering, in order, RPIs, VPIs, and
5896  * VFIs.
5897  */
5898 int
5899 lpfc_unregister_fcf_prep(struct lpfc_hba *phba)
5900 {
5901         struct lpfc_vport **vports;
5902         struct lpfc_nodelist *ndlp;
5903         struct Scsi_Host *shost;
5904         int i = 0, rc;
5905
5906         /* Unregister RPIs */
5907         if (lpfc_fcf_inuse(phba))
5908                 lpfc_unreg_hba_rpis(phba);
5909
5910         /* At this point, all discovery is aborted */
5911         phba->pport->port_state = LPFC_VPORT_UNKNOWN;
5912
5913         /* Unregister VPIs */
5914         vports = lpfc_create_vport_work_array(phba);
5915         if (vports && (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED))
5916                 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
5917                         /* Stop FLOGI/FDISC retries */
5918                         ndlp = lpfc_findnode_did(vports[i], Fabric_DID);
5919                         if (ndlp)
5920                                 lpfc_cancel_retry_delay_tmo(vports[i], ndlp);
5921                         lpfc_cleanup_pending_mbox(vports[i]);
5922                         if (phba->sli_rev == LPFC_SLI_REV4)
5923                                 lpfc_sli4_unreg_all_rpis(vports[i]);
5924                         lpfc_mbx_unreg_vpi(vports[i]);
5925                         shost = lpfc_shost_from_vport(vports[i]);
5926                         spin_lock_irq(shost->host_lock);
5927                         vports[i]->fc_flag |= FC_VPORT_NEEDS_INIT_VPI;
5928                         vports[i]->vpi_state &= ~LPFC_VPI_REGISTERED;
5929                         spin_unlock_irq(shost->host_lock);
5930                 }
5931         lpfc_destroy_vport_work_array(phba, vports);
5932         if (i == 0 && (!(phba->sli3_options & LPFC_SLI3_NPIV_ENABLED))) {
5933                 ndlp = lpfc_findnode_did(phba->pport, Fabric_DID);
5934                 if (ndlp)
5935                         lpfc_cancel_retry_delay_tmo(phba->pport, ndlp);
5936                 lpfc_cleanup_pending_mbox(phba->pport);
5937                 if (phba->sli_rev == LPFC_SLI_REV4)
5938                         lpfc_sli4_unreg_all_rpis(phba->pport);
5939                 lpfc_mbx_unreg_vpi(phba->pport);
5940                 shost = lpfc_shost_from_vport(phba->pport);
5941                 spin_lock_irq(shost->host_lock);
5942                 phba->pport->fc_flag |= FC_VPORT_NEEDS_INIT_VPI;
5943                 phba->pport->vpi_state &= ~LPFC_VPI_REGISTERED;
5944                 spin_unlock_irq(shost->host_lock);
5945         }
5946
5947         /* Cleanup any outstanding ELS commands */
5948         lpfc_els_flush_all_cmd(phba);
5949
5950         /* Unregister the physical port VFI */
5951         rc = lpfc_issue_unreg_vfi(phba->pport);
5952         return rc;
5953 }
5954
5955 /**
5956  * lpfc_sli4_unregister_fcf - Unregister currently registered FCF record
5957  * @phba: Pointer to hba context object.
5958  *
5959  * This function issues synchronous unregister FCF mailbox command to HBA to
5960  * unregister the currently registered FCF record. The driver does not reset
5961  * the driver FCF usage state flags.
5962  *
5963  * Return 0 if successfully issued, none-zero otherwise.
5964  */
5965 int
5966 lpfc_sli4_unregister_fcf(struct lpfc_hba *phba)
5967 {
5968         LPFC_MBOXQ_t *mbox;
5969         int rc;
5970
5971         mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5972         if (!mbox) {
5973                 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY|LOG_MBOX,
5974                                 "2551 UNREG_FCFI mbox allocation failed"
5975                                 "HBA state x%x\n", phba->pport->port_state);
5976                 return -ENOMEM;
5977         }
5978         lpfc_unreg_fcfi(mbox, phba->fcf.fcfi);
5979         mbox->vport = phba->pport;
5980         mbox->mbox_cmpl = lpfc_unregister_fcfi_cmpl;
5981         rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
5982
5983         if (rc == MBX_NOT_FINISHED) {
5984                 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
5985                                 "2552 Unregister FCFI command failed rc x%x "
5986                                 "HBA state x%x\n",
5987                                 rc, phba->pport->port_state);
5988                 return -EINVAL;
5989         }
5990         return 0;
5991 }
5992
5993 /**
5994  * lpfc_unregister_fcf_rescan - Unregister currently registered fcf and rescan
5995  * @phba: Pointer to hba context object.
5996  *
5997  * This function unregisters the currently reigstered FCF. This function
5998  * also tries to find another FCF for discovery by rescan the HBA FCF table.
5999  */
6000 void
6001 lpfc_unregister_fcf_rescan(struct lpfc_hba *phba)
6002 {
6003         int rc;
6004
6005         /* Preparation for unregistering fcf */
6006         rc = lpfc_unregister_fcf_prep(phba);
6007         if (rc) {
6008                 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY,
6009                                 "2748 Failed to prepare for unregistering "
6010                                 "HBA's FCF record: rc=%d\n", rc);
6011                 return;
6012         }
6013
6014         /* Now, unregister FCF record and reset HBA FCF state */
6015         rc = lpfc_sli4_unregister_fcf(phba);
6016         if (rc)
6017                 return;
6018         /* Reset HBA FCF states after successful unregister FCF */
6019         phba->fcf.fcf_flag = 0;
6020         phba->fcf.current_rec.flag = 0;
6021
6022         /*
6023          * If driver is not unloading, check if there is any other
6024          * FCF record that can be used for discovery.
6025          */
6026         if ((phba->pport->load_flag & FC_UNLOADING) ||
6027             (phba->link_state < LPFC_LINK_UP))
6028                 return;
6029
6030         /* This is considered as the initial FCF discovery scan */
6031         spin_lock_irq(&phba->hbalock);
6032         phba->fcf.fcf_flag |= FCF_INIT_DISC;
6033         spin_unlock_irq(&phba->hbalock);
6034
6035         /* Reset FCF roundrobin bmask for new discovery */
6036         lpfc_sli4_clear_fcf_rr_bmask(phba);
6037
6038         rc = lpfc_sli4_fcf_scan_read_fcf_rec(phba, LPFC_FCOE_FCF_GET_FIRST);
6039
6040         if (rc) {
6041                 spin_lock_irq(&phba->hbalock);
6042                 phba->fcf.fcf_flag &= ~FCF_INIT_DISC;
6043                 spin_unlock_irq(&phba->hbalock);
6044                 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY|LOG_MBOX,
6045                                 "2553 lpfc_unregister_unused_fcf failed "
6046                                 "to read FCF record HBA state x%x\n",
6047                                 phba->pport->port_state);
6048         }
6049 }
6050
6051 /**
6052  * lpfc_unregister_fcf - Unregister the currently registered fcf record
6053  * @phba: Pointer to hba context object.
6054  *
6055  * This function just unregisters the currently reigstered FCF. It does not
6056  * try to find another FCF for discovery.
6057  */
6058 void
6059 lpfc_unregister_fcf(struct lpfc_hba *phba)
6060 {
6061         int rc;
6062
6063         /* Preparation for unregistering fcf */
6064         rc = lpfc_unregister_fcf_prep(phba);
6065         if (rc) {
6066                 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY,
6067                                 "2749 Failed to prepare for unregistering "
6068                                 "HBA's FCF record: rc=%d\n", rc);
6069                 return;
6070         }
6071
6072         /* Now, unregister FCF record and reset HBA FCF state */
6073         rc = lpfc_sli4_unregister_fcf(phba);
6074         if (rc)
6075                 return;
6076         /* Set proper HBA FCF states after successful unregister FCF */
6077         spin_lock_irq(&phba->hbalock);
6078         phba->fcf.fcf_flag &= ~FCF_REGISTERED;
6079         spin_unlock_irq(&phba->hbalock);
6080 }
6081
6082 /**
6083  * lpfc_unregister_unused_fcf - Unregister FCF if all devices are disconnected.
6084  * @phba: Pointer to hba context object.
6085  *
6086  * This function check if there are any connected remote port for the FCF and
6087  * if all the devices are disconnected, this function unregister FCFI.
6088  * This function also tries to use another FCF for discovery.
6089  */
6090 void
6091 lpfc_unregister_unused_fcf(struct lpfc_hba *phba)
6092 {
6093         /*
6094          * If HBA is not running in FIP mode, if HBA does not support
6095          * FCoE, if FCF discovery is ongoing, or if FCF has not been
6096          * registered, do nothing.
6097          */
6098         spin_lock_irq(&phba->hbalock);
6099         if (!(phba->hba_flag & HBA_FCOE_MODE) ||
6100             !(phba->fcf.fcf_flag & FCF_REGISTERED) ||
6101             !(phba->hba_flag & HBA_FIP_SUPPORT) ||
6102             (phba->fcf.fcf_flag & FCF_DISCOVERY) ||
6103             (phba->pport->port_state == LPFC_FLOGI)) {
6104                 spin_unlock_irq(&phba->hbalock);
6105                 return;
6106         }
6107         spin_unlock_irq(&phba->hbalock);
6108
6109         if (lpfc_fcf_inuse(phba))
6110                 return;
6111
6112         lpfc_unregister_fcf_rescan(phba);
6113 }
6114
6115 /**
6116  * lpfc_read_fcf_conn_tbl - Create driver FCF connection table.
6117  * @phba: Pointer to hba context object.
6118  * @buff: Buffer containing the FCF connection table as in the config
6119  *         region.
6120  * This function create driver data structure for the FCF connection
6121  * record table read from config region 23.
6122  */
6123 static void
6124 lpfc_read_fcf_conn_tbl(struct lpfc_hba *phba,
6125         uint8_t *buff)
6126 {
6127         struct lpfc_fcf_conn_entry *conn_entry, *next_conn_entry;
6128         struct lpfc_fcf_conn_hdr *conn_hdr;
6129         struct lpfc_fcf_conn_rec *conn_rec;
6130         uint32_t record_count;
6131         int i;
6132
6133         /* Free the current connect table */
6134         list_for_each_entry_safe(conn_entry, next_conn_entry,
6135                 &phba->fcf_conn_rec_list, list) {
6136                 list_del_init(&conn_entry->list);
6137                 kfree(conn_entry);
6138         }
6139
6140         conn_hdr = (struct lpfc_fcf_conn_hdr *) buff;
6141         record_count = conn_hdr->length * sizeof(uint32_t)/
6142                 sizeof(struct lpfc_fcf_conn_rec);
6143
6144         conn_rec = (struct lpfc_fcf_conn_rec *)
6145                 (buff + sizeof(struct lpfc_fcf_conn_hdr));
6146
6147         for (i = 0; i < record_count; i++) {
6148                 if (!(conn_rec[i].flags & FCFCNCT_VALID))
6149                         continue;
6150                 conn_entry = kzalloc(sizeof(struct lpfc_fcf_conn_entry),
6151                         GFP_KERNEL);
6152                 if (!conn_entry) {
6153                         lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6154                                 "2566 Failed to allocate connection"
6155                                 " table entry\n");
6156                         return;
6157                 }
6158
6159                 memcpy(&conn_entry->conn_rec, &conn_rec[i],
6160                         sizeof(struct lpfc_fcf_conn_rec));
6161                 conn_entry->conn_rec.vlan_tag =
6162                         le16_to_cpu(conn_entry->conn_rec.vlan_tag) & 0xFFF;
6163                 conn_entry->conn_rec.flags =
6164                         le16_to_cpu(conn_entry->conn_rec.flags);
6165                 list_add_tail(&conn_entry->list,
6166                         &phba->fcf_conn_rec_list);
6167         }
6168 }
6169
6170 /**
6171  * lpfc_read_fcoe_param - Read FCoe parameters from conf region..
6172  * @phba: Pointer to hba context object.
6173  * @buff: Buffer containing the FCoE parameter data structure.
6174  *
6175  *  This function update driver data structure with config
6176  *  parameters read from config region 23.
6177  */
6178 static void
6179 lpfc_read_fcoe_param(struct lpfc_hba *phba,
6180                         uint8_t *buff)
6181 {
6182         struct lpfc_fip_param_hdr *fcoe_param_hdr;
6183         struct lpfc_fcoe_params *fcoe_param;
6184
6185         fcoe_param_hdr = (struct lpfc_fip_param_hdr *)
6186                 buff;
6187         fcoe_param = (struct lpfc_fcoe_params *)
6188                 (buff + sizeof(struct lpfc_fip_param_hdr));
6189
6190         if ((fcoe_param_hdr->parm_version != FIPP_VERSION) ||
6191                 (fcoe_param_hdr->length != FCOE_PARAM_LENGTH))
6192                 return;
6193
6194         if (fcoe_param_hdr->parm_flags & FIPP_VLAN_VALID) {
6195                 phba->valid_vlan = 1;
6196                 phba->vlan_id = le16_to_cpu(fcoe_param->vlan_tag) &
6197                         0xFFF;
6198         }
6199
6200         phba->fc_map[0] = fcoe_param->fc_map[0];
6201         phba->fc_map[1] = fcoe_param->fc_map[1];
6202         phba->fc_map[2] = fcoe_param->fc_map[2];
6203         return;
6204 }
6205
6206 /**
6207  * lpfc_get_rec_conf23 - Get a record type in config region data.
6208  * @buff: Buffer containing config region 23 data.
6209  * @size: Size of the data buffer.
6210  * @rec_type: Record type to be searched.
6211  *
6212  * This function searches config region data to find the beginning
6213  * of the record specified by record_type. If record found, this
6214  * function return pointer to the record else return NULL.
6215  */
6216 static uint8_t *
6217 lpfc_get_rec_conf23(uint8_t *buff, uint32_t size, uint8_t rec_type)
6218 {
6219         uint32_t offset = 0, rec_length;
6220
6221         if ((buff[0] == LPFC_REGION23_LAST_REC) ||
6222                 (size < sizeof(uint32_t)))
6223                 return NULL;
6224
6225         rec_length = buff[offset + 1];
6226
6227         /*
6228          * One TLV record has one word header and number of data words
6229          * specified in the rec_length field of the record header.
6230          */
6231         while ((offset + rec_length * sizeof(uint32_t) + sizeof(uint32_t))
6232                 <= size) {
6233                 if (buff[offset] == rec_type)
6234                         return &buff[offset];
6235
6236                 if (buff[offset] == LPFC_REGION23_LAST_REC)
6237                         return NULL;
6238
6239                 offset += rec_length * sizeof(uint32_t) + sizeof(uint32_t);
6240                 rec_length = buff[offset + 1];
6241         }
6242         return NULL;
6243 }
6244
6245 /**
6246  * lpfc_parse_fcoe_conf - Parse FCoE config data read from config region 23.
6247  * @phba: Pointer to lpfc_hba data structure.
6248  * @buff: Buffer containing config region 23 data.
6249  * @size: Size of the data buffer.
6250  *
6251  * This function parses the FCoE config parameters in config region 23 and
6252  * populate driver data structure with the parameters.
6253  */
6254 void
6255 lpfc_parse_fcoe_conf(struct lpfc_hba *phba,
6256                 uint8_t *buff,
6257                 uint32_t size)
6258 {
6259         uint32_t offset = 0, rec_length;
6260         uint8_t *rec_ptr;
6261
6262         /*
6263          * If data size is less than 2 words signature and version cannot be
6264          * verified.
6265          */
6266         if (size < 2*sizeof(uint32_t))
6267                 return;
6268
6269         /* Check the region signature first */
6270         if (memcmp(buff, LPFC_REGION23_SIGNATURE, 4)) {
6271                 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6272                         "2567 Config region 23 has bad signature\n");
6273                 return;
6274         }
6275
6276         offset += 4;
6277
6278         /* Check the data structure version */
6279         if (buff[offset] != LPFC_REGION23_VERSION) {
6280                 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6281                         "2568 Config region 23 has bad version\n");
6282                 return;
6283         }
6284         offset += 4;
6285
6286         rec_length = buff[offset + 1];
6287
6288         /* Read FCoE param record */
6289         rec_ptr = lpfc_get_rec_conf23(&buff[offset],
6290                         size - offset, FCOE_PARAM_TYPE);
6291         if (rec_ptr)
6292                 lpfc_read_fcoe_param(phba, rec_ptr);
6293
6294         /* Read FCF connection table */
6295         rec_ptr = lpfc_get_rec_conf23(&buff[offset],
6296                 size - offset, FCOE_CONN_TBL_TYPE);
6297         if (rec_ptr)
6298                 lpfc_read_fcf_conn_tbl(phba, rec_ptr);
6299
6300 }