blob: 99c76677e39425b8228b8db497dd49f0f31382e9 [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 Smart9589b0622011-04-16 11:03:17 -04004 * Copyright (C) 2004-2011 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 Smart92494142011-02-16 12:39:44 -0500661 if (work_port_events & WORKER_DELAYED_DISC_TMO)
662 lpfc_delayed_disc_timeout_handler(vport);
James Smart92d7f7b2007-06-17 19:56:38 -0500663 }
James Smart09372822008-01-11 01:52:54 -0500664 lpfc_destroy_vport_work_array(phba, vports);
dea31012005-04-17 16:05:31 -0500665
James Smart858c9f62007-06-17 19:56:39 -0500666 pring = &phba->sli.ring[LPFC_ELS_RING];
667 status = (ha_copy & (HA_RXMASK << (4*LPFC_ELS_RING)));
668 status >>= (4*LPFC_ELS_RING);
James Smart4d9ab992009-10-02 15:16:39 -0400669 if ((status & HA_RXMASK) ||
670 (pring->flag & LPFC_DEFERRED_RING_EVENT) ||
James Smart45ed1192009-10-02 15:17:02 -0400671 (phba->hba_flag & HBA_SP_QUEUE_EVT)) {
James Smart0b727fe2007-10-27 13:37:25 -0400672 if (pring->flag & LPFC_STOP_IOCB_EVENT) {
James Smart858c9f62007-06-17 19:56:39 -0500673 pring->flag |= LPFC_DEFERRED_RING_EVENT;
James Smart5e9d9b82008-06-14 22:52:53 -0400674 /* Set the lpfc data pending flag */
675 set_bit(LPFC_DATA_READY, &phba->data_flags);
James Smart858c9f62007-06-17 19:56:39 -0500676 } else {
James Smart58da1ff2008-04-07 10:15:56 -0400677 pring->flag &= ~LPFC_DEFERRED_RING_EVENT;
James Smart858c9f62007-06-17 19:56:39 -0500678 lpfc_sli_handle_slow_ring_event(phba, pring,
679 (status &
680 HA_RXMASK));
James Smart858c9f62007-06-17 19:56:39 -0500681 }
James Smartbc739052010-08-04 16:11:18 -0400682 if ((phba->sli_rev == LPFC_SLI_REV4) && pring->txq_cnt)
James Smart2a9bf3d2010-06-07 15:24:45 -0400683 lpfc_drain_txq(phba);
James Smart858c9f62007-06-17 19:56:39 -0500684 /*
685 * Turn on Ring interrupts
686 */
James Smart3772a992009-05-22 14:50:54 -0400687 if (phba->sli_rev <= LPFC_SLI_REV3) {
688 spin_lock_irq(&phba->hbalock);
689 control = readl(phba->HCregaddr);
690 if (!(control & (HC_R0INT_ENA << LPFC_ELS_RING))) {
691 lpfc_debugfs_slow_ring_trc(phba,
692 "WRK Enable ring: cntl:x%x hacopy:x%x",
693 control, ha_copy, 0);
James Smarta58cbd52007-08-02 11:09:43 -0400694
James Smart3772a992009-05-22 14:50:54 -0400695 control |= (HC_R0INT_ENA << LPFC_ELS_RING);
696 writel(control, phba->HCregaddr);
697 readl(phba->HCregaddr); /* flush */
698 } else {
699 lpfc_debugfs_slow_ring_trc(phba,
700 "WRK Ring ok: cntl:x%x hacopy:x%x",
701 control, ha_copy, 0);
702 }
703 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -0500704 }
705 }
James Smart2e0fef82007-06-17 19:56:36 -0500706 lpfc_work_list_done(phba);
dea31012005-04-17 16:05:31 -0500707}
708
dea31012005-04-17 16:05:31 -0500709int
710lpfc_do_work(void *p)
711{
712 struct lpfc_hba *phba = p;
713 int rc;
dea31012005-04-17 16:05:31 -0500714
715 set_user_nice(current, -20);
James Smart5e9d9b82008-06-14 22:52:53 -0400716 phba->data_flags = 0;
dea31012005-04-17 16:05:31 -0500717
James Smart3a55b532008-12-04 22:38:54 -0500718 while (!kthread_should_stop()) {
James Smart5e9d9b82008-06-14 22:52:53 -0400719 /* wait and check worker queue activities */
720 rc = wait_event_interruptible(phba->work_waitq,
721 (test_and_clear_bit(LPFC_DATA_READY,
722 &phba->data_flags)
723 || kthread_should_stop()));
James Smart3a55b532008-12-04 22:38:54 -0500724 /* Signal wakeup shall terminate the worker thread */
725 if (rc) {
726 lpfc_printf_log(phba, KERN_ERR, LOG_ELS,
727 "0433 Wakeup on signal: rc=x%x\n", rc);
dea31012005-04-17 16:05:31 -0500728 break;
James Smart3a55b532008-12-04 22:38:54 -0500729 }
dea31012005-04-17 16:05:31 -0500730
James Smart5e9d9b82008-06-14 22:52:53 -0400731 /* Attend pending lpfc data processing */
dea31012005-04-17 16:05:31 -0500732 lpfc_work_done(phba);
dea31012005-04-17 16:05:31 -0500733 }
James Smart3a55b532008-12-04 22:38:54 -0500734 phba->worker_thread = NULL;
735 lpfc_printf_log(phba, KERN_INFO, LOG_ELS,
736 "0432 Worker thread stopped.\n");
dea31012005-04-17 16:05:31 -0500737 return 0;
738}
739
740/*
741 * This is only called to handle FC worker events. Since this a rare
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300742 * occurrence, we allocate a struct lpfc_work_evt structure here instead of
dea31012005-04-17 16:05:31 -0500743 * embedding it in the IOCB.
744 */
745int
James Smart2e0fef82007-06-17 19:56:36 -0500746lpfc_workq_post_event(struct lpfc_hba *phba, void *arg1, void *arg2,
dea31012005-04-17 16:05:31 -0500747 uint32_t evt)
748{
749 struct lpfc_work_evt *evtp;
James Smarted957682007-06-17 19:56:37 -0500750 unsigned long flags;
dea31012005-04-17 16:05:31 -0500751
752 /*
753 * All Mailbox completions and LPFC_ELS_RING rcv ring IOCB events will
754 * be queued to worker thread for processing
755 */
James Smart92d7f7b2007-06-17 19:56:38 -0500756 evtp = kmalloc(sizeof(struct lpfc_work_evt), GFP_ATOMIC);
dea31012005-04-17 16:05:31 -0500757 if (!evtp)
758 return 0;
759
760 evtp->evt_arg1 = arg1;
761 evtp->evt_arg2 = arg2;
762 evtp->evt = evt;
763
James Smarted957682007-06-17 19:56:37 -0500764 spin_lock_irqsave(&phba->hbalock, flags);
James Smart071fbd3d2006-04-15 11:53:20 -0400765 list_add_tail(&evtp->evt_listp, &phba->work_list);
James Smarted957682007-06-17 19:56:37 -0500766 spin_unlock_irqrestore(&phba->hbalock, flags);
dea31012005-04-17 16:05:31 -0500767
James Smart5e9d9b82008-06-14 22:52:53 -0400768 lpfc_worker_wake_up(phba);
769
dea31012005-04-17 16:05:31 -0500770 return 1;
771}
772
James Smart92d7f7b2007-06-17 19:56:38 -0500773void
774lpfc_cleanup_rpis(struct lpfc_vport *vport, int remove)
775{
James Smart09372822008-01-11 01:52:54 -0500776 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart92d7f7b2007-06-17 19:56:38 -0500777 struct lpfc_hba *phba = vport->phba;
778 struct lpfc_nodelist *ndlp, *next_ndlp;
779 int rc;
780
781 list_for_each_entry_safe(ndlp, next_ndlp, &vport->fc_nodes, nlp_listp) {
James Smarte47c9092008-02-08 18:49:26 -0500782 if (!NLP_CHK_NODE_ACT(ndlp))
783 continue;
James Smart92d7f7b2007-06-17 19:56:38 -0500784 if (ndlp->nlp_state == NLP_STE_UNUSED_NODE)
785 continue;
James Smart98c9ea52007-10-27 13:37:33 -0400786 if ((phba->sli3_options & LPFC_SLI3_VPORT_TEARDOWN) ||
787 ((vport->port_type == LPFC_NPIV_PORT) &&
788 (ndlp->nlp_DID == NameServer_DID)))
James Smart92d7f7b2007-06-17 19:56:38 -0500789 lpfc_unreg_rpi(vport, ndlp);
790
791 /* Leave Fabric nodes alone on link down */
James Smart4d9ab992009-10-02 15:16:39 -0400792 if ((phba->sli_rev < LPFC_SLI_REV4) &&
793 (!remove && ndlp->nlp_type & NLP_FABRIC))
James Smart92d7f7b2007-06-17 19:56:38 -0500794 continue;
795 rc = lpfc_disc_state_machine(vport, ndlp, NULL,
796 remove
797 ? NLP_EVT_DEVICE_RM
798 : NLP_EVT_DEVICE_RECOVERY);
799 }
800 if (phba->sli3_options & LPFC_SLI3_VPORT_TEARDOWN) {
James Smart5af5eee2010-10-22 11:06:38 -0400801 if (phba->sli_rev == LPFC_SLI_REV4)
802 lpfc_sli4_unreg_all_rpis(vport);
James Smart92d7f7b2007-06-17 19:56:38 -0500803 lpfc_mbx_unreg_vpi(vport);
James Smart09372822008-01-11 01:52:54 -0500804 spin_lock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -0500805 vport->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
James Smart09372822008-01-11 01:52:54 -0500806 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -0500807 }
808}
809
James Smart87af33f2007-10-27 13:37:43 -0400810void
James Smart98c9ea52007-10-27 13:37:33 -0400811lpfc_port_link_failure(struct lpfc_vport *vport)
James Smart92d7f7b2007-06-17 19:56:38 -0500812{
James Smart695a8142010-01-26 23:08:03 -0500813 lpfc_vport_set_state(vport, FC_VPORT_LINKDOWN);
814
James Smart45ed1192009-10-02 15:17:02 -0400815 /* Cleanup any outstanding received buffers */
816 lpfc_cleanup_rcv_buffers(vport);
817
James Smart92d7f7b2007-06-17 19:56:38 -0500818 /* Cleanup any outstanding RSCN activity */
819 lpfc_els_flush_rscn(vport);
820
821 /* Cleanup any outstanding ELS commands */
822 lpfc_els_flush_cmd(vport);
823
824 lpfc_cleanup_rpis(vport, 0);
825
James Smart92d7f7b2007-06-17 19:56:38 -0500826 /* Turn off discovery timer if its running */
827 lpfc_can_disctmo(vport);
828}
829
James Smart3772a992009-05-22 14:50:54 -0400830void
James Smart98c9ea52007-10-27 13:37:33 -0400831lpfc_linkdown_port(struct lpfc_vport *vport)
832{
833 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
834
835 fc_host_post_event(shost, fc_get_event_number(), FCH_EVT_LINKDOWN, 0);
836
837 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
838 "Link Down: state:x%x rtry:x%x flg:x%x",
839 vport->port_state, vport->fc_ns_retry, vport->fc_flag);
840
841 lpfc_port_link_failure(vport);
842
James Smart92494142011-02-16 12:39:44 -0500843 /* Stop delayed Nport discovery */
844 spin_lock_irq(shost->host_lock);
845 vport->fc_flag &= ~FC_DISC_DELAYED;
846 spin_unlock_irq(shost->host_lock);
847 del_timer_sync(&vport->delayed_disc_tmo);
James Smart98c9ea52007-10-27 13:37:33 -0400848}
849
dea31012005-04-17 16:05:31 -0500850int
James Smart685f0bf2007-04-25 09:53:08 -0400851lpfc_linkdown(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -0500852{
James Smart2e0fef82007-06-17 19:56:36 -0500853 struct lpfc_vport *vport = phba->pport;
854 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart549e55c2007-08-02 11:09:51 -0400855 struct lpfc_vport **vports;
James Smart685f0bf2007-04-25 09:53:08 -0400856 LPFC_MBOXQ_t *mb;
James Smart549e55c2007-08-02 11:09:51 -0400857 int i;
dea31012005-04-17 16:05:31 -0500858
James Smart3163f722008-02-08 18:50:25 -0500859 if (phba->link_state == LPFC_LINK_DOWN)
James Smart2e0fef82007-06-17 19:56:36 -0500860 return 0;
James Smartaacc20e2009-12-21 17:02:51 -0500861
862 /* Block all SCSI stack I/Os */
863 lpfc_scsi_dev_block(phba);
864
James Smart2e0fef82007-06-17 19:56:36 -0500865 spin_lock_irq(&phba->hbalock);
James Smartecfd03c2010-02-12 14:41:27 -0500866 phba->fcf.fcf_flag &= ~(FCF_AVAILABLE | FCF_SCAN_DONE);
James Smart72100cc2010-02-12 14:43:01 -0500867 spin_unlock_irq(&phba->hbalock);
James Smart92d7f7b2007-06-17 19:56:38 -0500868 if (phba->link_state > LPFC_LINK_DOWN) {
James Smart2e0fef82007-06-17 19:56:36 -0500869 phba->link_state = LPFC_LINK_DOWN;
James Smart72100cc2010-02-12 14:43:01 -0500870 spin_lock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -0500871 phba->pport->fc_flag &= ~FC_LBIT;
James Smart72100cc2010-02-12 14:43:01 -0500872 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -0500873 }
James Smart549e55c2007-08-02 11:09:51 -0400874 vports = lpfc_create_vport_work_array(phba);
875 if (vports != NULL)
James Smart6fb120a2009-05-22 14:52:59 -0400876 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
James Smart549e55c2007-08-02 11:09:51 -0400877 /* Issue a LINK DOWN event to all nodes */
878 lpfc_linkdown_port(vports[i]);
879 }
James Smart09372822008-01-11 01:52:54 -0500880 lpfc_destroy_vport_work_array(phba, vports);
dea31012005-04-17 16:05:31 -0500881 /* Clean up any firmware default rpi's */
James Smart2e0fef82007-06-17 19:56:36 -0500882 mb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
883 if (mb) {
James Smart6d368e52011-05-24 11:44:12 -0400884 lpfc_unreg_did(phba, 0xffff, LPFC_UNREG_ALL_DFLT_RPIS, mb);
James Smarted957682007-06-17 19:56:37 -0500885 mb->vport = vport;
James Smart2e0fef82007-06-17 19:56:36 -0500886 mb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
James Smart0b727fe2007-10-27 13:37:25 -0400887 if (lpfc_sli_issue_mbox(phba, mb, MBX_NOWAIT)
dea31012005-04-17 16:05:31 -0500888 == MBX_NOT_FINISHED) {
James Smart2e0fef82007-06-17 19:56:36 -0500889 mempool_free(mb, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -0500890 }
891 }
892
dea31012005-04-17 16:05:31 -0500893 /* Setup myDID for link up if we are in pt2pt mode */
James Smart92d7f7b2007-06-17 19:56:38 -0500894 if (phba->pport->fc_flag & FC_PT2PT) {
895 phba->pport->fc_myDID = 0;
James Smart2e0fef82007-06-17 19:56:36 -0500896 mb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
897 if (mb) {
dea31012005-04-17 16:05:31 -0500898 lpfc_config_link(phba, mb);
James Smart92d7f7b2007-06-17 19:56:38 -0500899 mb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
James Smarted957682007-06-17 19:56:37 -0500900 mb->vport = vport;
James Smart0b727fe2007-10-27 13:37:25 -0400901 if (lpfc_sli_issue_mbox(phba, mb, MBX_NOWAIT)
dea31012005-04-17 16:05:31 -0500902 == MBX_NOT_FINISHED) {
James Smart2e0fef82007-06-17 19:56:36 -0500903 mempool_free(mb, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -0500904 }
905 }
James Smart2e0fef82007-06-17 19:56:36 -0500906 spin_lock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -0500907 phba->pport->fc_flag &= ~(FC_PT2PT | FC_PT2PT_PLOGI);
James Smart2e0fef82007-06-17 19:56:36 -0500908 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500909 }
James Smart2e0fef82007-06-17 19:56:36 -0500910
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -0500911 return 0;
dea31012005-04-17 16:05:31 -0500912}
913
James Smart92d7f7b2007-06-17 19:56:38 -0500914static void
915lpfc_linkup_cleanup_nodes(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -0500916{
James Smart92d7f7b2007-06-17 19:56:38 -0500917 struct lpfc_nodelist *ndlp;
918
919 list_for_each_entry(ndlp, &vport->fc_nodes, nlp_listp) {
James Smarte47c9092008-02-08 18:49:26 -0500920 if (!NLP_CHK_NODE_ACT(ndlp))
921 continue;
James Smart92d7f7b2007-06-17 19:56:38 -0500922 if (ndlp->nlp_state == NLP_STE_UNUSED_NODE)
923 continue;
James Smart92d7f7b2007-06-17 19:56:38 -0500924 if (ndlp->nlp_type & NLP_FABRIC) {
James Smarte47c9092008-02-08 18:49:26 -0500925 /* On Linkup its safe to clean up the ndlp
926 * from Fabric connections.
927 */
James Smart92d7f7b2007-06-17 19:56:38 -0500928 if (ndlp->nlp_DID != Fabric_DID)
929 lpfc_unreg_rpi(vport, ndlp);
930 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
931 } else if (!(ndlp->nlp_flag & NLP_NPR_ADISC)) {
James Smarte47c9092008-02-08 18:49:26 -0500932 /* Fail outstanding IO now since device is
933 * marked for PLOGI.
934 */
James Smart92d7f7b2007-06-17 19:56:38 -0500935 lpfc_unreg_rpi(vport, ndlp);
936 }
937 }
938}
939
940static void
941lpfc_linkup_port(struct lpfc_vport *vport)
942{
943 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart92d7f7b2007-06-17 19:56:38 -0500944 struct lpfc_hba *phba = vport->phba;
945
946 if ((vport->load_flag & FC_UNLOADING) != 0)
947 return;
948
James Smart858c9f62007-06-17 19:56:39 -0500949 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
950 "Link Up: top:x%x speed:x%x flg:x%x",
951 phba->fc_topology, phba->fc_linkspeed, phba->link_flag);
952
James Smart92d7f7b2007-06-17 19:56:38 -0500953 /* If NPIV is not enabled, only bring the physical port up */
954 if (!(phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
955 (vport != phba->pport))
956 return;
dea31012005-04-17 16:05:31 -0500957
James Smart2e0fef82007-06-17 19:56:36 -0500958 fc_host_post_event(shost, fc_get_event_number(), FCH_EVT_LINKUP, 0);
James Smartd2873e42006-08-18 17:46:43 -0400959
James Smart2e0fef82007-06-17 19:56:36 -0500960 spin_lock_irq(shost->host_lock);
James Smart2e0fef82007-06-17 19:56:36 -0500961 vport->fc_flag &= ~(FC_PT2PT | FC_PT2PT_PLOGI | FC_ABORT_DISCOVERY |
962 FC_RSCN_MODE | FC_NLP_MORE | FC_RSCN_DISCOVERY);
963 vport->fc_flag |= FC_NDISC_ACTIVE;
964 vport->fc_ns_retry = 0;
965 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500966
James Smart92d7f7b2007-06-17 19:56:38 -0500967 if (vport->fc_flag & FC_LBIT)
968 lpfc_linkup_cleanup_nodes(vport);
dea31012005-04-17 16:05:31 -0500969
James Smart92d7f7b2007-06-17 19:56:38 -0500970}
971
972static int
973lpfc_linkup(struct lpfc_hba *phba)
974{
James Smart549e55c2007-08-02 11:09:51 -0400975 struct lpfc_vport **vports;
976 int i;
James Smart92d7f7b2007-06-17 19:56:38 -0500977
James Smart19ca7602010-11-20 23:11:55 -0500978 lpfc_cleanup_wt_rrqs(phba);
James Smart92d7f7b2007-06-17 19:56:38 -0500979 phba->link_state = LPFC_LINK_UP;
980
981 /* Unblock fabric iocbs if they are blocked */
982 clear_bit(FABRIC_COMANDS_BLOCKED, &phba->bit_flags);
983 del_timer_sync(&phba->fabric_block_timer);
984
James Smart549e55c2007-08-02 11:09:51 -0400985 vports = lpfc_create_vport_work_array(phba);
986 if (vports != NULL)
James Smart6fb120a2009-05-22 14:52:59 -0400987 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++)
James Smart549e55c2007-08-02 11:09:51 -0400988 lpfc_linkup_port(vports[i]);
James Smart09372822008-01-11 01:52:54 -0500989 lpfc_destroy_vport_work_array(phba, vports);
James Smart6fb120a2009-05-22 14:52:59 -0400990 if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
991 (phba->sli_rev < LPFC_SLI_REV4))
James Smart92d7f7b2007-06-17 19:56:38 -0500992 lpfc_issue_clear_la(phba, phba->pport);
dea31012005-04-17 16:05:31 -0500993
994 return 0;
995}
996
997/*
998 * This routine handles processing a CLEAR_LA mailbox
999 * command upon completion. It is setup in the LPFC_MBOXQ
1000 * as the completion routine when the command is
1001 * handed off to the SLI layer.
1002 */
Adrian Bunka6ababd2007-11-05 18:07:33 +01001003static void
James Smart2e0fef82007-06-17 19:56:36 -05001004lpfc_mbx_cmpl_clear_la(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
dea31012005-04-17 16:05:31 -05001005{
James Smart2e0fef82007-06-17 19:56:36 -05001006 struct lpfc_vport *vport = pmb->vport;
1007 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1008 struct lpfc_sli *psli = &phba->sli;
James Smart04c68492009-05-22 14:52:52 -04001009 MAILBOX_t *mb = &pmb->u.mb;
dea31012005-04-17 16:05:31 -05001010 uint32_t control;
1011
dea31012005-04-17 16:05:31 -05001012 /* Since we don't do discovery right now, turn these off here */
James Smarta4bc3372006-12-02 13:34:16 -05001013 psli->ring[psli->extra_ring].flag &= ~LPFC_STOP_IOCB_EVENT;
dea31012005-04-17 16:05:31 -05001014 psli->ring[psli->fcp_ring].flag &= ~LPFC_STOP_IOCB_EVENT;
1015 psli->ring[psli->next_ring].flag &= ~LPFC_STOP_IOCB_EVENT;
1016
1017 /* Check for error */
1018 if ((mb->mbxStatus) && (mb->mbxStatus != 0x1601)) {
James Smart92d7f7b2007-06-17 19:56:38 -05001019 /* CLEAR_LA mbox error <mbxStatus> state <hba_state> */
James Smarte8b62012007-08-02 11:10:09 -04001020 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
1021 "0320 CLEAR_LA mbxStatus error x%x hba "
1022 "state x%x\n",
1023 mb->mbxStatus, vport->port_state);
James Smart2e0fef82007-06-17 19:56:36 -05001024 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -05001025 goto out;
1026 }
1027
James Smart92d7f7b2007-06-17 19:56:38 -05001028 if (vport->port_type == LPFC_PHYSICAL_PORT)
1029 phba->link_state = LPFC_HBA_READY;
1030
1031 spin_lock_irq(&phba->hbalock);
1032 psli->sli_flag |= LPFC_PROCESS_LA;
1033 control = readl(phba->HCregaddr);
1034 control |= HC_LAINT_ENA;
1035 writel(control, phba->HCregaddr);
1036 readl(phba->HCregaddr); /* flush */
1037 spin_unlock_irq(&phba->hbalock);
James Smart1b32f6a2008-02-08 18:49:39 -05001038 mempool_free(pmb, phba->mbox_mem_pool);
James Smart92d7f7b2007-06-17 19:56:38 -05001039 return;
dea31012005-04-17 16:05:31 -05001040
dea31012005-04-17 16:05:31 -05001041out:
1042 /* Device Discovery completes */
James Smarte8b62012007-08-02 11:10:09 -04001043 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
1044 "0225 Device Discovery completes\n");
James Smart2e0fef82007-06-17 19:56:36 -05001045 mempool_free(pmb, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -05001046
James Smart2e0fef82007-06-17 19:56:36 -05001047 spin_lock_irq(shost->host_lock);
James Smart58da1ff2008-04-07 10:15:56 -04001048 vport->fc_flag &= ~FC_ABORT_DISCOVERY;
James Smart2e0fef82007-06-17 19:56:36 -05001049 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001050
James Smart2e0fef82007-06-17 19:56:36 -05001051 lpfc_can_disctmo(vport);
dea31012005-04-17 16:05:31 -05001052
1053 /* turn on Link Attention interrupts */
James Smart2e0fef82007-06-17 19:56:36 -05001054
1055 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05001056 psli->sli_flag |= LPFC_PROCESS_LA;
1057 control = readl(phba->HCregaddr);
1058 control |= HC_LAINT_ENA;
1059 writel(control, phba->HCregaddr);
1060 readl(phba->HCregaddr); /* flush */
James Smart2e0fef82007-06-17 19:56:36 -05001061 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05001062
1063 return;
1064}
1065
James Smart2e0fef82007-06-17 19:56:36 -05001066
dea31012005-04-17 16:05:31 -05001067static void
Jamie Wellnitz25594c62006-02-28 19:25:34 -05001068lpfc_mbx_cmpl_local_config_link(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
dea31012005-04-17 16:05:31 -05001069{
James Smart2e0fef82007-06-17 19:56:36 -05001070 struct lpfc_vport *vport = pmb->vport;
dea31012005-04-17 16:05:31 -05001071
James Smart04c68492009-05-22 14:52:52 -04001072 if (pmb->u.mb.mbxStatus)
dea31012005-04-17 16:05:31 -05001073 goto out;
dea31012005-04-17 16:05:31 -05001074
Jamie Wellnitz25594c62006-02-28 19:25:34 -05001075 mempool_free(pmb, phba->mbox_mem_pool);
1076
James Smart76a95d72010-11-20 23:11:48 -05001077 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP &&
James Smart2e0fef82007-06-17 19:56:36 -05001078 vport->fc_flag & FC_PUBLIC_LOOP &&
1079 !(vport->fc_flag & FC_LBIT)) {
Jamie Wellnitz25594c62006-02-28 19:25:34 -05001080 /* Need to wait for FAN - use discovery timer
James Smart2e0fef82007-06-17 19:56:36 -05001081 * for timeout. port_state is identically
Jamie Wellnitz25594c62006-02-28 19:25:34 -05001082 * LPFC_LOCAL_CFG_LINK while waiting for FAN
1083 */
James Smart2e0fef82007-06-17 19:56:36 -05001084 lpfc_set_disctmo(vport);
Jamie Wellnitz25594c62006-02-28 19:25:34 -05001085 return;
James Smart92d7f7b2007-06-17 19:56:38 -05001086 }
dea31012005-04-17 16:05:31 -05001087
James Smart2e0fef82007-06-17 19:56:36 -05001088 /* Start discovery by sending a FLOGI. port_state is identically
Jamie Wellnitz25594c62006-02-28 19:25:34 -05001089 * LPFC_FLOGI while waiting for FLOGI cmpl
1090 */
James Smart76a95d72010-11-20 23:11:48 -05001091 if (vport->port_state != LPFC_FLOGI)
James Smart92d7f7b2007-06-17 19:56:38 -05001092 lpfc_initial_flogi(vport);
Jamie Wellnitz25594c62006-02-28 19:25:34 -05001093 return;
dea31012005-04-17 16:05:31 -05001094
1095out:
James Smarte8b62012007-08-02 11:10:09 -04001096 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
1097 "0306 CONFIG_LINK mbxStatus error x%x "
1098 "HBA state x%x\n",
James Smart04c68492009-05-22 14:52:52 -04001099 pmb->u.mb.mbxStatus, vport->port_state);
James Smart92d7f7b2007-06-17 19:56:38 -05001100 mempool_free(pmb, phba->mbox_mem_pool);
Jamie Wellnitz25594c62006-02-28 19:25:34 -05001101
1102 lpfc_linkdown(phba);
1103
James Smarte8b62012007-08-02 11:10:09 -04001104 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
1105 "0200 CONFIG_LINK bad hba state x%x\n",
1106 vport->port_state);
dea31012005-04-17 16:05:31 -05001107
James Smart92d7f7b2007-06-17 19:56:38 -05001108 lpfc_issue_clear_la(phba, vport);
dea31012005-04-17 16:05:31 -05001109 return;
1110}
1111
James Smart7d791df2011-07-22 18:37:52 -04001112/**
1113 * lpfc_sli4_clear_fcf_rr_bmask
1114 * @phba pointer to the struct lpfc_hba for this port.
1115 * This fucnction resets the round robin bit mask and clears the
1116 * fcf priority list. The list deletions are done while holding the
1117 * hbalock. The ON_LIST flag and the FLOGI_FAILED flags are cleared
1118 * from the lpfc_fcf_pri record.
1119 **/
1120void
1121lpfc_sli4_clear_fcf_rr_bmask(struct lpfc_hba *phba)
1122{
1123 struct lpfc_fcf_pri *fcf_pri;
1124 struct lpfc_fcf_pri *next_fcf_pri;
1125 memset(phba->fcf.fcf_rr_bmask, 0, sizeof(*phba->fcf.fcf_rr_bmask));
1126 spin_lock_irq(&phba->hbalock);
1127 list_for_each_entry_safe(fcf_pri, next_fcf_pri,
1128 &phba->fcf.fcf_pri_list, list) {
1129 list_del_init(&fcf_pri->list);
1130 fcf_pri->fcf_rec.flag = 0;
1131 }
1132 spin_unlock_irq(&phba->hbalock);
1133}
dea31012005-04-17 16:05:31 -05001134static void
James Smart6fb120a2009-05-22 14:52:59 -04001135lpfc_mbx_cmpl_reg_fcfi(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
1136{
1137 struct lpfc_vport *vport = mboxq->vport;
James Smart6fb120a2009-05-22 14:52:59 -04001138
1139 if (mboxq->u.mb.mbxStatus) {
1140 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
1141 "2017 REG_FCFI mbxStatus error x%x "
1142 "HBA state x%x\n",
1143 mboxq->u.mb.mbxStatus, vport->port_state);
James Smarta93ff372010-10-22 11:06:08 -04001144 goto fail_out;
James Smart6fb120a2009-05-22 14:52:59 -04001145 }
1146
1147 /* Start FCoE discovery by sending a FLOGI. */
1148 phba->fcf.fcfi = bf_get(lpfc_reg_fcfi_fcfi, &mboxq->u.mqe.un.reg_fcfi);
1149 /* Set the FCFI registered flag */
James Smartd439d282010-09-29 11:18:45 -04001150 spin_lock_irq(&phba->hbalock);
James Smart6fb120a2009-05-22 14:52:59 -04001151 phba->fcf.fcf_flag |= FCF_REGISTERED;
James Smartd439d282010-09-29 11:18:45 -04001152 spin_unlock_irq(&phba->hbalock);
James Smarta93ff372010-10-22 11:06:08 -04001153
James Smart32b97932009-07-19 10:01:21 -04001154 /* If there is a pending FCoE event, restart FCF table scan. */
James Smart7d791df2011-07-22 18:37:52 -04001155 if ((!(phba->hba_flag & FCF_RR_INPROG)) &&
1156 lpfc_check_pending_fcoe_event(phba, LPFC_UNREG_FCF))
James Smarta93ff372010-10-22 11:06:08 -04001157 goto fail_out;
1158
1159 /* Mark successful completion of FCF table scan */
James Smartd439d282010-09-29 11:18:45 -04001160 spin_lock_irq(&phba->hbalock);
James Smartecfd03c2010-02-12 14:41:27 -05001161 phba->fcf.fcf_flag |= (FCF_SCAN_DONE | FCF_IN_USE);
James Smarta93ff372010-10-22 11:06:08 -04001162 phba->hba_flag &= ~FCF_TS_INPROG;
1163 if (vport->port_state != LPFC_FLOGI) {
1164 phba->hba_flag |= FCF_RR_INPROG;
1165 spin_unlock_irq(&phba->hbalock);
James Smart76a95d72010-11-20 23:11:48 -05001166 lpfc_issue_init_vfi(vport);
James Smarta93ff372010-10-22 11:06:08 -04001167 goto out;
1168 }
1169 spin_unlock_irq(&phba->hbalock);
1170 goto out;
James Smart6fb120a2009-05-22 14:52:59 -04001171
James Smarta93ff372010-10-22 11:06:08 -04001172fail_out:
1173 spin_lock_irq(&phba->hbalock);
1174 phba->hba_flag &= ~FCF_RR_INPROG;
1175 spin_unlock_irq(&phba->hbalock);
1176out:
James Smart6fb120a2009-05-22 14:52:59 -04001177 mempool_free(mboxq, phba->mbox_mem_pool);
James Smart6fb120a2009-05-22 14:52:59 -04001178}
1179
1180/**
1181 * lpfc_fab_name_match - Check if the fcf fabric name match.
1182 * @fab_name: pointer to fabric name.
1183 * @new_fcf_record: pointer to fcf record.
1184 *
1185 * This routine compare the fcf record's fabric name with provided
1186 * fabric name. If the fabric name are identical this function
1187 * returns 1 else return 0.
1188 **/
1189static uint32_t
1190lpfc_fab_name_match(uint8_t *fab_name, struct fcf_record *new_fcf_record)
1191{
James Smartecfd03c2010-02-12 14:41:27 -05001192 if (fab_name[0] != bf_get(lpfc_fcf_record_fab_name_0, new_fcf_record))
James Smart6fb120a2009-05-22 14:52:59 -04001193 return 0;
James Smartecfd03c2010-02-12 14:41:27 -05001194 if (fab_name[1] != bf_get(lpfc_fcf_record_fab_name_1, new_fcf_record))
1195 return 0;
1196 if (fab_name[2] != bf_get(lpfc_fcf_record_fab_name_2, new_fcf_record))
1197 return 0;
1198 if (fab_name[3] != bf_get(lpfc_fcf_record_fab_name_3, new_fcf_record))
1199 return 0;
1200 if (fab_name[4] != bf_get(lpfc_fcf_record_fab_name_4, new_fcf_record))
1201 return 0;
1202 if (fab_name[5] != bf_get(lpfc_fcf_record_fab_name_5, new_fcf_record))
1203 return 0;
1204 if (fab_name[6] != bf_get(lpfc_fcf_record_fab_name_6, new_fcf_record))
1205 return 0;
1206 if (fab_name[7] != bf_get(lpfc_fcf_record_fab_name_7, new_fcf_record))
1207 return 0;
1208 return 1;
James Smart6fb120a2009-05-22 14:52:59 -04001209}
1210
1211/**
James Smart8fa38512009-07-19 10:01:03 -04001212 * lpfc_sw_name_match - Check if the fcf switch name match.
1213 * @fab_name: pointer to fabric name.
1214 * @new_fcf_record: pointer to fcf record.
1215 *
1216 * This routine compare the fcf record's switch name with provided
1217 * switch name. If the switch name are identical this function
1218 * returns 1 else return 0.
1219 **/
1220static uint32_t
1221lpfc_sw_name_match(uint8_t *sw_name, struct fcf_record *new_fcf_record)
1222{
James Smartecfd03c2010-02-12 14:41:27 -05001223 if (sw_name[0] != bf_get(lpfc_fcf_record_switch_name_0, new_fcf_record))
James Smart8fa38512009-07-19 10:01:03 -04001224 return 0;
James Smartecfd03c2010-02-12 14:41:27 -05001225 if (sw_name[1] != bf_get(lpfc_fcf_record_switch_name_1, new_fcf_record))
1226 return 0;
1227 if (sw_name[2] != bf_get(lpfc_fcf_record_switch_name_2, new_fcf_record))
1228 return 0;
1229 if (sw_name[3] != bf_get(lpfc_fcf_record_switch_name_3, new_fcf_record))
1230 return 0;
1231 if (sw_name[4] != bf_get(lpfc_fcf_record_switch_name_4, new_fcf_record))
1232 return 0;
1233 if (sw_name[5] != bf_get(lpfc_fcf_record_switch_name_5, new_fcf_record))
1234 return 0;
1235 if (sw_name[6] != bf_get(lpfc_fcf_record_switch_name_6, new_fcf_record))
1236 return 0;
1237 if (sw_name[7] != bf_get(lpfc_fcf_record_switch_name_7, new_fcf_record))
1238 return 0;
1239 return 1;
James Smart8fa38512009-07-19 10:01:03 -04001240}
1241
1242/**
James Smart6fb120a2009-05-22 14:52:59 -04001243 * lpfc_mac_addr_match - Check if the fcf mac address match.
James Smartecfd03c2010-02-12 14:41:27 -05001244 * @mac_addr: pointer to mac address.
James Smart6fb120a2009-05-22 14:52:59 -04001245 * @new_fcf_record: pointer to fcf record.
1246 *
1247 * This routine compare the fcf record's mac address with HBA's
1248 * FCF mac address. If the mac addresses are identical this function
1249 * returns 1 else return 0.
1250 **/
1251static uint32_t
James Smartecfd03c2010-02-12 14:41:27 -05001252lpfc_mac_addr_match(uint8_t *mac_addr, struct fcf_record *new_fcf_record)
James Smart6fb120a2009-05-22 14:52:59 -04001253{
James Smartecfd03c2010-02-12 14:41:27 -05001254 if (mac_addr[0] != bf_get(lpfc_fcf_record_mac_0, new_fcf_record))
James Smart6fb120a2009-05-22 14:52:59 -04001255 return 0;
James Smartecfd03c2010-02-12 14:41:27 -05001256 if (mac_addr[1] != bf_get(lpfc_fcf_record_mac_1, new_fcf_record))
1257 return 0;
1258 if (mac_addr[2] != bf_get(lpfc_fcf_record_mac_2, new_fcf_record))
1259 return 0;
1260 if (mac_addr[3] != bf_get(lpfc_fcf_record_mac_3, new_fcf_record))
1261 return 0;
1262 if (mac_addr[4] != bf_get(lpfc_fcf_record_mac_4, new_fcf_record))
1263 return 0;
1264 if (mac_addr[5] != bf_get(lpfc_fcf_record_mac_5, new_fcf_record))
1265 return 0;
1266 return 1;
1267}
1268
1269static bool
1270lpfc_vlan_id_match(uint16_t curr_vlan_id, uint16_t new_vlan_id)
1271{
1272 return (curr_vlan_id == new_vlan_id);
James Smart6fb120a2009-05-22 14:52:59 -04001273}
1274
1275/**
James Smart7d791df2011-07-22 18:37:52 -04001276 * lpfc_update_fcf_record - Update driver fcf record
1277 * __lpfc_update_fcf_record_pri - update the lpfc_fcf_pri record.
1278 * @phba: pointer to lpfc hba data structure.
1279 * @fcf_index: Index for the lpfc_fcf_record.
1280 * @new_fcf_record: pointer to hba fcf record.
1281 *
1282 * This routine updates the driver FCF priority record from the new HBA FCF
1283 * record. This routine is called with the host lock held.
1284 **/
1285static void
1286__lpfc_update_fcf_record_pri(struct lpfc_hba *phba, uint16_t fcf_index,
1287 struct fcf_record *new_fcf_record
1288 )
1289{
1290 struct lpfc_fcf_pri *fcf_pri;
1291
1292 fcf_pri = &phba->fcf.fcf_pri[fcf_index];
1293 fcf_pri->fcf_rec.fcf_index = fcf_index;
1294 /* FCF record priority */
1295 fcf_pri->fcf_rec.priority = new_fcf_record->fip_priority;
1296
1297}
1298
1299/**
James Smart6fb120a2009-05-22 14:52:59 -04001300 * lpfc_copy_fcf_record - Copy fcf information to lpfc_hba.
James Smartecfd03c2010-02-12 14:41:27 -05001301 * @fcf: pointer to driver fcf record.
James Smart6fb120a2009-05-22 14:52:59 -04001302 * @new_fcf_record: pointer to fcf record.
1303 *
1304 * This routine copies the FCF information from the FCF
1305 * record to lpfc_hba data structure.
1306 **/
1307static void
James Smartecfd03c2010-02-12 14:41:27 -05001308lpfc_copy_fcf_record(struct lpfc_fcf_rec *fcf_rec,
1309 struct fcf_record *new_fcf_record)
James Smart6fb120a2009-05-22 14:52:59 -04001310{
James Smartecfd03c2010-02-12 14:41:27 -05001311 /* Fabric name */
1312 fcf_rec->fabric_name[0] =
James Smart6fb120a2009-05-22 14:52:59 -04001313 bf_get(lpfc_fcf_record_fab_name_0, new_fcf_record);
James Smartecfd03c2010-02-12 14:41:27 -05001314 fcf_rec->fabric_name[1] =
James Smart6fb120a2009-05-22 14:52:59 -04001315 bf_get(lpfc_fcf_record_fab_name_1, new_fcf_record);
James Smartecfd03c2010-02-12 14:41:27 -05001316 fcf_rec->fabric_name[2] =
James Smart6fb120a2009-05-22 14:52:59 -04001317 bf_get(lpfc_fcf_record_fab_name_2, new_fcf_record);
James Smartecfd03c2010-02-12 14:41:27 -05001318 fcf_rec->fabric_name[3] =
James Smart6fb120a2009-05-22 14:52:59 -04001319 bf_get(lpfc_fcf_record_fab_name_3, new_fcf_record);
James Smartecfd03c2010-02-12 14:41:27 -05001320 fcf_rec->fabric_name[4] =
James Smart6fb120a2009-05-22 14:52:59 -04001321 bf_get(lpfc_fcf_record_fab_name_4, new_fcf_record);
James Smartecfd03c2010-02-12 14:41:27 -05001322 fcf_rec->fabric_name[5] =
James Smart6fb120a2009-05-22 14:52:59 -04001323 bf_get(lpfc_fcf_record_fab_name_5, new_fcf_record);
James Smartecfd03c2010-02-12 14:41:27 -05001324 fcf_rec->fabric_name[6] =
James Smart6fb120a2009-05-22 14:52:59 -04001325 bf_get(lpfc_fcf_record_fab_name_6, new_fcf_record);
James Smartecfd03c2010-02-12 14:41:27 -05001326 fcf_rec->fabric_name[7] =
James Smart6fb120a2009-05-22 14:52:59 -04001327 bf_get(lpfc_fcf_record_fab_name_7, new_fcf_record);
James Smartecfd03c2010-02-12 14:41:27 -05001328 /* Mac address */
1329 fcf_rec->mac_addr[0] = bf_get(lpfc_fcf_record_mac_0, new_fcf_record);
1330 fcf_rec->mac_addr[1] = bf_get(lpfc_fcf_record_mac_1, new_fcf_record);
1331 fcf_rec->mac_addr[2] = bf_get(lpfc_fcf_record_mac_2, new_fcf_record);
1332 fcf_rec->mac_addr[3] = bf_get(lpfc_fcf_record_mac_3, new_fcf_record);
1333 fcf_rec->mac_addr[4] = bf_get(lpfc_fcf_record_mac_4, new_fcf_record);
1334 fcf_rec->mac_addr[5] = bf_get(lpfc_fcf_record_mac_5, new_fcf_record);
1335 /* FCF record index */
1336 fcf_rec->fcf_indx = bf_get(lpfc_fcf_record_fcf_index, new_fcf_record);
1337 /* FCF record priority */
1338 fcf_rec->priority = new_fcf_record->fip_priority;
1339 /* Switch name */
1340 fcf_rec->switch_name[0] =
James Smart8fa38512009-07-19 10:01:03 -04001341 bf_get(lpfc_fcf_record_switch_name_0, new_fcf_record);
James Smartecfd03c2010-02-12 14:41:27 -05001342 fcf_rec->switch_name[1] =
James Smart8fa38512009-07-19 10:01:03 -04001343 bf_get(lpfc_fcf_record_switch_name_1, new_fcf_record);
James Smartecfd03c2010-02-12 14:41:27 -05001344 fcf_rec->switch_name[2] =
James Smart8fa38512009-07-19 10:01:03 -04001345 bf_get(lpfc_fcf_record_switch_name_2, new_fcf_record);
James Smartecfd03c2010-02-12 14:41:27 -05001346 fcf_rec->switch_name[3] =
James Smart8fa38512009-07-19 10:01:03 -04001347 bf_get(lpfc_fcf_record_switch_name_3, new_fcf_record);
James Smartecfd03c2010-02-12 14:41:27 -05001348 fcf_rec->switch_name[4] =
James Smart8fa38512009-07-19 10:01:03 -04001349 bf_get(lpfc_fcf_record_switch_name_4, new_fcf_record);
James Smartecfd03c2010-02-12 14:41:27 -05001350 fcf_rec->switch_name[5] =
James Smart8fa38512009-07-19 10:01:03 -04001351 bf_get(lpfc_fcf_record_switch_name_5, new_fcf_record);
James Smartecfd03c2010-02-12 14:41:27 -05001352 fcf_rec->switch_name[6] =
James Smart8fa38512009-07-19 10:01:03 -04001353 bf_get(lpfc_fcf_record_switch_name_6, new_fcf_record);
James Smartecfd03c2010-02-12 14:41:27 -05001354 fcf_rec->switch_name[7] =
James Smart8fa38512009-07-19 10:01:03 -04001355 bf_get(lpfc_fcf_record_switch_name_7, new_fcf_record);
James Smart6fb120a2009-05-22 14:52:59 -04001356}
1357
1358/**
James Smartecfd03c2010-02-12 14:41:27 -05001359 * lpfc_update_fcf_record - Update driver fcf record
1360 * @phba: pointer to lpfc hba data structure.
1361 * @fcf_rec: pointer to driver fcf record.
1362 * @new_fcf_record: pointer to hba fcf record.
1363 * @addr_mode: address mode to be set to the driver fcf record.
1364 * @vlan_id: vlan tag to be set to the driver fcf record.
1365 * @flag: flag bits to be set to the driver fcf record.
1366 *
1367 * This routine updates the driver FCF record from the new HBA FCF record
1368 * together with the address mode, vlan_id, and other informations. This
1369 * routine is called with the host lock held.
1370 **/
1371static void
1372__lpfc_update_fcf_record(struct lpfc_hba *phba, struct lpfc_fcf_rec *fcf_rec,
1373 struct fcf_record *new_fcf_record, uint32_t addr_mode,
1374 uint16_t vlan_id, uint32_t flag)
1375{
1376 /* Copy the fields from the HBA's FCF record */
1377 lpfc_copy_fcf_record(fcf_rec, new_fcf_record);
1378 /* Update other fields of driver FCF record */
1379 fcf_rec->addr_mode = addr_mode;
1380 fcf_rec->vlan_id = vlan_id;
1381 fcf_rec->flag |= (flag | RECORD_VALID);
James Smart7d791df2011-07-22 18:37:52 -04001382 __lpfc_update_fcf_record_pri(phba,
1383 bf_get(lpfc_fcf_record_fcf_index, new_fcf_record),
1384 new_fcf_record);
James Smartecfd03c2010-02-12 14:41:27 -05001385}
1386
1387/**
James Smart6fb120a2009-05-22 14:52:59 -04001388 * lpfc_register_fcf - Register the FCF with hba.
1389 * @phba: pointer to lpfc hba data structure.
1390 *
1391 * This routine issues a register fcfi mailbox command to register
1392 * the fcf with HBA.
1393 **/
1394static void
1395lpfc_register_fcf(struct lpfc_hba *phba)
1396{
1397 LPFC_MBOXQ_t *fcf_mbxq;
1398 int rc;
James Smart6fb120a2009-05-22 14:52:59 -04001399
James Smartd439d282010-09-29 11:18:45 -04001400 spin_lock_irq(&phba->hbalock);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001401 /* If the FCF is not available do nothing. */
James Smart6fb120a2009-05-22 14:52:59 -04001402 if (!(phba->fcf.fcf_flag & FCF_AVAILABLE)) {
James Smarta93ff372010-10-22 11:06:08 -04001403 phba->hba_flag &= ~(FCF_TS_INPROG | FCF_RR_INPROG);
James Smartd439d282010-09-29 11:18:45 -04001404 spin_unlock_irq(&phba->hbalock);
James Smart6fb120a2009-05-22 14:52:59 -04001405 return;
1406 }
1407
1408 /* The FCF is already registered, start discovery */
1409 if (phba->fcf.fcf_flag & FCF_REGISTERED) {
James Smartecfd03c2010-02-12 14:41:27 -05001410 phba->fcf.fcf_flag |= (FCF_SCAN_DONE | FCF_IN_USE);
James Smarta93ff372010-10-22 11:06:08 -04001411 phba->hba_flag &= ~FCF_TS_INPROG;
1412 if (phba->pport->port_state != LPFC_FLOGI) {
1413 phba->hba_flag |= FCF_RR_INPROG;
1414 spin_unlock_irq(&phba->hbalock);
James Smartbf086112011-08-21 21:48:13 -04001415 lpfc_initial_flogi(phba->pport);
James Smarta93ff372010-10-22 11:06:08 -04001416 return;
1417 }
1418 spin_unlock_irq(&phba->hbalock);
James Smart6fb120a2009-05-22 14:52:59 -04001419 return;
1420 }
James Smartd439d282010-09-29 11:18:45 -04001421 spin_unlock_irq(&phba->hbalock);
James Smart6fb120a2009-05-22 14:52:59 -04001422
James Smarta93ff372010-10-22 11:06:08 -04001423 fcf_mbxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
James Smart4d9ab992009-10-02 15:16:39 -04001424 if (!fcf_mbxq) {
James Smartd439d282010-09-29 11:18:45 -04001425 spin_lock_irq(&phba->hbalock);
James Smarta93ff372010-10-22 11:06:08 -04001426 phba->hba_flag &= ~(FCF_TS_INPROG | FCF_RR_INPROG);
James Smartd439d282010-09-29 11:18:45 -04001427 spin_unlock_irq(&phba->hbalock);
James Smart6fb120a2009-05-22 14:52:59 -04001428 return;
James Smart4d9ab992009-10-02 15:16:39 -04001429 }
James Smart6fb120a2009-05-22 14:52:59 -04001430
1431 lpfc_reg_fcfi(phba, fcf_mbxq);
1432 fcf_mbxq->vport = phba->pport;
1433 fcf_mbxq->mbox_cmpl = lpfc_mbx_cmpl_reg_fcfi;
1434 rc = lpfc_sli_issue_mbox(phba, fcf_mbxq, MBX_NOWAIT);
James Smart4d9ab992009-10-02 15:16:39 -04001435 if (rc == MBX_NOT_FINISHED) {
James Smartd439d282010-09-29 11:18:45 -04001436 spin_lock_irq(&phba->hbalock);
James Smarta93ff372010-10-22 11:06:08 -04001437 phba->hba_flag &= ~(FCF_TS_INPROG | FCF_RR_INPROG);
James Smartd439d282010-09-29 11:18:45 -04001438 spin_unlock_irq(&phba->hbalock);
James Smart6fb120a2009-05-22 14:52:59 -04001439 mempool_free(fcf_mbxq, phba->mbox_mem_pool);
James Smart4d9ab992009-10-02 15:16:39 -04001440 }
James Smart6fb120a2009-05-22 14:52:59 -04001441
1442 return;
1443}
1444
1445/**
1446 * lpfc_match_fcf_conn_list - Check if the FCF record can be used for discovery.
1447 * @phba: pointer to lpfc hba data structure.
1448 * @new_fcf_record: pointer to fcf record.
1449 * @boot_flag: Indicates if this record used by boot bios.
1450 * @addr_mode: The address mode to be used by this FCF
James Smartecfd03c2010-02-12 14:41:27 -05001451 * @vlan_id: The vlan id to be used as vlan tagging by this FCF.
James Smart6fb120a2009-05-22 14:52:59 -04001452 *
1453 * This routine compare the fcf record with connect list obtained from the
1454 * config region to decide if this FCF can be used for SAN discovery. It returns
1455 * 1 if this record can be used for SAN discovery else return zero. If this FCF
1456 * record can be used for SAN discovery, the boot_flag will indicate if this FCF
1457 * is used by boot bios and addr_mode will indicate the addressing mode to be
1458 * used for this FCF when the function returns.
1459 * If the FCF record need to be used with a particular vlan id, the vlan is
1460 * set in the vlan_id on return of the function. If not VLAN tagging need to
James Smartdbb6b3a2010-06-08 18:31:37 -04001461 * be used with the FCF vlan_id will be set to LPFC_FCOE_NULL_VID;
James Smart6fb120a2009-05-22 14:52:59 -04001462 **/
1463static int
1464lpfc_match_fcf_conn_list(struct lpfc_hba *phba,
1465 struct fcf_record *new_fcf_record,
1466 uint32_t *boot_flag, uint32_t *addr_mode,
1467 uint16_t *vlan_id)
1468{
1469 struct lpfc_fcf_conn_entry *conn_entry;
James Smart4d9ab992009-10-02 15:16:39 -04001470 int i, j, fcf_vlan_id = 0;
1471
1472 /* Find the lowest VLAN id in the FCF record */
1473 for (i = 0; i < 512; i++) {
1474 if (new_fcf_record->vlan_bitmap[i]) {
1475 fcf_vlan_id = i * 8;
1476 j = 0;
1477 while (!((new_fcf_record->vlan_bitmap[i] >> j) & 1)) {
1478 j++;
1479 fcf_vlan_id++;
1480 }
1481 break;
1482 }
1483 }
James Smart6fb120a2009-05-22 14:52:59 -04001484
James Smart0c287582009-06-10 17:22:56 -04001485 /* If FCF not available return 0 */
1486 if (!bf_get(lpfc_fcf_record_fcf_avail, new_fcf_record) ||
1487 !bf_get(lpfc_fcf_record_fcf_valid, new_fcf_record))
1488 return 0;
1489
James Smart45ed1192009-10-02 15:17:02 -04001490 if (!(phba->hba_flag & HBA_FIP_SUPPORT)) {
James Smart6fb120a2009-05-22 14:52:59 -04001491 *boot_flag = 0;
1492 *addr_mode = bf_get(lpfc_fcf_record_mac_addr_prov,
1493 new_fcf_record);
1494 if (phba->valid_vlan)
1495 *vlan_id = phba->vlan_id;
1496 else
James Smartdbb6b3a2010-06-08 18:31:37 -04001497 *vlan_id = LPFC_FCOE_NULL_VID;
James Smart6fb120a2009-05-22 14:52:59 -04001498 return 1;
1499 }
1500
1501 /*
1502 * If there are no FCF connection table entry, driver connect to all
1503 * FCFs.
1504 */
1505 if (list_empty(&phba->fcf_conn_rec_list)) {
1506 *boot_flag = 0;
1507 *addr_mode = bf_get(lpfc_fcf_record_mac_addr_prov,
1508 new_fcf_record);
James Smart0c287582009-06-10 17:22:56 -04001509
1510 /*
1511 * When there are no FCF connect entries, use driver's default
1512 * addressing mode - FPMA.
1513 */
1514 if (*addr_mode & LPFC_FCF_FPMA)
1515 *addr_mode = LPFC_FCF_FPMA;
1516
James Smart4d9ab992009-10-02 15:16:39 -04001517 /* If FCF record report a vlan id use that vlan id */
1518 if (fcf_vlan_id)
1519 *vlan_id = fcf_vlan_id;
1520 else
James Smartdbb6b3a2010-06-08 18:31:37 -04001521 *vlan_id = LPFC_FCOE_NULL_VID;
James Smart6fb120a2009-05-22 14:52:59 -04001522 return 1;
1523 }
1524
James Smartecfd03c2010-02-12 14:41:27 -05001525 list_for_each_entry(conn_entry,
1526 &phba->fcf_conn_rec_list, list) {
James Smart6fb120a2009-05-22 14:52:59 -04001527 if (!(conn_entry->conn_rec.flags & FCFCNCT_VALID))
1528 continue;
1529
1530 if ((conn_entry->conn_rec.flags & FCFCNCT_FBNM_VALID) &&
1531 !lpfc_fab_name_match(conn_entry->conn_rec.fabric_name,
James Smart8fa38512009-07-19 10:01:03 -04001532 new_fcf_record))
James Smart6fb120a2009-05-22 14:52:59 -04001533 continue;
James Smart8fa38512009-07-19 10:01:03 -04001534 if ((conn_entry->conn_rec.flags & FCFCNCT_SWNM_VALID) &&
1535 !lpfc_sw_name_match(conn_entry->conn_rec.switch_name,
1536 new_fcf_record))
1537 continue;
James Smart6fb120a2009-05-22 14:52:59 -04001538 if (conn_entry->conn_rec.flags & FCFCNCT_VLAN_VALID) {
1539 /*
1540 * If the vlan bit map does not have the bit set for the
1541 * vlan id to be used, then it is not a match.
1542 */
1543 if (!(new_fcf_record->vlan_bitmap
1544 [conn_entry->conn_rec.vlan_tag / 8] &
1545 (1 << (conn_entry->conn_rec.vlan_tag % 8))))
1546 continue;
1547 }
1548
1549 /*
James Smart0c287582009-06-10 17:22:56 -04001550 * If connection record does not support any addressing mode,
1551 * skip the FCF record.
1552 */
1553 if (!(bf_get(lpfc_fcf_record_mac_addr_prov, new_fcf_record)
1554 & (LPFC_FCF_FPMA | LPFC_FCF_SPMA)))
1555 continue;
1556
1557 /*
James Smart6fb120a2009-05-22 14:52:59 -04001558 * Check if the connection record specifies a required
1559 * addressing mode.
1560 */
1561 if ((conn_entry->conn_rec.flags & FCFCNCT_AM_VALID) &&
1562 !(conn_entry->conn_rec.flags & FCFCNCT_AM_PREFERRED)) {
1563
1564 /*
1565 * If SPMA required but FCF not support this continue.
1566 */
1567 if ((conn_entry->conn_rec.flags & FCFCNCT_AM_SPMA) &&
1568 !(bf_get(lpfc_fcf_record_mac_addr_prov,
1569 new_fcf_record) & LPFC_FCF_SPMA))
1570 continue;
1571
1572 /*
1573 * If FPMA required but FCF not support this continue.
1574 */
1575 if (!(conn_entry->conn_rec.flags & FCFCNCT_AM_SPMA) &&
1576 !(bf_get(lpfc_fcf_record_mac_addr_prov,
1577 new_fcf_record) & LPFC_FCF_FPMA))
1578 continue;
1579 }
1580
1581 /*
1582 * This fcf record matches filtering criteria.
1583 */
1584 if (conn_entry->conn_rec.flags & FCFCNCT_BOOT)
1585 *boot_flag = 1;
1586 else
1587 *boot_flag = 0;
1588
James Smart0c287582009-06-10 17:22:56 -04001589 /*
1590 * If user did not specify any addressing mode, or if the
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001591 * preferred addressing mode specified by user is not supported
James Smart0c287582009-06-10 17:22:56 -04001592 * by FCF, allow fabric to pick the addressing mode.
1593 */
James Smart6fb120a2009-05-22 14:52:59 -04001594 *addr_mode = bf_get(lpfc_fcf_record_mac_addr_prov,
1595 new_fcf_record);
1596 /*
1597 * If the user specified a required address mode, assign that
1598 * address mode
1599 */
1600 if ((conn_entry->conn_rec.flags & FCFCNCT_AM_VALID) &&
1601 (!(conn_entry->conn_rec.flags & FCFCNCT_AM_PREFERRED)))
1602 *addr_mode = (conn_entry->conn_rec.flags &
1603 FCFCNCT_AM_SPMA) ?
1604 LPFC_FCF_SPMA : LPFC_FCF_FPMA;
1605 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001606 * If the user specified a preferred address mode, use the
James Smart6fb120a2009-05-22 14:52:59 -04001607 * addr mode only if FCF support the addr_mode.
1608 */
1609 else if ((conn_entry->conn_rec.flags & FCFCNCT_AM_VALID) &&
1610 (conn_entry->conn_rec.flags & FCFCNCT_AM_PREFERRED) &&
1611 (conn_entry->conn_rec.flags & FCFCNCT_AM_SPMA) &&
1612 (*addr_mode & LPFC_FCF_SPMA))
1613 *addr_mode = LPFC_FCF_SPMA;
1614 else if ((conn_entry->conn_rec.flags & FCFCNCT_AM_VALID) &&
1615 (conn_entry->conn_rec.flags & FCFCNCT_AM_PREFERRED) &&
1616 !(conn_entry->conn_rec.flags & FCFCNCT_AM_SPMA) &&
1617 (*addr_mode & LPFC_FCF_FPMA))
1618 *addr_mode = LPFC_FCF_FPMA;
James Smart6fb120a2009-05-22 14:52:59 -04001619
James Smart4d9ab992009-10-02 15:16:39 -04001620 /* If matching connect list has a vlan id, use it */
James Smart6fb120a2009-05-22 14:52:59 -04001621 if (conn_entry->conn_rec.flags & FCFCNCT_VLAN_VALID)
1622 *vlan_id = conn_entry->conn_rec.vlan_tag;
James Smart4d9ab992009-10-02 15:16:39 -04001623 /*
1624 * If no vlan id is specified in connect list, use the vlan id
1625 * in the FCF record
1626 */
1627 else if (fcf_vlan_id)
1628 *vlan_id = fcf_vlan_id;
James Smart6fb120a2009-05-22 14:52:59 -04001629 else
James Smartdbb6b3a2010-06-08 18:31:37 -04001630 *vlan_id = LPFC_FCOE_NULL_VID;
James Smart6fb120a2009-05-22 14:52:59 -04001631
1632 return 1;
1633 }
1634
1635 return 0;
1636}
1637
1638/**
James Smart32b97932009-07-19 10:01:21 -04001639 * lpfc_check_pending_fcoe_event - Check if there is pending fcoe event.
1640 * @phba: pointer to lpfc hba data structure.
1641 * @unreg_fcf: Unregister FCF if FCF table need to be re-scaned.
1642 *
1643 * This function check if there is any fcoe event pending while driver
1644 * scan FCF entries. If there is any pending event, it will restart the
1645 * FCF saning and return 1 else return 0.
1646 */
1647int
1648lpfc_check_pending_fcoe_event(struct lpfc_hba *phba, uint8_t unreg_fcf)
1649{
James Smart32b97932009-07-19 10:01:21 -04001650 /*
1651 * If the Link is up and no FCoE events while in the
1652 * FCF discovery, no need to restart FCF discovery.
1653 */
1654 if ((phba->link_state >= LPFC_LINK_UP) &&
James Smarta93ff372010-10-22 11:06:08 -04001655 (phba->fcoe_eventtag == phba->fcoe_eventtag_at_fcf_scan))
James Smart32b97932009-07-19 10:01:21 -04001656 return 0;
1657
James Smart0c9ab6f2010-02-26 14:15:57 -05001658 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
1659 "2768 Pending link or FCF event during current "
1660 "handling of the previous event: link_state:x%x, "
1661 "evt_tag_at_scan:x%x, evt_tag_current:x%x\n",
1662 phba->link_state, phba->fcoe_eventtag_at_fcf_scan,
1663 phba->fcoe_eventtag);
1664
James Smart32b97932009-07-19 10:01:21 -04001665 spin_lock_irq(&phba->hbalock);
1666 phba->fcf.fcf_flag &= ~FCF_AVAILABLE;
1667 spin_unlock_irq(&phba->hbalock);
1668
James Smart0c9ab6f2010-02-26 14:15:57 -05001669 if (phba->link_state >= LPFC_LINK_UP) {
1670 lpfc_printf_log(phba, KERN_INFO, LOG_FIP | LOG_DISCOVERY,
1671 "2780 Restart FCF table scan due to "
1672 "pending FCF event:evt_tag_at_scan:x%x, "
1673 "evt_tag_current:x%x\n",
1674 phba->fcoe_eventtag_at_fcf_scan,
1675 phba->fcoe_eventtag);
1676 lpfc_sli4_fcf_scan_read_fcf_rec(phba, LPFC_FCOE_FCF_GET_FIRST);
1677 } else {
James Smart4d9ab992009-10-02 15:16:39 -04001678 /*
James Smarta93ff372010-10-22 11:06:08 -04001679 * Do not continue FCF discovery and clear FCF_TS_INPROG
James Smart4d9ab992009-10-02 15:16:39 -04001680 * flag
1681 */
James Smartdbb6b3a2010-06-08 18:31:37 -04001682 lpfc_printf_log(phba, KERN_INFO, LOG_FIP | LOG_DISCOVERY,
1683 "2833 Stop FCF discovery process due to link "
1684 "state change (x%x)\n", phba->link_state);
James Smart1c6f4ef52009-11-18 15:40:49 -05001685 spin_lock_irq(&phba->hbalock);
James Smarta93ff372010-10-22 11:06:08 -04001686 phba->hba_flag &= ~(FCF_TS_INPROG | FCF_RR_INPROG);
James Smart0c9ab6f2010-02-26 14:15:57 -05001687 phba->fcf.fcf_flag &= ~(FCF_REDISC_FOV | FCF_DISCOVERY);
James Smart1c6f4ef52009-11-18 15:40:49 -05001688 spin_unlock_irq(&phba->hbalock);
1689 }
James Smart32b97932009-07-19 10:01:21 -04001690
James Smart0c9ab6f2010-02-26 14:15:57 -05001691 /* Unregister the currently registered FCF if required */
James Smart32b97932009-07-19 10:01:21 -04001692 if (unreg_fcf) {
1693 spin_lock_irq(&phba->hbalock);
1694 phba->fcf.fcf_flag &= ~FCF_REGISTERED;
1695 spin_unlock_irq(&phba->hbalock);
James Smart0c9ab6f2010-02-26 14:15:57 -05001696 lpfc_sli4_unregister_fcf(phba);
James Smart32b97932009-07-19 10:01:21 -04001697 }
James Smart32b97932009-07-19 10:01:21 -04001698 return 1;
1699}
1700
1701/**
James Smart999d8132010-03-15 11:24:56 -04001702 * lpfc_sli4_new_fcf_random_select - Randomly select an eligible new fcf record
1703 * @phba: pointer to lpfc hba data structure.
1704 * @fcf_cnt: number of eligible fcf record seen so far.
1705 *
1706 * This function makes an running random selection decision on FCF record to
1707 * use through a sequence of @fcf_cnt eligible FCF records with equal
1708 * probability. To perform integer manunipulation of random numbers with
1709 * size unit32_t, the lower 16 bits of the 32-bit random number returned
1710 * from random32() are taken as the random random number generated.
1711 *
1712 * Returns true when outcome is for the newly read FCF record should be
1713 * chosen; otherwise, return false when outcome is for keeping the previously
1714 * chosen FCF record.
1715 **/
1716static bool
1717lpfc_sli4_new_fcf_random_select(struct lpfc_hba *phba, uint32_t fcf_cnt)
1718{
1719 uint32_t rand_num;
1720
1721 /* Get 16-bit uniform random number */
1722 rand_num = (0xFFFF & random32());
1723
1724 /* Decision with probability 1/fcf_cnt */
1725 if ((fcf_cnt * rand_num) < 0xFFFF)
1726 return true;
1727 else
1728 return false;
1729}
1730
1731/**
James Smart3804dc82010-07-14 15:31:37 -04001732 * lpfc_sli4_fcf_rec_mbox_parse - Parse read_fcf mbox command.
James Smart6fb120a2009-05-22 14:52:59 -04001733 * @phba: pointer to lpfc hba data structure.
1734 * @mboxq: pointer to mailbox object.
James Smart0c9ab6f2010-02-26 14:15:57 -05001735 * @next_fcf_index: pointer to holder of next fcf index.
James Smart6fb120a2009-05-22 14:52:59 -04001736 *
James Smart0c9ab6f2010-02-26 14:15:57 -05001737 * This routine parses the non-embedded fcf mailbox command by performing the
1738 * necessarily error checking, non-embedded read FCF record mailbox command
1739 * SGE parsing, and endianness swapping.
1740 *
1741 * Returns the pointer to the new FCF record in the non-embedded mailbox
1742 * command DMA memory if successfully, other NULL.
James Smart6fb120a2009-05-22 14:52:59 -04001743 */
James Smart0c9ab6f2010-02-26 14:15:57 -05001744static struct fcf_record *
1745lpfc_sli4_fcf_rec_mbox_parse(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq,
1746 uint16_t *next_fcf_index)
James Smart6fb120a2009-05-22 14:52:59 -04001747{
1748 void *virt_addr;
1749 dma_addr_t phys_addr;
James Smart6fb120a2009-05-22 14:52:59 -04001750 struct lpfc_mbx_sge sge;
1751 struct lpfc_mbx_read_fcf_tbl *read_fcf;
1752 uint32_t shdr_status, shdr_add_status;
1753 union lpfc_sli4_cfg_shdr *shdr;
1754 struct fcf_record *new_fcf_record;
James Smart32b97932009-07-19 10:01:21 -04001755
James Smart6fb120a2009-05-22 14:52:59 -04001756 /* Get the first SGE entry from the non-embedded DMA memory. This
1757 * routine only uses a single SGE.
1758 */
1759 lpfc_sli4_mbx_sge_get(mboxq, 0, &sge);
1760 phys_addr = getPaddr(sge.pa_hi, sge.pa_lo);
1761 if (unlikely(!mboxq->sge_array)) {
1762 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX,
1763 "2524 Failed to get the non-embedded SGE "
1764 "virtual address\n");
James Smart0c9ab6f2010-02-26 14:15:57 -05001765 return NULL;
James Smart6fb120a2009-05-22 14:52:59 -04001766 }
1767 virt_addr = mboxq->sge_array->addr[0];
1768
1769 shdr = (union lpfc_sli4_cfg_shdr *)virt_addr;
1770 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
James Smart0c9ab6f2010-02-26 14:15:57 -05001771 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
James Smart6fb120a2009-05-22 14:52:59 -04001772 if (shdr_status || shdr_add_status) {
James Smart0c9ab6f2010-02-26 14:15:57 -05001773 if (shdr_status == STATUS_FCF_TABLE_EMPTY)
1774 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
James Smartdef9c7a2009-12-21 17:02:28 -05001775 "2726 READ_FCF_RECORD Indicates empty "
1776 "FCF table.\n");
James Smart0c9ab6f2010-02-26 14:15:57 -05001777 else
1778 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
James Smartdef9c7a2009-12-21 17:02:28 -05001779 "2521 READ_FCF_RECORD mailbox failed "
James Smart0c9ab6f2010-02-26 14:15:57 -05001780 "with status x%x add_status x%x, "
1781 "mbx\n", shdr_status, shdr_add_status);
1782 return NULL;
James Smart6fb120a2009-05-22 14:52:59 -04001783 }
James Smart0c9ab6f2010-02-26 14:15:57 -05001784
1785 /* Interpreting the returned information of the FCF record */
James Smart6fb120a2009-05-22 14:52:59 -04001786 read_fcf = (struct lpfc_mbx_read_fcf_tbl *)virt_addr;
1787 lpfc_sli_pcimem_bcopy(read_fcf, read_fcf,
1788 sizeof(struct lpfc_mbx_read_fcf_tbl));
James Smart0c9ab6f2010-02-26 14:15:57 -05001789 *next_fcf_index = bf_get(lpfc_mbx_read_fcf_tbl_nxt_vindx, read_fcf);
James Smart6fb120a2009-05-22 14:52:59 -04001790 new_fcf_record = (struct fcf_record *)(virt_addr +
1791 sizeof(struct lpfc_mbx_read_fcf_tbl));
1792 lpfc_sli_pcimem_bcopy(new_fcf_record, new_fcf_record,
James Smartcb5172e2010-03-15 11:25:07 -04001793 offsetof(struct fcf_record, vlan_bitmap));
1794 new_fcf_record->word137 = le32_to_cpu(new_fcf_record->word137);
1795 new_fcf_record->word138 = le32_to_cpu(new_fcf_record->word138);
James Smart6fb120a2009-05-22 14:52:59 -04001796
James Smart0c9ab6f2010-02-26 14:15:57 -05001797 return new_fcf_record;
1798}
1799
1800/**
1801 * lpfc_sli4_log_fcf_record_info - Log the information of a fcf record
1802 * @phba: pointer to lpfc hba data structure.
1803 * @fcf_record: pointer to the fcf record.
1804 * @vlan_id: the lowest vlan identifier associated to this fcf record.
1805 * @next_fcf_index: the index to the next fcf record in hba's fcf table.
1806 *
1807 * This routine logs the detailed FCF record if the LOG_FIP loggin is
1808 * enabled.
1809 **/
1810static void
1811lpfc_sli4_log_fcf_record_info(struct lpfc_hba *phba,
1812 struct fcf_record *fcf_record,
1813 uint16_t vlan_id,
1814 uint16_t next_fcf_index)
1815{
1816 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
1817 "2764 READ_FCF_RECORD:\n"
1818 "\tFCF_Index : x%x\n"
1819 "\tFCF_Avail : x%x\n"
1820 "\tFCF_Valid : x%x\n"
1821 "\tFIP_Priority : x%x\n"
1822 "\tMAC_Provider : x%x\n"
1823 "\tLowest VLANID : x%x\n"
1824 "\tFCF_MAC Addr : x%x:%x:%x:%x:%x:%x\n"
1825 "\tFabric_Name : x%x:%x:%x:%x:%x:%x:%x:%x\n"
1826 "\tSwitch_Name : x%x:%x:%x:%x:%x:%x:%x:%x\n"
1827 "\tNext_FCF_Index: x%x\n",
1828 bf_get(lpfc_fcf_record_fcf_index, fcf_record),
1829 bf_get(lpfc_fcf_record_fcf_avail, fcf_record),
1830 bf_get(lpfc_fcf_record_fcf_valid, fcf_record),
1831 fcf_record->fip_priority,
1832 bf_get(lpfc_fcf_record_mac_addr_prov, fcf_record),
1833 vlan_id,
1834 bf_get(lpfc_fcf_record_mac_0, fcf_record),
1835 bf_get(lpfc_fcf_record_mac_1, fcf_record),
1836 bf_get(lpfc_fcf_record_mac_2, fcf_record),
1837 bf_get(lpfc_fcf_record_mac_3, fcf_record),
1838 bf_get(lpfc_fcf_record_mac_4, fcf_record),
1839 bf_get(lpfc_fcf_record_mac_5, fcf_record),
1840 bf_get(lpfc_fcf_record_fab_name_0, fcf_record),
1841 bf_get(lpfc_fcf_record_fab_name_1, fcf_record),
1842 bf_get(lpfc_fcf_record_fab_name_2, fcf_record),
1843 bf_get(lpfc_fcf_record_fab_name_3, fcf_record),
1844 bf_get(lpfc_fcf_record_fab_name_4, fcf_record),
1845 bf_get(lpfc_fcf_record_fab_name_5, fcf_record),
1846 bf_get(lpfc_fcf_record_fab_name_6, fcf_record),
1847 bf_get(lpfc_fcf_record_fab_name_7, fcf_record),
1848 bf_get(lpfc_fcf_record_switch_name_0, fcf_record),
1849 bf_get(lpfc_fcf_record_switch_name_1, fcf_record),
1850 bf_get(lpfc_fcf_record_switch_name_2, fcf_record),
1851 bf_get(lpfc_fcf_record_switch_name_3, fcf_record),
1852 bf_get(lpfc_fcf_record_switch_name_4, fcf_record),
1853 bf_get(lpfc_fcf_record_switch_name_5, fcf_record),
1854 bf_get(lpfc_fcf_record_switch_name_6, fcf_record),
1855 bf_get(lpfc_fcf_record_switch_name_7, fcf_record),
1856 next_fcf_index);
1857}
1858
1859/**
James Smartdbb6b3a2010-06-08 18:31:37 -04001860 lpfc_sli4_fcf_record_match - testing new FCF record for matching existing FCF
1861 * @phba: pointer to lpfc hba data structure.
1862 * @fcf_rec: pointer to an existing FCF record.
1863 * @new_fcf_record: pointer to a new FCF record.
1864 * @new_vlan_id: vlan id from the new FCF record.
1865 *
1866 * This function performs matching test of a new FCF record against an existing
1867 * FCF record. If the new_vlan_id passed in is LPFC_FCOE_IGNORE_VID, vlan id
1868 * will not be used as part of the FCF record matching criteria.
1869 *
1870 * Returns true if all the fields matching, otherwise returns false.
1871 */
1872static bool
1873lpfc_sli4_fcf_record_match(struct lpfc_hba *phba,
1874 struct lpfc_fcf_rec *fcf_rec,
1875 struct fcf_record *new_fcf_record,
1876 uint16_t new_vlan_id)
1877{
1878 if (new_vlan_id != LPFC_FCOE_IGNORE_VID)
1879 if (!lpfc_vlan_id_match(fcf_rec->vlan_id, new_vlan_id))
1880 return false;
1881 if (!lpfc_mac_addr_match(fcf_rec->mac_addr, new_fcf_record))
1882 return false;
1883 if (!lpfc_sw_name_match(fcf_rec->switch_name, new_fcf_record))
1884 return false;
1885 if (!lpfc_fab_name_match(fcf_rec->fabric_name, new_fcf_record))
1886 return false;
James Smart7d791df2011-07-22 18:37:52 -04001887 if (fcf_rec->priority != new_fcf_record->fip_priority)
1888 return false;
James Smartdbb6b3a2010-06-08 18:31:37 -04001889 return true;
1890}
1891
1892/**
James Smarta93ff372010-10-22 11:06:08 -04001893 * lpfc_sli4_fcf_rr_next_proc - processing next roundrobin fcf
1894 * @vport: Pointer to vport object.
1895 * @fcf_index: index to next fcf.
1896 *
1897 * This function processing the roundrobin fcf failover to next fcf index.
1898 * When this function is invoked, there will be a current fcf registered
1899 * for flogi.
1900 * Return: 0 for continue retrying flogi on currently registered fcf;
1901 * 1 for stop flogi on currently registered fcf;
1902 */
1903int lpfc_sli4_fcf_rr_next_proc(struct lpfc_vport *vport, uint16_t fcf_index)
1904{
1905 struct lpfc_hba *phba = vport->phba;
1906 int rc;
1907
1908 if (fcf_index == LPFC_FCOE_FCF_NEXT_NONE) {
1909 spin_lock_irq(&phba->hbalock);
1910 if (phba->hba_flag & HBA_DEVLOSS_TMO) {
1911 spin_unlock_irq(&phba->hbalock);
1912 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
1913 "2872 Devloss tmo with no eligible "
1914 "FCF, unregister in-use FCF (x%x) "
1915 "and rescan FCF table\n",
1916 phba->fcf.current_rec.fcf_indx);
1917 lpfc_unregister_fcf_rescan(phba);
1918 goto stop_flogi_current_fcf;
1919 }
1920 /* Mark the end to FLOGI roundrobin failover */
1921 phba->hba_flag &= ~FCF_RR_INPROG;
1922 /* Allow action to new fcf asynchronous event */
1923 phba->fcf.fcf_flag &= ~(FCF_AVAILABLE | FCF_SCAN_DONE);
1924 spin_unlock_irq(&phba->hbalock);
1925 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
1926 "2865 No FCF available, stop roundrobin FCF "
1927 "failover and change port state:x%x/x%x\n",
1928 phba->pport->port_state, LPFC_VPORT_UNKNOWN);
1929 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
1930 goto stop_flogi_current_fcf;
1931 } else {
1932 lpfc_printf_log(phba, KERN_INFO, LOG_FIP | LOG_ELS,
1933 "2794 Try FLOGI roundrobin FCF failover to "
1934 "(x%x)\n", fcf_index);
1935 rc = lpfc_sli4_fcf_rr_read_fcf_rec(phba, fcf_index);
1936 if (rc)
1937 lpfc_printf_log(phba, KERN_WARNING, LOG_FIP | LOG_ELS,
1938 "2761 FLOGI roundrobin FCF failover "
1939 "failed (rc:x%x) to read FCF (x%x)\n",
1940 rc, phba->fcf.current_rec.fcf_indx);
1941 else
1942 goto stop_flogi_current_fcf;
1943 }
1944 return 0;
1945
1946stop_flogi_current_fcf:
1947 lpfc_can_disctmo(vport);
1948 return 1;
1949}
1950
1951/**
James Smart7d791df2011-07-22 18:37:52 -04001952 * lpfc_sli4_fcf_pri_list_del
1953 * @phba: pointer to lpfc hba data structure.
1954 * @fcf_index the index of the fcf record to delete
1955 * This routine checks the on list flag of the fcf_index to be deleted.
1956 * If it is one the list then it is removed from the list, and the flag
1957 * is cleared. This routine grab the hbalock before removing the fcf
1958 * record from the list.
1959 **/
1960static void lpfc_sli4_fcf_pri_list_del(struct lpfc_hba *phba,
1961 uint16_t fcf_index)
1962{
1963 struct lpfc_fcf_pri *new_fcf_pri;
1964
1965 new_fcf_pri = &phba->fcf.fcf_pri[fcf_index];
1966 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
1967 "3058 deleting idx x%x pri x%x flg x%x\n",
1968 fcf_index, new_fcf_pri->fcf_rec.priority,
1969 new_fcf_pri->fcf_rec.flag);
1970 spin_lock_irq(&phba->hbalock);
1971 if (new_fcf_pri->fcf_rec.flag & LPFC_FCF_ON_PRI_LIST) {
1972 if (phba->fcf.current_rec.priority ==
1973 new_fcf_pri->fcf_rec.priority)
1974 phba->fcf.eligible_fcf_cnt--;
1975 list_del_init(&new_fcf_pri->list);
1976 new_fcf_pri->fcf_rec.flag &= ~LPFC_FCF_ON_PRI_LIST;
1977 }
1978 spin_unlock_irq(&phba->hbalock);
1979}
1980
1981/**
1982 * lpfc_sli4_set_fcf_flogi_fail
1983 * @phba: pointer to lpfc hba data structure.
1984 * @fcf_index the index of the fcf record to update
1985 * This routine acquires the hbalock and then set the LPFC_FCF_FLOGI_FAILED
1986 * flag so the the round robin slection for the particular priority level
1987 * will try a different fcf record that does not have this bit set.
1988 * If the fcf record is re-read for any reason this flag is cleared brfore
1989 * adding it to the priority list.
1990 **/
1991void
1992lpfc_sli4_set_fcf_flogi_fail(struct lpfc_hba *phba, uint16_t fcf_index)
1993{
1994 struct lpfc_fcf_pri *new_fcf_pri;
1995 new_fcf_pri = &phba->fcf.fcf_pri[fcf_index];
1996 spin_lock_irq(&phba->hbalock);
1997 new_fcf_pri->fcf_rec.flag |= LPFC_FCF_FLOGI_FAILED;
1998 spin_unlock_irq(&phba->hbalock);
1999}
2000
2001/**
2002 * lpfc_sli4_fcf_pri_list_add
2003 * @phba: pointer to lpfc hba data structure.
2004 * @fcf_index the index of the fcf record to add
2005 * This routine checks the priority of the fcf_index to be added.
2006 * If it is a lower priority than the current head of the fcf_pri list
2007 * then it is added to the list in the right order.
2008 * If it is the same priority as the current head of the list then it
2009 * is added to the head of the list and its bit in the rr_bmask is set.
2010 * If the fcf_index to be added is of a higher priority than the current
2011 * head of the list then the rr_bmask is cleared, its bit is set in the
2012 * rr_bmask and it is added to the head of the list.
2013 * returns:
2014 * 0=success 1=failure
2015 **/
2016int lpfc_sli4_fcf_pri_list_add(struct lpfc_hba *phba, uint16_t fcf_index,
2017 struct fcf_record *new_fcf_record)
2018{
2019 uint16_t current_fcf_pri;
2020 uint16_t last_index;
2021 struct lpfc_fcf_pri *fcf_pri;
2022 struct lpfc_fcf_pri *next_fcf_pri;
2023 struct lpfc_fcf_pri *new_fcf_pri;
2024 int ret;
2025
2026 new_fcf_pri = &phba->fcf.fcf_pri[fcf_index];
2027 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
2028 "3059 adding idx x%x pri x%x flg x%x\n",
2029 fcf_index, new_fcf_record->fip_priority,
2030 new_fcf_pri->fcf_rec.flag);
2031 spin_lock_irq(&phba->hbalock);
2032 if (new_fcf_pri->fcf_rec.flag & LPFC_FCF_ON_PRI_LIST)
2033 list_del_init(&new_fcf_pri->list);
2034 new_fcf_pri->fcf_rec.fcf_index = fcf_index;
2035 new_fcf_pri->fcf_rec.priority = new_fcf_record->fip_priority;
2036 if (list_empty(&phba->fcf.fcf_pri_list)) {
2037 list_add(&new_fcf_pri->list, &phba->fcf.fcf_pri_list);
2038 ret = lpfc_sli4_fcf_rr_index_set(phba,
2039 new_fcf_pri->fcf_rec.fcf_index);
2040 goto out;
2041 }
2042
2043 last_index = find_first_bit(phba->fcf.fcf_rr_bmask,
2044 LPFC_SLI4_FCF_TBL_INDX_MAX);
2045 if (last_index >= LPFC_SLI4_FCF_TBL_INDX_MAX) {
2046 ret = 0; /* Empty rr list */
2047 goto out;
2048 }
2049 current_fcf_pri = phba->fcf.fcf_pri[last_index].fcf_rec.priority;
2050 if (new_fcf_pri->fcf_rec.priority <= current_fcf_pri) {
2051 list_add(&new_fcf_pri->list, &phba->fcf.fcf_pri_list);
2052 if (new_fcf_pri->fcf_rec.priority < current_fcf_pri) {
2053 memset(phba->fcf.fcf_rr_bmask, 0,
2054 sizeof(*phba->fcf.fcf_rr_bmask));
2055 /* fcfs_at_this_priority_level = 1; */
2056 phba->fcf.eligible_fcf_cnt = 1;
2057 } else
2058 /* fcfs_at_this_priority_level++; */
2059 phba->fcf.eligible_fcf_cnt++;
2060 ret = lpfc_sli4_fcf_rr_index_set(phba,
2061 new_fcf_pri->fcf_rec.fcf_index);
2062 goto out;
2063 }
2064
2065 list_for_each_entry_safe(fcf_pri, next_fcf_pri,
2066 &phba->fcf.fcf_pri_list, list) {
2067 if (new_fcf_pri->fcf_rec.priority <=
2068 fcf_pri->fcf_rec.priority) {
2069 if (fcf_pri->list.prev == &phba->fcf.fcf_pri_list)
2070 list_add(&new_fcf_pri->list,
2071 &phba->fcf.fcf_pri_list);
2072 else
2073 list_add(&new_fcf_pri->list,
2074 &((struct lpfc_fcf_pri *)
2075 fcf_pri->list.prev)->list);
2076 ret = 0;
2077 goto out;
2078 } else if (fcf_pri->list.next == &phba->fcf.fcf_pri_list
2079 || new_fcf_pri->fcf_rec.priority <
2080 next_fcf_pri->fcf_rec.priority) {
2081 list_add(&new_fcf_pri->list, &fcf_pri->list);
2082 ret = 0;
2083 goto out;
2084 }
2085 if (new_fcf_pri->fcf_rec.priority > fcf_pri->fcf_rec.priority)
2086 continue;
2087
2088 }
2089 ret = 1;
2090out:
2091 /* we use = instead of |= to clear the FLOGI_FAILED flag. */
2092 new_fcf_pri->fcf_rec.flag = LPFC_FCF_ON_PRI_LIST;
2093 spin_unlock_irq(&phba->hbalock);
2094 return ret;
2095}
2096
2097/**
James Smart0c9ab6f2010-02-26 14:15:57 -05002098 * lpfc_mbx_cmpl_fcf_scan_read_fcf_rec - fcf scan read_fcf mbox cmpl handler.
2099 * @phba: pointer to lpfc hba data structure.
2100 * @mboxq: pointer to mailbox object.
2101 *
2102 * This function iterates through all the fcf records available in
2103 * HBA and chooses the optimal FCF record for discovery. After finding
2104 * the FCF for discovery it registers the FCF record and kicks start
2105 * discovery.
2106 * If FCF_IN_USE flag is set in currently used FCF, the routine tries to
2107 * use an FCF record which matches fabric name and mac address of the
2108 * currently used FCF record.
2109 * If the driver supports only one FCF, it will try to use the FCF record
2110 * used by BOOT_BIOS.
2111 */
2112void
2113lpfc_mbx_cmpl_fcf_scan_read_fcf_rec(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
2114{
2115 struct fcf_record *new_fcf_record;
2116 uint32_t boot_flag, addr_mode;
2117 uint16_t fcf_index, next_fcf_index;
2118 struct lpfc_fcf_rec *fcf_rec = NULL;
2119 uint16_t vlan_id;
James Smart999d8132010-03-15 11:24:56 -04002120 uint32_t seed;
2121 bool select_new_fcf;
James Smart0c9ab6f2010-02-26 14:15:57 -05002122 int rc;
2123
2124 /* If there is pending FCoE event restart FCF table scan */
James Smarta93ff372010-10-22 11:06:08 -04002125 if (lpfc_check_pending_fcoe_event(phba, LPFC_SKIP_UNREG_FCF)) {
James Smart0c9ab6f2010-02-26 14:15:57 -05002126 lpfc_sli4_mbox_cmd_free(phba, mboxq);
2127 return;
2128 }
2129
2130 /* Parse the FCF record from the non-embedded mailbox command */
2131 new_fcf_record = lpfc_sli4_fcf_rec_mbox_parse(phba, mboxq,
2132 &next_fcf_index);
2133 if (!new_fcf_record) {
James Smarta93ff372010-10-22 11:06:08 -04002134 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
James Smart0c9ab6f2010-02-26 14:15:57 -05002135 "2765 Mailbox command READ_FCF_RECORD "
2136 "failed to retrieve a FCF record.\n");
2137 /* Let next new FCF event trigger fast failover */
2138 spin_lock_irq(&phba->hbalock);
James Smarta93ff372010-10-22 11:06:08 -04002139 phba->hba_flag &= ~FCF_TS_INPROG;
James Smart0c9ab6f2010-02-26 14:15:57 -05002140 spin_unlock_irq(&phba->hbalock);
2141 lpfc_sli4_mbox_cmd_free(phba, mboxq);
2142 return;
2143 }
2144
2145 /* Check the FCF record against the connection list */
James Smartecfd03c2010-02-12 14:41:27 -05002146 rc = lpfc_match_fcf_conn_list(phba, new_fcf_record, &boot_flag,
2147 &addr_mode, &vlan_id);
James Smart0c9ab6f2010-02-26 14:15:57 -05002148
2149 /* Log the FCF record information if turned on */
2150 lpfc_sli4_log_fcf_record_info(phba, new_fcf_record, vlan_id,
2151 next_fcf_index);
2152
James Smart6fb120a2009-05-22 14:52:59 -04002153 /*
2154 * If the fcf record does not match with connect list entries
James Smart0c9ab6f2010-02-26 14:15:57 -05002155 * read the next entry; otherwise, this is an eligible FCF
James Smarta93ff372010-10-22 11:06:08 -04002156 * record for roundrobin FCF failover.
James Smart6fb120a2009-05-22 14:52:59 -04002157 */
James Smart0c9ab6f2010-02-26 14:15:57 -05002158 if (!rc) {
James Smart7d791df2011-07-22 18:37:52 -04002159 lpfc_sli4_fcf_pri_list_del(phba,
2160 bf_get(lpfc_fcf_record_fcf_index,
2161 new_fcf_record));
James Smart0c9ab6f2010-02-26 14:15:57 -05002162 lpfc_printf_log(phba, KERN_WARNING, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -04002163 "2781 FCF (x%x) failed connection "
2164 "list check: (x%x/x%x)\n",
James Smart0c9ab6f2010-02-26 14:15:57 -05002165 bf_get(lpfc_fcf_record_fcf_index,
2166 new_fcf_record),
2167 bf_get(lpfc_fcf_record_fcf_avail,
2168 new_fcf_record),
2169 bf_get(lpfc_fcf_record_fcf_valid,
2170 new_fcf_record));
James Smartdbb6b3a2010-06-08 18:31:37 -04002171 if ((phba->fcf.fcf_flag & FCF_IN_USE) &&
2172 lpfc_sli4_fcf_record_match(phba, &phba->fcf.current_rec,
2173 new_fcf_record, LPFC_FCOE_IGNORE_VID)) {
James Smart5ac6b302010-10-22 11:05:36 -04002174 if (bf_get(lpfc_fcf_record_fcf_index, new_fcf_record) !=
2175 phba->fcf.current_rec.fcf_indx) {
2176 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
2177 "2862 FCF (x%x) matches property "
2178 "of in-use FCF (x%x)\n",
2179 bf_get(lpfc_fcf_record_fcf_index,
2180 new_fcf_record),
2181 phba->fcf.current_rec.fcf_indx);
2182 goto read_next_fcf;
2183 }
James Smartdbb6b3a2010-06-08 18:31:37 -04002184 /*
2185 * In case the current in-use FCF record becomes
2186 * invalid/unavailable during FCF discovery that
2187 * was not triggered by fast FCF failover process,
2188 * treat it as fast FCF failover.
2189 */
2190 if (!(phba->fcf.fcf_flag & FCF_REDISC_PEND) &&
2191 !(phba->fcf.fcf_flag & FCF_REDISC_FOV)) {
2192 lpfc_printf_log(phba, KERN_WARNING, LOG_FIP,
2193 "2835 Invalid in-use FCF "
James Smarta93ff372010-10-22 11:06:08 -04002194 "(x%x), enter FCF failover "
2195 "table scan.\n",
James Smartdbb6b3a2010-06-08 18:31:37 -04002196 phba->fcf.current_rec.fcf_indx);
2197 spin_lock_irq(&phba->hbalock);
2198 phba->fcf.fcf_flag |= FCF_REDISC_FOV;
2199 spin_unlock_irq(&phba->hbalock);
2200 lpfc_sli4_mbox_cmd_free(phba, mboxq);
2201 lpfc_sli4_fcf_scan_read_fcf_rec(phba,
2202 LPFC_FCOE_FCF_GET_FIRST);
2203 return;
2204 }
2205 }
James Smart6fb120a2009-05-22 14:52:59 -04002206 goto read_next_fcf;
James Smart0c9ab6f2010-02-26 14:15:57 -05002207 } else {
2208 fcf_index = bf_get(lpfc_fcf_record_fcf_index, new_fcf_record);
James Smart7d791df2011-07-22 18:37:52 -04002209 rc = lpfc_sli4_fcf_pri_list_add(phba, fcf_index,
2210 new_fcf_record);
James Smart0c9ab6f2010-02-26 14:15:57 -05002211 if (rc)
2212 goto read_next_fcf;
2213 }
2214
James Smart6fb120a2009-05-22 14:52:59 -04002215 /*
2216 * If this is not the first FCF discovery of the HBA, use last
James Smartecfd03c2010-02-12 14:41:27 -05002217 * FCF record for the discovery. The condition that a rescan
2218 * matches the in-use FCF record: fabric name, switch name, mac
2219 * address, and vlan_id.
James Smart6fb120a2009-05-22 14:52:59 -04002220 */
James Smart0c9ab6f2010-02-26 14:15:57 -05002221 spin_lock_irq(&phba->hbalock);
James Smart6fb120a2009-05-22 14:52:59 -04002222 if (phba->fcf.fcf_flag & FCF_IN_USE) {
James Smart7d791df2011-07-22 18:37:52 -04002223 if (phba->cfg_fcf_failover_policy == LPFC_FCF_FOV &&
2224 lpfc_sli4_fcf_record_match(phba, &phba->fcf.current_rec,
James Smartdbb6b3a2010-06-08 18:31:37 -04002225 new_fcf_record, vlan_id)) {
James Smart5ac6b302010-10-22 11:05:36 -04002226 if (bf_get(lpfc_fcf_record_fcf_index, new_fcf_record) ==
2227 phba->fcf.current_rec.fcf_indx) {
2228 phba->fcf.fcf_flag |= FCF_AVAILABLE;
2229 if (phba->fcf.fcf_flag & FCF_REDISC_PEND)
2230 /* Stop FCF redisc wait timer */
2231 __lpfc_sli4_stop_fcf_redisc_wait_timer(
2232 phba);
2233 else if (phba->fcf.fcf_flag & FCF_REDISC_FOV)
2234 /* Fast failover, mark completed */
2235 phba->fcf.fcf_flag &= ~FCF_REDISC_FOV;
2236 spin_unlock_irq(&phba->hbalock);
2237 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
2238 "2836 New FCF matches in-use "
2239 "FCF (x%x)\n",
2240 phba->fcf.current_rec.fcf_indx);
2241 goto out;
2242 } else
2243 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
2244 "2863 New FCF (x%x) matches "
2245 "property of in-use FCF (x%x)\n",
James Smartdbb6b3a2010-06-08 18:31:37 -04002246 bf_get(lpfc_fcf_record_fcf_index,
James Smart5ac6b302010-10-22 11:05:36 -04002247 new_fcf_record),
2248 phba->fcf.current_rec.fcf_indx);
James Smart6fb120a2009-05-22 14:52:59 -04002249 }
James Smartecfd03c2010-02-12 14:41:27 -05002250 /*
2251 * Read next FCF record from HBA searching for the matching
2252 * with in-use record only if not during the fast failover
2253 * period. In case of fast failover period, it shall try to
2254 * determine whether the FCF record just read should be the
2255 * next candidate.
2256 */
2257 if (!(phba->fcf.fcf_flag & FCF_REDISC_FOV)) {
James Smart0c9ab6f2010-02-26 14:15:57 -05002258 spin_unlock_irq(&phba->hbalock);
James Smartecfd03c2010-02-12 14:41:27 -05002259 goto read_next_fcf;
2260 }
James Smart6fb120a2009-05-22 14:52:59 -04002261 }
James Smartecfd03c2010-02-12 14:41:27 -05002262 /*
2263 * Update on failover FCF record only if it's in FCF fast-failover
2264 * period; otherwise, update on current FCF record.
2265 */
James Smartfc2b9892010-02-26 14:15:29 -05002266 if (phba->fcf.fcf_flag & FCF_REDISC_FOV)
2267 fcf_rec = &phba->fcf.failover_rec;
2268 else
James Smartecfd03c2010-02-12 14:41:27 -05002269 fcf_rec = &phba->fcf.current_rec;
2270
James Smart6fb120a2009-05-22 14:52:59 -04002271 if (phba->fcf.fcf_flag & FCF_AVAILABLE) {
2272 /*
James Smartecfd03c2010-02-12 14:41:27 -05002273 * If the driver FCF record does not have boot flag
2274 * set and new hba fcf record has boot flag set, use
2275 * the new hba fcf record.
James Smart6fb120a2009-05-22 14:52:59 -04002276 */
James Smartecfd03c2010-02-12 14:41:27 -05002277 if (boot_flag && !(fcf_rec->flag & BOOT_ENABLE)) {
2278 /* Choose this FCF record */
James Smartdbb6b3a2010-06-08 18:31:37 -04002279 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
2280 "2837 Update current FCF record "
2281 "(x%x) with new FCF record (x%x)\n",
2282 fcf_rec->fcf_indx,
2283 bf_get(lpfc_fcf_record_fcf_index,
2284 new_fcf_record));
James Smartecfd03c2010-02-12 14:41:27 -05002285 __lpfc_update_fcf_record(phba, fcf_rec, new_fcf_record,
2286 addr_mode, vlan_id, BOOT_ENABLE);
James Smart0c9ab6f2010-02-26 14:15:57 -05002287 spin_unlock_irq(&phba->hbalock);
James Smart6fb120a2009-05-22 14:52:59 -04002288 goto read_next_fcf;
2289 }
2290 /*
James Smartecfd03c2010-02-12 14:41:27 -05002291 * If the driver FCF record has boot flag set and the
2292 * new hba FCF record does not have boot flag, read
2293 * the next FCF record.
James Smart6fb120a2009-05-22 14:52:59 -04002294 */
James Smartecfd03c2010-02-12 14:41:27 -05002295 if (!boot_flag && (fcf_rec->flag & BOOT_ENABLE)) {
James Smart0c9ab6f2010-02-26 14:15:57 -05002296 spin_unlock_irq(&phba->hbalock);
James Smart6fb120a2009-05-22 14:52:59 -04002297 goto read_next_fcf;
2298 }
2299 /*
James Smartecfd03c2010-02-12 14:41:27 -05002300 * If the new hba FCF record has lower priority value
2301 * than the driver FCF record, use the new record.
James Smart6fb120a2009-05-22 14:52:59 -04002302 */
James Smartfc2b9892010-02-26 14:15:29 -05002303 if (new_fcf_record->fip_priority < fcf_rec->priority) {
James Smart999d8132010-03-15 11:24:56 -04002304 /* Choose the new FCF record with lower priority */
James Smartdbb6b3a2010-06-08 18:31:37 -04002305 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
2306 "2838 Update current FCF record "
2307 "(x%x) with new FCF record (x%x)\n",
2308 fcf_rec->fcf_indx,
2309 bf_get(lpfc_fcf_record_fcf_index,
2310 new_fcf_record));
James Smartecfd03c2010-02-12 14:41:27 -05002311 __lpfc_update_fcf_record(phba, fcf_rec, new_fcf_record,
2312 addr_mode, vlan_id, 0);
James Smart999d8132010-03-15 11:24:56 -04002313 /* Reset running random FCF selection count */
2314 phba->fcf.eligible_fcf_cnt = 1;
2315 } else if (new_fcf_record->fip_priority == fcf_rec->priority) {
2316 /* Update running random FCF selection count */
2317 phba->fcf.eligible_fcf_cnt++;
2318 select_new_fcf = lpfc_sli4_new_fcf_random_select(phba,
2319 phba->fcf.eligible_fcf_cnt);
James Smartdbb6b3a2010-06-08 18:31:37 -04002320 if (select_new_fcf) {
2321 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
2322 "2839 Update current FCF record "
2323 "(x%x) with new FCF record (x%x)\n",
2324 fcf_rec->fcf_indx,
2325 bf_get(lpfc_fcf_record_fcf_index,
2326 new_fcf_record));
James Smart999d8132010-03-15 11:24:56 -04002327 /* Choose the new FCF by random selection */
2328 __lpfc_update_fcf_record(phba, fcf_rec,
2329 new_fcf_record,
2330 addr_mode, vlan_id, 0);
James Smartdbb6b3a2010-06-08 18:31:37 -04002331 }
James Smart6fb120a2009-05-22 14:52:59 -04002332 }
James Smart0c9ab6f2010-02-26 14:15:57 -05002333 spin_unlock_irq(&phba->hbalock);
James Smart6fb120a2009-05-22 14:52:59 -04002334 goto read_next_fcf;
2335 }
2336 /*
James Smartecfd03c2010-02-12 14:41:27 -05002337 * This is the first suitable FCF record, choose this record for
2338 * initial best-fit FCF.
James Smart6fb120a2009-05-22 14:52:59 -04002339 */
James Smartecfd03c2010-02-12 14:41:27 -05002340 if (fcf_rec) {
James Smartdbb6b3a2010-06-08 18:31:37 -04002341 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -04002342 "2840 Update initial FCF candidate "
2343 "with FCF (x%x)\n",
James Smartdbb6b3a2010-06-08 18:31:37 -04002344 bf_get(lpfc_fcf_record_fcf_index,
2345 new_fcf_record));
James Smartecfd03c2010-02-12 14:41:27 -05002346 __lpfc_update_fcf_record(phba, fcf_rec, new_fcf_record,
2347 addr_mode, vlan_id, (boot_flag ?
2348 BOOT_ENABLE : 0));
2349 phba->fcf.fcf_flag |= FCF_AVAILABLE;
James Smart999d8132010-03-15 11:24:56 -04002350 /* Setup initial running random FCF selection count */
2351 phba->fcf.eligible_fcf_cnt = 1;
2352 /* Seeding the random number generator for random selection */
2353 seed = (uint32_t)(0xFFFFFFFF & jiffies);
2354 srandom32(seed);
James Smart6fb120a2009-05-22 14:52:59 -04002355 }
James Smart0c9ab6f2010-02-26 14:15:57 -05002356 spin_unlock_irq(&phba->hbalock);
James Smart6fb120a2009-05-22 14:52:59 -04002357 goto read_next_fcf;
2358
2359read_next_fcf:
2360 lpfc_sli4_mbox_cmd_free(phba, mboxq);
James Smartecfd03c2010-02-12 14:41:27 -05002361 if (next_fcf_index == LPFC_FCOE_FCF_NEXT_NONE || next_fcf_index == 0) {
2362 if (phba->fcf.fcf_flag & FCF_REDISC_FOV) {
2363 /*
2364 * Case of FCF fast failover scan
2365 */
2366
2367 /*
2368 * It has not found any suitable FCF record, cancel
2369 * FCF scan inprogress, and do nothing
2370 */
2371 if (!(phba->fcf.failover_rec.flag & RECORD_VALID)) {
James Smart0c9ab6f2010-02-26 14:15:57 -05002372 lpfc_printf_log(phba, KERN_WARNING, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -04002373 "2782 No suitable FCF found: "
2374 "(x%x/x%x)\n",
James Smart0c9ab6f2010-02-26 14:15:57 -05002375 phba->fcoe_eventtag_at_fcf_scan,
2376 bf_get(lpfc_fcf_record_fcf_index,
2377 new_fcf_record));
James Smart0c9ab6f2010-02-26 14:15:57 -05002378 spin_lock_irq(&phba->hbalock);
James Smarta93ff372010-10-22 11:06:08 -04002379 if (phba->hba_flag & HBA_DEVLOSS_TMO) {
2380 phba->hba_flag &= ~FCF_TS_INPROG;
2381 spin_unlock_irq(&phba->hbalock);
2382 /* Unregister in-use FCF and rescan */
2383 lpfc_printf_log(phba, KERN_INFO,
2384 LOG_FIP,
2385 "2864 On devloss tmo "
2386 "unreg in-use FCF and "
2387 "rescan FCF table\n");
2388 lpfc_unregister_fcf_rescan(phba);
2389 return;
2390 }
2391 /*
2392 * Let next new FCF event trigger fast failover
2393 */
2394 phba->hba_flag &= ~FCF_TS_INPROG;
James Smart0c9ab6f2010-02-26 14:15:57 -05002395 spin_unlock_irq(&phba->hbalock);
James Smartecfd03c2010-02-12 14:41:27 -05002396 return;
2397 }
2398 /*
2399 * It has found a suitable FCF record that is not
2400 * the same as in-use FCF record, unregister the
2401 * in-use FCF record, replace the in-use FCF record
2402 * with the new FCF record, mark FCF fast failover
2403 * completed, and then start register the new FCF
2404 * record.
2405 */
2406
James Smart0c9ab6f2010-02-26 14:15:57 -05002407 /* Unregister the current in-use FCF record */
James Smartecfd03c2010-02-12 14:41:27 -05002408 lpfc_unregister_fcf(phba);
James Smart0c9ab6f2010-02-26 14:15:57 -05002409
2410 /* Replace in-use record with the new record */
James Smartdbb6b3a2010-06-08 18:31:37 -04002411 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -04002412 "2842 Replace in-use FCF (x%x) "
2413 "with failover FCF (x%x)\n",
James Smartdbb6b3a2010-06-08 18:31:37 -04002414 phba->fcf.current_rec.fcf_indx,
2415 phba->fcf.failover_rec.fcf_indx);
James Smartecfd03c2010-02-12 14:41:27 -05002416 memcpy(&phba->fcf.current_rec,
2417 &phba->fcf.failover_rec,
2418 sizeof(struct lpfc_fcf_rec));
James Smart3804dc82010-07-14 15:31:37 -04002419 /*
2420 * Mark the fast FCF failover rediscovery completed
2421 * and the start of the first round of the roundrobin
2422 * FCF failover.
2423 */
James Smart0c9ab6f2010-02-26 14:15:57 -05002424 spin_lock_irq(&phba->hbalock);
James Smarta93ff372010-10-22 11:06:08 -04002425 phba->fcf.fcf_flag &= ~FCF_REDISC_FOV;
James Smart0c9ab6f2010-02-26 14:15:57 -05002426 spin_unlock_irq(&phba->hbalock);
James Smartecfd03c2010-02-12 14:41:27 -05002427 /* Register to the new FCF record */
2428 lpfc_register_fcf(phba);
2429 } else {
2430 /*
2431 * In case of transaction period to fast FCF failover,
2432 * do nothing when search to the end of the FCF table.
2433 */
2434 if ((phba->fcf.fcf_flag & FCF_REDISC_EVT) ||
2435 (phba->fcf.fcf_flag & FCF_REDISC_PEND))
2436 return;
James Smartdbb6b3a2010-06-08 18:31:37 -04002437
James Smart7d791df2011-07-22 18:37:52 -04002438 if (phba->cfg_fcf_failover_policy == LPFC_FCF_FOV &&
2439 phba->fcf.fcf_flag & FCF_IN_USE) {
James Smartdbb6b3a2010-06-08 18:31:37 -04002440 /*
2441 * In case the current in-use FCF record no
2442 * longer existed during FCF discovery that
2443 * was not triggered by fast FCF failover
2444 * process, treat it as fast FCF failover.
2445 */
2446 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
2447 "2841 In-use FCF record (x%x) "
2448 "not reported, entering fast "
2449 "FCF failover mode scanning.\n",
2450 phba->fcf.current_rec.fcf_indx);
2451 spin_lock_irq(&phba->hbalock);
2452 phba->fcf.fcf_flag |= FCF_REDISC_FOV;
2453 spin_unlock_irq(&phba->hbalock);
James Smartdbb6b3a2010-06-08 18:31:37 -04002454 lpfc_sli4_fcf_scan_read_fcf_rec(phba,
2455 LPFC_FCOE_FCF_GET_FIRST);
2456 return;
2457 }
James Smart0c9ab6f2010-02-26 14:15:57 -05002458 /* Register to the new FCF record */
James Smartecfd03c2010-02-12 14:41:27 -05002459 lpfc_register_fcf(phba);
2460 }
2461 } else
James Smart0c9ab6f2010-02-26 14:15:57 -05002462 lpfc_sli4_fcf_scan_read_fcf_rec(phba, next_fcf_index);
James Smart6fb120a2009-05-22 14:52:59 -04002463 return;
2464
2465out:
2466 lpfc_sli4_mbox_cmd_free(phba, mboxq);
2467 lpfc_register_fcf(phba);
2468
2469 return;
2470}
2471
2472/**
James Smarta93ff372010-10-22 11:06:08 -04002473 * lpfc_mbx_cmpl_fcf_rr_read_fcf_rec - fcf roundrobin read_fcf mbox cmpl hdler
James Smart0c9ab6f2010-02-26 14:15:57 -05002474 * @phba: pointer to lpfc hba data structure.
2475 * @mboxq: pointer to mailbox object.
2476 *
James Smarta93ff372010-10-22 11:06:08 -04002477 * This is the callback function for FLOGI failure roundrobin FCF failover
James Smart0c9ab6f2010-02-26 14:15:57 -05002478 * read FCF record mailbox command from the eligible FCF record bmask for
2479 * performing the failover. If the FCF read back is not valid/available, it
2480 * fails through to retrying FLOGI to the currently registered FCF again.
2481 * Otherwise, if the FCF read back is valid and available, it will set the
2482 * newly read FCF record to the failover FCF record, unregister currently
2483 * registered FCF record, copy the failover FCF record to the current
2484 * FCF record, and then register the current FCF record before proceeding
2485 * to trying FLOGI on the new failover FCF.
2486 */
2487void
2488lpfc_mbx_cmpl_fcf_rr_read_fcf_rec(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
2489{
2490 struct fcf_record *new_fcf_record;
2491 uint32_t boot_flag, addr_mode;
James Smarta93ff372010-10-22 11:06:08 -04002492 uint16_t next_fcf_index, fcf_index;
James Smart0c9ab6f2010-02-26 14:15:57 -05002493 uint16_t current_fcf_index;
2494 uint16_t vlan_id;
James Smarta93ff372010-10-22 11:06:08 -04002495 int rc;
James Smart0c9ab6f2010-02-26 14:15:57 -05002496
James Smarta93ff372010-10-22 11:06:08 -04002497 /* If link state is not up, stop the roundrobin failover process */
James Smart0c9ab6f2010-02-26 14:15:57 -05002498 if (phba->link_state < LPFC_LINK_UP) {
2499 spin_lock_irq(&phba->hbalock);
2500 phba->fcf.fcf_flag &= ~FCF_DISCOVERY;
James Smarta93ff372010-10-22 11:06:08 -04002501 phba->hba_flag &= ~FCF_RR_INPROG;
James Smart0c9ab6f2010-02-26 14:15:57 -05002502 spin_unlock_irq(&phba->hbalock);
James Smarta93ff372010-10-22 11:06:08 -04002503 goto out;
James Smart0c9ab6f2010-02-26 14:15:57 -05002504 }
2505
2506 /* Parse the FCF record from the non-embedded mailbox command */
2507 new_fcf_record = lpfc_sli4_fcf_rec_mbox_parse(phba, mboxq,
2508 &next_fcf_index);
2509 if (!new_fcf_record) {
2510 lpfc_printf_log(phba, KERN_WARNING, LOG_FIP,
2511 "2766 Mailbox command READ_FCF_RECORD "
2512 "failed to retrieve a FCF record.\n");
James Smarta93ff372010-10-22 11:06:08 -04002513 goto error_out;
James Smart0c9ab6f2010-02-26 14:15:57 -05002514 }
2515
2516 /* Get the needed parameters from FCF record */
James Smarta93ff372010-10-22 11:06:08 -04002517 rc = lpfc_match_fcf_conn_list(phba, new_fcf_record, &boot_flag,
2518 &addr_mode, &vlan_id);
James Smart0c9ab6f2010-02-26 14:15:57 -05002519
2520 /* Log the FCF record information if turned on */
2521 lpfc_sli4_log_fcf_record_info(phba, new_fcf_record, vlan_id,
2522 next_fcf_index);
2523
James Smarta93ff372010-10-22 11:06:08 -04002524 fcf_index = bf_get(lpfc_fcf_record_fcf_index, new_fcf_record);
2525 if (!rc) {
2526 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
2527 "2848 Remove ineligible FCF (x%x) from "
2528 "from roundrobin bmask\n", fcf_index);
2529 /* Clear roundrobin bmask bit for ineligible FCF */
2530 lpfc_sli4_fcf_rr_index_clear(phba, fcf_index);
2531 /* Perform next round of roundrobin FCF failover */
2532 fcf_index = lpfc_sli4_fcf_rr_next_index_get(phba);
2533 rc = lpfc_sli4_fcf_rr_next_proc(phba->pport, fcf_index);
2534 if (rc)
2535 goto out;
2536 goto error_out;
2537 }
2538
2539 if (fcf_index == phba->fcf.current_rec.fcf_indx) {
2540 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
2541 "2760 Perform FLOGI roundrobin FCF failover: "
2542 "FCF (x%x) back to FCF (x%x)\n",
2543 phba->fcf.current_rec.fcf_indx, fcf_index);
2544 /* Wait 500 ms before retrying FLOGI to current FCF */
2545 msleep(500);
James Smart76a95d72010-11-20 23:11:48 -05002546 lpfc_issue_init_vfi(phba->pport);
James Smarta93ff372010-10-22 11:06:08 -04002547 goto out;
2548 }
2549
James Smart0c9ab6f2010-02-26 14:15:57 -05002550 /* Upload new FCF record to the failover FCF record */
James Smartdbb6b3a2010-06-08 18:31:37 -04002551 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -04002552 "2834 Update current FCF (x%x) with new FCF (x%x)\n",
2553 phba->fcf.failover_rec.fcf_indx, fcf_index);
James Smart0c9ab6f2010-02-26 14:15:57 -05002554 spin_lock_irq(&phba->hbalock);
2555 __lpfc_update_fcf_record(phba, &phba->fcf.failover_rec,
2556 new_fcf_record, addr_mode, vlan_id,
2557 (boot_flag ? BOOT_ENABLE : 0));
2558 spin_unlock_irq(&phba->hbalock);
2559
2560 current_fcf_index = phba->fcf.current_rec.fcf_indx;
2561
2562 /* Unregister the current in-use FCF record */
2563 lpfc_unregister_fcf(phba);
2564
2565 /* Replace in-use record with the new record */
2566 memcpy(&phba->fcf.current_rec, &phba->fcf.failover_rec,
2567 sizeof(struct lpfc_fcf_rec));
2568
2569 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -04002570 "2783 Perform FLOGI roundrobin FCF failover: FCF "
2571 "(x%x) to FCF (x%x)\n", current_fcf_index, fcf_index);
James Smart0c9ab6f2010-02-26 14:15:57 -05002572
James Smarta93ff372010-10-22 11:06:08 -04002573error_out:
2574 lpfc_register_fcf(phba);
James Smart0c9ab6f2010-02-26 14:15:57 -05002575out:
2576 lpfc_sli4_mbox_cmd_free(phba, mboxq);
James Smart0c9ab6f2010-02-26 14:15:57 -05002577}
2578
2579/**
2580 * lpfc_mbx_cmpl_read_fcf_rec - read fcf completion handler.
2581 * @phba: pointer to lpfc hba data structure.
2582 * @mboxq: pointer to mailbox object.
2583 *
2584 * This is the callback function of read FCF record mailbox command for
James Smarta93ff372010-10-22 11:06:08 -04002585 * updating the eligible FCF bmask for FLOGI failure roundrobin FCF
James Smart0c9ab6f2010-02-26 14:15:57 -05002586 * failover when a new FCF event happened. If the FCF read back is
2587 * valid/available and it passes the connection list check, it updates
James Smarta93ff372010-10-22 11:06:08 -04002588 * the bmask for the eligible FCF record for roundrobin failover.
James Smart0c9ab6f2010-02-26 14:15:57 -05002589 */
2590void
2591lpfc_mbx_cmpl_read_fcf_rec(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
2592{
2593 struct fcf_record *new_fcf_record;
2594 uint32_t boot_flag, addr_mode;
2595 uint16_t fcf_index, next_fcf_index;
2596 uint16_t vlan_id;
2597 int rc;
2598
2599 /* If link state is not up, no need to proceed */
2600 if (phba->link_state < LPFC_LINK_UP)
2601 goto out;
2602
2603 /* If FCF discovery period is over, no need to proceed */
James Smart3804dc82010-07-14 15:31:37 -04002604 if (!(phba->fcf.fcf_flag & FCF_DISCOVERY))
James Smart0c9ab6f2010-02-26 14:15:57 -05002605 goto out;
2606
2607 /* Parse the FCF record from the non-embedded mailbox command */
2608 new_fcf_record = lpfc_sli4_fcf_rec_mbox_parse(phba, mboxq,
2609 &next_fcf_index);
2610 if (!new_fcf_record) {
2611 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
2612 "2767 Mailbox command READ_FCF_RECORD "
2613 "failed to retrieve a FCF record.\n");
2614 goto out;
2615 }
2616
2617 /* Check the connection list for eligibility */
2618 rc = lpfc_match_fcf_conn_list(phba, new_fcf_record, &boot_flag,
2619 &addr_mode, &vlan_id);
2620
2621 /* Log the FCF record information if turned on */
2622 lpfc_sli4_log_fcf_record_info(phba, new_fcf_record, vlan_id,
2623 next_fcf_index);
2624
2625 if (!rc)
2626 goto out;
2627
2628 /* Update the eligible FCF record index bmask */
2629 fcf_index = bf_get(lpfc_fcf_record_fcf_index, new_fcf_record);
James Smart7d791df2011-07-22 18:37:52 -04002630
2631 rc = lpfc_sli4_fcf_pri_list_add(phba, fcf_index, new_fcf_record);
James Smart0c9ab6f2010-02-26 14:15:57 -05002632
2633out:
2634 lpfc_sli4_mbox_cmd_free(phba, mboxq);
2635}
2636
2637/**
James Smart76a95d72010-11-20 23:11:48 -05002638 * lpfc_init_vfi_cmpl - Completion handler for init_vfi mbox command.
2639 * @phba: pointer to lpfc hba data structure.
2640 * @mboxq: pointer to mailbox data structure.
2641 *
2642 * This function handles completion of init vfi mailbox command.
2643 */
2644void
2645lpfc_init_vfi_cmpl(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
2646{
2647 struct lpfc_vport *vport = mboxq->vport;
2648
James Smart73d91e52011-10-10 21:32:10 -04002649 /* VFI not supported on interface type 0, just do the flogi */
2650 if (mboxq->u.mb.mbxStatus && (bf_get(lpfc_sli_intf_if_type,
2651 &phba->sli4_hba.sli_intf) != LPFC_SLI_INTF_IF_TYPE_0)) {
James Smart76a95d72010-11-20 23:11:48 -05002652 lpfc_printf_vlog(vport, KERN_ERR,
2653 LOG_MBOX,
2654 "2891 Init VFI mailbox failed 0x%x\n",
2655 mboxq->u.mb.mbxStatus);
2656 mempool_free(mboxq, phba->mbox_mem_pool);
2657 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
2658 return;
2659 }
James Smart73d91e52011-10-10 21:32:10 -04002660
James Smart76a95d72010-11-20 23:11:48 -05002661 lpfc_initial_flogi(vport);
2662 mempool_free(mboxq, phba->mbox_mem_pool);
2663 return;
2664}
2665
2666/**
2667 * lpfc_issue_init_vfi - Issue init_vfi mailbox command.
2668 * @vport: pointer to lpfc_vport data structure.
2669 *
2670 * This function issue a init_vfi mailbox command to initialize the VFI and
2671 * VPI for the physical port.
2672 */
2673void
2674lpfc_issue_init_vfi(struct lpfc_vport *vport)
2675{
2676 LPFC_MBOXQ_t *mboxq;
2677 int rc;
2678 struct lpfc_hba *phba = vport->phba;
2679
2680 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
2681 if (!mboxq) {
2682 lpfc_printf_vlog(vport, KERN_ERR,
2683 LOG_MBOX, "2892 Failed to allocate "
2684 "init_vfi mailbox\n");
2685 return;
2686 }
2687 lpfc_init_vfi(mboxq, vport);
2688 mboxq->mbox_cmpl = lpfc_init_vfi_cmpl;
2689 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
2690 if (rc == MBX_NOT_FINISHED) {
2691 lpfc_printf_vlog(vport, KERN_ERR,
2692 LOG_MBOX, "2893 Failed to issue init_vfi mailbox\n");
2693 mempool_free(mboxq, vport->phba->mbox_mem_pool);
2694 }
2695}
2696
2697/**
James Smart1c6834a2009-07-19 10:01:26 -04002698 * lpfc_init_vpi_cmpl - Completion handler for init_vpi mbox command.
2699 * @phba: pointer to lpfc hba data structure.
2700 * @mboxq: pointer to mailbox data structure.
2701 *
2702 * This function handles completion of init vpi mailbox command.
2703 */
James Smart695a8142010-01-26 23:08:03 -05002704void
James Smart1c6834a2009-07-19 10:01:26 -04002705lpfc_init_vpi_cmpl(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
2706{
2707 struct lpfc_vport *vport = mboxq->vport;
James Smart695a8142010-01-26 23:08:03 -05002708 struct lpfc_nodelist *ndlp;
James Smart72100cc2010-02-12 14:43:01 -05002709 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2710
James Smart1c6834a2009-07-19 10:01:26 -04002711 if (mboxq->u.mb.mbxStatus) {
2712 lpfc_printf_vlog(vport, KERN_ERR,
2713 LOG_MBOX,
2714 "2609 Init VPI mailbox failed 0x%x\n",
2715 mboxq->u.mb.mbxStatus);
2716 mempool_free(mboxq, phba->mbox_mem_pool);
2717 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
2718 return;
2719 }
James Smart72100cc2010-02-12 14:43:01 -05002720 spin_lock_irq(shost->host_lock);
James Smart1c6834a2009-07-19 10:01:26 -04002721 vport->fc_flag &= ~FC_VPORT_NEEDS_INIT_VPI;
James Smart72100cc2010-02-12 14:43:01 -05002722 spin_unlock_irq(shost->host_lock);
James Smart1c6834a2009-07-19 10:01:26 -04002723
James Smart695a8142010-01-26 23:08:03 -05002724 /* If this port is physical port or FDISC is done, do reg_vpi */
2725 if ((phba->pport == vport) || (vport->port_state == LPFC_FDISC)) {
2726 ndlp = lpfc_findnode_did(vport, Fabric_DID);
2727 if (!ndlp)
2728 lpfc_printf_vlog(vport, KERN_ERR,
2729 LOG_DISCOVERY,
2730 "2731 Cannot find fabric "
2731 "controller node\n");
2732 else
2733 lpfc_register_new_vport(phba, vport, ndlp);
2734 mempool_free(mboxq, phba->mbox_mem_pool);
2735 return;
2736 }
2737
James Smart1c6834a2009-07-19 10:01:26 -04002738 if (phba->link_flag & LS_NPIV_FAB_SUPPORTED)
2739 lpfc_initial_fdisc(vport);
2740 else {
2741 lpfc_vport_set_state(vport, FC_VPORT_NO_FABRIC_SUPP);
James Smart6a9c52c2009-10-02 15:16:51 -04002742 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
2743 "2606 No NPIV Fabric support\n");
James Smart1c6834a2009-07-19 10:01:26 -04002744 }
James Smart695a8142010-01-26 23:08:03 -05002745 mempool_free(mboxq, phba->mbox_mem_pool);
James Smart1c6834a2009-07-19 10:01:26 -04002746 return;
2747}
2748
2749/**
James Smartecfd03c2010-02-12 14:41:27 -05002750 * lpfc_issue_init_vpi - Issue init_vpi mailbox command.
2751 * @vport: pointer to lpfc_vport data structure.
2752 *
2753 * This function issue a init_vpi mailbox command to initialize
2754 * VPI for the vport.
2755 */
2756void
2757lpfc_issue_init_vpi(struct lpfc_vport *vport)
2758{
2759 LPFC_MBOXQ_t *mboxq;
2760 int rc;
2761
2762 mboxq = mempool_alloc(vport->phba->mbox_mem_pool, GFP_KERNEL);
2763 if (!mboxq) {
2764 lpfc_printf_vlog(vport, KERN_ERR,
2765 LOG_MBOX, "2607 Failed to allocate "
2766 "init_vpi mailbox\n");
2767 return;
2768 }
2769 lpfc_init_vpi(vport->phba, mboxq, vport->vpi);
2770 mboxq->vport = vport;
2771 mboxq->mbox_cmpl = lpfc_init_vpi_cmpl;
2772 rc = lpfc_sli_issue_mbox(vport->phba, mboxq, MBX_NOWAIT);
2773 if (rc == MBX_NOT_FINISHED) {
2774 lpfc_printf_vlog(vport, KERN_ERR,
2775 LOG_MBOX, "2608 Failed to issue init_vpi mailbox\n");
2776 mempool_free(mboxq, vport->phba->mbox_mem_pool);
2777 }
2778}
2779
2780/**
James Smart6fb120a2009-05-22 14:52:59 -04002781 * lpfc_start_fdiscs - send fdiscs for each vports on this port.
2782 * @phba: pointer to lpfc hba data structure.
2783 *
2784 * This function loops through the list of vports on the @phba and issues an
2785 * FDISC if possible.
2786 */
2787void
2788lpfc_start_fdiscs(struct lpfc_hba *phba)
2789{
2790 struct lpfc_vport **vports;
2791 int i;
2792
2793 vports = lpfc_create_vport_work_array(phba);
2794 if (vports != NULL) {
2795 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
2796 if (vports[i]->port_type == LPFC_PHYSICAL_PORT)
2797 continue;
2798 /* There are no vpi for this vport */
2799 if (vports[i]->vpi > phba->max_vpi) {
2800 lpfc_vport_set_state(vports[i],
2801 FC_VPORT_FAILED);
2802 continue;
2803 }
James Smart76a95d72010-11-20 23:11:48 -05002804 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
James Smart6fb120a2009-05-22 14:52:59 -04002805 lpfc_vport_set_state(vports[i],
2806 FC_VPORT_LINKDOWN);
2807 continue;
2808 }
James Smart1c6834a2009-07-19 10:01:26 -04002809 if (vports[i]->fc_flag & FC_VPORT_NEEDS_INIT_VPI) {
James Smartecfd03c2010-02-12 14:41:27 -05002810 lpfc_issue_init_vpi(vports[i]);
James Smart1c6834a2009-07-19 10:01:26 -04002811 continue;
2812 }
James Smart6fb120a2009-05-22 14:52:59 -04002813 if (phba->link_flag & LS_NPIV_FAB_SUPPORTED)
2814 lpfc_initial_fdisc(vports[i]);
2815 else {
2816 lpfc_vport_set_state(vports[i],
2817 FC_VPORT_NO_FABRIC_SUPP);
2818 lpfc_printf_vlog(vports[i], KERN_ERR,
2819 LOG_ELS,
2820 "0259 No NPIV "
2821 "Fabric support\n");
2822 }
2823 }
2824 }
2825 lpfc_destroy_vport_work_array(phba, vports);
2826}
2827
2828void
2829lpfc_mbx_cmpl_reg_vfi(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
2830{
2831 struct lpfc_dmabuf *dmabuf = mboxq->context1;
2832 struct lpfc_vport *vport = mboxq->vport;
James Smart72100cc2010-02-12 14:43:01 -05002833 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart6fb120a2009-05-22 14:52:59 -04002834
2835 if (mboxq->u.mb.mbxStatus) {
2836 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
2837 "2018 REG_VFI mbxStatus error x%x "
2838 "HBA state x%x\n",
2839 mboxq->u.mb.mbxStatus, vport->port_state);
James Smart76a95d72010-11-20 23:11:48 -05002840 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
James Smart6fb120a2009-05-22 14:52:59 -04002841 /* FLOGI failed, use loop map to make discovery list */
2842 lpfc_disc_list_loopmap(vport);
2843 /* Start discovery */
2844 lpfc_disc_start(vport);
2845 goto fail_free_mem;
2846 }
2847 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
2848 goto fail_free_mem;
2849 }
James Smartc8685952009-11-18 15:39:16 -05002850 /* The VPI is implicitly registered when the VFI is registered */
James Smart72100cc2010-02-12 14:43:01 -05002851 spin_lock_irq(shost->host_lock);
James Smartc8685952009-11-18 15:39:16 -05002852 vport->vpi_state |= LPFC_VPI_REGISTERED;
James Smart695a8142010-01-26 23:08:03 -05002853 vport->fc_flag |= FC_VFI_REGISTERED;
James Smart695a8142010-01-26 23:08:03 -05002854 vport->fc_flag &= ~FC_VPORT_NEEDS_REG_VPI;
James Smart5248a742011-07-22 18:37:06 -04002855 vport->fc_flag &= ~FC_VPORT_NEEDS_INIT_VPI;
James Smart72100cc2010-02-12 14:43:01 -05002856 spin_unlock_irq(shost->host_lock);
James Smart6fb120a2009-05-22 14:52:59 -04002857
2858 if (vport->port_state == LPFC_FABRIC_CFG_LINK) {
James Smart76a95d72010-11-20 23:11:48 -05002859 /* For private loop just start discovery and we are done. */
2860 if ((phba->fc_topology == LPFC_TOPOLOGY_LOOP) &&
James Smart76a95d72010-11-20 23:11:48 -05002861 !(vport->fc_flag & FC_PUBLIC_LOOP)) {
2862 /* Use loop map to make discovery list */
2863 lpfc_disc_list_loopmap(vport);
2864 /* Start discovery */
2865 lpfc_disc_start(vport);
2866 } else {
2867 lpfc_start_fdiscs(phba);
2868 lpfc_do_scr_ns_plogi(phba, vport);
2869 }
James Smart6fb120a2009-05-22 14:52:59 -04002870 }
2871
2872fail_free_mem:
2873 mempool_free(mboxq, phba->mbox_mem_pool);
2874 lpfc_mbuf_free(phba, dmabuf->virt, dmabuf->phys);
2875 kfree(dmabuf);
2876 return;
2877}
2878
2879static void
James Smart2e0fef82007-06-17 19:56:36 -05002880lpfc_mbx_cmpl_read_sparam(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
dea31012005-04-17 16:05:31 -05002881{
James Smart6fb120a2009-05-22 14:52:59 -04002882 MAILBOX_t *mb = &pmb->u.mb;
dea31012005-04-17 16:05:31 -05002883 struct lpfc_dmabuf *mp = (struct lpfc_dmabuf *) pmb->context1;
James Smart2e0fef82007-06-17 19:56:36 -05002884 struct lpfc_vport *vport = pmb->vport;
dea31012005-04-17 16:05:31 -05002885
2886
2887 /* Check for error */
2888 if (mb->mbxStatus) {
2889 /* READ_SPARAM mbox error <mbxStatus> state <hba_state> */
James Smarte8b62012007-08-02 11:10:09 -04002890 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
2891 "0319 READ_SPARAM mbxStatus error x%x "
2892 "hba state x%x>\n",
2893 mb->mbxStatus, vport->port_state);
dea31012005-04-17 16:05:31 -05002894 lpfc_linkdown(phba);
dea31012005-04-17 16:05:31 -05002895 goto out;
2896 }
2897
James Smart2e0fef82007-06-17 19:56:36 -05002898 memcpy((uint8_t *) &vport->fc_sparam, (uint8_t *) mp->virt,
dea31012005-04-17 16:05:31 -05002899 sizeof (struct serv_parm));
James Smart05580562011-05-24 11:40:48 -04002900 lpfc_update_vport_wwn(vport);
James Smart92d7f7b2007-06-17 19:56:38 -05002901 if (vport->port_type == LPFC_PHYSICAL_PORT) {
2902 memcpy(&phba->wwnn, &vport->fc_nodename, sizeof(phba->wwnn));
2903 memcpy(&phba->wwpn, &vport->fc_portname, sizeof(phba->wwnn));
2904 }
2905
dea31012005-04-17 16:05:31 -05002906 lpfc_mbuf_free(phba, mp->virt, mp->phys);
2907 kfree(mp);
James Smart2e0fef82007-06-17 19:56:36 -05002908 mempool_free(pmb, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -05002909 return;
2910
2911out:
2912 pmb->context1 = NULL;
2913 lpfc_mbuf_free(phba, mp->virt, mp->phys);
2914 kfree(mp);
James Smart92d7f7b2007-06-17 19:56:38 -05002915 lpfc_issue_clear_la(phba, vport);
2916 mempool_free(pmb, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -05002917 return;
2918}
2919
2920static void
James Smart76a95d72010-11-20 23:11:48 -05002921lpfc_mbx_process_link_up(struct lpfc_hba *phba, struct lpfc_mbx_read_top *la)
dea31012005-04-17 16:05:31 -05002922{
James Smart92d7f7b2007-06-17 19:56:38 -05002923 struct lpfc_vport *vport = phba->pport;
James Smart6fb120a2009-05-22 14:52:59 -04002924 LPFC_MBOXQ_t *sparam_mbox, *cfglink_mbox = NULL;
James Smart2e0fef82007-06-17 19:56:36 -05002925 int i;
James Smart14691152006-12-02 13:34:28 -05002926 struct lpfc_dmabuf *mp;
2927 int rc;
James Smart6fb120a2009-05-22 14:52:59 -04002928 struct fcf_record *fcf_record;
James Smart14691152006-12-02 13:34:28 -05002929
James Smart92d7f7b2007-06-17 19:56:38 -05002930 spin_lock_irq(&phba->hbalock);
James Smart76a95d72010-11-20 23:11:48 -05002931 switch (bf_get(lpfc_mbx_read_top_link_spd, la)) {
2932 case LPFC_LINK_SPEED_1GHZ:
2933 case LPFC_LINK_SPEED_2GHZ:
2934 case LPFC_LINK_SPEED_4GHZ:
2935 case LPFC_LINK_SPEED_8GHZ:
2936 case LPFC_LINK_SPEED_10GHZ:
2937 case LPFC_LINK_SPEED_16GHZ:
2938 phba->fc_linkspeed = bf_get(lpfc_mbx_read_top_link_spd, la);
James Smartf4b4c682009-05-22 14:53:12 -04002939 break;
James Smart92d7f7b2007-06-17 19:56:38 -05002940 default:
James Smart76a95d72010-11-20 23:11:48 -05002941 phba->fc_linkspeed = LPFC_LINK_SPEED_UNKNOWN;
James Smart92d7f7b2007-06-17 19:56:38 -05002942 break;
dea31012005-04-17 16:05:31 -05002943 }
2944
James Smart76a95d72010-11-20 23:11:48 -05002945 phba->fc_topology = bf_get(lpfc_mbx_read_top_topology, la);
James Smart92d7f7b2007-06-17 19:56:38 -05002946 phba->link_flag &= ~LS_NPIV_FAB_SUPPORTED;
dea31012005-04-17 16:05:31 -05002947
James Smart76a95d72010-11-20 23:11:48 -05002948 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
James Smart92d7f7b2007-06-17 19:56:38 -05002949 phba->sli3_options &= ~LPFC_SLI3_NPIV_ENABLED;
dea31012005-04-17 16:05:31 -05002950
James Smart6a9c52c2009-10-02 15:16:51 -04002951 /* if npiv is enabled and this adapter supports npiv log
2952 * a message that npiv is not supported in this topology
2953 */
2954 if (phba->cfg_enable_npiv && phba->max_vpi)
James Smart495a7142008-06-14 22:52:59 -04002955 lpfc_printf_log(phba, KERN_ERR, LOG_LINK_EVENT,
2956 "1309 Link Up Event npiv not supported in loop "
2957 "topology\n");
James Smart92d7f7b2007-06-17 19:56:38 -05002958 /* Get Loop Map information */
James Smart76a95d72010-11-20 23:11:48 -05002959 if (bf_get(lpfc_mbx_read_top_il, la))
James Smart2e0fef82007-06-17 19:56:36 -05002960 vport->fc_flag |= FC_LBIT;
dea31012005-04-17 16:05:31 -05002961
James Smart76a95d72010-11-20 23:11:48 -05002962 vport->fc_myDID = bf_get(lpfc_mbx_read_top_alpa_granted, la);
2963 i = la->lilpBde64.tus.f.bdeSize;
dea31012005-04-17 16:05:31 -05002964
2965 if (i == 0) {
2966 phba->alpa_map[0] = 0;
2967 } else {
James Smarte8b62012007-08-02 11:10:09 -04002968 if (vport->cfg_log_verbose & LOG_LINK_EVENT) {
dea31012005-04-17 16:05:31 -05002969 int numalpa, j, k;
2970 union {
2971 uint8_t pamap[16];
2972 struct {
2973 uint32_t wd1;
2974 uint32_t wd2;
2975 uint32_t wd3;
2976 uint32_t wd4;
2977 } pa;
2978 } un;
2979 numalpa = phba->alpa_map[0];
2980 j = 0;
2981 while (j < numalpa) {
2982 memset(un.pamap, 0, 16);
2983 for (k = 1; j < numalpa; k++) {
2984 un.pamap[k - 1] =
2985 phba->alpa_map[j + 1];
2986 j++;
2987 if (k == 16)
2988 break;
2989 }
2990 /* Link Up Event ALPA map */
2991 lpfc_printf_log(phba,
James Smart92d7f7b2007-06-17 19:56:38 -05002992 KERN_WARNING,
2993 LOG_LINK_EVENT,
James Smarte8b62012007-08-02 11:10:09 -04002994 "1304 Link Up Event "
James Smart92d7f7b2007-06-17 19:56:38 -05002995 "ALPA map Data: x%x "
2996 "x%x x%x x%x\n",
James Smart92d7f7b2007-06-17 19:56:38 -05002997 un.pa.wd1, un.pa.wd2,
2998 un.pa.wd3, un.pa.wd4);
dea31012005-04-17 16:05:31 -05002999 }
3000 }
3001 }
3002 } else {
James Smart92d7f7b2007-06-17 19:56:38 -05003003 if (!(phba->sli3_options & LPFC_SLI3_NPIV_ENABLED)) {
James Smart78b2d852007-08-02 11:10:21 -04003004 if (phba->max_vpi && phba->cfg_enable_npiv &&
James Smart92d7f7b2007-06-17 19:56:38 -05003005 (phba->sli_rev == 3))
3006 phba->sli3_options |= LPFC_SLI3_NPIV_ENABLED;
3007 }
James Smart2e0fef82007-06-17 19:56:36 -05003008 vport->fc_myDID = phba->fc_pref_DID;
3009 vport->fc_flag |= FC_LBIT;
dea31012005-04-17 16:05:31 -05003010 }
James Smart92d7f7b2007-06-17 19:56:38 -05003011 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05003012
3013 lpfc_linkup(phba);
James Smart9f1177a2010-02-26 14:12:57 -05003014 sparam_mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
3015 if (!sparam_mbox)
3016 goto out;
3017
3018 rc = lpfc_read_sparam(phba, sparam_mbox, 0);
3019 if (rc) {
3020 mempool_free(sparam_mbox, phba->mbox_mem_pool);
3021 goto out;
3022 }
3023 sparam_mbox->vport = vport;
3024 sparam_mbox->mbox_cmpl = lpfc_mbx_cmpl_read_sparam;
3025 rc = lpfc_sli_issue_mbox(phba, sparam_mbox, MBX_NOWAIT);
3026 if (rc == MBX_NOT_FINISHED) {
3027 mp = (struct lpfc_dmabuf *) sparam_mbox->context1;
3028 lpfc_mbuf_free(phba, mp->virt, mp->phys);
3029 kfree(mp);
3030 mempool_free(sparam_mbox, phba->mbox_mem_pool);
3031 goto out;
dea31012005-04-17 16:05:31 -05003032 }
3033
James Smart76a95d72010-11-20 23:11:48 -05003034 if (!(phba->hba_flag & HBA_FCOE_MODE)) {
James Smart6fb120a2009-05-22 14:52:59 -04003035 cfglink_mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
3036 if (!cfglink_mbox)
3037 goto out;
James Smart2e0fef82007-06-17 19:56:36 -05003038 vport->port_state = LPFC_LOCAL_CFG_LINK;
dea31012005-04-17 16:05:31 -05003039 lpfc_config_link(phba, cfglink_mbox);
James Smart2e0fef82007-06-17 19:56:36 -05003040 cfglink_mbox->vport = vport;
Jamie Wellnitz25594c62006-02-28 19:25:34 -05003041 cfglink_mbox->mbox_cmpl = lpfc_mbx_cmpl_local_config_link;
James Smart0b727fe2007-10-27 13:37:25 -04003042 rc = lpfc_sli_issue_mbox(phba, cfglink_mbox, MBX_NOWAIT);
James Smart6fb120a2009-05-22 14:52:59 -04003043 if (rc == MBX_NOT_FINISHED) {
3044 mempool_free(cfglink_mbox, phba->mbox_mem_pool);
3045 goto out;
3046 }
3047 } else {
James Smart32b97932009-07-19 10:01:21 -04003048 vport->port_state = LPFC_VPORT_UNKNOWN;
James Smart6fb120a2009-05-22 14:52:59 -04003049 /*
3050 * Add the driver's default FCF record at FCF index 0 now. This
3051 * is phase 1 implementation that support FCF index 0 and driver
3052 * defaults.
3053 */
James Smart45ed1192009-10-02 15:17:02 -04003054 if (!(phba->hba_flag & HBA_FIP_SUPPORT)) {
James Smart6fb120a2009-05-22 14:52:59 -04003055 fcf_record = kzalloc(sizeof(struct fcf_record),
3056 GFP_KERNEL);
3057 if (unlikely(!fcf_record)) {
3058 lpfc_printf_log(phba, KERN_ERR,
3059 LOG_MBOX | LOG_SLI,
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04003060 "2554 Could not allocate memory for "
James Smart6fb120a2009-05-22 14:52:59 -04003061 "fcf record\n");
3062 rc = -ENODEV;
3063 goto out;
3064 }
3065
3066 lpfc_sli4_build_dflt_fcf_record(phba, fcf_record,
3067 LPFC_FCOE_FCF_DEF_INDEX);
3068 rc = lpfc_sli4_add_fcf_record(phba, fcf_record);
3069 if (unlikely(rc)) {
3070 lpfc_printf_log(phba, KERN_ERR,
3071 LOG_MBOX | LOG_SLI,
3072 "2013 Could not manually add FCF "
3073 "record 0, status %d\n", rc);
3074 rc = -ENODEV;
3075 kfree(fcf_record);
3076 goto out;
3077 }
3078 kfree(fcf_record);
3079 }
3080 /*
3081 * The driver is expected to do FIP/FCF. Call the port
3082 * and get the FCF Table.
3083 */
James Smart32b97932009-07-19 10:01:21 -04003084 spin_lock_irq(&phba->hbalock);
James Smarta93ff372010-10-22 11:06:08 -04003085 if (phba->hba_flag & FCF_TS_INPROG) {
James Smart32b97932009-07-19 10:01:21 -04003086 spin_unlock_irq(&phba->hbalock);
3087 return;
3088 }
James Smart0c9ab6f2010-02-26 14:15:57 -05003089 /* This is the initial FCF discovery scan */
3090 phba->fcf.fcf_flag |= FCF_INIT_DISC;
James Smart32b97932009-07-19 10:01:21 -04003091 spin_unlock_irq(&phba->hbalock);
James Smart0c9ab6f2010-02-26 14:15:57 -05003092 lpfc_printf_log(phba, KERN_INFO, LOG_FIP | LOG_DISCOVERY,
3093 "2778 Start FCF table scan at linkup\n");
James Smart0c9ab6f2010-02-26 14:15:57 -05003094 rc = lpfc_sli4_fcf_scan_read_fcf_rec(phba,
3095 LPFC_FCOE_FCF_GET_FIRST);
3096 if (rc) {
3097 spin_lock_irq(&phba->hbalock);
3098 phba->fcf.fcf_flag &= ~FCF_INIT_DISC;
3099 spin_unlock_irq(&phba->hbalock);
James Smart6fb120a2009-05-22 14:52:59 -04003100 goto out;
James Smart0c9ab6f2010-02-26 14:15:57 -05003101 }
James Smart38b92ef2010-08-04 16:11:39 -04003102 /* Reset FCF roundrobin bmask for new discovery */
James Smart7d791df2011-07-22 18:37:52 -04003103 lpfc_sli4_clear_fcf_rr_bmask(phba);
dea31012005-04-17 16:05:31 -05003104 }
James Smart6fb120a2009-05-22 14:52:59 -04003105
3106 return;
James Smart92d7f7b2007-06-17 19:56:38 -05003107out:
3108 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
James Smarte8b62012007-08-02 11:10:09 -04003109 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
3110 "0263 Discovery Mailbox error: state: 0x%x : %p %p\n",
3111 vport->port_state, sparam_mbox, cfglink_mbox);
James Smart92d7f7b2007-06-17 19:56:38 -05003112 lpfc_issue_clear_la(phba, vport);
3113 return;
dea31012005-04-17 16:05:31 -05003114}
3115
3116static void
James Smart84774a42008-08-24 21:50:06 -04003117lpfc_enable_la(struct lpfc_hba *phba)
James Smart2e0fef82007-06-17 19:56:36 -05003118{
dea31012005-04-17 16:05:31 -05003119 uint32_t control;
3120 struct lpfc_sli *psli = &phba->sli;
James Smart2e0fef82007-06-17 19:56:36 -05003121 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05003122 psli->sli_flag |= LPFC_PROCESS_LA;
James Smart3772a992009-05-22 14:50:54 -04003123 if (phba->sli_rev <= LPFC_SLI_REV3) {
3124 control = readl(phba->HCregaddr);
3125 control |= HC_LAINT_ENA;
3126 writel(control, phba->HCregaddr);
3127 readl(phba->HCregaddr); /* flush */
3128 }
James Smart2e0fef82007-06-17 19:56:36 -05003129 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05003130}
3131
James Smart84774a42008-08-24 21:50:06 -04003132static void
3133lpfc_mbx_issue_link_down(struct lpfc_hba *phba)
3134{
3135 lpfc_linkdown(phba);
3136 lpfc_enable_la(phba);
James Smart6fb120a2009-05-22 14:52:59 -04003137 lpfc_unregister_unused_fcf(phba);
James Smart84774a42008-08-24 21:50:06 -04003138 /* turn on Link Attention interrupts - no CLEAR_LA needed */
3139}
3140
3141
dea31012005-04-17 16:05:31 -05003142/*
James Smart76a95d72010-11-20 23:11:48 -05003143 * This routine handles processing a READ_TOPOLOGY mailbox
dea31012005-04-17 16:05:31 -05003144 * command upon completion. It is setup in the LPFC_MBOXQ
3145 * as the completion routine when the command is
3146 * handed off to the SLI layer.
3147 */
3148void
James Smart76a95d72010-11-20 23:11:48 -05003149lpfc_mbx_cmpl_read_topology(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
dea31012005-04-17 16:05:31 -05003150{
James Smart2e0fef82007-06-17 19:56:36 -05003151 struct lpfc_vport *vport = pmb->vport;
3152 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart76a95d72010-11-20 23:11:48 -05003153 struct lpfc_mbx_read_top *la;
James Smart04c68492009-05-22 14:52:52 -04003154 MAILBOX_t *mb = &pmb->u.mb;
dea31012005-04-17 16:05:31 -05003155 struct lpfc_dmabuf *mp = (struct lpfc_dmabuf *) (pmb->context1);
3156
James Smart0d2b6b82008-06-14 22:52:47 -04003157 /* Unblock ELS traffic */
3158 phba->sli.ring[LPFC_ELS_RING].flag &= ~LPFC_STOP_IOCB_EVENT;
dea31012005-04-17 16:05:31 -05003159 /* Check for error */
3160 if (mb->mbxStatus) {
James Smarted957682007-06-17 19:56:37 -05003161 lpfc_printf_log(phba, KERN_INFO, LOG_LINK_EVENT,
James Smarte8b62012007-08-02 11:10:09 -04003162 "1307 READ_LA mbox error x%x state x%x\n",
3163 mb->mbxStatus, vport->port_state);
dea31012005-04-17 16:05:31 -05003164 lpfc_mbx_issue_link_down(phba);
James Smart2e0fef82007-06-17 19:56:36 -05003165 phba->link_state = LPFC_HBA_ERROR;
James Smart76a95d72010-11-20 23:11:48 -05003166 goto lpfc_mbx_cmpl_read_topology_free_mbuf;
dea31012005-04-17 16:05:31 -05003167 }
3168
James Smart76a95d72010-11-20 23:11:48 -05003169 la = (struct lpfc_mbx_read_top *) &pmb->u.mb.un.varReadTop;
dea31012005-04-17 16:05:31 -05003170
3171 memcpy(&phba->alpa_map[0], mp->virt, 128);
3172
James Smart2e0fef82007-06-17 19:56:36 -05003173 spin_lock_irq(shost->host_lock);
James Smart76a95d72010-11-20 23:11:48 -05003174 if (bf_get(lpfc_mbx_read_top_pb, la))
James Smart2e0fef82007-06-17 19:56:36 -05003175 vport->fc_flag |= FC_BYPASSED_MODE;
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003176 else
James Smart2e0fef82007-06-17 19:56:36 -05003177 vport->fc_flag &= ~FC_BYPASSED_MODE;
3178 spin_unlock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003179
James Smart0c287582009-06-10 17:22:56 -04003180 if ((phba->fc_eventTag < la->eventTag) ||
James Smart92d7f7b2007-06-17 19:56:38 -05003181 (phba->fc_eventTag == la->eventTag)) {
dea31012005-04-17 16:05:31 -05003182 phba->fc_stat.LinkMultiEvent++;
James Smart76a95d72010-11-20 23:11:48 -05003183 if (bf_get(lpfc_mbx_read_top_att_type, la) == LPFC_ATT_LINK_UP)
dea31012005-04-17 16:05:31 -05003184 if (phba->fc_eventTag != 0)
3185 lpfc_linkdown(phba);
James Smart92d7f7b2007-06-17 19:56:38 -05003186 }
dea31012005-04-17 16:05:31 -05003187
3188 phba->fc_eventTag = la->eventTag;
James Smart72100cc2010-02-12 14:43:01 -05003189 spin_lock_irq(&phba->hbalock);
James Smart76a95d72010-11-20 23:11:48 -05003190 if (bf_get(lpfc_mbx_read_top_mm, la))
James Smart84774a42008-08-24 21:50:06 -04003191 phba->sli.sli_flag |= LPFC_MENLO_MAINT;
3192 else
3193 phba->sli.sli_flag &= ~LPFC_MENLO_MAINT;
James Smart72100cc2010-02-12 14:43:01 -05003194 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05003195
James Smart4d9ab992009-10-02 15:16:39 -04003196 phba->link_events++;
James Smart76a95d72010-11-20 23:11:48 -05003197 if ((bf_get(lpfc_mbx_read_top_att_type, la) == LPFC_ATT_LINK_UP) &&
3198 (!bf_get(lpfc_mbx_read_top_mm, la))) {
dea31012005-04-17 16:05:31 -05003199 phba->fc_stat.LinkUp++;
James Smart2e0fef82007-06-17 19:56:36 -05003200 if (phba->link_flag & LS_LOOPBACK_MODE) {
James Smart3163f722008-02-08 18:50:25 -05003201 lpfc_printf_log(phba, KERN_ERR, LOG_LINK_EVENT,
James Smarte8b62012007-08-02 11:10:09 -04003202 "1306 Link Up Event in loop back mode "
3203 "x%x received Data: x%x x%x x%x x%x\n",
3204 la->eventTag, phba->fc_eventTag,
James Smart76a95d72010-11-20 23:11:48 -05003205 bf_get(lpfc_mbx_read_top_alpa_granted,
3206 la),
3207 bf_get(lpfc_mbx_read_top_link_spd, la),
James Smarte8b62012007-08-02 11:10:09 -04003208 phba->alpa_map[0]);
James Smart5b8bd0c2007-04-25 09:52:49 -04003209 } else {
3210 lpfc_printf_log(phba, KERN_ERR, LOG_LINK_EVENT,
James Smarte8b62012007-08-02 11:10:09 -04003211 "1303 Link Up Event x%x received "
James Smart84774a42008-08-24 21:50:06 -04003212 "Data: x%x x%x x%x x%x x%x x%x %d\n",
James Smarte8b62012007-08-02 11:10:09 -04003213 la->eventTag, phba->fc_eventTag,
James Smart76a95d72010-11-20 23:11:48 -05003214 bf_get(lpfc_mbx_read_top_alpa_granted,
3215 la),
3216 bf_get(lpfc_mbx_read_top_link_spd, la),
James Smart84774a42008-08-24 21:50:06 -04003217 phba->alpa_map[0],
James Smart76a95d72010-11-20 23:11:48 -05003218 bf_get(lpfc_mbx_read_top_mm, la),
3219 bf_get(lpfc_mbx_read_top_fa, la),
James Smart84774a42008-08-24 21:50:06 -04003220 phba->wait_4_mlo_maint_flg);
James Smart5b8bd0c2007-04-25 09:52:49 -04003221 }
James Smart92d7f7b2007-06-17 19:56:38 -05003222 lpfc_mbx_process_link_up(phba, la);
James Smart76a95d72010-11-20 23:11:48 -05003223 } else if (bf_get(lpfc_mbx_read_top_att_type, la) ==
3224 LPFC_ATT_LINK_DOWN) {
dea31012005-04-17 16:05:31 -05003225 phba->fc_stat.LinkDown++;
James Smart3163f722008-02-08 18:50:25 -05003226 if (phba->link_flag & LS_LOOPBACK_MODE) {
3227 lpfc_printf_log(phba, KERN_ERR, LOG_LINK_EVENT,
3228 "1308 Link Down Event in loop back mode "
3229 "x%x received "
3230 "Data: x%x x%x x%x\n",
3231 la->eventTag, phba->fc_eventTag,
3232 phba->pport->port_state, vport->fc_flag);
3233 }
3234 else {
3235 lpfc_printf_log(phba, KERN_ERR, LOG_LINK_EVENT,
James Smarte8b62012007-08-02 11:10:09 -04003236 "1305 Link Down Event x%x received "
James Smart84774a42008-08-24 21:50:06 -04003237 "Data: x%x x%x x%x x%x x%x\n",
3238 la->eventTag, phba->fc_eventTag,
3239 phba->pport->port_state, vport->fc_flag,
James Smart76a95d72010-11-20 23:11:48 -05003240 bf_get(lpfc_mbx_read_top_mm, la),
3241 bf_get(lpfc_mbx_read_top_fa, la));
James Smart84774a42008-08-24 21:50:06 -04003242 }
3243 lpfc_mbx_issue_link_down(phba);
3244 }
James Smart76a95d72010-11-20 23:11:48 -05003245 if ((bf_get(lpfc_mbx_read_top_mm, la)) &&
3246 (bf_get(lpfc_mbx_read_top_att_type, la) == LPFC_ATT_LINK_UP)) {
James Smart84774a42008-08-24 21:50:06 -04003247 if (phba->link_state != LPFC_LINK_DOWN) {
3248 phba->fc_stat.LinkDown++;
3249 lpfc_printf_log(phba, KERN_ERR, LOG_LINK_EVENT,
3250 "1312 Link Down Event x%x received "
dea31012005-04-17 16:05:31 -05003251 "Data: x%x x%x x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04003252 la->eventTag, phba->fc_eventTag,
James Smart2e0fef82007-06-17 19:56:36 -05003253 phba->pport->port_state, vport->fc_flag);
James Smart84774a42008-08-24 21:50:06 -04003254 lpfc_mbx_issue_link_down(phba);
3255 } else
3256 lpfc_enable_la(phba);
3257
3258 lpfc_printf_log(phba, KERN_ERR, LOG_LINK_EVENT,
3259 "1310 Menlo Maint Mode Link up Event x%x rcvd "
3260 "Data: x%x x%x x%x\n",
3261 la->eventTag, phba->fc_eventTag,
3262 phba->pport->port_state, vport->fc_flag);
3263 /*
3264 * The cmnd that triggered this will be waiting for this
3265 * signal.
3266 */
3267 /* WAKEUP for MENLO_SET_MODE or MENLO_RESET command. */
3268 if (phba->wait_4_mlo_maint_flg) {
3269 phba->wait_4_mlo_maint_flg = 0;
3270 wake_up_interruptible(&phba->wait_4_mlo_m_q);
James Smart3163f722008-02-08 18:50:25 -05003271 }
James Smart84774a42008-08-24 21:50:06 -04003272 }
3273
James Smart76a95d72010-11-20 23:11:48 -05003274 if (bf_get(lpfc_mbx_read_top_fa, la)) {
3275 if (bf_get(lpfc_mbx_read_top_mm, la))
James Smart84774a42008-08-24 21:50:06 -04003276 lpfc_issue_clear_la(phba, vport);
3277 lpfc_printf_log(phba, KERN_INFO, LOG_LINK_EVENT,
James Smart76a95d72010-11-20 23:11:48 -05003278 "1311 fa %d\n",
3279 bf_get(lpfc_mbx_read_top_fa, la));
dea31012005-04-17 16:05:31 -05003280 }
3281
James Smart76a95d72010-11-20 23:11:48 -05003282lpfc_mbx_cmpl_read_topology_free_mbuf:
dea31012005-04-17 16:05:31 -05003283 lpfc_mbuf_free(phba, mp->virt, mp->phys);
3284 kfree(mp);
3285 mempool_free(pmb, phba->mbox_mem_pool);
3286 return;
3287}
3288
3289/*
3290 * This routine handles processing a REG_LOGIN mailbox
3291 * command upon completion. It is setup in the LPFC_MBOXQ
3292 * as the completion routine when the command is
3293 * handed off to the SLI layer.
3294 */
3295void
James Smart2e0fef82007-06-17 19:56:36 -05003296lpfc_mbx_cmpl_reg_login(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
dea31012005-04-17 16:05:31 -05003297{
James Smart2e0fef82007-06-17 19:56:36 -05003298 struct lpfc_vport *vport = pmb->vport;
James Smart92d7f7b2007-06-17 19:56:38 -05003299 struct lpfc_dmabuf *mp = (struct lpfc_dmabuf *) (pmb->context1);
James Smart2e0fef82007-06-17 19:56:36 -05003300 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) pmb->context2;
James Smartffc95492010-06-07 15:23:17 -04003301 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05003302
dea31012005-04-17 16:05:31 -05003303 pmb->context1 = NULL;
James Smartd439d282010-09-29 11:18:45 -04003304 pmb->context2 = NULL;
dea31012005-04-17 16:05:31 -05003305
James Smartffc95492010-06-07 15:23:17 -04003306 if (ndlp->nlp_flag & NLP_REG_LOGIN_SEND)
3307 ndlp->nlp_flag &= ~NLP_REG_LOGIN_SEND;
3308
James Smart40426292010-12-15 17:58:10 -05003309 if (ndlp->nlp_flag & NLP_IGNR_REG_CMPL ||
3310 ndlp->nlp_state != NLP_STE_REG_LOGIN_ISSUE) {
James Smartffc95492010-06-07 15:23:17 -04003311 /* We rcvd a rscn after issuing this
3312 * mbox reg login, we may have cycled
3313 * back through the state and be
3314 * back at reg login state so this
3315 * mbox needs to be ignored becase
3316 * there is another reg login in
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003317 * process.
James Smartffc95492010-06-07 15:23:17 -04003318 */
3319 spin_lock_irq(shost->host_lock);
3320 ndlp->nlp_flag &= ~NLP_IGNR_REG_CMPL;
3321 spin_unlock_irq(shost->host_lock);
James Smartffc95492010-06-07 15:23:17 -04003322 } else
3323 /* Good status, call state machine */
3324 lpfc_disc_state_machine(vport, ndlp, pmb,
3325 NLP_EVT_CMPL_REG_LOGIN);
3326
dea31012005-04-17 16:05:31 -05003327 lpfc_mbuf_free(phba, mp->virt, mp->phys);
3328 kfree(mp);
James Smart2e0fef82007-06-17 19:56:36 -05003329 mempool_free(pmb, phba->mbox_mem_pool);
James Smartfa4066b2008-01-11 01:53:27 -05003330 /* decrement the node reference count held for this callback
3331 * function.
3332 */
James Smart329f9bc2007-04-25 09:53:01 -04003333 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05003334
3335 return;
3336}
3337
James Smart92d7f7b2007-06-17 19:56:38 -05003338static void
3339lpfc_mbx_cmpl_unreg_vpi(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
3340{
James Smart04c68492009-05-22 14:52:52 -04003341 MAILBOX_t *mb = &pmb->u.mb;
James Smart92d7f7b2007-06-17 19:56:38 -05003342 struct lpfc_vport *vport = pmb->vport;
3343 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
3344
3345 switch (mb->mbxStatus) {
3346 case 0x0011:
3347 case 0x0020:
James Smarte8b62012007-08-02 11:10:09 -04003348 lpfc_printf_vlog(vport, KERN_INFO, LOG_NODE,
3349 "0911 cmpl_unreg_vpi, mb status = 0x%x\n",
3350 mb->mbxStatus);
James Smart92d7f7b2007-06-17 19:56:38 -05003351 break;
James Smart78730cf2010-04-06 15:06:30 -04003352 /* If VPI is busy, reset the HBA */
3353 case 0x9700:
3354 lpfc_printf_vlog(vport, KERN_ERR, LOG_NODE,
3355 "2798 Unreg_vpi failed vpi 0x%x, mb status = 0x%x\n",
3356 vport->vpi, mb->mbxStatus);
3357 if (!(phba->pport->load_flag & FC_UNLOADING))
3358 lpfc_workq_post_event(phba, NULL, NULL,
3359 LPFC_EVT_RESET_HBA);
James Smart92d7f7b2007-06-17 19:56:38 -05003360 }
James Smart72100cc2010-02-12 14:43:01 -05003361 spin_lock_irq(shost->host_lock);
James Smartc8685952009-11-18 15:39:16 -05003362 vport->vpi_state &= ~LPFC_VPI_REGISTERED;
James Smart19878072009-12-21 17:02:00 -05003363 vport->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
James Smart72100cc2010-02-12 14:43:01 -05003364 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05003365 vport->unreg_vpi_cmpl = VPORT_OK;
3366 mempool_free(pmb, phba->mbox_mem_pool);
James Smart1151e3e2011-02-16 12:39:35 -05003367 lpfc_cleanup_vports_rrqs(vport, NULL);
James Smart92d7f7b2007-06-17 19:56:38 -05003368 /*
3369 * This shost reference might have been taken at the beginning of
3370 * lpfc_vport_delete()
3371 */
James Smart1c6f4ef52009-11-18 15:40:49 -05003372 if ((vport->load_flag & FC_UNLOADING) && (vport != phba->pport))
James Smart92d7f7b2007-06-17 19:56:38 -05003373 scsi_host_put(shost);
3374}
3375
James Smartd7c255b2008-08-24 21:50:00 -04003376int
James Smart92d7f7b2007-06-17 19:56:38 -05003377lpfc_mbx_unreg_vpi(struct lpfc_vport *vport)
3378{
3379 struct lpfc_hba *phba = vport->phba;
3380 LPFC_MBOXQ_t *mbox;
3381 int rc;
3382
3383 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
3384 if (!mbox)
James Smartd7c255b2008-08-24 21:50:00 -04003385 return 1;
James Smart92d7f7b2007-06-17 19:56:38 -05003386
3387 lpfc_unreg_vpi(phba, vport->vpi, mbox);
3388 mbox->vport = vport;
3389 mbox->mbox_cmpl = lpfc_mbx_cmpl_unreg_vpi;
James Smart0b727fe2007-10-27 13:37:25 -04003390 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
James Smart92d7f7b2007-06-17 19:56:38 -05003391 if (rc == MBX_NOT_FINISHED) {
James Smarte8b62012007-08-02 11:10:09 -04003392 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX | LOG_VPORT,
3393 "1800 Could not issue unreg_vpi\n");
James Smart92d7f7b2007-06-17 19:56:38 -05003394 mempool_free(mbox, phba->mbox_mem_pool);
3395 vport->unreg_vpi_cmpl = VPORT_ERROR;
James Smartd7c255b2008-08-24 21:50:00 -04003396 return rc;
James Smart92d7f7b2007-06-17 19:56:38 -05003397 }
James Smartd7c255b2008-08-24 21:50:00 -04003398 return 0;
James Smart92d7f7b2007-06-17 19:56:38 -05003399}
3400
3401static void
3402lpfc_mbx_cmpl_reg_vpi(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
3403{
3404 struct lpfc_vport *vport = pmb->vport;
3405 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart04c68492009-05-22 14:52:52 -04003406 MAILBOX_t *mb = &pmb->u.mb;
James Smart92d7f7b2007-06-17 19:56:38 -05003407
3408 switch (mb->mbxStatus) {
3409 case 0x0011:
3410 case 0x9601:
3411 case 0x9602:
James Smarte8b62012007-08-02 11:10:09 -04003412 lpfc_printf_vlog(vport, KERN_INFO, LOG_NODE,
3413 "0912 cmpl_reg_vpi, mb status = 0x%x\n",
3414 mb->mbxStatus);
James Smart92d7f7b2007-06-17 19:56:38 -05003415 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
3416 spin_lock_irq(shost->host_lock);
3417 vport->fc_flag &= ~(FC_FABRIC | FC_PUBLIC_LOOP);
3418 spin_unlock_irq(shost->host_lock);
3419 vport->fc_myDID = 0;
3420 goto out;
3421 }
James Smart92d7f7b2007-06-17 19:56:38 -05003422
James Smart72100cc2010-02-12 14:43:01 -05003423 spin_lock_irq(shost->host_lock);
James Smartc8685952009-11-18 15:39:16 -05003424 vport->vpi_state |= LPFC_VPI_REGISTERED;
James Smart695a8142010-01-26 23:08:03 -05003425 vport->fc_flag &= ~FC_VPORT_NEEDS_REG_VPI;
James Smart72100cc2010-02-12 14:43:01 -05003426 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05003427 vport->num_disc_nodes = 0;
3428 /* go thru NPR list and issue ELS PLOGIs */
3429 if (vport->fc_npr_cnt)
3430 lpfc_els_disc_plogi(vport);
3431
3432 if (!vport->num_disc_nodes) {
3433 spin_lock_irq(shost->host_lock);
3434 vport->fc_flag &= ~FC_NDISC_ACTIVE;
3435 spin_unlock_irq(shost->host_lock);
3436 lpfc_can_disctmo(vport);
3437 }
3438 vport->port_state = LPFC_VPORT_READY;
3439
3440out:
3441 mempool_free(pmb, phba->mbox_mem_pool);
3442 return;
3443}
3444
James Smart21e9a0a2009-05-22 14:53:21 -04003445/**
3446 * lpfc_create_static_vport - Read HBA config region to create static vports.
3447 * @phba: pointer to lpfc hba data structure.
3448 *
3449 * This routine issue a DUMP mailbox command for config region 22 to get
3450 * the list of static vports to be created. The function create vports
3451 * based on the information returned from the HBA.
3452 **/
3453void
3454lpfc_create_static_vport(struct lpfc_hba *phba)
3455{
3456 LPFC_MBOXQ_t *pmb = NULL;
3457 MAILBOX_t *mb;
3458 struct static_vport_info *vport_info;
James Smart1c6834a2009-07-19 10:01:26 -04003459 int rc = 0, i;
James Smart21e9a0a2009-05-22 14:53:21 -04003460 struct fc_vport_identifiers vport_id;
3461 struct fc_vport *new_fc_vport;
3462 struct Scsi_Host *shost;
3463 struct lpfc_vport *vport;
3464 uint16_t offset = 0;
3465 uint8_t *vport_buff;
James Smart1c6834a2009-07-19 10:01:26 -04003466 struct lpfc_dmabuf *mp;
3467 uint32_t byte_count = 0;
James Smart21e9a0a2009-05-22 14:53:21 -04003468
3469 pmb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
3470 if (!pmb) {
3471 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3472 "0542 lpfc_create_static_vport failed to"
3473 " allocate mailbox memory\n");
3474 return;
3475 }
3476
3477 mb = &pmb->u.mb;
3478
3479 vport_info = kzalloc(sizeof(struct static_vport_info), GFP_KERNEL);
3480 if (!vport_info) {
3481 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3482 "0543 lpfc_create_static_vport failed to"
3483 " allocate vport_info\n");
3484 mempool_free(pmb, phba->mbox_mem_pool);
3485 return;
3486 }
3487
3488 vport_buff = (uint8_t *) vport_info;
3489 do {
James Smart1c6834a2009-07-19 10:01:26 -04003490 if (lpfc_dump_static_vport(phba, pmb, offset))
3491 goto out;
3492
James Smart21e9a0a2009-05-22 14:53:21 -04003493 pmb->vport = phba->pport;
3494 rc = lpfc_sli_issue_mbox_wait(phba, pmb, LPFC_MBOX_TMO);
3495
3496 if ((rc != MBX_SUCCESS) || mb->mbxStatus) {
3497 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
3498 "0544 lpfc_create_static_vport failed to"
3499 " issue dump mailbox command ret 0x%x "
3500 "status 0x%x\n",
3501 rc, mb->mbxStatus);
3502 goto out;
3503 }
3504
James Smart1c6834a2009-07-19 10:01:26 -04003505 if (phba->sli_rev == LPFC_SLI_REV4) {
3506 byte_count = pmb->u.mqe.un.mb_words[5];
3507 mp = (struct lpfc_dmabuf *) pmb->context2;
3508 if (byte_count > sizeof(struct static_vport_info) -
3509 offset)
3510 byte_count = sizeof(struct static_vport_info)
3511 - offset;
3512 memcpy(vport_buff + offset, mp->virt, byte_count);
3513 offset += byte_count;
3514 } else {
3515 if (mb->un.varDmp.word_cnt >
3516 sizeof(struct static_vport_info) - offset)
3517 mb->un.varDmp.word_cnt =
3518 sizeof(struct static_vport_info)
3519 - offset;
3520 byte_count = mb->un.varDmp.word_cnt;
3521 lpfc_sli_pcimem_bcopy(((uint8_t *)mb) + DMP_RSP_OFFSET,
3522 vport_buff + offset,
3523 byte_count);
James Smart21e9a0a2009-05-22 14:53:21 -04003524
James Smart1c6834a2009-07-19 10:01:26 -04003525 offset += byte_count;
3526 }
James Smart21e9a0a2009-05-22 14:53:21 -04003527
James Smart1c6834a2009-07-19 10:01:26 -04003528 } while (byte_count &&
James Smart21e9a0a2009-05-22 14:53:21 -04003529 offset < sizeof(struct static_vport_info));
3530
3531
3532 if ((le32_to_cpu(vport_info->signature) != VPORT_INFO_SIG) ||
3533 ((le32_to_cpu(vport_info->rev) & VPORT_INFO_REV_MASK)
3534 != VPORT_INFO_REV)) {
3535 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3536 "0545 lpfc_create_static_vport bad"
3537 " information header 0x%x 0x%x\n",
3538 le32_to_cpu(vport_info->signature),
3539 le32_to_cpu(vport_info->rev) & VPORT_INFO_REV_MASK);
3540
3541 goto out;
3542 }
3543
3544 shost = lpfc_shost_from_vport(phba->pport);
3545
3546 for (i = 0; i < MAX_STATIC_VPORT_COUNT; i++) {
3547 memset(&vport_id, 0, sizeof(vport_id));
3548 vport_id.port_name = wwn_to_u64(vport_info->vport_list[i].wwpn);
3549 vport_id.node_name = wwn_to_u64(vport_info->vport_list[i].wwnn);
3550 if (!vport_id.port_name || !vport_id.node_name)
3551 continue;
3552
3553 vport_id.roles = FC_PORT_ROLE_FCP_INITIATOR;
3554 vport_id.vport_type = FC_PORTTYPE_NPIV;
3555 vport_id.disable = false;
3556 new_fc_vport = fc_vport_create(shost, 0, &vport_id);
3557
3558 if (!new_fc_vport) {
3559 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
3560 "0546 lpfc_create_static_vport failed to"
James Smarte4e74272009-07-19 10:01:38 -04003561 " create vport\n");
James Smart21e9a0a2009-05-22 14:53:21 -04003562 continue;
3563 }
3564
3565 vport = *(struct lpfc_vport **)new_fc_vport->dd_data;
3566 vport->vport_flag |= STATIC_VPORT;
3567 }
3568
3569out:
James Smart21e9a0a2009-05-22 14:53:21 -04003570 kfree(vport_info);
James Smart1c6834a2009-07-19 10:01:26 -04003571 if (rc != MBX_TIMEOUT) {
3572 if (pmb->context2) {
3573 mp = (struct lpfc_dmabuf *) pmb->context2;
3574 lpfc_mbuf_free(phba, mp->virt, mp->phys);
3575 kfree(mp);
3576 }
James Smart21e9a0a2009-05-22 14:53:21 -04003577 mempool_free(pmb, phba->mbox_mem_pool);
James Smart1c6834a2009-07-19 10:01:26 -04003578 }
James Smart21e9a0a2009-05-22 14:53:21 -04003579
3580 return;
3581}
3582
dea31012005-04-17 16:05:31 -05003583/*
3584 * This routine handles processing a Fabric REG_LOGIN mailbox
3585 * command upon completion. It is setup in the LPFC_MBOXQ
3586 * as the completion routine when the command is
3587 * handed off to the SLI layer.
3588 */
3589void
James Smart2e0fef82007-06-17 19:56:36 -05003590lpfc_mbx_cmpl_fabric_reg_login(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
dea31012005-04-17 16:05:31 -05003591{
James Smart92d7f7b2007-06-17 19:56:38 -05003592 struct lpfc_vport *vport = pmb->vport;
James Smart21e9a0a2009-05-22 14:53:21 -04003593 MAILBOX_t *mb = &pmb->u.mb;
James Smart2e0fef82007-06-17 19:56:36 -05003594 struct lpfc_dmabuf *mp = (struct lpfc_dmabuf *) (pmb->context1);
James Smart92d7f7b2007-06-17 19:56:38 -05003595 struct lpfc_nodelist *ndlp;
dea31012005-04-17 16:05:31 -05003596
James Smart549e55c2007-08-02 11:09:51 -04003597 ndlp = (struct lpfc_nodelist *) pmb->context2;
James Smart329f9bc2007-04-25 09:53:01 -04003598 pmb->context1 = NULL;
3599 pmb->context2 = NULL;
James Smartd439d282010-09-29 11:18:45 -04003600
dea31012005-04-17 16:05:31 -05003601 if (mb->mbxStatus) {
James Smart21e9a0a2009-05-22 14:53:21 -04003602 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
3603 "0258 Register Fabric login error: 0x%x\n",
3604 mb->mbxStatus);
dea31012005-04-17 16:05:31 -05003605 lpfc_mbuf_free(phba, mp->virt, mp->phys);
3606 kfree(mp);
James Smart329f9bc2007-04-25 09:53:01 -04003607 mempool_free(pmb, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -05003608
James Smart76a95d72010-11-20 23:11:48 -05003609 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
James Smart92d7f7b2007-06-17 19:56:38 -05003610 /* FLOGI failed, use loop map to make discovery list */
3611 lpfc_disc_list_loopmap(vport);
dea31012005-04-17 16:05:31 -05003612
James Smart92d7f7b2007-06-17 19:56:38 -05003613 /* Start discovery */
3614 lpfc_disc_start(vport);
James Smarte47c9092008-02-08 18:49:26 -05003615 /* Decrement the reference count to ndlp after the
3616 * reference to the ndlp are done.
3617 */
3618 lpfc_nlp_put(ndlp);
James Smart92d7f7b2007-06-17 19:56:38 -05003619 return;
3620 }
3621
3622 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
James Smarte47c9092008-02-08 18:49:26 -05003623 /* Decrement the reference count to ndlp after the reference
3624 * to the ndlp are done.
3625 */
3626 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05003627 return;
3628 }
3629
James Smart6d368e52011-05-24 11:44:12 -04003630 if (phba->sli_rev < LPFC_SLI_REV4)
3631 ndlp->nlp_rpi = mb->un.varWords[0];
James Smart40426292010-12-15 17:58:10 -05003632 ndlp->nlp_flag |= NLP_RPI_REGISTERED;
dea31012005-04-17 16:05:31 -05003633 ndlp->nlp_type |= NLP_FABRIC;
James Smart2e0fef82007-06-17 19:56:36 -05003634 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
dea31012005-04-17 16:05:31 -05003635
James Smart2e0fef82007-06-17 19:56:36 -05003636 if (vport->port_state == LPFC_FABRIC_CFG_LINK) {
James Smart4b40c592010-03-15 11:25:44 -04003637 /* when physical port receive logo donot start
3638 * vport discovery */
3639 if (!(vport->fc_flag & FC_LOGO_RCVD_DID_CHNG))
3640 lpfc_start_fdiscs(phba);
3641 else
3642 vport->fc_flag &= ~FC_LOGO_RCVD_DID_CHNG ;
James Smart92d7f7b2007-06-17 19:56:38 -05003643 lpfc_do_scr_ns_plogi(phba, vport);
dea31012005-04-17 16:05:31 -05003644 }
3645
3646 lpfc_mbuf_free(phba, mp->virt, mp->phys);
3647 kfree(mp);
James Smart329f9bc2007-04-25 09:53:01 -04003648 mempool_free(pmb, phba->mbox_mem_pool);
James Smarte47c9092008-02-08 18:49:26 -05003649
3650 /* Drop the reference count from the mbox at the end after
3651 * all the current reference to the ndlp have been done.
3652 */
3653 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05003654 return;
3655}
3656
3657/*
3658 * This routine handles processing a NameServer REG_LOGIN mailbox
3659 * command upon completion. It is setup in the LPFC_MBOXQ
3660 * as the completion routine when the command is
3661 * handed off to the SLI layer.
3662 */
3663void
James Smart2e0fef82007-06-17 19:56:36 -05003664lpfc_mbx_cmpl_ns_reg_login(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
dea31012005-04-17 16:05:31 -05003665{
James Smart21e9a0a2009-05-22 14:53:21 -04003666 MAILBOX_t *mb = &pmb->u.mb;
James Smart2e0fef82007-06-17 19:56:36 -05003667 struct lpfc_dmabuf *mp = (struct lpfc_dmabuf *) (pmb->context1);
3668 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) pmb->context2;
3669 struct lpfc_vport *vport = pmb->vport;
dea31012005-04-17 16:05:31 -05003670
James Smartd439d282010-09-29 11:18:45 -04003671 pmb->context1 = NULL;
3672 pmb->context2 = NULL;
3673
dea31012005-04-17 16:05:31 -05003674 if (mb->mbxStatus) {
James Smart92d7f7b2007-06-17 19:56:38 -05003675out:
James Smart21e9a0a2009-05-22 14:53:21 -04003676 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
3677 "0260 Register NameServer error: 0x%x\n",
3678 mb->mbxStatus);
James Smartfa4066b2008-01-11 01:53:27 -05003679 /* decrement the node reference count held for this
3680 * callback function.
3681 */
James Smart329f9bc2007-04-25 09:53:01 -04003682 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05003683 lpfc_mbuf_free(phba, mp->virt, mp->phys);
3684 kfree(mp);
James Smartde0c5b32007-04-25 09:52:27 -04003685 mempool_free(pmb, phba->mbox_mem_pool);
James Smart87af33f2007-10-27 13:37:43 -04003686
3687 /* If no other thread is using the ndlp, free it */
3688 lpfc_nlp_not_used(ndlp);
dea31012005-04-17 16:05:31 -05003689
James Smart76a95d72010-11-20 23:11:48 -05003690 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
James Smart92d7f7b2007-06-17 19:56:38 -05003691 /*
3692 * RegLogin failed, use loop map to make discovery
3693 * list
3694 */
3695 lpfc_disc_list_loopmap(vport);
dea31012005-04-17 16:05:31 -05003696
James Smart92d7f7b2007-06-17 19:56:38 -05003697 /* Start discovery */
3698 lpfc_disc_start(vport);
3699 return;
3700 }
3701 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
dea31012005-04-17 16:05:31 -05003702 return;
3703 }
3704
James Smart6d368e52011-05-24 11:44:12 -04003705 if (phba->sli_rev < LPFC_SLI_REV4)
3706 ndlp->nlp_rpi = mb->un.varWords[0];
James Smart40426292010-12-15 17:58:10 -05003707 ndlp->nlp_flag |= NLP_RPI_REGISTERED;
dea31012005-04-17 16:05:31 -05003708 ndlp->nlp_type |= NLP_FABRIC;
James Smart2e0fef82007-06-17 19:56:36 -05003709 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
dea31012005-04-17 16:05:31 -05003710
James Smart2e0fef82007-06-17 19:56:36 -05003711 if (vport->port_state < LPFC_VPORT_READY) {
3712 /* Link up discovery requires Fabric registration. */
James Smart92d7f7b2007-06-17 19:56:38 -05003713 lpfc_ns_cmd(vport, SLI_CTNS_RFF_ID, 0, 0); /* Do this first! */
3714 lpfc_ns_cmd(vport, SLI_CTNS_RNN_ID, 0, 0);
3715 lpfc_ns_cmd(vport, SLI_CTNS_RSNN_NN, 0, 0);
3716 lpfc_ns_cmd(vport, SLI_CTNS_RSPN_ID, 0, 0);
3717 lpfc_ns_cmd(vport, SLI_CTNS_RFT_ID, 0, 0);
3718
3719 /* Issue SCR just before NameServer GID_FT Query */
3720 lpfc_issue_els_scr(vport, SCR_DID, 0);
dea31012005-04-17 16:05:31 -05003721 }
3722
James Smart2e0fef82007-06-17 19:56:36 -05003723 vport->fc_ns_retry = 0;
dea31012005-04-17 16:05:31 -05003724 /* Good status, issue CT Request to NameServer */
James Smart92d7f7b2007-06-17 19:56:38 -05003725 if (lpfc_ns_cmd(vport, SLI_CTNS_GID_FT, 0, 0)) {
dea31012005-04-17 16:05:31 -05003726 /* Cannot issue NameServer Query, so finish up discovery */
James Smart92d7f7b2007-06-17 19:56:38 -05003727 goto out;
dea31012005-04-17 16:05:31 -05003728 }
3729
James Smartfa4066b2008-01-11 01:53:27 -05003730 /* decrement the node reference count held for this
3731 * callback function.
3732 */
James Smart329f9bc2007-04-25 09:53:01 -04003733 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05003734 lpfc_mbuf_free(phba, mp->virt, mp->phys);
3735 kfree(mp);
James Smart2e0fef82007-06-17 19:56:36 -05003736 mempool_free(pmb, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -05003737
3738 return;
3739}
3740
3741static void
James Smart2e0fef82007-06-17 19:56:36 -05003742lpfc_register_remote_port(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05003743{
James Smart2e0fef82007-06-17 19:56:36 -05003744 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
3745 struct fc_rport *rport;
dea31012005-04-17 16:05:31 -05003746 struct lpfc_rport_data *rdata;
3747 struct fc_rport_identifiers rport_ids;
James Smart2e0fef82007-06-17 19:56:36 -05003748 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05003749
3750 /* Remote port has reappeared. Re-register w/ FC transport */
Andrew Morton68ce1eb2005-09-21 09:46:54 -07003751 rport_ids.node_name = wwn_to_u64(ndlp->nlp_nodename.u.wwn);
3752 rport_ids.port_name = wwn_to_u64(ndlp->nlp_portname.u.wwn);
dea31012005-04-17 16:05:31 -05003753 rport_ids.port_id = ndlp->nlp_DID;
3754 rport_ids.roles = FC_RPORT_ROLE_UNKNOWN;
dea31012005-04-17 16:05:31 -05003755
James Smart329f9bc2007-04-25 09:53:01 -04003756 /*
3757 * We leave our node pointer in rport->dd_data when we unregister a
3758 * FCP target port. But fc_remote_port_add zeros the space to which
3759 * rport->dd_data points. So, if we're reusing a previously
3760 * registered port, drop the reference that we took the last time we
3761 * registered the port.
3762 */
3763 if (ndlp->rport && ndlp->rport->dd_data &&
James Smarte47c9092008-02-08 18:49:26 -05003764 ((struct lpfc_rport_data *) ndlp->rport->dd_data)->pnode == ndlp)
James Smart329f9bc2007-04-25 09:53:01 -04003765 lpfc_nlp_put(ndlp);
James Smart858c9f62007-06-17 19:56:39 -05003766
3767 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_RPORT,
3768 "rport add: did:x%x flg:x%x type x%x",
3769 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_type);
3770
James Smart9589b0622011-04-16 11:03:17 -04003771 /* Don't add the remote port if unloading. */
3772 if (vport->load_flag & FC_UNLOADING)
3773 return;
3774
James Smart2e0fef82007-06-17 19:56:36 -05003775 ndlp->rport = rport = fc_remote_port_add(shost, 0, &rport_ids);
James Smart329f9bc2007-04-25 09:53:01 -04003776 if (!rport || !get_device(&rport->dev)) {
dea31012005-04-17 16:05:31 -05003777 dev_printk(KERN_WARNING, &phba->pcidev->dev,
3778 "Warning: fc_remote_port_add failed\n");
3779 return;
3780 }
3781
3782 /* initialize static port data */
3783 rport->maxframe_size = ndlp->nlp_maxframe;
3784 rport->supported_classes = ndlp->nlp_class_sup;
dea31012005-04-17 16:05:31 -05003785 rdata = rport->dd_data;
James Smart329f9bc2007-04-25 09:53:01 -04003786 rdata->pnode = lpfc_nlp_get(ndlp);
James.Smart@Emulex.Com23dc04f2005-11-28 11:41:44 -05003787
3788 if (ndlp->nlp_type & NLP_FCP_TARGET)
3789 rport_ids.roles |= FC_RPORT_ROLE_FCP_TARGET;
3790 if (ndlp->nlp_type & NLP_FCP_INITIATOR)
3791 rport_ids.roles |= FC_RPORT_ROLE_FCP_INITIATOR;
3792
James.Smart@Emulex.Com23dc04f2005-11-28 11:41:44 -05003793 if (rport_ids.roles != FC_RPORT_ROLE_UNKNOWN)
3794 fc_remote_port_rolechg(rport, rport_ids.roles);
3795
James Smart071fbd3d2006-04-15 11:53:20 -04003796 if ((rport->scsi_target_id != -1) &&
James Smart92d7f7b2007-06-17 19:56:38 -05003797 (rport->scsi_target_id < LPFC_MAX_TARGET)) {
James Smart071fbd3d2006-04-15 11:53:20 -04003798 ndlp->nlp_sid = rport->scsi_target_id;
3799 }
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04003800 return;
3801}
3802
3803static void
James Smart2e0fef82007-06-17 19:56:36 -05003804lpfc_unregister_remote_port(struct lpfc_nodelist *ndlp)
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04003805{
3806 struct fc_rport *rport = ndlp->rport;
James Smartc01f3202006-08-18 17:47:08 -04003807
James Smart858c9f62007-06-17 19:56:39 -05003808 lpfc_debugfs_disc_trc(ndlp->vport, LPFC_DISC_TRC_RPORT,
3809 "rport delete: did:x%x flg:x%x type x%x",
3810 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_type);
3811
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04003812 fc_remote_port_delete(rport);
dea31012005-04-17 16:05:31 -05003813
3814 return;
3815}
3816
James Smartde0c5b32007-04-25 09:52:27 -04003817static void
James Smart2e0fef82007-06-17 19:56:36 -05003818lpfc_nlp_counters(struct lpfc_vport *vport, int state, int count)
James Smartde0c5b32007-04-25 09:52:27 -04003819{
James Smart2e0fef82007-06-17 19:56:36 -05003820 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
3821
3822 spin_lock_irq(shost->host_lock);
James Smartde0c5b32007-04-25 09:52:27 -04003823 switch (state) {
3824 case NLP_STE_UNUSED_NODE:
James Smart2e0fef82007-06-17 19:56:36 -05003825 vport->fc_unused_cnt += count;
James Smartde0c5b32007-04-25 09:52:27 -04003826 break;
3827 case NLP_STE_PLOGI_ISSUE:
James Smart2e0fef82007-06-17 19:56:36 -05003828 vport->fc_plogi_cnt += count;
James Smartde0c5b32007-04-25 09:52:27 -04003829 break;
3830 case NLP_STE_ADISC_ISSUE:
James Smart2e0fef82007-06-17 19:56:36 -05003831 vport->fc_adisc_cnt += count;
James Smartde0c5b32007-04-25 09:52:27 -04003832 break;
3833 case NLP_STE_REG_LOGIN_ISSUE:
James Smart2e0fef82007-06-17 19:56:36 -05003834 vport->fc_reglogin_cnt += count;
James Smartde0c5b32007-04-25 09:52:27 -04003835 break;
3836 case NLP_STE_PRLI_ISSUE:
James Smart2e0fef82007-06-17 19:56:36 -05003837 vport->fc_prli_cnt += count;
James Smartde0c5b32007-04-25 09:52:27 -04003838 break;
3839 case NLP_STE_UNMAPPED_NODE:
James Smart2e0fef82007-06-17 19:56:36 -05003840 vport->fc_unmap_cnt += count;
James Smartde0c5b32007-04-25 09:52:27 -04003841 break;
3842 case NLP_STE_MAPPED_NODE:
James Smart2e0fef82007-06-17 19:56:36 -05003843 vport->fc_map_cnt += count;
James Smartde0c5b32007-04-25 09:52:27 -04003844 break;
3845 case NLP_STE_NPR_NODE:
James Smart2e0fef82007-06-17 19:56:36 -05003846 vport->fc_npr_cnt += count;
James Smartde0c5b32007-04-25 09:52:27 -04003847 break;
3848 }
James Smart2e0fef82007-06-17 19:56:36 -05003849 spin_unlock_irq(shost->host_lock);
James Smartde0c5b32007-04-25 09:52:27 -04003850}
Jamie Wellnitz66a9ed62006-02-28 22:33:10 -05003851
James Smartde0c5b32007-04-25 09:52:27 -04003852static void
James Smart2e0fef82007-06-17 19:56:36 -05003853lpfc_nlp_state_cleanup(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
James Smartde0c5b32007-04-25 09:52:27 -04003854 int old_state, int new_state)
3855{
James Smart2e0fef82007-06-17 19:56:36 -05003856 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
3857
James Smartde0c5b32007-04-25 09:52:27 -04003858 if (new_state == NLP_STE_UNMAPPED_NODE) {
James Smartde0c5b32007-04-25 09:52:27 -04003859 ndlp->nlp_flag &= ~NLP_NODEV_REMOVE;
3860 ndlp->nlp_type |= NLP_FC_NODE;
3861 }
3862 if (new_state == NLP_STE_MAPPED_NODE)
3863 ndlp->nlp_flag &= ~NLP_NODEV_REMOVE;
3864 if (new_state == NLP_STE_NPR_NODE)
3865 ndlp->nlp_flag &= ~NLP_RCV_PLOGI;
dea31012005-04-17 16:05:31 -05003866
James Smartde0c5b32007-04-25 09:52:27 -04003867 /* Transport interface */
3868 if (ndlp->rport && (old_state == NLP_STE_MAPPED_NODE ||
3869 old_state == NLP_STE_UNMAPPED_NODE)) {
James Smart2e0fef82007-06-17 19:56:36 -05003870 vport->phba->nport_event_cnt++;
3871 lpfc_unregister_remote_port(ndlp);
James Smartde0c5b32007-04-25 09:52:27 -04003872 }
dea31012005-04-17 16:05:31 -05003873
James Smartde0c5b32007-04-25 09:52:27 -04003874 if (new_state == NLP_STE_MAPPED_NODE ||
3875 new_state == NLP_STE_UNMAPPED_NODE) {
James Smart2e0fef82007-06-17 19:56:36 -05003876 vport->phba->nport_event_cnt++;
James Smart858c9f62007-06-17 19:56:39 -05003877 /*
3878 * Tell the fc transport about the port, if we haven't
3879 * already. If we have, and it's a scsi entity, be
3880 * sure to unblock any attached scsi devices
3881 */
3882 lpfc_register_remote_port(vport, ndlp);
James Smartde0c5b32007-04-25 09:52:27 -04003883 }
James Smartea2151b2008-09-07 11:52:10 -04003884 if ((new_state == NLP_STE_MAPPED_NODE) &&
3885 (vport->stat_data_enabled)) {
3886 /*
3887 * A new target is discovered, if there is no buffer for
3888 * statistical data collection allocate buffer.
3889 */
3890 ndlp->lat_data = kcalloc(LPFC_MAX_BUCKET_COUNT,
3891 sizeof(struct lpfc_scsicmd_bkt),
3892 GFP_KERNEL);
3893
3894 if (!ndlp->lat_data)
3895 lpfc_printf_vlog(vport, KERN_ERR, LOG_NODE,
3896 "0286 lpfc_nlp_state_cleanup failed to "
3897 "allocate statistical data buffer DID "
3898 "0x%x\n", ndlp->nlp_DID);
3899 }
James Smart858c9f62007-06-17 19:56:39 -05003900 /*
3901 * if we added to Mapped list, but the remote port
3902 * registration failed or assigned a target id outside
3903 * our presentable range - move the node to the
3904 * Unmapped List
3905 */
James Smartde0c5b32007-04-25 09:52:27 -04003906 if (new_state == NLP_STE_MAPPED_NODE &&
3907 (!ndlp->rport ||
3908 ndlp->rport->scsi_target_id == -1 ||
3909 ndlp->rport->scsi_target_id >= LPFC_MAX_TARGET)) {
James Smart2e0fef82007-06-17 19:56:36 -05003910 spin_lock_irq(shost->host_lock);
James Smartde0c5b32007-04-25 09:52:27 -04003911 ndlp->nlp_flag |= NLP_TGT_NO_SCSIID;
James Smart2e0fef82007-06-17 19:56:36 -05003912 spin_unlock_irq(shost->host_lock);
3913 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
dea31012005-04-17 16:05:31 -05003914 }
James Smartde0c5b32007-04-25 09:52:27 -04003915}
3916
James Smart685f0bf2007-04-25 09:53:08 -04003917static char *
3918lpfc_nlp_state_name(char *buffer, size_t size, int state)
3919{
3920 static char *states[] = {
3921 [NLP_STE_UNUSED_NODE] = "UNUSED",
3922 [NLP_STE_PLOGI_ISSUE] = "PLOGI",
3923 [NLP_STE_ADISC_ISSUE] = "ADISC",
3924 [NLP_STE_REG_LOGIN_ISSUE] = "REGLOGIN",
3925 [NLP_STE_PRLI_ISSUE] = "PRLI",
3926 [NLP_STE_UNMAPPED_NODE] = "UNMAPPED",
3927 [NLP_STE_MAPPED_NODE] = "MAPPED",
3928 [NLP_STE_NPR_NODE] = "NPR",
3929 };
3930
James Smart311464e2007-08-02 11:10:37 -04003931 if (state < NLP_STE_MAX_STATE && states[state])
James Smart685f0bf2007-04-25 09:53:08 -04003932 strlcpy(buffer, states[state], size);
3933 else
3934 snprintf(buffer, size, "unknown (%d)", state);
3935 return buffer;
3936}
3937
James Smartde0c5b32007-04-25 09:52:27 -04003938void
James Smart2e0fef82007-06-17 19:56:36 -05003939lpfc_nlp_set_state(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
3940 int state)
James Smartde0c5b32007-04-25 09:52:27 -04003941{
James Smart2e0fef82007-06-17 19:56:36 -05003942 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smartde0c5b32007-04-25 09:52:27 -04003943 int old_state = ndlp->nlp_state;
James Smart685f0bf2007-04-25 09:53:08 -04003944 char name1[16], name2[16];
James Smartde0c5b32007-04-25 09:52:27 -04003945
James Smarte8b62012007-08-02 11:10:09 -04003946 lpfc_printf_vlog(vport, KERN_INFO, LOG_NODE,
3947 "0904 NPort state transition x%06x, %s -> %s\n",
3948 ndlp->nlp_DID,
3949 lpfc_nlp_state_name(name1, sizeof(name1), old_state),
3950 lpfc_nlp_state_name(name2, sizeof(name2), state));
James Smart858c9f62007-06-17 19:56:39 -05003951
3952 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_NODE,
3953 "node statechg did:x%x old:%d ste:%d",
3954 ndlp->nlp_DID, old_state, state);
3955
James Smartde0c5b32007-04-25 09:52:27 -04003956 if (old_state == NLP_STE_NPR_NODE &&
James Smartde0c5b32007-04-25 09:52:27 -04003957 state != NLP_STE_NPR_NODE)
James Smart2e0fef82007-06-17 19:56:36 -05003958 lpfc_cancel_retry_delay_tmo(vport, ndlp);
James Smartde0c5b32007-04-25 09:52:27 -04003959 if (old_state == NLP_STE_UNMAPPED_NODE) {
3960 ndlp->nlp_flag &= ~NLP_TGT_NO_SCSIID;
3961 ndlp->nlp_type &= ~NLP_FC_NODE;
3962 }
3963
James Smart685f0bf2007-04-25 09:53:08 -04003964 if (list_empty(&ndlp->nlp_listp)) {
James Smart2e0fef82007-06-17 19:56:36 -05003965 spin_lock_irq(shost->host_lock);
3966 list_add_tail(&ndlp->nlp_listp, &vport->fc_nodes);
3967 spin_unlock_irq(shost->host_lock);
James Smart685f0bf2007-04-25 09:53:08 -04003968 } else if (old_state)
James Smart2e0fef82007-06-17 19:56:36 -05003969 lpfc_nlp_counters(vport, old_state, -1);
James Smartde0c5b32007-04-25 09:52:27 -04003970
3971 ndlp->nlp_state = state;
James Smart2e0fef82007-06-17 19:56:36 -05003972 lpfc_nlp_counters(vport, state, 1);
3973 lpfc_nlp_state_cleanup(vport, ndlp, old_state, state);
James Smartde0c5b32007-04-25 09:52:27 -04003974}
3975
3976void
James Smarte47c9092008-02-08 18:49:26 -05003977lpfc_enqueue_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
3978{
3979 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
3980
3981 if (list_empty(&ndlp->nlp_listp)) {
3982 spin_lock_irq(shost->host_lock);
3983 list_add_tail(&ndlp->nlp_listp, &vport->fc_nodes);
3984 spin_unlock_irq(shost->host_lock);
3985 }
3986}
3987
3988void
James Smart2e0fef82007-06-17 19:56:36 -05003989lpfc_dequeue_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
James Smartde0c5b32007-04-25 09:52:27 -04003990{
James Smart2e0fef82007-06-17 19:56:36 -05003991 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
3992
James Smart0d2b6b82008-06-14 22:52:47 -04003993 lpfc_cancel_retry_delay_tmo(vport, ndlp);
James Smartde0c5b32007-04-25 09:52:27 -04003994 if (ndlp->nlp_state && !list_empty(&ndlp->nlp_listp))
James Smart2e0fef82007-06-17 19:56:36 -05003995 lpfc_nlp_counters(vport, ndlp->nlp_state, -1);
3996 spin_lock_irq(shost->host_lock);
James Smart685f0bf2007-04-25 09:53:08 -04003997 list_del_init(&ndlp->nlp_listp);
James Smart2e0fef82007-06-17 19:56:36 -05003998 spin_unlock_irq(shost->host_lock);
James Smart858c9f62007-06-17 19:56:39 -05003999 lpfc_nlp_state_cleanup(vport, ndlp, ndlp->nlp_state,
James Smarte47c9092008-02-08 18:49:26 -05004000 NLP_STE_UNUSED_NODE);
4001}
4002
Adrian Bunk4d9db012008-02-14 23:24:02 +02004003static void
James Smarte47c9092008-02-08 18:49:26 -05004004lpfc_disable_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
4005{
James Smart0d2b6b82008-06-14 22:52:47 -04004006 lpfc_cancel_retry_delay_tmo(vport, ndlp);
James Smarte47c9092008-02-08 18:49:26 -05004007 if (ndlp->nlp_state && !list_empty(&ndlp->nlp_listp))
4008 lpfc_nlp_counters(vport, ndlp->nlp_state, -1);
4009 lpfc_nlp_state_cleanup(vport, ndlp, ndlp->nlp_state,
4010 NLP_STE_UNUSED_NODE);
4011}
James Smart109f6ed2008-12-04 22:39:08 -05004012/**
James Smart3621a712009-04-06 18:47:14 -04004013 * lpfc_initialize_node - Initialize all fields of node object
James Smart109f6ed2008-12-04 22:39:08 -05004014 * @vport: Pointer to Virtual Port object.
4015 * @ndlp: Pointer to FC node object.
4016 * @did: FC_ID of the node.
James Smarta257bf92009-04-06 18:48:10 -04004017 *
4018 * This function is always called when node object need to be initialized.
4019 * It initializes all the fields of the node object. Although the reference
4020 * to phba from @ndlp can be obtained indirectly through it's reference to
4021 * @vport, a direct reference to phba is taken here by @ndlp. This is due
4022 * to the life-span of the @ndlp might go beyond the existence of @vport as
4023 * the final release of ndlp is determined by its reference count. And, the
4024 * operation on @ndlp needs the reference to phba.
James Smart109f6ed2008-12-04 22:39:08 -05004025 **/
4026static inline void
4027lpfc_initialize_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
4028 uint32_t did)
4029{
4030 INIT_LIST_HEAD(&ndlp->els_retry_evt.evt_listp);
4031 INIT_LIST_HEAD(&ndlp->dev_loss_evt.evt_listp);
4032 init_timer(&ndlp->nlp_delayfunc);
4033 ndlp->nlp_delayfunc.function = lpfc_els_retry_delay;
4034 ndlp->nlp_delayfunc.data = (unsigned long)ndlp;
4035 ndlp->nlp_DID = did;
4036 ndlp->vport = vport;
James Smarta257bf92009-04-06 18:48:10 -04004037 ndlp->phba = vport->phba;
James Smart109f6ed2008-12-04 22:39:08 -05004038 ndlp->nlp_sid = NLP_NO_SID;
4039 kref_init(&ndlp->kref);
4040 NLP_INT_NODE_ACT(ndlp);
4041 atomic_set(&ndlp->cmd_pending, 0);
James Smart7dc517d2010-07-14 15:32:10 -04004042 ndlp->cmd_qdepth = vport->cfg_tgt_queue_depth;
James Smart40426292010-12-15 17:58:10 -05004043 if (vport->phba->sli_rev == LPFC_SLI_REV4)
4044 ndlp->nlp_rpi = lpfc_sli4_alloc_rpi(vport->phba);
James Smart109f6ed2008-12-04 22:39:08 -05004045}
James Smarte47c9092008-02-08 18:49:26 -05004046
4047struct lpfc_nodelist *
4048lpfc_enable_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
4049 int state)
4050{
4051 struct lpfc_hba *phba = vport->phba;
4052 uint32_t did;
4053 unsigned long flags;
4054
4055 if (!ndlp)
4056 return NULL;
4057
4058 spin_lock_irqsave(&phba->ndlp_lock, flags);
4059 /* The ndlp should not be in memory free mode */
4060 if (NLP_CHK_FREE_REQ(ndlp)) {
4061 spin_unlock_irqrestore(&phba->ndlp_lock, flags);
4062 lpfc_printf_vlog(vport, KERN_WARNING, LOG_NODE,
4063 "0277 lpfc_enable_node: ndlp:x%p "
4064 "usgmap:x%x refcnt:%d\n",
4065 (void *)ndlp, ndlp->nlp_usg_map,
4066 atomic_read(&ndlp->kref.refcount));
4067 return NULL;
4068 }
4069 /* The ndlp should not already be in active mode */
4070 if (NLP_CHK_NODE_ACT(ndlp)) {
4071 spin_unlock_irqrestore(&phba->ndlp_lock, flags);
4072 lpfc_printf_vlog(vport, KERN_WARNING, LOG_NODE,
4073 "0278 lpfc_enable_node: ndlp:x%p "
4074 "usgmap:x%x refcnt:%d\n",
4075 (void *)ndlp, ndlp->nlp_usg_map,
4076 atomic_read(&ndlp->kref.refcount));
4077 return NULL;
4078 }
4079
4080 /* Keep the original DID */
4081 did = ndlp->nlp_DID;
4082
4083 /* re-initialize ndlp except of ndlp linked list pointer */
4084 memset((((char *)ndlp) + sizeof (struct list_head)), 0,
4085 sizeof (struct lpfc_nodelist) - sizeof (struct list_head));
James Smart109f6ed2008-12-04 22:39:08 -05004086 lpfc_initialize_node(vport, ndlp, did);
James Smarte47c9092008-02-08 18:49:26 -05004087
4088 spin_unlock_irqrestore(&phba->ndlp_lock, flags);
4089
4090 if (state != NLP_STE_UNUSED_NODE)
4091 lpfc_nlp_set_state(vport, ndlp, state);
4092
4093 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_NODE,
4094 "node enable: did:x%x",
4095 ndlp->nlp_DID, 0, 0);
4096 return ndlp;
James Smartde0c5b32007-04-25 09:52:27 -04004097}
4098
4099void
James Smart2e0fef82007-06-17 19:56:36 -05004100lpfc_drop_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
James Smartde0c5b32007-04-25 09:52:27 -04004101{
James Smart87af33f2007-10-27 13:37:43 -04004102 /*
James Smartfa4066b2008-01-11 01:53:27 -05004103 * Use of lpfc_drop_node and UNUSED list: lpfc_drop_node should
James Smart87af33f2007-10-27 13:37:43 -04004104 * be used if we wish to issue the "last" lpfc_nlp_put() to remove
James Smartfa4066b2008-01-11 01:53:27 -05004105 * the ndlp from the vport. The ndlp marked as UNUSED on the list
4106 * until ALL other outstanding threads have completed. We check
4107 * that the ndlp not already in the UNUSED state before we proceed.
James Smart87af33f2007-10-27 13:37:43 -04004108 */
James Smartfa4066b2008-01-11 01:53:27 -05004109 if (ndlp->nlp_state == NLP_STE_UNUSED_NODE)
4110 return;
James Smart51ef4c22007-08-02 11:10:31 -04004111 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNUSED_NODE);
James Smart1151e3e2011-02-16 12:39:35 -05004112 if (vport->phba->sli_rev == LPFC_SLI_REV4)
4113 lpfc_cleanup_vports_rrqs(vport, ndlp);
James Smart87af33f2007-10-27 13:37:43 -04004114 lpfc_nlp_put(ndlp);
James Smart98c9ea52007-10-27 13:37:33 -04004115 return;
dea31012005-04-17 16:05:31 -05004116}
4117
4118/*
4119 * Start / ReStart rescue timer for Discovery / RSCN handling
4120 */
4121void
James Smart2e0fef82007-06-17 19:56:36 -05004122lpfc_set_disctmo(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05004123{
James Smart2e0fef82007-06-17 19:56:36 -05004124 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
4125 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05004126 uint32_t tmo;
4127
James Smart2e0fef82007-06-17 19:56:36 -05004128 if (vport->port_state == LPFC_LOCAL_CFG_LINK) {
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02004129 /* For FAN, timeout should be greater than edtov */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004130 tmo = (((phba->fc_edtov + 999) / 1000) + 1);
4131 } else {
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02004132 /* Normal discovery timeout should be > than ELS/CT timeout
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004133 * FC spec states we need 3 * ratov for CT requests
4134 */
4135 tmo = ((phba->fc_ratov * 3) + 3);
4136 }
dea31012005-04-17 16:05:31 -05004137
James Smart858c9f62007-06-17 19:56:39 -05004138
4139 if (!timer_pending(&vport->fc_disctmo)) {
4140 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
4141 "set disc timer: tmo:x%x state:x%x flg:x%x",
4142 tmo, vport->port_state, vport->fc_flag);
4143 }
4144
James Smart2e0fef82007-06-17 19:56:36 -05004145 mod_timer(&vport->fc_disctmo, jiffies + HZ * tmo);
4146 spin_lock_irq(shost->host_lock);
4147 vport->fc_flag |= FC_DISC_TMO;
4148 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05004149
4150 /* Start Discovery Timer state <hba_state> */
James Smarte8b62012007-08-02 11:10:09 -04004151 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
4152 "0247 Start Discovery Timer state x%x "
4153 "Data: x%x x%lx x%x x%x\n",
4154 vport->port_state, tmo,
4155 (unsigned long)&vport->fc_disctmo, vport->fc_plogi_cnt,
4156 vport->fc_adisc_cnt);
dea31012005-04-17 16:05:31 -05004157
4158 return;
4159}
4160
4161/*
4162 * Cancel rescue timer for Discovery / RSCN handling
4163 */
4164int
James Smart2e0fef82007-06-17 19:56:36 -05004165lpfc_can_disctmo(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05004166{
James Smart2e0fef82007-06-17 19:56:36 -05004167 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart2e0fef82007-06-17 19:56:36 -05004168 unsigned long iflags;
4169
James Smart858c9f62007-06-17 19:56:39 -05004170 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
4171 "can disc timer: state:x%x rtry:x%x flg:x%x",
4172 vport->port_state, vport->fc_ns_retry, vport->fc_flag);
4173
dea31012005-04-17 16:05:31 -05004174 /* Turn off discovery timer if its running */
James Smart2e0fef82007-06-17 19:56:36 -05004175 if (vport->fc_flag & FC_DISC_TMO) {
4176 spin_lock_irqsave(shost->host_lock, iflags);
4177 vport->fc_flag &= ~FC_DISC_TMO;
4178 spin_unlock_irqrestore(shost->host_lock, iflags);
4179 del_timer_sync(&vport->fc_disctmo);
4180 spin_lock_irqsave(&vport->work_port_lock, iflags);
4181 vport->work_port_events &= ~WORKER_DISC_TMO;
4182 spin_unlock_irqrestore(&vport->work_port_lock, iflags);
dea31012005-04-17 16:05:31 -05004183 }
4184
4185 /* Cancel Discovery Timer state <hba_state> */
James Smarte8b62012007-08-02 11:10:09 -04004186 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
4187 "0248 Cancel Discovery Timer state x%x "
4188 "Data: x%x x%x x%x\n",
4189 vport->port_state, vport->fc_flag,
4190 vport->fc_plogi_cnt, vport->fc_adisc_cnt);
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004191 return 0;
dea31012005-04-17 16:05:31 -05004192}
4193
4194/*
4195 * Check specified ring for outstanding IOCB on the SLI queue
4196 * Return true if iocb matches the specified nport
4197 */
4198int
James Smart2e0fef82007-06-17 19:56:36 -05004199lpfc_check_sli_ndlp(struct lpfc_hba *phba,
4200 struct lpfc_sli_ring *pring,
4201 struct lpfc_iocbq *iocb,
4202 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05004203{
James Smart2e0fef82007-06-17 19:56:36 -05004204 struct lpfc_sli *psli = &phba->sli;
4205 IOCB_t *icmd = &iocb->iocb;
James Smart92d7f7b2007-06-17 19:56:38 -05004206 struct lpfc_vport *vport = ndlp->vport;
4207
4208 if (iocb->vport != vport)
4209 return 0;
4210
dea31012005-04-17 16:05:31 -05004211 if (pring->ringno == LPFC_ELS_RING) {
4212 switch (icmd->ulpCommand) {
4213 case CMD_GEN_REQUEST64_CR:
James Smart21e9a0a2009-05-22 14:53:21 -04004214 if (iocb->context_un.ndlp == ndlp)
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004215 return 1;
dea31012005-04-17 16:05:31 -05004216 case CMD_ELS_REQUEST64_CR:
James Smart10d4e952006-04-15 11:53:15 -04004217 if (icmd->un.elsreq64.remoteID == ndlp->nlp_DID)
4218 return 1;
dea31012005-04-17 16:05:31 -05004219 case CMD_XMIT_ELS_RSP64_CX:
4220 if (iocb->context1 == (uint8_t *) ndlp)
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004221 return 1;
dea31012005-04-17 16:05:31 -05004222 }
James Smarta4bc3372006-12-02 13:34:16 -05004223 } else if (pring->ringno == psli->extra_ring) {
dea31012005-04-17 16:05:31 -05004224
4225 } else if (pring->ringno == psli->fcp_ring) {
4226 /* Skip match check if waiting to relogin to FCP target */
4227 if ((ndlp->nlp_type & NLP_FCP_TARGET) &&
James Smart92d7f7b2007-06-17 19:56:38 -05004228 (ndlp->nlp_flag & NLP_DELAY_TMO)) {
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004229 return 0;
dea31012005-04-17 16:05:31 -05004230 }
4231 if (icmd->ulpContext == (volatile ushort)ndlp->nlp_rpi) {
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004232 return 1;
dea31012005-04-17 16:05:31 -05004233 }
4234 } else if (pring->ringno == psli->next_ring) {
4235
4236 }
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004237 return 0;
dea31012005-04-17 16:05:31 -05004238}
4239
4240/*
4241 * Free resources / clean up outstanding I/Os
4242 * associated with nlp_rpi in the LPFC_NODELIST entry.
4243 */
4244static int
James Smart2e0fef82007-06-17 19:56:36 -05004245lpfc_no_rpi(struct lpfc_hba *phba, struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05004246{
James Smart2534ba72007-04-25 09:52:20 -04004247 LIST_HEAD(completions);
dea31012005-04-17 16:05:31 -05004248 struct lpfc_sli *psli;
4249 struct lpfc_sli_ring *pring;
4250 struct lpfc_iocbq *iocb, *next_iocb;
James Smart6a9c52c2009-10-02 15:16:51 -04004251 uint32_t i;
dea31012005-04-17 16:05:31 -05004252
James Smart92d7f7b2007-06-17 19:56:38 -05004253 lpfc_fabric_abort_nport(ndlp);
4254
dea31012005-04-17 16:05:31 -05004255 /*
4256 * Everything that matches on txcmplq will be returned
4257 * by firmware with a no rpi error.
4258 */
4259 psli = &phba->sli;
James Smart40426292010-12-15 17:58:10 -05004260 if (ndlp->nlp_flag & NLP_RPI_REGISTERED) {
dea31012005-04-17 16:05:31 -05004261 /* Now process each ring */
4262 for (i = 0; i < psli->num_rings; i++) {
4263 pring = &psli->ring[i];
4264
James Smart2e0fef82007-06-17 19:56:36 -05004265 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05004266 list_for_each_entry_safe(iocb, next_iocb, &pring->txq,
James Smart2e0fef82007-06-17 19:56:36 -05004267 list) {
dea31012005-04-17 16:05:31 -05004268 /*
4269 * Check to see if iocb matches the nport we are
4270 * looking for
4271 */
James Smart92d7f7b2007-06-17 19:56:38 -05004272 if ((lpfc_check_sli_ndlp(phba, pring, iocb,
4273 ndlp))) {
dea31012005-04-17 16:05:31 -05004274 /* It matches, so deque and call compl
4275 with an error */
James Smart2534ba72007-04-25 09:52:20 -04004276 list_move_tail(&iocb->list,
4277 &completions);
dea31012005-04-17 16:05:31 -05004278 pring->txq_cnt--;
dea31012005-04-17 16:05:31 -05004279 }
4280 }
James Smart2e0fef82007-06-17 19:56:36 -05004281 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05004282 }
4283 }
James Smart2534ba72007-04-25 09:52:20 -04004284
James Smarta257bf92009-04-06 18:48:10 -04004285 /* Cancel all the IOCBs from the completions list */
4286 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
4287 IOERR_SLI_ABORTED);
James Smart2534ba72007-04-25 09:52:20 -04004288
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004289 return 0;
dea31012005-04-17 16:05:31 -05004290}
4291
4292/*
4293 * Free rpi associated with LPFC_NODELIST entry.
4294 * This routine is called from lpfc_freenode(), when we are removing
4295 * a LPFC_NODELIST entry. It is also called if the driver initiates a
4296 * LOGO that completes successfully, and we are waiting to PLOGI back
4297 * to the remote NPort. In addition, it is called after we receive
4298 * and unsolicated ELS cmd, send back a rsp, the rsp completes and
4299 * we are waiting to PLOGI back to the remote NPort.
4300 */
4301int
James Smart2e0fef82007-06-17 19:56:36 -05004302lpfc_unreg_rpi(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05004303{
James Smart2e0fef82007-06-17 19:56:36 -05004304 struct lpfc_hba *phba = vport->phba;
4305 LPFC_MBOXQ_t *mbox;
dea31012005-04-17 16:05:31 -05004306 int rc;
James Smart6d368e52011-05-24 11:44:12 -04004307 uint16_t rpi;
dea31012005-04-17 16:05:31 -05004308
James Smart40426292010-12-15 17:58:10 -05004309 if (ndlp->nlp_flag & NLP_RPI_REGISTERED) {
James Smart2e0fef82007-06-17 19:56:36 -05004310 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4311 if (mbox) {
James Smart6d368e52011-05-24 11:44:12 -04004312 /* SLI4 ports require the physical rpi value. */
4313 rpi = ndlp->nlp_rpi;
4314 if (phba->sli_rev == LPFC_SLI_REV4)
4315 rpi = phba->sli4_hba.rpi_ids[ndlp->nlp_rpi];
4316 lpfc_unreg_login(phba, vport->vpi, rpi, mbox);
James Smarted957682007-06-17 19:56:37 -05004317 mbox->vport = vport;
James Smart92d7f7b2007-06-17 19:56:38 -05004318 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
James Smart0b727fe2007-10-27 13:37:25 -04004319 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
dea31012005-04-17 16:05:31 -05004320 if (rc == MBX_NOT_FINISHED)
James Smart2e0fef82007-06-17 19:56:36 -05004321 mempool_free(mbox, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -05004322 }
dea31012005-04-17 16:05:31 -05004323 lpfc_no_rpi(phba, ndlp);
James Smartd7c47992010-06-08 18:31:54 -04004324
James Smart40426292010-12-15 17:58:10 -05004325 if (phba->sli_rev != LPFC_SLI_REV4)
4326 ndlp->nlp_rpi = 0;
4327 ndlp->nlp_flag &= ~NLP_RPI_REGISTERED;
James Smart0c287582009-06-10 17:22:56 -04004328 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
dea31012005-04-17 16:05:31 -05004329 return 1;
4330 }
4331 return 0;
4332}
4333
James Smartecfd03c2010-02-12 14:41:27 -05004334/**
4335 * lpfc_unreg_hba_rpis - Unregister rpis registered to the hba.
4336 * @phba: pointer to lpfc hba data structure.
4337 *
4338 * This routine is invoked to unregister all the currently registered RPIs
4339 * to the HBA.
4340 **/
4341void
4342lpfc_unreg_hba_rpis(struct lpfc_hba *phba)
4343{
4344 struct lpfc_vport **vports;
4345 struct lpfc_nodelist *ndlp;
4346 struct Scsi_Host *shost;
4347 int i;
4348
4349 vports = lpfc_create_vport_work_array(phba);
James Smart63e801c2010-11-20 23:14:19 -05004350 if (!vports) {
4351 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY,
4352 "2884 Vport array allocation failed \n");
4353 return;
4354 }
James Smartecfd03c2010-02-12 14:41:27 -05004355 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
4356 shost = lpfc_shost_from_vport(vports[i]);
4357 spin_lock_irq(shost->host_lock);
4358 list_for_each_entry(ndlp, &vports[i]->fc_nodes, nlp_listp) {
James Smart40426292010-12-15 17:58:10 -05004359 if (ndlp->nlp_flag & NLP_RPI_REGISTERED) {
James Smart0c9ab6f2010-02-26 14:15:57 -05004360 /* The mempool_alloc might sleep */
4361 spin_unlock_irq(shost->host_lock);
James Smartecfd03c2010-02-12 14:41:27 -05004362 lpfc_unreg_rpi(vports[i], ndlp);
James Smart0c9ab6f2010-02-26 14:15:57 -05004363 spin_lock_irq(shost->host_lock);
4364 }
James Smartecfd03c2010-02-12 14:41:27 -05004365 }
4366 spin_unlock_irq(shost->host_lock);
4367 }
4368 lpfc_destroy_vport_work_array(phba, vports);
4369}
4370
James Smart92d7f7b2007-06-17 19:56:38 -05004371void
4372lpfc_unreg_all_rpis(struct lpfc_vport *vport)
4373{
4374 struct lpfc_hba *phba = vport->phba;
4375 LPFC_MBOXQ_t *mbox;
4376 int rc;
4377
James Smart5af5eee2010-10-22 11:06:38 -04004378 if (phba->sli_rev == LPFC_SLI_REV4) {
4379 lpfc_sli4_unreg_all_rpis(vport);
4380 return;
4381 }
4382
James Smart92d7f7b2007-06-17 19:56:38 -05004383 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4384 if (mbox) {
James Smart6d368e52011-05-24 11:44:12 -04004385 lpfc_unreg_login(phba, vport->vpi, LPFC_UNREG_ALL_RPIS_VPORT,
4386 mbox);
James Smart92d7f7b2007-06-17 19:56:38 -05004387 mbox->vport = vport;
4388 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
James Smart09372822008-01-11 01:52:54 -05004389 mbox->context1 = NULL;
4390 rc = lpfc_sli_issue_mbox_wait(phba, mbox, LPFC_MBOX_TMO);
James Smarta257bf92009-04-06 18:48:10 -04004391 if (rc != MBX_TIMEOUT)
James Smart92d7f7b2007-06-17 19:56:38 -05004392 mempool_free(mbox, phba->mbox_mem_pool);
James Smarta257bf92009-04-06 18:48:10 -04004393
4394 if ((rc == MBX_TIMEOUT) || (rc == MBX_NOT_FINISHED))
4395 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX | LOG_VPORT,
4396 "1836 Could not issue "
4397 "unreg_login(all_rpis) status %d\n", rc);
James Smart92d7f7b2007-06-17 19:56:38 -05004398 }
4399}
4400
4401void
4402lpfc_unreg_default_rpis(struct lpfc_vport *vport)
4403{
4404 struct lpfc_hba *phba = vport->phba;
4405 LPFC_MBOXQ_t *mbox;
4406 int rc;
4407
4408 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4409 if (mbox) {
James Smart6d368e52011-05-24 11:44:12 -04004410 lpfc_unreg_did(phba, vport->vpi, LPFC_UNREG_ALL_DFLT_RPIS,
4411 mbox);
James Smart92d7f7b2007-06-17 19:56:38 -05004412 mbox->vport = vport;
4413 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
James Smart09372822008-01-11 01:52:54 -05004414 mbox->context1 = NULL;
4415 rc = lpfc_sli_issue_mbox_wait(phba, mbox, LPFC_MBOX_TMO);
James Smarta257bf92009-04-06 18:48:10 -04004416 if (rc != MBX_TIMEOUT)
4417 mempool_free(mbox, phba->mbox_mem_pool);
4418
4419 if ((rc == MBX_TIMEOUT) || (rc == MBX_NOT_FINISHED))
James Smarte8b62012007-08-02 11:10:09 -04004420 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX | LOG_VPORT,
4421 "1815 Could not issue "
James Smarta257bf92009-04-06 18:48:10 -04004422 "unreg_did (default rpis) status %d\n",
4423 rc);
James Smart92d7f7b2007-06-17 19:56:38 -05004424 }
4425}
4426
dea31012005-04-17 16:05:31 -05004427/*
4428 * Free resources associated with LPFC_NODELIST entry
4429 * so it can be freed.
4430 */
4431static int
James Smart2e0fef82007-06-17 19:56:36 -05004432lpfc_cleanup_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05004433{
James Smart2e0fef82007-06-17 19:56:36 -05004434 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
4435 struct lpfc_hba *phba = vport->phba;
4436 LPFC_MBOXQ_t *mb, *nextmb;
dea31012005-04-17 16:05:31 -05004437 struct lpfc_dmabuf *mp;
dea31012005-04-17 16:05:31 -05004438
4439 /* Cleanup node for NPort <nlp_DID> */
James Smarte8b62012007-08-02 11:10:09 -04004440 lpfc_printf_vlog(vport, KERN_INFO, LOG_NODE,
4441 "0900 Cleanup node for NPort x%x "
4442 "Data: x%x x%x x%x\n",
4443 ndlp->nlp_DID, ndlp->nlp_flag,
4444 ndlp->nlp_state, ndlp->nlp_rpi);
James Smarte47c9092008-02-08 18:49:26 -05004445 if (NLP_CHK_FREE_REQ(ndlp)) {
4446 lpfc_printf_vlog(vport, KERN_WARNING, LOG_NODE,
4447 "0280 lpfc_cleanup_node: ndlp:x%p "
4448 "usgmap:x%x refcnt:%d\n",
4449 (void *)ndlp, ndlp->nlp_usg_map,
4450 atomic_read(&ndlp->kref.refcount));
4451 lpfc_dequeue_node(vport, ndlp);
4452 } else {
4453 lpfc_printf_vlog(vport, KERN_WARNING, LOG_NODE,
4454 "0281 lpfc_cleanup_node: ndlp:x%p "
4455 "usgmap:x%x refcnt:%d\n",
4456 (void *)ndlp, ndlp->nlp_usg_map,
4457 atomic_read(&ndlp->kref.refcount));
4458 lpfc_disable_node(vport, ndlp);
4459 }
dea31012005-04-17 16:05:31 -05004460
dea31012005-04-17 16:05:31 -05004461 /* cleanup any ndlp on mbox q waiting for reglogin cmpl */
4462 if ((mb = phba->sli.mbox_active)) {
James Smart04c68492009-05-22 14:52:52 -04004463 if ((mb->u.mb.mbxCommand == MBX_REG_LOGIN64) &&
dea31012005-04-17 16:05:31 -05004464 (ndlp == (struct lpfc_nodelist *) mb->context2)) {
4465 mb->context2 = NULL;
4466 mb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
4467 }
4468 }
James Smart33ccf8d2006-08-17 11:57:58 -04004469
James Smart2e0fef82007-06-17 19:56:36 -05004470 spin_lock_irq(&phba->hbalock);
James Smart5ac6b302010-10-22 11:05:36 -04004471 /* Cleanup REG_LOGIN completions which are not yet processed */
4472 list_for_each_entry(mb, &phba->sli.mboxq_cmpl, list) {
4473 if ((mb->u.mb.mbxCommand != MBX_REG_LOGIN64) ||
4474 (ndlp != (struct lpfc_nodelist *) mb->context2))
4475 continue;
4476
4477 mb->context2 = NULL;
4478 mb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
4479 }
4480
dea31012005-04-17 16:05:31 -05004481 list_for_each_entry_safe(mb, nextmb, &phba->sli.mboxq, list) {
James Smart04c68492009-05-22 14:52:52 -04004482 if ((mb->u.mb.mbxCommand == MBX_REG_LOGIN64) &&
James Smart92d7f7b2007-06-17 19:56:38 -05004483 (ndlp == (struct lpfc_nodelist *) mb->context2)) {
dea31012005-04-17 16:05:31 -05004484 mp = (struct lpfc_dmabuf *) (mb->context1);
4485 if (mp) {
James Smart2e0fef82007-06-17 19:56:36 -05004486 __lpfc_mbuf_free(phba, mp->virt, mp->phys);
dea31012005-04-17 16:05:31 -05004487 kfree(mp);
4488 }
4489 list_del(&mb->list);
4490 mempool_free(mb, phba->mbox_mem_pool);
James Smarte47c9092008-02-08 18:49:26 -05004491 /* We shall not invoke the lpfc_nlp_put to decrement
4492 * the ndlp reference count as we are in the process
4493 * of lpfc_nlp_release.
4494 */
dea31012005-04-17 16:05:31 -05004495 }
4496 }
James Smart2e0fef82007-06-17 19:56:36 -05004497 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05004498
James Smarte47c9092008-02-08 18:49:26 -05004499 lpfc_els_abort(phba, ndlp);
4500
James Smart2e0fef82007-06-17 19:56:36 -05004501 spin_lock_irq(shost->host_lock);
James Smartc01f3202006-08-18 17:47:08 -04004502 ndlp->nlp_flag &= ~NLP_DELAY_TMO;
James Smart2e0fef82007-06-17 19:56:36 -05004503 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05004504
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05004505 ndlp->nlp_last_elscmd = 0;
dea31012005-04-17 16:05:31 -05004506 del_timer_sync(&ndlp->nlp_delayfunc);
4507
James Smart0d2b6b82008-06-14 22:52:47 -04004508 list_del_init(&ndlp->els_retry_evt.evt_listp);
4509 list_del_init(&ndlp->dev_loss_evt.evt_listp);
James Smart1151e3e2011-02-16 12:39:35 -05004510 lpfc_cleanup_vports_rrqs(vport, ndlp);
James Smart2e0fef82007-06-17 19:56:36 -05004511 lpfc_unreg_rpi(vport, ndlp);
dea31012005-04-17 16:05:31 -05004512
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004513 return 0;
dea31012005-04-17 16:05:31 -05004514}
4515
4516/*
4517 * Check to see if we can free the nlp back to the freelist.
4518 * If we are in the middle of using the nlp in the discovery state
4519 * machine, defer the free till we reach the end of the state machine.
4520 */
James Smart329f9bc2007-04-25 09:53:01 -04004521static void
James Smart2e0fef82007-06-17 19:56:36 -05004522lpfc_nlp_remove(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05004523{
James Smarta8adb832007-10-27 13:37:53 -04004524 struct lpfc_hba *phba = vport->phba;
James Smart1dcb58e2007-04-25 09:51:30 -04004525 struct lpfc_rport_data *rdata;
James Smarta8adb832007-10-27 13:37:53 -04004526 LPFC_MBOXQ_t *mbox;
4527 int rc;
dea31012005-04-17 16:05:31 -05004528
James Smart0d2b6b82008-06-14 22:52:47 -04004529 lpfc_cancel_retry_delay_tmo(vport, ndlp);
James Smart21e9a0a2009-05-22 14:53:21 -04004530 if ((ndlp->nlp_flag & NLP_DEFER_RM) &&
James Smart40426292010-12-15 17:58:10 -05004531 !(ndlp->nlp_flag & NLP_REG_LOGIN_SEND) &&
4532 !(ndlp->nlp_flag & NLP_RPI_REGISTERED)) {
James Smarta8adb832007-10-27 13:37:53 -04004533 /* For this case we need to cleanup the default rpi
4534 * allocated by the firmware.
4535 */
4536 if ((mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL))
4537 != NULL) {
James Smart21e9a0a2009-05-22 14:53:21 -04004538 rc = lpfc_reg_rpi(phba, vport->vpi, ndlp->nlp_DID,
James Smart40426292010-12-15 17:58:10 -05004539 (uint8_t *) &vport->fc_sparam, mbox, ndlp->nlp_rpi);
James Smarta8adb832007-10-27 13:37:53 -04004540 if (rc) {
4541 mempool_free(mbox, phba->mbox_mem_pool);
4542 }
4543 else {
4544 mbox->mbox_flag |= LPFC_MBX_IMED_UNREG;
4545 mbox->mbox_cmpl = lpfc_mbx_cmpl_dflt_rpi;
4546 mbox->vport = vport;
James Smart09372822008-01-11 01:52:54 -05004547 mbox->context2 = NULL;
James Smarta8adb832007-10-27 13:37:53 -04004548 rc =lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
4549 if (rc == MBX_NOT_FINISHED) {
4550 mempool_free(mbox, phba->mbox_mem_pool);
4551 }
4552 }
4553 }
4554 }
James Smart2e0fef82007-06-17 19:56:36 -05004555 lpfc_cleanup_node(vport, ndlp);
James Smart1dcb58e2007-04-25 09:51:30 -04004556
James Smart2e0fef82007-06-17 19:56:36 -05004557 /*
James Smart92d7f7b2007-06-17 19:56:38 -05004558 * We can get here with a non-NULL ndlp->rport because when we
4559 * unregister a rport we don't break the rport/node linkage. So if we
4560 * do, make sure we don't leaving any dangling pointers behind.
James Smart2e0fef82007-06-17 19:56:36 -05004561 */
James Smart92d7f7b2007-06-17 19:56:38 -05004562 if (ndlp->rport) {
James Smart329f9bc2007-04-25 09:53:01 -04004563 rdata = ndlp->rport->dd_data;
4564 rdata->pnode = NULL;
4565 ndlp->rport = NULL;
dea31012005-04-17 16:05:31 -05004566 }
dea31012005-04-17 16:05:31 -05004567}
4568
4569static int
James Smart2e0fef82007-06-17 19:56:36 -05004570lpfc_matchdid(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
4571 uint32_t did)
dea31012005-04-17 16:05:31 -05004572{
James Smart2e0fef82007-06-17 19:56:36 -05004573 D_ID mydid, ndlpdid, matchdid;
dea31012005-04-17 16:05:31 -05004574
4575 if (did == Bcast_DID)
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004576 return 0;
dea31012005-04-17 16:05:31 -05004577
dea31012005-04-17 16:05:31 -05004578 /* First check for Direct match */
4579 if (ndlp->nlp_DID == did)
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004580 return 1;
dea31012005-04-17 16:05:31 -05004581
4582 /* Next check for area/domain identically equals 0 match */
James Smart2e0fef82007-06-17 19:56:36 -05004583 mydid.un.word = vport->fc_myDID;
dea31012005-04-17 16:05:31 -05004584 if ((mydid.un.b.domain == 0) && (mydid.un.b.area == 0)) {
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004585 return 0;
dea31012005-04-17 16:05:31 -05004586 }
4587
4588 matchdid.un.word = did;
4589 ndlpdid.un.word = ndlp->nlp_DID;
4590 if (matchdid.un.b.id == ndlpdid.un.b.id) {
4591 if ((mydid.un.b.domain == matchdid.un.b.domain) &&
4592 (mydid.un.b.area == matchdid.un.b.area)) {
4593 if ((ndlpdid.un.b.domain == 0) &&
4594 (ndlpdid.un.b.area == 0)) {
4595 if (ndlpdid.un.b.id)
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004596 return 1;
dea31012005-04-17 16:05:31 -05004597 }
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004598 return 0;
dea31012005-04-17 16:05:31 -05004599 }
4600
4601 matchdid.un.word = ndlp->nlp_DID;
4602 if ((mydid.un.b.domain == ndlpdid.un.b.domain) &&
4603 (mydid.un.b.area == ndlpdid.un.b.area)) {
4604 if ((matchdid.un.b.domain == 0) &&
4605 (matchdid.un.b.area == 0)) {
4606 if (matchdid.un.b.id)
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004607 return 1;
dea31012005-04-17 16:05:31 -05004608 }
4609 }
4610 }
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004611 return 0;
dea31012005-04-17 16:05:31 -05004612}
4613
James Smart685f0bf2007-04-25 09:53:08 -04004614/* Search for a nodelist entry */
James Smart2e0fef82007-06-17 19:56:36 -05004615static struct lpfc_nodelist *
4616__lpfc_findnode_did(struct lpfc_vport *vport, uint32_t did)
dea31012005-04-17 16:05:31 -05004617{
James Smart2fb9bd82006-12-02 13:33:57 -05004618 struct lpfc_nodelist *ndlp;
dea31012005-04-17 16:05:31 -05004619 uint32_t data1;
4620
James Smart2e0fef82007-06-17 19:56:36 -05004621 list_for_each_entry(ndlp, &vport->fc_nodes, nlp_listp) {
4622 if (lpfc_matchdid(vport, ndlp, did)) {
James Smart685f0bf2007-04-25 09:53:08 -04004623 data1 = (((uint32_t) ndlp->nlp_state << 24) |
4624 ((uint32_t) ndlp->nlp_xri << 16) |
4625 ((uint32_t) ndlp->nlp_type << 8) |
4626 ((uint32_t) ndlp->nlp_rpi & 0xff));
James Smarte8b62012007-08-02 11:10:09 -04004627 lpfc_printf_vlog(vport, KERN_INFO, LOG_NODE,
4628 "0929 FIND node DID "
4629 "Data: x%p x%x x%x x%x\n",
4630 ndlp, ndlp->nlp_DID,
4631 ndlp->nlp_flag, data1);
James Smart685f0bf2007-04-25 09:53:08 -04004632 return ndlp;
dea31012005-04-17 16:05:31 -05004633 }
4634 }
Jamie Wellnitz66a9ed62006-02-28 22:33:10 -05004635
dea31012005-04-17 16:05:31 -05004636 /* FIND node did <did> NOT FOUND */
James Smarte8b62012007-08-02 11:10:09 -04004637 lpfc_printf_vlog(vport, KERN_INFO, LOG_NODE,
4638 "0932 FIND node did x%x NOT FOUND.\n", did);
dea31012005-04-17 16:05:31 -05004639 return NULL;
4640}
4641
4642struct lpfc_nodelist *
James Smart2e0fef82007-06-17 19:56:36 -05004643lpfc_findnode_did(struct lpfc_vport *vport, uint32_t did)
dea31012005-04-17 16:05:31 -05004644{
James Smart2e0fef82007-06-17 19:56:36 -05004645 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05004646 struct lpfc_nodelist *ndlp;
James Smartfedd3b72011-02-16 12:39:24 -05004647 unsigned long iflags;
dea31012005-04-17 16:05:31 -05004648
James Smartfedd3b72011-02-16 12:39:24 -05004649 spin_lock_irqsave(shost->host_lock, iflags);
James Smart2e0fef82007-06-17 19:56:36 -05004650 ndlp = __lpfc_findnode_did(vport, did);
James Smartfedd3b72011-02-16 12:39:24 -05004651 spin_unlock_irqrestore(shost->host_lock, iflags);
James Smart2e0fef82007-06-17 19:56:36 -05004652 return ndlp;
4653}
4654
4655struct lpfc_nodelist *
4656lpfc_setup_disc_node(struct lpfc_vport *vport, uint32_t did)
4657{
4658 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
4659 struct lpfc_nodelist *ndlp;
4660
4661 ndlp = lpfc_findnode_did(vport, did);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004662 if (!ndlp) {
James Smart2e0fef82007-06-17 19:56:36 -05004663 if ((vport->fc_flag & FC_RSCN_MODE) != 0 &&
4664 lpfc_rscn_payload_check(vport, did) == 0)
dea31012005-04-17 16:05:31 -05004665 return NULL;
4666 ndlp = (struct lpfc_nodelist *)
James Smart2e0fef82007-06-17 19:56:36 -05004667 mempool_alloc(vport->phba->nlp_mem_pool, GFP_KERNEL);
dea31012005-04-17 16:05:31 -05004668 if (!ndlp)
4669 return NULL;
James Smart2e0fef82007-06-17 19:56:36 -05004670 lpfc_nlp_init(vport, ndlp, did);
4671 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
4672 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05004673 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
James Smart2e0fef82007-06-17 19:56:36 -05004674 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05004675 return ndlp;
James Smarte47c9092008-02-08 18:49:26 -05004676 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
4677 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_NPR_NODE);
4678 if (!ndlp)
4679 return NULL;
4680 spin_lock_irq(shost->host_lock);
4681 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
4682 spin_unlock_irq(shost->host_lock);
4683 return ndlp;
dea31012005-04-17 16:05:31 -05004684 }
James Smarte47c9092008-02-08 18:49:26 -05004685
James Smart58da1ff2008-04-07 10:15:56 -04004686 if ((vport->fc_flag & FC_RSCN_MODE) &&
4687 !(vport->fc_flag & FC_NDISC_ACTIVE)) {
James Smart2e0fef82007-06-17 19:56:36 -05004688 if (lpfc_rscn_payload_check(vport, did)) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004689 /* If we've already received a PLOGI from this NPort
James Smart87af33f2007-10-27 13:37:43 -04004690 * we don't need to try to discover it again.
4691 */
4692 if (ndlp->nlp_flag & NLP_RCV_PLOGI)
4693 return NULL;
4694
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004695 /* Since this node is marked for discovery,
4696 * delay timeout is not needed.
4697 */
James Smart0d2b6b82008-06-14 22:52:47 -04004698 lpfc_cancel_retry_delay_tmo(vport, ndlp);
James Smarta257bf92009-04-06 18:48:10 -04004699 spin_lock_irq(shost->host_lock);
4700 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
4701 spin_unlock_irq(shost->host_lock);
James Smart071fbd3d2006-04-15 11:53:20 -04004702 } else
dea31012005-04-17 16:05:31 -05004703 ndlp = NULL;
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004704 } else {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004705 /* If we've already received a PLOGI from this NPort,
James Smart87af33f2007-10-27 13:37:43 -04004706 * or we are already in the process of discovery on it,
4707 * we don't need to try to discover it again.
4708 */
James Smart685f0bf2007-04-25 09:53:08 -04004709 if (ndlp->nlp_state == NLP_STE_ADISC_ISSUE ||
James Smart87af33f2007-10-27 13:37:43 -04004710 ndlp->nlp_state == NLP_STE_PLOGI_ISSUE ||
4711 ndlp->nlp_flag & NLP_RCV_PLOGI)
dea31012005-04-17 16:05:31 -05004712 return NULL;
James Smart2e0fef82007-06-17 19:56:36 -05004713 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
4714 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05004715 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
James Smart2e0fef82007-06-17 19:56:36 -05004716 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05004717 }
4718 return ndlp;
4719}
4720
4721/* Build a list of nodes to discover based on the loopmap */
4722void
James Smart2e0fef82007-06-17 19:56:36 -05004723lpfc_disc_list_loopmap(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05004724{
James Smart2e0fef82007-06-17 19:56:36 -05004725 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05004726 int j;
4727 uint32_t alpa, index;
4728
James Smart2e0fef82007-06-17 19:56:36 -05004729 if (!lpfc_is_link_up(phba))
dea31012005-04-17 16:05:31 -05004730 return;
James Smart2e0fef82007-06-17 19:56:36 -05004731
James Smart76a95d72010-11-20 23:11:48 -05004732 if (phba->fc_topology != LPFC_TOPOLOGY_LOOP)
dea31012005-04-17 16:05:31 -05004733 return;
dea31012005-04-17 16:05:31 -05004734
4735 /* Check for loop map present or not */
4736 if (phba->alpa_map[0]) {
4737 for (j = 1; j <= phba->alpa_map[0]; j++) {
4738 alpa = phba->alpa_map[j];
James Smart2e0fef82007-06-17 19:56:36 -05004739 if (((vport->fc_myDID & 0xff) == alpa) || (alpa == 0))
dea31012005-04-17 16:05:31 -05004740 continue;
James Smart2e0fef82007-06-17 19:56:36 -05004741 lpfc_setup_disc_node(vport, alpa);
dea31012005-04-17 16:05:31 -05004742 }
4743 } else {
4744 /* No alpamap, so try all alpa's */
4745 for (j = 0; j < FC_MAXLOOP; j++) {
4746 /* If cfg_scan_down is set, start from highest
4747 * ALPA (0xef) to lowest (0x1).
4748 */
James Smart3de2a652007-08-02 11:09:59 -04004749 if (vport->cfg_scan_down)
dea31012005-04-17 16:05:31 -05004750 index = j;
4751 else
4752 index = FC_MAXLOOP - j - 1;
4753 alpa = lpfcAlpaArray[index];
James Smart2e0fef82007-06-17 19:56:36 -05004754 if ((vport->fc_myDID & 0xff) == alpa)
dea31012005-04-17 16:05:31 -05004755 continue;
James Smart2e0fef82007-06-17 19:56:36 -05004756 lpfc_setup_disc_node(vport, alpa);
dea31012005-04-17 16:05:31 -05004757 }
4758 }
4759 return;
4760}
4761
dea31012005-04-17 16:05:31 -05004762void
James Smart2e0fef82007-06-17 19:56:36 -05004763lpfc_issue_clear_la(struct lpfc_hba *phba, struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05004764{
dea31012005-04-17 16:05:31 -05004765 LPFC_MBOXQ_t *mbox;
James Smart2e0fef82007-06-17 19:56:36 -05004766 struct lpfc_sli *psli = &phba->sli;
4767 struct lpfc_sli_ring *extra_ring = &psli->ring[psli->extra_ring];
4768 struct lpfc_sli_ring *fcp_ring = &psli->ring[psli->fcp_ring];
4769 struct lpfc_sli_ring *next_ring = &psli->ring[psli->next_ring];
4770 int rc;
4771
James Smart92d7f7b2007-06-17 19:56:38 -05004772 /*
4773 * if it's not a physical port or if we already send
4774 * clear_la then don't send it.
4775 */
4776 if ((phba->link_state >= LPFC_CLEAR_LA) ||
James Smartda0436e2009-05-22 14:51:39 -04004777 (vport->port_type != LPFC_PHYSICAL_PORT) ||
4778 (phba->sli_rev == LPFC_SLI_REV4))
James Smart92d7f7b2007-06-17 19:56:38 -05004779 return;
4780
James Smart2e0fef82007-06-17 19:56:36 -05004781 /* Link up discovery */
4782 if ((mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL)) != NULL) {
4783 phba->link_state = LPFC_CLEAR_LA;
4784 lpfc_clear_la(phba, mbox);
4785 mbox->mbox_cmpl = lpfc_mbx_cmpl_clear_la;
4786 mbox->vport = vport;
James Smart0b727fe2007-10-27 13:37:25 -04004787 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
James Smart2e0fef82007-06-17 19:56:36 -05004788 if (rc == MBX_NOT_FINISHED) {
4789 mempool_free(mbox, phba->mbox_mem_pool);
4790 lpfc_disc_flush_list(vport);
4791 extra_ring->flag &= ~LPFC_STOP_IOCB_EVENT;
4792 fcp_ring->flag &= ~LPFC_STOP_IOCB_EVENT;
4793 next_ring->flag &= ~LPFC_STOP_IOCB_EVENT;
James Smart92d7f7b2007-06-17 19:56:38 -05004794 phba->link_state = LPFC_HBA_ERROR;
4795 }
4796 }
4797}
4798
4799/* Reg_vpi to tell firmware to resume normal operations */
4800void
4801lpfc_issue_reg_vpi(struct lpfc_hba *phba, struct lpfc_vport *vport)
4802{
4803 LPFC_MBOXQ_t *regvpimbox;
4804
4805 regvpimbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4806 if (regvpimbox) {
James Smartda0436e2009-05-22 14:51:39 -04004807 lpfc_reg_vpi(vport, regvpimbox);
James Smart92d7f7b2007-06-17 19:56:38 -05004808 regvpimbox->mbox_cmpl = lpfc_mbx_cmpl_reg_vpi;
4809 regvpimbox->vport = vport;
James Smart0b727fe2007-10-27 13:37:25 -04004810 if (lpfc_sli_issue_mbox(phba, regvpimbox, MBX_NOWAIT)
James Smart92d7f7b2007-06-17 19:56:38 -05004811 == MBX_NOT_FINISHED) {
4812 mempool_free(regvpimbox, phba->mbox_mem_pool);
James Smart2e0fef82007-06-17 19:56:36 -05004813 }
4814 }
4815}
4816
4817/* Start Link up / RSCN discovery on NPR nodes */
4818void
4819lpfc_disc_start(struct lpfc_vport *vport)
4820{
4821 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
4822 struct lpfc_hba *phba = vport->phba;
James Smart685f0bf2007-04-25 09:53:08 -04004823 uint32_t num_sent;
dea31012005-04-17 16:05:31 -05004824 uint32_t clear_la_pending;
James Smart685f0bf2007-04-25 09:53:08 -04004825 int did_changed;
dea31012005-04-17 16:05:31 -05004826
James Smart2e0fef82007-06-17 19:56:36 -05004827 if (!lpfc_is_link_up(phba))
dea31012005-04-17 16:05:31 -05004828 return;
James Smart2e0fef82007-06-17 19:56:36 -05004829
4830 if (phba->link_state == LPFC_CLEAR_LA)
dea31012005-04-17 16:05:31 -05004831 clear_la_pending = 1;
4832 else
4833 clear_la_pending = 0;
4834
James Smart2e0fef82007-06-17 19:56:36 -05004835 if (vport->port_state < LPFC_VPORT_READY)
4836 vport->port_state = LPFC_DISC_AUTH;
dea31012005-04-17 16:05:31 -05004837
James Smart2e0fef82007-06-17 19:56:36 -05004838 lpfc_set_disctmo(vport);
4839
4840 if (vport->fc_prevDID == vport->fc_myDID)
dea31012005-04-17 16:05:31 -05004841 did_changed = 0;
James Smart2e0fef82007-06-17 19:56:36 -05004842 else
dea31012005-04-17 16:05:31 -05004843 did_changed = 1;
James Smart2e0fef82007-06-17 19:56:36 -05004844
4845 vport->fc_prevDID = vport->fc_myDID;
4846 vport->num_disc_nodes = 0;
dea31012005-04-17 16:05:31 -05004847
4848 /* Start Discovery state <hba_state> */
James Smarte8b62012007-08-02 11:10:09 -04004849 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
4850 "0202 Start Discovery hba state x%x "
4851 "Data: x%x x%x x%x\n",
4852 vport->port_state, vport->fc_flag, vport->fc_plogi_cnt,
4853 vport->fc_adisc_cnt);
dea31012005-04-17 16:05:31 -05004854
4855 /* First do ADISCs - if any */
James Smart2e0fef82007-06-17 19:56:36 -05004856 num_sent = lpfc_els_disc_adisc(vport);
dea31012005-04-17 16:05:31 -05004857
4858 if (num_sent)
4859 return;
4860
James Smart6d368e52011-05-24 11:44:12 -04004861 /* Register the VPI for SLI3, NON-NPIV only. */
James Smart92d7f7b2007-06-17 19:56:38 -05004862 if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
James Smart1b32f6a2008-02-08 18:49:39 -05004863 !(vport->fc_flag & FC_PT2PT) &&
James Smartda0436e2009-05-22 14:51:39 -04004864 !(vport->fc_flag & FC_RSCN_MODE) &&
4865 (phba->sli_rev < LPFC_SLI_REV4)) {
James Smart92d7f7b2007-06-17 19:56:38 -05004866 lpfc_issue_reg_vpi(phba, vport);
4867 return;
4868 }
James Smart2e0fef82007-06-17 19:56:36 -05004869
James Smart92d7f7b2007-06-17 19:56:38 -05004870 /*
4871 * For SLI2, we need to set port_state to READY and continue
4872 * discovery.
4873 */
4874 if (vport->port_state < LPFC_VPORT_READY && !clear_la_pending) {
4875 /* If we get here, there is nothing to ADISC */
4876 if (vport->port_type == LPFC_PHYSICAL_PORT)
4877 lpfc_issue_clear_la(phba, vport);
4878
4879 if (!(vport->fc_flag & FC_ABORT_DISCOVERY)) {
James Smart2e0fef82007-06-17 19:56:36 -05004880 vport->num_disc_nodes = 0;
4881 /* go thru NPR nodes and issue ELS PLOGIs */
4882 if (vport->fc_npr_cnt)
4883 lpfc_els_disc_plogi(vport);
4884
4885 if (!vport->num_disc_nodes) {
4886 spin_lock_irq(shost->host_lock);
4887 vport->fc_flag &= ~FC_NDISC_ACTIVE;
4888 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05004889 lpfc_can_disctmo(vport);
dea31012005-04-17 16:05:31 -05004890 }
4891 }
James Smart92d7f7b2007-06-17 19:56:38 -05004892 vport->port_state = LPFC_VPORT_READY;
dea31012005-04-17 16:05:31 -05004893 } else {
4894 /* Next do PLOGIs - if any */
James Smart2e0fef82007-06-17 19:56:36 -05004895 num_sent = lpfc_els_disc_plogi(vport);
dea31012005-04-17 16:05:31 -05004896
4897 if (num_sent)
4898 return;
4899
James Smart2e0fef82007-06-17 19:56:36 -05004900 if (vport->fc_flag & FC_RSCN_MODE) {
dea31012005-04-17 16:05:31 -05004901 /* Check to see if more RSCNs came in while we
4902 * were processing this one.
4903 */
James Smart2e0fef82007-06-17 19:56:36 -05004904 if ((vport->fc_rscn_id_cnt == 0) &&
4905 (!(vport->fc_flag & FC_RSCN_DISCOVERY))) {
4906 spin_lock_irq(shost->host_lock);
4907 vport->fc_flag &= ~FC_RSCN_MODE;
4908 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05004909 lpfc_can_disctmo(vport);
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004910 } else
James Smart2e0fef82007-06-17 19:56:36 -05004911 lpfc_els_handle_rscn(vport);
dea31012005-04-17 16:05:31 -05004912 }
4913 }
4914 return;
4915}
4916
4917/*
4918 * Ignore completion for all IOCBs on tx and txcmpl queue for ELS
4919 * ring the match the sppecified nodelist.
4920 */
4921static void
James Smart2e0fef82007-06-17 19:56:36 -05004922lpfc_free_tx(struct lpfc_hba *phba, struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05004923{
James Smart2534ba72007-04-25 09:52:20 -04004924 LIST_HEAD(completions);
dea31012005-04-17 16:05:31 -05004925 struct lpfc_sli *psli;
4926 IOCB_t *icmd;
4927 struct lpfc_iocbq *iocb, *next_iocb;
4928 struct lpfc_sli_ring *pring;
dea31012005-04-17 16:05:31 -05004929
4930 psli = &phba->sli;
4931 pring = &psli->ring[LPFC_ELS_RING];
4932
4933 /* Error matching iocb on txq or txcmplq
4934 * First check the txq.
4935 */
James Smart2e0fef82007-06-17 19:56:36 -05004936 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05004937 list_for_each_entry_safe(iocb, next_iocb, &pring->txq, list) {
4938 if (iocb->context1 != ndlp) {
4939 continue;
4940 }
4941 icmd = &iocb->iocb;
4942 if ((icmd->ulpCommand == CMD_ELS_REQUEST64_CR) ||
4943 (icmd->ulpCommand == CMD_XMIT_ELS_RSP64_CX)) {
4944
James Smart2534ba72007-04-25 09:52:20 -04004945 list_move_tail(&iocb->list, &completions);
dea31012005-04-17 16:05:31 -05004946 pring->txq_cnt--;
dea31012005-04-17 16:05:31 -05004947 }
4948 }
4949
4950 /* Next check the txcmplq */
4951 list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq, list) {
4952 if (iocb->context1 != ndlp) {
4953 continue;
4954 }
4955 icmd = &iocb->iocb;
James Smart2e0fef82007-06-17 19:56:36 -05004956 if (icmd->ulpCommand == CMD_ELS_REQUEST64_CR ||
4957 icmd->ulpCommand == CMD_XMIT_ELS_RSP64_CX) {
James Smart2534ba72007-04-25 09:52:20 -04004958 lpfc_sli_issue_abort_iotag(phba, pring, iocb);
dea31012005-04-17 16:05:31 -05004959 }
4960 }
James Smart2e0fef82007-06-17 19:56:36 -05004961 spin_unlock_irq(&phba->hbalock);
James Smart2534ba72007-04-25 09:52:20 -04004962
James Smarta257bf92009-04-06 18:48:10 -04004963 /* Cancel all the IOCBs from the completions list */
4964 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
4965 IOERR_SLI_ABORTED);
dea31012005-04-17 16:05:31 -05004966}
4967
Adrian Bunka6ababd2007-11-05 18:07:33 +01004968static void
James Smart2e0fef82007-06-17 19:56:36 -05004969lpfc_disc_flush_list(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05004970{
4971 struct lpfc_nodelist *ndlp, *next_ndlp;
James Smart2e0fef82007-06-17 19:56:36 -05004972 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05004973
James Smart2e0fef82007-06-17 19:56:36 -05004974 if (vport->fc_plogi_cnt || vport->fc_adisc_cnt) {
4975 list_for_each_entry_safe(ndlp, next_ndlp, &vport->fc_nodes,
James Smart685f0bf2007-04-25 09:53:08 -04004976 nlp_listp) {
James Smarte47c9092008-02-08 18:49:26 -05004977 if (!NLP_CHK_NODE_ACT(ndlp))
4978 continue;
James Smart685f0bf2007-04-25 09:53:08 -04004979 if (ndlp->nlp_state == NLP_STE_PLOGI_ISSUE ||
4980 ndlp->nlp_state == NLP_STE_ADISC_ISSUE) {
4981 lpfc_free_tx(phba, ndlp);
James Smart685f0bf2007-04-25 09:53:08 -04004982 }
dea31012005-04-17 16:05:31 -05004983 }
4984 }
dea31012005-04-17 16:05:31 -05004985}
4986
James Smart92d7f7b2007-06-17 19:56:38 -05004987void
4988lpfc_cleanup_discovery_resources(struct lpfc_vport *vport)
4989{
4990 lpfc_els_flush_rscn(vport);
4991 lpfc_els_flush_cmd(vport);
4992 lpfc_disc_flush_list(vport);
4993}
4994
dea31012005-04-17 16:05:31 -05004995/*****************************************************************************/
4996/*
4997 * NAME: lpfc_disc_timeout
4998 *
4999 * FUNCTION: Fibre Channel driver discovery timeout routine.
5000 *
5001 * EXECUTION ENVIRONMENT: interrupt only
5002 *
5003 * CALLED FROM:
5004 * Timer function
5005 *
5006 * RETURNS:
5007 * none
5008 */
5009/*****************************************************************************/
5010void
5011lpfc_disc_timeout(unsigned long ptr)
5012{
James Smart2e0fef82007-06-17 19:56:36 -05005013 struct lpfc_vport *vport = (struct lpfc_vport *) ptr;
5014 struct lpfc_hba *phba = vport->phba;
James Smart5e9d9b82008-06-14 22:52:53 -04005015 uint32_t tmo_posted;
dea31012005-04-17 16:05:31 -05005016 unsigned long flags = 0;
5017
5018 if (unlikely(!phba))
5019 return;
5020
James Smart5e9d9b82008-06-14 22:52:53 -04005021 spin_lock_irqsave(&vport->work_port_lock, flags);
5022 tmo_posted = vport->work_port_events & WORKER_DISC_TMO;
5023 if (!tmo_posted)
James Smart2e0fef82007-06-17 19:56:36 -05005024 vport->work_port_events |= WORKER_DISC_TMO;
James Smart5e9d9b82008-06-14 22:52:53 -04005025 spin_unlock_irqrestore(&vport->work_port_lock, flags);
James Smart2e0fef82007-06-17 19:56:36 -05005026
James Smart5e9d9b82008-06-14 22:52:53 -04005027 if (!tmo_posted)
5028 lpfc_worker_wake_up(phba);
dea31012005-04-17 16:05:31 -05005029 return;
5030}
5031
5032static void
James Smart2e0fef82007-06-17 19:56:36 -05005033lpfc_disc_timeout_handler(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05005034{
James Smart2e0fef82007-06-17 19:56:36 -05005035 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
5036 struct lpfc_hba *phba = vport->phba;
5037 struct lpfc_sli *psli = &phba->sli;
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05005038 struct lpfc_nodelist *ndlp, *next_ndlp;
James Smart92d7f7b2007-06-17 19:56:38 -05005039 LPFC_MBOXQ_t *initlinkmbox;
dea31012005-04-17 16:05:31 -05005040 int rc, clrlaerr = 0;
5041
James Smart2e0fef82007-06-17 19:56:36 -05005042 if (!(vport->fc_flag & FC_DISC_TMO))
dea31012005-04-17 16:05:31 -05005043 return;
5044
James Smart2e0fef82007-06-17 19:56:36 -05005045 spin_lock_irq(shost->host_lock);
5046 vport->fc_flag &= ~FC_DISC_TMO;
5047 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05005048
James Smart858c9f62007-06-17 19:56:39 -05005049 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
5050 "disc timeout: state:x%x rtry:x%x flg:x%x",
5051 vport->port_state, vport->fc_ns_retry, vport->fc_flag);
5052
James Smart2e0fef82007-06-17 19:56:36 -05005053 switch (vport->port_state) {
dea31012005-04-17 16:05:31 -05005054
5055 case LPFC_LOCAL_CFG_LINK:
James Smart2e0fef82007-06-17 19:56:36 -05005056 /* port_state is identically LPFC_LOCAL_CFG_LINK while waiting for
5057 * FAN
5058 */
5059 /* FAN timeout */
James Smarte8b62012007-08-02 11:10:09 -04005060 lpfc_printf_vlog(vport, KERN_WARNING, LOG_DISCOVERY,
5061 "0221 FAN timeout\n");
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05005062 /* Start discovery by sending FLOGI, clean up old rpis */
James Smart2e0fef82007-06-17 19:56:36 -05005063 list_for_each_entry_safe(ndlp, next_ndlp, &vport->fc_nodes,
James Smart685f0bf2007-04-25 09:53:08 -04005064 nlp_listp) {
James Smarte47c9092008-02-08 18:49:26 -05005065 if (!NLP_CHK_NODE_ACT(ndlp))
5066 continue;
James Smart685f0bf2007-04-25 09:53:08 -04005067 if (ndlp->nlp_state != NLP_STE_NPR_NODE)
5068 continue;
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05005069 if (ndlp->nlp_type & NLP_FABRIC) {
5070 /* Clean up the ndlp on Fabric connections */
James Smart2e0fef82007-06-17 19:56:36 -05005071 lpfc_drop_node(vport, ndlp);
James Smart87af33f2007-10-27 13:37:43 -04005072
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05005073 } else if (!(ndlp->nlp_flag & NLP_NPR_ADISC)) {
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05005074 /* Fail outstanding IO now since device
5075 * is marked for PLOGI.
5076 */
James Smart2e0fef82007-06-17 19:56:36 -05005077 lpfc_unreg_rpi(vport, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05005078 }
5079 }
James Smart92d7f7b2007-06-17 19:56:38 -05005080 if (vport->port_state != LPFC_FLOGI) {
James Smart76a95d72010-11-20 23:11:48 -05005081 if (phba->sli_rev <= LPFC_SLI_REV3)
5082 lpfc_initial_flogi(vport);
5083 else
5084 lpfc_issue_init_vfi(vport);
James Smart0ff10d42008-01-11 01:52:36 -05005085 return;
James Smart92d7f7b2007-06-17 19:56:38 -05005086 }
dea31012005-04-17 16:05:31 -05005087 break;
5088
James Smart92d7f7b2007-06-17 19:56:38 -05005089 case LPFC_FDISC:
dea31012005-04-17 16:05:31 -05005090 case LPFC_FLOGI:
James Smart2e0fef82007-06-17 19:56:36 -05005091 /* port_state is identically LPFC_FLOGI while waiting for FLOGI cmpl */
dea31012005-04-17 16:05:31 -05005092 /* Initial FLOGI timeout */
James Smarte8b62012007-08-02 11:10:09 -04005093 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
5094 "0222 Initial %s timeout\n",
James Smart87af33f2007-10-27 13:37:43 -04005095 vport->vpi ? "FDISC" : "FLOGI");
dea31012005-04-17 16:05:31 -05005096
5097 /* Assume no Fabric and go on with discovery.
5098 * Check for outstanding ELS FLOGI to abort.
5099 */
5100
5101 /* FLOGI failed, so just use loop map to make discovery list */
James Smart2e0fef82007-06-17 19:56:36 -05005102 lpfc_disc_list_loopmap(vport);
dea31012005-04-17 16:05:31 -05005103
5104 /* Start discovery */
James Smart2e0fef82007-06-17 19:56:36 -05005105 lpfc_disc_start(vport);
dea31012005-04-17 16:05:31 -05005106 break;
5107
5108 case LPFC_FABRIC_CFG_LINK:
5109 /* hba_state is identically LPFC_FABRIC_CFG_LINK while waiting for
5110 NameServer login */
James Smarte8b62012007-08-02 11:10:09 -04005111 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
5112 "0223 Timeout while waiting for "
5113 "NameServer login\n");
dea31012005-04-17 16:05:31 -05005114 /* Next look for NameServer ndlp */
James Smart2e0fef82007-06-17 19:56:36 -05005115 ndlp = lpfc_findnode_did(vport, NameServer_DID);
James Smarte47c9092008-02-08 18:49:26 -05005116 if (ndlp && NLP_CHK_NODE_ACT(ndlp))
James Smart87af33f2007-10-27 13:37:43 -04005117 lpfc_els_abort(phba, ndlp);
5118
5119 /* ReStart discovery */
5120 goto restart_disc;
dea31012005-04-17 16:05:31 -05005121
5122 case LPFC_NS_QRY:
5123 /* Check for wait for NameServer Rsp timeout */
James Smarte8b62012007-08-02 11:10:09 -04005124 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
5125 "0224 NameServer Query timeout "
5126 "Data: x%x x%x\n",
5127 vport->fc_ns_retry, LPFC_MAX_NS_RETRY);
dea31012005-04-17 16:05:31 -05005128
James Smart92d7f7b2007-06-17 19:56:38 -05005129 if (vport->fc_ns_retry < LPFC_MAX_NS_RETRY) {
5130 /* Try it one more time */
5131 vport->fc_ns_retry++;
5132 rc = lpfc_ns_cmd(vport, SLI_CTNS_GID_FT,
5133 vport->fc_ns_retry, 0);
5134 if (rc == 0)
5135 break;
dea31012005-04-17 16:05:31 -05005136 }
James Smart92d7f7b2007-06-17 19:56:38 -05005137 vport->fc_ns_retry = 0;
dea31012005-04-17 16:05:31 -05005138
James Smart87af33f2007-10-27 13:37:43 -04005139restart_disc:
James Smart92d7f7b2007-06-17 19:56:38 -05005140 /*
5141 * Discovery is over.
5142 * set port_state to PORT_READY if SLI2.
5143 * cmpl_reg_vpi will set port_state to READY for SLI3.
5144 */
James Smart3772a992009-05-22 14:50:54 -04005145 if (phba->sli_rev < LPFC_SLI_REV4) {
5146 if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED)
5147 lpfc_issue_reg_vpi(phba, vport);
James Smart6d368e52011-05-24 11:44:12 -04005148 else {
James Smart3772a992009-05-22 14:50:54 -04005149 lpfc_issue_clear_la(phba, vport);
5150 vport->port_state = LPFC_VPORT_READY;
5151 }
dea31012005-04-17 16:05:31 -05005152 }
5153
5154 /* Setup and issue mailbox INITIALIZE LINK command */
5155 initlinkmbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5156 if (!initlinkmbox) {
James Smarte8b62012007-08-02 11:10:09 -04005157 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
5158 "0206 Device Discovery "
5159 "completion error\n");
James Smart2e0fef82007-06-17 19:56:36 -05005160 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -05005161 break;
5162 }
5163
5164 lpfc_linkdown(phba);
5165 lpfc_init_link(phba, initlinkmbox, phba->cfg_topology,
5166 phba->cfg_link_speed);
James Smart04c68492009-05-22 14:52:52 -04005167 initlinkmbox->u.mb.un.varInitLnk.lipsr_AL_PA = 0;
James Smarted957682007-06-17 19:56:37 -05005168 initlinkmbox->vport = vport;
James Smart92d7f7b2007-06-17 19:56:38 -05005169 initlinkmbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
James Smart0b727fe2007-10-27 13:37:25 -04005170 rc = lpfc_sli_issue_mbox(phba, initlinkmbox, MBX_NOWAIT);
James Smart5b8bd0c2007-04-25 09:52:49 -04005171 lpfc_set_loopback_flag(phba);
dea31012005-04-17 16:05:31 -05005172 if (rc == MBX_NOT_FINISHED)
5173 mempool_free(initlinkmbox, phba->mbox_mem_pool);
5174
5175 break;
5176
5177 case LPFC_DISC_AUTH:
5178 /* Node Authentication timeout */
James Smarte8b62012007-08-02 11:10:09 -04005179 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
5180 "0227 Node Authentication timeout\n");
James Smart2e0fef82007-06-17 19:56:36 -05005181 lpfc_disc_flush_list(vport);
5182
James Smart92d7f7b2007-06-17 19:56:38 -05005183 /*
5184 * set port_state to PORT_READY if SLI2.
5185 * cmpl_reg_vpi will set port_state to READY for SLI3.
5186 */
James Smart3772a992009-05-22 14:50:54 -04005187 if (phba->sli_rev < LPFC_SLI_REV4) {
5188 if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED)
5189 lpfc_issue_reg_vpi(phba, vport);
5190 else { /* NPIV Not enabled */
5191 lpfc_issue_clear_la(phba, vport);
5192 vport->port_state = LPFC_VPORT_READY;
5193 }
dea31012005-04-17 16:05:31 -05005194 }
5195 break;
5196
James Smart2e0fef82007-06-17 19:56:36 -05005197 case LPFC_VPORT_READY:
5198 if (vport->fc_flag & FC_RSCN_MODE) {
James Smarte8b62012007-08-02 11:10:09 -04005199 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
5200 "0231 RSCN timeout Data: x%x "
5201 "x%x\n",
5202 vport->fc_ns_retry, LPFC_MAX_NS_RETRY);
dea31012005-04-17 16:05:31 -05005203
5204 /* Cleanup any outstanding ELS commands */
James Smart2e0fef82007-06-17 19:56:36 -05005205 lpfc_els_flush_cmd(vport);
dea31012005-04-17 16:05:31 -05005206
James Smart2e0fef82007-06-17 19:56:36 -05005207 lpfc_els_flush_rscn(vport);
5208 lpfc_disc_flush_list(vport);
dea31012005-04-17 16:05:31 -05005209 }
5210 break;
James Smart2e0fef82007-06-17 19:56:36 -05005211
James Smart92d7f7b2007-06-17 19:56:38 -05005212 default:
James Smarte8b62012007-08-02 11:10:09 -04005213 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
James Smartd7c255b2008-08-24 21:50:00 -04005214 "0273 Unexpected discovery timeout, "
James Smarte8b62012007-08-02 11:10:09 -04005215 "vport State x%x\n", vport->port_state);
James Smart2e0fef82007-06-17 19:56:36 -05005216 break;
5217 }
5218
5219 switch (phba->link_state) {
5220 case LPFC_CLEAR_LA:
James Smart92d7f7b2007-06-17 19:56:38 -05005221 /* CLEAR LA timeout */
James Smarte8b62012007-08-02 11:10:09 -04005222 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
5223 "0228 CLEAR LA timeout\n");
James Smart2e0fef82007-06-17 19:56:36 -05005224 clrlaerr = 1;
5225 break;
5226
James Smart09372822008-01-11 01:52:54 -05005227 case LPFC_LINK_UP:
5228 lpfc_issue_clear_la(phba, vport);
5229 /* Drop thru */
James Smart2e0fef82007-06-17 19:56:36 -05005230 case LPFC_LINK_UNKNOWN:
5231 case LPFC_WARM_START:
5232 case LPFC_INIT_START:
5233 case LPFC_INIT_MBX_CMDS:
5234 case LPFC_LINK_DOWN:
James Smart2e0fef82007-06-17 19:56:36 -05005235 case LPFC_HBA_ERROR:
James Smarte8b62012007-08-02 11:10:09 -04005236 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
5237 "0230 Unexpected timeout, hba link "
5238 "state x%x\n", phba->link_state);
James Smart2e0fef82007-06-17 19:56:36 -05005239 clrlaerr = 1;
5240 break;
James Smart92d7f7b2007-06-17 19:56:38 -05005241
5242 case LPFC_HBA_READY:
5243 break;
dea31012005-04-17 16:05:31 -05005244 }
5245
5246 if (clrlaerr) {
James Smart2e0fef82007-06-17 19:56:36 -05005247 lpfc_disc_flush_list(vport);
James Smarta4bc3372006-12-02 13:34:16 -05005248 psli->ring[(psli->extra_ring)].flag &= ~LPFC_STOP_IOCB_EVENT;
dea31012005-04-17 16:05:31 -05005249 psli->ring[(psli->fcp_ring)].flag &= ~LPFC_STOP_IOCB_EVENT;
5250 psli->ring[(psli->next_ring)].flag &= ~LPFC_STOP_IOCB_EVENT;
James Smart2e0fef82007-06-17 19:56:36 -05005251 vport->port_state = LPFC_VPORT_READY;
dea31012005-04-17 16:05:31 -05005252 }
5253
5254 return;
5255}
5256
dea31012005-04-17 16:05:31 -05005257/*
5258 * This routine handles processing a NameServer REG_LOGIN mailbox
5259 * command upon completion. It is setup in the LPFC_MBOXQ
5260 * as the completion routine when the command is
5261 * handed off to the SLI layer.
5262 */
5263void
James Smart2e0fef82007-06-17 19:56:36 -05005264lpfc_mbx_cmpl_fdmi_reg_login(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
dea31012005-04-17 16:05:31 -05005265{
James Smart04c68492009-05-22 14:52:52 -04005266 MAILBOX_t *mb = &pmb->u.mb;
James Smart2e0fef82007-06-17 19:56:36 -05005267 struct lpfc_dmabuf *mp = (struct lpfc_dmabuf *) (pmb->context1);
5268 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) pmb->context2;
5269 struct lpfc_vport *vport = pmb->vport;
dea31012005-04-17 16:05:31 -05005270
5271 pmb->context1 = NULL;
James Smartd439d282010-09-29 11:18:45 -04005272 pmb->context2 = NULL;
dea31012005-04-17 16:05:31 -05005273
James Smart6d368e52011-05-24 11:44:12 -04005274 if (phba->sli_rev < LPFC_SLI_REV4)
5275 ndlp->nlp_rpi = mb->un.varWords[0];
James Smart40426292010-12-15 17:58:10 -05005276 ndlp->nlp_flag |= NLP_RPI_REGISTERED;
dea31012005-04-17 16:05:31 -05005277 ndlp->nlp_type |= NLP_FABRIC;
James Smart2e0fef82007-06-17 19:56:36 -05005278 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
dea31012005-04-17 16:05:31 -05005279
James Smart2e0fef82007-06-17 19:56:36 -05005280 /*
5281 * Start issuing Fabric-Device Management Interface (FDMI) command to
5282 * 0xfffffa (FDMI well known port) or Delay issuing FDMI command if
5283 * fdmi-on=2 (supporting RPA/hostnmae)
dea31012005-04-17 16:05:31 -05005284 */
James Smart2e0fef82007-06-17 19:56:36 -05005285
James Smart3de2a652007-08-02 11:09:59 -04005286 if (vport->cfg_fdmi_on == 1)
James Smart2e0fef82007-06-17 19:56:36 -05005287 lpfc_fdmi_cmd(vport, ndlp, SLI_MGMT_DHBA);
5288 else
5289 mod_timer(&vport->fc_fdmitmo, jiffies + HZ * 60);
dea31012005-04-17 16:05:31 -05005290
James Smartfa4066b2008-01-11 01:53:27 -05005291 /* decrement the node reference count held for this callback
5292 * function.
5293 */
James Smart329f9bc2007-04-25 09:53:01 -04005294 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05005295 lpfc_mbuf_free(phba, mp->virt, mp->phys);
5296 kfree(mp);
James Smart329f9bc2007-04-25 09:53:01 -04005297 mempool_free(pmb, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -05005298
5299 return;
5300}
5301
James Smart685f0bf2007-04-25 09:53:08 -04005302static int
5303lpfc_filter_by_rpi(struct lpfc_nodelist *ndlp, void *param)
5304{
5305 uint16_t *rpi = param;
5306
5307 return ndlp->nlp_rpi == *rpi;
5308}
5309
5310static int
5311lpfc_filter_by_wwpn(struct lpfc_nodelist *ndlp, void *param)
5312{
5313 return memcmp(&ndlp->nlp_portname, param,
5314 sizeof(ndlp->nlp_portname)) == 0;
5315}
5316
Adrian Bunka6ababd2007-11-05 18:07:33 +01005317static struct lpfc_nodelist *
James Smart2e0fef82007-06-17 19:56:36 -05005318__lpfc_find_node(struct lpfc_vport *vport, node_filter filter, void *param)
dea31012005-04-17 16:05:31 -05005319{
James.Smart@Emulex.Com21568f52005-10-28 20:29:36 -04005320 struct lpfc_nodelist *ndlp;
dea31012005-04-17 16:05:31 -05005321
James Smart2e0fef82007-06-17 19:56:36 -05005322 list_for_each_entry(ndlp, &vport->fc_nodes, nlp_listp) {
James Smart87af33f2007-10-27 13:37:43 -04005323 if (filter(ndlp, param))
James Smart685f0bf2007-04-25 09:53:08 -04005324 return ndlp;
5325 }
James.Smart@Emulex.Com21568f52005-10-28 20:29:36 -04005326 return NULL;
dea31012005-04-17 16:05:31 -05005327}
5328
James Smart685f0bf2007-04-25 09:53:08 -04005329/*
5330 * This routine looks up the ndlp lists for the given RPI. If rpi found it
James Smart2e0fef82007-06-17 19:56:36 -05005331 * returns the node list element pointer else return NULL.
James Smart685f0bf2007-04-25 09:53:08 -04005332 */
5333struct lpfc_nodelist *
James Smart2e0fef82007-06-17 19:56:36 -05005334__lpfc_findnode_rpi(struct lpfc_vport *vport, uint16_t rpi)
James Smart685f0bf2007-04-25 09:53:08 -04005335{
James Smart2e0fef82007-06-17 19:56:36 -05005336 return __lpfc_find_node(vport, lpfc_filter_by_rpi, &rpi);
James Smart685f0bf2007-04-25 09:53:08 -04005337}
5338
James Smart488d1462006-03-07 15:02:37 -05005339/*
James Smart685f0bf2007-04-25 09:53:08 -04005340 * This routine looks up the ndlp lists for the given WWPN. If WWPN found it
James Smart2e0fef82007-06-17 19:56:36 -05005341 * returns the node element list pointer else return NULL.
James Smart488d1462006-03-07 15:02:37 -05005342 */
5343struct lpfc_nodelist *
James Smart2e0fef82007-06-17 19:56:36 -05005344lpfc_findnode_wwpn(struct lpfc_vport *vport, struct lpfc_name *wwpn)
James Smart488d1462006-03-07 15:02:37 -05005345{
James Smart2e0fef82007-06-17 19:56:36 -05005346 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart488d1462006-03-07 15:02:37 -05005347 struct lpfc_nodelist *ndlp;
James Smart488d1462006-03-07 15:02:37 -05005348
James Smart2e0fef82007-06-17 19:56:36 -05005349 spin_lock_irq(shost->host_lock);
5350 ndlp = __lpfc_find_node(vport, lpfc_filter_by_wwpn, wwpn);
5351 spin_unlock_irq(shost->host_lock);
James Smart858c9f62007-06-17 19:56:39 -05005352 return ndlp;
James Smart488d1462006-03-07 15:02:37 -05005353}
5354
James Smartcb69f7d2011-12-13 13:21:57 -05005355/*
5356 * This routine looks up the ndlp lists for the given RPI. If the rpi
5357 * is found, the routine returns the node element list pointer else
5358 * return NULL.
5359 */
5360struct lpfc_nodelist *
5361lpfc_findnode_rpi(struct lpfc_vport *vport, uint16_t rpi)
5362{
5363 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
5364 struct lpfc_nodelist *ndlp;
5365
5366 spin_lock_irq(shost->host_lock);
5367 ndlp = __lpfc_findnode_rpi(vport, rpi);
5368 spin_unlock_irq(shost->host_lock);
5369 return ndlp;
5370}
5371
5372/**
5373 * lpfc_find_vport_by_vpid - Find a vport on a HBA through vport identifier
5374 * @phba: pointer to lpfc hba data structure.
5375 * @vpi: the physical host virtual N_Port identifier.
5376 *
5377 * This routine finds a vport on a HBA (referred by @phba) through a
5378 * @vpi. The function walks the HBA's vport list and returns the address
5379 * of the vport with the matching @vpi.
5380 *
5381 * Return code
5382 * NULL - No vport with the matching @vpi found
5383 * Otherwise - Address to the vport with the matching @vpi.
5384 **/
5385struct lpfc_vport *
5386lpfc_find_vport_by_vpid(struct lpfc_hba *phba, uint16_t vpi)
5387{
5388 struct lpfc_vport *vport;
5389 unsigned long flags;
5390 int i = 0;
5391
5392 /* The physical ports are always vpi 0 - translate is unnecessary. */
5393 if (vpi > 0) {
5394 /*
5395 * Translate the physical vpi to the logical vpi. The
5396 * vport stores the logical vpi.
5397 */
5398 for (i = 0; i < phba->max_vpi; i++) {
5399 if (vpi == phba->vpi_ids[i])
5400 break;
5401 }
5402
5403 if (i >= phba->max_vpi) {
5404 lpfc_printf_log(phba, KERN_ERR, LOG_ELS,
5405 "2936 Could not find Vport mapped "
5406 "to vpi %d\n", vpi);
5407 return NULL;
5408 }
5409 }
5410
5411 spin_lock_irqsave(&phba->hbalock, flags);
5412 list_for_each_entry(vport, &phba->port_list, listentry) {
5413 if (vport->vpi == i) {
5414 spin_unlock_irqrestore(&phba->hbalock, flags);
5415 return vport;
5416 }
5417 }
5418 spin_unlock_irqrestore(&phba->hbalock, flags);
5419 return NULL;
5420}
5421
dea31012005-04-17 16:05:31 -05005422void
James Smart2e0fef82007-06-17 19:56:36 -05005423lpfc_nlp_init(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
5424 uint32_t did)
dea31012005-04-17 16:05:31 -05005425{
5426 memset(ndlp, 0, sizeof (struct lpfc_nodelist));
James Smart109f6ed2008-12-04 22:39:08 -05005427
5428 lpfc_initialize_node(vport, ndlp, did);
James Smart685f0bf2007-04-25 09:53:08 -04005429 INIT_LIST_HEAD(&ndlp->nlp_listp);
James Smart858c9f62007-06-17 19:56:39 -05005430
5431 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_NODE,
5432 "node init: did:x%x",
5433 ndlp->nlp_DID, 0, 0);
5434
dea31012005-04-17 16:05:31 -05005435 return;
5436}
James Smart329f9bc2007-04-25 09:53:01 -04005437
James Smart98c9ea52007-10-27 13:37:33 -04005438/* This routine releases all resources associated with a specifc NPort's ndlp
5439 * and mempool_free's the nodelist.
5440 */
James Smart311464e2007-08-02 11:10:37 -04005441static void
James Smart329f9bc2007-04-25 09:53:01 -04005442lpfc_nlp_release(struct kref *kref)
5443{
James Smarte47c9092008-02-08 18:49:26 -05005444 struct lpfc_hba *phba;
5445 unsigned long flags;
James Smart329f9bc2007-04-25 09:53:01 -04005446 struct lpfc_nodelist *ndlp = container_of(kref, struct lpfc_nodelist,
5447 kref);
James Smart858c9f62007-06-17 19:56:39 -05005448
5449 lpfc_debugfs_disc_trc(ndlp->vport, LPFC_DISC_TRC_NODE,
5450 "node release: did:x%x flg:x%x type:x%x",
5451 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_type);
5452
James Smarte47c9092008-02-08 18:49:26 -05005453 lpfc_printf_vlog(ndlp->vport, KERN_INFO, LOG_NODE,
5454 "0279 lpfc_nlp_release: ndlp:x%p "
5455 "usgmap:x%x refcnt:%d\n",
5456 (void *)ndlp, ndlp->nlp_usg_map,
5457 atomic_read(&ndlp->kref.refcount));
5458
5459 /* remove ndlp from action. */
James Smart2e0fef82007-06-17 19:56:36 -05005460 lpfc_nlp_remove(ndlp->vport, ndlp);
James Smarte47c9092008-02-08 18:49:26 -05005461
5462 /* clear the ndlp active flag for all release cases */
James Smarta257bf92009-04-06 18:48:10 -04005463 phba = ndlp->phba;
James Smarte47c9092008-02-08 18:49:26 -05005464 spin_lock_irqsave(&phba->ndlp_lock, flags);
5465 NLP_CLR_NODE_ACT(ndlp);
5466 spin_unlock_irqrestore(&phba->ndlp_lock, flags);
James Smart40426292010-12-15 17:58:10 -05005467 if (phba->sli_rev == LPFC_SLI_REV4)
5468 lpfc_sli4_free_rpi(phba, ndlp->nlp_rpi);
James Smarte47c9092008-02-08 18:49:26 -05005469
5470 /* free ndlp memory for final ndlp release */
James Smartea2151b2008-09-07 11:52:10 -04005471 if (NLP_CHK_FREE_REQ(ndlp)) {
5472 kfree(ndlp->lat_data);
James Smarta257bf92009-04-06 18:48:10 -04005473 mempool_free(ndlp, ndlp->phba->nlp_mem_pool);
James Smartea2151b2008-09-07 11:52:10 -04005474 }
James Smart329f9bc2007-04-25 09:53:01 -04005475}
5476
James Smart98c9ea52007-10-27 13:37:33 -04005477/* This routine bumps the reference count for a ndlp structure to ensure
5478 * that one discovery thread won't free a ndlp while another discovery thread
5479 * is using it.
5480 */
James Smart329f9bc2007-04-25 09:53:01 -04005481struct lpfc_nodelist *
5482lpfc_nlp_get(struct lpfc_nodelist *ndlp)
5483{
James Smarte47c9092008-02-08 18:49:26 -05005484 struct lpfc_hba *phba;
5485 unsigned long flags;
5486
James Smart98c9ea52007-10-27 13:37:33 -04005487 if (ndlp) {
5488 lpfc_debugfs_disc_trc(ndlp->vport, LPFC_DISC_TRC_NODE,
5489 "node get: did:x%x flg:x%x refcnt:x%x",
5490 ndlp->nlp_DID, ndlp->nlp_flag,
5491 atomic_read(&ndlp->kref.refcount));
James Smarte47c9092008-02-08 18:49:26 -05005492 /* The check of ndlp usage to prevent incrementing the
5493 * ndlp reference count that is in the process of being
5494 * released.
5495 */
James Smarta257bf92009-04-06 18:48:10 -04005496 phba = ndlp->phba;
James Smarte47c9092008-02-08 18:49:26 -05005497 spin_lock_irqsave(&phba->ndlp_lock, flags);
5498 if (!NLP_CHK_NODE_ACT(ndlp) || NLP_CHK_FREE_ACK(ndlp)) {
5499 spin_unlock_irqrestore(&phba->ndlp_lock, flags);
5500 lpfc_printf_vlog(ndlp->vport, KERN_WARNING, LOG_NODE,
5501 "0276 lpfc_nlp_get: ndlp:x%p "
5502 "usgmap:x%x refcnt:%d\n",
5503 (void *)ndlp, ndlp->nlp_usg_map,
5504 atomic_read(&ndlp->kref.refcount));
5505 return NULL;
5506 } else
5507 kref_get(&ndlp->kref);
5508 spin_unlock_irqrestore(&phba->ndlp_lock, flags);
James Smart98c9ea52007-10-27 13:37:33 -04005509 }
James Smart329f9bc2007-04-25 09:53:01 -04005510 return ndlp;
5511}
5512
James Smart98c9ea52007-10-27 13:37:33 -04005513/* This routine decrements the reference count for a ndlp structure. If the
James Smarte47c9092008-02-08 18:49:26 -05005514 * count goes to 0, this indicates the the associated nodelist should be
5515 * freed. Returning 1 indicates the ndlp resource has been released; on the
5516 * other hand, returning 0 indicates the ndlp resource has not been released
5517 * yet.
James Smart98c9ea52007-10-27 13:37:33 -04005518 */
James Smart329f9bc2007-04-25 09:53:01 -04005519int
5520lpfc_nlp_put(struct lpfc_nodelist *ndlp)
5521{
James Smarte47c9092008-02-08 18:49:26 -05005522 struct lpfc_hba *phba;
5523 unsigned long flags;
5524
5525 if (!ndlp)
5526 return 1;
5527
5528 lpfc_debugfs_disc_trc(ndlp->vport, LPFC_DISC_TRC_NODE,
5529 "node put: did:x%x flg:x%x refcnt:x%x",
5530 ndlp->nlp_DID, ndlp->nlp_flag,
5531 atomic_read(&ndlp->kref.refcount));
James Smarta257bf92009-04-06 18:48:10 -04005532 phba = ndlp->phba;
James Smarte47c9092008-02-08 18:49:26 -05005533 spin_lock_irqsave(&phba->ndlp_lock, flags);
5534 /* Check the ndlp memory free acknowledge flag to avoid the
5535 * possible race condition that kref_put got invoked again
5536 * after previous one has done ndlp memory free.
5537 */
5538 if (NLP_CHK_FREE_ACK(ndlp)) {
5539 spin_unlock_irqrestore(&phba->ndlp_lock, flags);
5540 lpfc_printf_vlog(ndlp->vport, KERN_WARNING, LOG_NODE,
5541 "0274 lpfc_nlp_put: ndlp:x%p "
5542 "usgmap:x%x refcnt:%d\n",
5543 (void *)ndlp, ndlp->nlp_usg_map,
5544 atomic_read(&ndlp->kref.refcount));
5545 return 1;
James Smart98c9ea52007-10-27 13:37:33 -04005546 }
James Smarte47c9092008-02-08 18:49:26 -05005547 /* Check the ndlp inactivate log flag to avoid the possible
5548 * race condition that kref_put got invoked again after ndlp
5549 * is already in inactivating state.
5550 */
5551 if (NLP_CHK_IACT_REQ(ndlp)) {
5552 spin_unlock_irqrestore(&phba->ndlp_lock, flags);
5553 lpfc_printf_vlog(ndlp->vport, KERN_WARNING, LOG_NODE,
5554 "0275 lpfc_nlp_put: ndlp:x%p "
5555 "usgmap:x%x refcnt:%d\n",
5556 (void *)ndlp, ndlp->nlp_usg_map,
5557 atomic_read(&ndlp->kref.refcount));
5558 return 1;
5559 }
5560 /* For last put, mark the ndlp usage flags to make sure no
5561 * other kref_get and kref_put on the same ndlp shall get
5562 * in between the process when the final kref_put has been
5563 * invoked on this ndlp.
5564 */
5565 if (atomic_read(&ndlp->kref.refcount) == 1) {
5566 /* Indicate ndlp is put to inactive state. */
5567 NLP_SET_IACT_REQ(ndlp);
5568 /* Acknowledge ndlp memory free has been seen. */
5569 if (NLP_CHK_FREE_REQ(ndlp))
5570 NLP_SET_FREE_ACK(ndlp);
5571 }
5572 spin_unlock_irqrestore(&phba->ndlp_lock, flags);
5573 /* Note, the kref_put returns 1 when decrementing a reference
5574 * count that was 1, it invokes the release callback function,
5575 * but it still left the reference count as 1 (not actually
5576 * performs the last decrementation). Otherwise, it actually
5577 * decrements the reference count and returns 0.
5578 */
5579 return kref_put(&ndlp->kref, lpfc_nlp_release);
James Smart329f9bc2007-04-25 09:53:01 -04005580}
James Smart98c9ea52007-10-27 13:37:33 -04005581
5582/* This routine free's the specified nodelist if it is not in use
James Smarte47c9092008-02-08 18:49:26 -05005583 * by any other discovery thread. This routine returns 1 if the
5584 * ndlp has been freed. A return value of 0 indicates the ndlp is
5585 * not yet been released.
James Smart98c9ea52007-10-27 13:37:33 -04005586 */
5587int
5588lpfc_nlp_not_used(struct lpfc_nodelist *ndlp)
5589{
5590 lpfc_debugfs_disc_trc(ndlp->vport, LPFC_DISC_TRC_NODE,
5591 "node not used: did:x%x flg:x%x refcnt:x%x",
5592 ndlp->nlp_DID, ndlp->nlp_flag,
5593 atomic_read(&ndlp->kref.refcount));
James Smarte47c9092008-02-08 18:49:26 -05005594 if (atomic_read(&ndlp->kref.refcount) == 1)
5595 if (lpfc_nlp_put(ndlp))
5596 return 1;
James Smart98c9ea52007-10-27 13:37:33 -04005597 return 0;
5598}
James Smart6fb120a2009-05-22 14:52:59 -04005599
5600/**
5601 * lpfc_fcf_inuse - Check if FCF can be unregistered.
5602 * @phba: Pointer to hba context object.
5603 *
5604 * This function iterate through all FC nodes associated
5605 * will all vports to check if there is any node with
5606 * fc_rports associated with it. If there is an fc_rport
5607 * associated with the node, then the node is either in
5608 * discovered state or its devloss_timer is pending.
5609 */
5610static int
5611lpfc_fcf_inuse(struct lpfc_hba *phba)
5612{
5613 struct lpfc_vport **vports;
5614 int i, ret = 0;
5615 struct lpfc_nodelist *ndlp;
5616 struct Scsi_Host *shost;
5617
5618 vports = lpfc_create_vport_work_array(phba);
5619
James Smart63e801c2010-11-20 23:14:19 -05005620 /* If driver cannot allocate memory, indicate fcf is in use */
5621 if (!vports)
5622 return 1;
5623
James Smart6fb120a2009-05-22 14:52:59 -04005624 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
5625 shost = lpfc_shost_from_vport(vports[i]);
5626 spin_lock_irq(shost->host_lock);
James Smart05580562011-05-24 11:40:48 -04005627 /*
5628 * IF the CVL_RCVD bit is not set then we have sent the
5629 * flogi.
5630 * If dev_loss fires while we are waiting we do not want to
5631 * unreg the fcf.
5632 */
5633 if (!(vports[i]->fc_flag & FC_VPORT_CVL_RCVD)) {
5634 spin_unlock_irq(shost->host_lock);
5635 ret = 1;
5636 goto out;
5637 }
James Smart6fb120a2009-05-22 14:52:59 -04005638 list_for_each_entry(ndlp, &vports[i]->fc_nodes, nlp_listp) {
5639 if (NLP_CHK_NODE_ACT(ndlp) && ndlp->rport &&
5640 (ndlp->rport->roles & FC_RPORT_ROLE_FCP_TARGET)) {
5641 ret = 1;
5642 spin_unlock_irq(shost->host_lock);
5643 goto out;
James Smart891478a2009-11-18 15:40:23 -05005644 } else {
5645 lpfc_printf_log(phba, KERN_INFO, LOG_ELS,
5646 "2624 RPI %x DID %x flg %x still "
5647 "logged in\n",
5648 ndlp->nlp_rpi, ndlp->nlp_DID,
5649 ndlp->nlp_flag);
James Smart40426292010-12-15 17:58:10 -05005650 if (ndlp->nlp_flag & NLP_RPI_REGISTERED)
James Smart891478a2009-11-18 15:40:23 -05005651 ret = 1;
James Smart6fb120a2009-05-22 14:52:59 -04005652 }
5653 }
5654 spin_unlock_irq(shost->host_lock);
5655 }
5656out:
5657 lpfc_destroy_vport_work_array(phba, vports);
5658 return ret;
5659}
5660
5661/**
5662 * lpfc_unregister_vfi_cmpl - Completion handler for unreg vfi.
5663 * @phba: Pointer to hba context object.
5664 * @mboxq: Pointer to mailbox object.
5665 *
5666 * This function frees memory associated with the mailbox command.
5667 */
5668static void
5669lpfc_unregister_vfi_cmpl(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
5670{
5671 struct lpfc_vport *vport = mboxq->vport;
James Smart38b92ef2010-08-04 16:11:39 -04005672 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart6fb120a2009-05-22 14:52:59 -04005673
5674 if (mboxq->u.mb.mbxStatus) {
5675 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY|LOG_MBOX,
5676 "2555 UNREG_VFI mbxStatus error x%x "
5677 "HBA state x%x\n",
5678 mboxq->u.mb.mbxStatus, vport->port_state);
5679 }
James Smart38b92ef2010-08-04 16:11:39 -04005680 spin_lock_irq(shost->host_lock);
5681 phba->pport->fc_flag &= ~FC_VFI_REGISTERED;
5682 spin_unlock_irq(shost->host_lock);
James Smart6fb120a2009-05-22 14:52:59 -04005683 mempool_free(mboxq, phba->mbox_mem_pool);
5684 return;
5685}
5686
5687/**
5688 * lpfc_unregister_fcfi_cmpl - Completion handler for unreg fcfi.
5689 * @phba: Pointer to hba context object.
5690 * @mboxq: Pointer to mailbox object.
5691 *
5692 * This function frees memory associated with the mailbox command.
5693 */
5694static void
5695lpfc_unregister_fcfi_cmpl(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
5696{
5697 struct lpfc_vport *vport = mboxq->vport;
5698
5699 if (mboxq->u.mb.mbxStatus) {
5700 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY|LOG_MBOX,
5701 "2550 UNREG_FCFI mbxStatus error x%x "
5702 "HBA state x%x\n",
5703 mboxq->u.mb.mbxStatus, vport->port_state);
5704 }
5705 mempool_free(mboxq, phba->mbox_mem_pool);
5706 return;
5707}
5708
5709/**
James Smartecfd03c2010-02-12 14:41:27 -05005710 * lpfc_unregister_fcf_prep - Unregister fcf record preparation
James Smart6fb120a2009-05-22 14:52:59 -04005711 * @phba: Pointer to hba context object.
5712 *
James Smartecfd03c2010-02-12 14:41:27 -05005713 * This function prepare the HBA for unregistering the currently registered
5714 * FCF from the HBA. It performs unregistering, in order, RPIs, VPIs, and
5715 * VFIs.
James Smart6fb120a2009-05-22 14:52:59 -04005716 */
James Smartecfd03c2010-02-12 14:41:27 -05005717int
5718lpfc_unregister_fcf_prep(struct lpfc_hba *phba)
James Smart6fb120a2009-05-22 14:52:59 -04005719{
5720 LPFC_MBOXQ_t *mbox;
James Smart6fb120a2009-05-22 14:52:59 -04005721 struct lpfc_vport **vports;
James Smart695a8142010-01-26 23:08:03 -05005722 struct lpfc_nodelist *ndlp;
James Smart72100cc2010-02-12 14:43:01 -05005723 struct Scsi_Host *shost;
James Smartecfd03c2010-02-12 14:41:27 -05005724 int i, rc;
James Smart6fb120a2009-05-22 14:52:59 -04005725
James Smartecfd03c2010-02-12 14:41:27 -05005726 /* Unregister RPIs */
James Smart6fb120a2009-05-22 14:52:59 -04005727 if (lpfc_fcf_inuse(phba))
James Smartecfd03c2010-02-12 14:41:27 -05005728 lpfc_unreg_hba_rpis(phba);
James Smart6fb120a2009-05-22 14:52:59 -04005729
James Smart4d9ab992009-10-02 15:16:39 -04005730 /* At this point, all discovery is aborted */
5731 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
James Smart6fb120a2009-05-22 14:52:59 -04005732
5733 /* Unregister VPIs */
5734 vports = lpfc_create_vport_work_array(phba);
James Smartecfd03c2010-02-12 14:41:27 -05005735 if (vports && (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED))
James Smart6fb120a2009-05-22 14:52:59 -04005736 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
James Smart695a8142010-01-26 23:08:03 -05005737 /* Stop FLOGI/FDISC retries */
5738 ndlp = lpfc_findnode_did(vports[i], Fabric_DID);
5739 if (ndlp)
5740 lpfc_cancel_retry_delay_tmo(vports[i], ndlp);
James Smart78730cf2010-04-06 15:06:30 -04005741 lpfc_cleanup_pending_mbox(vports[i]);
James Smart5af5eee2010-10-22 11:06:38 -04005742 if (phba->sli_rev == LPFC_SLI_REV4)
5743 lpfc_sli4_unreg_all_rpis(vports[i]);
James Smart6fb120a2009-05-22 14:52:59 -04005744 lpfc_mbx_unreg_vpi(vports[i]);
James Smart72100cc2010-02-12 14:43:01 -05005745 shost = lpfc_shost_from_vport(vports[i]);
5746 spin_lock_irq(shost->host_lock);
James Smart891478a2009-11-18 15:40:23 -05005747 vports[i]->fc_flag |= FC_VPORT_NEEDS_INIT_VPI;
James Smartc8685952009-11-18 15:39:16 -05005748 vports[i]->vpi_state &= ~LPFC_VPI_REGISTERED;
James Smart72100cc2010-02-12 14:43:01 -05005749 spin_unlock_irq(shost->host_lock);
James Smart6fb120a2009-05-22 14:52:59 -04005750 }
5751 lpfc_destroy_vport_work_array(phba, vports);
5752
James Smart695a8142010-01-26 23:08:03 -05005753 /* Cleanup any outstanding ELS commands */
5754 lpfc_els_flush_all_cmd(phba);
5755
James Smart6fb120a2009-05-22 14:52:59 -04005756 /* Unregister VFI */
5757 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5758 if (!mbox) {
5759 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY|LOG_MBOX,
James Smartecfd03c2010-02-12 14:41:27 -05005760 "2556 UNREG_VFI mbox allocation failed"
5761 "HBA state x%x\n", phba->pport->port_state);
5762 return -ENOMEM;
James Smart6fb120a2009-05-22 14:52:59 -04005763 }
5764
James Smart6669f9b2009-10-02 15:16:45 -04005765 lpfc_unreg_vfi(mbox, phba->pport);
James Smart6fb120a2009-05-22 14:52:59 -04005766 mbox->vport = phba->pport;
5767 mbox->mbox_cmpl = lpfc_unregister_vfi_cmpl;
5768
5769 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
5770 if (rc == MBX_NOT_FINISHED) {
5771 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY|LOG_MBOX,
James Smartecfd03c2010-02-12 14:41:27 -05005772 "2557 UNREG_VFI issue mbox failed rc x%x "
5773 "HBA state x%x\n",
5774 rc, phba->pport->port_state);
James Smart6fb120a2009-05-22 14:52:59 -04005775 mempool_free(mbox, phba->mbox_mem_pool);
James Smartecfd03c2010-02-12 14:41:27 -05005776 return -EIO;
James Smart6fb120a2009-05-22 14:52:59 -04005777 }
5778
James Smart72100cc2010-02-12 14:43:01 -05005779 shost = lpfc_shost_from_vport(phba->pport);
5780 spin_lock_irq(shost->host_lock);
James Smart695a8142010-01-26 23:08:03 -05005781 phba->pport->fc_flag &= ~FC_VFI_REGISTERED;
James Smart72100cc2010-02-12 14:43:01 -05005782 spin_unlock_irq(shost->host_lock);
James Smart695a8142010-01-26 23:08:03 -05005783
James Smartecfd03c2010-02-12 14:41:27 -05005784 return 0;
5785}
5786
5787/**
5788 * lpfc_sli4_unregister_fcf - Unregister currently registered FCF record
5789 * @phba: Pointer to hba context object.
5790 *
5791 * This function issues synchronous unregister FCF mailbox command to HBA to
5792 * unregister the currently registered FCF record. The driver does not reset
5793 * the driver FCF usage state flags.
5794 *
5795 * Return 0 if successfully issued, none-zero otherwise.
5796 */
5797int
5798lpfc_sli4_unregister_fcf(struct lpfc_hba *phba)
5799{
5800 LPFC_MBOXQ_t *mbox;
5801 int rc;
5802
James Smart6fb120a2009-05-22 14:52:59 -04005803 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5804 if (!mbox) {
5805 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY|LOG_MBOX,
James Smartecfd03c2010-02-12 14:41:27 -05005806 "2551 UNREG_FCFI mbox allocation failed"
5807 "HBA state x%x\n", phba->pport->port_state);
5808 return -ENOMEM;
James Smart6fb120a2009-05-22 14:52:59 -04005809 }
James Smart6fb120a2009-05-22 14:52:59 -04005810 lpfc_unreg_fcfi(mbox, phba->fcf.fcfi);
5811 mbox->vport = phba->pport;
5812 mbox->mbox_cmpl = lpfc_unregister_fcfi_cmpl;
5813 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
5814
5815 if (rc == MBX_NOT_FINISHED) {
James Smartecfd03c2010-02-12 14:41:27 -05005816 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
5817 "2552 Unregister FCFI command failed rc x%x "
5818 "HBA state x%x\n",
5819 rc, phba->pport->port_state);
5820 return -EINVAL;
5821 }
5822 return 0;
5823}
5824
5825/**
5826 * lpfc_unregister_fcf_rescan - Unregister currently registered fcf and rescan
5827 * @phba: Pointer to hba context object.
5828 *
5829 * This function unregisters the currently reigstered FCF. This function
5830 * also tries to find another FCF for discovery by rescan the HBA FCF table.
5831 */
5832void
5833lpfc_unregister_fcf_rescan(struct lpfc_hba *phba)
5834{
5835 int rc;
5836
5837 /* Preparation for unregistering fcf */
5838 rc = lpfc_unregister_fcf_prep(phba);
5839 if (rc) {
5840 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY,
5841 "2748 Failed to prepare for unregistering "
5842 "HBA's FCF record: rc=%d\n", rc);
James Smart6fb120a2009-05-22 14:52:59 -04005843 return;
5844 }
5845
James Smartecfd03c2010-02-12 14:41:27 -05005846 /* Now, unregister FCF record and reset HBA FCF state */
5847 rc = lpfc_sli4_unregister_fcf(phba);
5848 if (rc)
5849 return;
5850 /* Reset HBA FCF states after successful unregister FCF */
5851 phba->fcf.fcf_flag = 0;
James Smartfc2b9892010-02-26 14:15:29 -05005852 phba->fcf.current_rec.flag = 0;
James Smart6fb120a2009-05-22 14:52:59 -04005853
5854 /*
5855 * If driver is not unloading, check if there is any other
5856 * FCF record that can be used for discovery.
5857 */
5858 if ((phba->pport->load_flag & FC_UNLOADING) ||
James Smartecfd03c2010-02-12 14:41:27 -05005859 (phba->link_state < LPFC_LINK_UP))
James Smart6fb120a2009-05-22 14:52:59 -04005860 return;
5861
James Smart0c9ab6f2010-02-26 14:15:57 -05005862 /* This is considered as the initial FCF discovery scan */
5863 spin_lock_irq(&phba->hbalock);
5864 phba->fcf.fcf_flag |= FCF_INIT_DISC;
5865 spin_unlock_irq(&phba->hbalock);
James Smart38b92ef2010-08-04 16:11:39 -04005866
5867 /* Reset FCF roundrobin bmask for new discovery */
James Smart7d791df2011-07-22 18:37:52 -04005868 lpfc_sli4_clear_fcf_rr_bmask(phba);
James Smart38b92ef2010-08-04 16:11:39 -04005869
James Smart0c9ab6f2010-02-26 14:15:57 -05005870 rc = lpfc_sli4_fcf_scan_read_fcf_rec(phba, LPFC_FCOE_FCF_GET_FIRST);
James Smart6fb120a2009-05-22 14:52:59 -04005871
James Smart0c9ab6f2010-02-26 14:15:57 -05005872 if (rc) {
5873 spin_lock_irq(&phba->hbalock);
5874 phba->fcf.fcf_flag &= ~FCF_INIT_DISC;
5875 spin_unlock_irq(&phba->hbalock);
James Smart6fb120a2009-05-22 14:52:59 -04005876 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY|LOG_MBOX,
James Smartecfd03c2010-02-12 14:41:27 -05005877 "2553 lpfc_unregister_unused_fcf failed "
5878 "to read FCF record HBA state x%x\n",
5879 phba->pport->port_state);
James Smart0c9ab6f2010-02-26 14:15:57 -05005880 }
James Smartecfd03c2010-02-12 14:41:27 -05005881}
5882
5883/**
5884 * lpfc_unregister_fcf - Unregister the currently registered fcf record
5885 * @phba: Pointer to hba context object.
5886 *
5887 * This function just unregisters the currently reigstered FCF. It does not
5888 * try to find another FCF for discovery.
5889 */
5890void
5891lpfc_unregister_fcf(struct lpfc_hba *phba)
5892{
5893 int rc;
5894
5895 /* Preparation for unregistering fcf */
5896 rc = lpfc_unregister_fcf_prep(phba);
5897 if (rc) {
5898 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY,
5899 "2749 Failed to prepare for unregistering "
5900 "HBA's FCF record: rc=%d\n", rc);
5901 return;
5902 }
5903
5904 /* Now, unregister FCF record and reset HBA FCF state */
5905 rc = lpfc_sli4_unregister_fcf(phba);
5906 if (rc)
5907 return;
5908 /* Set proper HBA FCF states after successful unregister FCF */
5909 spin_lock_irq(&phba->hbalock);
5910 phba->fcf.fcf_flag &= ~FCF_REGISTERED;
5911 spin_unlock_irq(&phba->hbalock);
5912}
5913
5914/**
5915 * lpfc_unregister_unused_fcf - Unregister FCF if all devices are disconnected.
5916 * @phba: Pointer to hba context object.
5917 *
5918 * This function check if there are any connected remote port for the FCF and
5919 * if all the devices are disconnected, this function unregister FCFI.
5920 * This function also tries to use another FCF for discovery.
5921 */
5922void
5923lpfc_unregister_unused_fcf(struct lpfc_hba *phba)
5924{
5925 /*
James Smart3804dc82010-07-14 15:31:37 -04005926 * If HBA is not running in FIP mode, if HBA does not support
5927 * FCoE, if FCF discovery is ongoing, or if FCF has not been
5928 * registered, do nothing.
James Smartecfd03c2010-02-12 14:41:27 -05005929 */
5930 spin_lock_irq(&phba->hbalock);
James Smart76a95d72010-11-20 23:11:48 -05005931 if (!(phba->hba_flag & HBA_FCOE_MODE) ||
James Smartecfd03c2010-02-12 14:41:27 -05005932 !(phba->fcf.fcf_flag & FCF_REGISTERED) ||
James Smartdbb6b3a2010-06-08 18:31:37 -04005933 !(phba->hba_flag & HBA_FIP_SUPPORT) ||
James Smart3804dc82010-07-14 15:31:37 -04005934 (phba->fcf.fcf_flag & FCF_DISCOVERY) ||
James Smartdbb6b3a2010-06-08 18:31:37 -04005935 (phba->pport->port_state == LPFC_FLOGI)) {
James Smartecfd03c2010-02-12 14:41:27 -05005936 spin_unlock_irq(&phba->hbalock);
5937 return;
5938 }
5939 spin_unlock_irq(&phba->hbalock);
5940
5941 if (lpfc_fcf_inuse(phba))
5942 return;
5943
5944 lpfc_unregister_fcf_rescan(phba);
James Smart6fb120a2009-05-22 14:52:59 -04005945}
5946
5947/**
5948 * lpfc_read_fcf_conn_tbl - Create driver FCF connection table.
5949 * @phba: Pointer to hba context object.
5950 * @buff: Buffer containing the FCF connection table as in the config
5951 * region.
5952 * This function create driver data structure for the FCF connection
5953 * record table read from config region 23.
5954 */
5955static void
5956lpfc_read_fcf_conn_tbl(struct lpfc_hba *phba,
5957 uint8_t *buff)
5958{
5959 struct lpfc_fcf_conn_entry *conn_entry, *next_conn_entry;
5960 struct lpfc_fcf_conn_hdr *conn_hdr;
5961 struct lpfc_fcf_conn_rec *conn_rec;
5962 uint32_t record_count;
5963 int i;
5964
5965 /* Free the current connect table */
5966 list_for_each_entry_safe(conn_entry, next_conn_entry,
James Smart4d9ab992009-10-02 15:16:39 -04005967 &phba->fcf_conn_rec_list, list) {
5968 list_del_init(&conn_entry->list);
James Smart6fb120a2009-05-22 14:52:59 -04005969 kfree(conn_entry);
James Smart4d9ab992009-10-02 15:16:39 -04005970 }
James Smart6fb120a2009-05-22 14:52:59 -04005971
5972 conn_hdr = (struct lpfc_fcf_conn_hdr *) buff;
5973 record_count = conn_hdr->length * sizeof(uint32_t)/
5974 sizeof(struct lpfc_fcf_conn_rec);
5975
5976 conn_rec = (struct lpfc_fcf_conn_rec *)
5977 (buff + sizeof(struct lpfc_fcf_conn_hdr));
5978
5979 for (i = 0; i < record_count; i++) {
5980 if (!(conn_rec[i].flags & FCFCNCT_VALID))
5981 continue;
5982 conn_entry = kzalloc(sizeof(struct lpfc_fcf_conn_entry),
5983 GFP_KERNEL);
5984 if (!conn_entry) {
5985 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5986 "2566 Failed to allocate connection"
5987 " table entry\n");
5988 return;
5989 }
5990
5991 memcpy(&conn_entry->conn_rec, &conn_rec[i],
5992 sizeof(struct lpfc_fcf_conn_rec));
5993 conn_entry->conn_rec.vlan_tag =
5994 le16_to_cpu(conn_entry->conn_rec.vlan_tag) & 0xFFF;
5995 conn_entry->conn_rec.flags =
5996 le16_to_cpu(conn_entry->conn_rec.flags);
5997 list_add_tail(&conn_entry->list,
5998 &phba->fcf_conn_rec_list);
5999 }
6000}
6001
6002/**
6003 * lpfc_read_fcoe_param - Read FCoe parameters from conf region..
6004 * @phba: Pointer to hba context object.
6005 * @buff: Buffer containing the FCoE parameter data structure.
6006 *
6007 * This function update driver data structure with config
6008 * parameters read from config region 23.
6009 */
6010static void
6011lpfc_read_fcoe_param(struct lpfc_hba *phba,
6012 uint8_t *buff)
6013{
6014 struct lpfc_fip_param_hdr *fcoe_param_hdr;
6015 struct lpfc_fcoe_params *fcoe_param;
6016
6017 fcoe_param_hdr = (struct lpfc_fip_param_hdr *)
6018 buff;
6019 fcoe_param = (struct lpfc_fcoe_params *)
James Smart32b97932009-07-19 10:01:21 -04006020 (buff + sizeof(struct lpfc_fip_param_hdr));
James Smart6fb120a2009-05-22 14:52:59 -04006021
6022 if ((fcoe_param_hdr->parm_version != FIPP_VERSION) ||
6023 (fcoe_param_hdr->length != FCOE_PARAM_LENGTH))
6024 return;
6025
James Smart6fb120a2009-05-22 14:52:59 -04006026 if (fcoe_param_hdr->parm_flags & FIPP_VLAN_VALID) {
6027 phba->valid_vlan = 1;
6028 phba->vlan_id = le16_to_cpu(fcoe_param->vlan_tag) &
6029 0xFFF;
6030 }
6031
6032 phba->fc_map[0] = fcoe_param->fc_map[0];
6033 phba->fc_map[1] = fcoe_param->fc_map[1];
6034 phba->fc_map[2] = fcoe_param->fc_map[2];
6035 return;
6036}
6037
6038/**
6039 * lpfc_get_rec_conf23 - Get a record type in config region data.
6040 * @buff: Buffer containing config region 23 data.
6041 * @size: Size of the data buffer.
6042 * @rec_type: Record type to be searched.
6043 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03006044 * This function searches config region data to find the beginning
James Smart6fb120a2009-05-22 14:52:59 -04006045 * of the record specified by record_type. If record found, this
6046 * function return pointer to the record else return NULL.
6047 */
6048static uint8_t *
6049lpfc_get_rec_conf23(uint8_t *buff, uint32_t size, uint8_t rec_type)
6050{
6051 uint32_t offset = 0, rec_length;
6052
6053 if ((buff[0] == LPFC_REGION23_LAST_REC) ||
6054 (size < sizeof(uint32_t)))
6055 return NULL;
6056
6057 rec_length = buff[offset + 1];
6058
6059 /*
6060 * One TLV record has one word header and number of data words
6061 * specified in the rec_length field of the record header.
6062 */
6063 while ((offset + rec_length * sizeof(uint32_t) + sizeof(uint32_t))
6064 <= size) {
6065 if (buff[offset] == rec_type)
6066 return &buff[offset];
6067
6068 if (buff[offset] == LPFC_REGION23_LAST_REC)
6069 return NULL;
6070
6071 offset += rec_length * sizeof(uint32_t) + sizeof(uint32_t);
6072 rec_length = buff[offset + 1];
6073 }
6074 return NULL;
6075}
6076
6077/**
6078 * lpfc_parse_fcoe_conf - Parse FCoE config data read from config region 23.
6079 * @phba: Pointer to lpfc_hba data structure.
6080 * @buff: Buffer containing config region 23 data.
6081 * @size: Size of the data buffer.
6082 *
Stefan Weileef35c22010-08-06 21:11:15 +02006083 * This function parses the FCoE config parameters in config region 23 and
James Smart6fb120a2009-05-22 14:52:59 -04006084 * populate driver data structure with the parameters.
6085 */
6086void
6087lpfc_parse_fcoe_conf(struct lpfc_hba *phba,
6088 uint8_t *buff,
6089 uint32_t size)
6090{
6091 uint32_t offset = 0, rec_length;
6092 uint8_t *rec_ptr;
6093
6094 /*
6095 * If data size is less than 2 words signature and version cannot be
6096 * verified.
6097 */
6098 if (size < 2*sizeof(uint32_t))
6099 return;
6100
6101 /* Check the region signature first */
6102 if (memcmp(buff, LPFC_REGION23_SIGNATURE, 4)) {
6103 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6104 "2567 Config region 23 has bad signature\n");
6105 return;
6106 }
6107
6108 offset += 4;
6109
6110 /* Check the data structure version */
6111 if (buff[offset] != LPFC_REGION23_VERSION) {
6112 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6113 "2568 Config region 23 has bad version\n");
6114 return;
6115 }
6116 offset += 4;
6117
6118 rec_length = buff[offset + 1];
6119
6120 /* Read FCoE param record */
6121 rec_ptr = lpfc_get_rec_conf23(&buff[offset],
6122 size - offset, FCOE_PARAM_TYPE);
6123 if (rec_ptr)
6124 lpfc_read_fcoe_param(phba, rec_ptr);
6125
6126 /* Read FCF connection table */
6127 rec_ptr = lpfc_get_rec_conf23(&buff[offset],
6128 size - offset, FCOE_CONN_TBL_TYPE);
6129 if (rec_ptr)
6130 lpfc_read_fcf_conn_tbl(phba, rec_ptr);
6131
6132}