blob: 91fa65906173ff6c3391dd28827e4dd411c733b7 [file] [log] [blame]
dea31012005-04-17 16:05:31 -05001/*******************************************************************
2 * This file is part of the Emulex Linux Device Driver for *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -04003 * Fibre Channel Host Bus Adapters. *
James Smartd8e93df2009-05-22 14:53:05 -04004 * Copyright (C) 2004-2009 Emulex. All rights reserved. *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -04005 * EMULEX and SLI are trademarks of Emulex. *
dea31012005-04-17 16:05:31 -05006 * www.emulex.com *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -04007 * Portions Copyright (C) 2004-2005 Christoph Hellwig *
dea31012005-04-17 16:05:31 -05008 * *
9 * This program is free software; you can redistribute it and/or *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -040010 * 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. *
dea31012005-04-17 16:05:31 -050020 *******************************************************************/
21
dea31012005-04-17 16:05:31 -050022#include <linux/blkdev.h>
James Smarta93ff372010-10-22 11:06:08 -040023#include <linux/delay.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/slab.h>
dea31012005-04-17 16:05:31 -050025#include <linux/pci.h>
26#include <linux/kthread.h>
27#include <linux/interrupt.h>
28
James.Smart@Emulex.Com91886522005-08-10 15:03:09 -040029#include <scsi/scsi.h>
dea31012005-04-17 16:05:31 -050030#include <scsi/scsi_device.h>
31#include <scsi/scsi_host.h>
32#include <scsi/scsi_transport_fc.h>
33
James Smartda0436e2009-05-22 14:51:39 -040034#include "lpfc_hw4.h"
dea31012005-04-17 16:05:31 -050035#include "lpfc_hw.h"
James Smartea2151b2008-09-07 11:52:10 -040036#include "lpfc_nl.h"
dea31012005-04-17 16:05:31 -050037#include "lpfc_disc.h"
38#include "lpfc_sli.h"
James Smartda0436e2009-05-22 14:51:39 -040039#include "lpfc_sli4.h"
dea31012005-04-17 16:05:31 -050040#include "lpfc_scsi.h"
41#include "lpfc.h"
42#include "lpfc_logmsg.h"
43#include "lpfc_crtn.h"
James Smart92d7f7b2007-06-17 19:56:38 -050044#include "lpfc_vport.h"
James Smart858c9f62007-06-17 19:56:39 -050045#include "lpfc_debugfs.h"
dea31012005-04-17 16:05:31 -050046
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
James Smart2e0fef82007-06-17 19:56:36 -050064static void lpfc_disc_timeout_handler(struct lpfc_vport *);
Adrian Bunka6ababd2007-11-05 18:07:33 +010065static void lpfc_disc_flush_list(struct lpfc_vport *vport);
James Smart32b97932009-07-19 10:01:21 -040066static void lpfc_unregister_fcfi_cmpl(struct lpfc_hba *, LPFC_MBOXQ_t *);
James Smarta93ff372010-10-22 11:06:08 -040067static int lpfc_fcf_inuse(struct lpfc_hba *);
dea31012005-04-17 16:05:31 -050068
James Smartc01f3202006-08-18 17:47:08 -040069void
70lpfc_terminate_rport_io(struct fc_rport *rport)
dea31012005-04-17 16:05:31 -050071{
James Smartc01f3202006-08-18 17:47:08 -040072 struct lpfc_rport_data *rdata;
73 struct lpfc_nodelist * ndlp;
74 struct lpfc_hba *phba;
dea31012005-04-17 16:05:31 -050075
James Smartc01f3202006-08-18 17:47:08 -040076 rdata = rport->dd_data;
77 ndlp = rdata->pnode;
78
James Smart58da1ff2008-04-07 10:15:56 -040079 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp)) {
James Smartc01f3202006-08-18 17:47:08 -040080 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);
dea31012005-04-17 16:05:31 -050084 return;
85 }
86
James Smarta257bf92009-04-06 18:48:10 -040087 phba = ndlp->phba;
James Smart1a169682006-03-07 15:04:06 -050088
James Smart858c9f62007-06-17 19:56:39 -050089 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
James Smartc01f3202006-08-18 17:47:08 -040093 if (ndlp->nlp_sid != NLP_NO_SID) {
James Smart51ef4c22007-08-02 11:10:31 -040094 lpfc_sli_abort_iocb(ndlp->vport,
95 &phba->sli.ring[phba->sli.fcp_ring],
96 ndlp->nlp_sid, 0, LPFC_CTX_TGT);
James Smartc01f3202006-08-18 17:47:08 -040097 }
James Smartc01f3202006-08-18 17:47:08 -040098}
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;
James Smart2e0fef82007-06-17 19:56:36 -0500108 struct lpfc_vport *vport;
James Smart858c9f62007-06-17 19:56:39 -0500109 struct lpfc_hba *phba;
James Smart858c9f62007-06-17 19:56:39 -0500110 struct lpfc_work_evt *evtp;
James Smarta8adb832007-10-27 13:37:53 -0400111 int put_node;
112 int put_rport;
James Smartc01f3202006-08-18 17:47:08 -0400113
114 rdata = rport->dd_data;
115 ndlp = rdata->pnode;
James Smart58da1ff2008-04-07 10:15:56 -0400116 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp))
James Smartc01f3202006-08-18 17:47:08 -0400117 return;
James Smartc01f3202006-08-18 17:47:08 -0400118
James Smart858c9f62007-06-17 19:56:39 -0500119 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
James Smarta8adb832007-10-27 13:37:53 -0400126 /* 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
James Smart858c9f62007-06-17 19:56:39 -0500145 evtp = &ndlp->dev_loss_evt;
146
147 if (!list_empty(&evtp->evt_listp))
148 return;
149
150 spin_lock_irq(&phba->hbalock);
James Smartfa4066b2008-01-11 01:53:27 -0500151 /* 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);
James Smart5e9d9b82008-06-14 22:52:53 -0400155 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 }
James Smart858c9f62007-06-17 19:56:39 -0500160 spin_unlock_irq(&phba->hbalock);
161
James Smart858c9f62007-06-17 19:56:39 -0500162 return;
163}
164
James Smarta93ff372010-10-22 11:06:08 -0400165/**
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
James Smart858c9f62007-06-17 19:56:39 -0500176lpfc_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;
James Smart87af33f2007-10-27 13:37:43 -0400183 int put_node;
184 int put_rport;
James Smart858c9f62007-06-17 19:56:39 -0500185 int warn_on = 0;
James Smarta93ff372010-10-22 11:06:08 -0400186 int fcf_inuse = 0;
James Smart858c9f62007-06-17 19:56:39 -0500187
188 rport = ndlp->rport;
189
190 if (!rport)
James Smarta93ff372010-10-22 11:06:08 -0400191 return fcf_inuse;
James Smart858c9f62007-06-17 19:56:39 -0500192
193 rdata = rport->dd_data;
194 name = (uint8_t *) &ndlp->nlp_portname;
195 vport = ndlp->vport;
196 phba = vport->phba;
197
James Smarta93ff372010-10-22 11:06:08 -0400198 if (phba->sli_rev == LPFC_SLI_REV4)
199 fcf_inuse = lpfc_fcf_inuse(phba);
200
James Smart858c9f62007-06-17 19:56:39 -0500201 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
James Smarta8adb832007-10-27 13:37:53 -0400205 /* 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) {
James Smart09372822008-01-11 01:52:54 -0500210 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 }
James Smarta8adb832007-10-27 13:37:53 -0400216 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);
James Smarta93ff372010-10-22 11:06:08 -0400224 return fcf_inuse;
James Smarta8adb832007-10-27 13:37:53 -0400225 }
226
James Smartd7c255b2008-08-24 21:50:00 -0400227 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);
James Smarta93ff372010-10-22 11:06:08 -0400235 return fcf_inuse;
James Smartd7c255b2008-08-24 21:50:00 -0400236 }
James Smart858c9f62007-06-17 19:56:39 -0500237
James Smart92d7f7b2007-06-17 19:56:38 -0500238 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);
James Smarta93ff372010-10-22 11:06:08 -0400248 return fcf_inuse;
James Smart92d7f7b2007-06-17 19:56:38 -0500249 }
James Smart82085712007-04-25 09:52:41 -0400250
dea31012005-04-17 16:05:31 -0500251 if (ndlp->nlp_sid != NLP_NO_SID) {
James.Smart@Emulex.Com6e8215e2005-06-25 10:34:04 -0400252 warn_on = 1;
dea31012005-04-17 16:05:31 -0500253 /* flush the target */
James Smart51ef4c22007-08-02 11:10:31 -0400254 lpfc_sli_abort_iocb(vport, &phba->sli.ring[phba->sli.fcp_ring],
255 ndlp->nlp_sid, 0, LPFC_CTX_TGT);
dea31012005-04-17 16:05:31 -0500256 }
James Smartc01f3202006-08-18 17:47:08 -0400257
James.Smart@Emulex.Com6e8215e2005-06-25 10:34:04 -0400258 if (warn_on) {
James Smarte8b62012007-08-02 11:10:09 -0400259 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
260 "0203 Devloss timeout on "
James Smart58da1ff2008-04-07 10:15:56 -0400261 "WWPN %02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x "
262 "NPort x%06x Data: x%x x%x x%x\n",
James Smarte8b62012007-08-02 11:10:09 -0400263 *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);
James.Smart@Emulex.Com6e8215e2005-06-25 10:34:04 -0400267 } else {
James Smarte8b62012007-08-02 11:10:09 -0400268 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
269 "0204 Devloss timeout on "
James Smart58da1ff2008-04-07 10:15:56 -0400270 "WWPN %02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x "
271 "NPort x%06x Data: x%x x%x x%x\n",
James Smarte8b62012007-08-02 11:10:09 -0400272 *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);
James.Smart@Emulex.Com6e8215e2005-06-25 10:34:04 -0400276 }
277
James Smart87af33f2007-10-27 13:37:43 -0400278 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
James Smart2e0fef82007-06-17 19:56:36 -0500287 if (!(vport->load_flag & FC_UNLOADING) &&
James Smart1dcb58e2007-04-25 09:51:30 -0400288 !(ndlp->nlp_flag & NLP_DELAY_TMO) &&
James Smart82085712007-04-25 09:52:41 -0400289 !(ndlp->nlp_flag & NLP_NPR_2B_DISC) &&
James Smartffc95492010-06-07 15:23:17 -0400290 (ndlp->nlp_state != NLP_STE_UNMAPPED_NODE) &&
James Smart589a52d2010-07-14 15:30:54 -0400291 (ndlp->nlp_state != NLP_STE_REG_LOGIN_ISSUE) &&
292 (ndlp->nlp_state != NLP_STE_PRLI_ISSUE))
James Smart2e0fef82007-06-17 19:56:36 -0500293 lpfc_disc_state_machine(vport, ndlp, NULL, NLP_EVT_DEVICE_RM);
James Smart6fb120a2009-05-22 14:52:59 -0400294
James Smarta93ff372010-10-22 11:06:08 -0400295 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 }
James Smart6fb120a2009-05-22 14:52:59 -0400363 lpfc_unregister_unused_fcf(phba);
James Smart92d7f7b2007-06-17 19:56:38 -0500364}
James Smartc01f3202006-08-18 17:47:08 -0400365
James Smartea2151b2008-09-07 11:52:10 -0400366/**
James Smart3621a712009-04-06 18:47:14 -0400367 * lpfc_alloc_fast_evt - Allocates data structure for posting event
James Smartea2151b2008-09-07 11:52:10 -0400368 * @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);
James Smart6fb120a2009-05-22 14:52:59 -0400386 if (ret) {
James Smartea2151b2008-09-07 11:52:10 -0400387 atomic_inc(&phba->fast_event_count);
James Smart6fb120a2009-05-22 14:52:59 -0400388 INIT_LIST_HEAD(&ret->work_evt.evt_listp);
389 ret->work_evt.evt = LPFC_EVT_FASTPATH_MGMT_EVT;
390 }
James Smartea2151b2008-09-07 11:52:10 -0400391 return ret;
392}
393
394/**
James Smart3621a712009-04-06 18:47:14 -0400395 * lpfc_free_fast_evt - Frees event data structure
James Smartea2151b2008-09-07 11:52:10 -0400396 * @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/**
James Smart3621a712009-04-06 18:47:14 -0400411 * lpfc_send_fastpath_evt - Posts events generated from fast path
James Smartea2151b2008-09-07 11:52:10 -0400412 * @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) ||
James Smarteaf15d52008-12-04 22:39:29 -0500442 (evt_sub_category == LPFC_EVENT_PORT_BUSY)) {
James Smartea2151b2008-09-07 11:52:10 -0400443 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,
James Smartddcc50f2008-12-04 22:38:46 -0500479 LPFC_NL_VENDOR_ID);
James Smartea2151b2008-09-07 11:52:10 -0400480
481 lpfc_free_fast_evt(phba, fast_evt_data);
482 return;
483}
484
dea31012005-04-17 16:05:31 -0500485static void
James Smart2e0fef82007-06-17 19:56:36 -0500486lpfc_work_list_done(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -0500487{
488 struct lpfc_work_evt *evtp = NULL;
489 struct lpfc_nodelist *ndlp;
490 int free_evt;
James Smarta93ff372010-10-22 11:06:08 -0400491 int fcf_inuse;
492 uint32_t nlp_did;
dea31012005-04-17 16:05:31 -0500493
James Smart2e0fef82007-06-17 19:56:36 -0500494 spin_lock_irq(&phba->hbalock);
495 while (!list_empty(&phba->work_list)) {
dea31012005-04-17 16:05:31 -0500496 list_remove_head((&phba->work_list), evtp, typeof(*evtp),
497 evt_listp);
James Smart2e0fef82007-06-17 19:56:36 -0500498 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -0500499 free_evt = 1;
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -0500500 switch (evtp->evt) {
dea31012005-04-17 16:05:31 -0500501 case LPFC_EVT_ELS_RETRY:
James Smart2e0fef82007-06-17 19:56:36 -0500502 ndlp = (struct lpfc_nodelist *) (evtp->evt_arg1);
dea31012005-04-17 16:05:31 -0500503 lpfc_els_retry_delay_handler(ndlp);
James Smart92d7f7b2007-06-17 19:56:38 -0500504 free_evt = 0; /* evt is part of ndlp */
James Smartfa4066b2008-01-11 01:53:27 -0500505 /* decrement the node reference count held
506 * for this queued work
507 */
508 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -0500509 break;
James Smart858c9f62007-06-17 19:56:39 -0500510 case LPFC_EVT_DEV_LOSS:
511 ndlp = (struct lpfc_nodelist *)(evtp->evt_arg1);
James Smarta93ff372010-10-22 11:06:08 -0400512 fcf_inuse = lpfc_dev_loss_tmo_handler(ndlp);
James Smart858c9f62007-06-17 19:56:39 -0500513 free_evt = 0;
James Smartfa4066b2008-01-11 01:53:27 -0500514 /* decrement the node reference count held for
515 * this queued work
516 */
James Smarta93ff372010-10-22 11:06:08 -0400517 nlp_did = ndlp->nlp_DID;
James Smart858c9f62007-06-17 19:56:39 -0500518 lpfc_nlp_put(ndlp);
James Smarta93ff372010-10-22 11:06:08 -0400519 if (phba->sli_rev == LPFC_SLI_REV4)
520 lpfc_sli4_post_dev_loss_tmo_handler(phba,
521 fcf_inuse,
522 nlp_did);
James Smart858c9f62007-06-17 19:56:39 -0500523 break;
dea31012005-04-17 16:05:31 -0500524 case LPFC_EVT_ONLINE:
James Smart2e0fef82007-06-17 19:56:36 -0500525 if (phba->link_state < LPFC_LINK_DOWN)
526 *(int *) (evtp->evt_arg1) = lpfc_online(phba);
Jamie Wellnitz41415862006-02-28 19:25:27 -0500527 else
James Smart2e0fef82007-06-17 19:56:36 -0500528 *(int *) (evtp->evt_arg1) = 0;
dea31012005-04-17 16:05:31 -0500529 complete((struct completion *)(evtp->evt_arg2));
530 break;
James Smart46fa3112007-04-25 09:51:45 -0400531 case LPFC_EVT_OFFLINE_PREP:
James Smart2e0fef82007-06-17 19:56:36 -0500532 if (phba->link_state >= LPFC_LINK_DOWN)
James Smart46fa3112007-04-25 09:51:45 -0400533 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);
Jamie Wellnitz41415862006-02-28 19:25:27 -0500539 lpfc_sli_brdrestart(phba);
540 *(int *)(evtp->evt_arg1) =
James Smart46fa3112007-04-25 09:51:45 -0400541 lpfc_sli_brdready(phba, HS_FFRDY | HS_MBRDY);
542 lpfc_unblock_mgmt_io(phba);
Jamie Wellnitz41415862006-02-28 19:25:27 -0500543 complete((struct completion *)(evtp->evt_arg2));
544 break;
545 case LPFC_EVT_WARM_START:
James Smart46fa3112007-04-25 09:51:45 -0400546 lpfc_offline(phba);
James Smart92908312006-03-07 15:04:13 -0500547 lpfc_reset_barrier(phba);
Jamie Wellnitz41415862006-02-28 19:25:27 -0500548 lpfc_sli_brdreset(phba);
549 lpfc_hba_down_post(phba);
550 *(int *)(evtp->evt_arg1) =
551 lpfc_sli_brdready(phba, HS_MBRDY);
James Smart46fa3112007-04-25 09:51:45 -0400552 lpfc_unblock_mgmt_io(phba);
Jamie Wellnitz41415862006-02-28 19:25:27 -0500553 complete((struct completion *)(evtp->evt_arg2));
554 break;
555 case LPFC_EVT_KILL:
James Smart46fa3112007-04-25 09:51:45 -0400556 lpfc_offline(phba);
James Smart92908312006-03-07 15:04:13 -0500557 *(int *)(evtp->evt_arg1)
James Smart2e0fef82007-06-17 19:56:36 -0500558 = (phba->pport->stopped)
559 ? 0 : lpfc_sli_brdkill(phba);
James Smart46fa3112007-04-25 09:51:45 -0400560 lpfc_unblock_mgmt_io(phba);
dea31012005-04-17 16:05:31 -0500561 complete((struct completion *)(evtp->evt_arg2));
562 break;
James Smartea2151b2008-09-07 11:52:10 -0400563 case LPFC_EVT_FASTPATH_MGMT_EVT:
564 lpfc_send_fastpath_evt(phba, evtp);
565 free_evt = 0;
566 break;
James Smart78730cf2010-04-06 15:06:30 -0400567 case LPFC_EVT_RESET_HBA:
568 if (!(phba->pport->load_flag & FC_UNLOADING))
569 lpfc_reset_hba(phba);
570 break;
dea31012005-04-17 16:05:31 -0500571 }
572 if (free_evt)
573 kfree(evtp);
James Smart2e0fef82007-06-17 19:56:36 -0500574 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -0500575 }
James Smart2e0fef82007-06-17 19:56:36 -0500576 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -0500577
578}
579
James Smart311464e2007-08-02 11:10:37 -0400580static void
James Smart2e0fef82007-06-17 19:56:36 -0500581lpfc_work_done(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -0500582{
583 struct lpfc_sli_ring *pring;
James Smart858c9f62007-06-17 19:56:39 -0500584 uint32_t ha_copy, status, control, work_port_events;
James Smart549e55c2007-08-02 11:09:51 -0400585 struct lpfc_vport **vports;
James Smart51ef4c22007-08-02 11:10:31 -0400586 struct lpfc_vport *vport;
James Smart549e55c2007-08-02 11:09:51 -0400587 int i;
dea31012005-04-17 16:05:31 -0500588
James Smart2e0fef82007-06-17 19:56:36 -0500589 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -0500590 ha_copy = phba->work_ha;
591 phba->work_ha = 0;
James Smart2e0fef82007-06-17 19:56:36 -0500592 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -0500593
James Smartda0436e2009-05-22 14:51:39 -0400594 /* 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
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -0500598 if (ha_copy & HA_ERATT)
James Smart93996272008-08-24 21:50:30 -0400599 /* Handle the error attention event */
dea31012005-04-17 16:05:31 -0500600 lpfc_handle_eratt(phba);
601
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -0500602 if (ha_copy & HA_MBATT)
dea31012005-04-17 16:05:31 -0500603 lpfc_sli_handle_mb_event(phba);
604
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -0500605 if (ha_copy & HA_LATT)
dea31012005-04-17 16:05:31 -0500606 lpfc_handle_latt(phba);
James Smart93996272008-08-24 21:50:30 -0400607
James Smartda0436e2009-05-22 14:51:39 -0400608 /* Process SLI4 events */
609 if (phba->pci_dev_grp == LPFC_PCI_DEV_OC) {
James Smart19ca7602010-11-20 23:11:55 -0500610 if (phba->hba_flag & HBA_RRQ_ACTIVE)
611 lpfc_handle_rrq_active(phba);
James Smartda0436e2009-05-22 14:51:39 -0400612 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 }
James Smartecfd03c2010-02-12 14:41:27 -0500624 if (phba->fcf.fcf_flag & FCF_REDISC_EVT)
625 lpfc_sli4_fcf_redisc_event_proc(phba);
James Smartda0436e2009-05-22 14:51:39 -0400626 }
627
James Smart549e55c2007-08-02 11:09:51 -0400628 vports = lpfc_create_vport_work_array(phba);
629 if (vports != NULL)
James Smartda0436e2009-05-22 14:51:39 -0400630 for (i = 0; i <= phba->max_vports; i++) {
James Smart51ef4c22007-08-02 11:10:31 -0400631 /*
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;
James Smart58da1ff2008-04-07 10:15:56 -0400641 spin_lock_irq(&vport->work_port_lock);
James Smart51ef4c22007-08-02 11:10:31 -0400642 work_port_events = vport->work_port_events;
James Smart58da1ff2008-04-07 10:15:56 -0400643 vport->work_port_events &= ~work_port_events;
644 spin_unlock_irq(&vport->work_port_lock);
James Smart549e55c2007-08-02 11:09:51 -0400645 if (work_port_events & WORKER_DISC_TMO)
James Smart51ef4c22007-08-02 11:10:31 -0400646 lpfc_disc_timeout_handler(vport);
James Smart549e55c2007-08-02 11:09:51 -0400647 if (work_port_events & WORKER_ELS_TMO)
James Smart51ef4c22007-08-02 11:10:31 -0400648 lpfc_els_timeout_handler(vport);
James Smart549e55c2007-08-02 11:09:51 -0400649 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)
James Smart51ef4c22007-08-02 11:10:31 -0400656 lpfc_fdmi_timeout_handler(vport);
James Smart549e55c2007-08-02 11:09:51 -0400657 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);
James Smart92d7f7b2007-06-17 19:56:38 -0500661 }
James Smart09372822008-01-11 01:52:54 -0500662 lpfc_destroy_vport_work_array(phba, vports);
dea31012005-04-17 16:05:31 -0500663
James Smart858c9f62007-06-17 19:56:39 -0500664 pring = &phba->sli.ring[LPFC_ELS_RING];
665 status = (ha_copy & (HA_RXMASK << (4*LPFC_ELS_RING)));
666 status >>= (4*LPFC_ELS_RING);
James Smart4d9ab992009-10-02 15:16:39 -0400667 if ((status & HA_RXMASK) ||
668 (pring->flag & LPFC_DEFERRED_RING_EVENT) ||
James Smart45ed1192009-10-02 15:17:02 -0400669 (phba->hba_flag & HBA_SP_QUEUE_EVT)) {
James Smart0b727fe2007-10-27 13:37:25 -0400670 if (pring->flag & LPFC_STOP_IOCB_EVENT) {
James Smart858c9f62007-06-17 19:56:39 -0500671 pring->flag |= LPFC_DEFERRED_RING_EVENT;
James Smart5e9d9b82008-06-14 22:52:53 -0400672 /* Set the lpfc data pending flag */
673 set_bit(LPFC_DATA_READY, &phba->data_flags);
James Smart858c9f62007-06-17 19:56:39 -0500674 } else {
James Smart58da1ff2008-04-07 10:15:56 -0400675 pring->flag &= ~LPFC_DEFERRED_RING_EVENT;
James Smart858c9f62007-06-17 19:56:39 -0500676 lpfc_sli_handle_slow_ring_event(phba, pring,
677 (status &
678 HA_RXMASK));
James Smart858c9f62007-06-17 19:56:39 -0500679 }
James Smartbc739052010-08-04 16:11:18 -0400680 if ((phba->sli_rev == LPFC_SLI_REV4) && pring->txq_cnt)
James Smart2a9bf3d2010-06-07 15:24:45 -0400681 lpfc_drain_txq(phba);
James Smart858c9f62007-06-17 19:56:39 -0500682 /*
683 * Turn on Ring interrupts
684 */
James Smart3772a992009-05-22 14:50:54 -0400685 if (phba->sli_rev <= LPFC_SLI_REV3) {
686 spin_lock_irq(&phba->hbalock);
687 control = readl(phba->HCregaddr);
688 if (!(control & (HC_R0INT_ENA << LPFC_ELS_RING))) {
689 lpfc_debugfs_slow_ring_trc(phba,
690 "WRK Enable ring: cntl:x%x hacopy:x%x",
691 control, ha_copy, 0);
James Smarta58cbd52007-08-02 11:09:43 -0400692
James Smart3772a992009-05-22 14:50:54 -0400693 control |= (HC_R0INT_ENA << LPFC_ELS_RING);
694 writel(control, phba->HCregaddr);
695 readl(phba->HCregaddr); /* flush */
696 } else {
697 lpfc_debugfs_slow_ring_trc(phba,
698 "WRK Ring ok: cntl:x%x hacopy:x%x",
699 control, ha_copy, 0);
700 }
701 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -0500702 }
703 }
James Smart2e0fef82007-06-17 19:56:36 -0500704 lpfc_work_list_done(phba);
dea31012005-04-17 16:05:31 -0500705}
706
dea31012005-04-17 16:05:31 -0500707int
708lpfc_do_work(void *p)
709{
710 struct lpfc_hba *phba = p;
711 int rc;
dea31012005-04-17 16:05:31 -0500712
713 set_user_nice(current, -20);
James Smart5e9d9b82008-06-14 22:52:53 -0400714 phba->data_flags = 0;
dea31012005-04-17 16:05:31 -0500715
James Smart3a55b532008-12-04 22:38:54 -0500716 while (!kthread_should_stop()) {
James Smart5e9d9b82008-06-14 22:52:53 -0400717 /* wait and check worker queue activities */
718 rc = wait_event_interruptible(phba->work_waitq,
719 (test_and_clear_bit(LPFC_DATA_READY,
720 &phba->data_flags)
721 || kthread_should_stop()));
James Smart3a55b532008-12-04 22:38:54 -0500722 /* Signal wakeup shall terminate the worker thread */
723 if (rc) {
724 lpfc_printf_log(phba, KERN_ERR, LOG_ELS,
725 "0433 Wakeup on signal: rc=x%x\n", rc);
dea31012005-04-17 16:05:31 -0500726 break;
James Smart3a55b532008-12-04 22:38:54 -0500727 }
dea31012005-04-17 16:05:31 -0500728
James Smart5e9d9b82008-06-14 22:52:53 -0400729 /* Attend pending lpfc data processing */
dea31012005-04-17 16:05:31 -0500730 lpfc_work_done(phba);
dea31012005-04-17 16:05:31 -0500731 }
James Smart3a55b532008-12-04 22:38:54 -0500732 phba->worker_thread = NULL;
733 lpfc_printf_log(phba, KERN_INFO, LOG_ELS,
734 "0432 Worker thread stopped.\n");
dea31012005-04-17 16:05:31 -0500735 return 0;
736}
737
738/*
739 * This is only called to handle FC worker events. Since this a rare
740 * occurance, we allocate a struct lpfc_work_evt structure here instead of
741 * embedding it in the IOCB.
742 */
743int
James Smart2e0fef82007-06-17 19:56:36 -0500744lpfc_workq_post_event(struct lpfc_hba *phba, void *arg1, void *arg2,
dea31012005-04-17 16:05:31 -0500745 uint32_t evt)
746{
747 struct lpfc_work_evt *evtp;
James Smarted957682007-06-17 19:56:37 -0500748 unsigned long flags;
dea31012005-04-17 16:05:31 -0500749
750 /*
751 * All Mailbox completions and LPFC_ELS_RING rcv ring IOCB events will
752 * be queued to worker thread for processing
753 */
James Smart92d7f7b2007-06-17 19:56:38 -0500754 evtp = kmalloc(sizeof(struct lpfc_work_evt), GFP_ATOMIC);
dea31012005-04-17 16:05:31 -0500755 if (!evtp)
756 return 0;
757
758 evtp->evt_arg1 = arg1;
759 evtp->evt_arg2 = arg2;
760 evtp->evt = evt;
761
James Smarted957682007-06-17 19:56:37 -0500762 spin_lock_irqsave(&phba->hbalock, flags);
James Smart071fbd3d2006-04-15 11:53:20 -0400763 list_add_tail(&evtp->evt_listp, &phba->work_list);
James Smarted957682007-06-17 19:56:37 -0500764 spin_unlock_irqrestore(&phba->hbalock, flags);
dea31012005-04-17 16:05:31 -0500765
James Smart5e9d9b82008-06-14 22:52:53 -0400766 lpfc_worker_wake_up(phba);
767
dea31012005-04-17 16:05:31 -0500768 return 1;
769}
770
James Smart92d7f7b2007-06-17 19:56:38 -0500771void
772lpfc_cleanup_rpis(struct lpfc_vport *vport, int remove)
773{
James Smart09372822008-01-11 01:52:54 -0500774 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart92d7f7b2007-06-17 19:56:38 -0500775 struct lpfc_hba *phba = vport->phba;
776 struct lpfc_nodelist *ndlp, *next_ndlp;
777 int rc;
778
779 list_for_each_entry_safe(ndlp, next_ndlp, &vport->fc_nodes, nlp_listp) {
James Smarte47c9092008-02-08 18:49:26 -0500780 if (!NLP_CHK_NODE_ACT(ndlp))
781 continue;
James Smart92d7f7b2007-06-17 19:56:38 -0500782 if (ndlp->nlp_state == NLP_STE_UNUSED_NODE)
783 continue;
James Smart98c9ea52007-10-27 13:37:33 -0400784 if ((phba->sli3_options & LPFC_SLI3_VPORT_TEARDOWN) ||
785 ((vport->port_type == LPFC_NPIV_PORT) &&
786 (ndlp->nlp_DID == NameServer_DID)))
James Smart92d7f7b2007-06-17 19:56:38 -0500787 lpfc_unreg_rpi(vport, ndlp);
788
789 /* Leave Fabric nodes alone on link down */
James Smart4d9ab992009-10-02 15:16:39 -0400790 if ((phba->sli_rev < LPFC_SLI_REV4) &&
791 (!remove && ndlp->nlp_type & NLP_FABRIC))
James Smart92d7f7b2007-06-17 19:56:38 -0500792 continue;
793 rc = lpfc_disc_state_machine(vport, ndlp, NULL,
794 remove
795 ? NLP_EVT_DEVICE_RM
796 : NLP_EVT_DEVICE_RECOVERY);
797 }
798 if (phba->sli3_options & LPFC_SLI3_VPORT_TEARDOWN) {
James Smart5af5eee2010-10-22 11:06:38 -0400799 if (phba->sli_rev == LPFC_SLI_REV4)
800 lpfc_sli4_unreg_all_rpis(vport);
James Smart92d7f7b2007-06-17 19:56:38 -0500801 lpfc_mbx_unreg_vpi(vport);
James Smart09372822008-01-11 01:52:54 -0500802 spin_lock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -0500803 vport->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
James Smart09372822008-01-11 01:52:54 -0500804 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -0500805 }
806}
807
James Smart87af33f2007-10-27 13:37:43 -0400808void
James Smart98c9ea52007-10-27 13:37:33 -0400809lpfc_port_link_failure(struct lpfc_vport *vport)
James Smart92d7f7b2007-06-17 19:56:38 -0500810{
James Smart695a8142010-01-26 23:08:03 -0500811 lpfc_vport_set_state(vport, FC_VPORT_LINKDOWN);
812
James Smart45ed1192009-10-02 15:17:02 -0400813 /* Cleanup any outstanding received buffers */
814 lpfc_cleanup_rcv_buffers(vport);
815
James Smart92d7f7b2007-06-17 19:56:38 -0500816 /* Cleanup any outstanding RSCN activity */
817 lpfc_els_flush_rscn(vport);
818
819 /* Cleanup any outstanding ELS commands */
820 lpfc_els_flush_cmd(vport);
821
822 lpfc_cleanup_rpis(vport, 0);
823
James Smart92d7f7b2007-06-17 19:56:38 -0500824 /* Turn off discovery timer if its running */
825 lpfc_can_disctmo(vport);
826}
827
James Smart3772a992009-05-22 14:50:54 -0400828void
James Smart98c9ea52007-10-27 13:37:33 -0400829lpfc_linkdown_port(struct lpfc_vport *vport)
830{
831 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
832
833 fc_host_post_event(shost, fc_get_event_number(), FCH_EVT_LINKDOWN, 0);
834
835 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
836 "Link Down: state:x%x rtry:x%x flg:x%x",
837 vport->port_state, vport->fc_ns_retry, vport->fc_flag);
838
839 lpfc_port_link_failure(vport);
840
841}
842
dea31012005-04-17 16:05:31 -0500843int
James Smart685f0bf2007-04-25 09:53:08 -0400844lpfc_linkdown(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -0500845{
James Smart2e0fef82007-06-17 19:56:36 -0500846 struct lpfc_vport *vport = phba->pport;
847 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart549e55c2007-08-02 11:09:51 -0400848 struct lpfc_vport **vports;
James Smart685f0bf2007-04-25 09:53:08 -0400849 LPFC_MBOXQ_t *mb;
James Smart549e55c2007-08-02 11:09:51 -0400850 int i;
dea31012005-04-17 16:05:31 -0500851
James Smart3163f722008-02-08 18:50:25 -0500852 if (phba->link_state == LPFC_LINK_DOWN)
James Smart2e0fef82007-06-17 19:56:36 -0500853 return 0;
James Smartaacc20e2009-12-21 17:02:51 -0500854
855 /* Block all SCSI stack I/Os */
856 lpfc_scsi_dev_block(phba);
857
James Smart2e0fef82007-06-17 19:56:36 -0500858 spin_lock_irq(&phba->hbalock);
James Smartecfd03c2010-02-12 14:41:27 -0500859 phba->fcf.fcf_flag &= ~(FCF_AVAILABLE | FCF_SCAN_DONE);
James Smart72100cc2010-02-12 14:43:01 -0500860 spin_unlock_irq(&phba->hbalock);
James Smart92d7f7b2007-06-17 19:56:38 -0500861 if (phba->link_state > LPFC_LINK_DOWN) {
James Smart2e0fef82007-06-17 19:56:36 -0500862 phba->link_state = LPFC_LINK_DOWN;
James Smart72100cc2010-02-12 14:43:01 -0500863 spin_lock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -0500864 phba->pport->fc_flag &= ~FC_LBIT;
James Smart72100cc2010-02-12 14:43:01 -0500865 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -0500866 }
James Smart549e55c2007-08-02 11:09:51 -0400867 vports = lpfc_create_vport_work_array(phba);
868 if (vports != NULL)
James Smart6fb120a2009-05-22 14:52:59 -0400869 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
James Smart549e55c2007-08-02 11:09:51 -0400870 /* Issue a LINK DOWN event to all nodes */
871 lpfc_linkdown_port(vports[i]);
872 }
James Smart09372822008-01-11 01:52:54 -0500873 lpfc_destroy_vport_work_array(phba, vports);
dea31012005-04-17 16:05:31 -0500874 /* Clean up any firmware default rpi's */
James Smart2e0fef82007-06-17 19:56:36 -0500875 mb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
876 if (mb) {
James Smart92d7f7b2007-06-17 19:56:38 -0500877 lpfc_unreg_did(phba, 0xffff, 0xffffffff, mb);
James Smarted957682007-06-17 19:56:37 -0500878 mb->vport = vport;
James Smart2e0fef82007-06-17 19:56:36 -0500879 mb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
James Smart0b727fe2007-10-27 13:37:25 -0400880 if (lpfc_sli_issue_mbox(phba, mb, MBX_NOWAIT)
dea31012005-04-17 16:05:31 -0500881 == MBX_NOT_FINISHED) {
James Smart2e0fef82007-06-17 19:56:36 -0500882 mempool_free(mb, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -0500883 }
884 }
885
dea31012005-04-17 16:05:31 -0500886 /* Setup myDID for link up if we are in pt2pt mode */
James Smart92d7f7b2007-06-17 19:56:38 -0500887 if (phba->pport->fc_flag & FC_PT2PT) {
888 phba->pport->fc_myDID = 0;
James Smart2e0fef82007-06-17 19:56:36 -0500889 mb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
890 if (mb) {
dea31012005-04-17 16:05:31 -0500891 lpfc_config_link(phba, mb);
James Smart92d7f7b2007-06-17 19:56:38 -0500892 mb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
James Smarted957682007-06-17 19:56:37 -0500893 mb->vport = vport;
James Smart0b727fe2007-10-27 13:37:25 -0400894 if (lpfc_sli_issue_mbox(phba, mb, MBX_NOWAIT)
dea31012005-04-17 16:05:31 -0500895 == MBX_NOT_FINISHED) {
James Smart2e0fef82007-06-17 19:56:36 -0500896 mempool_free(mb, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -0500897 }
898 }
James Smart2e0fef82007-06-17 19:56:36 -0500899 spin_lock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -0500900 phba->pport->fc_flag &= ~(FC_PT2PT | FC_PT2PT_PLOGI);
James Smart2e0fef82007-06-17 19:56:36 -0500901 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500902 }
James Smart2e0fef82007-06-17 19:56:36 -0500903
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -0500904 return 0;
dea31012005-04-17 16:05:31 -0500905}
906
James Smart92d7f7b2007-06-17 19:56:38 -0500907static void
908lpfc_linkup_cleanup_nodes(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -0500909{
James Smart92d7f7b2007-06-17 19:56:38 -0500910 struct lpfc_nodelist *ndlp;
911
912 list_for_each_entry(ndlp, &vport->fc_nodes, nlp_listp) {
James Smarte47c9092008-02-08 18:49:26 -0500913 if (!NLP_CHK_NODE_ACT(ndlp))
914 continue;
James Smart92d7f7b2007-06-17 19:56:38 -0500915 if (ndlp->nlp_state == NLP_STE_UNUSED_NODE)
916 continue;
James Smart92d7f7b2007-06-17 19:56:38 -0500917 if (ndlp->nlp_type & NLP_FABRIC) {
James Smarte47c9092008-02-08 18:49:26 -0500918 /* On Linkup its safe to clean up the ndlp
919 * from Fabric connections.
920 */
James Smart92d7f7b2007-06-17 19:56:38 -0500921 if (ndlp->nlp_DID != Fabric_DID)
922 lpfc_unreg_rpi(vport, ndlp);
923 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
924 } else if (!(ndlp->nlp_flag & NLP_NPR_ADISC)) {
James Smarte47c9092008-02-08 18:49:26 -0500925 /* Fail outstanding IO now since device is
926 * marked for PLOGI.
927 */
James Smart92d7f7b2007-06-17 19:56:38 -0500928 lpfc_unreg_rpi(vport, ndlp);
929 }
930 }
931}
932
933static void
934lpfc_linkup_port(struct lpfc_vport *vport)
935{
936 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart92d7f7b2007-06-17 19:56:38 -0500937 struct lpfc_hba *phba = vport->phba;
938
939 if ((vport->load_flag & FC_UNLOADING) != 0)
940 return;
941
James Smart858c9f62007-06-17 19:56:39 -0500942 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
943 "Link Up: top:x%x speed:x%x flg:x%x",
944 phba->fc_topology, phba->fc_linkspeed, phba->link_flag);
945
James Smart92d7f7b2007-06-17 19:56:38 -0500946 /* If NPIV is not enabled, only bring the physical port up */
947 if (!(phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
948 (vport != phba->pport))
949 return;
dea31012005-04-17 16:05:31 -0500950
James Smart2e0fef82007-06-17 19:56:36 -0500951 fc_host_post_event(shost, fc_get_event_number(), FCH_EVT_LINKUP, 0);
James Smartd2873e42006-08-18 17:46:43 -0400952
James Smart2e0fef82007-06-17 19:56:36 -0500953 spin_lock_irq(shost->host_lock);
James Smart2e0fef82007-06-17 19:56:36 -0500954 vport->fc_flag &= ~(FC_PT2PT | FC_PT2PT_PLOGI | FC_ABORT_DISCOVERY |
955 FC_RSCN_MODE | FC_NLP_MORE | FC_RSCN_DISCOVERY);
956 vport->fc_flag |= FC_NDISC_ACTIVE;
957 vport->fc_ns_retry = 0;
958 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500959
James Smart92d7f7b2007-06-17 19:56:38 -0500960 if (vport->fc_flag & FC_LBIT)
961 lpfc_linkup_cleanup_nodes(vport);
dea31012005-04-17 16:05:31 -0500962
James Smart92d7f7b2007-06-17 19:56:38 -0500963}
964
965static int
966lpfc_linkup(struct lpfc_hba *phba)
967{
James Smart549e55c2007-08-02 11:09:51 -0400968 struct lpfc_vport **vports;
969 int i;
James Smart92d7f7b2007-06-17 19:56:38 -0500970
James Smart19ca7602010-11-20 23:11:55 -0500971 lpfc_cleanup_wt_rrqs(phba);
James Smart92d7f7b2007-06-17 19:56:38 -0500972 phba->link_state = LPFC_LINK_UP;
973
974 /* Unblock fabric iocbs if they are blocked */
975 clear_bit(FABRIC_COMANDS_BLOCKED, &phba->bit_flags);
976 del_timer_sync(&phba->fabric_block_timer);
977
James Smart549e55c2007-08-02 11:09:51 -0400978 vports = lpfc_create_vport_work_array(phba);
979 if (vports != NULL)
James Smart6fb120a2009-05-22 14:52:59 -0400980 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++)
James Smart549e55c2007-08-02 11:09:51 -0400981 lpfc_linkup_port(vports[i]);
James Smart09372822008-01-11 01:52:54 -0500982 lpfc_destroy_vport_work_array(phba, vports);
James Smart6fb120a2009-05-22 14:52:59 -0400983 if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
984 (phba->sli_rev < LPFC_SLI_REV4))
James Smart92d7f7b2007-06-17 19:56:38 -0500985 lpfc_issue_clear_la(phba, phba->pport);
dea31012005-04-17 16:05:31 -0500986
987 return 0;
988}
989
990/*
991 * This routine handles processing a CLEAR_LA mailbox
992 * command upon completion. It is setup in the LPFC_MBOXQ
993 * as the completion routine when the command is
994 * handed off to the SLI layer.
995 */
Adrian Bunka6ababd2007-11-05 18:07:33 +0100996static void
James Smart2e0fef82007-06-17 19:56:36 -0500997lpfc_mbx_cmpl_clear_la(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
dea31012005-04-17 16:05:31 -0500998{
James Smart2e0fef82007-06-17 19:56:36 -0500999 struct lpfc_vport *vport = pmb->vport;
1000 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1001 struct lpfc_sli *psli = &phba->sli;
James Smart04c68492009-05-22 14:52:52 -04001002 MAILBOX_t *mb = &pmb->u.mb;
dea31012005-04-17 16:05:31 -05001003 uint32_t control;
1004
dea31012005-04-17 16:05:31 -05001005 /* Since we don't do discovery right now, turn these off here */
James Smarta4bc3372006-12-02 13:34:16 -05001006 psli->ring[psli->extra_ring].flag &= ~LPFC_STOP_IOCB_EVENT;
dea31012005-04-17 16:05:31 -05001007 psli->ring[psli->fcp_ring].flag &= ~LPFC_STOP_IOCB_EVENT;
1008 psli->ring[psli->next_ring].flag &= ~LPFC_STOP_IOCB_EVENT;
1009
1010 /* Check for error */
1011 if ((mb->mbxStatus) && (mb->mbxStatus != 0x1601)) {
James Smart92d7f7b2007-06-17 19:56:38 -05001012 /* CLEAR_LA mbox error <mbxStatus> state <hba_state> */
James Smarte8b62012007-08-02 11:10:09 -04001013 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
1014 "0320 CLEAR_LA mbxStatus error x%x hba "
1015 "state x%x\n",
1016 mb->mbxStatus, vport->port_state);
James Smart2e0fef82007-06-17 19:56:36 -05001017 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -05001018 goto out;
1019 }
1020
James Smart92d7f7b2007-06-17 19:56:38 -05001021 if (vport->port_type == LPFC_PHYSICAL_PORT)
1022 phba->link_state = LPFC_HBA_READY;
1023
1024 spin_lock_irq(&phba->hbalock);
1025 psli->sli_flag |= LPFC_PROCESS_LA;
1026 control = readl(phba->HCregaddr);
1027 control |= HC_LAINT_ENA;
1028 writel(control, phba->HCregaddr);
1029 readl(phba->HCregaddr); /* flush */
1030 spin_unlock_irq(&phba->hbalock);
James Smart1b32f6a2008-02-08 18:49:39 -05001031 mempool_free(pmb, phba->mbox_mem_pool);
James Smart92d7f7b2007-06-17 19:56:38 -05001032 return;
dea31012005-04-17 16:05:31 -05001033
dea31012005-04-17 16:05:31 -05001034out:
1035 /* Device Discovery completes */
James Smarte8b62012007-08-02 11:10:09 -04001036 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
1037 "0225 Device Discovery completes\n");
James Smart2e0fef82007-06-17 19:56:36 -05001038 mempool_free(pmb, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -05001039
James Smart2e0fef82007-06-17 19:56:36 -05001040 spin_lock_irq(shost->host_lock);
James Smart58da1ff2008-04-07 10:15:56 -04001041 vport->fc_flag &= ~FC_ABORT_DISCOVERY;
James Smart2e0fef82007-06-17 19:56:36 -05001042 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001043
James Smart2e0fef82007-06-17 19:56:36 -05001044 lpfc_can_disctmo(vport);
dea31012005-04-17 16:05:31 -05001045
1046 /* turn on Link Attention interrupts */
James Smart2e0fef82007-06-17 19:56:36 -05001047
1048 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05001049 psli->sli_flag |= LPFC_PROCESS_LA;
1050 control = readl(phba->HCregaddr);
1051 control |= HC_LAINT_ENA;
1052 writel(control, phba->HCregaddr);
1053 readl(phba->HCregaddr); /* flush */
James Smart2e0fef82007-06-17 19:56:36 -05001054 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05001055
1056 return;
1057}
1058
James Smart2e0fef82007-06-17 19:56:36 -05001059
dea31012005-04-17 16:05:31 -05001060static void
Jamie Wellnitz25594c62006-02-28 19:25:34 -05001061lpfc_mbx_cmpl_local_config_link(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
dea31012005-04-17 16:05:31 -05001062{
James Smart2e0fef82007-06-17 19:56:36 -05001063 struct lpfc_vport *vport = pmb->vport;
dea31012005-04-17 16:05:31 -05001064
James Smart04c68492009-05-22 14:52:52 -04001065 if (pmb->u.mb.mbxStatus)
dea31012005-04-17 16:05:31 -05001066 goto out;
dea31012005-04-17 16:05:31 -05001067
Jamie Wellnitz25594c62006-02-28 19:25:34 -05001068 mempool_free(pmb, phba->mbox_mem_pool);
1069
James Smart76a95d72010-11-20 23:11:48 -05001070 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP &&
James Smart2e0fef82007-06-17 19:56:36 -05001071 vport->fc_flag & FC_PUBLIC_LOOP &&
1072 !(vport->fc_flag & FC_LBIT)) {
Jamie Wellnitz25594c62006-02-28 19:25:34 -05001073 /* Need to wait for FAN - use discovery timer
James Smart2e0fef82007-06-17 19:56:36 -05001074 * for timeout. port_state is identically
Jamie Wellnitz25594c62006-02-28 19:25:34 -05001075 * LPFC_LOCAL_CFG_LINK while waiting for FAN
1076 */
James Smart2e0fef82007-06-17 19:56:36 -05001077 lpfc_set_disctmo(vport);
Jamie Wellnitz25594c62006-02-28 19:25:34 -05001078 return;
James Smart92d7f7b2007-06-17 19:56:38 -05001079 }
dea31012005-04-17 16:05:31 -05001080
James Smart2e0fef82007-06-17 19:56:36 -05001081 /* Start discovery by sending a FLOGI. port_state is identically
Jamie Wellnitz25594c62006-02-28 19:25:34 -05001082 * LPFC_FLOGI while waiting for FLOGI cmpl
1083 */
James Smart76a95d72010-11-20 23:11:48 -05001084 if (vport->port_state != LPFC_FLOGI)
James Smart92d7f7b2007-06-17 19:56:38 -05001085 lpfc_initial_flogi(vport);
Jamie Wellnitz25594c62006-02-28 19:25:34 -05001086 return;
dea31012005-04-17 16:05:31 -05001087
1088out:
James Smarte8b62012007-08-02 11:10:09 -04001089 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
1090 "0306 CONFIG_LINK mbxStatus error x%x "
1091 "HBA state x%x\n",
James Smart04c68492009-05-22 14:52:52 -04001092 pmb->u.mb.mbxStatus, vport->port_state);
James Smart92d7f7b2007-06-17 19:56:38 -05001093 mempool_free(pmb, phba->mbox_mem_pool);
Jamie Wellnitz25594c62006-02-28 19:25:34 -05001094
1095 lpfc_linkdown(phba);
1096
James Smarte8b62012007-08-02 11:10:09 -04001097 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
1098 "0200 CONFIG_LINK bad hba state x%x\n",
1099 vport->port_state);
dea31012005-04-17 16:05:31 -05001100
James Smart92d7f7b2007-06-17 19:56:38 -05001101 lpfc_issue_clear_la(phba, vport);
dea31012005-04-17 16:05:31 -05001102 return;
1103}
1104
1105static void
James Smart6fb120a2009-05-22 14:52:59 -04001106lpfc_mbx_cmpl_reg_fcfi(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
1107{
1108 struct lpfc_vport *vport = mboxq->vport;
James Smart6fb120a2009-05-22 14:52:59 -04001109
1110 if (mboxq->u.mb.mbxStatus) {
1111 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
1112 "2017 REG_FCFI mbxStatus error x%x "
1113 "HBA state x%x\n",
1114 mboxq->u.mb.mbxStatus, vport->port_state);
James Smarta93ff372010-10-22 11:06:08 -04001115 goto fail_out;
James Smart6fb120a2009-05-22 14:52:59 -04001116 }
1117
1118 /* Start FCoE discovery by sending a FLOGI. */
1119 phba->fcf.fcfi = bf_get(lpfc_reg_fcfi_fcfi, &mboxq->u.mqe.un.reg_fcfi);
1120 /* Set the FCFI registered flag */
James Smartd439d282010-09-29 11:18:45 -04001121 spin_lock_irq(&phba->hbalock);
James Smart6fb120a2009-05-22 14:52:59 -04001122 phba->fcf.fcf_flag |= FCF_REGISTERED;
James Smartd439d282010-09-29 11:18:45 -04001123 spin_unlock_irq(&phba->hbalock);
James Smarta93ff372010-10-22 11:06:08 -04001124
James Smart32b97932009-07-19 10:01:21 -04001125 /* If there is a pending FCoE event, restart FCF table scan. */
James Smarta93ff372010-10-22 11:06:08 -04001126 if (lpfc_check_pending_fcoe_event(phba, LPFC_UNREG_FCF))
1127 goto fail_out;
1128
1129 /* Mark successful completion of FCF table scan */
James Smartd439d282010-09-29 11:18:45 -04001130 spin_lock_irq(&phba->hbalock);
James Smartecfd03c2010-02-12 14:41:27 -05001131 phba->fcf.fcf_flag |= (FCF_SCAN_DONE | FCF_IN_USE);
James Smarta93ff372010-10-22 11:06:08 -04001132 phba->hba_flag &= ~FCF_TS_INPROG;
1133 if (vport->port_state != LPFC_FLOGI) {
1134 phba->hba_flag |= FCF_RR_INPROG;
1135 spin_unlock_irq(&phba->hbalock);
James Smart76a95d72010-11-20 23:11:48 -05001136 lpfc_issue_init_vfi(vport);
James Smarta93ff372010-10-22 11:06:08 -04001137 goto out;
1138 }
1139 spin_unlock_irq(&phba->hbalock);
1140 goto out;
James Smart6fb120a2009-05-22 14:52:59 -04001141
James Smarta93ff372010-10-22 11:06:08 -04001142fail_out:
1143 spin_lock_irq(&phba->hbalock);
1144 phba->hba_flag &= ~FCF_RR_INPROG;
1145 spin_unlock_irq(&phba->hbalock);
1146out:
James Smart6fb120a2009-05-22 14:52:59 -04001147 mempool_free(mboxq, phba->mbox_mem_pool);
James Smart6fb120a2009-05-22 14:52:59 -04001148}
1149
1150/**
1151 * lpfc_fab_name_match - Check if the fcf fabric name match.
1152 * @fab_name: pointer to fabric name.
1153 * @new_fcf_record: pointer to fcf record.
1154 *
1155 * This routine compare the fcf record's fabric name with provided
1156 * fabric name. If the fabric name are identical this function
1157 * returns 1 else return 0.
1158 **/
1159static uint32_t
1160lpfc_fab_name_match(uint8_t *fab_name, struct fcf_record *new_fcf_record)
1161{
James Smartecfd03c2010-02-12 14:41:27 -05001162 if (fab_name[0] != bf_get(lpfc_fcf_record_fab_name_0, new_fcf_record))
James Smart6fb120a2009-05-22 14:52:59 -04001163 return 0;
James Smartecfd03c2010-02-12 14:41:27 -05001164 if (fab_name[1] != bf_get(lpfc_fcf_record_fab_name_1, new_fcf_record))
1165 return 0;
1166 if (fab_name[2] != bf_get(lpfc_fcf_record_fab_name_2, new_fcf_record))
1167 return 0;
1168 if (fab_name[3] != bf_get(lpfc_fcf_record_fab_name_3, new_fcf_record))
1169 return 0;
1170 if (fab_name[4] != bf_get(lpfc_fcf_record_fab_name_4, new_fcf_record))
1171 return 0;
1172 if (fab_name[5] != bf_get(lpfc_fcf_record_fab_name_5, new_fcf_record))
1173 return 0;
1174 if (fab_name[6] != bf_get(lpfc_fcf_record_fab_name_6, new_fcf_record))
1175 return 0;
1176 if (fab_name[7] != bf_get(lpfc_fcf_record_fab_name_7, new_fcf_record))
1177 return 0;
1178 return 1;
James Smart6fb120a2009-05-22 14:52:59 -04001179}
1180
1181/**
James Smart8fa38512009-07-19 10:01:03 -04001182 * lpfc_sw_name_match - Check if the fcf switch name match.
1183 * @fab_name: pointer to fabric name.
1184 * @new_fcf_record: pointer to fcf record.
1185 *
1186 * This routine compare the fcf record's switch name with provided
1187 * switch name. If the switch name are identical this function
1188 * returns 1 else return 0.
1189 **/
1190static uint32_t
1191lpfc_sw_name_match(uint8_t *sw_name, struct fcf_record *new_fcf_record)
1192{
James Smartecfd03c2010-02-12 14:41:27 -05001193 if (sw_name[0] != bf_get(lpfc_fcf_record_switch_name_0, new_fcf_record))
James Smart8fa38512009-07-19 10:01:03 -04001194 return 0;
James Smartecfd03c2010-02-12 14:41:27 -05001195 if (sw_name[1] != bf_get(lpfc_fcf_record_switch_name_1, new_fcf_record))
1196 return 0;
1197 if (sw_name[2] != bf_get(lpfc_fcf_record_switch_name_2, new_fcf_record))
1198 return 0;
1199 if (sw_name[3] != bf_get(lpfc_fcf_record_switch_name_3, new_fcf_record))
1200 return 0;
1201 if (sw_name[4] != bf_get(lpfc_fcf_record_switch_name_4, new_fcf_record))
1202 return 0;
1203 if (sw_name[5] != bf_get(lpfc_fcf_record_switch_name_5, new_fcf_record))
1204 return 0;
1205 if (sw_name[6] != bf_get(lpfc_fcf_record_switch_name_6, new_fcf_record))
1206 return 0;
1207 if (sw_name[7] != bf_get(lpfc_fcf_record_switch_name_7, new_fcf_record))
1208 return 0;
1209 return 1;
James Smart8fa38512009-07-19 10:01:03 -04001210}
1211
1212/**
James Smart6fb120a2009-05-22 14:52:59 -04001213 * lpfc_mac_addr_match - Check if the fcf mac address match.
James Smartecfd03c2010-02-12 14:41:27 -05001214 * @mac_addr: pointer to mac address.
James Smart6fb120a2009-05-22 14:52:59 -04001215 * @new_fcf_record: pointer to fcf record.
1216 *
1217 * This routine compare the fcf record's mac address with HBA's
1218 * FCF mac address. If the mac addresses are identical this function
1219 * returns 1 else return 0.
1220 **/
1221static uint32_t
James Smartecfd03c2010-02-12 14:41:27 -05001222lpfc_mac_addr_match(uint8_t *mac_addr, struct fcf_record *new_fcf_record)
James Smart6fb120a2009-05-22 14:52:59 -04001223{
James Smartecfd03c2010-02-12 14:41:27 -05001224 if (mac_addr[0] != bf_get(lpfc_fcf_record_mac_0, new_fcf_record))
James Smart6fb120a2009-05-22 14:52:59 -04001225 return 0;
James Smartecfd03c2010-02-12 14:41:27 -05001226 if (mac_addr[1] != bf_get(lpfc_fcf_record_mac_1, new_fcf_record))
1227 return 0;
1228 if (mac_addr[2] != bf_get(lpfc_fcf_record_mac_2, new_fcf_record))
1229 return 0;
1230 if (mac_addr[3] != bf_get(lpfc_fcf_record_mac_3, new_fcf_record))
1231 return 0;
1232 if (mac_addr[4] != bf_get(lpfc_fcf_record_mac_4, new_fcf_record))
1233 return 0;
1234 if (mac_addr[5] != bf_get(lpfc_fcf_record_mac_5, new_fcf_record))
1235 return 0;
1236 return 1;
1237}
1238
1239static bool
1240lpfc_vlan_id_match(uint16_t curr_vlan_id, uint16_t new_vlan_id)
1241{
1242 return (curr_vlan_id == new_vlan_id);
James Smart6fb120a2009-05-22 14:52:59 -04001243}
1244
1245/**
1246 * lpfc_copy_fcf_record - Copy fcf information to lpfc_hba.
James Smartecfd03c2010-02-12 14:41:27 -05001247 * @fcf: pointer to driver fcf record.
James Smart6fb120a2009-05-22 14:52:59 -04001248 * @new_fcf_record: pointer to fcf record.
1249 *
1250 * This routine copies the FCF information from the FCF
1251 * record to lpfc_hba data structure.
1252 **/
1253static void
James Smartecfd03c2010-02-12 14:41:27 -05001254lpfc_copy_fcf_record(struct lpfc_fcf_rec *fcf_rec,
1255 struct fcf_record *new_fcf_record)
James Smart6fb120a2009-05-22 14:52:59 -04001256{
James Smartecfd03c2010-02-12 14:41:27 -05001257 /* Fabric name */
1258 fcf_rec->fabric_name[0] =
James Smart6fb120a2009-05-22 14:52:59 -04001259 bf_get(lpfc_fcf_record_fab_name_0, new_fcf_record);
James Smartecfd03c2010-02-12 14:41:27 -05001260 fcf_rec->fabric_name[1] =
James Smart6fb120a2009-05-22 14:52:59 -04001261 bf_get(lpfc_fcf_record_fab_name_1, new_fcf_record);
James Smartecfd03c2010-02-12 14:41:27 -05001262 fcf_rec->fabric_name[2] =
James Smart6fb120a2009-05-22 14:52:59 -04001263 bf_get(lpfc_fcf_record_fab_name_2, new_fcf_record);
James Smartecfd03c2010-02-12 14:41:27 -05001264 fcf_rec->fabric_name[3] =
James Smart6fb120a2009-05-22 14:52:59 -04001265 bf_get(lpfc_fcf_record_fab_name_3, new_fcf_record);
James Smartecfd03c2010-02-12 14:41:27 -05001266 fcf_rec->fabric_name[4] =
James Smart6fb120a2009-05-22 14:52:59 -04001267 bf_get(lpfc_fcf_record_fab_name_4, new_fcf_record);
James Smartecfd03c2010-02-12 14:41:27 -05001268 fcf_rec->fabric_name[5] =
James Smart6fb120a2009-05-22 14:52:59 -04001269 bf_get(lpfc_fcf_record_fab_name_5, new_fcf_record);
James Smartecfd03c2010-02-12 14:41:27 -05001270 fcf_rec->fabric_name[6] =
James Smart6fb120a2009-05-22 14:52:59 -04001271 bf_get(lpfc_fcf_record_fab_name_6, new_fcf_record);
James Smartecfd03c2010-02-12 14:41:27 -05001272 fcf_rec->fabric_name[7] =
James Smart6fb120a2009-05-22 14:52:59 -04001273 bf_get(lpfc_fcf_record_fab_name_7, new_fcf_record);
James Smartecfd03c2010-02-12 14:41:27 -05001274 /* Mac address */
1275 fcf_rec->mac_addr[0] = bf_get(lpfc_fcf_record_mac_0, new_fcf_record);
1276 fcf_rec->mac_addr[1] = bf_get(lpfc_fcf_record_mac_1, new_fcf_record);
1277 fcf_rec->mac_addr[2] = bf_get(lpfc_fcf_record_mac_2, new_fcf_record);
1278 fcf_rec->mac_addr[3] = bf_get(lpfc_fcf_record_mac_3, new_fcf_record);
1279 fcf_rec->mac_addr[4] = bf_get(lpfc_fcf_record_mac_4, new_fcf_record);
1280 fcf_rec->mac_addr[5] = bf_get(lpfc_fcf_record_mac_5, new_fcf_record);
1281 /* FCF record index */
1282 fcf_rec->fcf_indx = bf_get(lpfc_fcf_record_fcf_index, new_fcf_record);
1283 /* FCF record priority */
1284 fcf_rec->priority = new_fcf_record->fip_priority;
1285 /* Switch name */
1286 fcf_rec->switch_name[0] =
James Smart8fa38512009-07-19 10:01:03 -04001287 bf_get(lpfc_fcf_record_switch_name_0, new_fcf_record);
James Smartecfd03c2010-02-12 14:41:27 -05001288 fcf_rec->switch_name[1] =
James Smart8fa38512009-07-19 10:01:03 -04001289 bf_get(lpfc_fcf_record_switch_name_1, new_fcf_record);
James Smartecfd03c2010-02-12 14:41:27 -05001290 fcf_rec->switch_name[2] =
James Smart8fa38512009-07-19 10:01:03 -04001291 bf_get(lpfc_fcf_record_switch_name_2, new_fcf_record);
James Smartecfd03c2010-02-12 14:41:27 -05001292 fcf_rec->switch_name[3] =
James Smart8fa38512009-07-19 10:01:03 -04001293 bf_get(lpfc_fcf_record_switch_name_3, new_fcf_record);
James Smartecfd03c2010-02-12 14:41:27 -05001294 fcf_rec->switch_name[4] =
James Smart8fa38512009-07-19 10:01:03 -04001295 bf_get(lpfc_fcf_record_switch_name_4, new_fcf_record);
James Smartecfd03c2010-02-12 14:41:27 -05001296 fcf_rec->switch_name[5] =
James Smart8fa38512009-07-19 10:01:03 -04001297 bf_get(lpfc_fcf_record_switch_name_5, new_fcf_record);
James Smartecfd03c2010-02-12 14:41:27 -05001298 fcf_rec->switch_name[6] =
James Smart8fa38512009-07-19 10:01:03 -04001299 bf_get(lpfc_fcf_record_switch_name_6, new_fcf_record);
James Smartecfd03c2010-02-12 14:41:27 -05001300 fcf_rec->switch_name[7] =
James Smart8fa38512009-07-19 10:01:03 -04001301 bf_get(lpfc_fcf_record_switch_name_7, new_fcf_record);
James Smart6fb120a2009-05-22 14:52:59 -04001302}
1303
1304/**
James Smartecfd03c2010-02-12 14:41:27 -05001305 * lpfc_update_fcf_record - Update driver fcf record
1306 * @phba: pointer to lpfc hba data structure.
1307 * @fcf_rec: pointer to driver fcf record.
1308 * @new_fcf_record: pointer to hba fcf record.
1309 * @addr_mode: address mode to be set to the driver fcf record.
1310 * @vlan_id: vlan tag to be set to the driver fcf record.
1311 * @flag: flag bits to be set to the driver fcf record.
1312 *
1313 * This routine updates the driver FCF record from the new HBA FCF record
1314 * together with the address mode, vlan_id, and other informations. This
1315 * routine is called with the host lock held.
1316 **/
1317static void
1318__lpfc_update_fcf_record(struct lpfc_hba *phba, struct lpfc_fcf_rec *fcf_rec,
1319 struct fcf_record *new_fcf_record, uint32_t addr_mode,
1320 uint16_t vlan_id, uint32_t flag)
1321{
1322 /* Copy the fields from the HBA's FCF record */
1323 lpfc_copy_fcf_record(fcf_rec, new_fcf_record);
1324 /* Update other fields of driver FCF record */
1325 fcf_rec->addr_mode = addr_mode;
1326 fcf_rec->vlan_id = vlan_id;
1327 fcf_rec->flag |= (flag | RECORD_VALID);
1328}
1329
1330/**
James Smart6fb120a2009-05-22 14:52:59 -04001331 * lpfc_register_fcf - Register the FCF with hba.
1332 * @phba: pointer to lpfc hba data structure.
1333 *
1334 * This routine issues a register fcfi mailbox command to register
1335 * the fcf with HBA.
1336 **/
1337static void
1338lpfc_register_fcf(struct lpfc_hba *phba)
1339{
1340 LPFC_MBOXQ_t *fcf_mbxq;
1341 int rc;
James Smart6fb120a2009-05-22 14:52:59 -04001342
James Smartd439d282010-09-29 11:18:45 -04001343 spin_lock_irq(&phba->hbalock);
James Smart6fb120a2009-05-22 14:52:59 -04001344 /* If the FCF is not availabe do nothing. */
1345 if (!(phba->fcf.fcf_flag & FCF_AVAILABLE)) {
James Smarta93ff372010-10-22 11:06:08 -04001346 phba->hba_flag &= ~(FCF_TS_INPROG | FCF_RR_INPROG);
James Smartd439d282010-09-29 11:18:45 -04001347 spin_unlock_irq(&phba->hbalock);
James Smart6fb120a2009-05-22 14:52:59 -04001348 return;
1349 }
1350
1351 /* The FCF is already registered, start discovery */
1352 if (phba->fcf.fcf_flag & FCF_REGISTERED) {
James Smartecfd03c2010-02-12 14:41:27 -05001353 phba->fcf.fcf_flag |= (FCF_SCAN_DONE | FCF_IN_USE);
James Smarta93ff372010-10-22 11:06:08 -04001354 phba->hba_flag &= ~FCF_TS_INPROG;
1355 if (phba->pport->port_state != LPFC_FLOGI) {
1356 phba->hba_flag |= FCF_RR_INPROG;
1357 spin_unlock_irq(&phba->hbalock);
James Smart76a95d72010-11-20 23:11:48 -05001358 lpfc_issue_init_vfi(phba->pport);
James Smarta93ff372010-10-22 11:06:08 -04001359 return;
1360 }
1361 spin_unlock_irq(&phba->hbalock);
James Smart6fb120a2009-05-22 14:52:59 -04001362 return;
1363 }
James Smartd439d282010-09-29 11:18:45 -04001364 spin_unlock_irq(&phba->hbalock);
James Smart6fb120a2009-05-22 14:52:59 -04001365
James Smarta93ff372010-10-22 11:06:08 -04001366 fcf_mbxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
James Smart4d9ab992009-10-02 15:16:39 -04001367 if (!fcf_mbxq) {
James Smartd439d282010-09-29 11:18:45 -04001368 spin_lock_irq(&phba->hbalock);
James Smarta93ff372010-10-22 11:06:08 -04001369 phba->hba_flag &= ~(FCF_TS_INPROG | FCF_RR_INPROG);
James Smartd439d282010-09-29 11:18:45 -04001370 spin_unlock_irq(&phba->hbalock);
James Smart6fb120a2009-05-22 14:52:59 -04001371 return;
James Smart4d9ab992009-10-02 15:16:39 -04001372 }
James Smart6fb120a2009-05-22 14:52:59 -04001373
1374 lpfc_reg_fcfi(phba, fcf_mbxq);
1375 fcf_mbxq->vport = phba->pport;
1376 fcf_mbxq->mbox_cmpl = lpfc_mbx_cmpl_reg_fcfi;
1377 rc = lpfc_sli_issue_mbox(phba, fcf_mbxq, MBX_NOWAIT);
James Smart4d9ab992009-10-02 15:16:39 -04001378 if (rc == MBX_NOT_FINISHED) {
James Smartd439d282010-09-29 11:18:45 -04001379 spin_lock_irq(&phba->hbalock);
James Smarta93ff372010-10-22 11:06:08 -04001380 phba->hba_flag &= ~(FCF_TS_INPROG | FCF_RR_INPROG);
James Smartd439d282010-09-29 11:18:45 -04001381 spin_unlock_irq(&phba->hbalock);
James Smart6fb120a2009-05-22 14:52:59 -04001382 mempool_free(fcf_mbxq, phba->mbox_mem_pool);
James Smart4d9ab992009-10-02 15:16:39 -04001383 }
James Smart6fb120a2009-05-22 14:52:59 -04001384
1385 return;
1386}
1387
1388/**
1389 * lpfc_match_fcf_conn_list - Check if the FCF record can be used for discovery.
1390 * @phba: pointer to lpfc hba data structure.
1391 * @new_fcf_record: pointer to fcf record.
1392 * @boot_flag: Indicates if this record used by boot bios.
1393 * @addr_mode: The address mode to be used by this FCF
James Smartecfd03c2010-02-12 14:41:27 -05001394 * @vlan_id: The vlan id to be used as vlan tagging by this FCF.
James Smart6fb120a2009-05-22 14:52:59 -04001395 *
1396 * This routine compare the fcf record with connect list obtained from the
1397 * config region to decide if this FCF can be used for SAN discovery. It returns
1398 * 1 if this record can be used for SAN discovery else return zero. If this FCF
1399 * record can be used for SAN discovery, the boot_flag will indicate if this FCF
1400 * is used by boot bios and addr_mode will indicate the addressing mode to be
1401 * used for this FCF when the function returns.
1402 * If the FCF record need to be used with a particular vlan id, the vlan is
1403 * set in the vlan_id on return of the function. If not VLAN tagging need to
James Smartdbb6b3a2010-06-08 18:31:37 -04001404 * be used with the FCF vlan_id will be set to LPFC_FCOE_NULL_VID;
James Smart6fb120a2009-05-22 14:52:59 -04001405 **/
1406static int
1407lpfc_match_fcf_conn_list(struct lpfc_hba *phba,
1408 struct fcf_record *new_fcf_record,
1409 uint32_t *boot_flag, uint32_t *addr_mode,
1410 uint16_t *vlan_id)
1411{
1412 struct lpfc_fcf_conn_entry *conn_entry;
James Smart4d9ab992009-10-02 15:16:39 -04001413 int i, j, fcf_vlan_id = 0;
1414
1415 /* Find the lowest VLAN id in the FCF record */
1416 for (i = 0; i < 512; i++) {
1417 if (new_fcf_record->vlan_bitmap[i]) {
1418 fcf_vlan_id = i * 8;
1419 j = 0;
1420 while (!((new_fcf_record->vlan_bitmap[i] >> j) & 1)) {
1421 j++;
1422 fcf_vlan_id++;
1423 }
1424 break;
1425 }
1426 }
James Smart6fb120a2009-05-22 14:52:59 -04001427
James Smart0c287582009-06-10 17:22:56 -04001428 /* If FCF not available return 0 */
1429 if (!bf_get(lpfc_fcf_record_fcf_avail, new_fcf_record) ||
1430 !bf_get(lpfc_fcf_record_fcf_valid, new_fcf_record))
1431 return 0;
1432
James Smart45ed1192009-10-02 15:17:02 -04001433 if (!(phba->hba_flag & HBA_FIP_SUPPORT)) {
James Smart6fb120a2009-05-22 14:52:59 -04001434 *boot_flag = 0;
1435 *addr_mode = bf_get(lpfc_fcf_record_mac_addr_prov,
1436 new_fcf_record);
1437 if (phba->valid_vlan)
1438 *vlan_id = phba->vlan_id;
1439 else
James Smartdbb6b3a2010-06-08 18:31:37 -04001440 *vlan_id = LPFC_FCOE_NULL_VID;
James Smart6fb120a2009-05-22 14:52:59 -04001441 return 1;
1442 }
1443
1444 /*
1445 * If there are no FCF connection table entry, driver connect to all
1446 * FCFs.
1447 */
1448 if (list_empty(&phba->fcf_conn_rec_list)) {
1449 *boot_flag = 0;
1450 *addr_mode = bf_get(lpfc_fcf_record_mac_addr_prov,
1451 new_fcf_record);
James Smart0c287582009-06-10 17:22:56 -04001452
1453 /*
1454 * When there are no FCF connect entries, use driver's default
1455 * addressing mode - FPMA.
1456 */
1457 if (*addr_mode & LPFC_FCF_FPMA)
1458 *addr_mode = LPFC_FCF_FPMA;
1459
James Smart4d9ab992009-10-02 15:16:39 -04001460 /* If FCF record report a vlan id use that vlan id */
1461 if (fcf_vlan_id)
1462 *vlan_id = fcf_vlan_id;
1463 else
James Smartdbb6b3a2010-06-08 18:31:37 -04001464 *vlan_id = LPFC_FCOE_NULL_VID;
James Smart6fb120a2009-05-22 14:52:59 -04001465 return 1;
1466 }
1467
James Smartecfd03c2010-02-12 14:41:27 -05001468 list_for_each_entry(conn_entry,
1469 &phba->fcf_conn_rec_list, list) {
James Smart6fb120a2009-05-22 14:52:59 -04001470 if (!(conn_entry->conn_rec.flags & FCFCNCT_VALID))
1471 continue;
1472
1473 if ((conn_entry->conn_rec.flags & FCFCNCT_FBNM_VALID) &&
1474 !lpfc_fab_name_match(conn_entry->conn_rec.fabric_name,
James Smart8fa38512009-07-19 10:01:03 -04001475 new_fcf_record))
James Smart6fb120a2009-05-22 14:52:59 -04001476 continue;
James Smart8fa38512009-07-19 10:01:03 -04001477 if ((conn_entry->conn_rec.flags & FCFCNCT_SWNM_VALID) &&
1478 !lpfc_sw_name_match(conn_entry->conn_rec.switch_name,
1479 new_fcf_record))
1480 continue;
James Smart6fb120a2009-05-22 14:52:59 -04001481 if (conn_entry->conn_rec.flags & FCFCNCT_VLAN_VALID) {
1482 /*
1483 * If the vlan bit map does not have the bit set for the
1484 * vlan id to be used, then it is not a match.
1485 */
1486 if (!(new_fcf_record->vlan_bitmap
1487 [conn_entry->conn_rec.vlan_tag / 8] &
1488 (1 << (conn_entry->conn_rec.vlan_tag % 8))))
1489 continue;
1490 }
1491
1492 /*
James Smart0c287582009-06-10 17:22:56 -04001493 * If connection record does not support any addressing mode,
1494 * skip the FCF record.
1495 */
1496 if (!(bf_get(lpfc_fcf_record_mac_addr_prov, new_fcf_record)
1497 & (LPFC_FCF_FPMA | LPFC_FCF_SPMA)))
1498 continue;
1499
1500 /*
James Smart6fb120a2009-05-22 14:52:59 -04001501 * Check if the connection record specifies a required
1502 * addressing mode.
1503 */
1504 if ((conn_entry->conn_rec.flags & FCFCNCT_AM_VALID) &&
1505 !(conn_entry->conn_rec.flags & FCFCNCT_AM_PREFERRED)) {
1506
1507 /*
1508 * If SPMA required but FCF not support this continue.
1509 */
1510 if ((conn_entry->conn_rec.flags & FCFCNCT_AM_SPMA) &&
1511 !(bf_get(lpfc_fcf_record_mac_addr_prov,
1512 new_fcf_record) & LPFC_FCF_SPMA))
1513 continue;
1514
1515 /*
1516 * If FPMA required but FCF not support this continue.
1517 */
1518 if (!(conn_entry->conn_rec.flags & FCFCNCT_AM_SPMA) &&
1519 !(bf_get(lpfc_fcf_record_mac_addr_prov,
1520 new_fcf_record) & LPFC_FCF_FPMA))
1521 continue;
1522 }
1523
1524 /*
1525 * This fcf record matches filtering criteria.
1526 */
1527 if (conn_entry->conn_rec.flags & FCFCNCT_BOOT)
1528 *boot_flag = 1;
1529 else
1530 *boot_flag = 0;
1531
James Smart0c287582009-06-10 17:22:56 -04001532 /*
1533 * If user did not specify any addressing mode, or if the
1534 * prefered addressing mode specified by user is not supported
1535 * by FCF, allow fabric to pick the addressing mode.
1536 */
James Smart6fb120a2009-05-22 14:52:59 -04001537 *addr_mode = bf_get(lpfc_fcf_record_mac_addr_prov,
1538 new_fcf_record);
1539 /*
1540 * If the user specified a required address mode, assign that
1541 * address mode
1542 */
1543 if ((conn_entry->conn_rec.flags & FCFCNCT_AM_VALID) &&
1544 (!(conn_entry->conn_rec.flags & FCFCNCT_AM_PREFERRED)))
1545 *addr_mode = (conn_entry->conn_rec.flags &
1546 FCFCNCT_AM_SPMA) ?
1547 LPFC_FCF_SPMA : LPFC_FCF_FPMA;
1548 /*
1549 * If the user specified a prefered address mode, use the
1550 * addr mode only if FCF support the addr_mode.
1551 */
1552 else if ((conn_entry->conn_rec.flags & FCFCNCT_AM_VALID) &&
1553 (conn_entry->conn_rec.flags & FCFCNCT_AM_PREFERRED) &&
1554 (conn_entry->conn_rec.flags & FCFCNCT_AM_SPMA) &&
1555 (*addr_mode & LPFC_FCF_SPMA))
1556 *addr_mode = LPFC_FCF_SPMA;
1557 else if ((conn_entry->conn_rec.flags & FCFCNCT_AM_VALID) &&
1558 (conn_entry->conn_rec.flags & FCFCNCT_AM_PREFERRED) &&
1559 !(conn_entry->conn_rec.flags & FCFCNCT_AM_SPMA) &&
1560 (*addr_mode & LPFC_FCF_FPMA))
1561 *addr_mode = LPFC_FCF_FPMA;
James Smart6fb120a2009-05-22 14:52:59 -04001562
James Smart4d9ab992009-10-02 15:16:39 -04001563 /* If matching connect list has a vlan id, use it */
James Smart6fb120a2009-05-22 14:52:59 -04001564 if (conn_entry->conn_rec.flags & FCFCNCT_VLAN_VALID)
1565 *vlan_id = conn_entry->conn_rec.vlan_tag;
James Smart4d9ab992009-10-02 15:16:39 -04001566 /*
1567 * If no vlan id is specified in connect list, use the vlan id
1568 * in the FCF record
1569 */
1570 else if (fcf_vlan_id)
1571 *vlan_id = fcf_vlan_id;
James Smart6fb120a2009-05-22 14:52:59 -04001572 else
James Smartdbb6b3a2010-06-08 18:31:37 -04001573 *vlan_id = LPFC_FCOE_NULL_VID;
James Smart6fb120a2009-05-22 14:52:59 -04001574
1575 return 1;
1576 }
1577
1578 return 0;
1579}
1580
1581/**
James Smart32b97932009-07-19 10:01:21 -04001582 * lpfc_check_pending_fcoe_event - Check if there is pending fcoe event.
1583 * @phba: pointer to lpfc hba data structure.
1584 * @unreg_fcf: Unregister FCF if FCF table need to be re-scaned.
1585 *
1586 * This function check if there is any fcoe event pending while driver
1587 * scan FCF entries. If there is any pending event, it will restart the
1588 * FCF saning and return 1 else return 0.
1589 */
1590int
1591lpfc_check_pending_fcoe_event(struct lpfc_hba *phba, uint8_t unreg_fcf)
1592{
James Smart32b97932009-07-19 10:01:21 -04001593 /*
1594 * If the Link is up and no FCoE events while in the
1595 * FCF discovery, no need to restart FCF discovery.
1596 */
1597 if ((phba->link_state >= LPFC_LINK_UP) &&
James Smarta93ff372010-10-22 11:06:08 -04001598 (phba->fcoe_eventtag == phba->fcoe_eventtag_at_fcf_scan))
James Smart32b97932009-07-19 10:01:21 -04001599 return 0;
1600
James Smart0c9ab6f2010-02-26 14:15:57 -05001601 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
1602 "2768 Pending link or FCF event during current "
1603 "handling of the previous event: link_state:x%x, "
1604 "evt_tag_at_scan:x%x, evt_tag_current:x%x\n",
1605 phba->link_state, phba->fcoe_eventtag_at_fcf_scan,
1606 phba->fcoe_eventtag);
1607
James Smart32b97932009-07-19 10:01:21 -04001608 spin_lock_irq(&phba->hbalock);
1609 phba->fcf.fcf_flag &= ~FCF_AVAILABLE;
1610 spin_unlock_irq(&phba->hbalock);
1611
James Smart0c9ab6f2010-02-26 14:15:57 -05001612 if (phba->link_state >= LPFC_LINK_UP) {
1613 lpfc_printf_log(phba, KERN_INFO, LOG_FIP | LOG_DISCOVERY,
1614 "2780 Restart FCF table scan due to "
1615 "pending FCF event:evt_tag_at_scan:x%x, "
1616 "evt_tag_current:x%x\n",
1617 phba->fcoe_eventtag_at_fcf_scan,
1618 phba->fcoe_eventtag);
1619 lpfc_sli4_fcf_scan_read_fcf_rec(phba, LPFC_FCOE_FCF_GET_FIRST);
1620 } else {
James Smart4d9ab992009-10-02 15:16:39 -04001621 /*
James Smarta93ff372010-10-22 11:06:08 -04001622 * Do not continue FCF discovery and clear FCF_TS_INPROG
James Smart4d9ab992009-10-02 15:16:39 -04001623 * flag
1624 */
James Smartdbb6b3a2010-06-08 18:31:37 -04001625 lpfc_printf_log(phba, KERN_INFO, LOG_FIP | LOG_DISCOVERY,
1626 "2833 Stop FCF discovery process due to link "
1627 "state change (x%x)\n", phba->link_state);
James Smart1c6f4ef52009-11-18 15:40:49 -05001628 spin_lock_irq(&phba->hbalock);
James Smarta93ff372010-10-22 11:06:08 -04001629 phba->hba_flag &= ~(FCF_TS_INPROG | FCF_RR_INPROG);
James Smart0c9ab6f2010-02-26 14:15:57 -05001630 phba->fcf.fcf_flag &= ~(FCF_REDISC_FOV | FCF_DISCOVERY);
James Smart1c6f4ef52009-11-18 15:40:49 -05001631 spin_unlock_irq(&phba->hbalock);
1632 }
James Smart32b97932009-07-19 10:01:21 -04001633
James Smart0c9ab6f2010-02-26 14:15:57 -05001634 /* Unregister the currently registered FCF if required */
James Smart32b97932009-07-19 10:01:21 -04001635 if (unreg_fcf) {
1636 spin_lock_irq(&phba->hbalock);
1637 phba->fcf.fcf_flag &= ~FCF_REGISTERED;
1638 spin_unlock_irq(&phba->hbalock);
James Smart0c9ab6f2010-02-26 14:15:57 -05001639 lpfc_sli4_unregister_fcf(phba);
James Smart32b97932009-07-19 10:01:21 -04001640 }
James Smart32b97932009-07-19 10:01:21 -04001641 return 1;
1642}
1643
1644/**
James Smart999d8132010-03-15 11:24:56 -04001645 * lpfc_sli4_new_fcf_random_select - Randomly select an eligible new fcf record
1646 * @phba: pointer to lpfc hba data structure.
1647 * @fcf_cnt: number of eligible fcf record seen so far.
1648 *
1649 * This function makes an running random selection decision on FCF record to
1650 * use through a sequence of @fcf_cnt eligible FCF records with equal
1651 * probability. To perform integer manunipulation of random numbers with
1652 * size unit32_t, the lower 16 bits of the 32-bit random number returned
1653 * from random32() are taken as the random random number generated.
1654 *
1655 * Returns true when outcome is for the newly read FCF record should be
1656 * chosen; otherwise, return false when outcome is for keeping the previously
1657 * chosen FCF record.
1658 **/
1659static bool
1660lpfc_sli4_new_fcf_random_select(struct lpfc_hba *phba, uint32_t fcf_cnt)
1661{
1662 uint32_t rand_num;
1663
1664 /* Get 16-bit uniform random number */
1665 rand_num = (0xFFFF & random32());
1666
1667 /* Decision with probability 1/fcf_cnt */
1668 if ((fcf_cnt * rand_num) < 0xFFFF)
1669 return true;
1670 else
1671 return false;
1672}
1673
1674/**
James Smart3804dc82010-07-14 15:31:37 -04001675 * lpfc_sli4_fcf_rec_mbox_parse - Parse read_fcf mbox command.
James Smart6fb120a2009-05-22 14:52:59 -04001676 * @phba: pointer to lpfc hba data structure.
1677 * @mboxq: pointer to mailbox object.
James Smart0c9ab6f2010-02-26 14:15:57 -05001678 * @next_fcf_index: pointer to holder of next fcf index.
James Smart6fb120a2009-05-22 14:52:59 -04001679 *
James Smart0c9ab6f2010-02-26 14:15:57 -05001680 * This routine parses the non-embedded fcf mailbox command by performing the
1681 * necessarily error checking, non-embedded read FCF record mailbox command
1682 * SGE parsing, and endianness swapping.
1683 *
1684 * Returns the pointer to the new FCF record in the non-embedded mailbox
1685 * command DMA memory if successfully, other NULL.
James Smart6fb120a2009-05-22 14:52:59 -04001686 */
James Smart0c9ab6f2010-02-26 14:15:57 -05001687static struct fcf_record *
1688lpfc_sli4_fcf_rec_mbox_parse(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq,
1689 uint16_t *next_fcf_index)
James Smart6fb120a2009-05-22 14:52:59 -04001690{
1691 void *virt_addr;
1692 dma_addr_t phys_addr;
James Smart6fb120a2009-05-22 14:52:59 -04001693 struct lpfc_mbx_sge sge;
1694 struct lpfc_mbx_read_fcf_tbl *read_fcf;
1695 uint32_t shdr_status, shdr_add_status;
1696 union lpfc_sli4_cfg_shdr *shdr;
1697 struct fcf_record *new_fcf_record;
James Smart32b97932009-07-19 10:01:21 -04001698
James Smart6fb120a2009-05-22 14:52:59 -04001699 /* Get the first SGE entry from the non-embedded DMA memory. This
1700 * routine only uses a single SGE.
1701 */
1702 lpfc_sli4_mbx_sge_get(mboxq, 0, &sge);
1703 phys_addr = getPaddr(sge.pa_hi, sge.pa_lo);
1704 if (unlikely(!mboxq->sge_array)) {
1705 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX,
1706 "2524 Failed to get the non-embedded SGE "
1707 "virtual address\n");
James Smart0c9ab6f2010-02-26 14:15:57 -05001708 return NULL;
James Smart6fb120a2009-05-22 14:52:59 -04001709 }
1710 virt_addr = mboxq->sge_array->addr[0];
1711
1712 shdr = (union lpfc_sli4_cfg_shdr *)virt_addr;
1713 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
James Smart0c9ab6f2010-02-26 14:15:57 -05001714 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
James Smart6fb120a2009-05-22 14:52:59 -04001715 if (shdr_status || shdr_add_status) {
James Smart0c9ab6f2010-02-26 14:15:57 -05001716 if (shdr_status == STATUS_FCF_TABLE_EMPTY)
1717 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
James Smartdef9c7a2009-12-21 17:02:28 -05001718 "2726 READ_FCF_RECORD Indicates empty "
1719 "FCF table.\n");
James Smart0c9ab6f2010-02-26 14:15:57 -05001720 else
1721 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
James Smartdef9c7a2009-12-21 17:02:28 -05001722 "2521 READ_FCF_RECORD mailbox failed "
James Smart0c9ab6f2010-02-26 14:15:57 -05001723 "with status x%x add_status x%x, "
1724 "mbx\n", shdr_status, shdr_add_status);
1725 return NULL;
James Smart6fb120a2009-05-22 14:52:59 -04001726 }
James Smart0c9ab6f2010-02-26 14:15:57 -05001727
1728 /* Interpreting the returned information of the FCF record */
James Smart6fb120a2009-05-22 14:52:59 -04001729 read_fcf = (struct lpfc_mbx_read_fcf_tbl *)virt_addr;
1730 lpfc_sli_pcimem_bcopy(read_fcf, read_fcf,
1731 sizeof(struct lpfc_mbx_read_fcf_tbl));
James Smart0c9ab6f2010-02-26 14:15:57 -05001732 *next_fcf_index = bf_get(lpfc_mbx_read_fcf_tbl_nxt_vindx, read_fcf);
James Smart6fb120a2009-05-22 14:52:59 -04001733 new_fcf_record = (struct fcf_record *)(virt_addr +
1734 sizeof(struct lpfc_mbx_read_fcf_tbl));
1735 lpfc_sli_pcimem_bcopy(new_fcf_record, new_fcf_record,
James Smartcb5172e2010-03-15 11:25:07 -04001736 offsetof(struct fcf_record, vlan_bitmap));
1737 new_fcf_record->word137 = le32_to_cpu(new_fcf_record->word137);
1738 new_fcf_record->word138 = le32_to_cpu(new_fcf_record->word138);
James Smart6fb120a2009-05-22 14:52:59 -04001739
James Smart0c9ab6f2010-02-26 14:15:57 -05001740 return new_fcf_record;
1741}
1742
1743/**
1744 * lpfc_sli4_log_fcf_record_info - Log the information of a fcf record
1745 * @phba: pointer to lpfc hba data structure.
1746 * @fcf_record: pointer to the fcf record.
1747 * @vlan_id: the lowest vlan identifier associated to this fcf record.
1748 * @next_fcf_index: the index to the next fcf record in hba's fcf table.
1749 *
1750 * This routine logs the detailed FCF record if the LOG_FIP loggin is
1751 * enabled.
1752 **/
1753static void
1754lpfc_sli4_log_fcf_record_info(struct lpfc_hba *phba,
1755 struct fcf_record *fcf_record,
1756 uint16_t vlan_id,
1757 uint16_t next_fcf_index)
1758{
1759 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
1760 "2764 READ_FCF_RECORD:\n"
1761 "\tFCF_Index : x%x\n"
1762 "\tFCF_Avail : x%x\n"
1763 "\tFCF_Valid : x%x\n"
1764 "\tFIP_Priority : x%x\n"
1765 "\tMAC_Provider : x%x\n"
1766 "\tLowest VLANID : x%x\n"
1767 "\tFCF_MAC Addr : x%x:%x:%x:%x:%x:%x\n"
1768 "\tFabric_Name : x%x:%x:%x:%x:%x:%x:%x:%x\n"
1769 "\tSwitch_Name : x%x:%x:%x:%x:%x:%x:%x:%x\n"
1770 "\tNext_FCF_Index: x%x\n",
1771 bf_get(lpfc_fcf_record_fcf_index, fcf_record),
1772 bf_get(lpfc_fcf_record_fcf_avail, fcf_record),
1773 bf_get(lpfc_fcf_record_fcf_valid, fcf_record),
1774 fcf_record->fip_priority,
1775 bf_get(lpfc_fcf_record_mac_addr_prov, fcf_record),
1776 vlan_id,
1777 bf_get(lpfc_fcf_record_mac_0, fcf_record),
1778 bf_get(lpfc_fcf_record_mac_1, fcf_record),
1779 bf_get(lpfc_fcf_record_mac_2, fcf_record),
1780 bf_get(lpfc_fcf_record_mac_3, fcf_record),
1781 bf_get(lpfc_fcf_record_mac_4, fcf_record),
1782 bf_get(lpfc_fcf_record_mac_5, fcf_record),
1783 bf_get(lpfc_fcf_record_fab_name_0, fcf_record),
1784 bf_get(lpfc_fcf_record_fab_name_1, fcf_record),
1785 bf_get(lpfc_fcf_record_fab_name_2, fcf_record),
1786 bf_get(lpfc_fcf_record_fab_name_3, fcf_record),
1787 bf_get(lpfc_fcf_record_fab_name_4, fcf_record),
1788 bf_get(lpfc_fcf_record_fab_name_5, fcf_record),
1789 bf_get(lpfc_fcf_record_fab_name_6, fcf_record),
1790 bf_get(lpfc_fcf_record_fab_name_7, fcf_record),
1791 bf_get(lpfc_fcf_record_switch_name_0, fcf_record),
1792 bf_get(lpfc_fcf_record_switch_name_1, fcf_record),
1793 bf_get(lpfc_fcf_record_switch_name_2, fcf_record),
1794 bf_get(lpfc_fcf_record_switch_name_3, fcf_record),
1795 bf_get(lpfc_fcf_record_switch_name_4, fcf_record),
1796 bf_get(lpfc_fcf_record_switch_name_5, fcf_record),
1797 bf_get(lpfc_fcf_record_switch_name_6, fcf_record),
1798 bf_get(lpfc_fcf_record_switch_name_7, fcf_record),
1799 next_fcf_index);
1800}
1801
1802/**
James Smartdbb6b3a2010-06-08 18:31:37 -04001803 lpfc_sli4_fcf_record_match - testing new FCF record for matching existing FCF
1804 * @phba: pointer to lpfc hba data structure.
1805 * @fcf_rec: pointer to an existing FCF record.
1806 * @new_fcf_record: pointer to a new FCF record.
1807 * @new_vlan_id: vlan id from the new FCF record.
1808 *
1809 * This function performs matching test of a new FCF record against an existing
1810 * FCF record. If the new_vlan_id passed in is LPFC_FCOE_IGNORE_VID, vlan id
1811 * will not be used as part of the FCF record matching criteria.
1812 *
1813 * Returns true if all the fields matching, otherwise returns false.
1814 */
1815static bool
1816lpfc_sli4_fcf_record_match(struct lpfc_hba *phba,
1817 struct lpfc_fcf_rec *fcf_rec,
1818 struct fcf_record *new_fcf_record,
1819 uint16_t new_vlan_id)
1820{
1821 if (new_vlan_id != LPFC_FCOE_IGNORE_VID)
1822 if (!lpfc_vlan_id_match(fcf_rec->vlan_id, new_vlan_id))
1823 return false;
1824 if (!lpfc_mac_addr_match(fcf_rec->mac_addr, new_fcf_record))
1825 return false;
1826 if (!lpfc_sw_name_match(fcf_rec->switch_name, new_fcf_record))
1827 return false;
1828 if (!lpfc_fab_name_match(fcf_rec->fabric_name, new_fcf_record))
1829 return false;
1830 return true;
1831}
1832
1833/**
James Smarta93ff372010-10-22 11:06:08 -04001834 * lpfc_sli4_fcf_rr_next_proc - processing next roundrobin fcf
1835 * @vport: Pointer to vport object.
1836 * @fcf_index: index to next fcf.
1837 *
1838 * This function processing the roundrobin fcf failover to next fcf index.
1839 * When this function is invoked, there will be a current fcf registered
1840 * for flogi.
1841 * Return: 0 for continue retrying flogi on currently registered fcf;
1842 * 1 for stop flogi on currently registered fcf;
1843 */
1844int lpfc_sli4_fcf_rr_next_proc(struct lpfc_vport *vport, uint16_t fcf_index)
1845{
1846 struct lpfc_hba *phba = vport->phba;
1847 int rc;
1848
1849 if (fcf_index == LPFC_FCOE_FCF_NEXT_NONE) {
1850 spin_lock_irq(&phba->hbalock);
1851 if (phba->hba_flag & HBA_DEVLOSS_TMO) {
1852 spin_unlock_irq(&phba->hbalock);
1853 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
1854 "2872 Devloss tmo with no eligible "
1855 "FCF, unregister in-use FCF (x%x) "
1856 "and rescan FCF table\n",
1857 phba->fcf.current_rec.fcf_indx);
1858 lpfc_unregister_fcf_rescan(phba);
1859 goto stop_flogi_current_fcf;
1860 }
1861 /* Mark the end to FLOGI roundrobin failover */
1862 phba->hba_flag &= ~FCF_RR_INPROG;
1863 /* Allow action to new fcf asynchronous event */
1864 phba->fcf.fcf_flag &= ~(FCF_AVAILABLE | FCF_SCAN_DONE);
1865 spin_unlock_irq(&phba->hbalock);
1866 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
1867 "2865 No FCF available, stop roundrobin FCF "
1868 "failover and change port state:x%x/x%x\n",
1869 phba->pport->port_state, LPFC_VPORT_UNKNOWN);
1870 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
1871 goto stop_flogi_current_fcf;
1872 } else {
1873 lpfc_printf_log(phba, KERN_INFO, LOG_FIP | LOG_ELS,
1874 "2794 Try FLOGI roundrobin FCF failover to "
1875 "(x%x)\n", fcf_index);
1876 rc = lpfc_sli4_fcf_rr_read_fcf_rec(phba, fcf_index);
1877 if (rc)
1878 lpfc_printf_log(phba, KERN_WARNING, LOG_FIP | LOG_ELS,
1879 "2761 FLOGI roundrobin FCF failover "
1880 "failed (rc:x%x) to read FCF (x%x)\n",
1881 rc, phba->fcf.current_rec.fcf_indx);
1882 else
1883 goto stop_flogi_current_fcf;
1884 }
1885 return 0;
1886
1887stop_flogi_current_fcf:
1888 lpfc_can_disctmo(vport);
1889 return 1;
1890}
1891
1892/**
James Smart0c9ab6f2010-02-26 14:15:57 -05001893 * lpfc_mbx_cmpl_fcf_scan_read_fcf_rec - fcf scan read_fcf mbox cmpl handler.
1894 * @phba: pointer to lpfc hba data structure.
1895 * @mboxq: pointer to mailbox object.
1896 *
1897 * This function iterates through all the fcf records available in
1898 * HBA and chooses the optimal FCF record for discovery. After finding
1899 * the FCF for discovery it registers the FCF record and kicks start
1900 * discovery.
1901 * If FCF_IN_USE flag is set in currently used FCF, the routine tries to
1902 * use an FCF record which matches fabric name and mac address of the
1903 * currently used FCF record.
1904 * If the driver supports only one FCF, it will try to use the FCF record
1905 * used by BOOT_BIOS.
1906 */
1907void
1908lpfc_mbx_cmpl_fcf_scan_read_fcf_rec(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
1909{
1910 struct fcf_record *new_fcf_record;
1911 uint32_t boot_flag, addr_mode;
1912 uint16_t fcf_index, next_fcf_index;
1913 struct lpfc_fcf_rec *fcf_rec = NULL;
1914 uint16_t vlan_id;
James Smart999d8132010-03-15 11:24:56 -04001915 uint32_t seed;
1916 bool select_new_fcf;
James Smart0c9ab6f2010-02-26 14:15:57 -05001917 int rc;
1918
1919 /* If there is pending FCoE event restart FCF table scan */
James Smarta93ff372010-10-22 11:06:08 -04001920 if (lpfc_check_pending_fcoe_event(phba, LPFC_SKIP_UNREG_FCF)) {
James Smart0c9ab6f2010-02-26 14:15:57 -05001921 lpfc_sli4_mbox_cmd_free(phba, mboxq);
1922 return;
1923 }
1924
1925 /* Parse the FCF record from the non-embedded mailbox command */
1926 new_fcf_record = lpfc_sli4_fcf_rec_mbox_parse(phba, mboxq,
1927 &next_fcf_index);
1928 if (!new_fcf_record) {
James Smarta93ff372010-10-22 11:06:08 -04001929 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
James Smart0c9ab6f2010-02-26 14:15:57 -05001930 "2765 Mailbox command READ_FCF_RECORD "
1931 "failed to retrieve a FCF record.\n");
1932 /* Let next new FCF event trigger fast failover */
1933 spin_lock_irq(&phba->hbalock);
James Smarta93ff372010-10-22 11:06:08 -04001934 phba->hba_flag &= ~FCF_TS_INPROG;
James Smart0c9ab6f2010-02-26 14:15:57 -05001935 spin_unlock_irq(&phba->hbalock);
1936 lpfc_sli4_mbox_cmd_free(phba, mboxq);
1937 return;
1938 }
1939
1940 /* Check the FCF record against the connection list */
James Smartecfd03c2010-02-12 14:41:27 -05001941 rc = lpfc_match_fcf_conn_list(phba, new_fcf_record, &boot_flag,
1942 &addr_mode, &vlan_id);
James Smart0c9ab6f2010-02-26 14:15:57 -05001943
1944 /* Log the FCF record information if turned on */
1945 lpfc_sli4_log_fcf_record_info(phba, new_fcf_record, vlan_id,
1946 next_fcf_index);
1947
James Smart6fb120a2009-05-22 14:52:59 -04001948 /*
1949 * If the fcf record does not match with connect list entries
James Smart0c9ab6f2010-02-26 14:15:57 -05001950 * read the next entry; otherwise, this is an eligible FCF
James Smarta93ff372010-10-22 11:06:08 -04001951 * record for roundrobin FCF failover.
James Smart6fb120a2009-05-22 14:52:59 -04001952 */
James Smart0c9ab6f2010-02-26 14:15:57 -05001953 if (!rc) {
1954 lpfc_printf_log(phba, KERN_WARNING, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -04001955 "2781 FCF (x%x) failed connection "
1956 "list check: (x%x/x%x)\n",
James Smart0c9ab6f2010-02-26 14:15:57 -05001957 bf_get(lpfc_fcf_record_fcf_index,
1958 new_fcf_record),
1959 bf_get(lpfc_fcf_record_fcf_avail,
1960 new_fcf_record),
1961 bf_get(lpfc_fcf_record_fcf_valid,
1962 new_fcf_record));
James Smartdbb6b3a2010-06-08 18:31:37 -04001963 if ((phba->fcf.fcf_flag & FCF_IN_USE) &&
1964 lpfc_sli4_fcf_record_match(phba, &phba->fcf.current_rec,
1965 new_fcf_record, LPFC_FCOE_IGNORE_VID)) {
James Smart5ac6b302010-10-22 11:05:36 -04001966 if (bf_get(lpfc_fcf_record_fcf_index, new_fcf_record) !=
1967 phba->fcf.current_rec.fcf_indx) {
1968 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
1969 "2862 FCF (x%x) matches property "
1970 "of in-use FCF (x%x)\n",
1971 bf_get(lpfc_fcf_record_fcf_index,
1972 new_fcf_record),
1973 phba->fcf.current_rec.fcf_indx);
1974 goto read_next_fcf;
1975 }
James Smartdbb6b3a2010-06-08 18:31:37 -04001976 /*
1977 * In case the current in-use FCF record becomes
1978 * invalid/unavailable during FCF discovery that
1979 * was not triggered by fast FCF failover process,
1980 * treat it as fast FCF failover.
1981 */
1982 if (!(phba->fcf.fcf_flag & FCF_REDISC_PEND) &&
1983 !(phba->fcf.fcf_flag & FCF_REDISC_FOV)) {
1984 lpfc_printf_log(phba, KERN_WARNING, LOG_FIP,
1985 "2835 Invalid in-use FCF "
James Smarta93ff372010-10-22 11:06:08 -04001986 "(x%x), enter FCF failover "
1987 "table scan.\n",
James Smartdbb6b3a2010-06-08 18:31:37 -04001988 phba->fcf.current_rec.fcf_indx);
1989 spin_lock_irq(&phba->hbalock);
1990 phba->fcf.fcf_flag |= FCF_REDISC_FOV;
1991 spin_unlock_irq(&phba->hbalock);
1992 lpfc_sli4_mbox_cmd_free(phba, mboxq);
1993 lpfc_sli4_fcf_scan_read_fcf_rec(phba,
1994 LPFC_FCOE_FCF_GET_FIRST);
1995 return;
1996 }
1997 }
James Smart6fb120a2009-05-22 14:52:59 -04001998 goto read_next_fcf;
James Smart0c9ab6f2010-02-26 14:15:57 -05001999 } else {
2000 fcf_index = bf_get(lpfc_fcf_record_fcf_index, new_fcf_record);
2001 rc = lpfc_sli4_fcf_rr_index_set(phba, fcf_index);
2002 if (rc)
2003 goto read_next_fcf;
2004 }
2005
James Smart6fb120a2009-05-22 14:52:59 -04002006 /*
2007 * If this is not the first FCF discovery of the HBA, use last
James Smartecfd03c2010-02-12 14:41:27 -05002008 * FCF record for the discovery. The condition that a rescan
2009 * matches the in-use FCF record: fabric name, switch name, mac
2010 * address, and vlan_id.
James Smart6fb120a2009-05-22 14:52:59 -04002011 */
James Smart0c9ab6f2010-02-26 14:15:57 -05002012 spin_lock_irq(&phba->hbalock);
James Smart6fb120a2009-05-22 14:52:59 -04002013 if (phba->fcf.fcf_flag & FCF_IN_USE) {
James Smartdbb6b3a2010-06-08 18:31:37 -04002014 if (lpfc_sli4_fcf_record_match(phba, &phba->fcf.current_rec,
2015 new_fcf_record, vlan_id)) {
James Smart5ac6b302010-10-22 11:05:36 -04002016 if (bf_get(lpfc_fcf_record_fcf_index, new_fcf_record) ==
2017 phba->fcf.current_rec.fcf_indx) {
2018 phba->fcf.fcf_flag |= FCF_AVAILABLE;
2019 if (phba->fcf.fcf_flag & FCF_REDISC_PEND)
2020 /* Stop FCF redisc wait timer */
2021 __lpfc_sli4_stop_fcf_redisc_wait_timer(
2022 phba);
2023 else if (phba->fcf.fcf_flag & FCF_REDISC_FOV)
2024 /* Fast failover, mark completed */
2025 phba->fcf.fcf_flag &= ~FCF_REDISC_FOV;
2026 spin_unlock_irq(&phba->hbalock);
2027 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
2028 "2836 New FCF matches in-use "
2029 "FCF (x%x)\n",
2030 phba->fcf.current_rec.fcf_indx);
2031 goto out;
2032 } else
2033 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
2034 "2863 New FCF (x%x) matches "
2035 "property of in-use FCF (x%x)\n",
James Smartdbb6b3a2010-06-08 18:31:37 -04002036 bf_get(lpfc_fcf_record_fcf_index,
James Smart5ac6b302010-10-22 11:05:36 -04002037 new_fcf_record),
2038 phba->fcf.current_rec.fcf_indx);
James Smart6fb120a2009-05-22 14:52:59 -04002039 }
James Smartecfd03c2010-02-12 14:41:27 -05002040 /*
2041 * Read next FCF record from HBA searching for the matching
2042 * with in-use record only if not during the fast failover
2043 * period. In case of fast failover period, it shall try to
2044 * determine whether the FCF record just read should be the
2045 * next candidate.
2046 */
2047 if (!(phba->fcf.fcf_flag & FCF_REDISC_FOV)) {
James Smart0c9ab6f2010-02-26 14:15:57 -05002048 spin_unlock_irq(&phba->hbalock);
James Smartecfd03c2010-02-12 14:41:27 -05002049 goto read_next_fcf;
2050 }
James Smart6fb120a2009-05-22 14:52:59 -04002051 }
James Smartecfd03c2010-02-12 14:41:27 -05002052 /*
2053 * Update on failover FCF record only if it's in FCF fast-failover
2054 * period; otherwise, update on current FCF record.
2055 */
James Smartfc2b9892010-02-26 14:15:29 -05002056 if (phba->fcf.fcf_flag & FCF_REDISC_FOV)
2057 fcf_rec = &phba->fcf.failover_rec;
2058 else
James Smartecfd03c2010-02-12 14:41:27 -05002059 fcf_rec = &phba->fcf.current_rec;
2060
James Smart6fb120a2009-05-22 14:52:59 -04002061 if (phba->fcf.fcf_flag & FCF_AVAILABLE) {
2062 /*
James Smartecfd03c2010-02-12 14:41:27 -05002063 * If the driver FCF record does not have boot flag
2064 * set and new hba fcf record has boot flag set, use
2065 * the new hba fcf record.
James Smart6fb120a2009-05-22 14:52:59 -04002066 */
James Smartecfd03c2010-02-12 14:41:27 -05002067 if (boot_flag && !(fcf_rec->flag & BOOT_ENABLE)) {
2068 /* Choose this FCF record */
James Smartdbb6b3a2010-06-08 18:31:37 -04002069 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
2070 "2837 Update current FCF record "
2071 "(x%x) with new FCF record (x%x)\n",
2072 fcf_rec->fcf_indx,
2073 bf_get(lpfc_fcf_record_fcf_index,
2074 new_fcf_record));
James Smartecfd03c2010-02-12 14:41:27 -05002075 __lpfc_update_fcf_record(phba, fcf_rec, new_fcf_record,
2076 addr_mode, vlan_id, BOOT_ENABLE);
James Smart0c9ab6f2010-02-26 14:15:57 -05002077 spin_unlock_irq(&phba->hbalock);
James Smart6fb120a2009-05-22 14:52:59 -04002078 goto read_next_fcf;
2079 }
2080 /*
James Smartecfd03c2010-02-12 14:41:27 -05002081 * If the driver FCF record has boot flag set and the
2082 * new hba FCF record does not have boot flag, read
2083 * the next FCF record.
James Smart6fb120a2009-05-22 14:52:59 -04002084 */
James Smartecfd03c2010-02-12 14:41:27 -05002085 if (!boot_flag && (fcf_rec->flag & BOOT_ENABLE)) {
James Smart0c9ab6f2010-02-26 14:15:57 -05002086 spin_unlock_irq(&phba->hbalock);
James Smart6fb120a2009-05-22 14:52:59 -04002087 goto read_next_fcf;
2088 }
2089 /*
James Smartecfd03c2010-02-12 14:41:27 -05002090 * If the new hba FCF record has lower priority value
2091 * than the driver FCF record, use the new record.
James Smart6fb120a2009-05-22 14:52:59 -04002092 */
James Smartfc2b9892010-02-26 14:15:29 -05002093 if (new_fcf_record->fip_priority < fcf_rec->priority) {
James Smart999d8132010-03-15 11:24:56 -04002094 /* Choose the new FCF record with lower priority */
James Smartdbb6b3a2010-06-08 18:31:37 -04002095 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
2096 "2838 Update current FCF record "
2097 "(x%x) with new FCF record (x%x)\n",
2098 fcf_rec->fcf_indx,
2099 bf_get(lpfc_fcf_record_fcf_index,
2100 new_fcf_record));
James Smartecfd03c2010-02-12 14:41:27 -05002101 __lpfc_update_fcf_record(phba, fcf_rec, new_fcf_record,
2102 addr_mode, vlan_id, 0);
James Smart999d8132010-03-15 11:24:56 -04002103 /* Reset running random FCF selection count */
2104 phba->fcf.eligible_fcf_cnt = 1;
2105 } else if (new_fcf_record->fip_priority == fcf_rec->priority) {
2106 /* Update running random FCF selection count */
2107 phba->fcf.eligible_fcf_cnt++;
2108 select_new_fcf = lpfc_sli4_new_fcf_random_select(phba,
2109 phba->fcf.eligible_fcf_cnt);
James Smartdbb6b3a2010-06-08 18:31:37 -04002110 if (select_new_fcf) {
2111 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
2112 "2839 Update current FCF record "
2113 "(x%x) with new FCF record (x%x)\n",
2114 fcf_rec->fcf_indx,
2115 bf_get(lpfc_fcf_record_fcf_index,
2116 new_fcf_record));
James Smart999d8132010-03-15 11:24:56 -04002117 /* Choose the new FCF by random selection */
2118 __lpfc_update_fcf_record(phba, fcf_rec,
2119 new_fcf_record,
2120 addr_mode, vlan_id, 0);
James Smartdbb6b3a2010-06-08 18:31:37 -04002121 }
James Smart6fb120a2009-05-22 14:52:59 -04002122 }
James Smart0c9ab6f2010-02-26 14:15:57 -05002123 spin_unlock_irq(&phba->hbalock);
James Smart6fb120a2009-05-22 14:52:59 -04002124 goto read_next_fcf;
2125 }
2126 /*
James Smartecfd03c2010-02-12 14:41:27 -05002127 * This is the first suitable FCF record, choose this record for
2128 * initial best-fit FCF.
James Smart6fb120a2009-05-22 14:52:59 -04002129 */
James Smartecfd03c2010-02-12 14:41:27 -05002130 if (fcf_rec) {
James Smartdbb6b3a2010-06-08 18:31:37 -04002131 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -04002132 "2840 Update initial FCF candidate "
2133 "with FCF (x%x)\n",
James Smartdbb6b3a2010-06-08 18:31:37 -04002134 bf_get(lpfc_fcf_record_fcf_index,
2135 new_fcf_record));
James Smartecfd03c2010-02-12 14:41:27 -05002136 __lpfc_update_fcf_record(phba, fcf_rec, new_fcf_record,
2137 addr_mode, vlan_id, (boot_flag ?
2138 BOOT_ENABLE : 0));
2139 phba->fcf.fcf_flag |= FCF_AVAILABLE;
James Smart999d8132010-03-15 11:24:56 -04002140 /* Setup initial running random FCF selection count */
2141 phba->fcf.eligible_fcf_cnt = 1;
2142 /* Seeding the random number generator for random selection */
2143 seed = (uint32_t)(0xFFFFFFFF & jiffies);
2144 srandom32(seed);
James Smart6fb120a2009-05-22 14:52:59 -04002145 }
James Smart0c9ab6f2010-02-26 14:15:57 -05002146 spin_unlock_irq(&phba->hbalock);
James Smart6fb120a2009-05-22 14:52:59 -04002147 goto read_next_fcf;
2148
2149read_next_fcf:
2150 lpfc_sli4_mbox_cmd_free(phba, mboxq);
James Smartecfd03c2010-02-12 14:41:27 -05002151 if (next_fcf_index == LPFC_FCOE_FCF_NEXT_NONE || next_fcf_index == 0) {
2152 if (phba->fcf.fcf_flag & FCF_REDISC_FOV) {
2153 /*
2154 * Case of FCF fast failover scan
2155 */
2156
2157 /*
2158 * It has not found any suitable FCF record, cancel
2159 * FCF scan inprogress, and do nothing
2160 */
2161 if (!(phba->fcf.failover_rec.flag & RECORD_VALID)) {
James Smart0c9ab6f2010-02-26 14:15:57 -05002162 lpfc_printf_log(phba, KERN_WARNING, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -04002163 "2782 No suitable FCF found: "
2164 "(x%x/x%x)\n",
James Smart0c9ab6f2010-02-26 14:15:57 -05002165 phba->fcoe_eventtag_at_fcf_scan,
2166 bf_get(lpfc_fcf_record_fcf_index,
2167 new_fcf_record));
James Smart0c9ab6f2010-02-26 14:15:57 -05002168 spin_lock_irq(&phba->hbalock);
James Smarta93ff372010-10-22 11:06:08 -04002169 if (phba->hba_flag & HBA_DEVLOSS_TMO) {
2170 phba->hba_flag &= ~FCF_TS_INPROG;
2171 spin_unlock_irq(&phba->hbalock);
2172 /* Unregister in-use FCF and rescan */
2173 lpfc_printf_log(phba, KERN_INFO,
2174 LOG_FIP,
2175 "2864 On devloss tmo "
2176 "unreg in-use FCF and "
2177 "rescan FCF table\n");
2178 lpfc_unregister_fcf_rescan(phba);
2179 return;
2180 }
2181 /*
2182 * Let next new FCF event trigger fast failover
2183 */
2184 phba->hba_flag &= ~FCF_TS_INPROG;
James Smart0c9ab6f2010-02-26 14:15:57 -05002185 spin_unlock_irq(&phba->hbalock);
James Smartecfd03c2010-02-12 14:41:27 -05002186 return;
2187 }
2188 /*
2189 * It has found a suitable FCF record that is not
2190 * the same as in-use FCF record, unregister the
2191 * in-use FCF record, replace the in-use FCF record
2192 * with the new FCF record, mark FCF fast failover
2193 * completed, and then start register the new FCF
2194 * record.
2195 */
2196
James Smart0c9ab6f2010-02-26 14:15:57 -05002197 /* Unregister the current in-use FCF record */
James Smartecfd03c2010-02-12 14:41:27 -05002198 lpfc_unregister_fcf(phba);
James Smart0c9ab6f2010-02-26 14:15:57 -05002199
2200 /* Replace in-use record with the new record */
James Smartdbb6b3a2010-06-08 18:31:37 -04002201 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -04002202 "2842 Replace in-use FCF (x%x) "
2203 "with failover FCF (x%x)\n",
James Smartdbb6b3a2010-06-08 18:31:37 -04002204 phba->fcf.current_rec.fcf_indx,
2205 phba->fcf.failover_rec.fcf_indx);
James Smartecfd03c2010-02-12 14:41:27 -05002206 memcpy(&phba->fcf.current_rec,
2207 &phba->fcf.failover_rec,
2208 sizeof(struct lpfc_fcf_rec));
James Smart3804dc82010-07-14 15:31:37 -04002209 /*
2210 * Mark the fast FCF failover rediscovery completed
2211 * and the start of the first round of the roundrobin
2212 * FCF failover.
2213 */
James Smart0c9ab6f2010-02-26 14:15:57 -05002214 spin_lock_irq(&phba->hbalock);
James Smarta93ff372010-10-22 11:06:08 -04002215 phba->fcf.fcf_flag &= ~FCF_REDISC_FOV;
James Smart0c9ab6f2010-02-26 14:15:57 -05002216 spin_unlock_irq(&phba->hbalock);
James Smartecfd03c2010-02-12 14:41:27 -05002217 /* Register to the new FCF record */
2218 lpfc_register_fcf(phba);
2219 } else {
2220 /*
2221 * In case of transaction period to fast FCF failover,
2222 * do nothing when search to the end of the FCF table.
2223 */
2224 if ((phba->fcf.fcf_flag & FCF_REDISC_EVT) ||
2225 (phba->fcf.fcf_flag & FCF_REDISC_PEND))
2226 return;
James Smartdbb6b3a2010-06-08 18:31:37 -04002227
2228 if (phba->fcf.fcf_flag & FCF_IN_USE) {
2229 /*
2230 * In case the current in-use FCF record no
2231 * longer existed during FCF discovery that
2232 * was not triggered by fast FCF failover
2233 * process, treat it as fast FCF failover.
2234 */
2235 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
2236 "2841 In-use FCF record (x%x) "
2237 "not reported, entering fast "
2238 "FCF failover mode scanning.\n",
2239 phba->fcf.current_rec.fcf_indx);
2240 spin_lock_irq(&phba->hbalock);
2241 phba->fcf.fcf_flag |= FCF_REDISC_FOV;
2242 spin_unlock_irq(&phba->hbalock);
2243 lpfc_sli4_mbox_cmd_free(phba, mboxq);
2244 lpfc_sli4_fcf_scan_read_fcf_rec(phba,
2245 LPFC_FCOE_FCF_GET_FIRST);
2246 return;
2247 }
James Smart0c9ab6f2010-02-26 14:15:57 -05002248 /* Register to the new FCF record */
James Smartecfd03c2010-02-12 14:41:27 -05002249 lpfc_register_fcf(phba);
2250 }
2251 } else
James Smart0c9ab6f2010-02-26 14:15:57 -05002252 lpfc_sli4_fcf_scan_read_fcf_rec(phba, next_fcf_index);
James Smart6fb120a2009-05-22 14:52:59 -04002253 return;
2254
2255out:
2256 lpfc_sli4_mbox_cmd_free(phba, mboxq);
2257 lpfc_register_fcf(phba);
2258
2259 return;
2260}
2261
2262/**
James Smarta93ff372010-10-22 11:06:08 -04002263 * lpfc_mbx_cmpl_fcf_rr_read_fcf_rec - fcf roundrobin read_fcf mbox cmpl hdler
James Smart0c9ab6f2010-02-26 14:15:57 -05002264 * @phba: pointer to lpfc hba data structure.
2265 * @mboxq: pointer to mailbox object.
2266 *
James Smarta93ff372010-10-22 11:06:08 -04002267 * This is the callback function for FLOGI failure roundrobin FCF failover
James Smart0c9ab6f2010-02-26 14:15:57 -05002268 * read FCF record mailbox command from the eligible FCF record bmask for
2269 * performing the failover. If the FCF read back is not valid/available, it
2270 * fails through to retrying FLOGI to the currently registered FCF again.
2271 * Otherwise, if the FCF read back is valid and available, it will set the
2272 * newly read FCF record to the failover FCF record, unregister currently
2273 * registered FCF record, copy the failover FCF record to the current
2274 * FCF record, and then register the current FCF record before proceeding
2275 * to trying FLOGI on the new failover FCF.
2276 */
2277void
2278lpfc_mbx_cmpl_fcf_rr_read_fcf_rec(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
2279{
2280 struct fcf_record *new_fcf_record;
2281 uint32_t boot_flag, addr_mode;
James Smarta93ff372010-10-22 11:06:08 -04002282 uint16_t next_fcf_index, fcf_index;
James Smart0c9ab6f2010-02-26 14:15:57 -05002283 uint16_t current_fcf_index;
2284 uint16_t vlan_id;
James Smarta93ff372010-10-22 11:06:08 -04002285 int rc;
James Smart0c9ab6f2010-02-26 14:15:57 -05002286
James Smarta93ff372010-10-22 11:06:08 -04002287 /* If link state is not up, stop the roundrobin failover process */
James Smart0c9ab6f2010-02-26 14:15:57 -05002288 if (phba->link_state < LPFC_LINK_UP) {
2289 spin_lock_irq(&phba->hbalock);
2290 phba->fcf.fcf_flag &= ~FCF_DISCOVERY;
James Smarta93ff372010-10-22 11:06:08 -04002291 phba->hba_flag &= ~FCF_RR_INPROG;
James Smart0c9ab6f2010-02-26 14:15:57 -05002292 spin_unlock_irq(&phba->hbalock);
James Smarta93ff372010-10-22 11:06:08 -04002293 goto out;
James Smart0c9ab6f2010-02-26 14:15:57 -05002294 }
2295
2296 /* Parse the FCF record from the non-embedded mailbox command */
2297 new_fcf_record = lpfc_sli4_fcf_rec_mbox_parse(phba, mboxq,
2298 &next_fcf_index);
2299 if (!new_fcf_record) {
2300 lpfc_printf_log(phba, KERN_WARNING, LOG_FIP,
2301 "2766 Mailbox command READ_FCF_RECORD "
2302 "failed to retrieve a FCF record.\n");
James Smarta93ff372010-10-22 11:06:08 -04002303 goto error_out;
James Smart0c9ab6f2010-02-26 14:15:57 -05002304 }
2305
2306 /* Get the needed parameters from FCF record */
James Smarta93ff372010-10-22 11:06:08 -04002307 rc = lpfc_match_fcf_conn_list(phba, new_fcf_record, &boot_flag,
2308 &addr_mode, &vlan_id);
James Smart0c9ab6f2010-02-26 14:15:57 -05002309
2310 /* Log the FCF record information if turned on */
2311 lpfc_sli4_log_fcf_record_info(phba, new_fcf_record, vlan_id,
2312 next_fcf_index);
2313
James Smarta93ff372010-10-22 11:06:08 -04002314 fcf_index = bf_get(lpfc_fcf_record_fcf_index, new_fcf_record);
2315 if (!rc) {
2316 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
2317 "2848 Remove ineligible FCF (x%x) from "
2318 "from roundrobin bmask\n", fcf_index);
2319 /* Clear roundrobin bmask bit for ineligible FCF */
2320 lpfc_sli4_fcf_rr_index_clear(phba, fcf_index);
2321 /* Perform next round of roundrobin FCF failover */
2322 fcf_index = lpfc_sli4_fcf_rr_next_index_get(phba);
2323 rc = lpfc_sli4_fcf_rr_next_proc(phba->pport, fcf_index);
2324 if (rc)
2325 goto out;
2326 goto error_out;
2327 }
2328
2329 if (fcf_index == phba->fcf.current_rec.fcf_indx) {
2330 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
2331 "2760 Perform FLOGI roundrobin FCF failover: "
2332 "FCF (x%x) back to FCF (x%x)\n",
2333 phba->fcf.current_rec.fcf_indx, fcf_index);
2334 /* Wait 500 ms before retrying FLOGI to current FCF */
2335 msleep(500);
James Smart76a95d72010-11-20 23:11:48 -05002336 lpfc_issue_init_vfi(phba->pport);
James Smarta93ff372010-10-22 11:06:08 -04002337 goto out;
2338 }
2339
James Smart0c9ab6f2010-02-26 14:15:57 -05002340 /* Upload new FCF record to the failover FCF record */
James Smartdbb6b3a2010-06-08 18:31:37 -04002341 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -04002342 "2834 Update current FCF (x%x) with new FCF (x%x)\n",
2343 phba->fcf.failover_rec.fcf_indx, fcf_index);
James Smart0c9ab6f2010-02-26 14:15:57 -05002344 spin_lock_irq(&phba->hbalock);
2345 __lpfc_update_fcf_record(phba, &phba->fcf.failover_rec,
2346 new_fcf_record, addr_mode, vlan_id,
2347 (boot_flag ? BOOT_ENABLE : 0));
2348 spin_unlock_irq(&phba->hbalock);
2349
2350 current_fcf_index = phba->fcf.current_rec.fcf_indx;
2351
2352 /* Unregister the current in-use FCF record */
2353 lpfc_unregister_fcf(phba);
2354
2355 /* Replace in-use record with the new record */
2356 memcpy(&phba->fcf.current_rec, &phba->fcf.failover_rec,
2357 sizeof(struct lpfc_fcf_rec));
2358
2359 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -04002360 "2783 Perform FLOGI roundrobin FCF failover: FCF "
2361 "(x%x) to FCF (x%x)\n", current_fcf_index, fcf_index);
James Smart0c9ab6f2010-02-26 14:15:57 -05002362
James Smarta93ff372010-10-22 11:06:08 -04002363error_out:
2364 lpfc_register_fcf(phba);
James Smart0c9ab6f2010-02-26 14:15:57 -05002365out:
2366 lpfc_sli4_mbox_cmd_free(phba, mboxq);
James Smart0c9ab6f2010-02-26 14:15:57 -05002367}
2368
2369/**
2370 * lpfc_mbx_cmpl_read_fcf_rec - read fcf completion handler.
2371 * @phba: pointer to lpfc hba data structure.
2372 * @mboxq: pointer to mailbox object.
2373 *
2374 * This is the callback function of read FCF record mailbox command for
James Smarta93ff372010-10-22 11:06:08 -04002375 * updating the eligible FCF bmask for FLOGI failure roundrobin FCF
James Smart0c9ab6f2010-02-26 14:15:57 -05002376 * failover when a new FCF event happened. If the FCF read back is
2377 * valid/available and it passes the connection list check, it updates
James Smarta93ff372010-10-22 11:06:08 -04002378 * the bmask for the eligible FCF record for roundrobin failover.
James Smart0c9ab6f2010-02-26 14:15:57 -05002379 */
2380void
2381lpfc_mbx_cmpl_read_fcf_rec(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
2382{
2383 struct fcf_record *new_fcf_record;
2384 uint32_t boot_flag, addr_mode;
2385 uint16_t fcf_index, next_fcf_index;
2386 uint16_t vlan_id;
2387 int rc;
2388
2389 /* If link state is not up, no need to proceed */
2390 if (phba->link_state < LPFC_LINK_UP)
2391 goto out;
2392
2393 /* If FCF discovery period is over, no need to proceed */
James Smart3804dc82010-07-14 15:31:37 -04002394 if (!(phba->fcf.fcf_flag & FCF_DISCOVERY))
James Smart0c9ab6f2010-02-26 14:15:57 -05002395 goto out;
2396
2397 /* Parse the FCF record from the non-embedded mailbox command */
2398 new_fcf_record = lpfc_sli4_fcf_rec_mbox_parse(phba, mboxq,
2399 &next_fcf_index);
2400 if (!new_fcf_record) {
2401 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
2402 "2767 Mailbox command READ_FCF_RECORD "
2403 "failed to retrieve a FCF record.\n");
2404 goto out;
2405 }
2406
2407 /* Check the connection list for eligibility */
2408 rc = lpfc_match_fcf_conn_list(phba, new_fcf_record, &boot_flag,
2409 &addr_mode, &vlan_id);
2410
2411 /* Log the FCF record information if turned on */
2412 lpfc_sli4_log_fcf_record_info(phba, new_fcf_record, vlan_id,
2413 next_fcf_index);
2414
2415 if (!rc)
2416 goto out;
2417
2418 /* Update the eligible FCF record index bmask */
2419 fcf_index = bf_get(lpfc_fcf_record_fcf_index, new_fcf_record);
2420 rc = lpfc_sli4_fcf_rr_index_set(phba, fcf_index);
2421
2422out:
2423 lpfc_sli4_mbox_cmd_free(phba, mboxq);
2424}
2425
2426/**
James Smart76a95d72010-11-20 23:11:48 -05002427 * lpfc_init_vfi_cmpl - Completion handler for init_vfi mbox command.
2428 * @phba: pointer to lpfc hba data structure.
2429 * @mboxq: pointer to mailbox data structure.
2430 *
2431 * This function handles completion of init vfi mailbox command.
2432 */
2433void
2434lpfc_init_vfi_cmpl(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
2435{
2436 struct lpfc_vport *vport = mboxq->vport;
2437
2438 if (mboxq->u.mb.mbxStatus && (mboxq->u.mb.mbxStatus != 0x4002)) {
2439 lpfc_printf_vlog(vport, KERN_ERR,
2440 LOG_MBOX,
2441 "2891 Init VFI mailbox failed 0x%x\n",
2442 mboxq->u.mb.mbxStatus);
2443 mempool_free(mboxq, phba->mbox_mem_pool);
2444 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
2445 return;
2446 }
2447 lpfc_initial_flogi(vport);
2448 mempool_free(mboxq, phba->mbox_mem_pool);
2449 return;
2450}
2451
2452/**
2453 * lpfc_issue_init_vfi - Issue init_vfi mailbox command.
2454 * @vport: pointer to lpfc_vport data structure.
2455 *
2456 * This function issue a init_vfi mailbox command to initialize the VFI and
2457 * VPI for the physical port.
2458 */
2459void
2460lpfc_issue_init_vfi(struct lpfc_vport *vport)
2461{
2462 LPFC_MBOXQ_t *mboxq;
2463 int rc;
2464 struct lpfc_hba *phba = vport->phba;
2465
2466 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
2467 if (!mboxq) {
2468 lpfc_printf_vlog(vport, KERN_ERR,
2469 LOG_MBOX, "2892 Failed to allocate "
2470 "init_vfi mailbox\n");
2471 return;
2472 }
2473 lpfc_init_vfi(mboxq, vport);
2474 mboxq->mbox_cmpl = lpfc_init_vfi_cmpl;
2475 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
2476 if (rc == MBX_NOT_FINISHED) {
2477 lpfc_printf_vlog(vport, KERN_ERR,
2478 LOG_MBOX, "2893 Failed to issue init_vfi mailbox\n");
2479 mempool_free(mboxq, vport->phba->mbox_mem_pool);
2480 }
2481}
2482
2483/**
James Smart1c6834a2009-07-19 10:01:26 -04002484 * lpfc_init_vpi_cmpl - Completion handler for init_vpi mbox command.
2485 * @phba: pointer to lpfc hba data structure.
2486 * @mboxq: pointer to mailbox data structure.
2487 *
2488 * This function handles completion of init vpi mailbox command.
2489 */
James Smart695a8142010-01-26 23:08:03 -05002490void
James Smart1c6834a2009-07-19 10:01:26 -04002491lpfc_init_vpi_cmpl(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
2492{
2493 struct lpfc_vport *vport = mboxq->vport;
James Smart695a8142010-01-26 23:08:03 -05002494 struct lpfc_nodelist *ndlp;
James Smart72100cc2010-02-12 14:43:01 -05002495 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2496
James Smart1c6834a2009-07-19 10:01:26 -04002497 if (mboxq->u.mb.mbxStatus) {
2498 lpfc_printf_vlog(vport, KERN_ERR,
2499 LOG_MBOX,
2500 "2609 Init VPI mailbox failed 0x%x\n",
2501 mboxq->u.mb.mbxStatus);
2502 mempool_free(mboxq, phba->mbox_mem_pool);
2503 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
2504 return;
2505 }
James Smart72100cc2010-02-12 14:43:01 -05002506 spin_lock_irq(shost->host_lock);
James Smart1c6834a2009-07-19 10:01:26 -04002507 vport->fc_flag &= ~FC_VPORT_NEEDS_INIT_VPI;
James Smart72100cc2010-02-12 14:43:01 -05002508 spin_unlock_irq(shost->host_lock);
James Smart1c6834a2009-07-19 10:01:26 -04002509
James Smart695a8142010-01-26 23:08:03 -05002510 /* If this port is physical port or FDISC is done, do reg_vpi */
2511 if ((phba->pport == vport) || (vport->port_state == LPFC_FDISC)) {
2512 ndlp = lpfc_findnode_did(vport, Fabric_DID);
2513 if (!ndlp)
2514 lpfc_printf_vlog(vport, KERN_ERR,
2515 LOG_DISCOVERY,
2516 "2731 Cannot find fabric "
2517 "controller node\n");
2518 else
2519 lpfc_register_new_vport(phba, vport, ndlp);
2520 mempool_free(mboxq, phba->mbox_mem_pool);
2521 return;
2522 }
2523
James Smart1c6834a2009-07-19 10:01:26 -04002524 if (phba->link_flag & LS_NPIV_FAB_SUPPORTED)
2525 lpfc_initial_fdisc(vport);
2526 else {
2527 lpfc_vport_set_state(vport, FC_VPORT_NO_FABRIC_SUPP);
James Smart6a9c52c2009-10-02 15:16:51 -04002528 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
2529 "2606 No NPIV Fabric support\n");
James Smart1c6834a2009-07-19 10:01:26 -04002530 }
James Smart695a8142010-01-26 23:08:03 -05002531 mempool_free(mboxq, phba->mbox_mem_pool);
James Smart1c6834a2009-07-19 10:01:26 -04002532 return;
2533}
2534
2535/**
James Smartecfd03c2010-02-12 14:41:27 -05002536 * lpfc_issue_init_vpi - Issue init_vpi mailbox command.
2537 * @vport: pointer to lpfc_vport data structure.
2538 *
2539 * This function issue a init_vpi mailbox command to initialize
2540 * VPI for the vport.
2541 */
2542void
2543lpfc_issue_init_vpi(struct lpfc_vport *vport)
2544{
2545 LPFC_MBOXQ_t *mboxq;
2546 int rc;
2547
2548 mboxq = mempool_alloc(vport->phba->mbox_mem_pool, GFP_KERNEL);
2549 if (!mboxq) {
2550 lpfc_printf_vlog(vport, KERN_ERR,
2551 LOG_MBOX, "2607 Failed to allocate "
2552 "init_vpi mailbox\n");
2553 return;
2554 }
2555 lpfc_init_vpi(vport->phba, mboxq, vport->vpi);
2556 mboxq->vport = vport;
2557 mboxq->mbox_cmpl = lpfc_init_vpi_cmpl;
2558 rc = lpfc_sli_issue_mbox(vport->phba, mboxq, MBX_NOWAIT);
2559 if (rc == MBX_NOT_FINISHED) {
2560 lpfc_printf_vlog(vport, KERN_ERR,
2561 LOG_MBOX, "2608 Failed to issue init_vpi mailbox\n");
2562 mempool_free(mboxq, vport->phba->mbox_mem_pool);
2563 }
2564}
2565
2566/**
James Smart6fb120a2009-05-22 14:52:59 -04002567 * lpfc_start_fdiscs - send fdiscs for each vports on this port.
2568 * @phba: pointer to lpfc hba data structure.
2569 *
2570 * This function loops through the list of vports on the @phba and issues an
2571 * FDISC if possible.
2572 */
2573void
2574lpfc_start_fdiscs(struct lpfc_hba *phba)
2575{
2576 struct lpfc_vport **vports;
2577 int i;
2578
2579 vports = lpfc_create_vport_work_array(phba);
2580 if (vports != NULL) {
2581 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
2582 if (vports[i]->port_type == LPFC_PHYSICAL_PORT)
2583 continue;
2584 /* There are no vpi for this vport */
2585 if (vports[i]->vpi > phba->max_vpi) {
2586 lpfc_vport_set_state(vports[i],
2587 FC_VPORT_FAILED);
2588 continue;
2589 }
James Smart76a95d72010-11-20 23:11:48 -05002590 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
James Smart6fb120a2009-05-22 14:52:59 -04002591 lpfc_vport_set_state(vports[i],
2592 FC_VPORT_LINKDOWN);
2593 continue;
2594 }
James Smart1c6834a2009-07-19 10:01:26 -04002595 if (vports[i]->fc_flag & FC_VPORT_NEEDS_INIT_VPI) {
James Smartecfd03c2010-02-12 14:41:27 -05002596 lpfc_issue_init_vpi(vports[i]);
James Smart1c6834a2009-07-19 10:01:26 -04002597 continue;
2598 }
James Smart6fb120a2009-05-22 14:52:59 -04002599 if (phba->link_flag & LS_NPIV_FAB_SUPPORTED)
2600 lpfc_initial_fdisc(vports[i]);
2601 else {
2602 lpfc_vport_set_state(vports[i],
2603 FC_VPORT_NO_FABRIC_SUPP);
2604 lpfc_printf_vlog(vports[i], KERN_ERR,
2605 LOG_ELS,
2606 "0259 No NPIV "
2607 "Fabric support\n");
2608 }
2609 }
2610 }
2611 lpfc_destroy_vport_work_array(phba, vports);
2612}
2613
2614void
2615lpfc_mbx_cmpl_reg_vfi(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
2616{
2617 struct lpfc_dmabuf *dmabuf = mboxq->context1;
2618 struct lpfc_vport *vport = mboxq->vport;
James Smart72100cc2010-02-12 14:43:01 -05002619 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart6fb120a2009-05-22 14:52:59 -04002620
2621 if (mboxq->u.mb.mbxStatus) {
2622 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
2623 "2018 REG_VFI mbxStatus error x%x "
2624 "HBA state x%x\n",
2625 mboxq->u.mb.mbxStatus, vport->port_state);
James Smart76a95d72010-11-20 23:11:48 -05002626 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
James Smart6fb120a2009-05-22 14:52:59 -04002627 /* FLOGI failed, use loop map to make discovery list */
2628 lpfc_disc_list_loopmap(vport);
2629 /* Start discovery */
2630 lpfc_disc_start(vport);
2631 goto fail_free_mem;
2632 }
2633 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
2634 goto fail_free_mem;
2635 }
James Smartc8685952009-11-18 15:39:16 -05002636 /* The VPI is implicitly registered when the VFI is registered */
James Smart72100cc2010-02-12 14:43:01 -05002637 spin_lock_irq(shost->host_lock);
James Smartc8685952009-11-18 15:39:16 -05002638 vport->vpi_state |= LPFC_VPI_REGISTERED;
James Smart695a8142010-01-26 23:08:03 -05002639 vport->fc_flag |= FC_VFI_REGISTERED;
James Smart695a8142010-01-26 23:08:03 -05002640 vport->fc_flag &= ~FC_VPORT_NEEDS_REG_VPI;
James Smart72100cc2010-02-12 14:43:01 -05002641 spin_unlock_irq(shost->host_lock);
James Smart6fb120a2009-05-22 14:52:59 -04002642
2643 if (vport->port_state == LPFC_FABRIC_CFG_LINK) {
James Smart76a95d72010-11-20 23:11:48 -05002644 /* For private loop just start discovery and we are done. */
2645 if ((phba->fc_topology == LPFC_TOPOLOGY_LOOP) &&
2646 (phba->alpa_map[0] == 0) &&
2647 !(vport->fc_flag & FC_PUBLIC_LOOP)) {
2648 /* Use loop map to make discovery list */
2649 lpfc_disc_list_loopmap(vport);
2650 /* Start discovery */
2651 lpfc_disc_start(vport);
2652 } else {
2653 lpfc_start_fdiscs(phba);
2654 lpfc_do_scr_ns_plogi(phba, vport);
2655 }
James Smart6fb120a2009-05-22 14:52:59 -04002656 }
2657
2658fail_free_mem:
2659 mempool_free(mboxq, phba->mbox_mem_pool);
2660 lpfc_mbuf_free(phba, dmabuf->virt, dmabuf->phys);
2661 kfree(dmabuf);
2662 return;
2663}
2664
2665static void
James Smart2e0fef82007-06-17 19:56:36 -05002666lpfc_mbx_cmpl_read_sparam(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
dea31012005-04-17 16:05:31 -05002667{
James Smart6fb120a2009-05-22 14:52:59 -04002668 MAILBOX_t *mb = &pmb->u.mb;
dea31012005-04-17 16:05:31 -05002669 struct lpfc_dmabuf *mp = (struct lpfc_dmabuf *) pmb->context1;
James Smart2e0fef82007-06-17 19:56:36 -05002670 struct lpfc_vport *vport = pmb->vport;
dea31012005-04-17 16:05:31 -05002671
2672
2673 /* Check for error */
2674 if (mb->mbxStatus) {
2675 /* READ_SPARAM mbox error <mbxStatus> state <hba_state> */
James Smarte8b62012007-08-02 11:10:09 -04002676 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
2677 "0319 READ_SPARAM mbxStatus error x%x "
2678 "hba state x%x>\n",
2679 mb->mbxStatus, vport->port_state);
dea31012005-04-17 16:05:31 -05002680 lpfc_linkdown(phba);
dea31012005-04-17 16:05:31 -05002681 goto out;
2682 }
2683
James Smart2e0fef82007-06-17 19:56:36 -05002684 memcpy((uint8_t *) &vport->fc_sparam, (uint8_t *) mp->virt,
dea31012005-04-17 16:05:31 -05002685 sizeof (struct serv_parm));
James Smarta12e07b2006-12-02 13:35:30 -05002686 if (phba->cfg_soft_wwnn)
James Smart2e0fef82007-06-17 19:56:36 -05002687 u64_to_wwn(phba->cfg_soft_wwnn,
2688 vport->fc_sparam.nodeName.u.wwn);
James Smartc3f28af2006-08-18 17:47:18 -04002689 if (phba->cfg_soft_wwpn)
James Smart2e0fef82007-06-17 19:56:36 -05002690 u64_to_wwn(phba->cfg_soft_wwpn,
2691 vport->fc_sparam.portName.u.wwn);
James Smart92d7f7b2007-06-17 19:56:38 -05002692 memcpy(&vport->fc_nodename, &vport->fc_sparam.nodeName,
2693 sizeof(vport->fc_nodename));
2694 memcpy(&vport->fc_portname, &vport->fc_sparam.portName,
2695 sizeof(vport->fc_portname));
2696 if (vport->port_type == LPFC_PHYSICAL_PORT) {
2697 memcpy(&phba->wwnn, &vport->fc_nodename, sizeof(phba->wwnn));
2698 memcpy(&phba->wwpn, &vport->fc_portname, sizeof(phba->wwnn));
2699 }
2700
dea31012005-04-17 16:05:31 -05002701 lpfc_mbuf_free(phba, mp->virt, mp->phys);
2702 kfree(mp);
James Smart2e0fef82007-06-17 19:56:36 -05002703 mempool_free(pmb, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -05002704 return;
2705
2706out:
2707 pmb->context1 = NULL;
2708 lpfc_mbuf_free(phba, mp->virt, mp->phys);
2709 kfree(mp);
James Smart92d7f7b2007-06-17 19:56:38 -05002710 lpfc_issue_clear_la(phba, vport);
2711 mempool_free(pmb, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -05002712 return;
2713}
2714
2715static void
James Smart76a95d72010-11-20 23:11:48 -05002716lpfc_mbx_process_link_up(struct lpfc_hba *phba, struct lpfc_mbx_read_top *la)
dea31012005-04-17 16:05:31 -05002717{
James Smart92d7f7b2007-06-17 19:56:38 -05002718 struct lpfc_vport *vport = phba->pport;
James Smart6fb120a2009-05-22 14:52:59 -04002719 LPFC_MBOXQ_t *sparam_mbox, *cfglink_mbox = NULL;
James Smart2e0fef82007-06-17 19:56:36 -05002720 int i;
James Smart14691152006-12-02 13:34:28 -05002721 struct lpfc_dmabuf *mp;
2722 int rc;
James Smart6fb120a2009-05-22 14:52:59 -04002723 struct fcf_record *fcf_record;
James Smart14691152006-12-02 13:34:28 -05002724
James Smart92d7f7b2007-06-17 19:56:38 -05002725 spin_lock_irq(&phba->hbalock);
James Smart76a95d72010-11-20 23:11:48 -05002726 switch (bf_get(lpfc_mbx_read_top_link_spd, la)) {
2727 case LPFC_LINK_SPEED_1GHZ:
2728 case LPFC_LINK_SPEED_2GHZ:
2729 case LPFC_LINK_SPEED_4GHZ:
2730 case LPFC_LINK_SPEED_8GHZ:
2731 case LPFC_LINK_SPEED_10GHZ:
2732 case LPFC_LINK_SPEED_16GHZ:
2733 phba->fc_linkspeed = bf_get(lpfc_mbx_read_top_link_spd, la);
James Smartf4b4c682009-05-22 14:53:12 -04002734 break;
James Smart92d7f7b2007-06-17 19:56:38 -05002735 default:
James Smart76a95d72010-11-20 23:11:48 -05002736 phba->fc_linkspeed = LPFC_LINK_SPEED_UNKNOWN;
James Smart92d7f7b2007-06-17 19:56:38 -05002737 break;
dea31012005-04-17 16:05:31 -05002738 }
2739
James Smart76a95d72010-11-20 23:11:48 -05002740 phba->fc_topology = bf_get(lpfc_mbx_read_top_topology, la);
James Smart92d7f7b2007-06-17 19:56:38 -05002741 phba->link_flag &= ~LS_NPIV_FAB_SUPPORTED;
dea31012005-04-17 16:05:31 -05002742
James Smart76a95d72010-11-20 23:11:48 -05002743 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
James Smart92d7f7b2007-06-17 19:56:38 -05002744 phba->sli3_options &= ~LPFC_SLI3_NPIV_ENABLED;
dea31012005-04-17 16:05:31 -05002745
James Smart6a9c52c2009-10-02 15:16:51 -04002746 /* if npiv is enabled and this adapter supports npiv log
2747 * a message that npiv is not supported in this topology
2748 */
2749 if (phba->cfg_enable_npiv && phba->max_vpi)
James Smart495a7142008-06-14 22:52:59 -04002750 lpfc_printf_log(phba, KERN_ERR, LOG_LINK_EVENT,
2751 "1309 Link Up Event npiv not supported in loop "
2752 "topology\n");
James Smart92d7f7b2007-06-17 19:56:38 -05002753 /* Get Loop Map information */
James Smart76a95d72010-11-20 23:11:48 -05002754 if (bf_get(lpfc_mbx_read_top_il, la))
James Smart2e0fef82007-06-17 19:56:36 -05002755 vport->fc_flag |= FC_LBIT;
dea31012005-04-17 16:05:31 -05002756
James Smart76a95d72010-11-20 23:11:48 -05002757 vport->fc_myDID = bf_get(lpfc_mbx_read_top_alpa_granted, la);
2758 i = la->lilpBde64.tus.f.bdeSize;
dea31012005-04-17 16:05:31 -05002759
2760 if (i == 0) {
2761 phba->alpa_map[0] = 0;
2762 } else {
James Smarte8b62012007-08-02 11:10:09 -04002763 if (vport->cfg_log_verbose & LOG_LINK_EVENT) {
dea31012005-04-17 16:05:31 -05002764 int numalpa, j, k;
2765 union {
2766 uint8_t pamap[16];
2767 struct {
2768 uint32_t wd1;
2769 uint32_t wd2;
2770 uint32_t wd3;
2771 uint32_t wd4;
2772 } pa;
2773 } un;
2774 numalpa = phba->alpa_map[0];
2775 j = 0;
2776 while (j < numalpa) {
2777 memset(un.pamap, 0, 16);
2778 for (k = 1; j < numalpa; k++) {
2779 un.pamap[k - 1] =
2780 phba->alpa_map[j + 1];
2781 j++;
2782 if (k == 16)
2783 break;
2784 }
2785 /* Link Up Event ALPA map */
2786 lpfc_printf_log(phba,
James Smart92d7f7b2007-06-17 19:56:38 -05002787 KERN_WARNING,
2788 LOG_LINK_EVENT,
James Smarte8b62012007-08-02 11:10:09 -04002789 "1304 Link Up Event "
James Smart92d7f7b2007-06-17 19:56:38 -05002790 "ALPA map Data: x%x "
2791 "x%x x%x x%x\n",
James Smart92d7f7b2007-06-17 19:56:38 -05002792 un.pa.wd1, un.pa.wd2,
2793 un.pa.wd3, un.pa.wd4);
dea31012005-04-17 16:05:31 -05002794 }
2795 }
2796 }
2797 } else {
James Smart92d7f7b2007-06-17 19:56:38 -05002798 if (!(phba->sli3_options & LPFC_SLI3_NPIV_ENABLED)) {
James Smart78b2d852007-08-02 11:10:21 -04002799 if (phba->max_vpi && phba->cfg_enable_npiv &&
James Smart92d7f7b2007-06-17 19:56:38 -05002800 (phba->sli_rev == 3))
2801 phba->sli3_options |= LPFC_SLI3_NPIV_ENABLED;
2802 }
James Smart2e0fef82007-06-17 19:56:36 -05002803 vport->fc_myDID = phba->fc_pref_DID;
2804 vport->fc_flag |= FC_LBIT;
dea31012005-04-17 16:05:31 -05002805 }
James Smart92d7f7b2007-06-17 19:56:38 -05002806 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05002807
2808 lpfc_linkup(phba);
James Smart9f1177a2010-02-26 14:12:57 -05002809 sparam_mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
2810 if (!sparam_mbox)
2811 goto out;
2812
2813 rc = lpfc_read_sparam(phba, sparam_mbox, 0);
2814 if (rc) {
2815 mempool_free(sparam_mbox, phba->mbox_mem_pool);
2816 goto out;
2817 }
2818 sparam_mbox->vport = vport;
2819 sparam_mbox->mbox_cmpl = lpfc_mbx_cmpl_read_sparam;
2820 rc = lpfc_sli_issue_mbox(phba, sparam_mbox, MBX_NOWAIT);
2821 if (rc == MBX_NOT_FINISHED) {
2822 mp = (struct lpfc_dmabuf *) sparam_mbox->context1;
2823 lpfc_mbuf_free(phba, mp->virt, mp->phys);
2824 kfree(mp);
2825 mempool_free(sparam_mbox, phba->mbox_mem_pool);
2826 goto out;
dea31012005-04-17 16:05:31 -05002827 }
2828
James Smart76a95d72010-11-20 23:11:48 -05002829 if (!(phba->hba_flag & HBA_FCOE_MODE)) {
James Smart6fb120a2009-05-22 14:52:59 -04002830 cfglink_mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
2831 if (!cfglink_mbox)
2832 goto out;
James Smart2e0fef82007-06-17 19:56:36 -05002833 vport->port_state = LPFC_LOCAL_CFG_LINK;
dea31012005-04-17 16:05:31 -05002834 lpfc_config_link(phba, cfglink_mbox);
James Smart2e0fef82007-06-17 19:56:36 -05002835 cfglink_mbox->vport = vport;
Jamie Wellnitz25594c62006-02-28 19:25:34 -05002836 cfglink_mbox->mbox_cmpl = lpfc_mbx_cmpl_local_config_link;
James Smart0b727fe2007-10-27 13:37:25 -04002837 rc = lpfc_sli_issue_mbox(phba, cfglink_mbox, MBX_NOWAIT);
James Smart6fb120a2009-05-22 14:52:59 -04002838 if (rc == MBX_NOT_FINISHED) {
2839 mempool_free(cfglink_mbox, phba->mbox_mem_pool);
2840 goto out;
2841 }
2842 } else {
James Smart32b97932009-07-19 10:01:21 -04002843 vport->port_state = LPFC_VPORT_UNKNOWN;
James Smart6fb120a2009-05-22 14:52:59 -04002844 /*
2845 * Add the driver's default FCF record at FCF index 0 now. This
2846 * is phase 1 implementation that support FCF index 0 and driver
2847 * defaults.
2848 */
James Smart45ed1192009-10-02 15:17:02 -04002849 if (!(phba->hba_flag & HBA_FIP_SUPPORT)) {
James Smart6fb120a2009-05-22 14:52:59 -04002850 fcf_record = kzalloc(sizeof(struct fcf_record),
2851 GFP_KERNEL);
2852 if (unlikely(!fcf_record)) {
2853 lpfc_printf_log(phba, KERN_ERR,
2854 LOG_MBOX | LOG_SLI,
2855 "2554 Could not allocate memmory for "
2856 "fcf record\n");
2857 rc = -ENODEV;
2858 goto out;
2859 }
2860
2861 lpfc_sli4_build_dflt_fcf_record(phba, fcf_record,
2862 LPFC_FCOE_FCF_DEF_INDEX);
2863 rc = lpfc_sli4_add_fcf_record(phba, fcf_record);
2864 if (unlikely(rc)) {
2865 lpfc_printf_log(phba, KERN_ERR,
2866 LOG_MBOX | LOG_SLI,
2867 "2013 Could not manually add FCF "
2868 "record 0, status %d\n", rc);
2869 rc = -ENODEV;
2870 kfree(fcf_record);
2871 goto out;
2872 }
2873 kfree(fcf_record);
2874 }
2875 /*
2876 * The driver is expected to do FIP/FCF. Call the port
2877 * and get the FCF Table.
2878 */
James Smart32b97932009-07-19 10:01:21 -04002879 spin_lock_irq(&phba->hbalock);
James Smarta93ff372010-10-22 11:06:08 -04002880 if (phba->hba_flag & FCF_TS_INPROG) {
James Smart32b97932009-07-19 10:01:21 -04002881 spin_unlock_irq(&phba->hbalock);
2882 return;
2883 }
James Smart0c9ab6f2010-02-26 14:15:57 -05002884 /* This is the initial FCF discovery scan */
2885 phba->fcf.fcf_flag |= FCF_INIT_DISC;
James Smart32b97932009-07-19 10:01:21 -04002886 spin_unlock_irq(&phba->hbalock);
James Smart0c9ab6f2010-02-26 14:15:57 -05002887 lpfc_printf_log(phba, KERN_INFO, LOG_FIP | LOG_DISCOVERY,
2888 "2778 Start FCF table scan at linkup\n");
James Smart0c9ab6f2010-02-26 14:15:57 -05002889 rc = lpfc_sli4_fcf_scan_read_fcf_rec(phba,
2890 LPFC_FCOE_FCF_GET_FIRST);
2891 if (rc) {
2892 spin_lock_irq(&phba->hbalock);
2893 phba->fcf.fcf_flag &= ~FCF_INIT_DISC;
2894 spin_unlock_irq(&phba->hbalock);
James Smart6fb120a2009-05-22 14:52:59 -04002895 goto out;
James Smart0c9ab6f2010-02-26 14:15:57 -05002896 }
James Smart38b92ef2010-08-04 16:11:39 -04002897 /* Reset FCF roundrobin bmask for new discovery */
2898 memset(phba->fcf.fcf_rr_bmask, 0,
2899 sizeof(*phba->fcf.fcf_rr_bmask));
dea31012005-04-17 16:05:31 -05002900 }
James Smart6fb120a2009-05-22 14:52:59 -04002901
2902 return;
James Smart92d7f7b2007-06-17 19:56:38 -05002903out:
2904 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
James Smarte8b62012007-08-02 11:10:09 -04002905 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
2906 "0263 Discovery Mailbox error: state: 0x%x : %p %p\n",
2907 vport->port_state, sparam_mbox, cfglink_mbox);
James Smart92d7f7b2007-06-17 19:56:38 -05002908 lpfc_issue_clear_la(phba, vport);
2909 return;
dea31012005-04-17 16:05:31 -05002910}
2911
2912static void
James Smart84774a42008-08-24 21:50:06 -04002913lpfc_enable_la(struct lpfc_hba *phba)
James Smart2e0fef82007-06-17 19:56:36 -05002914{
dea31012005-04-17 16:05:31 -05002915 uint32_t control;
2916 struct lpfc_sli *psli = &phba->sli;
James Smart2e0fef82007-06-17 19:56:36 -05002917 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05002918 psli->sli_flag |= LPFC_PROCESS_LA;
James Smart3772a992009-05-22 14:50:54 -04002919 if (phba->sli_rev <= LPFC_SLI_REV3) {
2920 control = readl(phba->HCregaddr);
2921 control |= HC_LAINT_ENA;
2922 writel(control, phba->HCregaddr);
2923 readl(phba->HCregaddr); /* flush */
2924 }
James Smart2e0fef82007-06-17 19:56:36 -05002925 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05002926}
2927
James Smart84774a42008-08-24 21:50:06 -04002928static void
2929lpfc_mbx_issue_link_down(struct lpfc_hba *phba)
2930{
2931 lpfc_linkdown(phba);
2932 lpfc_enable_la(phba);
James Smart6fb120a2009-05-22 14:52:59 -04002933 lpfc_unregister_unused_fcf(phba);
James Smart84774a42008-08-24 21:50:06 -04002934 /* turn on Link Attention interrupts - no CLEAR_LA needed */
2935}
2936
2937
dea31012005-04-17 16:05:31 -05002938/*
James Smart76a95d72010-11-20 23:11:48 -05002939 * This routine handles processing a READ_TOPOLOGY mailbox
dea31012005-04-17 16:05:31 -05002940 * command upon completion. It is setup in the LPFC_MBOXQ
2941 * as the completion routine when the command is
2942 * handed off to the SLI layer.
2943 */
2944void
James Smart76a95d72010-11-20 23:11:48 -05002945lpfc_mbx_cmpl_read_topology(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
dea31012005-04-17 16:05:31 -05002946{
James Smart2e0fef82007-06-17 19:56:36 -05002947 struct lpfc_vport *vport = pmb->vport;
2948 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart76a95d72010-11-20 23:11:48 -05002949 struct lpfc_mbx_read_top *la;
James Smart04c68492009-05-22 14:52:52 -04002950 MAILBOX_t *mb = &pmb->u.mb;
dea31012005-04-17 16:05:31 -05002951 struct lpfc_dmabuf *mp = (struct lpfc_dmabuf *) (pmb->context1);
2952
James Smart0d2b6b82008-06-14 22:52:47 -04002953 /* Unblock ELS traffic */
2954 phba->sli.ring[LPFC_ELS_RING].flag &= ~LPFC_STOP_IOCB_EVENT;
dea31012005-04-17 16:05:31 -05002955 /* Check for error */
2956 if (mb->mbxStatus) {
James Smarted957682007-06-17 19:56:37 -05002957 lpfc_printf_log(phba, KERN_INFO, LOG_LINK_EVENT,
James Smarte8b62012007-08-02 11:10:09 -04002958 "1307 READ_LA mbox error x%x state x%x\n",
2959 mb->mbxStatus, vport->port_state);
dea31012005-04-17 16:05:31 -05002960 lpfc_mbx_issue_link_down(phba);
James Smart2e0fef82007-06-17 19:56:36 -05002961 phba->link_state = LPFC_HBA_ERROR;
James Smart76a95d72010-11-20 23:11:48 -05002962 goto lpfc_mbx_cmpl_read_topology_free_mbuf;
dea31012005-04-17 16:05:31 -05002963 }
2964
James Smart76a95d72010-11-20 23:11:48 -05002965 la = (struct lpfc_mbx_read_top *) &pmb->u.mb.un.varReadTop;
dea31012005-04-17 16:05:31 -05002966
2967 memcpy(&phba->alpa_map[0], mp->virt, 128);
2968
James Smart2e0fef82007-06-17 19:56:36 -05002969 spin_lock_irq(shost->host_lock);
James Smart76a95d72010-11-20 23:11:48 -05002970 if (bf_get(lpfc_mbx_read_top_pb, la))
James Smart2e0fef82007-06-17 19:56:36 -05002971 vport->fc_flag |= FC_BYPASSED_MODE;
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002972 else
James Smart2e0fef82007-06-17 19:56:36 -05002973 vport->fc_flag &= ~FC_BYPASSED_MODE;
2974 spin_unlock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05002975
James Smart0c287582009-06-10 17:22:56 -04002976 if ((phba->fc_eventTag < la->eventTag) ||
James Smart92d7f7b2007-06-17 19:56:38 -05002977 (phba->fc_eventTag == la->eventTag)) {
dea31012005-04-17 16:05:31 -05002978 phba->fc_stat.LinkMultiEvent++;
James Smart76a95d72010-11-20 23:11:48 -05002979 if (bf_get(lpfc_mbx_read_top_att_type, la) == LPFC_ATT_LINK_UP)
dea31012005-04-17 16:05:31 -05002980 if (phba->fc_eventTag != 0)
2981 lpfc_linkdown(phba);
James Smart92d7f7b2007-06-17 19:56:38 -05002982 }
dea31012005-04-17 16:05:31 -05002983
2984 phba->fc_eventTag = la->eventTag;
James Smart72100cc2010-02-12 14:43:01 -05002985 spin_lock_irq(&phba->hbalock);
James Smart76a95d72010-11-20 23:11:48 -05002986 if (bf_get(lpfc_mbx_read_top_mm, la))
James Smart84774a42008-08-24 21:50:06 -04002987 phba->sli.sli_flag |= LPFC_MENLO_MAINT;
2988 else
2989 phba->sli.sli_flag &= ~LPFC_MENLO_MAINT;
James Smart72100cc2010-02-12 14:43:01 -05002990 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05002991
James Smart4d9ab992009-10-02 15:16:39 -04002992 phba->link_events++;
James Smart76a95d72010-11-20 23:11:48 -05002993 if ((bf_get(lpfc_mbx_read_top_att_type, la) == LPFC_ATT_LINK_UP) &&
2994 (!bf_get(lpfc_mbx_read_top_mm, la))) {
dea31012005-04-17 16:05:31 -05002995 phba->fc_stat.LinkUp++;
James Smart2e0fef82007-06-17 19:56:36 -05002996 if (phba->link_flag & LS_LOOPBACK_MODE) {
James Smart3163f722008-02-08 18:50:25 -05002997 lpfc_printf_log(phba, KERN_ERR, LOG_LINK_EVENT,
James Smarte8b62012007-08-02 11:10:09 -04002998 "1306 Link Up Event in loop back mode "
2999 "x%x received Data: x%x x%x x%x x%x\n",
3000 la->eventTag, phba->fc_eventTag,
James Smart76a95d72010-11-20 23:11:48 -05003001 bf_get(lpfc_mbx_read_top_alpa_granted,
3002 la),
3003 bf_get(lpfc_mbx_read_top_link_spd, la),
James Smarte8b62012007-08-02 11:10:09 -04003004 phba->alpa_map[0]);
James Smart5b8bd0c2007-04-25 09:52:49 -04003005 } else {
3006 lpfc_printf_log(phba, KERN_ERR, LOG_LINK_EVENT,
James Smarte8b62012007-08-02 11:10:09 -04003007 "1303 Link Up Event x%x received "
James Smart84774a42008-08-24 21:50:06 -04003008 "Data: x%x x%x x%x x%x x%x x%x %d\n",
James Smarte8b62012007-08-02 11:10:09 -04003009 la->eventTag, phba->fc_eventTag,
James Smart76a95d72010-11-20 23:11:48 -05003010 bf_get(lpfc_mbx_read_top_alpa_granted,
3011 la),
3012 bf_get(lpfc_mbx_read_top_link_spd, la),
James Smart84774a42008-08-24 21:50:06 -04003013 phba->alpa_map[0],
James Smart76a95d72010-11-20 23:11:48 -05003014 bf_get(lpfc_mbx_read_top_mm, la),
3015 bf_get(lpfc_mbx_read_top_fa, la),
James Smart84774a42008-08-24 21:50:06 -04003016 phba->wait_4_mlo_maint_flg);
James Smart5b8bd0c2007-04-25 09:52:49 -04003017 }
James Smart92d7f7b2007-06-17 19:56:38 -05003018 lpfc_mbx_process_link_up(phba, la);
James Smart76a95d72010-11-20 23:11:48 -05003019 } else if (bf_get(lpfc_mbx_read_top_att_type, la) ==
3020 LPFC_ATT_LINK_DOWN) {
dea31012005-04-17 16:05:31 -05003021 phba->fc_stat.LinkDown++;
James Smart3163f722008-02-08 18:50:25 -05003022 if (phba->link_flag & LS_LOOPBACK_MODE) {
3023 lpfc_printf_log(phba, KERN_ERR, LOG_LINK_EVENT,
3024 "1308 Link Down Event in loop back mode "
3025 "x%x received "
3026 "Data: x%x x%x x%x\n",
3027 la->eventTag, phba->fc_eventTag,
3028 phba->pport->port_state, vport->fc_flag);
3029 }
3030 else {
3031 lpfc_printf_log(phba, KERN_ERR, LOG_LINK_EVENT,
James Smarte8b62012007-08-02 11:10:09 -04003032 "1305 Link Down Event x%x received "
James Smart84774a42008-08-24 21:50:06 -04003033 "Data: x%x x%x x%x x%x x%x\n",
3034 la->eventTag, phba->fc_eventTag,
3035 phba->pport->port_state, vport->fc_flag,
James Smart76a95d72010-11-20 23:11:48 -05003036 bf_get(lpfc_mbx_read_top_mm, la),
3037 bf_get(lpfc_mbx_read_top_fa, la));
James Smart84774a42008-08-24 21:50:06 -04003038 }
3039 lpfc_mbx_issue_link_down(phba);
3040 }
James Smart76a95d72010-11-20 23:11:48 -05003041 if ((bf_get(lpfc_mbx_read_top_mm, la)) &&
3042 (bf_get(lpfc_mbx_read_top_att_type, la) == LPFC_ATT_LINK_UP)) {
James Smart84774a42008-08-24 21:50:06 -04003043 if (phba->link_state != LPFC_LINK_DOWN) {
3044 phba->fc_stat.LinkDown++;
3045 lpfc_printf_log(phba, KERN_ERR, LOG_LINK_EVENT,
3046 "1312 Link Down Event x%x received "
dea31012005-04-17 16:05:31 -05003047 "Data: x%x x%x x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04003048 la->eventTag, phba->fc_eventTag,
James Smart2e0fef82007-06-17 19:56:36 -05003049 phba->pport->port_state, vport->fc_flag);
James Smart84774a42008-08-24 21:50:06 -04003050 lpfc_mbx_issue_link_down(phba);
3051 } else
3052 lpfc_enable_la(phba);
3053
3054 lpfc_printf_log(phba, KERN_ERR, LOG_LINK_EVENT,
3055 "1310 Menlo Maint Mode Link up Event x%x rcvd "
3056 "Data: x%x x%x x%x\n",
3057 la->eventTag, phba->fc_eventTag,
3058 phba->pport->port_state, vport->fc_flag);
3059 /*
3060 * The cmnd that triggered this will be waiting for this
3061 * signal.
3062 */
3063 /* WAKEUP for MENLO_SET_MODE or MENLO_RESET command. */
3064 if (phba->wait_4_mlo_maint_flg) {
3065 phba->wait_4_mlo_maint_flg = 0;
3066 wake_up_interruptible(&phba->wait_4_mlo_m_q);
James Smart3163f722008-02-08 18:50:25 -05003067 }
James Smart84774a42008-08-24 21:50:06 -04003068 }
3069
James Smart76a95d72010-11-20 23:11:48 -05003070 if (bf_get(lpfc_mbx_read_top_fa, la)) {
3071 if (bf_get(lpfc_mbx_read_top_mm, la))
James Smart84774a42008-08-24 21:50:06 -04003072 lpfc_issue_clear_la(phba, vport);
3073 lpfc_printf_log(phba, KERN_INFO, LOG_LINK_EVENT,
James Smart76a95d72010-11-20 23:11:48 -05003074 "1311 fa %d\n",
3075 bf_get(lpfc_mbx_read_top_fa, la));
dea31012005-04-17 16:05:31 -05003076 }
3077
James Smart76a95d72010-11-20 23:11:48 -05003078lpfc_mbx_cmpl_read_topology_free_mbuf:
dea31012005-04-17 16:05:31 -05003079 lpfc_mbuf_free(phba, mp->virt, mp->phys);
3080 kfree(mp);
3081 mempool_free(pmb, phba->mbox_mem_pool);
3082 return;
3083}
3084
3085/*
3086 * This routine handles processing a REG_LOGIN mailbox
3087 * command upon completion. It is setup in the LPFC_MBOXQ
3088 * as the completion routine when the command is
3089 * handed off to the SLI layer.
3090 */
3091void
James Smart2e0fef82007-06-17 19:56:36 -05003092lpfc_mbx_cmpl_reg_login(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
dea31012005-04-17 16:05:31 -05003093{
James Smart2e0fef82007-06-17 19:56:36 -05003094 struct lpfc_vport *vport = pmb->vport;
James Smart92d7f7b2007-06-17 19:56:38 -05003095 struct lpfc_dmabuf *mp = (struct lpfc_dmabuf *) (pmb->context1);
James Smart2e0fef82007-06-17 19:56:36 -05003096 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) pmb->context2;
James Smartffc95492010-06-07 15:23:17 -04003097 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05003098
dea31012005-04-17 16:05:31 -05003099 pmb->context1 = NULL;
James Smartd439d282010-09-29 11:18:45 -04003100 pmb->context2 = NULL;
dea31012005-04-17 16:05:31 -05003101
James Smartffc95492010-06-07 15:23:17 -04003102 if (ndlp->nlp_flag & NLP_REG_LOGIN_SEND)
3103 ndlp->nlp_flag &= ~NLP_REG_LOGIN_SEND;
3104
3105 if (ndlp->nlp_flag & NLP_IGNR_REG_CMPL ||
3106 ndlp->nlp_state != NLP_STE_REG_LOGIN_ISSUE) {
3107 /* We rcvd a rscn after issuing this
3108 * mbox reg login, we may have cycled
3109 * back through the state and be
3110 * back at reg login state so this
3111 * mbox needs to be ignored becase
3112 * there is another reg login in
3113 * proccess.
3114 */
3115 spin_lock_irq(shost->host_lock);
3116 ndlp->nlp_flag &= ~NLP_IGNR_REG_CMPL;
3117 spin_unlock_irq(shost->host_lock);
3118 if (phba->sli_rev == LPFC_SLI_REV4)
3119 lpfc_sli4_free_rpi(phba,
3120 pmb->u.mb.un.varRegLogin.rpi);
3121
3122 } else
3123 /* Good status, call state machine */
3124 lpfc_disc_state_machine(vport, ndlp, pmb,
3125 NLP_EVT_CMPL_REG_LOGIN);
3126
dea31012005-04-17 16:05:31 -05003127 lpfc_mbuf_free(phba, mp->virt, mp->phys);
3128 kfree(mp);
James Smart2e0fef82007-06-17 19:56:36 -05003129 mempool_free(pmb, phba->mbox_mem_pool);
James Smartfa4066b2008-01-11 01:53:27 -05003130 /* decrement the node reference count held for this callback
3131 * function.
3132 */
James Smart329f9bc2007-04-25 09:53:01 -04003133 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05003134
3135 return;
3136}
3137
James Smart92d7f7b2007-06-17 19:56:38 -05003138static void
3139lpfc_mbx_cmpl_unreg_vpi(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
3140{
James Smart04c68492009-05-22 14:52:52 -04003141 MAILBOX_t *mb = &pmb->u.mb;
James Smart92d7f7b2007-06-17 19:56:38 -05003142 struct lpfc_vport *vport = pmb->vport;
3143 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
3144
3145 switch (mb->mbxStatus) {
3146 case 0x0011:
3147 case 0x0020:
James Smarte8b62012007-08-02 11:10:09 -04003148 lpfc_printf_vlog(vport, KERN_INFO, LOG_NODE,
3149 "0911 cmpl_unreg_vpi, mb status = 0x%x\n",
3150 mb->mbxStatus);
James Smart92d7f7b2007-06-17 19:56:38 -05003151 break;
James Smart78730cf2010-04-06 15:06:30 -04003152 /* If VPI is busy, reset the HBA */
3153 case 0x9700:
3154 lpfc_printf_vlog(vport, KERN_ERR, LOG_NODE,
3155 "2798 Unreg_vpi failed vpi 0x%x, mb status = 0x%x\n",
3156 vport->vpi, mb->mbxStatus);
3157 if (!(phba->pport->load_flag & FC_UNLOADING))
3158 lpfc_workq_post_event(phba, NULL, NULL,
3159 LPFC_EVT_RESET_HBA);
James Smart92d7f7b2007-06-17 19:56:38 -05003160 }
James Smart72100cc2010-02-12 14:43:01 -05003161 spin_lock_irq(shost->host_lock);
James Smartc8685952009-11-18 15:39:16 -05003162 vport->vpi_state &= ~LPFC_VPI_REGISTERED;
James Smart19878072009-12-21 17:02:00 -05003163 vport->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
James Smart72100cc2010-02-12 14:43:01 -05003164 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05003165 vport->unreg_vpi_cmpl = VPORT_OK;
3166 mempool_free(pmb, phba->mbox_mem_pool);
James Smart19ca7602010-11-20 23:11:55 -05003167 lpfc_cleanup_vports_rrqs(vport);
James Smart92d7f7b2007-06-17 19:56:38 -05003168 /*
3169 * This shost reference might have been taken at the beginning of
3170 * lpfc_vport_delete()
3171 */
James Smart1c6f4ef52009-11-18 15:40:49 -05003172 if ((vport->load_flag & FC_UNLOADING) && (vport != phba->pport))
James Smart92d7f7b2007-06-17 19:56:38 -05003173 scsi_host_put(shost);
3174}
3175
James Smartd7c255b2008-08-24 21:50:00 -04003176int
James Smart92d7f7b2007-06-17 19:56:38 -05003177lpfc_mbx_unreg_vpi(struct lpfc_vport *vport)
3178{
3179 struct lpfc_hba *phba = vport->phba;
3180 LPFC_MBOXQ_t *mbox;
3181 int rc;
3182
3183 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
3184 if (!mbox)
James Smartd7c255b2008-08-24 21:50:00 -04003185 return 1;
James Smart92d7f7b2007-06-17 19:56:38 -05003186
3187 lpfc_unreg_vpi(phba, vport->vpi, mbox);
3188 mbox->vport = vport;
3189 mbox->mbox_cmpl = lpfc_mbx_cmpl_unreg_vpi;
James Smart0b727fe2007-10-27 13:37:25 -04003190 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
James Smart92d7f7b2007-06-17 19:56:38 -05003191 if (rc == MBX_NOT_FINISHED) {
James Smarte8b62012007-08-02 11:10:09 -04003192 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX | LOG_VPORT,
3193 "1800 Could not issue unreg_vpi\n");
James Smart92d7f7b2007-06-17 19:56:38 -05003194 mempool_free(mbox, phba->mbox_mem_pool);
3195 vport->unreg_vpi_cmpl = VPORT_ERROR;
James Smartd7c255b2008-08-24 21:50:00 -04003196 return rc;
James Smart92d7f7b2007-06-17 19:56:38 -05003197 }
James Smartd7c255b2008-08-24 21:50:00 -04003198 return 0;
James Smart92d7f7b2007-06-17 19:56:38 -05003199}
3200
3201static void
3202lpfc_mbx_cmpl_reg_vpi(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
3203{
3204 struct lpfc_vport *vport = pmb->vport;
3205 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart04c68492009-05-22 14:52:52 -04003206 MAILBOX_t *mb = &pmb->u.mb;
James Smart92d7f7b2007-06-17 19:56:38 -05003207
3208 switch (mb->mbxStatus) {
3209 case 0x0011:
3210 case 0x9601:
3211 case 0x9602:
James Smarte8b62012007-08-02 11:10:09 -04003212 lpfc_printf_vlog(vport, KERN_INFO, LOG_NODE,
3213 "0912 cmpl_reg_vpi, mb status = 0x%x\n",
3214 mb->mbxStatus);
James Smart92d7f7b2007-06-17 19:56:38 -05003215 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
3216 spin_lock_irq(shost->host_lock);
3217 vport->fc_flag &= ~(FC_FABRIC | FC_PUBLIC_LOOP);
3218 spin_unlock_irq(shost->host_lock);
3219 vport->fc_myDID = 0;
3220 goto out;
3221 }
James Smart92d7f7b2007-06-17 19:56:38 -05003222
James Smart72100cc2010-02-12 14:43:01 -05003223 spin_lock_irq(shost->host_lock);
James Smartc8685952009-11-18 15:39:16 -05003224 vport->vpi_state |= LPFC_VPI_REGISTERED;
James Smart695a8142010-01-26 23:08:03 -05003225 vport->fc_flag &= ~FC_VPORT_NEEDS_REG_VPI;
James Smart72100cc2010-02-12 14:43:01 -05003226 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05003227 vport->num_disc_nodes = 0;
3228 /* go thru NPR list and issue ELS PLOGIs */
3229 if (vport->fc_npr_cnt)
3230 lpfc_els_disc_plogi(vport);
3231
3232 if (!vport->num_disc_nodes) {
3233 spin_lock_irq(shost->host_lock);
3234 vport->fc_flag &= ~FC_NDISC_ACTIVE;
3235 spin_unlock_irq(shost->host_lock);
3236 lpfc_can_disctmo(vport);
3237 }
3238 vport->port_state = LPFC_VPORT_READY;
3239
3240out:
3241 mempool_free(pmb, phba->mbox_mem_pool);
3242 return;
3243}
3244
James Smart21e9a0a2009-05-22 14:53:21 -04003245/**
3246 * lpfc_create_static_vport - Read HBA config region to create static vports.
3247 * @phba: pointer to lpfc hba data structure.
3248 *
3249 * This routine issue a DUMP mailbox command for config region 22 to get
3250 * the list of static vports to be created. The function create vports
3251 * based on the information returned from the HBA.
3252 **/
3253void
3254lpfc_create_static_vport(struct lpfc_hba *phba)
3255{
3256 LPFC_MBOXQ_t *pmb = NULL;
3257 MAILBOX_t *mb;
3258 struct static_vport_info *vport_info;
James Smart1c6834a2009-07-19 10:01:26 -04003259 int rc = 0, i;
James Smart21e9a0a2009-05-22 14:53:21 -04003260 struct fc_vport_identifiers vport_id;
3261 struct fc_vport *new_fc_vport;
3262 struct Scsi_Host *shost;
3263 struct lpfc_vport *vport;
3264 uint16_t offset = 0;
3265 uint8_t *vport_buff;
James Smart1c6834a2009-07-19 10:01:26 -04003266 struct lpfc_dmabuf *mp;
3267 uint32_t byte_count = 0;
James Smart21e9a0a2009-05-22 14:53:21 -04003268
3269 pmb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
3270 if (!pmb) {
3271 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3272 "0542 lpfc_create_static_vport failed to"
3273 " allocate mailbox memory\n");
3274 return;
3275 }
3276
3277 mb = &pmb->u.mb;
3278
3279 vport_info = kzalloc(sizeof(struct static_vport_info), GFP_KERNEL);
3280 if (!vport_info) {
3281 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3282 "0543 lpfc_create_static_vport failed to"
3283 " allocate vport_info\n");
3284 mempool_free(pmb, phba->mbox_mem_pool);
3285 return;
3286 }
3287
3288 vport_buff = (uint8_t *) vport_info;
3289 do {
James Smart1c6834a2009-07-19 10:01:26 -04003290 if (lpfc_dump_static_vport(phba, pmb, offset))
3291 goto out;
3292
James Smart21e9a0a2009-05-22 14:53:21 -04003293 pmb->vport = phba->pport;
3294 rc = lpfc_sli_issue_mbox_wait(phba, pmb, LPFC_MBOX_TMO);
3295
3296 if ((rc != MBX_SUCCESS) || mb->mbxStatus) {
3297 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
3298 "0544 lpfc_create_static_vport failed to"
3299 " issue dump mailbox command ret 0x%x "
3300 "status 0x%x\n",
3301 rc, mb->mbxStatus);
3302 goto out;
3303 }
3304
James Smart1c6834a2009-07-19 10:01:26 -04003305 if (phba->sli_rev == LPFC_SLI_REV4) {
3306 byte_count = pmb->u.mqe.un.mb_words[5];
3307 mp = (struct lpfc_dmabuf *) pmb->context2;
3308 if (byte_count > sizeof(struct static_vport_info) -
3309 offset)
3310 byte_count = sizeof(struct static_vport_info)
3311 - offset;
3312 memcpy(vport_buff + offset, mp->virt, byte_count);
3313 offset += byte_count;
3314 } else {
3315 if (mb->un.varDmp.word_cnt >
3316 sizeof(struct static_vport_info) - offset)
3317 mb->un.varDmp.word_cnt =
3318 sizeof(struct static_vport_info)
3319 - offset;
3320 byte_count = mb->un.varDmp.word_cnt;
3321 lpfc_sli_pcimem_bcopy(((uint8_t *)mb) + DMP_RSP_OFFSET,
3322 vport_buff + offset,
3323 byte_count);
James Smart21e9a0a2009-05-22 14:53:21 -04003324
James Smart1c6834a2009-07-19 10:01:26 -04003325 offset += byte_count;
3326 }
James Smart21e9a0a2009-05-22 14:53:21 -04003327
James Smart1c6834a2009-07-19 10:01:26 -04003328 } while (byte_count &&
James Smart21e9a0a2009-05-22 14:53:21 -04003329 offset < sizeof(struct static_vport_info));
3330
3331
3332 if ((le32_to_cpu(vport_info->signature) != VPORT_INFO_SIG) ||
3333 ((le32_to_cpu(vport_info->rev) & VPORT_INFO_REV_MASK)
3334 != VPORT_INFO_REV)) {
3335 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3336 "0545 lpfc_create_static_vport bad"
3337 " information header 0x%x 0x%x\n",
3338 le32_to_cpu(vport_info->signature),
3339 le32_to_cpu(vport_info->rev) & VPORT_INFO_REV_MASK);
3340
3341 goto out;
3342 }
3343
3344 shost = lpfc_shost_from_vport(phba->pport);
3345
3346 for (i = 0; i < MAX_STATIC_VPORT_COUNT; i++) {
3347 memset(&vport_id, 0, sizeof(vport_id));
3348 vport_id.port_name = wwn_to_u64(vport_info->vport_list[i].wwpn);
3349 vport_id.node_name = wwn_to_u64(vport_info->vport_list[i].wwnn);
3350 if (!vport_id.port_name || !vport_id.node_name)
3351 continue;
3352
3353 vport_id.roles = FC_PORT_ROLE_FCP_INITIATOR;
3354 vport_id.vport_type = FC_PORTTYPE_NPIV;
3355 vport_id.disable = false;
3356 new_fc_vport = fc_vport_create(shost, 0, &vport_id);
3357
3358 if (!new_fc_vport) {
3359 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
3360 "0546 lpfc_create_static_vport failed to"
James Smarte4e74272009-07-19 10:01:38 -04003361 " create vport\n");
James Smart21e9a0a2009-05-22 14:53:21 -04003362 continue;
3363 }
3364
3365 vport = *(struct lpfc_vport **)new_fc_vport->dd_data;
3366 vport->vport_flag |= STATIC_VPORT;
3367 }
3368
3369out:
James Smart21e9a0a2009-05-22 14:53:21 -04003370 kfree(vport_info);
James Smart1c6834a2009-07-19 10:01:26 -04003371 if (rc != MBX_TIMEOUT) {
3372 if (pmb->context2) {
3373 mp = (struct lpfc_dmabuf *) pmb->context2;
3374 lpfc_mbuf_free(phba, mp->virt, mp->phys);
3375 kfree(mp);
3376 }
James Smart21e9a0a2009-05-22 14:53:21 -04003377 mempool_free(pmb, phba->mbox_mem_pool);
James Smart1c6834a2009-07-19 10:01:26 -04003378 }
James Smart21e9a0a2009-05-22 14:53:21 -04003379
3380 return;
3381}
3382
dea31012005-04-17 16:05:31 -05003383/*
3384 * This routine handles processing a Fabric REG_LOGIN mailbox
3385 * command upon completion. It is setup in the LPFC_MBOXQ
3386 * as the completion routine when the command is
3387 * handed off to the SLI layer.
3388 */
3389void
James Smart2e0fef82007-06-17 19:56:36 -05003390lpfc_mbx_cmpl_fabric_reg_login(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
dea31012005-04-17 16:05:31 -05003391{
James Smart92d7f7b2007-06-17 19:56:38 -05003392 struct lpfc_vport *vport = pmb->vport;
James Smart21e9a0a2009-05-22 14:53:21 -04003393 MAILBOX_t *mb = &pmb->u.mb;
James Smart2e0fef82007-06-17 19:56:36 -05003394 struct lpfc_dmabuf *mp = (struct lpfc_dmabuf *) (pmb->context1);
James Smart92d7f7b2007-06-17 19:56:38 -05003395 struct lpfc_nodelist *ndlp;
dea31012005-04-17 16:05:31 -05003396
James Smart549e55c2007-08-02 11:09:51 -04003397 ndlp = (struct lpfc_nodelist *) pmb->context2;
James Smart329f9bc2007-04-25 09:53:01 -04003398 pmb->context1 = NULL;
3399 pmb->context2 = NULL;
James Smartd439d282010-09-29 11:18:45 -04003400
dea31012005-04-17 16:05:31 -05003401 if (mb->mbxStatus) {
James Smart21e9a0a2009-05-22 14:53:21 -04003402 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
3403 "0258 Register Fabric login error: 0x%x\n",
3404 mb->mbxStatus);
dea31012005-04-17 16:05:31 -05003405 lpfc_mbuf_free(phba, mp->virt, mp->phys);
3406 kfree(mp);
James Smart329f9bc2007-04-25 09:53:01 -04003407 mempool_free(pmb, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -05003408
James Smart76a95d72010-11-20 23:11:48 -05003409 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
James Smart92d7f7b2007-06-17 19:56:38 -05003410 /* FLOGI failed, use loop map to make discovery list */
3411 lpfc_disc_list_loopmap(vport);
dea31012005-04-17 16:05:31 -05003412
James Smart92d7f7b2007-06-17 19:56:38 -05003413 /* Start discovery */
3414 lpfc_disc_start(vport);
James Smarte47c9092008-02-08 18:49:26 -05003415 /* Decrement the reference count to ndlp after the
3416 * reference to the ndlp are done.
3417 */
3418 lpfc_nlp_put(ndlp);
James Smart92d7f7b2007-06-17 19:56:38 -05003419 return;
3420 }
3421
3422 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
James Smarte47c9092008-02-08 18:49:26 -05003423 /* Decrement the reference count to ndlp after the reference
3424 * to the ndlp are done.
3425 */
3426 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05003427 return;
3428 }
3429
dea31012005-04-17 16:05:31 -05003430 ndlp->nlp_rpi = mb->un.varWords[0];
James Smart21e9a0a2009-05-22 14:53:21 -04003431 ndlp->nlp_flag |= NLP_RPI_VALID;
dea31012005-04-17 16:05:31 -05003432 ndlp->nlp_type |= NLP_FABRIC;
James Smart2e0fef82007-06-17 19:56:36 -05003433 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
dea31012005-04-17 16:05:31 -05003434
James Smart2e0fef82007-06-17 19:56:36 -05003435 if (vport->port_state == LPFC_FABRIC_CFG_LINK) {
James Smart4b40c592010-03-15 11:25:44 -04003436 /* when physical port receive logo donot start
3437 * vport discovery */
3438 if (!(vport->fc_flag & FC_LOGO_RCVD_DID_CHNG))
3439 lpfc_start_fdiscs(phba);
3440 else
3441 vport->fc_flag &= ~FC_LOGO_RCVD_DID_CHNG ;
James Smart92d7f7b2007-06-17 19:56:38 -05003442 lpfc_do_scr_ns_plogi(phba, vport);
dea31012005-04-17 16:05:31 -05003443 }
3444
3445 lpfc_mbuf_free(phba, mp->virt, mp->phys);
3446 kfree(mp);
James Smart329f9bc2007-04-25 09:53:01 -04003447 mempool_free(pmb, phba->mbox_mem_pool);
James Smarte47c9092008-02-08 18:49:26 -05003448
3449 /* Drop the reference count from the mbox at the end after
3450 * all the current reference to the ndlp have been done.
3451 */
3452 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05003453 return;
3454}
3455
3456/*
3457 * This routine handles processing a NameServer REG_LOGIN mailbox
3458 * command upon completion. It is setup in the LPFC_MBOXQ
3459 * as the completion routine when the command is
3460 * handed off to the SLI layer.
3461 */
3462void
James Smart2e0fef82007-06-17 19:56:36 -05003463lpfc_mbx_cmpl_ns_reg_login(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
dea31012005-04-17 16:05:31 -05003464{
James Smart21e9a0a2009-05-22 14:53:21 -04003465 MAILBOX_t *mb = &pmb->u.mb;
James Smart2e0fef82007-06-17 19:56:36 -05003466 struct lpfc_dmabuf *mp = (struct lpfc_dmabuf *) (pmb->context1);
3467 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) pmb->context2;
3468 struct lpfc_vport *vport = pmb->vport;
dea31012005-04-17 16:05:31 -05003469
James Smartd439d282010-09-29 11:18:45 -04003470 pmb->context1 = NULL;
3471 pmb->context2 = NULL;
3472
dea31012005-04-17 16:05:31 -05003473 if (mb->mbxStatus) {
James Smart92d7f7b2007-06-17 19:56:38 -05003474out:
James Smart21e9a0a2009-05-22 14:53:21 -04003475 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
3476 "0260 Register NameServer error: 0x%x\n",
3477 mb->mbxStatus);
James Smartfa4066b2008-01-11 01:53:27 -05003478 /* decrement the node reference count held for this
3479 * callback function.
3480 */
James Smart329f9bc2007-04-25 09:53:01 -04003481 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05003482 lpfc_mbuf_free(phba, mp->virt, mp->phys);
3483 kfree(mp);
James Smartde0c5b32007-04-25 09:52:27 -04003484 mempool_free(pmb, phba->mbox_mem_pool);
James Smart87af33f2007-10-27 13:37:43 -04003485
3486 /* If no other thread is using the ndlp, free it */
3487 lpfc_nlp_not_used(ndlp);
dea31012005-04-17 16:05:31 -05003488
James Smart76a95d72010-11-20 23:11:48 -05003489 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
James Smart92d7f7b2007-06-17 19:56:38 -05003490 /*
3491 * RegLogin failed, use loop map to make discovery
3492 * list
3493 */
3494 lpfc_disc_list_loopmap(vport);
dea31012005-04-17 16:05:31 -05003495
James Smart92d7f7b2007-06-17 19:56:38 -05003496 /* Start discovery */
3497 lpfc_disc_start(vport);
3498 return;
3499 }
3500 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
dea31012005-04-17 16:05:31 -05003501 return;
3502 }
3503
dea31012005-04-17 16:05:31 -05003504 ndlp->nlp_rpi = mb->un.varWords[0];
James Smart21e9a0a2009-05-22 14:53:21 -04003505 ndlp->nlp_flag |= NLP_RPI_VALID;
dea31012005-04-17 16:05:31 -05003506 ndlp->nlp_type |= NLP_FABRIC;
James Smart2e0fef82007-06-17 19:56:36 -05003507 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
dea31012005-04-17 16:05:31 -05003508
James Smart2e0fef82007-06-17 19:56:36 -05003509 if (vport->port_state < LPFC_VPORT_READY) {
3510 /* Link up discovery requires Fabric registration. */
James Smart92d7f7b2007-06-17 19:56:38 -05003511 lpfc_ns_cmd(vport, SLI_CTNS_RFF_ID, 0, 0); /* Do this first! */
3512 lpfc_ns_cmd(vport, SLI_CTNS_RNN_ID, 0, 0);
3513 lpfc_ns_cmd(vport, SLI_CTNS_RSNN_NN, 0, 0);
3514 lpfc_ns_cmd(vport, SLI_CTNS_RSPN_ID, 0, 0);
3515 lpfc_ns_cmd(vport, SLI_CTNS_RFT_ID, 0, 0);
3516
3517 /* Issue SCR just before NameServer GID_FT Query */
3518 lpfc_issue_els_scr(vport, SCR_DID, 0);
dea31012005-04-17 16:05:31 -05003519 }
3520
James Smart2e0fef82007-06-17 19:56:36 -05003521 vport->fc_ns_retry = 0;
dea31012005-04-17 16:05:31 -05003522 /* Good status, issue CT Request to NameServer */
James Smart92d7f7b2007-06-17 19:56:38 -05003523 if (lpfc_ns_cmd(vport, SLI_CTNS_GID_FT, 0, 0)) {
dea31012005-04-17 16:05:31 -05003524 /* Cannot issue NameServer Query, so finish up discovery */
James Smart92d7f7b2007-06-17 19:56:38 -05003525 goto out;
dea31012005-04-17 16:05:31 -05003526 }
3527
James Smartfa4066b2008-01-11 01:53:27 -05003528 /* decrement the node reference count held for this
3529 * callback function.
3530 */
James Smart329f9bc2007-04-25 09:53:01 -04003531 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05003532 lpfc_mbuf_free(phba, mp->virt, mp->phys);
3533 kfree(mp);
James Smart2e0fef82007-06-17 19:56:36 -05003534 mempool_free(pmb, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -05003535
3536 return;
3537}
3538
3539static void
James Smart2e0fef82007-06-17 19:56:36 -05003540lpfc_register_remote_port(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05003541{
James Smart2e0fef82007-06-17 19:56:36 -05003542 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
3543 struct fc_rport *rport;
dea31012005-04-17 16:05:31 -05003544 struct lpfc_rport_data *rdata;
3545 struct fc_rport_identifiers rport_ids;
James Smart2e0fef82007-06-17 19:56:36 -05003546 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05003547
3548 /* Remote port has reappeared. Re-register w/ FC transport */
Andrew Morton68ce1eb2005-09-21 09:46:54 -07003549 rport_ids.node_name = wwn_to_u64(ndlp->nlp_nodename.u.wwn);
3550 rport_ids.port_name = wwn_to_u64(ndlp->nlp_portname.u.wwn);
dea31012005-04-17 16:05:31 -05003551 rport_ids.port_id = ndlp->nlp_DID;
3552 rport_ids.roles = FC_RPORT_ROLE_UNKNOWN;
dea31012005-04-17 16:05:31 -05003553
James Smart329f9bc2007-04-25 09:53:01 -04003554 /*
3555 * We leave our node pointer in rport->dd_data when we unregister a
3556 * FCP target port. But fc_remote_port_add zeros the space to which
3557 * rport->dd_data points. So, if we're reusing a previously
3558 * registered port, drop the reference that we took the last time we
3559 * registered the port.
3560 */
3561 if (ndlp->rport && ndlp->rport->dd_data &&
James Smarte47c9092008-02-08 18:49:26 -05003562 ((struct lpfc_rport_data *) ndlp->rport->dd_data)->pnode == ndlp)
James Smart329f9bc2007-04-25 09:53:01 -04003563 lpfc_nlp_put(ndlp);
James Smart858c9f62007-06-17 19:56:39 -05003564
3565 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_RPORT,
3566 "rport add: did:x%x flg:x%x type x%x",
3567 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_type);
3568
James Smart2e0fef82007-06-17 19:56:36 -05003569 ndlp->rport = rport = fc_remote_port_add(shost, 0, &rport_ids);
James Smart329f9bc2007-04-25 09:53:01 -04003570 if (!rport || !get_device(&rport->dev)) {
dea31012005-04-17 16:05:31 -05003571 dev_printk(KERN_WARNING, &phba->pcidev->dev,
3572 "Warning: fc_remote_port_add failed\n");
3573 return;
3574 }
3575
3576 /* initialize static port data */
3577 rport->maxframe_size = ndlp->nlp_maxframe;
3578 rport->supported_classes = ndlp->nlp_class_sup;
dea31012005-04-17 16:05:31 -05003579 rdata = rport->dd_data;
James Smart329f9bc2007-04-25 09:53:01 -04003580 rdata->pnode = lpfc_nlp_get(ndlp);
James.Smart@Emulex.Com23dc04f2005-11-28 11:41:44 -05003581
3582 if (ndlp->nlp_type & NLP_FCP_TARGET)
3583 rport_ids.roles |= FC_RPORT_ROLE_FCP_TARGET;
3584 if (ndlp->nlp_type & NLP_FCP_INITIATOR)
3585 rport_ids.roles |= FC_RPORT_ROLE_FCP_INITIATOR;
3586
3587
3588 if (rport_ids.roles != FC_RPORT_ROLE_UNKNOWN)
3589 fc_remote_port_rolechg(rport, rport_ids.roles);
3590
James Smart071fbd3d2006-04-15 11:53:20 -04003591 if ((rport->scsi_target_id != -1) &&
James Smart92d7f7b2007-06-17 19:56:38 -05003592 (rport->scsi_target_id < LPFC_MAX_TARGET)) {
James Smart071fbd3d2006-04-15 11:53:20 -04003593 ndlp->nlp_sid = rport->scsi_target_id;
3594 }
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04003595 return;
3596}
3597
3598static void
James Smart2e0fef82007-06-17 19:56:36 -05003599lpfc_unregister_remote_port(struct lpfc_nodelist *ndlp)
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04003600{
3601 struct fc_rport *rport = ndlp->rport;
James Smartc01f3202006-08-18 17:47:08 -04003602
James Smart858c9f62007-06-17 19:56:39 -05003603 lpfc_debugfs_disc_trc(ndlp->vport, LPFC_DISC_TRC_RPORT,
3604 "rport delete: did:x%x flg:x%x type x%x",
3605 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_type);
3606
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04003607 fc_remote_port_delete(rport);
dea31012005-04-17 16:05:31 -05003608
3609 return;
3610}
3611
James Smartde0c5b32007-04-25 09:52:27 -04003612static void
James Smart2e0fef82007-06-17 19:56:36 -05003613lpfc_nlp_counters(struct lpfc_vport *vport, int state, int count)
James Smartde0c5b32007-04-25 09:52:27 -04003614{
James Smart2e0fef82007-06-17 19:56:36 -05003615 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
3616
3617 spin_lock_irq(shost->host_lock);
James Smartde0c5b32007-04-25 09:52:27 -04003618 switch (state) {
3619 case NLP_STE_UNUSED_NODE:
James Smart2e0fef82007-06-17 19:56:36 -05003620 vport->fc_unused_cnt += count;
James Smartde0c5b32007-04-25 09:52:27 -04003621 break;
3622 case NLP_STE_PLOGI_ISSUE:
James Smart2e0fef82007-06-17 19:56:36 -05003623 vport->fc_plogi_cnt += count;
James Smartde0c5b32007-04-25 09:52:27 -04003624 break;
3625 case NLP_STE_ADISC_ISSUE:
James Smart2e0fef82007-06-17 19:56:36 -05003626 vport->fc_adisc_cnt += count;
James Smartde0c5b32007-04-25 09:52:27 -04003627 break;
3628 case NLP_STE_REG_LOGIN_ISSUE:
James Smart2e0fef82007-06-17 19:56:36 -05003629 vport->fc_reglogin_cnt += count;
James Smartde0c5b32007-04-25 09:52:27 -04003630 break;
3631 case NLP_STE_PRLI_ISSUE:
James Smart2e0fef82007-06-17 19:56:36 -05003632 vport->fc_prli_cnt += count;
James Smartde0c5b32007-04-25 09:52:27 -04003633 break;
3634 case NLP_STE_UNMAPPED_NODE:
James Smart2e0fef82007-06-17 19:56:36 -05003635 vport->fc_unmap_cnt += count;
James Smartde0c5b32007-04-25 09:52:27 -04003636 break;
3637 case NLP_STE_MAPPED_NODE:
James Smart2e0fef82007-06-17 19:56:36 -05003638 vport->fc_map_cnt += count;
James Smartde0c5b32007-04-25 09:52:27 -04003639 break;
3640 case NLP_STE_NPR_NODE:
James Smart2e0fef82007-06-17 19:56:36 -05003641 vport->fc_npr_cnt += count;
James Smartde0c5b32007-04-25 09:52:27 -04003642 break;
3643 }
James Smart2e0fef82007-06-17 19:56:36 -05003644 spin_unlock_irq(shost->host_lock);
James Smartde0c5b32007-04-25 09:52:27 -04003645}
Jamie Wellnitz66a9ed62006-02-28 22:33:10 -05003646
James Smartde0c5b32007-04-25 09:52:27 -04003647static void
James Smart2e0fef82007-06-17 19:56:36 -05003648lpfc_nlp_state_cleanup(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
James Smartde0c5b32007-04-25 09:52:27 -04003649 int old_state, int new_state)
3650{
James Smart2e0fef82007-06-17 19:56:36 -05003651 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
3652
James Smartde0c5b32007-04-25 09:52:27 -04003653 if (new_state == NLP_STE_UNMAPPED_NODE) {
James Smartde0c5b32007-04-25 09:52:27 -04003654 ndlp->nlp_flag &= ~NLP_NODEV_REMOVE;
3655 ndlp->nlp_type |= NLP_FC_NODE;
3656 }
3657 if (new_state == NLP_STE_MAPPED_NODE)
3658 ndlp->nlp_flag &= ~NLP_NODEV_REMOVE;
3659 if (new_state == NLP_STE_NPR_NODE)
3660 ndlp->nlp_flag &= ~NLP_RCV_PLOGI;
dea31012005-04-17 16:05:31 -05003661
James Smartde0c5b32007-04-25 09:52:27 -04003662 /* Transport interface */
3663 if (ndlp->rport && (old_state == NLP_STE_MAPPED_NODE ||
3664 old_state == NLP_STE_UNMAPPED_NODE)) {
James Smart2e0fef82007-06-17 19:56:36 -05003665 vport->phba->nport_event_cnt++;
3666 lpfc_unregister_remote_port(ndlp);
James Smartde0c5b32007-04-25 09:52:27 -04003667 }
dea31012005-04-17 16:05:31 -05003668
James Smartde0c5b32007-04-25 09:52:27 -04003669 if (new_state == NLP_STE_MAPPED_NODE ||
3670 new_state == NLP_STE_UNMAPPED_NODE) {
James Smart2e0fef82007-06-17 19:56:36 -05003671 vport->phba->nport_event_cnt++;
James Smart858c9f62007-06-17 19:56:39 -05003672 /*
3673 * Tell the fc transport about the port, if we haven't
3674 * already. If we have, and it's a scsi entity, be
3675 * sure to unblock any attached scsi devices
3676 */
3677 lpfc_register_remote_port(vport, ndlp);
James Smartde0c5b32007-04-25 09:52:27 -04003678 }
James Smartea2151b2008-09-07 11:52:10 -04003679 if ((new_state == NLP_STE_MAPPED_NODE) &&
3680 (vport->stat_data_enabled)) {
3681 /*
3682 * A new target is discovered, if there is no buffer for
3683 * statistical data collection allocate buffer.
3684 */
3685 ndlp->lat_data = kcalloc(LPFC_MAX_BUCKET_COUNT,
3686 sizeof(struct lpfc_scsicmd_bkt),
3687 GFP_KERNEL);
3688
3689 if (!ndlp->lat_data)
3690 lpfc_printf_vlog(vport, KERN_ERR, LOG_NODE,
3691 "0286 lpfc_nlp_state_cleanup failed to "
3692 "allocate statistical data buffer DID "
3693 "0x%x\n", ndlp->nlp_DID);
3694 }
James Smart858c9f62007-06-17 19:56:39 -05003695 /*
3696 * if we added to Mapped list, but the remote port
3697 * registration failed or assigned a target id outside
3698 * our presentable range - move the node to the
3699 * Unmapped List
3700 */
James Smartde0c5b32007-04-25 09:52:27 -04003701 if (new_state == NLP_STE_MAPPED_NODE &&
3702 (!ndlp->rport ||
3703 ndlp->rport->scsi_target_id == -1 ||
3704 ndlp->rport->scsi_target_id >= LPFC_MAX_TARGET)) {
James Smart2e0fef82007-06-17 19:56:36 -05003705 spin_lock_irq(shost->host_lock);
James Smartde0c5b32007-04-25 09:52:27 -04003706 ndlp->nlp_flag |= NLP_TGT_NO_SCSIID;
James Smart2e0fef82007-06-17 19:56:36 -05003707 spin_unlock_irq(shost->host_lock);
3708 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
dea31012005-04-17 16:05:31 -05003709 }
James Smartde0c5b32007-04-25 09:52:27 -04003710}
3711
James Smart685f0bf2007-04-25 09:53:08 -04003712static char *
3713lpfc_nlp_state_name(char *buffer, size_t size, int state)
3714{
3715 static char *states[] = {
3716 [NLP_STE_UNUSED_NODE] = "UNUSED",
3717 [NLP_STE_PLOGI_ISSUE] = "PLOGI",
3718 [NLP_STE_ADISC_ISSUE] = "ADISC",
3719 [NLP_STE_REG_LOGIN_ISSUE] = "REGLOGIN",
3720 [NLP_STE_PRLI_ISSUE] = "PRLI",
3721 [NLP_STE_UNMAPPED_NODE] = "UNMAPPED",
3722 [NLP_STE_MAPPED_NODE] = "MAPPED",
3723 [NLP_STE_NPR_NODE] = "NPR",
3724 };
3725
James Smart311464e2007-08-02 11:10:37 -04003726 if (state < NLP_STE_MAX_STATE && states[state])
James Smart685f0bf2007-04-25 09:53:08 -04003727 strlcpy(buffer, states[state], size);
3728 else
3729 snprintf(buffer, size, "unknown (%d)", state);
3730 return buffer;
3731}
3732
James Smartde0c5b32007-04-25 09:52:27 -04003733void
James Smart2e0fef82007-06-17 19:56:36 -05003734lpfc_nlp_set_state(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
3735 int state)
James Smartde0c5b32007-04-25 09:52:27 -04003736{
James Smart2e0fef82007-06-17 19:56:36 -05003737 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smartde0c5b32007-04-25 09:52:27 -04003738 int old_state = ndlp->nlp_state;
James Smart685f0bf2007-04-25 09:53:08 -04003739 char name1[16], name2[16];
James Smartde0c5b32007-04-25 09:52:27 -04003740
James Smarte8b62012007-08-02 11:10:09 -04003741 lpfc_printf_vlog(vport, KERN_INFO, LOG_NODE,
3742 "0904 NPort state transition x%06x, %s -> %s\n",
3743 ndlp->nlp_DID,
3744 lpfc_nlp_state_name(name1, sizeof(name1), old_state),
3745 lpfc_nlp_state_name(name2, sizeof(name2), state));
James Smart858c9f62007-06-17 19:56:39 -05003746
3747 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_NODE,
3748 "node statechg did:x%x old:%d ste:%d",
3749 ndlp->nlp_DID, old_state, state);
3750
James Smartde0c5b32007-04-25 09:52:27 -04003751 if (old_state == NLP_STE_NPR_NODE &&
James Smartde0c5b32007-04-25 09:52:27 -04003752 state != NLP_STE_NPR_NODE)
James Smart2e0fef82007-06-17 19:56:36 -05003753 lpfc_cancel_retry_delay_tmo(vport, ndlp);
James Smartde0c5b32007-04-25 09:52:27 -04003754 if (old_state == NLP_STE_UNMAPPED_NODE) {
3755 ndlp->nlp_flag &= ~NLP_TGT_NO_SCSIID;
3756 ndlp->nlp_type &= ~NLP_FC_NODE;
3757 }
3758
James Smart685f0bf2007-04-25 09:53:08 -04003759 if (list_empty(&ndlp->nlp_listp)) {
James Smart2e0fef82007-06-17 19:56:36 -05003760 spin_lock_irq(shost->host_lock);
3761 list_add_tail(&ndlp->nlp_listp, &vport->fc_nodes);
3762 spin_unlock_irq(shost->host_lock);
James Smart685f0bf2007-04-25 09:53:08 -04003763 } else if (old_state)
James Smart2e0fef82007-06-17 19:56:36 -05003764 lpfc_nlp_counters(vport, old_state, -1);
James Smartde0c5b32007-04-25 09:52:27 -04003765
3766 ndlp->nlp_state = state;
James Smart2e0fef82007-06-17 19:56:36 -05003767 lpfc_nlp_counters(vport, state, 1);
3768 lpfc_nlp_state_cleanup(vport, ndlp, old_state, state);
James Smartde0c5b32007-04-25 09:52:27 -04003769}
3770
3771void
James Smarte47c9092008-02-08 18:49:26 -05003772lpfc_enqueue_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
3773{
3774 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
3775
3776 if (list_empty(&ndlp->nlp_listp)) {
3777 spin_lock_irq(shost->host_lock);
3778 list_add_tail(&ndlp->nlp_listp, &vport->fc_nodes);
3779 spin_unlock_irq(shost->host_lock);
3780 }
3781}
3782
3783void
James Smart2e0fef82007-06-17 19:56:36 -05003784lpfc_dequeue_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
James Smartde0c5b32007-04-25 09:52:27 -04003785{
James Smart2e0fef82007-06-17 19:56:36 -05003786 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
3787
James Smart0d2b6b82008-06-14 22:52:47 -04003788 lpfc_cancel_retry_delay_tmo(vport, ndlp);
James Smartde0c5b32007-04-25 09:52:27 -04003789 if (ndlp->nlp_state && !list_empty(&ndlp->nlp_listp))
James Smart2e0fef82007-06-17 19:56:36 -05003790 lpfc_nlp_counters(vport, ndlp->nlp_state, -1);
3791 spin_lock_irq(shost->host_lock);
James Smart685f0bf2007-04-25 09:53:08 -04003792 list_del_init(&ndlp->nlp_listp);
James Smart2e0fef82007-06-17 19:56:36 -05003793 spin_unlock_irq(shost->host_lock);
James Smart858c9f62007-06-17 19:56:39 -05003794 lpfc_nlp_state_cleanup(vport, ndlp, ndlp->nlp_state,
James Smarte47c9092008-02-08 18:49:26 -05003795 NLP_STE_UNUSED_NODE);
3796}
3797
Adrian Bunk4d9db012008-02-14 23:24:02 +02003798static void
James Smarte47c9092008-02-08 18:49:26 -05003799lpfc_disable_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
3800{
James Smart0d2b6b82008-06-14 22:52:47 -04003801 lpfc_cancel_retry_delay_tmo(vport, ndlp);
James Smarte47c9092008-02-08 18:49:26 -05003802 if (ndlp->nlp_state && !list_empty(&ndlp->nlp_listp))
3803 lpfc_nlp_counters(vport, ndlp->nlp_state, -1);
3804 lpfc_nlp_state_cleanup(vport, ndlp, ndlp->nlp_state,
3805 NLP_STE_UNUSED_NODE);
3806}
James Smart109f6ed2008-12-04 22:39:08 -05003807/**
James Smart3621a712009-04-06 18:47:14 -04003808 * lpfc_initialize_node - Initialize all fields of node object
James Smart109f6ed2008-12-04 22:39:08 -05003809 * @vport: Pointer to Virtual Port object.
3810 * @ndlp: Pointer to FC node object.
3811 * @did: FC_ID of the node.
James Smarta257bf92009-04-06 18:48:10 -04003812 *
3813 * This function is always called when node object need to be initialized.
3814 * It initializes all the fields of the node object. Although the reference
3815 * to phba from @ndlp can be obtained indirectly through it's reference to
3816 * @vport, a direct reference to phba is taken here by @ndlp. This is due
3817 * to the life-span of the @ndlp might go beyond the existence of @vport as
3818 * the final release of ndlp is determined by its reference count. And, the
3819 * operation on @ndlp needs the reference to phba.
James Smart109f6ed2008-12-04 22:39:08 -05003820 **/
3821static inline void
3822lpfc_initialize_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
3823 uint32_t did)
3824{
3825 INIT_LIST_HEAD(&ndlp->els_retry_evt.evt_listp);
3826 INIT_LIST_HEAD(&ndlp->dev_loss_evt.evt_listp);
3827 init_timer(&ndlp->nlp_delayfunc);
3828 ndlp->nlp_delayfunc.function = lpfc_els_retry_delay;
3829 ndlp->nlp_delayfunc.data = (unsigned long)ndlp;
3830 ndlp->nlp_DID = did;
3831 ndlp->vport = vport;
James Smarta257bf92009-04-06 18:48:10 -04003832 ndlp->phba = vport->phba;
James Smart109f6ed2008-12-04 22:39:08 -05003833 ndlp->nlp_sid = NLP_NO_SID;
3834 kref_init(&ndlp->kref);
3835 NLP_INT_NODE_ACT(ndlp);
3836 atomic_set(&ndlp->cmd_pending, 0);
James Smart7dc517d2010-07-14 15:32:10 -04003837 ndlp->cmd_qdepth = vport->cfg_tgt_queue_depth;
James Smart109f6ed2008-12-04 22:39:08 -05003838}
James Smarte47c9092008-02-08 18:49:26 -05003839
3840struct lpfc_nodelist *
3841lpfc_enable_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
3842 int state)
3843{
3844 struct lpfc_hba *phba = vport->phba;
3845 uint32_t did;
3846 unsigned long flags;
3847
3848 if (!ndlp)
3849 return NULL;
3850
3851 spin_lock_irqsave(&phba->ndlp_lock, flags);
3852 /* The ndlp should not be in memory free mode */
3853 if (NLP_CHK_FREE_REQ(ndlp)) {
3854 spin_unlock_irqrestore(&phba->ndlp_lock, flags);
3855 lpfc_printf_vlog(vport, KERN_WARNING, LOG_NODE,
3856 "0277 lpfc_enable_node: ndlp:x%p "
3857 "usgmap:x%x refcnt:%d\n",
3858 (void *)ndlp, ndlp->nlp_usg_map,
3859 atomic_read(&ndlp->kref.refcount));
3860 return NULL;
3861 }
3862 /* The ndlp should not already be in active mode */
3863 if (NLP_CHK_NODE_ACT(ndlp)) {
3864 spin_unlock_irqrestore(&phba->ndlp_lock, flags);
3865 lpfc_printf_vlog(vport, KERN_WARNING, LOG_NODE,
3866 "0278 lpfc_enable_node: ndlp:x%p "
3867 "usgmap:x%x refcnt:%d\n",
3868 (void *)ndlp, ndlp->nlp_usg_map,
3869 atomic_read(&ndlp->kref.refcount));
3870 return NULL;
3871 }
3872
3873 /* Keep the original DID */
3874 did = ndlp->nlp_DID;
3875
3876 /* re-initialize ndlp except of ndlp linked list pointer */
3877 memset((((char *)ndlp) + sizeof (struct list_head)), 0,
3878 sizeof (struct lpfc_nodelist) - sizeof (struct list_head));
James Smart109f6ed2008-12-04 22:39:08 -05003879 lpfc_initialize_node(vport, ndlp, did);
James Smarte47c9092008-02-08 18:49:26 -05003880
3881 spin_unlock_irqrestore(&phba->ndlp_lock, flags);
3882
3883 if (state != NLP_STE_UNUSED_NODE)
3884 lpfc_nlp_set_state(vport, ndlp, state);
3885
3886 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_NODE,
3887 "node enable: did:x%x",
3888 ndlp->nlp_DID, 0, 0);
3889 return ndlp;
James Smartde0c5b32007-04-25 09:52:27 -04003890}
3891
3892void
James Smart2e0fef82007-06-17 19:56:36 -05003893lpfc_drop_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
James Smartde0c5b32007-04-25 09:52:27 -04003894{
James Smart87af33f2007-10-27 13:37:43 -04003895 /*
James Smartfa4066b2008-01-11 01:53:27 -05003896 * Use of lpfc_drop_node and UNUSED list: lpfc_drop_node should
James Smart87af33f2007-10-27 13:37:43 -04003897 * be used if we wish to issue the "last" lpfc_nlp_put() to remove
James Smartfa4066b2008-01-11 01:53:27 -05003898 * the ndlp from the vport. The ndlp marked as UNUSED on the list
3899 * until ALL other outstanding threads have completed. We check
3900 * that the ndlp not already in the UNUSED state before we proceed.
James Smart87af33f2007-10-27 13:37:43 -04003901 */
James Smartfa4066b2008-01-11 01:53:27 -05003902 if (ndlp->nlp_state == NLP_STE_UNUSED_NODE)
3903 return;
James Smart51ef4c22007-08-02 11:10:31 -04003904 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNUSED_NODE);
James Smart87af33f2007-10-27 13:37:43 -04003905 lpfc_nlp_put(ndlp);
James Smart98c9ea52007-10-27 13:37:33 -04003906 return;
dea31012005-04-17 16:05:31 -05003907}
3908
3909/*
3910 * Start / ReStart rescue timer for Discovery / RSCN handling
3911 */
3912void
James Smart2e0fef82007-06-17 19:56:36 -05003913lpfc_set_disctmo(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05003914{
James Smart2e0fef82007-06-17 19:56:36 -05003915 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
3916 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05003917 uint32_t tmo;
3918
James Smart2e0fef82007-06-17 19:56:36 -05003919 if (vport->port_state == LPFC_LOCAL_CFG_LINK) {
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02003920 /* For FAN, timeout should be greater than edtov */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003921 tmo = (((phba->fc_edtov + 999) / 1000) + 1);
3922 } else {
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02003923 /* Normal discovery timeout should be > than ELS/CT timeout
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003924 * FC spec states we need 3 * ratov for CT requests
3925 */
3926 tmo = ((phba->fc_ratov * 3) + 3);
3927 }
dea31012005-04-17 16:05:31 -05003928
James Smart858c9f62007-06-17 19:56:39 -05003929
3930 if (!timer_pending(&vport->fc_disctmo)) {
3931 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
3932 "set disc timer: tmo:x%x state:x%x flg:x%x",
3933 tmo, vport->port_state, vport->fc_flag);
3934 }
3935
James Smart2e0fef82007-06-17 19:56:36 -05003936 mod_timer(&vport->fc_disctmo, jiffies + HZ * tmo);
3937 spin_lock_irq(shost->host_lock);
3938 vport->fc_flag |= FC_DISC_TMO;
3939 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05003940
3941 /* Start Discovery Timer state <hba_state> */
James Smarte8b62012007-08-02 11:10:09 -04003942 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
3943 "0247 Start Discovery Timer state x%x "
3944 "Data: x%x x%lx x%x x%x\n",
3945 vport->port_state, tmo,
3946 (unsigned long)&vport->fc_disctmo, vport->fc_plogi_cnt,
3947 vport->fc_adisc_cnt);
dea31012005-04-17 16:05:31 -05003948
3949 return;
3950}
3951
3952/*
3953 * Cancel rescue timer for Discovery / RSCN handling
3954 */
3955int
James Smart2e0fef82007-06-17 19:56:36 -05003956lpfc_can_disctmo(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05003957{
James Smart2e0fef82007-06-17 19:56:36 -05003958 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart2e0fef82007-06-17 19:56:36 -05003959 unsigned long iflags;
3960
James Smart858c9f62007-06-17 19:56:39 -05003961 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
3962 "can disc timer: state:x%x rtry:x%x flg:x%x",
3963 vport->port_state, vport->fc_ns_retry, vport->fc_flag);
3964
dea31012005-04-17 16:05:31 -05003965 /* Turn off discovery timer if its running */
James Smart2e0fef82007-06-17 19:56:36 -05003966 if (vport->fc_flag & FC_DISC_TMO) {
3967 spin_lock_irqsave(shost->host_lock, iflags);
3968 vport->fc_flag &= ~FC_DISC_TMO;
3969 spin_unlock_irqrestore(shost->host_lock, iflags);
3970 del_timer_sync(&vport->fc_disctmo);
3971 spin_lock_irqsave(&vport->work_port_lock, iflags);
3972 vport->work_port_events &= ~WORKER_DISC_TMO;
3973 spin_unlock_irqrestore(&vport->work_port_lock, iflags);
dea31012005-04-17 16:05:31 -05003974 }
3975
3976 /* Cancel Discovery Timer state <hba_state> */
James Smarte8b62012007-08-02 11:10:09 -04003977 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
3978 "0248 Cancel Discovery Timer state x%x "
3979 "Data: x%x x%x x%x\n",
3980 vport->port_state, vport->fc_flag,
3981 vport->fc_plogi_cnt, vport->fc_adisc_cnt);
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05003982 return 0;
dea31012005-04-17 16:05:31 -05003983}
3984
3985/*
3986 * Check specified ring for outstanding IOCB on the SLI queue
3987 * Return true if iocb matches the specified nport
3988 */
3989int
James Smart2e0fef82007-06-17 19:56:36 -05003990lpfc_check_sli_ndlp(struct lpfc_hba *phba,
3991 struct lpfc_sli_ring *pring,
3992 struct lpfc_iocbq *iocb,
3993 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05003994{
James Smart2e0fef82007-06-17 19:56:36 -05003995 struct lpfc_sli *psli = &phba->sli;
3996 IOCB_t *icmd = &iocb->iocb;
James Smart92d7f7b2007-06-17 19:56:38 -05003997 struct lpfc_vport *vport = ndlp->vport;
3998
3999 if (iocb->vport != vport)
4000 return 0;
4001
dea31012005-04-17 16:05:31 -05004002 if (pring->ringno == LPFC_ELS_RING) {
4003 switch (icmd->ulpCommand) {
4004 case CMD_GEN_REQUEST64_CR:
James Smart21e9a0a2009-05-22 14:53:21 -04004005 if (iocb->context_un.ndlp == ndlp)
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004006 return 1;
dea31012005-04-17 16:05:31 -05004007 case CMD_ELS_REQUEST64_CR:
James Smart10d4e952006-04-15 11:53:15 -04004008 if (icmd->un.elsreq64.remoteID == ndlp->nlp_DID)
4009 return 1;
dea31012005-04-17 16:05:31 -05004010 case CMD_XMIT_ELS_RSP64_CX:
4011 if (iocb->context1 == (uint8_t *) ndlp)
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004012 return 1;
dea31012005-04-17 16:05:31 -05004013 }
James Smarta4bc3372006-12-02 13:34:16 -05004014 } else if (pring->ringno == psli->extra_ring) {
dea31012005-04-17 16:05:31 -05004015
4016 } else if (pring->ringno == psli->fcp_ring) {
4017 /* Skip match check if waiting to relogin to FCP target */
4018 if ((ndlp->nlp_type & NLP_FCP_TARGET) &&
James Smart92d7f7b2007-06-17 19:56:38 -05004019 (ndlp->nlp_flag & NLP_DELAY_TMO)) {
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004020 return 0;
dea31012005-04-17 16:05:31 -05004021 }
4022 if (icmd->ulpContext == (volatile ushort)ndlp->nlp_rpi) {
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004023 return 1;
dea31012005-04-17 16:05:31 -05004024 }
4025 } else if (pring->ringno == psli->next_ring) {
4026
4027 }
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004028 return 0;
dea31012005-04-17 16:05:31 -05004029}
4030
4031/*
4032 * Free resources / clean up outstanding I/Os
4033 * associated with nlp_rpi in the LPFC_NODELIST entry.
4034 */
4035static int
James Smart2e0fef82007-06-17 19:56:36 -05004036lpfc_no_rpi(struct lpfc_hba *phba, struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05004037{
James Smart2534ba72007-04-25 09:52:20 -04004038 LIST_HEAD(completions);
dea31012005-04-17 16:05:31 -05004039 struct lpfc_sli *psli;
4040 struct lpfc_sli_ring *pring;
4041 struct lpfc_iocbq *iocb, *next_iocb;
James Smart6a9c52c2009-10-02 15:16:51 -04004042 uint32_t i;
dea31012005-04-17 16:05:31 -05004043
James Smart92d7f7b2007-06-17 19:56:38 -05004044 lpfc_fabric_abort_nport(ndlp);
4045
dea31012005-04-17 16:05:31 -05004046 /*
4047 * Everything that matches on txcmplq will be returned
4048 * by firmware with a no rpi error.
4049 */
4050 psli = &phba->sli;
James Smart21e9a0a2009-05-22 14:53:21 -04004051 if (ndlp->nlp_flag & NLP_RPI_VALID) {
dea31012005-04-17 16:05:31 -05004052 /* Now process each ring */
4053 for (i = 0; i < psli->num_rings; i++) {
4054 pring = &psli->ring[i];
4055
James Smart2e0fef82007-06-17 19:56:36 -05004056 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05004057 list_for_each_entry_safe(iocb, next_iocb, &pring->txq,
James Smart2e0fef82007-06-17 19:56:36 -05004058 list) {
dea31012005-04-17 16:05:31 -05004059 /*
4060 * Check to see if iocb matches the nport we are
4061 * looking for
4062 */
James Smart92d7f7b2007-06-17 19:56:38 -05004063 if ((lpfc_check_sli_ndlp(phba, pring, iocb,
4064 ndlp))) {
dea31012005-04-17 16:05:31 -05004065 /* It matches, so deque and call compl
4066 with an error */
James Smart2534ba72007-04-25 09:52:20 -04004067 list_move_tail(&iocb->list,
4068 &completions);
dea31012005-04-17 16:05:31 -05004069 pring->txq_cnt--;
dea31012005-04-17 16:05:31 -05004070 }
4071 }
James Smart2e0fef82007-06-17 19:56:36 -05004072 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05004073 }
4074 }
James Smart2534ba72007-04-25 09:52:20 -04004075
James Smarta257bf92009-04-06 18:48:10 -04004076 /* Cancel all the IOCBs from the completions list */
4077 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
4078 IOERR_SLI_ABORTED);
James Smart2534ba72007-04-25 09:52:20 -04004079
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004080 return 0;
dea31012005-04-17 16:05:31 -05004081}
4082
4083/*
4084 * Free rpi associated with LPFC_NODELIST entry.
4085 * This routine is called from lpfc_freenode(), when we are removing
4086 * a LPFC_NODELIST entry. It is also called if the driver initiates a
4087 * LOGO that completes successfully, and we are waiting to PLOGI back
4088 * to the remote NPort. In addition, it is called after we receive
4089 * and unsolicated ELS cmd, send back a rsp, the rsp completes and
4090 * we are waiting to PLOGI back to the remote NPort.
4091 */
4092int
James Smart2e0fef82007-06-17 19:56:36 -05004093lpfc_unreg_rpi(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05004094{
James Smart2e0fef82007-06-17 19:56:36 -05004095 struct lpfc_hba *phba = vport->phba;
4096 LPFC_MBOXQ_t *mbox;
dea31012005-04-17 16:05:31 -05004097 int rc;
4098
James Smart21e9a0a2009-05-22 14:53:21 -04004099 if (ndlp->nlp_flag & NLP_RPI_VALID) {
James Smart2e0fef82007-06-17 19:56:36 -05004100 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4101 if (mbox) {
James Smart92d7f7b2007-06-17 19:56:38 -05004102 lpfc_unreg_login(phba, vport->vpi, ndlp->nlp_rpi, mbox);
James Smarted957682007-06-17 19:56:37 -05004103 mbox->vport = vport;
James Smart92d7f7b2007-06-17 19:56:38 -05004104 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
James Smart0b727fe2007-10-27 13:37:25 -04004105 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
dea31012005-04-17 16:05:31 -05004106 if (rc == MBX_NOT_FINISHED)
James Smart2e0fef82007-06-17 19:56:36 -05004107 mempool_free(mbox, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -05004108 }
dea31012005-04-17 16:05:31 -05004109 lpfc_no_rpi(phba, ndlp);
James Smartd7c47992010-06-08 18:31:54 -04004110
dea31012005-04-17 16:05:31 -05004111 ndlp->nlp_rpi = 0;
James Smart21e9a0a2009-05-22 14:53:21 -04004112 ndlp->nlp_flag &= ~NLP_RPI_VALID;
James Smart0c287582009-06-10 17:22:56 -04004113 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
dea31012005-04-17 16:05:31 -05004114 return 1;
4115 }
4116 return 0;
4117}
4118
James Smartecfd03c2010-02-12 14:41:27 -05004119/**
4120 * lpfc_unreg_hba_rpis - Unregister rpis registered to the hba.
4121 * @phba: pointer to lpfc hba data structure.
4122 *
4123 * This routine is invoked to unregister all the currently registered RPIs
4124 * to the HBA.
4125 **/
4126void
4127lpfc_unreg_hba_rpis(struct lpfc_hba *phba)
4128{
4129 struct lpfc_vport **vports;
4130 struct lpfc_nodelist *ndlp;
4131 struct Scsi_Host *shost;
4132 int i;
4133
4134 vports = lpfc_create_vport_work_array(phba);
James Smart63e801c2010-11-20 23:14:19 -05004135 if (!vports) {
4136 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY,
4137 "2884 Vport array allocation failed \n");
4138 return;
4139 }
James Smartecfd03c2010-02-12 14:41:27 -05004140 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
4141 shost = lpfc_shost_from_vport(vports[i]);
4142 spin_lock_irq(shost->host_lock);
4143 list_for_each_entry(ndlp, &vports[i]->fc_nodes, nlp_listp) {
James Smart0c9ab6f2010-02-26 14:15:57 -05004144 if (ndlp->nlp_flag & NLP_RPI_VALID) {
4145 /* The mempool_alloc might sleep */
4146 spin_unlock_irq(shost->host_lock);
James Smartecfd03c2010-02-12 14:41:27 -05004147 lpfc_unreg_rpi(vports[i], ndlp);
James Smart0c9ab6f2010-02-26 14:15:57 -05004148 spin_lock_irq(shost->host_lock);
4149 }
James Smartecfd03c2010-02-12 14:41:27 -05004150 }
4151 spin_unlock_irq(shost->host_lock);
4152 }
4153 lpfc_destroy_vport_work_array(phba, vports);
4154}
4155
James Smart92d7f7b2007-06-17 19:56:38 -05004156void
4157lpfc_unreg_all_rpis(struct lpfc_vport *vport)
4158{
4159 struct lpfc_hba *phba = vport->phba;
4160 LPFC_MBOXQ_t *mbox;
4161 int rc;
4162
James Smart5af5eee2010-10-22 11:06:38 -04004163 if (phba->sli_rev == LPFC_SLI_REV4) {
4164 lpfc_sli4_unreg_all_rpis(vport);
4165 return;
4166 }
4167
James Smart92d7f7b2007-06-17 19:56:38 -05004168 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4169 if (mbox) {
4170 lpfc_unreg_login(phba, vport->vpi, 0xffff, mbox);
4171 mbox->vport = vport;
4172 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
James Smart09372822008-01-11 01:52:54 -05004173 mbox->context1 = NULL;
4174 rc = lpfc_sli_issue_mbox_wait(phba, mbox, LPFC_MBOX_TMO);
James Smarta257bf92009-04-06 18:48:10 -04004175 if (rc != MBX_TIMEOUT)
James Smart92d7f7b2007-06-17 19:56:38 -05004176 mempool_free(mbox, phba->mbox_mem_pool);
James Smarta257bf92009-04-06 18:48:10 -04004177
4178 if ((rc == MBX_TIMEOUT) || (rc == MBX_NOT_FINISHED))
4179 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX | LOG_VPORT,
4180 "1836 Could not issue "
4181 "unreg_login(all_rpis) status %d\n", rc);
James Smart92d7f7b2007-06-17 19:56:38 -05004182 }
4183}
4184
4185void
4186lpfc_unreg_default_rpis(struct lpfc_vport *vport)
4187{
4188 struct lpfc_hba *phba = vport->phba;
4189 LPFC_MBOXQ_t *mbox;
4190 int rc;
4191
4192 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4193 if (mbox) {
4194 lpfc_unreg_did(phba, vport->vpi, 0xffffffff, mbox);
4195 mbox->vport = vport;
4196 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
James Smart09372822008-01-11 01:52:54 -05004197 mbox->context1 = NULL;
4198 rc = lpfc_sli_issue_mbox_wait(phba, mbox, LPFC_MBOX_TMO);
James Smarta257bf92009-04-06 18:48:10 -04004199 if (rc != MBX_TIMEOUT)
4200 mempool_free(mbox, phba->mbox_mem_pool);
4201
4202 if ((rc == MBX_TIMEOUT) || (rc == MBX_NOT_FINISHED))
James Smarte8b62012007-08-02 11:10:09 -04004203 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX | LOG_VPORT,
4204 "1815 Could not issue "
James Smarta257bf92009-04-06 18:48:10 -04004205 "unreg_did (default rpis) status %d\n",
4206 rc);
James Smart92d7f7b2007-06-17 19:56:38 -05004207 }
4208}
4209
dea31012005-04-17 16:05:31 -05004210/*
4211 * Free resources associated with LPFC_NODELIST entry
4212 * so it can be freed.
4213 */
4214static int
James Smart2e0fef82007-06-17 19:56:36 -05004215lpfc_cleanup_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05004216{
James Smart2e0fef82007-06-17 19:56:36 -05004217 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
4218 struct lpfc_hba *phba = vport->phba;
4219 LPFC_MBOXQ_t *mb, *nextmb;
dea31012005-04-17 16:05:31 -05004220 struct lpfc_dmabuf *mp;
dea31012005-04-17 16:05:31 -05004221
4222 /* Cleanup node for NPort <nlp_DID> */
James Smarte8b62012007-08-02 11:10:09 -04004223 lpfc_printf_vlog(vport, KERN_INFO, LOG_NODE,
4224 "0900 Cleanup node for NPort x%x "
4225 "Data: x%x x%x x%x\n",
4226 ndlp->nlp_DID, ndlp->nlp_flag,
4227 ndlp->nlp_state, ndlp->nlp_rpi);
James Smarte47c9092008-02-08 18:49:26 -05004228 if (NLP_CHK_FREE_REQ(ndlp)) {
4229 lpfc_printf_vlog(vport, KERN_WARNING, LOG_NODE,
4230 "0280 lpfc_cleanup_node: ndlp:x%p "
4231 "usgmap:x%x refcnt:%d\n",
4232 (void *)ndlp, ndlp->nlp_usg_map,
4233 atomic_read(&ndlp->kref.refcount));
4234 lpfc_dequeue_node(vport, ndlp);
4235 } else {
4236 lpfc_printf_vlog(vport, KERN_WARNING, LOG_NODE,
4237 "0281 lpfc_cleanup_node: ndlp:x%p "
4238 "usgmap:x%x refcnt:%d\n",
4239 (void *)ndlp, ndlp->nlp_usg_map,
4240 atomic_read(&ndlp->kref.refcount));
4241 lpfc_disable_node(vport, ndlp);
4242 }
dea31012005-04-17 16:05:31 -05004243
dea31012005-04-17 16:05:31 -05004244 /* cleanup any ndlp on mbox q waiting for reglogin cmpl */
4245 if ((mb = phba->sli.mbox_active)) {
James Smart04c68492009-05-22 14:52:52 -04004246 if ((mb->u.mb.mbxCommand == MBX_REG_LOGIN64) &&
dea31012005-04-17 16:05:31 -05004247 (ndlp == (struct lpfc_nodelist *) mb->context2)) {
4248 mb->context2 = NULL;
4249 mb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
4250 }
4251 }
James Smart33ccf8d2006-08-17 11:57:58 -04004252
James Smart2e0fef82007-06-17 19:56:36 -05004253 spin_lock_irq(&phba->hbalock);
James Smart5ac6b302010-10-22 11:05:36 -04004254 /* Cleanup REG_LOGIN completions which are not yet processed */
4255 list_for_each_entry(mb, &phba->sli.mboxq_cmpl, list) {
4256 if ((mb->u.mb.mbxCommand != MBX_REG_LOGIN64) ||
4257 (ndlp != (struct lpfc_nodelist *) mb->context2))
4258 continue;
4259
4260 mb->context2 = NULL;
4261 mb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
4262 }
4263
dea31012005-04-17 16:05:31 -05004264 list_for_each_entry_safe(mb, nextmb, &phba->sli.mboxq, list) {
James Smart04c68492009-05-22 14:52:52 -04004265 if ((mb->u.mb.mbxCommand == MBX_REG_LOGIN64) &&
James Smart92d7f7b2007-06-17 19:56:38 -05004266 (ndlp == (struct lpfc_nodelist *) mb->context2)) {
dea31012005-04-17 16:05:31 -05004267 mp = (struct lpfc_dmabuf *) (mb->context1);
4268 if (mp) {
James Smart2e0fef82007-06-17 19:56:36 -05004269 __lpfc_mbuf_free(phba, mp->virt, mp->phys);
dea31012005-04-17 16:05:31 -05004270 kfree(mp);
4271 }
4272 list_del(&mb->list);
James Smartffc95492010-06-07 15:23:17 -04004273 if (phba->sli_rev == LPFC_SLI_REV4)
4274 lpfc_sli4_free_rpi(phba,
4275 mb->u.mb.un.varRegLogin.rpi);
dea31012005-04-17 16:05:31 -05004276 mempool_free(mb, phba->mbox_mem_pool);
James Smarte47c9092008-02-08 18:49:26 -05004277 /* We shall not invoke the lpfc_nlp_put to decrement
4278 * the ndlp reference count as we are in the process
4279 * of lpfc_nlp_release.
4280 */
dea31012005-04-17 16:05:31 -05004281 }
4282 }
James Smart2e0fef82007-06-17 19:56:36 -05004283 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05004284
James Smarte47c9092008-02-08 18:49:26 -05004285 lpfc_els_abort(phba, ndlp);
4286
James Smart2e0fef82007-06-17 19:56:36 -05004287 spin_lock_irq(shost->host_lock);
James Smartc01f3202006-08-18 17:47:08 -04004288 ndlp->nlp_flag &= ~NLP_DELAY_TMO;
James Smart2e0fef82007-06-17 19:56:36 -05004289 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05004290
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05004291 ndlp->nlp_last_elscmd = 0;
dea31012005-04-17 16:05:31 -05004292 del_timer_sync(&ndlp->nlp_delayfunc);
4293
James Smart0d2b6b82008-06-14 22:52:47 -04004294 list_del_init(&ndlp->els_retry_evt.evt_listp);
4295 list_del_init(&ndlp->dev_loss_evt.evt_listp);
dea31012005-04-17 16:05:31 -05004296
James Smart2e0fef82007-06-17 19:56:36 -05004297 lpfc_unreg_rpi(vport, ndlp);
dea31012005-04-17 16:05:31 -05004298
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004299 return 0;
dea31012005-04-17 16:05:31 -05004300}
4301
4302/*
4303 * Check to see if we can free the nlp back to the freelist.
4304 * If we are in the middle of using the nlp in the discovery state
4305 * machine, defer the free till we reach the end of the state machine.
4306 */
James Smart329f9bc2007-04-25 09:53:01 -04004307static void
James Smart2e0fef82007-06-17 19:56:36 -05004308lpfc_nlp_remove(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05004309{
James Smarta8adb832007-10-27 13:37:53 -04004310 struct lpfc_hba *phba = vport->phba;
James Smart1dcb58e2007-04-25 09:51:30 -04004311 struct lpfc_rport_data *rdata;
James Smarta8adb832007-10-27 13:37:53 -04004312 LPFC_MBOXQ_t *mbox;
4313 int rc;
dea31012005-04-17 16:05:31 -05004314
James Smart0d2b6b82008-06-14 22:52:47 -04004315 lpfc_cancel_retry_delay_tmo(vport, ndlp);
James Smart21e9a0a2009-05-22 14:53:21 -04004316 if ((ndlp->nlp_flag & NLP_DEFER_RM) &&
James Smartffc95492010-06-07 15:23:17 -04004317 !(ndlp->nlp_flag & NLP_REG_LOGIN_SEND) &&
James Smart21e9a0a2009-05-22 14:53:21 -04004318 !(ndlp->nlp_flag & NLP_RPI_VALID)) {
James Smarta8adb832007-10-27 13:37:53 -04004319 /* For this case we need to cleanup the default rpi
4320 * allocated by the firmware.
4321 */
4322 if ((mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL))
4323 != NULL) {
James Smart21e9a0a2009-05-22 14:53:21 -04004324 rc = lpfc_reg_rpi(phba, vport->vpi, ndlp->nlp_DID,
James Smarta8adb832007-10-27 13:37:53 -04004325 (uint8_t *) &vport->fc_sparam, mbox, 0);
4326 if (rc) {
4327 mempool_free(mbox, phba->mbox_mem_pool);
4328 }
4329 else {
4330 mbox->mbox_flag |= LPFC_MBX_IMED_UNREG;
4331 mbox->mbox_cmpl = lpfc_mbx_cmpl_dflt_rpi;
4332 mbox->vport = vport;
James Smart09372822008-01-11 01:52:54 -05004333 mbox->context2 = NULL;
James Smarta8adb832007-10-27 13:37:53 -04004334 rc =lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
4335 if (rc == MBX_NOT_FINISHED) {
4336 mempool_free(mbox, phba->mbox_mem_pool);
4337 }
4338 }
4339 }
4340 }
James Smart2e0fef82007-06-17 19:56:36 -05004341 lpfc_cleanup_node(vport, ndlp);
James Smart1dcb58e2007-04-25 09:51:30 -04004342
James Smart2e0fef82007-06-17 19:56:36 -05004343 /*
James Smart92d7f7b2007-06-17 19:56:38 -05004344 * We can get here with a non-NULL ndlp->rport because when we
4345 * unregister a rport we don't break the rport/node linkage. So if we
4346 * do, make sure we don't leaving any dangling pointers behind.
James Smart2e0fef82007-06-17 19:56:36 -05004347 */
James Smart92d7f7b2007-06-17 19:56:38 -05004348 if (ndlp->rport) {
James Smart329f9bc2007-04-25 09:53:01 -04004349 rdata = ndlp->rport->dd_data;
4350 rdata->pnode = NULL;
4351 ndlp->rport = NULL;
dea31012005-04-17 16:05:31 -05004352 }
dea31012005-04-17 16:05:31 -05004353}
4354
4355static int
James Smart2e0fef82007-06-17 19:56:36 -05004356lpfc_matchdid(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
4357 uint32_t did)
dea31012005-04-17 16:05:31 -05004358{
James Smart2e0fef82007-06-17 19:56:36 -05004359 D_ID mydid, ndlpdid, matchdid;
dea31012005-04-17 16:05:31 -05004360
4361 if (did == Bcast_DID)
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004362 return 0;
dea31012005-04-17 16:05:31 -05004363
dea31012005-04-17 16:05:31 -05004364 /* First check for Direct match */
4365 if (ndlp->nlp_DID == did)
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004366 return 1;
dea31012005-04-17 16:05:31 -05004367
4368 /* Next check for area/domain identically equals 0 match */
James Smart2e0fef82007-06-17 19:56:36 -05004369 mydid.un.word = vport->fc_myDID;
dea31012005-04-17 16:05:31 -05004370 if ((mydid.un.b.domain == 0) && (mydid.un.b.area == 0)) {
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004371 return 0;
dea31012005-04-17 16:05:31 -05004372 }
4373
4374 matchdid.un.word = did;
4375 ndlpdid.un.word = ndlp->nlp_DID;
4376 if (matchdid.un.b.id == ndlpdid.un.b.id) {
4377 if ((mydid.un.b.domain == matchdid.un.b.domain) &&
4378 (mydid.un.b.area == matchdid.un.b.area)) {
4379 if ((ndlpdid.un.b.domain == 0) &&
4380 (ndlpdid.un.b.area == 0)) {
4381 if (ndlpdid.un.b.id)
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004382 return 1;
dea31012005-04-17 16:05:31 -05004383 }
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004384 return 0;
dea31012005-04-17 16:05:31 -05004385 }
4386
4387 matchdid.un.word = ndlp->nlp_DID;
4388 if ((mydid.un.b.domain == ndlpdid.un.b.domain) &&
4389 (mydid.un.b.area == ndlpdid.un.b.area)) {
4390 if ((matchdid.un.b.domain == 0) &&
4391 (matchdid.un.b.area == 0)) {
4392 if (matchdid.un.b.id)
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004393 return 1;
dea31012005-04-17 16:05:31 -05004394 }
4395 }
4396 }
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004397 return 0;
dea31012005-04-17 16:05:31 -05004398}
4399
James Smart685f0bf2007-04-25 09:53:08 -04004400/* Search for a nodelist entry */
James Smart2e0fef82007-06-17 19:56:36 -05004401static struct lpfc_nodelist *
4402__lpfc_findnode_did(struct lpfc_vport *vport, uint32_t did)
dea31012005-04-17 16:05:31 -05004403{
James Smart2fb9bd82006-12-02 13:33:57 -05004404 struct lpfc_nodelist *ndlp;
dea31012005-04-17 16:05:31 -05004405 uint32_t data1;
4406
James Smart2e0fef82007-06-17 19:56:36 -05004407 list_for_each_entry(ndlp, &vport->fc_nodes, nlp_listp) {
4408 if (lpfc_matchdid(vport, ndlp, did)) {
James Smart685f0bf2007-04-25 09:53:08 -04004409 data1 = (((uint32_t) ndlp->nlp_state << 24) |
4410 ((uint32_t) ndlp->nlp_xri << 16) |
4411 ((uint32_t) ndlp->nlp_type << 8) |
4412 ((uint32_t) ndlp->nlp_rpi & 0xff));
James Smarte8b62012007-08-02 11:10:09 -04004413 lpfc_printf_vlog(vport, KERN_INFO, LOG_NODE,
4414 "0929 FIND node DID "
4415 "Data: x%p x%x x%x x%x\n",
4416 ndlp, ndlp->nlp_DID,
4417 ndlp->nlp_flag, data1);
James Smart685f0bf2007-04-25 09:53:08 -04004418 return ndlp;
dea31012005-04-17 16:05:31 -05004419 }
4420 }
Jamie Wellnitz66a9ed62006-02-28 22:33:10 -05004421
dea31012005-04-17 16:05:31 -05004422 /* FIND node did <did> NOT FOUND */
James Smarte8b62012007-08-02 11:10:09 -04004423 lpfc_printf_vlog(vport, KERN_INFO, LOG_NODE,
4424 "0932 FIND node did x%x NOT FOUND.\n", did);
dea31012005-04-17 16:05:31 -05004425 return NULL;
4426}
4427
4428struct lpfc_nodelist *
James Smart2e0fef82007-06-17 19:56:36 -05004429lpfc_findnode_did(struct lpfc_vport *vport, uint32_t did)
dea31012005-04-17 16:05:31 -05004430{
James Smart2e0fef82007-06-17 19:56:36 -05004431 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05004432 struct lpfc_nodelist *ndlp;
dea31012005-04-17 16:05:31 -05004433
James Smart2e0fef82007-06-17 19:56:36 -05004434 spin_lock_irq(shost->host_lock);
4435 ndlp = __lpfc_findnode_did(vport, did);
4436 spin_unlock_irq(shost->host_lock);
4437 return ndlp;
4438}
4439
4440struct lpfc_nodelist *
4441lpfc_setup_disc_node(struct lpfc_vport *vport, uint32_t did)
4442{
4443 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
4444 struct lpfc_nodelist *ndlp;
4445
4446 ndlp = lpfc_findnode_did(vport, did);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004447 if (!ndlp) {
James Smart2e0fef82007-06-17 19:56:36 -05004448 if ((vport->fc_flag & FC_RSCN_MODE) != 0 &&
4449 lpfc_rscn_payload_check(vport, did) == 0)
dea31012005-04-17 16:05:31 -05004450 return NULL;
4451 ndlp = (struct lpfc_nodelist *)
James Smart2e0fef82007-06-17 19:56:36 -05004452 mempool_alloc(vport->phba->nlp_mem_pool, GFP_KERNEL);
dea31012005-04-17 16:05:31 -05004453 if (!ndlp)
4454 return NULL;
James Smart2e0fef82007-06-17 19:56:36 -05004455 lpfc_nlp_init(vport, ndlp, did);
4456 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
4457 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05004458 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
James Smart2e0fef82007-06-17 19:56:36 -05004459 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05004460 return ndlp;
James Smarte47c9092008-02-08 18:49:26 -05004461 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
4462 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_NPR_NODE);
4463 if (!ndlp)
4464 return NULL;
4465 spin_lock_irq(shost->host_lock);
4466 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
4467 spin_unlock_irq(shost->host_lock);
4468 return ndlp;
dea31012005-04-17 16:05:31 -05004469 }
James Smarte47c9092008-02-08 18:49:26 -05004470
James Smart58da1ff2008-04-07 10:15:56 -04004471 if ((vport->fc_flag & FC_RSCN_MODE) &&
4472 !(vport->fc_flag & FC_NDISC_ACTIVE)) {
James Smart2e0fef82007-06-17 19:56:36 -05004473 if (lpfc_rscn_payload_check(vport, did)) {
James Smart87af33f2007-10-27 13:37:43 -04004474 /* If we've already recieved a PLOGI from this NPort
4475 * we don't need to try to discover it again.
4476 */
4477 if (ndlp->nlp_flag & NLP_RCV_PLOGI)
4478 return NULL;
4479
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004480 /* Since this node is marked for discovery,
4481 * delay timeout is not needed.
4482 */
James Smart0d2b6b82008-06-14 22:52:47 -04004483 lpfc_cancel_retry_delay_tmo(vport, ndlp);
James Smarta257bf92009-04-06 18:48:10 -04004484 spin_lock_irq(shost->host_lock);
4485 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
4486 spin_unlock_irq(shost->host_lock);
James Smart071fbd3d2006-04-15 11:53:20 -04004487 } else
dea31012005-04-17 16:05:31 -05004488 ndlp = NULL;
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004489 } else {
James Smart87af33f2007-10-27 13:37:43 -04004490 /* If we've already recieved a PLOGI from this NPort,
4491 * or we are already in the process of discovery on it,
4492 * we don't need to try to discover it again.
4493 */
James Smart685f0bf2007-04-25 09:53:08 -04004494 if (ndlp->nlp_state == NLP_STE_ADISC_ISSUE ||
James Smart87af33f2007-10-27 13:37:43 -04004495 ndlp->nlp_state == NLP_STE_PLOGI_ISSUE ||
4496 ndlp->nlp_flag & NLP_RCV_PLOGI)
dea31012005-04-17 16:05:31 -05004497 return NULL;
James Smart2e0fef82007-06-17 19:56:36 -05004498 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
4499 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05004500 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
James Smart2e0fef82007-06-17 19:56:36 -05004501 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05004502 }
4503 return ndlp;
4504}
4505
4506/* Build a list of nodes to discover based on the loopmap */
4507void
James Smart2e0fef82007-06-17 19:56:36 -05004508lpfc_disc_list_loopmap(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05004509{
James Smart2e0fef82007-06-17 19:56:36 -05004510 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05004511 int j;
4512 uint32_t alpa, index;
4513
James Smart2e0fef82007-06-17 19:56:36 -05004514 if (!lpfc_is_link_up(phba))
dea31012005-04-17 16:05:31 -05004515 return;
James Smart2e0fef82007-06-17 19:56:36 -05004516
James Smart76a95d72010-11-20 23:11:48 -05004517 if (phba->fc_topology != LPFC_TOPOLOGY_LOOP)
dea31012005-04-17 16:05:31 -05004518 return;
dea31012005-04-17 16:05:31 -05004519
4520 /* Check for loop map present or not */
4521 if (phba->alpa_map[0]) {
4522 for (j = 1; j <= phba->alpa_map[0]; j++) {
4523 alpa = phba->alpa_map[j];
James Smart2e0fef82007-06-17 19:56:36 -05004524 if (((vport->fc_myDID & 0xff) == alpa) || (alpa == 0))
dea31012005-04-17 16:05:31 -05004525 continue;
James Smart2e0fef82007-06-17 19:56:36 -05004526 lpfc_setup_disc_node(vport, alpa);
dea31012005-04-17 16:05:31 -05004527 }
4528 } else {
4529 /* No alpamap, so try all alpa's */
4530 for (j = 0; j < FC_MAXLOOP; j++) {
4531 /* If cfg_scan_down is set, start from highest
4532 * ALPA (0xef) to lowest (0x1).
4533 */
James Smart3de2a652007-08-02 11:09:59 -04004534 if (vport->cfg_scan_down)
dea31012005-04-17 16:05:31 -05004535 index = j;
4536 else
4537 index = FC_MAXLOOP - j - 1;
4538 alpa = lpfcAlpaArray[index];
James Smart2e0fef82007-06-17 19:56:36 -05004539 if ((vport->fc_myDID & 0xff) == alpa)
dea31012005-04-17 16:05:31 -05004540 continue;
James Smart2e0fef82007-06-17 19:56:36 -05004541 lpfc_setup_disc_node(vport, alpa);
dea31012005-04-17 16:05:31 -05004542 }
4543 }
4544 return;
4545}
4546
dea31012005-04-17 16:05:31 -05004547void
James Smart2e0fef82007-06-17 19:56:36 -05004548lpfc_issue_clear_la(struct lpfc_hba *phba, struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05004549{
dea31012005-04-17 16:05:31 -05004550 LPFC_MBOXQ_t *mbox;
James Smart2e0fef82007-06-17 19:56:36 -05004551 struct lpfc_sli *psli = &phba->sli;
4552 struct lpfc_sli_ring *extra_ring = &psli->ring[psli->extra_ring];
4553 struct lpfc_sli_ring *fcp_ring = &psli->ring[psli->fcp_ring];
4554 struct lpfc_sli_ring *next_ring = &psli->ring[psli->next_ring];
4555 int rc;
4556
James Smart92d7f7b2007-06-17 19:56:38 -05004557 /*
4558 * if it's not a physical port or if we already send
4559 * clear_la then don't send it.
4560 */
4561 if ((phba->link_state >= LPFC_CLEAR_LA) ||
James Smartda0436e2009-05-22 14:51:39 -04004562 (vport->port_type != LPFC_PHYSICAL_PORT) ||
4563 (phba->sli_rev == LPFC_SLI_REV4))
James Smart92d7f7b2007-06-17 19:56:38 -05004564 return;
4565
James Smart2e0fef82007-06-17 19:56:36 -05004566 /* Link up discovery */
4567 if ((mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL)) != NULL) {
4568 phba->link_state = LPFC_CLEAR_LA;
4569 lpfc_clear_la(phba, mbox);
4570 mbox->mbox_cmpl = lpfc_mbx_cmpl_clear_la;
4571 mbox->vport = vport;
James Smart0b727fe2007-10-27 13:37:25 -04004572 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
James Smart2e0fef82007-06-17 19:56:36 -05004573 if (rc == MBX_NOT_FINISHED) {
4574 mempool_free(mbox, phba->mbox_mem_pool);
4575 lpfc_disc_flush_list(vport);
4576 extra_ring->flag &= ~LPFC_STOP_IOCB_EVENT;
4577 fcp_ring->flag &= ~LPFC_STOP_IOCB_EVENT;
4578 next_ring->flag &= ~LPFC_STOP_IOCB_EVENT;
James Smart92d7f7b2007-06-17 19:56:38 -05004579 phba->link_state = LPFC_HBA_ERROR;
4580 }
4581 }
4582}
4583
4584/* Reg_vpi to tell firmware to resume normal operations */
4585void
4586lpfc_issue_reg_vpi(struct lpfc_hba *phba, struct lpfc_vport *vport)
4587{
4588 LPFC_MBOXQ_t *regvpimbox;
4589
4590 regvpimbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4591 if (regvpimbox) {
James Smartda0436e2009-05-22 14:51:39 -04004592 lpfc_reg_vpi(vport, regvpimbox);
James Smart92d7f7b2007-06-17 19:56:38 -05004593 regvpimbox->mbox_cmpl = lpfc_mbx_cmpl_reg_vpi;
4594 regvpimbox->vport = vport;
James Smart0b727fe2007-10-27 13:37:25 -04004595 if (lpfc_sli_issue_mbox(phba, regvpimbox, MBX_NOWAIT)
James Smart92d7f7b2007-06-17 19:56:38 -05004596 == MBX_NOT_FINISHED) {
4597 mempool_free(regvpimbox, phba->mbox_mem_pool);
James Smart2e0fef82007-06-17 19:56:36 -05004598 }
4599 }
4600}
4601
4602/* Start Link up / RSCN discovery on NPR nodes */
4603void
4604lpfc_disc_start(struct lpfc_vport *vport)
4605{
4606 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
4607 struct lpfc_hba *phba = vport->phba;
James Smart685f0bf2007-04-25 09:53:08 -04004608 uint32_t num_sent;
dea31012005-04-17 16:05:31 -05004609 uint32_t clear_la_pending;
James Smart685f0bf2007-04-25 09:53:08 -04004610 int did_changed;
dea31012005-04-17 16:05:31 -05004611
James Smart2e0fef82007-06-17 19:56:36 -05004612 if (!lpfc_is_link_up(phba))
dea31012005-04-17 16:05:31 -05004613 return;
James Smart2e0fef82007-06-17 19:56:36 -05004614
4615 if (phba->link_state == LPFC_CLEAR_LA)
dea31012005-04-17 16:05:31 -05004616 clear_la_pending = 1;
4617 else
4618 clear_la_pending = 0;
4619
James Smart2e0fef82007-06-17 19:56:36 -05004620 if (vport->port_state < LPFC_VPORT_READY)
4621 vport->port_state = LPFC_DISC_AUTH;
dea31012005-04-17 16:05:31 -05004622
James Smart2e0fef82007-06-17 19:56:36 -05004623 lpfc_set_disctmo(vport);
4624
4625 if (vport->fc_prevDID == vport->fc_myDID)
dea31012005-04-17 16:05:31 -05004626 did_changed = 0;
James Smart2e0fef82007-06-17 19:56:36 -05004627 else
dea31012005-04-17 16:05:31 -05004628 did_changed = 1;
James Smart2e0fef82007-06-17 19:56:36 -05004629
4630 vport->fc_prevDID = vport->fc_myDID;
4631 vport->num_disc_nodes = 0;
dea31012005-04-17 16:05:31 -05004632
4633 /* Start Discovery state <hba_state> */
James Smarte8b62012007-08-02 11:10:09 -04004634 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
4635 "0202 Start Discovery hba state x%x "
4636 "Data: x%x x%x x%x\n",
4637 vport->port_state, vport->fc_flag, vport->fc_plogi_cnt,
4638 vport->fc_adisc_cnt);
dea31012005-04-17 16:05:31 -05004639
4640 /* First do ADISCs - if any */
James Smart2e0fef82007-06-17 19:56:36 -05004641 num_sent = lpfc_els_disc_adisc(vport);
dea31012005-04-17 16:05:31 -05004642
4643 if (num_sent)
4644 return;
4645
James Smart92d7f7b2007-06-17 19:56:38 -05004646 /*
4647 * For SLI3, cmpl_reg_vpi will set port_state to READY, and
4648 * continue discovery.
4649 */
4650 if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
James Smart1b32f6a2008-02-08 18:49:39 -05004651 !(vport->fc_flag & FC_PT2PT) &&
James Smartda0436e2009-05-22 14:51:39 -04004652 !(vport->fc_flag & FC_RSCN_MODE) &&
4653 (phba->sli_rev < LPFC_SLI_REV4)) {
James Smart92d7f7b2007-06-17 19:56:38 -05004654 lpfc_issue_reg_vpi(phba, vport);
4655 return;
4656 }
James Smart2e0fef82007-06-17 19:56:36 -05004657
James Smart92d7f7b2007-06-17 19:56:38 -05004658 /*
4659 * For SLI2, we need to set port_state to READY and continue
4660 * discovery.
4661 */
4662 if (vport->port_state < LPFC_VPORT_READY && !clear_la_pending) {
4663 /* If we get here, there is nothing to ADISC */
4664 if (vport->port_type == LPFC_PHYSICAL_PORT)
4665 lpfc_issue_clear_la(phba, vport);
4666
4667 if (!(vport->fc_flag & FC_ABORT_DISCOVERY)) {
James Smart2e0fef82007-06-17 19:56:36 -05004668 vport->num_disc_nodes = 0;
4669 /* go thru NPR nodes and issue ELS PLOGIs */
4670 if (vport->fc_npr_cnt)
4671 lpfc_els_disc_plogi(vport);
4672
4673 if (!vport->num_disc_nodes) {
4674 spin_lock_irq(shost->host_lock);
4675 vport->fc_flag &= ~FC_NDISC_ACTIVE;
4676 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05004677 lpfc_can_disctmo(vport);
dea31012005-04-17 16:05:31 -05004678 }
4679 }
James Smart92d7f7b2007-06-17 19:56:38 -05004680 vport->port_state = LPFC_VPORT_READY;
dea31012005-04-17 16:05:31 -05004681 } else {
4682 /* Next do PLOGIs - if any */
James Smart2e0fef82007-06-17 19:56:36 -05004683 num_sent = lpfc_els_disc_plogi(vport);
dea31012005-04-17 16:05:31 -05004684
4685 if (num_sent)
4686 return;
4687
James Smart2e0fef82007-06-17 19:56:36 -05004688 if (vport->fc_flag & FC_RSCN_MODE) {
dea31012005-04-17 16:05:31 -05004689 /* Check to see if more RSCNs came in while we
4690 * were processing this one.
4691 */
James Smart2e0fef82007-06-17 19:56:36 -05004692 if ((vport->fc_rscn_id_cnt == 0) &&
4693 (!(vport->fc_flag & FC_RSCN_DISCOVERY))) {
4694 spin_lock_irq(shost->host_lock);
4695 vport->fc_flag &= ~FC_RSCN_MODE;
4696 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05004697 lpfc_can_disctmo(vport);
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004698 } else
James Smart2e0fef82007-06-17 19:56:36 -05004699 lpfc_els_handle_rscn(vport);
dea31012005-04-17 16:05:31 -05004700 }
4701 }
4702 return;
4703}
4704
4705/*
4706 * Ignore completion for all IOCBs on tx and txcmpl queue for ELS
4707 * ring the match the sppecified nodelist.
4708 */
4709static void
James Smart2e0fef82007-06-17 19:56:36 -05004710lpfc_free_tx(struct lpfc_hba *phba, struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05004711{
James Smart2534ba72007-04-25 09:52:20 -04004712 LIST_HEAD(completions);
dea31012005-04-17 16:05:31 -05004713 struct lpfc_sli *psli;
4714 IOCB_t *icmd;
4715 struct lpfc_iocbq *iocb, *next_iocb;
4716 struct lpfc_sli_ring *pring;
dea31012005-04-17 16:05:31 -05004717
4718 psli = &phba->sli;
4719 pring = &psli->ring[LPFC_ELS_RING];
4720
4721 /* Error matching iocb on txq or txcmplq
4722 * First check the txq.
4723 */
James Smart2e0fef82007-06-17 19:56:36 -05004724 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05004725 list_for_each_entry_safe(iocb, next_iocb, &pring->txq, list) {
4726 if (iocb->context1 != ndlp) {
4727 continue;
4728 }
4729 icmd = &iocb->iocb;
4730 if ((icmd->ulpCommand == CMD_ELS_REQUEST64_CR) ||
4731 (icmd->ulpCommand == CMD_XMIT_ELS_RSP64_CX)) {
4732
James Smart2534ba72007-04-25 09:52:20 -04004733 list_move_tail(&iocb->list, &completions);
dea31012005-04-17 16:05:31 -05004734 pring->txq_cnt--;
dea31012005-04-17 16:05:31 -05004735 }
4736 }
4737
4738 /* Next check the txcmplq */
4739 list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq, list) {
4740 if (iocb->context1 != ndlp) {
4741 continue;
4742 }
4743 icmd = &iocb->iocb;
James Smart2e0fef82007-06-17 19:56:36 -05004744 if (icmd->ulpCommand == CMD_ELS_REQUEST64_CR ||
4745 icmd->ulpCommand == CMD_XMIT_ELS_RSP64_CX) {
James Smart2534ba72007-04-25 09:52:20 -04004746 lpfc_sli_issue_abort_iotag(phba, pring, iocb);
dea31012005-04-17 16:05:31 -05004747 }
4748 }
James Smart2e0fef82007-06-17 19:56:36 -05004749 spin_unlock_irq(&phba->hbalock);
James Smart2534ba72007-04-25 09:52:20 -04004750
James Smarta257bf92009-04-06 18:48:10 -04004751 /* Cancel all the IOCBs from the completions list */
4752 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
4753 IOERR_SLI_ABORTED);
dea31012005-04-17 16:05:31 -05004754}
4755
Adrian Bunka6ababd2007-11-05 18:07:33 +01004756static void
James Smart2e0fef82007-06-17 19:56:36 -05004757lpfc_disc_flush_list(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05004758{
4759 struct lpfc_nodelist *ndlp, *next_ndlp;
James Smart2e0fef82007-06-17 19:56:36 -05004760 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05004761
James Smart2e0fef82007-06-17 19:56:36 -05004762 if (vport->fc_plogi_cnt || vport->fc_adisc_cnt) {
4763 list_for_each_entry_safe(ndlp, next_ndlp, &vport->fc_nodes,
James Smart685f0bf2007-04-25 09:53:08 -04004764 nlp_listp) {
James Smarte47c9092008-02-08 18:49:26 -05004765 if (!NLP_CHK_NODE_ACT(ndlp))
4766 continue;
James Smart685f0bf2007-04-25 09:53:08 -04004767 if (ndlp->nlp_state == NLP_STE_PLOGI_ISSUE ||
4768 ndlp->nlp_state == NLP_STE_ADISC_ISSUE) {
4769 lpfc_free_tx(phba, ndlp);
James Smart685f0bf2007-04-25 09:53:08 -04004770 }
dea31012005-04-17 16:05:31 -05004771 }
4772 }
dea31012005-04-17 16:05:31 -05004773}
4774
James Smart92d7f7b2007-06-17 19:56:38 -05004775void
4776lpfc_cleanup_discovery_resources(struct lpfc_vport *vport)
4777{
4778 lpfc_els_flush_rscn(vport);
4779 lpfc_els_flush_cmd(vport);
4780 lpfc_disc_flush_list(vport);
4781}
4782
dea31012005-04-17 16:05:31 -05004783/*****************************************************************************/
4784/*
4785 * NAME: lpfc_disc_timeout
4786 *
4787 * FUNCTION: Fibre Channel driver discovery timeout routine.
4788 *
4789 * EXECUTION ENVIRONMENT: interrupt only
4790 *
4791 * CALLED FROM:
4792 * Timer function
4793 *
4794 * RETURNS:
4795 * none
4796 */
4797/*****************************************************************************/
4798void
4799lpfc_disc_timeout(unsigned long ptr)
4800{
James Smart2e0fef82007-06-17 19:56:36 -05004801 struct lpfc_vport *vport = (struct lpfc_vport *) ptr;
4802 struct lpfc_hba *phba = vport->phba;
James Smart5e9d9b82008-06-14 22:52:53 -04004803 uint32_t tmo_posted;
dea31012005-04-17 16:05:31 -05004804 unsigned long flags = 0;
4805
4806 if (unlikely(!phba))
4807 return;
4808
James Smart5e9d9b82008-06-14 22:52:53 -04004809 spin_lock_irqsave(&vport->work_port_lock, flags);
4810 tmo_posted = vport->work_port_events & WORKER_DISC_TMO;
4811 if (!tmo_posted)
James Smart2e0fef82007-06-17 19:56:36 -05004812 vport->work_port_events |= WORKER_DISC_TMO;
James Smart5e9d9b82008-06-14 22:52:53 -04004813 spin_unlock_irqrestore(&vport->work_port_lock, flags);
James Smart2e0fef82007-06-17 19:56:36 -05004814
James Smart5e9d9b82008-06-14 22:52:53 -04004815 if (!tmo_posted)
4816 lpfc_worker_wake_up(phba);
dea31012005-04-17 16:05:31 -05004817 return;
4818}
4819
4820static void
James Smart2e0fef82007-06-17 19:56:36 -05004821lpfc_disc_timeout_handler(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05004822{
James Smart2e0fef82007-06-17 19:56:36 -05004823 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
4824 struct lpfc_hba *phba = vport->phba;
4825 struct lpfc_sli *psli = &phba->sli;
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004826 struct lpfc_nodelist *ndlp, *next_ndlp;
James Smart92d7f7b2007-06-17 19:56:38 -05004827 LPFC_MBOXQ_t *initlinkmbox;
dea31012005-04-17 16:05:31 -05004828 int rc, clrlaerr = 0;
4829
James Smart2e0fef82007-06-17 19:56:36 -05004830 if (!(vport->fc_flag & FC_DISC_TMO))
dea31012005-04-17 16:05:31 -05004831 return;
4832
James Smart2e0fef82007-06-17 19:56:36 -05004833 spin_lock_irq(shost->host_lock);
4834 vport->fc_flag &= ~FC_DISC_TMO;
4835 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05004836
James Smart858c9f62007-06-17 19:56:39 -05004837 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
4838 "disc timeout: state:x%x rtry:x%x flg:x%x",
4839 vport->port_state, vport->fc_ns_retry, vport->fc_flag);
4840
James Smart2e0fef82007-06-17 19:56:36 -05004841 switch (vport->port_state) {
dea31012005-04-17 16:05:31 -05004842
4843 case LPFC_LOCAL_CFG_LINK:
James Smart2e0fef82007-06-17 19:56:36 -05004844 /* port_state is identically LPFC_LOCAL_CFG_LINK while waiting for
4845 * FAN
4846 */
4847 /* FAN timeout */
James Smarte8b62012007-08-02 11:10:09 -04004848 lpfc_printf_vlog(vport, KERN_WARNING, LOG_DISCOVERY,
4849 "0221 FAN timeout\n");
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004850 /* Start discovery by sending FLOGI, clean up old rpis */
James Smart2e0fef82007-06-17 19:56:36 -05004851 list_for_each_entry_safe(ndlp, next_ndlp, &vport->fc_nodes,
James Smart685f0bf2007-04-25 09:53:08 -04004852 nlp_listp) {
James Smarte47c9092008-02-08 18:49:26 -05004853 if (!NLP_CHK_NODE_ACT(ndlp))
4854 continue;
James Smart685f0bf2007-04-25 09:53:08 -04004855 if (ndlp->nlp_state != NLP_STE_NPR_NODE)
4856 continue;
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004857 if (ndlp->nlp_type & NLP_FABRIC) {
4858 /* Clean up the ndlp on Fabric connections */
James Smart2e0fef82007-06-17 19:56:36 -05004859 lpfc_drop_node(vport, ndlp);
James Smart87af33f2007-10-27 13:37:43 -04004860
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004861 } else if (!(ndlp->nlp_flag & NLP_NPR_ADISC)) {
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004862 /* Fail outstanding IO now since device
4863 * is marked for PLOGI.
4864 */
James Smart2e0fef82007-06-17 19:56:36 -05004865 lpfc_unreg_rpi(vport, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004866 }
4867 }
James Smart92d7f7b2007-06-17 19:56:38 -05004868 if (vport->port_state != LPFC_FLOGI) {
James Smart76a95d72010-11-20 23:11:48 -05004869 if (phba->sli_rev <= LPFC_SLI_REV3)
4870 lpfc_initial_flogi(vport);
4871 else
4872 lpfc_issue_init_vfi(vport);
James Smart0ff10d42008-01-11 01:52:36 -05004873 return;
James Smart92d7f7b2007-06-17 19:56:38 -05004874 }
dea31012005-04-17 16:05:31 -05004875 break;
4876
James Smart92d7f7b2007-06-17 19:56:38 -05004877 case LPFC_FDISC:
dea31012005-04-17 16:05:31 -05004878 case LPFC_FLOGI:
James Smart2e0fef82007-06-17 19:56:36 -05004879 /* port_state is identically LPFC_FLOGI while waiting for FLOGI cmpl */
dea31012005-04-17 16:05:31 -05004880 /* Initial FLOGI timeout */
James Smarte8b62012007-08-02 11:10:09 -04004881 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
4882 "0222 Initial %s timeout\n",
James Smart87af33f2007-10-27 13:37:43 -04004883 vport->vpi ? "FDISC" : "FLOGI");
dea31012005-04-17 16:05:31 -05004884
4885 /* Assume no Fabric and go on with discovery.
4886 * Check for outstanding ELS FLOGI to abort.
4887 */
4888
4889 /* FLOGI failed, so just use loop map to make discovery list */
James Smart2e0fef82007-06-17 19:56:36 -05004890 lpfc_disc_list_loopmap(vport);
dea31012005-04-17 16:05:31 -05004891
4892 /* Start discovery */
James Smart2e0fef82007-06-17 19:56:36 -05004893 lpfc_disc_start(vport);
dea31012005-04-17 16:05:31 -05004894 break;
4895
4896 case LPFC_FABRIC_CFG_LINK:
4897 /* hba_state is identically LPFC_FABRIC_CFG_LINK while waiting for
4898 NameServer login */
James Smarte8b62012007-08-02 11:10:09 -04004899 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
4900 "0223 Timeout while waiting for "
4901 "NameServer login\n");
dea31012005-04-17 16:05:31 -05004902 /* Next look for NameServer ndlp */
James Smart2e0fef82007-06-17 19:56:36 -05004903 ndlp = lpfc_findnode_did(vport, NameServer_DID);
James Smarte47c9092008-02-08 18:49:26 -05004904 if (ndlp && NLP_CHK_NODE_ACT(ndlp))
James Smart87af33f2007-10-27 13:37:43 -04004905 lpfc_els_abort(phba, ndlp);
4906
4907 /* ReStart discovery */
4908 goto restart_disc;
dea31012005-04-17 16:05:31 -05004909
4910 case LPFC_NS_QRY:
4911 /* Check for wait for NameServer Rsp timeout */
James Smarte8b62012007-08-02 11:10:09 -04004912 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
4913 "0224 NameServer Query timeout "
4914 "Data: x%x x%x\n",
4915 vport->fc_ns_retry, LPFC_MAX_NS_RETRY);
dea31012005-04-17 16:05:31 -05004916
James Smart92d7f7b2007-06-17 19:56:38 -05004917 if (vport->fc_ns_retry < LPFC_MAX_NS_RETRY) {
4918 /* Try it one more time */
4919 vport->fc_ns_retry++;
4920 rc = lpfc_ns_cmd(vport, SLI_CTNS_GID_FT,
4921 vport->fc_ns_retry, 0);
4922 if (rc == 0)
4923 break;
dea31012005-04-17 16:05:31 -05004924 }
James Smart92d7f7b2007-06-17 19:56:38 -05004925 vport->fc_ns_retry = 0;
dea31012005-04-17 16:05:31 -05004926
James Smart87af33f2007-10-27 13:37:43 -04004927restart_disc:
James Smart92d7f7b2007-06-17 19:56:38 -05004928 /*
4929 * Discovery is over.
4930 * set port_state to PORT_READY if SLI2.
4931 * cmpl_reg_vpi will set port_state to READY for SLI3.
4932 */
James Smart3772a992009-05-22 14:50:54 -04004933 if (phba->sli_rev < LPFC_SLI_REV4) {
4934 if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED)
4935 lpfc_issue_reg_vpi(phba, vport);
4936 else { /* NPIV Not enabled */
4937 lpfc_issue_clear_la(phba, vport);
4938 vport->port_state = LPFC_VPORT_READY;
4939 }
dea31012005-04-17 16:05:31 -05004940 }
4941
4942 /* Setup and issue mailbox INITIALIZE LINK command */
4943 initlinkmbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4944 if (!initlinkmbox) {
James Smarte8b62012007-08-02 11:10:09 -04004945 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
4946 "0206 Device Discovery "
4947 "completion error\n");
James Smart2e0fef82007-06-17 19:56:36 -05004948 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -05004949 break;
4950 }
4951
4952 lpfc_linkdown(phba);
4953 lpfc_init_link(phba, initlinkmbox, phba->cfg_topology,
4954 phba->cfg_link_speed);
James Smart04c68492009-05-22 14:52:52 -04004955 initlinkmbox->u.mb.un.varInitLnk.lipsr_AL_PA = 0;
James Smarted957682007-06-17 19:56:37 -05004956 initlinkmbox->vport = vport;
James Smart92d7f7b2007-06-17 19:56:38 -05004957 initlinkmbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
James Smart0b727fe2007-10-27 13:37:25 -04004958 rc = lpfc_sli_issue_mbox(phba, initlinkmbox, MBX_NOWAIT);
James Smart5b8bd0c2007-04-25 09:52:49 -04004959 lpfc_set_loopback_flag(phba);
dea31012005-04-17 16:05:31 -05004960 if (rc == MBX_NOT_FINISHED)
4961 mempool_free(initlinkmbox, phba->mbox_mem_pool);
4962
4963 break;
4964
4965 case LPFC_DISC_AUTH:
4966 /* Node Authentication timeout */
James Smarte8b62012007-08-02 11:10:09 -04004967 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
4968 "0227 Node Authentication timeout\n");
James Smart2e0fef82007-06-17 19:56:36 -05004969 lpfc_disc_flush_list(vport);
4970
James Smart92d7f7b2007-06-17 19:56:38 -05004971 /*
4972 * set port_state to PORT_READY if SLI2.
4973 * cmpl_reg_vpi will set port_state to READY for SLI3.
4974 */
James Smart3772a992009-05-22 14:50:54 -04004975 if (phba->sli_rev < LPFC_SLI_REV4) {
4976 if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED)
4977 lpfc_issue_reg_vpi(phba, vport);
4978 else { /* NPIV Not enabled */
4979 lpfc_issue_clear_la(phba, vport);
4980 vport->port_state = LPFC_VPORT_READY;
4981 }
dea31012005-04-17 16:05:31 -05004982 }
4983 break;
4984
James Smart2e0fef82007-06-17 19:56:36 -05004985 case LPFC_VPORT_READY:
4986 if (vport->fc_flag & FC_RSCN_MODE) {
James Smarte8b62012007-08-02 11:10:09 -04004987 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
4988 "0231 RSCN timeout Data: x%x "
4989 "x%x\n",
4990 vport->fc_ns_retry, LPFC_MAX_NS_RETRY);
dea31012005-04-17 16:05:31 -05004991
4992 /* Cleanup any outstanding ELS commands */
James Smart2e0fef82007-06-17 19:56:36 -05004993 lpfc_els_flush_cmd(vport);
dea31012005-04-17 16:05:31 -05004994
James Smart2e0fef82007-06-17 19:56:36 -05004995 lpfc_els_flush_rscn(vport);
4996 lpfc_disc_flush_list(vport);
dea31012005-04-17 16:05:31 -05004997 }
4998 break;
James Smart2e0fef82007-06-17 19:56:36 -05004999
James Smart92d7f7b2007-06-17 19:56:38 -05005000 default:
James Smarte8b62012007-08-02 11:10:09 -04005001 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
James Smartd7c255b2008-08-24 21:50:00 -04005002 "0273 Unexpected discovery timeout, "
James Smarte8b62012007-08-02 11:10:09 -04005003 "vport State x%x\n", vport->port_state);
James Smart2e0fef82007-06-17 19:56:36 -05005004 break;
5005 }
5006
5007 switch (phba->link_state) {
5008 case LPFC_CLEAR_LA:
James Smart92d7f7b2007-06-17 19:56:38 -05005009 /* CLEAR LA timeout */
James Smarte8b62012007-08-02 11:10:09 -04005010 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
5011 "0228 CLEAR LA timeout\n");
James Smart2e0fef82007-06-17 19:56:36 -05005012 clrlaerr = 1;
5013 break;
5014
James Smart09372822008-01-11 01:52:54 -05005015 case LPFC_LINK_UP:
5016 lpfc_issue_clear_la(phba, vport);
5017 /* Drop thru */
James Smart2e0fef82007-06-17 19:56:36 -05005018 case LPFC_LINK_UNKNOWN:
5019 case LPFC_WARM_START:
5020 case LPFC_INIT_START:
5021 case LPFC_INIT_MBX_CMDS:
5022 case LPFC_LINK_DOWN:
James Smart2e0fef82007-06-17 19:56:36 -05005023 case LPFC_HBA_ERROR:
James Smarte8b62012007-08-02 11:10:09 -04005024 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
5025 "0230 Unexpected timeout, hba link "
5026 "state x%x\n", phba->link_state);
James Smart2e0fef82007-06-17 19:56:36 -05005027 clrlaerr = 1;
5028 break;
James Smart92d7f7b2007-06-17 19:56:38 -05005029
5030 case LPFC_HBA_READY:
5031 break;
dea31012005-04-17 16:05:31 -05005032 }
5033
5034 if (clrlaerr) {
James Smart2e0fef82007-06-17 19:56:36 -05005035 lpfc_disc_flush_list(vport);
James Smarta4bc3372006-12-02 13:34:16 -05005036 psli->ring[(psli->extra_ring)].flag &= ~LPFC_STOP_IOCB_EVENT;
dea31012005-04-17 16:05:31 -05005037 psli->ring[(psli->fcp_ring)].flag &= ~LPFC_STOP_IOCB_EVENT;
5038 psli->ring[(psli->next_ring)].flag &= ~LPFC_STOP_IOCB_EVENT;
James Smart2e0fef82007-06-17 19:56:36 -05005039 vport->port_state = LPFC_VPORT_READY;
dea31012005-04-17 16:05:31 -05005040 }
5041
5042 return;
5043}
5044
dea31012005-04-17 16:05:31 -05005045/*
5046 * This routine handles processing a NameServer REG_LOGIN mailbox
5047 * command upon completion. It is setup in the LPFC_MBOXQ
5048 * as the completion routine when the command is
5049 * handed off to the SLI layer.
5050 */
5051void
James Smart2e0fef82007-06-17 19:56:36 -05005052lpfc_mbx_cmpl_fdmi_reg_login(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
dea31012005-04-17 16:05:31 -05005053{
James Smart04c68492009-05-22 14:52:52 -04005054 MAILBOX_t *mb = &pmb->u.mb;
James Smart2e0fef82007-06-17 19:56:36 -05005055 struct lpfc_dmabuf *mp = (struct lpfc_dmabuf *) (pmb->context1);
5056 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) pmb->context2;
5057 struct lpfc_vport *vport = pmb->vport;
dea31012005-04-17 16:05:31 -05005058
5059 pmb->context1 = NULL;
James Smartd439d282010-09-29 11:18:45 -04005060 pmb->context2 = NULL;
dea31012005-04-17 16:05:31 -05005061
dea31012005-04-17 16:05:31 -05005062 ndlp->nlp_rpi = mb->un.varWords[0];
James Smart21e9a0a2009-05-22 14:53:21 -04005063 ndlp->nlp_flag |= NLP_RPI_VALID;
dea31012005-04-17 16:05:31 -05005064 ndlp->nlp_type |= NLP_FABRIC;
James Smart2e0fef82007-06-17 19:56:36 -05005065 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
dea31012005-04-17 16:05:31 -05005066
James Smart2e0fef82007-06-17 19:56:36 -05005067 /*
5068 * Start issuing Fabric-Device Management Interface (FDMI) command to
5069 * 0xfffffa (FDMI well known port) or Delay issuing FDMI command if
5070 * fdmi-on=2 (supporting RPA/hostnmae)
dea31012005-04-17 16:05:31 -05005071 */
James Smart2e0fef82007-06-17 19:56:36 -05005072
James Smart3de2a652007-08-02 11:09:59 -04005073 if (vport->cfg_fdmi_on == 1)
James Smart2e0fef82007-06-17 19:56:36 -05005074 lpfc_fdmi_cmd(vport, ndlp, SLI_MGMT_DHBA);
5075 else
5076 mod_timer(&vport->fc_fdmitmo, jiffies + HZ * 60);
dea31012005-04-17 16:05:31 -05005077
James Smartfa4066b2008-01-11 01:53:27 -05005078 /* decrement the node reference count held for this callback
5079 * function.
5080 */
James Smart329f9bc2007-04-25 09:53:01 -04005081 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05005082 lpfc_mbuf_free(phba, mp->virt, mp->phys);
5083 kfree(mp);
James Smart329f9bc2007-04-25 09:53:01 -04005084 mempool_free(pmb, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -05005085
5086 return;
5087}
5088
James Smart685f0bf2007-04-25 09:53:08 -04005089static int
5090lpfc_filter_by_rpi(struct lpfc_nodelist *ndlp, void *param)
5091{
5092 uint16_t *rpi = param;
5093
5094 return ndlp->nlp_rpi == *rpi;
5095}
5096
5097static int
5098lpfc_filter_by_wwpn(struct lpfc_nodelist *ndlp, void *param)
5099{
5100 return memcmp(&ndlp->nlp_portname, param,
5101 sizeof(ndlp->nlp_portname)) == 0;
5102}
5103
Adrian Bunka6ababd2007-11-05 18:07:33 +01005104static struct lpfc_nodelist *
James Smart2e0fef82007-06-17 19:56:36 -05005105__lpfc_find_node(struct lpfc_vport *vport, node_filter filter, void *param)
dea31012005-04-17 16:05:31 -05005106{
James.Smart@Emulex.Com21568f52005-10-28 20:29:36 -04005107 struct lpfc_nodelist *ndlp;
dea31012005-04-17 16:05:31 -05005108
James Smart2e0fef82007-06-17 19:56:36 -05005109 list_for_each_entry(ndlp, &vport->fc_nodes, nlp_listp) {
James Smart87af33f2007-10-27 13:37:43 -04005110 if (filter(ndlp, param))
James Smart685f0bf2007-04-25 09:53:08 -04005111 return ndlp;
5112 }
James.Smart@Emulex.Com21568f52005-10-28 20:29:36 -04005113 return NULL;
dea31012005-04-17 16:05:31 -05005114}
5115
James Smart685f0bf2007-04-25 09:53:08 -04005116/*
5117 * This routine looks up the ndlp lists for the given RPI. If rpi found it
James Smart2e0fef82007-06-17 19:56:36 -05005118 * returns the node list element pointer else return NULL.
James Smart685f0bf2007-04-25 09:53:08 -04005119 */
5120struct lpfc_nodelist *
James Smart2e0fef82007-06-17 19:56:36 -05005121__lpfc_findnode_rpi(struct lpfc_vport *vport, uint16_t rpi)
James Smart685f0bf2007-04-25 09:53:08 -04005122{
James Smart2e0fef82007-06-17 19:56:36 -05005123 return __lpfc_find_node(vport, lpfc_filter_by_rpi, &rpi);
James Smart685f0bf2007-04-25 09:53:08 -04005124}
5125
James Smart488d1462006-03-07 15:02:37 -05005126/*
James Smart685f0bf2007-04-25 09:53:08 -04005127 * This routine looks up the ndlp lists for the given WWPN. If WWPN found it
James Smart2e0fef82007-06-17 19:56:36 -05005128 * returns the node element list pointer else return NULL.
James Smart488d1462006-03-07 15:02:37 -05005129 */
5130struct lpfc_nodelist *
James Smart2e0fef82007-06-17 19:56:36 -05005131lpfc_findnode_wwpn(struct lpfc_vport *vport, struct lpfc_name *wwpn)
James Smart488d1462006-03-07 15:02:37 -05005132{
James Smart2e0fef82007-06-17 19:56:36 -05005133 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart488d1462006-03-07 15:02:37 -05005134 struct lpfc_nodelist *ndlp;
James Smart488d1462006-03-07 15:02:37 -05005135
James Smart2e0fef82007-06-17 19:56:36 -05005136 spin_lock_irq(shost->host_lock);
5137 ndlp = __lpfc_find_node(vport, lpfc_filter_by_wwpn, wwpn);
5138 spin_unlock_irq(shost->host_lock);
James Smart858c9f62007-06-17 19:56:39 -05005139 return ndlp;
James Smart488d1462006-03-07 15:02:37 -05005140}
5141
dea31012005-04-17 16:05:31 -05005142void
James Smart2e0fef82007-06-17 19:56:36 -05005143lpfc_nlp_init(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
5144 uint32_t did)
dea31012005-04-17 16:05:31 -05005145{
5146 memset(ndlp, 0, sizeof (struct lpfc_nodelist));
James Smart109f6ed2008-12-04 22:39:08 -05005147
5148 lpfc_initialize_node(vport, ndlp, did);
James Smart685f0bf2007-04-25 09:53:08 -04005149 INIT_LIST_HEAD(&ndlp->nlp_listp);
James Smart858c9f62007-06-17 19:56:39 -05005150
5151 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_NODE,
5152 "node init: did:x%x",
5153 ndlp->nlp_DID, 0, 0);
5154
dea31012005-04-17 16:05:31 -05005155 return;
5156}
James Smart329f9bc2007-04-25 09:53:01 -04005157
James Smart98c9ea52007-10-27 13:37:33 -04005158/* This routine releases all resources associated with a specifc NPort's ndlp
5159 * and mempool_free's the nodelist.
5160 */
James Smart311464e2007-08-02 11:10:37 -04005161static void
James Smart329f9bc2007-04-25 09:53:01 -04005162lpfc_nlp_release(struct kref *kref)
5163{
James Smarte47c9092008-02-08 18:49:26 -05005164 struct lpfc_hba *phba;
5165 unsigned long flags;
James Smart329f9bc2007-04-25 09:53:01 -04005166 struct lpfc_nodelist *ndlp = container_of(kref, struct lpfc_nodelist,
5167 kref);
James Smart858c9f62007-06-17 19:56:39 -05005168
5169 lpfc_debugfs_disc_trc(ndlp->vport, LPFC_DISC_TRC_NODE,
5170 "node release: did:x%x flg:x%x type:x%x",
5171 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_type);
5172
James Smarte47c9092008-02-08 18:49:26 -05005173 lpfc_printf_vlog(ndlp->vport, KERN_INFO, LOG_NODE,
5174 "0279 lpfc_nlp_release: ndlp:x%p "
5175 "usgmap:x%x refcnt:%d\n",
5176 (void *)ndlp, ndlp->nlp_usg_map,
5177 atomic_read(&ndlp->kref.refcount));
5178
5179 /* remove ndlp from action. */
James Smart2e0fef82007-06-17 19:56:36 -05005180 lpfc_nlp_remove(ndlp->vport, ndlp);
James Smarte47c9092008-02-08 18:49:26 -05005181
5182 /* clear the ndlp active flag for all release cases */
James Smarta257bf92009-04-06 18:48:10 -04005183 phba = ndlp->phba;
James Smarte47c9092008-02-08 18:49:26 -05005184 spin_lock_irqsave(&phba->ndlp_lock, flags);
5185 NLP_CLR_NODE_ACT(ndlp);
5186 spin_unlock_irqrestore(&phba->ndlp_lock, flags);
5187
5188 /* free ndlp memory for final ndlp release */
James Smartea2151b2008-09-07 11:52:10 -04005189 if (NLP_CHK_FREE_REQ(ndlp)) {
5190 kfree(ndlp->lat_data);
James Smarta257bf92009-04-06 18:48:10 -04005191 mempool_free(ndlp, ndlp->phba->nlp_mem_pool);
James Smartea2151b2008-09-07 11:52:10 -04005192 }
James Smart329f9bc2007-04-25 09:53:01 -04005193}
5194
James Smart98c9ea52007-10-27 13:37:33 -04005195/* This routine bumps the reference count for a ndlp structure to ensure
5196 * that one discovery thread won't free a ndlp while another discovery thread
5197 * is using it.
5198 */
James Smart329f9bc2007-04-25 09:53:01 -04005199struct lpfc_nodelist *
5200lpfc_nlp_get(struct lpfc_nodelist *ndlp)
5201{
James Smarte47c9092008-02-08 18:49:26 -05005202 struct lpfc_hba *phba;
5203 unsigned long flags;
5204
James Smart98c9ea52007-10-27 13:37:33 -04005205 if (ndlp) {
5206 lpfc_debugfs_disc_trc(ndlp->vport, LPFC_DISC_TRC_NODE,
5207 "node get: did:x%x flg:x%x refcnt:x%x",
5208 ndlp->nlp_DID, ndlp->nlp_flag,
5209 atomic_read(&ndlp->kref.refcount));
James Smarte47c9092008-02-08 18:49:26 -05005210 /* The check of ndlp usage to prevent incrementing the
5211 * ndlp reference count that is in the process of being
5212 * released.
5213 */
James Smarta257bf92009-04-06 18:48:10 -04005214 phba = ndlp->phba;
James Smarte47c9092008-02-08 18:49:26 -05005215 spin_lock_irqsave(&phba->ndlp_lock, flags);
5216 if (!NLP_CHK_NODE_ACT(ndlp) || NLP_CHK_FREE_ACK(ndlp)) {
5217 spin_unlock_irqrestore(&phba->ndlp_lock, flags);
5218 lpfc_printf_vlog(ndlp->vport, KERN_WARNING, LOG_NODE,
5219 "0276 lpfc_nlp_get: ndlp:x%p "
5220 "usgmap:x%x refcnt:%d\n",
5221 (void *)ndlp, ndlp->nlp_usg_map,
5222 atomic_read(&ndlp->kref.refcount));
5223 return NULL;
5224 } else
5225 kref_get(&ndlp->kref);
5226 spin_unlock_irqrestore(&phba->ndlp_lock, flags);
James Smart98c9ea52007-10-27 13:37:33 -04005227 }
James Smart329f9bc2007-04-25 09:53:01 -04005228 return ndlp;
5229}
5230
James Smart98c9ea52007-10-27 13:37:33 -04005231/* This routine decrements the reference count for a ndlp structure. If the
James Smarte47c9092008-02-08 18:49:26 -05005232 * count goes to 0, this indicates the the associated nodelist should be
5233 * freed. Returning 1 indicates the ndlp resource has been released; on the
5234 * other hand, returning 0 indicates the ndlp resource has not been released
5235 * yet.
James Smart98c9ea52007-10-27 13:37:33 -04005236 */
James Smart329f9bc2007-04-25 09:53:01 -04005237int
5238lpfc_nlp_put(struct lpfc_nodelist *ndlp)
5239{
James Smarte47c9092008-02-08 18:49:26 -05005240 struct lpfc_hba *phba;
5241 unsigned long flags;
5242
5243 if (!ndlp)
5244 return 1;
5245
5246 lpfc_debugfs_disc_trc(ndlp->vport, LPFC_DISC_TRC_NODE,
5247 "node put: did:x%x flg:x%x refcnt:x%x",
5248 ndlp->nlp_DID, ndlp->nlp_flag,
5249 atomic_read(&ndlp->kref.refcount));
James Smarta257bf92009-04-06 18:48:10 -04005250 phba = ndlp->phba;
James Smarte47c9092008-02-08 18:49:26 -05005251 spin_lock_irqsave(&phba->ndlp_lock, flags);
5252 /* Check the ndlp memory free acknowledge flag to avoid the
5253 * possible race condition that kref_put got invoked again
5254 * after previous one has done ndlp memory free.
5255 */
5256 if (NLP_CHK_FREE_ACK(ndlp)) {
5257 spin_unlock_irqrestore(&phba->ndlp_lock, flags);
5258 lpfc_printf_vlog(ndlp->vport, KERN_WARNING, LOG_NODE,
5259 "0274 lpfc_nlp_put: ndlp:x%p "
5260 "usgmap:x%x refcnt:%d\n",
5261 (void *)ndlp, ndlp->nlp_usg_map,
5262 atomic_read(&ndlp->kref.refcount));
5263 return 1;
James Smart98c9ea52007-10-27 13:37:33 -04005264 }
James Smarte47c9092008-02-08 18:49:26 -05005265 /* Check the ndlp inactivate log flag to avoid the possible
5266 * race condition that kref_put got invoked again after ndlp
5267 * is already in inactivating state.
5268 */
5269 if (NLP_CHK_IACT_REQ(ndlp)) {
5270 spin_unlock_irqrestore(&phba->ndlp_lock, flags);
5271 lpfc_printf_vlog(ndlp->vport, KERN_WARNING, LOG_NODE,
5272 "0275 lpfc_nlp_put: ndlp:x%p "
5273 "usgmap:x%x refcnt:%d\n",
5274 (void *)ndlp, ndlp->nlp_usg_map,
5275 atomic_read(&ndlp->kref.refcount));
5276 return 1;
5277 }
5278 /* For last put, mark the ndlp usage flags to make sure no
5279 * other kref_get and kref_put on the same ndlp shall get
5280 * in between the process when the final kref_put has been
5281 * invoked on this ndlp.
5282 */
5283 if (atomic_read(&ndlp->kref.refcount) == 1) {
5284 /* Indicate ndlp is put to inactive state. */
5285 NLP_SET_IACT_REQ(ndlp);
5286 /* Acknowledge ndlp memory free has been seen. */
5287 if (NLP_CHK_FREE_REQ(ndlp))
5288 NLP_SET_FREE_ACK(ndlp);
5289 }
5290 spin_unlock_irqrestore(&phba->ndlp_lock, flags);
5291 /* Note, the kref_put returns 1 when decrementing a reference
5292 * count that was 1, it invokes the release callback function,
5293 * but it still left the reference count as 1 (not actually
5294 * performs the last decrementation). Otherwise, it actually
5295 * decrements the reference count and returns 0.
5296 */
5297 return kref_put(&ndlp->kref, lpfc_nlp_release);
James Smart329f9bc2007-04-25 09:53:01 -04005298}
James Smart98c9ea52007-10-27 13:37:33 -04005299
5300/* This routine free's the specified nodelist if it is not in use
James Smarte47c9092008-02-08 18:49:26 -05005301 * by any other discovery thread. This routine returns 1 if the
5302 * ndlp has been freed. A return value of 0 indicates the ndlp is
5303 * not yet been released.
James Smart98c9ea52007-10-27 13:37:33 -04005304 */
5305int
5306lpfc_nlp_not_used(struct lpfc_nodelist *ndlp)
5307{
5308 lpfc_debugfs_disc_trc(ndlp->vport, LPFC_DISC_TRC_NODE,
5309 "node not used: did:x%x flg:x%x refcnt:x%x",
5310 ndlp->nlp_DID, ndlp->nlp_flag,
5311 atomic_read(&ndlp->kref.refcount));
James Smarte47c9092008-02-08 18:49:26 -05005312 if (atomic_read(&ndlp->kref.refcount) == 1)
5313 if (lpfc_nlp_put(ndlp))
5314 return 1;
James Smart98c9ea52007-10-27 13:37:33 -04005315 return 0;
5316}
James Smart6fb120a2009-05-22 14:52:59 -04005317
5318/**
5319 * lpfc_fcf_inuse - Check if FCF can be unregistered.
5320 * @phba: Pointer to hba context object.
5321 *
5322 * This function iterate through all FC nodes associated
5323 * will all vports to check if there is any node with
5324 * fc_rports associated with it. If there is an fc_rport
5325 * associated with the node, then the node is either in
5326 * discovered state or its devloss_timer is pending.
5327 */
5328static int
5329lpfc_fcf_inuse(struct lpfc_hba *phba)
5330{
5331 struct lpfc_vport **vports;
5332 int i, ret = 0;
5333 struct lpfc_nodelist *ndlp;
5334 struct Scsi_Host *shost;
5335
5336 vports = lpfc_create_vport_work_array(phba);
5337
James Smart63e801c2010-11-20 23:14:19 -05005338 /* If driver cannot allocate memory, indicate fcf is in use */
5339 if (!vports)
5340 return 1;
5341
James Smart6fb120a2009-05-22 14:52:59 -04005342 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
5343 shost = lpfc_shost_from_vport(vports[i]);
5344 spin_lock_irq(shost->host_lock);
5345 list_for_each_entry(ndlp, &vports[i]->fc_nodes, nlp_listp) {
5346 if (NLP_CHK_NODE_ACT(ndlp) && ndlp->rport &&
5347 (ndlp->rport->roles & FC_RPORT_ROLE_FCP_TARGET)) {
5348 ret = 1;
5349 spin_unlock_irq(shost->host_lock);
5350 goto out;
James Smart891478a2009-11-18 15:40:23 -05005351 } else {
5352 lpfc_printf_log(phba, KERN_INFO, LOG_ELS,
5353 "2624 RPI %x DID %x flg %x still "
5354 "logged in\n",
5355 ndlp->nlp_rpi, ndlp->nlp_DID,
5356 ndlp->nlp_flag);
5357 if (ndlp->nlp_flag & NLP_RPI_VALID)
5358 ret = 1;
James Smart6fb120a2009-05-22 14:52:59 -04005359 }
5360 }
5361 spin_unlock_irq(shost->host_lock);
5362 }
5363out:
5364 lpfc_destroy_vport_work_array(phba, vports);
5365 return ret;
5366}
5367
5368/**
5369 * lpfc_unregister_vfi_cmpl - Completion handler for unreg vfi.
5370 * @phba: Pointer to hba context object.
5371 * @mboxq: Pointer to mailbox object.
5372 *
5373 * This function frees memory associated with the mailbox command.
5374 */
5375static void
5376lpfc_unregister_vfi_cmpl(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
5377{
5378 struct lpfc_vport *vport = mboxq->vport;
James Smart38b92ef2010-08-04 16:11:39 -04005379 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart6fb120a2009-05-22 14:52:59 -04005380
5381 if (mboxq->u.mb.mbxStatus) {
5382 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY|LOG_MBOX,
5383 "2555 UNREG_VFI mbxStatus error x%x "
5384 "HBA state x%x\n",
5385 mboxq->u.mb.mbxStatus, vport->port_state);
5386 }
James Smart38b92ef2010-08-04 16:11:39 -04005387 spin_lock_irq(shost->host_lock);
5388 phba->pport->fc_flag &= ~FC_VFI_REGISTERED;
5389 spin_unlock_irq(shost->host_lock);
James Smart6fb120a2009-05-22 14:52:59 -04005390 mempool_free(mboxq, phba->mbox_mem_pool);
5391 return;
5392}
5393
5394/**
5395 * lpfc_unregister_fcfi_cmpl - Completion handler for unreg fcfi.
5396 * @phba: Pointer to hba context object.
5397 * @mboxq: Pointer to mailbox object.
5398 *
5399 * This function frees memory associated with the mailbox command.
5400 */
5401static void
5402lpfc_unregister_fcfi_cmpl(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
5403{
5404 struct lpfc_vport *vport = mboxq->vport;
5405
5406 if (mboxq->u.mb.mbxStatus) {
5407 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY|LOG_MBOX,
5408 "2550 UNREG_FCFI mbxStatus error x%x "
5409 "HBA state x%x\n",
5410 mboxq->u.mb.mbxStatus, vport->port_state);
5411 }
5412 mempool_free(mboxq, phba->mbox_mem_pool);
5413 return;
5414}
5415
5416/**
James Smartecfd03c2010-02-12 14:41:27 -05005417 * lpfc_unregister_fcf_prep - Unregister fcf record preparation
James Smart6fb120a2009-05-22 14:52:59 -04005418 * @phba: Pointer to hba context object.
5419 *
James Smartecfd03c2010-02-12 14:41:27 -05005420 * This function prepare the HBA for unregistering the currently registered
5421 * FCF from the HBA. It performs unregistering, in order, RPIs, VPIs, and
5422 * VFIs.
James Smart6fb120a2009-05-22 14:52:59 -04005423 */
James Smartecfd03c2010-02-12 14:41:27 -05005424int
5425lpfc_unregister_fcf_prep(struct lpfc_hba *phba)
James Smart6fb120a2009-05-22 14:52:59 -04005426{
5427 LPFC_MBOXQ_t *mbox;
James Smart6fb120a2009-05-22 14:52:59 -04005428 struct lpfc_vport **vports;
James Smart695a8142010-01-26 23:08:03 -05005429 struct lpfc_nodelist *ndlp;
James Smart72100cc2010-02-12 14:43:01 -05005430 struct Scsi_Host *shost;
James Smartecfd03c2010-02-12 14:41:27 -05005431 int i, rc;
James Smart6fb120a2009-05-22 14:52:59 -04005432
James Smartecfd03c2010-02-12 14:41:27 -05005433 /* Unregister RPIs */
James Smart6fb120a2009-05-22 14:52:59 -04005434 if (lpfc_fcf_inuse(phba))
James Smartecfd03c2010-02-12 14:41:27 -05005435 lpfc_unreg_hba_rpis(phba);
James Smart6fb120a2009-05-22 14:52:59 -04005436
James Smart4d9ab992009-10-02 15:16:39 -04005437 /* At this point, all discovery is aborted */
5438 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
James Smart6fb120a2009-05-22 14:52:59 -04005439
5440 /* Unregister VPIs */
5441 vports = lpfc_create_vport_work_array(phba);
James Smartecfd03c2010-02-12 14:41:27 -05005442 if (vports && (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED))
James Smart6fb120a2009-05-22 14:52:59 -04005443 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
James Smart695a8142010-01-26 23:08:03 -05005444 /* Stop FLOGI/FDISC retries */
5445 ndlp = lpfc_findnode_did(vports[i], Fabric_DID);
5446 if (ndlp)
5447 lpfc_cancel_retry_delay_tmo(vports[i], ndlp);
James Smart78730cf2010-04-06 15:06:30 -04005448 lpfc_cleanup_pending_mbox(vports[i]);
James Smart5af5eee2010-10-22 11:06:38 -04005449 if (phba->sli_rev == LPFC_SLI_REV4)
5450 lpfc_sli4_unreg_all_rpis(vports[i]);
James Smart6fb120a2009-05-22 14:52:59 -04005451 lpfc_mbx_unreg_vpi(vports[i]);
James Smart72100cc2010-02-12 14:43:01 -05005452 shost = lpfc_shost_from_vport(vports[i]);
5453 spin_lock_irq(shost->host_lock);
James Smart891478a2009-11-18 15:40:23 -05005454 vports[i]->fc_flag |= FC_VPORT_NEEDS_INIT_VPI;
James Smartc8685952009-11-18 15:39:16 -05005455 vports[i]->vpi_state &= ~LPFC_VPI_REGISTERED;
James Smart72100cc2010-02-12 14:43:01 -05005456 spin_unlock_irq(shost->host_lock);
James Smart6fb120a2009-05-22 14:52:59 -04005457 }
5458 lpfc_destroy_vport_work_array(phba, vports);
5459
James Smart695a8142010-01-26 23:08:03 -05005460 /* Cleanup any outstanding ELS commands */
5461 lpfc_els_flush_all_cmd(phba);
5462
James Smart6fb120a2009-05-22 14:52:59 -04005463 /* Unregister VFI */
5464 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5465 if (!mbox) {
5466 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY|LOG_MBOX,
James Smartecfd03c2010-02-12 14:41:27 -05005467 "2556 UNREG_VFI mbox allocation failed"
5468 "HBA state x%x\n", phba->pport->port_state);
5469 return -ENOMEM;
James Smart6fb120a2009-05-22 14:52:59 -04005470 }
5471
James Smart6669f9b2009-10-02 15:16:45 -04005472 lpfc_unreg_vfi(mbox, phba->pport);
James Smart6fb120a2009-05-22 14:52:59 -04005473 mbox->vport = phba->pport;
5474 mbox->mbox_cmpl = lpfc_unregister_vfi_cmpl;
5475
5476 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
5477 if (rc == MBX_NOT_FINISHED) {
5478 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY|LOG_MBOX,
James Smartecfd03c2010-02-12 14:41:27 -05005479 "2557 UNREG_VFI issue mbox failed rc x%x "
5480 "HBA state x%x\n",
5481 rc, phba->pport->port_state);
James Smart6fb120a2009-05-22 14:52:59 -04005482 mempool_free(mbox, phba->mbox_mem_pool);
James Smartecfd03c2010-02-12 14:41:27 -05005483 return -EIO;
James Smart6fb120a2009-05-22 14:52:59 -04005484 }
5485
James Smart72100cc2010-02-12 14:43:01 -05005486 shost = lpfc_shost_from_vport(phba->pport);
5487 spin_lock_irq(shost->host_lock);
James Smart695a8142010-01-26 23:08:03 -05005488 phba->pport->fc_flag &= ~FC_VFI_REGISTERED;
James Smart72100cc2010-02-12 14:43:01 -05005489 spin_unlock_irq(shost->host_lock);
James Smart695a8142010-01-26 23:08:03 -05005490
James Smartecfd03c2010-02-12 14:41:27 -05005491 return 0;
5492}
5493
5494/**
5495 * lpfc_sli4_unregister_fcf - Unregister currently registered FCF record
5496 * @phba: Pointer to hba context object.
5497 *
5498 * This function issues synchronous unregister FCF mailbox command to HBA to
5499 * unregister the currently registered FCF record. The driver does not reset
5500 * the driver FCF usage state flags.
5501 *
5502 * Return 0 if successfully issued, none-zero otherwise.
5503 */
5504int
5505lpfc_sli4_unregister_fcf(struct lpfc_hba *phba)
5506{
5507 LPFC_MBOXQ_t *mbox;
5508 int rc;
5509
James Smart6fb120a2009-05-22 14:52:59 -04005510 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5511 if (!mbox) {
5512 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY|LOG_MBOX,
James Smartecfd03c2010-02-12 14:41:27 -05005513 "2551 UNREG_FCFI mbox allocation failed"
5514 "HBA state x%x\n", phba->pport->port_state);
5515 return -ENOMEM;
James Smart6fb120a2009-05-22 14:52:59 -04005516 }
James Smart6fb120a2009-05-22 14:52:59 -04005517 lpfc_unreg_fcfi(mbox, phba->fcf.fcfi);
5518 mbox->vport = phba->pport;
5519 mbox->mbox_cmpl = lpfc_unregister_fcfi_cmpl;
5520 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
5521
5522 if (rc == MBX_NOT_FINISHED) {
James Smartecfd03c2010-02-12 14:41:27 -05005523 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
5524 "2552 Unregister FCFI command failed rc x%x "
5525 "HBA state x%x\n",
5526 rc, phba->pport->port_state);
5527 return -EINVAL;
5528 }
5529 return 0;
5530}
5531
5532/**
5533 * lpfc_unregister_fcf_rescan - Unregister currently registered fcf and rescan
5534 * @phba: Pointer to hba context object.
5535 *
5536 * This function unregisters the currently reigstered FCF. This function
5537 * also tries to find another FCF for discovery by rescan the HBA FCF table.
5538 */
5539void
5540lpfc_unregister_fcf_rescan(struct lpfc_hba *phba)
5541{
5542 int rc;
5543
5544 /* Preparation for unregistering fcf */
5545 rc = lpfc_unregister_fcf_prep(phba);
5546 if (rc) {
5547 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY,
5548 "2748 Failed to prepare for unregistering "
5549 "HBA's FCF record: rc=%d\n", rc);
James Smart6fb120a2009-05-22 14:52:59 -04005550 return;
5551 }
5552
James Smartecfd03c2010-02-12 14:41:27 -05005553 /* Now, unregister FCF record and reset HBA FCF state */
5554 rc = lpfc_sli4_unregister_fcf(phba);
5555 if (rc)
5556 return;
5557 /* Reset HBA FCF states after successful unregister FCF */
5558 phba->fcf.fcf_flag = 0;
James Smartfc2b9892010-02-26 14:15:29 -05005559 phba->fcf.current_rec.flag = 0;
James Smart6fb120a2009-05-22 14:52:59 -04005560
5561 /*
5562 * If driver is not unloading, check if there is any other
5563 * FCF record that can be used for discovery.
5564 */
5565 if ((phba->pport->load_flag & FC_UNLOADING) ||
James Smartecfd03c2010-02-12 14:41:27 -05005566 (phba->link_state < LPFC_LINK_UP))
James Smart6fb120a2009-05-22 14:52:59 -04005567 return;
5568
James Smart0c9ab6f2010-02-26 14:15:57 -05005569 /* This is considered as the initial FCF discovery scan */
5570 spin_lock_irq(&phba->hbalock);
5571 phba->fcf.fcf_flag |= FCF_INIT_DISC;
5572 spin_unlock_irq(&phba->hbalock);
James Smart38b92ef2010-08-04 16:11:39 -04005573
5574 /* Reset FCF roundrobin bmask for new discovery */
5575 memset(phba->fcf.fcf_rr_bmask, 0, sizeof(*phba->fcf.fcf_rr_bmask));
5576
James Smart0c9ab6f2010-02-26 14:15:57 -05005577 rc = lpfc_sli4_fcf_scan_read_fcf_rec(phba, LPFC_FCOE_FCF_GET_FIRST);
James Smart6fb120a2009-05-22 14:52:59 -04005578
James Smart0c9ab6f2010-02-26 14:15:57 -05005579 if (rc) {
5580 spin_lock_irq(&phba->hbalock);
5581 phba->fcf.fcf_flag &= ~FCF_INIT_DISC;
5582 spin_unlock_irq(&phba->hbalock);
James Smart6fb120a2009-05-22 14:52:59 -04005583 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY|LOG_MBOX,
James Smartecfd03c2010-02-12 14:41:27 -05005584 "2553 lpfc_unregister_unused_fcf failed "
5585 "to read FCF record HBA state x%x\n",
5586 phba->pport->port_state);
James Smart0c9ab6f2010-02-26 14:15:57 -05005587 }
James Smartecfd03c2010-02-12 14:41:27 -05005588}
5589
5590/**
5591 * lpfc_unregister_fcf - Unregister the currently registered fcf record
5592 * @phba: Pointer to hba context object.
5593 *
5594 * This function just unregisters the currently reigstered FCF. It does not
5595 * try to find another FCF for discovery.
5596 */
5597void
5598lpfc_unregister_fcf(struct lpfc_hba *phba)
5599{
5600 int rc;
5601
5602 /* Preparation for unregistering fcf */
5603 rc = lpfc_unregister_fcf_prep(phba);
5604 if (rc) {
5605 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY,
5606 "2749 Failed to prepare for unregistering "
5607 "HBA's FCF record: rc=%d\n", rc);
5608 return;
5609 }
5610
5611 /* Now, unregister FCF record and reset HBA FCF state */
5612 rc = lpfc_sli4_unregister_fcf(phba);
5613 if (rc)
5614 return;
5615 /* Set proper HBA FCF states after successful unregister FCF */
5616 spin_lock_irq(&phba->hbalock);
5617 phba->fcf.fcf_flag &= ~FCF_REGISTERED;
5618 spin_unlock_irq(&phba->hbalock);
5619}
5620
5621/**
5622 * lpfc_unregister_unused_fcf - Unregister FCF if all devices are disconnected.
5623 * @phba: Pointer to hba context object.
5624 *
5625 * This function check if there are any connected remote port for the FCF and
5626 * if all the devices are disconnected, this function unregister FCFI.
5627 * This function also tries to use another FCF for discovery.
5628 */
5629void
5630lpfc_unregister_unused_fcf(struct lpfc_hba *phba)
5631{
5632 /*
James Smart3804dc82010-07-14 15:31:37 -04005633 * If HBA is not running in FIP mode, if HBA does not support
5634 * FCoE, if FCF discovery is ongoing, or if FCF has not been
5635 * registered, do nothing.
James Smartecfd03c2010-02-12 14:41:27 -05005636 */
5637 spin_lock_irq(&phba->hbalock);
James Smart76a95d72010-11-20 23:11:48 -05005638 if (!(phba->hba_flag & HBA_FCOE_MODE) ||
James Smartecfd03c2010-02-12 14:41:27 -05005639 !(phba->fcf.fcf_flag & FCF_REGISTERED) ||
James Smartdbb6b3a2010-06-08 18:31:37 -04005640 !(phba->hba_flag & HBA_FIP_SUPPORT) ||
James Smart3804dc82010-07-14 15:31:37 -04005641 (phba->fcf.fcf_flag & FCF_DISCOVERY) ||
James Smartdbb6b3a2010-06-08 18:31:37 -04005642 (phba->pport->port_state == LPFC_FLOGI)) {
James Smartecfd03c2010-02-12 14:41:27 -05005643 spin_unlock_irq(&phba->hbalock);
5644 return;
5645 }
5646 spin_unlock_irq(&phba->hbalock);
5647
5648 if (lpfc_fcf_inuse(phba))
5649 return;
5650
5651 lpfc_unregister_fcf_rescan(phba);
James Smart6fb120a2009-05-22 14:52:59 -04005652}
5653
5654/**
5655 * lpfc_read_fcf_conn_tbl - Create driver FCF connection table.
5656 * @phba: Pointer to hba context object.
5657 * @buff: Buffer containing the FCF connection table as in the config
5658 * region.
5659 * This function create driver data structure for the FCF connection
5660 * record table read from config region 23.
5661 */
5662static void
5663lpfc_read_fcf_conn_tbl(struct lpfc_hba *phba,
5664 uint8_t *buff)
5665{
5666 struct lpfc_fcf_conn_entry *conn_entry, *next_conn_entry;
5667 struct lpfc_fcf_conn_hdr *conn_hdr;
5668 struct lpfc_fcf_conn_rec *conn_rec;
5669 uint32_t record_count;
5670 int i;
5671
5672 /* Free the current connect table */
5673 list_for_each_entry_safe(conn_entry, next_conn_entry,
James Smart4d9ab992009-10-02 15:16:39 -04005674 &phba->fcf_conn_rec_list, list) {
5675 list_del_init(&conn_entry->list);
James Smart6fb120a2009-05-22 14:52:59 -04005676 kfree(conn_entry);
James Smart4d9ab992009-10-02 15:16:39 -04005677 }
James Smart6fb120a2009-05-22 14:52:59 -04005678
5679 conn_hdr = (struct lpfc_fcf_conn_hdr *) buff;
5680 record_count = conn_hdr->length * sizeof(uint32_t)/
5681 sizeof(struct lpfc_fcf_conn_rec);
5682
5683 conn_rec = (struct lpfc_fcf_conn_rec *)
5684 (buff + sizeof(struct lpfc_fcf_conn_hdr));
5685
5686 for (i = 0; i < record_count; i++) {
5687 if (!(conn_rec[i].flags & FCFCNCT_VALID))
5688 continue;
5689 conn_entry = kzalloc(sizeof(struct lpfc_fcf_conn_entry),
5690 GFP_KERNEL);
5691 if (!conn_entry) {
5692 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5693 "2566 Failed to allocate connection"
5694 " table entry\n");
5695 return;
5696 }
5697
5698 memcpy(&conn_entry->conn_rec, &conn_rec[i],
5699 sizeof(struct lpfc_fcf_conn_rec));
5700 conn_entry->conn_rec.vlan_tag =
5701 le16_to_cpu(conn_entry->conn_rec.vlan_tag) & 0xFFF;
5702 conn_entry->conn_rec.flags =
5703 le16_to_cpu(conn_entry->conn_rec.flags);
5704 list_add_tail(&conn_entry->list,
5705 &phba->fcf_conn_rec_list);
5706 }
5707}
5708
5709/**
5710 * lpfc_read_fcoe_param - Read FCoe parameters from conf region..
5711 * @phba: Pointer to hba context object.
5712 * @buff: Buffer containing the FCoE parameter data structure.
5713 *
5714 * This function update driver data structure with config
5715 * parameters read from config region 23.
5716 */
5717static void
5718lpfc_read_fcoe_param(struct lpfc_hba *phba,
5719 uint8_t *buff)
5720{
5721 struct lpfc_fip_param_hdr *fcoe_param_hdr;
5722 struct lpfc_fcoe_params *fcoe_param;
5723
5724 fcoe_param_hdr = (struct lpfc_fip_param_hdr *)
5725 buff;
5726 fcoe_param = (struct lpfc_fcoe_params *)
James Smart32b97932009-07-19 10:01:21 -04005727 (buff + sizeof(struct lpfc_fip_param_hdr));
James Smart6fb120a2009-05-22 14:52:59 -04005728
5729 if ((fcoe_param_hdr->parm_version != FIPP_VERSION) ||
5730 (fcoe_param_hdr->length != FCOE_PARAM_LENGTH))
5731 return;
5732
James Smart6fb120a2009-05-22 14:52:59 -04005733 if (fcoe_param_hdr->parm_flags & FIPP_VLAN_VALID) {
5734 phba->valid_vlan = 1;
5735 phba->vlan_id = le16_to_cpu(fcoe_param->vlan_tag) &
5736 0xFFF;
5737 }
5738
5739 phba->fc_map[0] = fcoe_param->fc_map[0];
5740 phba->fc_map[1] = fcoe_param->fc_map[1];
5741 phba->fc_map[2] = fcoe_param->fc_map[2];
5742 return;
5743}
5744
5745/**
5746 * lpfc_get_rec_conf23 - Get a record type in config region data.
5747 * @buff: Buffer containing config region 23 data.
5748 * @size: Size of the data buffer.
5749 * @rec_type: Record type to be searched.
5750 *
5751 * This function searches config region data to find the begining
5752 * of the record specified by record_type. If record found, this
5753 * function return pointer to the record else return NULL.
5754 */
5755static uint8_t *
5756lpfc_get_rec_conf23(uint8_t *buff, uint32_t size, uint8_t rec_type)
5757{
5758 uint32_t offset = 0, rec_length;
5759
5760 if ((buff[0] == LPFC_REGION23_LAST_REC) ||
5761 (size < sizeof(uint32_t)))
5762 return NULL;
5763
5764 rec_length = buff[offset + 1];
5765
5766 /*
5767 * One TLV record has one word header and number of data words
5768 * specified in the rec_length field of the record header.
5769 */
5770 while ((offset + rec_length * sizeof(uint32_t) + sizeof(uint32_t))
5771 <= size) {
5772 if (buff[offset] == rec_type)
5773 return &buff[offset];
5774
5775 if (buff[offset] == LPFC_REGION23_LAST_REC)
5776 return NULL;
5777
5778 offset += rec_length * sizeof(uint32_t) + sizeof(uint32_t);
5779 rec_length = buff[offset + 1];
5780 }
5781 return NULL;
5782}
5783
5784/**
5785 * lpfc_parse_fcoe_conf - Parse FCoE config data read from config region 23.
5786 * @phba: Pointer to lpfc_hba data structure.
5787 * @buff: Buffer containing config region 23 data.
5788 * @size: Size of the data buffer.
5789 *
Stefan Weileef35c22010-08-06 21:11:15 +02005790 * This function parses the FCoE config parameters in config region 23 and
James Smart6fb120a2009-05-22 14:52:59 -04005791 * populate driver data structure with the parameters.
5792 */
5793void
5794lpfc_parse_fcoe_conf(struct lpfc_hba *phba,
5795 uint8_t *buff,
5796 uint32_t size)
5797{
5798 uint32_t offset = 0, rec_length;
5799 uint8_t *rec_ptr;
5800
5801 /*
5802 * If data size is less than 2 words signature and version cannot be
5803 * verified.
5804 */
5805 if (size < 2*sizeof(uint32_t))
5806 return;
5807
5808 /* Check the region signature first */
5809 if (memcmp(buff, LPFC_REGION23_SIGNATURE, 4)) {
5810 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5811 "2567 Config region 23 has bad signature\n");
5812 return;
5813 }
5814
5815 offset += 4;
5816
5817 /* Check the data structure version */
5818 if (buff[offset] != LPFC_REGION23_VERSION) {
5819 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5820 "2568 Config region 23 has bad version\n");
5821 return;
5822 }
5823 offset += 4;
5824
5825 rec_length = buff[offset + 1];
5826
5827 /* Read FCoE param record */
5828 rec_ptr = lpfc_get_rec_conf23(&buff[offset],
5829 size - offset, FCOE_PARAM_TYPE);
5830 if (rec_ptr)
5831 lpfc_read_fcoe_param(phba, rec_ptr);
5832
5833 /* Read FCF connection table */
5834 rec_ptr = lpfc_get_rec_conf23(&buff[offset],
5835 size - offset, FCOE_CONN_TBL_TYPE);
5836 if (rec_ptr)
5837 lpfc_read_fcf_conn_tbl(phba, rec_ptr);
5838
5839}