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