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