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