1 /*******************************************************************
2 * This file is part of the Emulex Linux Device Driver for *
3 * Fibre Channel Host Bus Adapters. *
4 * Copyright (C) 2004-2016 Emulex. All rights reserved. *
5 * EMULEX and SLI are trademarks of Emulex. *
7 * Portions Copyright (C) 2004-2005 Christoph Hellwig *
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 *******************************************************************/
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 #include <linux/lockdep.h>
30 #include <scsi/scsi.h>
31 #include <scsi/scsi_device.h>
32 #include <scsi/scsi_host.h>
33 #include <scsi/scsi_transport_fc.h>
38 #include "lpfc_disc.h"
40 #include "lpfc_sli4.h"
41 #include "lpfc_scsi.h"
43 #include "lpfc_logmsg.h"
44 #include "lpfc_crtn.h"
45 #include "lpfc_vport.h"
46 #include "lpfc_debugfs.h"
48 /* AlpaArray for assignment of scsid for scan-down and bind_method */
49 static uint8_t lpfcAlpaArray
[] = {
50 0xEF, 0xE8, 0xE4, 0xE2, 0xE1, 0xE0, 0xDC, 0xDA, 0xD9, 0xD6,
51 0xD5, 0xD4, 0xD3, 0xD2, 0xD1, 0xCE, 0xCD, 0xCC, 0xCB, 0xCA,
52 0xC9, 0xC7, 0xC6, 0xC5, 0xC3, 0xBC, 0xBA, 0xB9, 0xB6, 0xB5,
53 0xB4, 0xB3, 0xB2, 0xB1, 0xAE, 0xAD, 0xAC, 0xAB, 0xAA, 0xA9,
54 0xA7, 0xA6, 0xA5, 0xA3, 0x9F, 0x9E, 0x9D, 0x9B, 0x98, 0x97,
55 0x90, 0x8F, 0x88, 0x84, 0x82, 0x81, 0x80, 0x7C, 0x7A, 0x79,
56 0x76, 0x75, 0x74, 0x73, 0x72, 0x71, 0x6E, 0x6D, 0x6C, 0x6B,
57 0x6A, 0x69, 0x67, 0x66, 0x65, 0x63, 0x5C, 0x5A, 0x59, 0x56,
58 0x55, 0x54, 0x53, 0x52, 0x51, 0x4E, 0x4D, 0x4C, 0x4B, 0x4A,
59 0x49, 0x47, 0x46, 0x45, 0x43, 0x3C, 0x3A, 0x39, 0x36, 0x35,
60 0x34, 0x33, 0x32, 0x31, 0x2E, 0x2D, 0x2C, 0x2B, 0x2A, 0x29,
61 0x27, 0x26, 0x25, 0x23, 0x1F, 0x1E, 0x1D, 0x1B, 0x18, 0x17,
62 0x10, 0x0F, 0x08, 0x04, 0x02, 0x01
65 static void lpfc_disc_timeout_handler(struct lpfc_vport
*);
66 static void lpfc_disc_flush_list(struct lpfc_vport
*vport
);
67 static void lpfc_unregister_fcfi_cmpl(struct lpfc_hba
*, LPFC_MBOXQ_t
*);
68 static int lpfc_fcf_inuse(struct lpfc_hba
*);
71 lpfc_terminate_rport_io(struct fc_rport
*rport
)
73 struct lpfc_rport_data
*rdata
;
74 struct lpfc_nodelist
* ndlp
;
75 struct lpfc_hba
*phba
;
77 rdata
= rport
->dd_data
;
80 if (!ndlp
|| !NLP_CHK_NODE_ACT(ndlp
)) {
81 if (rport
->roles
& FC_RPORT_ROLE_FCP_TARGET
)
82 printk(KERN_ERR
"Cannot find remote node"
83 " to terminate I/O Data x%x\n",
90 lpfc_debugfs_disc_trc(ndlp
->vport
, LPFC_DISC_TRC_RPORT
,
91 "rport terminate: sid:x%x did:x%x flg:x%x",
92 ndlp
->nlp_sid
, ndlp
->nlp_DID
, ndlp
->nlp_flag
);
94 if (ndlp
->nlp_sid
!= NLP_NO_SID
) {
95 lpfc_sli_abort_iocb(ndlp
->vport
,
96 &phba
->sli
.ring
[phba
->sli
.fcp_ring
],
97 ndlp
->nlp_sid
, 0, LPFC_CTX_TGT
);
102 * This function will be called when dev_loss_tmo fire.
105 lpfc_dev_loss_tmo_callbk(struct fc_rport
*rport
)
107 struct lpfc_rport_data
*rdata
;
108 struct lpfc_nodelist
* ndlp
;
109 struct lpfc_vport
*vport
;
110 struct Scsi_Host
*shost
;
111 struct lpfc_hba
*phba
;
112 struct lpfc_work_evt
*evtp
;
116 rdata
= rport
->dd_data
;
118 if (!ndlp
|| !NLP_CHK_NODE_ACT(ndlp
))
124 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_RPORT
,
125 "rport devlosscb: sid:x%x did:x%x flg:x%x",
126 ndlp
->nlp_sid
, ndlp
->nlp_DID
, ndlp
->nlp_flag
);
128 lpfc_printf_vlog(ndlp
->vport
, KERN_INFO
, LOG_NODE
,
129 "3181 dev_loss_callbk x%06x, rport %p flg x%x\n",
130 ndlp
->nlp_DID
, ndlp
->rport
, ndlp
->nlp_flag
);
132 /* Don't defer this if we are in the process of deleting the vport
133 * or unloading the driver. The unload will cleanup the node
134 * appropriately we just need to cleanup the ndlp rport info here.
136 if (vport
->load_flag
& FC_UNLOADING
) {
137 put_node
= rdata
->pnode
!= NULL
;
138 put_rport
= ndlp
->rport
!= NULL
;
144 put_device(&rport
->dev
);
148 if (ndlp
->nlp_state
== NLP_STE_MAPPED_NODE
)
151 if (rport
->port_name
!= wwn_to_u64(ndlp
->nlp_portname
.u
.wwn
))
152 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_NODE
,
153 "6789 rport name %llx != node port name %llx",
155 wwn_to_u64(ndlp
->nlp_portname
.u
.wwn
));
157 evtp
= &ndlp
->dev_loss_evt
;
159 if (!list_empty(&evtp
->evt_listp
)) {
160 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_NODE
,
161 "6790 rport name %llx dev_loss_evt pending",
166 shost
= lpfc_shost_from_vport(vport
);
167 spin_lock_irq(shost
->host_lock
);
168 ndlp
->nlp_flag
|= NLP_IN_DEV_LOSS
;
169 spin_unlock_irq(shost
->host_lock
);
171 /* We need to hold the node by incrementing the reference
172 * count until this queued work is done
174 evtp
->evt_arg1
= lpfc_nlp_get(ndlp
);
176 spin_lock_irq(&phba
->hbalock
);
177 if (evtp
->evt_arg1
) {
178 evtp
->evt
= LPFC_EVT_DEV_LOSS
;
179 list_add_tail(&evtp
->evt_listp
, &phba
->work_list
);
180 lpfc_worker_wake_up(phba
);
182 spin_unlock_irq(&phba
->hbalock
);
188 * lpfc_dev_loss_tmo_handler - Remote node devloss timeout handler
189 * @ndlp: Pointer to remote node object.
191 * This function is called from the worker thread when devloss timeout timer
192 * expires. For SLI4 host, this routine shall return 1 when at lease one
193 * remote node, including this @ndlp, is still in use of FCF; otherwise, this
194 * routine shall return 0 when there is no remote node is still in use of FCF
195 * when devloss timeout happened to this @ndlp.
198 lpfc_dev_loss_tmo_handler(struct lpfc_nodelist
*ndlp
)
200 struct lpfc_rport_data
*rdata
;
201 struct fc_rport
*rport
;
202 struct lpfc_vport
*vport
;
203 struct lpfc_hba
*phba
;
204 struct Scsi_Host
*shost
;
212 shost
= lpfc_shost_from_vport(vport
);
214 spin_lock_irq(shost
->host_lock
);
215 ndlp
->nlp_flag
&= ~NLP_IN_DEV_LOSS
;
216 spin_unlock_irq(shost
->host_lock
);
221 name
= (uint8_t *) &ndlp
->nlp_portname
;
224 if (phba
->sli_rev
== LPFC_SLI_REV4
)
225 fcf_inuse
= lpfc_fcf_inuse(phba
);
227 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_RPORT
,
228 "rport devlosstmo:did:x%x type:x%x id:x%x",
229 ndlp
->nlp_DID
, ndlp
->nlp_type
, rport
->scsi_target_id
);
231 lpfc_printf_vlog(ndlp
->vport
, KERN_INFO
, LOG_NODE
,
232 "3182 dev_loss_tmo_handler x%06x, rport %p flg x%x\n",
233 ndlp
->nlp_DID
, ndlp
->rport
, ndlp
->nlp_flag
);
236 * lpfc_nlp_remove if reached with dangling rport drops the
237 * reference. To make sure that does not happen clear rport
238 * pointer in ndlp before lpfc_nlp_put.
240 rdata
= rport
->dd_data
;
242 /* Don't defer this if we are in the process of deleting the vport
243 * or unloading the driver. The unload will cleanup the node
244 * appropriately we just need to cleanup the ndlp rport info here.
246 if (vport
->load_flag
& FC_UNLOADING
) {
247 if (ndlp
->nlp_sid
!= NLP_NO_SID
) {
248 /* flush the target */
249 lpfc_sli_abort_iocb(vport
,
250 &phba
->sli
.ring
[phba
->sli
.fcp_ring
],
251 ndlp
->nlp_sid
, 0, LPFC_CTX_TGT
);
253 put_node
= rdata
->pnode
!= NULL
;
258 put_device(&rport
->dev
);
263 if (ndlp
->nlp_state
== NLP_STE_MAPPED_NODE
) {
264 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_DISCOVERY
,
265 "0284 Devloss timeout Ignored on "
266 "WWPN %x:%x:%x:%x:%x:%x:%x:%x "
268 *name
, *(name
+1), *(name
+2), *(name
+3),
269 *(name
+4), *(name
+5), *(name
+6), *(name
+7),
274 put_node
= rdata
->pnode
!= NULL
;
279 put_device(&rport
->dev
);
281 if (ndlp
->nlp_type
& NLP_FABRIC
)
284 if (ndlp
->nlp_sid
!= NLP_NO_SID
) {
286 lpfc_sli_abort_iocb(vport
, &phba
->sli
.ring
[phba
->sli
.fcp_ring
],
287 ndlp
->nlp_sid
, 0, LPFC_CTX_TGT
);
291 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_DISCOVERY
,
292 "0203 Devloss timeout on "
293 "WWPN %02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x "
294 "NPort x%06x Data: x%x x%x x%x\n",
295 *name
, *(name
+1), *(name
+2), *(name
+3),
296 *(name
+4), *(name
+5), *(name
+6), *(name
+7),
297 ndlp
->nlp_DID
, ndlp
->nlp_flag
,
298 ndlp
->nlp_state
, ndlp
->nlp_rpi
);
300 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_DISCOVERY
,
301 "0204 Devloss timeout on "
302 "WWPN %02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x "
303 "NPort x%06x Data: x%x x%x x%x\n",
304 *name
, *(name
+1), *(name
+2), *(name
+3),
305 *(name
+4), *(name
+5), *(name
+6), *(name
+7),
306 ndlp
->nlp_DID
, ndlp
->nlp_flag
,
307 ndlp
->nlp_state
, ndlp
->nlp_rpi
);
310 if (!(vport
->load_flag
& FC_UNLOADING
) &&
311 !(ndlp
->nlp_flag
& NLP_DELAY_TMO
) &&
312 !(ndlp
->nlp_flag
& NLP_NPR_2B_DISC
) &&
313 (ndlp
->nlp_state
!= NLP_STE_UNMAPPED_NODE
) &&
314 (ndlp
->nlp_state
!= NLP_STE_REG_LOGIN_ISSUE
) &&
315 (ndlp
->nlp_state
!= NLP_STE_PRLI_ISSUE
))
316 lpfc_disc_state_machine(vport
, ndlp
, NULL
, NLP_EVT_DEVICE_RM
);
322 * lpfc_sli4_post_dev_loss_tmo_handler - SLI4 post devloss timeout handler
323 * @phba: Pointer to hba context object.
324 * @fcf_inuse: SLI4 FCF in-use state reported from devloss timeout handler.
325 * @nlp_did: remote node identifer with devloss timeout.
327 * This function is called from the worker thread after invoking devloss
328 * timeout handler and releasing the reference count for the ndlp with
329 * which the devloss timeout was handled for SLI4 host. For the devloss
330 * timeout of the last remote node which had been in use of FCF, when this
331 * routine is invoked, it shall be guaranteed that none of the remote are
332 * in-use of FCF. When devloss timeout to the last remote using the FCF,
333 * if the FIP engine is neither in FCF table scan process nor roundrobin
334 * failover process, the in-use FCF shall be unregistered. If the FIP
335 * engine is in FCF discovery process, the devloss timeout state shall
336 * be set for either the FCF table scan process or roundrobin failover
337 * process to unregister the in-use FCF.
340 lpfc_sli4_post_dev_loss_tmo_handler(struct lpfc_hba
*phba
, int fcf_inuse
,
343 /* If devloss timeout happened to a remote node when FCF had no
344 * longer been in-use, do nothing.
349 if ((phba
->hba_flag
& HBA_FIP_SUPPORT
) && !lpfc_fcf_inuse(phba
)) {
350 spin_lock_irq(&phba
->hbalock
);
351 if (phba
->fcf
.fcf_flag
& FCF_DISCOVERY
) {
352 if (phba
->hba_flag
& HBA_DEVLOSS_TMO
) {
353 spin_unlock_irq(&phba
->hbalock
);
356 phba
->hba_flag
|= HBA_DEVLOSS_TMO
;
357 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
,
358 "2847 Last remote node (x%x) using "
359 "FCF devloss tmo\n", nlp_did
);
361 if (phba
->fcf
.fcf_flag
& FCF_REDISC_PROG
) {
362 spin_unlock_irq(&phba
->hbalock
);
363 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
,
364 "2868 Devloss tmo to FCF rediscovery "
368 if (!(phba
->hba_flag
& (FCF_TS_INPROG
| FCF_RR_INPROG
))) {
369 spin_unlock_irq(&phba
->hbalock
);
370 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
,
371 "2869 Devloss tmo to idle FIP engine, "
372 "unreg in-use FCF and rescan.\n");
373 /* Unregister in-use FCF and rescan */
374 lpfc_unregister_fcf_rescan(phba
);
377 spin_unlock_irq(&phba
->hbalock
);
378 if (phba
->hba_flag
& FCF_TS_INPROG
)
379 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
,
380 "2870 FCF table scan in progress\n");
381 if (phba
->hba_flag
& FCF_RR_INPROG
)
382 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
,
383 "2871 FLOGI roundrobin FCF failover "
386 lpfc_unregister_unused_fcf(phba
);
390 * lpfc_alloc_fast_evt - Allocates data structure for posting event
391 * @phba: Pointer to hba context object.
393 * This function is called from the functions which need to post
394 * events from interrupt context. This function allocates data
395 * structure required for posting event. It also keeps track of
396 * number of events pending and prevent event storm when there are
399 struct lpfc_fast_path_event
*
400 lpfc_alloc_fast_evt(struct lpfc_hba
*phba
) {
401 struct lpfc_fast_path_event
*ret
;
403 /* If there are lot of fast event do not exhaust memory due to this */
404 if (atomic_read(&phba
->fast_event_count
) > LPFC_MAX_EVT_COUNT
)
407 ret
= kzalloc(sizeof(struct lpfc_fast_path_event
),
410 atomic_inc(&phba
->fast_event_count
);
411 INIT_LIST_HEAD(&ret
->work_evt
.evt_listp
);
412 ret
->work_evt
.evt
= LPFC_EVT_FASTPATH_MGMT_EVT
;
418 * lpfc_free_fast_evt - Frees event data structure
419 * @phba: Pointer to hba context object.
420 * @evt: Event object which need to be freed.
422 * This function frees the data structure required for posting
426 lpfc_free_fast_evt(struct lpfc_hba
*phba
,
427 struct lpfc_fast_path_event
*evt
) {
429 atomic_dec(&phba
->fast_event_count
);
434 * lpfc_send_fastpath_evt - Posts events generated from fast path
435 * @phba: Pointer to hba context object.
436 * @evtp: Event data structure.
438 * This function is called from worker thread, when the interrupt
439 * context need to post an event. This function posts the event
440 * to fc transport netlink interface.
443 lpfc_send_fastpath_evt(struct lpfc_hba
*phba
,
444 struct lpfc_work_evt
*evtp
)
446 unsigned long evt_category
, evt_sub_category
;
447 struct lpfc_fast_path_event
*fast_evt_data
;
449 uint32_t evt_data_size
;
450 struct Scsi_Host
*shost
;
452 fast_evt_data
= container_of(evtp
, struct lpfc_fast_path_event
,
455 evt_category
= (unsigned long) fast_evt_data
->un
.fabric_evt
.event_type
;
456 evt_sub_category
= (unsigned long) fast_evt_data
->un
.
457 fabric_evt
.subcategory
;
458 shost
= lpfc_shost_from_vport(fast_evt_data
->vport
);
459 if (evt_category
== FC_REG_FABRIC_EVENT
) {
460 if (evt_sub_category
== LPFC_EVENT_FCPRDCHKERR
) {
461 evt_data
= (char *) &fast_evt_data
->un
.read_check_error
;
462 evt_data_size
= sizeof(fast_evt_data
->un
.
464 } else if ((evt_sub_category
== LPFC_EVENT_FABRIC_BUSY
) ||
465 (evt_sub_category
== LPFC_EVENT_PORT_BUSY
)) {
466 evt_data
= (char *) &fast_evt_data
->un
.fabric_evt
;
467 evt_data_size
= sizeof(fast_evt_data
->un
.fabric_evt
);
469 lpfc_free_fast_evt(phba
, fast_evt_data
);
472 } else if (evt_category
== FC_REG_SCSI_EVENT
) {
473 switch (evt_sub_category
) {
474 case LPFC_EVENT_QFULL
:
475 case LPFC_EVENT_DEVBSY
:
476 evt_data
= (char *) &fast_evt_data
->un
.scsi_evt
;
477 evt_data_size
= sizeof(fast_evt_data
->un
.scsi_evt
);
479 case LPFC_EVENT_CHECK_COND
:
480 evt_data
= (char *) &fast_evt_data
->un
.check_cond_evt
;
481 evt_data_size
= sizeof(fast_evt_data
->un
.
484 case LPFC_EVENT_VARQUEDEPTH
:
485 evt_data
= (char *) &fast_evt_data
->un
.queue_depth_evt
;
486 evt_data_size
= sizeof(fast_evt_data
->un
.
490 lpfc_free_fast_evt(phba
, fast_evt_data
);
494 lpfc_free_fast_evt(phba
, fast_evt_data
);
498 fc_host_post_vendor_event(shost
,
499 fc_get_event_number(),
504 lpfc_free_fast_evt(phba
, fast_evt_data
);
509 lpfc_work_list_done(struct lpfc_hba
*phba
)
511 struct lpfc_work_evt
*evtp
= NULL
;
512 struct lpfc_nodelist
*ndlp
;
517 spin_lock_irq(&phba
->hbalock
);
518 while (!list_empty(&phba
->work_list
)) {
519 list_remove_head((&phba
->work_list
), evtp
, typeof(*evtp
),
521 spin_unlock_irq(&phba
->hbalock
);
524 case LPFC_EVT_ELS_RETRY
:
525 ndlp
= (struct lpfc_nodelist
*) (evtp
->evt_arg1
);
526 lpfc_els_retry_delay_handler(ndlp
);
527 free_evt
= 0; /* evt is part of ndlp */
528 /* decrement the node reference count held
529 * for this queued work
533 case LPFC_EVT_DEV_LOSS
:
534 ndlp
= (struct lpfc_nodelist
*)(evtp
->evt_arg1
);
535 fcf_inuse
= lpfc_dev_loss_tmo_handler(ndlp
);
537 /* decrement the node reference count held for
540 nlp_did
= ndlp
->nlp_DID
;
542 if (phba
->sli_rev
== LPFC_SLI_REV4
)
543 lpfc_sli4_post_dev_loss_tmo_handler(phba
,
547 case LPFC_EVT_ONLINE
:
548 if (phba
->link_state
< LPFC_LINK_DOWN
)
549 *(int *) (evtp
->evt_arg1
) = lpfc_online(phba
);
551 *(int *) (evtp
->evt_arg1
) = 0;
552 complete((struct completion
*)(evtp
->evt_arg2
));
554 case LPFC_EVT_OFFLINE_PREP
:
555 if (phba
->link_state
>= LPFC_LINK_DOWN
)
556 lpfc_offline_prep(phba
, LPFC_MBX_WAIT
);
557 *(int *)(evtp
->evt_arg1
) = 0;
558 complete((struct completion
*)(evtp
->evt_arg2
));
560 case LPFC_EVT_OFFLINE
:
562 lpfc_sli_brdrestart(phba
);
563 *(int *)(evtp
->evt_arg1
) =
564 lpfc_sli_brdready(phba
, HS_FFRDY
| HS_MBRDY
);
565 lpfc_unblock_mgmt_io(phba
);
566 complete((struct completion
*)(evtp
->evt_arg2
));
568 case LPFC_EVT_WARM_START
:
570 lpfc_reset_barrier(phba
);
571 lpfc_sli_brdreset(phba
);
572 lpfc_hba_down_post(phba
);
573 *(int *)(evtp
->evt_arg1
) =
574 lpfc_sli_brdready(phba
, HS_MBRDY
);
575 lpfc_unblock_mgmt_io(phba
);
576 complete((struct completion
*)(evtp
->evt_arg2
));
580 *(int *)(evtp
->evt_arg1
)
581 = (phba
->pport
->stopped
)
582 ? 0 : lpfc_sli_brdkill(phba
);
583 lpfc_unblock_mgmt_io(phba
);
584 complete((struct completion
*)(evtp
->evt_arg2
));
586 case LPFC_EVT_FASTPATH_MGMT_EVT
:
587 lpfc_send_fastpath_evt(phba
, evtp
);
590 case LPFC_EVT_RESET_HBA
:
591 if (!(phba
->pport
->load_flag
& FC_UNLOADING
))
592 lpfc_reset_hba(phba
);
597 spin_lock_irq(&phba
->hbalock
);
599 spin_unlock_irq(&phba
->hbalock
);
604 lpfc_work_done(struct lpfc_hba
*phba
)
606 struct lpfc_sli_ring
*pring
;
607 uint32_t ha_copy
, status
, control
, work_port_events
;
608 struct lpfc_vport
**vports
;
609 struct lpfc_vport
*vport
;
612 spin_lock_irq(&phba
->hbalock
);
613 ha_copy
= phba
->work_ha
;
615 spin_unlock_irq(&phba
->hbalock
);
617 /* First, try to post the next mailbox command to SLI4 device */
618 if (phba
->pci_dev_grp
== LPFC_PCI_DEV_OC
)
619 lpfc_sli4_post_async_mbox(phba
);
621 if (ha_copy
& HA_ERATT
)
622 /* Handle the error attention event */
623 lpfc_handle_eratt(phba
);
625 if (ha_copy
& HA_MBATT
)
626 lpfc_sli_handle_mb_event(phba
);
628 if (ha_copy
& HA_LATT
)
629 lpfc_handle_latt(phba
);
631 /* Process SLI4 events */
632 if (phba
->pci_dev_grp
== LPFC_PCI_DEV_OC
) {
633 if (phba
->hba_flag
& HBA_RRQ_ACTIVE
)
634 lpfc_handle_rrq_active(phba
);
635 if (phba
->hba_flag
& FCP_XRI_ABORT_EVENT
)
636 lpfc_sli4_fcp_xri_abort_event_proc(phba
);
637 if (phba
->hba_flag
& ELS_XRI_ABORT_EVENT
)
638 lpfc_sli4_els_xri_abort_event_proc(phba
);
639 if (phba
->hba_flag
& ASYNC_EVENT
)
640 lpfc_sli4_async_event_proc(phba
);
641 if (phba
->hba_flag
& HBA_POST_RECEIVE_BUFFER
) {
642 spin_lock_irq(&phba
->hbalock
);
643 phba
->hba_flag
&= ~HBA_POST_RECEIVE_BUFFER
;
644 spin_unlock_irq(&phba
->hbalock
);
645 lpfc_sli_hbqbuf_add_hbqs(phba
, LPFC_ELS_HBQ
);
647 if (phba
->fcf
.fcf_flag
& FCF_REDISC_EVT
)
648 lpfc_sli4_fcf_redisc_event_proc(phba
);
651 vports
= lpfc_create_vport_work_array(phba
);
653 for (i
= 0; i
<= phba
->max_vports
; i
++) {
655 * We could have no vports in array if unloading, so if
656 * this happens then just use the pport
658 if (vports
[i
] == NULL
&& i
== 0)
664 spin_lock_irq(&vport
->work_port_lock
);
665 work_port_events
= vport
->work_port_events
;
666 vport
->work_port_events
&= ~work_port_events
;
667 spin_unlock_irq(&vport
->work_port_lock
);
668 if (work_port_events
& WORKER_DISC_TMO
)
669 lpfc_disc_timeout_handler(vport
);
670 if (work_port_events
& WORKER_ELS_TMO
)
671 lpfc_els_timeout_handler(vport
);
672 if (work_port_events
& WORKER_HB_TMO
)
673 lpfc_hb_timeout_handler(phba
);
674 if (work_port_events
& WORKER_MBOX_TMO
)
675 lpfc_mbox_timeout_handler(phba
);
676 if (work_port_events
& WORKER_FABRIC_BLOCK_TMO
)
677 lpfc_unblock_fabric_iocbs(phba
);
678 if (work_port_events
& WORKER_RAMP_DOWN_QUEUE
)
679 lpfc_ramp_down_queue_handler(phba
);
680 if (work_port_events
& WORKER_DELAYED_DISC_TMO
)
681 lpfc_delayed_disc_timeout_handler(vport
);
683 lpfc_destroy_vport_work_array(phba
, vports
);
685 pring
= &phba
->sli
.ring
[LPFC_ELS_RING
];
686 status
= (ha_copy
& (HA_RXMASK
<< (4*LPFC_ELS_RING
)));
687 status
>>= (4*LPFC_ELS_RING
);
688 if ((status
& HA_RXMASK
) ||
689 (pring
->flag
& LPFC_DEFERRED_RING_EVENT
) ||
690 (phba
->hba_flag
& HBA_SP_QUEUE_EVT
)) {
691 if (pring
->flag
& LPFC_STOP_IOCB_EVENT
) {
692 pring
->flag
|= LPFC_DEFERRED_RING_EVENT
;
693 /* Set the lpfc data pending flag */
694 set_bit(LPFC_DATA_READY
, &phba
->data_flags
);
696 if (phba
->link_state
>= LPFC_LINK_UP
) {
697 pring
->flag
&= ~LPFC_DEFERRED_RING_EVENT
;
698 lpfc_sli_handle_slow_ring_event(phba
, pring
,
703 if ((phba
->sli_rev
== LPFC_SLI_REV4
) &&
704 (!list_empty(&pring
->txq
)))
705 lpfc_drain_txq(phba
);
707 * Turn on Ring interrupts
709 if (phba
->sli_rev
<= LPFC_SLI_REV3
) {
710 spin_lock_irq(&phba
->hbalock
);
711 control
= readl(phba
->HCregaddr
);
712 if (!(control
& (HC_R0INT_ENA
<< LPFC_ELS_RING
))) {
713 lpfc_debugfs_slow_ring_trc(phba
,
714 "WRK Enable ring: cntl:x%x hacopy:x%x",
715 control
, ha_copy
, 0);
717 control
|= (HC_R0INT_ENA
<< LPFC_ELS_RING
);
718 writel(control
, phba
->HCregaddr
);
719 readl(phba
->HCregaddr
); /* flush */
721 lpfc_debugfs_slow_ring_trc(phba
,
722 "WRK Ring ok: cntl:x%x hacopy:x%x",
723 control
, ha_copy
, 0);
725 spin_unlock_irq(&phba
->hbalock
);
728 lpfc_work_list_done(phba
);
732 lpfc_do_work(void *p
)
734 struct lpfc_hba
*phba
= p
;
737 set_user_nice(current
, MIN_NICE
);
738 current
->flags
|= PF_NOFREEZE
;
739 phba
->data_flags
= 0;
741 while (!kthread_should_stop()) {
742 /* wait and check worker queue activities */
743 rc
= wait_event_interruptible(phba
->work_waitq
,
744 (test_and_clear_bit(LPFC_DATA_READY
,
746 || kthread_should_stop()));
747 /* Signal wakeup shall terminate the worker thread */
749 lpfc_printf_log(phba
, KERN_ERR
, LOG_ELS
,
750 "0433 Wakeup on signal: rc=x%x\n", rc
);
754 /* Attend pending lpfc data processing */
755 lpfc_work_done(phba
);
757 phba
->worker_thread
= NULL
;
758 lpfc_printf_log(phba
, KERN_INFO
, LOG_ELS
,
759 "0432 Worker thread stopped.\n");
764 * This is only called to handle FC worker events. Since this a rare
765 * occurrence, we allocate a struct lpfc_work_evt structure here instead of
766 * embedding it in the IOCB.
769 lpfc_workq_post_event(struct lpfc_hba
*phba
, void *arg1
, void *arg2
,
772 struct lpfc_work_evt
*evtp
;
776 * All Mailbox completions and LPFC_ELS_RING rcv ring IOCB events will
777 * be queued to worker thread for processing
779 evtp
= kmalloc(sizeof(struct lpfc_work_evt
), GFP_ATOMIC
);
783 evtp
->evt_arg1
= arg1
;
784 evtp
->evt_arg2
= arg2
;
787 spin_lock_irqsave(&phba
->hbalock
, flags
);
788 list_add_tail(&evtp
->evt_listp
, &phba
->work_list
);
789 spin_unlock_irqrestore(&phba
->hbalock
, flags
);
791 lpfc_worker_wake_up(phba
);
797 lpfc_cleanup_rpis(struct lpfc_vport
*vport
, int remove
)
799 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
800 struct lpfc_hba
*phba
= vport
->phba
;
801 struct lpfc_nodelist
*ndlp
, *next_ndlp
;
803 list_for_each_entry_safe(ndlp
, next_ndlp
, &vport
->fc_nodes
, nlp_listp
) {
804 if (!NLP_CHK_NODE_ACT(ndlp
))
806 if (ndlp
->nlp_state
== NLP_STE_UNUSED_NODE
)
808 if ((phba
->sli3_options
& LPFC_SLI3_VPORT_TEARDOWN
) ||
809 ((vport
->port_type
== LPFC_NPIV_PORT
) &&
810 (ndlp
->nlp_DID
== NameServer_DID
)))
811 lpfc_unreg_rpi(vport
, ndlp
);
813 /* Leave Fabric nodes alone on link down */
814 if ((phba
->sli_rev
< LPFC_SLI_REV4
) &&
815 (!remove
&& ndlp
->nlp_type
& NLP_FABRIC
))
817 lpfc_disc_state_machine(vport
, ndlp
, NULL
,
820 : NLP_EVT_DEVICE_RECOVERY
);
822 if (phba
->sli3_options
& LPFC_SLI3_VPORT_TEARDOWN
) {
823 if (phba
->sli_rev
== LPFC_SLI_REV4
)
824 lpfc_sli4_unreg_all_rpis(vport
);
825 lpfc_mbx_unreg_vpi(vport
);
826 spin_lock_irq(shost
->host_lock
);
827 vport
->fc_flag
|= FC_VPORT_NEEDS_REG_VPI
;
828 spin_unlock_irq(shost
->host_lock
);
833 lpfc_port_link_failure(struct lpfc_vport
*vport
)
835 lpfc_vport_set_state(vport
, FC_VPORT_LINKDOWN
);
837 /* Cleanup any outstanding received buffers */
838 lpfc_cleanup_rcv_buffers(vport
);
840 /* Cleanup any outstanding RSCN activity */
841 lpfc_els_flush_rscn(vport
);
843 /* Cleanup any outstanding ELS commands */
844 lpfc_els_flush_cmd(vport
);
846 lpfc_cleanup_rpis(vport
, 0);
848 /* Turn off discovery timer if its running */
849 lpfc_can_disctmo(vport
);
853 lpfc_linkdown_port(struct lpfc_vport
*vport
)
855 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
857 fc_host_post_event(shost
, fc_get_event_number(), FCH_EVT_LINKDOWN
, 0);
859 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_CMD
,
860 "Link Down: state:x%x rtry:x%x flg:x%x",
861 vport
->port_state
, vport
->fc_ns_retry
, vport
->fc_flag
);
863 lpfc_port_link_failure(vport
);
865 /* Stop delayed Nport discovery */
866 spin_lock_irq(shost
->host_lock
);
867 vport
->fc_flag
&= ~FC_DISC_DELAYED
;
868 spin_unlock_irq(shost
->host_lock
);
869 del_timer_sync(&vport
->delayed_disc_tmo
);
873 lpfc_linkdown(struct lpfc_hba
*phba
)
875 struct lpfc_vport
*vport
= phba
->pport
;
876 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
877 struct lpfc_vport
**vports
;
881 if (phba
->link_state
== LPFC_LINK_DOWN
)
884 /* Block all SCSI stack I/Os */
885 lpfc_scsi_dev_block(phba
);
887 spin_lock_irq(&phba
->hbalock
);
888 phba
->fcf
.fcf_flag
&= ~(FCF_AVAILABLE
| FCF_SCAN_DONE
);
889 spin_unlock_irq(&phba
->hbalock
);
890 if (phba
->link_state
> LPFC_LINK_DOWN
) {
891 phba
->link_state
= LPFC_LINK_DOWN
;
892 spin_lock_irq(shost
->host_lock
);
893 phba
->pport
->fc_flag
&= ~FC_LBIT
;
894 spin_unlock_irq(shost
->host_lock
);
896 vports
= lpfc_create_vport_work_array(phba
);
898 for (i
= 0; i
<= phba
->max_vports
&& vports
[i
] != NULL
; i
++) {
899 /* Issue a LINK DOWN event to all nodes */
900 lpfc_linkdown_port(vports
[i
]);
902 lpfc_destroy_vport_work_array(phba
, vports
);
903 /* Clean up any firmware default rpi's */
904 mb
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
906 lpfc_unreg_did(phba
, 0xffff, LPFC_UNREG_ALL_DFLT_RPIS
, mb
);
908 mb
->mbox_cmpl
= lpfc_sli_def_mbox_cmpl
;
909 if (lpfc_sli_issue_mbox(phba
, mb
, MBX_NOWAIT
)
910 == MBX_NOT_FINISHED
) {
911 mempool_free(mb
, phba
->mbox_mem_pool
);
915 /* Setup myDID for link up if we are in pt2pt mode */
916 if (phba
->pport
->fc_flag
& FC_PT2PT
) {
917 phba
->pport
->fc_myDID
= 0;
918 mb
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
920 lpfc_config_link(phba
, mb
);
921 mb
->mbox_cmpl
= lpfc_sli_def_mbox_cmpl
;
923 if (lpfc_sli_issue_mbox(phba
, mb
, MBX_NOWAIT
)
924 == MBX_NOT_FINISHED
) {
925 mempool_free(mb
, phba
->mbox_mem_pool
);
928 spin_lock_irq(shost
->host_lock
);
929 phba
->pport
->fc_flag
&= ~(FC_PT2PT
| FC_PT2PT_PLOGI
);
930 spin_unlock_irq(shost
->host_lock
);
937 lpfc_linkup_cleanup_nodes(struct lpfc_vport
*vport
)
939 struct lpfc_nodelist
*ndlp
;
941 list_for_each_entry(ndlp
, &vport
->fc_nodes
, nlp_listp
) {
942 if (!NLP_CHK_NODE_ACT(ndlp
))
944 if (ndlp
->nlp_state
== NLP_STE_UNUSED_NODE
)
946 if (ndlp
->nlp_type
& NLP_FABRIC
) {
947 /* On Linkup its safe to clean up the ndlp
948 * from Fabric connections.
950 if (ndlp
->nlp_DID
!= Fabric_DID
)
951 lpfc_unreg_rpi(vport
, ndlp
);
952 lpfc_nlp_set_state(vport
, ndlp
, NLP_STE_NPR_NODE
);
953 } else if (!(ndlp
->nlp_flag
& NLP_NPR_ADISC
)) {
954 /* Fail outstanding IO now since device is
957 lpfc_unreg_rpi(vport
, ndlp
);
963 lpfc_linkup_port(struct lpfc_vport
*vport
)
965 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
966 struct lpfc_hba
*phba
= vport
->phba
;
968 if ((vport
->load_flag
& FC_UNLOADING
) != 0)
971 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_CMD
,
972 "Link Up: top:x%x speed:x%x flg:x%x",
973 phba
->fc_topology
, phba
->fc_linkspeed
, phba
->link_flag
);
975 /* If NPIV is not enabled, only bring the physical port up */
976 if (!(phba
->sli3_options
& LPFC_SLI3_NPIV_ENABLED
) &&
977 (vport
!= phba
->pport
))
980 fc_host_post_event(shost
, fc_get_event_number(), FCH_EVT_LINKUP
, 0);
982 spin_lock_irq(shost
->host_lock
);
983 vport
->fc_flag
&= ~(FC_PT2PT
| FC_PT2PT_PLOGI
| FC_ABORT_DISCOVERY
|
984 FC_RSCN_MODE
| FC_NLP_MORE
| FC_RSCN_DISCOVERY
);
985 vport
->fc_flag
|= FC_NDISC_ACTIVE
;
986 vport
->fc_ns_retry
= 0;
987 spin_unlock_irq(shost
->host_lock
);
989 if (vport
->fc_flag
& FC_LBIT
)
990 lpfc_linkup_cleanup_nodes(vport
);
995 lpfc_linkup(struct lpfc_hba
*phba
)
997 struct lpfc_vport
**vports
;
1000 phba
->link_state
= LPFC_LINK_UP
;
1002 /* Unblock fabric iocbs if they are blocked */
1003 clear_bit(FABRIC_COMANDS_BLOCKED
, &phba
->bit_flags
);
1004 del_timer_sync(&phba
->fabric_block_timer
);
1006 vports
= lpfc_create_vport_work_array(phba
);
1008 for (i
= 0; i
<= phba
->max_vports
&& vports
[i
] != NULL
; i
++)
1009 lpfc_linkup_port(vports
[i
]);
1010 lpfc_destroy_vport_work_array(phba
, vports
);
1016 * This routine handles processing a CLEAR_LA mailbox
1017 * command upon completion. It is setup in the LPFC_MBOXQ
1018 * as the completion routine when the command is
1019 * handed off to the SLI layer.
1022 lpfc_mbx_cmpl_clear_la(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*pmb
)
1024 struct lpfc_vport
*vport
= pmb
->vport
;
1025 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
1026 struct lpfc_sli
*psli
= &phba
->sli
;
1027 MAILBOX_t
*mb
= &pmb
->u
.mb
;
1030 /* Since we don't do discovery right now, turn these off here */
1031 psli
->ring
[psli
->extra_ring
].flag
&= ~LPFC_STOP_IOCB_EVENT
;
1032 psli
->ring
[psli
->fcp_ring
].flag
&= ~LPFC_STOP_IOCB_EVENT
;
1033 psli
->ring
[psli
->next_ring
].flag
&= ~LPFC_STOP_IOCB_EVENT
;
1035 /* Check for error */
1036 if ((mb
->mbxStatus
) && (mb
->mbxStatus
!= 0x1601)) {
1037 /* CLEAR_LA mbox error <mbxStatus> state <hba_state> */
1038 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_MBOX
,
1039 "0320 CLEAR_LA mbxStatus error x%x hba "
1041 mb
->mbxStatus
, vport
->port_state
);
1042 phba
->link_state
= LPFC_HBA_ERROR
;
1046 if (vport
->port_type
== LPFC_PHYSICAL_PORT
)
1047 phba
->link_state
= LPFC_HBA_READY
;
1049 spin_lock_irq(&phba
->hbalock
);
1050 psli
->sli_flag
|= LPFC_PROCESS_LA
;
1051 control
= readl(phba
->HCregaddr
);
1052 control
|= HC_LAINT_ENA
;
1053 writel(control
, phba
->HCregaddr
);
1054 readl(phba
->HCregaddr
); /* flush */
1055 spin_unlock_irq(&phba
->hbalock
);
1056 mempool_free(pmb
, phba
->mbox_mem_pool
);
1060 /* Device Discovery completes */
1061 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_DISCOVERY
,
1062 "0225 Device Discovery completes\n");
1063 mempool_free(pmb
, phba
->mbox_mem_pool
);
1065 spin_lock_irq(shost
->host_lock
);
1066 vport
->fc_flag
&= ~FC_ABORT_DISCOVERY
;
1067 spin_unlock_irq(shost
->host_lock
);
1069 lpfc_can_disctmo(vport
);
1071 /* turn on Link Attention interrupts */
1073 spin_lock_irq(&phba
->hbalock
);
1074 psli
->sli_flag
|= LPFC_PROCESS_LA
;
1075 control
= readl(phba
->HCregaddr
);
1076 control
|= HC_LAINT_ENA
;
1077 writel(control
, phba
->HCregaddr
);
1078 readl(phba
->HCregaddr
); /* flush */
1079 spin_unlock_irq(&phba
->hbalock
);
1086 lpfc_mbx_cmpl_local_config_link(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*pmb
)
1088 struct lpfc_vport
*vport
= pmb
->vport
;
1090 if (pmb
->u
.mb
.mbxStatus
)
1093 mempool_free(pmb
, phba
->mbox_mem_pool
);
1095 /* don't perform discovery for SLI4 loopback diagnostic test */
1096 if ((phba
->sli_rev
== LPFC_SLI_REV4
) &&
1097 !(phba
->hba_flag
& HBA_FCOE_MODE
) &&
1098 (phba
->link_flag
& LS_LOOPBACK_MODE
))
1101 if (phba
->fc_topology
== LPFC_TOPOLOGY_LOOP
&&
1102 vport
->fc_flag
& FC_PUBLIC_LOOP
&&
1103 !(vport
->fc_flag
& FC_LBIT
)) {
1104 /* Need to wait for FAN - use discovery timer
1105 * for timeout. port_state is identically
1106 * LPFC_LOCAL_CFG_LINK while waiting for FAN
1108 lpfc_set_disctmo(vport
);
1112 /* Start discovery by sending a FLOGI. port_state is identically
1113 * LPFC_FLOGI while waiting for FLOGI cmpl
1115 if (vport
->port_state
!= LPFC_FLOGI
)
1116 lpfc_initial_flogi(vport
);
1117 else if (vport
->fc_flag
& FC_PT2PT
)
1118 lpfc_disc_start(vport
);
1122 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_MBOX
,
1123 "0306 CONFIG_LINK mbxStatus error x%x "
1125 pmb
->u
.mb
.mbxStatus
, vport
->port_state
);
1126 mempool_free(pmb
, phba
->mbox_mem_pool
);
1128 lpfc_linkdown(phba
);
1130 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_DISCOVERY
,
1131 "0200 CONFIG_LINK bad hba state x%x\n",
1134 lpfc_issue_clear_la(phba
, vport
);
1139 * lpfc_sli4_clear_fcf_rr_bmask
1140 * @phba pointer to the struct lpfc_hba for this port.
1141 * This fucnction resets the round robin bit mask and clears the
1142 * fcf priority list. The list deletions are done while holding the
1143 * hbalock. The ON_LIST flag and the FLOGI_FAILED flags are cleared
1144 * from the lpfc_fcf_pri record.
1147 lpfc_sli4_clear_fcf_rr_bmask(struct lpfc_hba
*phba
)
1149 struct lpfc_fcf_pri
*fcf_pri
;
1150 struct lpfc_fcf_pri
*next_fcf_pri
;
1151 memset(phba
->fcf
.fcf_rr_bmask
, 0, sizeof(*phba
->fcf
.fcf_rr_bmask
));
1152 spin_lock_irq(&phba
->hbalock
);
1153 list_for_each_entry_safe(fcf_pri
, next_fcf_pri
,
1154 &phba
->fcf
.fcf_pri_list
, list
) {
1155 list_del_init(&fcf_pri
->list
);
1156 fcf_pri
->fcf_rec
.flag
= 0;
1158 spin_unlock_irq(&phba
->hbalock
);
1161 lpfc_mbx_cmpl_reg_fcfi(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*mboxq
)
1163 struct lpfc_vport
*vport
= mboxq
->vport
;
1165 if (mboxq
->u
.mb
.mbxStatus
) {
1166 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_MBOX
,
1167 "2017 REG_FCFI mbxStatus error x%x "
1169 mboxq
->u
.mb
.mbxStatus
, vport
->port_state
);
1173 /* Start FCoE discovery by sending a FLOGI. */
1174 phba
->fcf
.fcfi
= bf_get(lpfc_reg_fcfi_fcfi
, &mboxq
->u
.mqe
.un
.reg_fcfi
);
1175 /* Set the FCFI registered flag */
1176 spin_lock_irq(&phba
->hbalock
);
1177 phba
->fcf
.fcf_flag
|= FCF_REGISTERED
;
1178 spin_unlock_irq(&phba
->hbalock
);
1180 /* If there is a pending FCoE event, restart FCF table scan. */
1181 if ((!(phba
->hba_flag
& FCF_RR_INPROG
)) &&
1182 lpfc_check_pending_fcoe_event(phba
, LPFC_UNREG_FCF
))
1185 /* Mark successful completion of FCF table scan */
1186 spin_lock_irq(&phba
->hbalock
);
1187 phba
->fcf
.fcf_flag
|= (FCF_SCAN_DONE
| FCF_IN_USE
);
1188 phba
->hba_flag
&= ~FCF_TS_INPROG
;
1189 if (vport
->port_state
!= LPFC_FLOGI
) {
1190 phba
->hba_flag
|= FCF_RR_INPROG
;
1191 spin_unlock_irq(&phba
->hbalock
);
1192 lpfc_issue_init_vfi(vport
);
1195 spin_unlock_irq(&phba
->hbalock
);
1199 spin_lock_irq(&phba
->hbalock
);
1200 phba
->hba_flag
&= ~FCF_RR_INPROG
;
1201 spin_unlock_irq(&phba
->hbalock
);
1203 mempool_free(mboxq
, phba
->mbox_mem_pool
);
1207 * lpfc_fab_name_match - Check if the fcf fabric name match.
1208 * @fab_name: pointer to fabric name.
1209 * @new_fcf_record: pointer to fcf record.
1211 * This routine compare the fcf record's fabric name with provided
1212 * fabric name. If the fabric name are identical this function
1213 * returns 1 else return 0.
1216 lpfc_fab_name_match(uint8_t *fab_name
, struct fcf_record
*new_fcf_record
)
1218 if (fab_name
[0] != bf_get(lpfc_fcf_record_fab_name_0
, new_fcf_record
))
1220 if (fab_name
[1] != bf_get(lpfc_fcf_record_fab_name_1
, new_fcf_record
))
1222 if (fab_name
[2] != bf_get(lpfc_fcf_record_fab_name_2
, new_fcf_record
))
1224 if (fab_name
[3] != bf_get(lpfc_fcf_record_fab_name_3
, new_fcf_record
))
1226 if (fab_name
[4] != bf_get(lpfc_fcf_record_fab_name_4
, new_fcf_record
))
1228 if (fab_name
[5] != bf_get(lpfc_fcf_record_fab_name_5
, new_fcf_record
))
1230 if (fab_name
[6] != bf_get(lpfc_fcf_record_fab_name_6
, new_fcf_record
))
1232 if (fab_name
[7] != bf_get(lpfc_fcf_record_fab_name_7
, new_fcf_record
))
1238 * lpfc_sw_name_match - Check if the fcf switch name match.
1239 * @fab_name: pointer to fabric name.
1240 * @new_fcf_record: pointer to fcf record.
1242 * This routine compare the fcf record's switch name with provided
1243 * switch name. If the switch name are identical this function
1244 * returns 1 else return 0.
1247 lpfc_sw_name_match(uint8_t *sw_name
, struct fcf_record
*new_fcf_record
)
1249 if (sw_name
[0] != bf_get(lpfc_fcf_record_switch_name_0
, new_fcf_record
))
1251 if (sw_name
[1] != bf_get(lpfc_fcf_record_switch_name_1
, new_fcf_record
))
1253 if (sw_name
[2] != bf_get(lpfc_fcf_record_switch_name_2
, new_fcf_record
))
1255 if (sw_name
[3] != bf_get(lpfc_fcf_record_switch_name_3
, new_fcf_record
))
1257 if (sw_name
[4] != bf_get(lpfc_fcf_record_switch_name_4
, new_fcf_record
))
1259 if (sw_name
[5] != bf_get(lpfc_fcf_record_switch_name_5
, new_fcf_record
))
1261 if (sw_name
[6] != bf_get(lpfc_fcf_record_switch_name_6
, new_fcf_record
))
1263 if (sw_name
[7] != bf_get(lpfc_fcf_record_switch_name_7
, new_fcf_record
))
1269 * lpfc_mac_addr_match - Check if the fcf mac address match.
1270 * @mac_addr: pointer to mac address.
1271 * @new_fcf_record: pointer to fcf record.
1273 * This routine compare the fcf record's mac address with HBA's
1274 * FCF mac address. If the mac addresses are identical this function
1275 * returns 1 else return 0.
1278 lpfc_mac_addr_match(uint8_t *mac_addr
, struct fcf_record
*new_fcf_record
)
1280 if (mac_addr
[0] != bf_get(lpfc_fcf_record_mac_0
, new_fcf_record
))
1282 if (mac_addr
[1] != bf_get(lpfc_fcf_record_mac_1
, new_fcf_record
))
1284 if (mac_addr
[2] != bf_get(lpfc_fcf_record_mac_2
, new_fcf_record
))
1286 if (mac_addr
[3] != bf_get(lpfc_fcf_record_mac_3
, new_fcf_record
))
1288 if (mac_addr
[4] != bf_get(lpfc_fcf_record_mac_4
, new_fcf_record
))
1290 if (mac_addr
[5] != bf_get(lpfc_fcf_record_mac_5
, new_fcf_record
))
1296 lpfc_vlan_id_match(uint16_t curr_vlan_id
, uint16_t new_vlan_id
)
1298 return (curr_vlan_id
== new_vlan_id
);
1302 * lpfc_update_fcf_record - Update driver fcf record
1303 * __lpfc_update_fcf_record_pri - update the lpfc_fcf_pri record.
1304 * @phba: pointer to lpfc hba data structure.
1305 * @fcf_index: Index for the lpfc_fcf_record.
1306 * @new_fcf_record: pointer to hba fcf record.
1308 * This routine updates the driver FCF priority record from the new HBA FCF
1309 * record. This routine is called with the host lock held.
1312 __lpfc_update_fcf_record_pri(struct lpfc_hba
*phba
, uint16_t fcf_index
,
1313 struct fcf_record
*new_fcf_record
1316 struct lpfc_fcf_pri
*fcf_pri
;
1318 lockdep_assert_held(&phba
->hbalock
);
1320 fcf_pri
= &phba
->fcf
.fcf_pri
[fcf_index
];
1321 fcf_pri
->fcf_rec
.fcf_index
= fcf_index
;
1322 /* FCF record priority */
1323 fcf_pri
->fcf_rec
.priority
= new_fcf_record
->fip_priority
;
1328 * lpfc_copy_fcf_record - Copy fcf information to lpfc_hba.
1329 * @fcf: pointer to driver fcf record.
1330 * @new_fcf_record: pointer to fcf record.
1332 * This routine copies the FCF information from the FCF
1333 * record to lpfc_hba data structure.
1336 lpfc_copy_fcf_record(struct lpfc_fcf_rec
*fcf_rec
,
1337 struct fcf_record
*new_fcf_record
)
1340 fcf_rec
->fabric_name
[0] =
1341 bf_get(lpfc_fcf_record_fab_name_0
, new_fcf_record
);
1342 fcf_rec
->fabric_name
[1] =
1343 bf_get(lpfc_fcf_record_fab_name_1
, new_fcf_record
);
1344 fcf_rec
->fabric_name
[2] =
1345 bf_get(lpfc_fcf_record_fab_name_2
, new_fcf_record
);
1346 fcf_rec
->fabric_name
[3] =
1347 bf_get(lpfc_fcf_record_fab_name_3
, new_fcf_record
);
1348 fcf_rec
->fabric_name
[4] =
1349 bf_get(lpfc_fcf_record_fab_name_4
, new_fcf_record
);
1350 fcf_rec
->fabric_name
[5] =
1351 bf_get(lpfc_fcf_record_fab_name_5
, new_fcf_record
);
1352 fcf_rec
->fabric_name
[6] =
1353 bf_get(lpfc_fcf_record_fab_name_6
, new_fcf_record
);
1354 fcf_rec
->fabric_name
[7] =
1355 bf_get(lpfc_fcf_record_fab_name_7
, new_fcf_record
);
1357 fcf_rec
->mac_addr
[0] = bf_get(lpfc_fcf_record_mac_0
, new_fcf_record
);
1358 fcf_rec
->mac_addr
[1] = bf_get(lpfc_fcf_record_mac_1
, new_fcf_record
);
1359 fcf_rec
->mac_addr
[2] = bf_get(lpfc_fcf_record_mac_2
, new_fcf_record
);
1360 fcf_rec
->mac_addr
[3] = bf_get(lpfc_fcf_record_mac_3
, new_fcf_record
);
1361 fcf_rec
->mac_addr
[4] = bf_get(lpfc_fcf_record_mac_4
, new_fcf_record
);
1362 fcf_rec
->mac_addr
[5] = bf_get(lpfc_fcf_record_mac_5
, new_fcf_record
);
1363 /* FCF record index */
1364 fcf_rec
->fcf_indx
= bf_get(lpfc_fcf_record_fcf_index
, new_fcf_record
);
1365 /* FCF record priority */
1366 fcf_rec
->priority
= new_fcf_record
->fip_priority
;
1368 fcf_rec
->switch_name
[0] =
1369 bf_get(lpfc_fcf_record_switch_name_0
, new_fcf_record
);
1370 fcf_rec
->switch_name
[1] =
1371 bf_get(lpfc_fcf_record_switch_name_1
, new_fcf_record
);
1372 fcf_rec
->switch_name
[2] =
1373 bf_get(lpfc_fcf_record_switch_name_2
, new_fcf_record
);
1374 fcf_rec
->switch_name
[3] =
1375 bf_get(lpfc_fcf_record_switch_name_3
, new_fcf_record
);
1376 fcf_rec
->switch_name
[4] =
1377 bf_get(lpfc_fcf_record_switch_name_4
, new_fcf_record
);
1378 fcf_rec
->switch_name
[5] =
1379 bf_get(lpfc_fcf_record_switch_name_5
, new_fcf_record
);
1380 fcf_rec
->switch_name
[6] =
1381 bf_get(lpfc_fcf_record_switch_name_6
, new_fcf_record
);
1382 fcf_rec
->switch_name
[7] =
1383 bf_get(lpfc_fcf_record_switch_name_7
, new_fcf_record
);
1387 * lpfc_update_fcf_record - Update driver fcf record
1388 * @phba: pointer to lpfc hba data structure.
1389 * @fcf_rec: pointer to driver fcf record.
1390 * @new_fcf_record: pointer to hba fcf record.
1391 * @addr_mode: address mode to be set to the driver fcf record.
1392 * @vlan_id: vlan tag to be set to the driver fcf record.
1393 * @flag: flag bits to be set to the driver fcf record.
1395 * This routine updates the driver FCF record from the new HBA FCF record
1396 * together with the address mode, vlan_id, and other informations. This
1397 * routine is called with the host lock held.
1400 __lpfc_update_fcf_record(struct lpfc_hba
*phba
, struct lpfc_fcf_rec
*fcf_rec
,
1401 struct fcf_record
*new_fcf_record
, uint32_t addr_mode
,
1402 uint16_t vlan_id
, uint32_t flag
)
1404 lockdep_assert_held(&phba
->hbalock
);
1406 /* Copy the fields from the HBA's FCF record */
1407 lpfc_copy_fcf_record(fcf_rec
, new_fcf_record
);
1408 /* Update other fields of driver FCF record */
1409 fcf_rec
->addr_mode
= addr_mode
;
1410 fcf_rec
->vlan_id
= vlan_id
;
1411 fcf_rec
->flag
|= (flag
| RECORD_VALID
);
1412 __lpfc_update_fcf_record_pri(phba
,
1413 bf_get(lpfc_fcf_record_fcf_index
, new_fcf_record
),
1418 * lpfc_register_fcf - Register the FCF with hba.
1419 * @phba: pointer to lpfc hba data structure.
1421 * This routine issues a register fcfi mailbox command to register
1425 lpfc_register_fcf(struct lpfc_hba
*phba
)
1427 LPFC_MBOXQ_t
*fcf_mbxq
;
1430 spin_lock_irq(&phba
->hbalock
);
1431 /* If the FCF is not available do nothing. */
1432 if (!(phba
->fcf
.fcf_flag
& FCF_AVAILABLE
)) {
1433 phba
->hba_flag
&= ~(FCF_TS_INPROG
| FCF_RR_INPROG
);
1434 spin_unlock_irq(&phba
->hbalock
);
1438 /* The FCF is already registered, start discovery */
1439 if (phba
->fcf
.fcf_flag
& FCF_REGISTERED
) {
1440 phba
->fcf
.fcf_flag
|= (FCF_SCAN_DONE
| FCF_IN_USE
);
1441 phba
->hba_flag
&= ~FCF_TS_INPROG
;
1442 if (phba
->pport
->port_state
!= LPFC_FLOGI
&&
1443 phba
->pport
->fc_flag
& FC_FABRIC
) {
1444 phba
->hba_flag
|= FCF_RR_INPROG
;
1445 spin_unlock_irq(&phba
->hbalock
);
1446 lpfc_initial_flogi(phba
->pport
);
1449 spin_unlock_irq(&phba
->hbalock
);
1452 spin_unlock_irq(&phba
->hbalock
);
1454 fcf_mbxq
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
1456 spin_lock_irq(&phba
->hbalock
);
1457 phba
->hba_flag
&= ~(FCF_TS_INPROG
| FCF_RR_INPROG
);
1458 spin_unlock_irq(&phba
->hbalock
);
1462 lpfc_reg_fcfi(phba
, fcf_mbxq
);
1463 fcf_mbxq
->vport
= phba
->pport
;
1464 fcf_mbxq
->mbox_cmpl
= lpfc_mbx_cmpl_reg_fcfi
;
1465 rc
= lpfc_sli_issue_mbox(phba
, fcf_mbxq
, MBX_NOWAIT
);
1466 if (rc
== MBX_NOT_FINISHED
) {
1467 spin_lock_irq(&phba
->hbalock
);
1468 phba
->hba_flag
&= ~(FCF_TS_INPROG
| FCF_RR_INPROG
);
1469 spin_unlock_irq(&phba
->hbalock
);
1470 mempool_free(fcf_mbxq
, phba
->mbox_mem_pool
);
1477 * lpfc_match_fcf_conn_list - Check if the FCF record can be used for discovery.
1478 * @phba: pointer to lpfc hba data structure.
1479 * @new_fcf_record: pointer to fcf record.
1480 * @boot_flag: Indicates if this record used by boot bios.
1481 * @addr_mode: The address mode to be used by this FCF
1482 * @vlan_id: The vlan id to be used as vlan tagging by this FCF.
1484 * This routine compare the fcf record with connect list obtained from the
1485 * config region to decide if this FCF can be used for SAN discovery. It returns
1486 * 1 if this record can be used for SAN discovery else return zero. If this FCF
1487 * record can be used for SAN discovery, the boot_flag will indicate if this FCF
1488 * is used by boot bios and addr_mode will indicate the addressing mode to be
1489 * used for this FCF when the function returns.
1490 * If the FCF record need to be used with a particular vlan id, the vlan is
1491 * set in the vlan_id on return of the function. If not VLAN tagging need to
1492 * be used with the FCF vlan_id will be set to LPFC_FCOE_NULL_VID;
1495 lpfc_match_fcf_conn_list(struct lpfc_hba
*phba
,
1496 struct fcf_record
*new_fcf_record
,
1497 uint32_t *boot_flag
, uint32_t *addr_mode
,
1500 struct lpfc_fcf_conn_entry
*conn_entry
;
1501 int i
, j
, fcf_vlan_id
= 0;
1503 /* Find the lowest VLAN id in the FCF record */
1504 for (i
= 0; i
< 512; i
++) {
1505 if (new_fcf_record
->vlan_bitmap
[i
]) {
1506 fcf_vlan_id
= i
* 8;
1508 while (!((new_fcf_record
->vlan_bitmap
[i
] >> j
) & 1)) {
1516 /* FCF not valid/available or solicitation in progress */
1517 if (!bf_get(lpfc_fcf_record_fcf_avail
, new_fcf_record
) ||
1518 !bf_get(lpfc_fcf_record_fcf_valid
, new_fcf_record
) ||
1519 bf_get(lpfc_fcf_record_fcf_sol
, new_fcf_record
))
1522 if (!(phba
->hba_flag
& HBA_FIP_SUPPORT
)) {
1524 *addr_mode
= bf_get(lpfc_fcf_record_mac_addr_prov
,
1526 if (phba
->valid_vlan
)
1527 *vlan_id
= phba
->vlan_id
;
1529 *vlan_id
= LPFC_FCOE_NULL_VID
;
1534 * If there are no FCF connection table entry, driver connect to all
1537 if (list_empty(&phba
->fcf_conn_rec_list
)) {
1539 *addr_mode
= bf_get(lpfc_fcf_record_mac_addr_prov
,
1543 * When there are no FCF connect entries, use driver's default
1544 * addressing mode - FPMA.
1546 if (*addr_mode
& LPFC_FCF_FPMA
)
1547 *addr_mode
= LPFC_FCF_FPMA
;
1549 /* If FCF record report a vlan id use that vlan id */
1551 *vlan_id
= fcf_vlan_id
;
1553 *vlan_id
= LPFC_FCOE_NULL_VID
;
1557 list_for_each_entry(conn_entry
,
1558 &phba
->fcf_conn_rec_list
, list
) {
1559 if (!(conn_entry
->conn_rec
.flags
& FCFCNCT_VALID
))
1562 if ((conn_entry
->conn_rec
.flags
& FCFCNCT_FBNM_VALID
) &&
1563 !lpfc_fab_name_match(conn_entry
->conn_rec
.fabric_name
,
1566 if ((conn_entry
->conn_rec
.flags
& FCFCNCT_SWNM_VALID
) &&
1567 !lpfc_sw_name_match(conn_entry
->conn_rec
.switch_name
,
1570 if (conn_entry
->conn_rec
.flags
& FCFCNCT_VLAN_VALID
) {
1572 * If the vlan bit map does not have the bit set for the
1573 * vlan id to be used, then it is not a match.
1575 if (!(new_fcf_record
->vlan_bitmap
1576 [conn_entry
->conn_rec
.vlan_tag
/ 8] &
1577 (1 << (conn_entry
->conn_rec
.vlan_tag
% 8))))
1582 * If connection record does not support any addressing mode,
1583 * skip the FCF record.
1585 if (!(bf_get(lpfc_fcf_record_mac_addr_prov
, new_fcf_record
)
1586 & (LPFC_FCF_FPMA
| LPFC_FCF_SPMA
)))
1590 * Check if the connection record specifies a required
1593 if ((conn_entry
->conn_rec
.flags
& FCFCNCT_AM_VALID
) &&
1594 !(conn_entry
->conn_rec
.flags
& FCFCNCT_AM_PREFERRED
)) {
1597 * If SPMA required but FCF not support this continue.
1599 if ((conn_entry
->conn_rec
.flags
& FCFCNCT_AM_SPMA
) &&
1600 !(bf_get(lpfc_fcf_record_mac_addr_prov
,
1601 new_fcf_record
) & LPFC_FCF_SPMA
))
1605 * If FPMA required but FCF not support this continue.
1607 if (!(conn_entry
->conn_rec
.flags
& FCFCNCT_AM_SPMA
) &&
1608 !(bf_get(lpfc_fcf_record_mac_addr_prov
,
1609 new_fcf_record
) & LPFC_FCF_FPMA
))
1614 * This fcf record matches filtering criteria.
1616 if (conn_entry
->conn_rec
.flags
& FCFCNCT_BOOT
)
1622 * If user did not specify any addressing mode, or if the
1623 * preferred addressing mode specified by user is not supported
1624 * by FCF, allow fabric to pick the addressing mode.
1626 *addr_mode
= bf_get(lpfc_fcf_record_mac_addr_prov
,
1629 * If the user specified a required address mode, assign that
1632 if ((conn_entry
->conn_rec
.flags
& FCFCNCT_AM_VALID
) &&
1633 (!(conn_entry
->conn_rec
.flags
& FCFCNCT_AM_PREFERRED
)))
1634 *addr_mode
= (conn_entry
->conn_rec
.flags
&
1636 LPFC_FCF_SPMA
: LPFC_FCF_FPMA
;
1638 * If the user specified a preferred address mode, use the
1639 * addr mode only if FCF support the addr_mode.
1641 else if ((conn_entry
->conn_rec
.flags
& FCFCNCT_AM_VALID
) &&
1642 (conn_entry
->conn_rec
.flags
& FCFCNCT_AM_PREFERRED
) &&
1643 (conn_entry
->conn_rec
.flags
& FCFCNCT_AM_SPMA
) &&
1644 (*addr_mode
& LPFC_FCF_SPMA
))
1645 *addr_mode
= LPFC_FCF_SPMA
;
1646 else if ((conn_entry
->conn_rec
.flags
& FCFCNCT_AM_VALID
) &&
1647 (conn_entry
->conn_rec
.flags
& FCFCNCT_AM_PREFERRED
) &&
1648 !(conn_entry
->conn_rec
.flags
& FCFCNCT_AM_SPMA
) &&
1649 (*addr_mode
& LPFC_FCF_FPMA
))
1650 *addr_mode
= LPFC_FCF_FPMA
;
1652 /* If matching connect list has a vlan id, use it */
1653 if (conn_entry
->conn_rec
.flags
& FCFCNCT_VLAN_VALID
)
1654 *vlan_id
= conn_entry
->conn_rec
.vlan_tag
;
1656 * If no vlan id is specified in connect list, use the vlan id
1659 else if (fcf_vlan_id
)
1660 *vlan_id
= fcf_vlan_id
;
1662 *vlan_id
= LPFC_FCOE_NULL_VID
;
1671 * lpfc_check_pending_fcoe_event - Check if there is pending fcoe event.
1672 * @phba: pointer to lpfc hba data structure.
1673 * @unreg_fcf: Unregister FCF if FCF table need to be re-scaned.
1675 * This function check if there is any fcoe event pending while driver
1676 * scan FCF entries. If there is any pending event, it will restart the
1677 * FCF saning and return 1 else return 0.
1680 lpfc_check_pending_fcoe_event(struct lpfc_hba
*phba
, uint8_t unreg_fcf
)
1683 * If the Link is up and no FCoE events while in the
1684 * FCF discovery, no need to restart FCF discovery.
1686 if ((phba
->link_state
>= LPFC_LINK_UP
) &&
1687 (phba
->fcoe_eventtag
== phba
->fcoe_eventtag_at_fcf_scan
))
1690 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
,
1691 "2768 Pending link or FCF event during current "
1692 "handling of the previous event: link_state:x%x, "
1693 "evt_tag_at_scan:x%x, evt_tag_current:x%x\n",
1694 phba
->link_state
, phba
->fcoe_eventtag_at_fcf_scan
,
1695 phba
->fcoe_eventtag
);
1697 spin_lock_irq(&phba
->hbalock
);
1698 phba
->fcf
.fcf_flag
&= ~FCF_AVAILABLE
;
1699 spin_unlock_irq(&phba
->hbalock
);
1701 if (phba
->link_state
>= LPFC_LINK_UP
) {
1702 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
| LOG_DISCOVERY
,
1703 "2780 Restart FCF table scan due to "
1704 "pending FCF event:evt_tag_at_scan:x%x, "
1705 "evt_tag_current:x%x\n",
1706 phba
->fcoe_eventtag_at_fcf_scan
,
1707 phba
->fcoe_eventtag
);
1708 lpfc_sli4_fcf_scan_read_fcf_rec(phba
, LPFC_FCOE_FCF_GET_FIRST
);
1711 * Do not continue FCF discovery and clear FCF_TS_INPROG
1714 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
| LOG_DISCOVERY
,
1715 "2833 Stop FCF discovery process due to link "
1716 "state change (x%x)\n", phba
->link_state
);
1717 spin_lock_irq(&phba
->hbalock
);
1718 phba
->hba_flag
&= ~(FCF_TS_INPROG
| FCF_RR_INPROG
);
1719 phba
->fcf
.fcf_flag
&= ~(FCF_REDISC_FOV
| FCF_DISCOVERY
);
1720 spin_unlock_irq(&phba
->hbalock
);
1723 /* Unregister the currently registered FCF if required */
1725 spin_lock_irq(&phba
->hbalock
);
1726 phba
->fcf
.fcf_flag
&= ~FCF_REGISTERED
;
1727 spin_unlock_irq(&phba
->hbalock
);
1728 lpfc_sli4_unregister_fcf(phba
);
1734 * lpfc_sli4_new_fcf_random_select - Randomly select an eligible new fcf record
1735 * @phba: pointer to lpfc hba data structure.
1736 * @fcf_cnt: number of eligible fcf record seen so far.
1738 * This function makes an running random selection decision on FCF record to
1739 * use through a sequence of @fcf_cnt eligible FCF records with equal
1740 * probability. To perform integer manunipulation of random numbers with
1741 * size unit32_t, the lower 16 bits of the 32-bit random number returned
1742 * from prandom_u32() are taken as the random random number generated.
1744 * Returns true when outcome is for the newly read FCF record should be
1745 * chosen; otherwise, return false when outcome is for keeping the previously
1746 * chosen FCF record.
1749 lpfc_sli4_new_fcf_random_select(struct lpfc_hba
*phba
, uint32_t fcf_cnt
)
1753 /* Get 16-bit uniform random number */
1754 rand_num
= 0xFFFF & prandom_u32();
1756 /* Decision with probability 1/fcf_cnt */
1757 if ((fcf_cnt
* rand_num
) < 0xFFFF)
1764 * lpfc_sli4_fcf_rec_mbox_parse - Parse read_fcf mbox command.
1765 * @phba: pointer to lpfc hba data structure.
1766 * @mboxq: pointer to mailbox object.
1767 * @next_fcf_index: pointer to holder of next fcf index.
1769 * This routine parses the non-embedded fcf mailbox command by performing the
1770 * necessarily error checking, non-embedded read FCF record mailbox command
1771 * SGE parsing, and endianness swapping.
1773 * Returns the pointer to the new FCF record in the non-embedded mailbox
1774 * command DMA memory if successfully, other NULL.
1776 static struct fcf_record
*
1777 lpfc_sli4_fcf_rec_mbox_parse(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*mboxq
,
1778 uint16_t *next_fcf_index
)
1781 struct lpfc_mbx_sge sge
;
1782 struct lpfc_mbx_read_fcf_tbl
*read_fcf
;
1783 uint32_t shdr_status
, shdr_add_status
, if_type
;
1784 union lpfc_sli4_cfg_shdr
*shdr
;
1785 struct fcf_record
*new_fcf_record
;
1787 /* Get the first SGE entry from the non-embedded DMA memory. This
1788 * routine only uses a single SGE.
1790 lpfc_sli4_mbx_sge_get(mboxq
, 0, &sge
);
1791 if (unlikely(!mboxq
->sge_array
)) {
1792 lpfc_printf_log(phba
, KERN_ERR
, LOG_MBOX
,
1793 "2524 Failed to get the non-embedded SGE "
1794 "virtual address\n");
1797 virt_addr
= mboxq
->sge_array
->addr
[0];
1799 shdr
= (union lpfc_sli4_cfg_shdr
*)virt_addr
;
1800 lpfc_sli_pcimem_bcopy(shdr
, shdr
,
1801 sizeof(union lpfc_sli4_cfg_shdr
));
1802 shdr_status
= bf_get(lpfc_mbox_hdr_status
, &shdr
->response
);
1803 if_type
= bf_get(lpfc_sli_intf_if_type
, &phba
->sli4_hba
.sli_intf
);
1804 shdr_add_status
= bf_get(lpfc_mbox_hdr_add_status
, &shdr
->response
);
1805 if (shdr_status
|| shdr_add_status
) {
1806 if (shdr_status
== STATUS_FCF_TABLE_EMPTY
||
1807 if_type
== LPFC_SLI_INTF_IF_TYPE_2
)
1808 lpfc_printf_log(phba
, KERN_ERR
, LOG_FIP
,
1809 "2726 READ_FCF_RECORD Indicates empty "
1812 lpfc_printf_log(phba
, KERN_ERR
, LOG_FIP
,
1813 "2521 READ_FCF_RECORD mailbox failed "
1814 "with status x%x add_status x%x, "
1815 "mbx\n", shdr_status
, shdr_add_status
);
1819 /* Interpreting the returned information of the FCF record */
1820 read_fcf
= (struct lpfc_mbx_read_fcf_tbl
*)virt_addr
;
1821 lpfc_sli_pcimem_bcopy(read_fcf
, read_fcf
,
1822 sizeof(struct lpfc_mbx_read_fcf_tbl
));
1823 *next_fcf_index
= bf_get(lpfc_mbx_read_fcf_tbl_nxt_vindx
, read_fcf
);
1824 new_fcf_record
= (struct fcf_record
*)(virt_addr
+
1825 sizeof(struct lpfc_mbx_read_fcf_tbl
));
1826 lpfc_sli_pcimem_bcopy(new_fcf_record
, new_fcf_record
,
1827 offsetof(struct fcf_record
, vlan_bitmap
));
1828 new_fcf_record
->word137
= le32_to_cpu(new_fcf_record
->word137
);
1829 new_fcf_record
->word138
= le32_to_cpu(new_fcf_record
->word138
);
1831 return new_fcf_record
;
1835 * lpfc_sli4_log_fcf_record_info - Log the information of a fcf record
1836 * @phba: pointer to lpfc hba data structure.
1837 * @fcf_record: pointer to the fcf record.
1838 * @vlan_id: the lowest vlan identifier associated to this fcf record.
1839 * @next_fcf_index: the index to the next fcf record in hba's fcf table.
1841 * This routine logs the detailed FCF record if the LOG_FIP loggin is
1845 lpfc_sli4_log_fcf_record_info(struct lpfc_hba
*phba
,
1846 struct fcf_record
*fcf_record
,
1848 uint16_t next_fcf_index
)
1850 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
,
1851 "2764 READ_FCF_RECORD:\n"
1852 "\tFCF_Index : x%x\n"
1853 "\tFCF_Avail : x%x\n"
1854 "\tFCF_Valid : x%x\n"
1856 "\tFIP_Priority : x%x\n"
1857 "\tMAC_Provider : x%x\n"
1858 "\tLowest VLANID : x%x\n"
1859 "\tFCF_MAC Addr : x%x:%x:%x:%x:%x:%x\n"
1860 "\tFabric_Name : x%x:%x:%x:%x:%x:%x:%x:%x\n"
1861 "\tSwitch_Name : x%x:%x:%x:%x:%x:%x:%x:%x\n"
1862 "\tNext_FCF_Index: x%x\n",
1863 bf_get(lpfc_fcf_record_fcf_index
, fcf_record
),
1864 bf_get(lpfc_fcf_record_fcf_avail
, fcf_record
),
1865 bf_get(lpfc_fcf_record_fcf_valid
, fcf_record
),
1866 bf_get(lpfc_fcf_record_fcf_sol
, fcf_record
),
1867 fcf_record
->fip_priority
,
1868 bf_get(lpfc_fcf_record_mac_addr_prov
, fcf_record
),
1870 bf_get(lpfc_fcf_record_mac_0
, fcf_record
),
1871 bf_get(lpfc_fcf_record_mac_1
, fcf_record
),
1872 bf_get(lpfc_fcf_record_mac_2
, fcf_record
),
1873 bf_get(lpfc_fcf_record_mac_3
, fcf_record
),
1874 bf_get(lpfc_fcf_record_mac_4
, fcf_record
),
1875 bf_get(lpfc_fcf_record_mac_5
, fcf_record
),
1876 bf_get(lpfc_fcf_record_fab_name_0
, fcf_record
),
1877 bf_get(lpfc_fcf_record_fab_name_1
, fcf_record
),
1878 bf_get(lpfc_fcf_record_fab_name_2
, fcf_record
),
1879 bf_get(lpfc_fcf_record_fab_name_3
, fcf_record
),
1880 bf_get(lpfc_fcf_record_fab_name_4
, fcf_record
),
1881 bf_get(lpfc_fcf_record_fab_name_5
, fcf_record
),
1882 bf_get(lpfc_fcf_record_fab_name_6
, fcf_record
),
1883 bf_get(lpfc_fcf_record_fab_name_7
, fcf_record
),
1884 bf_get(lpfc_fcf_record_switch_name_0
, fcf_record
),
1885 bf_get(lpfc_fcf_record_switch_name_1
, fcf_record
),
1886 bf_get(lpfc_fcf_record_switch_name_2
, fcf_record
),
1887 bf_get(lpfc_fcf_record_switch_name_3
, fcf_record
),
1888 bf_get(lpfc_fcf_record_switch_name_4
, fcf_record
),
1889 bf_get(lpfc_fcf_record_switch_name_5
, fcf_record
),
1890 bf_get(lpfc_fcf_record_switch_name_6
, fcf_record
),
1891 bf_get(lpfc_fcf_record_switch_name_7
, fcf_record
),
1896 lpfc_sli4_fcf_record_match - testing new FCF record for matching existing FCF
1897 * @phba: pointer to lpfc hba data structure.
1898 * @fcf_rec: pointer to an existing FCF record.
1899 * @new_fcf_record: pointer to a new FCF record.
1900 * @new_vlan_id: vlan id from the new FCF record.
1902 * This function performs matching test of a new FCF record against an existing
1903 * FCF record. If the new_vlan_id passed in is LPFC_FCOE_IGNORE_VID, vlan id
1904 * will not be used as part of the FCF record matching criteria.
1906 * Returns true if all the fields matching, otherwise returns false.
1909 lpfc_sli4_fcf_record_match(struct lpfc_hba
*phba
,
1910 struct lpfc_fcf_rec
*fcf_rec
,
1911 struct fcf_record
*new_fcf_record
,
1912 uint16_t new_vlan_id
)
1914 if (new_vlan_id
!= LPFC_FCOE_IGNORE_VID
)
1915 if (!lpfc_vlan_id_match(fcf_rec
->vlan_id
, new_vlan_id
))
1917 if (!lpfc_mac_addr_match(fcf_rec
->mac_addr
, new_fcf_record
))
1919 if (!lpfc_sw_name_match(fcf_rec
->switch_name
, new_fcf_record
))
1921 if (!lpfc_fab_name_match(fcf_rec
->fabric_name
, new_fcf_record
))
1923 if (fcf_rec
->priority
!= new_fcf_record
->fip_priority
)
1929 * lpfc_sli4_fcf_rr_next_proc - processing next roundrobin fcf
1930 * @vport: Pointer to vport object.
1931 * @fcf_index: index to next fcf.
1933 * This function processing the roundrobin fcf failover to next fcf index.
1934 * When this function is invoked, there will be a current fcf registered
1936 * Return: 0 for continue retrying flogi on currently registered fcf;
1937 * 1 for stop flogi on currently registered fcf;
1939 int lpfc_sli4_fcf_rr_next_proc(struct lpfc_vport
*vport
, uint16_t fcf_index
)
1941 struct lpfc_hba
*phba
= vport
->phba
;
1944 if (fcf_index
== LPFC_FCOE_FCF_NEXT_NONE
) {
1945 spin_lock_irq(&phba
->hbalock
);
1946 if (phba
->hba_flag
& HBA_DEVLOSS_TMO
) {
1947 spin_unlock_irq(&phba
->hbalock
);
1948 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
,
1949 "2872 Devloss tmo with no eligible "
1950 "FCF, unregister in-use FCF (x%x) "
1951 "and rescan FCF table\n",
1952 phba
->fcf
.current_rec
.fcf_indx
);
1953 lpfc_unregister_fcf_rescan(phba
);
1954 goto stop_flogi_current_fcf
;
1956 /* Mark the end to FLOGI roundrobin failover */
1957 phba
->hba_flag
&= ~FCF_RR_INPROG
;
1958 /* Allow action to new fcf asynchronous event */
1959 phba
->fcf
.fcf_flag
&= ~(FCF_AVAILABLE
| FCF_SCAN_DONE
);
1960 spin_unlock_irq(&phba
->hbalock
);
1961 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
,
1962 "2865 No FCF available, stop roundrobin FCF "
1963 "failover and change port state:x%x/x%x\n",
1964 phba
->pport
->port_state
, LPFC_VPORT_UNKNOWN
);
1965 phba
->pport
->port_state
= LPFC_VPORT_UNKNOWN
;
1966 goto stop_flogi_current_fcf
;
1968 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
| LOG_ELS
,
1969 "2794 Try FLOGI roundrobin FCF failover to "
1970 "(x%x)\n", fcf_index
);
1971 rc
= lpfc_sli4_fcf_rr_read_fcf_rec(phba
, fcf_index
);
1973 lpfc_printf_log(phba
, KERN_WARNING
, LOG_FIP
| LOG_ELS
,
1974 "2761 FLOGI roundrobin FCF failover "
1975 "failed (rc:x%x) to read FCF (x%x)\n",
1976 rc
, phba
->fcf
.current_rec
.fcf_indx
);
1978 goto stop_flogi_current_fcf
;
1982 stop_flogi_current_fcf
:
1983 lpfc_can_disctmo(vport
);
1988 * lpfc_sli4_fcf_pri_list_del
1989 * @phba: pointer to lpfc hba data structure.
1990 * @fcf_index the index of the fcf record to delete
1991 * This routine checks the on list flag of the fcf_index to be deleted.
1992 * If it is one the list then it is removed from the list, and the flag
1993 * is cleared. This routine grab the hbalock before removing the fcf
1994 * record from the list.
1996 static void lpfc_sli4_fcf_pri_list_del(struct lpfc_hba
*phba
,
1999 struct lpfc_fcf_pri
*new_fcf_pri
;
2001 new_fcf_pri
= &phba
->fcf
.fcf_pri
[fcf_index
];
2002 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
,
2003 "3058 deleting idx x%x pri x%x flg x%x\n",
2004 fcf_index
, new_fcf_pri
->fcf_rec
.priority
,
2005 new_fcf_pri
->fcf_rec
.flag
);
2006 spin_lock_irq(&phba
->hbalock
);
2007 if (new_fcf_pri
->fcf_rec
.flag
& LPFC_FCF_ON_PRI_LIST
) {
2008 if (phba
->fcf
.current_rec
.priority
==
2009 new_fcf_pri
->fcf_rec
.priority
)
2010 phba
->fcf
.eligible_fcf_cnt
--;
2011 list_del_init(&new_fcf_pri
->list
);
2012 new_fcf_pri
->fcf_rec
.flag
&= ~LPFC_FCF_ON_PRI_LIST
;
2014 spin_unlock_irq(&phba
->hbalock
);
2018 * lpfc_sli4_set_fcf_flogi_fail
2019 * @phba: pointer to lpfc hba data structure.
2020 * @fcf_index the index of the fcf record to update
2021 * This routine acquires the hbalock and then set the LPFC_FCF_FLOGI_FAILED
2022 * flag so the the round robin slection for the particular priority level
2023 * will try a different fcf record that does not have this bit set.
2024 * If the fcf record is re-read for any reason this flag is cleared brfore
2025 * adding it to the priority list.
2028 lpfc_sli4_set_fcf_flogi_fail(struct lpfc_hba
*phba
, uint16_t fcf_index
)
2030 struct lpfc_fcf_pri
*new_fcf_pri
;
2031 new_fcf_pri
= &phba
->fcf
.fcf_pri
[fcf_index
];
2032 spin_lock_irq(&phba
->hbalock
);
2033 new_fcf_pri
->fcf_rec
.flag
|= LPFC_FCF_FLOGI_FAILED
;
2034 spin_unlock_irq(&phba
->hbalock
);
2038 * lpfc_sli4_fcf_pri_list_add
2039 * @phba: pointer to lpfc hba data structure.
2040 * @fcf_index the index of the fcf record to add
2041 * This routine checks the priority of the fcf_index to be added.
2042 * If it is a lower priority than the current head of the fcf_pri list
2043 * then it is added to the list in the right order.
2044 * If it is the same priority as the current head of the list then it
2045 * is added to the head of the list and its bit in the rr_bmask is set.
2046 * If the fcf_index to be added is of a higher priority than the current
2047 * head of the list then the rr_bmask is cleared, its bit is set in the
2048 * rr_bmask and it is added to the head of the list.
2050 * 0=success 1=failure
2052 static int lpfc_sli4_fcf_pri_list_add(struct lpfc_hba
*phba
,
2054 struct fcf_record
*new_fcf_record
)
2056 uint16_t current_fcf_pri
;
2057 uint16_t last_index
;
2058 struct lpfc_fcf_pri
*fcf_pri
;
2059 struct lpfc_fcf_pri
*next_fcf_pri
;
2060 struct lpfc_fcf_pri
*new_fcf_pri
;
2063 new_fcf_pri
= &phba
->fcf
.fcf_pri
[fcf_index
];
2064 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
,
2065 "3059 adding idx x%x pri x%x flg x%x\n",
2066 fcf_index
, new_fcf_record
->fip_priority
,
2067 new_fcf_pri
->fcf_rec
.flag
);
2068 spin_lock_irq(&phba
->hbalock
);
2069 if (new_fcf_pri
->fcf_rec
.flag
& LPFC_FCF_ON_PRI_LIST
)
2070 list_del_init(&new_fcf_pri
->list
);
2071 new_fcf_pri
->fcf_rec
.fcf_index
= fcf_index
;
2072 new_fcf_pri
->fcf_rec
.priority
= new_fcf_record
->fip_priority
;
2073 if (list_empty(&phba
->fcf
.fcf_pri_list
)) {
2074 list_add(&new_fcf_pri
->list
, &phba
->fcf
.fcf_pri_list
);
2075 ret
= lpfc_sli4_fcf_rr_index_set(phba
,
2076 new_fcf_pri
->fcf_rec
.fcf_index
);
2080 last_index
= find_first_bit(phba
->fcf
.fcf_rr_bmask
,
2081 LPFC_SLI4_FCF_TBL_INDX_MAX
);
2082 if (last_index
>= LPFC_SLI4_FCF_TBL_INDX_MAX
) {
2083 ret
= 0; /* Empty rr list */
2086 current_fcf_pri
= phba
->fcf
.fcf_pri
[last_index
].fcf_rec
.priority
;
2087 if (new_fcf_pri
->fcf_rec
.priority
<= current_fcf_pri
) {
2088 list_add(&new_fcf_pri
->list
, &phba
->fcf
.fcf_pri_list
);
2089 if (new_fcf_pri
->fcf_rec
.priority
< current_fcf_pri
) {
2090 memset(phba
->fcf
.fcf_rr_bmask
, 0,
2091 sizeof(*phba
->fcf
.fcf_rr_bmask
));
2092 /* fcfs_at_this_priority_level = 1; */
2093 phba
->fcf
.eligible_fcf_cnt
= 1;
2095 /* fcfs_at_this_priority_level++; */
2096 phba
->fcf
.eligible_fcf_cnt
++;
2097 ret
= lpfc_sli4_fcf_rr_index_set(phba
,
2098 new_fcf_pri
->fcf_rec
.fcf_index
);
2102 list_for_each_entry_safe(fcf_pri
, next_fcf_pri
,
2103 &phba
->fcf
.fcf_pri_list
, list
) {
2104 if (new_fcf_pri
->fcf_rec
.priority
<=
2105 fcf_pri
->fcf_rec
.priority
) {
2106 if (fcf_pri
->list
.prev
== &phba
->fcf
.fcf_pri_list
)
2107 list_add(&new_fcf_pri
->list
,
2108 &phba
->fcf
.fcf_pri_list
);
2110 list_add(&new_fcf_pri
->list
,
2111 &((struct lpfc_fcf_pri
*)
2112 fcf_pri
->list
.prev
)->list
);
2115 } else if (fcf_pri
->list
.next
== &phba
->fcf
.fcf_pri_list
2116 || new_fcf_pri
->fcf_rec
.priority
<
2117 next_fcf_pri
->fcf_rec
.priority
) {
2118 list_add(&new_fcf_pri
->list
, &fcf_pri
->list
);
2122 if (new_fcf_pri
->fcf_rec
.priority
> fcf_pri
->fcf_rec
.priority
)
2128 /* we use = instead of |= to clear the FLOGI_FAILED flag. */
2129 new_fcf_pri
->fcf_rec
.flag
= LPFC_FCF_ON_PRI_LIST
;
2130 spin_unlock_irq(&phba
->hbalock
);
2135 * lpfc_mbx_cmpl_fcf_scan_read_fcf_rec - fcf scan read_fcf mbox cmpl handler.
2136 * @phba: pointer to lpfc hba data structure.
2137 * @mboxq: pointer to mailbox object.
2139 * This function iterates through all the fcf records available in
2140 * HBA and chooses the optimal FCF record for discovery. After finding
2141 * the FCF for discovery it registers the FCF record and kicks start
2143 * If FCF_IN_USE flag is set in currently used FCF, the routine tries to
2144 * use an FCF record which matches fabric name and mac address of the
2145 * currently used FCF record.
2146 * If the driver supports only one FCF, it will try to use the FCF record
2147 * used by BOOT_BIOS.
2150 lpfc_mbx_cmpl_fcf_scan_read_fcf_rec(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*mboxq
)
2152 struct fcf_record
*new_fcf_record
;
2153 uint32_t boot_flag
, addr_mode
;
2154 uint16_t fcf_index
, next_fcf_index
;
2155 struct lpfc_fcf_rec
*fcf_rec
= NULL
;
2157 bool select_new_fcf
;
2160 /* If there is pending FCoE event restart FCF table scan */
2161 if (lpfc_check_pending_fcoe_event(phba
, LPFC_SKIP_UNREG_FCF
)) {
2162 lpfc_sli4_mbox_cmd_free(phba
, mboxq
);
2166 /* Parse the FCF record from the non-embedded mailbox command */
2167 new_fcf_record
= lpfc_sli4_fcf_rec_mbox_parse(phba
, mboxq
,
2169 if (!new_fcf_record
) {
2170 lpfc_printf_log(phba
, KERN_ERR
, LOG_FIP
,
2171 "2765 Mailbox command READ_FCF_RECORD "
2172 "failed to retrieve a FCF record.\n");
2173 /* Let next new FCF event trigger fast failover */
2174 spin_lock_irq(&phba
->hbalock
);
2175 phba
->hba_flag
&= ~FCF_TS_INPROG
;
2176 spin_unlock_irq(&phba
->hbalock
);
2177 lpfc_sli4_mbox_cmd_free(phba
, mboxq
);
2181 /* Check the FCF record against the connection list */
2182 rc
= lpfc_match_fcf_conn_list(phba
, new_fcf_record
, &boot_flag
,
2183 &addr_mode
, &vlan_id
);
2185 /* Log the FCF record information if turned on */
2186 lpfc_sli4_log_fcf_record_info(phba
, new_fcf_record
, vlan_id
,
2190 * If the fcf record does not match with connect list entries
2191 * read the next entry; otherwise, this is an eligible FCF
2192 * record for roundrobin FCF failover.
2195 lpfc_sli4_fcf_pri_list_del(phba
,
2196 bf_get(lpfc_fcf_record_fcf_index
,
2198 lpfc_printf_log(phba
, KERN_WARNING
, LOG_FIP
,
2199 "2781 FCF (x%x) failed connection "
2200 "list check: (x%x/x%x/%x)\n",
2201 bf_get(lpfc_fcf_record_fcf_index
,
2203 bf_get(lpfc_fcf_record_fcf_avail
,
2205 bf_get(lpfc_fcf_record_fcf_valid
,
2207 bf_get(lpfc_fcf_record_fcf_sol
,
2209 if ((phba
->fcf
.fcf_flag
& FCF_IN_USE
) &&
2210 lpfc_sli4_fcf_record_match(phba
, &phba
->fcf
.current_rec
,
2211 new_fcf_record
, LPFC_FCOE_IGNORE_VID
)) {
2212 if (bf_get(lpfc_fcf_record_fcf_index
, new_fcf_record
) !=
2213 phba
->fcf
.current_rec
.fcf_indx
) {
2214 lpfc_printf_log(phba
, KERN_ERR
, LOG_FIP
,
2215 "2862 FCF (x%x) matches property "
2216 "of in-use FCF (x%x)\n",
2217 bf_get(lpfc_fcf_record_fcf_index
,
2219 phba
->fcf
.current_rec
.fcf_indx
);
2223 * In case the current in-use FCF record becomes
2224 * invalid/unavailable during FCF discovery that
2225 * was not triggered by fast FCF failover process,
2226 * treat it as fast FCF failover.
2228 if (!(phba
->fcf
.fcf_flag
& FCF_REDISC_PEND
) &&
2229 !(phba
->fcf
.fcf_flag
& FCF_REDISC_FOV
)) {
2230 lpfc_printf_log(phba
, KERN_WARNING
, LOG_FIP
,
2231 "2835 Invalid in-use FCF "
2232 "(x%x), enter FCF failover "
2234 phba
->fcf
.current_rec
.fcf_indx
);
2235 spin_lock_irq(&phba
->hbalock
);
2236 phba
->fcf
.fcf_flag
|= FCF_REDISC_FOV
;
2237 spin_unlock_irq(&phba
->hbalock
);
2238 lpfc_sli4_mbox_cmd_free(phba
, mboxq
);
2239 lpfc_sli4_fcf_scan_read_fcf_rec(phba
,
2240 LPFC_FCOE_FCF_GET_FIRST
);
2246 fcf_index
= bf_get(lpfc_fcf_record_fcf_index
, new_fcf_record
);
2247 rc
= lpfc_sli4_fcf_pri_list_add(phba
, fcf_index
,
2254 * If this is not the first FCF discovery of the HBA, use last
2255 * FCF record for the discovery. The condition that a rescan
2256 * matches the in-use FCF record: fabric name, switch name, mac
2257 * address, and vlan_id.
2259 spin_lock_irq(&phba
->hbalock
);
2260 if (phba
->fcf
.fcf_flag
& FCF_IN_USE
) {
2261 if (phba
->cfg_fcf_failover_policy
== LPFC_FCF_FOV
&&
2262 lpfc_sli4_fcf_record_match(phba
, &phba
->fcf
.current_rec
,
2263 new_fcf_record
, vlan_id
)) {
2264 if (bf_get(lpfc_fcf_record_fcf_index
, new_fcf_record
) ==
2265 phba
->fcf
.current_rec
.fcf_indx
) {
2266 phba
->fcf
.fcf_flag
|= FCF_AVAILABLE
;
2267 if (phba
->fcf
.fcf_flag
& FCF_REDISC_PEND
)
2268 /* Stop FCF redisc wait timer */
2269 __lpfc_sli4_stop_fcf_redisc_wait_timer(
2271 else if (phba
->fcf
.fcf_flag
& FCF_REDISC_FOV
)
2272 /* Fast failover, mark completed */
2273 phba
->fcf
.fcf_flag
&= ~FCF_REDISC_FOV
;
2274 spin_unlock_irq(&phba
->hbalock
);
2275 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
,
2276 "2836 New FCF matches in-use "
2277 "FCF (x%x), port_state:x%x, "
2279 phba
->fcf
.current_rec
.fcf_indx
,
2280 phba
->pport
->port_state
,
2281 phba
->pport
->fc_flag
);
2284 lpfc_printf_log(phba
, KERN_ERR
, LOG_FIP
,
2285 "2863 New FCF (x%x) matches "
2286 "property of in-use FCF (x%x)\n",
2287 bf_get(lpfc_fcf_record_fcf_index
,
2289 phba
->fcf
.current_rec
.fcf_indx
);
2292 * Read next FCF record from HBA searching for the matching
2293 * with in-use record only if not during the fast failover
2294 * period. In case of fast failover period, it shall try to
2295 * determine whether the FCF record just read should be the
2298 if (!(phba
->fcf
.fcf_flag
& FCF_REDISC_FOV
)) {
2299 spin_unlock_irq(&phba
->hbalock
);
2304 * Update on failover FCF record only if it's in FCF fast-failover
2305 * period; otherwise, update on current FCF record.
2307 if (phba
->fcf
.fcf_flag
& FCF_REDISC_FOV
)
2308 fcf_rec
= &phba
->fcf
.failover_rec
;
2310 fcf_rec
= &phba
->fcf
.current_rec
;
2312 if (phba
->fcf
.fcf_flag
& FCF_AVAILABLE
) {
2314 * If the driver FCF record does not have boot flag
2315 * set and new hba fcf record has boot flag set, use
2316 * the new hba fcf record.
2318 if (boot_flag
&& !(fcf_rec
->flag
& BOOT_ENABLE
)) {
2319 /* Choose this FCF record */
2320 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
,
2321 "2837 Update current FCF record "
2322 "(x%x) with new FCF record (x%x)\n",
2324 bf_get(lpfc_fcf_record_fcf_index
,
2326 __lpfc_update_fcf_record(phba
, fcf_rec
, new_fcf_record
,
2327 addr_mode
, vlan_id
, BOOT_ENABLE
);
2328 spin_unlock_irq(&phba
->hbalock
);
2332 * If the driver FCF record has boot flag set and the
2333 * new hba FCF record does not have boot flag, read
2334 * the next FCF record.
2336 if (!boot_flag
&& (fcf_rec
->flag
& BOOT_ENABLE
)) {
2337 spin_unlock_irq(&phba
->hbalock
);
2341 * If the new hba FCF record has lower priority value
2342 * than the driver FCF record, use the new record.
2344 if (new_fcf_record
->fip_priority
< fcf_rec
->priority
) {
2345 /* Choose the new FCF record with lower priority */
2346 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
,
2347 "2838 Update current FCF record "
2348 "(x%x) with new FCF record (x%x)\n",
2350 bf_get(lpfc_fcf_record_fcf_index
,
2352 __lpfc_update_fcf_record(phba
, fcf_rec
, new_fcf_record
,
2353 addr_mode
, vlan_id
, 0);
2354 /* Reset running random FCF selection count */
2355 phba
->fcf
.eligible_fcf_cnt
= 1;
2356 } else if (new_fcf_record
->fip_priority
== fcf_rec
->priority
) {
2357 /* Update running random FCF selection count */
2358 phba
->fcf
.eligible_fcf_cnt
++;
2359 select_new_fcf
= lpfc_sli4_new_fcf_random_select(phba
,
2360 phba
->fcf
.eligible_fcf_cnt
);
2361 if (select_new_fcf
) {
2362 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
,
2363 "2839 Update current FCF record "
2364 "(x%x) with new FCF record (x%x)\n",
2366 bf_get(lpfc_fcf_record_fcf_index
,
2368 /* Choose the new FCF by random selection */
2369 __lpfc_update_fcf_record(phba
, fcf_rec
,
2371 addr_mode
, vlan_id
, 0);
2374 spin_unlock_irq(&phba
->hbalock
);
2378 * This is the first suitable FCF record, choose this record for
2379 * initial best-fit FCF.
2382 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
,
2383 "2840 Update initial FCF candidate "
2385 bf_get(lpfc_fcf_record_fcf_index
,
2387 __lpfc_update_fcf_record(phba
, fcf_rec
, new_fcf_record
,
2388 addr_mode
, vlan_id
, (boot_flag
?
2390 phba
->fcf
.fcf_flag
|= FCF_AVAILABLE
;
2391 /* Setup initial running random FCF selection count */
2392 phba
->fcf
.eligible_fcf_cnt
= 1;
2394 spin_unlock_irq(&phba
->hbalock
);
2398 lpfc_sli4_mbox_cmd_free(phba
, mboxq
);
2399 if (next_fcf_index
== LPFC_FCOE_FCF_NEXT_NONE
|| next_fcf_index
== 0) {
2400 if (phba
->fcf
.fcf_flag
& FCF_REDISC_FOV
) {
2402 * Case of FCF fast failover scan
2406 * It has not found any suitable FCF record, cancel
2407 * FCF scan inprogress, and do nothing
2409 if (!(phba
->fcf
.failover_rec
.flag
& RECORD_VALID
)) {
2410 lpfc_printf_log(phba
, KERN_WARNING
, LOG_FIP
,
2411 "2782 No suitable FCF found: "
2413 phba
->fcoe_eventtag_at_fcf_scan
,
2414 bf_get(lpfc_fcf_record_fcf_index
,
2416 spin_lock_irq(&phba
->hbalock
);
2417 if (phba
->hba_flag
& HBA_DEVLOSS_TMO
) {
2418 phba
->hba_flag
&= ~FCF_TS_INPROG
;
2419 spin_unlock_irq(&phba
->hbalock
);
2420 /* Unregister in-use FCF and rescan */
2421 lpfc_printf_log(phba
, KERN_INFO
,
2423 "2864 On devloss tmo "
2424 "unreg in-use FCF and "
2425 "rescan FCF table\n");
2426 lpfc_unregister_fcf_rescan(phba
);
2430 * Let next new FCF event trigger fast failover
2432 phba
->hba_flag
&= ~FCF_TS_INPROG
;
2433 spin_unlock_irq(&phba
->hbalock
);
2437 * It has found a suitable FCF record that is not
2438 * the same as in-use FCF record, unregister the
2439 * in-use FCF record, replace the in-use FCF record
2440 * with the new FCF record, mark FCF fast failover
2441 * completed, and then start register the new FCF
2445 /* Unregister the current in-use FCF record */
2446 lpfc_unregister_fcf(phba
);
2448 /* Replace in-use record with the new record */
2449 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
,
2450 "2842 Replace in-use FCF (x%x) "
2451 "with failover FCF (x%x)\n",
2452 phba
->fcf
.current_rec
.fcf_indx
,
2453 phba
->fcf
.failover_rec
.fcf_indx
);
2454 memcpy(&phba
->fcf
.current_rec
,
2455 &phba
->fcf
.failover_rec
,
2456 sizeof(struct lpfc_fcf_rec
));
2458 * Mark the fast FCF failover rediscovery completed
2459 * and the start of the first round of the roundrobin
2462 spin_lock_irq(&phba
->hbalock
);
2463 phba
->fcf
.fcf_flag
&= ~FCF_REDISC_FOV
;
2464 spin_unlock_irq(&phba
->hbalock
);
2465 /* Register to the new FCF record */
2466 lpfc_register_fcf(phba
);
2469 * In case of transaction period to fast FCF failover,
2470 * do nothing when search to the end of the FCF table.
2472 if ((phba
->fcf
.fcf_flag
& FCF_REDISC_EVT
) ||
2473 (phba
->fcf
.fcf_flag
& FCF_REDISC_PEND
))
2476 if (phba
->cfg_fcf_failover_policy
== LPFC_FCF_FOV
&&
2477 phba
->fcf
.fcf_flag
& FCF_IN_USE
) {
2479 * In case the current in-use FCF record no
2480 * longer existed during FCF discovery that
2481 * was not triggered by fast FCF failover
2482 * process, treat it as fast FCF failover.
2484 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
,
2485 "2841 In-use FCF record (x%x) "
2486 "not reported, entering fast "
2487 "FCF failover mode scanning.\n",
2488 phba
->fcf
.current_rec
.fcf_indx
);
2489 spin_lock_irq(&phba
->hbalock
);
2490 phba
->fcf
.fcf_flag
|= FCF_REDISC_FOV
;
2491 spin_unlock_irq(&phba
->hbalock
);
2492 lpfc_sli4_fcf_scan_read_fcf_rec(phba
,
2493 LPFC_FCOE_FCF_GET_FIRST
);
2496 /* Register to the new FCF record */
2497 lpfc_register_fcf(phba
);
2500 lpfc_sli4_fcf_scan_read_fcf_rec(phba
, next_fcf_index
);
2504 lpfc_sli4_mbox_cmd_free(phba
, mboxq
);
2505 lpfc_register_fcf(phba
);
2511 * lpfc_mbx_cmpl_fcf_rr_read_fcf_rec - fcf roundrobin read_fcf mbox cmpl hdler
2512 * @phba: pointer to lpfc hba data structure.
2513 * @mboxq: pointer to mailbox object.
2515 * This is the callback function for FLOGI failure roundrobin FCF failover
2516 * read FCF record mailbox command from the eligible FCF record bmask for
2517 * performing the failover. If the FCF read back is not valid/available, it
2518 * fails through to retrying FLOGI to the currently registered FCF again.
2519 * Otherwise, if the FCF read back is valid and available, it will set the
2520 * newly read FCF record to the failover FCF record, unregister currently
2521 * registered FCF record, copy the failover FCF record to the current
2522 * FCF record, and then register the current FCF record before proceeding
2523 * to trying FLOGI on the new failover FCF.
2526 lpfc_mbx_cmpl_fcf_rr_read_fcf_rec(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*mboxq
)
2528 struct fcf_record
*new_fcf_record
;
2529 uint32_t boot_flag
, addr_mode
;
2530 uint16_t next_fcf_index
, fcf_index
;
2531 uint16_t current_fcf_index
;
2535 /* If link state is not up, stop the roundrobin failover process */
2536 if (phba
->link_state
< LPFC_LINK_UP
) {
2537 spin_lock_irq(&phba
->hbalock
);
2538 phba
->fcf
.fcf_flag
&= ~FCF_DISCOVERY
;
2539 phba
->hba_flag
&= ~FCF_RR_INPROG
;
2540 spin_unlock_irq(&phba
->hbalock
);
2544 /* Parse the FCF record from the non-embedded mailbox command */
2545 new_fcf_record
= lpfc_sli4_fcf_rec_mbox_parse(phba
, mboxq
,
2547 if (!new_fcf_record
) {
2548 lpfc_printf_log(phba
, KERN_WARNING
, LOG_FIP
,
2549 "2766 Mailbox command READ_FCF_RECORD "
2550 "failed to retrieve a FCF record. "
2551 "hba_flg x%x fcf_flg x%x\n", phba
->hba_flag
,
2552 phba
->fcf
.fcf_flag
);
2553 lpfc_unregister_fcf_rescan(phba
);
2557 /* Get the needed parameters from FCF record */
2558 rc
= lpfc_match_fcf_conn_list(phba
, new_fcf_record
, &boot_flag
,
2559 &addr_mode
, &vlan_id
);
2561 /* Log the FCF record information if turned on */
2562 lpfc_sli4_log_fcf_record_info(phba
, new_fcf_record
, vlan_id
,
2565 fcf_index
= bf_get(lpfc_fcf_record_fcf_index
, new_fcf_record
);
2567 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
,
2568 "2848 Remove ineligible FCF (x%x) from "
2569 "from roundrobin bmask\n", fcf_index
);
2570 /* Clear roundrobin bmask bit for ineligible FCF */
2571 lpfc_sli4_fcf_rr_index_clear(phba
, fcf_index
);
2572 /* Perform next round of roundrobin FCF failover */
2573 fcf_index
= lpfc_sli4_fcf_rr_next_index_get(phba
);
2574 rc
= lpfc_sli4_fcf_rr_next_proc(phba
->pport
, fcf_index
);
2580 if (fcf_index
== phba
->fcf
.current_rec
.fcf_indx
) {
2581 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
,
2582 "2760 Perform FLOGI roundrobin FCF failover: "
2583 "FCF (x%x) back to FCF (x%x)\n",
2584 phba
->fcf
.current_rec
.fcf_indx
, fcf_index
);
2585 /* Wait 500 ms before retrying FLOGI to current FCF */
2587 lpfc_issue_init_vfi(phba
->pport
);
2591 /* Upload new FCF record to the failover FCF record */
2592 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
,
2593 "2834 Update current FCF (x%x) with new FCF (x%x)\n",
2594 phba
->fcf
.failover_rec
.fcf_indx
, fcf_index
);
2595 spin_lock_irq(&phba
->hbalock
);
2596 __lpfc_update_fcf_record(phba
, &phba
->fcf
.failover_rec
,
2597 new_fcf_record
, addr_mode
, vlan_id
,
2598 (boot_flag
? BOOT_ENABLE
: 0));
2599 spin_unlock_irq(&phba
->hbalock
);
2601 current_fcf_index
= phba
->fcf
.current_rec
.fcf_indx
;
2603 /* Unregister the current in-use FCF record */
2604 lpfc_unregister_fcf(phba
);
2606 /* Replace in-use record with the new record */
2607 memcpy(&phba
->fcf
.current_rec
, &phba
->fcf
.failover_rec
,
2608 sizeof(struct lpfc_fcf_rec
));
2610 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
,
2611 "2783 Perform FLOGI roundrobin FCF failover: FCF "
2612 "(x%x) to FCF (x%x)\n", current_fcf_index
, fcf_index
);
2615 lpfc_register_fcf(phba
);
2617 lpfc_sli4_mbox_cmd_free(phba
, mboxq
);
2621 * lpfc_mbx_cmpl_read_fcf_rec - read fcf completion handler.
2622 * @phba: pointer to lpfc hba data structure.
2623 * @mboxq: pointer to mailbox object.
2625 * This is the callback function of read FCF record mailbox command for
2626 * updating the eligible FCF bmask for FLOGI failure roundrobin FCF
2627 * failover when a new FCF event happened. If the FCF read back is
2628 * valid/available and it passes the connection list check, it updates
2629 * the bmask for the eligible FCF record for roundrobin failover.
2632 lpfc_mbx_cmpl_read_fcf_rec(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*mboxq
)
2634 struct fcf_record
*new_fcf_record
;
2635 uint32_t boot_flag
, addr_mode
;
2636 uint16_t fcf_index
, next_fcf_index
;
2640 /* If link state is not up, no need to proceed */
2641 if (phba
->link_state
< LPFC_LINK_UP
)
2644 /* If FCF discovery period is over, no need to proceed */
2645 if (!(phba
->fcf
.fcf_flag
& FCF_DISCOVERY
))
2648 /* Parse the FCF record from the non-embedded mailbox command */
2649 new_fcf_record
= lpfc_sli4_fcf_rec_mbox_parse(phba
, mboxq
,
2651 if (!new_fcf_record
) {
2652 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
,
2653 "2767 Mailbox command READ_FCF_RECORD "
2654 "failed to retrieve a FCF record.\n");
2658 /* Check the connection list for eligibility */
2659 rc
= lpfc_match_fcf_conn_list(phba
, new_fcf_record
, &boot_flag
,
2660 &addr_mode
, &vlan_id
);
2662 /* Log the FCF record information if turned on */
2663 lpfc_sli4_log_fcf_record_info(phba
, new_fcf_record
, vlan_id
,
2669 /* Update the eligible FCF record index bmask */
2670 fcf_index
= bf_get(lpfc_fcf_record_fcf_index
, new_fcf_record
);
2672 rc
= lpfc_sli4_fcf_pri_list_add(phba
, fcf_index
, new_fcf_record
);
2675 lpfc_sli4_mbox_cmd_free(phba
, mboxq
);
2679 * lpfc_init_vfi_cmpl - Completion handler for init_vfi mbox command.
2680 * @phba: pointer to lpfc hba data structure.
2681 * @mboxq: pointer to mailbox data structure.
2683 * This function handles completion of init vfi mailbox command.
2686 lpfc_init_vfi_cmpl(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*mboxq
)
2688 struct lpfc_vport
*vport
= mboxq
->vport
;
2691 * VFI not supported on interface type 0, just do the flogi
2692 * Also continue if the VFI is in use - just use the same one.
2694 if (mboxq
->u
.mb
.mbxStatus
&&
2695 (bf_get(lpfc_sli_intf_if_type
, &phba
->sli4_hba
.sli_intf
) !=
2696 LPFC_SLI_INTF_IF_TYPE_0
) &&
2697 mboxq
->u
.mb
.mbxStatus
!= MBX_VFI_IN_USE
) {
2698 lpfc_printf_vlog(vport
, KERN_ERR
,
2700 "2891 Init VFI mailbox failed 0x%x\n",
2701 mboxq
->u
.mb
.mbxStatus
);
2702 mempool_free(mboxq
, phba
->mbox_mem_pool
);
2703 lpfc_vport_set_state(vport
, FC_VPORT_FAILED
);
2707 lpfc_initial_flogi(vport
);
2708 mempool_free(mboxq
, phba
->mbox_mem_pool
);
2713 * lpfc_issue_init_vfi - Issue init_vfi mailbox command.
2714 * @vport: pointer to lpfc_vport data structure.
2716 * This function issue a init_vfi mailbox command to initialize the VFI and
2717 * VPI for the physical port.
2720 lpfc_issue_init_vfi(struct lpfc_vport
*vport
)
2722 LPFC_MBOXQ_t
*mboxq
;
2724 struct lpfc_hba
*phba
= vport
->phba
;
2726 mboxq
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
2728 lpfc_printf_vlog(vport
, KERN_ERR
,
2729 LOG_MBOX
, "2892 Failed to allocate "
2730 "init_vfi mailbox\n");
2733 lpfc_init_vfi(mboxq
, vport
);
2734 mboxq
->mbox_cmpl
= lpfc_init_vfi_cmpl
;
2735 rc
= lpfc_sli_issue_mbox(phba
, mboxq
, MBX_NOWAIT
);
2736 if (rc
== MBX_NOT_FINISHED
) {
2737 lpfc_printf_vlog(vport
, KERN_ERR
,
2738 LOG_MBOX
, "2893 Failed to issue init_vfi mailbox\n");
2739 mempool_free(mboxq
, vport
->phba
->mbox_mem_pool
);
2744 * lpfc_init_vpi_cmpl - Completion handler for init_vpi mbox command.
2745 * @phba: pointer to lpfc hba data structure.
2746 * @mboxq: pointer to mailbox data structure.
2748 * This function handles completion of init vpi mailbox command.
2751 lpfc_init_vpi_cmpl(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*mboxq
)
2753 struct lpfc_vport
*vport
= mboxq
->vport
;
2754 struct lpfc_nodelist
*ndlp
;
2755 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
2757 if (mboxq
->u
.mb
.mbxStatus
) {
2758 lpfc_printf_vlog(vport
, KERN_ERR
,
2760 "2609 Init VPI mailbox failed 0x%x\n",
2761 mboxq
->u
.mb
.mbxStatus
);
2762 mempool_free(mboxq
, phba
->mbox_mem_pool
);
2763 lpfc_vport_set_state(vport
, FC_VPORT_FAILED
);
2766 spin_lock_irq(shost
->host_lock
);
2767 vport
->fc_flag
&= ~FC_VPORT_NEEDS_INIT_VPI
;
2768 spin_unlock_irq(shost
->host_lock
);
2770 /* If this port is physical port or FDISC is done, do reg_vpi */
2771 if ((phba
->pport
== vport
) || (vport
->port_state
== LPFC_FDISC
)) {
2772 ndlp
= lpfc_findnode_did(vport
, Fabric_DID
);
2774 lpfc_printf_vlog(vport
, KERN_ERR
,
2776 "2731 Cannot find fabric "
2777 "controller node\n");
2779 lpfc_register_new_vport(phba
, vport
, ndlp
);
2780 mempool_free(mboxq
, phba
->mbox_mem_pool
);
2784 if (phba
->link_flag
& LS_NPIV_FAB_SUPPORTED
)
2785 lpfc_initial_fdisc(vport
);
2787 lpfc_vport_set_state(vport
, FC_VPORT_NO_FABRIC_SUPP
);
2788 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_ELS
,
2789 "2606 No NPIV Fabric support\n");
2791 mempool_free(mboxq
, phba
->mbox_mem_pool
);
2796 * lpfc_issue_init_vpi - Issue init_vpi mailbox command.
2797 * @vport: pointer to lpfc_vport data structure.
2799 * This function issue a init_vpi mailbox command to initialize
2800 * VPI for the vport.
2803 lpfc_issue_init_vpi(struct lpfc_vport
*vport
)
2805 LPFC_MBOXQ_t
*mboxq
;
2808 if ((vport
->port_type
!= LPFC_PHYSICAL_PORT
) && (!vport
->vpi
)) {
2809 vpi
= lpfc_alloc_vpi(vport
->phba
);
2811 lpfc_printf_vlog(vport
, KERN_ERR
,
2813 "3303 Failed to obtain vport vpi\n");
2814 lpfc_vport_set_state(vport
, FC_VPORT_FAILED
);
2820 mboxq
= mempool_alloc(vport
->phba
->mbox_mem_pool
, GFP_KERNEL
);
2822 lpfc_printf_vlog(vport
, KERN_ERR
,
2823 LOG_MBOX
, "2607 Failed to allocate "
2824 "init_vpi mailbox\n");
2827 lpfc_init_vpi(vport
->phba
, mboxq
, vport
->vpi
);
2828 mboxq
->vport
= vport
;
2829 mboxq
->mbox_cmpl
= lpfc_init_vpi_cmpl
;
2830 rc
= lpfc_sli_issue_mbox(vport
->phba
, mboxq
, MBX_NOWAIT
);
2831 if (rc
== MBX_NOT_FINISHED
) {
2832 lpfc_printf_vlog(vport
, KERN_ERR
,
2833 LOG_MBOX
, "2608 Failed to issue init_vpi mailbox\n");
2834 mempool_free(mboxq
, vport
->phba
->mbox_mem_pool
);
2839 * lpfc_start_fdiscs - send fdiscs for each vports on this port.
2840 * @phba: pointer to lpfc hba data structure.
2842 * This function loops through the list of vports on the @phba and issues an
2843 * FDISC if possible.
2846 lpfc_start_fdiscs(struct lpfc_hba
*phba
)
2848 struct lpfc_vport
**vports
;
2851 vports
= lpfc_create_vport_work_array(phba
);
2852 if (vports
!= NULL
) {
2853 for (i
= 0; i
<= phba
->max_vports
&& vports
[i
] != NULL
; i
++) {
2854 if (vports
[i
]->port_type
== LPFC_PHYSICAL_PORT
)
2856 /* There are no vpi for this vport */
2857 if (vports
[i
]->vpi
> phba
->max_vpi
) {
2858 lpfc_vport_set_state(vports
[i
],
2862 if (phba
->fc_topology
== LPFC_TOPOLOGY_LOOP
) {
2863 lpfc_vport_set_state(vports
[i
],
2867 if (vports
[i
]->fc_flag
& FC_VPORT_NEEDS_INIT_VPI
) {
2868 lpfc_issue_init_vpi(vports
[i
]);
2871 if (phba
->link_flag
& LS_NPIV_FAB_SUPPORTED
)
2872 lpfc_initial_fdisc(vports
[i
]);
2874 lpfc_vport_set_state(vports
[i
],
2875 FC_VPORT_NO_FABRIC_SUPP
);
2876 lpfc_printf_vlog(vports
[i
], KERN_ERR
,
2879 "Fabric support\n");
2883 lpfc_destroy_vport_work_array(phba
, vports
);
2887 lpfc_mbx_cmpl_reg_vfi(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*mboxq
)
2889 struct lpfc_dmabuf
*dmabuf
= mboxq
->context1
;
2890 struct lpfc_vport
*vport
= mboxq
->vport
;
2891 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
2894 * VFI not supported for interface type 0, so ignore any mailbox
2895 * error (except VFI in use) and continue with the discovery.
2897 if (mboxq
->u
.mb
.mbxStatus
&&
2898 (bf_get(lpfc_sli_intf_if_type
, &phba
->sli4_hba
.sli_intf
) !=
2899 LPFC_SLI_INTF_IF_TYPE_0
) &&
2900 mboxq
->u
.mb
.mbxStatus
!= MBX_VFI_IN_USE
) {
2901 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_MBOX
,
2902 "2018 REG_VFI mbxStatus error x%x "
2904 mboxq
->u
.mb
.mbxStatus
, vport
->port_state
);
2905 if (phba
->fc_topology
== LPFC_TOPOLOGY_LOOP
) {
2906 /* FLOGI failed, use loop map to make discovery list */
2907 lpfc_disc_list_loopmap(vport
);
2908 /* Start discovery */
2909 lpfc_disc_start(vport
);
2912 lpfc_vport_set_state(vport
, FC_VPORT_FAILED
);
2916 /* If the VFI is already registered, there is nothing else to do
2917 * Unless this was a VFI update and we are in PT2PT mode, then
2918 * we should drop through to set the port state to ready.
2920 if (vport
->fc_flag
& FC_VFI_REGISTERED
)
2921 if (!(phba
->sli_rev
== LPFC_SLI_REV4
&&
2922 vport
->fc_flag
& FC_PT2PT
))
2925 /* The VPI is implicitly registered when the VFI is registered */
2926 spin_lock_irq(shost
->host_lock
);
2927 vport
->vpi_state
|= LPFC_VPI_REGISTERED
;
2928 vport
->fc_flag
|= FC_VFI_REGISTERED
;
2929 vport
->fc_flag
&= ~FC_VPORT_NEEDS_REG_VPI
;
2930 vport
->fc_flag
&= ~FC_VPORT_NEEDS_INIT_VPI
;
2931 spin_unlock_irq(shost
->host_lock
);
2933 /* In case SLI4 FC loopback test, we are ready */
2934 if ((phba
->sli_rev
== LPFC_SLI_REV4
) &&
2935 (phba
->link_flag
& LS_LOOPBACK_MODE
)) {
2936 phba
->link_state
= LPFC_HBA_READY
;
2940 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_SLI
,
2941 "3313 cmpl reg vfi port_state:%x fc_flag:%x myDid:%x "
2942 "alpacnt:%d LinkState:%x topology:%x\n",
2943 vport
->port_state
, vport
->fc_flag
, vport
->fc_myDID
,
2944 vport
->phba
->alpa_map
[0],
2945 phba
->link_state
, phba
->fc_topology
);
2947 if (vport
->port_state
== LPFC_FABRIC_CFG_LINK
) {
2949 * For private loop or for NPort pt2pt,
2950 * just start discovery and we are done.
2952 if ((vport
->fc_flag
& FC_PT2PT
) ||
2953 ((phba
->fc_topology
== LPFC_TOPOLOGY_LOOP
) &&
2954 !(vport
->fc_flag
& FC_PUBLIC_LOOP
))) {
2956 /* Use loop map to make discovery list */
2957 lpfc_disc_list_loopmap(vport
);
2958 /* Start discovery */
2959 if (vport
->fc_flag
& FC_PT2PT
)
2960 vport
->port_state
= LPFC_VPORT_READY
;
2962 lpfc_disc_start(vport
);
2964 lpfc_start_fdiscs(phba
);
2965 lpfc_do_scr_ns_plogi(phba
, vport
);
2970 mempool_free(mboxq
, phba
->mbox_mem_pool
);
2972 lpfc_mbuf_free(phba
, dmabuf
->virt
, dmabuf
->phys
);
2979 lpfc_mbx_cmpl_read_sparam(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*pmb
)
2981 MAILBOX_t
*mb
= &pmb
->u
.mb
;
2982 struct lpfc_dmabuf
*mp
= (struct lpfc_dmabuf
*) pmb
->context1
;
2983 struct lpfc_vport
*vport
= pmb
->vport
;
2984 struct serv_parm
*sp
= &vport
->fc_sparam
;
2987 /* Check for error */
2988 if (mb
->mbxStatus
) {
2989 /* READ_SPARAM mbox error <mbxStatus> state <hba_state> */
2990 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_MBOX
,
2991 "0319 READ_SPARAM mbxStatus error x%x "
2993 mb
->mbxStatus
, vport
->port_state
);
2994 lpfc_linkdown(phba
);
2998 memcpy((uint8_t *) &vport
->fc_sparam
, (uint8_t *) mp
->virt
,
2999 sizeof (struct serv_parm
));
3001 ed_tov
= be32_to_cpu(sp
->cmn
.e_d_tov
);
3002 if (sp
->cmn
.edtovResolution
) /* E_D_TOV ticks are in nanoseconds */
3003 ed_tov
= (ed_tov
+ 999999) / 1000000;
3005 phba
->fc_edtov
= ed_tov
;
3006 phba
->fc_ratov
= (2 * ed_tov
) / 1000;
3007 if (phba
->fc_ratov
< FF_DEF_RATOV
) {
3008 /* RA_TOV should be atleast 10sec for initial flogi */
3009 phba
->fc_ratov
= FF_DEF_RATOV
;
3012 lpfc_update_vport_wwn(vport
);
3013 if (vport
->port_type
== LPFC_PHYSICAL_PORT
) {
3014 memcpy(&phba
->wwnn
, &vport
->fc_nodename
, sizeof(phba
->wwnn
));
3015 memcpy(&phba
->wwpn
, &vport
->fc_portname
, sizeof(phba
->wwnn
));
3018 lpfc_mbuf_free(phba
, mp
->virt
, mp
->phys
);
3020 mempool_free(pmb
, phba
->mbox_mem_pool
);
3024 pmb
->context1
= NULL
;
3025 lpfc_mbuf_free(phba
, mp
->virt
, mp
->phys
);
3027 lpfc_issue_clear_la(phba
, vport
);
3028 mempool_free(pmb
, phba
->mbox_mem_pool
);
3033 lpfc_mbx_process_link_up(struct lpfc_hba
*phba
, struct lpfc_mbx_read_top
*la
)
3035 struct lpfc_vport
*vport
= phba
->pport
;
3036 LPFC_MBOXQ_t
*sparam_mbox
, *cfglink_mbox
= NULL
;
3037 struct Scsi_Host
*shost
;
3039 struct lpfc_dmabuf
*mp
;
3041 struct fcf_record
*fcf_record
;
3042 uint32_t fc_flags
= 0;
3044 spin_lock_irq(&phba
->hbalock
);
3045 phba
->fc_linkspeed
= bf_get(lpfc_mbx_read_top_link_spd
, la
);
3047 if (!(phba
->hba_flag
& HBA_FCOE_MODE
)) {
3048 switch (bf_get(lpfc_mbx_read_top_link_spd
, la
)) {
3049 case LPFC_LINK_SPEED_1GHZ
:
3050 case LPFC_LINK_SPEED_2GHZ
:
3051 case LPFC_LINK_SPEED_4GHZ
:
3052 case LPFC_LINK_SPEED_8GHZ
:
3053 case LPFC_LINK_SPEED_10GHZ
:
3054 case LPFC_LINK_SPEED_16GHZ
:
3055 case LPFC_LINK_SPEED_32GHZ
:
3058 phba
->fc_linkspeed
= LPFC_LINK_SPEED_UNKNOWN
;
3063 if (phba
->fc_topology
&&
3064 phba
->fc_topology
!= bf_get(lpfc_mbx_read_top_topology
, la
)) {
3065 lpfc_printf_log(phba
, KERN_WARNING
, LOG_SLI
,
3066 "3314 Toplogy changed was 0x%x is 0x%x\n",
3068 bf_get(lpfc_mbx_read_top_topology
, la
));
3069 phba
->fc_topology_changed
= 1;
3072 phba
->fc_topology
= bf_get(lpfc_mbx_read_top_topology
, la
);
3073 phba
->link_flag
&= ~LS_NPIV_FAB_SUPPORTED
;
3075 shost
= lpfc_shost_from_vport(vport
);
3076 if (phba
->fc_topology
== LPFC_TOPOLOGY_LOOP
) {
3077 phba
->sli3_options
&= ~LPFC_SLI3_NPIV_ENABLED
;
3079 /* if npiv is enabled and this adapter supports npiv log
3080 * a message that npiv is not supported in this topology
3082 if (phba
->cfg_enable_npiv
&& phba
->max_vpi
)
3083 lpfc_printf_log(phba
, KERN_ERR
, LOG_LINK_EVENT
,
3084 "1309 Link Up Event npiv not supported in loop "
3086 /* Get Loop Map information */
3087 if (bf_get(lpfc_mbx_read_top_il
, la
))
3088 fc_flags
|= FC_LBIT
;
3090 vport
->fc_myDID
= bf_get(lpfc_mbx_read_top_alpa_granted
, la
);
3091 i
= la
->lilpBde64
.tus
.f
.bdeSize
;
3094 phba
->alpa_map
[0] = 0;
3096 if (vport
->cfg_log_verbose
& LOG_LINK_EVENT
) {
3107 numalpa
= phba
->alpa_map
[0];
3109 while (j
< numalpa
) {
3110 memset(un
.pamap
, 0, 16);
3111 for (k
= 1; j
< numalpa
; k
++) {
3113 phba
->alpa_map
[j
+ 1];
3118 /* Link Up Event ALPA map */
3119 lpfc_printf_log(phba
,
3122 "1304 Link Up Event "
3123 "ALPA map Data: x%x "
3125 un
.pa
.wd1
, un
.pa
.wd2
,
3126 un
.pa
.wd3
, un
.pa
.wd4
);
3131 if (!(phba
->sli3_options
& LPFC_SLI3_NPIV_ENABLED
)) {
3132 if (phba
->max_vpi
&& phba
->cfg_enable_npiv
&&
3133 (phba
->sli_rev
>= LPFC_SLI_REV3
))
3134 phba
->sli3_options
|= LPFC_SLI3_NPIV_ENABLED
;
3136 vport
->fc_myDID
= phba
->fc_pref_DID
;
3137 fc_flags
|= FC_LBIT
;
3139 spin_unlock_irq(&phba
->hbalock
);
3142 spin_lock_irq(shost
->host_lock
);
3143 vport
->fc_flag
|= fc_flags
;
3144 spin_unlock_irq(shost
->host_lock
);
3148 sparam_mbox
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
3152 rc
= lpfc_read_sparam(phba
, sparam_mbox
, 0);
3154 mempool_free(sparam_mbox
, phba
->mbox_mem_pool
);
3157 sparam_mbox
->vport
= vport
;
3158 sparam_mbox
->mbox_cmpl
= lpfc_mbx_cmpl_read_sparam
;
3159 rc
= lpfc_sli_issue_mbox(phba
, sparam_mbox
, MBX_NOWAIT
);
3160 if (rc
== MBX_NOT_FINISHED
) {
3161 mp
= (struct lpfc_dmabuf
*) sparam_mbox
->context1
;
3162 lpfc_mbuf_free(phba
, mp
->virt
, mp
->phys
);
3164 mempool_free(sparam_mbox
, phba
->mbox_mem_pool
);
3168 if (!(phba
->hba_flag
& HBA_FCOE_MODE
)) {
3169 cfglink_mbox
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
3172 vport
->port_state
= LPFC_LOCAL_CFG_LINK
;
3173 lpfc_config_link(phba
, cfglink_mbox
);
3174 cfglink_mbox
->vport
= vport
;
3175 cfglink_mbox
->mbox_cmpl
= lpfc_mbx_cmpl_local_config_link
;
3176 rc
= lpfc_sli_issue_mbox(phba
, cfglink_mbox
, MBX_NOWAIT
);
3177 if (rc
== MBX_NOT_FINISHED
) {
3178 mempool_free(cfglink_mbox
, phba
->mbox_mem_pool
);
3182 vport
->port_state
= LPFC_VPORT_UNKNOWN
;
3184 * Add the driver's default FCF record at FCF index 0 now. This
3185 * is phase 1 implementation that support FCF index 0 and driver
3188 if (!(phba
->hba_flag
& HBA_FIP_SUPPORT
)) {
3189 fcf_record
= kzalloc(sizeof(struct fcf_record
),
3191 if (unlikely(!fcf_record
)) {
3192 lpfc_printf_log(phba
, KERN_ERR
,
3194 "2554 Could not allocate memory for "
3200 lpfc_sli4_build_dflt_fcf_record(phba
, fcf_record
,
3201 LPFC_FCOE_FCF_DEF_INDEX
);
3202 rc
= lpfc_sli4_add_fcf_record(phba
, fcf_record
);
3204 lpfc_printf_log(phba
, KERN_ERR
,
3206 "2013 Could not manually add FCF "
3207 "record 0, status %d\n", rc
);
3215 * The driver is expected to do FIP/FCF. Call the port
3216 * and get the FCF Table.
3218 spin_lock_irq(&phba
->hbalock
);
3219 if (phba
->hba_flag
& FCF_TS_INPROG
) {
3220 spin_unlock_irq(&phba
->hbalock
);
3223 /* This is the initial FCF discovery scan */
3224 phba
->fcf
.fcf_flag
|= FCF_INIT_DISC
;
3225 spin_unlock_irq(&phba
->hbalock
);
3226 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
| LOG_DISCOVERY
,
3227 "2778 Start FCF table scan at linkup\n");
3228 rc
= lpfc_sli4_fcf_scan_read_fcf_rec(phba
,
3229 LPFC_FCOE_FCF_GET_FIRST
);
3231 spin_lock_irq(&phba
->hbalock
);
3232 phba
->fcf
.fcf_flag
&= ~FCF_INIT_DISC
;
3233 spin_unlock_irq(&phba
->hbalock
);
3236 /* Reset FCF roundrobin bmask for new discovery */
3237 lpfc_sli4_clear_fcf_rr_bmask(phba
);
3242 lpfc_vport_set_state(vport
, FC_VPORT_FAILED
);
3243 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_MBOX
,
3244 "0263 Discovery Mailbox error: state: 0x%x : %p %p\n",
3245 vport
->port_state
, sparam_mbox
, cfglink_mbox
);
3246 lpfc_issue_clear_la(phba
, vport
);
3251 lpfc_enable_la(struct lpfc_hba
*phba
)
3254 struct lpfc_sli
*psli
= &phba
->sli
;
3255 spin_lock_irq(&phba
->hbalock
);
3256 psli
->sli_flag
|= LPFC_PROCESS_LA
;
3257 if (phba
->sli_rev
<= LPFC_SLI_REV3
) {
3258 control
= readl(phba
->HCregaddr
);
3259 control
|= HC_LAINT_ENA
;
3260 writel(control
, phba
->HCregaddr
);
3261 readl(phba
->HCregaddr
); /* flush */
3263 spin_unlock_irq(&phba
->hbalock
);
3267 lpfc_mbx_issue_link_down(struct lpfc_hba
*phba
)
3269 lpfc_linkdown(phba
);
3270 lpfc_enable_la(phba
);
3271 lpfc_unregister_unused_fcf(phba
);
3272 /* turn on Link Attention interrupts - no CLEAR_LA needed */
3277 * This routine handles processing a READ_TOPOLOGY mailbox
3278 * command upon completion. It is setup in the LPFC_MBOXQ
3279 * as the completion routine when the command is
3280 * handed off to the SLI layer.
3283 lpfc_mbx_cmpl_read_topology(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*pmb
)
3285 struct lpfc_vport
*vport
= pmb
->vport
;
3286 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
3287 struct lpfc_mbx_read_top
*la
;
3288 MAILBOX_t
*mb
= &pmb
->u
.mb
;
3289 struct lpfc_dmabuf
*mp
= (struct lpfc_dmabuf
*) (pmb
->context1
);
3291 /* Unblock ELS traffic */
3292 phba
->sli
.ring
[LPFC_ELS_RING
].flag
&= ~LPFC_STOP_IOCB_EVENT
;
3293 /* Check for error */
3294 if (mb
->mbxStatus
) {
3295 lpfc_printf_log(phba
, KERN_INFO
, LOG_LINK_EVENT
,
3296 "1307 READ_LA mbox error x%x state x%x\n",
3297 mb
->mbxStatus
, vport
->port_state
);
3298 lpfc_mbx_issue_link_down(phba
);
3299 phba
->link_state
= LPFC_HBA_ERROR
;
3300 goto lpfc_mbx_cmpl_read_topology_free_mbuf
;
3303 la
= (struct lpfc_mbx_read_top
*) &pmb
->u
.mb
.un
.varReadTop
;
3305 memcpy(&phba
->alpa_map
[0], mp
->virt
, 128);
3307 spin_lock_irq(shost
->host_lock
);
3308 if (bf_get(lpfc_mbx_read_top_pb
, la
))
3309 vport
->fc_flag
|= FC_BYPASSED_MODE
;
3311 vport
->fc_flag
&= ~FC_BYPASSED_MODE
;
3312 spin_unlock_irq(shost
->host_lock
);
3314 if (phba
->fc_eventTag
<= la
->eventTag
) {
3315 phba
->fc_stat
.LinkMultiEvent
++;
3316 if (bf_get(lpfc_mbx_read_top_att_type
, la
) == LPFC_ATT_LINK_UP
)
3317 if (phba
->fc_eventTag
!= 0)
3318 lpfc_linkdown(phba
);
3321 phba
->fc_eventTag
= la
->eventTag
;
3322 if (phba
->sli_rev
< LPFC_SLI_REV4
) {
3323 spin_lock_irq(&phba
->hbalock
);
3324 if (bf_get(lpfc_mbx_read_top_mm
, la
))
3325 phba
->sli
.sli_flag
|= LPFC_MENLO_MAINT
;
3327 phba
->sli
.sli_flag
&= ~LPFC_MENLO_MAINT
;
3328 spin_unlock_irq(&phba
->hbalock
);
3331 phba
->link_events
++;
3332 if ((bf_get(lpfc_mbx_read_top_att_type
, la
) == LPFC_ATT_LINK_UP
) &&
3333 !(phba
->sli
.sli_flag
& LPFC_MENLO_MAINT
)) {
3334 phba
->fc_stat
.LinkUp
++;
3335 if (phba
->link_flag
& LS_LOOPBACK_MODE
) {
3336 lpfc_printf_log(phba
, KERN_ERR
, LOG_LINK_EVENT
,
3337 "1306 Link Up Event in loop back mode "
3338 "x%x received Data: x%x x%x x%x x%x\n",
3339 la
->eventTag
, phba
->fc_eventTag
,
3340 bf_get(lpfc_mbx_read_top_alpa_granted
,
3342 bf_get(lpfc_mbx_read_top_link_spd
, la
),
3345 lpfc_printf_log(phba
, KERN_ERR
, LOG_LINK_EVENT
,
3346 "1303 Link Up Event x%x received "
3347 "Data: x%x x%x x%x x%x x%x x%x %d\n",
3348 la
->eventTag
, phba
->fc_eventTag
,
3349 bf_get(lpfc_mbx_read_top_alpa_granted
,
3351 bf_get(lpfc_mbx_read_top_link_spd
, la
),
3353 bf_get(lpfc_mbx_read_top_mm
, la
),
3354 bf_get(lpfc_mbx_read_top_fa
, la
),
3355 phba
->wait_4_mlo_maint_flg
);
3357 lpfc_mbx_process_link_up(phba
, la
);
3358 } else if (bf_get(lpfc_mbx_read_top_att_type
, la
) ==
3359 LPFC_ATT_LINK_DOWN
) {
3360 phba
->fc_stat
.LinkDown
++;
3361 if (phba
->link_flag
& LS_LOOPBACK_MODE
)
3362 lpfc_printf_log(phba
, KERN_ERR
, LOG_LINK_EVENT
,
3363 "1308 Link Down Event in loop back mode "
3365 "Data: x%x x%x x%x\n",
3366 la
->eventTag
, phba
->fc_eventTag
,
3367 phba
->pport
->port_state
, vport
->fc_flag
);
3369 lpfc_printf_log(phba
, KERN_ERR
, LOG_LINK_EVENT
,
3370 "1305 Link Down Event x%x received "
3371 "Data: x%x x%x x%x x%x x%x\n",
3372 la
->eventTag
, phba
->fc_eventTag
,
3373 phba
->pport
->port_state
, vport
->fc_flag
,
3374 bf_get(lpfc_mbx_read_top_mm
, la
),
3375 bf_get(lpfc_mbx_read_top_fa
, la
));
3376 lpfc_mbx_issue_link_down(phba
);
3378 if ((phba
->sli
.sli_flag
& LPFC_MENLO_MAINT
) &&
3379 ((bf_get(lpfc_mbx_read_top_att_type
, la
) == LPFC_ATT_LINK_UP
))) {
3380 if (phba
->link_state
!= LPFC_LINK_DOWN
) {
3381 phba
->fc_stat
.LinkDown
++;
3382 lpfc_printf_log(phba
, KERN_ERR
, LOG_LINK_EVENT
,
3383 "1312 Link Down Event x%x received "
3384 "Data: x%x x%x x%x\n",
3385 la
->eventTag
, phba
->fc_eventTag
,
3386 phba
->pport
->port_state
, vport
->fc_flag
);
3387 lpfc_mbx_issue_link_down(phba
);
3389 lpfc_enable_la(phba
);
3391 lpfc_printf_log(phba
, KERN_ERR
, LOG_LINK_EVENT
,
3392 "1310 Menlo Maint Mode Link up Event x%x rcvd "
3393 "Data: x%x x%x x%x\n",
3394 la
->eventTag
, phba
->fc_eventTag
,
3395 phba
->pport
->port_state
, vport
->fc_flag
);
3397 * The cmnd that triggered this will be waiting for this
3400 /* WAKEUP for MENLO_SET_MODE or MENLO_RESET command. */
3401 if (phba
->wait_4_mlo_maint_flg
) {
3402 phba
->wait_4_mlo_maint_flg
= 0;
3403 wake_up_interruptible(&phba
->wait_4_mlo_m_q
);
3407 if ((phba
->sli_rev
< LPFC_SLI_REV4
) &&
3408 bf_get(lpfc_mbx_read_top_fa
, la
)) {
3409 if (phba
->sli
.sli_flag
& LPFC_MENLO_MAINT
)
3410 lpfc_issue_clear_la(phba
, vport
);
3411 lpfc_printf_log(phba
, KERN_INFO
, LOG_LINK_EVENT
,
3413 bf_get(lpfc_mbx_read_top_fa
, la
));
3416 lpfc_mbx_cmpl_read_topology_free_mbuf
:
3417 lpfc_mbuf_free(phba
, mp
->virt
, mp
->phys
);
3419 mempool_free(pmb
, phba
->mbox_mem_pool
);
3424 * This routine handles processing a REG_LOGIN mailbox
3425 * command upon completion. It is setup in the LPFC_MBOXQ
3426 * as the completion routine when the command is
3427 * handed off to the SLI layer.
3430 lpfc_mbx_cmpl_reg_login(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*pmb
)
3432 struct lpfc_vport
*vport
= pmb
->vport
;
3433 struct lpfc_dmabuf
*mp
= (struct lpfc_dmabuf
*) (pmb
->context1
);
3434 struct lpfc_nodelist
*ndlp
= (struct lpfc_nodelist
*) pmb
->context2
;
3435 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
3437 pmb
->context1
= NULL
;
3438 pmb
->context2
= NULL
;
3440 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_SLI
,
3441 "0002 rpi:%x DID:%x flg:%x %d map:%x %p\n",
3442 ndlp
->nlp_rpi
, ndlp
->nlp_DID
, ndlp
->nlp_flag
,
3443 atomic_read(&ndlp
->kref
.refcount
),
3444 ndlp
->nlp_usg_map
, ndlp
);
3445 if (ndlp
->nlp_flag
& NLP_REG_LOGIN_SEND
)
3446 ndlp
->nlp_flag
&= ~NLP_REG_LOGIN_SEND
;
3448 if (ndlp
->nlp_flag
& NLP_IGNR_REG_CMPL
||
3449 ndlp
->nlp_state
!= NLP_STE_REG_LOGIN_ISSUE
) {
3450 /* We rcvd a rscn after issuing this
3451 * mbox reg login, we may have cycled
3452 * back through the state and be
3453 * back at reg login state so this
3454 * mbox needs to be ignored becase
3455 * there is another reg login in
3458 spin_lock_irq(shost
->host_lock
);
3459 ndlp
->nlp_flag
&= ~NLP_IGNR_REG_CMPL
;
3460 spin_unlock_irq(shost
->host_lock
);
3463 /* Call state machine */
3464 lpfc_disc_state_machine(vport
, ndlp
, pmb
, NLP_EVT_CMPL_REG_LOGIN
);
3466 lpfc_mbuf_free(phba
, mp
->virt
, mp
->phys
);
3468 mempool_free(pmb
, phba
->mbox_mem_pool
);
3469 /* decrement the node reference count held for this callback
3478 lpfc_mbx_cmpl_unreg_vpi(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*pmb
)
3480 MAILBOX_t
*mb
= &pmb
->u
.mb
;
3481 struct lpfc_vport
*vport
= pmb
->vport
;
3482 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
3484 switch (mb
->mbxStatus
) {
3487 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_NODE
,
3488 "0911 cmpl_unreg_vpi, mb status = 0x%x\n",
3491 /* If VPI is busy, reset the HBA */
3493 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_NODE
,
3494 "2798 Unreg_vpi failed vpi 0x%x, mb status = 0x%x\n",
3495 vport
->vpi
, mb
->mbxStatus
);
3496 if (!(phba
->pport
->load_flag
& FC_UNLOADING
))
3497 lpfc_workq_post_event(phba
, NULL
, NULL
,
3498 LPFC_EVT_RESET_HBA
);
3500 spin_lock_irq(shost
->host_lock
);
3501 vport
->vpi_state
&= ~LPFC_VPI_REGISTERED
;
3502 vport
->fc_flag
|= FC_VPORT_NEEDS_REG_VPI
;
3503 spin_unlock_irq(shost
->host_lock
);
3504 vport
->unreg_vpi_cmpl
= VPORT_OK
;
3505 mempool_free(pmb
, phba
->mbox_mem_pool
);
3506 lpfc_cleanup_vports_rrqs(vport
, NULL
);
3508 * This shost reference might have been taken at the beginning of
3509 * lpfc_vport_delete()
3511 if ((vport
->load_flag
& FC_UNLOADING
) && (vport
!= phba
->pport
))
3512 scsi_host_put(shost
);
3516 lpfc_mbx_unreg_vpi(struct lpfc_vport
*vport
)
3518 struct lpfc_hba
*phba
= vport
->phba
;
3522 mbox
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
3526 lpfc_unreg_vpi(phba
, vport
->vpi
, mbox
);
3527 mbox
->vport
= vport
;
3528 mbox
->mbox_cmpl
= lpfc_mbx_cmpl_unreg_vpi
;
3529 rc
= lpfc_sli_issue_mbox(phba
, mbox
, MBX_NOWAIT
);
3530 if (rc
== MBX_NOT_FINISHED
) {
3531 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_MBOX
| LOG_VPORT
,
3532 "1800 Could not issue unreg_vpi\n");
3533 mempool_free(mbox
, phba
->mbox_mem_pool
);
3534 vport
->unreg_vpi_cmpl
= VPORT_ERROR
;
3541 lpfc_mbx_cmpl_reg_vpi(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*pmb
)
3543 struct lpfc_vport
*vport
= pmb
->vport
;
3544 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
3545 MAILBOX_t
*mb
= &pmb
->u
.mb
;
3547 switch (mb
->mbxStatus
) {
3551 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_NODE
,
3552 "0912 cmpl_reg_vpi, mb status = 0x%x\n",
3554 lpfc_vport_set_state(vport
, FC_VPORT_FAILED
);
3555 spin_lock_irq(shost
->host_lock
);
3556 vport
->fc_flag
&= ~(FC_FABRIC
| FC_PUBLIC_LOOP
);
3557 spin_unlock_irq(shost
->host_lock
);
3558 vport
->fc_myDID
= 0;
3562 spin_lock_irq(shost
->host_lock
);
3563 vport
->vpi_state
|= LPFC_VPI_REGISTERED
;
3564 vport
->fc_flag
&= ~FC_VPORT_NEEDS_REG_VPI
;
3565 spin_unlock_irq(shost
->host_lock
);
3566 vport
->num_disc_nodes
= 0;
3567 /* go thru NPR list and issue ELS PLOGIs */
3568 if (vport
->fc_npr_cnt
)
3569 lpfc_els_disc_plogi(vport
);
3571 if (!vport
->num_disc_nodes
) {
3572 spin_lock_irq(shost
->host_lock
);
3573 vport
->fc_flag
&= ~FC_NDISC_ACTIVE
;
3574 spin_unlock_irq(shost
->host_lock
);
3575 lpfc_can_disctmo(vport
);
3577 vport
->port_state
= LPFC_VPORT_READY
;
3580 mempool_free(pmb
, phba
->mbox_mem_pool
);
3585 * lpfc_create_static_vport - Read HBA config region to create static vports.
3586 * @phba: pointer to lpfc hba data structure.
3588 * This routine issue a DUMP mailbox command for config region 22 to get
3589 * the list of static vports to be created. The function create vports
3590 * based on the information returned from the HBA.
3593 lpfc_create_static_vport(struct lpfc_hba
*phba
)
3595 LPFC_MBOXQ_t
*pmb
= NULL
;
3597 struct static_vport_info
*vport_info
;
3598 int mbx_wait_rc
= 0, i
;
3599 struct fc_vport_identifiers vport_id
;
3600 struct fc_vport
*new_fc_vport
;
3601 struct Scsi_Host
*shost
;
3602 struct lpfc_vport
*vport
;
3603 uint16_t offset
= 0;
3604 uint8_t *vport_buff
;
3605 struct lpfc_dmabuf
*mp
;
3606 uint32_t byte_count
= 0;
3608 pmb
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
3610 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
3611 "0542 lpfc_create_static_vport failed to"
3612 " allocate mailbox memory\n");
3615 memset(pmb
, 0, sizeof(LPFC_MBOXQ_t
));
3618 vport_info
= kzalloc(sizeof(struct static_vport_info
), GFP_KERNEL
);
3620 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
3621 "0543 lpfc_create_static_vport failed to"
3622 " allocate vport_info\n");
3623 mempool_free(pmb
, phba
->mbox_mem_pool
);
3627 vport_buff
= (uint8_t *) vport_info
;
3629 /* free dma buffer from previous round */
3630 if (pmb
->context1
) {
3631 mp
= (struct lpfc_dmabuf
*)pmb
->context1
;
3632 lpfc_mbuf_free(phba
, mp
->virt
, mp
->phys
);
3635 if (lpfc_dump_static_vport(phba
, pmb
, offset
))
3638 pmb
->vport
= phba
->pport
;
3639 mbx_wait_rc
= lpfc_sli_issue_mbox_wait(phba
, pmb
,
3642 if ((mbx_wait_rc
!= MBX_SUCCESS
) || mb
->mbxStatus
) {
3643 lpfc_printf_log(phba
, KERN_WARNING
, LOG_INIT
,
3644 "0544 lpfc_create_static_vport failed to"
3645 " issue dump mailbox command ret 0x%x "
3647 mbx_wait_rc
, mb
->mbxStatus
);
3651 if (phba
->sli_rev
== LPFC_SLI_REV4
) {
3652 byte_count
= pmb
->u
.mqe
.un
.mb_words
[5];
3653 mp
= (struct lpfc_dmabuf
*)pmb
->context1
;
3654 if (byte_count
> sizeof(struct static_vport_info
) -
3656 byte_count
= sizeof(struct static_vport_info
)
3658 memcpy(vport_buff
+ offset
, mp
->virt
, byte_count
);
3659 offset
+= byte_count
;
3661 if (mb
->un
.varDmp
.word_cnt
>
3662 sizeof(struct static_vport_info
) - offset
)
3663 mb
->un
.varDmp
.word_cnt
=
3664 sizeof(struct static_vport_info
)
3666 byte_count
= mb
->un
.varDmp
.word_cnt
;
3667 lpfc_sli_pcimem_bcopy(((uint8_t *)mb
) + DMP_RSP_OFFSET
,
3668 vport_buff
+ offset
,
3671 offset
+= byte_count
;
3674 } while (byte_count
&&
3675 offset
< sizeof(struct static_vport_info
));
3678 if ((le32_to_cpu(vport_info
->signature
) != VPORT_INFO_SIG
) ||
3679 ((le32_to_cpu(vport_info
->rev
) & VPORT_INFO_REV_MASK
)
3680 != VPORT_INFO_REV
)) {
3681 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
3682 "0545 lpfc_create_static_vport bad"
3683 " information header 0x%x 0x%x\n",
3684 le32_to_cpu(vport_info
->signature
),
3685 le32_to_cpu(vport_info
->rev
) & VPORT_INFO_REV_MASK
);
3690 shost
= lpfc_shost_from_vport(phba
->pport
);
3692 for (i
= 0; i
< MAX_STATIC_VPORT_COUNT
; i
++) {
3693 memset(&vport_id
, 0, sizeof(vport_id
));
3694 vport_id
.port_name
= wwn_to_u64(vport_info
->vport_list
[i
].wwpn
);
3695 vport_id
.node_name
= wwn_to_u64(vport_info
->vport_list
[i
].wwnn
);
3696 if (!vport_id
.port_name
|| !vport_id
.node_name
)
3699 vport_id
.roles
= FC_PORT_ROLE_FCP_INITIATOR
;
3700 vport_id
.vport_type
= FC_PORTTYPE_NPIV
;
3701 vport_id
.disable
= false;
3702 new_fc_vport
= fc_vport_create(shost
, 0, &vport_id
);
3704 if (!new_fc_vport
) {
3705 lpfc_printf_log(phba
, KERN_WARNING
, LOG_INIT
,
3706 "0546 lpfc_create_static_vport failed to"
3711 vport
= *(struct lpfc_vport
**)new_fc_vport
->dd_data
;
3712 vport
->vport_flag
|= STATIC_VPORT
;
3717 if (mbx_wait_rc
!= MBX_TIMEOUT
) {
3718 if (pmb
->context1
) {
3719 mp
= (struct lpfc_dmabuf
*)pmb
->context1
;
3720 lpfc_mbuf_free(phba
, mp
->virt
, mp
->phys
);
3723 mempool_free(pmb
, phba
->mbox_mem_pool
);
3730 * This routine handles processing a Fabric REG_LOGIN mailbox
3731 * command upon completion. It is setup in the LPFC_MBOXQ
3732 * as the completion routine when the command is
3733 * handed off to the SLI layer.
3736 lpfc_mbx_cmpl_fabric_reg_login(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*pmb
)
3738 struct lpfc_vport
*vport
= pmb
->vport
;
3739 MAILBOX_t
*mb
= &pmb
->u
.mb
;
3740 struct lpfc_dmabuf
*mp
= (struct lpfc_dmabuf
*) (pmb
->context1
);
3741 struct lpfc_nodelist
*ndlp
;
3742 struct Scsi_Host
*shost
;
3744 ndlp
= (struct lpfc_nodelist
*) pmb
->context2
;
3745 pmb
->context1
= NULL
;
3746 pmb
->context2
= NULL
;
3748 if (mb
->mbxStatus
) {
3749 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_MBOX
,
3750 "0258 Register Fabric login error: 0x%x\n",
3752 lpfc_mbuf_free(phba
, mp
->virt
, mp
->phys
);
3754 mempool_free(pmb
, phba
->mbox_mem_pool
);
3756 if (phba
->fc_topology
== LPFC_TOPOLOGY_LOOP
) {
3757 /* FLOGI failed, use loop map to make discovery list */
3758 lpfc_disc_list_loopmap(vport
);
3760 /* Start discovery */
3761 lpfc_disc_start(vport
);
3762 /* Decrement the reference count to ndlp after the
3763 * reference to the ndlp are done.
3769 lpfc_vport_set_state(vport
, FC_VPORT_FAILED
);
3770 /* Decrement the reference count to ndlp after the reference
3771 * to the ndlp are done.
3777 if (phba
->sli_rev
< LPFC_SLI_REV4
)
3778 ndlp
->nlp_rpi
= mb
->un
.varWords
[0];
3779 ndlp
->nlp_flag
|= NLP_RPI_REGISTERED
;
3780 ndlp
->nlp_type
|= NLP_FABRIC
;
3781 lpfc_nlp_set_state(vport
, ndlp
, NLP_STE_UNMAPPED_NODE
);
3783 if (vport
->port_state
== LPFC_FABRIC_CFG_LINK
) {
3784 /* when physical port receive logo donot start
3785 * vport discovery */
3786 if (!(vport
->fc_flag
& FC_LOGO_RCVD_DID_CHNG
))
3787 lpfc_start_fdiscs(phba
);
3789 shost
= lpfc_shost_from_vport(vport
);
3790 spin_lock_irq(shost
->host_lock
);
3791 vport
->fc_flag
&= ~FC_LOGO_RCVD_DID_CHNG
;
3792 spin_unlock_irq(shost
->host_lock
);
3794 lpfc_do_scr_ns_plogi(phba
, vport
);
3797 lpfc_mbuf_free(phba
, mp
->virt
, mp
->phys
);
3799 mempool_free(pmb
, phba
->mbox_mem_pool
);
3801 /* Drop the reference count from the mbox at the end after
3802 * all the current reference to the ndlp have been done.
3809 * This routine handles processing a NameServer REG_LOGIN mailbox
3810 * command upon completion. It is setup in the LPFC_MBOXQ
3811 * as the completion routine when the command is
3812 * handed off to the SLI layer.
3815 lpfc_mbx_cmpl_ns_reg_login(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*pmb
)
3817 MAILBOX_t
*mb
= &pmb
->u
.mb
;
3818 struct lpfc_dmabuf
*mp
= (struct lpfc_dmabuf
*) (pmb
->context1
);
3819 struct lpfc_nodelist
*ndlp
= (struct lpfc_nodelist
*) pmb
->context2
;
3820 struct lpfc_vport
*vport
= pmb
->vport
;
3822 pmb
->context1
= NULL
;
3823 pmb
->context2
= NULL
;
3825 if (mb
->mbxStatus
) {
3827 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_ELS
,
3828 "0260 Register NameServer error: 0x%x\n",
3830 /* decrement the node reference count held for this
3831 * callback function.
3834 lpfc_mbuf_free(phba
, mp
->virt
, mp
->phys
);
3836 mempool_free(pmb
, phba
->mbox_mem_pool
);
3838 /* If no other thread is using the ndlp, free it */
3839 lpfc_nlp_not_used(ndlp
);
3841 if (phba
->fc_topology
== LPFC_TOPOLOGY_LOOP
) {
3843 * RegLogin failed, use loop map to make discovery
3846 lpfc_disc_list_loopmap(vport
);
3848 /* Start discovery */
3849 lpfc_disc_start(vport
);
3852 lpfc_vport_set_state(vport
, FC_VPORT_FAILED
);
3856 if (phba
->sli_rev
< LPFC_SLI_REV4
)
3857 ndlp
->nlp_rpi
= mb
->un
.varWords
[0];
3858 ndlp
->nlp_flag
|= NLP_RPI_REGISTERED
;
3859 ndlp
->nlp_type
|= NLP_FABRIC
;
3860 lpfc_nlp_set_state(vport
, ndlp
, NLP_STE_UNMAPPED_NODE
);
3861 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_SLI
,
3862 "0003 rpi:%x DID:%x flg:%x %d map%x %p\n",
3863 ndlp
->nlp_rpi
, ndlp
->nlp_DID
, ndlp
->nlp_flag
,
3864 atomic_read(&ndlp
->kref
.refcount
),
3865 ndlp
->nlp_usg_map
, ndlp
);
3867 if (vport
->port_state
< LPFC_VPORT_READY
) {
3868 /* Link up discovery requires Fabric registration. */
3869 lpfc_ns_cmd(vport
, SLI_CTNS_RNN_ID
, 0, 0);
3870 lpfc_ns_cmd(vport
, SLI_CTNS_RSNN_NN
, 0, 0);
3871 lpfc_ns_cmd(vport
, SLI_CTNS_RSPN_ID
, 0, 0);
3872 lpfc_ns_cmd(vport
, SLI_CTNS_RFT_ID
, 0, 0);
3873 lpfc_ns_cmd(vport
, SLI_CTNS_RFF_ID
, 0, 0);
3875 /* Issue SCR just before NameServer GID_FT Query */
3876 lpfc_issue_els_scr(vport
, SCR_DID
, 0);
3879 vport
->fc_ns_retry
= 0;
3880 /* Good status, issue CT Request to NameServer */
3881 if (lpfc_ns_cmd(vport
, SLI_CTNS_GID_FT
, 0, 0)) {
3882 /* Cannot issue NameServer Query, so finish up discovery */
3886 /* decrement the node reference count held for this
3887 * callback function.
3890 lpfc_mbuf_free(phba
, mp
->virt
, mp
->phys
);
3892 mempool_free(pmb
, phba
->mbox_mem_pool
);
3898 lpfc_register_remote_port(struct lpfc_vport
*vport
, struct lpfc_nodelist
*ndlp
)
3900 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
3901 struct fc_rport
*rport
;
3902 struct lpfc_rport_data
*rdata
;
3903 struct fc_rport_identifiers rport_ids
;
3904 struct lpfc_hba
*phba
= vport
->phba
;
3906 /* Remote port has reappeared. Re-register w/ FC transport */
3907 rport_ids
.node_name
= wwn_to_u64(ndlp
->nlp_nodename
.u
.wwn
);
3908 rport_ids
.port_name
= wwn_to_u64(ndlp
->nlp_portname
.u
.wwn
);
3909 rport_ids
.port_id
= ndlp
->nlp_DID
;
3910 rport_ids
.roles
= FC_RPORT_ROLE_UNKNOWN
;
3913 * We leave our node pointer in rport->dd_data when we unregister a
3914 * FCP target port. But fc_remote_port_add zeros the space to which
3915 * rport->dd_data points. So, if we're reusing a previously
3916 * registered port, drop the reference that we took the last time we
3917 * registered the port.
3919 rport
= ndlp
->rport
;
3921 rdata
= rport
->dd_data
;
3922 /* break the link before dropping the ref */
3924 if (rdata
&& rdata
->pnode
== ndlp
)
3926 rdata
->pnode
= NULL
;
3927 /* drop reference for earlier registeration */
3928 put_device(&rport
->dev
);
3931 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_RPORT
,
3932 "rport add: did:x%x flg:x%x type x%x",
3933 ndlp
->nlp_DID
, ndlp
->nlp_flag
, ndlp
->nlp_type
);
3935 /* Don't add the remote port if unloading. */
3936 if (vport
->load_flag
& FC_UNLOADING
)
3939 ndlp
->rport
= rport
= fc_remote_port_add(shost
, 0, &rport_ids
);
3940 if (!rport
|| !get_device(&rport
->dev
)) {
3941 dev_printk(KERN_WARNING
, &phba
->pcidev
->dev
,
3942 "Warning: fc_remote_port_add failed\n");
3946 /* initialize static port data */
3947 rport
->maxframe_size
= ndlp
->nlp_maxframe
;
3948 rport
->supported_classes
= ndlp
->nlp_class_sup
;
3949 rdata
= rport
->dd_data
;
3950 rdata
->pnode
= lpfc_nlp_get(ndlp
);
3952 if (ndlp
->nlp_type
& NLP_FCP_TARGET
)
3953 rport_ids
.roles
|= FC_RPORT_ROLE_FCP_TARGET
;
3954 if (ndlp
->nlp_type
& NLP_FCP_INITIATOR
)
3955 rport_ids
.roles
|= FC_RPORT_ROLE_FCP_INITIATOR
;
3957 if (rport_ids
.roles
!= FC_RPORT_ROLE_UNKNOWN
)
3958 fc_remote_port_rolechg(rport
, rport_ids
.roles
);
3960 lpfc_printf_vlog(ndlp
->vport
, KERN_INFO
, LOG_NODE
,
3961 "3183 rport register x%06x, rport %p role x%x\n",
3962 ndlp
->nlp_DID
, rport
, rport_ids
.roles
);
3964 if ((rport
->scsi_target_id
!= -1) &&
3965 (rport
->scsi_target_id
< LPFC_MAX_TARGET
)) {
3966 ndlp
->nlp_sid
= rport
->scsi_target_id
;
3972 lpfc_unregister_remote_port(struct lpfc_nodelist
*ndlp
)
3974 struct fc_rport
*rport
= ndlp
->rport
;
3976 lpfc_debugfs_disc_trc(ndlp
->vport
, LPFC_DISC_TRC_RPORT
,
3977 "rport delete: did:x%x flg:x%x type x%x",
3978 ndlp
->nlp_DID
, ndlp
->nlp_flag
, ndlp
->nlp_type
);
3980 lpfc_printf_vlog(ndlp
->vport
, KERN_INFO
, LOG_NODE
,
3981 "3184 rport unregister x%06x, rport %p\n",
3982 ndlp
->nlp_DID
, rport
);
3984 fc_remote_port_delete(rport
);
3990 lpfc_nlp_counters(struct lpfc_vport
*vport
, int state
, int count
)
3992 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
3994 spin_lock_irq(shost
->host_lock
);
3996 case NLP_STE_UNUSED_NODE
:
3997 vport
->fc_unused_cnt
+= count
;
3999 case NLP_STE_PLOGI_ISSUE
:
4000 vport
->fc_plogi_cnt
+= count
;
4002 case NLP_STE_ADISC_ISSUE
:
4003 vport
->fc_adisc_cnt
+= count
;
4005 case NLP_STE_REG_LOGIN_ISSUE
:
4006 vport
->fc_reglogin_cnt
+= count
;
4008 case NLP_STE_PRLI_ISSUE
:
4009 vport
->fc_prli_cnt
+= count
;
4011 case NLP_STE_UNMAPPED_NODE
:
4012 vport
->fc_unmap_cnt
+= count
;
4014 case NLP_STE_MAPPED_NODE
:
4015 vport
->fc_map_cnt
+= count
;
4017 case NLP_STE_NPR_NODE
:
4018 if (vport
->fc_npr_cnt
== 0 && count
== -1)
4019 vport
->fc_npr_cnt
= 0;
4021 vport
->fc_npr_cnt
+= count
;
4024 spin_unlock_irq(shost
->host_lock
);
4028 lpfc_nlp_state_cleanup(struct lpfc_vport
*vport
, struct lpfc_nodelist
*ndlp
,
4029 int old_state
, int new_state
)
4031 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
4033 if (new_state
== NLP_STE_UNMAPPED_NODE
) {
4034 ndlp
->nlp_flag
&= ~NLP_NODEV_REMOVE
;
4035 ndlp
->nlp_type
|= NLP_FC_NODE
;
4037 if (new_state
== NLP_STE_MAPPED_NODE
)
4038 ndlp
->nlp_flag
&= ~NLP_NODEV_REMOVE
;
4039 if (new_state
== NLP_STE_NPR_NODE
)
4040 ndlp
->nlp_flag
&= ~NLP_RCV_PLOGI
;
4042 /* Transport interface */
4043 if (ndlp
->rport
&& (old_state
== NLP_STE_MAPPED_NODE
||
4044 old_state
== NLP_STE_UNMAPPED_NODE
)) {
4045 vport
->phba
->nport_event_cnt
++;
4046 lpfc_unregister_remote_port(ndlp
);
4049 if (new_state
== NLP_STE_MAPPED_NODE
||
4050 new_state
== NLP_STE_UNMAPPED_NODE
) {
4051 vport
->phba
->nport_event_cnt
++;
4053 * Tell the fc transport about the port, if we haven't
4054 * already. If we have, and it's a scsi entity, be
4055 * sure to unblock any attached scsi devices
4057 lpfc_register_remote_port(vport
, ndlp
);
4059 if ((new_state
== NLP_STE_MAPPED_NODE
) &&
4060 (vport
->stat_data_enabled
)) {
4062 * A new target is discovered, if there is no buffer for
4063 * statistical data collection allocate buffer.
4065 ndlp
->lat_data
= kcalloc(LPFC_MAX_BUCKET_COUNT
,
4066 sizeof(struct lpfc_scsicmd_bkt
),
4069 if (!ndlp
->lat_data
)
4070 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_NODE
,
4071 "0286 lpfc_nlp_state_cleanup failed to "
4072 "allocate statistical data buffer DID "
4073 "0x%x\n", ndlp
->nlp_DID
);
4076 * if we added to Mapped list, but the remote port
4077 * registration failed or assigned a target id outside
4078 * our presentable range - move the node to the
4081 if (new_state
== NLP_STE_MAPPED_NODE
&&
4083 ndlp
->rport
->scsi_target_id
== -1 ||
4084 ndlp
->rport
->scsi_target_id
>= LPFC_MAX_TARGET
)) {
4085 spin_lock_irq(shost
->host_lock
);
4086 ndlp
->nlp_flag
|= NLP_TGT_NO_SCSIID
;
4087 spin_unlock_irq(shost
->host_lock
);
4088 lpfc_nlp_set_state(vport
, ndlp
, NLP_STE_UNMAPPED_NODE
);
4093 lpfc_nlp_state_name(char *buffer
, size_t size
, int state
)
4095 static char *states
[] = {
4096 [NLP_STE_UNUSED_NODE
] = "UNUSED",
4097 [NLP_STE_PLOGI_ISSUE
] = "PLOGI",
4098 [NLP_STE_ADISC_ISSUE
] = "ADISC",
4099 [NLP_STE_REG_LOGIN_ISSUE
] = "REGLOGIN",
4100 [NLP_STE_PRLI_ISSUE
] = "PRLI",
4101 [NLP_STE_LOGO_ISSUE
] = "LOGO",
4102 [NLP_STE_UNMAPPED_NODE
] = "UNMAPPED",
4103 [NLP_STE_MAPPED_NODE
] = "MAPPED",
4104 [NLP_STE_NPR_NODE
] = "NPR",
4107 if (state
< NLP_STE_MAX_STATE
&& states
[state
])
4108 strlcpy(buffer
, states
[state
], size
);
4110 snprintf(buffer
, size
, "unknown (%d)", state
);
4115 lpfc_nlp_set_state(struct lpfc_vport
*vport
, struct lpfc_nodelist
*ndlp
,
4118 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
4119 int old_state
= ndlp
->nlp_state
;
4120 char name1
[16], name2
[16];
4122 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_NODE
,
4123 "0904 NPort state transition x%06x, %s -> %s\n",
4125 lpfc_nlp_state_name(name1
, sizeof(name1
), old_state
),
4126 lpfc_nlp_state_name(name2
, sizeof(name2
), state
));
4128 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_NODE
,
4129 "node statechg did:x%x old:%d ste:%d",
4130 ndlp
->nlp_DID
, old_state
, state
);
4132 if (old_state
== NLP_STE_NPR_NODE
&&
4133 state
!= NLP_STE_NPR_NODE
)
4134 lpfc_cancel_retry_delay_tmo(vport
, ndlp
);
4135 if (old_state
== NLP_STE_UNMAPPED_NODE
) {
4136 ndlp
->nlp_flag
&= ~NLP_TGT_NO_SCSIID
;
4137 ndlp
->nlp_type
&= ~NLP_FC_NODE
;
4140 if (list_empty(&ndlp
->nlp_listp
)) {
4141 spin_lock_irq(shost
->host_lock
);
4142 list_add_tail(&ndlp
->nlp_listp
, &vport
->fc_nodes
);
4143 spin_unlock_irq(shost
->host_lock
);
4144 } else if (old_state
)
4145 lpfc_nlp_counters(vport
, old_state
, -1);
4147 ndlp
->nlp_state
= state
;
4148 lpfc_nlp_counters(vport
, state
, 1);
4149 lpfc_nlp_state_cleanup(vport
, ndlp
, old_state
, state
);
4153 lpfc_enqueue_node(struct lpfc_vport
*vport
, struct lpfc_nodelist
*ndlp
)
4155 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
4157 if (list_empty(&ndlp
->nlp_listp
)) {
4158 spin_lock_irq(shost
->host_lock
);
4159 list_add_tail(&ndlp
->nlp_listp
, &vport
->fc_nodes
);
4160 spin_unlock_irq(shost
->host_lock
);
4165 lpfc_dequeue_node(struct lpfc_vport
*vport
, struct lpfc_nodelist
*ndlp
)
4167 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
4169 lpfc_cancel_retry_delay_tmo(vport
, ndlp
);
4170 if (ndlp
->nlp_state
&& !list_empty(&ndlp
->nlp_listp
))
4171 lpfc_nlp_counters(vport
, ndlp
->nlp_state
, -1);
4172 spin_lock_irq(shost
->host_lock
);
4173 list_del_init(&ndlp
->nlp_listp
);
4174 spin_unlock_irq(shost
->host_lock
);
4175 lpfc_nlp_state_cleanup(vport
, ndlp
, ndlp
->nlp_state
,
4176 NLP_STE_UNUSED_NODE
);
4180 lpfc_disable_node(struct lpfc_vport
*vport
, struct lpfc_nodelist
*ndlp
)
4182 lpfc_cancel_retry_delay_tmo(vport
, ndlp
);
4183 if (ndlp
->nlp_state
&& !list_empty(&ndlp
->nlp_listp
))
4184 lpfc_nlp_counters(vport
, ndlp
->nlp_state
, -1);
4185 lpfc_nlp_state_cleanup(vport
, ndlp
, ndlp
->nlp_state
,
4186 NLP_STE_UNUSED_NODE
);
4189 * lpfc_initialize_node - Initialize all fields of node object
4190 * @vport: Pointer to Virtual Port object.
4191 * @ndlp: Pointer to FC node object.
4192 * @did: FC_ID of the node.
4194 * This function is always called when node object need to be initialized.
4195 * It initializes all the fields of the node object. Although the reference
4196 * to phba from @ndlp can be obtained indirectly through it's reference to
4197 * @vport, a direct reference to phba is taken here by @ndlp. This is due
4198 * to the life-span of the @ndlp might go beyond the existence of @vport as
4199 * the final release of ndlp is determined by its reference count. And, the
4200 * operation on @ndlp needs the reference to phba.
4203 lpfc_initialize_node(struct lpfc_vport
*vport
, struct lpfc_nodelist
*ndlp
,
4206 INIT_LIST_HEAD(&ndlp
->els_retry_evt
.evt_listp
);
4207 INIT_LIST_HEAD(&ndlp
->dev_loss_evt
.evt_listp
);
4208 init_timer(&ndlp
->nlp_delayfunc
);
4209 ndlp
->nlp_delayfunc
.function
= lpfc_els_retry_delay
;
4210 ndlp
->nlp_delayfunc
.data
= (unsigned long)ndlp
;
4211 ndlp
->nlp_DID
= did
;
4212 ndlp
->vport
= vport
;
4213 ndlp
->phba
= vport
->phba
;
4214 ndlp
->nlp_sid
= NLP_NO_SID
;
4215 kref_init(&ndlp
->kref
);
4216 NLP_INT_NODE_ACT(ndlp
);
4217 atomic_set(&ndlp
->cmd_pending
, 0);
4218 ndlp
->cmd_qdepth
= vport
->cfg_tgt_queue_depth
;
4221 struct lpfc_nodelist
*
4222 lpfc_enable_node(struct lpfc_vport
*vport
, struct lpfc_nodelist
*ndlp
,
4225 struct lpfc_hba
*phba
= vport
->phba
;
4227 unsigned long flags
;
4228 unsigned long *active_rrqs_xri_bitmap
= NULL
;
4233 spin_lock_irqsave(&phba
->ndlp_lock
, flags
);
4234 /* The ndlp should not be in memory free mode */
4235 if (NLP_CHK_FREE_REQ(ndlp
)) {
4236 spin_unlock_irqrestore(&phba
->ndlp_lock
, flags
);
4237 lpfc_printf_vlog(vport
, KERN_WARNING
, LOG_NODE
,
4238 "0277 lpfc_enable_node: ndlp:x%p "
4239 "usgmap:x%x refcnt:%d\n",
4240 (void *)ndlp
, ndlp
->nlp_usg_map
,
4241 atomic_read(&ndlp
->kref
.refcount
));
4244 /* The ndlp should not already be in active mode */
4245 if (NLP_CHK_NODE_ACT(ndlp
)) {
4246 spin_unlock_irqrestore(&phba
->ndlp_lock
, flags
);
4247 lpfc_printf_vlog(vport
, KERN_WARNING
, LOG_NODE
,
4248 "0278 lpfc_enable_node: ndlp:x%p "
4249 "usgmap:x%x refcnt:%d\n",
4250 (void *)ndlp
, ndlp
->nlp_usg_map
,
4251 atomic_read(&ndlp
->kref
.refcount
));
4255 /* Keep the original DID */
4256 did
= ndlp
->nlp_DID
;
4257 if (phba
->sli_rev
== LPFC_SLI_REV4
)
4258 active_rrqs_xri_bitmap
= ndlp
->active_rrqs_xri_bitmap
;
4260 /* re-initialize ndlp except of ndlp linked list pointer */
4261 memset((((char *)ndlp
) + sizeof (struct list_head
)), 0,
4262 sizeof (struct lpfc_nodelist
) - sizeof (struct list_head
));
4263 lpfc_initialize_node(vport
, ndlp
, did
);
4265 if (phba
->sli_rev
== LPFC_SLI_REV4
)
4266 ndlp
->active_rrqs_xri_bitmap
= active_rrqs_xri_bitmap
;
4268 spin_unlock_irqrestore(&phba
->ndlp_lock
, flags
);
4269 if (vport
->phba
->sli_rev
== LPFC_SLI_REV4
) {
4270 ndlp
->nlp_rpi
= lpfc_sli4_alloc_rpi(vport
->phba
);
4271 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_NODE
,
4272 "0008 rpi:%x DID:%x flg:%x refcnt:%d "
4273 "map:%x %p\n", ndlp
->nlp_rpi
, ndlp
->nlp_DID
,
4275 atomic_read(&ndlp
->kref
.refcount
),
4276 ndlp
->nlp_usg_map
, ndlp
);
4280 if (state
!= NLP_STE_UNUSED_NODE
)
4281 lpfc_nlp_set_state(vport
, ndlp
, state
);
4283 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_NODE
,
4284 "node enable: did:x%x",
4285 ndlp
->nlp_DID
, 0, 0);
4290 lpfc_drop_node(struct lpfc_vport
*vport
, struct lpfc_nodelist
*ndlp
)
4293 * Use of lpfc_drop_node and UNUSED list: lpfc_drop_node should
4294 * be used if we wish to issue the "last" lpfc_nlp_put() to remove
4295 * the ndlp from the vport. The ndlp marked as UNUSED on the list
4296 * until ALL other outstanding threads have completed. We check
4297 * that the ndlp not already in the UNUSED state before we proceed.
4299 if (ndlp
->nlp_state
== NLP_STE_UNUSED_NODE
)
4301 lpfc_nlp_set_state(vport
, ndlp
, NLP_STE_UNUSED_NODE
);
4302 if (vport
->phba
->sli_rev
== LPFC_SLI_REV4
) {
4303 lpfc_cleanup_vports_rrqs(vport
, ndlp
);
4304 lpfc_unreg_rpi(vport
, ndlp
);
4312 * Start / ReStart rescue timer for Discovery / RSCN handling
4315 lpfc_set_disctmo(struct lpfc_vport
*vport
)
4317 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
4318 struct lpfc_hba
*phba
= vport
->phba
;
4321 if (vport
->port_state
== LPFC_LOCAL_CFG_LINK
) {
4322 /* For FAN, timeout should be greater than edtov */
4323 tmo
= (((phba
->fc_edtov
+ 999) / 1000) + 1);
4325 /* Normal discovery timeout should be > than ELS/CT timeout
4326 * FC spec states we need 3 * ratov for CT requests
4328 tmo
= ((phba
->fc_ratov
* 3) + 3);
4332 if (!timer_pending(&vport
->fc_disctmo
)) {
4333 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_CMD
,
4334 "set disc timer: tmo:x%x state:x%x flg:x%x",
4335 tmo
, vport
->port_state
, vport
->fc_flag
);
4338 mod_timer(&vport
->fc_disctmo
, jiffies
+ msecs_to_jiffies(1000 * tmo
));
4339 spin_lock_irq(shost
->host_lock
);
4340 vport
->fc_flag
|= FC_DISC_TMO
;
4341 spin_unlock_irq(shost
->host_lock
);
4343 /* Start Discovery Timer state <hba_state> */
4344 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_DISCOVERY
,
4345 "0247 Start Discovery Timer state x%x "
4346 "Data: x%x x%lx x%x x%x\n",
4347 vport
->port_state
, tmo
,
4348 (unsigned long)&vport
->fc_disctmo
, vport
->fc_plogi_cnt
,
4349 vport
->fc_adisc_cnt
);
4355 * Cancel rescue timer for Discovery / RSCN handling
4358 lpfc_can_disctmo(struct lpfc_vport
*vport
)
4360 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
4361 unsigned long iflags
;
4363 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_CMD
,
4364 "can disc timer: state:x%x rtry:x%x flg:x%x",
4365 vport
->port_state
, vport
->fc_ns_retry
, vport
->fc_flag
);
4367 /* Turn off discovery timer if its running */
4368 if (vport
->fc_flag
& FC_DISC_TMO
) {
4369 spin_lock_irqsave(shost
->host_lock
, iflags
);
4370 vport
->fc_flag
&= ~FC_DISC_TMO
;
4371 spin_unlock_irqrestore(shost
->host_lock
, iflags
);
4372 del_timer_sync(&vport
->fc_disctmo
);
4373 spin_lock_irqsave(&vport
->work_port_lock
, iflags
);
4374 vport
->work_port_events
&= ~WORKER_DISC_TMO
;
4375 spin_unlock_irqrestore(&vport
->work_port_lock
, iflags
);
4378 /* Cancel Discovery Timer state <hba_state> */
4379 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_DISCOVERY
,
4380 "0248 Cancel Discovery Timer state x%x "
4381 "Data: x%x x%x x%x\n",
4382 vport
->port_state
, vport
->fc_flag
,
4383 vport
->fc_plogi_cnt
, vport
->fc_adisc_cnt
);
4388 * Check specified ring for outstanding IOCB on the SLI queue
4389 * Return true if iocb matches the specified nport
4392 lpfc_check_sli_ndlp(struct lpfc_hba
*phba
,
4393 struct lpfc_sli_ring
*pring
,
4394 struct lpfc_iocbq
*iocb
,
4395 struct lpfc_nodelist
*ndlp
)
4397 struct lpfc_sli
*psli
= &phba
->sli
;
4398 IOCB_t
*icmd
= &iocb
->iocb
;
4399 struct lpfc_vport
*vport
= ndlp
->vport
;
4401 if (iocb
->vport
!= vport
)
4404 if (pring
->ringno
== LPFC_ELS_RING
) {
4405 switch (icmd
->ulpCommand
) {
4406 case CMD_GEN_REQUEST64_CR
:
4407 if (iocb
->context_un
.ndlp
== ndlp
)
4409 case CMD_ELS_REQUEST64_CR
:
4410 if (icmd
->un
.elsreq64
.remoteID
== ndlp
->nlp_DID
)
4412 case CMD_XMIT_ELS_RSP64_CX
:
4413 if (iocb
->context1
== (uint8_t *) ndlp
)
4416 } else if (pring
->ringno
== psli
->extra_ring
) {
4418 } else if (pring
->ringno
== psli
->fcp_ring
) {
4419 /* Skip match check if waiting to relogin to FCP target */
4420 if ((ndlp
->nlp_type
& NLP_FCP_TARGET
) &&
4421 (ndlp
->nlp_flag
& NLP_DELAY_TMO
)) {
4424 if (icmd
->ulpContext
== (volatile ushort
)ndlp
->nlp_rpi
) {
4427 } else if (pring
->ringno
== psli
->next_ring
) {
4434 * Free resources / clean up outstanding I/Os
4435 * associated with nlp_rpi in the LPFC_NODELIST entry.
4438 lpfc_no_rpi(struct lpfc_hba
*phba
, struct lpfc_nodelist
*ndlp
)
4440 LIST_HEAD(completions
);
4441 struct lpfc_sli
*psli
;
4442 struct lpfc_sli_ring
*pring
;
4443 struct lpfc_iocbq
*iocb
, *next_iocb
;
4446 lpfc_fabric_abort_nport(ndlp
);
4449 * Everything that matches on txcmplq will be returned
4450 * by firmware with a no rpi error.
4453 if (ndlp
->nlp_flag
& NLP_RPI_REGISTERED
) {
4454 /* Now process each ring */
4455 for (i
= 0; i
< psli
->num_rings
; i
++) {
4456 pring
= &psli
->ring
[i
];
4458 spin_lock_irq(&phba
->hbalock
);
4459 list_for_each_entry_safe(iocb
, next_iocb
, &pring
->txq
,
4462 * Check to see if iocb matches the nport we are
4465 if ((lpfc_check_sli_ndlp(phba
, pring
, iocb
,
4467 /* It matches, so deque and call compl
4469 list_move_tail(&iocb
->list
,
4473 spin_unlock_irq(&phba
->hbalock
);
4477 /* Cancel all the IOCBs from the completions list */
4478 lpfc_sli_cancel_iocbs(phba
, &completions
, IOSTAT_LOCAL_REJECT
,
4485 * lpfc_nlp_logo_unreg - Unreg mailbox completion handler before LOGO
4486 * @phba: Pointer to HBA context object.
4487 * @pmb: Pointer to mailbox object.
4489 * This function will issue an ELS LOGO command after completing
4493 lpfc_nlp_logo_unreg(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*pmb
)
4495 struct lpfc_vport
*vport
= pmb
->vport
;
4496 struct lpfc_nodelist
*ndlp
;
4498 ndlp
= (struct lpfc_nodelist
*)(pmb
->context1
);
4501 lpfc_issue_els_logo(vport
, ndlp
, 0);
4502 mempool_free(pmb
, phba
->mbox_mem_pool
);
4506 * Free rpi associated with LPFC_NODELIST entry.
4507 * This routine is called from lpfc_freenode(), when we are removing
4508 * a LPFC_NODELIST entry. It is also called if the driver initiates a
4509 * LOGO that completes successfully, and we are waiting to PLOGI back
4510 * to the remote NPort. In addition, it is called after we receive
4511 * and unsolicated ELS cmd, send back a rsp, the rsp completes and
4512 * we are waiting to PLOGI back to the remote NPort.
4515 lpfc_unreg_rpi(struct lpfc_vport
*vport
, struct lpfc_nodelist
*ndlp
)
4517 struct lpfc_hba
*phba
= vport
->phba
;
4519 int rc
, acc_plogi
= 1;
4522 if (ndlp
->nlp_flag
& NLP_RPI_REGISTERED
||
4523 ndlp
->nlp_flag
& NLP_REG_LOGIN_SEND
) {
4524 if (ndlp
->nlp_flag
& NLP_REG_LOGIN_SEND
)
4525 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_SLI
,
4526 "3366 RPI x%x needs to be "
4527 "unregistered nlp_flag x%x "
4529 ndlp
->nlp_rpi
, ndlp
->nlp_flag
,
4531 mbox
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
4533 /* SLI4 ports require the physical rpi value. */
4534 rpi
= ndlp
->nlp_rpi
;
4535 if (phba
->sli_rev
== LPFC_SLI_REV4
)
4536 rpi
= phba
->sli4_hba
.rpi_ids
[ndlp
->nlp_rpi
];
4538 lpfc_unreg_login(phba
, vport
->vpi
, rpi
, mbox
);
4539 mbox
->vport
= vport
;
4540 if (ndlp
->nlp_flag
& NLP_ISSUE_LOGO
) {
4541 mbox
->context1
= ndlp
;
4542 mbox
->mbox_cmpl
= lpfc_nlp_logo_unreg
;
4544 if (phba
->sli_rev
== LPFC_SLI_REV4
&&
4545 (!(vport
->load_flag
& FC_UNLOADING
)) &&
4546 (bf_get(lpfc_sli_intf_if_type
,
4547 &phba
->sli4_hba
.sli_intf
) ==
4548 LPFC_SLI_INTF_IF_TYPE_2
) &&
4549 (atomic_read(&ndlp
->kref
.refcount
) > 0)) {
4550 mbox
->context1
= lpfc_nlp_get(ndlp
);
4552 lpfc_sli4_unreg_rpi_cmpl_clr
;
4554 * accept PLOGIs after unreg_rpi_cmpl
4559 lpfc_sli_def_mbox_cmpl
;
4562 rc
= lpfc_sli_issue_mbox(phba
, mbox
, MBX_NOWAIT
);
4563 if (rc
== MBX_NOT_FINISHED
) {
4564 mempool_free(mbox
, phba
->mbox_mem_pool
);
4568 lpfc_no_rpi(phba
, ndlp
);
4570 if (phba
->sli_rev
!= LPFC_SLI_REV4
)
4572 ndlp
->nlp_flag
&= ~NLP_RPI_REGISTERED
;
4573 ndlp
->nlp_flag
&= ~NLP_NPR_ADISC
;
4575 ndlp
->nlp_flag
&= ~NLP_LOGO_ACC
;
4578 ndlp
->nlp_flag
&= ~NLP_LOGO_ACC
;
4583 * lpfc_unreg_hba_rpis - Unregister rpis registered to the hba.
4584 * @phba: pointer to lpfc hba data structure.
4586 * This routine is invoked to unregister all the currently registered RPIs
4590 lpfc_unreg_hba_rpis(struct lpfc_hba
*phba
)
4592 struct lpfc_vport
**vports
;
4593 struct lpfc_nodelist
*ndlp
;
4594 struct Scsi_Host
*shost
;
4597 vports
= lpfc_create_vport_work_array(phba
);
4599 lpfc_printf_log(phba
, KERN_ERR
, LOG_DISCOVERY
,
4600 "2884 Vport array allocation failed \n");
4603 for (i
= 0; i
<= phba
->max_vports
&& vports
[i
] != NULL
; i
++) {
4604 shost
= lpfc_shost_from_vport(vports
[i
]);
4605 spin_lock_irq(shost
->host_lock
);
4606 list_for_each_entry(ndlp
, &vports
[i
]->fc_nodes
, nlp_listp
) {
4607 if (ndlp
->nlp_flag
& NLP_RPI_REGISTERED
) {
4608 /* The mempool_alloc might sleep */
4609 spin_unlock_irq(shost
->host_lock
);
4610 lpfc_unreg_rpi(vports
[i
], ndlp
);
4611 spin_lock_irq(shost
->host_lock
);
4614 spin_unlock_irq(shost
->host_lock
);
4616 lpfc_destroy_vport_work_array(phba
, vports
);
4620 lpfc_unreg_all_rpis(struct lpfc_vport
*vport
)
4622 struct lpfc_hba
*phba
= vport
->phba
;
4626 if (phba
->sli_rev
== LPFC_SLI_REV4
) {
4627 lpfc_sli4_unreg_all_rpis(vport
);
4631 mbox
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
4633 lpfc_unreg_login(phba
, vport
->vpi
, LPFC_UNREG_ALL_RPIS_VPORT
,
4635 mbox
->vport
= vport
;
4636 mbox
->mbox_cmpl
= lpfc_sli_def_mbox_cmpl
;
4637 mbox
->context1
= NULL
;
4638 rc
= lpfc_sli_issue_mbox_wait(phba
, mbox
, LPFC_MBOX_TMO
);
4639 if (rc
!= MBX_TIMEOUT
)
4640 mempool_free(mbox
, phba
->mbox_mem_pool
);
4642 if ((rc
== MBX_TIMEOUT
) || (rc
== MBX_NOT_FINISHED
))
4643 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_MBOX
| LOG_VPORT
,
4644 "1836 Could not issue "
4645 "unreg_login(all_rpis) status %d\n", rc
);
4650 lpfc_unreg_default_rpis(struct lpfc_vport
*vport
)
4652 struct lpfc_hba
*phba
= vport
->phba
;
4656 mbox
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
4658 lpfc_unreg_did(phba
, vport
->vpi
, LPFC_UNREG_ALL_DFLT_RPIS
,
4660 mbox
->vport
= vport
;
4661 mbox
->mbox_cmpl
= lpfc_sli_def_mbox_cmpl
;
4662 mbox
->context1
= NULL
;
4663 rc
= lpfc_sli_issue_mbox_wait(phba
, mbox
, LPFC_MBOX_TMO
);
4664 if (rc
!= MBX_TIMEOUT
)
4665 mempool_free(mbox
, phba
->mbox_mem_pool
);
4667 if ((rc
== MBX_TIMEOUT
) || (rc
== MBX_NOT_FINISHED
))
4668 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_MBOX
| LOG_VPORT
,
4669 "1815 Could not issue "
4670 "unreg_did (default rpis) status %d\n",
4676 * Free resources associated with LPFC_NODELIST entry
4677 * so it can be freed.
4680 lpfc_cleanup_node(struct lpfc_vport
*vport
, struct lpfc_nodelist
*ndlp
)
4682 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
4683 struct lpfc_hba
*phba
= vport
->phba
;
4684 LPFC_MBOXQ_t
*mb
, *nextmb
;
4685 struct lpfc_dmabuf
*mp
;
4687 /* Cleanup node for NPort <nlp_DID> */
4688 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_NODE
,
4689 "0900 Cleanup node for NPort x%x "
4690 "Data: x%x x%x x%x\n",
4691 ndlp
->nlp_DID
, ndlp
->nlp_flag
,
4692 ndlp
->nlp_state
, ndlp
->nlp_rpi
);
4693 if (NLP_CHK_FREE_REQ(ndlp
)) {
4694 lpfc_printf_vlog(vport
, KERN_WARNING
, LOG_NODE
,
4695 "0280 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_dequeue_node(vport
, ndlp
);
4701 lpfc_printf_vlog(vport
, KERN_WARNING
, LOG_NODE
,
4702 "0281 lpfc_cleanup_node: ndlp:x%p "
4703 "usgmap:x%x refcnt:%d\n",
4704 (void *)ndlp
, ndlp
->nlp_usg_map
,
4705 atomic_read(&ndlp
->kref
.refcount
));
4706 lpfc_disable_node(vport
, ndlp
);
4710 /* Don't need to clean up REG_LOGIN64 cmds for Default RPI cleanup */
4712 /* cleanup any ndlp on mbox q waiting for reglogin cmpl */
4713 if ((mb
= phba
->sli
.mbox_active
)) {
4714 if ((mb
->u
.mb
.mbxCommand
== MBX_REG_LOGIN64
) &&
4715 !(mb
->mbox_flag
& LPFC_MBX_IMED_UNREG
) &&
4716 (ndlp
== (struct lpfc_nodelist
*) mb
->context2
)) {
4717 mb
->context2
= NULL
;
4718 mb
->mbox_cmpl
= lpfc_sli_def_mbox_cmpl
;
4722 spin_lock_irq(&phba
->hbalock
);
4723 /* Cleanup REG_LOGIN completions which are not yet processed */
4724 list_for_each_entry(mb
, &phba
->sli
.mboxq_cmpl
, list
) {
4725 if ((mb
->u
.mb
.mbxCommand
!= MBX_REG_LOGIN64
) ||
4726 (mb
->mbox_flag
& LPFC_MBX_IMED_UNREG
) ||
4727 (ndlp
!= (struct lpfc_nodelist
*) mb
->context2
))
4730 mb
->context2
= NULL
;
4731 mb
->mbox_cmpl
= lpfc_sli_def_mbox_cmpl
;
4734 list_for_each_entry_safe(mb
, nextmb
, &phba
->sli
.mboxq
, list
) {
4735 if ((mb
->u
.mb
.mbxCommand
== MBX_REG_LOGIN64
) &&
4736 !(mb
->mbox_flag
& LPFC_MBX_IMED_UNREG
) &&
4737 (ndlp
== (struct lpfc_nodelist
*) mb
->context2
)) {
4738 mp
= (struct lpfc_dmabuf
*) (mb
->context1
);
4740 __lpfc_mbuf_free(phba
, mp
->virt
, mp
->phys
);
4743 list_del(&mb
->list
);
4744 mempool_free(mb
, phba
->mbox_mem_pool
);
4745 /* We shall not invoke the lpfc_nlp_put to decrement
4746 * the ndlp reference count as we are in the process
4747 * of lpfc_nlp_release.
4751 spin_unlock_irq(&phba
->hbalock
);
4753 lpfc_els_abort(phba
, ndlp
);
4755 spin_lock_irq(shost
->host_lock
);
4756 ndlp
->nlp_flag
&= ~NLP_DELAY_TMO
;
4757 spin_unlock_irq(shost
->host_lock
);
4759 ndlp
->nlp_last_elscmd
= 0;
4760 del_timer_sync(&ndlp
->nlp_delayfunc
);
4762 list_del_init(&ndlp
->els_retry_evt
.evt_listp
);
4763 list_del_init(&ndlp
->dev_loss_evt
.evt_listp
);
4764 lpfc_cleanup_vports_rrqs(vport
, ndlp
);
4765 lpfc_unreg_rpi(vport
, ndlp
);
4771 * Check to see if we can free the nlp back to the freelist.
4772 * If we are in the middle of using the nlp in the discovery state
4773 * machine, defer the free till we reach the end of the state machine.
4776 lpfc_nlp_remove(struct lpfc_vport
*vport
, struct lpfc_nodelist
*ndlp
)
4778 struct lpfc_hba
*phba
= vport
->phba
;
4779 struct lpfc_rport_data
*rdata
;
4780 struct fc_rport
*rport
;
4784 lpfc_cancel_retry_delay_tmo(vport
, ndlp
);
4785 if ((ndlp
->nlp_flag
& NLP_DEFER_RM
) &&
4786 !(ndlp
->nlp_flag
& NLP_REG_LOGIN_SEND
) &&
4787 !(ndlp
->nlp_flag
& NLP_RPI_REGISTERED
)) {
4788 /* For this case we need to cleanup the default rpi
4789 * allocated by the firmware.
4791 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_NODE
,
4792 "0005 rpi:%x DID:%x flg:%x %d map:%x %p\n",
4793 ndlp
->nlp_rpi
, ndlp
->nlp_DID
, ndlp
->nlp_flag
,
4794 atomic_read(&ndlp
->kref
.refcount
),
4795 ndlp
->nlp_usg_map
, ndlp
);
4796 if ((mbox
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
))
4798 rc
= lpfc_reg_rpi(phba
, vport
->vpi
, ndlp
->nlp_DID
,
4799 (uint8_t *) &vport
->fc_sparam
, mbox
, ndlp
->nlp_rpi
);
4801 mempool_free(mbox
, phba
->mbox_mem_pool
);
4804 mbox
->mbox_flag
|= LPFC_MBX_IMED_UNREG
;
4805 mbox
->mbox_cmpl
= lpfc_mbx_cmpl_dflt_rpi
;
4806 mbox
->vport
= vport
;
4807 mbox
->context2
= ndlp
;
4808 rc
=lpfc_sli_issue_mbox(phba
, mbox
, MBX_NOWAIT
);
4809 if (rc
== MBX_NOT_FINISHED
) {
4810 mempool_free(mbox
, phba
->mbox_mem_pool
);
4815 lpfc_cleanup_node(vport
, ndlp
);
4818 * ndlp->rport must be set to NULL before it reaches here
4819 * i.e. break rport/node link before doing lpfc_nlp_put for
4820 * registered rport and then drop the reference of rport.
4824 * extra lpfc_nlp_put dropped the reference of ndlp
4825 * for registered rport so need to cleanup rport
4827 lpfc_printf_vlog(vport
, KERN_WARNING
, LOG_NODE
,
4828 "0940 removed node x%p DID x%x "
4829 " rport not null %p\n",
4830 ndlp
, ndlp
->nlp_DID
, ndlp
->rport
);
4831 rport
= ndlp
->rport
;
4832 rdata
= rport
->dd_data
;
4833 rdata
->pnode
= NULL
;
4835 put_device(&rport
->dev
);
4840 lpfc_matchdid(struct lpfc_vport
*vport
, struct lpfc_nodelist
*ndlp
,
4843 D_ID mydid
, ndlpdid
, matchdid
;
4845 if (did
== Bcast_DID
)
4848 /* First check for Direct match */
4849 if (ndlp
->nlp_DID
== did
)
4852 /* Next check for area/domain identically equals 0 match */
4853 mydid
.un
.word
= vport
->fc_myDID
;
4854 if ((mydid
.un
.b
.domain
== 0) && (mydid
.un
.b
.area
== 0)) {
4858 matchdid
.un
.word
= did
;
4859 ndlpdid
.un
.word
= ndlp
->nlp_DID
;
4860 if (matchdid
.un
.b
.id
== ndlpdid
.un
.b
.id
) {
4861 if ((mydid
.un
.b
.domain
== matchdid
.un
.b
.domain
) &&
4862 (mydid
.un
.b
.area
== matchdid
.un
.b
.area
)) {
4863 /* This code is supposed to match the ID
4864 * for a private loop device that is
4865 * connect to fl_port. But we need to
4866 * check that the port did not just go
4867 * from pt2pt to fabric or we could end
4868 * up matching ndlp->nlp_DID 000001 to
4869 * fabric DID 0x20101
4871 if ((ndlpdid
.un
.b
.domain
== 0) &&
4872 (ndlpdid
.un
.b
.area
== 0)) {
4873 if (ndlpdid
.un
.b
.id
&&
4874 vport
->phba
->fc_topology
==
4881 matchdid
.un
.word
= ndlp
->nlp_DID
;
4882 if ((mydid
.un
.b
.domain
== ndlpdid
.un
.b
.domain
) &&
4883 (mydid
.un
.b
.area
== ndlpdid
.un
.b
.area
)) {
4884 if ((matchdid
.un
.b
.domain
== 0) &&
4885 (matchdid
.un
.b
.area
== 0)) {
4886 if (matchdid
.un
.b
.id
)
4894 /* Search for a nodelist entry */
4895 static struct lpfc_nodelist
*
4896 __lpfc_findnode_did(struct lpfc_vport
*vport
, uint32_t did
)
4898 struct lpfc_nodelist
*ndlp
;
4901 list_for_each_entry(ndlp
, &vport
->fc_nodes
, nlp_listp
) {
4902 if (lpfc_matchdid(vport
, ndlp
, did
)) {
4903 data1
= (((uint32_t) ndlp
->nlp_state
<< 24) |
4904 ((uint32_t) ndlp
->nlp_xri
<< 16) |
4905 ((uint32_t) ndlp
->nlp_type
<< 8) |
4906 ((uint32_t) ndlp
->nlp_rpi
& 0xff));
4907 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_NODE
,
4908 "0929 FIND node DID "
4909 "Data: x%p x%x x%x x%x %p\n",
4910 ndlp
, ndlp
->nlp_DID
,
4911 ndlp
->nlp_flag
, data1
,
4912 ndlp
->active_rrqs_xri_bitmap
);
4917 /* FIND node did <did> NOT FOUND */
4918 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_NODE
,
4919 "0932 FIND node did x%x NOT FOUND.\n", did
);
4923 struct lpfc_nodelist
*
4924 lpfc_findnode_did(struct lpfc_vport
*vport
, uint32_t did
)
4926 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
4927 struct lpfc_nodelist
*ndlp
;
4928 unsigned long iflags
;
4930 spin_lock_irqsave(shost
->host_lock
, iflags
);
4931 ndlp
= __lpfc_findnode_did(vport
, did
);
4932 spin_unlock_irqrestore(shost
->host_lock
, iflags
);
4936 struct lpfc_nodelist
*
4937 lpfc_setup_disc_node(struct lpfc_vport
*vport
, uint32_t did
)
4939 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
4940 struct lpfc_nodelist
*ndlp
;
4942 ndlp
= lpfc_findnode_did(vport
, did
);
4944 if ((vport
->fc_flag
& FC_RSCN_MODE
) != 0 &&
4945 lpfc_rscn_payload_check(vport
, did
) == 0)
4947 ndlp
= (struct lpfc_nodelist
*)
4948 mempool_alloc(vport
->phba
->nlp_mem_pool
, GFP_KERNEL
);
4951 lpfc_nlp_init(vport
, ndlp
, did
);
4952 lpfc_nlp_set_state(vport
, ndlp
, NLP_STE_NPR_NODE
);
4953 spin_lock_irq(shost
->host_lock
);
4954 ndlp
->nlp_flag
|= NLP_NPR_2B_DISC
;
4955 spin_unlock_irq(shost
->host_lock
);
4957 } else if (!NLP_CHK_NODE_ACT(ndlp
)) {
4958 ndlp
= lpfc_enable_node(vport
, ndlp
, NLP_STE_NPR_NODE
);
4961 spin_lock_irq(shost
->host_lock
);
4962 ndlp
->nlp_flag
|= NLP_NPR_2B_DISC
;
4963 spin_unlock_irq(shost
->host_lock
);
4967 if ((vport
->fc_flag
& FC_RSCN_MODE
) &&
4968 !(vport
->fc_flag
& FC_NDISC_ACTIVE
)) {
4969 if (lpfc_rscn_payload_check(vport
, did
)) {
4970 /* If we've already received a PLOGI from this NPort
4971 * we don't need to try to discover it again.
4973 if (ndlp
->nlp_flag
& NLP_RCV_PLOGI
)
4976 /* Since this node is marked for discovery,
4977 * delay timeout is not needed.
4979 lpfc_cancel_retry_delay_tmo(vport
, ndlp
);
4980 spin_lock_irq(shost
->host_lock
);
4981 ndlp
->nlp_flag
|= NLP_NPR_2B_DISC
;
4982 spin_unlock_irq(shost
->host_lock
);
4986 /* If we've already received a PLOGI from this NPort,
4987 * or we are already in the process of discovery on it,
4988 * we don't need to try to discover it again.
4990 if (ndlp
->nlp_state
== NLP_STE_ADISC_ISSUE
||
4991 ndlp
->nlp_state
== NLP_STE_PLOGI_ISSUE
||
4992 ndlp
->nlp_flag
& NLP_RCV_PLOGI
)
4994 lpfc_nlp_set_state(vport
, ndlp
, NLP_STE_NPR_NODE
);
4995 spin_lock_irq(shost
->host_lock
);
4996 ndlp
->nlp_flag
|= NLP_NPR_2B_DISC
;
4997 spin_unlock_irq(shost
->host_lock
);
5002 /* Build a list of nodes to discover based on the loopmap */
5004 lpfc_disc_list_loopmap(struct lpfc_vport
*vport
)
5006 struct lpfc_hba
*phba
= vport
->phba
;
5008 uint32_t alpa
, index
;
5010 if (!lpfc_is_link_up(phba
))
5013 if (phba
->fc_topology
!= LPFC_TOPOLOGY_LOOP
)
5016 /* Check for loop map present or not */
5017 if (phba
->alpa_map
[0]) {
5018 for (j
= 1; j
<= phba
->alpa_map
[0]; j
++) {
5019 alpa
= phba
->alpa_map
[j
];
5020 if (((vport
->fc_myDID
& 0xff) == alpa
) || (alpa
== 0))
5022 lpfc_setup_disc_node(vport
, alpa
);
5025 /* No alpamap, so try all alpa's */
5026 for (j
= 0; j
< FC_MAXLOOP
; j
++) {
5027 /* If cfg_scan_down is set, start from highest
5028 * ALPA (0xef) to lowest (0x1).
5030 if (vport
->cfg_scan_down
)
5033 index
= FC_MAXLOOP
- j
- 1;
5034 alpa
= lpfcAlpaArray
[index
];
5035 if ((vport
->fc_myDID
& 0xff) == alpa
)
5037 lpfc_setup_disc_node(vport
, alpa
);
5044 lpfc_issue_clear_la(struct lpfc_hba
*phba
, struct lpfc_vport
*vport
)
5047 struct lpfc_sli
*psli
= &phba
->sli
;
5048 struct lpfc_sli_ring
*extra_ring
= &psli
->ring
[psli
->extra_ring
];
5049 struct lpfc_sli_ring
*fcp_ring
= &psli
->ring
[psli
->fcp_ring
];
5050 struct lpfc_sli_ring
*next_ring
= &psli
->ring
[psli
->next_ring
];
5054 * if it's not a physical port or if we already send
5055 * clear_la then don't send it.
5057 if ((phba
->link_state
>= LPFC_CLEAR_LA
) ||
5058 (vport
->port_type
!= LPFC_PHYSICAL_PORT
) ||
5059 (phba
->sli_rev
== LPFC_SLI_REV4
))
5062 /* Link up discovery */
5063 if ((mbox
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
)) != NULL
) {
5064 phba
->link_state
= LPFC_CLEAR_LA
;
5065 lpfc_clear_la(phba
, mbox
);
5066 mbox
->mbox_cmpl
= lpfc_mbx_cmpl_clear_la
;
5067 mbox
->vport
= vport
;
5068 rc
= lpfc_sli_issue_mbox(phba
, mbox
, MBX_NOWAIT
);
5069 if (rc
== MBX_NOT_FINISHED
) {
5070 mempool_free(mbox
, phba
->mbox_mem_pool
);
5071 lpfc_disc_flush_list(vport
);
5072 extra_ring
->flag
&= ~LPFC_STOP_IOCB_EVENT
;
5073 fcp_ring
->flag
&= ~LPFC_STOP_IOCB_EVENT
;
5074 next_ring
->flag
&= ~LPFC_STOP_IOCB_EVENT
;
5075 phba
->link_state
= LPFC_HBA_ERROR
;
5080 /* Reg_vpi to tell firmware to resume normal operations */
5082 lpfc_issue_reg_vpi(struct lpfc_hba
*phba
, struct lpfc_vport
*vport
)
5084 LPFC_MBOXQ_t
*regvpimbox
;
5086 regvpimbox
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
5088 lpfc_reg_vpi(vport
, regvpimbox
);
5089 regvpimbox
->mbox_cmpl
= lpfc_mbx_cmpl_reg_vpi
;
5090 regvpimbox
->vport
= vport
;
5091 if (lpfc_sli_issue_mbox(phba
, regvpimbox
, MBX_NOWAIT
)
5092 == MBX_NOT_FINISHED
) {
5093 mempool_free(regvpimbox
, phba
->mbox_mem_pool
);
5098 /* Start Link up / RSCN discovery on NPR nodes */
5100 lpfc_disc_start(struct lpfc_vport
*vport
)
5102 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
5103 struct lpfc_hba
*phba
= vport
->phba
;
5105 uint32_t clear_la_pending
;
5107 if (!lpfc_is_link_up(phba
)) {
5108 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_SLI
,
5109 "3315 Link is not up %x\n",
5114 if (phba
->link_state
== LPFC_CLEAR_LA
)
5115 clear_la_pending
= 1;
5117 clear_la_pending
= 0;
5119 if (vport
->port_state
< LPFC_VPORT_READY
)
5120 vport
->port_state
= LPFC_DISC_AUTH
;
5122 lpfc_set_disctmo(vport
);
5124 vport
->fc_prevDID
= vport
->fc_myDID
;
5125 vport
->num_disc_nodes
= 0;
5127 /* Start Discovery state <hba_state> */
5128 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_DISCOVERY
,
5129 "0202 Start Discovery hba state x%x "
5130 "Data: x%x x%x x%x\n",
5131 vport
->port_state
, vport
->fc_flag
, vport
->fc_plogi_cnt
,
5132 vport
->fc_adisc_cnt
);
5134 /* First do ADISCs - if any */
5135 num_sent
= lpfc_els_disc_adisc(vport
);
5140 /* Register the VPI for SLI3, NPIV only. */
5141 if ((phba
->sli3_options
& LPFC_SLI3_NPIV_ENABLED
) &&
5142 !(vport
->fc_flag
& FC_PT2PT
) &&
5143 !(vport
->fc_flag
& FC_RSCN_MODE
) &&
5144 (phba
->sli_rev
< LPFC_SLI_REV4
)) {
5145 lpfc_issue_clear_la(phba
, vport
);
5146 lpfc_issue_reg_vpi(phba
, vport
);
5151 * For SLI2, we need to set port_state to READY and continue
5154 if (vport
->port_state
< LPFC_VPORT_READY
&& !clear_la_pending
) {
5155 /* If we get here, there is nothing to ADISC */
5156 lpfc_issue_clear_la(phba
, vport
);
5158 if (!(vport
->fc_flag
& FC_ABORT_DISCOVERY
)) {
5159 vport
->num_disc_nodes
= 0;
5160 /* go thru NPR nodes and issue ELS PLOGIs */
5161 if (vport
->fc_npr_cnt
)
5162 lpfc_els_disc_plogi(vport
);
5164 if (!vport
->num_disc_nodes
) {
5165 spin_lock_irq(shost
->host_lock
);
5166 vport
->fc_flag
&= ~FC_NDISC_ACTIVE
;
5167 spin_unlock_irq(shost
->host_lock
);
5168 lpfc_can_disctmo(vport
);
5171 vport
->port_state
= LPFC_VPORT_READY
;
5173 /* Next do PLOGIs - if any */
5174 num_sent
= lpfc_els_disc_plogi(vport
);
5179 if (vport
->fc_flag
& FC_RSCN_MODE
) {
5180 /* Check to see if more RSCNs came in while we
5181 * were processing this one.
5183 if ((vport
->fc_rscn_id_cnt
== 0) &&
5184 (!(vport
->fc_flag
& FC_RSCN_DISCOVERY
))) {
5185 spin_lock_irq(shost
->host_lock
);
5186 vport
->fc_flag
&= ~FC_RSCN_MODE
;
5187 spin_unlock_irq(shost
->host_lock
);
5188 lpfc_can_disctmo(vport
);
5190 lpfc_els_handle_rscn(vport
);
5197 * Ignore completion for all IOCBs on tx and txcmpl queue for ELS
5198 * ring the match the sppecified nodelist.
5201 lpfc_free_tx(struct lpfc_hba
*phba
, struct lpfc_nodelist
*ndlp
)
5203 LIST_HEAD(completions
);
5204 struct lpfc_sli
*psli
;
5206 struct lpfc_iocbq
*iocb
, *next_iocb
;
5207 struct lpfc_sli_ring
*pring
;
5210 pring
= &psli
->ring
[LPFC_ELS_RING
];
5212 /* Error matching iocb on txq or txcmplq
5213 * First check the txq.
5215 spin_lock_irq(&phba
->hbalock
);
5216 list_for_each_entry_safe(iocb
, next_iocb
, &pring
->txq
, list
) {
5217 if (iocb
->context1
!= ndlp
) {
5221 if ((icmd
->ulpCommand
== CMD_ELS_REQUEST64_CR
) ||
5222 (icmd
->ulpCommand
== CMD_XMIT_ELS_RSP64_CX
)) {
5224 list_move_tail(&iocb
->list
, &completions
);
5228 /* Next check the txcmplq */
5229 list_for_each_entry_safe(iocb
, next_iocb
, &pring
->txcmplq
, list
) {
5230 if (iocb
->context1
!= ndlp
) {
5234 if (icmd
->ulpCommand
== CMD_ELS_REQUEST64_CR
||
5235 icmd
->ulpCommand
== CMD_XMIT_ELS_RSP64_CX
) {
5236 lpfc_sli_issue_abort_iotag(phba
, pring
, iocb
);
5239 spin_unlock_irq(&phba
->hbalock
);
5241 /* Cancel all the IOCBs from the completions list */
5242 lpfc_sli_cancel_iocbs(phba
, &completions
, IOSTAT_LOCAL_REJECT
,
5247 lpfc_disc_flush_list(struct lpfc_vport
*vport
)
5249 struct lpfc_nodelist
*ndlp
, *next_ndlp
;
5250 struct lpfc_hba
*phba
= vport
->phba
;
5252 if (vport
->fc_plogi_cnt
|| vport
->fc_adisc_cnt
) {
5253 list_for_each_entry_safe(ndlp
, next_ndlp
, &vport
->fc_nodes
,
5255 if (!NLP_CHK_NODE_ACT(ndlp
))
5257 if (ndlp
->nlp_state
== NLP_STE_PLOGI_ISSUE
||
5258 ndlp
->nlp_state
== NLP_STE_ADISC_ISSUE
) {
5259 lpfc_free_tx(phba
, ndlp
);
5266 lpfc_cleanup_discovery_resources(struct lpfc_vport
*vport
)
5268 lpfc_els_flush_rscn(vport
);
5269 lpfc_els_flush_cmd(vport
);
5270 lpfc_disc_flush_list(vport
);
5273 /*****************************************************************************/
5275 * NAME: lpfc_disc_timeout
5277 * FUNCTION: Fibre Channel driver discovery timeout routine.
5279 * EXECUTION ENVIRONMENT: interrupt only
5287 /*****************************************************************************/
5289 lpfc_disc_timeout(unsigned long ptr
)
5291 struct lpfc_vport
*vport
= (struct lpfc_vport
*) ptr
;
5292 struct lpfc_hba
*phba
= vport
->phba
;
5293 uint32_t tmo_posted
;
5294 unsigned long flags
= 0;
5296 if (unlikely(!phba
))
5299 spin_lock_irqsave(&vport
->work_port_lock
, flags
);
5300 tmo_posted
= vport
->work_port_events
& WORKER_DISC_TMO
;
5302 vport
->work_port_events
|= WORKER_DISC_TMO
;
5303 spin_unlock_irqrestore(&vport
->work_port_lock
, flags
);
5306 lpfc_worker_wake_up(phba
);
5311 lpfc_disc_timeout_handler(struct lpfc_vport
*vport
)
5313 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
5314 struct lpfc_hba
*phba
= vport
->phba
;
5315 struct lpfc_sli
*psli
= &phba
->sli
;
5316 struct lpfc_nodelist
*ndlp
, *next_ndlp
;
5317 LPFC_MBOXQ_t
*initlinkmbox
;
5318 int rc
, clrlaerr
= 0;
5320 if (!(vport
->fc_flag
& FC_DISC_TMO
))
5323 spin_lock_irq(shost
->host_lock
);
5324 vport
->fc_flag
&= ~FC_DISC_TMO
;
5325 spin_unlock_irq(shost
->host_lock
);
5327 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_CMD
,
5328 "disc timeout: state:x%x rtry:x%x flg:x%x",
5329 vport
->port_state
, vport
->fc_ns_retry
, vport
->fc_flag
);
5331 switch (vport
->port_state
) {
5333 case LPFC_LOCAL_CFG_LINK
:
5334 /* port_state is identically LPFC_LOCAL_CFG_LINK while waiting for
5338 lpfc_printf_vlog(vport
, KERN_WARNING
, LOG_DISCOVERY
,
5339 "0221 FAN timeout\n");
5340 /* Start discovery by sending FLOGI, clean up old rpis */
5341 list_for_each_entry_safe(ndlp
, next_ndlp
, &vport
->fc_nodes
,
5343 if (!NLP_CHK_NODE_ACT(ndlp
))
5345 if (ndlp
->nlp_state
!= NLP_STE_NPR_NODE
)
5347 if (ndlp
->nlp_type
& NLP_FABRIC
) {
5348 /* Clean up the ndlp on Fabric connections */
5349 lpfc_drop_node(vport
, ndlp
);
5351 } else if (!(ndlp
->nlp_flag
& NLP_NPR_ADISC
)) {
5352 /* Fail outstanding IO now since device
5353 * is marked for PLOGI.
5355 lpfc_unreg_rpi(vport
, ndlp
);
5358 if (vport
->port_state
!= LPFC_FLOGI
) {
5359 if (phba
->sli_rev
<= LPFC_SLI_REV3
)
5360 lpfc_initial_flogi(vport
);
5362 lpfc_issue_init_vfi(vport
);
5369 /* port_state is identically LPFC_FLOGI while waiting for FLOGI cmpl */
5370 /* Initial FLOGI timeout */
5371 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_DISCOVERY
,
5372 "0222 Initial %s timeout\n",
5373 vport
->vpi
? "FDISC" : "FLOGI");
5375 /* Assume no Fabric and go on with discovery.
5376 * Check for outstanding ELS FLOGI to abort.
5379 /* FLOGI failed, so just use loop map to make discovery list */
5380 lpfc_disc_list_loopmap(vport
);
5382 /* Start discovery */
5383 lpfc_disc_start(vport
);
5386 case LPFC_FABRIC_CFG_LINK
:
5387 /* hba_state is identically LPFC_FABRIC_CFG_LINK while waiting for
5389 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_DISCOVERY
,
5390 "0223 Timeout while waiting for "
5391 "NameServer login\n");
5392 /* Next look for NameServer ndlp */
5393 ndlp
= lpfc_findnode_did(vport
, NameServer_DID
);
5394 if (ndlp
&& NLP_CHK_NODE_ACT(ndlp
))
5395 lpfc_els_abort(phba
, ndlp
);
5397 /* ReStart discovery */
5401 /* Check for wait for NameServer Rsp timeout */
5402 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_DISCOVERY
,
5403 "0224 NameServer Query timeout "
5405 vport
->fc_ns_retry
, LPFC_MAX_NS_RETRY
);
5407 if (vport
->fc_ns_retry
< LPFC_MAX_NS_RETRY
) {
5408 /* Try it one more time */
5409 vport
->fc_ns_retry
++;
5410 rc
= lpfc_ns_cmd(vport
, SLI_CTNS_GID_FT
,
5411 vport
->fc_ns_retry
, 0);
5415 vport
->fc_ns_retry
= 0;
5419 * Discovery is over.
5420 * set port_state to PORT_READY if SLI2.
5421 * cmpl_reg_vpi will set port_state to READY for SLI3.
5423 if (phba
->sli_rev
< LPFC_SLI_REV4
) {
5424 if (phba
->sli3_options
& LPFC_SLI3_NPIV_ENABLED
)
5425 lpfc_issue_reg_vpi(phba
, vport
);
5427 lpfc_issue_clear_la(phba
, vport
);
5428 vport
->port_state
= LPFC_VPORT_READY
;
5432 /* Setup and issue mailbox INITIALIZE LINK command */
5433 initlinkmbox
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
5434 if (!initlinkmbox
) {
5435 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_DISCOVERY
,
5436 "0206 Device Discovery "
5437 "completion error\n");
5438 phba
->link_state
= LPFC_HBA_ERROR
;
5442 lpfc_linkdown(phba
);
5443 lpfc_init_link(phba
, initlinkmbox
, phba
->cfg_topology
,
5444 phba
->cfg_link_speed
);
5445 initlinkmbox
->u
.mb
.un
.varInitLnk
.lipsr_AL_PA
= 0;
5446 initlinkmbox
->vport
= vport
;
5447 initlinkmbox
->mbox_cmpl
= lpfc_sli_def_mbox_cmpl
;
5448 rc
= lpfc_sli_issue_mbox(phba
, initlinkmbox
, MBX_NOWAIT
);
5449 lpfc_set_loopback_flag(phba
);
5450 if (rc
== MBX_NOT_FINISHED
)
5451 mempool_free(initlinkmbox
, phba
->mbox_mem_pool
);
5455 case LPFC_DISC_AUTH
:
5456 /* Node Authentication timeout */
5457 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_DISCOVERY
,
5458 "0227 Node Authentication timeout\n");
5459 lpfc_disc_flush_list(vport
);
5462 * set port_state to PORT_READY if SLI2.
5463 * cmpl_reg_vpi will set port_state to READY for SLI3.
5465 if (phba
->sli_rev
< LPFC_SLI_REV4
) {
5466 if (phba
->sli3_options
& LPFC_SLI3_NPIV_ENABLED
)
5467 lpfc_issue_reg_vpi(phba
, vport
);
5468 else { /* NPIV Not enabled */
5469 lpfc_issue_clear_la(phba
, vport
);
5470 vport
->port_state
= LPFC_VPORT_READY
;
5475 case LPFC_VPORT_READY
:
5476 if (vport
->fc_flag
& FC_RSCN_MODE
) {
5477 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_DISCOVERY
,
5478 "0231 RSCN timeout Data: x%x "
5480 vport
->fc_ns_retry
, LPFC_MAX_NS_RETRY
);
5482 /* Cleanup any outstanding ELS commands */
5483 lpfc_els_flush_cmd(vport
);
5485 lpfc_els_flush_rscn(vport
);
5486 lpfc_disc_flush_list(vport
);
5491 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_DISCOVERY
,
5492 "0273 Unexpected discovery timeout, "
5493 "vport State x%x\n", vport
->port_state
);
5497 switch (phba
->link_state
) {
5499 /* CLEAR LA timeout */
5500 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_DISCOVERY
,
5501 "0228 CLEAR LA timeout\n");
5506 lpfc_issue_clear_la(phba
, vport
);
5508 case LPFC_LINK_UNKNOWN
:
5509 case LPFC_WARM_START
:
5510 case LPFC_INIT_START
:
5511 case LPFC_INIT_MBX_CMDS
:
5512 case LPFC_LINK_DOWN
:
5513 case LPFC_HBA_ERROR
:
5514 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_DISCOVERY
,
5515 "0230 Unexpected timeout, hba link "
5516 "state x%x\n", phba
->link_state
);
5520 case LPFC_HBA_READY
:
5525 lpfc_disc_flush_list(vport
);
5526 psli
->ring
[(psli
->extra_ring
)].flag
&= ~LPFC_STOP_IOCB_EVENT
;
5527 psli
->ring
[(psli
->fcp_ring
)].flag
&= ~LPFC_STOP_IOCB_EVENT
;
5528 psli
->ring
[(psli
->next_ring
)].flag
&= ~LPFC_STOP_IOCB_EVENT
;
5529 vport
->port_state
= LPFC_VPORT_READY
;
5536 * This routine handles processing a NameServer REG_LOGIN mailbox
5537 * command upon completion. It is setup in the LPFC_MBOXQ
5538 * as the completion routine when the command is
5539 * handed off to the SLI layer.
5542 lpfc_mbx_cmpl_fdmi_reg_login(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*pmb
)
5544 MAILBOX_t
*mb
= &pmb
->u
.mb
;
5545 struct lpfc_dmabuf
*mp
= (struct lpfc_dmabuf
*) (pmb
->context1
);
5546 struct lpfc_nodelist
*ndlp
= (struct lpfc_nodelist
*) pmb
->context2
;
5547 struct lpfc_vport
*vport
= pmb
->vport
;
5549 pmb
->context1
= NULL
;
5550 pmb
->context2
= NULL
;
5552 if (phba
->sli_rev
< LPFC_SLI_REV4
)
5553 ndlp
->nlp_rpi
= mb
->un
.varWords
[0];
5554 ndlp
->nlp_flag
|= NLP_RPI_REGISTERED
;
5555 ndlp
->nlp_type
|= NLP_FABRIC
;
5556 lpfc_nlp_set_state(vport
, ndlp
, NLP_STE_UNMAPPED_NODE
);
5557 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_SLI
,
5558 "0004 rpi:%x DID:%x flg:%x %d map:%x %p\n",
5559 ndlp
->nlp_rpi
, ndlp
->nlp_DID
, ndlp
->nlp_flag
,
5560 atomic_read(&ndlp
->kref
.refcount
),
5561 ndlp
->nlp_usg_map
, ndlp
);
5563 * Start issuing Fabric-Device Management Interface (FDMI) command to
5564 * 0xfffffa (FDMI well known port).
5565 * DHBA -> DPRT -> RHBA -> RPA (physical port)
5566 * DPRT -> RPRT (vports)
5568 if (vport
->port_type
== LPFC_PHYSICAL_PORT
)
5569 lpfc_fdmi_cmd(vport
, ndlp
, SLI_MGMT_DHBA
, 0);
5571 lpfc_fdmi_cmd(vport
, ndlp
, SLI_MGMT_DPRT
, 0);
5574 /* decrement the node reference count held for this callback
5578 lpfc_mbuf_free(phba
, mp
->virt
, mp
->phys
);
5580 mempool_free(pmb
, phba
->mbox_mem_pool
);
5586 lpfc_filter_by_rpi(struct lpfc_nodelist
*ndlp
, void *param
)
5588 uint16_t *rpi
= param
;
5590 /* check for active node */
5591 if (!NLP_CHK_NODE_ACT(ndlp
))
5594 return ndlp
->nlp_rpi
== *rpi
;
5598 lpfc_filter_by_wwpn(struct lpfc_nodelist
*ndlp
, void *param
)
5600 return memcmp(&ndlp
->nlp_portname
, param
,
5601 sizeof(ndlp
->nlp_portname
)) == 0;
5604 static struct lpfc_nodelist
*
5605 __lpfc_find_node(struct lpfc_vport
*vport
, node_filter filter
, void *param
)
5607 struct lpfc_nodelist
*ndlp
;
5609 list_for_each_entry(ndlp
, &vport
->fc_nodes
, nlp_listp
) {
5610 if (filter(ndlp
, param
)) {
5611 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_NODE
,
5612 "3185 FIND node filter %p DID "
5613 "Data: x%p x%x x%x\n",
5614 filter
, ndlp
, ndlp
->nlp_DID
,
5619 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_NODE
,
5620 "3186 FIND node filter %p NOT FOUND.\n", filter
);
5625 * This routine looks up the ndlp lists for the given RPI. If rpi found it
5626 * returns the node list element pointer else return NULL.
5628 struct lpfc_nodelist
*
5629 __lpfc_findnode_rpi(struct lpfc_vport
*vport
, uint16_t rpi
)
5631 return __lpfc_find_node(vport
, lpfc_filter_by_rpi
, &rpi
);
5635 * This routine looks up the ndlp lists for the given WWPN. If WWPN found it
5636 * returns the node element list pointer else return NULL.
5638 struct lpfc_nodelist
*
5639 lpfc_findnode_wwpn(struct lpfc_vport
*vport
, struct lpfc_name
*wwpn
)
5641 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
5642 struct lpfc_nodelist
*ndlp
;
5644 spin_lock_irq(shost
->host_lock
);
5645 ndlp
= __lpfc_find_node(vport
, lpfc_filter_by_wwpn
, wwpn
);
5646 spin_unlock_irq(shost
->host_lock
);
5651 * This routine looks up the ndlp lists for the given RPI. If the rpi
5652 * is found, the routine returns the node element list pointer else
5655 struct lpfc_nodelist
*
5656 lpfc_findnode_rpi(struct lpfc_vport
*vport
, uint16_t rpi
)
5658 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
5659 struct lpfc_nodelist
*ndlp
;
5661 spin_lock_irq(shost
->host_lock
);
5662 ndlp
= __lpfc_findnode_rpi(vport
, rpi
);
5663 spin_unlock_irq(shost
->host_lock
);
5668 * lpfc_find_vport_by_vpid - Find a vport on a HBA through vport identifier
5669 * @phba: pointer to lpfc hba data structure.
5670 * @vpi: the physical host virtual N_Port identifier.
5672 * This routine finds a vport on a HBA (referred by @phba) through a
5673 * @vpi. The function walks the HBA's vport list and returns the address
5674 * of the vport with the matching @vpi.
5677 * NULL - No vport with the matching @vpi found
5678 * Otherwise - Address to the vport with the matching @vpi.
5681 lpfc_find_vport_by_vpid(struct lpfc_hba
*phba
, uint16_t vpi
)
5683 struct lpfc_vport
*vport
;
5684 unsigned long flags
;
5687 /* The physical ports are always vpi 0 - translate is unnecessary. */
5690 * Translate the physical vpi to the logical vpi. The
5691 * vport stores the logical vpi.
5693 for (i
= 0; i
< phba
->max_vpi
; i
++) {
5694 if (vpi
== phba
->vpi_ids
[i
])
5698 if (i
>= phba
->max_vpi
) {
5699 lpfc_printf_log(phba
, KERN_ERR
, LOG_ELS
,
5700 "2936 Could not find Vport mapped "
5701 "to vpi %d\n", vpi
);
5706 spin_lock_irqsave(&phba
->hbalock
, flags
);
5707 list_for_each_entry(vport
, &phba
->port_list
, listentry
) {
5708 if (vport
->vpi
== i
) {
5709 spin_unlock_irqrestore(&phba
->hbalock
, flags
);
5713 spin_unlock_irqrestore(&phba
->hbalock
, flags
);
5718 lpfc_nlp_init(struct lpfc_vport
*vport
, struct lpfc_nodelist
*ndlp
,
5721 memset(ndlp
, 0, sizeof (struct lpfc_nodelist
));
5723 lpfc_initialize_node(vport
, ndlp
, did
);
5724 INIT_LIST_HEAD(&ndlp
->nlp_listp
);
5725 if (vport
->phba
->sli_rev
== LPFC_SLI_REV4
) {
5726 ndlp
->nlp_rpi
= lpfc_sli4_alloc_rpi(vport
->phba
);
5727 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_NODE
,
5728 "0007 rpi:%x DID:%x flg:%x refcnt:%d "
5729 "map:%x %p\n", ndlp
->nlp_rpi
, ndlp
->nlp_DID
,
5731 atomic_read(&ndlp
->kref
.refcount
),
5732 ndlp
->nlp_usg_map
, ndlp
);
5734 ndlp
->active_rrqs_xri_bitmap
=
5735 mempool_alloc(vport
->phba
->active_rrq_pool
,
5737 if (ndlp
->active_rrqs_xri_bitmap
)
5738 memset(ndlp
->active_rrqs_xri_bitmap
, 0,
5739 ndlp
->phba
->cfg_rrq_xri_bitmap_sz
);
5744 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_NODE
,
5745 "node init: did:x%x",
5746 ndlp
->nlp_DID
, 0, 0);
5751 /* This routine releases all resources associated with a specifc NPort's ndlp
5752 * and mempool_free's the nodelist.
5755 lpfc_nlp_release(struct kref
*kref
)
5757 struct lpfc_hba
*phba
;
5758 unsigned long flags
;
5759 struct lpfc_nodelist
*ndlp
= container_of(kref
, struct lpfc_nodelist
,
5762 lpfc_debugfs_disc_trc(ndlp
->vport
, LPFC_DISC_TRC_NODE
,
5763 "node release: did:x%x flg:x%x type:x%x",
5764 ndlp
->nlp_DID
, ndlp
->nlp_flag
, ndlp
->nlp_type
);
5766 lpfc_printf_vlog(ndlp
->vport
, KERN_INFO
, LOG_NODE
,
5767 "0279 lpfc_nlp_release: ndlp:x%p did %x "
5768 "usgmap:x%x refcnt:%d rpi:%x\n",
5769 (void *)ndlp
, ndlp
->nlp_DID
, ndlp
->nlp_usg_map
,
5770 atomic_read(&ndlp
->kref
.refcount
), ndlp
->nlp_rpi
);
5772 /* remove ndlp from action. */
5773 lpfc_nlp_remove(ndlp
->vport
, ndlp
);
5775 /* clear the ndlp active flag for all release cases */
5777 spin_lock_irqsave(&phba
->ndlp_lock
, flags
);
5778 NLP_CLR_NODE_ACT(ndlp
);
5779 spin_unlock_irqrestore(&phba
->ndlp_lock
, flags
);
5780 if (phba
->sli_rev
== LPFC_SLI_REV4
)
5781 lpfc_sli4_free_rpi(phba
, ndlp
->nlp_rpi
);
5783 /* free ndlp memory for final ndlp release */
5784 if (NLP_CHK_FREE_REQ(ndlp
)) {
5785 kfree(ndlp
->lat_data
);
5786 if (phba
->sli_rev
== LPFC_SLI_REV4
)
5787 mempool_free(ndlp
->active_rrqs_xri_bitmap
,
5788 ndlp
->phba
->active_rrq_pool
);
5789 mempool_free(ndlp
, ndlp
->phba
->nlp_mem_pool
);
5793 /* This routine bumps the reference count for a ndlp structure to ensure
5794 * that one discovery thread won't free a ndlp while another discovery thread
5797 struct lpfc_nodelist
*
5798 lpfc_nlp_get(struct lpfc_nodelist
*ndlp
)
5800 struct lpfc_hba
*phba
;
5801 unsigned long flags
;
5804 lpfc_debugfs_disc_trc(ndlp
->vport
, LPFC_DISC_TRC_NODE
,
5805 "node get: did:x%x flg:x%x refcnt:x%x",
5806 ndlp
->nlp_DID
, ndlp
->nlp_flag
,
5807 atomic_read(&ndlp
->kref
.refcount
));
5808 /* The check of ndlp usage to prevent incrementing the
5809 * ndlp reference count that is in the process of being
5813 spin_lock_irqsave(&phba
->ndlp_lock
, flags
);
5814 if (!NLP_CHK_NODE_ACT(ndlp
) || NLP_CHK_FREE_ACK(ndlp
)) {
5815 spin_unlock_irqrestore(&phba
->ndlp_lock
, flags
);
5816 lpfc_printf_vlog(ndlp
->vport
, KERN_WARNING
, LOG_NODE
,
5817 "0276 lpfc_nlp_get: ndlp:x%p "
5818 "usgmap:x%x refcnt:%d\n",
5819 (void *)ndlp
, ndlp
->nlp_usg_map
,
5820 atomic_read(&ndlp
->kref
.refcount
));
5823 kref_get(&ndlp
->kref
);
5824 spin_unlock_irqrestore(&phba
->ndlp_lock
, flags
);
5829 /* This routine decrements the reference count for a ndlp structure. If the
5830 * count goes to 0, this indicates the the associated nodelist should be
5831 * freed. Returning 1 indicates the ndlp resource has been released; on the
5832 * other hand, returning 0 indicates the ndlp resource has not been released
5836 lpfc_nlp_put(struct lpfc_nodelist
*ndlp
)
5838 struct lpfc_hba
*phba
;
5839 unsigned long flags
;
5844 lpfc_debugfs_disc_trc(ndlp
->vport
, LPFC_DISC_TRC_NODE
,
5845 "node put: did:x%x flg:x%x refcnt:x%x",
5846 ndlp
->nlp_DID
, ndlp
->nlp_flag
,
5847 atomic_read(&ndlp
->kref
.refcount
));
5849 spin_lock_irqsave(&phba
->ndlp_lock
, flags
);
5850 /* Check the ndlp memory free acknowledge flag to avoid the
5851 * possible race condition that kref_put got invoked again
5852 * after previous one has done ndlp memory free.
5854 if (NLP_CHK_FREE_ACK(ndlp
)) {
5855 spin_unlock_irqrestore(&phba
->ndlp_lock
, flags
);
5856 lpfc_printf_vlog(ndlp
->vport
, KERN_WARNING
, LOG_NODE
,
5857 "0274 lpfc_nlp_put: ndlp:x%p "
5858 "usgmap:x%x refcnt:%d\n",
5859 (void *)ndlp
, ndlp
->nlp_usg_map
,
5860 atomic_read(&ndlp
->kref
.refcount
));
5863 /* Check the ndlp inactivate log flag to avoid the possible
5864 * race condition that kref_put got invoked again after ndlp
5865 * is already in inactivating state.
5867 if (NLP_CHK_IACT_REQ(ndlp
)) {
5868 spin_unlock_irqrestore(&phba
->ndlp_lock
, flags
);
5869 lpfc_printf_vlog(ndlp
->vport
, KERN_WARNING
, LOG_NODE
,
5870 "0275 lpfc_nlp_put: ndlp:x%p "
5871 "usgmap:x%x refcnt:%d\n",
5872 (void *)ndlp
, ndlp
->nlp_usg_map
,
5873 atomic_read(&ndlp
->kref
.refcount
));
5876 /* For last put, mark the ndlp usage flags to make sure no
5877 * other kref_get and kref_put on the same ndlp shall get
5878 * in between the process when the final kref_put has been
5879 * invoked on this ndlp.
5881 if (atomic_read(&ndlp
->kref
.refcount
) == 1) {
5882 /* Indicate ndlp is put to inactive state. */
5883 NLP_SET_IACT_REQ(ndlp
);
5884 /* Acknowledge ndlp memory free has been seen. */
5885 if (NLP_CHK_FREE_REQ(ndlp
))
5886 NLP_SET_FREE_ACK(ndlp
);
5888 spin_unlock_irqrestore(&phba
->ndlp_lock
, flags
);
5889 /* Note, the kref_put returns 1 when decrementing a reference
5890 * count that was 1, it invokes the release callback function,
5891 * but it still left the reference count as 1 (not actually
5892 * performs the last decrementation). Otherwise, it actually
5893 * decrements the reference count and returns 0.
5895 return kref_put(&ndlp
->kref
, lpfc_nlp_release
);
5898 /* This routine free's the specified nodelist if it is not in use
5899 * by any other discovery thread. This routine returns 1 if the
5900 * ndlp has been freed. A return value of 0 indicates the ndlp is
5901 * not yet been released.
5904 lpfc_nlp_not_used(struct lpfc_nodelist
*ndlp
)
5906 lpfc_debugfs_disc_trc(ndlp
->vport
, LPFC_DISC_TRC_NODE
,
5907 "node not used: did:x%x flg:x%x refcnt:x%x",
5908 ndlp
->nlp_DID
, ndlp
->nlp_flag
,
5909 atomic_read(&ndlp
->kref
.refcount
));
5910 if (atomic_read(&ndlp
->kref
.refcount
) == 1)
5911 if (lpfc_nlp_put(ndlp
))
5917 * lpfc_fcf_inuse - Check if FCF can be unregistered.
5918 * @phba: Pointer to hba context object.
5920 * This function iterate through all FC nodes associated
5921 * will all vports to check if there is any node with
5922 * fc_rports associated with it. If there is an fc_rport
5923 * associated with the node, then the node is either in
5924 * discovered state or its devloss_timer is pending.
5927 lpfc_fcf_inuse(struct lpfc_hba
*phba
)
5929 struct lpfc_vport
**vports
;
5931 struct lpfc_nodelist
*ndlp
;
5932 struct Scsi_Host
*shost
;
5934 vports
= lpfc_create_vport_work_array(phba
);
5936 /* If driver cannot allocate memory, indicate fcf is in use */
5940 for (i
= 0; i
<= phba
->max_vports
&& vports
[i
] != NULL
; i
++) {
5941 shost
= lpfc_shost_from_vport(vports
[i
]);
5942 spin_lock_irq(shost
->host_lock
);
5944 * IF the CVL_RCVD bit is not set then we have sent the
5946 * If dev_loss fires while we are waiting we do not want to
5949 if (!(vports
[i
]->fc_flag
& FC_VPORT_CVL_RCVD
)) {
5950 spin_unlock_irq(shost
->host_lock
);
5954 list_for_each_entry(ndlp
, &vports
[i
]->fc_nodes
, nlp_listp
) {
5955 if (NLP_CHK_NODE_ACT(ndlp
) && ndlp
->rport
&&
5956 (ndlp
->rport
->roles
& FC_RPORT_ROLE_FCP_TARGET
)) {
5958 spin_unlock_irq(shost
->host_lock
);
5960 } else if (ndlp
->nlp_flag
& NLP_RPI_REGISTERED
) {
5962 lpfc_printf_log(phba
, KERN_INFO
, LOG_ELS
,
5963 "2624 RPI %x DID %x flag %x "
5964 "still logged in\n",
5965 ndlp
->nlp_rpi
, ndlp
->nlp_DID
,
5969 spin_unlock_irq(shost
->host_lock
);
5972 lpfc_destroy_vport_work_array(phba
, vports
);
5977 * lpfc_unregister_vfi_cmpl - Completion handler for unreg vfi.
5978 * @phba: Pointer to hba context object.
5979 * @mboxq: Pointer to mailbox object.
5981 * This function frees memory associated with the mailbox command.
5984 lpfc_unregister_vfi_cmpl(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*mboxq
)
5986 struct lpfc_vport
*vport
= mboxq
->vport
;
5987 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
5989 if (mboxq
->u
.mb
.mbxStatus
) {
5990 lpfc_printf_log(phba
, KERN_ERR
, LOG_DISCOVERY
|LOG_MBOX
,
5991 "2555 UNREG_VFI mbxStatus error x%x "
5993 mboxq
->u
.mb
.mbxStatus
, vport
->port_state
);
5995 spin_lock_irq(shost
->host_lock
);
5996 phba
->pport
->fc_flag
&= ~FC_VFI_REGISTERED
;
5997 spin_unlock_irq(shost
->host_lock
);
5998 mempool_free(mboxq
, phba
->mbox_mem_pool
);
6003 * lpfc_unregister_fcfi_cmpl - Completion handler for unreg fcfi.
6004 * @phba: Pointer to hba context object.
6005 * @mboxq: Pointer to mailbox object.
6007 * This function frees memory associated with the mailbox command.
6010 lpfc_unregister_fcfi_cmpl(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*mboxq
)
6012 struct lpfc_vport
*vport
= mboxq
->vport
;
6014 if (mboxq
->u
.mb
.mbxStatus
) {
6015 lpfc_printf_log(phba
, KERN_ERR
, LOG_DISCOVERY
|LOG_MBOX
,
6016 "2550 UNREG_FCFI mbxStatus error x%x "
6018 mboxq
->u
.mb
.mbxStatus
, vport
->port_state
);
6020 mempool_free(mboxq
, phba
->mbox_mem_pool
);
6025 * lpfc_unregister_fcf_prep - Unregister fcf record preparation
6026 * @phba: Pointer to hba context object.
6028 * This function prepare the HBA for unregistering the currently registered
6029 * FCF from the HBA. It performs unregistering, in order, RPIs, VPIs, and
6033 lpfc_unregister_fcf_prep(struct lpfc_hba
*phba
)
6035 struct lpfc_vport
**vports
;
6036 struct lpfc_nodelist
*ndlp
;
6037 struct Scsi_Host
*shost
;
6040 /* Unregister RPIs */
6041 if (lpfc_fcf_inuse(phba
))
6042 lpfc_unreg_hba_rpis(phba
);
6044 /* At this point, all discovery is aborted */
6045 phba
->pport
->port_state
= LPFC_VPORT_UNKNOWN
;
6047 /* Unregister VPIs */
6048 vports
= lpfc_create_vport_work_array(phba
);
6049 if (vports
&& (phba
->sli3_options
& LPFC_SLI3_NPIV_ENABLED
))
6050 for (i
= 0; i
<= phba
->max_vports
&& vports
[i
] != NULL
; i
++) {
6051 /* Stop FLOGI/FDISC retries */
6052 ndlp
= lpfc_findnode_did(vports
[i
], Fabric_DID
);
6054 lpfc_cancel_retry_delay_tmo(vports
[i
], ndlp
);
6055 lpfc_cleanup_pending_mbox(vports
[i
]);
6056 if (phba
->sli_rev
== LPFC_SLI_REV4
)
6057 lpfc_sli4_unreg_all_rpis(vports
[i
]);
6058 lpfc_mbx_unreg_vpi(vports
[i
]);
6059 shost
= lpfc_shost_from_vport(vports
[i
]);
6060 spin_lock_irq(shost
->host_lock
);
6061 vports
[i
]->fc_flag
|= FC_VPORT_NEEDS_INIT_VPI
;
6062 vports
[i
]->vpi_state
&= ~LPFC_VPI_REGISTERED
;
6063 spin_unlock_irq(shost
->host_lock
);
6065 lpfc_destroy_vport_work_array(phba
, vports
);
6066 if (i
== 0 && (!(phba
->sli3_options
& LPFC_SLI3_NPIV_ENABLED
))) {
6067 ndlp
= lpfc_findnode_did(phba
->pport
, Fabric_DID
);
6069 lpfc_cancel_retry_delay_tmo(phba
->pport
, ndlp
);
6070 lpfc_cleanup_pending_mbox(phba
->pport
);
6071 if (phba
->sli_rev
== LPFC_SLI_REV4
)
6072 lpfc_sli4_unreg_all_rpis(phba
->pport
);
6073 lpfc_mbx_unreg_vpi(phba
->pport
);
6074 shost
= lpfc_shost_from_vport(phba
->pport
);
6075 spin_lock_irq(shost
->host_lock
);
6076 phba
->pport
->fc_flag
|= FC_VPORT_NEEDS_INIT_VPI
;
6077 phba
->pport
->vpi_state
&= ~LPFC_VPI_REGISTERED
;
6078 spin_unlock_irq(shost
->host_lock
);
6081 /* Cleanup any outstanding ELS commands */
6082 lpfc_els_flush_all_cmd(phba
);
6084 /* Unregister the physical port VFI */
6085 rc
= lpfc_issue_unreg_vfi(phba
->pport
);
6090 * lpfc_sli4_unregister_fcf - Unregister currently registered FCF record
6091 * @phba: Pointer to hba context object.
6093 * This function issues synchronous unregister FCF mailbox command to HBA to
6094 * unregister the currently registered FCF record. The driver does not reset
6095 * the driver FCF usage state flags.
6097 * Return 0 if successfully issued, none-zero otherwise.
6100 lpfc_sli4_unregister_fcf(struct lpfc_hba
*phba
)
6105 mbox
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
6107 lpfc_printf_log(phba
, KERN_ERR
, LOG_DISCOVERY
|LOG_MBOX
,
6108 "2551 UNREG_FCFI mbox allocation failed"
6109 "HBA state x%x\n", phba
->pport
->port_state
);
6112 lpfc_unreg_fcfi(mbox
, phba
->fcf
.fcfi
);
6113 mbox
->vport
= phba
->pport
;
6114 mbox
->mbox_cmpl
= lpfc_unregister_fcfi_cmpl
;
6115 rc
= lpfc_sli_issue_mbox(phba
, mbox
, MBX_NOWAIT
);
6117 if (rc
== MBX_NOT_FINISHED
) {
6118 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
6119 "2552 Unregister FCFI command failed rc x%x "
6121 rc
, phba
->pport
->port_state
);
6128 * lpfc_unregister_fcf_rescan - Unregister currently registered fcf and rescan
6129 * @phba: Pointer to hba context object.
6131 * This function unregisters the currently reigstered FCF. This function
6132 * also tries to find another FCF for discovery by rescan the HBA FCF table.
6135 lpfc_unregister_fcf_rescan(struct lpfc_hba
*phba
)
6139 /* Preparation for unregistering fcf */
6140 rc
= lpfc_unregister_fcf_prep(phba
);
6142 lpfc_printf_log(phba
, KERN_ERR
, LOG_DISCOVERY
,
6143 "2748 Failed to prepare for unregistering "
6144 "HBA's FCF record: rc=%d\n", rc
);
6148 /* Now, unregister FCF record and reset HBA FCF state */
6149 rc
= lpfc_sli4_unregister_fcf(phba
);
6152 /* Reset HBA FCF states after successful unregister FCF */
6153 phba
->fcf
.fcf_flag
= 0;
6154 phba
->fcf
.current_rec
.flag
= 0;
6157 * If driver is not unloading, check if there is any other
6158 * FCF record that can be used for discovery.
6160 if ((phba
->pport
->load_flag
& FC_UNLOADING
) ||
6161 (phba
->link_state
< LPFC_LINK_UP
))
6164 /* This is considered as the initial FCF discovery scan */
6165 spin_lock_irq(&phba
->hbalock
);
6166 phba
->fcf
.fcf_flag
|= FCF_INIT_DISC
;
6167 spin_unlock_irq(&phba
->hbalock
);
6169 /* Reset FCF roundrobin bmask for new discovery */
6170 lpfc_sli4_clear_fcf_rr_bmask(phba
);
6172 rc
= lpfc_sli4_fcf_scan_read_fcf_rec(phba
, LPFC_FCOE_FCF_GET_FIRST
);
6175 spin_lock_irq(&phba
->hbalock
);
6176 phba
->fcf
.fcf_flag
&= ~FCF_INIT_DISC
;
6177 spin_unlock_irq(&phba
->hbalock
);
6178 lpfc_printf_log(phba
, KERN_ERR
, LOG_DISCOVERY
|LOG_MBOX
,
6179 "2553 lpfc_unregister_unused_fcf failed "
6180 "to read FCF record HBA state x%x\n",
6181 phba
->pport
->port_state
);
6186 * lpfc_unregister_fcf - Unregister the currently registered fcf record
6187 * @phba: Pointer to hba context object.
6189 * This function just unregisters the currently reigstered FCF. It does not
6190 * try to find another FCF for discovery.
6193 lpfc_unregister_fcf(struct lpfc_hba
*phba
)
6197 /* Preparation for unregistering fcf */
6198 rc
= lpfc_unregister_fcf_prep(phba
);
6200 lpfc_printf_log(phba
, KERN_ERR
, LOG_DISCOVERY
,
6201 "2749 Failed to prepare for unregistering "
6202 "HBA's FCF record: rc=%d\n", rc
);
6206 /* Now, unregister FCF record and reset HBA FCF state */
6207 rc
= lpfc_sli4_unregister_fcf(phba
);
6210 /* Set proper HBA FCF states after successful unregister FCF */
6211 spin_lock_irq(&phba
->hbalock
);
6212 phba
->fcf
.fcf_flag
&= ~FCF_REGISTERED
;
6213 spin_unlock_irq(&phba
->hbalock
);
6217 * lpfc_unregister_unused_fcf - Unregister FCF if all devices are disconnected.
6218 * @phba: Pointer to hba context object.
6220 * This function check if there are any connected remote port for the FCF and
6221 * if all the devices are disconnected, this function unregister FCFI.
6222 * This function also tries to use another FCF for discovery.
6225 lpfc_unregister_unused_fcf(struct lpfc_hba
*phba
)
6228 * If HBA is not running in FIP mode, if HBA does not support
6229 * FCoE, if FCF discovery is ongoing, or if FCF has not been
6230 * registered, do nothing.
6232 spin_lock_irq(&phba
->hbalock
);
6233 if (!(phba
->hba_flag
& HBA_FCOE_MODE
) ||
6234 !(phba
->fcf
.fcf_flag
& FCF_REGISTERED
) ||
6235 !(phba
->hba_flag
& HBA_FIP_SUPPORT
) ||
6236 (phba
->fcf
.fcf_flag
& FCF_DISCOVERY
) ||
6237 (phba
->pport
->port_state
== LPFC_FLOGI
)) {
6238 spin_unlock_irq(&phba
->hbalock
);
6241 spin_unlock_irq(&phba
->hbalock
);
6243 if (lpfc_fcf_inuse(phba
))
6246 lpfc_unregister_fcf_rescan(phba
);
6250 * lpfc_read_fcf_conn_tbl - Create driver FCF connection table.
6251 * @phba: Pointer to hba context object.
6252 * @buff: Buffer containing the FCF connection table as in the config
6254 * This function create driver data structure for the FCF connection
6255 * record table read from config region 23.
6258 lpfc_read_fcf_conn_tbl(struct lpfc_hba
*phba
,
6261 struct lpfc_fcf_conn_entry
*conn_entry
, *next_conn_entry
;
6262 struct lpfc_fcf_conn_hdr
*conn_hdr
;
6263 struct lpfc_fcf_conn_rec
*conn_rec
;
6264 uint32_t record_count
;
6267 /* Free the current connect table */
6268 list_for_each_entry_safe(conn_entry
, next_conn_entry
,
6269 &phba
->fcf_conn_rec_list
, list
) {
6270 list_del_init(&conn_entry
->list
);
6274 conn_hdr
= (struct lpfc_fcf_conn_hdr
*) buff
;
6275 record_count
= conn_hdr
->length
* sizeof(uint32_t)/
6276 sizeof(struct lpfc_fcf_conn_rec
);
6278 conn_rec
= (struct lpfc_fcf_conn_rec
*)
6279 (buff
+ sizeof(struct lpfc_fcf_conn_hdr
));
6281 for (i
= 0; i
< record_count
; i
++) {
6282 if (!(conn_rec
[i
].flags
& FCFCNCT_VALID
))
6284 conn_entry
= kzalloc(sizeof(struct lpfc_fcf_conn_entry
),
6287 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
6288 "2566 Failed to allocate connection"
6293 memcpy(&conn_entry
->conn_rec
, &conn_rec
[i
],
6294 sizeof(struct lpfc_fcf_conn_rec
));
6295 list_add_tail(&conn_entry
->list
,
6296 &phba
->fcf_conn_rec_list
);
6299 if (!list_empty(&phba
->fcf_conn_rec_list
)) {
6301 list_for_each_entry(conn_entry
, &phba
->fcf_conn_rec_list
,
6303 conn_rec
= &conn_entry
->conn_rec
;
6304 lpfc_printf_log(phba
, KERN_INFO
, LOG_INIT
,
6305 "3345 FCF connection list rec[%02d]: "
6306 "flags:x%04x, vtag:x%04x, "
6307 "fabric_name:x%02x:%02x:%02x:%02x:"
6308 "%02x:%02x:%02x:%02x, "
6309 "switch_name:x%02x:%02x:%02x:%02x:"
6310 "%02x:%02x:%02x:%02x\n", i
++,
6311 conn_rec
->flags
, conn_rec
->vlan_tag
,
6312 conn_rec
->fabric_name
[0],
6313 conn_rec
->fabric_name
[1],
6314 conn_rec
->fabric_name
[2],
6315 conn_rec
->fabric_name
[3],
6316 conn_rec
->fabric_name
[4],
6317 conn_rec
->fabric_name
[5],
6318 conn_rec
->fabric_name
[6],
6319 conn_rec
->fabric_name
[7],
6320 conn_rec
->switch_name
[0],
6321 conn_rec
->switch_name
[1],
6322 conn_rec
->switch_name
[2],
6323 conn_rec
->switch_name
[3],
6324 conn_rec
->switch_name
[4],
6325 conn_rec
->switch_name
[5],
6326 conn_rec
->switch_name
[6],
6327 conn_rec
->switch_name
[7]);
6333 * lpfc_read_fcoe_param - Read FCoe parameters from conf region..
6334 * @phba: Pointer to hba context object.
6335 * @buff: Buffer containing the FCoE parameter data structure.
6337 * This function update driver data structure with config
6338 * parameters read from config region 23.
6341 lpfc_read_fcoe_param(struct lpfc_hba
*phba
,
6344 struct lpfc_fip_param_hdr
*fcoe_param_hdr
;
6345 struct lpfc_fcoe_params
*fcoe_param
;
6347 fcoe_param_hdr
= (struct lpfc_fip_param_hdr
*)
6349 fcoe_param
= (struct lpfc_fcoe_params
*)
6350 (buff
+ sizeof(struct lpfc_fip_param_hdr
));
6352 if ((fcoe_param_hdr
->parm_version
!= FIPP_VERSION
) ||
6353 (fcoe_param_hdr
->length
!= FCOE_PARAM_LENGTH
))
6356 if (fcoe_param_hdr
->parm_flags
& FIPP_VLAN_VALID
) {
6357 phba
->valid_vlan
= 1;
6358 phba
->vlan_id
= le16_to_cpu(fcoe_param
->vlan_tag
) &
6362 phba
->fc_map
[0] = fcoe_param
->fc_map
[0];
6363 phba
->fc_map
[1] = fcoe_param
->fc_map
[1];
6364 phba
->fc_map
[2] = fcoe_param
->fc_map
[2];
6369 * lpfc_get_rec_conf23 - Get a record type in config region data.
6370 * @buff: Buffer containing config region 23 data.
6371 * @size: Size of the data buffer.
6372 * @rec_type: Record type to be searched.
6374 * This function searches config region data to find the beginning
6375 * of the record specified by record_type. If record found, this
6376 * function return pointer to the record else return NULL.
6379 lpfc_get_rec_conf23(uint8_t *buff
, uint32_t size
, uint8_t rec_type
)
6381 uint32_t offset
= 0, rec_length
;
6383 if ((buff
[0] == LPFC_REGION23_LAST_REC
) ||
6384 (size
< sizeof(uint32_t)))
6387 rec_length
= buff
[offset
+ 1];
6390 * One TLV record has one word header and number of data words
6391 * specified in the rec_length field of the record header.
6393 while ((offset
+ rec_length
* sizeof(uint32_t) + sizeof(uint32_t))
6395 if (buff
[offset
] == rec_type
)
6396 return &buff
[offset
];
6398 if (buff
[offset
] == LPFC_REGION23_LAST_REC
)
6401 offset
+= rec_length
* sizeof(uint32_t) + sizeof(uint32_t);
6402 rec_length
= buff
[offset
+ 1];
6408 * lpfc_parse_fcoe_conf - Parse FCoE config data read from config region 23.
6409 * @phba: Pointer to lpfc_hba data structure.
6410 * @buff: Buffer containing config region 23 data.
6411 * @size: Size of the data buffer.
6413 * This function parses the FCoE config parameters in config region 23 and
6414 * populate driver data structure with the parameters.
6417 lpfc_parse_fcoe_conf(struct lpfc_hba
*phba
,
6421 uint32_t offset
= 0;
6425 * If data size is less than 2 words signature and version cannot be
6428 if (size
< 2*sizeof(uint32_t))
6431 /* Check the region signature first */
6432 if (memcmp(buff
, LPFC_REGION23_SIGNATURE
, 4)) {
6433 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
6434 "2567 Config region 23 has bad signature\n");
6440 /* Check the data structure version */
6441 if (buff
[offset
] != LPFC_REGION23_VERSION
) {
6442 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
6443 "2568 Config region 23 has bad version\n");
6448 /* Read FCoE param record */
6449 rec_ptr
= lpfc_get_rec_conf23(&buff
[offset
],
6450 size
- offset
, FCOE_PARAM_TYPE
);
6452 lpfc_read_fcoe_param(phba
, rec_ptr
);
6454 /* Read FCF connection table */
6455 rec_ptr
= lpfc_get_rec_conf23(&buff
[offset
],
6456 size
- offset
, FCOE_CONN_TBL_TYPE
);
6458 lpfc_read_fcf_conn_tbl(phba
, rec_ptr
);