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