1 /*******************************************************************
2 * This file is part of the Emulex Linux Device Driver for *
3 * Fibre Channel Host Bus Adapters. *
4 * Copyright (C) 2017-2018 Broadcom. All Rights Reserved. The term *
5 * “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. *
6 * Copyright (C) 2004-2016 Emulex. All rights reserved. *
7 * EMULEX and SLI are trademarks of Emulex. *
9 * Portions Copyright (C) 2004-2005 Christoph Hellwig *
11 * This program is free software; you can redistribute it and/or *
12 * modify it under the terms of version 2 of the GNU General *
13 * Public License as published by the Free Software Foundation. *
14 * This program is distributed in the hope that it will be useful. *
15 * ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND *
16 * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, *
17 * FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE *
18 * DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD *
19 * TO BE LEGALLY INVALID. See the GNU General Public License for *
20 * more details, a copy of which can be found in the file COPYING *
21 * included with this package. *
22 *******************************************************************/
24 #include <linux/blkdev.h>
25 #include <linux/delay.h>
26 #include <linux/slab.h>
27 #include <linux/pci.h>
28 #include <linux/kthread.h>
29 #include <linux/interrupt.h>
30 #include <linux/lockdep.h>
32 #include <scsi/scsi.h>
33 #include <scsi/scsi_device.h>
34 #include <scsi/scsi_host.h>
35 #include <scsi/scsi_transport_fc.h>
36 #include <scsi/fc/fc_fs.h>
38 #include <linux/nvme-fc-driver.h>
43 #include "lpfc_disc.h"
45 #include "lpfc_sli4.h"
47 #include "lpfc_scsi.h"
48 #include "lpfc_nvme.h"
49 #include "lpfc_logmsg.h"
50 #include "lpfc_crtn.h"
51 #include "lpfc_vport.h"
52 #include "lpfc_debugfs.h"
54 /* AlpaArray for assignment of scsid for scan-down and bind_method */
55 static uint8_t lpfcAlpaArray
[] = {
56 0xEF, 0xE8, 0xE4, 0xE2, 0xE1, 0xE0, 0xDC, 0xDA, 0xD9, 0xD6,
57 0xD5, 0xD4, 0xD3, 0xD2, 0xD1, 0xCE, 0xCD, 0xCC, 0xCB, 0xCA,
58 0xC9, 0xC7, 0xC6, 0xC5, 0xC3, 0xBC, 0xBA, 0xB9, 0xB6, 0xB5,
59 0xB4, 0xB3, 0xB2, 0xB1, 0xAE, 0xAD, 0xAC, 0xAB, 0xAA, 0xA9,
60 0xA7, 0xA6, 0xA5, 0xA3, 0x9F, 0x9E, 0x9D, 0x9B, 0x98, 0x97,
61 0x90, 0x8F, 0x88, 0x84, 0x82, 0x81, 0x80, 0x7C, 0x7A, 0x79,
62 0x76, 0x75, 0x74, 0x73, 0x72, 0x71, 0x6E, 0x6D, 0x6C, 0x6B,
63 0x6A, 0x69, 0x67, 0x66, 0x65, 0x63, 0x5C, 0x5A, 0x59, 0x56,
64 0x55, 0x54, 0x53, 0x52, 0x51, 0x4E, 0x4D, 0x4C, 0x4B, 0x4A,
65 0x49, 0x47, 0x46, 0x45, 0x43, 0x3C, 0x3A, 0x39, 0x36, 0x35,
66 0x34, 0x33, 0x32, 0x31, 0x2E, 0x2D, 0x2C, 0x2B, 0x2A, 0x29,
67 0x27, 0x26, 0x25, 0x23, 0x1F, 0x1E, 0x1D, 0x1B, 0x18, 0x17,
68 0x10, 0x0F, 0x08, 0x04, 0x02, 0x01
71 static void lpfc_disc_timeout_handler(struct lpfc_vport
*);
72 static void lpfc_disc_flush_list(struct lpfc_vport
*vport
);
73 static void lpfc_unregister_fcfi_cmpl(struct lpfc_hba
*, LPFC_MBOXQ_t
*);
74 static int lpfc_fcf_inuse(struct lpfc_hba
*);
77 lpfc_terminate_rport_io(struct fc_rport
*rport
)
79 struct lpfc_rport_data
*rdata
;
80 struct lpfc_nodelist
* ndlp
;
81 struct lpfc_hba
*phba
;
83 rdata
= rport
->dd_data
;
86 if (!ndlp
|| !NLP_CHK_NODE_ACT(ndlp
)) {
87 if (rport
->roles
& FC_RPORT_ROLE_FCP_TARGET
)
88 printk(KERN_ERR
"Cannot find remote node"
89 " to terminate I/O Data x%x\n",
96 lpfc_debugfs_disc_trc(ndlp
->vport
, LPFC_DISC_TRC_RPORT
,
97 "rport terminate: sid:x%x did:x%x flg:x%x",
98 ndlp
->nlp_sid
, ndlp
->nlp_DID
, ndlp
->nlp_flag
);
100 if (ndlp
->nlp_sid
!= NLP_NO_SID
) {
101 lpfc_sli_abort_iocb(ndlp
->vport
,
102 &phba
->sli
.sli3_ring
[LPFC_FCP_RING
],
103 ndlp
->nlp_sid
, 0, LPFC_CTX_TGT
);
108 * This function will be called when dev_loss_tmo fire.
111 lpfc_dev_loss_tmo_callbk(struct fc_rport
*rport
)
113 struct lpfc_rport_data
*rdata
;
114 struct lpfc_nodelist
* ndlp
;
115 struct lpfc_vport
*vport
;
116 struct Scsi_Host
*shost
;
117 struct lpfc_hba
*phba
;
118 struct lpfc_work_evt
*evtp
;
122 rdata
= rport
->dd_data
;
124 if (!ndlp
|| !NLP_CHK_NODE_ACT(ndlp
))
130 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_RPORT
,
131 "rport devlosscb: sid:x%x did:x%x flg:x%x",
132 ndlp
->nlp_sid
, ndlp
->nlp_DID
, ndlp
->nlp_flag
);
134 lpfc_printf_vlog(ndlp
->vport
, KERN_INFO
, LOG_NODE
,
135 "3181 dev_loss_callbk x%06x, rport %p flg x%x\n",
136 ndlp
->nlp_DID
, ndlp
->rport
, ndlp
->nlp_flag
);
138 /* Don't defer this if we are in the process of deleting the vport
139 * or unloading the driver. The unload will cleanup the node
140 * appropriately we just need to cleanup the ndlp rport info here.
142 if (vport
->load_flag
& FC_UNLOADING
) {
143 put_node
= rdata
->pnode
!= NULL
;
144 put_rport
= ndlp
->rport
!= NULL
;
150 put_device(&rport
->dev
);
154 if (ndlp
->nlp_state
== NLP_STE_MAPPED_NODE
)
157 if (rport
->port_name
!= wwn_to_u64(ndlp
->nlp_portname
.u
.wwn
))
158 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_NODE
,
159 "6789 rport name %llx != node port name %llx",
161 wwn_to_u64(ndlp
->nlp_portname
.u
.wwn
));
163 evtp
= &ndlp
->dev_loss_evt
;
165 if (!list_empty(&evtp
->evt_listp
)) {
166 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_NODE
,
167 "6790 rport name %llx dev_loss_evt pending",
172 shost
= lpfc_shost_from_vport(vport
);
173 spin_lock_irq(shost
->host_lock
);
174 ndlp
->nlp_flag
|= NLP_IN_DEV_LOSS
;
175 spin_unlock_irq(shost
->host_lock
);
177 /* We need to hold the node by incrementing the reference
178 * count until this queued work is done
180 evtp
->evt_arg1
= lpfc_nlp_get(ndlp
);
182 spin_lock_irq(&phba
->hbalock
);
183 if (evtp
->evt_arg1
) {
184 evtp
->evt
= LPFC_EVT_DEV_LOSS
;
185 list_add_tail(&evtp
->evt_listp
, &phba
->work_list
);
186 lpfc_worker_wake_up(phba
);
188 spin_unlock_irq(&phba
->hbalock
);
194 * lpfc_dev_loss_tmo_handler - Remote node devloss timeout handler
195 * @ndlp: Pointer to remote node object.
197 * This function is called from the worker thread when devloss timeout timer
198 * expires. For SLI4 host, this routine shall return 1 when at lease one
199 * remote node, including this @ndlp, is still in use of FCF; otherwise, this
200 * routine shall return 0 when there is no remote node is still in use of FCF
201 * when devloss timeout happened to this @ndlp.
204 lpfc_dev_loss_tmo_handler(struct lpfc_nodelist
*ndlp
)
206 struct lpfc_rport_data
*rdata
;
207 struct fc_rport
*rport
;
208 struct lpfc_vport
*vport
;
209 struct lpfc_hba
*phba
;
210 struct Scsi_Host
*shost
;
218 shost
= lpfc_shost_from_vport(vport
);
220 spin_lock_irq(shost
->host_lock
);
221 ndlp
->nlp_flag
&= ~NLP_IN_DEV_LOSS
;
222 spin_unlock_irq(shost
->host_lock
);
227 name
= (uint8_t *) &ndlp
->nlp_portname
;
230 if (phba
->sli_rev
== LPFC_SLI_REV4
)
231 fcf_inuse
= lpfc_fcf_inuse(phba
);
233 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_RPORT
,
234 "rport devlosstmo:did:x%x type:x%x id:x%x",
235 ndlp
->nlp_DID
, ndlp
->nlp_type
, rport
->scsi_target_id
);
237 lpfc_printf_vlog(ndlp
->vport
, KERN_INFO
, LOG_NODE
,
238 "3182 dev_loss_tmo_handler x%06x, rport %p flg x%x\n",
239 ndlp
->nlp_DID
, ndlp
->rport
, ndlp
->nlp_flag
);
242 * lpfc_nlp_remove if reached with dangling rport drops the
243 * reference. To make sure that does not happen clear rport
244 * pointer in ndlp before lpfc_nlp_put.
246 rdata
= rport
->dd_data
;
248 /* Don't defer this if we are in the process of deleting the vport
249 * or unloading the driver. The unload will cleanup the node
250 * appropriately we just need to cleanup the ndlp rport info here.
252 if (vport
->load_flag
& FC_UNLOADING
) {
253 if (ndlp
->nlp_sid
!= NLP_NO_SID
) {
254 /* flush the target */
255 lpfc_sli_abort_iocb(vport
,
256 &phba
->sli
.sli3_ring
[LPFC_FCP_RING
],
257 ndlp
->nlp_sid
, 0, LPFC_CTX_TGT
);
259 put_node
= rdata
->pnode
!= NULL
;
264 put_device(&rport
->dev
);
269 if (ndlp
->nlp_state
== NLP_STE_MAPPED_NODE
) {
270 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_DISCOVERY
,
271 "0284 Devloss timeout Ignored on "
272 "WWPN %x:%x:%x:%x:%x:%x:%x:%x "
274 *name
, *(name
+1), *(name
+2), *(name
+3),
275 *(name
+4), *(name
+5), *(name
+6), *(name
+7),
280 put_node
= rdata
->pnode
!= NULL
;
285 put_device(&rport
->dev
);
287 if (ndlp
->nlp_type
& NLP_FABRIC
)
290 if (ndlp
->nlp_sid
!= NLP_NO_SID
) {
292 lpfc_sli_abort_iocb(vport
, &phba
->sli
.sli3_ring
[LPFC_FCP_RING
],
293 ndlp
->nlp_sid
, 0, LPFC_CTX_TGT
);
297 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_DISCOVERY
,
298 "0203 Devloss timeout on "
299 "WWPN %02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x "
300 "NPort x%06x Data: x%x x%x x%x\n",
301 *name
, *(name
+1), *(name
+2), *(name
+3),
302 *(name
+4), *(name
+5), *(name
+6), *(name
+7),
303 ndlp
->nlp_DID
, ndlp
->nlp_flag
,
304 ndlp
->nlp_state
, ndlp
->nlp_rpi
);
306 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_DISCOVERY
,
307 "0204 Devloss timeout on "
308 "WWPN %02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x "
309 "NPort x%06x Data: x%x x%x x%x\n",
310 *name
, *(name
+1), *(name
+2), *(name
+3),
311 *(name
+4), *(name
+5), *(name
+6), *(name
+7),
312 ndlp
->nlp_DID
, ndlp
->nlp_flag
,
313 ndlp
->nlp_state
, ndlp
->nlp_rpi
);
316 if (!(ndlp
->nlp_flag
& NLP_DELAY_TMO
) &&
317 !(ndlp
->nlp_flag
& NLP_NPR_2B_DISC
) &&
318 (ndlp
->nlp_state
!= NLP_STE_UNMAPPED_NODE
) &&
319 (ndlp
->nlp_state
!= NLP_STE_REG_LOGIN_ISSUE
) &&
320 (ndlp
->nlp_state
!= NLP_STE_PRLI_ISSUE
))
321 lpfc_disc_state_machine(vport
, ndlp
, NULL
, NLP_EVT_DEVICE_RM
);
327 * lpfc_sli4_post_dev_loss_tmo_handler - SLI4 post devloss timeout handler
328 * @phba: Pointer to hba context object.
329 * @fcf_inuse: SLI4 FCF in-use state reported from devloss timeout handler.
330 * @nlp_did: remote node identifer with devloss timeout.
332 * This function is called from the worker thread after invoking devloss
333 * timeout handler and releasing the reference count for the ndlp with
334 * which the devloss timeout was handled for SLI4 host. For the devloss
335 * timeout of the last remote node which had been in use of FCF, when this
336 * routine is invoked, it shall be guaranteed that none of the remote are
337 * in-use of FCF. When devloss timeout to the last remote using the FCF,
338 * if the FIP engine is neither in FCF table scan process nor roundrobin
339 * failover process, the in-use FCF shall be unregistered. If the FIP
340 * engine is in FCF discovery process, the devloss timeout state shall
341 * be set for either the FCF table scan process or roundrobin failover
342 * process to unregister the in-use FCF.
345 lpfc_sli4_post_dev_loss_tmo_handler(struct lpfc_hba
*phba
, int fcf_inuse
,
348 /* If devloss timeout happened to a remote node when FCF had no
349 * longer been in-use, do nothing.
354 if ((phba
->hba_flag
& HBA_FIP_SUPPORT
) && !lpfc_fcf_inuse(phba
)) {
355 spin_lock_irq(&phba
->hbalock
);
356 if (phba
->fcf
.fcf_flag
& FCF_DISCOVERY
) {
357 if (phba
->hba_flag
& HBA_DEVLOSS_TMO
) {
358 spin_unlock_irq(&phba
->hbalock
);
361 phba
->hba_flag
|= HBA_DEVLOSS_TMO
;
362 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
,
363 "2847 Last remote node (x%x) using "
364 "FCF devloss tmo\n", nlp_did
);
366 if (phba
->fcf
.fcf_flag
& FCF_REDISC_PROG
) {
367 spin_unlock_irq(&phba
->hbalock
);
368 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
,
369 "2868 Devloss tmo to FCF rediscovery "
373 if (!(phba
->hba_flag
& (FCF_TS_INPROG
| FCF_RR_INPROG
))) {
374 spin_unlock_irq(&phba
->hbalock
);
375 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
,
376 "2869 Devloss tmo to idle FIP engine, "
377 "unreg in-use FCF and rescan.\n");
378 /* Unregister in-use FCF and rescan */
379 lpfc_unregister_fcf_rescan(phba
);
382 spin_unlock_irq(&phba
->hbalock
);
383 if (phba
->hba_flag
& FCF_TS_INPROG
)
384 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
,
385 "2870 FCF table scan in progress\n");
386 if (phba
->hba_flag
& FCF_RR_INPROG
)
387 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
,
388 "2871 FLOGI roundrobin FCF failover "
391 lpfc_unregister_unused_fcf(phba
);
395 * lpfc_alloc_fast_evt - Allocates data structure for posting event
396 * @phba: Pointer to hba context object.
398 * This function is called from the functions which need to post
399 * events from interrupt context. This function allocates data
400 * structure required for posting event. It also keeps track of
401 * number of events pending and prevent event storm when there are
404 struct lpfc_fast_path_event
*
405 lpfc_alloc_fast_evt(struct lpfc_hba
*phba
) {
406 struct lpfc_fast_path_event
*ret
;
408 /* If there are lot of fast event do not exhaust memory due to this */
409 if (atomic_read(&phba
->fast_event_count
) > LPFC_MAX_EVT_COUNT
)
412 ret
= kzalloc(sizeof(struct lpfc_fast_path_event
),
415 atomic_inc(&phba
->fast_event_count
);
416 INIT_LIST_HEAD(&ret
->work_evt
.evt_listp
);
417 ret
->work_evt
.evt
= LPFC_EVT_FASTPATH_MGMT_EVT
;
423 * lpfc_free_fast_evt - Frees event data structure
424 * @phba: Pointer to hba context object.
425 * @evt: Event object which need to be freed.
427 * This function frees the data structure required for posting
431 lpfc_free_fast_evt(struct lpfc_hba
*phba
,
432 struct lpfc_fast_path_event
*evt
) {
434 atomic_dec(&phba
->fast_event_count
);
439 * lpfc_send_fastpath_evt - Posts events generated from fast path
440 * @phba: Pointer to hba context object.
441 * @evtp: Event data structure.
443 * This function is called from worker thread, when the interrupt
444 * context need to post an event. This function posts the event
445 * to fc transport netlink interface.
448 lpfc_send_fastpath_evt(struct lpfc_hba
*phba
,
449 struct lpfc_work_evt
*evtp
)
451 unsigned long evt_category
, evt_sub_category
;
452 struct lpfc_fast_path_event
*fast_evt_data
;
454 uint32_t evt_data_size
;
455 struct Scsi_Host
*shost
;
457 fast_evt_data
= container_of(evtp
, struct lpfc_fast_path_event
,
460 evt_category
= (unsigned long) fast_evt_data
->un
.fabric_evt
.event_type
;
461 evt_sub_category
= (unsigned long) fast_evt_data
->un
.
462 fabric_evt
.subcategory
;
463 shost
= lpfc_shost_from_vport(fast_evt_data
->vport
);
464 if (evt_category
== FC_REG_FABRIC_EVENT
) {
465 if (evt_sub_category
== LPFC_EVENT_FCPRDCHKERR
) {
466 evt_data
= (char *) &fast_evt_data
->un
.read_check_error
;
467 evt_data_size
= sizeof(fast_evt_data
->un
.
469 } else if ((evt_sub_category
== LPFC_EVENT_FABRIC_BUSY
) ||
470 (evt_sub_category
== LPFC_EVENT_PORT_BUSY
)) {
471 evt_data
= (char *) &fast_evt_data
->un
.fabric_evt
;
472 evt_data_size
= sizeof(fast_evt_data
->un
.fabric_evt
);
474 lpfc_free_fast_evt(phba
, fast_evt_data
);
477 } else if (evt_category
== FC_REG_SCSI_EVENT
) {
478 switch (evt_sub_category
) {
479 case LPFC_EVENT_QFULL
:
480 case LPFC_EVENT_DEVBSY
:
481 evt_data
= (char *) &fast_evt_data
->un
.scsi_evt
;
482 evt_data_size
= sizeof(fast_evt_data
->un
.scsi_evt
);
484 case LPFC_EVENT_CHECK_COND
:
485 evt_data
= (char *) &fast_evt_data
->un
.check_cond_evt
;
486 evt_data_size
= sizeof(fast_evt_data
->un
.
489 case LPFC_EVENT_VARQUEDEPTH
:
490 evt_data
= (char *) &fast_evt_data
->un
.queue_depth_evt
;
491 evt_data_size
= sizeof(fast_evt_data
->un
.
495 lpfc_free_fast_evt(phba
, fast_evt_data
);
499 lpfc_free_fast_evt(phba
, fast_evt_data
);
503 if (phba
->cfg_enable_fc4_type
!= LPFC_ENABLE_NVME
)
504 fc_host_post_vendor_event(shost
,
505 fc_get_event_number(),
510 lpfc_free_fast_evt(phba
, fast_evt_data
);
515 lpfc_work_list_done(struct lpfc_hba
*phba
)
517 struct lpfc_work_evt
*evtp
= NULL
;
518 struct lpfc_nodelist
*ndlp
;
523 spin_lock_irq(&phba
->hbalock
);
524 while (!list_empty(&phba
->work_list
)) {
525 list_remove_head((&phba
->work_list
), evtp
, typeof(*evtp
),
527 spin_unlock_irq(&phba
->hbalock
);
530 case LPFC_EVT_ELS_RETRY
:
531 ndlp
= (struct lpfc_nodelist
*) (evtp
->evt_arg1
);
532 lpfc_els_retry_delay_handler(ndlp
);
533 free_evt
= 0; /* evt is part of ndlp */
534 /* decrement the node reference count held
535 * for this queued work
539 case LPFC_EVT_DEV_LOSS
:
540 ndlp
= (struct lpfc_nodelist
*)(evtp
->evt_arg1
);
541 fcf_inuse
= lpfc_dev_loss_tmo_handler(ndlp
);
543 /* decrement the node reference count held for
546 nlp_did
= ndlp
->nlp_DID
;
548 if (phba
->sli_rev
== LPFC_SLI_REV4
)
549 lpfc_sli4_post_dev_loss_tmo_handler(phba
,
553 case LPFC_EVT_ONLINE
:
554 if (phba
->link_state
< LPFC_LINK_DOWN
)
555 *(int *) (evtp
->evt_arg1
) = lpfc_online(phba
);
557 *(int *) (evtp
->evt_arg1
) = 0;
558 complete((struct completion
*)(evtp
->evt_arg2
));
560 case LPFC_EVT_OFFLINE_PREP
:
561 if (phba
->link_state
>= LPFC_LINK_DOWN
)
562 lpfc_offline_prep(phba
, LPFC_MBX_WAIT
);
563 *(int *)(evtp
->evt_arg1
) = 0;
564 complete((struct completion
*)(evtp
->evt_arg2
));
566 case LPFC_EVT_OFFLINE
:
568 lpfc_sli_brdrestart(phba
);
569 *(int *)(evtp
->evt_arg1
) =
570 lpfc_sli_brdready(phba
, HS_FFRDY
| HS_MBRDY
);
571 lpfc_unblock_mgmt_io(phba
);
572 complete((struct completion
*)(evtp
->evt_arg2
));
574 case LPFC_EVT_WARM_START
:
576 lpfc_reset_barrier(phba
);
577 lpfc_sli_brdreset(phba
);
578 lpfc_hba_down_post(phba
);
579 *(int *)(evtp
->evt_arg1
) =
580 lpfc_sli_brdready(phba
, HS_MBRDY
);
581 lpfc_unblock_mgmt_io(phba
);
582 complete((struct completion
*)(evtp
->evt_arg2
));
586 *(int *)(evtp
->evt_arg1
)
587 = (phba
->pport
->stopped
)
588 ? 0 : lpfc_sli_brdkill(phba
);
589 lpfc_unblock_mgmt_io(phba
);
590 complete((struct completion
*)(evtp
->evt_arg2
));
592 case LPFC_EVT_FASTPATH_MGMT_EVT
:
593 lpfc_send_fastpath_evt(phba
, evtp
);
596 case LPFC_EVT_RESET_HBA
:
597 if (!(phba
->pport
->load_flag
& FC_UNLOADING
))
598 lpfc_reset_hba(phba
);
603 spin_lock_irq(&phba
->hbalock
);
605 spin_unlock_irq(&phba
->hbalock
);
610 lpfc_work_done(struct lpfc_hba
*phba
)
612 struct lpfc_sli_ring
*pring
;
613 uint32_t ha_copy
, status
, control
, work_port_events
;
614 struct lpfc_vport
**vports
;
615 struct lpfc_vport
*vport
;
618 spin_lock_irq(&phba
->hbalock
);
619 ha_copy
= phba
->work_ha
;
621 spin_unlock_irq(&phba
->hbalock
);
623 /* First, try to post the next mailbox command to SLI4 device */
624 if (phba
->pci_dev_grp
== LPFC_PCI_DEV_OC
)
625 lpfc_sli4_post_async_mbox(phba
);
627 if (ha_copy
& HA_ERATT
)
628 /* Handle the error attention event */
629 lpfc_handle_eratt(phba
);
631 if (ha_copy
& HA_MBATT
)
632 lpfc_sli_handle_mb_event(phba
);
634 if (ha_copy
& HA_LATT
)
635 lpfc_handle_latt(phba
);
637 /* Process SLI4 events */
638 if (phba
->pci_dev_grp
== LPFC_PCI_DEV_OC
) {
639 if (phba
->hba_flag
& HBA_RRQ_ACTIVE
)
640 lpfc_handle_rrq_active(phba
);
641 if (phba
->hba_flag
& FCP_XRI_ABORT_EVENT
)
642 lpfc_sli4_fcp_xri_abort_event_proc(phba
);
643 if (phba
->hba_flag
& ELS_XRI_ABORT_EVENT
)
644 lpfc_sli4_els_xri_abort_event_proc(phba
);
645 if (phba
->hba_flag
& ASYNC_EVENT
)
646 lpfc_sli4_async_event_proc(phba
);
647 if (phba
->hba_flag
& HBA_POST_RECEIVE_BUFFER
) {
648 spin_lock_irq(&phba
->hbalock
);
649 phba
->hba_flag
&= ~HBA_POST_RECEIVE_BUFFER
;
650 spin_unlock_irq(&phba
->hbalock
);
651 lpfc_sli_hbqbuf_add_hbqs(phba
, LPFC_ELS_HBQ
);
653 if (phba
->fcf
.fcf_flag
& FCF_REDISC_EVT
)
654 lpfc_sli4_fcf_redisc_event_proc(phba
);
657 vports
= lpfc_create_vport_work_array(phba
);
659 for (i
= 0; i
<= phba
->max_vports
; i
++) {
661 * We could have no vports in array if unloading, so if
662 * this happens then just use the pport
664 if (vports
[i
] == NULL
&& i
== 0)
670 spin_lock_irq(&vport
->work_port_lock
);
671 work_port_events
= vport
->work_port_events
;
672 vport
->work_port_events
&= ~work_port_events
;
673 spin_unlock_irq(&vport
->work_port_lock
);
674 if (work_port_events
& WORKER_DISC_TMO
)
675 lpfc_disc_timeout_handler(vport
);
676 if (work_port_events
& WORKER_ELS_TMO
)
677 lpfc_els_timeout_handler(vport
);
678 if (work_port_events
& WORKER_HB_TMO
)
679 lpfc_hb_timeout_handler(phba
);
680 if (work_port_events
& WORKER_MBOX_TMO
)
681 lpfc_mbox_timeout_handler(phba
);
682 if (work_port_events
& WORKER_FABRIC_BLOCK_TMO
)
683 lpfc_unblock_fabric_iocbs(phba
);
684 if (work_port_events
& WORKER_RAMP_DOWN_QUEUE
)
685 lpfc_ramp_down_queue_handler(phba
);
686 if (work_port_events
& WORKER_DELAYED_DISC_TMO
)
687 lpfc_delayed_disc_timeout_handler(vport
);
689 lpfc_destroy_vport_work_array(phba
, vports
);
691 pring
= lpfc_phba_elsring(phba
);
692 status
= (ha_copy
& (HA_RXMASK
<< (4*LPFC_ELS_RING
)));
693 status
>>= (4*LPFC_ELS_RING
);
694 if (pring
&& (status
& HA_RXMASK
||
695 pring
->flag
& LPFC_DEFERRED_RING_EVENT
||
696 phba
->hba_flag
& HBA_SP_QUEUE_EVT
)) {
697 if (pring
->flag
& LPFC_STOP_IOCB_EVENT
) {
698 pring
->flag
|= LPFC_DEFERRED_RING_EVENT
;
699 /* Preserve legacy behavior. */
700 if (!(phba
->hba_flag
& HBA_SP_QUEUE_EVT
))
701 set_bit(LPFC_DATA_READY
, &phba
->data_flags
);
703 if (phba
->link_state
>= LPFC_LINK_UP
||
704 phba
->link_flag
& LS_MDS_LOOPBACK
) {
705 pring
->flag
&= ~LPFC_DEFERRED_RING_EVENT
;
706 lpfc_sli_handle_slow_ring_event(phba
, pring
,
711 if (phba
->sli_rev
== LPFC_SLI_REV4
)
712 lpfc_drain_txq(phba
);
714 * Turn on Ring interrupts
716 if (phba
->sli_rev
<= LPFC_SLI_REV3
) {
717 spin_lock_irq(&phba
->hbalock
);
718 control
= readl(phba
->HCregaddr
);
719 if (!(control
& (HC_R0INT_ENA
<< LPFC_ELS_RING
))) {
720 lpfc_debugfs_slow_ring_trc(phba
,
721 "WRK Enable ring: cntl:x%x hacopy:x%x",
722 control
, ha_copy
, 0);
724 control
|= (HC_R0INT_ENA
<< LPFC_ELS_RING
);
725 writel(control
, phba
->HCregaddr
);
726 readl(phba
->HCregaddr
); /* flush */
728 lpfc_debugfs_slow_ring_trc(phba
,
729 "WRK Ring ok: cntl:x%x hacopy:x%x",
730 control
, ha_copy
, 0);
732 spin_unlock_irq(&phba
->hbalock
);
735 lpfc_work_list_done(phba
);
739 lpfc_do_work(void *p
)
741 struct lpfc_hba
*phba
= p
;
744 set_user_nice(current
, MIN_NICE
);
745 current
->flags
|= PF_NOFREEZE
;
746 phba
->data_flags
= 0;
748 while (!kthread_should_stop()) {
749 /* wait and check worker queue activities */
750 rc
= wait_event_interruptible(phba
->work_waitq
,
751 (test_and_clear_bit(LPFC_DATA_READY
,
753 || kthread_should_stop()));
754 /* Signal wakeup shall terminate the worker thread */
756 lpfc_printf_log(phba
, KERN_ERR
, LOG_ELS
,
757 "0433 Wakeup on signal: rc=x%x\n", rc
);
761 /* Attend pending lpfc data processing */
762 lpfc_work_done(phba
);
764 phba
->worker_thread
= NULL
;
765 lpfc_printf_log(phba
, KERN_INFO
, LOG_ELS
,
766 "0432 Worker thread stopped.\n");
771 * This is only called to handle FC worker events. Since this a rare
772 * occurrence, we allocate a struct lpfc_work_evt structure here instead of
773 * embedding it in the IOCB.
776 lpfc_workq_post_event(struct lpfc_hba
*phba
, void *arg1
, void *arg2
,
779 struct lpfc_work_evt
*evtp
;
783 * All Mailbox completions and LPFC_ELS_RING rcv ring IOCB events will
784 * be queued to worker thread for processing
786 evtp
= kmalloc(sizeof(struct lpfc_work_evt
), GFP_ATOMIC
);
790 evtp
->evt_arg1
= arg1
;
791 evtp
->evt_arg2
= arg2
;
794 spin_lock_irqsave(&phba
->hbalock
, flags
);
795 list_add_tail(&evtp
->evt_listp
, &phba
->work_list
);
796 spin_unlock_irqrestore(&phba
->hbalock
, flags
);
798 lpfc_worker_wake_up(phba
);
804 lpfc_cleanup_rpis(struct lpfc_vport
*vport
, int remove
)
806 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
807 struct lpfc_hba
*phba
= vport
->phba
;
808 struct lpfc_nodelist
*ndlp
, *next_ndlp
;
810 list_for_each_entry_safe(ndlp
, next_ndlp
, &vport
->fc_nodes
, nlp_listp
) {
811 if (!NLP_CHK_NODE_ACT(ndlp
))
813 if (ndlp
->nlp_state
== NLP_STE_UNUSED_NODE
)
815 if ((phba
->sli3_options
& LPFC_SLI3_VPORT_TEARDOWN
) ||
816 ((vport
->port_type
== LPFC_NPIV_PORT
) &&
817 (ndlp
->nlp_DID
== NameServer_DID
)))
818 lpfc_unreg_rpi(vport
, ndlp
);
820 /* Leave Fabric nodes alone on link down */
821 if ((phba
->sli_rev
< LPFC_SLI_REV4
) &&
822 (!remove
&& ndlp
->nlp_type
& NLP_FABRIC
))
824 lpfc_disc_state_machine(vport
, ndlp
, NULL
,
827 : NLP_EVT_DEVICE_RECOVERY
);
829 if (phba
->sli3_options
& LPFC_SLI3_VPORT_TEARDOWN
) {
830 if (phba
->sli_rev
== LPFC_SLI_REV4
)
831 lpfc_sli4_unreg_all_rpis(vport
);
832 lpfc_mbx_unreg_vpi(vport
);
833 spin_lock_irq(shost
->host_lock
);
834 vport
->fc_flag
|= FC_VPORT_NEEDS_REG_VPI
;
835 spin_unlock_irq(shost
->host_lock
);
840 lpfc_port_link_failure(struct lpfc_vport
*vport
)
842 lpfc_vport_set_state(vport
, FC_VPORT_LINKDOWN
);
844 /* Cleanup any outstanding received buffers */
845 lpfc_cleanup_rcv_buffers(vport
);
847 /* Cleanup any outstanding RSCN activity */
848 lpfc_els_flush_rscn(vport
);
850 /* Cleanup any outstanding ELS commands */
851 lpfc_els_flush_cmd(vport
);
853 lpfc_cleanup_rpis(vport
, 0);
855 /* Turn off discovery timer if its running */
856 lpfc_can_disctmo(vport
);
860 lpfc_linkdown_port(struct lpfc_vport
*vport
)
862 struct lpfc_hba
*phba
= vport
->phba
;
863 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
865 if (phba
->cfg_enable_fc4_type
!= LPFC_ENABLE_NVME
)
866 fc_host_post_event(shost
, fc_get_event_number(),
867 FCH_EVT_LINKDOWN
, 0);
869 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_CMD
,
870 "Link Down: state:x%x rtry:x%x flg:x%x",
871 vport
->port_state
, vport
->fc_ns_retry
, vport
->fc_flag
);
873 lpfc_port_link_failure(vport
);
875 /* Stop delayed Nport discovery */
876 spin_lock_irq(shost
->host_lock
);
877 vport
->fc_flag
&= ~FC_DISC_DELAYED
;
878 spin_unlock_irq(shost
->host_lock
);
879 del_timer_sync(&vport
->delayed_disc_tmo
);
883 lpfc_linkdown(struct lpfc_hba
*phba
)
885 struct lpfc_vport
*vport
= phba
->pport
;
886 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
887 struct lpfc_vport
**vports
;
891 if (phba
->link_state
== LPFC_LINK_DOWN
)
894 /* Block all SCSI stack I/Os */
895 lpfc_scsi_dev_block(phba
);
897 spin_lock_irq(&phba
->hbalock
);
898 phba
->fcf
.fcf_flag
&= ~(FCF_AVAILABLE
| FCF_SCAN_DONE
);
899 spin_unlock_irq(&phba
->hbalock
);
900 if (phba
->link_state
> LPFC_LINK_DOWN
) {
901 phba
->link_state
= LPFC_LINK_DOWN
;
902 spin_lock_irq(shost
->host_lock
);
903 phba
->pport
->fc_flag
&= ~FC_LBIT
;
904 spin_unlock_irq(shost
->host_lock
);
906 vports
= lpfc_create_vport_work_array(phba
);
907 if (vports
!= NULL
) {
908 for (i
= 0; i
<= phba
->max_vports
&& vports
[i
] != NULL
; i
++) {
909 /* Issue a LINK DOWN event to all nodes */
910 lpfc_linkdown_port(vports
[i
]);
912 vports
[i
]->fc_myDID
= 0;
914 if ((phba
->cfg_enable_fc4_type
== LPFC_ENABLE_BOTH
) ||
915 (phba
->cfg_enable_fc4_type
== LPFC_ENABLE_NVME
)) {
916 if (phba
->nvmet_support
)
917 lpfc_nvmet_update_targetport(phba
);
919 lpfc_nvme_update_localport(vports
[i
]);
923 lpfc_destroy_vport_work_array(phba
, vports
);
924 /* Clean up any firmware default rpi's */
925 mb
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
927 lpfc_unreg_did(phba
, 0xffff, LPFC_UNREG_ALL_DFLT_RPIS
, mb
);
929 mb
->mbox_cmpl
= lpfc_sli_def_mbox_cmpl
;
930 if (lpfc_sli_issue_mbox(phba
, mb
, MBX_NOWAIT
)
931 == MBX_NOT_FINISHED
) {
932 mempool_free(mb
, phba
->mbox_mem_pool
);
936 /* Setup myDID for link up if we are in pt2pt mode */
937 if (phba
->pport
->fc_flag
& FC_PT2PT
) {
938 mb
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
940 lpfc_config_link(phba
, mb
);
941 mb
->mbox_cmpl
= lpfc_sli_def_mbox_cmpl
;
943 if (lpfc_sli_issue_mbox(phba
, mb
, MBX_NOWAIT
)
944 == MBX_NOT_FINISHED
) {
945 mempool_free(mb
, phba
->mbox_mem_pool
);
948 spin_lock_irq(shost
->host_lock
);
949 phba
->pport
->fc_flag
&= ~(FC_PT2PT
| FC_PT2PT_PLOGI
);
950 spin_unlock_irq(shost
->host_lock
);
956 lpfc_linkup_cleanup_nodes(struct lpfc_vport
*vport
)
958 struct lpfc_nodelist
*ndlp
;
960 list_for_each_entry(ndlp
, &vport
->fc_nodes
, nlp_listp
) {
961 ndlp
->nlp_fc4_type
&= ~(NLP_FC4_FCP
| NLP_FC4_NVME
);
962 if (!NLP_CHK_NODE_ACT(ndlp
))
964 if (ndlp
->nlp_state
== NLP_STE_UNUSED_NODE
)
966 if (ndlp
->nlp_type
& NLP_FABRIC
) {
967 /* On Linkup its safe to clean up the ndlp
968 * from Fabric connections.
970 if (ndlp
->nlp_DID
!= Fabric_DID
)
971 lpfc_unreg_rpi(vport
, ndlp
);
972 lpfc_nlp_set_state(vport
, ndlp
, NLP_STE_NPR_NODE
);
973 } else if (!(ndlp
->nlp_flag
& NLP_NPR_ADISC
)) {
974 /* Fail outstanding IO now since device is
977 lpfc_unreg_rpi(vport
, ndlp
);
983 lpfc_linkup_port(struct lpfc_vport
*vport
)
985 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
986 struct lpfc_hba
*phba
= vport
->phba
;
988 if ((vport
->load_flag
& FC_UNLOADING
) != 0)
991 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_CMD
,
992 "Link Up: top:x%x speed:x%x flg:x%x",
993 phba
->fc_topology
, phba
->fc_linkspeed
, phba
->link_flag
);
995 /* If NPIV is not enabled, only bring the physical port up */
996 if (!(phba
->sli3_options
& LPFC_SLI3_NPIV_ENABLED
) &&
997 (vport
!= phba
->pport
))
1000 if (phba
->cfg_enable_fc4_type
!= LPFC_ENABLE_NVME
)
1001 fc_host_post_event(shost
, fc_get_event_number(),
1004 spin_lock_irq(shost
->host_lock
);
1005 vport
->fc_flag
&= ~(FC_PT2PT
| FC_PT2PT_PLOGI
| FC_ABORT_DISCOVERY
|
1006 FC_RSCN_MODE
| FC_NLP_MORE
| FC_RSCN_DISCOVERY
);
1007 vport
->fc_flag
|= FC_NDISC_ACTIVE
;
1008 vport
->fc_ns_retry
= 0;
1009 spin_unlock_irq(shost
->host_lock
);
1011 if (vport
->fc_flag
& FC_LBIT
)
1012 lpfc_linkup_cleanup_nodes(vport
);
1017 lpfc_linkup(struct lpfc_hba
*phba
)
1019 struct lpfc_vport
**vports
;
1022 phba
->link_state
= LPFC_LINK_UP
;
1024 /* Unblock fabric iocbs if they are blocked */
1025 clear_bit(FABRIC_COMANDS_BLOCKED
, &phba
->bit_flags
);
1026 del_timer_sync(&phba
->fabric_block_timer
);
1028 vports
= lpfc_create_vport_work_array(phba
);
1030 for (i
= 0; i
<= phba
->max_vports
&& vports
[i
] != NULL
; i
++)
1031 lpfc_linkup_port(vports
[i
]);
1032 lpfc_destroy_vport_work_array(phba
, vports
);
1038 * This routine handles processing a CLEAR_LA mailbox
1039 * command upon completion. It is setup in the LPFC_MBOXQ
1040 * as the completion routine when the command is
1041 * handed off to the SLI layer. SLI3 only.
1044 lpfc_mbx_cmpl_clear_la(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*pmb
)
1046 struct lpfc_vport
*vport
= pmb
->vport
;
1047 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
1048 struct lpfc_sli
*psli
= &phba
->sli
;
1049 MAILBOX_t
*mb
= &pmb
->u
.mb
;
1052 /* Since we don't do discovery right now, turn these off here */
1053 psli
->sli3_ring
[LPFC_EXTRA_RING
].flag
&= ~LPFC_STOP_IOCB_EVENT
;
1054 psli
->sli3_ring
[LPFC_FCP_RING
].flag
&= ~LPFC_STOP_IOCB_EVENT
;
1056 /* Check for error */
1057 if ((mb
->mbxStatus
) && (mb
->mbxStatus
!= 0x1601)) {
1058 /* CLEAR_LA mbox error <mbxStatus> state <hba_state> */
1059 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_MBOX
,
1060 "0320 CLEAR_LA mbxStatus error x%x hba "
1062 mb
->mbxStatus
, vport
->port_state
);
1063 phba
->link_state
= LPFC_HBA_ERROR
;
1067 if (vport
->port_type
== LPFC_PHYSICAL_PORT
)
1068 phba
->link_state
= LPFC_HBA_READY
;
1070 spin_lock_irq(&phba
->hbalock
);
1071 psli
->sli_flag
|= LPFC_PROCESS_LA
;
1072 control
= readl(phba
->HCregaddr
);
1073 control
|= HC_LAINT_ENA
;
1074 writel(control
, phba
->HCregaddr
);
1075 readl(phba
->HCregaddr
); /* flush */
1076 spin_unlock_irq(&phba
->hbalock
);
1077 mempool_free(pmb
, phba
->mbox_mem_pool
);
1081 /* Device Discovery completes */
1082 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_DISCOVERY
,
1083 "0225 Device Discovery completes\n");
1084 mempool_free(pmb
, phba
->mbox_mem_pool
);
1086 spin_lock_irq(shost
->host_lock
);
1087 vport
->fc_flag
&= ~FC_ABORT_DISCOVERY
;
1088 spin_unlock_irq(shost
->host_lock
);
1090 lpfc_can_disctmo(vport
);
1092 /* turn on Link Attention interrupts */
1094 spin_lock_irq(&phba
->hbalock
);
1095 psli
->sli_flag
|= LPFC_PROCESS_LA
;
1096 control
= readl(phba
->HCregaddr
);
1097 control
|= HC_LAINT_ENA
;
1098 writel(control
, phba
->HCregaddr
);
1099 readl(phba
->HCregaddr
); /* flush */
1100 spin_unlock_irq(&phba
->hbalock
);
1107 lpfc_mbx_cmpl_local_config_link(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*pmb
)
1109 struct lpfc_vport
*vport
= pmb
->vport
;
1112 if (pmb
->u
.mb
.mbxStatus
)
1115 mempool_free(pmb
, phba
->mbox_mem_pool
);
1117 /* don't perform discovery for SLI4 loopback diagnostic test */
1118 if ((phba
->sli_rev
== LPFC_SLI_REV4
) &&
1119 !(phba
->hba_flag
& HBA_FCOE_MODE
) &&
1120 (phba
->link_flag
& LS_LOOPBACK_MODE
))
1123 if (phba
->fc_topology
== LPFC_TOPOLOGY_LOOP
&&
1124 vport
->fc_flag
& FC_PUBLIC_LOOP
&&
1125 !(vport
->fc_flag
& FC_LBIT
)) {
1126 /* Need to wait for FAN - use discovery timer
1127 * for timeout. port_state is identically
1128 * LPFC_LOCAL_CFG_LINK while waiting for FAN
1130 lpfc_set_disctmo(vport
);
1134 /* Start discovery by sending a FLOGI. port_state is identically
1135 * LPFC_FLOGI while waiting for FLOGI cmpl
1137 if (vport
->port_state
!= LPFC_FLOGI
) {
1138 if (phba
->bbcredit_support
&& phba
->cfg_enable_bbcr
) {
1139 bbscn
= bf_get(lpfc_bbscn_def
,
1140 &phba
->sli4_hba
.bbscn_params
);
1141 vport
->fc_sparam
.cmn
.bbRcvSizeMsb
&= 0xf;
1142 vport
->fc_sparam
.cmn
.bbRcvSizeMsb
|= (bbscn
<< 4);
1144 lpfc_initial_flogi(vport
);
1145 } else if (vport
->fc_flag
& FC_PT2PT
) {
1146 lpfc_disc_start(vport
);
1151 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_MBOX
,
1152 "0306 CONFIG_LINK mbxStatus error x%x "
1154 pmb
->u
.mb
.mbxStatus
, vport
->port_state
);
1155 mempool_free(pmb
, phba
->mbox_mem_pool
);
1157 lpfc_linkdown(phba
);
1159 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_DISCOVERY
,
1160 "0200 CONFIG_LINK bad hba state x%x\n",
1163 lpfc_issue_clear_la(phba
, vport
);
1168 * lpfc_sli4_clear_fcf_rr_bmask
1169 * @phba pointer to the struct lpfc_hba for this port.
1170 * This fucnction resets the round robin bit mask and clears the
1171 * fcf priority list. The list deletions are done while holding the
1172 * hbalock. The ON_LIST flag and the FLOGI_FAILED flags are cleared
1173 * from the lpfc_fcf_pri record.
1176 lpfc_sli4_clear_fcf_rr_bmask(struct lpfc_hba
*phba
)
1178 struct lpfc_fcf_pri
*fcf_pri
;
1179 struct lpfc_fcf_pri
*next_fcf_pri
;
1180 memset(phba
->fcf
.fcf_rr_bmask
, 0, sizeof(*phba
->fcf
.fcf_rr_bmask
));
1181 spin_lock_irq(&phba
->hbalock
);
1182 list_for_each_entry_safe(fcf_pri
, next_fcf_pri
,
1183 &phba
->fcf
.fcf_pri_list
, list
) {
1184 list_del_init(&fcf_pri
->list
);
1185 fcf_pri
->fcf_rec
.flag
= 0;
1187 spin_unlock_irq(&phba
->hbalock
);
1190 lpfc_mbx_cmpl_reg_fcfi(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*mboxq
)
1192 struct lpfc_vport
*vport
= mboxq
->vport
;
1194 if (mboxq
->u
.mb
.mbxStatus
) {
1195 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_MBOX
,
1196 "2017 REG_FCFI mbxStatus error x%x "
1198 mboxq
->u
.mb
.mbxStatus
, vport
->port_state
);
1202 /* Start FCoE discovery by sending a FLOGI. */
1203 phba
->fcf
.fcfi
= bf_get(lpfc_reg_fcfi_fcfi
, &mboxq
->u
.mqe
.un
.reg_fcfi
);
1204 /* Set the FCFI registered flag */
1205 spin_lock_irq(&phba
->hbalock
);
1206 phba
->fcf
.fcf_flag
|= FCF_REGISTERED
;
1207 spin_unlock_irq(&phba
->hbalock
);
1209 /* If there is a pending FCoE event, restart FCF table scan. */
1210 if ((!(phba
->hba_flag
& FCF_RR_INPROG
)) &&
1211 lpfc_check_pending_fcoe_event(phba
, LPFC_UNREG_FCF
))
1214 /* Mark successful completion of FCF table scan */
1215 spin_lock_irq(&phba
->hbalock
);
1216 phba
->fcf
.fcf_flag
|= (FCF_SCAN_DONE
| FCF_IN_USE
);
1217 phba
->hba_flag
&= ~FCF_TS_INPROG
;
1218 if (vport
->port_state
!= LPFC_FLOGI
) {
1219 phba
->hba_flag
|= FCF_RR_INPROG
;
1220 spin_unlock_irq(&phba
->hbalock
);
1221 lpfc_issue_init_vfi(vport
);
1224 spin_unlock_irq(&phba
->hbalock
);
1228 spin_lock_irq(&phba
->hbalock
);
1229 phba
->hba_flag
&= ~FCF_RR_INPROG
;
1230 spin_unlock_irq(&phba
->hbalock
);
1232 mempool_free(mboxq
, phba
->mbox_mem_pool
);
1236 * lpfc_fab_name_match - Check if the fcf fabric name match.
1237 * @fab_name: pointer to fabric name.
1238 * @new_fcf_record: pointer to fcf record.
1240 * This routine compare the fcf record's fabric name with provided
1241 * fabric name. If the fabric name are identical this function
1242 * returns 1 else return 0.
1245 lpfc_fab_name_match(uint8_t *fab_name
, struct fcf_record
*new_fcf_record
)
1247 if (fab_name
[0] != bf_get(lpfc_fcf_record_fab_name_0
, new_fcf_record
))
1249 if (fab_name
[1] != bf_get(lpfc_fcf_record_fab_name_1
, new_fcf_record
))
1251 if (fab_name
[2] != bf_get(lpfc_fcf_record_fab_name_2
, new_fcf_record
))
1253 if (fab_name
[3] != bf_get(lpfc_fcf_record_fab_name_3
, new_fcf_record
))
1255 if (fab_name
[4] != bf_get(lpfc_fcf_record_fab_name_4
, new_fcf_record
))
1257 if (fab_name
[5] != bf_get(lpfc_fcf_record_fab_name_5
, new_fcf_record
))
1259 if (fab_name
[6] != bf_get(lpfc_fcf_record_fab_name_6
, new_fcf_record
))
1261 if (fab_name
[7] != bf_get(lpfc_fcf_record_fab_name_7
, new_fcf_record
))
1267 * lpfc_sw_name_match - Check if the fcf switch name match.
1268 * @fab_name: pointer to fabric name.
1269 * @new_fcf_record: pointer to fcf record.
1271 * This routine compare the fcf record's switch name with provided
1272 * switch name. If the switch name are identical this function
1273 * returns 1 else return 0.
1276 lpfc_sw_name_match(uint8_t *sw_name
, struct fcf_record
*new_fcf_record
)
1278 if (sw_name
[0] != bf_get(lpfc_fcf_record_switch_name_0
, new_fcf_record
))
1280 if (sw_name
[1] != bf_get(lpfc_fcf_record_switch_name_1
, new_fcf_record
))
1282 if (sw_name
[2] != bf_get(lpfc_fcf_record_switch_name_2
, new_fcf_record
))
1284 if (sw_name
[3] != bf_get(lpfc_fcf_record_switch_name_3
, new_fcf_record
))
1286 if (sw_name
[4] != bf_get(lpfc_fcf_record_switch_name_4
, new_fcf_record
))
1288 if (sw_name
[5] != bf_get(lpfc_fcf_record_switch_name_5
, new_fcf_record
))
1290 if (sw_name
[6] != bf_get(lpfc_fcf_record_switch_name_6
, new_fcf_record
))
1292 if (sw_name
[7] != bf_get(lpfc_fcf_record_switch_name_7
, new_fcf_record
))
1298 * lpfc_mac_addr_match - Check if the fcf mac address match.
1299 * @mac_addr: pointer to mac address.
1300 * @new_fcf_record: pointer to fcf record.
1302 * This routine compare the fcf record's mac address with HBA's
1303 * FCF mac address. If the mac addresses are identical this function
1304 * returns 1 else return 0.
1307 lpfc_mac_addr_match(uint8_t *mac_addr
, struct fcf_record
*new_fcf_record
)
1309 if (mac_addr
[0] != bf_get(lpfc_fcf_record_mac_0
, new_fcf_record
))
1311 if (mac_addr
[1] != bf_get(lpfc_fcf_record_mac_1
, new_fcf_record
))
1313 if (mac_addr
[2] != bf_get(lpfc_fcf_record_mac_2
, new_fcf_record
))
1315 if (mac_addr
[3] != bf_get(lpfc_fcf_record_mac_3
, new_fcf_record
))
1317 if (mac_addr
[4] != bf_get(lpfc_fcf_record_mac_4
, new_fcf_record
))
1319 if (mac_addr
[5] != bf_get(lpfc_fcf_record_mac_5
, new_fcf_record
))
1325 lpfc_vlan_id_match(uint16_t curr_vlan_id
, uint16_t new_vlan_id
)
1327 return (curr_vlan_id
== new_vlan_id
);
1331 * lpfc_update_fcf_record - Update driver fcf record
1332 * __lpfc_update_fcf_record_pri - update the lpfc_fcf_pri record.
1333 * @phba: pointer to lpfc hba data structure.
1334 * @fcf_index: Index for the lpfc_fcf_record.
1335 * @new_fcf_record: pointer to hba fcf record.
1337 * This routine updates the driver FCF priority record from the new HBA FCF
1338 * record. This routine is called with the host lock held.
1341 __lpfc_update_fcf_record_pri(struct lpfc_hba
*phba
, uint16_t fcf_index
,
1342 struct fcf_record
*new_fcf_record
1345 struct lpfc_fcf_pri
*fcf_pri
;
1347 lockdep_assert_held(&phba
->hbalock
);
1349 fcf_pri
= &phba
->fcf
.fcf_pri
[fcf_index
];
1350 fcf_pri
->fcf_rec
.fcf_index
= fcf_index
;
1351 /* FCF record priority */
1352 fcf_pri
->fcf_rec
.priority
= new_fcf_record
->fip_priority
;
1357 * lpfc_copy_fcf_record - Copy fcf information to lpfc_hba.
1358 * @fcf: pointer to driver fcf record.
1359 * @new_fcf_record: pointer to fcf record.
1361 * This routine copies the FCF information from the FCF
1362 * record to lpfc_hba data structure.
1365 lpfc_copy_fcf_record(struct lpfc_fcf_rec
*fcf_rec
,
1366 struct fcf_record
*new_fcf_record
)
1369 fcf_rec
->fabric_name
[0] =
1370 bf_get(lpfc_fcf_record_fab_name_0
, new_fcf_record
);
1371 fcf_rec
->fabric_name
[1] =
1372 bf_get(lpfc_fcf_record_fab_name_1
, new_fcf_record
);
1373 fcf_rec
->fabric_name
[2] =
1374 bf_get(lpfc_fcf_record_fab_name_2
, new_fcf_record
);
1375 fcf_rec
->fabric_name
[3] =
1376 bf_get(lpfc_fcf_record_fab_name_3
, new_fcf_record
);
1377 fcf_rec
->fabric_name
[4] =
1378 bf_get(lpfc_fcf_record_fab_name_4
, new_fcf_record
);
1379 fcf_rec
->fabric_name
[5] =
1380 bf_get(lpfc_fcf_record_fab_name_5
, new_fcf_record
);
1381 fcf_rec
->fabric_name
[6] =
1382 bf_get(lpfc_fcf_record_fab_name_6
, new_fcf_record
);
1383 fcf_rec
->fabric_name
[7] =
1384 bf_get(lpfc_fcf_record_fab_name_7
, new_fcf_record
);
1386 fcf_rec
->mac_addr
[0] = bf_get(lpfc_fcf_record_mac_0
, new_fcf_record
);
1387 fcf_rec
->mac_addr
[1] = bf_get(lpfc_fcf_record_mac_1
, new_fcf_record
);
1388 fcf_rec
->mac_addr
[2] = bf_get(lpfc_fcf_record_mac_2
, new_fcf_record
);
1389 fcf_rec
->mac_addr
[3] = bf_get(lpfc_fcf_record_mac_3
, new_fcf_record
);
1390 fcf_rec
->mac_addr
[4] = bf_get(lpfc_fcf_record_mac_4
, new_fcf_record
);
1391 fcf_rec
->mac_addr
[5] = bf_get(lpfc_fcf_record_mac_5
, new_fcf_record
);
1392 /* FCF record index */
1393 fcf_rec
->fcf_indx
= bf_get(lpfc_fcf_record_fcf_index
, new_fcf_record
);
1394 /* FCF record priority */
1395 fcf_rec
->priority
= new_fcf_record
->fip_priority
;
1397 fcf_rec
->switch_name
[0] =
1398 bf_get(lpfc_fcf_record_switch_name_0
, new_fcf_record
);
1399 fcf_rec
->switch_name
[1] =
1400 bf_get(lpfc_fcf_record_switch_name_1
, new_fcf_record
);
1401 fcf_rec
->switch_name
[2] =
1402 bf_get(lpfc_fcf_record_switch_name_2
, new_fcf_record
);
1403 fcf_rec
->switch_name
[3] =
1404 bf_get(lpfc_fcf_record_switch_name_3
, new_fcf_record
);
1405 fcf_rec
->switch_name
[4] =
1406 bf_get(lpfc_fcf_record_switch_name_4
, new_fcf_record
);
1407 fcf_rec
->switch_name
[5] =
1408 bf_get(lpfc_fcf_record_switch_name_5
, new_fcf_record
);
1409 fcf_rec
->switch_name
[6] =
1410 bf_get(lpfc_fcf_record_switch_name_6
, new_fcf_record
);
1411 fcf_rec
->switch_name
[7] =
1412 bf_get(lpfc_fcf_record_switch_name_7
, new_fcf_record
);
1416 * lpfc_update_fcf_record - Update driver fcf record
1417 * @phba: pointer to lpfc hba data structure.
1418 * @fcf_rec: pointer to driver fcf record.
1419 * @new_fcf_record: pointer to hba fcf record.
1420 * @addr_mode: address mode to be set to the driver fcf record.
1421 * @vlan_id: vlan tag to be set to the driver fcf record.
1422 * @flag: flag bits to be set to the driver fcf record.
1424 * This routine updates the driver FCF record from the new HBA FCF record
1425 * together with the address mode, vlan_id, and other informations. This
1426 * routine is called with the host lock held.
1429 __lpfc_update_fcf_record(struct lpfc_hba
*phba
, struct lpfc_fcf_rec
*fcf_rec
,
1430 struct fcf_record
*new_fcf_record
, uint32_t addr_mode
,
1431 uint16_t vlan_id
, uint32_t flag
)
1433 lockdep_assert_held(&phba
->hbalock
);
1435 /* Copy the fields from the HBA's FCF record */
1436 lpfc_copy_fcf_record(fcf_rec
, new_fcf_record
);
1437 /* Update other fields of driver FCF record */
1438 fcf_rec
->addr_mode
= addr_mode
;
1439 fcf_rec
->vlan_id
= vlan_id
;
1440 fcf_rec
->flag
|= (flag
| RECORD_VALID
);
1441 __lpfc_update_fcf_record_pri(phba
,
1442 bf_get(lpfc_fcf_record_fcf_index
, new_fcf_record
),
1447 * lpfc_register_fcf - Register the FCF with hba.
1448 * @phba: pointer to lpfc hba data structure.
1450 * This routine issues a register fcfi mailbox command to register
1454 lpfc_register_fcf(struct lpfc_hba
*phba
)
1456 LPFC_MBOXQ_t
*fcf_mbxq
;
1459 spin_lock_irq(&phba
->hbalock
);
1460 /* If the FCF is not available do nothing. */
1461 if (!(phba
->fcf
.fcf_flag
& FCF_AVAILABLE
)) {
1462 phba
->hba_flag
&= ~(FCF_TS_INPROG
| FCF_RR_INPROG
);
1463 spin_unlock_irq(&phba
->hbalock
);
1467 /* The FCF is already registered, start discovery */
1468 if (phba
->fcf
.fcf_flag
& FCF_REGISTERED
) {
1469 phba
->fcf
.fcf_flag
|= (FCF_SCAN_DONE
| FCF_IN_USE
);
1470 phba
->hba_flag
&= ~FCF_TS_INPROG
;
1471 if (phba
->pport
->port_state
!= LPFC_FLOGI
&&
1472 phba
->pport
->fc_flag
& FC_FABRIC
) {
1473 phba
->hba_flag
|= FCF_RR_INPROG
;
1474 spin_unlock_irq(&phba
->hbalock
);
1475 lpfc_initial_flogi(phba
->pport
);
1478 spin_unlock_irq(&phba
->hbalock
);
1481 spin_unlock_irq(&phba
->hbalock
);
1483 fcf_mbxq
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
1485 spin_lock_irq(&phba
->hbalock
);
1486 phba
->hba_flag
&= ~(FCF_TS_INPROG
| FCF_RR_INPROG
);
1487 spin_unlock_irq(&phba
->hbalock
);
1491 lpfc_reg_fcfi(phba
, fcf_mbxq
);
1492 fcf_mbxq
->vport
= phba
->pport
;
1493 fcf_mbxq
->mbox_cmpl
= lpfc_mbx_cmpl_reg_fcfi
;
1494 rc
= lpfc_sli_issue_mbox(phba
, fcf_mbxq
, MBX_NOWAIT
);
1495 if (rc
== MBX_NOT_FINISHED
) {
1496 spin_lock_irq(&phba
->hbalock
);
1497 phba
->hba_flag
&= ~(FCF_TS_INPROG
| FCF_RR_INPROG
);
1498 spin_unlock_irq(&phba
->hbalock
);
1499 mempool_free(fcf_mbxq
, phba
->mbox_mem_pool
);
1506 * lpfc_match_fcf_conn_list - Check if the FCF record can be used for discovery.
1507 * @phba: pointer to lpfc hba data structure.
1508 * @new_fcf_record: pointer to fcf record.
1509 * @boot_flag: Indicates if this record used by boot bios.
1510 * @addr_mode: The address mode to be used by this FCF
1511 * @vlan_id: The vlan id to be used as vlan tagging by this FCF.
1513 * This routine compare the fcf record with connect list obtained from the
1514 * config region to decide if this FCF can be used for SAN discovery. It returns
1515 * 1 if this record can be used for SAN discovery else return zero. If this FCF
1516 * record can be used for SAN discovery, the boot_flag will indicate if this FCF
1517 * is used by boot bios and addr_mode will indicate the addressing mode to be
1518 * used for this FCF when the function returns.
1519 * If the FCF record need to be used with a particular vlan id, the vlan is
1520 * set in the vlan_id on return of the function. If not VLAN tagging need to
1521 * be used with the FCF vlan_id will be set to LPFC_FCOE_NULL_VID;
1524 lpfc_match_fcf_conn_list(struct lpfc_hba
*phba
,
1525 struct fcf_record
*new_fcf_record
,
1526 uint32_t *boot_flag
, uint32_t *addr_mode
,
1529 struct lpfc_fcf_conn_entry
*conn_entry
;
1530 int i
, j
, fcf_vlan_id
= 0;
1532 /* Find the lowest VLAN id in the FCF record */
1533 for (i
= 0; i
< 512; i
++) {
1534 if (new_fcf_record
->vlan_bitmap
[i
]) {
1535 fcf_vlan_id
= i
* 8;
1537 while (!((new_fcf_record
->vlan_bitmap
[i
] >> j
) & 1)) {
1545 /* FCF not valid/available or solicitation in progress */
1546 if (!bf_get(lpfc_fcf_record_fcf_avail
, new_fcf_record
) ||
1547 !bf_get(lpfc_fcf_record_fcf_valid
, new_fcf_record
) ||
1548 bf_get(lpfc_fcf_record_fcf_sol
, new_fcf_record
))
1551 if (!(phba
->hba_flag
& HBA_FIP_SUPPORT
)) {
1553 *addr_mode
= bf_get(lpfc_fcf_record_mac_addr_prov
,
1555 if (phba
->valid_vlan
)
1556 *vlan_id
= phba
->vlan_id
;
1558 *vlan_id
= LPFC_FCOE_NULL_VID
;
1563 * If there are no FCF connection table entry, driver connect to all
1566 if (list_empty(&phba
->fcf_conn_rec_list
)) {
1568 *addr_mode
= bf_get(lpfc_fcf_record_mac_addr_prov
,
1572 * When there are no FCF connect entries, use driver's default
1573 * addressing mode - FPMA.
1575 if (*addr_mode
& LPFC_FCF_FPMA
)
1576 *addr_mode
= LPFC_FCF_FPMA
;
1578 /* If FCF record report a vlan id use that vlan id */
1580 *vlan_id
= fcf_vlan_id
;
1582 *vlan_id
= LPFC_FCOE_NULL_VID
;
1586 list_for_each_entry(conn_entry
,
1587 &phba
->fcf_conn_rec_list
, list
) {
1588 if (!(conn_entry
->conn_rec
.flags
& FCFCNCT_VALID
))
1591 if ((conn_entry
->conn_rec
.flags
& FCFCNCT_FBNM_VALID
) &&
1592 !lpfc_fab_name_match(conn_entry
->conn_rec
.fabric_name
,
1595 if ((conn_entry
->conn_rec
.flags
& FCFCNCT_SWNM_VALID
) &&
1596 !lpfc_sw_name_match(conn_entry
->conn_rec
.switch_name
,
1599 if (conn_entry
->conn_rec
.flags
& FCFCNCT_VLAN_VALID
) {
1601 * If the vlan bit map does not have the bit set for the
1602 * vlan id to be used, then it is not a match.
1604 if (!(new_fcf_record
->vlan_bitmap
1605 [conn_entry
->conn_rec
.vlan_tag
/ 8] &
1606 (1 << (conn_entry
->conn_rec
.vlan_tag
% 8))))
1611 * If connection record does not support any addressing mode,
1612 * skip the FCF record.
1614 if (!(bf_get(lpfc_fcf_record_mac_addr_prov
, new_fcf_record
)
1615 & (LPFC_FCF_FPMA
| LPFC_FCF_SPMA
)))
1619 * Check if the connection record specifies a required
1622 if ((conn_entry
->conn_rec
.flags
& FCFCNCT_AM_VALID
) &&
1623 !(conn_entry
->conn_rec
.flags
& FCFCNCT_AM_PREFERRED
)) {
1626 * If SPMA required but FCF not support this continue.
1628 if ((conn_entry
->conn_rec
.flags
& FCFCNCT_AM_SPMA
) &&
1629 !(bf_get(lpfc_fcf_record_mac_addr_prov
,
1630 new_fcf_record
) & LPFC_FCF_SPMA
))
1634 * If FPMA required but FCF not support this continue.
1636 if (!(conn_entry
->conn_rec
.flags
& FCFCNCT_AM_SPMA
) &&
1637 !(bf_get(lpfc_fcf_record_mac_addr_prov
,
1638 new_fcf_record
) & LPFC_FCF_FPMA
))
1643 * This fcf record matches filtering criteria.
1645 if (conn_entry
->conn_rec
.flags
& FCFCNCT_BOOT
)
1651 * If user did not specify any addressing mode, or if the
1652 * preferred addressing mode specified by user is not supported
1653 * by FCF, allow fabric to pick the addressing mode.
1655 *addr_mode
= bf_get(lpfc_fcf_record_mac_addr_prov
,
1658 * If the user specified a required address mode, assign that
1661 if ((conn_entry
->conn_rec
.flags
& FCFCNCT_AM_VALID
) &&
1662 (!(conn_entry
->conn_rec
.flags
& FCFCNCT_AM_PREFERRED
)))
1663 *addr_mode
= (conn_entry
->conn_rec
.flags
&
1665 LPFC_FCF_SPMA
: LPFC_FCF_FPMA
;
1667 * If the user specified a preferred address mode, use the
1668 * addr mode only if FCF support the addr_mode.
1670 else if ((conn_entry
->conn_rec
.flags
& FCFCNCT_AM_VALID
) &&
1671 (conn_entry
->conn_rec
.flags
& FCFCNCT_AM_PREFERRED
) &&
1672 (conn_entry
->conn_rec
.flags
& FCFCNCT_AM_SPMA
) &&
1673 (*addr_mode
& LPFC_FCF_SPMA
))
1674 *addr_mode
= LPFC_FCF_SPMA
;
1675 else if ((conn_entry
->conn_rec
.flags
& FCFCNCT_AM_VALID
) &&
1676 (conn_entry
->conn_rec
.flags
& FCFCNCT_AM_PREFERRED
) &&
1677 !(conn_entry
->conn_rec
.flags
& FCFCNCT_AM_SPMA
) &&
1678 (*addr_mode
& LPFC_FCF_FPMA
))
1679 *addr_mode
= LPFC_FCF_FPMA
;
1681 /* If matching connect list has a vlan id, use it */
1682 if (conn_entry
->conn_rec
.flags
& FCFCNCT_VLAN_VALID
)
1683 *vlan_id
= conn_entry
->conn_rec
.vlan_tag
;
1685 * If no vlan id is specified in connect list, use the vlan id
1688 else if (fcf_vlan_id
)
1689 *vlan_id
= fcf_vlan_id
;
1691 *vlan_id
= LPFC_FCOE_NULL_VID
;
1700 * lpfc_check_pending_fcoe_event - Check if there is pending fcoe event.
1701 * @phba: pointer to lpfc hba data structure.
1702 * @unreg_fcf: Unregister FCF if FCF table need to be re-scaned.
1704 * This function check if there is any fcoe event pending while driver
1705 * scan FCF entries. If there is any pending event, it will restart the
1706 * FCF saning and return 1 else return 0.
1709 lpfc_check_pending_fcoe_event(struct lpfc_hba
*phba
, uint8_t unreg_fcf
)
1712 * If the Link is up and no FCoE events while in the
1713 * FCF discovery, no need to restart FCF discovery.
1715 if ((phba
->link_state
>= LPFC_LINK_UP
) &&
1716 (phba
->fcoe_eventtag
== phba
->fcoe_eventtag_at_fcf_scan
))
1719 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
,
1720 "2768 Pending link or FCF event during current "
1721 "handling of the previous event: link_state:x%x, "
1722 "evt_tag_at_scan:x%x, evt_tag_current:x%x\n",
1723 phba
->link_state
, phba
->fcoe_eventtag_at_fcf_scan
,
1724 phba
->fcoe_eventtag
);
1726 spin_lock_irq(&phba
->hbalock
);
1727 phba
->fcf
.fcf_flag
&= ~FCF_AVAILABLE
;
1728 spin_unlock_irq(&phba
->hbalock
);
1730 if (phba
->link_state
>= LPFC_LINK_UP
) {
1731 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
| LOG_DISCOVERY
,
1732 "2780 Restart FCF table scan due to "
1733 "pending FCF event:evt_tag_at_scan:x%x, "
1734 "evt_tag_current:x%x\n",
1735 phba
->fcoe_eventtag_at_fcf_scan
,
1736 phba
->fcoe_eventtag
);
1737 lpfc_sli4_fcf_scan_read_fcf_rec(phba
, LPFC_FCOE_FCF_GET_FIRST
);
1740 * Do not continue FCF discovery and clear FCF_TS_INPROG
1743 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
| LOG_DISCOVERY
,
1744 "2833 Stop FCF discovery process due to link "
1745 "state change (x%x)\n", phba
->link_state
);
1746 spin_lock_irq(&phba
->hbalock
);
1747 phba
->hba_flag
&= ~(FCF_TS_INPROG
| FCF_RR_INPROG
);
1748 phba
->fcf
.fcf_flag
&= ~(FCF_REDISC_FOV
| FCF_DISCOVERY
);
1749 spin_unlock_irq(&phba
->hbalock
);
1752 /* Unregister the currently registered FCF if required */
1754 spin_lock_irq(&phba
->hbalock
);
1755 phba
->fcf
.fcf_flag
&= ~FCF_REGISTERED
;
1756 spin_unlock_irq(&phba
->hbalock
);
1757 lpfc_sli4_unregister_fcf(phba
);
1763 * lpfc_sli4_new_fcf_random_select - Randomly select an eligible new fcf record
1764 * @phba: pointer to lpfc hba data structure.
1765 * @fcf_cnt: number of eligible fcf record seen so far.
1767 * This function makes an running random selection decision on FCF record to
1768 * use through a sequence of @fcf_cnt eligible FCF records with equal
1769 * probability. To perform integer manunipulation of random numbers with
1770 * size unit32_t, the lower 16 bits of the 32-bit random number returned
1771 * from prandom_u32() are taken as the random random number generated.
1773 * Returns true when outcome is for the newly read FCF record should be
1774 * chosen; otherwise, return false when outcome is for keeping the previously
1775 * chosen FCF record.
1778 lpfc_sli4_new_fcf_random_select(struct lpfc_hba
*phba
, uint32_t fcf_cnt
)
1782 /* Get 16-bit uniform random number */
1783 rand_num
= 0xFFFF & prandom_u32();
1785 /* Decision with probability 1/fcf_cnt */
1786 if ((fcf_cnt
* rand_num
) < 0xFFFF)
1793 * lpfc_sli4_fcf_rec_mbox_parse - Parse read_fcf mbox command.
1794 * @phba: pointer to lpfc hba data structure.
1795 * @mboxq: pointer to mailbox object.
1796 * @next_fcf_index: pointer to holder of next fcf index.
1798 * This routine parses the non-embedded fcf mailbox command by performing the
1799 * necessarily error checking, non-embedded read FCF record mailbox command
1800 * SGE parsing, and endianness swapping.
1802 * Returns the pointer to the new FCF record in the non-embedded mailbox
1803 * command DMA memory if successfully, other NULL.
1805 static struct fcf_record
*
1806 lpfc_sli4_fcf_rec_mbox_parse(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*mboxq
,
1807 uint16_t *next_fcf_index
)
1810 struct lpfc_mbx_sge sge
;
1811 struct lpfc_mbx_read_fcf_tbl
*read_fcf
;
1812 uint32_t shdr_status
, shdr_add_status
, if_type
;
1813 union lpfc_sli4_cfg_shdr
*shdr
;
1814 struct fcf_record
*new_fcf_record
;
1816 /* Get the first SGE entry from the non-embedded DMA memory. This
1817 * routine only uses a single SGE.
1819 lpfc_sli4_mbx_sge_get(mboxq
, 0, &sge
);
1820 if (unlikely(!mboxq
->sge_array
)) {
1821 lpfc_printf_log(phba
, KERN_ERR
, LOG_MBOX
,
1822 "2524 Failed to get the non-embedded SGE "
1823 "virtual address\n");
1826 virt_addr
= mboxq
->sge_array
->addr
[0];
1828 shdr
= (union lpfc_sli4_cfg_shdr
*)virt_addr
;
1829 lpfc_sli_pcimem_bcopy(shdr
, shdr
,
1830 sizeof(union lpfc_sli4_cfg_shdr
));
1831 shdr_status
= bf_get(lpfc_mbox_hdr_status
, &shdr
->response
);
1832 if_type
= bf_get(lpfc_sli_intf_if_type
, &phba
->sli4_hba
.sli_intf
);
1833 shdr_add_status
= bf_get(lpfc_mbox_hdr_add_status
, &shdr
->response
);
1834 if (shdr_status
|| shdr_add_status
) {
1835 if (shdr_status
== STATUS_FCF_TABLE_EMPTY
||
1836 if_type
== LPFC_SLI_INTF_IF_TYPE_2
)
1837 lpfc_printf_log(phba
, KERN_ERR
, LOG_FIP
,
1838 "2726 READ_FCF_RECORD Indicates empty "
1841 lpfc_printf_log(phba
, KERN_ERR
, LOG_FIP
,
1842 "2521 READ_FCF_RECORD mailbox failed "
1843 "with status x%x add_status x%x, "
1844 "mbx\n", shdr_status
, shdr_add_status
);
1848 /* Interpreting the returned information of the FCF record */
1849 read_fcf
= (struct lpfc_mbx_read_fcf_tbl
*)virt_addr
;
1850 lpfc_sli_pcimem_bcopy(read_fcf
, read_fcf
,
1851 sizeof(struct lpfc_mbx_read_fcf_tbl
));
1852 *next_fcf_index
= bf_get(lpfc_mbx_read_fcf_tbl_nxt_vindx
, read_fcf
);
1853 new_fcf_record
= (struct fcf_record
*)(virt_addr
+
1854 sizeof(struct lpfc_mbx_read_fcf_tbl
));
1855 lpfc_sli_pcimem_bcopy(new_fcf_record
, new_fcf_record
,
1856 offsetof(struct fcf_record
, vlan_bitmap
));
1857 new_fcf_record
->word137
= le32_to_cpu(new_fcf_record
->word137
);
1858 new_fcf_record
->word138
= le32_to_cpu(new_fcf_record
->word138
);
1860 return new_fcf_record
;
1864 * lpfc_sli4_log_fcf_record_info - Log the information of a fcf record
1865 * @phba: pointer to lpfc hba data structure.
1866 * @fcf_record: pointer to the fcf record.
1867 * @vlan_id: the lowest vlan identifier associated to this fcf record.
1868 * @next_fcf_index: the index to the next fcf record in hba's fcf table.
1870 * This routine logs the detailed FCF record if the LOG_FIP loggin is
1874 lpfc_sli4_log_fcf_record_info(struct lpfc_hba
*phba
,
1875 struct fcf_record
*fcf_record
,
1877 uint16_t next_fcf_index
)
1879 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
,
1880 "2764 READ_FCF_RECORD:\n"
1881 "\tFCF_Index : x%x\n"
1882 "\tFCF_Avail : x%x\n"
1883 "\tFCF_Valid : x%x\n"
1885 "\tFIP_Priority : x%x\n"
1886 "\tMAC_Provider : x%x\n"
1887 "\tLowest VLANID : x%x\n"
1888 "\tFCF_MAC Addr : x%x:%x:%x:%x:%x:%x\n"
1889 "\tFabric_Name : x%x:%x:%x:%x:%x:%x:%x:%x\n"
1890 "\tSwitch_Name : x%x:%x:%x:%x:%x:%x:%x:%x\n"
1891 "\tNext_FCF_Index: x%x\n",
1892 bf_get(lpfc_fcf_record_fcf_index
, fcf_record
),
1893 bf_get(lpfc_fcf_record_fcf_avail
, fcf_record
),
1894 bf_get(lpfc_fcf_record_fcf_valid
, fcf_record
),
1895 bf_get(lpfc_fcf_record_fcf_sol
, fcf_record
),
1896 fcf_record
->fip_priority
,
1897 bf_get(lpfc_fcf_record_mac_addr_prov
, fcf_record
),
1899 bf_get(lpfc_fcf_record_mac_0
, fcf_record
),
1900 bf_get(lpfc_fcf_record_mac_1
, fcf_record
),
1901 bf_get(lpfc_fcf_record_mac_2
, fcf_record
),
1902 bf_get(lpfc_fcf_record_mac_3
, fcf_record
),
1903 bf_get(lpfc_fcf_record_mac_4
, fcf_record
),
1904 bf_get(lpfc_fcf_record_mac_5
, fcf_record
),
1905 bf_get(lpfc_fcf_record_fab_name_0
, fcf_record
),
1906 bf_get(lpfc_fcf_record_fab_name_1
, fcf_record
),
1907 bf_get(lpfc_fcf_record_fab_name_2
, fcf_record
),
1908 bf_get(lpfc_fcf_record_fab_name_3
, fcf_record
),
1909 bf_get(lpfc_fcf_record_fab_name_4
, fcf_record
),
1910 bf_get(lpfc_fcf_record_fab_name_5
, fcf_record
),
1911 bf_get(lpfc_fcf_record_fab_name_6
, fcf_record
),
1912 bf_get(lpfc_fcf_record_fab_name_7
, fcf_record
),
1913 bf_get(lpfc_fcf_record_switch_name_0
, fcf_record
),
1914 bf_get(lpfc_fcf_record_switch_name_1
, fcf_record
),
1915 bf_get(lpfc_fcf_record_switch_name_2
, fcf_record
),
1916 bf_get(lpfc_fcf_record_switch_name_3
, fcf_record
),
1917 bf_get(lpfc_fcf_record_switch_name_4
, fcf_record
),
1918 bf_get(lpfc_fcf_record_switch_name_5
, fcf_record
),
1919 bf_get(lpfc_fcf_record_switch_name_6
, fcf_record
),
1920 bf_get(lpfc_fcf_record_switch_name_7
, fcf_record
),
1925 lpfc_sli4_fcf_record_match - testing new FCF record for matching existing FCF
1926 * @phba: pointer to lpfc hba data structure.
1927 * @fcf_rec: pointer to an existing FCF record.
1928 * @new_fcf_record: pointer to a new FCF record.
1929 * @new_vlan_id: vlan id from the new FCF record.
1931 * This function performs matching test of a new FCF record against an existing
1932 * FCF record. If the new_vlan_id passed in is LPFC_FCOE_IGNORE_VID, vlan id
1933 * will not be used as part of the FCF record matching criteria.
1935 * Returns true if all the fields matching, otherwise returns false.
1938 lpfc_sli4_fcf_record_match(struct lpfc_hba
*phba
,
1939 struct lpfc_fcf_rec
*fcf_rec
,
1940 struct fcf_record
*new_fcf_record
,
1941 uint16_t new_vlan_id
)
1943 if (new_vlan_id
!= LPFC_FCOE_IGNORE_VID
)
1944 if (!lpfc_vlan_id_match(fcf_rec
->vlan_id
, new_vlan_id
))
1946 if (!lpfc_mac_addr_match(fcf_rec
->mac_addr
, new_fcf_record
))
1948 if (!lpfc_sw_name_match(fcf_rec
->switch_name
, new_fcf_record
))
1950 if (!lpfc_fab_name_match(fcf_rec
->fabric_name
, new_fcf_record
))
1952 if (fcf_rec
->priority
!= new_fcf_record
->fip_priority
)
1958 * lpfc_sli4_fcf_rr_next_proc - processing next roundrobin fcf
1959 * @vport: Pointer to vport object.
1960 * @fcf_index: index to next fcf.
1962 * This function processing the roundrobin fcf failover to next fcf index.
1963 * When this function is invoked, there will be a current fcf registered
1965 * Return: 0 for continue retrying flogi on currently registered fcf;
1966 * 1 for stop flogi on currently registered fcf;
1968 int lpfc_sli4_fcf_rr_next_proc(struct lpfc_vport
*vport
, uint16_t fcf_index
)
1970 struct lpfc_hba
*phba
= vport
->phba
;
1973 if (fcf_index
== LPFC_FCOE_FCF_NEXT_NONE
) {
1974 spin_lock_irq(&phba
->hbalock
);
1975 if (phba
->hba_flag
& HBA_DEVLOSS_TMO
) {
1976 spin_unlock_irq(&phba
->hbalock
);
1977 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
,
1978 "2872 Devloss tmo with no eligible "
1979 "FCF, unregister in-use FCF (x%x) "
1980 "and rescan FCF table\n",
1981 phba
->fcf
.current_rec
.fcf_indx
);
1982 lpfc_unregister_fcf_rescan(phba
);
1983 goto stop_flogi_current_fcf
;
1985 /* Mark the end to FLOGI roundrobin failover */
1986 phba
->hba_flag
&= ~FCF_RR_INPROG
;
1987 /* Allow action to new fcf asynchronous event */
1988 phba
->fcf
.fcf_flag
&= ~(FCF_AVAILABLE
| FCF_SCAN_DONE
);
1989 spin_unlock_irq(&phba
->hbalock
);
1990 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
,
1991 "2865 No FCF available, stop roundrobin FCF "
1992 "failover and change port state:x%x/x%x\n",
1993 phba
->pport
->port_state
, LPFC_VPORT_UNKNOWN
);
1994 phba
->pport
->port_state
= LPFC_VPORT_UNKNOWN
;
1995 goto stop_flogi_current_fcf
;
1997 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
| LOG_ELS
,
1998 "2794 Try FLOGI roundrobin FCF failover to "
1999 "(x%x)\n", fcf_index
);
2000 rc
= lpfc_sli4_fcf_rr_read_fcf_rec(phba
, fcf_index
);
2002 lpfc_printf_log(phba
, KERN_WARNING
, LOG_FIP
| LOG_ELS
,
2003 "2761 FLOGI roundrobin FCF failover "
2004 "failed (rc:x%x) to read FCF (x%x)\n",
2005 rc
, phba
->fcf
.current_rec
.fcf_indx
);
2007 goto stop_flogi_current_fcf
;
2011 stop_flogi_current_fcf
:
2012 lpfc_can_disctmo(vport
);
2017 * lpfc_sli4_fcf_pri_list_del
2018 * @phba: pointer to lpfc hba data structure.
2019 * @fcf_index the index of the fcf record to delete
2020 * This routine checks the on list flag of the fcf_index to be deleted.
2021 * If it is one the list then it is removed from the list, and the flag
2022 * is cleared. This routine grab the hbalock before removing the fcf
2023 * record from the list.
2025 static void lpfc_sli4_fcf_pri_list_del(struct lpfc_hba
*phba
,
2028 struct lpfc_fcf_pri
*new_fcf_pri
;
2030 new_fcf_pri
= &phba
->fcf
.fcf_pri
[fcf_index
];
2031 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
,
2032 "3058 deleting idx x%x pri x%x flg x%x\n",
2033 fcf_index
, new_fcf_pri
->fcf_rec
.priority
,
2034 new_fcf_pri
->fcf_rec
.flag
);
2035 spin_lock_irq(&phba
->hbalock
);
2036 if (new_fcf_pri
->fcf_rec
.flag
& LPFC_FCF_ON_PRI_LIST
) {
2037 if (phba
->fcf
.current_rec
.priority
==
2038 new_fcf_pri
->fcf_rec
.priority
)
2039 phba
->fcf
.eligible_fcf_cnt
--;
2040 list_del_init(&new_fcf_pri
->list
);
2041 new_fcf_pri
->fcf_rec
.flag
&= ~LPFC_FCF_ON_PRI_LIST
;
2043 spin_unlock_irq(&phba
->hbalock
);
2047 * lpfc_sli4_set_fcf_flogi_fail
2048 * @phba: pointer to lpfc hba data structure.
2049 * @fcf_index the index of the fcf record to update
2050 * This routine acquires the hbalock and then set the LPFC_FCF_FLOGI_FAILED
2051 * flag so the the round robin slection for the particular priority level
2052 * will try a different fcf record that does not have this bit set.
2053 * If the fcf record is re-read for any reason this flag is cleared brfore
2054 * adding it to the priority list.
2057 lpfc_sli4_set_fcf_flogi_fail(struct lpfc_hba
*phba
, uint16_t fcf_index
)
2059 struct lpfc_fcf_pri
*new_fcf_pri
;
2060 new_fcf_pri
= &phba
->fcf
.fcf_pri
[fcf_index
];
2061 spin_lock_irq(&phba
->hbalock
);
2062 new_fcf_pri
->fcf_rec
.flag
|= LPFC_FCF_FLOGI_FAILED
;
2063 spin_unlock_irq(&phba
->hbalock
);
2067 * lpfc_sli4_fcf_pri_list_add
2068 * @phba: pointer to lpfc hba data structure.
2069 * @fcf_index the index of the fcf record to add
2070 * This routine checks the priority of the fcf_index to be added.
2071 * If it is a lower priority than the current head of the fcf_pri list
2072 * then it is added to the list in the right order.
2073 * If it is the same priority as the current head of the list then it
2074 * is added to the head of the list and its bit in the rr_bmask is set.
2075 * If the fcf_index to be added is of a higher priority than the current
2076 * head of the list then the rr_bmask is cleared, its bit is set in the
2077 * rr_bmask and it is added to the head of the list.
2079 * 0=success 1=failure
2081 static int lpfc_sli4_fcf_pri_list_add(struct lpfc_hba
*phba
,
2083 struct fcf_record
*new_fcf_record
)
2085 uint16_t current_fcf_pri
;
2086 uint16_t last_index
;
2087 struct lpfc_fcf_pri
*fcf_pri
;
2088 struct lpfc_fcf_pri
*next_fcf_pri
;
2089 struct lpfc_fcf_pri
*new_fcf_pri
;
2092 new_fcf_pri
= &phba
->fcf
.fcf_pri
[fcf_index
];
2093 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
,
2094 "3059 adding idx x%x pri x%x flg x%x\n",
2095 fcf_index
, new_fcf_record
->fip_priority
,
2096 new_fcf_pri
->fcf_rec
.flag
);
2097 spin_lock_irq(&phba
->hbalock
);
2098 if (new_fcf_pri
->fcf_rec
.flag
& LPFC_FCF_ON_PRI_LIST
)
2099 list_del_init(&new_fcf_pri
->list
);
2100 new_fcf_pri
->fcf_rec
.fcf_index
= fcf_index
;
2101 new_fcf_pri
->fcf_rec
.priority
= new_fcf_record
->fip_priority
;
2102 if (list_empty(&phba
->fcf
.fcf_pri_list
)) {
2103 list_add(&new_fcf_pri
->list
, &phba
->fcf
.fcf_pri_list
);
2104 ret
= lpfc_sli4_fcf_rr_index_set(phba
,
2105 new_fcf_pri
->fcf_rec
.fcf_index
);
2109 last_index
= find_first_bit(phba
->fcf
.fcf_rr_bmask
,
2110 LPFC_SLI4_FCF_TBL_INDX_MAX
);
2111 if (last_index
>= LPFC_SLI4_FCF_TBL_INDX_MAX
) {
2112 ret
= 0; /* Empty rr list */
2115 current_fcf_pri
= phba
->fcf
.fcf_pri
[last_index
].fcf_rec
.priority
;
2116 if (new_fcf_pri
->fcf_rec
.priority
<= current_fcf_pri
) {
2117 list_add(&new_fcf_pri
->list
, &phba
->fcf
.fcf_pri_list
);
2118 if (new_fcf_pri
->fcf_rec
.priority
< current_fcf_pri
) {
2119 memset(phba
->fcf
.fcf_rr_bmask
, 0,
2120 sizeof(*phba
->fcf
.fcf_rr_bmask
));
2121 /* fcfs_at_this_priority_level = 1; */
2122 phba
->fcf
.eligible_fcf_cnt
= 1;
2124 /* fcfs_at_this_priority_level++; */
2125 phba
->fcf
.eligible_fcf_cnt
++;
2126 ret
= lpfc_sli4_fcf_rr_index_set(phba
,
2127 new_fcf_pri
->fcf_rec
.fcf_index
);
2131 list_for_each_entry_safe(fcf_pri
, next_fcf_pri
,
2132 &phba
->fcf
.fcf_pri_list
, list
) {
2133 if (new_fcf_pri
->fcf_rec
.priority
<=
2134 fcf_pri
->fcf_rec
.priority
) {
2135 if (fcf_pri
->list
.prev
== &phba
->fcf
.fcf_pri_list
)
2136 list_add(&new_fcf_pri
->list
,
2137 &phba
->fcf
.fcf_pri_list
);
2139 list_add(&new_fcf_pri
->list
,
2140 &((struct lpfc_fcf_pri
*)
2141 fcf_pri
->list
.prev
)->list
);
2144 } else if (fcf_pri
->list
.next
== &phba
->fcf
.fcf_pri_list
2145 || new_fcf_pri
->fcf_rec
.priority
<
2146 next_fcf_pri
->fcf_rec
.priority
) {
2147 list_add(&new_fcf_pri
->list
, &fcf_pri
->list
);
2151 if (new_fcf_pri
->fcf_rec
.priority
> fcf_pri
->fcf_rec
.priority
)
2157 /* we use = instead of |= to clear the FLOGI_FAILED flag. */
2158 new_fcf_pri
->fcf_rec
.flag
= LPFC_FCF_ON_PRI_LIST
;
2159 spin_unlock_irq(&phba
->hbalock
);
2164 * lpfc_mbx_cmpl_fcf_scan_read_fcf_rec - fcf scan read_fcf mbox cmpl handler.
2165 * @phba: pointer to lpfc hba data structure.
2166 * @mboxq: pointer to mailbox object.
2168 * This function iterates through all the fcf records available in
2169 * HBA and chooses the optimal FCF record for discovery. After finding
2170 * the FCF for discovery it registers the FCF record and kicks start
2172 * If FCF_IN_USE flag is set in currently used FCF, the routine tries to
2173 * use an FCF record which matches fabric name and mac address of the
2174 * currently used FCF record.
2175 * If the driver supports only one FCF, it will try to use the FCF record
2176 * used by BOOT_BIOS.
2179 lpfc_mbx_cmpl_fcf_scan_read_fcf_rec(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*mboxq
)
2181 struct fcf_record
*new_fcf_record
;
2182 uint32_t boot_flag
, addr_mode
;
2183 uint16_t fcf_index
, next_fcf_index
;
2184 struct lpfc_fcf_rec
*fcf_rec
= NULL
;
2185 uint16_t vlan_id
= LPFC_FCOE_NULL_VID
;
2186 bool select_new_fcf
;
2189 /* If there is pending FCoE event restart FCF table scan */
2190 if (lpfc_check_pending_fcoe_event(phba
, LPFC_SKIP_UNREG_FCF
)) {
2191 lpfc_sli4_mbox_cmd_free(phba
, mboxq
);
2195 /* Parse the FCF record from the non-embedded mailbox command */
2196 new_fcf_record
= lpfc_sli4_fcf_rec_mbox_parse(phba
, mboxq
,
2198 if (!new_fcf_record
) {
2199 lpfc_printf_log(phba
, KERN_ERR
, LOG_FIP
,
2200 "2765 Mailbox command READ_FCF_RECORD "
2201 "failed to retrieve a FCF record.\n");
2202 /* Let next new FCF event trigger fast failover */
2203 spin_lock_irq(&phba
->hbalock
);
2204 phba
->hba_flag
&= ~FCF_TS_INPROG
;
2205 spin_unlock_irq(&phba
->hbalock
);
2206 lpfc_sli4_mbox_cmd_free(phba
, mboxq
);
2210 /* Check the FCF record against the connection list */
2211 rc
= lpfc_match_fcf_conn_list(phba
, new_fcf_record
, &boot_flag
,
2212 &addr_mode
, &vlan_id
);
2214 /* Log the FCF record information if turned on */
2215 lpfc_sli4_log_fcf_record_info(phba
, new_fcf_record
, vlan_id
,
2219 * If the fcf record does not match with connect list entries
2220 * read the next entry; otherwise, this is an eligible FCF
2221 * record for roundrobin FCF failover.
2224 lpfc_sli4_fcf_pri_list_del(phba
,
2225 bf_get(lpfc_fcf_record_fcf_index
,
2227 lpfc_printf_log(phba
, KERN_WARNING
, LOG_FIP
,
2228 "2781 FCF (x%x) failed connection "
2229 "list check: (x%x/x%x/%x)\n",
2230 bf_get(lpfc_fcf_record_fcf_index
,
2232 bf_get(lpfc_fcf_record_fcf_avail
,
2234 bf_get(lpfc_fcf_record_fcf_valid
,
2236 bf_get(lpfc_fcf_record_fcf_sol
,
2238 if ((phba
->fcf
.fcf_flag
& FCF_IN_USE
) &&
2239 lpfc_sli4_fcf_record_match(phba
, &phba
->fcf
.current_rec
,
2240 new_fcf_record
, LPFC_FCOE_IGNORE_VID
)) {
2241 if (bf_get(lpfc_fcf_record_fcf_index
, new_fcf_record
) !=
2242 phba
->fcf
.current_rec
.fcf_indx
) {
2243 lpfc_printf_log(phba
, KERN_ERR
, LOG_FIP
,
2244 "2862 FCF (x%x) matches property "
2245 "of in-use FCF (x%x)\n",
2246 bf_get(lpfc_fcf_record_fcf_index
,
2248 phba
->fcf
.current_rec
.fcf_indx
);
2252 * In case the current in-use FCF record becomes
2253 * invalid/unavailable during FCF discovery that
2254 * was not triggered by fast FCF failover process,
2255 * treat it as fast FCF failover.
2257 if (!(phba
->fcf
.fcf_flag
& FCF_REDISC_PEND
) &&
2258 !(phba
->fcf
.fcf_flag
& FCF_REDISC_FOV
)) {
2259 lpfc_printf_log(phba
, KERN_WARNING
, LOG_FIP
,
2260 "2835 Invalid in-use FCF "
2261 "(x%x), enter FCF failover "
2263 phba
->fcf
.current_rec
.fcf_indx
);
2264 spin_lock_irq(&phba
->hbalock
);
2265 phba
->fcf
.fcf_flag
|= FCF_REDISC_FOV
;
2266 spin_unlock_irq(&phba
->hbalock
);
2267 lpfc_sli4_mbox_cmd_free(phba
, mboxq
);
2268 lpfc_sli4_fcf_scan_read_fcf_rec(phba
,
2269 LPFC_FCOE_FCF_GET_FIRST
);
2275 fcf_index
= bf_get(lpfc_fcf_record_fcf_index
, new_fcf_record
);
2276 rc
= lpfc_sli4_fcf_pri_list_add(phba
, fcf_index
,
2283 * If this is not the first FCF discovery of the HBA, use last
2284 * FCF record for the discovery. The condition that a rescan
2285 * matches the in-use FCF record: fabric name, switch name, mac
2286 * address, and vlan_id.
2288 spin_lock_irq(&phba
->hbalock
);
2289 if (phba
->fcf
.fcf_flag
& FCF_IN_USE
) {
2290 if (phba
->cfg_fcf_failover_policy
== LPFC_FCF_FOV
&&
2291 lpfc_sli4_fcf_record_match(phba
, &phba
->fcf
.current_rec
,
2292 new_fcf_record
, vlan_id
)) {
2293 if (bf_get(lpfc_fcf_record_fcf_index
, new_fcf_record
) ==
2294 phba
->fcf
.current_rec
.fcf_indx
) {
2295 phba
->fcf
.fcf_flag
|= FCF_AVAILABLE
;
2296 if (phba
->fcf
.fcf_flag
& FCF_REDISC_PEND
)
2297 /* Stop FCF redisc wait timer */
2298 __lpfc_sli4_stop_fcf_redisc_wait_timer(
2300 else if (phba
->fcf
.fcf_flag
& FCF_REDISC_FOV
)
2301 /* Fast failover, mark completed */
2302 phba
->fcf
.fcf_flag
&= ~FCF_REDISC_FOV
;
2303 spin_unlock_irq(&phba
->hbalock
);
2304 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
,
2305 "2836 New FCF matches in-use "
2306 "FCF (x%x), port_state:x%x, "
2308 phba
->fcf
.current_rec
.fcf_indx
,
2309 phba
->pport
->port_state
,
2310 phba
->pport
->fc_flag
);
2313 lpfc_printf_log(phba
, KERN_ERR
, LOG_FIP
,
2314 "2863 New FCF (x%x) matches "
2315 "property of in-use FCF (x%x)\n",
2316 bf_get(lpfc_fcf_record_fcf_index
,
2318 phba
->fcf
.current_rec
.fcf_indx
);
2321 * Read next FCF record from HBA searching for the matching
2322 * with in-use record only if not during the fast failover
2323 * period. In case of fast failover period, it shall try to
2324 * determine whether the FCF record just read should be the
2327 if (!(phba
->fcf
.fcf_flag
& FCF_REDISC_FOV
)) {
2328 spin_unlock_irq(&phba
->hbalock
);
2333 * Update on failover FCF record only if it's in FCF fast-failover
2334 * period; otherwise, update on current FCF record.
2336 if (phba
->fcf
.fcf_flag
& FCF_REDISC_FOV
)
2337 fcf_rec
= &phba
->fcf
.failover_rec
;
2339 fcf_rec
= &phba
->fcf
.current_rec
;
2341 if (phba
->fcf
.fcf_flag
& FCF_AVAILABLE
) {
2343 * If the driver FCF record does not have boot flag
2344 * set and new hba fcf record has boot flag set, use
2345 * the new hba fcf record.
2347 if (boot_flag
&& !(fcf_rec
->flag
& BOOT_ENABLE
)) {
2348 /* Choose this FCF record */
2349 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
,
2350 "2837 Update current FCF record "
2351 "(x%x) with new FCF record (x%x)\n",
2353 bf_get(lpfc_fcf_record_fcf_index
,
2355 __lpfc_update_fcf_record(phba
, fcf_rec
, new_fcf_record
,
2356 addr_mode
, vlan_id
, BOOT_ENABLE
);
2357 spin_unlock_irq(&phba
->hbalock
);
2361 * If the driver FCF record has boot flag set and the
2362 * new hba FCF record does not have boot flag, read
2363 * the next FCF record.
2365 if (!boot_flag
&& (fcf_rec
->flag
& BOOT_ENABLE
)) {
2366 spin_unlock_irq(&phba
->hbalock
);
2370 * If the new hba FCF record has lower priority value
2371 * than the driver FCF record, use the new record.
2373 if (new_fcf_record
->fip_priority
< fcf_rec
->priority
) {
2374 /* Choose the new FCF record with lower priority */
2375 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
,
2376 "2838 Update current FCF record "
2377 "(x%x) with new FCF record (x%x)\n",
2379 bf_get(lpfc_fcf_record_fcf_index
,
2381 __lpfc_update_fcf_record(phba
, fcf_rec
, new_fcf_record
,
2382 addr_mode
, vlan_id
, 0);
2383 /* Reset running random FCF selection count */
2384 phba
->fcf
.eligible_fcf_cnt
= 1;
2385 } else if (new_fcf_record
->fip_priority
== fcf_rec
->priority
) {
2386 /* Update running random FCF selection count */
2387 phba
->fcf
.eligible_fcf_cnt
++;
2388 select_new_fcf
= lpfc_sli4_new_fcf_random_select(phba
,
2389 phba
->fcf
.eligible_fcf_cnt
);
2390 if (select_new_fcf
) {
2391 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
,
2392 "2839 Update current FCF record "
2393 "(x%x) with new FCF record (x%x)\n",
2395 bf_get(lpfc_fcf_record_fcf_index
,
2397 /* Choose the new FCF by random selection */
2398 __lpfc_update_fcf_record(phba
, fcf_rec
,
2400 addr_mode
, vlan_id
, 0);
2403 spin_unlock_irq(&phba
->hbalock
);
2407 * This is the first suitable FCF record, choose this record for
2408 * initial best-fit FCF.
2411 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
,
2412 "2840 Update initial FCF candidate "
2414 bf_get(lpfc_fcf_record_fcf_index
,
2416 __lpfc_update_fcf_record(phba
, fcf_rec
, new_fcf_record
,
2417 addr_mode
, vlan_id
, (boot_flag
?
2419 phba
->fcf
.fcf_flag
|= FCF_AVAILABLE
;
2420 /* Setup initial running random FCF selection count */
2421 phba
->fcf
.eligible_fcf_cnt
= 1;
2423 spin_unlock_irq(&phba
->hbalock
);
2427 lpfc_sli4_mbox_cmd_free(phba
, mboxq
);
2428 if (next_fcf_index
== LPFC_FCOE_FCF_NEXT_NONE
|| next_fcf_index
== 0) {
2429 if (phba
->fcf
.fcf_flag
& FCF_REDISC_FOV
) {
2431 * Case of FCF fast failover scan
2435 * It has not found any suitable FCF record, cancel
2436 * FCF scan inprogress, and do nothing
2438 if (!(phba
->fcf
.failover_rec
.flag
& RECORD_VALID
)) {
2439 lpfc_printf_log(phba
, KERN_WARNING
, LOG_FIP
,
2440 "2782 No suitable FCF found: "
2442 phba
->fcoe_eventtag_at_fcf_scan
,
2443 bf_get(lpfc_fcf_record_fcf_index
,
2445 spin_lock_irq(&phba
->hbalock
);
2446 if (phba
->hba_flag
& HBA_DEVLOSS_TMO
) {
2447 phba
->hba_flag
&= ~FCF_TS_INPROG
;
2448 spin_unlock_irq(&phba
->hbalock
);
2449 /* Unregister in-use FCF and rescan */
2450 lpfc_printf_log(phba
, KERN_INFO
,
2452 "2864 On devloss tmo "
2453 "unreg in-use FCF and "
2454 "rescan FCF table\n");
2455 lpfc_unregister_fcf_rescan(phba
);
2459 * Let next new FCF event trigger fast failover
2461 phba
->hba_flag
&= ~FCF_TS_INPROG
;
2462 spin_unlock_irq(&phba
->hbalock
);
2466 * It has found a suitable FCF record that is not
2467 * the same as in-use FCF record, unregister the
2468 * in-use FCF record, replace the in-use FCF record
2469 * with the new FCF record, mark FCF fast failover
2470 * completed, and then start register the new FCF
2474 /* Unregister the current in-use FCF record */
2475 lpfc_unregister_fcf(phba
);
2477 /* Replace in-use record with the new record */
2478 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
,
2479 "2842 Replace in-use FCF (x%x) "
2480 "with failover FCF (x%x)\n",
2481 phba
->fcf
.current_rec
.fcf_indx
,
2482 phba
->fcf
.failover_rec
.fcf_indx
);
2483 memcpy(&phba
->fcf
.current_rec
,
2484 &phba
->fcf
.failover_rec
,
2485 sizeof(struct lpfc_fcf_rec
));
2487 * Mark the fast FCF failover rediscovery completed
2488 * and the start of the first round of the roundrobin
2491 spin_lock_irq(&phba
->hbalock
);
2492 phba
->fcf
.fcf_flag
&= ~FCF_REDISC_FOV
;
2493 spin_unlock_irq(&phba
->hbalock
);
2494 /* Register to the new FCF record */
2495 lpfc_register_fcf(phba
);
2498 * In case of transaction period to fast FCF failover,
2499 * do nothing when search to the end of the FCF table.
2501 if ((phba
->fcf
.fcf_flag
& FCF_REDISC_EVT
) ||
2502 (phba
->fcf
.fcf_flag
& FCF_REDISC_PEND
))
2505 if (phba
->cfg_fcf_failover_policy
== LPFC_FCF_FOV
&&
2506 phba
->fcf
.fcf_flag
& FCF_IN_USE
) {
2508 * In case the current in-use FCF record no
2509 * longer existed during FCF discovery that
2510 * was not triggered by fast FCF failover
2511 * process, treat it as fast FCF failover.
2513 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
,
2514 "2841 In-use FCF record (x%x) "
2515 "not reported, entering fast "
2516 "FCF failover mode scanning.\n",
2517 phba
->fcf
.current_rec
.fcf_indx
);
2518 spin_lock_irq(&phba
->hbalock
);
2519 phba
->fcf
.fcf_flag
|= FCF_REDISC_FOV
;
2520 spin_unlock_irq(&phba
->hbalock
);
2521 lpfc_sli4_fcf_scan_read_fcf_rec(phba
,
2522 LPFC_FCOE_FCF_GET_FIRST
);
2525 /* Register to the new FCF record */
2526 lpfc_register_fcf(phba
);
2529 lpfc_sli4_fcf_scan_read_fcf_rec(phba
, next_fcf_index
);
2533 lpfc_sli4_mbox_cmd_free(phba
, mboxq
);
2534 lpfc_register_fcf(phba
);
2540 * lpfc_mbx_cmpl_fcf_rr_read_fcf_rec - fcf roundrobin read_fcf mbox cmpl hdler
2541 * @phba: pointer to lpfc hba data structure.
2542 * @mboxq: pointer to mailbox object.
2544 * This is the callback function for FLOGI failure roundrobin FCF failover
2545 * read FCF record mailbox command from the eligible FCF record bmask for
2546 * performing the failover. If the FCF read back is not valid/available, it
2547 * fails through to retrying FLOGI to the currently registered FCF again.
2548 * Otherwise, if the FCF read back is valid and available, it will set the
2549 * newly read FCF record to the failover FCF record, unregister currently
2550 * registered FCF record, copy the failover FCF record to the current
2551 * FCF record, and then register the current FCF record before proceeding
2552 * to trying FLOGI on the new failover FCF.
2555 lpfc_mbx_cmpl_fcf_rr_read_fcf_rec(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*mboxq
)
2557 struct fcf_record
*new_fcf_record
;
2558 uint32_t boot_flag
, addr_mode
;
2559 uint16_t next_fcf_index
, fcf_index
;
2560 uint16_t current_fcf_index
;
2564 /* If link state is not up, stop the roundrobin failover process */
2565 if (phba
->link_state
< LPFC_LINK_UP
) {
2566 spin_lock_irq(&phba
->hbalock
);
2567 phba
->fcf
.fcf_flag
&= ~FCF_DISCOVERY
;
2568 phba
->hba_flag
&= ~FCF_RR_INPROG
;
2569 spin_unlock_irq(&phba
->hbalock
);
2573 /* Parse the FCF record from the non-embedded mailbox command */
2574 new_fcf_record
= lpfc_sli4_fcf_rec_mbox_parse(phba
, mboxq
,
2576 if (!new_fcf_record
) {
2577 lpfc_printf_log(phba
, KERN_WARNING
, LOG_FIP
,
2578 "2766 Mailbox command READ_FCF_RECORD "
2579 "failed to retrieve a FCF record. "
2580 "hba_flg x%x fcf_flg x%x\n", phba
->hba_flag
,
2581 phba
->fcf
.fcf_flag
);
2582 lpfc_unregister_fcf_rescan(phba
);
2586 /* Get the needed parameters from FCF record */
2587 rc
= lpfc_match_fcf_conn_list(phba
, new_fcf_record
, &boot_flag
,
2588 &addr_mode
, &vlan_id
);
2590 /* Log the FCF record information if turned on */
2591 lpfc_sli4_log_fcf_record_info(phba
, new_fcf_record
, vlan_id
,
2594 fcf_index
= bf_get(lpfc_fcf_record_fcf_index
, new_fcf_record
);
2596 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
,
2597 "2848 Remove ineligible FCF (x%x) from "
2598 "from roundrobin bmask\n", fcf_index
);
2599 /* Clear roundrobin bmask bit for ineligible FCF */
2600 lpfc_sli4_fcf_rr_index_clear(phba
, fcf_index
);
2601 /* Perform next round of roundrobin FCF failover */
2602 fcf_index
= lpfc_sli4_fcf_rr_next_index_get(phba
);
2603 rc
= lpfc_sli4_fcf_rr_next_proc(phba
->pport
, fcf_index
);
2609 if (fcf_index
== phba
->fcf
.current_rec
.fcf_indx
) {
2610 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
,
2611 "2760 Perform FLOGI roundrobin FCF failover: "
2612 "FCF (x%x) back to FCF (x%x)\n",
2613 phba
->fcf
.current_rec
.fcf_indx
, fcf_index
);
2614 /* Wait 500 ms before retrying FLOGI to current FCF */
2616 lpfc_issue_init_vfi(phba
->pport
);
2620 /* Upload new FCF record to the failover FCF record */
2621 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
,
2622 "2834 Update current FCF (x%x) with new FCF (x%x)\n",
2623 phba
->fcf
.failover_rec
.fcf_indx
, fcf_index
);
2624 spin_lock_irq(&phba
->hbalock
);
2625 __lpfc_update_fcf_record(phba
, &phba
->fcf
.failover_rec
,
2626 new_fcf_record
, addr_mode
, vlan_id
,
2627 (boot_flag
? BOOT_ENABLE
: 0));
2628 spin_unlock_irq(&phba
->hbalock
);
2630 current_fcf_index
= phba
->fcf
.current_rec
.fcf_indx
;
2632 /* Unregister the current in-use FCF record */
2633 lpfc_unregister_fcf(phba
);
2635 /* Replace in-use record with the new record */
2636 memcpy(&phba
->fcf
.current_rec
, &phba
->fcf
.failover_rec
,
2637 sizeof(struct lpfc_fcf_rec
));
2639 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
,
2640 "2783 Perform FLOGI roundrobin FCF failover: FCF "
2641 "(x%x) to FCF (x%x)\n", current_fcf_index
, fcf_index
);
2644 lpfc_register_fcf(phba
);
2646 lpfc_sli4_mbox_cmd_free(phba
, mboxq
);
2650 * lpfc_mbx_cmpl_read_fcf_rec - read fcf completion handler.
2651 * @phba: pointer to lpfc hba data structure.
2652 * @mboxq: pointer to mailbox object.
2654 * This is the callback function of read FCF record mailbox command for
2655 * updating the eligible FCF bmask for FLOGI failure roundrobin FCF
2656 * failover when a new FCF event happened. If the FCF read back is
2657 * valid/available and it passes the connection list check, it updates
2658 * the bmask for the eligible FCF record for roundrobin failover.
2661 lpfc_mbx_cmpl_read_fcf_rec(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*mboxq
)
2663 struct fcf_record
*new_fcf_record
;
2664 uint32_t boot_flag
, addr_mode
;
2665 uint16_t fcf_index
, next_fcf_index
;
2669 /* If link state is not up, no need to proceed */
2670 if (phba
->link_state
< LPFC_LINK_UP
)
2673 /* If FCF discovery period is over, no need to proceed */
2674 if (!(phba
->fcf
.fcf_flag
& FCF_DISCOVERY
))
2677 /* Parse the FCF record from the non-embedded mailbox command */
2678 new_fcf_record
= lpfc_sli4_fcf_rec_mbox_parse(phba
, mboxq
,
2680 if (!new_fcf_record
) {
2681 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
,
2682 "2767 Mailbox command READ_FCF_RECORD "
2683 "failed to retrieve a FCF record.\n");
2687 /* Check the connection list for eligibility */
2688 rc
= lpfc_match_fcf_conn_list(phba
, new_fcf_record
, &boot_flag
,
2689 &addr_mode
, &vlan_id
);
2691 /* Log the FCF record information if turned on */
2692 lpfc_sli4_log_fcf_record_info(phba
, new_fcf_record
, vlan_id
,
2698 /* Update the eligible FCF record index bmask */
2699 fcf_index
= bf_get(lpfc_fcf_record_fcf_index
, new_fcf_record
);
2701 rc
= lpfc_sli4_fcf_pri_list_add(phba
, fcf_index
, new_fcf_record
);
2704 lpfc_sli4_mbox_cmd_free(phba
, mboxq
);
2708 * lpfc_init_vfi_cmpl - Completion handler for init_vfi mbox command.
2709 * @phba: pointer to lpfc hba data structure.
2710 * @mboxq: pointer to mailbox data structure.
2712 * This function handles completion of init vfi mailbox command.
2715 lpfc_init_vfi_cmpl(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*mboxq
)
2717 struct lpfc_vport
*vport
= mboxq
->vport
;
2720 * VFI not supported on interface type 0, just do the flogi
2721 * Also continue if the VFI is in use - just use the same one.
2723 if (mboxq
->u
.mb
.mbxStatus
&&
2724 (bf_get(lpfc_sli_intf_if_type
, &phba
->sli4_hba
.sli_intf
) !=
2725 LPFC_SLI_INTF_IF_TYPE_0
) &&
2726 mboxq
->u
.mb
.mbxStatus
!= MBX_VFI_IN_USE
) {
2727 lpfc_printf_vlog(vport
, KERN_ERR
,
2729 "2891 Init VFI mailbox failed 0x%x\n",
2730 mboxq
->u
.mb
.mbxStatus
);
2731 mempool_free(mboxq
, phba
->mbox_mem_pool
);
2732 lpfc_vport_set_state(vport
, FC_VPORT_FAILED
);
2736 lpfc_initial_flogi(vport
);
2737 mempool_free(mboxq
, phba
->mbox_mem_pool
);
2742 * lpfc_issue_init_vfi - Issue init_vfi mailbox command.
2743 * @vport: pointer to lpfc_vport data structure.
2745 * This function issue a init_vfi mailbox command to initialize the VFI and
2746 * VPI for the physical port.
2749 lpfc_issue_init_vfi(struct lpfc_vport
*vport
)
2751 LPFC_MBOXQ_t
*mboxq
;
2753 struct lpfc_hba
*phba
= vport
->phba
;
2755 mboxq
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
2757 lpfc_printf_vlog(vport
, KERN_ERR
,
2758 LOG_MBOX
, "2892 Failed to allocate "
2759 "init_vfi mailbox\n");
2762 lpfc_init_vfi(mboxq
, vport
);
2763 mboxq
->mbox_cmpl
= lpfc_init_vfi_cmpl
;
2764 rc
= lpfc_sli_issue_mbox(phba
, mboxq
, MBX_NOWAIT
);
2765 if (rc
== MBX_NOT_FINISHED
) {
2766 lpfc_printf_vlog(vport
, KERN_ERR
,
2767 LOG_MBOX
, "2893 Failed to issue init_vfi mailbox\n");
2768 mempool_free(mboxq
, vport
->phba
->mbox_mem_pool
);
2773 * lpfc_init_vpi_cmpl - Completion handler for init_vpi mbox command.
2774 * @phba: pointer to lpfc hba data structure.
2775 * @mboxq: pointer to mailbox data structure.
2777 * This function handles completion of init vpi mailbox command.
2780 lpfc_init_vpi_cmpl(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*mboxq
)
2782 struct lpfc_vport
*vport
= mboxq
->vport
;
2783 struct lpfc_nodelist
*ndlp
;
2784 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
2786 if (mboxq
->u
.mb
.mbxStatus
) {
2787 lpfc_printf_vlog(vport
, KERN_ERR
,
2789 "2609 Init VPI mailbox failed 0x%x\n",
2790 mboxq
->u
.mb
.mbxStatus
);
2791 mempool_free(mboxq
, phba
->mbox_mem_pool
);
2792 lpfc_vport_set_state(vport
, FC_VPORT_FAILED
);
2795 spin_lock_irq(shost
->host_lock
);
2796 vport
->fc_flag
&= ~FC_VPORT_NEEDS_INIT_VPI
;
2797 spin_unlock_irq(shost
->host_lock
);
2799 /* If this port is physical port or FDISC is done, do reg_vpi */
2800 if ((phba
->pport
== vport
) || (vport
->port_state
== LPFC_FDISC
)) {
2801 ndlp
= lpfc_findnode_did(vport
, Fabric_DID
);
2803 lpfc_printf_vlog(vport
, KERN_ERR
,
2805 "2731 Cannot find fabric "
2806 "controller node\n");
2808 lpfc_register_new_vport(phba
, vport
, ndlp
);
2809 mempool_free(mboxq
, phba
->mbox_mem_pool
);
2813 if (phba
->link_flag
& LS_NPIV_FAB_SUPPORTED
)
2814 lpfc_initial_fdisc(vport
);
2816 lpfc_vport_set_state(vport
, FC_VPORT_NO_FABRIC_SUPP
);
2817 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_ELS
,
2818 "2606 No NPIV Fabric support\n");
2820 mempool_free(mboxq
, phba
->mbox_mem_pool
);
2825 * lpfc_issue_init_vpi - Issue init_vpi mailbox command.
2826 * @vport: pointer to lpfc_vport data structure.
2828 * This function issue a init_vpi mailbox command to initialize
2829 * VPI for the vport.
2832 lpfc_issue_init_vpi(struct lpfc_vport
*vport
)
2834 LPFC_MBOXQ_t
*mboxq
;
2837 if ((vport
->port_type
!= LPFC_PHYSICAL_PORT
) && (!vport
->vpi
)) {
2838 vpi
= lpfc_alloc_vpi(vport
->phba
);
2840 lpfc_printf_vlog(vport
, KERN_ERR
,
2842 "3303 Failed to obtain vport vpi\n");
2843 lpfc_vport_set_state(vport
, FC_VPORT_FAILED
);
2849 mboxq
= mempool_alloc(vport
->phba
->mbox_mem_pool
, GFP_KERNEL
);
2851 lpfc_printf_vlog(vport
, KERN_ERR
,
2852 LOG_MBOX
, "2607 Failed to allocate "
2853 "init_vpi mailbox\n");
2856 lpfc_init_vpi(vport
->phba
, mboxq
, vport
->vpi
);
2857 mboxq
->vport
= vport
;
2858 mboxq
->mbox_cmpl
= lpfc_init_vpi_cmpl
;
2859 rc
= lpfc_sli_issue_mbox(vport
->phba
, mboxq
, MBX_NOWAIT
);
2860 if (rc
== MBX_NOT_FINISHED
) {
2861 lpfc_printf_vlog(vport
, KERN_ERR
,
2862 LOG_MBOX
, "2608 Failed to issue init_vpi mailbox\n");
2863 mempool_free(mboxq
, vport
->phba
->mbox_mem_pool
);
2868 * lpfc_start_fdiscs - send fdiscs for each vports on this port.
2869 * @phba: pointer to lpfc hba data structure.
2871 * This function loops through the list of vports on the @phba and issues an
2872 * FDISC if possible.
2875 lpfc_start_fdiscs(struct lpfc_hba
*phba
)
2877 struct lpfc_vport
**vports
;
2880 vports
= lpfc_create_vport_work_array(phba
);
2881 if (vports
!= NULL
) {
2882 for (i
= 0; i
<= phba
->max_vports
&& vports
[i
] != NULL
; i
++) {
2883 if (vports
[i
]->port_type
== LPFC_PHYSICAL_PORT
)
2885 /* There are no vpi for this vport */
2886 if (vports
[i
]->vpi
> phba
->max_vpi
) {
2887 lpfc_vport_set_state(vports
[i
],
2891 if (phba
->fc_topology
== LPFC_TOPOLOGY_LOOP
) {
2892 lpfc_vport_set_state(vports
[i
],
2896 if (vports
[i
]->fc_flag
& FC_VPORT_NEEDS_INIT_VPI
) {
2897 lpfc_issue_init_vpi(vports
[i
]);
2900 if (phba
->link_flag
& LS_NPIV_FAB_SUPPORTED
)
2901 lpfc_initial_fdisc(vports
[i
]);
2903 lpfc_vport_set_state(vports
[i
],
2904 FC_VPORT_NO_FABRIC_SUPP
);
2905 lpfc_printf_vlog(vports
[i
], KERN_ERR
,
2908 "Fabric support\n");
2912 lpfc_destroy_vport_work_array(phba
, vports
);
2916 lpfc_mbx_cmpl_reg_vfi(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*mboxq
)
2918 struct lpfc_dmabuf
*dmabuf
= mboxq
->context1
;
2919 struct lpfc_vport
*vport
= mboxq
->vport
;
2920 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
2923 * VFI not supported for interface type 0, so ignore any mailbox
2924 * error (except VFI in use) and continue with the discovery.
2926 if (mboxq
->u
.mb
.mbxStatus
&&
2927 (bf_get(lpfc_sli_intf_if_type
, &phba
->sli4_hba
.sli_intf
) !=
2928 LPFC_SLI_INTF_IF_TYPE_0
) &&
2929 mboxq
->u
.mb
.mbxStatus
!= MBX_VFI_IN_USE
) {
2930 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_MBOX
,
2931 "2018 REG_VFI mbxStatus error x%x "
2933 mboxq
->u
.mb
.mbxStatus
, vport
->port_state
);
2934 if (phba
->fc_topology
== LPFC_TOPOLOGY_LOOP
) {
2935 /* FLOGI failed, use loop map to make discovery list */
2936 lpfc_disc_list_loopmap(vport
);
2937 /* Start discovery */
2938 lpfc_disc_start(vport
);
2941 lpfc_vport_set_state(vport
, FC_VPORT_FAILED
);
2945 /* If the VFI is already registered, there is nothing else to do
2946 * Unless this was a VFI update and we are in PT2PT mode, then
2947 * we should drop through to set the port state to ready.
2949 if (vport
->fc_flag
& FC_VFI_REGISTERED
)
2950 if (!(phba
->sli_rev
== LPFC_SLI_REV4
&&
2951 vport
->fc_flag
& FC_PT2PT
))
2954 /* The VPI is implicitly registered when the VFI is registered */
2955 spin_lock_irq(shost
->host_lock
);
2956 vport
->vpi_state
|= LPFC_VPI_REGISTERED
;
2957 vport
->fc_flag
|= FC_VFI_REGISTERED
;
2958 vport
->fc_flag
&= ~FC_VPORT_NEEDS_REG_VPI
;
2959 vport
->fc_flag
&= ~FC_VPORT_NEEDS_INIT_VPI
;
2960 spin_unlock_irq(shost
->host_lock
);
2962 /* In case SLI4 FC loopback test, we are ready */
2963 if ((phba
->sli_rev
== LPFC_SLI_REV4
) &&
2964 (phba
->link_flag
& LS_LOOPBACK_MODE
)) {
2965 phba
->link_state
= LPFC_HBA_READY
;
2969 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_SLI
,
2970 "3313 cmpl reg vfi port_state:%x fc_flag:%x myDid:%x "
2971 "alpacnt:%d LinkState:%x topology:%x\n",
2972 vport
->port_state
, vport
->fc_flag
, vport
->fc_myDID
,
2973 vport
->phba
->alpa_map
[0],
2974 phba
->link_state
, phba
->fc_topology
);
2976 if (vport
->port_state
== LPFC_FABRIC_CFG_LINK
) {
2978 * For private loop or for NPort pt2pt,
2979 * just start discovery and we are done.
2981 if ((vport
->fc_flag
& FC_PT2PT
) ||
2982 ((phba
->fc_topology
== LPFC_TOPOLOGY_LOOP
) &&
2983 !(vport
->fc_flag
& FC_PUBLIC_LOOP
))) {
2985 /* Use loop map to make discovery list */
2986 lpfc_disc_list_loopmap(vport
);
2987 /* Start discovery */
2988 if (vport
->fc_flag
& FC_PT2PT
)
2989 vport
->port_state
= LPFC_VPORT_READY
;
2991 lpfc_disc_start(vport
);
2993 lpfc_start_fdiscs(phba
);
2994 lpfc_do_scr_ns_plogi(phba
, vport
);
2999 mempool_free(mboxq
, phba
->mbox_mem_pool
);
3001 lpfc_mbuf_free(phba
, dmabuf
->virt
, dmabuf
->phys
);
3008 lpfc_mbx_cmpl_read_sparam(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*pmb
)
3010 MAILBOX_t
*mb
= &pmb
->u
.mb
;
3011 struct lpfc_dmabuf
*mp
= (struct lpfc_dmabuf
*) pmb
->context1
;
3012 struct lpfc_vport
*vport
= pmb
->vport
;
3013 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
3014 struct serv_parm
*sp
= &vport
->fc_sparam
;
3017 /* Check for error */
3018 if (mb
->mbxStatus
) {
3019 /* READ_SPARAM mbox error <mbxStatus> state <hba_state> */
3020 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_MBOX
,
3021 "0319 READ_SPARAM mbxStatus error x%x "
3023 mb
->mbxStatus
, vport
->port_state
);
3024 lpfc_linkdown(phba
);
3028 memcpy((uint8_t *) &vport
->fc_sparam
, (uint8_t *) mp
->virt
,
3029 sizeof (struct serv_parm
));
3031 ed_tov
= be32_to_cpu(sp
->cmn
.e_d_tov
);
3032 if (sp
->cmn
.edtovResolution
) /* E_D_TOV ticks are in nanoseconds */
3033 ed_tov
= (ed_tov
+ 999999) / 1000000;
3035 phba
->fc_edtov
= ed_tov
;
3036 phba
->fc_ratov
= (2 * ed_tov
) / 1000;
3037 if (phba
->fc_ratov
< FF_DEF_RATOV
) {
3038 /* RA_TOV should be atleast 10sec for initial flogi */
3039 phba
->fc_ratov
= FF_DEF_RATOV
;
3042 lpfc_update_vport_wwn(vport
);
3043 fc_host_port_name(shost
) = wwn_to_u64(vport
->fc_portname
.u
.wwn
);
3044 if (vport
->port_type
== LPFC_PHYSICAL_PORT
) {
3045 memcpy(&phba
->wwnn
, &vport
->fc_nodename
, sizeof(phba
->wwnn
));
3046 memcpy(&phba
->wwpn
, &vport
->fc_portname
, sizeof(phba
->wwnn
));
3049 lpfc_mbuf_free(phba
, mp
->virt
, mp
->phys
);
3051 mempool_free(pmb
, phba
->mbox_mem_pool
);
3055 pmb
->context1
= NULL
;
3056 lpfc_mbuf_free(phba
, mp
->virt
, mp
->phys
);
3058 lpfc_issue_clear_la(phba
, vport
);
3059 mempool_free(pmb
, phba
->mbox_mem_pool
);
3064 lpfc_mbx_process_link_up(struct lpfc_hba
*phba
, struct lpfc_mbx_read_top
*la
)
3066 struct lpfc_vport
*vport
= phba
->pport
;
3067 LPFC_MBOXQ_t
*sparam_mbox
, *cfglink_mbox
= NULL
;
3068 struct Scsi_Host
*shost
;
3070 struct lpfc_dmabuf
*mp
;
3072 struct fcf_record
*fcf_record
;
3073 uint32_t fc_flags
= 0;
3075 spin_lock_irq(&phba
->hbalock
);
3076 phba
->fc_linkspeed
= bf_get(lpfc_mbx_read_top_link_spd
, la
);
3078 if (!(phba
->hba_flag
& HBA_FCOE_MODE
)) {
3079 switch (bf_get(lpfc_mbx_read_top_link_spd
, la
)) {
3080 case LPFC_LINK_SPEED_1GHZ
:
3081 case LPFC_LINK_SPEED_2GHZ
:
3082 case LPFC_LINK_SPEED_4GHZ
:
3083 case LPFC_LINK_SPEED_8GHZ
:
3084 case LPFC_LINK_SPEED_10GHZ
:
3085 case LPFC_LINK_SPEED_16GHZ
:
3086 case LPFC_LINK_SPEED_32GHZ
:
3087 case LPFC_LINK_SPEED_64GHZ
:
3090 phba
->fc_linkspeed
= LPFC_LINK_SPEED_UNKNOWN
;
3095 if (phba
->fc_topology
&&
3096 phba
->fc_topology
!= bf_get(lpfc_mbx_read_top_topology
, la
)) {
3097 lpfc_printf_log(phba
, KERN_WARNING
, LOG_SLI
,
3098 "3314 Toplogy changed was 0x%x is 0x%x\n",
3100 bf_get(lpfc_mbx_read_top_topology
, la
));
3101 phba
->fc_topology_changed
= 1;
3104 phba
->fc_topology
= bf_get(lpfc_mbx_read_top_topology
, la
);
3105 phba
->link_flag
&= ~LS_NPIV_FAB_SUPPORTED
;
3107 shost
= lpfc_shost_from_vport(vport
);
3108 if (phba
->fc_topology
== LPFC_TOPOLOGY_LOOP
) {
3109 phba
->sli3_options
&= ~LPFC_SLI3_NPIV_ENABLED
;
3111 /* if npiv is enabled and this adapter supports npiv log
3112 * a message that npiv is not supported in this topology
3114 if (phba
->cfg_enable_npiv
&& phba
->max_vpi
)
3115 lpfc_printf_log(phba
, KERN_ERR
, LOG_LINK_EVENT
,
3116 "1309 Link Up Event npiv not supported in loop "
3118 /* Get Loop Map information */
3119 if (bf_get(lpfc_mbx_read_top_il
, la
))
3120 fc_flags
|= FC_LBIT
;
3122 vport
->fc_myDID
= bf_get(lpfc_mbx_read_top_alpa_granted
, la
);
3123 i
= la
->lilpBde64
.tus
.f
.bdeSize
;
3126 phba
->alpa_map
[0] = 0;
3128 if (vport
->cfg_log_verbose
& LOG_LINK_EVENT
) {
3139 numalpa
= phba
->alpa_map
[0];
3141 while (j
< numalpa
) {
3142 memset(un
.pamap
, 0, 16);
3143 for (k
= 1; j
< numalpa
; k
++) {
3145 phba
->alpa_map
[j
+ 1];
3150 /* Link Up Event ALPA map */
3151 lpfc_printf_log(phba
,
3154 "1304 Link Up Event "
3155 "ALPA map Data: x%x "
3157 un
.pa
.wd1
, un
.pa
.wd2
,
3158 un
.pa
.wd3
, un
.pa
.wd4
);
3163 if (!(phba
->sli3_options
& LPFC_SLI3_NPIV_ENABLED
)) {
3164 if (phba
->max_vpi
&& phba
->cfg_enable_npiv
&&
3165 (phba
->sli_rev
>= LPFC_SLI_REV3
))
3166 phba
->sli3_options
|= LPFC_SLI3_NPIV_ENABLED
;
3168 vport
->fc_myDID
= phba
->fc_pref_DID
;
3169 fc_flags
|= FC_LBIT
;
3171 spin_unlock_irq(&phba
->hbalock
);
3174 spin_lock_irq(shost
->host_lock
);
3175 vport
->fc_flag
|= fc_flags
;
3176 spin_unlock_irq(shost
->host_lock
);
3180 sparam_mbox
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
3184 rc
= lpfc_read_sparam(phba
, sparam_mbox
, 0);
3186 mempool_free(sparam_mbox
, phba
->mbox_mem_pool
);
3189 sparam_mbox
->vport
= vport
;
3190 sparam_mbox
->mbox_cmpl
= lpfc_mbx_cmpl_read_sparam
;
3191 rc
= lpfc_sli_issue_mbox(phba
, sparam_mbox
, MBX_NOWAIT
);
3192 if (rc
== MBX_NOT_FINISHED
) {
3193 mp
= (struct lpfc_dmabuf
*) sparam_mbox
->context1
;
3194 lpfc_mbuf_free(phba
, mp
->virt
, mp
->phys
);
3196 mempool_free(sparam_mbox
, phba
->mbox_mem_pool
);
3200 if (!(phba
->hba_flag
& HBA_FCOE_MODE
)) {
3201 cfglink_mbox
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
3204 vport
->port_state
= LPFC_LOCAL_CFG_LINK
;
3205 lpfc_config_link(phba
, cfglink_mbox
);
3206 cfglink_mbox
->vport
= vport
;
3207 cfglink_mbox
->mbox_cmpl
= lpfc_mbx_cmpl_local_config_link
;
3208 rc
= lpfc_sli_issue_mbox(phba
, cfglink_mbox
, MBX_NOWAIT
);
3209 if (rc
== MBX_NOT_FINISHED
) {
3210 mempool_free(cfglink_mbox
, phba
->mbox_mem_pool
);
3214 vport
->port_state
= LPFC_VPORT_UNKNOWN
;
3216 * Add the driver's default FCF record at FCF index 0 now. This
3217 * is phase 1 implementation that support FCF index 0 and driver
3220 if (!(phba
->hba_flag
& HBA_FIP_SUPPORT
)) {
3221 fcf_record
= kzalloc(sizeof(struct fcf_record
),
3223 if (unlikely(!fcf_record
)) {
3224 lpfc_printf_log(phba
, KERN_ERR
,
3226 "2554 Could not allocate memory for "
3232 lpfc_sli4_build_dflt_fcf_record(phba
, fcf_record
,
3233 LPFC_FCOE_FCF_DEF_INDEX
);
3234 rc
= lpfc_sli4_add_fcf_record(phba
, fcf_record
);
3236 lpfc_printf_log(phba
, KERN_ERR
,
3238 "2013 Could not manually add FCF "
3239 "record 0, status %d\n", rc
);
3247 * The driver is expected to do FIP/FCF. Call the port
3248 * and get the FCF Table.
3250 spin_lock_irq(&phba
->hbalock
);
3251 if (phba
->hba_flag
& FCF_TS_INPROG
) {
3252 spin_unlock_irq(&phba
->hbalock
);
3255 /* This is the initial FCF discovery scan */
3256 phba
->fcf
.fcf_flag
|= FCF_INIT_DISC
;
3257 spin_unlock_irq(&phba
->hbalock
);
3258 lpfc_printf_log(phba
, KERN_INFO
, LOG_FIP
| LOG_DISCOVERY
,
3259 "2778 Start FCF table scan at linkup\n");
3260 rc
= lpfc_sli4_fcf_scan_read_fcf_rec(phba
,
3261 LPFC_FCOE_FCF_GET_FIRST
);
3263 spin_lock_irq(&phba
->hbalock
);
3264 phba
->fcf
.fcf_flag
&= ~FCF_INIT_DISC
;
3265 spin_unlock_irq(&phba
->hbalock
);
3268 /* Reset FCF roundrobin bmask for new discovery */
3269 lpfc_sli4_clear_fcf_rr_bmask(phba
);
3274 lpfc_vport_set_state(vport
, FC_VPORT_FAILED
);
3275 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_MBOX
,
3276 "0263 Discovery Mailbox error: state: 0x%x : %p %p\n",
3277 vport
->port_state
, sparam_mbox
, cfglink_mbox
);
3278 lpfc_issue_clear_la(phba
, vport
);
3283 lpfc_enable_la(struct lpfc_hba
*phba
)
3286 struct lpfc_sli
*psli
= &phba
->sli
;
3287 spin_lock_irq(&phba
->hbalock
);
3288 psli
->sli_flag
|= LPFC_PROCESS_LA
;
3289 if (phba
->sli_rev
<= LPFC_SLI_REV3
) {
3290 control
= readl(phba
->HCregaddr
);
3291 control
|= HC_LAINT_ENA
;
3292 writel(control
, phba
->HCregaddr
);
3293 readl(phba
->HCregaddr
); /* flush */
3295 spin_unlock_irq(&phba
->hbalock
);
3299 lpfc_mbx_issue_link_down(struct lpfc_hba
*phba
)
3301 lpfc_linkdown(phba
);
3302 lpfc_enable_la(phba
);
3303 lpfc_unregister_unused_fcf(phba
);
3304 /* turn on Link Attention interrupts - no CLEAR_LA needed */
3309 * This routine handles processing a READ_TOPOLOGY mailbox
3310 * command upon completion. It is setup in the LPFC_MBOXQ
3311 * as the completion routine when the command is
3312 * handed off to the SLI layer. SLI4 only.
3315 lpfc_mbx_cmpl_read_topology(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*pmb
)
3317 struct lpfc_vport
*vport
= pmb
->vport
;
3318 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
3319 struct lpfc_mbx_read_top
*la
;
3320 struct lpfc_sli_ring
*pring
;
3321 MAILBOX_t
*mb
= &pmb
->u
.mb
;
3322 struct lpfc_dmabuf
*mp
= (struct lpfc_dmabuf
*) (pmb
->context1
);
3325 /* Unblock ELS traffic */
3326 pring
= lpfc_phba_elsring(phba
);
3328 pring
->flag
&= ~LPFC_STOP_IOCB_EVENT
;
3330 /* Check for error */
3331 if (mb
->mbxStatus
) {
3332 lpfc_printf_log(phba
, KERN_INFO
, LOG_LINK_EVENT
,
3333 "1307 READ_LA mbox error x%x state x%x\n",
3334 mb
->mbxStatus
, vport
->port_state
);
3335 lpfc_mbx_issue_link_down(phba
);
3336 phba
->link_state
= LPFC_HBA_ERROR
;
3337 goto lpfc_mbx_cmpl_read_topology_free_mbuf
;
3340 la
= (struct lpfc_mbx_read_top
*) &pmb
->u
.mb
.un
.varReadTop
;
3341 attn_type
= bf_get(lpfc_mbx_read_top_att_type
, la
);
3343 memcpy(&phba
->alpa_map
[0], mp
->virt
, 128);
3345 spin_lock_irq(shost
->host_lock
);
3346 if (bf_get(lpfc_mbx_read_top_pb
, la
))
3347 vport
->fc_flag
|= FC_BYPASSED_MODE
;
3349 vport
->fc_flag
&= ~FC_BYPASSED_MODE
;
3350 spin_unlock_irq(shost
->host_lock
);
3352 if (phba
->fc_eventTag
<= la
->eventTag
) {
3353 phba
->fc_stat
.LinkMultiEvent
++;
3354 if (attn_type
== LPFC_ATT_LINK_UP
)
3355 if (phba
->fc_eventTag
!= 0)
3356 lpfc_linkdown(phba
);
3359 phba
->fc_eventTag
= la
->eventTag
;
3360 if (phba
->sli_rev
< LPFC_SLI_REV4
) {
3361 spin_lock_irq(&phba
->hbalock
);
3362 if (bf_get(lpfc_mbx_read_top_mm
, la
))
3363 phba
->sli
.sli_flag
|= LPFC_MENLO_MAINT
;
3365 phba
->sli
.sli_flag
&= ~LPFC_MENLO_MAINT
;
3366 spin_unlock_irq(&phba
->hbalock
);
3369 phba
->link_events
++;
3370 if ((attn_type
== LPFC_ATT_LINK_UP
) &&
3371 !(phba
->sli
.sli_flag
& LPFC_MENLO_MAINT
)) {
3372 phba
->fc_stat
.LinkUp
++;
3373 if (phba
->link_flag
& LS_LOOPBACK_MODE
) {
3374 lpfc_printf_log(phba
, KERN_ERR
, LOG_LINK_EVENT
,
3375 "1306 Link Up Event in loop back mode "
3376 "x%x received Data: x%x x%x x%x x%x\n",
3377 la
->eventTag
, phba
->fc_eventTag
,
3378 bf_get(lpfc_mbx_read_top_alpa_granted
,
3380 bf_get(lpfc_mbx_read_top_link_spd
, la
),
3383 lpfc_printf_log(phba
, KERN_ERR
, LOG_LINK_EVENT
,
3384 "1303 Link Up Event x%x received "
3385 "Data: x%x x%x x%x x%x x%x x%x %d\n",
3386 la
->eventTag
, phba
->fc_eventTag
,
3387 bf_get(lpfc_mbx_read_top_alpa_granted
,
3389 bf_get(lpfc_mbx_read_top_link_spd
, la
),
3391 bf_get(lpfc_mbx_read_top_mm
, la
),
3392 bf_get(lpfc_mbx_read_top_fa
, la
),
3393 phba
->wait_4_mlo_maint_flg
);
3395 lpfc_mbx_process_link_up(phba
, la
);
3396 } else if (attn_type
== LPFC_ATT_LINK_DOWN
||
3397 attn_type
== LPFC_ATT_UNEXP_WWPN
) {
3398 phba
->fc_stat
.LinkDown
++;
3399 if (phba
->link_flag
& LS_LOOPBACK_MODE
)
3400 lpfc_printf_log(phba
, KERN_ERR
, LOG_LINK_EVENT
,
3401 "1308 Link Down Event in loop back mode "
3403 "Data: x%x x%x x%x\n",
3404 la
->eventTag
, phba
->fc_eventTag
,
3405 phba
->pport
->port_state
, vport
->fc_flag
);
3406 else if (attn_type
== LPFC_ATT_UNEXP_WWPN
)
3407 lpfc_printf_log(phba
, KERN_ERR
, LOG_LINK_EVENT
,
3408 "1313 Link Down UNEXP WWPN Event x%x received "
3409 "Data: x%x x%x x%x x%x x%x\n",
3410 la
->eventTag
, phba
->fc_eventTag
,
3411 phba
->pport
->port_state
, vport
->fc_flag
,
3412 bf_get(lpfc_mbx_read_top_mm
, la
),
3413 bf_get(lpfc_mbx_read_top_fa
, la
));
3415 lpfc_printf_log(phba
, KERN_ERR
, LOG_LINK_EVENT
,
3416 "1305 Link Down Event x%x received "
3417 "Data: x%x x%x x%x x%x x%x\n",
3418 la
->eventTag
, phba
->fc_eventTag
,
3419 phba
->pport
->port_state
, vport
->fc_flag
,
3420 bf_get(lpfc_mbx_read_top_mm
, la
),
3421 bf_get(lpfc_mbx_read_top_fa
, la
));
3422 lpfc_mbx_issue_link_down(phba
);
3424 if (phba
->sli
.sli_flag
& LPFC_MENLO_MAINT
&&
3425 attn_type
== LPFC_ATT_LINK_UP
) {
3426 if (phba
->link_state
!= LPFC_LINK_DOWN
) {
3427 phba
->fc_stat
.LinkDown
++;
3428 lpfc_printf_log(phba
, KERN_ERR
, LOG_LINK_EVENT
,
3429 "1312 Link Down Event x%x received "
3430 "Data: x%x x%x x%x\n",
3431 la
->eventTag
, phba
->fc_eventTag
,
3432 phba
->pport
->port_state
, vport
->fc_flag
);
3433 lpfc_mbx_issue_link_down(phba
);
3435 lpfc_enable_la(phba
);
3437 lpfc_printf_log(phba
, KERN_ERR
, LOG_LINK_EVENT
,
3438 "1310 Menlo Maint Mode Link up Event x%x rcvd "
3439 "Data: x%x x%x x%x\n",
3440 la
->eventTag
, phba
->fc_eventTag
,
3441 phba
->pport
->port_state
, vport
->fc_flag
);
3443 * The cmnd that triggered this will be waiting for this
3446 /* WAKEUP for MENLO_SET_MODE or MENLO_RESET command. */
3447 if (phba
->wait_4_mlo_maint_flg
) {
3448 phba
->wait_4_mlo_maint_flg
= 0;
3449 wake_up_interruptible(&phba
->wait_4_mlo_m_q
);
3453 if ((phba
->sli_rev
< LPFC_SLI_REV4
) &&
3454 bf_get(lpfc_mbx_read_top_fa
, la
)) {
3455 if (phba
->sli
.sli_flag
& LPFC_MENLO_MAINT
)
3456 lpfc_issue_clear_la(phba
, vport
);
3457 lpfc_printf_log(phba
, KERN_INFO
, LOG_LINK_EVENT
,
3459 bf_get(lpfc_mbx_read_top_fa
, la
));
3462 lpfc_mbx_cmpl_read_topology_free_mbuf
:
3463 lpfc_mbuf_free(phba
, mp
->virt
, mp
->phys
);
3465 mempool_free(pmb
, phba
->mbox_mem_pool
);
3470 * This routine handles processing a REG_LOGIN mailbox
3471 * command upon completion. It is setup in the LPFC_MBOXQ
3472 * as the completion routine when the command is
3473 * handed off to the SLI layer.
3476 lpfc_mbx_cmpl_reg_login(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*pmb
)
3478 struct lpfc_vport
*vport
= pmb
->vport
;
3479 struct lpfc_dmabuf
*mp
= (struct lpfc_dmabuf
*) (pmb
->context1
);
3480 struct lpfc_nodelist
*ndlp
= (struct lpfc_nodelist
*) pmb
->context2
;
3481 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
3483 pmb
->context1
= NULL
;
3484 pmb
->context2
= NULL
;
3486 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_SLI
,
3487 "0002 rpi:%x DID:%x flg:%x %d map:%x %p\n",
3488 ndlp
->nlp_rpi
, ndlp
->nlp_DID
, ndlp
->nlp_flag
,
3489 kref_read(&ndlp
->kref
),
3490 ndlp
->nlp_usg_map
, ndlp
);
3491 if (ndlp
->nlp_flag
& NLP_REG_LOGIN_SEND
)
3492 ndlp
->nlp_flag
&= ~NLP_REG_LOGIN_SEND
;
3494 if (ndlp
->nlp_flag
& NLP_IGNR_REG_CMPL
||
3495 ndlp
->nlp_state
!= NLP_STE_REG_LOGIN_ISSUE
) {
3496 /* We rcvd a rscn after issuing this
3497 * mbox reg login, we may have cycled
3498 * back through the state and be
3499 * back at reg login state so this
3500 * mbox needs to be ignored becase
3501 * there is another reg login in
3504 spin_lock_irq(shost
->host_lock
);
3505 ndlp
->nlp_flag
&= ~NLP_IGNR_REG_CMPL
;
3506 spin_unlock_irq(shost
->host_lock
);
3509 * We cannot leave the RPI registered because
3510 * if we go thru discovery again for this ndlp
3511 * a subsequent REG_RPI will fail.
3513 ndlp
->nlp_flag
|= NLP_RPI_REGISTERED
;
3514 lpfc_unreg_rpi(vport
, ndlp
);
3517 /* Call state machine */
3518 lpfc_disc_state_machine(vport
, ndlp
, pmb
, NLP_EVT_CMPL_REG_LOGIN
);
3520 lpfc_mbuf_free(phba
, mp
->virt
, mp
->phys
);
3522 mempool_free(pmb
, phba
->mbox_mem_pool
);
3523 /* decrement the node reference count held for this callback
3532 lpfc_mbx_cmpl_unreg_vpi(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*pmb
)
3534 MAILBOX_t
*mb
= &pmb
->u
.mb
;
3535 struct lpfc_vport
*vport
= pmb
->vport
;
3536 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
3538 switch (mb
->mbxStatus
) {
3541 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_NODE
,
3542 "0911 cmpl_unreg_vpi, mb status = 0x%x\n",
3545 /* If VPI is busy, reset the HBA */
3547 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_NODE
,
3548 "2798 Unreg_vpi failed vpi 0x%x, mb status = 0x%x\n",
3549 vport
->vpi
, mb
->mbxStatus
);
3550 if (!(phba
->pport
->load_flag
& FC_UNLOADING
))
3551 lpfc_workq_post_event(phba
, NULL
, NULL
,
3552 LPFC_EVT_RESET_HBA
);
3554 spin_lock_irq(shost
->host_lock
);
3555 vport
->vpi_state
&= ~LPFC_VPI_REGISTERED
;
3556 vport
->fc_flag
|= FC_VPORT_NEEDS_REG_VPI
;
3557 spin_unlock_irq(shost
->host_lock
);
3558 vport
->unreg_vpi_cmpl
= VPORT_OK
;
3559 mempool_free(pmb
, phba
->mbox_mem_pool
);
3560 lpfc_cleanup_vports_rrqs(vport
, NULL
);
3562 * This shost reference might have been taken at the beginning of
3563 * lpfc_vport_delete()
3565 if ((vport
->load_flag
& FC_UNLOADING
) && (vport
!= phba
->pport
))
3566 scsi_host_put(shost
);
3570 lpfc_mbx_unreg_vpi(struct lpfc_vport
*vport
)
3572 struct lpfc_hba
*phba
= vport
->phba
;
3576 mbox
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
3580 lpfc_unreg_vpi(phba
, vport
->vpi
, mbox
);
3581 mbox
->vport
= vport
;
3582 mbox
->mbox_cmpl
= lpfc_mbx_cmpl_unreg_vpi
;
3583 rc
= lpfc_sli_issue_mbox(phba
, mbox
, MBX_NOWAIT
);
3584 if (rc
== MBX_NOT_FINISHED
) {
3585 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_MBOX
| LOG_VPORT
,
3586 "1800 Could not issue unreg_vpi\n");
3587 mempool_free(mbox
, phba
->mbox_mem_pool
);
3588 vport
->unreg_vpi_cmpl
= VPORT_ERROR
;
3595 lpfc_mbx_cmpl_reg_vpi(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*pmb
)
3597 struct lpfc_vport
*vport
= pmb
->vport
;
3598 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
3599 MAILBOX_t
*mb
= &pmb
->u
.mb
;
3601 switch (mb
->mbxStatus
) {
3605 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_NODE
,
3606 "0912 cmpl_reg_vpi, mb status = 0x%x\n",
3608 lpfc_vport_set_state(vport
, FC_VPORT_FAILED
);
3609 spin_lock_irq(shost
->host_lock
);
3610 vport
->fc_flag
&= ~(FC_FABRIC
| FC_PUBLIC_LOOP
);
3611 spin_unlock_irq(shost
->host_lock
);
3612 vport
->fc_myDID
= 0;
3614 if ((phba
->cfg_enable_fc4_type
== LPFC_ENABLE_BOTH
) ||
3615 (phba
->cfg_enable_fc4_type
== LPFC_ENABLE_NVME
)) {
3616 if (phba
->nvmet_support
)
3617 lpfc_nvmet_update_targetport(phba
);
3619 lpfc_nvme_update_localport(vport
);
3624 spin_lock_irq(shost
->host_lock
);
3625 vport
->vpi_state
|= LPFC_VPI_REGISTERED
;
3626 vport
->fc_flag
&= ~FC_VPORT_NEEDS_REG_VPI
;
3627 spin_unlock_irq(shost
->host_lock
);
3628 vport
->num_disc_nodes
= 0;
3629 /* go thru NPR list and issue ELS PLOGIs */
3630 if (vport
->fc_npr_cnt
)
3631 lpfc_els_disc_plogi(vport
);
3633 if (!vport
->num_disc_nodes
) {
3634 spin_lock_irq(shost
->host_lock
);
3635 vport
->fc_flag
&= ~FC_NDISC_ACTIVE
;
3636 spin_unlock_irq(shost
->host_lock
);
3637 lpfc_can_disctmo(vport
);
3639 vport
->port_state
= LPFC_VPORT_READY
;
3642 mempool_free(pmb
, phba
->mbox_mem_pool
);
3647 * lpfc_create_static_vport - Read HBA config region to create static vports.
3648 * @phba: pointer to lpfc hba data structure.
3650 * This routine issue a DUMP mailbox command for config region 22 to get
3651 * the list of static vports to be created. The function create vports
3652 * based on the information returned from the HBA.
3655 lpfc_create_static_vport(struct lpfc_hba
*phba
)
3657 LPFC_MBOXQ_t
*pmb
= NULL
;
3659 struct static_vport_info
*vport_info
;
3660 int mbx_wait_rc
= 0, i
;
3661 struct fc_vport_identifiers vport_id
;
3662 struct fc_vport
*new_fc_vport
;
3663 struct Scsi_Host
*shost
;
3664 struct lpfc_vport
*vport
;
3665 uint16_t offset
= 0;
3666 uint8_t *vport_buff
;
3667 struct lpfc_dmabuf
*mp
;
3668 uint32_t byte_count
= 0;
3670 pmb
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
3672 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
3673 "0542 lpfc_create_static_vport failed to"
3674 " allocate mailbox memory\n");
3677 memset(pmb
, 0, sizeof(LPFC_MBOXQ_t
));
3680 vport_info
= kzalloc(sizeof(struct static_vport_info
), GFP_KERNEL
);
3682 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
3683 "0543 lpfc_create_static_vport failed to"
3684 " allocate vport_info\n");
3685 mempool_free(pmb
, phba
->mbox_mem_pool
);
3689 vport_buff
= (uint8_t *) vport_info
;
3691 /* free dma buffer from previous round */
3692 if (pmb
->context1
) {
3693 mp
= (struct lpfc_dmabuf
*)pmb
->context1
;
3694 lpfc_mbuf_free(phba
, mp
->virt
, mp
->phys
);
3697 if (lpfc_dump_static_vport(phba
, pmb
, offset
))
3700 pmb
->vport
= phba
->pport
;
3701 mbx_wait_rc
= lpfc_sli_issue_mbox_wait(phba
, pmb
,
3704 if ((mbx_wait_rc
!= MBX_SUCCESS
) || mb
->mbxStatus
) {
3705 lpfc_printf_log(phba
, KERN_WARNING
, LOG_INIT
,
3706 "0544 lpfc_create_static_vport failed to"
3707 " issue dump mailbox command ret 0x%x "
3709 mbx_wait_rc
, mb
->mbxStatus
);
3713 if (phba
->sli_rev
== LPFC_SLI_REV4
) {
3714 byte_count
= pmb
->u
.mqe
.un
.mb_words
[5];
3715 mp
= (struct lpfc_dmabuf
*)pmb
->context1
;
3716 if (byte_count
> sizeof(struct static_vport_info
) -
3718 byte_count
= sizeof(struct static_vport_info
)
3720 memcpy(vport_buff
+ offset
, mp
->virt
, byte_count
);
3721 offset
+= byte_count
;
3723 if (mb
->un
.varDmp
.word_cnt
>
3724 sizeof(struct static_vport_info
) - offset
)
3725 mb
->un
.varDmp
.word_cnt
=
3726 sizeof(struct static_vport_info
)
3728 byte_count
= mb
->un
.varDmp
.word_cnt
;
3729 lpfc_sli_pcimem_bcopy(((uint8_t *)mb
) + DMP_RSP_OFFSET
,
3730 vport_buff
+ offset
,
3733 offset
+= byte_count
;
3736 } while (byte_count
&&
3737 offset
< sizeof(struct static_vport_info
));
3740 if ((le32_to_cpu(vport_info
->signature
) != VPORT_INFO_SIG
) ||
3741 ((le32_to_cpu(vport_info
->rev
) & VPORT_INFO_REV_MASK
)
3742 != VPORT_INFO_REV
)) {
3743 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
3744 "0545 lpfc_create_static_vport bad"
3745 " information header 0x%x 0x%x\n",
3746 le32_to_cpu(vport_info
->signature
),
3747 le32_to_cpu(vport_info
->rev
) & VPORT_INFO_REV_MASK
);
3752 shost
= lpfc_shost_from_vport(phba
->pport
);
3754 for (i
= 0; i
< MAX_STATIC_VPORT_COUNT
; i
++) {
3755 memset(&vport_id
, 0, sizeof(vport_id
));
3756 vport_id
.port_name
= wwn_to_u64(vport_info
->vport_list
[i
].wwpn
);
3757 vport_id
.node_name
= wwn_to_u64(vport_info
->vport_list
[i
].wwnn
);
3758 if (!vport_id
.port_name
|| !vport_id
.node_name
)
3761 vport_id
.roles
= FC_PORT_ROLE_FCP_INITIATOR
;
3762 vport_id
.vport_type
= FC_PORTTYPE_NPIV
;
3763 vport_id
.disable
= false;
3764 new_fc_vport
= fc_vport_create(shost
, 0, &vport_id
);
3766 if (!new_fc_vport
) {
3767 lpfc_printf_log(phba
, KERN_WARNING
, LOG_INIT
,
3768 "0546 lpfc_create_static_vport failed to"
3773 vport
= *(struct lpfc_vport
**)new_fc_vport
->dd_data
;
3774 vport
->vport_flag
|= STATIC_VPORT
;
3779 if (mbx_wait_rc
!= MBX_TIMEOUT
) {
3780 if (pmb
->context1
) {
3781 mp
= (struct lpfc_dmabuf
*)pmb
->context1
;
3782 lpfc_mbuf_free(phba
, mp
->virt
, mp
->phys
);
3785 mempool_free(pmb
, phba
->mbox_mem_pool
);
3792 * This routine handles processing a Fabric REG_LOGIN mailbox
3793 * command upon completion. It is setup in the LPFC_MBOXQ
3794 * as the completion routine when the command is
3795 * handed off to the SLI layer.
3798 lpfc_mbx_cmpl_fabric_reg_login(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*pmb
)
3800 struct lpfc_vport
*vport
= pmb
->vport
;
3801 MAILBOX_t
*mb
= &pmb
->u
.mb
;
3802 struct lpfc_dmabuf
*mp
= (struct lpfc_dmabuf
*) (pmb
->context1
);
3803 struct lpfc_nodelist
*ndlp
;
3804 struct Scsi_Host
*shost
;
3806 ndlp
= (struct lpfc_nodelist
*) pmb
->context2
;
3807 pmb
->context1
= NULL
;
3808 pmb
->context2
= NULL
;
3810 if (mb
->mbxStatus
) {
3811 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_MBOX
,
3812 "0258 Register Fabric login error: 0x%x\n",
3814 lpfc_mbuf_free(phba
, mp
->virt
, mp
->phys
);
3816 mempool_free(pmb
, phba
->mbox_mem_pool
);
3818 if (phba
->fc_topology
== LPFC_TOPOLOGY_LOOP
) {
3819 /* FLOGI failed, use loop map to make discovery list */
3820 lpfc_disc_list_loopmap(vport
);
3822 /* Start discovery */
3823 lpfc_disc_start(vport
);
3824 /* Decrement the reference count to ndlp after the
3825 * reference to the ndlp are done.
3831 lpfc_vport_set_state(vport
, FC_VPORT_FAILED
);
3832 /* Decrement the reference count to ndlp after the reference
3833 * to the ndlp are done.
3839 if (phba
->sli_rev
< LPFC_SLI_REV4
)
3840 ndlp
->nlp_rpi
= mb
->un
.varWords
[0];
3841 ndlp
->nlp_flag
|= NLP_RPI_REGISTERED
;
3842 ndlp
->nlp_type
|= NLP_FABRIC
;
3843 lpfc_nlp_set_state(vport
, ndlp
, NLP_STE_UNMAPPED_NODE
);
3845 if (vport
->port_state
== LPFC_FABRIC_CFG_LINK
) {
3846 /* when physical port receive logo donot start
3847 * vport discovery */
3848 if (!(vport
->fc_flag
& FC_LOGO_RCVD_DID_CHNG
))
3849 lpfc_start_fdiscs(phba
);
3851 shost
= lpfc_shost_from_vport(vport
);
3852 spin_lock_irq(shost
->host_lock
);
3853 vport
->fc_flag
&= ~FC_LOGO_RCVD_DID_CHNG
;
3854 spin_unlock_irq(shost
->host_lock
);
3856 lpfc_do_scr_ns_plogi(phba
, vport
);
3859 lpfc_mbuf_free(phba
, mp
->virt
, mp
->phys
);
3861 mempool_free(pmb
, phba
->mbox_mem_pool
);
3863 /* Drop the reference count from the mbox at the end after
3864 * all the current reference to the ndlp have been done.
3871 * This routine will issue a GID_FT for each FC4 Type supported
3872 * by the driver. ALL GID_FTs must complete before discovery is started.
3875 lpfc_issue_gidft(struct lpfc_vport
*vport
)
3877 struct lpfc_hba
*phba
= vport
->phba
;
3879 /* Good status, issue CT Request to NameServer */
3880 if ((phba
->cfg_enable_fc4_type
== LPFC_ENABLE_BOTH
) ||
3881 (phba
->cfg_enable_fc4_type
== LPFC_ENABLE_FCP
)) {
3882 if (lpfc_ns_cmd(vport
, SLI_CTNS_GID_FT
, 0, SLI_CTPT_FCP
)) {
3883 /* Cannot issue NameServer FCP Query, so finish up
3886 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_SLI
,
3887 "0604 %s FC TYPE %x %s\n",
3888 "Failed to issue GID_FT to ",
3890 "Finishing discovery.");
3896 if ((phba
->cfg_enable_fc4_type
== LPFC_ENABLE_BOTH
) ||
3897 (phba
->cfg_enable_fc4_type
== LPFC_ENABLE_NVME
)) {
3898 if (lpfc_ns_cmd(vport
, SLI_CTNS_GID_FT
, 0, SLI_CTPT_NVME
)) {
3899 /* Cannot issue NameServer NVME Query, so finish up
3902 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_SLI
,
3903 "0605 %s FC_TYPE %x %s %d\n",
3904 "Failed to issue GID_FT to ",
3906 "Finishing discovery: gidftinp ",
3908 if (vport
->gidft_inp
== 0)
3913 return vport
->gidft_inp
;
3917 * This routine handles processing a NameServer REG_LOGIN mailbox
3918 * command upon completion. It is setup in the LPFC_MBOXQ
3919 * as the completion routine when the command is
3920 * handed off to the SLI layer.
3923 lpfc_mbx_cmpl_ns_reg_login(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*pmb
)
3925 MAILBOX_t
*mb
= &pmb
->u
.mb
;
3926 struct lpfc_dmabuf
*mp
= (struct lpfc_dmabuf
*) (pmb
->context1
);
3927 struct lpfc_nodelist
*ndlp
= (struct lpfc_nodelist
*) pmb
->context2
;
3928 struct lpfc_vport
*vport
= pmb
->vport
;
3930 pmb
->context1
= NULL
;
3931 pmb
->context2
= NULL
;
3932 vport
->gidft_inp
= 0;
3934 if (mb
->mbxStatus
) {
3935 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_ELS
,
3936 "0260 Register NameServer error: 0x%x\n",
3940 /* decrement the node reference count held for this
3941 * callback function.
3944 lpfc_mbuf_free(phba
, mp
->virt
, mp
->phys
);
3946 mempool_free(pmb
, phba
->mbox_mem_pool
);
3948 /* If no other thread is using the ndlp, free it */
3949 lpfc_nlp_not_used(ndlp
);
3951 if (phba
->fc_topology
== LPFC_TOPOLOGY_LOOP
) {
3953 * RegLogin failed, use loop map to make discovery
3956 lpfc_disc_list_loopmap(vport
);
3958 /* Start discovery */
3959 lpfc_disc_start(vport
);
3962 lpfc_vport_set_state(vport
, FC_VPORT_FAILED
);
3966 if (phba
->sli_rev
< LPFC_SLI_REV4
)
3967 ndlp
->nlp_rpi
= mb
->un
.varWords
[0];
3968 ndlp
->nlp_flag
|= NLP_RPI_REGISTERED
;
3969 ndlp
->nlp_type
|= NLP_FABRIC
;
3970 lpfc_nlp_set_state(vport
, ndlp
, NLP_STE_UNMAPPED_NODE
);
3971 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_SLI
,
3972 "0003 rpi:%x DID:%x flg:%x %d map%x %p\n",
3973 ndlp
->nlp_rpi
, ndlp
->nlp_DID
, ndlp
->nlp_flag
,
3974 kref_read(&ndlp
->kref
),
3975 ndlp
->nlp_usg_map
, ndlp
);
3977 if (vport
->port_state
< LPFC_VPORT_READY
) {
3978 /* Link up discovery requires Fabric registration. */
3979 lpfc_ns_cmd(vport
, SLI_CTNS_RNN_ID
, 0, 0);
3980 lpfc_ns_cmd(vport
, SLI_CTNS_RSNN_NN
, 0, 0);
3981 lpfc_ns_cmd(vport
, SLI_CTNS_RSPN_ID
, 0, 0);
3982 lpfc_ns_cmd(vport
, SLI_CTNS_RFT_ID
, 0, 0);
3984 if ((phba
->cfg_enable_fc4_type
== LPFC_ENABLE_BOTH
) ||
3985 (phba
->cfg_enable_fc4_type
== LPFC_ENABLE_FCP
))
3986 lpfc_ns_cmd(vport
, SLI_CTNS_RFF_ID
, 0, FC_TYPE_FCP
);
3988 if ((phba
->cfg_enable_fc4_type
== LPFC_ENABLE_BOTH
) ||
3989 (phba
->cfg_enable_fc4_type
== LPFC_ENABLE_NVME
))
3990 lpfc_ns_cmd(vport
, SLI_CTNS_RFF_ID
, 0,
3993 /* Issue SCR just before NameServer GID_FT Query */
3994 lpfc_issue_els_scr(vport
, SCR_DID
, 0);
3997 vport
->fc_ns_retry
= 0;
3998 if (lpfc_issue_gidft(vport
) == 0)
4002 * At this point in time we may need to wait for multiple
4003 * SLI_CTNS_GID_FT CT commands to complete before we start discovery.
4005 * decrement the node reference count held for this
4006 * callback function.
4009 lpfc_mbuf_free(phba
, mp
->virt
, mp
->phys
);
4011 mempool_free(pmb
, phba
->mbox_mem_pool
);
4017 lpfc_register_remote_port(struct lpfc_vport
*vport
, struct lpfc_nodelist
*ndlp
)
4019 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
4020 struct fc_rport
*rport
;
4021 struct lpfc_rport_data
*rdata
;
4022 struct fc_rport_identifiers rport_ids
;
4023 struct lpfc_hba
*phba
= vport
->phba
;
4025 if (phba
->cfg_enable_fc4_type
== LPFC_ENABLE_NVME
)
4028 /* Remote port has reappeared. Re-register w/ FC transport */
4029 rport_ids
.node_name
= wwn_to_u64(ndlp
->nlp_nodename
.u
.wwn
);
4030 rport_ids
.port_name
= wwn_to_u64(ndlp
->nlp_portname
.u
.wwn
);
4031 rport_ids
.port_id
= ndlp
->nlp_DID
;
4032 rport_ids
.roles
= FC_RPORT_ROLE_UNKNOWN
;
4035 * We leave our node pointer in rport->dd_data when we unregister a
4036 * FCP target port. But fc_remote_port_add zeros the space to which
4037 * rport->dd_data points. So, if we're reusing a previously
4038 * registered port, drop the reference that we took the last time we
4039 * registered the port.
4041 rport
= ndlp
->rport
;
4043 rdata
= rport
->dd_data
;
4044 /* break the link before dropping the ref */
4047 if (rdata
->pnode
== ndlp
)
4049 rdata
->pnode
= NULL
;
4051 /* drop reference for earlier registeration */
4052 put_device(&rport
->dev
);
4055 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_RPORT
,
4056 "rport add: did:x%x flg:x%x type x%x",
4057 ndlp
->nlp_DID
, ndlp
->nlp_flag
, ndlp
->nlp_type
);
4059 /* Don't add the remote port if unloading. */
4060 if (vport
->load_flag
& FC_UNLOADING
)
4063 ndlp
->rport
= rport
= fc_remote_port_add(shost
, 0, &rport_ids
);
4064 if (!rport
|| !get_device(&rport
->dev
)) {
4065 dev_printk(KERN_WARNING
, &phba
->pcidev
->dev
,
4066 "Warning: fc_remote_port_add failed\n");
4070 /* initialize static port data */
4071 rport
->maxframe_size
= ndlp
->nlp_maxframe
;
4072 rport
->supported_classes
= ndlp
->nlp_class_sup
;
4073 rdata
= rport
->dd_data
;
4074 rdata
->pnode
= lpfc_nlp_get(ndlp
);
4076 if (ndlp
->nlp_type
& NLP_FCP_TARGET
)
4077 rport_ids
.roles
|= FC_RPORT_ROLE_FCP_TARGET
;
4078 if (ndlp
->nlp_type
& NLP_FCP_INITIATOR
)
4079 rport_ids
.roles
|= FC_RPORT_ROLE_FCP_INITIATOR
;
4081 if (rport_ids
.roles
!= FC_RPORT_ROLE_UNKNOWN
)
4082 fc_remote_port_rolechg(rport
, rport_ids
.roles
);
4084 lpfc_printf_vlog(ndlp
->vport
, KERN_INFO
, LOG_NODE
,
4085 "3183 rport register x%06x, rport %p role x%x\n",
4086 ndlp
->nlp_DID
, rport
, rport_ids
.roles
);
4088 if ((rport
->scsi_target_id
!= -1) &&
4089 (rport
->scsi_target_id
< LPFC_MAX_TARGET
)) {
4090 ndlp
->nlp_sid
= rport
->scsi_target_id
;
4096 lpfc_unregister_remote_port(struct lpfc_nodelist
*ndlp
)
4098 struct fc_rport
*rport
= ndlp
->rport
;
4099 struct lpfc_vport
*vport
= ndlp
->vport
;
4100 struct lpfc_hba
*phba
= vport
->phba
;
4102 if (phba
->cfg_enable_fc4_type
== LPFC_ENABLE_NVME
)
4105 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_RPORT
,
4106 "rport delete: did:x%x flg:x%x type x%x",
4107 ndlp
->nlp_DID
, ndlp
->nlp_flag
, ndlp
->nlp_type
);
4109 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_NODE
,
4110 "3184 rport unregister x%06x, rport %p\n",
4111 ndlp
->nlp_DID
, rport
);
4113 fc_remote_port_delete(rport
);
4119 lpfc_nlp_counters(struct lpfc_vport
*vport
, int state
, int count
)
4121 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
4123 spin_lock_irq(shost
->host_lock
);
4125 case NLP_STE_UNUSED_NODE
:
4126 vport
->fc_unused_cnt
+= count
;
4128 case NLP_STE_PLOGI_ISSUE
:
4129 vport
->fc_plogi_cnt
+= count
;
4131 case NLP_STE_ADISC_ISSUE
:
4132 vport
->fc_adisc_cnt
+= count
;
4134 case NLP_STE_REG_LOGIN_ISSUE
:
4135 vport
->fc_reglogin_cnt
+= count
;
4137 case NLP_STE_PRLI_ISSUE
:
4138 vport
->fc_prli_cnt
+= count
;
4140 case NLP_STE_UNMAPPED_NODE
:
4141 vport
->fc_unmap_cnt
+= count
;
4143 case NLP_STE_MAPPED_NODE
:
4144 vport
->fc_map_cnt
+= count
;
4146 case NLP_STE_NPR_NODE
:
4147 if (vport
->fc_npr_cnt
== 0 && count
== -1)
4148 vport
->fc_npr_cnt
= 0;
4150 vport
->fc_npr_cnt
+= count
;
4153 spin_unlock_irq(shost
->host_lock
);
4157 lpfc_nlp_state_cleanup(struct lpfc_vport
*vport
, struct lpfc_nodelist
*ndlp
,
4158 int old_state
, int new_state
)
4160 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
4162 if (new_state
== NLP_STE_UNMAPPED_NODE
) {
4163 ndlp
->nlp_flag
&= ~NLP_NODEV_REMOVE
;
4164 ndlp
->nlp_type
|= NLP_FC_NODE
;
4166 if (new_state
== NLP_STE_MAPPED_NODE
)
4167 ndlp
->nlp_flag
&= ~NLP_NODEV_REMOVE
;
4168 if (new_state
== NLP_STE_NPR_NODE
)
4169 ndlp
->nlp_flag
&= ~NLP_RCV_PLOGI
;
4171 /* FCP and NVME Transport interface */
4172 if ((old_state
== NLP_STE_MAPPED_NODE
||
4173 old_state
== NLP_STE_UNMAPPED_NODE
)) {
4175 vport
->phba
->nport_event_cnt
++;
4176 lpfc_unregister_remote_port(ndlp
);
4179 if (ndlp
->nlp_fc4_type
& NLP_FC4_NVME
) {
4180 vport
->phba
->nport_event_cnt
++;
4181 if (vport
->phba
->nvmet_support
== 0) {
4182 /* Start devloss if target. */
4183 if (ndlp
->nlp_type
& NLP_NVME_TARGET
)
4184 lpfc_nvme_unregister_port(vport
, ndlp
);
4186 /* NVMET has no upcall. */
4192 /* FCP and NVME Transport interfaces */
4194 if (new_state
== NLP_STE_MAPPED_NODE
||
4195 new_state
== NLP_STE_UNMAPPED_NODE
) {
4196 if (ndlp
->nlp_fc4_type
& NLP_FC4_FCP
||
4197 ndlp
->nlp_DID
== Fabric_DID
||
4198 ndlp
->nlp_DID
== NameServer_DID
||
4199 ndlp
->nlp_DID
== FDMI_DID
) {
4200 vport
->phba
->nport_event_cnt
++;
4202 * Tell the fc transport about the port, if we haven't
4203 * already. If we have, and it's a scsi entity, be
4205 lpfc_register_remote_port(vport
, ndlp
);
4207 /* Notify the NVME transport of this new rport. */
4208 if (vport
->phba
->sli_rev
>= LPFC_SLI_REV4
&&
4209 ndlp
->nlp_fc4_type
& NLP_FC4_NVME
) {
4210 if (vport
->phba
->nvmet_support
== 0) {
4211 /* Register this rport with the transport.
4212 * Only NVME Target Rports are registered with
4215 if (ndlp
->nlp_type
& NLP_NVME_TARGET
) {
4216 vport
->phba
->nport_event_cnt
++;
4217 lpfc_nvme_register_port(vport
, ndlp
);
4220 /* Just take an NDLP ref count since the
4221 * target does not register rports.
4228 if ((new_state
== NLP_STE_MAPPED_NODE
) &&
4229 (vport
->stat_data_enabled
)) {
4231 * A new target is discovered, if there is no buffer for
4232 * statistical data collection allocate buffer.
4234 ndlp
->lat_data
= kcalloc(LPFC_MAX_BUCKET_COUNT
,
4235 sizeof(struct lpfc_scsicmd_bkt
),
4238 if (!ndlp
->lat_data
)
4239 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_NODE
,
4240 "0286 lpfc_nlp_state_cleanup failed to "
4241 "allocate statistical data buffer DID "
4242 "0x%x\n", ndlp
->nlp_DID
);
4245 * If the node just added to Mapped list was an FCP target,
4246 * but the remote port registration failed or assigned a target
4247 * id outside the presentable range - move the node to the
4250 if ((new_state
== NLP_STE_MAPPED_NODE
) &&
4251 (ndlp
->nlp_type
& NLP_FCP_TARGET
) &&
4253 ndlp
->rport
->scsi_target_id
== -1 ||
4254 ndlp
->rport
->scsi_target_id
>= LPFC_MAX_TARGET
)) {
4255 spin_lock_irq(shost
->host_lock
);
4256 ndlp
->nlp_flag
|= NLP_TGT_NO_SCSIID
;
4257 spin_unlock_irq(shost
->host_lock
);
4258 lpfc_nlp_set_state(vport
, ndlp
, NLP_STE_UNMAPPED_NODE
);
4263 lpfc_nlp_state_name(char *buffer
, size_t size
, int state
)
4265 static char *states
[] = {
4266 [NLP_STE_UNUSED_NODE
] = "UNUSED",
4267 [NLP_STE_PLOGI_ISSUE
] = "PLOGI",
4268 [NLP_STE_ADISC_ISSUE
] = "ADISC",
4269 [NLP_STE_REG_LOGIN_ISSUE
] = "REGLOGIN",
4270 [NLP_STE_PRLI_ISSUE
] = "PRLI",
4271 [NLP_STE_LOGO_ISSUE
] = "LOGO",
4272 [NLP_STE_UNMAPPED_NODE
] = "UNMAPPED",
4273 [NLP_STE_MAPPED_NODE
] = "MAPPED",
4274 [NLP_STE_NPR_NODE
] = "NPR",
4277 if (state
< NLP_STE_MAX_STATE
&& states
[state
])
4278 strlcpy(buffer
, states
[state
], size
);
4280 snprintf(buffer
, size
, "unknown (%d)", state
);
4285 lpfc_nlp_set_state(struct lpfc_vport
*vport
, struct lpfc_nodelist
*ndlp
,
4288 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
4289 int old_state
= ndlp
->nlp_state
;
4290 char name1
[16], name2
[16];
4292 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_NODE
,
4293 "0904 NPort state transition x%06x, %s -> %s\n",
4295 lpfc_nlp_state_name(name1
, sizeof(name1
), old_state
),
4296 lpfc_nlp_state_name(name2
, sizeof(name2
), state
));
4298 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_NODE
,
4299 "node statechg did:x%x old:%d ste:%d",
4300 ndlp
->nlp_DID
, old_state
, state
);
4302 if (old_state
== NLP_STE_NPR_NODE
&&
4303 state
!= NLP_STE_NPR_NODE
)
4304 lpfc_cancel_retry_delay_tmo(vport
, ndlp
);
4305 if (old_state
== NLP_STE_UNMAPPED_NODE
) {
4306 ndlp
->nlp_flag
&= ~NLP_TGT_NO_SCSIID
;
4307 ndlp
->nlp_type
&= ~NLP_FC_NODE
;
4310 if (list_empty(&ndlp
->nlp_listp
)) {
4311 spin_lock_irq(shost
->host_lock
);
4312 list_add_tail(&ndlp
->nlp_listp
, &vport
->fc_nodes
);
4313 spin_unlock_irq(shost
->host_lock
);
4314 } else if (old_state
)
4315 lpfc_nlp_counters(vport
, old_state
, -1);
4317 ndlp
->nlp_state
= state
;
4318 lpfc_nlp_counters(vport
, state
, 1);
4319 lpfc_nlp_state_cleanup(vport
, ndlp
, old_state
, state
);
4323 lpfc_enqueue_node(struct lpfc_vport
*vport
, struct lpfc_nodelist
*ndlp
)
4325 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
4327 if (list_empty(&ndlp
->nlp_listp
)) {
4328 spin_lock_irq(shost
->host_lock
);
4329 list_add_tail(&ndlp
->nlp_listp
, &vport
->fc_nodes
);
4330 spin_unlock_irq(shost
->host_lock
);
4335 lpfc_dequeue_node(struct lpfc_vport
*vport
, struct lpfc_nodelist
*ndlp
)
4337 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
4339 lpfc_cancel_retry_delay_tmo(vport
, ndlp
);
4340 if (ndlp
->nlp_state
&& !list_empty(&ndlp
->nlp_listp
))
4341 lpfc_nlp_counters(vport
, ndlp
->nlp_state
, -1);
4342 spin_lock_irq(shost
->host_lock
);
4343 list_del_init(&ndlp
->nlp_listp
);
4344 spin_unlock_irq(shost
->host_lock
);
4345 lpfc_nlp_state_cleanup(vport
, ndlp
, ndlp
->nlp_state
,
4346 NLP_STE_UNUSED_NODE
);
4350 lpfc_disable_node(struct lpfc_vport
*vport
, struct lpfc_nodelist
*ndlp
)
4352 lpfc_cancel_retry_delay_tmo(vport
, ndlp
);
4353 if (ndlp
->nlp_state
&& !list_empty(&ndlp
->nlp_listp
))
4354 lpfc_nlp_counters(vport
, ndlp
->nlp_state
, -1);
4355 lpfc_nlp_state_cleanup(vport
, ndlp
, ndlp
->nlp_state
,
4356 NLP_STE_UNUSED_NODE
);
4359 * lpfc_initialize_node - Initialize all fields of node object
4360 * @vport: Pointer to Virtual Port object.
4361 * @ndlp: Pointer to FC node object.
4362 * @did: FC_ID of the node.
4364 * This function is always called when node object need to be initialized.
4365 * It initializes all the fields of the node object. Although the reference
4366 * to phba from @ndlp can be obtained indirectly through it's reference to
4367 * @vport, a direct reference to phba is taken here by @ndlp. This is due
4368 * to the life-span of the @ndlp might go beyond the existence of @vport as
4369 * the final release of ndlp is determined by its reference count. And, the
4370 * operation on @ndlp needs the reference to phba.
4373 lpfc_initialize_node(struct lpfc_vport
*vport
, struct lpfc_nodelist
*ndlp
,
4376 INIT_LIST_HEAD(&ndlp
->els_retry_evt
.evt_listp
);
4377 INIT_LIST_HEAD(&ndlp
->dev_loss_evt
.evt_listp
);
4378 timer_setup(&ndlp
->nlp_delayfunc
, lpfc_els_retry_delay
, 0);
4379 ndlp
->nlp_DID
= did
;
4380 ndlp
->vport
= vport
;
4381 ndlp
->phba
= vport
->phba
;
4382 ndlp
->nlp_sid
= NLP_NO_SID
;
4383 ndlp
->nlp_fc4_type
= NLP_FC4_NONE
;
4384 kref_init(&ndlp
->kref
);
4385 NLP_INT_NODE_ACT(ndlp
);
4386 atomic_set(&ndlp
->cmd_pending
, 0);
4387 ndlp
->cmd_qdepth
= vport
->cfg_tgt_queue_depth
;
4390 struct lpfc_nodelist
*
4391 lpfc_enable_node(struct lpfc_vport
*vport
, struct lpfc_nodelist
*ndlp
,
4394 struct lpfc_hba
*phba
= vport
->phba
;
4396 unsigned long flags
;
4397 unsigned long *active_rrqs_xri_bitmap
= NULL
;
4398 int rpi
= LPFC_RPI_ALLOC_ERROR
;
4403 if (phba
->sli_rev
== LPFC_SLI_REV4
) {
4404 rpi
= lpfc_sli4_alloc_rpi(vport
->phba
);
4405 if (rpi
== LPFC_RPI_ALLOC_ERROR
)
4409 spin_lock_irqsave(&phba
->ndlp_lock
, flags
);
4410 /* The ndlp should not be in memory free mode */
4411 if (NLP_CHK_FREE_REQ(ndlp
)) {
4412 spin_unlock_irqrestore(&phba
->ndlp_lock
, flags
);
4413 lpfc_printf_vlog(vport
, KERN_WARNING
, LOG_NODE
,
4414 "0277 lpfc_enable_node: ndlp:x%p "
4415 "usgmap:x%x refcnt:%d\n",
4416 (void *)ndlp
, ndlp
->nlp_usg_map
,
4417 kref_read(&ndlp
->kref
));
4420 /* The ndlp should not already be in active mode */
4421 if (NLP_CHK_NODE_ACT(ndlp
)) {
4422 spin_unlock_irqrestore(&phba
->ndlp_lock
, flags
);
4423 lpfc_printf_vlog(vport
, KERN_WARNING
, LOG_NODE
,
4424 "0278 lpfc_enable_node: ndlp:x%p "
4425 "usgmap:x%x refcnt:%d\n",
4426 (void *)ndlp
, ndlp
->nlp_usg_map
,
4427 kref_read(&ndlp
->kref
));
4431 /* Keep the original DID */
4432 did
= ndlp
->nlp_DID
;
4433 if (phba
->sli_rev
== LPFC_SLI_REV4
)
4434 active_rrqs_xri_bitmap
= ndlp
->active_rrqs_xri_bitmap
;
4436 /* re-initialize ndlp except of ndlp linked list pointer */
4437 memset((((char *)ndlp
) + sizeof (struct list_head
)), 0,
4438 sizeof (struct lpfc_nodelist
) - sizeof (struct list_head
));
4439 lpfc_initialize_node(vport
, ndlp
, did
);
4441 if (phba
->sli_rev
== LPFC_SLI_REV4
)
4442 ndlp
->active_rrqs_xri_bitmap
= active_rrqs_xri_bitmap
;
4444 spin_unlock_irqrestore(&phba
->ndlp_lock
, flags
);
4445 if (vport
->phba
->sli_rev
== LPFC_SLI_REV4
) {
4446 ndlp
->nlp_rpi
= rpi
;
4447 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_NODE
,
4448 "0008 rpi:%x DID:%x flg:%x refcnt:%d "
4449 "map:%x %p\n", ndlp
->nlp_rpi
, ndlp
->nlp_DID
,
4451 kref_read(&ndlp
->kref
),
4452 ndlp
->nlp_usg_map
, ndlp
);
4456 if (state
!= NLP_STE_UNUSED_NODE
)
4457 lpfc_nlp_set_state(vport
, ndlp
, state
);
4459 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_NODE
,
4460 "node enable: did:x%x",
4461 ndlp
->nlp_DID
, 0, 0);
4465 if (phba
->sli_rev
== LPFC_SLI_REV4
)
4466 lpfc_sli4_free_rpi(vport
->phba
, rpi
);
4471 lpfc_drop_node(struct lpfc_vport
*vport
, struct lpfc_nodelist
*ndlp
)
4474 * Use of lpfc_drop_node and UNUSED list: lpfc_drop_node should
4475 * be used if we wish to issue the "last" lpfc_nlp_put() to remove
4476 * the ndlp from the vport. The ndlp marked as UNUSED on the list
4477 * until ALL other outstanding threads have completed. We check
4478 * that the ndlp not already in the UNUSED state before we proceed.
4480 if (ndlp
->nlp_state
== NLP_STE_UNUSED_NODE
)
4482 lpfc_nlp_set_state(vport
, ndlp
, NLP_STE_UNUSED_NODE
);
4483 if (vport
->phba
->sli_rev
== LPFC_SLI_REV4
) {
4484 lpfc_cleanup_vports_rrqs(vport
, ndlp
);
4485 lpfc_unreg_rpi(vport
, ndlp
);
4493 * Start / ReStart rescue timer for Discovery / RSCN handling
4496 lpfc_set_disctmo(struct lpfc_vport
*vport
)
4498 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
4499 struct lpfc_hba
*phba
= vport
->phba
;
4502 if (vport
->port_state
== LPFC_LOCAL_CFG_LINK
) {
4503 /* For FAN, timeout should be greater than edtov */
4504 tmo
= (((phba
->fc_edtov
+ 999) / 1000) + 1);
4506 /* Normal discovery timeout should be > than ELS/CT timeout
4507 * FC spec states we need 3 * ratov for CT requests
4509 tmo
= ((phba
->fc_ratov
* 3) + 3);
4513 if (!timer_pending(&vport
->fc_disctmo
)) {
4514 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_CMD
,
4515 "set disc timer: tmo:x%x state:x%x flg:x%x",
4516 tmo
, vport
->port_state
, vport
->fc_flag
);
4519 mod_timer(&vport
->fc_disctmo
, jiffies
+ msecs_to_jiffies(1000 * tmo
));
4520 spin_lock_irq(shost
->host_lock
);
4521 vport
->fc_flag
|= FC_DISC_TMO
;
4522 spin_unlock_irq(shost
->host_lock
);
4524 /* Start Discovery Timer state <hba_state> */
4525 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_DISCOVERY
,
4526 "0247 Start Discovery Timer state x%x "
4527 "Data: x%x x%lx x%x x%x\n",
4528 vport
->port_state
, tmo
,
4529 (unsigned long)&vport
->fc_disctmo
, vport
->fc_plogi_cnt
,
4530 vport
->fc_adisc_cnt
);
4536 * Cancel rescue timer for Discovery / RSCN handling
4539 lpfc_can_disctmo(struct lpfc_vport
*vport
)
4541 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
4542 unsigned long iflags
;
4544 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_CMD
,
4545 "can disc timer: state:x%x rtry:x%x flg:x%x",
4546 vport
->port_state
, vport
->fc_ns_retry
, vport
->fc_flag
);
4548 /* Turn off discovery timer if its running */
4549 if (vport
->fc_flag
& FC_DISC_TMO
) {
4550 spin_lock_irqsave(shost
->host_lock
, iflags
);
4551 vport
->fc_flag
&= ~FC_DISC_TMO
;
4552 spin_unlock_irqrestore(shost
->host_lock
, iflags
);
4553 del_timer_sync(&vport
->fc_disctmo
);
4554 spin_lock_irqsave(&vport
->work_port_lock
, iflags
);
4555 vport
->work_port_events
&= ~WORKER_DISC_TMO
;
4556 spin_unlock_irqrestore(&vport
->work_port_lock
, iflags
);
4559 /* Cancel Discovery Timer state <hba_state> */
4560 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_DISCOVERY
,
4561 "0248 Cancel Discovery Timer state x%x "
4562 "Data: x%x x%x x%x\n",
4563 vport
->port_state
, vport
->fc_flag
,
4564 vport
->fc_plogi_cnt
, vport
->fc_adisc_cnt
);
4569 * Check specified ring for outstanding IOCB on the SLI queue
4570 * Return true if iocb matches the specified nport
4573 lpfc_check_sli_ndlp(struct lpfc_hba
*phba
,
4574 struct lpfc_sli_ring
*pring
,
4575 struct lpfc_iocbq
*iocb
,
4576 struct lpfc_nodelist
*ndlp
)
4578 IOCB_t
*icmd
= &iocb
->iocb
;
4579 struct lpfc_vport
*vport
= ndlp
->vport
;
4581 if (iocb
->vport
!= vport
)
4584 if (pring
->ringno
== LPFC_ELS_RING
) {
4585 switch (icmd
->ulpCommand
) {
4586 case CMD_GEN_REQUEST64_CR
:
4587 if (iocb
->context_un
.ndlp
== ndlp
)
4589 case CMD_ELS_REQUEST64_CR
:
4590 if (icmd
->un
.elsreq64
.remoteID
== ndlp
->nlp_DID
)
4592 case CMD_XMIT_ELS_RSP64_CX
:
4593 if (iocb
->context1
== (uint8_t *) ndlp
)
4596 } else if (pring
->ringno
== LPFC_FCP_RING
) {
4597 /* Skip match check if waiting to relogin to FCP target */
4598 if ((ndlp
->nlp_type
& NLP_FCP_TARGET
) &&
4599 (ndlp
->nlp_flag
& NLP_DELAY_TMO
)) {
4602 if (icmd
->ulpContext
== (volatile ushort
)ndlp
->nlp_rpi
) {
4610 __lpfc_dequeue_nport_iocbs(struct lpfc_hba
*phba
,
4611 struct lpfc_nodelist
*ndlp
, struct lpfc_sli_ring
*pring
,
4612 struct list_head
*dequeue_list
)
4614 struct lpfc_iocbq
*iocb
, *next_iocb
;
4616 list_for_each_entry_safe(iocb
, next_iocb
, &pring
->txq
, list
) {
4617 /* Check to see if iocb matches the nport */
4618 if (lpfc_check_sli_ndlp(phba
, pring
, iocb
, ndlp
))
4619 /* match, dequeue */
4620 list_move_tail(&iocb
->list
, dequeue_list
);
4625 lpfc_sli3_dequeue_nport_iocbs(struct lpfc_hba
*phba
,
4626 struct lpfc_nodelist
*ndlp
, struct list_head
*dequeue_list
)
4628 struct lpfc_sli
*psli
= &phba
->sli
;
4631 spin_lock_irq(&phba
->hbalock
);
4632 for (i
= 0; i
< psli
->num_rings
; i
++)
4633 __lpfc_dequeue_nport_iocbs(phba
, ndlp
, &psli
->sli3_ring
[i
],
4635 spin_unlock_irq(&phba
->hbalock
);
4639 lpfc_sli4_dequeue_nport_iocbs(struct lpfc_hba
*phba
,
4640 struct lpfc_nodelist
*ndlp
, struct list_head
*dequeue_list
)
4642 struct lpfc_sli_ring
*pring
;
4643 struct lpfc_queue
*qp
= NULL
;
4645 spin_lock_irq(&phba
->hbalock
);
4646 list_for_each_entry(qp
, &phba
->sli4_hba
.lpfc_wq_list
, wq_list
) {
4650 spin_lock(&pring
->ring_lock
);
4651 __lpfc_dequeue_nport_iocbs(phba
, ndlp
, pring
, dequeue_list
);
4652 spin_unlock(&pring
->ring_lock
);
4654 spin_unlock_irq(&phba
->hbalock
);
4658 * Free resources / clean up outstanding I/Os
4659 * associated with nlp_rpi in the LPFC_NODELIST entry.
4662 lpfc_no_rpi(struct lpfc_hba
*phba
, struct lpfc_nodelist
*ndlp
)
4664 LIST_HEAD(completions
);
4666 lpfc_fabric_abort_nport(ndlp
);
4669 * Everything that matches on txcmplq will be returned
4670 * by firmware with a no rpi error.
4672 if (ndlp
->nlp_flag
& NLP_RPI_REGISTERED
) {
4673 if (phba
->sli_rev
!= LPFC_SLI_REV4
)
4674 lpfc_sli3_dequeue_nport_iocbs(phba
, ndlp
, &completions
);
4676 lpfc_sli4_dequeue_nport_iocbs(phba
, ndlp
, &completions
);
4679 /* Cancel all the IOCBs from the completions list */
4680 lpfc_sli_cancel_iocbs(phba
, &completions
, IOSTAT_LOCAL_REJECT
,
4687 * lpfc_nlp_logo_unreg - Unreg mailbox completion handler before LOGO
4688 * @phba: Pointer to HBA context object.
4689 * @pmb: Pointer to mailbox object.
4691 * This function will issue an ELS LOGO command after completing
4695 lpfc_nlp_logo_unreg(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*pmb
)
4697 struct lpfc_vport
*vport
= pmb
->vport
;
4698 struct lpfc_nodelist
*ndlp
;
4700 ndlp
= (struct lpfc_nodelist
*)(pmb
->context1
);
4703 lpfc_issue_els_logo(vport
, ndlp
, 0);
4704 mempool_free(pmb
, phba
->mbox_mem_pool
);
4708 * Free rpi associated with LPFC_NODELIST entry.
4709 * This routine is called from lpfc_freenode(), when we are removing
4710 * a LPFC_NODELIST entry. It is also called if the driver initiates a
4711 * LOGO that completes successfully, and we are waiting to PLOGI back
4712 * to the remote NPort. In addition, it is called after we receive
4713 * and unsolicated ELS cmd, send back a rsp, the rsp completes and
4714 * we are waiting to PLOGI back to the remote NPort.
4717 lpfc_unreg_rpi(struct lpfc_vport
*vport
, struct lpfc_nodelist
*ndlp
)
4719 struct lpfc_hba
*phba
= vport
->phba
;
4721 int rc
, acc_plogi
= 1;
4724 if (ndlp
->nlp_flag
& NLP_RPI_REGISTERED
||
4725 ndlp
->nlp_flag
& NLP_REG_LOGIN_SEND
) {
4726 if (ndlp
->nlp_flag
& NLP_REG_LOGIN_SEND
)
4727 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_SLI
,
4728 "3366 RPI x%x needs to be "
4729 "unregistered nlp_flag x%x "
4731 ndlp
->nlp_rpi
, ndlp
->nlp_flag
,
4733 mbox
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
4735 /* SLI4 ports require the physical rpi value. */
4736 rpi
= ndlp
->nlp_rpi
;
4737 if (phba
->sli_rev
== LPFC_SLI_REV4
)
4738 rpi
= phba
->sli4_hba
.rpi_ids
[ndlp
->nlp_rpi
];
4740 lpfc_unreg_login(phba
, vport
->vpi
, rpi
, mbox
);
4741 mbox
->vport
= vport
;
4742 if (ndlp
->nlp_flag
& NLP_ISSUE_LOGO
) {
4743 mbox
->context1
= ndlp
;
4744 mbox
->mbox_cmpl
= lpfc_nlp_logo_unreg
;
4746 if (phba
->sli_rev
== LPFC_SLI_REV4
&&
4747 (!(vport
->load_flag
& FC_UNLOADING
)) &&
4748 (bf_get(lpfc_sli_intf_if_type
,
4749 &phba
->sli4_hba
.sli_intf
) ==
4750 LPFC_SLI_INTF_IF_TYPE_2
) &&
4751 (kref_read(&ndlp
->kref
) > 0)) {
4752 mbox
->context1
= lpfc_nlp_get(ndlp
);
4754 lpfc_sli4_unreg_rpi_cmpl_clr
;
4756 * accept PLOGIs after unreg_rpi_cmpl
4761 lpfc_sli_def_mbox_cmpl
;
4764 rc
= lpfc_sli_issue_mbox(phba
, mbox
, MBX_NOWAIT
);
4765 if (rc
== MBX_NOT_FINISHED
) {
4766 mempool_free(mbox
, phba
->mbox_mem_pool
);
4770 lpfc_no_rpi(phba
, ndlp
);
4772 if (phba
->sli_rev
!= LPFC_SLI_REV4
)
4774 ndlp
->nlp_flag
&= ~NLP_RPI_REGISTERED
;
4775 ndlp
->nlp_flag
&= ~NLP_NPR_ADISC
;
4777 ndlp
->nlp_flag
&= ~NLP_LOGO_ACC
;
4780 ndlp
->nlp_flag
&= ~NLP_LOGO_ACC
;
4785 * lpfc_unreg_hba_rpis - Unregister rpis registered to the hba.
4786 * @phba: pointer to lpfc hba data structure.
4788 * This routine is invoked to unregister all the currently registered RPIs
4792 lpfc_unreg_hba_rpis(struct lpfc_hba
*phba
)
4794 struct lpfc_vport
**vports
;
4795 struct lpfc_nodelist
*ndlp
;
4796 struct Scsi_Host
*shost
;
4799 vports
= lpfc_create_vport_work_array(phba
);
4801 lpfc_printf_log(phba
, KERN_ERR
, LOG_DISCOVERY
,
4802 "2884 Vport array allocation failed \n");
4805 for (i
= 0; i
<= phba
->max_vports
&& vports
[i
] != NULL
; i
++) {
4806 shost
= lpfc_shost_from_vport(vports
[i
]);
4807 spin_lock_irq(shost
->host_lock
);
4808 list_for_each_entry(ndlp
, &vports
[i
]->fc_nodes
, nlp_listp
) {
4809 if (ndlp
->nlp_flag
& NLP_RPI_REGISTERED
) {
4810 /* The mempool_alloc might sleep */
4811 spin_unlock_irq(shost
->host_lock
);
4812 lpfc_unreg_rpi(vports
[i
], ndlp
);
4813 spin_lock_irq(shost
->host_lock
);
4816 spin_unlock_irq(shost
->host_lock
);
4818 lpfc_destroy_vport_work_array(phba
, vports
);
4822 lpfc_unreg_all_rpis(struct lpfc_vport
*vport
)
4824 struct lpfc_hba
*phba
= vport
->phba
;
4828 if (phba
->sli_rev
== LPFC_SLI_REV4
) {
4829 lpfc_sli4_unreg_all_rpis(vport
);
4833 mbox
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
4835 lpfc_unreg_login(phba
, vport
->vpi
, LPFC_UNREG_ALL_RPIS_VPORT
,
4837 mbox
->vport
= vport
;
4838 mbox
->mbox_cmpl
= lpfc_sli_def_mbox_cmpl
;
4839 mbox
->context1
= NULL
;
4840 rc
= lpfc_sli_issue_mbox_wait(phba
, mbox
, LPFC_MBOX_TMO
);
4841 if (rc
!= MBX_TIMEOUT
)
4842 mempool_free(mbox
, phba
->mbox_mem_pool
);
4844 if ((rc
== MBX_TIMEOUT
) || (rc
== MBX_NOT_FINISHED
))
4845 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_MBOX
| LOG_VPORT
,
4846 "1836 Could not issue "
4847 "unreg_login(all_rpis) status %d\n", rc
);
4852 lpfc_unreg_default_rpis(struct lpfc_vport
*vport
)
4854 struct lpfc_hba
*phba
= vport
->phba
;
4858 mbox
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
4860 lpfc_unreg_did(phba
, vport
->vpi
, LPFC_UNREG_ALL_DFLT_RPIS
,
4862 mbox
->vport
= vport
;
4863 mbox
->mbox_cmpl
= lpfc_sli_def_mbox_cmpl
;
4864 mbox
->context1
= NULL
;
4865 rc
= lpfc_sli_issue_mbox_wait(phba
, mbox
, LPFC_MBOX_TMO
);
4866 if (rc
!= MBX_TIMEOUT
)
4867 mempool_free(mbox
, phba
->mbox_mem_pool
);
4869 if ((rc
== MBX_TIMEOUT
) || (rc
== MBX_NOT_FINISHED
))
4870 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_MBOX
| LOG_VPORT
,
4871 "1815 Could not issue "
4872 "unreg_did (default rpis) status %d\n",
4878 * Free resources associated with LPFC_NODELIST entry
4879 * so it can be freed.
4882 lpfc_cleanup_node(struct lpfc_vport
*vport
, struct lpfc_nodelist
*ndlp
)
4884 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
4885 struct lpfc_hba
*phba
= vport
->phba
;
4886 LPFC_MBOXQ_t
*mb
, *nextmb
;
4887 struct lpfc_dmabuf
*mp
;
4889 /* Cleanup node for NPort <nlp_DID> */
4890 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_NODE
,
4891 "0900 Cleanup node for NPort x%x "
4892 "Data: x%x x%x x%x\n",
4893 ndlp
->nlp_DID
, ndlp
->nlp_flag
,
4894 ndlp
->nlp_state
, ndlp
->nlp_rpi
);
4895 if (NLP_CHK_FREE_REQ(ndlp
)) {
4896 lpfc_printf_vlog(vport
, KERN_WARNING
, LOG_NODE
,
4897 "0280 lpfc_cleanup_node: ndlp:x%p "
4898 "usgmap:x%x refcnt:%d\n",
4899 (void *)ndlp
, ndlp
->nlp_usg_map
,
4900 kref_read(&ndlp
->kref
));
4901 lpfc_dequeue_node(vport
, ndlp
);
4903 lpfc_printf_vlog(vport
, KERN_WARNING
, LOG_NODE
,
4904 "0281 lpfc_cleanup_node: ndlp:x%p "
4905 "usgmap:x%x refcnt:%d\n",
4906 (void *)ndlp
, ndlp
->nlp_usg_map
,
4907 kref_read(&ndlp
->kref
));
4908 lpfc_disable_node(vport
, ndlp
);
4912 /* Don't need to clean up REG_LOGIN64 cmds for Default RPI cleanup */
4914 /* cleanup any ndlp on mbox q waiting for reglogin cmpl */
4915 if ((mb
= phba
->sli
.mbox_active
)) {
4916 if ((mb
->u
.mb
.mbxCommand
== MBX_REG_LOGIN64
) &&
4917 !(mb
->mbox_flag
& LPFC_MBX_IMED_UNREG
) &&
4918 (ndlp
== (struct lpfc_nodelist
*) mb
->context2
)) {
4919 mb
->context2
= NULL
;
4920 mb
->mbox_cmpl
= lpfc_sli_def_mbox_cmpl
;
4924 spin_lock_irq(&phba
->hbalock
);
4925 /* Cleanup REG_LOGIN completions which are not yet processed */
4926 list_for_each_entry(mb
, &phba
->sli
.mboxq_cmpl
, list
) {
4927 if ((mb
->u
.mb
.mbxCommand
!= MBX_REG_LOGIN64
) ||
4928 (mb
->mbox_flag
& LPFC_MBX_IMED_UNREG
) ||
4929 (ndlp
!= (struct lpfc_nodelist
*) mb
->context2
))
4932 mb
->context2
= NULL
;
4933 mb
->mbox_cmpl
= lpfc_sli_def_mbox_cmpl
;
4936 list_for_each_entry_safe(mb
, nextmb
, &phba
->sli
.mboxq
, list
) {
4937 if ((mb
->u
.mb
.mbxCommand
== MBX_REG_LOGIN64
) &&
4938 !(mb
->mbox_flag
& LPFC_MBX_IMED_UNREG
) &&
4939 (ndlp
== (struct lpfc_nodelist
*) mb
->context2
)) {
4940 mp
= (struct lpfc_dmabuf
*) (mb
->context1
);
4942 __lpfc_mbuf_free(phba
, mp
->virt
, mp
->phys
);
4945 list_del(&mb
->list
);
4946 mempool_free(mb
, phba
->mbox_mem_pool
);
4947 /* We shall not invoke the lpfc_nlp_put to decrement
4948 * the ndlp reference count as we are in the process
4949 * of lpfc_nlp_release.
4953 spin_unlock_irq(&phba
->hbalock
);
4955 lpfc_els_abort(phba
, ndlp
);
4957 spin_lock_irq(shost
->host_lock
);
4958 ndlp
->nlp_flag
&= ~NLP_DELAY_TMO
;
4959 spin_unlock_irq(shost
->host_lock
);
4961 ndlp
->nlp_last_elscmd
= 0;
4962 del_timer_sync(&ndlp
->nlp_delayfunc
);
4964 list_del_init(&ndlp
->els_retry_evt
.evt_listp
);
4965 list_del_init(&ndlp
->dev_loss_evt
.evt_listp
);
4966 lpfc_cleanup_vports_rrqs(vport
, ndlp
);
4967 lpfc_unreg_rpi(vport
, ndlp
);
4973 * Check to see if we can free the nlp back to the freelist.
4974 * If we are in the middle of using the nlp in the discovery state
4975 * machine, defer the free till we reach the end of the state machine.
4978 lpfc_nlp_remove(struct lpfc_vport
*vport
, struct lpfc_nodelist
*ndlp
)
4980 struct lpfc_hba
*phba
= vport
->phba
;
4981 struct lpfc_rport_data
*rdata
;
4982 struct fc_rport
*rport
;
4986 lpfc_cancel_retry_delay_tmo(vport
, ndlp
);
4987 if ((ndlp
->nlp_flag
& NLP_DEFER_RM
) &&
4988 !(ndlp
->nlp_flag
& NLP_REG_LOGIN_SEND
) &&
4989 !(ndlp
->nlp_flag
& NLP_RPI_REGISTERED
) &&
4990 phba
->sli_rev
!= LPFC_SLI_REV4
) {
4991 /* For this case we need to cleanup the default rpi
4992 * allocated by the firmware.
4994 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_NODE
,
4995 "0005 rpi:%x DID:%x flg:%x %d map:%x %p\n",
4996 ndlp
->nlp_rpi
, ndlp
->nlp_DID
, ndlp
->nlp_flag
,
4997 kref_read(&ndlp
->kref
),
4998 ndlp
->nlp_usg_map
, ndlp
);
4999 if ((mbox
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
))
5001 rc
= lpfc_reg_rpi(phba
, vport
->vpi
, ndlp
->nlp_DID
,
5002 (uint8_t *) &vport
->fc_sparam
, mbox
, ndlp
->nlp_rpi
);
5004 mempool_free(mbox
, phba
->mbox_mem_pool
);
5007 mbox
->mbox_flag
|= LPFC_MBX_IMED_UNREG
;
5008 mbox
->mbox_cmpl
= lpfc_mbx_cmpl_dflt_rpi
;
5009 mbox
->vport
= vport
;
5010 mbox
->context2
= ndlp
;
5011 rc
=lpfc_sli_issue_mbox(phba
, mbox
, MBX_NOWAIT
);
5012 if (rc
== MBX_NOT_FINISHED
) {
5013 mempool_free(mbox
, phba
->mbox_mem_pool
);
5018 lpfc_cleanup_node(vport
, ndlp
);
5021 * ndlp->rport must be set to NULL before it reaches here
5022 * i.e. break rport/node link before doing lpfc_nlp_put for
5023 * registered rport and then drop the reference of rport.
5027 * extra lpfc_nlp_put dropped the reference of ndlp
5028 * for registered rport so need to cleanup rport
5030 lpfc_printf_vlog(vport
, KERN_WARNING
, LOG_NODE
,
5031 "0940 removed node x%p DID x%x "
5032 " rport not null %p\n",
5033 ndlp
, ndlp
->nlp_DID
, ndlp
->rport
);
5034 rport
= ndlp
->rport
;
5035 rdata
= rport
->dd_data
;
5036 rdata
->pnode
= NULL
;
5038 put_device(&rport
->dev
);
5043 lpfc_matchdid(struct lpfc_vport
*vport
, struct lpfc_nodelist
*ndlp
,
5046 D_ID mydid
, ndlpdid
, matchdid
;
5048 if (did
== Bcast_DID
)
5051 /* First check for Direct match */
5052 if (ndlp
->nlp_DID
== did
)
5055 /* Next check for area/domain identically equals 0 match */
5056 mydid
.un
.word
= vport
->fc_myDID
;
5057 if ((mydid
.un
.b
.domain
== 0) && (mydid
.un
.b
.area
== 0)) {
5061 matchdid
.un
.word
= did
;
5062 ndlpdid
.un
.word
= ndlp
->nlp_DID
;
5063 if (matchdid
.un
.b
.id
== ndlpdid
.un
.b
.id
) {
5064 if ((mydid
.un
.b
.domain
== matchdid
.un
.b
.domain
) &&
5065 (mydid
.un
.b
.area
== matchdid
.un
.b
.area
)) {
5066 /* This code is supposed to match the ID
5067 * for a private loop device that is
5068 * connect to fl_port. But we need to
5069 * check that the port did not just go
5070 * from pt2pt to fabric or we could end
5071 * up matching ndlp->nlp_DID 000001 to
5072 * fabric DID 0x20101
5074 if ((ndlpdid
.un
.b
.domain
== 0) &&
5075 (ndlpdid
.un
.b
.area
== 0)) {
5076 if (ndlpdid
.un
.b
.id
&&
5077 vport
->phba
->fc_topology
==
5084 matchdid
.un
.word
= ndlp
->nlp_DID
;
5085 if ((mydid
.un
.b
.domain
== ndlpdid
.un
.b
.domain
) &&
5086 (mydid
.un
.b
.area
== ndlpdid
.un
.b
.area
)) {
5087 if ((matchdid
.un
.b
.domain
== 0) &&
5088 (matchdid
.un
.b
.area
== 0)) {
5089 if (matchdid
.un
.b
.id
)
5097 /* Search for a nodelist entry */
5098 static struct lpfc_nodelist
*
5099 __lpfc_findnode_did(struct lpfc_vport
*vport
, uint32_t did
)
5101 struct lpfc_nodelist
*ndlp
;
5104 list_for_each_entry(ndlp
, &vport
->fc_nodes
, nlp_listp
) {
5105 if (lpfc_matchdid(vport
, ndlp
, did
)) {
5106 data1
= (((uint32_t) ndlp
->nlp_state
<< 24) |
5107 ((uint32_t) ndlp
->nlp_xri
<< 16) |
5108 ((uint32_t) ndlp
->nlp_type
<< 8) |
5109 ((uint32_t) ndlp
->nlp_rpi
& 0xff));
5110 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_NODE
,
5111 "0929 FIND node DID "
5112 "Data: x%p x%x x%x x%x %p\n",
5113 ndlp
, ndlp
->nlp_DID
,
5114 ndlp
->nlp_flag
, data1
,
5115 ndlp
->active_rrqs_xri_bitmap
);
5120 /* FIND node did <did> NOT FOUND */
5121 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_NODE
,
5122 "0932 FIND node did x%x NOT FOUND.\n", did
);
5126 struct lpfc_nodelist
*
5127 lpfc_findnode_did(struct lpfc_vport
*vport
, uint32_t did
)
5129 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
5130 struct lpfc_nodelist
*ndlp
;
5131 unsigned long iflags
;
5133 spin_lock_irqsave(shost
->host_lock
, iflags
);
5134 ndlp
= __lpfc_findnode_did(vport
, did
);
5135 spin_unlock_irqrestore(shost
->host_lock
, iflags
);
5139 struct lpfc_nodelist
*
5140 lpfc_setup_disc_node(struct lpfc_vport
*vport
, uint32_t did
)
5142 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
5143 struct lpfc_nodelist
*ndlp
;
5145 ndlp
= lpfc_findnode_did(vport
, did
);
5147 if (vport
->phba
->nvmet_support
)
5149 if ((vport
->fc_flag
& FC_RSCN_MODE
) != 0 &&
5150 lpfc_rscn_payload_check(vport
, did
) == 0)
5152 ndlp
= lpfc_nlp_init(vport
, did
);
5155 lpfc_nlp_set_state(vport
, ndlp
, NLP_STE_NPR_NODE
);
5156 spin_lock_irq(shost
->host_lock
);
5157 ndlp
->nlp_flag
|= NLP_NPR_2B_DISC
;
5158 spin_unlock_irq(shost
->host_lock
);
5160 } else if (!NLP_CHK_NODE_ACT(ndlp
)) {
5161 if (vport
->phba
->nvmet_support
)
5163 ndlp
= lpfc_enable_node(vport
, ndlp
, NLP_STE_NPR_NODE
);
5166 spin_lock_irq(shost
->host_lock
);
5167 ndlp
->nlp_flag
|= NLP_NPR_2B_DISC
;
5168 spin_unlock_irq(shost
->host_lock
);
5172 /* The NVME Target does not want to actively manage an rport.
5173 * The goal is to allow the target to reset its state and clear
5174 * pending IO in preparation for the initiator to recover.
5176 if ((vport
->fc_flag
& FC_RSCN_MODE
) &&
5177 !(vport
->fc_flag
& FC_NDISC_ACTIVE
)) {
5178 if (lpfc_rscn_payload_check(vport
, did
)) {
5180 /* Since this node is marked for discovery,
5181 * delay timeout is not needed.
5183 lpfc_cancel_retry_delay_tmo(vport
, ndlp
);
5185 /* NVME Target mode waits until rport is known to be
5186 * impacted by the RSCN before it transitions. No
5187 * active management - just go to NPR provided the
5188 * node had a valid login.
5190 if (vport
->phba
->nvmet_support
)
5193 /* If we've already received a PLOGI from this NPort
5194 * we don't need to try to discover it again.
5196 if (ndlp
->nlp_flag
& NLP_RCV_PLOGI
)
5199 spin_lock_irq(shost
->host_lock
);
5200 ndlp
->nlp_flag
|= NLP_NPR_2B_DISC
;
5201 spin_unlock_irq(shost
->host_lock
);
5205 /* If the initiator received a PLOGI from this NPort or if the
5206 * initiator is already in the process of discovery on it,
5207 * there's no need to try to discover it again.
5209 if (ndlp
->nlp_state
== NLP_STE_ADISC_ISSUE
||
5210 ndlp
->nlp_state
== NLP_STE_PLOGI_ISSUE
||
5211 (!vport
->phba
->nvmet_support
&&
5212 ndlp
->nlp_flag
& NLP_RCV_PLOGI
))
5215 if (vport
->phba
->nvmet_support
)
5218 /* Moving to NPR state clears unsolicited flags and
5219 * allows for rediscovery
5221 lpfc_nlp_set_state(vport
, ndlp
, NLP_STE_NPR_NODE
);
5223 spin_lock_irq(shost
->host_lock
);
5224 ndlp
->nlp_flag
|= NLP_NPR_2B_DISC
;
5225 spin_unlock_irq(shost
->host_lock
);
5230 /* Build a list of nodes to discover based on the loopmap */
5232 lpfc_disc_list_loopmap(struct lpfc_vport
*vport
)
5234 struct lpfc_hba
*phba
= vport
->phba
;
5236 uint32_t alpa
, index
;
5238 if (!lpfc_is_link_up(phba
))
5241 if (phba
->fc_topology
!= LPFC_TOPOLOGY_LOOP
)
5244 /* Check for loop map present or not */
5245 if (phba
->alpa_map
[0]) {
5246 for (j
= 1; j
<= phba
->alpa_map
[0]; j
++) {
5247 alpa
= phba
->alpa_map
[j
];
5248 if (((vport
->fc_myDID
& 0xff) == alpa
) || (alpa
== 0))
5250 lpfc_setup_disc_node(vport
, alpa
);
5253 /* No alpamap, so try all alpa's */
5254 for (j
= 0; j
< FC_MAXLOOP
; j
++) {
5255 /* If cfg_scan_down is set, start from highest
5256 * ALPA (0xef) to lowest (0x1).
5258 if (vport
->cfg_scan_down
)
5261 index
= FC_MAXLOOP
- j
- 1;
5262 alpa
= lpfcAlpaArray
[index
];
5263 if ((vport
->fc_myDID
& 0xff) == alpa
)
5265 lpfc_setup_disc_node(vport
, alpa
);
5273 lpfc_issue_clear_la(struct lpfc_hba
*phba
, struct lpfc_vport
*vport
)
5276 struct lpfc_sli
*psli
= &phba
->sli
;
5277 struct lpfc_sli_ring
*extra_ring
= &psli
->sli3_ring
[LPFC_EXTRA_RING
];
5278 struct lpfc_sli_ring
*fcp_ring
= &psli
->sli3_ring
[LPFC_FCP_RING
];
5282 * if it's not a physical port or if we already send
5283 * clear_la then don't send it.
5285 if ((phba
->link_state
>= LPFC_CLEAR_LA
) ||
5286 (vport
->port_type
!= LPFC_PHYSICAL_PORT
) ||
5287 (phba
->sli_rev
== LPFC_SLI_REV4
))
5290 /* Link up discovery */
5291 if ((mbox
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
)) != NULL
) {
5292 phba
->link_state
= LPFC_CLEAR_LA
;
5293 lpfc_clear_la(phba
, mbox
);
5294 mbox
->mbox_cmpl
= lpfc_mbx_cmpl_clear_la
;
5295 mbox
->vport
= vport
;
5296 rc
= lpfc_sli_issue_mbox(phba
, mbox
, MBX_NOWAIT
);
5297 if (rc
== MBX_NOT_FINISHED
) {
5298 mempool_free(mbox
, phba
->mbox_mem_pool
);
5299 lpfc_disc_flush_list(vport
);
5300 extra_ring
->flag
&= ~LPFC_STOP_IOCB_EVENT
;
5301 fcp_ring
->flag
&= ~LPFC_STOP_IOCB_EVENT
;
5302 phba
->link_state
= LPFC_HBA_ERROR
;
5307 /* Reg_vpi to tell firmware to resume normal operations */
5309 lpfc_issue_reg_vpi(struct lpfc_hba
*phba
, struct lpfc_vport
*vport
)
5311 LPFC_MBOXQ_t
*regvpimbox
;
5313 regvpimbox
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
5315 lpfc_reg_vpi(vport
, regvpimbox
);
5316 regvpimbox
->mbox_cmpl
= lpfc_mbx_cmpl_reg_vpi
;
5317 regvpimbox
->vport
= vport
;
5318 if (lpfc_sli_issue_mbox(phba
, regvpimbox
, MBX_NOWAIT
)
5319 == MBX_NOT_FINISHED
) {
5320 mempool_free(regvpimbox
, phba
->mbox_mem_pool
);
5325 /* Start Link up / RSCN discovery on NPR nodes */
5327 lpfc_disc_start(struct lpfc_vport
*vport
)
5329 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
5330 struct lpfc_hba
*phba
= vport
->phba
;
5332 uint32_t clear_la_pending
;
5334 if (!lpfc_is_link_up(phba
)) {
5335 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_SLI
,
5336 "3315 Link is not up %x\n",
5341 if (phba
->link_state
== LPFC_CLEAR_LA
)
5342 clear_la_pending
= 1;
5344 clear_la_pending
= 0;
5346 if (vport
->port_state
< LPFC_VPORT_READY
)
5347 vport
->port_state
= LPFC_DISC_AUTH
;
5349 lpfc_set_disctmo(vport
);
5351 vport
->fc_prevDID
= vport
->fc_myDID
;
5352 vport
->num_disc_nodes
= 0;
5354 /* Start Discovery state <hba_state> */
5355 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_DISCOVERY
,
5356 "0202 Start Discovery hba state x%x "
5357 "Data: x%x x%x x%x\n",
5358 vport
->port_state
, vport
->fc_flag
, vport
->fc_plogi_cnt
,
5359 vport
->fc_adisc_cnt
);
5361 /* First do ADISCs - if any */
5362 num_sent
= lpfc_els_disc_adisc(vport
);
5367 /* Register the VPI for SLI3, NPIV only. */
5368 if ((phba
->sli3_options
& LPFC_SLI3_NPIV_ENABLED
) &&
5369 !(vport
->fc_flag
& FC_PT2PT
) &&
5370 !(vport
->fc_flag
& FC_RSCN_MODE
) &&
5371 (phba
->sli_rev
< LPFC_SLI_REV4
)) {
5372 lpfc_issue_clear_la(phba
, vport
);
5373 lpfc_issue_reg_vpi(phba
, vport
);
5378 * For SLI2, we need to set port_state to READY and continue
5381 if (vport
->port_state
< LPFC_VPORT_READY
&& !clear_la_pending
) {
5382 /* If we get here, there is nothing to ADISC */
5383 lpfc_issue_clear_la(phba
, vport
);
5385 if (!(vport
->fc_flag
& FC_ABORT_DISCOVERY
)) {
5386 vport
->num_disc_nodes
= 0;
5387 /* go thru NPR nodes and issue ELS PLOGIs */
5388 if (vport
->fc_npr_cnt
)
5389 lpfc_els_disc_plogi(vport
);
5391 if (!vport
->num_disc_nodes
) {
5392 spin_lock_irq(shost
->host_lock
);
5393 vport
->fc_flag
&= ~FC_NDISC_ACTIVE
;
5394 spin_unlock_irq(shost
->host_lock
);
5395 lpfc_can_disctmo(vport
);
5398 vport
->port_state
= LPFC_VPORT_READY
;
5400 /* Next do PLOGIs - if any */
5401 num_sent
= lpfc_els_disc_plogi(vport
);
5406 if (vport
->fc_flag
& FC_RSCN_MODE
) {
5407 /* Check to see if more RSCNs came in while we
5408 * were processing this one.
5410 if ((vport
->fc_rscn_id_cnt
== 0) &&
5411 (!(vport
->fc_flag
& FC_RSCN_DISCOVERY
))) {
5412 spin_lock_irq(shost
->host_lock
);
5413 vport
->fc_flag
&= ~FC_RSCN_MODE
;
5414 spin_unlock_irq(shost
->host_lock
);
5415 lpfc_can_disctmo(vport
);
5417 lpfc_els_handle_rscn(vport
);
5424 * Ignore completion for all IOCBs on tx and txcmpl queue for ELS
5425 * ring the match the sppecified nodelist.
5428 lpfc_free_tx(struct lpfc_hba
*phba
, struct lpfc_nodelist
*ndlp
)
5430 LIST_HEAD(completions
);
5431 struct lpfc_sli
*psli
;
5433 struct lpfc_iocbq
*iocb
, *next_iocb
;
5434 struct lpfc_sli_ring
*pring
;
5437 pring
= lpfc_phba_elsring(phba
);
5438 if (unlikely(!pring
))
5441 /* Error matching iocb on txq or txcmplq
5442 * First check the txq.
5444 spin_lock_irq(&phba
->hbalock
);
5445 list_for_each_entry_safe(iocb
, next_iocb
, &pring
->txq
, list
) {
5446 if (iocb
->context1
!= ndlp
) {
5450 if ((icmd
->ulpCommand
== CMD_ELS_REQUEST64_CR
) ||
5451 (icmd
->ulpCommand
== CMD_XMIT_ELS_RSP64_CX
)) {
5453 list_move_tail(&iocb
->list
, &completions
);
5457 /* Next check the txcmplq */
5458 list_for_each_entry_safe(iocb
, next_iocb
, &pring
->txcmplq
, list
) {
5459 if (iocb
->context1
!= ndlp
) {
5463 if (icmd
->ulpCommand
== CMD_ELS_REQUEST64_CR
||
5464 icmd
->ulpCommand
== CMD_XMIT_ELS_RSP64_CX
) {
5465 lpfc_sli_issue_abort_iotag(phba
, pring
, iocb
);
5468 spin_unlock_irq(&phba
->hbalock
);
5470 /* Cancel all the IOCBs from the completions list */
5471 lpfc_sli_cancel_iocbs(phba
, &completions
, IOSTAT_LOCAL_REJECT
,
5476 lpfc_disc_flush_list(struct lpfc_vport
*vport
)
5478 struct lpfc_nodelist
*ndlp
, *next_ndlp
;
5479 struct lpfc_hba
*phba
= vport
->phba
;
5481 if (vport
->fc_plogi_cnt
|| vport
->fc_adisc_cnt
) {
5482 list_for_each_entry_safe(ndlp
, next_ndlp
, &vport
->fc_nodes
,
5484 if (!NLP_CHK_NODE_ACT(ndlp
))
5486 if (ndlp
->nlp_state
== NLP_STE_PLOGI_ISSUE
||
5487 ndlp
->nlp_state
== NLP_STE_ADISC_ISSUE
) {
5488 lpfc_free_tx(phba
, ndlp
);
5495 lpfc_cleanup_discovery_resources(struct lpfc_vport
*vport
)
5497 lpfc_els_flush_rscn(vport
);
5498 lpfc_els_flush_cmd(vport
);
5499 lpfc_disc_flush_list(vport
);
5502 /*****************************************************************************/
5504 * NAME: lpfc_disc_timeout
5506 * FUNCTION: Fibre Channel driver discovery timeout routine.
5508 * EXECUTION ENVIRONMENT: interrupt only
5516 /*****************************************************************************/
5518 lpfc_disc_timeout(struct timer_list
*t
)
5520 struct lpfc_vport
*vport
= from_timer(vport
, t
, fc_disctmo
);
5521 struct lpfc_hba
*phba
= vport
->phba
;
5522 uint32_t tmo_posted
;
5523 unsigned long flags
= 0;
5525 if (unlikely(!phba
))
5528 spin_lock_irqsave(&vport
->work_port_lock
, flags
);
5529 tmo_posted
= vport
->work_port_events
& WORKER_DISC_TMO
;
5531 vport
->work_port_events
|= WORKER_DISC_TMO
;
5532 spin_unlock_irqrestore(&vport
->work_port_lock
, flags
);
5535 lpfc_worker_wake_up(phba
);
5540 lpfc_disc_timeout_handler(struct lpfc_vport
*vport
)
5542 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
5543 struct lpfc_hba
*phba
= vport
->phba
;
5544 struct lpfc_sli
*psli
= &phba
->sli
;
5545 struct lpfc_nodelist
*ndlp
, *next_ndlp
;
5546 LPFC_MBOXQ_t
*initlinkmbox
;
5547 int rc
, clrlaerr
= 0;
5549 if (!(vport
->fc_flag
& FC_DISC_TMO
))
5552 spin_lock_irq(shost
->host_lock
);
5553 vport
->fc_flag
&= ~FC_DISC_TMO
;
5554 spin_unlock_irq(shost
->host_lock
);
5556 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_ELS_CMD
,
5557 "disc timeout: state:x%x rtry:x%x flg:x%x",
5558 vport
->port_state
, vport
->fc_ns_retry
, vport
->fc_flag
);
5560 switch (vport
->port_state
) {
5562 case LPFC_LOCAL_CFG_LINK
:
5564 * port_state is identically LPFC_LOCAL_CFG_LINK while
5565 * waiting for FAN timeout
5567 lpfc_printf_vlog(vport
, KERN_WARNING
, LOG_DISCOVERY
,
5568 "0221 FAN timeout\n");
5570 /* Start discovery by sending FLOGI, clean up old rpis */
5571 list_for_each_entry_safe(ndlp
, next_ndlp
, &vport
->fc_nodes
,
5573 if (!NLP_CHK_NODE_ACT(ndlp
))
5575 if (ndlp
->nlp_state
!= NLP_STE_NPR_NODE
)
5577 if (ndlp
->nlp_type
& NLP_FABRIC
) {
5578 /* Clean up the ndlp on Fabric connections */
5579 lpfc_drop_node(vport
, ndlp
);
5581 } else if (!(ndlp
->nlp_flag
& NLP_NPR_ADISC
)) {
5582 /* Fail outstanding IO now since device
5583 * is marked for PLOGI.
5585 lpfc_unreg_rpi(vport
, ndlp
);
5588 if (vport
->port_state
!= LPFC_FLOGI
) {
5589 if (phba
->sli_rev
<= LPFC_SLI_REV3
)
5590 lpfc_initial_flogi(vport
);
5592 lpfc_issue_init_vfi(vport
);
5599 /* port_state is identically LPFC_FLOGI while waiting for FLOGI cmpl */
5600 /* Initial FLOGI timeout */
5601 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_DISCOVERY
,
5602 "0222 Initial %s timeout\n",
5603 vport
->vpi
? "FDISC" : "FLOGI");
5605 /* Assume no Fabric and go on with discovery.
5606 * Check for outstanding ELS FLOGI to abort.
5609 /* FLOGI failed, so just use loop map to make discovery list */
5610 lpfc_disc_list_loopmap(vport
);
5612 /* Start discovery */
5613 lpfc_disc_start(vport
);
5616 case LPFC_FABRIC_CFG_LINK
:
5617 /* hba_state is identically LPFC_FABRIC_CFG_LINK while waiting for
5619 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_DISCOVERY
,
5620 "0223 Timeout while waiting for "
5621 "NameServer login\n");
5622 /* Next look for NameServer ndlp */
5623 ndlp
= lpfc_findnode_did(vport
, NameServer_DID
);
5624 if (ndlp
&& NLP_CHK_NODE_ACT(ndlp
))
5625 lpfc_els_abort(phba
, ndlp
);
5627 /* ReStart discovery */
5631 /* Check for wait for NameServer Rsp timeout */
5632 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_DISCOVERY
,
5633 "0224 NameServer Query timeout "
5635 vport
->fc_ns_retry
, LPFC_MAX_NS_RETRY
);
5637 if (vport
->fc_ns_retry
< LPFC_MAX_NS_RETRY
) {
5638 /* Try it one more time */
5639 vport
->fc_ns_retry
++;
5640 vport
->gidft_inp
= 0;
5641 rc
= lpfc_issue_gidft(vport
);
5645 vport
->fc_ns_retry
= 0;
5649 * Discovery is over.
5650 * set port_state to PORT_READY if SLI2.
5651 * cmpl_reg_vpi will set port_state to READY for SLI3.
5653 if (phba
->sli_rev
< LPFC_SLI_REV4
) {
5654 if (phba
->sli3_options
& LPFC_SLI3_NPIV_ENABLED
)
5655 lpfc_issue_reg_vpi(phba
, vport
);
5657 lpfc_issue_clear_la(phba
, vport
);
5658 vport
->port_state
= LPFC_VPORT_READY
;
5662 /* Setup and issue mailbox INITIALIZE LINK command */
5663 initlinkmbox
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
5664 if (!initlinkmbox
) {
5665 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_DISCOVERY
,
5666 "0206 Device Discovery "
5667 "completion error\n");
5668 phba
->link_state
= LPFC_HBA_ERROR
;
5672 lpfc_linkdown(phba
);
5673 lpfc_init_link(phba
, initlinkmbox
, phba
->cfg_topology
,
5674 phba
->cfg_link_speed
);
5675 initlinkmbox
->u
.mb
.un
.varInitLnk
.lipsr_AL_PA
= 0;
5676 initlinkmbox
->vport
= vport
;
5677 initlinkmbox
->mbox_cmpl
= lpfc_sli_def_mbox_cmpl
;
5678 rc
= lpfc_sli_issue_mbox(phba
, initlinkmbox
, MBX_NOWAIT
);
5679 lpfc_set_loopback_flag(phba
);
5680 if (rc
== MBX_NOT_FINISHED
)
5681 mempool_free(initlinkmbox
, phba
->mbox_mem_pool
);
5685 case LPFC_DISC_AUTH
:
5686 /* Node Authentication timeout */
5687 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_DISCOVERY
,
5688 "0227 Node Authentication timeout\n");
5689 lpfc_disc_flush_list(vport
);
5692 * set port_state to PORT_READY if SLI2.
5693 * cmpl_reg_vpi will set port_state to READY for SLI3.
5695 if (phba
->sli_rev
< LPFC_SLI_REV4
) {
5696 if (phba
->sli3_options
& LPFC_SLI3_NPIV_ENABLED
)
5697 lpfc_issue_reg_vpi(phba
, vport
);
5698 else { /* NPIV Not enabled */
5699 lpfc_issue_clear_la(phba
, vport
);
5700 vport
->port_state
= LPFC_VPORT_READY
;
5705 case LPFC_VPORT_READY
:
5706 if (vport
->fc_flag
& FC_RSCN_MODE
) {
5707 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_DISCOVERY
,
5708 "0231 RSCN timeout Data: x%x "
5710 vport
->fc_ns_retry
, LPFC_MAX_NS_RETRY
);
5712 /* Cleanup any outstanding ELS commands */
5713 lpfc_els_flush_cmd(vport
);
5715 lpfc_els_flush_rscn(vport
);
5716 lpfc_disc_flush_list(vport
);
5721 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_DISCOVERY
,
5722 "0273 Unexpected discovery timeout, "
5723 "vport State x%x\n", vport
->port_state
);
5727 switch (phba
->link_state
) {
5729 /* CLEAR LA timeout */
5730 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_DISCOVERY
,
5731 "0228 CLEAR LA timeout\n");
5736 lpfc_issue_clear_la(phba
, vport
);
5738 case LPFC_LINK_UNKNOWN
:
5739 case LPFC_WARM_START
:
5740 case LPFC_INIT_START
:
5741 case LPFC_INIT_MBX_CMDS
:
5742 case LPFC_LINK_DOWN
:
5743 case LPFC_HBA_ERROR
:
5744 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_DISCOVERY
,
5745 "0230 Unexpected timeout, hba link "
5746 "state x%x\n", phba
->link_state
);
5750 case LPFC_HBA_READY
:
5755 lpfc_disc_flush_list(vport
);
5756 if (phba
->sli_rev
!= LPFC_SLI_REV4
) {
5757 psli
->sli3_ring
[(LPFC_EXTRA_RING
)].flag
&=
5758 ~LPFC_STOP_IOCB_EVENT
;
5759 psli
->sli3_ring
[LPFC_FCP_RING
].flag
&=
5760 ~LPFC_STOP_IOCB_EVENT
;
5762 vport
->port_state
= LPFC_VPORT_READY
;
5768 * This routine handles processing a NameServer REG_LOGIN mailbox
5769 * command upon completion. It is setup in the LPFC_MBOXQ
5770 * as the completion routine when the command is
5771 * handed off to the SLI layer.
5774 lpfc_mbx_cmpl_fdmi_reg_login(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*pmb
)
5776 MAILBOX_t
*mb
= &pmb
->u
.mb
;
5777 struct lpfc_dmabuf
*mp
= (struct lpfc_dmabuf
*) (pmb
->context1
);
5778 struct lpfc_nodelist
*ndlp
= (struct lpfc_nodelist
*) pmb
->context2
;
5779 struct lpfc_vport
*vport
= pmb
->vport
;
5781 pmb
->context1
= NULL
;
5782 pmb
->context2
= NULL
;
5784 if (phba
->sli_rev
< LPFC_SLI_REV4
)
5785 ndlp
->nlp_rpi
= mb
->un
.varWords
[0];
5786 ndlp
->nlp_flag
|= NLP_RPI_REGISTERED
;
5787 ndlp
->nlp_type
|= NLP_FABRIC
;
5788 lpfc_nlp_set_state(vport
, ndlp
, NLP_STE_UNMAPPED_NODE
);
5789 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_SLI
,
5790 "0004 rpi:%x DID:%x flg:%x %d map:%x %p\n",
5791 ndlp
->nlp_rpi
, ndlp
->nlp_DID
, ndlp
->nlp_flag
,
5792 kref_read(&ndlp
->kref
),
5793 ndlp
->nlp_usg_map
, ndlp
);
5795 * Start issuing Fabric-Device Management Interface (FDMI) command to
5796 * 0xfffffa (FDMI well known port).
5797 * DHBA -> DPRT -> RHBA -> RPA (physical port)
5798 * DPRT -> RPRT (vports)
5800 if (vport
->port_type
== LPFC_PHYSICAL_PORT
)
5801 lpfc_fdmi_cmd(vport
, ndlp
, SLI_MGMT_DHBA
, 0);
5803 lpfc_fdmi_cmd(vport
, ndlp
, SLI_MGMT_DPRT
, 0);
5806 /* decrement the node reference count held for this callback
5810 lpfc_mbuf_free(phba
, mp
->virt
, mp
->phys
);
5812 mempool_free(pmb
, phba
->mbox_mem_pool
);
5818 lpfc_filter_by_rpi(struct lpfc_nodelist
*ndlp
, void *param
)
5820 uint16_t *rpi
= param
;
5822 /* check for active node */
5823 if (!NLP_CHK_NODE_ACT(ndlp
))
5826 return ndlp
->nlp_rpi
== *rpi
;
5830 lpfc_filter_by_wwpn(struct lpfc_nodelist
*ndlp
, void *param
)
5832 return memcmp(&ndlp
->nlp_portname
, param
,
5833 sizeof(ndlp
->nlp_portname
)) == 0;
5836 static struct lpfc_nodelist
*
5837 __lpfc_find_node(struct lpfc_vport
*vport
, node_filter filter
, void *param
)
5839 struct lpfc_nodelist
*ndlp
;
5841 list_for_each_entry(ndlp
, &vport
->fc_nodes
, nlp_listp
) {
5842 if (filter(ndlp
, param
)) {
5843 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_NODE
,
5844 "3185 FIND node filter %p DID "
5845 "ndlp %p did x%x flg x%x st x%x "
5846 "xri x%x type x%x rpi x%x\n",
5847 filter
, ndlp
, ndlp
->nlp_DID
,
5848 ndlp
->nlp_flag
, ndlp
->nlp_state
,
5849 ndlp
->nlp_xri
, ndlp
->nlp_type
,
5854 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_NODE
,
5855 "3186 FIND node filter %p NOT FOUND.\n", filter
);
5860 * This routine looks up the ndlp lists for the given RPI. If rpi found it
5861 * returns the node list element pointer else return NULL.
5863 struct lpfc_nodelist
*
5864 __lpfc_findnode_rpi(struct lpfc_vport
*vport
, uint16_t rpi
)
5866 return __lpfc_find_node(vport
, lpfc_filter_by_rpi
, &rpi
);
5870 * This routine looks up the ndlp lists for the given WWPN. If WWPN found it
5871 * returns the node element list pointer else return NULL.
5873 struct lpfc_nodelist
*
5874 lpfc_findnode_wwpn(struct lpfc_vport
*vport
, struct lpfc_name
*wwpn
)
5876 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
5877 struct lpfc_nodelist
*ndlp
;
5879 spin_lock_irq(shost
->host_lock
);
5880 ndlp
= __lpfc_find_node(vport
, lpfc_filter_by_wwpn
, wwpn
);
5881 spin_unlock_irq(shost
->host_lock
);
5886 * This routine looks up the ndlp lists for the given RPI. If the rpi
5887 * is found, the routine returns the node element list pointer else
5890 struct lpfc_nodelist
*
5891 lpfc_findnode_rpi(struct lpfc_vport
*vport
, uint16_t rpi
)
5893 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
5894 struct lpfc_nodelist
*ndlp
;
5896 spin_lock_irq(shost
->host_lock
);
5897 ndlp
= __lpfc_findnode_rpi(vport
, rpi
);
5898 spin_unlock_irq(shost
->host_lock
);
5903 * lpfc_find_vport_by_vpid - Find a vport on a HBA through vport identifier
5904 * @phba: pointer to lpfc hba data structure.
5905 * @vpi: the physical host virtual N_Port identifier.
5907 * This routine finds a vport on a HBA (referred by @phba) through a
5908 * @vpi. The function walks the HBA's vport list and returns the address
5909 * of the vport with the matching @vpi.
5912 * NULL - No vport with the matching @vpi found
5913 * Otherwise - Address to the vport with the matching @vpi.
5916 lpfc_find_vport_by_vpid(struct lpfc_hba
*phba
, uint16_t vpi
)
5918 struct lpfc_vport
*vport
;
5919 unsigned long flags
;
5922 /* The physical ports are always vpi 0 - translate is unnecessary. */
5925 * Translate the physical vpi to the logical vpi. The
5926 * vport stores the logical vpi.
5928 for (i
= 0; i
< phba
->max_vpi
; i
++) {
5929 if (vpi
== phba
->vpi_ids
[i
])
5933 if (i
>= phba
->max_vpi
) {
5934 lpfc_printf_log(phba
, KERN_ERR
, LOG_ELS
,
5935 "2936 Could not find Vport mapped "
5936 "to vpi %d\n", vpi
);
5941 spin_lock_irqsave(&phba
->hbalock
, flags
);
5942 list_for_each_entry(vport
, &phba
->port_list
, listentry
) {
5943 if (vport
->vpi
== i
) {
5944 spin_unlock_irqrestore(&phba
->hbalock
, flags
);
5948 spin_unlock_irqrestore(&phba
->hbalock
, flags
);
5952 struct lpfc_nodelist
*
5953 lpfc_nlp_init(struct lpfc_vport
*vport
, uint32_t did
)
5955 struct lpfc_nodelist
*ndlp
;
5956 int rpi
= LPFC_RPI_ALLOC_ERROR
;
5958 if (vport
->phba
->sli_rev
== LPFC_SLI_REV4
) {
5959 rpi
= lpfc_sli4_alloc_rpi(vport
->phba
);
5960 if (rpi
== LPFC_RPI_ALLOC_ERROR
)
5964 ndlp
= mempool_alloc(vport
->phba
->nlp_mem_pool
, GFP_KERNEL
);
5966 if (vport
->phba
->sli_rev
== LPFC_SLI_REV4
)
5967 lpfc_sli4_free_rpi(vport
->phba
, rpi
);
5971 memset(ndlp
, 0, sizeof (struct lpfc_nodelist
));
5973 lpfc_initialize_node(vport
, ndlp
, did
);
5974 INIT_LIST_HEAD(&ndlp
->nlp_listp
);
5975 if (vport
->phba
->sli_rev
== LPFC_SLI_REV4
) {
5976 ndlp
->nlp_rpi
= rpi
;
5977 lpfc_printf_vlog(vport
, KERN_INFO
, LOG_NODE
,
5978 "0007 rpi:%x DID:%x flg:%x refcnt:%d "
5979 "map:%x %p\n", ndlp
->nlp_rpi
, ndlp
->nlp_DID
,
5981 kref_read(&ndlp
->kref
),
5982 ndlp
->nlp_usg_map
, ndlp
);
5984 ndlp
->active_rrqs_xri_bitmap
=
5985 mempool_alloc(vport
->phba
->active_rrq_pool
,
5987 if (ndlp
->active_rrqs_xri_bitmap
)
5988 memset(ndlp
->active_rrqs_xri_bitmap
, 0,
5989 ndlp
->phba
->cfg_rrq_xri_bitmap_sz
);
5994 lpfc_debugfs_disc_trc(vport
, LPFC_DISC_TRC_NODE
,
5995 "node init: did:x%x",
5996 ndlp
->nlp_DID
, 0, 0);
6001 /* This routine releases all resources associated with a specifc NPort's ndlp
6002 * and mempool_free's the nodelist.
6005 lpfc_nlp_release(struct kref
*kref
)
6007 struct lpfc_hba
*phba
;
6008 unsigned long flags
;
6009 struct lpfc_nodelist
*ndlp
= container_of(kref
, struct lpfc_nodelist
,
6012 lpfc_debugfs_disc_trc(ndlp
->vport
, LPFC_DISC_TRC_NODE
,
6013 "node release: did:x%x flg:x%x type:x%x",
6014 ndlp
->nlp_DID
, ndlp
->nlp_flag
, ndlp
->nlp_type
);
6016 lpfc_printf_vlog(ndlp
->vport
, KERN_INFO
, LOG_NODE
,
6017 "0279 lpfc_nlp_release: ndlp:x%p did %x "
6018 "usgmap:x%x refcnt:%d rpi:%x\n",
6019 (void *)ndlp
, ndlp
->nlp_DID
, ndlp
->nlp_usg_map
,
6020 kref_read(&ndlp
->kref
), ndlp
->nlp_rpi
);
6022 /* remove ndlp from action. */
6023 lpfc_nlp_remove(ndlp
->vport
, ndlp
);
6025 /* clear the ndlp active flag for all release cases */
6027 spin_lock_irqsave(&phba
->ndlp_lock
, flags
);
6028 NLP_CLR_NODE_ACT(ndlp
);
6029 spin_unlock_irqrestore(&phba
->ndlp_lock
, flags
);
6030 if (phba
->sli_rev
== LPFC_SLI_REV4
)
6031 lpfc_sli4_free_rpi(phba
, ndlp
->nlp_rpi
);
6033 /* free ndlp memory for final ndlp release */
6034 if (NLP_CHK_FREE_REQ(ndlp
)) {
6035 kfree(ndlp
->lat_data
);
6036 if (phba
->sli_rev
== LPFC_SLI_REV4
)
6037 mempool_free(ndlp
->active_rrqs_xri_bitmap
,
6038 ndlp
->phba
->active_rrq_pool
);
6039 mempool_free(ndlp
, ndlp
->phba
->nlp_mem_pool
);
6043 /* This routine bumps the reference count for a ndlp structure to ensure
6044 * that one discovery thread won't free a ndlp while another discovery thread
6047 struct lpfc_nodelist
*
6048 lpfc_nlp_get(struct lpfc_nodelist
*ndlp
)
6050 struct lpfc_hba
*phba
;
6051 unsigned long flags
;
6054 lpfc_debugfs_disc_trc(ndlp
->vport
, LPFC_DISC_TRC_NODE
,
6055 "node get: did:x%x flg:x%x refcnt:x%x",
6056 ndlp
->nlp_DID
, ndlp
->nlp_flag
,
6057 kref_read(&ndlp
->kref
));
6058 /* The check of ndlp usage to prevent incrementing the
6059 * ndlp reference count that is in the process of being
6063 spin_lock_irqsave(&phba
->ndlp_lock
, flags
);
6064 if (!NLP_CHK_NODE_ACT(ndlp
) || NLP_CHK_FREE_ACK(ndlp
)) {
6065 spin_unlock_irqrestore(&phba
->ndlp_lock
, flags
);
6066 lpfc_printf_vlog(ndlp
->vport
, KERN_WARNING
, LOG_NODE
,
6067 "0276 lpfc_nlp_get: ndlp:x%p "
6068 "usgmap:x%x refcnt:%d\n",
6069 (void *)ndlp
, ndlp
->nlp_usg_map
,
6070 kref_read(&ndlp
->kref
));
6073 kref_get(&ndlp
->kref
);
6074 spin_unlock_irqrestore(&phba
->ndlp_lock
, flags
);
6079 /* This routine decrements the reference count for a ndlp structure. If the
6080 * count goes to 0, this indicates the the associated nodelist should be
6081 * freed. Returning 1 indicates the ndlp resource has been released; on the
6082 * other hand, returning 0 indicates the ndlp resource has not been released
6086 lpfc_nlp_put(struct lpfc_nodelist
*ndlp
)
6088 struct lpfc_hba
*phba
;
6089 unsigned long flags
;
6094 lpfc_debugfs_disc_trc(ndlp
->vport
, LPFC_DISC_TRC_NODE
,
6095 "node put: did:x%x flg:x%x refcnt:x%x",
6096 ndlp
->nlp_DID
, ndlp
->nlp_flag
,
6097 kref_read(&ndlp
->kref
));
6099 spin_lock_irqsave(&phba
->ndlp_lock
, flags
);
6100 /* Check the ndlp memory free acknowledge flag to avoid the
6101 * possible race condition that kref_put got invoked again
6102 * after previous one has done ndlp memory free.
6104 if (NLP_CHK_FREE_ACK(ndlp
)) {
6105 spin_unlock_irqrestore(&phba
->ndlp_lock
, flags
);
6106 lpfc_printf_vlog(ndlp
->vport
, KERN_WARNING
, LOG_NODE
,
6107 "0274 lpfc_nlp_put: ndlp:x%p "
6108 "usgmap:x%x refcnt:%d\n",
6109 (void *)ndlp
, ndlp
->nlp_usg_map
,
6110 kref_read(&ndlp
->kref
));
6113 /* Check the ndlp inactivate log flag to avoid the possible
6114 * race condition that kref_put got invoked again after ndlp
6115 * is already in inactivating state.
6117 if (NLP_CHK_IACT_REQ(ndlp
)) {
6118 spin_unlock_irqrestore(&phba
->ndlp_lock
, flags
);
6119 lpfc_printf_vlog(ndlp
->vport
, KERN_WARNING
, LOG_NODE
,
6120 "0275 lpfc_nlp_put: ndlp:x%p "
6121 "usgmap:x%x refcnt:%d\n",
6122 (void *)ndlp
, ndlp
->nlp_usg_map
,
6123 kref_read(&ndlp
->kref
));
6126 /* For last put, mark the ndlp usage flags to make sure no
6127 * other kref_get and kref_put on the same ndlp shall get
6128 * in between the process when the final kref_put has been
6129 * invoked on this ndlp.
6131 if (kref_read(&ndlp
->kref
) == 1) {
6132 /* Indicate ndlp is put to inactive state. */
6133 NLP_SET_IACT_REQ(ndlp
);
6134 /* Acknowledge ndlp memory free has been seen. */
6135 if (NLP_CHK_FREE_REQ(ndlp
))
6136 NLP_SET_FREE_ACK(ndlp
);
6138 spin_unlock_irqrestore(&phba
->ndlp_lock
, flags
);
6139 /* Note, the kref_put returns 1 when decrementing a reference
6140 * count that was 1, it invokes the release callback function,
6141 * but it still left the reference count as 1 (not actually
6142 * performs the last decrementation). Otherwise, it actually
6143 * decrements the reference count and returns 0.
6145 return kref_put(&ndlp
->kref
, lpfc_nlp_release
);
6148 /* This routine free's the specified nodelist if it is not in use
6149 * by any other discovery thread. This routine returns 1 if the
6150 * ndlp has been freed. A return value of 0 indicates the ndlp is
6151 * not yet been released.
6154 lpfc_nlp_not_used(struct lpfc_nodelist
*ndlp
)
6156 lpfc_debugfs_disc_trc(ndlp
->vport
, LPFC_DISC_TRC_NODE
,
6157 "node not used: did:x%x flg:x%x refcnt:x%x",
6158 ndlp
->nlp_DID
, ndlp
->nlp_flag
,
6159 kref_read(&ndlp
->kref
));
6160 if (kref_read(&ndlp
->kref
) == 1)
6161 if (lpfc_nlp_put(ndlp
))
6167 * lpfc_fcf_inuse - Check if FCF can be unregistered.
6168 * @phba: Pointer to hba context object.
6170 * This function iterate through all FC nodes associated
6171 * will all vports to check if there is any node with
6172 * fc_rports associated with it. If there is an fc_rport
6173 * associated with the node, then the node is either in
6174 * discovered state or its devloss_timer is pending.
6177 lpfc_fcf_inuse(struct lpfc_hba
*phba
)
6179 struct lpfc_vport
**vports
;
6181 struct lpfc_nodelist
*ndlp
;
6182 struct Scsi_Host
*shost
;
6184 vports
= lpfc_create_vport_work_array(phba
);
6186 /* If driver cannot allocate memory, indicate fcf is in use */
6190 for (i
= 0; i
<= phba
->max_vports
&& vports
[i
] != NULL
; i
++) {
6191 shost
= lpfc_shost_from_vport(vports
[i
]);
6192 spin_lock_irq(shost
->host_lock
);
6194 * IF the CVL_RCVD bit is not set then we have sent the
6196 * If dev_loss fires while we are waiting we do not want to
6199 if (!(vports
[i
]->fc_flag
& FC_VPORT_CVL_RCVD
)) {
6200 spin_unlock_irq(shost
->host_lock
);
6204 list_for_each_entry(ndlp
, &vports
[i
]->fc_nodes
, nlp_listp
) {
6205 if (NLP_CHK_NODE_ACT(ndlp
) && ndlp
->rport
&&
6206 (ndlp
->rport
->roles
& FC_RPORT_ROLE_FCP_TARGET
)) {
6208 spin_unlock_irq(shost
->host_lock
);
6210 } else if (ndlp
->nlp_flag
& NLP_RPI_REGISTERED
) {
6212 lpfc_printf_log(phba
, KERN_INFO
, LOG_ELS
,
6213 "2624 RPI %x DID %x flag %x "
6214 "still logged in\n",
6215 ndlp
->nlp_rpi
, ndlp
->nlp_DID
,
6219 spin_unlock_irq(shost
->host_lock
);
6222 lpfc_destroy_vport_work_array(phba
, vports
);
6227 * lpfc_unregister_vfi_cmpl - Completion handler for unreg vfi.
6228 * @phba: Pointer to hba context object.
6229 * @mboxq: Pointer to mailbox object.
6231 * This function frees memory associated with the mailbox command.
6234 lpfc_unregister_vfi_cmpl(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*mboxq
)
6236 struct lpfc_vport
*vport
= mboxq
->vport
;
6237 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
6239 if (mboxq
->u
.mb
.mbxStatus
) {
6240 lpfc_printf_log(phba
, KERN_ERR
, LOG_DISCOVERY
|LOG_MBOX
,
6241 "2555 UNREG_VFI mbxStatus error x%x "
6243 mboxq
->u
.mb
.mbxStatus
, vport
->port_state
);
6245 spin_lock_irq(shost
->host_lock
);
6246 phba
->pport
->fc_flag
&= ~FC_VFI_REGISTERED
;
6247 spin_unlock_irq(shost
->host_lock
);
6248 mempool_free(mboxq
, phba
->mbox_mem_pool
);
6253 * lpfc_unregister_fcfi_cmpl - Completion handler for unreg fcfi.
6254 * @phba: Pointer to hba context object.
6255 * @mboxq: Pointer to mailbox object.
6257 * This function frees memory associated with the mailbox command.
6260 lpfc_unregister_fcfi_cmpl(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*mboxq
)
6262 struct lpfc_vport
*vport
= mboxq
->vport
;
6264 if (mboxq
->u
.mb
.mbxStatus
) {
6265 lpfc_printf_log(phba
, KERN_ERR
, LOG_DISCOVERY
|LOG_MBOX
,
6266 "2550 UNREG_FCFI mbxStatus error x%x "
6268 mboxq
->u
.mb
.mbxStatus
, vport
->port_state
);
6270 mempool_free(mboxq
, phba
->mbox_mem_pool
);
6275 * lpfc_unregister_fcf_prep - Unregister fcf record preparation
6276 * @phba: Pointer to hba context object.
6278 * This function prepare the HBA for unregistering the currently registered
6279 * FCF from the HBA. It performs unregistering, in order, RPIs, VPIs, and
6283 lpfc_unregister_fcf_prep(struct lpfc_hba
*phba
)
6285 struct lpfc_vport
**vports
;
6286 struct lpfc_nodelist
*ndlp
;
6287 struct Scsi_Host
*shost
;
6290 /* Unregister RPIs */
6291 if (lpfc_fcf_inuse(phba
))
6292 lpfc_unreg_hba_rpis(phba
);
6294 /* At this point, all discovery is aborted */
6295 phba
->pport
->port_state
= LPFC_VPORT_UNKNOWN
;
6297 /* Unregister VPIs */
6298 vports
= lpfc_create_vport_work_array(phba
);
6299 if (vports
&& (phba
->sli3_options
& LPFC_SLI3_NPIV_ENABLED
))
6300 for (i
= 0; i
<= phba
->max_vports
&& vports
[i
] != NULL
; i
++) {
6301 /* Stop FLOGI/FDISC retries */
6302 ndlp
= lpfc_findnode_did(vports
[i
], Fabric_DID
);
6304 lpfc_cancel_retry_delay_tmo(vports
[i
], ndlp
);
6305 lpfc_cleanup_pending_mbox(vports
[i
]);
6306 if (phba
->sli_rev
== LPFC_SLI_REV4
)
6307 lpfc_sli4_unreg_all_rpis(vports
[i
]);
6308 lpfc_mbx_unreg_vpi(vports
[i
]);
6309 shost
= lpfc_shost_from_vport(vports
[i
]);
6310 spin_lock_irq(shost
->host_lock
);
6311 vports
[i
]->fc_flag
|= FC_VPORT_NEEDS_INIT_VPI
;
6312 vports
[i
]->vpi_state
&= ~LPFC_VPI_REGISTERED
;
6313 spin_unlock_irq(shost
->host_lock
);
6315 lpfc_destroy_vport_work_array(phba
, vports
);
6316 if (i
== 0 && (!(phba
->sli3_options
& LPFC_SLI3_NPIV_ENABLED
))) {
6317 ndlp
= lpfc_findnode_did(phba
->pport
, Fabric_DID
);
6319 lpfc_cancel_retry_delay_tmo(phba
->pport
, ndlp
);
6320 lpfc_cleanup_pending_mbox(phba
->pport
);
6321 if (phba
->sli_rev
== LPFC_SLI_REV4
)
6322 lpfc_sli4_unreg_all_rpis(phba
->pport
);
6323 lpfc_mbx_unreg_vpi(phba
->pport
);
6324 shost
= lpfc_shost_from_vport(phba
->pport
);
6325 spin_lock_irq(shost
->host_lock
);
6326 phba
->pport
->fc_flag
|= FC_VPORT_NEEDS_INIT_VPI
;
6327 phba
->pport
->vpi_state
&= ~LPFC_VPI_REGISTERED
;
6328 spin_unlock_irq(shost
->host_lock
);
6331 /* Cleanup any outstanding ELS commands */
6332 lpfc_els_flush_all_cmd(phba
);
6334 /* Unregister the physical port VFI */
6335 rc
= lpfc_issue_unreg_vfi(phba
->pport
);
6340 * lpfc_sli4_unregister_fcf - Unregister currently registered FCF record
6341 * @phba: Pointer to hba context object.
6343 * This function issues synchronous unregister FCF mailbox command to HBA to
6344 * unregister the currently registered FCF record. The driver does not reset
6345 * the driver FCF usage state flags.
6347 * Return 0 if successfully issued, none-zero otherwise.
6350 lpfc_sli4_unregister_fcf(struct lpfc_hba
*phba
)
6355 mbox
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
6357 lpfc_printf_log(phba
, KERN_ERR
, LOG_DISCOVERY
|LOG_MBOX
,
6358 "2551 UNREG_FCFI mbox allocation failed"
6359 "HBA state x%x\n", phba
->pport
->port_state
);
6362 lpfc_unreg_fcfi(mbox
, phba
->fcf
.fcfi
);
6363 mbox
->vport
= phba
->pport
;
6364 mbox
->mbox_cmpl
= lpfc_unregister_fcfi_cmpl
;
6365 rc
= lpfc_sli_issue_mbox(phba
, mbox
, MBX_NOWAIT
);
6367 if (rc
== MBX_NOT_FINISHED
) {
6368 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
6369 "2552 Unregister FCFI command failed rc x%x "
6371 rc
, phba
->pport
->port_state
);
6378 * lpfc_unregister_fcf_rescan - Unregister currently registered fcf and rescan
6379 * @phba: Pointer to hba context object.
6381 * This function unregisters the currently reigstered FCF. This function
6382 * also tries to find another FCF for discovery by rescan the HBA FCF table.
6385 lpfc_unregister_fcf_rescan(struct lpfc_hba
*phba
)
6389 /* Preparation for unregistering fcf */
6390 rc
= lpfc_unregister_fcf_prep(phba
);
6392 lpfc_printf_log(phba
, KERN_ERR
, LOG_DISCOVERY
,
6393 "2748 Failed to prepare for unregistering "
6394 "HBA's FCF record: rc=%d\n", rc
);
6398 /* Now, unregister FCF record and reset HBA FCF state */
6399 rc
= lpfc_sli4_unregister_fcf(phba
);
6402 /* Reset HBA FCF states after successful unregister FCF */
6403 phba
->fcf
.fcf_flag
= 0;
6404 phba
->fcf
.current_rec
.flag
= 0;
6407 * If driver is not unloading, check if there is any other
6408 * FCF record that can be used for discovery.
6410 if ((phba
->pport
->load_flag
& FC_UNLOADING
) ||
6411 (phba
->link_state
< LPFC_LINK_UP
))
6414 /* This is considered as the initial FCF discovery scan */
6415 spin_lock_irq(&phba
->hbalock
);
6416 phba
->fcf
.fcf_flag
|= FCF_INIT_DISC
;
6417 spin_unlock_irq(&phba
->hbalock
);
6419 /* Reset FCF roundrobin bmask for new discovery */
6420 lpfc_sli4_clear_fcf_rr_bmask(phba
);
6422 rc
= lpfc_sli4_fcf_scan_read_fcf_rec(phba
, LPFC_FCOE_FCF_GET_FIRST
);
6425 spin_lock_irq(&phba
->hbalock
);
6426 phba
->fcf
.fcf_flag
&= ~FCF_INIT_DISC
;
6427 spin_unlock_irq(&phba
->hbalock
);
6428 lpfc_printf_log(phba
, KERN_ERR
, LOG_DISCOVERY
|LOG_MBOX
,
6429 "2553 lpfc_unregister_unused_fcf failed "
6430 "to read FCF record HBA state x%x\n",
6431 phba
->pport
->port_state
);
6436 * lpfc_unregister_fcf - Unregister the currently registered fcf record
6437 * @phba: Pointer to hba context object.
6439 * This function just unregisters the currently reigstered FCF. It does not
6440 * try to find another FCF for discovery.
6443 lpfc_unregister_fcf(struct lpfc_hba
*phba
)
6447 /* Preparation for unregistering fcf */
6448 rc
= lpfc_unregister_fcf_prep(phba
);
6450 lpfc_printf_log(phba
, KERN_ERR
, LOG_DISCOVERY
,
6451 "2749 Failed to prepare for unregistering "
6452 "HBA's FCF record: rc=%d\n", rc
);
6456 /* Now, unregister FCF record and reset HBA FCF state */
6457 rc
= lpfc_sli4_unregister_fcf(phba
);
6460 /* Set proper HBA FCF states after successful unregister FCF */
6461 spin_lock_irq(&phba
->hbalock
);
6462 phba
->fcf
.fcf_flag
&= ~FCF_REGISTERED
;
6463 spin_unlock_irq(&phba
->hbalock
);
6467 * lpfc_unregister_unused_fcf - Unregister FCF if all devices are disconnected.
6468 * @phba: Pointer to hba context object.
6470 * This function check if there are any connected remote port for the FCF and
6471 * if all the devices are disconnected, this function unregister FCFI.
6472 * This function also tries to use another FCF for discovery.
6475 lpfc_unregister_unused_fcf(struct lpfc_hba
*phba
)
6478 * If HBA is not running in FIP mode, if HBA does not support
6479 * FCoE, if FCF discovery is ongoing, or if FCF has not been
6480 * registered, do nothing.
6482 spin_lock_irq(&phba
->hbalock
);
6483 if (!(phba
->hba_flag
& HBA_FCOE_MODE
) ||
6484 !(phba
->fcf
.fcf_flag
& FCF_REGISTERED
) ||
6485 !(phba
->hba_flag
& HBA_FIP_SUPPORT
) ||
6486 (phba
->fcf
.fcf_flag
& FCF_DISCOVERY
) ||
6487 (phba
->pport
->port_state
== LPFC_FLOGI
)) {
6488 spin_unlock_irq(&phba
->hbalock
);
6491 spin_unlock_irq(&phba
->hbalock
);
6493 if (lpfc_fcf_inuse(phba
))
6496 lpfc_unregister_fcf_rescan(phba
);
6500 * lpfc_read_fcf_conn_tbl - Create driver FCF connection table.
6501 * @phba: Pointer to hba context object.
6502 * @buff: Buffer containing the FCF connection table as in the config
6504 * This function create driver data structure for the FCF connection
6505 * record table read from config region 23.
6508 lpfc_read_fcf_conn_tbl(struct lpfc_hba
*phba
,
6511 struct lpfc_fcf_conn_entry
*conn_entry
, *next_conn_entry
;
6512 struct lpfc_fcf_conn_hdr
*conn_hdr
;
6513 struct lpfc_fcf_conn_rec
*conn_rec
;
6514 uint32_t record_count
;
6517 /* Free the current connect table */
6518 list_for_each_entry_safe(conn_entry
, next_conn_entry
,
6519 &phba
->fcf_conn_rec_list
, list
) {
6520 list_del_init(&conn_entry
->list
);
6524 conn_hdr
= (struct lpfc_fcf_conn_hdr
*) buff
;
6525 record_count
= conn_hdr
->length
* sizeof(uint32_t)/
6526 sizeof(struct lpfc_fcf_conn_rec
);
6528 conn_rec
= (struct lpfc_fcf_conn_rec
*)
6529 (buff
+ sizeof(struct lpfc_fcf_conn_hdr
));
6531 for (i
= 0; i
< record_count
; i
++) {
6532 if (!(conn_rec
[i
].flags
& FCFCNCT_VALID
))
6534 conn_entry
= kzalloc(sizeof(struct lpfc_fcf_conn_entry
),
6537 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
6538 "2566 Failed to allocate connection"
6543 memcpy(&conn_entry
->conn_rec
, &conn_rec
[i
],
6544 sizeof(struct lpfc_fcf_conn_rec
));
6545 list_add_tail(&conn_entry
->list
,
6546 &phba
->fcf_conn_rec_list
);
6549 if (!list_empty(&phba
->fcf_conn_rec_list
)) {
6551 list_for_each_entry(conn_entry
, &phba
->fcf_conn_rec_list
,
6553 conn_rec
= &conn_entry
->conn_rec
;
6554 lpfc_printf_log(phba
, KERN_INFO
, LOG_INIT
,
6555 "3345 FCF connection list rec[%02d]: "
6556 "flags:x%04x, vtag:x%04x, "
6557 "fabric_name:x%02x:%02x:%02x:%02x:"
6558 "%02x:%02x:%02x:%02x, "
6559 "switch_name:x%02x:%02x:%02x:%02x:"
6560 "%02x:%02x:%02x:%02x\n", i
++,
6561 conn_rec
->flags
, conn_rec
->vlan_tag
,
6562 conn_rec
->fabric_name
[0],
6563 conn_rec
->fabric_name
[1],
6564 conn_rec
->fabric_name
[2],
6565 conn_rec
->fabric_name
[3],
6566 conn_rec
->fabric_name
[4],
6567 conn_rec
->fabric_name
[5],
6568 conn_rec
->fabric_name
[6],
6569 conn_rec
->fabric_name
[7],
6570 conn_rec
->switch_name
[0],
6571 conn_rec
->switch_name
[1],
6572 conn_rec
->switch_name
[2],
6573 conn_rec
->switch_name
[3],
6574 conn_rec
->switch_name
[4],
6575 conn_rec
->switch_name
[5],
6576 conn_rec
->switch_name
[6],
6577 conn_rec
->switch_name
[7]);
6583 * lpfc_read_fcoe_param - Read FCoe parameters from conf region..
6584 * @phba: Pointer to hba context object.
6585 * @buff: Buffer containing the FCoE parameter data structure.
6587 * This function update driver data structure with config
6588 * parameters read from config region 23.
6591 lpfc_read_fcoe_param(struct lpfc_hba
*phba
,
6594 struct lpfc_fip_param_hdr
*fcoe_param_hdr
;
6595 struct lpfc_fcoe_params
*fcoe_param
;
6597 fcoe_param_hdr
= (struct lpfc_fip_param_hdr
*)
6599 fcoe_param
= (struct lpfc_fcoe_params
*)
6600 (buff
+ sizeof(struct lpfc_fip_param_hdr
));
6602 if ((fcoe_param_hdr
->parm_version
!= FIPP_VERSION
) ||
6603 (fcoe_param_hdr
->length
!= FCOE_PARAM_LENGTH
))
6606 if (fcoe_param_hdr
->parm_flags
& FIPP_VLAN_VALID
) {
6607 phba
->valid_vlan
= 1;
6608 phba
->vlan_id
= le16_to_cpu(fcoe_param
->vlan_tag
) &
6612 phba
->fc_map
[0] = fcoe_param
->fc_map
[0];
6613 phba
->fc_map
[1] = fcoe_param
->fc_map
[1];
6614 phba
->fc_map
[2] = fcoe_param
->fc_map
[2];
6619 * lpfc_get_rec_conf23 - Get a record type in config region data.
6620 * @buff: Buffer containing config region 23 data.
6621 * @size: Size of the data buffer.
6622 * @rec_type: Record type to be searched.
6624 * This function searches config region data to find the beginning
6625 * of the record specified by record_type. If record found, this
6626 * function return pointer to the record else return NULL.
6629 lpfc_get_rec_conf23(uint8_t *buff
, uint32_t size
, uint8_t rec_type
)
6631 uint32_t offset
= 0, rec_length
;
6633 if ((buff
[0] == LPFC_REGION23_LAST_REC
) ||
6634 (size
< sizeof(uint32_t)))
6637 rec_length
= buff
[offset
+ 1];
6640 * One TLV record has one word header and number of data words
6641 * specified in the rec_length field of the record header.
6643 while ((offset
+ rec_length
* sizeof(uint32_t) + sizeof(uint32_t))
6645 if (buff
[offset
] == rec_type
)
6646 return &buff
[offset
];
6648 if (buff
[offset
] == LPFC_REGION23_LAST_REC
)
6651 offset
+= rec_length
* sizeof(uint32_t) + sizeof(uint32_t);
6652 rec_length
= buff
[offset
+ 1];
6658 * lpfc_parse_fcoe_conf - Parse FCoE config data read from config region 23.
6659 * @phba: Pointer to lpfc_hba data structure.
6660 * @buff: Buffer containing config region 23 data.
6661 * @size: Size of the data buffer.
6663 * This function parses the FCoE config parameters in config region 23 and
6664 * populate driver data structure with the parameters.
6667 lpfc_parse_fcoe_conf(struct lpfc_hba
*phba
,
6671 uint32_t offset
= 0;
6675 * If data size is less than 2 words signature and version cannot be
6678 if (size
< 2*sizeof(uint32_t))
6681 /* Check the region signature first */
6682 if (memcmp(buff
, LPFC_REGION23_SIGNATURE
, 4)) {
6683 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
6684 "2567 Config region 23 has bad signature\n");
6690 /* Check the data structure version */
6691 if (buff
[offset
] != LPFC_REGION23_VERSION
) {
6692 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
6693 "2568 Config region 23 has bad version\n");
6698 /* Read FCoE param record */
6699 rec_ptr
= lpfc_get_rec_conf23(&buff
[offset
],
6700 size
- offset
, FCOE_PARAM_TYPE
);
6702 lpfc_read_fcoe_param(phba
, rec_ptr
);
6704 /* Read FCF connection table */
6705 rec_ptr
= lpfc_get_rec_conf23(&buff
[offset
],
6706 size
- offset
, FCOE_CONN_TBL_TYPE
);
6708 lpfc_read_fcf_conn_tbl(phba
, rec_ptr
);