blob: 8ab3e9622714273b2d8e42881769cafc99109ec5 [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 Smartd4379ac2012-03-01 22:37:07 -05004 * Copyright (C) 2004-2012 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 Smart34f5ad82012-08-03 12:35:03 -0400126 lpfc_printf_vlog(ndlp->vport, KERN_INFO, LOG_NODE,
127 "3181 dev_loss_callbk x%06x, rport %p flg x%x\n",
128 ndlp->nlp_DID, ndlp->rport, ndlp->nlp_flag);
129
James Smarta8adb832007-10-27 13:37:53 -0400130 /* Don't defer this if we are in the process of deleting the vport
131 * or unloading the driver. The unload will cleanup the node
132 * appropriately we just need to cleanup the ndlp rport info here.
133 */
134 if (vport->load_flag & FC_UNLOADING) {
135 put_node = rdata->pnode != NULL;
136 put_rport = ndlp->rport != NULL;
137 rdata->pnode = NULL;
138 ndlp->rport = NULL;
139 if (put_node)
140 lpfc_nlp_put(ndlp);
141 if (put_rport)
142 put_device(&rport->dev);
143 return;
144 }
145
146 if (ndlp->nlp_state == NLP_STE_MAPPED_NODE)
147 return;
148
James Smart34f5ad82012-08-03 12:35:03 -0400149 if (ndlp->nlp_type & NLP_FABRIC) {
150
151 /* If the WWPN of the rport and ndlp don't match, ignore it */
152 if (rport->port_name != wwn_to_u64(ndlp->nlp_portname.u.wwn)) {
153 put_device(&rport->dev);
154 return;
155 }
156 }
157
James Smart858c9f62007-06-17 19:56:39 -0500158 evtp = &ndlp->dev_loss_evt;
159
160 if (!list_empty(&evtp->evt_listp))
161 return;
162
163 spin_lock_irq(&phba->hbalock);
James Smartfa4066b2008-01-11 01:53:27 -0500164 /* We need to hold the node by incrementing the reference
165 * count until this queued work is done
166 */
167 evtp->evt_arg1 = lpfc_nlp_get(ndlp);
James Smart5e9d9b82008-06-14 22:52:53 -0400168 if (evtp->evt_arg1) {
169 evtp->evt = LPFC_EVT_DEV_LOSS;
170 list_add_tail(&evtp->evt_listp, &phba->work_list);
171 lpfc_worker_wake_up(phba);
172 }
James Smart858c9f62007-06-17 19:56:39 -0500173 spin_unlock_irq(&phba->hbalock);
174
James Smart858c9f62007-06-17 19:56:39 -0500175 return;
176}
177
James Smarta93ff372010-10-22 11:06:08 -0400178/**
179 * lpfc_dev_loss_tmo_handler - Remote node devloss timeout handler
180 * @ndlp: Pointer to remote node object.
181 *
182 * This function is called from the worker thread when devloss timeout timer
183 * expires. For SLI4 host, this routine shall return 1 when at lease one
184 * remote node, including this @ndlp, is still in use of FCF; otherwise, this
185 * routine shall return 0 when there is no remote node is still in use of FCF
186 * when devloss timeout happened to this @ndlp.
187 **/
188static int
James Smart858c9f62007-06-17 19:56:39 -0500189lpfc_dev_loss_tmo_handler(struct lpfc_nodelist *ndlp)
190{
191 struct lpfc_rport_data *rdata;
192 struct fc_rport *rport;
193 struct lpfc_vport *vport;
194 struct lpfc_hba *phba;
195 uint8_t *name;
James Smart87af33f2007-10-27 13:37:43 -0400196 int put_node;
197 int put_rport;
James Smart858c9f62007-06-17 19:56:39 -0500198 int warn_on = 0;
James Smarta93ff372010-10-22 11:06:08 -0400199 int fcf_inuse = 0;
James Smart858c9f62007-06-17 19:56:39 -0500200
201 rport = ndlp->rport;
202
203 if (!rport)
James Smarta93ff372010-10-22 11:06:08 -0400204 return fcf_inuse;
James Smart858c9f62007-06-17 19:56:39 -0500205
206 rdata = rport->dd_data;
207 name = (uint8_t *) &ndlp->nlp_portname;
208 vport = ndlp->vport;
209 phba = vport->phba;
210
James Smarta93ff372010-10-22 11:06:08 -0400211 if (phba->sli_rev == LPFC_SLI_REV4)
212 fcf_inuse = lpfc_fcf_inuse(phba);
213
James Smart858c9f62007-06-17 19:56:39 -0500214 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_RPORT,
215 "rport devlosstmo:did:x%x type:x%x id:x%x",
216 ndlp->nlp_DID, ndlp->nlp_type, rport->scsi_target_id);
217
James Smart34f5ad82012-08-03 12:35:03 -0400218 lpfc_printf_vlog(ndlp->vport, KERN_INFO, LOG_NODE,
219 "3182 dev_loss_tmo_handler x%06x, rport %p flg x%x\n",
220 ndlp->nlp_DID, ndlp->rport, ndlp->nlp_flag);
221
James Smarta8adb832007-10-27 13:37:53 -0400222 /* Don't defer this if we are in the process of deleting the vport
223 * or unloading the driver. The unload will cleanup the node
224 * appropriately we just need to cleanup the ndlp rport info here.
225 */
226 if (vport->load_flag & FC_UNLOADING) {
James Smart09372822008-01-11 01:52:54 -0500227 if (ndlp->nlp_sid != NLP_NO_SID) {
228 /* flush the target */
229 lpfc_sli_abort_iocb(vport,
230 &phba->sli.ring[phba->sli.fcp_ring],
231 ndlp->nlp_sid, 0, LPFC_CTX_TGT);
232 }
James Smarta8adb832007-10-27 13:37:53 -0400233 put_node = rdata->pnode != NULL;
234 put_rport = ndlp->rport != NULL;
235 rdata->pnode = NULL;
236 ndlp->rport = NULL;
237 if (put_node)
238 lpfc_nlp_put(ndlp);
239 if (put_rport)
240 put_device(&rport->dev);
James Smarta93ff372010-10-22 11:06:08 -0400241 return fcf_inuse;
James Smarta8adb832007-10-27 13:37:53 -0400242 }
243
James Smartd7c255b2008-08-24 21:50:00 -0400244 if (ndlp->nlp_state == NLP_STE_MAPPED_NODE) {
245 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
246 "0284 Devloss timeout Ignored on "
247 "WWPN %x:%x:%x:%x:%x:%x:%x:%x "
248 "NPort x%x\n",
249 *name, *(name+1), *(name+2), *(name+3),
250 *(name+4), *(name+5), *(name+6), *(name+7),
251 ndlp->nlp_DID);
James Smarta93ff372010-10-22 11:06:08 -0400252 return fcf_inuse;
James Smartd7c255b2008-08-24 21:50:00 -0400253 }
James Smart858c9f62007-06-17 19:56:39 -0500254
James Smart92d7f7b2007-06-17 19:56:38 -0500255 if (ndlp->nlp_type & NLP_FABRIC) {
256 /* We will clean up these Nodes in linkup */
257 put_node = rdata->pnode != NULL;
258 put_rport = ndlp->rport != NULL;
259 rdata->pnode = NULL;
260 ndlp->rport = NULL;
261 if (put_node)
262 lpfc_nlp_put(ndlp);
263 if (put_rport)
264 put_device(&rport->dev);
James Smarta93ff372010-10-22 11:06:08 -0400265 return fcf_inuse;
James Smart92d7f7b2007-06-17 19:56:38 -0500266 }
James Smart82085712007-04-25 09:52:41 -0400267
dea31012005-04-17 16:05:31 -0500268 if (ndlp->nlp_sid != NLP_NO_SID) {
James.Smart@Emulex.Com6e8215e2005-06-25 10:34:04 -0400269 warn_on = 1;
dea31012005-04-17 16:05:31 -0500270 /* flush the target */
James Smart51ef4c22007-08-02 11:10:31 -0400271 lpfc_sli_abort_iocb(vport, &phba->sli.ring[phba->sli.fcp_ring],
272 ndlp->nlp_sid, 0, LPFC_CTX_TGT);
dea31012005-04-17 16:05:31 -0500273 }
James Smartc01f3202006-08-18 17:47:08 -0400274
James.Smart@Emulex.Com6e8215e2005-06-25 10:34:04 -0400275 if (warn_on) {
James Smarte8b62012007-08-02 11:10:09 -0400276 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
277 "0203 Devloss timeout on "
James Smart58da1ff2008-04-07 10:15:56 -0400278 "WWPN %02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x "
279 "NPort x%06x Data: x%x x%x x%x\n",
James Smarte8b62012007-08-02 11:10:09 -0400280 *name, *(name+1), *(name+2), *(name+3),
281 *(name+4), *(name+5), *(name+6), *(name+7),
282 ndlp->nlp_DID, ndlp->nlp_flag,
283 ndlp->nlp_state, ndlp->nlp_rpi);
James.Smart@Emulex.Com6e8215e2005-06-25 10:34:04 -0400284 } else {
James Smarte8b62012007-08-02 11:10:09 -0400285 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
286 "0204 Devloss timeout on "
James Smart58da1ff2008-04-07 10:15:56 -0400287 "WWPN %02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x "
288 "NPort x%06x Data: x%x x%x x%x\n",
James Smarte8b62012007-08-02 11:10:09 -0400289 *name, *(name+1), *(name+2), *(name+3),
290 *(name+4), *(name+5), *(name+6), *(name+7),
291 ndlp->nlp_DID, ndlp->nlp_flag,
292 ndlp->nlp_state, ndlp->nlp_rpi);
James.Smart@Emulex.Com6e8215e2005-06-25 10:34:04 -0400293 }
294
James Smart87af33f2007-10-27 13:37:43 -0400295 put_node = rdata->pnode != NULL;
296 put_rport = ndlp->rport != NULL;
297 rdata->pnode = NULL;
298 ndlp->rport = NULL;
299 if (put_node)
300 lpfc_nlp_put(ndlp);
301 if (put_rport)
302 put_device(&rport->dev);
303
James Smart2e0fef82007-06-17 19:56:36 -0500304 if (!(vport->load_flag & FC_UNLOADING) &&
James Smart1dcb58e2007-04-25 09:51:30 -0400305 !(ndlp->nlp_flag & NLP_DELAY_TMO) &&
James Smart82085712007-04-25 09:52:41 -0400306 !(ndlp->nlp_flag & NLP_NPR_2B_DISC) &&
James Smartffc95492010-06-07 15:23:17 -0400307 (ndlp->nlp_state != NLP_STE_UNMAPPED_NODE) &&
James Smart589a52d2010-07-14 15:30:54 -0400308 (ndlp->nlp_state != NLP_STE_REG_LOGIN_ISSUE) &&
309 (ndlp->nlp_state != NLP_STE_PRLI_ISSUE))
James Smart2e0fef82007-06-17 19:56:36 -0500310 lpfc_disc_state_machine(vport, ndlp, NULL, NLP_EVT_DEVICE_RM);
James Smart6fb120a2009-05-22 14:52:59 -0400311
James Smarta93ff372010-10-22 11:06:08 -0400312 return fcf_inuse;
313}
314
315/**
316 * lpfc_sli4_post_dev_loss_tmo_handler - SLI4 post devloss timeout handler
317 * @phba: Pointer to hba context object.
318 * @fcf_inuse: SLI4 FCF in-use state reported from devloss timeout handler.
319 * @nlp_did: remote node identifer with devloss timeout.
320 *
321 * This function is called from the worker thread after invoking devloss
322 * timeout handler and releasing the reference count for the ndlp with
323 * which the devloss timeout was handled for SLI4 host. For the devloss
324 * timeout of the last remote node which had been in use of FCF, when this
325 * routine is invoked, it shall be guaranteed that none of the remote are
326 * in-use of FCF. When devloss timeout to the last remote using the FCF,
327 * if the FIP engine is neither in FCF table scan process nor roundrobin
328 * failover process, the in-use FCF shall be unregistered. If the FIP
329 * engine is in FCF discovery process, the devloss timeout state shall
330 * be set for either the FCF table scan process or roundrobin failover
331 * process to unregister the in-use FCF.
332 **/
333static void
334lpfc_sli4_post_dev_loss_tmo_handler(struct lpfc_hba *phba, int fcf_inuse,
335 uint32_t nlp_did)
336{
337 /* If devloss timeout happened to a remote node when FCF had no
338 * longer been in-use, do nothing.
339 */
340 if (!fcf_inuse)
341 return;
342
343 if ((phba->hba_flag & HBA_FIP_SUPPORT) && !lpfc_fcf_inuse(phba)) {
344 spin_lock_irq(&phba->hbalock);
345 if (phba->fcf.fcf_flag & FCF_DISCOVERY) {
346 if (phba->hba_flag & HBA_DEVLOSS_TMO) {
347 spin_unlock_irq(&phba->hbalock);
348 return;
349 }
350 phba->hba_flag |= HBA_DEVLOSS_TMO;
351 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
352 "2847 Last remote node (x%x) using "
353 "FCF devloss tmo\n", nlp_did);
354 }
355 if (phba->fcf.fcf_flag & FCF_REDISC_PROG) {
356 spin_unlock_irq(&phba->hbalock);
357 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
358 "2868 Devloss tmo to FCF rediscovery "
359 "in progress\n");
360 return;
361 }
362 if (!(phba->hba_flag & (FCF_TS_INPROG | FCF_RR_INPROG))) {
363 spin_unlock_irq(&phba->hbalock);
364 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
365 "2869 Devloss tmo to idle FIP engine, "
366 "unreg in-use FCF and rescan.\n");
367 /* Unregister in-use FCF and rescan */
368 lpfc_unregister_fcf_rescan(phba);
369 return;
370 }
371 spin_unlock_irq(&phba->hbalock);
372 if (phba->hba_flag & FCF_TS_INPROG)
373 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
374 "2870 FCF table scan in progress\n");
375 if (phba->hba_flag & FCF_RR_INPROG)
376 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
377 "2871 FLOGI roundrobin FCF failover "
378 "in progress\n");
379 }
James Smart6fb120a2009-05-22 14:52:59 -0400380 lpfc_unregister_unused_fcf(phba);
James Smart92d7f7b2007-06-17 19:56:38 -0500381}
James Smartc01f3202006-08-18 17:47:08 -0400382
James Smartea2151b2008-09-07 11:52:10 -0400383/**
James Smart3621a712009-04-06 18:47:14 -0400384 * lpfc_alloc_fast_evt - Allocates data structure for posting event
James Smartea2151b2008-09-07 11:52:10 -0400385 * @phba: Pointer to hba context object.
386 *
387 * This function is called from the functions which need to post
388 * events from interrupt context. This function allocates data
389 * structure required for posting event. It also keeps track of
390 * number of events pending and prevent event storm when there are
391 * too many events.
392 **/
393struct lpfc_fast_path_event *
394lpfc_alloc_fast_evt(struct lpfc_hba *phba) {
395 struct lpfc_fast_path_event *ret;
396
397 /* If there are lot of fast event do not exhaust memory due to this */
398 if (atomic_read(&phba->fast_event_count) > LPFC_MAX_EVT_COUNT)
399 return NULL;
400
401 ret = kzalloc(sizeof(struct lpfc_fast_path_event),
402 GFP_ATOMIC);
James Smart6fb120a2009-05-22 14:52:59 -0400403 if (ret) {
James Smartea2151b2008-09-07 11:52:10 -0400404 atomic_inc(&phba->fast_event_count);
James Smart6fb120a2009-05-22 14:52:59 -0400405 INIT_LIST_HEAD(&ret->work_evt.evt_listp);
406 ret->work_evt.evt = LPFC_EVT_FASTPATH_MGMT_EVT;
407 }
James Smartea2151b2008-09-07 11:52:10 -0400408 return ret;
409}
410
411/**
James Smart3621a712009-04-06 18:47:14 -0400412 * lpfc_free_fast_evt - Frees event data structure
James Smartea2151b2008-09-07 11:52:10 -0400413 * @phba: Pointer to hba context object.
414 * @evt: Event object which need to be freed.
415 *
416 * This function frees the data structure required for posting
417 * events.
418 **/
419void
420lpfc_free_fast_evt(struct lpfc_hba *phba,
421 struct lpfc_fast_path_event *evt) {
422
423 atomic_dec(&phba->fast_event_count);
424 kfree(evt);
425}
426
427/**
James Smart3621a712009-04-06 18:47:14 -0400428 * lpfc_send_fastpath_evt - Posts events generated from fast path
James Smartea2151b2008-09-07 11:52:10 -0400429 * @phba: Pointer to hba context object.
430 * @evtp: Event data structure.
431 *
432 * This function is called from worker thread, when the interrupt
433 * context need to post an event. This function posts the event
434 * to fc transport netlink interface.
435 **/
436static void
437lpfc_send_fastpath_evt(struct lpfc_hba *phba,
438 struct lpfc_work_evt *evtp)
439{
440 unsigned long evt_category, evt_sub_category;
441 struct lpfc_fast_path_event *fast_evt_data;
442 char *evt_data;
443 uint32_t evt_data_size;
444 struct Scsi_Host *shost;
445
446 fast_evt_data = container_of(evtp, struct lpfc_fast_path_event,
447 work_evt);
448
449 evt_category = (unsigned long) fast_evt_data->un.fabric_evt.event_type;
450 evt_sub_category = (unsigned long) fast_evt_data->un.
451 fabric_evt.subcategory;
452 shost = lpfc_shost_from_vport(fast_evt_data->vport);
453 if (evt_category == FC_REG_FABRIC_EVENT) {
454 if (evt_sub_category == LPFC_EVENT_FCPRDCHKERR) {
455 evt_data = (char *) &fast_evt_data->un.read_check_error;
456 evt_data_size = sizeof(fast_evt_data->un.
457 read_check_error);
458 } else if ((evt_sub_category == LPFC_EVENT_FABRIC_BUSY) ||
James Smarteaf15d52008-12-04 22:39:29 -0500459 (evt_sub_category == LPFC_EVENT_PORT_BUSY)) {
James Smartea2151b2008-09-07 11:52:10 -0400460 evt_data = (char *) &fast_evt_data->un.fabric_evt;
461 evt_data_size = sizeof(fast_evt_data->un.fabric_evt);
462 } else {
463 lpfc_free_fast_evt(phba, fast_evt_data);
464 return;
465 }
466 } else if (evt_category == FC_REG_SCSI_EVENT) {
467 switch (evt_sub_category) {
468 case LPFC_EVENT_QFULL:
469 case LPFC_EVENT_DEVBSY:
470 evt_data = (char *) &fast_evt_data->un.scsi_evt;
471 evt_data_size = sizeof(fast_evt_data->un.scsi_evt);
472 break;
473 case LPFC_EVENT_CHECK_COND:
474 evt_data = (char *) &fast_evt_data->un.check_cond_evt;
475 evt_data_size = sizeof(fast_evt_data->un.
476 check_cond_evt);
477 break;
478 case LPFC_EVENT_VARQUEDEPTH:
479 evt_data = (char *) &fast_evt_data->un.queue_depth_evt;
480 evt_data_size = sizeof(fast_evt_data->un.
481 queue_depth_evt);
482 break;
483 default:
484 lpfc_free_fast_evt(phba, fast_evt_data);
485 return;
486 }
487 } else {
488 lpfc_free_fast_evt(phba, fast_evt_data);
489 return;
490 }
491
492 fc_host_post_vendor_event(shost,
493 fc_get_event_number(),
494 evt_data_size,
495 evt_data,
James Smartddcc50f2008-12-04 22:38:46 -0500496 LPFC_NL_VENDOR_ID);
James Smartea2151b2008-09-07 11:52:10 -0400497
498 lpfc_free_fast_evt(phba, fast_evt_data);
499 return;
500}
501
dea31012005-04-17 16:05:31 -0500502static void
James Smart2e0fef82007-06-17 19:56:36 -0500503lpfc_work_list_done(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -0500504{
505 struct lpfc_work_evt *evtp = NULL;
506 struct lpfc_nodelist *ndlp;
507 int free_evt;
James Smarta93ff372010-10-22 11:06:08 -0400508 int fcf_inuse;
509 uint32_t nlp_did;
dea31012005-04-17 16:05:31 -0500510
James Smart2e0fef82007-06-17 19:56:36 -0500511 spin_lock_irq(&phba->hbalock);
512 while (!list_empty(&phba->work_list)) {
dea31012005-04-17 16:05:31 -0500513 list_remove_head((&phba->work_list), evtp, typeof(*evtp),
514 evt_listp);
James Smart2e0fef82007-06-17 19:56:36 -0500515 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -0500516 free_evt = 1;
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -0500517 switch (evtp->evt) {
dea31012005-04-17 16:05:31 -0500518 case LPFC_EVT_ELS_RETRY:
James Smart2e0fef82007-06-17 19:56:36 -0500519 ndlp = (struct lpfc_nodelist *) (evtp->evt_arg1);
dea31012005-04-17 16:05:31 -0500520 lpfc_els_retry_delay_handler(ndlp);
James Smart92d7f7b2007-06-17 19:56:38 -0500521 free_evt = 0; /* evt is part of ndlp */
James Smartfa4066b2008-01-11 01:53:27 -0500522 /* decrement the node reference count held
523 * for this queued work
524 */
525 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -0500526 break;
James Smart858c9f62007-06-17 19:56:39 -0500527 case LPFC_EVT_DEV_LOSS:
528 ndlp = (struct lpfc_nodelist *)(evtp->evt_arg1);
James Smarta93ff372010-10-22 11:06:08 -0400529 fcf_inuse = lpfc_dev_loss_tmo_handler(ndlp);
James Smart858c9f62007-06-17 19:56:39 -0500530 free_evt = 0;
James Smartfa4066b2008-01-11 01:53:27 -0500531 /* decrement the node reference count held for
532 * this queued work
533 */
James Smarta93ff372010-10-22 11:06:08 -0400534 nlp_did = ndlp->nlp_DID;
James Smart858c9f62007-06-17 19:56:39 -0500535 lpfc_nlp_put(ndlp);
James Smarta93ff372010-10-22 11:06:08 -0400536 if (phba->sli_rev == LPFC_SLI_REV4)
537 lpfc_sli4_post_dev_loss_tmo_handler(phba,
538 fcf_inuse,
539 nlp_did);
James Smart858c9f62007-06-17 19:56:39 -0500540 break;
dea31012005-04-17 16:05:31 -0500541 case LPFC_EVT_ONLINE:
James Smart2e0fef82007-06-17 19:56:36 -0500542 if (phba->link_state < LPFC_LINK_DOWN)
543 *(int *) (evtp->evt_arg1) = lpfc_online(phba);
Jamie Wellnitz41415862006-02-28 19:25:27 -0500544 else
James Smart2e0fef82007-06-17 19:56:36 -0500545 *(int *) (evtp->evt_arg1) = 0;
dea31012005-04-17 16:05:31 -0500546 complete((struct completion *)(evtp->evt_arg2));
547 break;
James Smart46fa3112007-04-25 09:51:45 -0400548 case LPFC_EVT_OFFLINE_PREP:
James Smart2e0fef82007-06-17 19:56:36 -0500549 if (phba->link_state >= LPFC_LINK_DOWN)
James Smart618a5232012-06-12 13:54:36 -0400550 lpfc_offline_prep(phba, LPFC_MBX_WAIT);
James Smart46fa3112007-04-25 09:51:45 -0400551 *(int *)(evtp->evt_arg1) = 0;
552 complete((struct completion *)(evtp->evt_arg2));
553 break;
554 case LPFC_EVT_OFFLINE:
555 lpfc_offline(phba);
Jamie Wellnitz41415862006-02-28 19:25:27 -0500556 lpfc_sli_brdrestart(phba);
557 *(int *)(evtp->evt_arg1) =
James Smart46fa3112007-04-25 09:51:45 -0400558 lpfc_sli_brdready(phba, HS_FFRDY | HS_MBRDY);
559 lpfc_unblock_mgmt_io(phba);
Jamie Wellnitz41415862006-02-28 19:25:27 -0500560 complete((struct completion *)(evtp->evt_arg2));
561 break;
562 case LPFC_EVT_WARM_START:
James Smart46fa3112007-04-25 09:51:45 -0400563 lpfc_offline(phba);
James Smart92908312006-03-07 15:04:13 -0500564 lpfc_reset_barrier(phba);
Jamie Wellnitz41415862006-02-28 19:25:27 -0500565 lpfc_sli_brdreset(phba);
566 lpfc_hba_down_post(phba);
567 *(int *)(evtp->evt_arg1) =
568 lpfc_sli_brdready(phba, HS_MBRDY);
James Smart46fa3112007-04-25 09:51:45 -0400569 lpfc_unblock_mgmt_io(phba);
Jamie Wellnitz41415862006-02-28 19:25:27 -0500570 complete((struct completion *)(evtp->evt_arg2));
571 break;
572 case LPFC_EVT_KILL:
James Smart46fa3112007-04-25 09:51:45 -0400573 lpfc_offline(phba);
James Smart92908312006-03-07 15:04:13 -0500574 *(int *)(evtp->evt_arg1)
James Smart2e0fef82007-06-17 19:56:36 -0500575 = (phba->pport->stopped)
576 ? 0 : lpfc_sli_brdkill(phba);
James Smart46fa3112007-04-25 09:51:45 -0400577 lpfc_unblock_mgmt_io(phba);
dea31012005-04-17 16:05:31 -0500578 complete((struct completion *)(evtp->evt_arg2));
579 break;
James Smartea2151b2008-09-07 11:52:10 -0400580 case LPFC_EVT_FASTPATH_MGMT_EVT:
581 lpfc_send_fastpath_evt(phba, evtp);
582 free_evt = 0;
583 break;
James Smart78730cf2010-04-06 15:06:30 -0400584 case LPFC_EVT_RESET_HBA:
585 if (!(phba->pport->load_flag & FC_UNLOADING))
586 lpfc_reset_hba(phba);
587 break;
dea31012005-04-17 16:05:31 -0500588 }
589 if (free_evt)
590 kfree(evtp);
James Smart2e0fef82007-06-17 19:56:36 -0500591 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -0500592 }
James Smart2e0fef82007-06-17 19:56:36 -0500593 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -0500594
595}
596
James Smart311464e2007-08-02 11:10:37 -0400597static void
James Smart2e0fef82007-06-17 19:56:36 -0500598lpfc_work_done(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -0500599{
600 struct lpfc_sli_ring *pring;
James Smart858c9f62007-06-17 19:56:39 -0500601 uint32_t ha_copy, status, control, work_port_events;
James Smart549e55c2007-08-02 11:09:51 -0400602 struct lpfc_vport **vports;
James Smart51ef4c22007-08-02 11:10:31 -0400603 struct lpfc_vport *vport;
James Smart549e55c2007-08-02 11:09:51 -0400604 int i;
dea31012005-04-17 16:05:31 -0500605
James Smart2e0fef82007-06-17 19:56:36 -0500606 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -0500607 ha_copy = phba->work_ha;
608 phba->work_ha = 0;
James Smart2e0fef82007-06-17 19:56:36 -0500609 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -0500610
James Smartda0436e2009-05-22 14:51:39 -0400611 /* First, try to post the next mailbox command to SLI4 device */
612 if (phba->pci_dev_grp == LPFC_PCI_DEV_OC)
613 lpfc_sli4_post_async_mbox(phba);
614
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -0500615 if (ha_copy & HA_ERATT)
James Smart93996272008-08-24 21:50:30 -0400616 /* Handle the error attention event */
dea31012005-04-17 16:05:31 -0500617 lpfc_handle_eratt(phba);
618
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -0500619 if (ha_copy & HA_MBATT)
dea31012005-04-17 16:05:31 -0500620 lpfc_sli_handle_mb_event(phba);
621
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -0500622 if (ha_copy & HA_LATT)
dea31012005-04-17 16:05:31 -0500623 lpfc_handle_latt(phba);
James Smart93996272008-08-24 21:50:30 -0400624
James Smartda0436e2009-05-22 14:51:39 -0400625 /* Process SLI4 events */
626 if (phba->pci_dev_grp == LPFC_PCI_DEV_OC) {
James Smart19ca7602010-11-20 23:11:55 -0500627 if (phba->hba_flag & HBA_RRQ_ACTIVE)
628 lpfc_handle_rrq_active(phba);
James Smartda0436e2009-05-22 14:51:39 -0400629 if (phba->hba_flag & FCP_XRI_ABORT_EVENT)
630 lpfc_sli4_fcp_xri_abort_event_proc(phba);
631 if (phba->hba_flag & ELS_XRI_ABORT_EVENT)
632 lpfc_sli4_els_xri_abort_event_proc(phba);
633 if (phba->hba_flag & ASYNC_EVENT)
634 lpfc_sli4_async_event_proc(phba);
635 if (phba->hba_flag & HBA_POST_RECEIVE_BUFFER) {
636 spin_lock_irq(&phba->hbalock);
637 phba->hba_flag &= ~HBA_POST_RECEIVE_BUFFER;
638 spin_unlock_irq(&phba->hbalock);
639 lpfc_sli_hbqbuf_add_hbqs(phba, LPFC_ELS_HBQ);
640 }
James Smartecfd03c2010-02-12 14:41:27 -0500641 if (phba->fcf.fcf_flag & FCF_REDISC_EVT)
642 lpfc_sli4_fcf_redisc_event_proc(phba);
James Smartda0436e2009-05-22 14:51:39 -0400643 }
644
James Smart549e55c2007-08-02 11:09:51 -0400645 vports = lpfc_create_vport_work_array(phba);
646 if (vports != NULL)
James Smartda0436e2009-05-22 14:51:39 -0400647 for (i = 0; i <= phba->max_vports; i++) {
James Smart51ef4c22007-08-02 11:10:31 -0400648 /*
649 * We could have no vports in array if unloading, so if
650 * this happens then just use the pport
651 */
652 if (vports[i] == NULL && i == 0)
653 vport = phba->pport;
654 else
655 vport = vports[i];
656 if (vport == NULL)
657 break;
James Smart58da1ff2008-04-07 10:15:56 -0400658 spin_lock_irq(&vport->work_port_lock);
James Smart51ef4c22007-08-02 11:10:31 -0400659 work_port_events = vport->work_port_events;
James Smart58da1ff2008-04-07 10:15:56 -0400660 vport->work_port_events &= ~work_port_events;
661 spin_unlock_irq(&vport->work_port_lock);
James Smart549e55c2007-08-02 11:09:51 -0400662 if (work_port_events & WORKER_DISC_TMO)
James Smart51ef4c22007-08-02 11:10:31 -0400663 lpfc_disc_timeout_handler(vport);
James Smart549e55c2007-08-02 11:09:51 -0400664 if (work_port_events & WORKER_ELS_TMO)
James Smart51ef4c22007-08-02 11:10:31 -0400665 lpfc_els_timeout_handler(vport);
James Smart549e55c2007-08-02 11:09:51 -0400666 if (work_port_events & WORKER_HB_TMO)
667 lpfc_hb_timeout_handler(phba);
668 if (work_port_events & WORKER_MBOX_TMO)
669 lpfc_mbox_timeout_handler(phba);
670 if (work_port_events & WORKER_FABRIC_BLOCK_TMO)
671 lpfc_unblock_fabric_iocbs(phba);
672 if (work_port_events & WORKER_FDMI_TMO)
James Smart51ef4c22007-08-02 11:10:31 -0400673 lpfc_fdmi_timeout_handler(vport);
James Smart549e55c2007-08-02 11:09:51 -0400674 if (work_port_events & WORKER_RAMP_DOWN_QUEUE)
675 lpfc_ramp_down_queue_handler(phba);
676 if (work_port_events & WORKER_RAMP_UP_QUEUE)
677 lpfc_ramp_up_queue_handler(phba);
James Smart92494142011-02-16 12:39:44 -0500678 if (work_port_events & WORKER_DELAYED_DISC_TMO)
679 lpfc_delayed_disc_timeout_handler(vport);
James Smart92d7f7b2007-06-17 19:56:38 -0500680 }
James Smart09372822008-01-11 01:52:54 -0500681 lpfc_destroy_vport_work_array(phba, vports);
dea31012005-04-17 16:05:31 -0500682
James Smart858c9f62007-06-17 19:56:39 -0500683 pring = &phba->sli.ring[LPFC_ELS_RING];
684 status = (ha_copy & (HA_RXMASK << (4*LPFC_ELS_RING)));
685 status >>= (4*LPFC_ELS_RING);
James Smart4d9ab992009-10-02 15:16:39 -0400686 if ((status & HA_RXMASK) ||
687 (pring->flag & LPFC_DEFERRED_RING_EVENT) ||
James Smart45ed1192009-10-02 15:17:02 -0400688 (phba->hba_flag & HBA_SP_QUEUE_EVT)) {
James Smart0b727fe2007-10-27 13:37:25 -0400689 if (pring->flag & LPFC_STOP_IOCB_EVENT) {
James Smart858c9f62007-06-17 19:56:39 -0500690 pring->flag |= LPFC_DEFERRED_RING_EVENT;
James Smart5e9d9b82008-06-14 22:52:53 -0400691 /* Set the lpfc data pending flag */
692 set_bit(LPFC_DATA_READY, &phba->data_flags);
James Smart858c9f62007-06-17 19:56:39 -0500693 } else {
James Smart94661502013-03-01 16:37:29 -0500694 if (phba->link_state >= LPFC_LINK_UP) {
695 pring->flag &= ~LPFC_DEFERRED_RING_EVENT;
696 lpfc_sli_handle_slow_ring_event(phba, pring,
697 (status &
698 HA_RXMASK));
699 }
James Smart858c9f62007-06-17 19:56:39 -0500700 }
James Smart0e9bb8d2013-03-01 16:35:12 -0500701 if ((phba->sli_rev == LPFC_SLI_REV4) &
702 (!list_empty(&pring->txq)))
James Smart2a9bf3d2010-06-07 15:24:45 -0400703 lpfc_drain_txq(phba);
James Smart858c9f62007-06-17 19:56:39 -0500704 /*
705 * Turn on Ring interrupts
706 */
James Smart3772a992009-05-22 14:50:54 -0400707 if (phba->sli_rev <= LPFC_SLI_REV3) {
708 spin_lock_irq(&phba->hbalock);
709 control = readl(phba->HCregaddr);
710 if (!(control & (HC_R0INT_ENA << LPFC_ELS_RING))) {
711 lpfc_debugfs_slow_ring_trc(phba,
712 "WRK Enable ring: cntl:x%x hacopy:x%x",
713 control, ha_copy, 0);
James Smarta58cbd52007-08-02 11:09:43 -0400714
James Smart3772a992009-05-22 14:50:54 -0400715 control |= (HC_R0INT_ENA << LPFC_ELS_RING);
716 writel(control, phba->HCregaddr);
717 readl(phba->HCregaddr); /* flush */
718 } else {
719 lpfc_debugfs_slow_ring_trc(phba,
720 "WRK Ring ok: cntl:x%x hacopy:x%x",
721 control, ha_copy, 0);
722 }
723 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -0500724 }
725 }
James Smart2e0fef82007-06-17 19:56:36 -0500726 lpfc_work_list_done(phba);
dea31012005-04-17 16:05:31 -0500727}
728
dea31012005-04-17 16:05:31 -0500729int
730lpfc_do_work(void *p)
731{
732 struct lpfc_hba *phba = p;
733 int rc;
dea31012005-04-17 16:05:31 -0500734
735 set_user_nice(current, -20);
James Smart043c9562012-05-09 21:17:43 -0400736 current->flags |= PF_NOFREEZE;
James Smart5e9d9b82008-06-14 22:52:53 -0400737 phba->data_flags = 0;
dea31012005-04-17 16:05:31 -0500738
James Smart3a55b532008-12-04 22:38:54 -0500739 while (!kthread_should_stop()) {
James Smart5e9d9b82008-06-14 22:52:53 -0400740 /* wait and check worker queue activities */
741 rc = wait_event_interruptible(phba->work_waitq,
742 (test_and_clear_bit(LPFC_DATA_READY,
743 &phba->data_flags)
744 || kthread_should_stop()));
James Smart3a55b532008-12-04 22:38:54 -0500745 /* Signal wakeup shall terminate the worker thread */
746 if (rc) {
747 lpfc_printf_log(phba, KERN_ERR, LOG_ELS,
748 "0433 Wakeup on signal: rc=x%x\n", rc);
dea31012005-04-17 16:05:31 -0500749 break;
James Smart3a55b532008-12-04 22:38:54 -0500750 }
dea31012005-04-17 16:05:31 -0500751
James Smart5e9d9b82008-06-14 22:52:53 -0400752 /* Attend pending lpfc data processing */
dea31012005-04-17 16:05:31 -0500753 lpfc_work_done(phba);
dea31012005-04-17 16:05:31 -0500754 }
James Smart3a55b532008-12-04 22:38:54 -0500755 phba->worker_thread = NULL;
756 lpfc_printf_log(phba, KERN_INFO, LOG_ELS,
757 "0432 Worker thread stopped.\n");
dea31012005-04-17 16:05:31 -0500758 return 0;
759}
760
761/*
762 * This is only called to handle FC worker events. Since this a rare
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300763 * occurrence, we allocate a struct lpfc_work_evt structure here instead of
dea31012005-04-17 16:05:31 -0500764 * embedding it in the IOCB.
765 */
766int
James Smart2e0fef82007-06-17 19:56:36 -0500767lpfc_workq_post_event(struct lpfc_hba *phba, void *arg1, void *arg2,
dea31012005-04-17 16:05:31 -0500768 uint32_t evt)
769{
770 struct lpfc_work_evt *evtp;
James Smarted957682007-06-17 19:56:37 -0500771 unsigned long flags;
dea31012005-04-17 16:05:31 -0500772
773 /*
774 * All Mailbox completions and LPFC_ELS_RING rcv ring IOCB events will
775 * be queued to worker thread for processing
776 */
James Smart92d7f7b2007-06-17 19:56:38 -0500777 evtp = kmalloc(sizeof(struct lpfc_work_evt), GFP_ATOMIC);
dea31012005-04-17 16:05:31 -0500778 if (!evtp)
779 return 0;
780
781 evtp->evt_arg1 = arg1;
782 evtp->evt_arg2 = arg2;
783 evtp->evt = evt;
784
James Smarted957682007-06-17 19:56:37 -0500785 spin_lock_irqsave(&phba->hbalock, flags);
James Smart071fbd3d2006-04-15 11:53:20 -0400786 list_add_tail(&evtp->evt_listp, &phba->work_list);
James Smarted957682007-06-17 19:56:37 -0500787 spin_unlock_irqrestore(&phba->hbalock, flags);
dea31012005-04-17 16:05:31 -0500788
James Smart5e9d9b82008-06-14 22:52:53 -0400789 lpfc_worker_wake_up(phba);
790
dea31012005-04-17 16:05:31 -0500791 return 1;
792}
793
James Smart92d7f7b2007-06-17 19:56:38 -0500794void
795lpfc_cleanup_rpis(struct lpfc_vport *vport, int remove)
796{
James Smart09372822008-01-11 01:52:54 -0500797 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart92d7f7b2007-06-17 19:56:38 -0500798 struct lpfc_hba *phba = vport->phba;
799 struct lpfc_nodelist *ndlp, *next_ndlp;
800 int rc;
801
802 list_for_each_entry_safe(ndlp, next_ndlp, &vport->fc_nodes, nlp_listp) {
James Smarte47c9092008-02-08 18:49:26 -0500803 if (!NLP_CHK_NODE_ACT(ndlp))
804 continue;
James Smart92d7f7b2007-06-17 19:56:38 -0500805 if (ndlp->nlp_state == NLP_STE_UNUSED_NODE)
806 continue;
James Smart98c9ea52007-10-27 13:37:33 -0400807 if ((phba->sli3_options & LPFC_SLI3_VPORT_TEARDOWN) ||
808 ((vport->port_type == LPFC_NPIV_PORT) &&
809 (ndlp->nlp_DID == NameServer_DID)))
James Smart92d7f7b2007-06-17 19:56:38 -0500810 lpfc_unreg_rpi(vport, ndlp);
811
812 /* Leave Fabric nodes alone on link down */
James Smart4d9ab992009-10-02 15:16:39 -0400813 if ((phba->sli_rev < LPFC_SLI_REV4) &&
814 (!remove && ndlp->nlp_type & NLP_FABRIC))
James Smart92d7f7b2007-06-17 19:56:38 -0500815 continue;
816 rc = lpfc_disc_state_machine(vport, ndlp, NULL,
817 remove
818 ? NLP_EVT_DEVICE_RM
819 : NLP_EVT_DEVICE_RECOVERY);
820 }
821 if (phba->sli3_options & LPFC_SLI3_VPORT_TEARDOWN) {
James Smart5af5eee2010-10-22 11:06:38 -0400822 if (phba->sli_rev == LPFC_SLI_REV4)
823 lpfc_sli4_unreg_all_rpis(vport);
James Smart92d7f7b2007-06-17 19:56:38 -0500824 lpfc_mbx_unreg_vpi(vport);
James Smart09372822008-01-11 01:52:54 -0500825 spin_lock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -0500826 vport->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
James Smart09372822008-01-11 01:52:54 -0500827 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -0500828 }
829}
830
James Smart87af33f2007-10-27 13:37:43 -0400831void
James Smart98c9ea52007-10-27 13:37:33 -0400832lpfc_port_link_failure(struct lpfc_vport *vport)
James Smart92d7f7b2007-06-17 19:56:38 -0500833{
James Smart695a8142010-01-26 23:08:03 -0500834 lpfc_vport_set_state(vport, FC_VPORT_LINKDOWN);
835
James Smart45ed1192009-10-02 15:17:02 -0400836 /* Cleanup any outstanding received buffers */
837 lpfc_cleanup_rcv_buffers(vport);
838
James Smart92d7f7b2007-06-17 19:56:38 -0500839 /* Cleanup any outstanding RSCN activity */
840 lpfc_els_flush_rscn(vport);
841
842 /* Cleanup any outstanding ELS commands */
843 lpfc_els_flush_cmd(vport);
844
845 lpfc_cleanup_rpis(vport, 0);
846
James Smart92d7f7b2007-06-17 19:56:38 -0500847 /* Turn off discovery timer if its running */
848 lpfc_can_disctmo(vport);
849}
850
James Smart3772a992009-05-22 14:50:54 -0400851void
James Smart98c9ea52007-10-27 13:37:33 -0400852lpfc_linkdown_port(struct lpfc_vport *vport)
853{
854 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
855
856 fc_host_post_event(shost, fc_get_event_number(), FCH_EVT_LINKDOWN, 0);
857
858 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
859 "Link Down: state:x%x rtry:x%x flg:x%x",
860 vport->port_state, vport->fc_ns_retry, vport->fc_flag);
861
862 lpfc_port_link_failure(vport);
863
James Smart92494142011-02-16 12:39:44 -0500864 /* Stop delayed Nport discovery */
865 spin_lock_irq(shost->host_lock);
866 vport->fc_flag &= ~FC_DISC_DELAYED;
867 spin_unlock_irq(shost->host_lock);
868 del_timer_sync(&vport->delayed_disc_tmo);
James Smart98c9ea52007-10-27 13:37:33 -0400869}
870
dea31012005-04-17 16:05:31 -0500871int
James Smart685f0bf2007-04-25 09:53:08 -0400872lpfc_linkdown(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -0500873{
James Smart2e0fef82007-06-17 19:56:36 -0500874 struct lpfc_vport *vport = phba->pport;
875 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart549e55c2007-08-02 11:09:51 -0400876 struct lpfc_vport **vports;
James Smart685f0bf2007-04-25 09:53:08 -0400877 LPFC_MBOXQ_t *mb;
James Smart549e55c2007-08-02 11:09:51 -0400878 int i;
dea31012005-04-17 16:05:31 -0500879
James Smart3163f722008-02-08 18:50:25 -0500880 if (phba->link_state == LPFC_LINK_DOWN)
James Smart2e0fef82007-06-17 19:56:36 -0500881 return 0;
James Smartaacc20e2009-12-21 17:02:51 -0500882
883 /* Block all SCSI stack I/Os */
884 lpfc_scsi_dev_block(phba);
885
James Smart2e0fef82007-06-17 19:56:36 -0500886 spin_lock_irq(&phba->hbalock);
James Smartecfd03c2010-02-12 14:41:27 -0500887 phba->fcf.fcf_flag &= ~(FCF_AVAILABLE | FCF_SCAN_DONE);
James Smart72100cc2010-02-12 14:43:01 -0500888 spin_unlock_irq(&phba->hbalock);
James Smart92d7f7b2007-06-17 19:56:38 -0500889 if (phba->link_state > LPFC_LINK_DOWN) {
James Smart2e0fef82007-06-17 19:56:36 -0500890 phba->link_state = LPFC_LINK_DOWN;
James Smart72100cc2010-02-12 14:43:01 -0500891 spin_lock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -0500892 phba->pport->fc_flag &= ~FC_LBIT;
James Smart72100cc2010-02-12 14:43:01 -0500893 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -0500894 }
James Smart549e55c2007-08-02 11:09:51 -0400895 vports = lpfc_create_vport_work_array(phba);
896 if (vports != NULL)
James Smart6fb120a2009-05-22 14:52:59 -0400897 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
James Smart549e55c2007-08-02 11:09:51 -0400898 /* Issue a LINK DOWN event to all nodes */
899 lpfc_linkdown_port(vports[i]);
900 }
James Smart09372822008-01-11 01:52:54 -0500901 lpfc_destroy_vport_work_array(phba, vports);
dea31012005-04-17 16:05:31 -0500902 /* Clean up any firmware default rpi's */
James Smart2e0fef82007-06-17 19:56:36 -0500903 mb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
904 if (mb) {
James Smart6d368e52011-05-24 11:44:12 -0400905 lpfc_unreg_did(phba, 0xffff, LPFC_UNREG_ALL_DFLT_RPIS, mb);
James Smarted957682007-06-17 19:56:37 -0500906 mb->vport = vport;
James Smart2e0fef82007-06-17 19:56:36 -0500907 mb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
James Smart0b727fe2007-10-27 13:37:25 -0400908 if (lpfc_sli_issue_mbox(phba, mb, MBX_NOWAIT)
dea31012005-04-17 16:05:31 -0500909 == MBX_NOT_FINISHED) {
James Smart2e0fef82007-06-17 19:56:36 -0500910 mempool_free(mb, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -0500911 }
912 }
913
dea31012005-04-17 16:05:31 -0500914 /* Setup myDID for link up if we are in pt2pt mode */
James Smart92d7f7b2007-06-17 19:56:38 -0500915 if (phba->pport->fc_flag & FC_PT2PT) {
916 phba->pport->fc_myDID = 0;
James Smart2e0fef82007-06-17 19:56:36 -0500917 mb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
918 if (mb) {
dea31012005-04-17 16:05:31 -0500919 lpfc_config_link(phba, mb);
James Smart92d7f7b2007-06-17 19:56:38 -0500920 mb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
James Smarted957682007-06-17 19:56:37 -0500921 mb->vport = vport;
James Smart0b727fe2007-10-27 13:37:25 -0400922 if (lpfc_sli_issue_mbox(phba, mb, MBX_NOWAIT)
dea31012005-04-17 16:05:31 -0500923 == MBX_NOT_FINISHED) {
James Smart2e0fef82007-06-17 19:56:36 -0500924 mempool_free(mb, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -0500925 }
926 }
James Smart2e0fef82007-06-17 19:56:36 -0500927 spin_lock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -0500928 phba->pport->fc_flag &= ~(FC_PT2PT | FC_PT2PT_PLOGI);
James Smart2e0fef82007-06-17 19:56:36 -0500929 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500930 }
James Smart2e0fef82007-06-17 19:56:36 -0500931
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -0500932 return 0;
dea31012005-04-17 16:05:31 -0500933}
934
James Smart92d7f7b2007-06-17 19:56:38 -0500935static void
936lpfc_linkup_cleanup_nodes(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -0500937{
James Smart92d7f7b2007-06-17 19:56:38 -0500938 struct lpfc_nodelist *ndlp;
939
940 list_for_each_entry(ndlp, &vport->fc_nodes, nlp_listp) {
James Smarte47c9092008-02-08 18:49:26 -0500941 if (!NLP_CHK_NODE_ACT(ndlp))
942 continue;
James Smart92d7f7b2007-06-17 19:56:38 -0500943 if (ndlp->nlp_state == NLP_STE_UNUSED_NODE)
944 continue;
James Smart92d7f7b2007-06-17 19:56:38 -0500945 if (ndlp->nlp_type & NLP_FABRIC) {
James Smarte47c9092008-02-08 18:49:26 -0500946 /* On Linkup its safe to clean up the ndlp
947 * from Fabric connections.
948 */
James Smart92d7f7b2007-06-17 19:56:38 -0500949 if (ndlp->nlp_DID != Fabric_DID)
950 lpfc_unreg_rpi(vport, ndlp);
951 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
952 } else if (!(ndlp->nlp_flag & NLP_NPR_ADISC)) {
James Smarte47c9092008-02-08 18:49:26 -0500953 /* Fail outstanding IO now since device is
954 * marked for PLOGI.
955 */
James Smart92d7f7b2007-06-17 19:56:38 -0500956 lpfc_unreg_rpi(vport, ndlp);
957 }
958 }
959}
960
961static void
962lpfc_linkup_port(struct lpfc_vport *vport)
963{
964 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart92d7f7b2007-06-17 19:56:38 -0500965 struct lpfc_hba *phba = vport->phba;
966
967 if ((vport->load_flag & FC_UNLOADING) != 0)
968 return;
969
James Smart858c9f62007-06-17 19:56:39 -0500970 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
971 "Link Up: top:x%x speed:x%x flg:x%x",
972 phba->fc_topology, phba->fc_linkspeed, phba->link_flag);
973
James Smart92d7f7b2007-06-17 19:56:38 -0500974 /* If NPIV is not enabled, only bring the physical port up */
975 if (!(phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
976 (vport != phba->pport))
977 return;
dea31012005-04-17 16:05:31 -0500978
James Smart2e0fef82007-06-17 19:56:36 -0500979 fc_host_post_event(shost, fc_get_event_number(), FCH_EVT_LINKUP, 0);
James Smartd2873e42006-08-18 17:46:43 -0400980
James Smart2e0fef82007-06-17 19:56:36 -0500981 spin_lock_irq(shost->host_lock);
James Smart2e0fef82007-06-17 19:56:36 -0500982 vport->fc_flag &= ~(FC_PT2PT | FC_PT2PT_PLOGI | FC_ABORT_DISCOVERY |
983 FC_RSCN_MODE | FC_NLP_MORE | FC_RSCN_DISCOVERY);
984 vport->fc_flag |= FC_NDISC_ACTIVE;
985 vport->fc_ns_retry = 0;
986 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500987
James Smart92d7f7b2007-06-17 19:56:38 -0500988 if (vport->fc_flag & FC_LBIT)
989 lpfc_linkup_cleanup_nodes(vport);
dea31012005-04-17 16:05:31 -0500990
James Smart92d7f7b2007-06-17 19:56:38 -0500991}
992
993static int
994lpfc_linkup(struct lpfc_hba *phba)
995{
James Smart549e55c2007-08-02 11:09:51 -0400996 struct lpfc_vport **vports;
997 int i;
James Smart92d7f7b2007-06-17 19:56:38 -0500998
James Smart19ca7602010-11-20 23:11:55 -0500999 lpfc_cleanup_wt_rrqs(phba);
James Smart92d7f7b2007-06-17 19:56:38 -05001000 phba->link_state = LPFC_LINK_UP;
1001
1002 /* Unblock fabric iocbs if they are blocked */
1003 clear_bit(FABRIC_COMANDS_BLOCKED, &phba->bit_flags);
1004 del_timer_sync(&phba->fabric_block_timer);
1005
James Smart549e55c2007-08-02 11:09:51 -04001006 vports = lpfc_create_vport_work_array(phba);
1007 if (vports != NULL)
James Smart6fb120a2009-05-22 14:52:59 -04001008 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++)
James Smart549e55c2007-08-02 11:09:51 -04001009 lpfc_linkup_port(vports[i]);
James Smart09372822008-01-11 01:52:54 -05001010 lpfc_destroy_vport_work_array(phba, vports);
James Smart6fb120a2009-05-22 14:52:59 -04001011 if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
1012 (phba->sli_rev < LPFC_SLI_REV4))
James Smart92d7f7b2007-06-17 19:56:38 -05001013 lpfc_issue_clear_la(phba, phba->pport);
dea31012005-04-17 16:05:31 -05001014
1015 return 0;
1016}
1017
1018/*
1019 * This routine handles processing a CLEAR_LA mailbox
1020 * command upon completion. It is setup in the LPFC_MBOXQ
1021 * as the completion routine when the command is
1022 * handed off to the SLI layer.
1023 */
Adrian Bunka6ababd2007-11-05 18:07:33 +01001024static void
James Smart2e0fef82007-06-17 19:56:36 -05001025lpfc_mbx_cmpl_clear_la(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
dea31012005-04-17 16:05:31 -05001026{
James Smart2e0fef82007-06-17 19:56:36 -05001027 struct lpfc_vport *vport = pmb->vport;
1028 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1029 struct lpfc_sli *psli = &phba->sli;
James Smart04c68492009-05-22 14:52:52 -04001030 MAILBOX_t *mb = &pmb->u.mb;
dea31012005-04-17 16:05:31 -05001031 uint32_t control;
1032
dea31012005-04-17 16:05:31 -05001033 /* Since we don't do discovery right now, turn these off here */
James Smarta4bc3372006-12-02 13:34:16 -05001034 psli->ring[psli->extra_ring].flag &= ~LPFC_STOP_IOCB_EVENT;
dea31012005-04-17 16:05:31 -05001035 psli->ring[psli->fcp_ring].flag &= ~LPFC_STOP_IOCB_EVENT;
1036 psli->ring[psli->next_ring].flag &= ~LPFC_STOP_IOCB_EVENT;
1037
1038 /* Check for error */
1039 if ((mb->mbxStatus) && (mb->mbxStatus != 0x1601)) {
James Smart92d7f7b2007-06-17 19:56:38 -05001040 /* CLEAR_LA mbox error <mbxStatus> state <hba_state> */
James Smarte8b62012007-08-02 11:10:09 -04001041 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
1042 "0320 CLEAR_LA mbxStatus error x%x hba "
1043 "state x%x\n",
1044 mb->mbxStatus, vport->port_state);
James Smart2e0fef82007-06-17 19:56:36 -05001045 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -05001046 goto out;
1047 }
1048
James Smart92d7f7b2007-06-17 19:56:38 -05001049 if (vport->port_type == LPFC_PHYSICAL_PORT)
1050 phba->link_state = LPFC_HBA_READY;
1051
1052 spin_lock_irq(&phba->hbalock);
1053 psli->sli_flag |= LPFC_PROCESS_LA;
1054 control = readl(phba->HCregaddr);
1055 control |= HC_LAINT_ENA;
1056 writel(control, phba->HCregaddr);
1057 readl(phba->HCregaddr); /* flush */
1058 spin_unlock_irq(&phba->hbalock);
James Smart1b32f6a2008-02-08 18:49:39 -05001059 mempool_free(pmb, phba->mbox_mem_pool);
James Smart92d7f7b2007-06-17 19:56:38 -05001060 return;
dea31012005-04-17 16:05:31 -05001061
dea31012005-04-17 16:05:31 -05001062out:
1063 /* Device Discovery completes */
James Smarte8b62012007-08-02 11:10:09 -04001064 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
1065 "0225 Device Discovery completes\n");
James Smart2e0fef82007-06-17 19:56:36 -05001066 mempool_free(pmb, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -05001067
James Smart2e0fef82007-06-17 19:56:36 -05001068 spin_lock_irq(shost->host_lock);
James Smart58da1ff2008-04-07 10:15:56 -04001069 vport->fc_flag &= ~FC_ABORT_DISCOVERY;
James Smart2e0fef82007-06-17 19:56:36 -05001070 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001071
James Smart2e0fef82007-06-17 19:56:36 -05001072 lpfc_can_disctmo(vport);
dea31012005-04-17 16:05:31 -05001073
1074 /* turn on Link Attention interrupts */
James Smart2e0fef82007-06-17 19:56:36 -05001075
1076 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05001077 psli->sli_flag |= LPFC_PROCESS_LA;
1078 control = readl(phba->HCregaddr);
1079 control |= HC_LAINT_ENA;
1080 writel(control, phba->HCregaddr);
1081 readl(phba->HCregaddr); /* flush */
James Smart2e0fef82007-06-17 19:56:36 -05001082 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05001083
1084 return;
1085}
1086
James Smart2e0fef82007-06-17 19:56:36 -05001087
dea31012005-04-17 16:05:31 -05001088static void
Jamie Wellnitz25594c62006-02-28 19:25:34 -05001089lpfc_mbx_cmpl_local_config_link(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
dea31012005-04-17 16:05:31 -05001090{
James Smart2e0fef82007-06-17 19:56:36 -05001091 struct lpfc_vport *vport = pmb->vport;
dea31012005-04-17 16:05:31 -05001092
James Smart04c68492009-05-22 14:52:52 -04001093 if (pmb->u.mb.mbxStatus)
dea31012005-04-17 16:05:31 -05001094 goto out;
dea31012005-04-17 16:05:31 -05001095
Jamie Wellnitz25594c62006-02-28 19:25:34 -05001096 mempool_free(pmb, phba->mbox_mem_pool);
1097
James Smart1b511972011-12-13 13:23:09 -05001098 /* don't perform discovery for SLI4 loopback diagnostic test */
1099 if ((phba->sli_rev == LPFC_SLI_REV4) &&
1100 !(phba->hba_flag & HBA_FCOE_MODE) &&
1101 (phba->link_flag & LS_LOOPBACK_MODE))
1102 return;
1103
James Smart76a95d72010-11-20 23:11:48 -05001104 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP &&
James Smart2e0fef82007-06-17 19:56:36 -05001105 vport->fc_flag & FC_PUBLIC_LOOP &&
1106 !(vport->fc_flag & FC_LBIT)) {
Jamie Wellnitz25594c62006-02-28 19:25:34 -05001107 /* Need to wait for FAN - use discovery timer
James Smart2e0fef82007-06-17 19:56:36 -05001108 * for timeout. port_state is identically
Jamie Wellnitz25594c62006-02-28 19:25:34 -05001109 * LPFC_LOCAL_CFG_LINK while waiting for FAN
1110 */
James Smart2e0fef82007-06-17 19:56:36 -05001111 lpfc_set_disctmo(vport);
Jamie Wellnitz25594c62006-02-28 19:25:34 -05001112 return;
James Smart92d7f7b2007-06-17 19:56:38 -05001113 }
dea31012005-04-17 16:05:31 -05001114
James Smart2e0fef82007-06-17 19:56:36 -05001115 /* Start discovery by sending a FLOGI. port_state is identically
Jamie Wellnitz25594c62006-02-28 19:25:34 -05001116 * LPFC_FLOGI while waiting for FLOGI cmpl
1117 */
James Smarte6446432012-05-09 21:16:42 -04001118 if (vport->port_state != LPFC_FLOGI || vport->fc_flag & FC_PT2PT_PLOGI)
James Smart92d7f7b2007-06-17 19:56:38 -05001119 lpfc_initial_flogi(vport);
Jamie Wellnitz25594c62006-02-28 19:25:34 -05001120 return;
dea31012005-04-17 16:05:31 -05001121
1122out:
James Smarte8b62012007-08-02 11:10:09 -04001123 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
1124 "0306 CONFIG_LINK mbxStatus error x%x "
1125 "HBA state x%x\n",
James Smart04c68492009-05-22 14:52:52 -04001126 pmb->u.mb.mbxStatus, vport->port_state);
James Smart92d7f7b2007-06-17 19:56:38 -05001127 mempool_free(pmb, phba->mbox_mem_pool);
Jamie Wellnitz25594c62006-02-28 19:25:34 -05001128
1129 lpfc_linkdown(phba);
1130
James Smarte8b62012007-08-02 11:10:09 -04001131 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
1132 "0200 CONFIG_LINK bad hba state x%x\n",
1133 vport->port_state);
dea31012005-04-17 16:05:31 -05001134
James Smart92d7f7b2007-06-17 19:56:38 -05001135 lpfc_issue_clear_la(phba, vport);
dea31012005-04-17 16:05:31 -05001136 return;
1137}
1138
James Smart7d791df2011-07-22 18:37:52 -04001139/**
1140 * lpfc_sli4_clear_fcf_rr_bmask
1141 * @phba pointer to the struct lpfc_hba for this port.
1142 * This fucnction resets the round robin bit mask and clears the
1143 * fcf priority list. The list deletions are done while holding the
1144 * hbalock. The ON_LIST flag and the FLOGI_FAILED flags are cleared
1145 * from the lpfc_fcf_pri record.
1146 **/
1147void
1148lpfc_sli4_clear_fcf_rr_bmask(struct lpfc_hba *phba)
1149{
1150 struct lpfc_fcf_pri *fcf_pri;
1151 struct lpfc_fcf_pri *next_fcf_pri;
1152 memset(phba->fcf.fcf_rr_bmask, 0, sizeof(*phba->fcf.fcf_rr_bmask));
1153 spin_lock_irq(&phba->hbalock);
1154 list_for_each_entry_safe(fcf_pri, next_fcf_pri,
1155 &phba->fcf.fcf_pri_list, list) {
1156 list_del_init(&fcf_pri->list);
1157 fcf_pri->fcf_rec.flag = 0;
1158 }
1159 spin_unlock_irq(&phba->hbalock);
1160}
dea31012005-04-17 16:05:31 -05001161static void
James Smart6fb120a2009-05-22 14:52:59 -04001162lpfc_mbx_cmpl_reg_fcfi(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
1163{
1164 struct lpfc_vport *vport = mboxq->vport;
James Smart6fb120a2009-05-22 14:52:59 -04001165
1166 if (mboxq->u.mb.mbxStatus) {
1167 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
1168 "2017 REG_FCFI mbxStatus error x%x "
1169 "HBA state x%x\n",
1170 mboxq->u.mb.mbxStatus, vport->port_state);
James Smarta93ff372010-10-22 11:06:08 -04001171 goto fail_out;
James Smart6fb120a2009-05-22 14:52:59 -04001172 }
1173
1174 /* Start FCoE discovery by sending a FLOGI. */
1175 phba->fcf.fcfi = bf_get(lpfc_reg_fcfi_fcfi, &mboxq->u.mqe.un.reg_fcfi);
1176 /* Set the FCFI registered flag */
James Smartd439d282010-09-29 11:18:45 -04001177 spin_lock_irq(&phba->hbalock);
James Smart6fb120a2009-05-22 14:52:59 -04001178 phba->fcf.fcf_flag |= FCF_REGISTERED;
James Smartd439d282010-09-29 11:18:45 -04001179 spin_unlock_irq(&phba->hbalock);
James Smarta93ff372010-10-22 11:06:08 -04001180
James Smart32b97932009-07-19 10:01:21 -04001181 /* If there is a pending FCoE event, restart FCF table scan. */
James Smart7d791df2011-07-22 18:37:52 -04001182 if ((!(phba->hba_flag & FCF_RR_INPROG)) &&
1183 lpfc_check_pending_fcoe_event(phba, LPFC_UNREG_FCF))
James Smarta93ff372010-10-22 11:06:08 -04001184 goto fail_out;
1185
1186 /* Mark successful completion of FCF table scan */
James Smartd439d282010-09-29 11:18:45 -04001187 spin_lock_irq(&phba->hbalock);
James Smartecfd03c2010-02-12 14:41:27 -05001188 phba->fcf.fcf_flag |= (FCF_SCAN_DONE | FCF_IN_USE);
James Smarta93ff372010-10-22 11:06:08 -04001189 phba->hba_flag &= ~FCF_TS_INPROG;
1190 if (vport->port_state != LPFC_FLOGI) {
1191 phba->hba_flag |= FCF_RR_INPROG;
1192 spin_unlock_irq(&phba->hbalock);
James Smart76a95d72010-11-20 23:11:48 -05001193 lpfc_issue_init_vfi(vport);
James Smarta93ff372010-10-22 11:06:08 -04001194 goto out;
1195 }
1196 spin_unlock_irq(&phba->hbalock);
1197 goto out;
James Smart6fb120a2009-05-22 14:52:59 -04001198
James Smarta93ff372010-10-22 11:06:08 -04001199fail_out:
1200 spin_lock_irq(&phba->hbalock);
1201 phba->hba_flag &= ~FCF_RR_INPROG;
1202 spin_unlock_irq(&phba->hbalock);
1203out:
James Smart6fb120a2009-05-22 14:52:59 -04001204 mempool_free(mboxq, phba->mbox_mem_pool);
James Smart6fb120a2009-05-22 14:52:59 -04001205}
1206
1207/**
1208 * lpfc_fab_name_match - Check if the fcf fabric name match.
1209 * @fab_name: pointer to fabric name.
1210 * @new_fcf_record: pointer to fcf record.
1211 *
1212 * This routine compare the fcf record's fabric name with provided
1213 * fabric name. If the fabric name are identical this function
1214 * returns 1 else return 0.
1215 **/
1216static uint32_t
1217lpfc_fab_name_match(uint8_t *fab_name, struct fcf_record *new_fcf_record)
1218{
James Smartecfd03c2010-02-12 14:41:27 -05001219 if (fab_name[0] != bf_get(lpfc_fcf_record_fab_name_0, new_fcf_record))
James Smart6fb120a2009-05-22 14:52:59 -04001220 return 0;
James Smartecfd03c2010-02-12 14:41:27 -05001221 if (fab_name[1] != bf_get(lpfc_fcf_record_fab_name_1, new_fcf_record))
1222 return 0;
1223 if (fab_name[2] != bf_get(lpfc_fcf_record_fab_name_2, new_fcf_record))
1224 return 0;
1225 if (fab_name[3] != bf_get(lpfc_fcf_record_fab_name_3, new_fcf_record))
1226 return 0;
1227 if (fab_name[4] != bf_get(lpfc_fcf_record_fab_name_4, new_fcf_record))
1228 return 0;
1229 if (fab_name[5] != bf_get(lpfc_fcf_record_fab_name_5, new_fcf_record))
1230 return 0;
1231 if (fab_name[6] != bf_get(lpfc_fcf_record_fab_name_6, new_fcf_record))
1232 return 0;
1233 if (fab_name[7] != bf_get(lpfc_fcf_record_fab_name_7, new_fcf_record))
1234 return 0;
1235 return 1;
James Smart6fb120a2009-05-22 14:52:59 -04001236}
1237
1238/**
James Smart8fa38512009-07-19 10:01:03 -04001239 * lpfc_sw_name_match - Check if the fcf switch name match.
1240 * @fab_name: pointer to fabric name.
1241 * @new_fcf_record: pointer to fcf record.
1242 *
1243 * This routine compare the fcf record's switch name with provided
1244 * switch name. If the switch name are identical this function
1245 * returns 1 else return 0.
1246 **/
1247static uint32_t
1248lpfc_sw_name_match(uint8_t *sw_name, struct fcf_record *new_fcf_record)
1249{
James Smartecfd03c2010-02-12 14:41:27 -05001250 if (sw_name[0] != bf_get(lpfc_fcf_record_switch_name_0, new_fcf_record))
James Smart8fa38512009-07-19 10:01:03 -04001251 return 0;
James Smartecfd03c2010-02-12 14:41:27 -05001252 if (sw_name[1] != bf_get(lpfc_fcf_record_switch_name_1, new_fcf_record))
1253 return 0;
1254 if (sw_name[2] != bf_get(lpfc_fcf_record_switch_name_2, new_fcf_record))
1255 return 0;
1256 if (sw_name[3] != bf_get(lpfc_fcf_record_switch_name_3, new_fcf_record))
1257 return 0;
1258 if (sw_name[4] != bf_get(lpfc_fcf_record_switch_name_4, new_fcf_record))
1259 return 0;
1260 if (sw_name[5] != bf_get(lpfc_fcf_record_switch_name_5, new_fcf_record))
1261 return 0;
1262 if (sw_name[6] != bf_get(lpfc_fcf_record_switch_name_6, new_fcf_record))
1263 return 0;
1264 if (sw_name[7] != bf_get(lpfc_fcf_record_switch_name_7, new_fcf_record))
1265 return 0;
1266 return 1;
James Smart8fa38512009-07-19 10:01:03 -04001267}
1268
1269/**
James Smart6fb120a2009-05-22 14:52:59 -04001270 * lpfc_mac_addr_match - Check if the fcf mac address match.
James Smartecfd03c2010-02-12 14:41:27 -05001271 * @mac_addr: pointer to mac address.
James Smart6fb120a2009-05-22 14:52:59 -04001272 * @new_fcf_record: pointer to fcf record.
1273 *
1274 * This routine compare the fcf record's mac address with HBA's
1275 * FCF mac address. If the mac addresses are identical this function
1276 * returns 1 else return 0.
1277 **/
1278static uint32_t
James Smartecfd03c2010-02-12 14:41:27 -05001279lpfc_mac_addr_match(uint8_t *mac_addr, struct fcf_record *new_fcf_record)
James Smart6fb120a2009-05-22 14:52:59 -04001280{
James Smartecfd03c2010-02-12 14:41:27 -05001281 if (mac_addr[0] != bf_get(lpfc_fcf_record_mac_0, new_fcf_record))
James Smart6fb120a2009-05-22 14:52:59 -04001282 return 0;
James Smartecfd03c2010-02-12 14:41:27 -05001283 if (mac_addr[1] != bf_get(lpfc_fcf_record_mac_1, new_fcf_record))
1284 return 0;
1285 if (mac_addr[2] != bf_get(lpfc_fcf_record_mac_2, new_fcf_record))
1286 return 0;
1287 if (mac_addr[3] != bf_get(lpfc_fcf_record_mac_3, new_fcf_record))
1288 return 0;
1289 if (mac_addr[4] != bf_get(lpfc_fcf_record_mac_4, new_fcf_record))
1290 return 0;
1291 if (mac_addr[5] != bf_get(lpfc_fcf_record_mac_5, new_fcf_record))
1292 return 0;
1293 return 1;
1294}
1295
1296static bool
1297lpfc_vlan_id_match(uint16_t curr_vlan_id, uint16_t new_vlan_id)
1298{
1299 return (curr_vlan_id == new_vlan_id);
James Smart6fb120a2009-05-22 14:52:59 -04001300}
1301
1302/**
James Smart7d791df2011-07-22 18:37:52 -04001303 * lpfc_update_fcf_record - Update driver fcf record
1304 * __lpfc_update_fcf_record_pri - update the lpfc_fcf_pri record.
1305 * @phba: pointer to lpfc hba data structure.
1306 * @fcf_index: Index for the lpfc_fcf_record.
1307 * @new_fcf_record: pointer to hba fcf record.
1308 *
1309 * This routine updates the driver FCF priority record from the new HBA FCF
1310 * record. This routine is called with the host lock held.
1311 **/
1312static void
1313__lpfc_update_fcf_record_pri(struct lpfc_hba *phba, uint16_t fcf_index,
1314 struct fcf_record *new_fcf_record
1315 )
1316{
1317 struct lpfc_fcf_pri *fcf_pri;
1318
1319 fcf_pri = &phba->fcf.fcf_pri[fcf_index];
1320 fcf_pri->fcf_rec.fcf_index = fcf_index;
1321 /* FCF record priority */
1322 fcf_pri->fcf_rec.priority = new_fcf_record->fip_priority;
1323
1324}
1325
1326/**
James Smart6fb120a2009-05-22 14:52:59 -04001327 * lpfc_copy_fcf_record - Copy fcf information to lpfc_hba.
James Smartecfd03c2010-02-12 14:41:27 -05001328 * @fcf: pointer to driver fcf record.
James Smart6fb120a2009-05-22 14:52:59 -04001329 * @new_fcf_record: pointer to fcf record.
1330 *
1331 * This routine copies the FCF information from the FCF
1332 * record to lpfc_hba data structure.
1333 **/
1334static void
James Smartecfd03c2010-02-12 14:41:27 -05001335lpfc_copy_fcf_record(struct lpfc_fcf_rec *fcf_rec,
1336 struct fcf_record *new_fcf_record)
James Smart6fb120a2009-05-22 14:52:59 -04001337{
James Smartecfd03c2010-02-12 14:41:27 -05001338 /* Fabric name */
1339 fcf_rec->fabric_name[0] =
James Smart6fb120a2009-05-22 14:52:59 -04001340 bf_get(lpfc_fcf_record_fab_name_0, new_fcf_record);
James Smartecfd03c2010-02-12 14:41:27 -05001341 fcf_rec->fabric_name[1] =
James Smart6fb120a2009-05-22 14:52:59 -04001342 bf_get(lpfc_fcf_record_fab_name_1, new_fcf_record);
James Smartecfd03c2010-02-12 14:41:27 -05001343 fcf_rec->fabric_name[2] =
James Smart6fb120a2009-05-22 14:52:59 -04001344 bf_get(lpfc_fcf_record_fab_name_2, new_fcf_record);
James Smartecfd03c2010-02-12 14:41:27 -05001345 fcf_rec->fabric_name[3] =
James Smart6fb120a2009-05-22 14:52:59 -04001346 bf_get(lpfc_fcf_record_fab_name_3, new_fcf_record);
James Smartecfd03c2010-02-12 14:41:27 -05001347 fcf_rec->fabric_name[4] =
James Smart6fb120a2009-05-22 14:52:59 -04001348 bf_get(lpfc_fcf_record_fab_name_4, new_fcf_record);
James Smartecfd03c2010-02-12 14:41:27 -05001349 fcf_rec->fabric_name[5] =
James Smart6fb120a2009-05-22 14:52:59 -04001350 bf_get(lpfc_fcf_record_fab_name_5, new_fcf_record);
James Smartecfd03c2010-02-12 14:41:27 -05001351 fcf_rec->fabric_name[6] =
James Smart6fb120a2009-05-22 14:52:59 -04001352 bf_get(lpfc_fcf_record_fab_name_6, new_fcf_record);
James Smartecfd03c2010-02-12 14:41:27 -05001353 fcf_rec->fabric_name[7] =
James Smart6fb120a2009-05-22 14:52:59 -04001354 bf_get(lpfc_fcf_record_fab_name_7, new_fcf_record);
James Smartecfd03c2010-02-12 14:41:27 -05001355 /* Mac address */
1356 fcf_rec->mac_addr[0] = bf_get(lpfc_fcf_record_mac_0, new_fcf_record);
1357 fcf_rec->mac_addr[1] = bf_get(lpfc_fcf_record_mac_1, new_fcf_record);
1358 fcf_rec->mac_addr[2] = bf_get(lpfc_fcf_record_mac_2, new_fcf_record);
1359 fcf_rec->mac_addr[3] = bf_get(lpfc_fcf_record_mac_3, new_fcf_record);
1360 fcf_rec->mac_addr[4] = bf_get(lpfc_fcf_record_mac_4, new_fcf_record);
1361 fcf_rec->mac_addr[5] = bf_get(lpfc_fcf_record_mac_5, new_fcf_record);
1362 /* FCF record index */
1363 fcf_rec->fcf_indx = bf_get(lpfc_fcf_record_fcf_index, new_fcf_record);
1364 /* FCF record priority */
1365 fcf_rec->priority = new_fcf_record->fip_priority;
1366 /* Switch name */
1367 fcf_rec->switch_name[0] =
James Smart8fa38512009-07-19 10:01:03 -04001368 bf_get(lpfc_fcf_record_switch_name_0, new_fcf_record);
James Smartecfd03c2010-02-12 14:41:27 -05001369 fcf_rec->switch_name[1] =
James Smart8fa38512009-07-19 10:01:03 -04001370 bf_get(lpfc_fcf_record_switch_name_1, new_fcf_record);
James Smartecfd03c2010-02-12 14:41:27 -05001371 fcf_rec->switch_name[2] =
James Smart8fa38512009-07-19 10:01:03 -04001372 bf_get(lpfc_fcf_record_switch_name_2, new_fcf_record);
James Smartecfd03c2010-02-12 14:41:27 -05001373 fcf_rec->switch_name[3] =
James Smart8fa38512009-07-19 10:01:03 -04001374 bf_get(lpfc_fcf_record_switch_name_3, new_fcf_record);
James Smartecfd03c2010-02-12 14:41:27 -05001375 fcf_rec->switch_name[4] =
James Smart8fa38512009-07-19 10:01:03 -04001376 bf_get(lpfc_fcf_record_switch_name_4, new_fcf_record);
James Smartecfd03c2010-02-12 14:41:27 -05001377 fcf_rec->switch_name[5] =
James Smart8fa38512009-07-19 10:01:03 -04001378 bf_get(lpfc_fcf_record_switch_name_5, new_fcf_record);
James Smartecfd03c2010-02-12 14:41:27 -05001379 fcf_rec->switch_name[6] =
James Smart8fa38512009-07-19 10:01:03 -04001380 bf_get(lpfc_fcf_record_switch_name_6, new_fcf_record);
James Smartecfd03c2010-02-12 14:41:27 -05001381 fcf_rec->switch_name[7] =
James Smart8fa38512009-07-19 10:01:03 -04001382 bf_get(lpfc_fcf_record_switch_name_7, new_fcf_record);
James Smart6fb120a2009-05-22 14:52:59 -04001383}
1384
1385/**
James Smartecfd03c2010-02-12 14:41:27 -05001386 * lpfc_update_fcf_record - Update driver fcf record
1387 * @phba: pointer to lpfc hba data structure.
1388 * @fcf_rec: pointer to driver fcf record.
1389 * @new_fcf_record: pointer to hba fcf record.
1390 * @addr_mode: address mode to be set to the driver fcf record.
1391 * @vlan_id: vlan tag to be set to the driver fcf record.
1392 * @flag: flag bits to be set to the driver fcf record.
1393 *
1394 * This routine updates the driver FCF record from the new HBA FCF record
1395 * together with the address mode, vlan_id, and other informations. This
1396 * routine is called with the host lock held.
1397 **/
1398static void
1399__lpfc_update_fcf_record(struct lpfc_hba *phba, struct lpfc_fcf_rec *fcf_rec,
1400 struct fcf_record *new_fcf_record, uint32_t addr_mode,
1401 uint16_t vlan_id, uint32_t flag)
1402{
1403 /* Copy the fields from the HBA's FCF record */
1404 lpfc_copy_fcf_record(fcf_rec, new_fcf_record);
1405 /* Update other fields of driver FCF record */
1406 fcf_rec->addr_mode = addr_mode;
1407 fcf_rec->vlan_id = vlan_id;
1408 fcf_rec->flag |= (flag | RECORD_VALID);
James Smart7d791df2011-07-22 18:37:52 -04001409 __lpfc_update_fcf_record_pri(phba,
1410 bf_get(lpfc_fcf_record_fcf_index, new_fcf_record),
1411 new_fcf_record);
James Smartecfd03c2010-02-12 14:41:27 -05001412}
1413
1414/**
James Smart6fb120a2009-05-22 14:52:59 -04001415 * lpfc_register_fcf - Register the FCF with hba.
1416 * @phba: pointer to lpfc hba data structure.
1417 *
1418 * This routine issues a register fcfi mailbox command to register
1419 * the fcf with HBA.
1420 **/
1421static void
1422lpfc_register_fcf(struct lpfc_hba *phba)
1423{
1424 LPFC_MBOXQ_t *fcf_mbxq;
1425 int rc;
James Smart6fb120a2009-05-22 14:52:59 -04001426
James Smartd439d282010-09-29 11:18:45 -04001427 spin_lock_irq(&phba->hbalock);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001428 /* If the FCF is not available do nothing. */
James Smart6fb120a2009-05-22 14:52:59 -04001429 if (!(phba->fcf.fcf_flag & FCF_AVAILABLE)) {
James Smarta93ff372010-10-22 11:06:08 -04001430 phba->hba_flag &= ~(FCF_TS_INPROG | FCF_RR_INPROG);
James Smartd439d282010-09-29 11:18:45 -04001431 spin_unlock_irq(&phba->hbalock);
James Smart6fb120a2009-05-22 14:52:59 -04001432 return;
1433 }
1434
1435 /* The FCF is already registered, start discovery */
1436 if (phba->fcf.fcf_flag & FCF_REGISTERED) {
James Smartecfd03c2010-02-12 14:41:27 -05001437 phba->fcf.fcf_flag |= (FCF_SCAN_DONE | FCF_IN_USE);
James Smarta93ff372010-10-22 11:06:08 -04001438 phba->hba_flag &= ~FCF_TS_INPROG;
1439 if (phba->pport->port_state != LPFC_FLOGI) {
1440 phba->hba_flag |= FCF_RR_INPROG;
1441 spin_unlock_irq(&phba->hbalock);
James Smartbf086112011-08-21 21:48:13 -04001442 lpfc_initial_flogi(phba->pport);
James Smarta93ff372010-10-22 11:06:08 -04001443 return;
1444 }
1445 spin_unlock_irq(&phba->hbalock);
James Smart6fb120a2009-05-22 14:52:59 -04001446 return;
1447 }
James Smartd439d282010-09-29 11:18:45 -04001448 spin_unlock_irq(&phba->hbalock);
James Smart6fb120a2009-05-22 14:52:59 -04001449
James Smarta93ff372010-10-22 11:06:08 -04001450 fcf_mbxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
James Smart4d9ab992009-10-02 15:16:39 -04001451 if (!fcf_mbxq) {
James Smartd439d282010-09-29 11:18:45 -04001452 spin_lock_irq(&phba->hbalock);
James Smarta93ff372010-10-22 11:06:08 -04001453 phba->hba_flag &= ~(FCF_TS_INPROG | FCF_RR_INPROG);
James Smartd439d282010-09-29 11:18:45 -04001454 spin_unlock_irq(&phba->hbalock);
James Smart6fb120a2009-05-22 14:52:59 -04001455 return;
James Smart4d9ab992009-10-02 15:16:39 -04001456 }
James Smart6fb120a2009-05-22 14:52:59 -04001457
1458 lpfc_reg_fcfi(phba, fcf_mbxq);
1459 fcf_mbxq->vport = phba->pport;
1460 fcf_mbxq->mbox_cmpl = lpfc_mbx_cmpl_reg_fcfi;
1461 rc = lpfc_sli_issue_mbox(phba, fcf_mbxq, MBX_NOWAIT);
James Smart4d9ab992009-10-02 15:16:39 -04001462 if (rc == MBX_NOT_FINISHED) {
James Smartd439d282010-09-29 11:18:45 -04001463 spin_lock_irq(&phba->hbalock);
James Smarta93ff372010-10-22 11:06:08 -04001464 phba->hba_flag &= ~(FCF_TS_INPROG | FCF_RR_INPROG);
James Smartd439d282010-09-29 11:18:45 -04001465 spin_unlock_irq(&phba->hbalock);
James Smart6fb120a2009-05-22 14:52:59 -04001466 mempool_free(fcf_mbxq, phba->mbox_mem_pool);
James Smart4d9ab992009-10-02 15:16:39 -04001467 }
James Smart6fb120a2009-05-22 14:52:59 -04001468
1469 return;
1470}
1471
1472/**
1473 * lpfc_match_fcf_conn_list - Check if the FCF record can be used for discovery.
1474 * @phba: pointer to lpfc hba data structure.
1475 * @new_fcf_record: pointer to fcf record.
1476 * @boot_flag: Indicates if this record used by boot bios.
1477 * @addr_mode: The address mode to be used by this FCF
James Smartecfd03c2010-02-12 14:41:27 -05001478 * @vlan_id: The vlan id to be used as vlan tagging by this FCF.
James Smart6fb120a2009-05-22 14:52:59 -04001479 *
1480 * This routine compare the fcf record with connect list obtained from the
1481 * config region to decide if this FCF can be used for SAN discovery. It returns
1482 * 1 if this record can be used for SAN discovery else return zero. If this FCF
1483 * record can be used for SAN discovery, the boot_flag will indicate if this FCF
1484 * is used by boot bios and addr_mode will indicate the addressing mode to be
1485 * used for this FCF when the function returns.
1486 * If the FCF record need to be used with a particular vlan id, the vlan is
1487 * set in the vlan_id on return of the function. If not VLAN tagging need to
James Smartdbb6b3a2010-06-08 18:31:37 -04001488 * be used with the FCF vlan_id will be set to LPFC_FCOE_NULL_VID;
James Smart6fb120a2009-05-22 14:52:59 -04001489 **/
1490static int
1491lpfc_match_fcf_conn_list(struct lpfc_hba *phba,
1492 struct fcf_record *new_fcf_record,
1493 uint32_t *boot_flag, uint32_t *addr_mode,
1494 uint16_t *vlan_id)
1495{
1496 struct lpfc_fcf_conn_entry *conn_entry;
James Smart4d9ab992009-10-02 15:16:39 -04001497 int i, j, fcf_vlan_id = 0;
1498
1499 /* Find the lowest VLAN id in the FCF record */
1500 for (i = 0; i < 512; i++) {
1501 if (new_fcf_record->vlan_bitmap[i]) {
1502 fcf_vlan_id = i * 8;
1503 j = 0;
1504 while (!((new_fcf_record->vlan_bitmap[i] >> j) & 1)) {
1505 j++;
1506 fcf_vlan_id++;
1507 }
1508 break;
1509 }
1510 }
James Smart6fb120a2009-05-22 14:52:59 -04001511
James Smart26979ce2012-09-29 11:31:55 -04001512 /* FCF not valid/available or solicitation in progress */
James Smart0c287582009-06-10 17:22:56 -04001513 if (!bf_get(lpfc_fcf_record_fcf_avail, new_fcf_record) ||
James Smart26979ce2012-09-29 11:31:55 -04001514 !bf_get(lpfc_fcf_record_fcf_valid, new_fcf_record) ||
1515 bf_get(lpfc_fcf_record_fcf_sol, new_fcf_record))
James Smart0c287582009-06-10 17:22:56 -04001516 return 0;
1517
James Smart45ed1192009-10-02 15:17:02 -04001518 if (!(phba->hba_flag & HBA_FIP_SUPPORT)) {
James Smart6fb120a2009-05-22 14:52:59 -04001519 *boot_flag = 0;
1520 *addr_mode = bf_get(lpfc_fcf_record_mac_addr_prov,
1521 new_fcf_record);
1522 if (phba->valid_vlan)
1523 *vlan_id = phba->vlan_id;
1524 else
James Smartdbb6b3a2010-06-08 18:31:37 -04001525 *vlan_id = LPFC_FCOE_NULL_VID;
James Smart6fb120a2009-05-22 14:52:59 -04001526 return 1;
1527 }
1528
1529 /*
1530 * If there are no FCF connection table entry, driver connect to all
1531 * FCFs.
1532 */
1533 if (list_empty(&phba->fcf_conn_rec_list)) {
1534 *boot_flag = 0;
1535 *addr_mode = bf_get(lpfc_fcf_record_mac_addr_prov,
1536 new_fcf_record);
James Smart0c287582009-06-10 17:22:56 -04001537
1538 /*
1539 * When there are no FCF connect entries, use driver's default
1540 * addressing mode - FPMA.
1541 */
1542 if (*addr_mode & LPFC_FCF_FPMA)
1543 *addr_mode = LPFC_FCF_FPMA;
1544
James Smart4d9ab992009-10-02 15:16:39 -04001545 /* If FCF record report a vlan id use that vlan id */
1546 if (fcf_vlan_id)
1547 *vlan_id = fcf_vlan_id;
1548 else
James Smartdbb6b3a2010-06-08 18:31:37 -04001549 *vlan_id = LPFC_FCOE_NULL_VID;
James Smart6fb120a2009-05-22 14:52:59 -04001550 return 1;
1551 }
1552
James Smartecfd03c2010-02-12 14:41:27 -05001553 list_for_each_entry(conn_entry,
1554 &phba->fcf_conn_rec_list, list) {
James Smart6fb120a2009-05-22 14:52:59 -04001555 if (!(conn_entry->conn_rec.flags & FCFCNCT_VALID))
1556 continue;
1557
1558 if ((conn_entry->conn_rec.flags & FCFCNCT_FBNM_VALID) &&
1559 !lpfc_fab_name_match(conn_entry->conn_rec.fabric_name,
James Smart8fa38512009-07-19 10:01:03 -04001560 new_fcf_record))
James Smart6fb120a2009-05-22 14:52:59 -04001561 continue;
James Smart8fa38512009-07-19 10:01:03 -04001562 if ((conn_entry->conn_rec.flags & FCFCNCT_SWNM_VALID) &&
1563 !lpfc_sw_name_match(conn_entry->conn_rec.switch_name,
1564 new_fcf_record))
1565 continue;
James Smart6fb120a2009-05-22 14:52:59 -04001566 if (conn_entry->conn_rec.flags & FCFCNCT_VLAN_VALID) {
1567 /*
1568 * If the vlan bit map does not have the bit set for the
1569 * vlan id to be used, then it is not a match.
1570 */
1571 if (!(new_fcf_record->vlan_bitmap
1572 [conn_entry->conn_rec.vlan_tag / 8] &
1573 (1 << (conn_entry->conn_rec.vlan_tag % 8))))
1574 continue;
1575 }
1576
1577 /*
James Smart0c287582009-06-10 17:22:56 -04001578 * If connection record does not support any addressing mode,
1579 * skip the FCF record.
1580 */
1581 if (!(bf_get(lpfc_fcf_record_mac_addr_prov, new_fcf_record)
1582 & (LPFC_FCF_FPMA | LPFC_FCF_SPMA)))
1583 continue;
1584
1585 /*
James Smart6fb120a2009-05-22 14:52:59 -04001586 * Check if the connection record specifies a required
1587 * addressing mode.
1588 */
1589 if ((conn_entry->conn_rec.flags & FCFCNCT_AM_VALID) &&
1590 !(conn_entry->conn_rec.flags & FCFCNCT_AM_PREFERRED)) {
1591
1592 /*
1593 * If SPMA required but FCF not support this continue.
1594 */
1595 if ((conn_entry->conn_rec.flags & FCFCNCT_AM_SPMA) &&
1596 !(bf_get(lpfc_fcf_record_mac_addr_prov,
1597 new_fcf_record) & LPFC_FCF_SPMA))
1598 continue;
1599
1600 /*
1601 * If FPMA required but FCF not support this continue.
1602 */
1603 if (!(conn_entry->conn_rec.flags & FCFCNCT_AM_SPMA) &&
1604 !(bf_get(lpfc_fcf_record_mac_addr_prov,
1605 new_fcf_record) & LPFC_FCF_FPMA))
1606 continue;
1607 }
1608
1609 /*
1610 * This fcf record matches filtering criteria.
1611 */
1612 if (conn_entry->conn_rec.flags & FCFCNCT_BOOT)
1613 *boot_flag = 1;
1614 else
1615 *boot_flag = 0;
1616
James Smart0c287582009-06-10 17:22:56 -04001617 /*
1618 * If user did not specify any addressing mode, or if the
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001619 * preferred addressing mode specified by user is not supported
James Smart0c287582009-06-10 17:22:56 -04001620 * by FCF, allow fabric to pick the addressing mode.
1621 */
James Smart6fb120a2009-05-22 14:52:59 -04001622 *addr_mode = bf_get(lpfc_fcf_record_mac_addr_prov,
1623 new_fcf_record);
1624 /*
1625 * If the user specified a required address mode, assign that
1626 * address mode
1627 */
1628 if ((conn_entry->conn_rec.flags & FCFCNCT_AM_VALID) &&
1629 (!(conn_entry->conn_rec.flags & FCFCNCT_AM_PREFERRED)))
1630 *addr_mode = (conn_entry->conn_rec.flags &
1631 FCFCNCT_AM_SPMA) ?
1632 LPFC_FCF_SPMA : LPFC_FCF_FPMA;
1633 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001634 * If the user specified a preferred address mode, use the
James Smart6fb120a2009-05-22 14:52:59 -04001635 * addr mode only if FCF support the addr_mode.
1636 */
1637 else if ((conn_entry->conn_rec.flags & FCFCNCT_AM_VALID) &&
1638 (conn_entry->conn_rec.flags & FCFCNCT_AM_PREFERRED) &&
1639 (conn_entry->conn_rec.flags & FCFCNCT_AM_SPMA) &&
1640 (*addr_mode & LPFC_FCF_SPMA))
1641 *addr_mode = LPFC_FCF_SPMA;
1642 else if ((conn_entry->conn_rec.flags & FCFCNCT_AM_VALID) &&
1643 (conn_entry->conn_rec.flags & FCFCNCT_AM_PREFERRED) &&
1644 !(conn_entry->conn_rec.flags & FCFCNCT_AM_SPMA) &&
1645 (*addr_mode & LPFC_FCF_FPMA))
1646 *addr_mode = LPFC_FCF_FPMA;
James Smart6fb120a2009-05-22 14:52:59 -04001647
James Smart4d9ab992009-10-02 15:16:39 -04001648 /* If matching connect list has a vlan id, use it */
James Smart6fb120a2009-05-22 14:52:59 -04001649 if (conn_entry->conn_rec.flags & FCFCNCT_VLAN_VALID)
1650 *vlan_id = conn_entry->conn_rec.vlan_tag;
James Smart4d9ab992009-10-02 15:16:39 -04001651 /*
1652 * If no vlan id is specified in connect list, use the vlan id
1653 * in the FCF record
1654 */
1655 else if (fcf_vlan_id)
1656 *vlan_id = fcf_vlan_id;
James Smart6fb120a2009-05-22 14:52:59 -04001657 else
James Smartdbb6b3a2010-06-08 18:31:37 -04001658 *vlan_id = LPFC_FCOE_NULL_VID;
James Smart6fb120a2009-05-22 14:52:59 -04001659
1660 return 1;
1661 }
1662
1663 return 0;
1664}
1665
1666/**
James Smart32b97932009-07-19 10:01:21 -04001667 * lpfc_check_pending_fcoe_event - Check if there is pending fcoe event.
1668 * @phba: pointer to lpfc hba data structure.
1669 * @unreg_fcf: Unregister FCF if FCF table need to be re-scaned.
1670 *
1671 * This function check if there is any fcoe event pending while driver
1672 * scan FCF entries. If there is any pending event, it will restart the
1673 * FCF saning and return 1 else return 0.
1674 */
1675int
1676lpfc_check_pending_fcoe_event(struct lpfc_hba *phba, uint8_t unreg_fcf)
1677{
James Smart32b97932009-07-19 10:01:21 -04001678 /*
1679 * If the Link is up and no FCoE events while in the
1680 * FCF discovery, no need to restart FCF discovery.
1681 */
1682 if ((phba->link_state >= LPFC_LINK_UP) &&
James Smarta93ff372010-10-22 11:06:08 -04001683 (phba->fcoe_eventtag == phba->fcoe_eventtag_at_fcf_scan))
James Smart32b97932009-07-19 10:01:21 -04001684 return 0;
1685
James Smart0c9ab6f2010-02-26 14:15:57 -05001686 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
1687 "2768 Pending link or FCF event during current "
1688 "handling of the previous event: link_state:x%x, "
1689 "evt_tag_at_scan:x%x, evt_tag_current:x%x\n",
1690 phba->link_state, phba->fcoe_eventtag_at_fcf_scan,
1691 phba->fcoe_eventtag);
1692
James Smart32b97932009-07-19 10:01:21 -04001693 spin_lock_irq(&phba->hbalock);
1694 phba->fcf.fcf_flag &= ~FCF_AVAILABLE;
1695 spin_unlock_irq(&phba->hbalock);
1696
James Smart0c9ab6f2010-02-26 14:15:57 -05001697 if (phba->link_state >= LPFC_LINK_UP) {
1698 lpfc_printf_log(phba, KERN_INFO, LOG_FIP | LOG_DISCOVERY,
1699 "2780 Restart FCF table scan due to "
1700 "pending FCF event:evt_tag_at_scan:x%x, "
1701 "evt_tag_current:x%x\n",
1702 phba->fcoe_eventtag_at_fcf_scan,
1703 phba->fcoe_eventtag);
1704 lpfc_sli4_fcf_scan_read_fcf_rec(phba, LPFC_FCOE_FCF_GET_FIRST);
1705 } else {
James Smart4d9ab992009-10-02 15:16:39 -04001706 /*
James Smarta93ff372010-10-22 11:06:08 -04001707 * Do not continue FCF discovery and clear FCF_TS_INPROG
James Smart4d9ab992009-10-02 15:16:39 -04001708 * flag
1709 */
James Smartdbb6b3a2010-06-08 18:31:37 -04001710 lpfc_printf_log(phba, KERN_INFO, LOG_FIP | LOG_DISCOVERY,
1711 "2833 Stop FCF discovery process due to link "
1712 "state change (x%x)\n", phba->link_state);
James Smart1c6f4ef52009-11-18 15:40:49 -05001713 spin_lock_irq(&phba->hbalock);
James Smarta93ff372010-10-22 11:06:08 -04001714 phba->hba_flag &= ~(FCF_TS_INPROG | FCF_RR_INPROG);
James Smart0c9ab6f2010-02-26 14:15:57 -05001715 phba->fcf.fcf_flag &= ~(FCF_REDISC_FOV | FCF_DISCOVERY);
James Smart1c6f4ef52009-11-18 15:40:49 -05001716 spin_unlock_irq(&phba->hbalock);
1717 }
James Smart32b97932009-07-19 10:01:21 -04001718
James Smart0c9ab6f2010-02-26 14:15:57 -05001719 /* Unregister the currently registered FCF if required */
James Smart32b97932009-07-19 10:01:21 -04001720 if (unreg_fcf) {
1721 spin_lock_irq(&phba->hbalock);
1722 phba->fcf.fcf_flag &= ~FCF_REGISTERED;
1723 spin_unlock_irq(&phba->hbalock);
James Smart0c9ab6f2010-02-26 14:15:57 -05001724 lpfc_sli4_unregister_fcf(phba);
James Smart32b97932009-07-19 10:01:21 -04001725 }
James Smart32b97932009-07-19 10:01:21 -04001726 return 1;
1727}
1728
1729/**
James Smart999d8132010-03-15 11:24:56 -04001730 * lpfc_sli4_new_fcf_random_select - Randomly select an eligible new fcf record
1731 * @phba: pointer to lpfc hba data structure.
1732 * @fcf_cnt: number of eligible fcf record seen so far.
1733 *
1734 * This function makes an running random selection decision on FCF record to
1735 * use through a sequence of @fcf_cnt eligible FCF records with equal
1736 * probability. To perform integer manunipulation of random numbers with
1737 * size unit32_t, the lower 16 bits of the 32-bit random number returned
1738 * from random32() are taken as the random random number generated.
1739 *
1740 * Returns true when outcome is for the newly read FCF record should be
1741 * chosen; otherwise, return false when outcome is for keeping the previously
1742 * chosen FCF record.
1743 **/
1744static bool
1745lpfc_sli4_new_fcf_random_select(struct lpfc_hba *phba, uint32_t fcf_cnt)
1746{
1747 uint32_t rand_num;
1748
1749 /* Get 16-bit uniform random number */
1750 rand_num = (0xFFFF & random32());
1751
1752 /* Decision with probability 1/fcf_cnt */
1753 if ((fcf_cnt * rand_num) < 0xFFFF)
1754 return true;
1755 else
1756 return false;
1757}
1758
1759/**
James Smart3804dc82010-07-14 15:31:37 -04001760 * lpfc_sli4_fcf_rec_mbox_parse - Parse read_fcf mbox command.
James Smart6fb120a2009-05-22 14:52:59 -04001761 * @phba: pointer to lpfc hba data structure.
1762 * @mboxq: pointer to mailbox object.
James Smart0c9ab6f2010-02-26 14:15:57 -05001763 * @next_fcf_index: pointer to holder of next fcf index.
James Smart6fb120a2009-05-22 14:52:59 -04001764 *
James Smart0c9ab6f2010-02-26 14:15:57 -05001765 * This routine parses the non-embedded fcf mailbox command by performing the
1766 * necessarily error checking, non-embedded read FCF record mailbox command
1767 * SGE parsing, and endianness swapping.
1768 *
1769 * Returns the pointer to the new FCF record in the non-embedded mailbox
1770 * command DMA memory if successfully, other NULL.
James Smart6fb120a2009-05-22 14:52:59 -04001771 */
James Smart0c9ab6f2010-02-26 14:15:57 -05001772static struct fcf_record *
1773lpfc_sli4_fcf_rec_mbox_parse(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq,
1774 uint16_t *next_fcf_index)
James Smart6fb120a2009-05-22 14:52:59 -04001775{
1776 void *virt_addr;
1777 dma_addr_t phys_addr;
James Smart6fb120a2009-05-22 14:52:59 -04001778 struct lpfc_mbx_sge sge;
1779 struct lpfc_mbx_read_fcf_tbl *read_fcf;
1780 uint32_t shdr_status, shdr_add_status;
1781 union lpfc_sli4_cfg_shdr *shdr;
1782 struct fcf_record *new_fcf_record;
James Smart32b97932009-07-19 10:01:21 -04001783
James Smart6fb120a2009-05-22 14:52:59 -04001784 /* Get the first SGE entry from the non-embedded DMA memory. This
1785 * routine only uses a single SGE.
1786 */
1787 lpfc_sli4_mbx_sge_get(mboxq, 0, &sge);
1788 phys_addr = getPaddr(sge.pa_hi, sge.pa_lo);
1789 if (unlikely(!mboxq->sge_array)) {
1790 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX,
1791 "2524 Failed to get the non-embedded SGE "
1792 "virtual address\n");
James Smart0c9ab6f2010-02-26 14:15:57 -05001793 return NULL;
James Smart6fb120a2009-05-22 14:52:59 -04001794 }
1795 virt_addr = mboxq->sge_array->addr[0];
1796
1797 shdr = (union lpfc_sli4_cfg_shdr *)virt_addr;
James Smart25626692013-03-01 16:36:54 -05001798 lpfc_sli_pcimem_bcopy(shdr, shdr,
1799 sizeof(union lpfc_sli4_cfg_shdr));
James Smart6fb120a2009-05-22 14:52:59 -04001800 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
James Smart0c9ab6f2010-02-26 14:15:57 -05001801 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
James Smart6fb120a2009-05-22 14:52:59 -04001802 if (shdr_status || shdr_add_status) {
James Smart0c9ab6f2010-02-26 14:15:57 -05001803 if (shdr_status == STATUS_FCF_TABLE_EMPTY)
1804 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
James Smartdef9c7a2009-12-21 17:02:28 -05001805 "2726 READ_FCF_RECORD Indicates empty "
1806 "FCF table.\n");
James Smart0c9ab6f2010-02-26 14:15:57 -05001807 else
1808 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
James Smartdef9c7a2009-12-21 17:02:28 -05001809 "2521 READ_FCF_RECORD mailbox failed "
James Smart0c9ab6f2010-02-26 14:15:57 -05001810 "with status x%x add_status x%x, "
1811 "mbx\n", shdr_status, shdr_add_status);
1812 return NULL;
James Smart6fb120a2009-05-22 14:52:59 -04001813 }
James Smart0c9ab6f2010-02-26 14:15:57 -05001814
1815 /* Interpreting the returned information of the FCF record */
James Smart6fb120a2009-05-22 14:52:59 -04001816 read_fcf = (struct lpfc_mbx_read_fcf_tbl *)virt_addr;
1817 lpfc_sli_pcimem_bcopy(read_fcf, read_fcf,
1818 sizeof(struct lpfc_mbx_read_fcf_tbl));
James Smart0c9ab6f2010-02-26 14:15:57 -05001819 *next_fcf_index = bf_get(lpfc_mbx_read_fcf_tbl_nxt_vindx, read_fcf);
James Smart6fb120a2009-05-22 14:52:59 -04001820 new_fcf_record = (struct fcf_record *)(virt_addr +
1821 sizeof(struct lpfc_mbx_read_fcf_tbl));
1822 lpfc_sli_pcimem_bcopy(new_fcf_record, new_fcf_record,
James Smartcb5172e2010-03-15 11:25:07 -04001823 offsetof(struct fcf_record, vlan_bitmap));
1824 new_fcf_record->word137 = le32_to_cpu(new_fcf_record->word137);
1825 new_fcf_record->word138 = le32_to_cpu(new_fcf_record->word138);
James Smart6fb120a2009-05-22 14:52:59 -04001826
James Smart0c9ab6f2010-02-26 14:15:57 -05001827 return new_fcf_record;
1828}
1829
1830/**
1831 * lpfc_sli4_log_fcf_record_info - Log the information of a fcf record
1832 * @phba: pointer to lpfc hba data structure.
1833 * @fcf_record: pointer to the fcf record.
1834 * @vlan_id: the lowest vlan identifier associated to this fcf record.
1835 * @next_fcf_index: the index to the next fcf record in hba's fcf table.
1836 *
1837 * This routine logs the detailed FCF record if the LOG_FIP loggin is
1838 * enabled.
1839 **/
1840static void
1841lpfc_sli4_log_fcf_record_info(struct lpfc_hba *phba,
1842 struct fcf_record *fcf_record,
1843 uint16_t vlan_id,
1844 uint16_t next_fcf_index)
1845{
1846 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
1847 "2764 READ_FCF_RECORD:\n"
1848 "\tFCF_Index : x%x\n"
1849 "\tFCF_Avail : x%x\n"
1850 "\tFCF_Valid : x%x\n"
James Smart26979ce2012-09-29 11:31:55 -04001851 "\tFCF_SOL : x%x\n"
James Smart0c9ab6f2010-02-26 14:15:57 -05001852 "\tFIP_Priority : x%x\n"
1853 "\tMAC_Provider : x%x\n"
1854 "\tLowest VLANID : x%x\n"
1855 "\tFCF_MAC Addr : x%x:%x:%x:%x:%x:%x\n"
1856 "\tFabric_Name : x%x:%x:%x:%x:%x:%x:%x:%x\n"
1857 "\tSwitch_Name : x%x:%x:%x:%x:%x:%x:%x:%x\n"
1858 "\tNext_FCF_Index: x%x\n",
1859 bf_get(lpfc_fcf_record_fcf_index, fcf_record),
1860 bf_get(lpfc_fcf_record_fcf_avail, fcf_record),
1861 bf_get(lpfc_fcf_record_fcf_valid, fcf_record),
James Smart26979ce2012-09-29 11:31:55 -04001862 bf_get(lpfc_fcf_record_fcf_sol, fcf_record),
James Smart0c9ab6f2010-02-26 14:15:57 -05001863 fcf_record->fip_priority,
1864 bf_get(lpfc_fcf_record_mac_addr_prov, fcf_record),
1865 vlan_id,
1866 bf_get(lpfc_fcf_record_mac_0, fcf_record),
1867 bf_get(lpfc_fcf_record_mac_1, fcf_record),
1868 bf_get(lpfc_fcf_record_mac_2, fcf_record),
1869 bf_get(lpfc_fcf_record_mac_3, fcf_record),
1870 bf_get(lpfc_fcf_record_mac_4, fcf_record),
1871 bf_get(lpfc_fcf_record_mac_5, fcf_record),
1872 bf_get(lpfc_fcf_record_fab_name_0, fcf_record),
1873 bf_get(lpfc_fcf_record_fab_name_1, fcf_record),
1874 bf_get(lpfc_fcf_record_fab_name_2, fcf_record),
1875 bf_get(lpfc_fcf_record_fab_name_3, fcf_record),
1876 bf_get(lpfc_fcf_record_fab_name_4, fcf_record),
1877 bf_get(lpfc_fcf_record_fab_name_5, fcf_record),
1878 bf_get(lpfc_fcf_record_fab_name_6, fcf_record),
1879 bf_get(lpfc_fcf_record_fab_name_7, fcf_record),
1880 bf_get(lpfc_fcf_record_switch_name_0, fcf_record),
1881 bf_get(lpfc_fcf_record_switch_name_1, fcf_record),
1882 bf_get(lpfc_fcf_record_switch_name_2, fcf_record),
1883 bf_get(lpfc_fcf_record_switch_name_3, fcf_record),
1884 bf_get(lpfc_fcf_record_switch_name_4, fcf_record),
1885 bf_get(lpfc_fcf_record_switch_name_5, fcf_record),
1886 bf_get(lpfc_fcf_record_switch_name_6, fcf_record),
1887 bf_get(lpfc_fcf_record_switch_name_7, fcf_record),
1888 next_fcf_index);
1889}
1890
1891/**
James Smartdbb6b3a2010-06-08 18:31:37 -04001892 lpfc_sli4_fcf_record_match - testing new FCF record for matching existing FCF
1893 * @phba: pointer to lpfc hba data structure.
1894 * @fcf_rec: pointer to an existing FCF record.
1895 * @new_fcf_record: pointer to a new FCF record.
1896 * @new_vlan_id: vlan id from the new FCF record.
1897 *
1898 * This function performs matching test of a new FCF record against an existing
1899 * FCF record. If the new_vlan_id passed in is LPFC_FCOE_IGNORE_VID, vlan id
1900 * will not be used as part of the FCF record matching criteria.
1901 *
1902 * Returns true if all the fields matching, otherwise returns false.
1903 */
1904static bool
1905lpfc_sli4_fcf_record_match(struct lpfc_hba *phba,
1906 struct lpfc_fcf_rec *fcf_rec,
1907 struct fcf_record *new_fcf_record,
1908 uint16_t new_vlan_id)
1909{
1910 if (new_vlan_id != LPFC_FCOE_IGNORE_VID)
1911 if (!lpfc_vlan_id_match(fcf_rec->vlan_id, new_vlan_id))
1912 return false;
1913 if (!lpfc_mac_addr_match(fcf_rec->mac_addr, new_fcf_record))
1914 return false;
1915 if (!lpfc_sw_name_match(fcf_rec->switch_name, new_fcf_record))
1916 return false;
1917 if (!lpfc_fab_name_match(fcf_rec->fabric_name, new_fcf_record))
1918 return false;
James Smart7d791df2011-07-22 18:37:52 -04001919 if (fcf_rec->priority != new_fcf_record->fip_priority)
1920 return false;
James Smartdbb6b3a2010-06-08 18:31:37 -04001921 return true;
1922}
1923
1924/**
James Smarta93ff372010-10-22 11:06:08 -04001925 * lpfc_sli4_fcf_rr_next_proc - processing next roundrobin fcf
1926 * @vport: Pointer to vport object.
1927 * @fcf_index: index to next fcf.
1928 *
1929 * This function processing the roundrobin fcf failover to next fcf index.
1930 * When this function is invoked, there will be a current fcf registered
1931 * for flogi.
1932 * Return: 0 for continue retrying flogi on currently registered fcf;
1933 * 1 for stop flogi on currently registered fcf;
1934 */
1935int lpfc_sli4_fcf_rr_next_proc(struct lpfc_vport *vport, uint16_t fcf_index)
1936{
1937 struct lpfc_hba *phba = vport->phba;
1938 int rc;
1939
1940 if (fcf_index == LPFC_FCOE_FCF_NEXT_NONE) {
1941 spin_lock_irq(&phba->hbalock);
1942 if (phba->hba_flag & HBA_DEVLOSS_TMO) {
1943 spin_unlock_irq(&phba->hbalock);
1944 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
1945 "2872 Devloss tmo with no eligible "
1946 "FCF, unregister in-use FCF (x%x) "
1947 "and rescan FCF table\n",
1948 phba->fcf.current_rec.fcf_indx);
1949 lpfc_unregister_fcf_rescan(phba);
1950 goto stop_flogi_current_fcf;
1951 }
1952 /* Mark the end to FLOGI roundrobin failover */
1953 phba->hba_flag &= ~FCF_RR_INPROG;
1954 /* Allow action to new fcf asynchronous event */
1955 phba->fcf.fcf_flag &= ~(FCF_AVAILABLE | FCF_SCAN_DONE);
1956 spin_unlock_irq(&phba->hbalock);
1957 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
1958 "2865 No FCF available, stop roundrobin FCF "
1959 "failover and change port state:x%x/x%x\n",
1960 phba->pport->port_state, LPFC_VPORT_UNKNOWN);
1961 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
1962 goto stop_flogi_current_fcf;
1963 } else {
1964 lpfc_printf_log(phba, KERN_INFO, LOG_FIP | LOG_ELS,
1965 "2794 Try FLOGI roundrobin FCF failover to "
1966 "(x%x)\n", fcf_index);
1967 rc = lpfc_sli4_fcf_rr_read_fcf_rec(phba, fcf_index);
1968 if (rc)
1969 lpfc_printf_log(phba, KERN_WARNING, LOG_FIP | LOG_ELS,
1970 "2761 FLOGI roundrobin FCF failover "
1971 "failed (rc:x%x) to read FCF (x%x)\n",
1972 rc, phba->fcf.current_rec.fcf_indx);
1973 else
1974 goto stop_flogi_current_fcf;
1975 }
1976 return 0;
1977
1978stop_flogi_current_fcf:
1979 lpfc_can_disctmo(vport);
1980 return 1;
1981}
1982
1983/**
James Smart7d791df2011-07-22 18:37:52 -04001984 * lpfc_sli4_fcf_pri_list_del
1985 * @phba: pointer to lpfc hba data structure.
1986 * @fcf_index the index of the fcf record to delete
1987 * This routine checks the on list flag of the fcf_index to be deleted.
1988 * If it is one the list then it is removed from the list, and the flag
1989 * is cleared. This routine grab the hbalock before removing the fcf
1990 * record from the list.
1991 **/
1992static void lpfc_sli4_fcf_pri_list_del(struct lpfc_hba *phba,
1993 uint16_t fcf_index)
1994{
1995 struct lpfc_fcf_pri *new_fcf_pri;
1996
1997 new_fcf_pri = &phba->fcf.fcf_pri[fcf_index];
1998 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
1999 "3058 deleting idx x%x pri x%x flg x%x\n",
2000 fcf_index, new_fcf_pri->fcf_rec.priority,
2001 new_fcf_pri->fcf_rec.flag);
2002 spin_lock_irq(&phba->hbalock);
2003 if (new_fcf_pri->fcf_rec.flag & LPFC_FCF_ON_PRI_LIST) {
2004 if (phba->fcf.current_rec.priority ==
2005 new_fcf_pri->fcf_rec.priority)
2006 phba->fcf.eligible_fcf_cnt--;
2007 list_del_init(&new_fcf_pri->list);
2008 new_fcf_pri->fcf_rec.flag &= ~LPFC_FCF_ON_PRI_LIST;
2009 }
2010 spin_unlock_irq(&phba->hbalock);
2011}
2012
2013/**
2014 * lpfc_sli4_set_fcf_flogi_fail
2015 * @phba: pointer to lpfc hba data structure.
2016 * @fcf_index the index of the fcf record to update
2017 * This routine acquires the hbalock and then set the LPFC_FCF_FLOGI_FAILED
2018 * flag so the the round robin slection for the particular priority level
2019 * will try a different fcf record that does not have this bit set.
2020 * If the fcf record is re-read for any reason this flag is cleared brfore
2021 * adding it to the priority list.
2022 **/
2023void
2024lpfc_sli4_set_fcf_flogi_fail(struct lpfc_hba *phba, uint16_t fcf_index)
2025{
2026 struct lpfc_fcf_pri *new_fcf_pri;
2027 new_fcf_pri = &phba->fcf.fcf_pri[fcf_index];
2028 spin_lock_irq(&phba->hbalock);
2029 new_fcf_pri->fcf_rec.flag |= LPFC_FCF_FLOGI_FAILED;
2030 spin_unlock_irq(&phba->hbalock);
2031}
2032
2033/**
2034 * lpfc_sli4_fcf_pri_list_add
2035 * @phba: pointer to lpfc hba data structure.
2036 * @fcf_index the index of the fcf record to add
2037 * This routine checks the priority of the fcf_index to be added.
2038 * If it is a lower priority than the current head of the fcf_pri list
2039 * then it is added to the list in the right order.
2040 * If it is the same priority as the current head of the list then it
2041 * is added to the head of the list and its bit in the rr_bmask is set.
2042 * If the fcf_index to be added is of a higher priority than the current
2043 * head of the list then the rr_bmask is cleared, its bit is set in the
2044 * rr_bmask and it is added to the head of the list.
2045 * returns:
2046 * 0=success 1=failure
2047 **/
2048int lpfc_sli4_fcf_pri_list_add(struct lpfc_hba *phba, uint16_t fcf_index,
2049 struct fcf_record *new_fcf_record)
2050{
2051 uint16_t current_fcf_pri;
2052 uint16_t last_index;
2053 struct lpfc_fcf_pri *fcf_pri;
2054 struct lpfc_fcf_pri *next_fcf_pri;
2055 struct lpfc_fcf_pri *new_fcf_pri;
2056 int ret;
2057
2058 new_fcf_pri = &phba->fcf.fcf_pri[fcf_index];
2059 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
2060 "3059 adding idx x%x pri x%x flg x%x\n",
2061 fcf_index, new_fcf_record->fip_priority,
2062 new_fcf_pri->fcf_rec.flag);
2063 spin_lock_irq(&phba->hbalock);
2064 if (new_fcf_pri->fcf_rec.flag & LPFC_FCF_ON_PRI_LIST)
2065 list_del_init(&new_fcf_pri->list);
2066 new_fcf_pri->fcf_rec.fcf_index = fcf_index;
2067 new_fcf_pri->fcf_rec.priority = new_fcf_record->fip_priority;
2068 if (list_empty(&phba->fcf.fcf_pri_list)) {
2069 list_add(&new_fcf_pri->list, &phba->fcf.fcf_pri_list);
2070 ret = lpfc_sli4_fcf_rr_index_set(phba,
2071 new_fcf_pri->fcf_rec.fcf_index);
2072 goto out;
2073 }
2074
2075 last_index = find_first_bit(phba->fcf.fcf_rr_bmask,
2076 LPFC_SLI4_FCF_TBL_INDX_MAX);
2077 if (last_index >= LPFC_SLI4_FCF_TBL_INDX_MAX) {
2078 ret = 0; /* Empty rr list */
2079 goto out;
2080 }
2081 current_fcf_pri = phba->fcf.fcf_pri[last_index].fcf_rec.priority;
2082 if (new_fcf_pri->fcf_rec.priority <= current_fcf_pri) {
2083 list_add(&new_fcf_pri->list, &phba->fcf.fcf_pri_list);
2084 if (new_fcf_pri->fcf_rec.priority < current_fcf_pri) {
2085 memset(phba->fcf.fcf_rr_bmask, 0,
2086 sizeof(*phba->fcf.fcf_rr_bmask));
2087 /* fcfs_at_this_priority_level = 1; */
2088 phba->fcf.eligible_fcf_cnt = 1;
2089 } else
2090 /* fcfs_at_this_priority_level++; */
2091 phba->fcf.eligible_fcf_cnt++;
2092 ret = lpfc_sli4_fcf_rr_index_set(phba,
2093 new_fcf_pri->fcf_rec.fcf_index);
2094 goto out;
2095 }
2096
2097 list_for_each_entry_safe(fcf_pri, next_fcf_pri,
2098 &phba->fcf.fcf_pri_list, list) {
2099 if (new_fcf_pri->fcf_rec.priority <=
2100 fcf_pri->fcf_rec.priority) {
2101 if (fcf_pri->list.prev == &phba->fcf.fcf_pri_list)
2102 list_add(&new_fcf_pri->list,
2103 &phba->fcf.fcf_pri_list);
2104 else
2105 list_add(&new_fcf_pri->list,
2106 &((struct lpfc_fcf_pri *)
2107 fcf_pri->list.prev)->list);
2108 ret = 0;
2109 goto out;
2110 } else if (fcf_pri->list.next == &phba->fcf.fcf_pri_list
2111 || new_fcf_pri->fcf_rec.priority <
2112 next_fcf_pri->fcf_rec.priority) {
2113 list_add(&new_fcf_pri->list, &fcf_pri->list);
2114 ret = 0;
2115 goto out;
2116 }
2117 if (new_fcf_pri->fcf_rec.priority > fcf_pri->fcf_rec.priority)
2118 continue;
2119
2120 }
2121 ret = 1;
2122out:
2123 /* we use = instead of |= to clear the FLOGI_FAILED flag. */
2124 new_fcf_pri->fcf_rec.flag = LPFC_FCF_ON_PRI_LIST;
2125 spin_unlock_irq(&phba->hbalock);
2126 return ret;
2127}
2128
2129/**
James Smart0c9ab6f2010-02-26 14:15:57 -05002130 * lpfc_mbx_cmpl_fcf_scan_read_fcf_rec - fcf scan read_fcf mbox cmpl handler.
2131 * @phba: pointer to lpfc hba data structure.
2132 * @mboxq: pointer to mailbox object.
2133 *
2134 * This function iterates through all the fcf records available in
2135 * HBA and chooses the optimal FCF record for discovery. After finding
2136 * the FCF for discovery it registers the FCF record and kicks start
2137 * discovery.
2138 * If FCF_IN_USE flag is set in currently used FCF, the routine tries to
2139 * use an FCF record which matches fabric name and mac address of the
2140 * currently used FCF record.
2141 * If the driver supports only one FCF, it will try to use the FCF record
2142 * used by BOOT_BIOS.
2143 */
2144void
2145lpfc_mbx_cmpl_fcf_scan_read_fcf_rec(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
2146{
2147 struct fcf_record *new_fcf_record;
2148 uint32_t boot_flag, addr_mode;
2149 uint16_t fcf_index, next_fcf_index;
2150 struct lpfc_fcf_rec *fcf_rec = NULL;
2151 uint16_t vlan_id;
James Smart999d8132010-03-15 11:24:56 -04002152 uint32_t seed;
2153 bool select_new_fcf;
James Smart0c9ab6f2010-02-26 14:15:57 -05002154 int rc;
2155
2156 /* If there is pending FCoE event restart FCF table scan */
James Smarta93ff372010-10-22 11:06:08 -04002157 if (lpfc_check_pending_fcoe_event(phba, LPFC_SKIP_UNREG_FCF)) {
James Smart0c9ab6f2010-02-26 14:15:57 -05002158 lpfc_sli4_mbox_cmd_free(phba, mboxq);
2159 return;
2160 }
2161
2162 /* Parse the FCF record from the non-embedded mailbox command */
2163 new_fcf_record = lpfc_sli4_fcf_rec_mbox_parse(phba, mboxq,
2164 &next_fcf_index);
2165 if (!new_fcf_record) {
James Smarta93ff372010-10-22 11:06:08 -04002166 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
James Smart0c9ab6f2010-02-26 14:15:57 -05002167 "2765 Mailbox command READ_FCF_RECORD "
2168 "failed to retrieve a FCF record.\n");
2169 /* Let next new FCF event trigger fast failover */
2170 spin_lock_irq(&phba->hbalock);
James Smarta93ff372010-10-22 11:06:08 -04002171 phba->hba_flag &= ~FCF_TS_INPROG;
James Smart0c9ab6f2010-02-26 14:15:57 -05002172 spin_unlock_irq(&phba->hbalock);
2173 lpfc_sli4_mbox_cmd_free(phba, mboxq);
2174 return;
2175 }
2176
2177 /* Check the FCF record against the connection list */
James Smartecfd03c2010-02-12 14:41:27 -05002178 rc = lpfc_match_fcf_conn_list(phba, new_fcf_record, &boot_flag,
2179 &addr_mode, &vlan_id);
James Smart0c9ab6f2010-02-26 14:15:57 -05002180
2181 /* Log the FCF record information if turned on */
2182 lpfc_sli4_log_fcf_record_info(phba, new_fcf_record, vlan_id,
2183 next_fcf_index);
2184
James Smart6fb120a2009-05-22 14:52:59 -04002185 /*
2186 * If the fcf record does not match with connect list entries
James Smart0c9ab6f2010-02-26 14:15:57 -05002187 * read the next entry; otherwise, this is an eligible FCF
James Smarta93ff372010-10-22 11:06:08 -04002188 * record for roundrobin FCF failover.
James Smart6fb120a2009-05-22 14:52:59 -04002189 */
James Smart0c9ab6f2010-02-26 14:15:57 -05002190 if (!rc) {
James Smart7d791df2011-07-22 18:37:52 -04002191 lpfc_sli4_fcf_pri_list_del(phba,
2192 bf_get(lpfc_fcf_record_fcf_index,
2193 new_fcf_record));
James Smart0c9ab6f2010-02-26 14:15:57 -05002194 lpfc_printf_log(phba, KERN_WARNING, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -04002195 "2781 FCF (x%x) failed connection "
James Smart26979ce2012-09-29 11:31:55 -04002196 "list check: (x%x/x%x/%x)\n",
James Smart0c9ab6f2010-02-26 14:15:57 -05002197 bf_get(lpfc_fcf_record_fcf_index,
2198 new_fcf_record),
2199 bf_get(lpfc_fcf_record_fcf_avail,
2200 new_fcf_record),
2201 bf_get(lpfc_fcf_record_fcf_valid,
James Smart26979ce2012-09-29 11:31:55 -04002202 new_fcf_record),
2203 bf_get(lpfc_fcf_record_fcf_sol,
James Smart0c9ab6f2010-02-26 14:15:57 -05002204 new_fcf_record));
James Smartdbb6b3a2010-06-08 18:31:37 -04002205 if ((phba->fcf.fcf_flag & FCF_IN_USE) &&
2206 lpfc_sli4_fcf_record_match(phba, &phba->fcf.current_rec,
2207 new_fcf_record, LPFC_FCOE_IGNORE_VID)) {
James Smart5ac6b302010-10-22 11:05:36 -04002208 if (bf_get(lpfc_fcf_record_fcf_index, new_fcf_record) !=
2209 phba->fcf.current_rec.fcf_indx) {
2210 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
2211 "2862 FCF (x%x) matches property "
2212 "of in-use FCF (x%x)\n",
2213 bf_get(lpfc_fcf_record_fcf_index,
2214 new_fcf_record),
2215 phba->fcf.current_rec.fcf_indx);
2216 goto read_next_fcf;
2217 }
James Smartdbb6b3a2010-06-08 18:31:37 -04002218 /*
2219 * In case the current in-use FCF record becomes
2220 * invalid/unavailable during FCF discovery that
2221 * was not triggered by fast FCF failover process,
2222 * treat it as fast FCF failover.
2223 */
2224 if (!(phba->fcf.fcf_flag & FCF_REDISC_PEND) &&
2225 !(phba->fcf.fcf_flag & FCF_REDISC_FOV)) {
2226 lpfc_printf_log(phba, KERN_WARNING, LOG_FIP,
2227 "2835 Invalid in-use FCF "
James Smarta93ff372010-10-22 11:06:08 -04002228 "(x%x), enter FCF failover "
2229 "table scan.\n",
James Smartdbb6b3a2010-06-08 18:31:37 -04002230 phba->fcf.current_rec.fcf_indx);
2231 spin_lock_irq(&phba->hbalock);
2232 phba->fcf.fcf_flag |= FCF_REDISC_FOV;
2233 spin_unlock_irq(&phba->hbalock);
2234 lpfc_sli4_mbox_cmd_free(phba, mboxq);
2235 lpfc_sli4_fcf_scan_read_fcf_rec(phba,
2236 LPFC_FCOE_FCF_GET_FIRST);
2237 return;
2238 }
2239 }
James Smart6fb120a2009-05-22 14:52:59 -04002240 goto read_next_fcf;
James Smart0c9ab6f2010-02-26 14:15:57 -05002241 } else {
2242 fcf_index = bf_get(lpfc_fcf_record_fcf_index, new_fcf_record);
James Smart7d791df2011-07-22 18:37:52 -04002243 rc = lpfc_sli4_fcf_pri_list_add(phba, fcf_index,
2244 new_fcf_record);
James Smart0c9ab6f2010-02-26 14:15:57 -05002245 if (rc)
2246 goto read_next_fcf;
2247 }
2248
James Smart6fb120a2009-05-22 14:52:59 -04002249 /*
2250 * If this is not the first FCF discovery of the HBA, use last
James Smartecfd03c2010-02-12 14:41:27 -05002251 * FCF record for the discovery. The condition that a rescan
2252 * matches the in-use FCF record: fabric name, switch name, mac
2253 * address, and vlan_id.
James Smart6fb120a2009-05-22 14:52:59 -04002254 */
James Smart0c9ab6f2010-02-26 14:15:57 -05002255 spin_lock_irq(&phba->hbalock);
James Smart6fb120a2009-05-22 14:52:59 -04002256 if (phba->fcf.fcf_flag & FCF_IN_USE) {
James Smart7d791df2011-07-22 18:37:52 -04002257 if (phba->cfg_fcf_failover_policy == LPFC_FCF_FOV &&
2258 lpfc_sli4_fcf_record_match(phba, &phba->fcf.current_rec,
James Smartdbb6b3a2010-06-08 18:31:37 -04002259 new_fcf_record, vlan_id)) {
James Smart5ac6b302010-10-22 11:05:36 -04002260 if (bf_get(lpfc_fcf_record_fcf_index, new_fcf_record) ==
2261 phba->fcf.current_rec.fcf_indx) {
2262 phba->fcf.fcf_flag |= FCF_AVAILABLE;
2263 if (phba->fcf.fcf_flag & FCF_REDISC_PEND)
2264 /* Stop FCF redisc wait timer */
2265 __lpfc_sli4_stop_fcf_redisc_wait_timer(
2266 phba);
2267 else if (phba->fcf.fcf_flag & FCF_REDISC_FOV)
2268 /* Fast failover, mark completed */
2269 phba->fcf.fcf_flag &= ~FCF_REDISC_FOV;
2270 spin_unlock_irq(&phba->hbalock);
2271 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
2272 "2836 New FCF matches in-use "
2273 "FCF (x%x)\n",
2274 phba->fcf.current_rec.fcf_indx);
2275 goto out;
2276 } else
2277 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
2278 "2863 New FCF (x%x) matches "
2279 "property of in-use FCF (x%x)\n",
James Smartdbb6b3a2010-06-08 18:31:37 -04002280 bf_get(lpfc_fcf_record_fcf_index,
James Smart5ac6b302010-10-22 11:05:36 -04002281 new_fcf_record),
2282 phba->fcf.current_rec.fcf_indx);
James Smart6fb120a2009-05-22 14:52:59 -04002283 }
James Smartecfd03c2010-02-12 14:41:27 -05002284 /*
2285 * Read next FCF record from HBA searching for the matching
2286 * with in-use record only if not during the fast failover
2287 * period. In case of fast failover period, it shall try to
2288 * determine whether the FCF record just read should be the
2289 * next candidate.
2290 */
2291 if (!(phba->fcf.fcf_flag & FCF_REDISC_FOV)) {
James Smart0c9ab6f2010-02-26 14:15:57 -05002292 spin_unlock_irq(&phba->hbalock);
James Smartecfd03c2010-02-12 14:41:27 -05002293 goto read_next_fcf;
2294 }
James Smart6fb120a2009-05-22 14:52:59 -04002295 }
James Smartecfd03c2010-02-12 14:41:27 -05002296 /*
2297 * Update on failover FCF record only if it's in FCF fast-failover
2298 * period; otherwise, update on current FCF record.
2299 */
James Smartfc2b9892010-02-26 14:15:29 -05002300 if (phba->fcf.fcf_flag & FCF_REDISC_FOV)
2301 fcf_rec = &phba->fcf.failover_rec;
2302 else
James Smartecfd03c2010-02-12 14:41:27 -05002303 fcf_rec = &phba->fcf.current_rec;
2304
James Smart6fb120a2009-05-22 14:52:59 -04002305 if (phba->fcf.fcf_flag & FCF_AVAILABLE) {
2306 /*
James Smartecfd03c2010-02-12 14:41:27 -05002307 * If the driver FCF record does not have boot flag
2308 * set and new hba fcf record has boot flag set, use
2309 * the new hba fcf record.
James Smart6fb120a2009-05-22 14:52:59 -04002310 */
James Smartecfd03c2010-02-12 14:41:27 -05002311 if (boot_flag && !(fcf_rec->flag & BOOT_ENABLE)) {
2312 /* Choose this FCF record */
James Smartdbb6b3a2010-06-08 18:31:37 -04002313 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
2314 "2837 Update current FCF record "
2315 "(x%x) with new FCF record (x%x)\n",
2316 fcf_rec->fcf_indx,
2317 bf_get(lpfc_fcf_record_fcf_index,
2318 new_fcf_record));
James Smartecfd03c2010-02-12 14:41:27 -05002319 __lpfc_update_fcf_record(phba, fcf_rec, new_fcf_record,
2320 addr_mode, vlan_id, BOOT_ENABLE);
James Smart0c9ab6f2010-02-26 14:15:57 -05002321 spin_unlock_irq(&phba->hbalock);
James Smart6fb120a2009-05-22 14:52:59 -04002322 goto read_next_fcf;
2323 }
2324 /*
James Smartecfd03c2010-02-12 14:41:27 -05002325 * If the driver FCF record has boot flag set and the
2326 * new hba FCF record does not have boot flag, read
2327 * the next FCF record.
James Smart6fb120a2009-05-22 14:52:59 -04002328 */
James Smartecfd03c2010-02-12 14:41:27 -05002329 if (!boot_flag && (fcf_rec->flag & BOOT_ENABLE)) {
James Smart0c9ab6f2010-02-26 14:15:57 -05002330 spin_unlock_irq(&phba->hbalock);
James Smart6fb120a2009-05-22 14:52:59 -04002331 goto read_next_fcf;
2332 }
2333 /*
James Smartecfd03c2010-02-12 14:41:27 -05002334 * If the new hba FCF record has lower priority value
2335 * than the driver FCF record, use the new record.
James Smart6fb120a2009-05-22 14:52:59 -04002336 */
James Smartfc2b9892010-02-26 14:15:29 -05002337 if (new_fcf_record->fip_priority < fcf_rec->priority) {
James Smart999d8132010-03-15 11:24:56 -04002338 /* Choose the new FCF record with lower priority */
James Smartdbb6b3a2010-06-08 18:31:37 -04002339 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
2340 "2838 Update current FCF record "
2341 "(x%x) with new FCF record (x%x)\n",
2342 fcf_rec->fcf_indx,
2343 bf_get(lpfc_fcf_record_fcf_index,
2344 new_fcf_record));
James Smartecfd03c2010-02-12 14:41:27 -05002345 __lpfc_update_fcf_record(phba, fcf_rec, new_fcf_record,
2346 addr_mode, vlan_id, 0);
James Smart999d8132010-03-15 11:24:56 -04002347 /* Reset running random FCF selection count */
2348 phba->fcf.eligible_fcf_cnt = 1;
2349 } else if (new_fcf_record->fip_priority == fcf_rec->priority) {
2350 /* Update running random FCF selection count */
2351 phba->fcf.eligible_fcf_cnt++;
2352 select_new_fcf = lpfc_sli4_new_fcf_random_select(phba,
2353 phba->fcf.eligible_fcf_cnt);
James Smartdbb6b3a2010-06-08 18:31:37 -04002354 if (select_new_fcf) {
2355 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
2356 "2839 Update current FCF record "
2357 "(x%x) with new FCF record (x%x)\n",
2358 fcf_rec->fcf_indx,
2359 bf_get(lpfc_fcf_record_fcf_index,
2360 new_fcf_record));
James Smart999d8132010-03-15 11:24:56 -04002361 /* Choose the new FCF by random selection */
2362 __lpfc_update_fcf_record(phba, fcf_rec,
2363 new_fcf_record,
2364 addr_mode, vlan_id, 0);
James Smartdbb6b3a2010-06-08 18:31:37 -04002365 }
James Smart6fb120a2009-05-22 14:52:59 -04002366 }
James Smart0c9ab6f2010-02-26 14:15:57 -05002367 spin_unlock_irq(&phba->hbalock);
James Smart6fb120a2009-05-22 14:52:59 -04002368 goto read_next_fcf;
2369 }
2370 /*
James Smartecfd03c2010-02-12 14:41:27 -05002371 * This is the first suitable FCF record, choose this record for
2372 * initial best-fit FCF.
James Smart6fb120a2009-05-22 14:52:59 -04002373 */
James Smartecfd03c2010-02-12 14:41:27 -05002374 if (fcf_rec) {
James Smartdbb6b3a2010-06-08 18:31:37 -04002375 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -04002376 "2840 Update initial FCF candidate "
2377 "with FCF (x%x)\n",
James Smartdbb6b3a2010-06-08 18:31:37 -04002378 bf_get(lpfc_fcf_record_fcf_index,
2379 new_fcf_record));
James Smartecfd03c2010-02-12 14:41:27 -05002380 __lpfc_update_fcf_record(phba, fcf_rec, new_fcf_record,
2381 addr_mode, vlan_id, (boot_flag ?
2382 BOOT_ENABLE : 0));
2383 phba->fcf.fcf_flag |= FCF_AVAILABLE;
James Smart999d8132010-03-15 11:24:56 -04002384 /* Setup initial running random FCF selection count */
2385 phba->fcf.eligible_fcf_cnt = 1;
2386 /* Seeding the random number generator for random selection */
2387 seed = (uint32_t)(0xFFFFFFFF & jiffies);
2388 srandom32(seed);
James Smart6fb120a2009-05-22 14:52:59 -04002389 }
James Smart0c9ab6f2010-02-26 14:15:57 -05002390 spin_unlock_irq(&phba->hbalock);
James Smart6fb120a2009-05-22 14:52:59 -04002391 goto read_next_fcf;
2392
2393read_next_fcf:
2394 lpfc_sli4_mbox_cmd_free(phba, mboxq);
James Smartecfd03c2010-02-12 14:41:27 -05002395 if (next_fcf_index == LPFC_FCOE_FCF_NEXT_NONE || next_fcf_index == 0) {
2396 if (phba->fcf.fcf_flag & FCF_REDISC_FOV) {
2397 /*
2398 * Case of FCF fast failover scan
2399 */
2400
2401 /*
2402 * It has not found any suitable FCF record, cancel
2403 * FCF scan inprogress, and do nothing
2404 */
2405 if (!(phba->fcf.failover_rec.flag & RECORD_VALID)) {
James Smart0c9ab6f2010-02-26 14:15:57 -05002406 lpfc_printf_log(phba, KERN_WARNING, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -04002407 "2782 No suitable FCF found: "
2408 "(x%x/x%x)\n",
James Smart0c9ab6f2010-02-26 14:15:57 -05002409 phba->fcoe_eventtag_at_fcf_scan,
2410 bf_get(lpfc_fcf_record_fcf_index,
2411 new_fcf_record));
James Smart0c9ab6f2010-02-26 14:15:57 -05002412 spin_lock_irq(&phba->hbalock);
James Smarta93ff372010-10-22 11:06:08 -04002413 if (phba->hba_flag & HBA_DEVLOSS_TMO) {
2414 phba->hba_flag &= ~FCF_TS_INPROG;
2415 spin_unlock_irq(&phba->hbalock);
2416 /* Unregister in-use FCF and rescan */
2417 lpfc_printf_log(phba, KERN_INFO,
2418 LOG_FIP,
2419 "2864 On devloss tmo "
2420 "unreg in-use FCF and "
2421 "rescan FCF table\n");
2422 lpfc_unregister_fcf_rescan(phba);
2423 return;
2424 }
2425 /*
2426 * Let next new FCF event trigger fast failover
2427 */
2428 phba->hba_flag &= ~FCF_TS_INPROG;
James Smart0c9ab6f2010-02-26 14:15:57 -05002429 spin_unlock_irq(&phba->hbalock);
James Smartecfd03c2010-02-12 14:41:27 -05002430 return;
2431 }
2432 /*
2433 * It has found a suitable FCF record that is not
2434 * the same as in-use FCF record, unregister the
2435 * in-use FCF record, replace the in-use FCF record
2436 * with the new FCF record, mark FCF fast failover
2437 * completed, and then start register the new FCF
2438 * record.
2439 */
2440
James Smart0c9ab6f2010-02-26 14:15:57 -05002441 /* Unregister the current in-use FCF record */
James Smartecfd03c2010-02-12 14:41:27 -05002442 lpfc_unregister_fcf(phba);
James Smart0c9ab6f2010-02-26 14:15:57 -05002443
2444 /* Replace in-use record with the new record */
James Smartdbb6b3a2010-06-08 18:31:37 -04002445 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -04002446 "2842 Replace in-use FCF (x%x) "
2447 "with failover FCF (x%x)\n",
James Smartdbb6b3a2010-06-08 18:31:37 -04002448 phba->fcf.current_rec.fcf_indx,
2449 phba->fcf.failover_rec.fcf_indx);
James Smartecfd03c2010-02-12 14:41:27 -05002450 memcpy(&phba->fcf.current_rec,
2451 &phba->fcf.failover_rec,
2452 sizeof(struct lpfc_fcf_rec));
James Smart3804dc82010-07-14 15:31:37 -04002453 /*
2454 * Mark the fast FCF failover rediscovery completed
2455 * and the start of the first round of the roundrobin
2456 * FCF failover.
2457 */
James Smart0c9ab6f2010-02-26 14:15:57 -05002458 spin_lock_irq(&phba->hbalock);
James Smarta93ff372010-10-22 11:06:08 -04002459 phba->fcf.fcf_flag &= ~FCF_REDISC_FOV;
James Smart0c9ab6f2010-02-26 14:15:57 -05002460 spin_unlock_irq(&phba->hbalock);
James Smartecfd03c2010-02-12 14:41:27 -05002461 /* Register to the new FCF record */
2462 lpfc_register_fcf(phba);
2463 } else {
2464 /*
2465 * In case of transaction period to fast FCF failover,
2466 * do nothing when search to the end of the FCF table.
2467 */
2468 if ((phba->fcf.fcf_flag & FCF_REDISC_EVT) ||
2469 (phba->fcf.fcf_flag & FCF_REDISC_PEND))
2470 return;
James Smartdbb6b3a2010-06-08 18:31:37 -04002471
James Smart7d791df2011-07-22 18:37:52 -04002472 if (phba->cfg_fcf_failover_policy == LPFC_FCF_FOV &&
2473 phba->fcf.fcf_flag & FCF_IN_USE) {
James Smartdbb6b3a2010-06-08 18:31:37 -04002474 /*
2475 * In case the current in-use FCF record no
2476 * longer existed during FCF discovery that
2477 * was not triggered by fast FCF failover
2478 * process, treat it as fast FCF failover.
2479 */
2480 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
2481 "2841 In-use FCF record (x%x) "
2482 "not reported, entering fast "
2483 "FCF failover mode scanning.\n",
2484 phba->fcf.current_rec.fcf_indx);
2485 spin_lock_irq(&phba->hbalock);
2486 phba->fcf.fcf_flag |= FCF_REDISC_FOV;
2487 spin_unlock_irq(&phba->hbalock);
James Smartdbb6b3a2010-06-08 18:31:37 -04002488 lpfc_sli4_fcf_scan_read_fcf_rec(phba,
2489 LPFC_FCOE_FCF_GET_FIRST);
2490 return;
2491 }
James Smart0c9ab6f2010-02-26 14:15:57 -05002492 /* Register to the new FCF record */
James Smartecfd03c2010-02-12 14:41:27 -05002493 lpfc_register_fcf(phba);
2494 }
2495 } else
James Smart0c9ab6f2010-02-26 14:15:57 -05002496 lpfc_sli4_fcf_scan_read_fcf_rec(phba, next_fcf_index);
James Smart6fb120a2009-05-22 14:52:59 -04002497 return;
2498
2499out:
2500 lpfc_sli4_mbox_cmd_free(phba, mboxq);
2501 lpfc_register_fcf(phba);
2502
2503 return;
2504}
2505
2506/**
James Smarta93ff372010-10-22 11:06:08 -04002507 * lpfc_mbx_cmpl_fcf_rr_read_fcf_rec - fcf roundrobin read_fcf mbox cmpl hdler
James Smart0c9ab6f2010-02-26 14:15:57 -05002508 * @phba: pointer to lpfc hba data structure.
2509 * @mboxq: pointer to mailbox object.
2510 *
James Smarta93ff372010-10-22 11:06:08 -04002511 * This is the callback function for FLOGI failure roundrobin FCF failover
James Smart0c9ab6f2010-02-26 14:15:57 -05002512 * read FCF record mailbox command from the eligible FCF record bmask for
2513 * performing the failover. If the FCF read back is not valid/available, it
2514 * fails through to retrying FLOGI to the currently registered FCF again.
2515 * Otherwise, if the FCF read back is valid and available, it will set the
2516 * newly read FCF record to the failover FCF record, unregister currently
2517 * registered FCF record, copy the failover FCF record to the current
2518 * FCF record, and then register the current FCF record before proceeding
2519 * to trying FLOGI on the new failover FCF.
2520 */
2521void
2522lpfc_mbx_cmpl_fcf_rr_read_fcf_rec(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
2523{
2524 struct fcf_record *new_fcf_record;
2525 uint32_t boot_flag, addr_mode;
James Smarta93ff372010-10-22 11:06:08 -04002526 uint16_t next_fcf_index, fcf_index;
James Smart0c9ab6f2010-02-26 14:15:57 -05002527 uint16_t current_fcf_index;
2528 uint16_t vlan_id;
James Smarta93ff372010-10-22 11:06:08 -04002529 int rc;
James Smart0c9ab6f2010-02-26 14:15:57 -05002530
James Smarta93ff372010-10-22 11:06:08 -04002531 /* If link state is not up, stop the roundrobin failover process */
James Smart0c9ab6f2010-02-26 14:15:57 -05002532 if (phba->link_state < LPFC_LINK_UP) {
2533 spin_lock_irq(&phba->hbalock);
2534 phba->fcf.fcf_flag &= ~FCF_DISCOVERY;
James Smarta93ff372010-10-22 11:06:08 -04002535 phba->hba_flag &= ~FCF_RR_INPROG;
James Smart0c9ab6f2010-02-26 14:15:57 -05002536 spin_unlock_irq(&phba->hbalock);
James Smarta93ff372010-10-22 11:06:08 -04002537 goto out;
James Smart0c9ab6f2010-02-26 14:15:57 -05002538 }
2539
2540 /* Parse the FCF record from the non-embedded mailbox command */
2541 new_fcf_record = lpfc_sli4_fcf_rec_mbox_parse(phba, mboxq,
2542 &next_fcf_index);
2543 if (!new_fcf_record) {
2544 lpfc_printf_log(phba, KERN_WARNING, LOG_FIP,
2545 "2766 Mailbox command READ_FCF_RECORD "
2546 "failed to retrieve a FCF record.\n");
James Smarta93ff372010-10-22 11:06:08 -04002547 goto error_out;
James Smart0c9ab6f2010-02-26 14:15:57 -05002548 }
2549
2550 /* Get the needed parameters from FCF record */
James Smarta93ff372010-10-22 11:06:08 -04002551 rc = lpfc_match_fcf_conn_list(phba, new_fcf_record, &boot_flag,
2552 &addr_mode, &vlan_id);
James Smart0c9ab6f2010-02-26 14:15:57 -05002553
2554 /* Log the FCF record information if turned on */
2555 lpfc_sli4_log_fcf_record_info(phba, new_fcf_record, vlan_id,
2556 next_fcf_index);
2557
James Smarta93ff372010-10-22 11:06:08 -04002558 fcf_index = bf_get(lpfc_fcf_record_fcf_index, new_fcf_record);
2559 if (!rc) {
2560 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
2561 "2848 Remove ineligible FCF (x%x) from "
2562 "from roundrobin bmask\n", fcf_index);
2563 /* Clear roundrobin bmask bit for ineligible FCF */
2564 lpfc_sli4_fcf_rr_index_clear(phba, fcf_index);
2565 /* Perform next round of roundrobin FCF failover */
2566 fcf_index = lpfc_sli4_fcf_rr_next_index_get(phba);
2567 rc = lpfc_sli4_fcf_rr_next_proc(phba->pport, fcf_index);
2568 if (rc)
2569 goto out;
2570 goto error_out;
2571 }
2572
2573 if (fcf_index == phba->fcf.current_rec.fcf_indx) {
2574 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
2575 "2760 Perform FLOGI roundrobin FCF failover: "
2576 "FCF (x%x) back to FCF (x%x)\n",
2577 phba->fcf.current_rec.fcf_indx, fcf_index);
2578 /* Wait 500 ms before retrying FLOGI to current FCF */
2579 msleep(500);
James Smart76a95d72010-11-20 23:11:48 -05002580 lpfc_issue_init_vfi(phba->pport);
James Smarta93ff372010-10-22 11:06:08 -04002581 goto out;
2582 }
2583
James Smart0c9ab6f2010-02-26 14:15:57 -05002584 /* Upload new FCF record to the failover FCF record */
James Smartdbb6b3a2010-06-08 18:31:37 -04002585 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -04002586 "2834 Update current FCF (x%x) with new FCF (x%x)\n",
2587 phba->fcf.failover_rec.fcf_indx, fcf_index);
James Smart0c9ab6f2010-02-26 14:15:57 -05002588 spin_lock_irq(&phba->hbalock);
2589 __lpfc_update_fcf_record(phba, &phba->fcf.failover_rec,
2590 new_fcf_record, addr_mode, vlan_id,
2591 (boot_flag ? BOOT_ENABLE : 0));
2592 spin_unlock_irq(&phba->hbalock);
2593
2594 current_fcf_index = phba->fcf.current_rec.fcf_indx;
2595
2596 /* Unregister the current in-use FCF record */
2597 lpfc_unregister_fcf(phba);
2598
2599 /* Replace in-use record with the new record */
2600 memcpy(&phba->fcf.current_rec, &phba->fcf.failover_rec,
2601 sizeof(struct lpfc_fcf_rec));
2602
2603 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -04002604 "2783 Perform FLOGI roundrobin FCF failover: FCF "
2605 "(x%x) to FCF (x%x)\n", current_fcf_index, fcf_index);
James Smart0c9ab6f2010-02-26 14:15:57 -05002606
James Smarta93ff372010-10-22 11:06:08 -04002607error_out:
2608 lpfc_register_fcf(phba);
James Smart0c9ab6f2010-02-26 14:15:57 -05002609out:
2610 lpfc_sli4_mbox_cmd_free(phba, mboxq);
James Smart0c9ab6f2010-02-26 14:15:57 -05002611}
2612
2613/**
2614 * lpfc_mbx_cmpl_read_fcf_rec - read fcf completion handler.
2615 * @phba: pointer to lpfc hba data structure.
2616 * @mboxq: pointer to mailbox object.
2617 *
2618 * This is the callback function of read FCF record mailbox command for
James Smarta93ff372010-10-22 11:06:08 -04002619 * updating the eligible FCF bmask for FLOGI failure roundrobin FCF
James Smart0c9ab6f2010-02-26 14:15:57 -05002620 * failover when a new FCF event happened. If the FCF read back is
2621 * valid/available and it passes the connection list check, it updates
James Smarta93ff372010-10-22 11:06:08 -04002622 * the bmask for the eligible FCF record for roundrobin failover.
James Smart0c9ab6f2010-02-26 14:15:57 -05002623 */
2624void
2625lpfc_mbx_cmpl_read_fcf_rec(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
2626{
2627 struct fcf_record *new_fcf_record;
2628 uint32_t boot_flag, addr_mode;
2629 uint16_t fcf_index, next_fcf_index;
2630 uint16_t vlan_id;
2631 int rc;
2632
2633 /* If link state is not up, no need to proceed */
2634 if (phba->link_state < LPFC_LINK_UP)
2635 goto out;
2636
2637 /* If FCF discovery period is over, no need to proceed */
James Smart3804dc82010-07-14 15:31:37 -04002638 if (!(phba->fcf.fcf_flag & FCF_DISCOVERY))
James Smart0c9ab6f2010-02-26 14:15:57 -05002639 goto out;
2640
2641 /* Parse the FCF record from the non-embedded mailbox command */
2642 new_fcf_record = lpfc_sli4_fcf_rec_mbox_parse(phba, mboxq,
2643 &next_fcf_index);
2644 if (!new_fcf_record) {
2645 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
2646 "2767 Mailbox command READ_FCF_RECORD "
2647 "failed to retrieve a FCF record.\n");
2648 goto out;
2649 }
2650
2651 /* Check the connection list for eligibility */
2652 rc = lpfc_match_fcf_conn_list(phba, new_fcf_record, &boot_flag,
2653 &addr_mode, &vlan_id);
2654
2655 /* Log the FCF record information if turned on */
2656 lpfc_sli4_log_fcf_record_info(phba, new_fcf_record, vlan_id,
2657 next_fcf_index);
2658
2659 if (!rc)
2660 goto out;
2661
2662 /* Update the eligible FCF record index bmask */
2663 fcf_index = bf_get(lpfc_fcf_record_fcf_index, new_fcf_record);
James Smart7d791df2011-07-22 18:37:52 -04002664
2665 rc = lpfc_sli4_fcf_pri_list_add(phba, fcf_index, new_fcf_record);
James Smart0c9ab6f2010-02-26 14:15:57 -05002666
2667out:
2668 lpfc_sli4_mbox_cmd_free(phba, mboxq);
2669}
2670
2671/**
James Smart76a95d72010-11-20 23:11:48 -05002672 * lpfc_init_vfi_cmpl - Completion handler for init_vfi mbox command.
2673 * @phba: pointer to lpfc hba data structure.
2674 * @mboxq: pointer to mailbox data structure.
2675 *
2676 * This function handles completion of init vfi mailbox command.
2677 */
2678void
2679lpfc_init_vfi_cmpl(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
2680{
2681 struct lpfc_vport *vport = mboxq->vport;
2682
James Smartdf9e1b52011-12-13 13:22:17 -05002683 /*
2684 * VFI not supported on interface type 0, just do the flogi
2685 * Also continue if the VFI is in use - just use the same one.
2686 */
2687 if (mboxq->u.mb.mbxStatus &&
2688 (bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf) !=
2689 LPFC_SLI_INTF_IF_TYPE_0) &&
2690 mboxq->u.mb.mbxStatus != MBX_VFI_IN_USE) {
James Smart76a95d72010-11-20 23:11:48 -05002691 lpfc_printf_vlog(vport, KERN_ERR,
2692 LOG_MBOX,
2693 "2891 Init VFI mailbox failed 0x%x\n",
2694 mboxq->u.mb.mbxStatus);
2695 mempool_free(mboxq, phba->mbox_mem_pool);
2696 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
2697 return;
2698 }
James Smart73d91e52011-10-10 21:32:10 -04002699
James Smart76a95d72010-11-20 23:11:48 -05002700 lpfc_initial_flogi(vport);
2701 mempool_free(mboxq, phba->mbox_mem_pool);
2702 return;
2703}
2704
2705/**
2706 * lpfc_issue_init_vfi - Issue init_vfi mailbox command.
2707 * @vport: pointer to lpfc_vport data structure.
2708 *
2709 * This function issue a init_vfi mailbox command to initialize the VFI and
2710 * VPI for the physical port.
2711 */
2712void
2713lpfc_issue_init_vfi(struct lpfc_vport *vport)
2714{
2715 LPFC_MBOXQ_t *mboxq;
2716 int rc;
2717 struct lpfc_hba *phba = vport->phba;
2718
2719 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
2720 if (!mboxq) {
2721 lpfc_printf_vlog(vport, KERN_ERR,
2722 LOG_MBOX, "2892 Failed to allocate "
2723 "init_vfi mailbox\n");
2724 return;
2725 }
2726 lpfc_init_vfi(mboxq, vport);
2727 mboxq->mbox_cmpl = lpfc_init_vfi_cmpl;
2728 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
2729 if (rc == MBX_NOT_FINISHED) {
2730 lpfc_printf_vlog(vport, KERN_ERR,
2731 LOG_MBOX, "2893 Failed to issue init_vfi mailbox\n");
2732 mempool_free(mboxq, vport->phba->mbox_mem_pool);
2733 }
2734}
2735
2736/**
James Smart1c6834a2009-07-19 10:01:26 -04002737 * lpfc_init_vpi_cmpl - Completion handler for init_vpi mbox command.
2738 * @phba: pointer to lpfc hba data structure.
2739 * @mboxq: pointer to mailbox data structure.
2740 *
2741 * This function handles completion of init vpi mailbox command.
2742 */
James Smart695a8142010-01-26 23:08:03 -05002743void
James Smart1c6834a2009-07-19 10:01:26 -04002744lpfc_init_vpi_cmpl(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
2745{
2746 struct lpfc_vport *vport = mboxq->vport;
James Smart695a8142010-01-26 23:08:03 -05002747 struct lpfc_nodelist *ndlp;
James Smart72100cc2010-02-12 14:43:01 -05002748 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2749
James Smart1c6834a2009-07-19 10:01:26 -04002750 if (mboxq->u.mb.mbxStatus) {
2751 lpfc_printf_vlog(vport, KERN_ERR,
2752 LOG_MBOX,
2753 "2609 Init VPI mailbox failed 0x%x\n",
2754 mboxq->u.mb.mbxStatus);
2755 mempool_free(mboxq, phba->mbox_mem_pool);
2756 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
2757 return;
2758 }
James Smart72100cc2010-02-12 14:43:01 -05002759 spin_lock_irq(shost->host_lock);
James Smart1c6834a2009-07-19 10:01:26 -04002760 vport->fc_flag &= ~FC_VPORT_NEEDS_INIT_VPI;
James Smart72100cc2010-02-12 14:43:01 -05002761 spin_unlock_irq(shost->host_lock);
James Smart1c6834a2009-07-19 10:01:26 -04002762
James Smart695a8142010-01-26 23:08:03 -05002763 /* If this port is physical port or FDISC is done, do reg_vpi */
2764 if ((phba->pport == vport) || (vport->port_state == LPFC_FDISC)) {
2765 ndlp = lpfc_findnode_did(vport, Fabric_DID);
2766 if (!ndlp)
2767 lpfc_printf_vlog(vport, KERN_ERR,
2768 LOG_DISCOVERY,
2769 "2731 Cannot find fabric "
2770 "controller node\n");
2771 else
2772 lpfc_register_new_vport(phba, vport, ndlp);
2773 mempool_free(mboxq, phba->mbox_mem_pool);
2774 return;
2775 }
2776
James Smart1c6834a2009-07-19 10:01:26 -04002777 if (phba->link_flag & LS_NPIV_FAB_SUPPORTED)
2778 lpfc_initial_fdisc(vport);
2779 else {
2780 lpfc_vport_set_state(vport, FC_VPORT_NO_FABRIC_SUPP);
James Smart6a9c52c2009-10-02 15:16:51 -04002781 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
2782 "2606 No NPIV Fabric support\n");
James Smart1c6834a2009-07-19 10:01:26 -04002783 }
James Smart695a8142010-01-26 23:08:03 -05002784 mempool_free(mboxq, phba->mbox_mem_pool);
James Smart1c6834a2009-07-19 10:01:26 -04002785 return;
2786}
2787
2788/**
James Smartecfd03c2010-02-12 14:41:27 -05002789 * lpfc_issue_init_vpi - Issue init_vpi mailbox command.
2790 * @vport: pointer to lpfc_vport data structure.
2791 *
2792 * This function issue a init_vpi mailbox command to initialize
2793 * VPI for the vport.
2794 */
2795void
2796lpfc_issue_init_vpi(struct lpfc_vport *vport)
2797{
2798 LPFC_MBOXQ_t *mboxq;
2799 int rc;
2800
2801 mboxq = mempool_alloc(vport->phba->mbox_mem_pool, GFP_KERNEL);
2802 if (!mboxq) {
2803 lpfc_printf_vlog(vport, KERN_ERR,
2804 LOG_MBOX, "2607 Failed to allocate "
2805 "init_vpi mailbox\n");
2806 return;
2807 }
2808 lpfc_init_vpi(vport->phba, mboxq, vport->vpi);
2809 mboxq->vport = vport;
2810 mboxq->mbox_cmpl = lpfc_init_vpi_cmpl;
2811 rc = lpfc_sli_issue_mbox(vport->phba, mboxq, MBX_NOWAIT);
2812 if (rc == MBX_NOT_FINISHED) {
2813 lpfc_printf_vlog(vport, KERN_ERR,
2814 LOG_MBOX, "2608 Failed to issue init_vpi mailbox\n");
2815 mempool_free(mboxq, vport->phba->mbox_mem_pool);
2816 }
2817}
2818
2819/**
James Smart6fb120a2009-05-22 14:52:59 -04002820 * lpfc_start_fdiscs - send fdiscs for each vports on this port.
2821 * @phba: pointer to lpfc hba data structure.
2822 *
2823 * This function loops through the list of vports on the @phba and issues an
2824 * FDISC if possible.
2825 */
2826void
2827lpfc_start_fdiscs(struct lpfc_hba *phba)
2828{
2829 struct lpfc_vport **vports;
2830 int i;
2831
2832 vports = lpfc_create_vport_work_array(phba);
2833 if (vports != NULL) {
2834 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
2835 if (vports[i]->port_type == LPFC_PHYSICAL_PORT)
2836 continue;
2837 /* There are no vpi for this vport */
2838 if (vports[i]->vpi > phba->max_vpi) {
2839 lpfc_vport_set_state(vports[i],
2840 FC_VPORT_FAILED);
2841 continue;
2842 }
James Smart76a95d72010-11-20 23:11:48 -05002843 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
James Smart6fb120a2009-05-22 14:52:59 -04002844 lpfc_vport_set_state(vports[i],
2845 FC_VPORT_LINKDOWN);
2846 continue;
2847 }
James Smart1c6834a2009-07-19 10:01:26 -04002848 if (vports[i]->fc_flag & FC_VPORT_NEEDS_INIT_VPI) {
James Smartecfd03c2010-02-12 14:41:27 -05002849 lpfc_issue_init_vpi(vports[i]);
James Smart1c6834a2009-07-19 10:01:26 -04002850 continue;
2851 }
James Smart6fb120a2009-05-22 14:52:59 -04002852 if (phba->link_flag & LS_NPIV_FAB_SUPPORTED)
2853 lpfc_initial_fdisc(vports[i]);
2854 else {
2855 lpfc_vport_set_state(vports[i],
2856 FC_VPORT_NO_FABRIC_SUPP);
2857 lpfc_printf_vlog(vports[i], KERN_ERR,
2858 LOG_ELS,
2859 "0259 No NPIV "
2860 "Fabric support\n");
2861 }
2862 }
2863 }
2864 lpfc_destroy_vport_work_array(phba, vports);
2865}
2866
2867void
2868lpfc_mbx_cmpl_reg_vfi(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
2869{
2870 struct lpfc_dmabuf *dmabuf = mboxq->context1;
2871 struct lpfc_vport *vport = mboxq->vport;
James Smart72100cc2010-02-12 14:43:01 -05002872 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart6fb120a2009-05-22 14:52:59 -04002873
James Smartf5eca9b2012-03-01 22:37:54 -05002874 /*
2875 * VFI not supported for interface type 0, so ignore any mailbox
2876 * error (except VFI in use) and continue with the discovery.
2877 */
2878 if (mboxq->u.mb.mbxStatus &&
2879 (bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf) !=
2880 LPFC_SLI_INTF_IF_TYPE_0) &&
2881 mboxq->u.mb.mbxStatus != MBX_VFI_IN_USE) {
James Smart6fb120a2009-05-22 14:52:59 -04002882 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
2883 "2018 REG_VFI mbxStatus error x%x "
2884 "HBA state x%x\n",
2885 mboxq->u.mb.mbxStatus, vport->port_state);
James Smart76a95d72010-11-20 23:11:48 -05002886 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
James Smart6fb120a2009-05-22 14:52:59 -04002887 /* FLOGI failed, use loop map to make discovery list */
2888 lpfc_disc_list_loopmap(vport);
2889 /* Start discovery */
2890 lpfc_disc_start(vport);
James Smart1b511972011-12-13 13:23:09 -05002891 goto out_free_mem;
James Smart6fb120a2009-05-22 14:52:59 -04002892 }
2893 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
James Smart1b511972011-12-13 13:23:09 -05002894 goto out_free_mem;
James Smart6fb120a2009-05-22 14:52:59 -04002895 }
James Smartae05ebe2013-03-01 16:35:38 -05002896
2897 /* If the VFI is already registered, there is nothing else to do */
2898 if (vport->fc_flag & FC_VFI_REGISTERED)
2899 goto out_free_mem;
2900
James Smartc8685952009-11-18 15:39:16 -05002901 /* The VPI is implicitly registered when the VFI is registered */
James Smart72100cc2010-02-12 14:43:01 -05002902 spin_lock_irq(shost->host_lock);
James Smartc8685952009-11-18 15:39:16 -05002903 vport->vpi_state |= LPFC_VPI_REGISTERED;
James Smart695a8142010-01-26 23:08:03 -05002904 vport->fc_flag |= FC_VFI_REGISTERED;
James Smart695a8142010-01-26 23:08:03 -05002905 vport->fc_flag &= ~FC_VPORT_NEEDS_REG_VPI;
James Smart5248a742011-07-22 18:37:06 -04002906 vport->fc_flag &= ~FC_VPORT_NEEDS_INIT_VPI;
James Smart72100cc2010-02-12 14:43:01 -05002907 spin_unlock_irq(shost->host_lock);
James Smart6fb120a2009-05-22 14:52:59 -04002908
James Smart1b511972011-12-13 13:23:09 -05002909 /* In case SLI4 FC loopback test, we are ready */
2910 if ((phba->sli_rev == LPFC_SLI_REV4) &&
2911 (phba->link_flag & LS_LOOPBACK_MODE)) {
2912 phba->link_state = LPFC_HBA_READY;
2913 goto out_free_mem;
2914 }
2915
James Smart6fb120a2009-05-22 14:52:59 -04002916 if (vport->port_state == LPFC_FABRIC_CFG_LINK) {
James Smart939723a2012-05-09 21:19:03 -04002917 /*
2918 * For private loop or for NPort pt2pt,
2919 * just start discovery and we are done.
2920 */
2921 if ((vport->fc_flag & FC_PT2PT) ||
2922 ((phba->fc_topology == LPFC_TOPOLOGY_LOOP) &&
2923 !(vport->fc_flag & FC_PUBLIC_LOOP))) {
2924
James Smart76a95d72010-11-20 23:11:48 -05002925 /* Use loop map to make discovery list */
2926 lpfc_disc_list_loopmap(vport);
2927 /* Start discovery */
2928 lpfc_disc_start(vport);
2929 } else {
2930 lpfc_start_fdiscs(phba);
2931 lpfc_do_scr_ns_plogi(phba, vport);
2932 }
James Smart6fb120a2009-05-22 14:52:59 -04002933 }
2934
James Smart1b511972011-12-13 13:23:09 -05002935out_free_mem:
James Smart6fb120a2009-05-22 14:52:59 -04002936 mempool_free(mboxq, phba->mbox_mem_pool);
2937 lpfc_mbuf_free(phba, dmabuf->virt, dmabuf->phys);
2938 kfree(dmabuf);
2939 return;
2940}
2941
2942static void
James Smart2e0fef82007-06-17 19:56:36 -05002943lpfc_mbx_cmpl_read_sparam(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
dea31012005-04-17 16:05:31 -05002944{
James Smart6fb120a2009-05-22 14:52:59 -04002945 MAILBOX_t *mb = &pmb->u.mb;
dea31012005-04-17 16:05:31 -05002946 struct lpfc_dmabuf *mp = (struct lpfc_dmabuf *) pmb->context1;
James Smart2e0fef82007-06-17 19:56:36 -05002947 struct lpfc_vport *vport = pmb->vport;
dea31012005-04-17 16:05:31 -05002948
2949
2950 /* Check for error */
2951 if (mb->mbxStatus) {
2952 /* READ_SPARAM mbox error <mbxStatus> state <hba_state> */
James Smarte8b62012007-08-02 11:10:09 -04002953 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
2954 "0319 READ_SPARAM mbxStatus error x%x "
2955 "hba state x%x>\n",
2956 mb->mbxStatus, vport->port_state);
dea31012005-04-17 16:05:31 -05002957 lpfc_linkdown(phba);
dea31012005-04-17 16:05:31 -05002958 goto out;
2959 }
2960
James Smart2e0fef82007-06-17 19:56:36 -05002961 memcpy((uint8_t *) &vport->fc_sparam, (uint8_t *) mp->virt,
dea31012005-04-17 16:05:31 -05002962 sizeof (struct serv_parm));
James Smart05580562011-05-24 11:40:48 -04002963 lpfc_update_vport_wwn(vport);
James Smart92d7f7b2007-06-17 19:56:38 -05002964 if (vport->port_type == LPFC_PHYSICAL_PORT) {
2965 memcpy(&phba->wwnn, &vport->fc_nodename, sizeof(phba->wwnn));
2966 memcpy(&phba->wwpn, &vport->fc_portname, sizeof(phba->wwnn));
2967 }
2968
dea31012005-04-17 16:05:31 -05002969 lpfc_mbuf_free(phba, mp->virt, mp->phys);
2970 kfree(mp);
James Smart2e0fef82007-06-17 19:56:36 -05002971 mempool_free(pmb, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -05002972 return;
2973
2974out:
2975 pmb->context1 = NULL;
2976 lpfc_mbuf_free(phba, mp->virt, mp->phys);
2977 kfree(mp);
James Smart92d7f7b2007-06-17 19:56:38 -05002978 lpfc_issue_clear_la(phba, vport);
2979 mempool_free(pmb, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -05002980 return;
2981}
2982
2983static void
James Smart76a95d72010-11-20 23:11:48 -05002984lpfc_mbx_process_link_up(struct lpfc_hba *phba, struct lpfc_mbx_read_top *la)
dea31012005-04-17 16:05:31 -05002985{
James Smart92d7f7b2007-06-17 19:56:38 -05002986 struct lpfc_vport *vport = phba->pport;
James Smart6fb120a2009-05-22 14:52:59 -04002987 LPFC_MBOXQ_t *sparam_mbox, *cfglink_mbox = NULL;
James Smartdf9e1b52011-12-13 13:22:17 -05002988 struct Scsi_Host *shost;
James Smart2e0fef82007-06-17 19:56:36 -05002989 int i;
James Smart14691152006-12-02 13:34:28 -05002990 struct lpfc_dmabuf *mp;
2991 int rc;
James Smart6fb120a2009-05-22 14:52:59 -04002992 struct fcf_record *fcf_record;
James Smart14691152006-12-02 13:34:28 -05002993
James Smart92d7f7b2007-06-17 19:56:38 -05002994 spin_lock_irq(&phba->hbalock);
James Smart76a95d72010-11-20 23:11:48 -05002995 switch (bf_get(lpfc_mbx_read_top_link_spd, la)) {
2996 case LPFC_LINK_SPEED_1GHZ:
2997 case LPFC_LINK_SPEED_2GHZ:
2998 case LPFC_LINK_SPEED_4GHZ:
2999 case LPFC_LINK_SPEED_8GHZ:
3000 case LPFC_LINK_SPEED_10GHZ:
3001 case LPFC_LINK_SPEED_16GHZ:
3002 phba->fc_linkspeed = bf_get(lpfc_mbx_read_top_link_spd, la);
James Smartf4b4c682009-05-22 14:53:12 -04003003 break;
James Smart92d7f7b2007-06-17 19:56:38 -05003004 default:
James Smart76a95d72010-11-20 23:11:48 -05003005 phba->fc_linkspeed = LPFC_LINK_SPEED_UNKNOWN;
James Smart92d7f7b2007-06-17 19:56:38 -05003006 break;
dea31012005-04-17 16:05:31 -05003007 }
3008
James Smart76a95d72010-11-20 23:11:48 -05003009 phba->fc_topology = bf_get(lpfc_mbx_read_top_topology, la);
James Smart92d7f7b2007-06-17 19:56:38 -05003010 phba->link_flag &= ~LS_NPIV_FAB_SUPPORTED;
dea31012005-04-17 16:05:31 -05003011
James Smartdf9e1b52011-12-13 13:22:17 -05003012 shost = lpfc_shost_from_vport(vport);
James Smart76a95d72010-11-20 23:11:48 -05003013 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
James Smart92d7f7b2007-06-17 19:56:38 -05003014 phba->sli3_options &= ~LPFC_SLI3_NPIV_ENABLED;
dea31012005-04-17 16:05:31 -05003015
James Smart6a9c52c2009-10-02 15:16:51 -04003016 /* if npiv is enabled and this adapter supports npiv log
3017 * a message that npiv is not supported in this topology
3018 */
3019 if (phba->cfg_enable_npiv && phba->max_vpi)
James Smart495a7142008-06-14 22:52:59 -04003020 lpfc_printf_log(phba, KERN_ERR, LOG_LINK_EVENT,
3021 "1309 Link Up Event npiv not supported in loop "
3022 "topology\n");
James Smart92d7f7b2007-06-17 19:56:38 -05003023 /* Get Loop Map information */
James Smartdf9e1b52011-12-13 13:22:17 -05003024 if (bf_get(lpfc_mbx_read_top_il, la)) {
James Smart72859902012-01-18 16:25:38 -05003025 spin_lock(shost->host_lock);
James Smart2e0fef82007-06-17 19:56:36 -05003026 vport->fc_flag |= FC_LBIT;
James Smart72859902012-01-18 16:25:38 -05003027 spin_unlock(shost->host_lock);
James Smartdf9e1b52011-12-13 13:22:17 -05003028 }
dea31012005-04-17 16:05:31 -05003029
James Smart76a95d72010-11-20 23:11:48 -05003030 vport->fc_myDID = bf_get(lpfc_mbx_read_top_alpa_granted, la);
3031 i = la->lilpBde64.tus.f.bdeSize;
dea31012005-04-17 16:05:31 -05003032
3033 if (i == 0) {
3034 phba->alpa_map[0] = 0;
3035 } else {
James Smarte8b62012007-08-02 11:10:09 -04003036 if (vport->cfg_log_verbose & LOG_LINK_EVENT) {
dea31012005-04-17 16:05:31 -05003037 int numalpa, j, k;
3038 union {
3039 uint8_t pamap[16];
3040 struct {
3041 uint32_t wd1;
3042 uint32_t wd2;
3043 uint32_t wd3;
3044 uint32_t wd4;
3045 } pa;
3046 } un;
3047 numalpa = phba->alpa_map[0];
3048 j = 0;
3049 while (j < numalpa) {
3050 memset(un.pamap, 0, 16);
3051 for (k = 1; j < numalpa; k++) {
3052 un.pamap[k - 1] =
3053 phba->alpa_map[j + 1];
3054 j++;
3055 if (k == 16)
3056 break;
3057 }
3058 /* Link Up Event ALPA map */
3059 lpfc_printf_log(phba,
James Smart92d7f7b2007-06-17 19:56:38 -05003060 KERN_WARNING,
3061 LOG_LINK_EVENT,
James Smarte8b62012007-08-02 11:10:09 -04003062 "1304 Link Up Event "
James Smart92d7f7b2007-06-17 19:56:38 -05003063 "ALPA map Data: x%x "
3064 "x%x x%x x%x\n",
James Smart92d7f7b2007-06-17 19:56:38 -05003065 un.pa.wd1, un.pa.wd2,
3066 un.pa.wd3, un.pa.wd4);
dea31012005-04-17 16:05:31 -05003067 }
3068 }
3069 }
3070 } else {
James Smart92d7f7b2007-06-17 19:56:38 -05003071 if (!(phba->sli3_options & LPFC_SLI3_NPIV_ENABLED)) {
James Smart78b2d852007-08-02 11:10:21 -04003072 if (phba->max_vpi && phba->cfg_enable_npiv &&
James Smartdf9e1b52011-12-13 13:22:17 -05003073 (phba->sli_rev >= LPFC_SLI_REV3))
James Smart92d7f7b2007-06-17 19:56:38 -05003074 phba->sli3_options |= LPFC_SLI3_NPIV_ENABLED;
3075 }
James Smart2e0fef82007-06-17 19:56:36 -05003076 vport->fc_myDID = phba->fc_pref_DID;
James Smart72859902012-01-18 16:25:38 -05003077 spin_lock(shost->host_lock);
James Smart2e0fef82007-06-17 19:56:36 -05003078 vport->fc_flag |= FC_LBIT;
James Smart72859902012-01-18 16:25:38 -05003079 spin_unlock(shost->host_lock);
dea31012005-04-17 16:05:31 -05003080 }
James Smart92d7f7b2007-06-17 19:56:38 -05003081 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05003082
3083 lpfc_linkup(phba);
James Smart9f1177a2010-02-26 14:12:57 -05003084 sparam_mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
3085 if (!sparam_mbox)
3086 goto out;
3087
3088 rc = lpfc_read_sparam(phba, sparam_mbox, 0);
3089 if (rc) {
3090 mempool_free(sparam_mbox, phba->mbox_mem_pool);
3091 goto out;
3092 }
3093 sparam_mbox->vport = vport;
3094 sparam_mbox->mbox_cmpl = lpfc_mbx_cmpl_read_sparam;
3095 rc = lpfc_sli_issue_mbox(phba, sparam_mbox, MBX_NOWAIT);
3096 if (rc == MBX_NOT_FINISHED) {
3097 mp = (struct lpfc_dmabuf *) sparam_mbox->context1;
3098 lpfc_mbuf_free(phba, mp->virt, mp->phys);
3099 kfree(mp);
3100 mempool_free(sparam_mbox, phba->mbox_mem_pool);
3101 goto out;
dea31012005-04-17 16:05:31 -05003102 }
3103
James Smart76a95d72010-11-20 23:11:48 -05003104 if (!(phba->hba_flag & HBA_FCOE_MODE)) {
James Smart6fb120a2009-05-22 14:52:59 -04003105 cfglink_mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
3106 if (!cfglink_mbox)
3107 goto out;
James Smart2e0fef82007-06-17 19:56:36 -05003108 vport->port_state = LPFC_LOCAL_CFG_LINK;
dea31012005-04-17 16:05:31 -05003109 lpfc_config_link(phba, cfglink_mbox);
James Smart2e0fef82007-06-17 19:56:36 -05003110 cfglink_mbox->vport = vport;
Jamie Wellnitz25594c62006-02-28 19:25:34 -05003111 cfglink_mbox->mbox_cmpl = lpfc_mbx_cmpl_local_config_link;
James Smart0b727fe2007-10-27 13:37:25 -04003112 rc = lpfc_sli_issue_mbox(phba, cfglink_mbox, MBX_NOWAIT);
James Smart6fb120a2009-05-22 14:52:59 -04003113 if (rc == MBX_NOT_FINISHED) {
3114 mempool_free(cfglink_mbox, phba->mbox_mem_pool);
3115 goto out;
3116 }
3117 } else {
James Smart32b97932009-07-19 10:01:21 -04003118 vport->port_state = LPFC_VPORT_UNKNOWN;
James Smart6fb120a2009-05-22 14:52:59 -04003119 /*
3120 * Add the driver's default FCF record at FCF index 0 now. This
3121 * is phase 1 implementation that support FCF index 0 and driver
3122 * defaults.
3123 */
James Smart45ed1192009-10-02 15:17:02 -04003124 if (!(phba->hba_flag & HBA_FIP_SUPPORT)) {
James Smart6fb120a2009-05-22 14:52:59 -04003125 fcf_record = kzalloc(sizeof(struct fcf_record),
3126 GFP_KERNEL);
3127 if (unlikely(!fcf_record)) {
3128 lpfc_printf_log(phba, KERN_ERR,
3129 LOG_MBOX | LOG_SLI,
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04003130 "2554 Could not allocate memory for "
James Smart6fb120a2009-05-22 14:52:59 -04003131 "fcf record\n");
3132 rc = -ENODEV;
3133 goto out;
3134 }
3135
3136 lpfc_sli4_build_dflt_fcf_record(phba, fcf_record,
3137 LPFC_FCOE_FCF_DEF_INDEX);
3138 rc = lpfc_sli4_add_fcf_record(phba, fcf_record);
3139 if (unlikely(rc)) {
3140 lpfc_printf_log(phba, KERN_ERR,
3141 LOG_MBOX | LOG_SLI,
3142 "2013 Could not manually add FCF "
3143 "record 0, status %d\n", rc);
3144 rc = -ENODEV;
3145 kfree(fcf_record);
3146 goto out;
3147 }
3148 kfree(fcf_record);
3149 }
3150 /*
3151 * The driver is expected to do FIP/FCF. Call the port
3152 * and get the FCF Table.
3153 */
James Smart32b97932009-07-19 10:01:21 -04003154 spin_lock_irq(&phba->hbalock);
James Smarta93ff372010-10-22 11:06:08 -04003155 if (phba->hba_flag & FCF_TS_INPROG) {
James Smart32b97932009-07-19 10:01:21 -04003156 spin_unlock_irq(&phba->hbalock);
3157 return;
3158 }
James Smart0c9ab6f2010-02-26 14:15:57 -05003159 /* This is the initial FCF discovery scan */
3160 phba->fcf.fcf_flag |= FCF_INIT_DISC;
James Smart32b97932009-07-19 10:01:21 -04003161 spin_unlock_irq(&phba->hbalock);
James Smart0c9ab6f2010-02-26 14:15:57 -05003162 lpfc_printf_log(phba, KERN_INFO, LOG_FIP | LOG_DISCOVERY,
3163 "2778 Start FCF table scan at linkup\n");
James Smart0c9ab6f2010-02-26 14:15:57 -05003164 rc = lpfc_sli4_fcf_scan_read_fcf_rec(phba,
3165 LPFC_FCOE_FCF_GET_FIRST);
3166 if (rc) {
3167 spin_lock_irq(&phba->hbalock);
3168 phba->fcf.fcf_flag &= ~FCF_INIT_DISC;
3169 spin_unlock_irq(&phba->hbalock);
James Smart6fb120a2009-05-22 14:52:59 -04003170 goto out;
James Smart0c9ab6f2010-02-26 14:15:57 -05003171 }
James Smart38b92ef2010-08-04 16:11:39 -04003172 /* Reset FCF roundrobin bmask for new discovery */
James Smart7d791df2011-07-22 18:37:52 -04003173 lpfc_sli4_clear_fcf_rr_bmask(phba);
dea31012005-04-17 16:05:31 -05003174 }
James Smart6fb120a2009-05-22 14:52:59 -04003175
3176 return;
James Smart92d7f7b2007-06-17 19:56:38 -05003177out:
3178 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
James Smarte8b62012007-08-02 11:10:09 -04003179 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
3180 "0263 Discovery Mailbox error: state: 0x%x : %p %p\n",
3181 vport->port_state, sparam_mbox, cfglink_mbox);
James Smart92d7f7b2007-06-17 19:56:38 -05003182 lpfc_issue_clear_la(phba, vport);
3183 return;
dea31012005-04-17 16:05:31 -05003184}
3185
3186static void
James Smart84774a42008-08-24 21:50:06 -04003187lpfc_enable_la(struct lpfc_hba *phba)
James Smart2e0fef82007-06-17 19:56:36 -05003188{
dea31012005-04-17 16:05:31 -05003189 uint32_t control;
3190 struct lpfc_sli *psli = &phba->sli;
James Smart2e0fef82007-06-17 19:56:36 -05003191 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05003192 psli->sli_flag |= LPFC_PROCESS_LA;
James Smart3772a992009-05-22 14:50:54 -04003193 if (phba->sli_rev <= LPFC_SLI_REV3) {
3194 control = readl(phba->HCregaddr);
3195 control |= HC_LAINT_ENA;
3196 writel(control, phba->HCregaddr);
3197 readl(phba->HCregaddr); /* flush */
3198 }
James Smart2e0fef82007-06-17 19:56:36 -05003199 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05003200}
3201
James Smart84774a42008-08-24 21:50:06 -04003202static void
3203lpfc_mbx_issue_link_down(struct lpfc_hba *phba)
3204{
3205 lpfc_linkdown(phba);
3206 lpfc_enable_la(phba);
James Smart6fb120a2009-05-22 14:52:59 -04003207 lpfc_unregister_unused_fcf(phba);
James Smart84774a42008-08-24 21:50:06 -04003208 /* turn on Link Attention interrupts - no CLEAR_LA needed */
3209}
3210
3211
dea31012005-04-17 16:05:31 -05003212/*
James Smart76a95d72010-11-20 23:11:48 -05003213 * This routine handles processing a READ_TOPOLOGY mailbox
dea31012005-04-17 16:05:31 -05003214 * command upon completion. It is setup in the LPFC_MBOXQ
3215 * as the completion routine when the command is
3216 * handed off to the SLI layer.
3217 */
3218void
James Smart76a95d72010-11-20 23:11:48 -05003219lpfc_mbx_cmpl_read_topology(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
dea31012005-04-17 16:05:31 -05003220{
James Smart2e0fef82007-06-17 19:56:36 -05003221 struct lpfc_vport *vport = pmb->vport;
3222 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart76a95d72010-11-20 23:11:48 -05003223 struct lpfc_mbx_read_top *la;
James Smart04c68492009-05-22 14:52:52 -04003224 MAILBOX_t *mb = &pmb->u.mb;
dea31012005-04-17 16:05:31 -05003225 struct lpfc_dmabuf *mp = (struct lpfc_dmabuf *) (pmb->context1);
3226
James Smart0d2b6b82008-06-14 22:52:47 -04003227 /* Unblock ELS traffic */
3228 phba->sli.ring[LPFC_ELS_RING].flag &= ~LPFC_STOP_IOCB_EVENT;
dea31012005-04-17 16:05:31 -05003229 /* Check for error */
3230 if (mb->mbxStatus) {
James Smarted957682007-06-17 19:56:37 -05003231 lpfc_printf_log(phba, KERN_INFO, LOG_LINK_EVENT,
James Smarte8b62012007-08-02 11:10:09 -04003232 "1307 READ_LA mbox error x%x state x%x\n",
3233 mb->mbxStatus, vport->port_state);
dea31012005-04-17 16:05:31 -05003234 lpfc_mbx_issue_link_down(phba);
James Smart2e0fef82007-06-17 19:56:36 -05003235 phba->link_state = LPFC_HBA_ERROR;
James Smart76a95d72010-11-20 23:11:48 -05003236 goto lpfc_mbx_cmpl_read_topology_free_mbuf;
dea31012005-04-17 16:05:31 -05003237 }
3238
James Smart76a95d72010-11-20 23:11:48 -05003239 la = (struct lpfc_mbx_read_top *) &pmb->u.mb.un.varReadTop;
dea31012005-04-17 16:05:31 -05003240
3241 memcpy(&phba->alpa_map[0], mp->virt, 128);
3242
James Smart2e0fef82007-06-17 19:56:36 -05003243 spin_lock_irq(shost->host_lock);
James Smart76a95d72010-11-20 23:11:48 -05003244 if (bf_get(lpfc_mbx_read_top_pb, la))
James Smart2e0fef82007-06-17 19:56:36 -05003245 vport->fc_flag |= FC_BYPASSED_MODE;
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003246 else
James Smart2e0fef82007-06-17 19:56:36 -05003247 vport->fc_flag &= ~FC_BYPASSED_MODE;
3248 spin_unlock_irq(shost->host_lock);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05003249
James Smart0c287582009-06-10 17:22:56 -04003250 if ((phba->fc_eventTag < la->eventTag) ||
James Smart92d7f7b2007-06-17 19:56:38 -05003251 (phba->fc_eventTag == la->eventTag)) {
dea31012005-04-17 16:05:31 -05003252 phba->fc_stat.LinkMultiEvent++;
James Smart76a95d72010-11-20 23:11:48 -05003253 if (bf_get(lpfc_mbx_read_top_att_type, la) == LPFC_ATT_LINK_UP)
dea31012005-04-17 16:05:31 -05003254 if (phba->fc_eventTag != 0)
3255 lpfc_linkdown(phba);
James Smart92d7f7b2007-06-17 19:56:38 -05003256 }
dea31012005-04-17 16:05:31 -05003257
3258 phba->fc_eventTag = la->eventTag;
James Smart72100cc2010-02-12 14:43:01 -05003259 spin_lock_irq(&phba->hbalock);
James Smart76a95d72010-11-20 23:11:48 -05003260 if (bf_get(lpfc_mbx_read_top_mm, la))
James Smart84774a42008-08-24 21:50:06 -04003261 phba->sli.sli_flag |= LPFC_MENLO_MAINT;
3262 else
3263 phba->sli.sli_flag &= ~LPFC_MENLO_MAINT;
James Smart72100cc2010-02-12 14:43:01 -05003264 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05003265
James Smart4d9ab992009-10-02 15:16:39 -04003266 phba->link_events++;
James Smart76a95d72010-11-20 23:11:48 -05003267 if ((bf_get(lpfc_mbx_read_top_att_type, la) == LPFC_ATT_LINK_UP) &&
3268 (!bf_get(lpfc_mbx_read_top_mm, la))) {
dea31012005-04-17 16:05:31 -05003269 phba->fc_stat.LinkUp++;
James Smart2e0fef82007-06-17 19:56:36 -05003270 if (phba->link_flag & LS_LOOPBACK_MODE) {
James Smart3163f722008-02-08 18:50:25 -05003271 lpfc_printf_log(phba, KERN_ERR, LOG_LINK_EVENT,
James Smarte8b62012007-08-02 11:10:09 -04003272 "1306 Link Up Event in loop back mode "
3273 "x%x received Data: x%x x%x x%x x%x\n",
3274 la->eventTag, phba->fc_eventTag,
James Smart76a95d72010-11-20 23:11:48 -05003275 bf_get(lpfc_mbx_read_top_alpa_granted,
3276 la),
3277 bf_get(lpfc_mbx_read_top_link_spd, la),
James Smarte8b62012007-08-02 11:10:09 -04003278 phba->alpa_map[0]);
James Smart5b8bd0c2007-04-25 09:52:49 -04003279 } else {
3280 lpfc_printf_log(phba, KERN_ERR, LOG_LINK_EVENT,
James Smarte8b62012007-08-02 11:10:09 -04003281 "1303 Link Up Event x%x received "
James Smart84774a42008-08-24 21:50:06 -04003282 "Data: x%x x%x x%x x%x x%x x%x %d\n",
James Smarte8b62012007-08-02 11:10:09 -04003283 la->eventTag, phba->fc_eventTag,
James Smart76a95d72010-11-20 23:11:48 -05003284 bf_get(lpfc_mbx_read_top_alpa_granted,
3285 la),
3286 bf_get(lpfc_mbx_read_top_link_spd, la),
James Smart84774a42008-08-24 21:50:06 -04003287 phba->alpa_map[0],
James Smart76a95d72010-11-20 23:11:48 -05003288 bf_get(lpfc_mbx_read_top_mm, la),
3289 bf_get(lpfc_mbx_read_top_fa, la),
James Smart84774a42008-08-24 21:50:06 -04003290 phba->wait_4_mlo_maint_flg);
James Smart5b8bd0c2007-04-25 09:52:49 -04003291 }
James Smart92d7f7b2007-06-17 19:56:38 -05003292 lpfc_mbx_process_link_up(phba, la);
James Smart76a95d72010-11-20 23:11:48 -05003293 } else if (bf_get(lpfc_mbx_read_top_att_type, la) ==
3294 LPFC_ATT_LINK_DOWN) {
dea31012005-04-17 16:05:31 -05003295 phba->fc_stat.LinkDown++;
James Smart1b511972011-12-13 13:23:09 -05003296 if (phba->link_flag & LS_LOOPBACK_MODE)
James Smart3163f722008-02-08 18:50:25 -05003297 lpfc_printf_log(phba, KERN_ERR, LOG_LINK_EVENT,
3298 "1308 Link Down Event in loop back mode "
3299 "x%x received "
3300 "Data: x%x x%x x%x\n",
3301 la->eventTag, phba->fc_eventTag,
3302 phba->pport->port_state, vport->fc_flag);
James Smart1b511972011-12-13 13:23:09 -05003303 else
James Smart3163f722008-02-08 18:50:25 -05003304 lpfc_printf_log(phba, KERN_ERR, LOG_LINK_EVENT,
James Smarte8b62012007-08-02 11:10:09 -04003305 "1305 Link Down Event x%x received "
James Smart84774a42008-08-24 21:50:06 -04003306 "Data: x%x x%x x%x x%x x%x\n",
3307 la->eventTag, phba->fc_eventTag,
3308 phba->pport->port_state, vport->fc_flag,
James Smart76a95d72010-11-20 23:11:48 -05003309 bf_get(lpfc_mbx_read_top_mm, la),
3310 bf_get(lpfc_mbx_read_top_fa, la));
James Smart84774a42008-08-24 21:50:06 -04003311 lpfc_mbx_issue_link_down(phba);
3312 }
James Smart76a95d72010-11-20 23:11:48 -05003313 if ((bf_get(lpfc_mbx_read_top_mm, la)) &&
3314 (bf_get(lpfc_mbx_read_top_att_type, la) == LPFC_ATT_LINK_UP)) {
James Smart84774a42008-08-24 21:50:06 -04003315 if (phba->link_state != LPFC_LINK_DOWN) {
3316 phba->fc_stat.LinkDown++;
3317 lpfc_printf_log(phba, KERN_ERR, LOG_LINK_EVENT,
3318 "1312 Link Down Event x%x received "
dea31012005-04-17 16:05:31 -05003319 "Data: x%x x%x x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04003320 la->eventTag, phba->fc_eventTag,
James Smart2e0fef82007-06-17 19:56:36 -05003321 phba->pport->port_state, vport->fc_flag);
James Smart84774a42008-08-24 21:50:06 -04003322 lpfc_mbx_issue_link_down(phba);
3323 } else
3324 lpfc_enable_la(phba);
3325
3326 lpfc_printf_log(phba, KERN_ERR, LOG_LINK_EVENT,
3327 "1310 Menlo Maint Mode Link up Event x%x rcvd "
3328 "Data: x%x x%x x%x\n",
3329 la->eventTag, phba->fc_eventTag,
3330 phba->pport->port_state, vport->fc_flag);
3331 /*
3332 * The cmnd that triggered this will be waiting for this
3333 * signal.
3334 */
3335 /* WAKEUP for MENLO_SET_MODE or MENLO_RESET command. */
3336 if (phba->wait_4_mlo_maint_flg) {
3337 phba->wait_4_mlo_maint_flg = 0;
3338 wake_up_interruptible(&phba->wait_4_mlo_m_q);
James Smart3163f722008-02-08 18:50:25 -05003339 }
James Smart84774a42008-08-24 21:50:06 -04003340 }
3341
James Smart76a95d72010-11-20 23:11:48 -05003342 if (bf_get(lpfc_mbx_read_top_fa, la)) {
3343 if (bf_get(lpfc_mbx_read_top_mm, la))
James Smart84774a42008-08-24 21:50:06 -04003344 lpfc_issue_clear_la(phba, vport);
3345 lpfc_printf_log(phba, KERN_INFO, LOG_LINK_EVENT,
James Smart76a95d72010-11-20 23:11:48 -05003346 "1311 fa %d\n",
3347 bf_get(lpfc_mbx_read_top_fa, la));
dea31012005-04-17 16:05:31 -05003348 }
3349
James Smart76a95d72010-11-20 23:11:48 -05003350lpfc_mbx_cmpl_read_topology_free_mbuf:
dea31012005-04-17 16:05:31 -05003351 lpfc_mbuf_free(phba, mp->virt, mp->phys);
3352 kfree(mp);
3353 mempool_free(pmb, phba->mbox_mem_pool);
3354 return;
3355}
3356
3357/*
3358 * This routine handles processing a REG_LOGIN mailbox
3359 * command upon completion. It is setup in the LPFC_MBOXQ
3360 * as the completion routine when the command is
3361 * handed off to the SLI layer.
3362 */
3363void
James Smart2e0fef82007-06-17 19:56:36 -05003364lpfc_mbx_cmpl_reg_login(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
dea31012005-04-17 16:05:31 -05003365{
James Smart2e0fef82007-06-17 19:56:36 -05003366 struct lpfc_vport *vport = pmb->vport;
James Smart92d7f7b2007-06-17 19:56:38 -05003367 struct lpfc_dmabuf *mp = (struct lpfc_dmabuf *) (pmb->context1);
James Smart2e0fef82007-06-17 19:56:36 -05003368 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) pmb->context2;
James Smartffc95492010-06-07 15:23:17 -04003369 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05003370
dea31012005-04-17 16:05:31 -05003371 pmb->context1 = NULL;
James Smartd439d282010-09-29 11:18:45 -04003372 pmb->context2 = NULL;
dea31012005-04-17 16:05:31 -05003373
James Smartffc95492010-06-07 15:23:17 -04003374 if (ndlp->nlp_flag & NLP_REG_LOGIN_SEND)
3375 ndlp->nlp_flag &= ~NLP_REG_LOGIN_SEND;
3376
James Smart40426292010-12-15 17:58:10 -05003377 if (ndlp->nlp_flag & NLP_IGNR_REG_CMPL ||
3378 ndlp->nlp_state != NLP_STE_REG_LOGIN_ISSUE) {
James Smartffc95492010-06-07 15:23:17 -04003379 /* We rcvd a rscn after issuing this
3380 * mbox reg login, we may have cycled
3381 * back through the state and be
3382 * back at reg login state so this
3383 * mbox needs to be ignored becase
3384 * there is another reg login in
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003385 * process.
James Smartffc95492010-06-07 15:23:17 -04003386 */
3387 spin_lock_irq(shost->host_lock);
3388 ndlp->nlp_flag &= ~NLP_IGNR_REG_CMPL;
3389 spin_unlock_irq(shost->host_lock);
James Smartffc95492010-06-07 15:23:17 -04003390 } else
3391 /* Good status, call state machine */
3392 lpfc_disc_state_machine(vport, ndlp, pmb,
3393 NLP_EVT_CMPL_REG_LOGIN);
3394
dea31012005-04-17 16:05:31 -05003395 lpfc_mbuf_free(phba, mp->virt, mp->phys);
3396 kfree(mp);
James Smart2e0fef82007-06-17 19:56:36 -05003397 mempool_free(pmb, phba->mbox_mem_pool);
James Smartfa4066b2008-01-11 01:53:27 -05003398 /* decrement the node reference count held for this callback
3399 * function.
3400 */
James Smart329f9bc2007-04-25 09:53:01 -04003401 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05003402
3403 return;
3404}
3405
James Smart92d7f7b2007-06-17 19:56:38 -05003406static void
3407lpfc_mbx_cmpl_unreg_vpi(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
3408{
James Smart04c68492009-05-22 14:52:52 -04003409 MAILBOX_t *mb = &pmb->u.mb;
James Smart92d7f7b2007-06-17 19:56:38 -05003410 struct lpfc_vport *vport = pmb->vport;
3411 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
3412
3413 switch (mb->mbxStatus) {
3414 case 0x0011:
3415 case 0x0020:
James Smarte8b62012007-08-02 11:10:09 -04003416 lpfc_printf_vlog(vport, KERN_INFO, LOG_NODE,
3417 "0911 cmpl_unreg_vpi, mb status = 0x%x\n",
3418 mb->mbxStatus);
James Smart92d7f7b2007-06-17 19:56:38 -05003419 break;
James Smart78730cf2010-04-06 15:06:30 -04003420 /* If VPI is busy, reset the HBA */
3421 case 0x9700:
3422 lpfc_printf_vlog(vport, KERN_ERR, LOG_NODE,
3423 "2798 Unreg_vpi failed vpi 0x%x, mb status = 0x%x\n",
3424 vport->vpi, mb->mbxStatus);
3425 if (!(phba->pport->load_flag & FC_UNLOADING))
3426 lpfc_workq_post_event(phba, NULL, NULL,
3427 LPFC_EVT_RESET_HBA);
James Smart92d7f7b2007-06-17 19:56:38 -05003428 }
James Smart72100cc2010-02-12 14:43:01 -05003429 spin_lock_irq(shost->host_lock);
James Smartc8685952009-11-18 15:39:16 -05003430 vport->vpi_state &= ~LPFC_VPI_REGISTERED;
James Smart19878072009-12-21 17:02:00 -05003431 vport->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
James Smart72100cc2010-02-12 14:43:01 -05003432 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05003433 vport->unreg_vpi_cmpl = VPORT_OK;
3434 mempool_free(pmb, phba->mbox_mem_pool);
James Smart1151e3e2011-02-16 12:39:35 -05003435 lpfc_cleanup_vports_rrqs(vport, NULL);
James Smart92d7f7b2007-06-17 19:56:38 -05003436 /*
3437 * This shost reference might have been taken at the beginning of
3438 * lpfc_vport_delete()
3439 */
James Smart1c6f4ef52009-11-18 15:40:49 -05003440 if ((vport->load_flag & FC_UNLOADING) && (vport != phba->pport))
James Smart92d7f7b2007-06-17 19:56:38 -05003441 scsi_host_put(shost);
3442}
3443
James Smartd7c255b2008-08-24 21:50:00 -04003444int
James Smart92d7f7b2007-06-17 19:56:38 -05003445lpfc_mbx_unreg_vpi(struct lpfc_vport *vport)
3446{
3447 struct lpfc_hba *phba = vport->phba;
3448 LPFC_MBOXQ_t *mbox;
3449 int rc;
3450
3451 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
3452 if (!mbox)
James Smartd7c255b2008-08-24 21:50:00 -04003453 return 1;
James Smart92d7f7b2007-06-17 19:56:38 -05003454
3455 lpfc_unreg_vpi(phba, vport->vpi, mbox);
3456 mbox->vport = vport;
3457 mbox->mbox_cmpl = lpfc_mbx_cmpl_unreg_vpi;
James Smart0b727fe2007-10-27 13:37:25 -04003458 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
James Smart92d7f7b2007-06-17 19:56:38 -05003459 if (rc == MBX_NOT_FINISHED) {
James Smarte8b62012007-08-02 11:10:09 -04003460 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX | LOG_VPORT,
3461 "1800 Could not issue unreg_vpi\n");
James Smart92d7f7b2007-06-17 19:56:38 -05003462 mempool_free(mbox, phba->mbox_mem_pool);
3463 vport->unreg_vpi_cmpl = VPORT_ERROR;
James Smartd7c255b2008-08-24 21:50:00 -04003464 return rc;
James Smart92d7f7b2007-06-17 19:56:38 -05003465 }
James Smartd7c255b2008-08-24 21:50:00 -04003466 return 0;
James Smart92d7f7b2007-06-17 19:56:38 -05003467}
3468
3469static void
3470lpfc_mbx_cmpl_reg_vpi(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
3471{
3472 struct lpfc_vport *vport = pmb->vport;
3473 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart04c68492009-05-22 14:52:52 -04003474 MAILBOX_t *mb = &pmb->u.mb;
James Smart92d7f7b2007-06-17 19:56:38 -05003475
3476 switch (mb->mbxStatus) {
3477 case 0x0011:
3478 case 0x9601:
3479 case 0x9602:
James Smarte8b62012007-08-02 11:10:09 -04003480 lpfc_printf_vlog(vport, KERN_INFO, LOG_NODE,
3481 "0912 cmpl_reg_vpi, mb status = 0x%x\n",
3482 mb->mbxStatus);
James Smart92d7f7b2007-06-17 19:56:38 -05003483 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
3484 spin_lock_irq(shost->host_lock);
3485 vport->fc_flag &= ~(FC_FABRIC | FC_PUBLIC_LOOP);
3486 spin_unlock_irq(shost->host_lock);
3487 vport->fc_myDID = 0;
3488 goto out;
3489 }
James Smart92d7f7b2007-06-17 19:56:38 -05003490
James Smart72100cc2010-02-12 14:43:01 -05003491 spin_lock_irq(shost->host_lock);
James Smartc8685952009-11-18 15:39:16 -05003492 vport->vpi_state |= LPFC_VPI_REGISTERED;
James Smart695a8142010-01-26 23:08:03 -05003493 vport->fc_flag &= ~FC_VPORT_NEEDS_REG_VPI;
James Smart72100cc2010-02-12 14:43:01 -05003494 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05003495 vport->num_disc_nodes = 0;
3496 /* go thru NPR list and issue ELS PLOGIs */
3497 if (vport->fc_npr_cnt)
3498 lpfc_els_disc_plogi(vport);
3499
3500 if (!vport->num_disc_nodes) {
3501 spin_lock_irq(shost->host_lock);
3502 vport->fc_flag &= ~FC_NDISC_ACTIVE;
3503 spin_unlock_irq(shost->host_lock);
3504 lpfc_can_disctmo(vport);
3505 }
3506 vport->port_state = LPFC_VPORT_READY;
3507
3508out:
3509 mempool_free(pmb, phba->mbox_mem_pool);
3510 return;
3511}
3512
James Smart21e9a0a2009-05-22 14:53:21 -04003513/**
3514 * lpfc_create_static_vport - Read HBA config region to create static vports.
3515 * @phba: pointer to lpfc hba data structure.
3516 *
3517 * This routine issue a DUMP mailbox command for config region 22 to get
3518 * the list of static vports to be created. The function create vports
3519 * based on the information returned from the HBA.
3520 **/
3521void
3522lpfc_create_static_vport(struct lpfc_hba *phba)
3523{
3524 LPFC_MBOXQ_t *pmb = NULL;
3525 MAILBOX_t *mb;
3526 struct static_vport_info *vport_info;
James Smartcdcc2342012-08-14 14:26:35 -04003527 int mbx_wait_rc = 0, i;
James Smart21e9a0a2009-05-22 14:53:21 -04003528 struct fc_vport_identifiers vport_id;
3529 struct fc_vport *new_fc_vport;
3530 struct Scsi_Host *shost;
3531 struct lpfc_vport *vport;
3532 uint16_t offset = 0;
3533 uint8_t *vport_buff;
James Smart1c6834a2009-07-19 10:01:26 -04003534 struct lpfc_dmabuf *mp;
3535 uint32_t byte_count = 0;
James Smart21e9a0a2009-05-22 14:53:21 -04003536
3537 pmb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
3538 if (!pmb) {
3539 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3540 "0542 lpfc_create_static_vport failed to"
3541 " allocate mailbox memory\n");
3542 return;
3543 }
James Smartcdcc2342012-08-14 14:26:35 -04003544 memset(pmb, 0, sizeof(LPFC_MBOXQ_t));
James Smart21e9a0a2009-05-22 14:53:21 -04003545 mb = &pmb->u.mb;
3546
3547 vport_info = kzalloc(sizeof(struct static_vport_info), GFP_KERNEL);
3548 if (!vport_info) {
3549 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3550 "0543 lpfc_create_static_vport failed to"
3551 " allocate vport_info\n");
3552 mempool_free(pmb, phba->mbox_mem_pool);
3553 return;
3554 }
3555
3556 vport_buff = (uint8_t *) vport_info;
3557 do {
James Smartcdcc2342012-08-14 14:26:35 -04003558 /* free dma buffer from previous round */
3559 if (pmb->context1) {
3560 mp = (struct lpfc_dmabuf *)pmb->context1;
3561 lpfc_mbuf_free(phba, mp->virt, mp->phys);
3562 kfree(mp);
3563 }
James Smart1c6834a2009-07-19 10:01:26 -04003564 if (lpfc_dump_static_vport(phba, pmb, offset))
3565 goto out;
3566
James Smart21e9a0a2009-05-22 14:53:21 -04003567 pmb->vport = phba->pport;
James Smartcdcc2342012-08-14 14:26:35 -04003568 mbx_wait_rc = lpfc_sli_issue_mbox_wait(phba, pmb,
3569 LPFC_MBOX_TMO);
James Smart21e9a0a2009-05-22 14:53:21 -04003570
James Smartcdcc2342012-08-14 14:26:35 -04003571 if ((mbx_wait_rc != MBX_SUCCESS) || mb->mbxStatus) {
James Smart21e9a0a2009-05-22 14:53:21 -04003572 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
3573 "0544 lpfc_create_static_vport failed to"
3574 " issue dump mailbox command ret 0x%x "
3575 "status 0x%x\n",
James Smartcdcc2342012-08-14 14:26:35 -04003576 mbx_wait_rc, mb->mbxStatus);
James Smart21e9a0a2009-05-22 14:53:21 -04003577 goto out;
3578 }
3579
James Smart1c6834a2009-07-19 10:01:26 -04003580 if (phba->sli_rev == LPFC_SLI_REV4) {
3581 byte_count = pmb->u.mqe.un.mb_words[5];
James Smartcdcc2342012-08-14 14:26:35 -04003582 mp = (struct lpfc_dmabuf *)pmb->context1;
James Smart1c6834a2009-07-19 10:01:26 -04003583 if (byte_count > sizeof(struct static_vport_info) -
3584 offset)
3585 byte_count = sizeof(struct static_vport_info)
3586 - offset;
3587 memcpy(vport_buff + offset, mp->virt, byte_count);
3588 offset += byte_count;
3589 } else {
3590 if (mb->un.varDmp.word_cnt >
3591 sizeof(struct static_vport_info) - offset)
3592 mb->un.varDmp.word_cnt =
3593 sizeof(struct static_vport_info)
3594 - offset;
3595 byte_count = mb->un.varDmp.word_cnt;
3596 lpfc_sli_pcimem_bcopy(((uint8_t *)mb) + DMP_RSP_OFFSET,
3597 vport_buff + offset,
3598 byte_count);
James Smart21e9a0a2009-05-22 14:53:21 -04003599
James Smart1c6834a2009-07-19 10:01:26 -04003600 offset += byte_count;
3601 }
James Smart21e9a0a2009-05-22 14:53:21 -04003602
James Smart1c6834a2009-07-19 10:01:26 -04003603 } while (byte_count &&
James Smart21e9a0a2009-05-22 14:53:21 -04003604 offset < sizeof(struct static_vport_info));
3605
3606
3607 if ((le32_to_cpu(vport_info->signature) != VPORT_INFO_SIG) ||
3608 ((le32_to_cpu(vport_info->rev) & VPORT_INFO_REV_MASK)
3609 != VPORT_INFO_REV)) {
3610 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3611 "0545 lpfc_create_static_vport bad"
3612 " information header 0x%x 0x%x\n",
3613 le32_to_cpu(vport_info->signature),
3614 le32_to_cpu(vport_info->rev) & VPORT_INFO_REV_MASK);
3615
3616 goto out;
3617 }
3618
3619 shost = lpfc_shost_from_vport(phba->pport);
3620
3621 for (i = 0; i < MAX_STATIC_VPORT_COUNT; i++) {
3622 memset(&vport_id, 0, sizeof(vport_id));
3623 vport_id.port_name = wwn_to_u64(vport_info->vport_list[i].wwpn);
3624 vport_id.node_name = wwn_to_u64(vport_info->vport_list[i].wwnn);
3625 if (!vport_id.port_name || !vport_id.node_name)
3626 continue;
3627
3628 vport_id.roles = FC_PORT_ROLE_FCP_INITIATOR;
3629 vport_id.vport_type = FC_PORTTYPE_NPIV;
3630 vport_id.disable = false;
3631 new_fc_vport = fc_vport_create(shost, 0, &vport_id);
3632
3633 if (!new_fc_vport) {
3634 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
3635 "0546 lpfc_create_static_vport failed to"
James Smarte4e74272009-07-19 10:01:38 -04003636 " create vport\n");
James Smart21e9a0a2009-05-22 14:53:21 -04003637 continue;
3638 }
3639
3640 vport = *(struct lpfc_vport **)new_fc_vport->dd_data;
3641 vport->vport_flag |= STATIC_VPORT;
3642 }
3643
3644out:
James Smart21e9a0a2009-05-22 14:53:21 -04003645 kfree(vport_info);
James Smartcdcc2342012-08-14 14:26:35 -04003646 if (mbx_wait_rc != MBX_TIMEOUT) {
3647 if (pmb->context1) {
3648 mp = (struct lpfc_dmabuf *)pmb->context1;
James Smart1c6834a2009-07-19 10:01:26 -04003649 lpfc_mbuf_free(phba, mp->virt, mp->phys);
3650 kfree(mp);
3651 }
James Smart21e9a0a2009-05-22 14:53:21 -04003652 mempool_free(pmb, phba->mbox_mem_pool);
James Smart1c6834a2009-07-19 10:01:26 -04003653 }
James Smart21e9a0a2009-05-22 14:53:21 -04003654
3655 return;
3656}
3657
dea31012005-04-17 16:05:31 -05003658/*
3659 * This routine handles processing a Fabric REG_LOGIN mailbox
3660 * command upon completion. It is setup in the LPFC_MBOXQ
3661 * as the completion routine when the command is
3662 * handed off to the SLI layer.
3663 */
3664void
James Smart2e0fef82007-06-17 19:56:36 -05003665lpfc_mbx_cmpl_fabric_reg_login(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
dea31012005-04-17 16:05:31 -05003666{
James Smart92d7f7b2007-06-17 19:56:38 -05003667 struct lpfc_vport *vport = pmb->vport;
James Smart21e9a0a2009-05-22 14:53:21 -04003668 MAILBOX_t *mb = &pmb->u.mb;
James Smart2e0fef82007-06-17 19:56:36 -05003669 struct lpfc_dmabuf *mp = (struct lpfc_dmabuf *) (pmb->context1);
James Smart92d7f7b2007-06-17 19:56:38 -05003670 struct lpfc_nodelist *ndlp;
James Smartdf9e1b52011-12-13 13:22:17 -05003671 struct Scsi_Host *shost;
dea31012005-04-17 16:05:31 -05003672
James Smart549e55c2007-08-02 11:09:51 -04003673 ndlp = (struct lpfc_nodelist *) pmb->context2;
James Smart329f9bc2007-04-25 09:53:01 -04003674 pmb->context1 = NULL;
3675 pmb->context2 = NULL;
James Smartd439d282010-09-29 11:18:45 -04003676
dea31012005-04-17 16:05:31 -05003677 if (mb->mbxStatus) {
James Smart21e9a0a2009-05-22 14:53:21 -04003678 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX,
3679 "0258 Register Fabric login error: 0x%x\n",
3680 mb->mbxStatus);
dea31012005-04-17 16:05:31 -05003681 lpfc_mbuf_free(phba, mp->virt, mp->phys);
3682 kfree(mp);
James Smart329f9bc2007-04-25 09:53:01 -04003683 mempool_free(pmb, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -05003684
James Smart76a95d72010-11-20 23:11:48 -05003685 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
James Smart92d7f7b2007-06-17 19:56:38 -05003686 /* FLOGI failed, use loop map to make discovery list */
3687 lpfc_disc_list_loopmap(vport);
dea31012005-04-17 16:05:31 -05003688
James Smart92d7f7b2007-06-17 19:56:38 -05003689 /* Start discovery */
3690 lpfc_disc_start(vport);
James Smarte47c9092008-02-08 18:49:26 -05003691 /* Decrement the reference count to ndlp after the
3692 * reference to the ndlp are done.
3693 */
3694 lpfc_nlp_put(ndlp);
James Smart92d7f7b2007-06-17 19:56:38 -05003695 return;
3696 }
3697
3698 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
James Smarte47c9092008-02-08 18:49:26 -05003699 /* Decrement the reference count to ndlp after the reference
3700 * to the ndlp are done.
3701 */
3702 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05003703 return;
3704 }
3705
James Smart6d368e52011-05-24 11:44:12 -04003706 if (phba->sli_rev < LPFC_SLI_REV4)
3707 ndlp->nlp_rpi = mb->un.varWords[0];
James Smart40426292010-12-15 17:58:10 -05003708 ndlp->nlp_flag |= NLP_RPI_REGISTERED;
dea31012005-04-17 16:05:31 -05003709 ndlp->nlp_type |= NLP_FABRIC;
James Smart2e0fef82007-06-17 19:56:36 -05003710 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
dea31012005-04-17 16:05:31 -05003711
James Smart2e0fef82007-06-17 19:56:36 -05003712 if (vport->port_state == LPFC_FABRIC_CFG_LINK) {
James Smart4b40c592010-03-15 11:25:44 -04003713 /* when physical port receive logo donot start
3714 * vport discovery */
3715 if (!(vport->fc_flag & FC_LOGO_RCVD_DID_CHNG))
3716 lpfc_start_fdiscs(phba);
James Smartdf9e1b52011-12-13 13:22:17 -05003717 else {
3718 shost = lpfc_shost_from_vport(vport);
3719 spin_lock_irq(shost->host_lock);
James Smart4b40c592010-03-15 11:25:44 -04003720 vport->fc_flag &= ~FC_LOGO_RCVD_DID_CHNG ;
James Smartdf9e1b52011-12-13 13:22:17 -05003721 spin_unlock_irq(shost->host_lock);
3722 }
James Smart92d7f7b2007-06-17 19:56:38 -05003723 lpfc_do_scr_ns_plogi(phba, vport);
dea31012005-04-17 16:05:31 -05003724 }
3725
3726 lpfc_mbuf_free(phba, mp->virt, mp->phys);
3727 kfree(mp);
James Smart329f9bc2007-04-25 09:53:01 -04003728 mempool_free(pmb, phba->mbox_mem_pool);
James Smarte47c9092008-02-08 18:49:26 -05003729
3730 /* Drop the reference count from the mbox at the end after
3731 * all the current reference to the ndlp have been done.
3732 */
3733 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05003734 return;
3735}
3736
3737/*
3738 * This routine handles processing a NameServer REG_LOGIN mailbox
3739 * command upon completion. It is setup in the LPFC_MBOXQ
3740 * as the completion routine when the command is
3741 * handed off to the SLI layer.
3742 */
3743void
James Smart2e0fef82007-06-17 19:56:36 -05003744lpfc_mbx_cmpl_ns_reg_login(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
dea31012005-04-17 16:05:31 -05003745{
James Smart21e9a0a2009-05-22 14:53:21 -04003746 MAILBOX_t *mb = &pmb->u.mb;
James Smart2e0fef82007-06-17 19:56:36 -05003747 struct lpfc_dmabuf *mp = (struct lpfc_dmabuf *) (pmb->context1);
3748 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) pmb->context2;
3749 struct lpfc_vport *vport = pmb->vport;
dea31012005-04-17 16:05:31 -05003750
James Smartd439d282010-09-29 11:18:45 -04003751 pmb->context1 = NULL;
3752 pmb->context2 = NULL;
3753
dea31012005-04-17 16:05:31 -05003754 if (mb->mbxStatus) {
James Smart92d7f7b2007-06-17 19:56:38 -05003755out:
James Smart21e9a0a2009-05-22 14:53:21 -04003756 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
3757 "0260 Register NameServer error: 0x%x\n",
3758 mb->mbxStatus);
James Smartfa4066b2008-01-11 01:53:27 -05003759 /* decrement the node reference count held for this
3760 * callback function.
3761 */
James Smart329f9bc2007-04-25 09:53:01 -04003762 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05003763 lpfc_mbuf_free(phba, mp->virt, mp->phys);
3764 kfree(mp);
James Smartde0c5b32007-04-25 09:52:27 -04003765 mempool_free(pmb, phba->mbox_mem_pool);
James Smart87af33f2007-10-27 13:37:43 -04003766
3767 /* If no other thread is using the ndlp, free it */
3768 lpfc_nlp_not_used(ndlp);
dea31012005-04-17 16:05:31 -05003769
James Smart76a95d72010-11-20 23:11:48 -05003770 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
James Smart92d7f7b2007-06-17 19:56:38 -05003771 /*
3772 * RegLogin failed, use loop map to make discovery
3773 * list
3774 */
3775 lpfc_disc_list_loopmap(vport);
dea31012005-04-17 16:05:31 -05003776
James Smart92d7f7b2007-06-17 19:56:38 -05003777 /* Start discovery */
3778 lpfc_disc_start(vport);
3779 return;
3780 }
3781 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
dea31012005-04-17 16:05:31 -05003782 return;
3783 }
3784
James Smart6d368e52011-05-24 11:44:12 -04003785 if (phba->sli_rev < LPFC_SLI_REV4)
3786 ndlp->nlp_rpi = mb->un.varWords[0];
James Smart40426292010-12-15 17:58:10 -05003787 ndlp->nlp_flag |= NLP_RPI_REGISTERED;
dea31012005-04-17 16:05:31 -05003788 ndlp->nlp_type |= NLP_FABRIC;
James Smart2e0fef82007-06-17 19:56:36 -05003789 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
dea31012005-04-17 16:05:31 -05003790
James Smart2e0fef82007-06-17 19:56:36 -05003791 if (vport->port_state < LPFC_VPORT_READY) {
3792 /* Link up discovery requires Fabric registration. */
James Smart92d7f7b2007-06-17 19:56:38 -05003793 lpfc_ns_cmd(vport, SLI_CTNS_RFF_ID, 0, 0); /* Do this first! */
3794 lpfc_ns_cmd(vport, SLI_CTNS_RNN_ID, 0, 0);
3795 lpfc_ns_cmd(vport, SLI_CTNS_RSNN_NN, 0, 0);
3796 lpfc_ns_cmd(vport, SLI_CTNS_RSPN_ID, 0, 0);
3797 lpfc_ns_cmd(vport, SLI_CTNS_RFT_ID, 0, 0);
3798
3799 /* Issue SCR just before NameServer GID_FT Query */
3800 lpfc_issue_els_scr(vport, SCR_DID, 0);
dea31012005-04-17 16:05:31 -05003801 }
3802
James Smart2e0fef82007-06-17 19:56:36 -05003803 vport->fc_ns_retry = 0;
dea31012005-04-17 16:05:31 -05003804 /* Good status, issue CT Request to NameServer */
James Smart92d7f7b2007-06-17 19:56:38 -05003805 if (lpfc_ns_cmd(vport, SLI_CTNS_GID_FT, 0, 0)) {
dea31012005-04-17 16:05:31 -05003806 /* Cannot issue NameServer Query, so finish up discovery */
James Smart92d7f7b2007-06-17 19:56:38 -05003807 goto out;
dea31012005-04-17 16:05:31 -05003808 }
3809
James Smartfa4066b2008-01-11 01:53:27 -05003810 /* decrement the node reference count held for this
3811 * callback function.
3812 */
James Smart329f9bc2007-04-25 09:53:01 -04003813 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05003814 lpfc_mbuf_free(phba, mp->virt, mp->phys);
3815 kfree(mp);
James Smart2e0fef82007-06-17 19:56:36 -05003816 mempool_free(pmb, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -05003817
3818 return;
3819}
3820
3821static void
James Smart2e0fef82007-06-17 19:56:36 -05003822lpfc_register_remote_port(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05003823{
James Smart2e0fef82007-06-17 19:56:36 -05003824 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
3825 struct fc_rport *rport;
dea31012005-04-17 16:05:31 -05003826 struct lpfc_rport_data *rdata;
3827 struct fc_rport_identifiers rport_ids;
James Smart2e0fef82007-06-17 19:56:36 -05003828 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05003829
3830 /* Remote port has reappeared. Re-register w/ FC transport */
Andrew Morton68ce1eb2005-09-21 09:46:54 -07003831 rport_ids.node_name = wwn_to_u64(ndlp->nlp_nodename.u.wwn);
3832 rport_ids.port_name = wwn_to_u64(ndlp->nlp_portname.u.wwn);
dea31012005-04-17 16:05:31 -05003833 rport_ids.port_id = ndlp->nlp_DID;
3834 rport_ids.roles = FC_RPORT_ROLE_UNKNOWN;
dea31012005-04-17 16:05:31 -05003835
James Smart329f9bc2007-04-25 09:53:01 -04003836 /*
3837 * We leave our node pointer in rport->dd_data when we unregister a
3838 * FCP target port. But fc_remote_port_add zeros the space to which
3839 * rport->dd_data points. So, if we're reusing a previously
3840 * registered port, drop the reference that we took the last time we
3841 * registered the port.
3842 */
3843 if (ndlp->rport && ndlp->rport->dd_data &&
James Smarte47c9092008-02-08 18:49:26 -05003844 ((struct lpfc_rport_data *) ndlp->rport->dd_data)->pnode == ndlp)
James Smart329f9bc2007-04-25 09:53:01 -04003845 lpfc_nlp_put(ndlp);
James Smart858c9f62007-06-17 19:56:39 -05003846
3847 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_RPORT,
3848 "rport add: did:x%x flg:x%x type x%x",
3849 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_type);
3850
James Smart9589b0622011-04-16 11:03:17 -04003851 /* Don't add the remote port if unloading. */
3852 if (vport->load_flag & FC_UNLOADING)
3853 return;
3854
James Smart2e0fef82007-06-17 19:56:36 -05003855 ndlp->rport = rport = fc_remote_port_add(shost, 0, &rport_ids);
James Smart329f9bc2007-04-25 09:53:01 -04003856 if (!rport || !get_device(&rport->dev)) {
dea31012005-04-17 16:05:31 -05003857 dev_printk(KERN_WARNING, &phba->pcidev->dev,
3858 "Warning: fc_remote_port_add failed\n");
3859 return;
3860 }
3861
3862 /* initialize static port data */
3863 rport->maxframe_size = ndlp->nlp_maxframe;
3864 rport->supported_classes = ndlp->nlp_class_sup;
dea31012005-04-17 16:05:31 -05003865 rdata = rport->dd_data;
James Smart329f9bc2007-04-25 09:53:01 -04003866 rdata->pnode = lpfc_nlp_get(ndlp);
James.Smart@Emulex.Com23dc04f2005-11-28 11:41:44 -05003867
3868 if (ndlp->nlp_type & NLP_FCP_TARGET)
3869 rport_ids.roles |= FC_RPORT_ROLE_FCP_TARGET;
3870 if (ndlp->nlp_type & NLP_FCP_INITIATOR)
3871 rport_ids.roles |= FC_RPORT_ROLE_FCP_INITIATOR;
3872
James.Smart@Emulex.Com23dc04f2005-11-28 11:41:44 -05003873 if (rport_ids.roles != FC_RPORT_ROLE_UNKNOWN)
3874 fc_remote_port_rolechg(rport, rport_ids.roles);
3875
James Smart34f5ad82012-08-03 12:35:03 -04003876 lpfc_printf_vlog(ndlp->vport, KERN_INFO, LOG_NODE,
3877 "3183 rport register x%06x, rport %p role x%x\n",
3878 ndlp->nlp_DID, rport, rport_ids.roles);
3879
James Smart071fbd3d2006-04-15 11:53:20 -04003880 if ((rport->scsi_target_id != -1) &&
James Smart92d7f7b2007-06-17 19:56:38 -05003881 (rport->scsi_target_id < LPFC_MAX_TARGET)) {
James Smart071fbd3d2006-04-15 11:53:20 -04003882 ndlp->nlp_sid = rport->scsi_target_id;
3883 }
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04003884 return;
3885}
3886
3887static void
James Smart2e0fef82007-06-17 19:56:36 -05003888lpfc_unregister_remote_port(struct lpfc_nodelist *ndlp)
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04003889{
3890 struct fc_rport *rport = ndlp->rport;
James Smartc01f3202006-08-18 17:47:08 -04003891
James Smart858c9f62007-06-17 19:56:39 -05003892 lpfc_debugfs_disc_trc(ndlp->vport, LPFC_DISC_TRC_RPORT,
3893 "rport delete: did:x%x flg:x%x type x%x",
3894 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_type);
3895
James Smart34f5ad82012-08-03 12:35:03 -04003896 lpfc_printf_vlog(ndlp->vport, KERN_INFO, LOG_NODE,
3897 "3184 rport unregister x%06x, rport %p\n",
3898 ndlp->nlp_DID, rport);
3899
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04003900 fc_remote_port_delete(rport);
dea31012005-04-17 16:05:31 -05003901
3902 return;
3903}
3904
James Smartde0c5b32007-04-25 09:52:27 -04003905static void
James Smart2e0fef82007-06-17 19:56:36 -05003906lpfc_nlp_counters(struct lpfc_vport *vport, int state, int count)
James Smartde0c5b32007-04-25 09:52:27 -04003907{
James Smart2e0fef82007-06-17 19:56:36 -05003908 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
3909
3910 spin_lock_irq(shost->host_lock);
James Smartde0c5b32007-04-25 09:52:27 -04003911 switch (state) {
3912 case NLP_STE_UNUSED_NODE:
James Smart2e0fef82007-06-17 19:56:36 -05003913 vport->fc_unused_cnt += count;
James Smartde0c5b32007-04-25 09:52:27 -04003914 break;
3915 case NLP_STE_PLOGI_ISSUE:
James Smart2e0fef82007-06-17 19:56:36 -05003916 vport->fc_plogi_cnt += count;
James Smartde0c5b32007-04-25 09:52:27 -04003917 break;
3918 case NLP_STE_ADISC_ISSUE:
James Smart2e0fef82007-06-17 19:56:36 -05003919 vport->fc_adisc_cnt += count;
James Smartde0c5b32007-04-25 09:52:27 -04003920 break;
3921 case NLP_STE_REG_LOGIN_ISSUE:
James Smart2e0fef82007-06-17 19:56:36 -05003922 vport->fc_reglogin_cnt += count;
James Smartde0c5b32007-04-25 09:52:27 -04003923 break;
3924 case NLP_STE_PRLI_ISSUE:
James Smart2e0fef82007-06-17 19:56:36 -05003925 vport->fc_prli_cnt += count;
James Smartde0c5b32007-04-25 09:52:27 -04003926 break;
3927 case NLP_STE_UNMAPPED_NODE:
James Smart2e0fef82007-06-17 19:56:36 -05003928 vport->fc_unmap_cnt += count;
James Smartde0c5b32007-04-25 09:52:27 -04003929 break;
3930 case NLP_STE_MAPPED_NODE:
James Smart2e0fef82007-06-17 19:56:36 -05003931 vport->fc_map_cnt += count;
James Smartde0c5b32007-04-25 09:52:27 -04003932 break;
3933 case NLP_STE_NPR_NODE:
James Smart2e0fef82007-06-17 19:56:36 -05003934 vport->fc_npr_cnt += count;
James Smartde0c5b32007-04-25 09:52:27 -04003935 break;
3936 }
James Smart2e0fef82007-06-17 19:56:36 -05003937 spin_unlock_irq(shost->host_lock);
James Smartde0c5b32007-04-25 09:52:27 -04003938}
Jamie Wellnitz66a9ed62006-02-28 22:33:10 -05003939
James Smartde0c5b32007-04-25 09:52:27 -04003940static void
James Smart2e0fef82007-06-17 19:56:36 -05003941lpfc_nlp_state_cleanup(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
James Smartde0c5b32007-04-25 09:52:27 -04003942 int old_state, int new_state)
3943{
James Smart2e0fef82007-06-17 19:56:36 -05003944 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
3945
James Smartde0c5b32007-04-25 09:52:27 -04003946 if (new_state == NLP_STE_UNMAPPED_NODE) {
James Smartde0c5b32007-04-25 09:52:27 -04003947 ndlp->nlp_flag &= ~NLP_NODEV_REMOVE;
3948 ndlp->nlp_type |= NLP_FC_NODE;
3949 }
3950 if (new_state == NLP_STE_MAPPED_NODE)
3951 ndlp->nlp_flag &= ~NLP_NODEV_REMOVE;
3952 if (new_state == NLP_STE_NPR_NODE)
3953 ndlp->nlp_flag &= ~NLP_RCV_PLOGI;
dea31012005-04-17 16:05:31 -05003954
James Smartde0c5b32007-04-25 09:52:27 -04003955 /* Transport interface */
3956 if (ndlp->rport && (old_state == NLP_STE_MAPPED_NODE ||
3957 old_state == NLP_STE_UNMAPPED_NODE)) {
James Smart2e0fef82007-06-17 19:56:36 -05003958 vport->phba->nport_event_cnt++;
3959 lpfc_unregister_remote_port(ndlp);
James Smartde0c5b32007-04-25 09:52:27 -04003960 }
dea31012005-04-17 16:05:31 -05003961
James Smartde0c5b32007-04-25 09:52:27 -04003962 if (new_state == NLP_STE_MAPPED_NODE ||
3963 new_state == NLP_STE_UNMAPPED_NODE) {
James Smart2e0fef82007-06-17 19:56:36 -05003964 vport->phba->nport_event_cnt++;
James Smart858c9f62007-06-17 19:56:39 -05003965 /*
3966 * Tell the fc transport about the port, if we haven't
3967 * already. If we have, and it's a scsi entity, be
3968 * sure to unblock any attached scsi devices
3969 */
3970 lpfc_register_remote_port(vport, ndlp);
James Smartde0c5b32007-04-25 09:52:27 -04003971 }
James Smartea2151b2008-09-07 11:52:10 -04003972 if ((new_state == NLP_STE_MAPPED_NODE) &&
3973 (vport->stat_data_enabled)) {
3974 /*
3975 * A new target is discovered, if there is no buffer for
3976 * statistical data collection allocate buffer.
3977 */
3978 ndlp->lat_data = kcalloc(LPFC_MAX_BUCKET_COUNT,
3979 sizeof(struct lpfc_scsicmd_bkt),
3980 GFP_KERNEL);
3981
3982 if (!ndlp->lat_data)
3983 lpfc_printf_vlog(vport, KERN_ERR, LOG_NODE,
3984 "0286 lpfc_nlp_state_cleanup failed to "
3985 "allocate statistical data buffer DID "
3986 "0x%x\n", ndlp->nlp_DID);
3987 }
James Smart858c9f62007-06-17 19:56:39 -05003988 /*
3989 * if we added to Mapped list, but the remote port
3990 * registration failed or assigned a target id outside
3991 * our presentable range - move the node to the
3992 * Unmapped List
3993 */
James Smartde0c5b32007-04-25 09:52:27 -04003994 if (new_state == NLP_STE_MAPPED_NODE &&
3995 (!ndlp->rport ||
3996 ndlp->rport->scsi_target_id == -1 ||
3997 ndlp->rport->scsi_target_id >= LPFC_MAX_TARGET)) {
James Smart2e0fef82007-06-17 19:56:36 -05003998 spin_lock_irq(shost->host_lock);
James Smartde0c5b32007-04-25 09:52:27 -04003999 ndlp->nlp_flag |= NLP_TGT_NO_SCSIID;
James Smart2e0fef82007-06-17 19:56:36 -05004000 spin_unlock_irq(shost->host_lock);
4001 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
dea31012005-04-17 16:05:31 -05004002 }
James Smartde0c5b32007-04-25 09:52:27 -04004003}
4004
James Smart685f0bf2007-04-25 09:53:08 -04004005static char *
4006lpfc_nlp_state_name(char *buffer, size_t size, int state)
4007{
4008 static char *states[] = {
4009 [NLP_STE_UNUSED_NODE] = "UNUSED",
4010 [NLP_STE_PLOGI_ISSUE] = "PLOGI",
4011 [NLP_STE_ADISC_ISSUE] = "ADISC",
4012 [NLP_STE_REG_LOGIN_ISSUE] = "REGLOGIN",
4013 [NLP_STE_PRLI_ISSUE] = "PRLI",
James Smart086a3452012-08-14 14:25:21 -04004014 [NLP_STE_LOGO_ISSUE] = "LOGO",
James Smart685f0bf2007-04-25 09:53:08 -04004015 [NLP_STE_UNMAPPED_NODE] = "UNMAPPED",
4016 [NLP_STE_MAPPED_NODE] = "MAPPED",
4017 [NLP_STE_NPR_NODE] = "NPR",
4018 };
4019
James Smart311464e2007-08-02 11:10:37 -04004020 if (state < NLP_STE_MAX_STATE && states[state])
James Smart685f0bf2007-04-25 09:53:08 -04004021 strlcpy(buffer, states[state], size);
4022 else
4023 snprintf(buffer, size, "unknown (%d)", state);
4024 return buffer;
4025}
4026
James Smartde0c5b32007-04-25 09:52:27 -04004027void
James Smart2e0fef82007-06-17 19:56:36 -05004028lpfc_nlp_set_state(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
4029 int state)
James Smartde0c5b32007-04-25 09:52:27 -04004030{
James Smart2e0fef82007-06-17 19:56:36 -05004031 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smartde0c5b32007-04-25 09:52:27 -04004032 int old_state = ndlp->nlp_state;
James Smart685f0bf2007-04-25 09:53:08 -04004033 char name1[16], name2[16];
James Smartde0c5b32007-04-25 09:52:27 -04004034
James Smarte8b62012007-08-02 11:10:09 -04004035 lpfc_printf_vlog(vport, KERN_INFO, LOG_NODE,
4036 "0904 NPort state transition x%06x, %s -> %s\n",
4037 ndlp->nlp_DID,
4038 lpfc_nlp_state_name(name1, sizeof(name1), old_state),
4039 lpfc_nlp_state_name(name2, sizeof(name2), state));
James Smart858c9f62007-06-17 19:56:39 -05004040
4041 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_NODE,
4042 "node statechg did:x%x old:%d ste:%d",
4043 ndlp->nlp_DID, old_state, state);
4044
James Smartde0c5b32007-04-25 09:52:27 -04004045 if (old_state == NLP_STE_NPR_NODE &&
James Smartde0c5b32007-04-25 09:52:27 -04004046 state != NLP_STE_NPR_NODE)
James Smart2e0fef82007-06-17 19:56:36 -05004047 lpfc_cancel_retry_delay_tmo(vport, ndlp);
James Smartde0c5b32007-04-25 09:52:27 -04004048 if (old_state == NLP_STE_UNMAPPED_NODE) {
4049 ndlp->nlp_flag &= ~NLP_TGT_NO_SCSIID;
4050 ndlp->nlp_type &= ~NLP_FC_NODE;
4051 }
4052
James Smart685f0bf2007-04-25 09:53:08 -04004053 if (list_empty(&ndlp->nlp_listp)) {
James Smart2e0fef82007-06-17 19:56:36 -05004054 spin_lock_irq(shost->host_lock);
4055 list_add_tail(&ndlp->nlp_listp, &vport->fc_nodes);
4056 spin_unlock_irq(shost->host_lock);
James Smart685f0bf2007-04-25 09:53:08 -04004057 } else if (old_state)
James Smart2e0fef82007-06-17 19:56:36 -05004058 lpfc_nlp_counters(vport, old_state, -1);
James Smartde0c5b32007-04-25 09:52:27 -04004059
4060 ndlp->nlp_state = state;
James Smart2e0fef82007-06-17 19:56:36 -05004061 lpfc_nlp_counters(vport, state, 1);
4062 lpfc_nlp_state_cleanup(vport, ndlp, old_state, state);
James Smartde0c5b32007-04-25 09:52:27 -04004063}
4064
4065void
James Smarte47c9092008-02-08 18:49:26 -05004066lpfc_enqueue_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
4067{
4068 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
4069
4070 if (list_empty(&ndlp->nlp_listp)) {
4071 spin_lock_irq(shost->host_lock);
4072 list_add_tail(&ndlp->nlp_listp, &vport->fc_nodes);
4073 spin_unlock_irq(shost->host_lock);
4074 }
4075}
4076
4077void
James Smart2e0fef82007-06-17 19:56:36 -05004078lpfc_dequeue_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
James Smartde0c5b32007-04-25 09:52:27 -04004079{
James Smart2e0fef82007-06-17 19:56:36 -05004080 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
4081
James Smart0d2b6b82008-06-14 22:52:47 -04004082 lpfc_cancel_retry_delay_tmo(vport, ndlp);
James Smartde0c5b32007-04-25 09:52:27 -04004083 if (ndlp->nlp_state && !list_empty(&ndlp->nlp_listp))
James Smart2e0fef82007-06-17 19:56:36 -05004084 lpfc_nlp_counters(vport, ndlp->nlp_state, -1);
4085 spin_lock_irq(shost->host_lock);
James Smart685f0bf2007-04-25 09:53:08 -04004086 list_del_init(&ndlp->nlp_listp);
James Smart2e0fef82007-06-17 19:56:36 -05004087 spin_unlock_irq(shost->host_lock);
James Smart858c9f62007-06-17 19:56:39 -05004088 lpfc_nlp_state_cleanup(vport, ndlp, ndlp->nlp_state,
James Smarte47c9092008-02-08 18:49:26 -05004089 NLP_STE_UNUSED_NODE);
4090}
4091
Adrian Bunk4d9db012008-02-14 23:24:02 +02004092static void
James Smarte47c9092008-02-08 18:49:26 -05004093lpfc_disable_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
4094{
James Smart0d2b6b82008-06-14 22:52:47 -04004095 lpfc_cancel_retry_delay_tmo(vport, ndlp);
James Smarte47c9092008-02-08 18:49:26 -05004096 if (ndlp->nlp_state && !list_empty(&ndlp->nlp_listp))
4097 lpfc_nlp_counters(vport, ndlp->nlp_state, -1);
4098 lpfc_nlp_state_cleanup(vport, ndlp, ndlp->nlp_state,
4099 NLP_STE_UNUSED_NODE);
4100}
James Smart109f6ed2008-12-04 22:39:08 -05004101/**
James Smart3621a712009-04-06 18:47:14 -04004102 * lpfc_initialize_node - Initialize all fields of node object
James Smart109f6ed2008-12-04 22:39:08 -05004103 * @vport: Pointer to Virtual Port object.
4104 * @ndlp: Pointer to FC node object.
4105 * @did: FC_ID of the node.
James Smarta257bf92009-04-06 18:48:10 -04004106 *
4107 * This function is always called when node object need to be initialized.
4108 * It initializes all the fields of the node object. Although the reference
4109 * to phba from @ndlp can be obtained indirectly through it's reference to
4110 * @vport, a direct reference to phba is taken here by @ndlp. This is due
4111 * to the life-span of the @ndlp might go beyond the existence of @vport as
4112 * the final release of ndlp is determined by its reference count. And, the
4113 * operation on @ndlp needs the reference to phba.
James Smart109f6ed2008-12-04 22:39:08 -05004114 **/
4115static inline void
4116lpfc_initialize_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
4117 uint32_t did)
4118{
4119 INIT_LIST_HEAD(&ndlp->els_retry_evt.evt_listp);
4120 INIT_LIST_HEAD(&ndlp->dev_loss_evt.evt_listp);
4121 init_timer(&ndlp->nlp_delayfunc);
4122 ndlp->nlp_delayfunc.function = lpfc_els_retry_delay;
4123 ndlp->nlp_delayfunc.data = (unsigned long)ndlp;
4124 ndlp->nlp_DID = did;
4125 ndlp->vport = vport;
James Smarta257bf92009-04-06 18:48:10 -04004126 ndlp->phba = vport->phba;
James Smart109f6ed2008-12-04 22:39:08 -05004127 ndlp->nlp_sid = NLP_NO_SID;
4128 kref_init(&ndlp->kref);
4129 NLP_INT_NODE_ACT(ndlp);
4130 atomic_set(&ndlp->cmd_pending, 0);
James Smart7dc517d2010-07-14 15:32:10 -04004131 ndlp->cmd_qdepth = vport->cfg_tgt_queue_depth;
James Smart40426292010-12-15 17:58:10 -05004132 if (vport->phba->sli_rev == LPFC_SLI_REV4)
4133 ndlp->nlp_rpi = lpfc_sli4_alloc_rpi(vport->phba);
James Smart109f6ed2008-12-04 22:39:08 -05004134}
James Smarte47c9092008-02-08 18:49:26 -05004135
4136struct lpfc_nodelist *
4137lpfc_enable_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
4138 int state)
4139{
4140 struct lpfc_hba *phba = vport->phba;
4141 uint32_t did;
4142 unsigned long flags;
4143
4144 if (!ndlp)
4145 return NULL;
4146
4147 spin_lock_irqsave(&phba->ndlp_lock, flags);
4148 /* The ndlp should not be in memory free mode */
4149 if (NLP_CHK_FREE_REQ(ndlp)) {
4150 spin_unlock_irqrestore(&phba->ndlp_lock, flags);
4151 lpfc_printf_vlog(vport, KERN_WARNING, LOG_NODE,
4152 "0277 lpfc_enable_node: ndlp:x%p "
4153 "usgmap:x%x refcnt:%d\n",
4154 (void *)ndlp, ndlp->nlp_usg_map,
4155 atomic_read(&ndlp->kref.refcount));
4156 return NULL;
4157 }
4158 /* The ndlp should not already be in active mode */
4159 if (NLP_CHK_NODE_ACT(ndlp)) {
4160 spin_unlock_irqrestore(&phba->ndlp_lock, flags);
4161 lpfc_printf_vlog(vport, KERN_WARNING, LOG_NODE,
4162 "0278 lpfc_enable_node: ndlp:x%p "
4163 "usgmap:x%x refcnt:%d\n",
4164 (void *)ndlp, ndlp->nlp_usg_map,
4165 atomic_read(&ndlp->kref.refcount));
4166 return NULL;
4167 }
4168
4169 /* Keep the original DID */
4170 did = ndlp->nlp_DID;
4171
4172 /* re-initialize ndlp except of ndlp linked list pointer */
4173 memset((((char *)ndlp) + sizeof (struct list_head)), 0,
4174 sizeof (struct lpfc_nodelist) - sizeof (struct list_head));
James Smart109f6ed2008-12-04 22:39:08 -05004175 lpfc_initialize_node(vport, ndlp, did);
James Smarte47c9092008-02-08 18:49:26 -05004176
4177 spin_unlock_irqrestore(&phba->ndlp_lock, flags);
4178
4179 if (state != NLP_STE_UNUSED_NODE)
4180 lpfc_nlp_set_state(vport, ndlp, state);
4181
4182 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_NODE,
4183 "node enable: did:x%x",
4184 ndlp->nlp_DID, 0, 0);
4185 return ndlp;
James Smartde0c5b32007-04-25 09:52:27 -04004186}
4187
4188void
James Smart2e0fef82007-06-17 19:56:36 -05004189lpfc_drop_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
James Smartde0c5b32007-04-25 09:52:27 -04004190{
James Smart87af33f2007-10-27 13:37:43 -04004191 /*
James Smartfa4066b2008-01-11 01:53:27 -05004192 * Use of lpfc_drop_node and UNUSED list: lpfc_drop_node should
James Smart87af33f2007-10-27 13:37:43 -04004193 * be used if we wish to issue the "last" lpfc_nlp_put() to remove
James Smartfa4066b2008-01-11 01:53:27 -05004194 * the ndlp from the vport. The ndlp marked as UNUSED on the list
4195 * until ALL other outstanding threads have completed. We check
4196 * that the ndlp not already in the UNUSED state before we proceed.
James Smart87af33f2007-10-27 13:37:43 -04004197 */
James Smartfa4066b2008-01-11 01:53:27 -05004198 if (ndlp->nlp_state == NLP_STE_UNUSED_NODE)
4199 return;
James Smart51ef4c22007-08-02 11:10:31 -04004200 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNUSED_NODE);
James Smart1151e3e2011-02-16 12:39:35 -05004201 if (vport->phba->sli_rev == LPFC_SLI_REV4)
4202 lpfc_cleanup_vports_rrqs(vport, ndlp);
James Smart87af33f2007-10-27 13:37:43 -04004203 lpfc_nlp_put(ndlp);
James Smart98c9ea52007-10-27 13:37:33 -04004204 return;
dea31012005-04-17 16:05:31 -05004205}
4206
4207/*
4208 * Start / ReStart rescue timer for Discovery / RSCN handling
4209 */
4210void
James Smart2e0fef82007-06-17 19:56:36 -05004211lpfc_set_disctmo(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05004212{
James Smart2e0fef82007-06-17 19:56:36 -05004213 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
4214 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05004215 uint32_t tmo;
4216
James Smart2e0fef82007-06-17 19:56:36 -05004217 if (vport->port_state == LPFC_LOCAL_CFG_LINK) {
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02004218 /* For FAN, timeout should be greater than edtov */
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004219 tmo = (((phba->fc_edtov + 999) / 1000) + 1);
4220 } else {
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02004221 /* Normal discovery timeout should be > than ELS/CT timeout
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004222 * FC spec states we need 3 * ratov for CT requests
4223 */
4224 tmo = ((phba->fc_ratov * 3) + 3);
4225 }
dea31012005-04-17 16:05:31 -05004226
James Smart858c9f62007-06-17 19:56:39 -05004227
4228 if (!timer_pending(&vport->fc_disctmo)) {
4229 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
4230 "set disc timer: tmo:x%x state:x%x flg:x%x",
4231 tmo, vport->port_state, vport->fc_flag);
4232 }
4233
James Smart2e0fef82007-06-17 19:56:36 -05004234 mod_timer(&vport->fc_disctmo, jiffies + HZ * tmo);
4235 spin_lock_irq(shost->host_lock);
4236 vport->fc_flag |= FC_DISC_TMO;
4237 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05004238
4239 /* Start Discovery Timer state <hba_state> */
James Smarte8b62012007-08-02 11:10:09 -04004240 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
4241 "0247 Start Discovery Timer state x%x "
4242 "Data: x%x x%lx x%x x%x\n",
4243 vport->port_state, tmo,
4244 (unsigned long)&vport->fc_disctmo, vport->fc_plogi_cnt,
4245 vport->fc_adisc_cnt);
dea31012005-04-17 16:05:31 -05004246
4247 return;
4248}
4249
4250/*
4251 * Cancel rescue timer for Discovery / RSCN handling
4252 */
4253int
James Smart2e0fef82007-06-17 19:56:36 -05004254lpfc_can_disctmo(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05004255{
James Smart2e0fef82007-06-17 19:56:36 -05004256 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart2e0fef82007-06-17 19:56:36 -05004257 unsigned long iflags;
4258
James Smart858c9f62007-06-17 19:56:39 -05004259 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
4260 "can disc timer: state:x%x rtry:x%x flg:x%x",
4261 vport->port_state, vport->fc_ns_retry, vport->fc_flag);
4262
dea31012005-04-17 16:05:31 -05004263 /* Turn off discovery timer if its running */
James Smart2e0fef82007-06-17 19:56:36 -05004264 if (vport->fc_flag & FC_DISC_TMO) {
4265 spin_lock_irqsave(shost->host_lock, iflags);
4266 vport->fc_flag &= ~FC_DISC_TMO;
4267 spin_unlock_irqrestore(shost->host_lock, iflags);
4268 del_timer_sync(&vport->fc_disctmo);
4269 spin_lock_irqsave(&vport->work_port_lock, iflags);
4270 vport->work_port_events &= ~WORKER_DISC_TMO;
4271 spin_unlock_irqrestore(&vport->work_port_lock, iflags);
dea31012005-04-17 16:05:31 -05004272 }
4273
4274 /* Cancel Discovery Timer state <hba_state> */
James Smarte8b62012007-08-02 11:10:09 -04004275 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
4276 "0248 Cancel Discovery Timer state x%x "
4277 "Data: x%x x%x x%x\n",
4278 vport->port_state, vport->fc_flag,
4279 vport->fc_plogi_cnt, vport->fc_adisc_cnt);
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004280 return 0;
dea31012005-04-17 16:05:31 -05004281}
4282
4283/*
4284 * Check specified ring for outstanding IOCB on the SLI queue
4285 * Return true if iocb matches the specified nport
4286 */
4287int
James Smart2e0fef82007-06-17 19:56:36 -05004288lpfc_check_sli_ndlp(struct lpfc_hba *phba,
4289 struct lpfc_sli_ring *pring,
4290 struct lpfc_iocbq *iocb,
4291 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05004292{
James Smart2e0fef82007-06-17 19:56:36 -05004293 struct lpfc_sli *psli = &phba->sli;
4294 IOCB_t *icmd = &iocb->iocb;
James Smart92d7f7b2007-06-17 19:56:38 -05004295 struct lpfc_vport *vport = ndlp->vport;
4296
4297 if (iocb->vport != vport)
4298 return 0;
4299
dea31012005-04-17 16:05:31 -05004300 if (pring->ringno == LPFC_ELS_RING) {
4301 switch (icmd->ulpCommand) {
4302 case CMD_GEN_REQUEST64_CR:
James Smart21e9a0a2009-05-22 14:53:21 -04004303 if (iocb->context_un.ndlp == ndlp)
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004304 return 1;
dea31012005-04-17 16:05:31 -05004305 case CMD_ELS_REQUEST64_CR:
James Smart10d4e952006-04-15 11:53:15 -04004306 if (icmd->un.elsreq64.remoteID == ndlp->nlp_DID)
4307 return 1;
dea31012005-04-17 16:05:31 -05004308 case CMD_XMIT_ELS_RSP64_CX:
4309 if (iocb->context1 == (uint8_t *) ndlp)
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004310 return 1;
dea31012005-04-17 16:05:31 -05004311 }
James Smarta4bc3372006-12-02 13:34:16 -05004312 } else if (pring->ringno == psli->extra_ring) {
dea31012005-04-17 16:05:31 -05004313
4314 } else if (pring->ringno == psli->fcp_ring) {
4315 /* Skip match check if waiting to relogin to FCP target */
4316 if ((ndlp->nlp_type & NLP_FCP_TARGET) &&
James Smart92d7f7b2007-06-17 19:56:38 -05004317 (ndlp->nlp_flag & NLP_DELAY_TMO)) {
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004318 return 0;
dea31012005-04-17 16:05:31 -05004319 }
4320 if (icmd->ulpContext == (volatile ushort)ndlp->nlp_rpi) {
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004321 return 1;
dea31012005-04-17 16:05:31 -05004322 }
4323 } else if (pring->ringno == psli->next_ring) {
4324
4325 }
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004326 return 0;
dea31012005-04-17 16:05:31 -05004327}
4328
4329/*
4330 * Free resources / clean up outstanding I/Os
4331 * associated with nlp_rpi in the LPFC_NODELIST entry.
4332 */
4333static int
James Smart2e0fef82007-06-17 19:56:36 -05004334lpfc_no_rpi(struct lpfc_hba *phba, struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05004335{
James Smart2534ba72007-04-25 09:52:20 -04004336 LIST_HEAD(completions);
dea31012005-04-17 16:05:31 -05004337 struct lpfc_sli *psli;
4338 struct lpfc_sli_ring *pring;
4339 struct lpfc_iocbq *iocb, *next_iocb;
James Smart6a9c52c2009-10-02 15:16:51 -04004340 uint32_t i;
dea31012005-04-17 16:05:31 -05004341
James Smart92d7f7b2007-06-17 19:56:38 -05004342 lpfc_fabric_abort_nport(ndlp);
4343
dea31012005-04-17 16:05:31 -05004344 /*
4345 * Everything that matches on txcmplq will be returned
4346 * by firmware with a no rpi error.
4347 */
4348 psli = &phba->sli;
James Smart40426292010-12-15 17:58:10 -05004349 if (ndlp->nlp_flag & NLP_RPI_REGISTERED) {
dea31012005-04-17 16:05:31 -05004350 /* Now process each ring */
4351 for (i = 0; i < psli->num_rings; i++) {
4352 pring = &psli->ring[i];
4353
James Smart2e0fef82007-06-17 19:56:36 -05004354 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05004355 list_for_each_entry_safe(iocb, next_iocb, &pring->txq,
James Smart2e0fef82007-06-17 19:56:36 -05004356 list) {
dea31012005-04-17 16:05:31 -05004357 /*
4358 * Check to see if iocb matches the nport we are
4359 * looking for
4360 */
James Smart92d7f7b2007-06-17 19:56:38 -05004361 if ((lpfc_check_sli_ndlp(phba, pring, iocb,
4362 ndlp))) {
dea31012005-04-17 16:05:31 -05004363 /* It matches, so deque and call compl
4364 with an error */
James Smart2534ba72007-04-25 09:52:20 -04004365 list_move_tail(&iocb->list,
4366 &completions);
dea31012005-04-17 16:05:31 -05004367 }
4368 }
James Smart2e0fef82007-06-17 19:56:36 -05004369 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05004370 }
4371 }
James Smart2534ba72007-04-25 09:52:20 -04004372
James Smarta257bf92009-04-06 18:48:10 -04004373 /* Cancel all the IOCBs from the completions list */
4374 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
4375 IOERR_SLI_ABORTED);
James Smart2534ba72007-04-25 09:52:20 -04004376
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004377 return 0;
dea31012005-04-17 16:05:31 -05004378}
4379
James Smart086a3452012-08-14 14:25:21 -04004380/**
4381 * lpfc_nlp_logo_unreg - Unreg mailbox completion handler before LOGO
4382 * @phba: Pointer to HBA context object.
4383 * @pmb: Pointer to mailbox object.
4384 *
4385 * This function will issue an ELS LOGO command after completing
4386 * the UNREG_RPI.
4387 **/
4388void
4389lpfc_nlp_logo_unreg(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
4390{
4391 struct lpfc_vport *vport = pmb->vport;
4392 struct lpfc_nodelist *ndlp;
4393
4394 ndlp = (struct lpfc_nodelist *)(pmb->context1);
4395 if (!ndlp)
4396 return;
4397 lpfc_issue_els_logo(vport, ndlp, 0);
4398}
4399
dea31012005-04-17 16:05:31 -05004400/*
4401 * Free rpi associated with LPFC_NODELIST entry.
4402 * This routine is called from lpfc_freenode(), when we are removing
4403 * a LPFC_NODELIST entry. It is also called if the driver initiates a
4404 * LOGO that completes successfully, and we are waiting to PLOGI back
4405 * to the remote NPort. In addition, it is called after we receive
4406 * and unsolicated ELS cmd, send back a rsp, the rsp completes and
4407 * we are waiting to PLOGI back to the remote NPort.
4408 */
4409int
James Smart2e0fef82007-06-17 19:56:36 -05004410lpfc_unreg_rpi(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05004411{
James Smart2e0fef82007-06-17 19:56:36 -05004412 struct lpfc_hba *phba = vport->phba;
4413 LPFC_MBOXQ_t *mbox;
dea31012005-04-17 16:05:31 -05004414 int rc;
James Smart6d368e52011-05-24 11:44:12 -04004415 uint16_t rpi;
dea31012005-04-17 16:05:31 -05004416
James Smart40426292010-12-15 17:58:10 -05004417 if (ndlp->nlp_flag & NLP_RPI_REGISTERED) {
James Smart2e0fef82007-06-17 19:56:36 -05004418 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4419 if (mbox) {
James Smart6d368e52011-05-24 11:44:12 -04004420 /* SLI4 ports require the physical rpi value. */
4421 rpi = ndlp->nlp_rpi;
4422 if (phba->sli_rev == LPFC_SLI_REV4)
4423 rpi = phba->sli4_hba.rpi_ids[ndlp->nlp_rpi];
James Smart086a3452012-08-14 14:25:21 -04004424
James Smart6d368e52011-05-24 11:44:12 -04004425 lpfc_unreg_login(phba, vport->vpi, rpi, mbox);
James Smarted957682007-06-17 19:56:37 -05004426 mbox->vport = vport;
James Smart086a3452012-08-14 14:25:21 -04004427 if (ndlp->nlp_flag & NLP_ISSUE_LOGO) {
4428 mbox->context1 = ndlp;
4429 mbox->mbox_cmpl = lpfc_nlp_logo_unreg;
4430 } else {
4431 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
4432 }
4433
James Smart0b727fe2007-10-27 13:37:25 -04004434 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
dea31012005-04-17 16:05:31 -05004435 if (rc == MBX_NOT_FINISHED)
James Smart2e0fef82007-06-17 19:56:36 -05004436 mempool_free(mbox, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -05004437 }
dea31012005-04-17 16:05:31 -05004438 lpfc_no_rpi(phba, ndlp);
James Smartd7c47992010-06-08 18:31:54 -04004439
James Smart40426292010-12-15 17:58:10 -05004440 if (phba->sli_rev != LPFC_SLI_REV4)
4441 ndlp->nlp_rpi = 0;
4442 ndlp->nlp_flag &= ~NLP_RPI_REGISTERED;
James Smart0c287582009-06-10 17:22:56 -04004443 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
dea31012005-04-17 16:05:31 -05004444 return 1;
4445 }
4446 return 0;
4447}
4448
James Smartecfd03c2010-02-12 14:41:27 -05004449/**
4450 * lpfc_unreg_hba_rpis - Unregister rpis registered to the hba.
4451 * @phba: pointer to lpfc hba data structure.
4452 *
4453 * This routine is invoked to unregister all the currently registered RPIs
4454 * to the HBA.
4455 **/
4456void
4457lpfc_unreg_hba_rpis(struct lpfc_hba *phba)
4458{
4459 struct lpfc_vport **vports;
4460 struct lpfc_nodelist *ndlp;
4461 struct Scsi_Host *shost;
4462 int i;
4463
4464 vports = lpfc_create_vport_work_array(phba);
James Smart63e801c2010-11-20 23:14:19 -05004465 if (!vports) {
4466 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY,
4467 "2884 Vport array allocation failed \n");
4468 return;
4469 }
James Smartecfd03c2010-02-12 14:41:27 -05004470 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
4471 shost = lpfc_shost_from_vport(vports[i]);
4472 spin_lock_irq(shost->host_lock);
4473 list_for_each_entry(ndlp, &vports[i]->fc_nodes, nlp_listp) {
James Smart40426292010-12-15 17:58:10 -05004474 if (ndlp->nlp_flag & NLP_RPI_REGISTERED) {
James Smart0c9ab6f2010-02-26 14:15:57 -05004475 /* The mempool_alloc might sleep */
4476 spin_unlock_irq(shost->host_lock);
James Smartecfd03c2010-02-12 14:41:27 -05004477 lpfc_unreg_rpi(vports[i], ndlp);
James Smart0c9ab6f2010-02-26 14:15:57 -05004478 spin_lock_irq(shost->host_lock);
4479 }
James Smartecfd03c2010-02-12 14:41:27 -05004480 }
4481 spin_unlock_irq(shost->host_lock);
4482 }
4483 lpfc_destroy_vport_work_array(phba, vports);
4484}
4485
James Smart92d7f7b2007-06-17 19:56:38 -05004486void
4487lpfc_unreg_all_rpis(struct lpfc_vport *vport)
4488{
4489 struct lpfc_hba *phba = vport->phba;
4490 LPFC_MBOXQ_t *mbox;
4491 int rc;
4492
James Smart5af5eee2010-10-22 11:06:38 -04004493 if (phba->sli_rev == LPFC_SLI_REV4) {
4494 lpfc_sli4_unreg_all_rpis(vport);
4495 return;
4496 }
4497
James Smart92d7f7b2007-06-17 19:56:38 -05004498 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4499 if (mbox) {
James Smart6d368e52011-05-24 11:44:12 -04004500 lpfc_unreg_login(phba, vport->vpi, LPFC_UNREG_ALL_RPIS_VPORT,
4501 mbox);
James Smart92d7f7b2007-06-17 19:56:38 -05004502 mbox->vport = vport;
4503 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
James Smart09372822008-01-11 01:52:54 -05004504 mbox->context1 = NULL;
4505 rc = lpfc_sli_issue_mbox_wait(phba, mbox, LPFC_MBOX_TMO);
James Smarta257bf92009-04-06 18:48:10 -04004506 if (rc != MBX_TIMEOUT)
James Smart92d7f7b2007-06-17 19:56:38 -05004507 mempool_free(mbox, phba->mbox_mem_pool);
James Smarta257bf92009-04-06 18:48:10 -04004508
4509 if ((rc == MBX_TIMEOUT) || (rc == MBX_NOT_FINISHED))
4510 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX | LOG_VPORT,
4511 "1836 Could not issue "
4512 "unreg_login(all_rpis) status %d\n", rc);
James Smart92d7f7b2007-06-17 19:56:38 -05004513 }
4514}
4515
4516void
4517lpfc_unreg_default_rpis(struct lpfc_vport *vport)
4518{
4519 struct lpfc_hba *phba = vport->phba;
4520 LPFC_MBOXQ_t *mbox;
4521 int rc;
4522
4523 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4524 if (mbox) {
James Smart6d368e52011-05-24 11:44:12 -04004525 lpfc_unreg_did(phba, vport->vpi, LPFC_UNREG_ALL_DFLT_RPIS,
4526 mbox);
James Smart92d7f7b2007-06-17 19:56:38 -05004527 mbox->vport = vport;
4528 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
James Smart09372822008-01-11 01:52:54 -05004529 mbox->context1 = NULL;
4530 rc = lpfc_sli_issue_mbox_wait(phba, mbox, LPFC_MBOX_TMO);
James Smarta257bf92009-04-06 18:48:10 -04004531 if (rc != MBX_TIMEOUT)
4532 mempool_free(mbox, phba->mbox_mem_pool);
4533
4534 if ((rc == MBX_TIMEOUT) || (rc == MBX_NOT_FINISHED))
James Smarte8b62012007-08-02 11:10:09 -04004535 lpfc_printf_vlog(vport, KERN_ERR, LOG_MBOX | LOG_VPORT,
4536 "1815 Could not issue "
James Smarta257bf92009-04-06 18:48:10 -04004537 "unreg_did (default rpis) status %d\n",
4538 rc);
James Smart92d7f7b2007-06-17 19:56:38 -05004539 }
4540}
4541
dea31012005-04-17 16:05:31 -05004542/*
4543 * Free resources associated with LPFC_NODELIST entry
4544 * so it can be freed.
4545 */
4546static int
James Smart2e0fef82007-06-17 19:56:36 -05004547lpfc_cleanup_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05004548{
James Smart2e0fef82007-06-17 19:56:36 -05004549 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
4550 struct lpfc_hba *phba = vport->phba;
4551 LPFC_MBOXQ_t *mb, *nextmb;
dea31012005-04-17 16:05:31 -05004552 struct lpfc_dmabuf *mp;
dea31012005-04-17 16:05:31 -05004553
4554 /* Cleanup node for NPort <nlp_DID> */
James Smarte8b62012007-08-02 11:10:09 -04004555 lpfc_printf_vlog(vport, KERN_INFO, LOG_NODE,
4556 "0900 Cleanup node for NPort x%x "
4557 "Data: x%x x%x x%x\n",
4558 ndlp->nlp_DID, ndlp->nlp_flag,
4559 ndlp->nlp_state, ndlp->nlp_rpi);
James Smarte47c9092008-02-08 18:49:26 -05004560 if (NLP_CHK_FREE_REQ(ndlp)) {
4561 lpfc_printf_vlog(vport, KERN_WARNING, LOG_NODE,
4562 "0280 lpfc_cleanup_node: ndlp:x%p "
4563 "usgmap:x%x refcnt:%d\n",
4564 (void *)ndlp, ndlp->nlp_usg_map,
4565 atomic_read(&ndlp->kref.refcount));
4566 lpfc_dequeue_node(vport, ndlp);
4567 } else {
4568 lpfc_printf_vlog(vport, KERN_WARNING, LOG_NODE,
4569 "0281 lpfc_cleanup_node: ndlp:x%p "
4570 "usgmap:x%x refcnt:%d\n",
4571 (void *)ndlp, ndlp->nlp_usg_map,
4572 atomic_read(&ndlp->kref.refcount));
4573 lpfc_disable_node(vport, ndlp);
4574 }
dea31012005-04-17 16:05:31 -05004575
James Smart086a3452012-08-14 14:25:21 -04004576
4577 /* Don't need to clean up REG_LOGIN64 cmds for Default RPI cleanup */
4578
dea31012005-04-17 16:05:31 -05004579 /* cleanup any ndlp on mbox q waiting for reglogin cmpl */
4580 if ((mb = phba->sli.mbox_active)) {
James Smart04c68492009-05-22 14:52:52 -04004581 if ((mb->u.mb.mbxCommand == MBX_REG_LOGIN64) &&
James Smart086a3452012-08-14 14:25:21 -04004582 !(mb->mbox_flag & LPFC_MBX_IMED_UNREG) &&
dea31012005-04-17 16:05:31 -05004583 (ndlp == (struct lpfc_nodelist *) mb->context2)) {
4584 mb->context2 = NULL;
4585 mb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
4586 }
4587 }
James Smart33ccf8d2006-08-17 11:57:58 -04004588
James Smart2e0fef82007-06-17 19:56:36 -05004589 spin_lock_irq(&phba->hbalock);
James Smart5ac6b302010-10-22 11:05:36 -04004590 /* Cleanup REG_LOGIN completions which are not yet processed */
4591 list_for_each_entry(mb, &phba->sli.mboxq_cmpl, list) {
4592 if ((mb->u.mb.mbxCommand != MBX_REG_LOGIN64) ||
James Smart086a3452012-08-14 14:25:21 -04004593 (mb->mbox_flag & LPFC_MBX_IMED_UNREG) ||
James Smart5ac6b302010-10-22 11:05:36 -04004594 (ndlp != (struct lpfc_nodelist *) mb->context2))
4595 continue;
4596
4597 mb->context2 = NULL;
4598 mb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
4599 }
4600
dea31012005-04-17 16:05:31 -05004601 list_for_each_entry_safe(mb, nextmb, &phba->sli.mboxq, list) {
James Smart04c68492009-05-22 14:52:52 -04004602 if ((mb->u.mb.mbxCommand == MBX_REG_LOGIN64) &&
James Smart086a3452012-08-14 14:25:21 -04004603 !(mb->mbox_flag & LPFC_MBX_IMED_UNREG) &&
James Smart92d7f7b2007-06-17 19:56:38 -05004604 (ndlp == (struct lpfc_nodelist *) mb->context2)) {
dea31012005-04-17 16:05:31 -05004605 mp = (struct lpfc_dmabuf *) (mb->context1);
4606 if (mp) {
James Smart2e0fef82007-06-17 19:56:36 -05004607 __lpfc_mbuf_free(phba, mp->virt, mp->phys);
dea31012005-04-17 16:05:31 -05004608 kfree(mp);
4609 }
4610 list_del(&mb->list);
4611 mempool_free(mb, phba->mbox_mem_pool);
James Smarte47c9092008-02-08 18:49:26 -05004612 /* We shall not invoke the lpfc_nlp_put to decrement
4613 * the ndlp reference count as we are in the process
4614 * of lpfc_nlp_release.
4615 */
dea31012005-04-17 16:05:31 -05004616 }
4617 }
James Smart2e0fef82007-06-17 19:56:36 -05004618 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05004619
James Smarte47c9092008-02-08 18:49:26 -05004620 lpfc_els_abort(phba, ndlp);
4621
James Smart2e0fef82007-06-17 19:56:36 -05004622 spin_lock_irq(shost->host_lock);
James Smartc01f3202006-08-18 17:47:08 -04004623 ndlp->nlp_flag &= ~NLP_DELAY_TMO;
James Smart2e0fef82007-06-17 19:56:36 -05004624 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05004625
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05004626 ndlp->nlp_last_elscmd = 0;
dea31012005-04-17 16:05:31 -05004627 del_timer_sync(&ndlp->nlp_delayfunc);
4628
James Smart0d2b6b82008-06-14 22:52:47 -04004629 list_del_init(&ndlp->els_retry_evt.evt_listp);
4630 list_del_init(&ndlp->dev_loss_evt.evt_listp);
James Smart1151e3e2011-02-16 12:39:35 -05004631 lpfc_cleanup_vports_rrqs(vport, ndlp);
James Smart2e0fef82007-06-17 19:56:36 -05004632 lpfc_unreg_rpi(vport, ndlp);
dea31012005-04-17 16:05:31 -05004633
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004634 return 0;
dea31012005-04-17 16:05:31 -05004635}
4636
4637/*
4638 * Check to see if we can free the nlp back to the freelist.
4639 * If we are in the middle of using the nlp in the discovery state
4640 * machine, defer the free till we reach the end of the state machine.
4641 */
James Smart329f9bc2007-04-25 09:53:01 -04004642static void
James Smart2e0fef82007-06-17 19:56:36 -05004643lpfc_nlp_remove(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05004644{
James Smarta8adb832007-10-27 13:37:53 -04004645 struct lpfc_hba *phba = vport->phba;
James Smart1dcb58e2007-04-25 09:51:30 -04004646 struct lpfc_rport_data *rdata;
James Smarta8adb832007-10-27 13:37:53 -04004647 LPFC_MBOXQ_t *mbox;
4648 int rc;
dea31012005-04-17 16:05:31 -05004649
James Smart0d2b6b82008-06-14 22:52:47 -04004650 lpfc_cancel_retry_delay_tmo(vport, ndlp);
James Smart21e9a0a2009-05-22 14:53:21 -04004651 if ((ndlp->nlp_flag & NLP_DEFER_RM) &&
James Smart40426292010-12-15 17:58:10 -05004652 !(ndlp->nlp_flag & NLP_REG_LOGIN_SEND) &&
4653 !(ndlp->nlp_flag & NLP_RPI_REGISTERED)) {
James Smarta8adb832007-10-27 13:37:53 -04004654 /* For this case we need to cleanup the default rpi
4655 * allocated by the firmware.
4656 */
4657 if ((mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL))
4658 != NULL) {
James Smart21e9a0a2009-05-22 14:53:21 -04004659 rc = lpfc_reg_rpi(phba, vport->vpi, ndlp->nlp_DID,
James Smart40426292010-12-15 17:58:10 -05004660 (uint8_t *) &vport->fc_sparam, mbox, ndlp->nlp_rpi);
James Smarta8adb832007-10-27 13:37:53 -04004661 if (rc) {
4662 mempool_free(mbox, phba->mbox_mem_pool);
4663 }
4664 else {
4665 mbox->mbox_flag |= LPFC_MBX_IMED_UNREG;
4666 mbox->mbox_cmpl = lpfc_mbx_cmpl_dflt_rpi;
4667 mbox->vport = vport;
James Smart086a3452012-08-14 14:25:21 -04004668 mbox->context2 = ndlp;
James Smarta8adb832007-10-27 13:37:53 -04004669 rc =lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
4670 if (rc == MBX_NOT_FINISHED) {
4671 mempool_free(mbox, phba->mbox_mem_pool);
4672 }
4673 }
4674 }
4675 }
James Smart2e0fef82007-06-17 19:56:36 -05004676 lpfc_cleanup_node(vport, ndlp);
James Smart1dcb58e2007-04-25 09:51:30 -04004677
James Smart2e0fef82007-06-17 19:56:36 -05004678 /*
James Smart92d7f7b2007-06-17 19:56:38 -05004679 * We can get here with a non-NULL ndlp->rport because when we
4680 * unregister a rport we don't break the rport/node linkage. So if we
4681 * do, make sure we don't leaving any dangling pointers behind.
James Smart2e0fef82007-06-17 19:56:36 -05004682 */
James Smart92d7f7b2007-06-17 19:56:38 -05004683 if (ndlp->rport) {
James Smart329f9bc2007-04-25 09:53:01 -04004684 rdata = ndlp->rport->dd_data;
4685 rdata->pnode = NULL;
4686 ndlp->rport = NULL;
dea31012005-04-17 16:05:31 -05004687 }
dea31012005-04-17 16:05:31 -05004688}
4689
4690static int
James Smart2e0fef82007-06-17 19:56:36 -05004691lpfc_matchdid(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
4692 uint32_t did)
dea31012005-04-17 16:05:31 -05004693{
James Smart2e0fef82007-06-17 19:56:36 -05004694 D_ID mydid, ndlpdid, matchdid;
dea31012005-04-17 16:05:31 -05004695
4696 if (did == Bcast_DID)
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004697 return 0;
dea31012005-04-17 16:05:31 -05004698
dea31012005-04-17 16:05:31 -05004699 /* First check for Direct match */
4700 if (ndlp->nlp_DID == did)
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004701 return 1;
dea31012005-04-17 16:05:31 -05004702
4703 /* Next check for area/domain identically equals 0 match */
James Smart2e0fef82007-06-17 19:56:36 -05004704 mydid.un.word = vport->fc_myDID;
dea31012005-04-17 16:05:31 -05004705 if ((mydid.un.b.domain == 0) && (mydid.un.b.area == 0)) {
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004706 return 0;
dea31012005-04-17 16:05:31 -05004707 }
4708
4709 matchdid.un.word = did;
4710 ndlpdid.un.word = ndlp->nlp_DID;
4711 if (matchdid.un.b.id == ndlpdid.un.b.id) {
4712 if ((mydid.un.b.domain == matchdid.un.b.domain) &&
4713 (mydid.un.b.area == matchdid.un.b.area)) {
4714 if ((ndlpdid.un.b.domain == 0) &&
4715 (ndlpdid.un.b.area == 0)) {
4716 if (ndlpdid.un.b.id)
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004717 return 1;
dea31012005-04-17 16:05:31 -05004718 }
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004719 return 0;
dea31012005-04-17 16:05:31 -05004720 }
4721
4722 matchdid.un.word = ndlp->nlp_DID;
4723 if ((mydid.un.b.domain == ndlpdid.un.b.domain) &&
4724 (mydid.un.b.area == ndlpdid.un.b.area)) {
4725 if ((matchdid.un.b.domain == 0) &&
4726 (matchdid.un.b.area == 0)) {
4727 if (matchdid.un.b.id)
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004728 return 1;
dea31012005-04-17 16:05:31 -05004729 }
4730 }
4731 }
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004732 return 0;
dea31012005-04-17 16:05:31 -05004733}
4734
James Smart685f0bf2007-04-25 09:53:08 -04004735/* Search for a nodelist entry */
James Smart2e0fef82007-06-17 19:56:36 -05004736static struct lpfc_nodelist *
4737__lpfc_findnode_did(struct lpfc_vport *vport, uint32_t did)
dea31012005-04-17 16:05:31 -05004738{
James Smart2fb9bd82006-12-02 13:33:57 -05004739 struct lpfc_nodelist *ndlp;
dea31012005-04-17 16:05:31 -05004740 uint32_t data1;
4741
James Smart2e0fef82007-06-17 19:56:36 -05004742 list_for_each_entry(ndlp, &vport->fc_nodes, nlp_listp) {
4743 if (lpfc_matchdid(vport, ndlp, did)) {
James Smart685f0bf2007-04-25 09:53:08 -04004744 data1 = (((uint32_t) ndlp->nlp_state << 24) |
4745 ((uint32_t) ndlp->nlp_xri << 16) |
4746 ((uint32_t) ndlp->nlp_type << 8) |
4747 ((uint32_t) ndlp->nlp_rpi & 0xff));
James Smarte8b62012007-08-02 11:10:09 -04004748 lpfc_printf_vlog(vport, KERN_INFO, LOG_NODE,
4749 "0929 FIND node DID "
4750 "Data: x%p x%x x%x x%x\n",
4751 ndlp, ndlp->nlp_DID,
4752 ndlp->nlp_flag, data1);
James Smart685f0bf2007-04-25 09:53:08 -04004753 return ndlp;
dea31012005-04-17 16:05:31 -05004754 }
4755 }
Jamie Wellnitz66a9ed62006-02-28 22:33:10 -05004756
dea31012005-04-17 16:05:31 -05004757 /* FIND node did <did> NOT FOUND */
James Smarte8b62012007-08-02 11:10:09 -04004758 lpfc_printf_vlog(vport, KERN_INFO, LOG_NODE,
4759 "0932 FIND node did x%x NOT FOUND.\n", did);
dea31012005-04-17 16:05:31 -05004760 return NULL;
4761}
4762
4763struct lpfc_nodelist *
James Smart2e0fef82007-06-17 19:56:36 -05004764lpfc_findnode_did(struct lpfc_vport *vport, uint32_t did)
dea31012005-04-17 16:05:31 -05004765{
James Smart2e0fef82007-06-17 19:56:36 -05004766 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05004767 struct lpfc_nodelist *ndlp;
James Smartfedd3b72011-02-16 12:39:24 -05004768 unsigned long iflags;
dea31012005-04-17 16:05:31 -05004769
James Smartfedd3b72011-02-16 12:39:24 -05004770 spin_lock_irqsave(shost->host_lock, iflags);
James Smart2e0fef82007-06-17 19:56:36 -05004771 ndlp = __lpfc_findnode_did(vport, did);
James Smartfedd3b72011-02-16 12:39:24 -05004772 spin_unlock_irqrestore(shost->host_lock, iflags);
James Smart2e0fef82007-06-17 19:56:36 -05004773 return ndlp;
4774}
4775
4776struct lpfc_nodelist *
4777lpfc_setup_disc_node(struct lpfc_vport *vport, uint32_t did)
4778{
4779 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
4780 struct lpfc_nodelist *ndlp;
4781
4782 ndlp = lpfc_findnode_did(vport, did);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004783 if (!ndlp) {
James Smart2e0fef82007-06-17 19:56:36 -05004784 if ((vport->fc_flag & FC_RSCN_MODE) != 0 &&
4785 lpfc_rscn_payload_check(vport, did) == 0)
dea31012005-04-17 16:05:31 -05004786 return NULL;
4787 ndlp = (struct lpfc_nodelist *)
James Smart2e0fef82007-06-17 19:56:36 -05004788 mempool_alloc(vport->phba->nlp_mem_pool, GFP_KERNEL);
dea31012005-04-17 16:05:31 -05004789 if (!ndlp)
4790 return NULL;
James Smart2e0fef82007-06-17 19:56:36 -05004791 lpfc_nlp_init(vport, ndlp, did);
4792 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
4793 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05004794 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
James Smart2e0fef82007-06-17 19:56:36 -05004795 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05004796 return ndlp;
James Smarte47c9092008-02-08 18:49:26 -05004797 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
4798 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_NPR_NODE);
4799 if (!ndlp)
4800 return NULL;
4801 spin_lock_irq(shost->host_lock);
4802 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
4803 spin_unlock_irq(shost->host_lock);
4804 return ndlp;
dea31012005-04-17 16:05:31 -05004805 }
James Smarte47c9092008-02-08 18:49:26 -05004806
James Smart58da1ff2008-04-07 10:15:56 -04004807 if ((vport->fc_flag & FC_RSCN_MODE) &&
4808 !(vport->fc_flag & FC_NDISC_ACTIVE)) {
James Smart2e0fef82007-06-17 19:56:36 -05004809 if (lpfc_rscn_payload_check(vport, did)) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004810 /* If we've already received a PLOGI from this NPort
James Smart87af33f2007-10-27 13:37:43 -04004811 * we don't need to try to discover it again.
4812 */
4813 if (ndlp->nlp_flag & NLP_RCV_PLOGI)
4814 return NULL;
4815
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05004816 /* Since this node is marked for discovery,
4817 * delay timeout is not needed.
4818 */
James Smart0d2b6b82008-06-14 22:52:47 -04004819 lpfc_cancel_retry_delay_tmo(vport, ndlp);
James Smarta257bf92009-04-06 18:48:10 -04004820 spin_lock_irq(shost->host_lock);
4821 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
4822 spin_unlock_irq(shost->host_lock);
James Smart071fbd3d2006-04-15 11:53:20 -04004823 } else
dea31012005-04-17 16:05:31 -05004824 ndlp = NULL;
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05004825 } else {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004826 /* If we've already received a PLOGI from this NPort,
James Smart87af33f2007-10-27 13:37:43 -04004827 * or we are already in the process of discovery on it,
4828 * we don't need to try to discover it again.
4829 */
James Smart685f0bf2007-04-25 09:53:08 -04004830 if (ndlp->nlp_state == NLP_STE_ADISC_ISSUE ||
James Smart87af33f2007-10-27 13:37:43 -04004831 ndlp->nlp_state == NLP_STE_PLOGI_ISSUE ||
4832 ndlp->nlp_flag & NLP_RCV_PLOGI)
dea31012005-04-17 16:05:31 -05004833 return NULL;
James Smart2e0fef82007-06-17 19:56:36 -05004834 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
4835 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05004836 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
James Smart2e0fef82007-06-17 19:56:36 -05004837 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05004838 }
4839 return ndlp;
4840}
4841
4842/* Build a list of nodes to discover based on the loopmap */
4843void
James Smart2e0fef82007-06-17 19:56:36 -05004844lpfc_disc_list_loopmap(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05004845{
James Smart2e0fef82007-06-17 19:56:36 -05004846 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05004847 int j;
4848 uint32_t alpa, index;
4849
James Smart2e0fef82007-06-17 19:56:36 -05004850 if (!lpfc_is_link_up(phba))
dea31012005-04-17 16:05:31 -05004851 return;
James Smart2e0fef82007-06-17 19:56:36 -05004852
James Smart76a95d72010-11-20 23:11:48 -05004853 if (phba->fc_topology != LPFC_TOPOLOGY_LOOP)
dea31012005-04-17 16:05:31 -05004854 return;
dea31012005-04-17 16:05:31 -05004855
4856 /* Check for loop map present or not */
4857 if (phba->alpa_map[0]) {
4858 for (j = 1; j <= phba->alpa_map[0]; j++) {
4859 alpa = phba->alpa_map[j];
James Smart2e0fef82007-06-17 19:56:36 -05004860 if (((vport->fc_myDID & 0xff) == alpa) || (alpa == 0))
dea31012005-04-17 16:05:31 -05004861 continue;
James Smart2e0fef82007-06-17 19:56:36 -05004862 lpfc_setup_disc_node(vport, alpa);
dea31012005-04-17 16:05:31 -05004863 }
4864 } else {
4865 /* No alpamap, so try all alpa's */
4866 for (j = 0; j < FC_MAXLOOP; j++) {
4867 /* If cfg_scan_down is set, start from highest
4868 * ALPA (0xef) to lowest (0x1).
4869 */
James Smart3de2a652007-08-02 11:09:59 -04004870 if (vport->cfg_scan_down)
dea31012005-04-17 16:05:31 -05004871 index = j;
4872 else
4873 index = FC_MAXLOOP - j - 1;
4874 alpa = lpfcAlpaArray[index];
James Smart2e0fef82007-06-17 19:56:36 -05004875 if ((vport->fc_myDID & 0xff) == alpa)
dea31012005-04-17 16:05:31 -05004876 continue;
James Smart2e0fef82007-06-17 19:56:36 -05004877 lpfc_setup_disc_node(vport, alpa);
dea31012005-04-17 16:05:31 -05004878 }
4879 }
4880 return;
4881}
4882
dea31012005-04-17 16:05:31 -05004883void
James Smart2e0fef82007-06-17 19:56:36 -05004884lpfc_issue_clear_la(struct lpfc_hba *phba, struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05004885{
dea31012005-04-17 16:05:31 -05004886 LPFC_MBOXQ_t *mbox;
James Smart2e0fef82007-06-17 19:56:36 -05004887 struct lpfc_sli *psli = &phba->sli;
4888 struct lpfc_sli_ring *extra_ring = &psli->ring[psli->extra_ring];
4889 struct lpfc_sli_ring *fcp_ring = &psli->ring[psli->fcp_ring];
4890 struct lpfc_sli_ring *next_ring = &psli->ring[psli->next_ring];
4891 int rc;
4892
James Smart92d7f7b2007-06-17 19:56:38 -05004893 /*
4894 * if it's not a physical port or if we already send
4895 * clear_la then don't send it.
4896 */
4897 if ((phba->link_state >= LPFC_CLEAR_LA) ||
James Smartda0436e2009-05-22 14:51:39 -04004898 (vport->port_type != LPFC_PHYSICAL_PORT) ||
4899 (phba->sli_rev == LPFC_SLI_REV4))
James Smart92d7f7b2007-06-17 19:56:38 -05004900 return;
4901
James Smart2e0fef82007-06-17 19:56:36 -05004902 /* Link up discovery */
4903 if ((mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL)) != NULL) {
4904 phba->link_state = LPFC_CLEAR_LA;
4905 lpfc_clear_la(phba, mbox);
4906 mbox->mbox_cmpl = lpfc_mbx_cmpl_clear_la;
4907 mbox->vport = vport;
James Smart0b727fe2007-10-27 13:37:25 -04004908 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
James Smart2e0fef82007-06-17 19:56:36 -05004909 if (rc == MBX_NOT_FINISHED) {
4910 mempool_free(mbox, phba->mbox_mem_pool);
4911 lpfc_disc_flush_list(vport);
4912 extra_ring->flag &= ~LPFC_STOP_IOCB_EVENT;
4913 fcp_ring->flag &= ~LPFC_STOP_IOCB_EVENT;
4914 next_ring->flag &= ~LPFC_STOP_IOCB_EVENT;
James Smart92d7f7b2007-06-17 19:56:38 -05004915 phba->link_state = LPFC_HBA_ERROR;
4916 }
4917 }
4918}
4919
4920/* Reg_vpi to tell firmware to resume normal operations */
4921void
4922lpfc_issue_reg_vpi(struct lpfc_hba *phba, struct lpfc_vport *vport)
4923{
4924 LPFC_MBOXQ_t *regvpimbox;
4925
4926 regvpimbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4927 if (regvpimbox) {
James Smartda0436e2009-05-22 14:51:39 -04004928 lpfc_reg_vpi(vport, regvpimbox);
James Smart92d7f7b2007-06-17 19:56:38 -05004929 regvpimbox->mbox_cmpl = lpfc_mbx_cmpl_reg_vpi;
4930 regvpimbox->vport = vport;
James Smart0b727fe2007-10-27 13:37:25 -04004931 if (lpfc_sli_issue_mbox(phba, regvpimbox, MBX_NOWAIT)
James Smart92d7f7b2007-06-17 19:56:38 -05004932 == MBX_NOT_FINISHED) {
4933 mempool_free(regvpimbox, phba->mbox_mem_pool);
James Smart2e0fef82007-06-17 19:56:36 -05004934 }
4935 }
4936}
4937
4938/* Start Link up / RSCN discovery on NPR nodes */
4939void
4940lpfc_disc_start(struct lpfc_vport *vport)
4941{
4942 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
4943 struct lpfc_hba *phba = vport->phba;
James Smart685f0bf2007-04-25 09:53:08 -04004944 uint32_t num_sent;
dea31012005-04-17 16:05:31 -05004945 uint32_t clear_la_pending;
James Smart685f0bf2007-04-25 09:53:08 -04004946 int did_changed;
dea31012005-04-17 16:05:31 -05004947
James Smart2e0fef82007-06-17 19:56:36 -05004948 if (!lpfc_is_link_up(phba))
dea31012005-04-17 16:05:31 -05004949 return;
James Smart2e0fef82007-06-17 19:56:36 -05004950
4951 if (phba->link_state == LPFC_CLEAR_LA)
dea31012005-04-17 16:05:31 -05004952 clear_la_pending = 1;
4953 else
4954 clear_la_pending = 0;
4955
James Smart2e0fef82007-06-17 19:56:36 -05004956 if (vport->port_state < LPFC_VPORT_READY)
4957 vport->port_state = LPFC_DISC_AUTH;
dea31012005-04-17 16:05:31 -05004958
James Smart2e0fef82007-06-17 19:56:36 -05004959 lpfc_set_disctmo(vport);
4960
4961 if (vport->fc_prevDID == vport->fc_myDID)
dea31012005-04-17 16:05:31 -05004962 did_changed = 0;
James Smart2e0fef82007-06-17 19:56:36 -05004963 else
dea31012005-04-17 16:05:31 -05004964 did_changed = 1;
James Smart2e0fef82007-06-17 19:56:36 -05004965
4966 vport->fc_prevDID = vport->fc_myDID;
4967 vport->num_disc_nodes = 0;
dea31012005-04-17 16:05:31 -05004968
4969 /* Start Discovery state <hba_state> */
James Smarte8b62012007-08-02 11:10:09 -04004970 lpfc_printf_vlog(vport, KERN_INFO, LOG_DISCOVERY,
4971 "0202 Start Discovery hba state x%x "
4972 "Data: x%x x%x x%x\n",
4973 vport->port_state, vport->fc_flag, vport->fc_plogi_cnt,
4974 vport->fc_adisc_cnt);
dea31012005-04-17 16:05:31 -05004975
4976 /* First do ADISCs - if any */
James Smart2e0fef82007-06-17 19:56:36 -05004977 num_sent = lpfc_els_disc_adisc(vport);
dea31012005-04-17 16:05:31 -05004978
4979 if (num_sent)
4980 return;
4981
James Smart6d368e52011-05-24 11:44:12 -04004982 /* Register the VPI for SLI3, NON-NPIV only. */
James Smart92d7f7b2007-06-17 19:56:38 -05004983 if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
James Smart1b32f6a2008-02-08 18:49:39 -05004984 !(vport->fc_flag & FC_PT2PT) &&
James Smartda0436e2009-05-22 14:51:39 -04004985 !(vport->fc_flag & FC_RSCN_MODE) &&
4986 (phba->sli_rev < LPFC_SLI_REV4)) {
James Smart92d7f7b2007-06-17 19:56:38 -05004987 lpfc_issue_reg_vpi(phba, vport);
4988 return;
4989 }
James Smart2e0fef82007-06-17 19:56:36 -05004990
James Smart92d7f7b2007-06-17 19:56:38 -05004991 /*
4992 * For SLI2, we need to set port_state to READY and continue
4993 * discovery.
4994 */
4995 if (vport->port_state < LPFC_VPORT_READY && !clear_la_pending) {
4996 /* If we get here, there is nothing to ADISC */
4997 if (vport->port_type == LPFC_PHYSICAL_PORT)
4998 lpfc_issue_clear_la(phba, vport);
4999
5000 if (!(vport->fc_flag & FC_ABORT_DISCOVERY)) {
James Smart2e0fef82007-06-17 19:56:36 -05005001 vport->num_disc_nodes = 0;
5002 /* go thru NPR nodes and issue ELS PLOGIs */
5003 if (vport->fc_npr_cnt)
5004 lpfc_els_disc_plogi(vport);
5005
5006 if (!vport->num_disc_nodes) {
5007 spin_lock_irq(shost->host_lock);
5008 vport->fc_flag &= ~FC_NDISC_ACTIVE;
5009 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05005010 lpfc_can_disctmo(vport);
dea31012005-04-17 16:05:31 -05005011 }
5012 }
James Smart92d7f7b2007-06-17 19:56:38 -05005013 vport->port_state = LPFC_VPORT_READY;
dea31012005-04-17 16:05:31 -05005014 } else {
5015 /* Next do PLOGIs - if any */
James Smart2e0fef82007-06-17 19:56:36 -05005016 num_sent = lpfc_els_disc_plogi(vport);
dea31012005-04-17 16:05:31 -05005017
5018 if (num_sent)
5019 return;
5020
James Smart2e0fef82007-06-17 19:56:36 -05005021 if (vport->fc_flag & FC_RSCN_MODE) {
dea31012005-04-17 16:05:31 -05005022 /* Check to see if more RSCNs came in while we
5023 * were processing this one.
5024 */
James Smart2e0fef82007-06-17 19:56:36 -05005025 if ((vport->fc_rscn_id_cnt == 0) &&
5026 (!(vport->fc_flag & FC_RSCN_DISCOVERY))) {
5027 spin_lock_irq(shost->host_lock);
5028 vport->fc_flag &= ~FC_RSCN_MODE;
5029 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05005030 lpfc_can_disctmo(vport);
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05005031 } else
James Smart2e0fef82007-06-17 19:56:36 -05005032 lpfc_els_handle_rscn(vport);
dea31012005-04-17 16:05:31 -05005033 }
5034 }
5035 return;
5036}
5037
5038/*
5039 * Ignore completion for all IOCBs on tx and txcmpl queue for ELS
5040 * ring the match the sppecified nodelist.
5041 */
5042static void
James Smart2e0fef82007-06-17 19:56:36 -05005043lpfc_free_tx(struct lpfc_hba *phba, struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05005044{
James Smart2534ba72007-04-25 09:52:20 -04005045 LIST_HEAD(completions);
dea31012005-04-17 16:05:31 -05005046 struct lpfc_sli *psli;
5047 IOCB_t *icmd;
5048 struct lpfc_iocbq *iocb, *next_iocb;
5049 struct lpfc_sli_ring *pring;
dea31012005-04-17 16:05:31 -05005050
5051 psli = &phba->sli;
5052 pring = &psli->ring[LPFC_ELS_RING];
5053
5054 /* Error matching iocb on txq or txcmplq
5055 * First check the txq.
5056 */
James Smart2e0fef82007-06-17 19:56:36 -05005057 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05005058 list_for_each_entry_safe(iocb, next_iocb, &pring->txq, list) {
5059 if (iocb->context1 != ndlp) {
5060 continue;
5061 }
5062 icmd = &iocb->iocb;
5063 if ((icmd->ulpCommand == CMD_ELS_REQUEST64_CR) ||
5064 (icmd->ulpCommand == CMD_XMIT_ELS_RSP64_CX)) {
5065
James Smart2534ba72007-04-25 09:52:20 -04005066 list_move_tail(&iocb->list, &completions);
dea31012005-04-17 16:05:31 -05005067 }
5068 }
5069
5070 /* Next check the txcmplq */
5071 list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq, list) {
5072 if (iocb->context1 != ndlp) {
5073 continue;
5074 }
5075 icmd = &iocb->iocb;
James Smart2e0fef82007-06-17 19:56:36 -05005076 if (icmd->ulpCommand == CMD_ELS_REQUEST64_CR ||
5077 icmd->ulpCommand == CMD_XMIT_ELS_RSP64_CX) {
James Smart2534ba72007-04-25 09:52:20 -04005078 lpfc_sli_issue_abort_iotag(phba, pring, iocb);
dea31012005-04-17 16:05:31 -05005079 }
5080 }
James Smart2e0fef82007-06-17 19:56:36 -05005081 spin_unlock_irq(&phba->hbalock);
James Smart2534ba72007-04-25 09:52:20 -04005082
James Smarta257bf92009-04-06 18:48:10 -04005083 /* Cancel all the IOCBs from the completions list */
5084 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
5085 IOERR_SLI_ABORTED);
dea31012005-04-17 16:05:31 -05005086}
5087
Adrian Bunka6ababd2007-11-05 18:07:33 +01005088static void
James Smart2e0fef82007-06-17 19:56:36 -05005089lpfc_disc_flush_list(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05005090{
5091 struct lpfc_nodelist *ndlp, *next_ndlp;
James Smart2e0fef82007-06-17 19:56:36 -05005092 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05005093
James Smart2e0fef82007-06-17 19:56:36 -05005094 if (vport->fc_plogi_cnt || vport->fc_adisc_cnt) {
5095 list_for_each_entry_safe(ndlp, next_ndlp, &vport->fc_nodes,
James Smart685f0bf2007-04-25 09:53:08 -04005096 nlp_listp) {
James Smarte47c9092008-02-08 18:49:26 -05005097 if (!NLP_CHK_NODE_ACT(ndlp))
5098 continue;
James Smart685f0bf2007-04-25 09:53:08 -04005099 if (ndlp->nlp_state == NLP_STE_PLOGI_ISSUE ||
5100 ndlp->nlp_state == NLP_STE_ADISC_ISSUE) {
5101 lpfc_free_tx(phba, ndlp);
James Smart685f0bf2007-04-25 09:53:08 -04005102 }
dea31012005-04-17 16:05:31 -05005103 }
5104 }
dea31012005-04-17 16:05:31 -05005105}
5106
James Smart92d7f7b2007-06-17 19:56:38 -05005107void
5108lpfc_cleanup_discovery_resources(struct lpfc_vport *vport)
5109{
5110 lpfc_els_flush_rscn(vport);
5111 lpfc_els_flush_cmd(vport);
5112 lpfc_disc_flush_list(vport);
5113}
5114
dea31012005-04-17 16:05:31 -05005115/*****************************************************************************/
5116/*
5117 * NAME: lpfc_disc_timeout
5118 *
5119 * FUNCTION: Fibre Channel driver discovery timeout routine.
5120 *
5121 * EXECUTION ENVIRONMENT: interrupt only
5122 *
5123 * CALLED FROM:
5124 * Timer function
5125 *
5126 * RETURNS:
5127 * none
5128 */
5129/*****************************************************************************/
5130void
5131lpfc_disc_timeout(unsigned long ptr)
5132{
James Smart2e0fef82007-06-17 19:56:36 -05005133 struct lpfc_vport *vport = (struct lpfc_vport *) ptr;
5134 struct lpfc_hba *phba = vport->phba;
James Smart5e9d9b82008-06-14 22:52:53 -04005135 uint32_t tmo_posted;
dea31012005-04-17 16:05:31 -05005136 unsigned long flags = 0;
5137
5138 if (unlikely(!phba))
5139 return;
5140
James Smart5e9d9b82008-06-14 22:52:53 -04005141 spin_lock_irqsave(&vport->work_port_lock, flags);
5142 tmo_posted = vport->work_port_events & WORKER_DISC_TMO;
5143 if (!tmo_posted)
James Smart2e0fef82007-06-17 19:56:36 -05005144 vport->work_port_events |= WORKER_DISC_TMO;
James Smart5e9d9b82008-06-14 22:52:53 -04005145 spin_unlock_irqrestore(&vport->work_port_lock, flags);
James Smart2e0fef82007-06-17 19:56:36 -05005146
James Smart5e9d9b82008-06-14 22:52:53 -04005147 if (!tmo_posted)
5148 lpfc_worker_wake_up(phba);
dea31012005-04-17 16:05:31 -05005149 return;
5150}
5151
5152static void
James Smart2e0fef82007-06-17 19:56:36 -05005153lpfc_disc_timeout_handler(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05005154{
James Smart2e0fef82007-06-17 19:56:36 -05005155 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
5156 struct lpfc_hba *phba = vport->phba;
5157 struct lpfc_sli *psli = &phba->sli;
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05005158 struct lpfc_nodelist *ndlp, *next_ndlp;
James Smart92d7f7b2007-06-17 19:56:38 -05005159 LPFC_MBOXQ_t *initlinkmbox;
dea31012005-04-17 16:05:31 -05005160 int rc, clrlaerr = 0;
5161
James Smart2e0fef82007-06-17 19:56:36 -05005162 if (!(vport->fc_flag & FC_DISC_TMO))
dea31012005-04-17 16:05:31 -05005163 return;
5164
James Smart2e0fef82007-06-17 19:56:36 -05005165 spin_lock_irq(shost->host_lock);
5166 vport->fc_flag &= ~FC_DISC_TMO;
5167 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05005168
James Smart858c9f62007-06-17 19:56:39 -05005169 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
5170 "disc timeout: state:x%x rtry:x%x flg:x%x",
5171 vport->port_state, vport->fc_ns_retry, vport->fc_flag);
5172
James Smart2e0fef82007-06-17 19:56:36 -05005173 switch (vport->port_state) {
dea31012005-04-17 16:05:31 -05005174
5175 case LPFC_LOCAL_CFG_LINK:
James Smart2e0fef82007-06-17 19:56:36 -05005176 /* port_state is identically LPFC_LOCAL_CFG_LINK while waiting for
5177 * FAN
5178 */
5179 /* FAN timeout */
James Smarte8b62012007-08-02 11:10:09 -04005180 lpfc_printf_vlog(vport, KERN_WARNING, LOG_DISCOVERY,
5181 "0221 FAN timeout\n");
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05005182 /* Start discovery by sending FLOGI, clean up old rpis */
James Smart2e0fef82007-06-17 19:56:36 -05005183 list_for_each_entry_safe(ndlp, next_ndlp, &vport->fc_nodes,
James Smart685f0bf2007-04-25 09:53:08 -04005184 nlp_listp) {
James Smarte47c9092008-02-08 18:49:26 -05005185 if (!NLP_CHK_NODE_ACT(ndlp))
5186 continue;
James Smart685f0bf2007-04-25 09:53:08 -04005187 if (ndlp->nlp_state != NLP_STE_NPR_NODE)
5188 continue;
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05005189 if (ndlp->nlp_type & NLP_FABRIC) {
5190 /* Clean up the ndlp on Fabric connections */
James Smart2e0fef82007-06-17 19:56:36 -05005191 lpfc_drop_node(vport, ndlp);
James Smart87af33f2007-10-27 13:37:43 -04005192
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05005193 } else if (!(ndlp->nlp_flag & NLP_NPR_ADISC)) {
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05005194 /* Fail outstanding IO now since device
5195 * is marked for PLOGI.
5196 */
James Smart2e0fef82007-06-17 19:56:36 -05005197 lpfc_unreg_rpi(vport, ndlp);
Jamie Wellnitzc9f87352006-02-28 19:25:23 -05005198 }
5199 }
James Smart92d7f7b2007-06-17 19:56:38 -05005200 if (vport->port_state != LPFC_FLOGI) {
James Smart76a95d72010-11-20 23:11:48 -05005201 if (phba->sli_rev <= LPFC_SLI_REV3)
5202 lpfc_initial_flogi(vport);
5203 else
5204 lpfc_issue_init_vfi(vport);
James Smart0ff10d42008-01-11 01:52:36 -05005205 return;
James Smart92d7f7b2007-06-17 19:56:38 -05005206 }
dea31012005-04-17 16:05:31 -05005207 break;
5208
James Smart92d7f7b2007-06-17 19:56:38 -05005209 case LPFC_FDISC:
dea31012005-04-17 16:05:31 -05005210 case LPFC_FLOGI:
James Smart2e0fef82007-06-17 19:56:36 -05005211 /* port_state is identically LPFC_FLOGI while waiting for FLOGI cmpl */
dea31012005-04-17 16:05:31 -05005212 /* Initial FLOGI timeout */
James Smarte8b62012007-08-02 11:10:09 -04005213 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
5214 "0222 Initial %s timeout\n",
James Smart87af33f2007-10-27 13:37:43 -04005215 vport->vpi ? "FDISC" : "FLOGI");
dea31012005-04-17 16:05:31 -05005216
5217 /* Assume no Fabric and go on with discovery.
5218 * Check for outstanding ELS FLOGI to abort.
5219 */
5220
5221 /* FLOGI failed, so just use loop map to make discovery list */
James Smart2e0fef82007-06-17 19:56:36 -05005222 lpfc_disc_list_loopmap(vport);
dea31012005-04-17 16:05:31 -05005223
5224 /* Start discovery */
James Smart2e0fef82007-06-17 19:56:36 -05005225 lpfc_disc_start(vport);
dea31012005-04-17 16:05:31 -05005226 break;
5227
5228 case LPFC_FABRIC_CFG_LINK:
5229 /* hba_state is identically LPFC_FABRIC_CFG_LINK while waiting for
5230 NameServer login */
James Smarte8b62012007-08-02 11:10:09 -04005231 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
5232 "0223 Timeout while waiting for "
5233 "NameServer login\n");
dea31012005-04-17 16:05:31 -05005234 /* Next look for NameServer ndlp */
James Smart2e0fef82007-06-17 19:56:36 -05005235 ndlp = lpfc_findnode_did(vport, NameServer_DID);
James Smarte47c9092008-02-08 18:49:26 -05005236 if (ndlp && NLP_CHK_NODE_ACT(ndlp))
James Smart87af33f2007-10-27 13:37:43 -04005237 lpfc_els_abort(phba, ndlp);
5238
5239 /* ReStart discovery */
5240 goto restart_disc;
dea31012005-04-17 16:05:31 -05005241
5242 case LPFC_NS_QRY:
5243 /* Check for wait for NameServer Rsp timeout */
James Smarte8b62012007-08-02 11:10:09 -04005244 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
5245 "0224 NameServer Query timeout "
5246 "Data: x%x x%x\n",
5247 vport->fc_ns_retry, LPFC_MAX_NS_RETRY);
dea31012005-04-17 16:05:31 -05005248
James Smart92d7f7b2007-06-17 19:56:38 -05005249 if (vport->fc_ns_retry < LPFC_MAX_NS_RETRY) {
5250 /* Try it one more time */
5251 vport->fc_ns_retry++;
5252 rc = lpfc_ns_cmd(vport, SLI_CTNS_GID_FT,
5253 vport->fc_ns_retry, 0);
5254 if (rc == 0)
5255 break;
dea31012005-04-17 16:05:31 -05005256 }
James Smart92d7f7b2007-06-17 19:56:38 -05005257 vport->fc_ns_retry = 0;
dea31012005-04-17 16:05:31 -05005258
James Smart87af33f2007-10-27 13:37:43 -04005259restart_disc:
James Smart92d7f7b2007-06-17 19:56:38 -05005260 /*
5261 * Discovery is over.
5262 * set port_state to PORT_READY if SLI2.
5263 * cmpl_reg_vpi will set port_state to READY for SLI3.
5264 */
James Smart3772a992009-05-22 14:50:54 -04005265 if (phba->sli_rev < LPFC_SLI_REV4) {
5266 if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED)
5267 lpfc_issue_reg_vpi(phba, vport);
James Smart6d368e52011-05-24 11:44:12 -04005268 else {
James Smart3772a992009-05-22 14:50:54 -04005269 lpfc_issue_clear_la(phba, vport);
5270 vport->port_state = LPFC_VPORT_READY;
5271 }
dea31012005-04-17 16:05:31 -05005272 }
5273
5274 /* Setup and issue mailbox INITIALIZE LINK command */
5275 initlinkmbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5276 if (!initlinkmbox) {
James Smarte8b62012007-08-02 11:10:09 -04005277 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
5278 "0206 Device Discovery "
5279 "completion error\n");
James Smart2e0fef82007-06-17 19:56:36 -05005280 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -05005281 break;
5282 }
5283
5284 lpfc_linkdown(phba);
5285 lpfc_init_link(phba, initlinkmbox, phba->cfg_topology,
5286 phba->cfg_link_speed);
James Smart04c68492009-05-22 14:52:52 -04005287 initlinkmbox->u.mb.un.varInitLnk.lipsr_AL_PA = 0;
James Smarted957682007-06-17 19:56:37 -05005288 initlinkmbox->vport = vport;
James Smart92d7f7b2007-06-17 19:56:38 -05005289 initlinkmbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
James Smart0b727fe2007-10-27 13:37:25 -04005290 rc = lpfc_sli_issue_mbox(phba, initlinkmbox, MBX_NOWAIT);
James Smart5b8bd0c2007-04-25 09:52:49 -04005291 lpfc_set_loopback_flag(phba);
dea31012005-04-17 16:05:31 -05005292 if (rc == MBX_NOT_FINISHED)
5293 mempool_free(initlinkmbox, phba->mbox_mem_pool);
5294
5295 break;
5296
5297 case LPFC_DISC_AUTH:
5298 /* Node Authentication timeout */
James Smarte8b62012007-08-02 11:10:09 -04005299 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
5300 "0227 Node Authentication timeout\n");
James Smart2e0fef82007-06-17 19:56:36 -05005301 lpfc_disc_flush_list(vport);
5302
James Smart92d7f7b2007-06-17 19:56:38 -05005303 /*
5304 * set port_state to PORT_READY if SLI2.
5305 * cmpl_reg_vpi will set port_state to READY for SLI3.
5306 */
James Smart3772a992009-05-22 14:50:54 -04005307 if (phba->sli_rev < LPFC_SLI_REV4) {
5308 if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED)
5309 lpfc_issue_reg_vpi(phba, vport);
5310 else { /* NPIV Not enabled */
5311 lpfc_issue_clear_la(phba, vport);
5312 vport->port_state = LPFC_VPORT_READY;
5313 }
dea31012005-04-17 16:05:31 -05005314 }
5315 break;
5316
James Smart2e0fef82007-06-17 19:56:36 -05005317 case LPFC_VPORT_READY:
5318 if (vport->fc_flag & FC_RSCN_MODE) {
James Smarte8b62012007-08-02 11:10:09 -04005319 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
5320 "0231 RSCN timeout Data: x%x "
5321 "x%x\n",
5322 vport->fc_ns_retry, LPFC_MAX_NS_RETRY);
dea31012005-04-17 16:05:31 -05005323
5324 /* Cleanup any outstanding ELS commands */
James Smart2e0fef82007-06-17 19:56:36 -05005325 lpfc_els_flush_cmd(vport);
dea31012005-04-17 16:05:31 -05005326
James Smart2e0fef82007-06-17 19:56:36 -05005327 lpfc_els_flush_rscn(vport);
5328 lpfc_disc_flush_list(vport);
dea31012005-04-17 16:05:31 -05005329 }
5330 break;
James Smart2e0fef82007-06-17 19:56:36 -05005331
James Smart92d7f7b2007-06-17 19:56:38 -05005332 default:
James Smarte8b62012007-08-02 11:10:09 -04005333 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
James Smartd7c255b2008-08-24 21:50:00 -04005334 "0273 Unexpected discovery timeout, "
James Smarte8b62012007-08-02 11:10:09 -04005335 "vport State x%x\n", vport->port_state);
James Smart2e0fef82007-06-17 19:56:36 -05005336 break;
5337 }
5338
5339 switch (phba->link_state) {
5340 case LPFC_CLEAR_LA:
James Smart92d7f7b2007-06-17 19:56:38 -05005341 /* CLEAR LA timeout */
James Smarte8b62012007-08-02 11:10:09 -04005342 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
5343 "0228 CLEAR LA timeout\n");
James Smart2e0fef82007-06-17 19:56:36 -05005344 clrlaerr = 1;
5345 break;
5346
James Smart09372822008-01-11 01:52:54 -05005347 case LPFC_LINK_UP:
5348 lpfc_issue_clear_la(phba, vport);
5349 /* Drop thru */
James Smart2e0fef82007-06-17 19:56:36 -05005350 case LPFC_LINK_UNKNOWN:
5351 case LPFC_WARM_START:
5352 case LPFC_INIT_START:
5353 case LPFC_INIT_MBX_CMDS:
5354 case LPFC_LINK_DOWN:
James Smart2e0fef82007-06-17 19:56:36 -05005355 case LPFC_HBA_ERROR:
James Smarte8b62012007-08-02 11:10:09 -04005356 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
5357 "0230 Unexpected timeout, hba link "
5358 "state x%x\n", phba->link_state);
James Smart2e0fef82007-06-17 19:56:36 -05005359 clrlaerr = 1;
5360 break;
James Smart92d7f7b2007-06-17 19:56:38 -05005361
5362 case LPFC_HBA_READY:
5363 break;
dea31012005-04-17 16:05:31 -05005364 }
5365
5366 if (clrlaerr) {
James Smart2e0fef82007-06-17 19:56:36 -05005367 lpfc_disc_flush_list(vport);
James Smarta4bc3372006-12-02 13:34:16 -05005368 psli->ring[(psli->extra_ring)].flag &= ~LPFC_STOP_IOCB_EVENT;
dea31012005-04-17 16:05:31 -05005369 psli->ring[(psli->fcp_ring)].flag &= ~LPFC_STOP_IOCB_EVENT;
5370 psli->ring[(psli->next_ring)].flag &= ~LPFC_STOP_IOCB_EVENT;
James Smart2e0fef82007-06-17 19:56:36 -05005371 vport->port_state = LPFC_VPORT_READY;
dea31012005-04-17 16:05:31 -05005372 }
5373
5374 return;
5375}
5376
dea31012005-04-17 16:05:31 -05005377/*
5378 * This routine handles processing a NameServer REG_LOGIN mailbox
5379 * command upon completion. It is setup in the LPFC_MBOXQ
5380 * as the completion routine when the command is
5381 * handed off to the SLI layer.
5382 */
5383void
James Smart2e0fef82007-06-17 19:56:36 -05005384lpfc_mbx_cmpl_fdmi_reg_login(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
dea31012005-04-17 16:05:31 -05005385{
James Smart04c68492009-05-22 14:52:52 -04005386 MAILBOX_t *mb = &pmb->u.mb;
James Smart2e0fef82007-06-17 19:56:36 -05005387 struct lpfc_dmabuf *mp = (struct lpfc_dmabuf *) (pmb->context1);
5388 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) pmb->context2;
5389 struct lpfc_vport *vport = pmb->vport;
dea31012005-04-17 16:05:31 -05005390
5391 pmb->context1 = NULL;
James Smartd439d282010-09-29 11:18:45 -04005392 pmb->context2 = NULL;
dea31012005-04-17 16:05:31 -05005393
James Smart6d368e52011-05-24 11:44:12 -04005394 if (phba->sli_rev < LPFC_SLI_REV4)
5395 ndlp->nlp_rpi = mb->un.varWords[0];
James Smart40426292010-12-15 17:58:10 -05005396 ndlp->nlp_flag |= NLP_RPI_REGISTERED;
dea31012005-04-17 16:05:31 -05005397 ndlp->nlp_type |= NLP_FABRIC;
James Smart2e0fef82007-06-17 19:56:36 -05005398 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
dea31012005-04-17 16:05:31 -05005399
James Smart2e0fef82007-06-17 19:56:36 -05005400 /*
5401 * Start issuing Fabric-Device Management Interface (FDMI) command to
5402 * 0xfffffa (FDMI well known port) or Delay issuing FDMI command if
5403 * fdmi-on=2 (supporting RPA/hostnmae)
dea31012005-04-17 16:05:31 -05005404 */
James Smart2e0fef82007-06-17 19:56:36 -05005405
James Smart3de2a652007-08-02 11:09:59 -04005406 if (vport->cfg_fdmi_on == 1)
James Smart2e0fef82007-06-17 19:56:36 -05005407 lpfc_fdmi_cmd(vport, ndlp, SLI_MGMT_DHBA);
5408 else
5409 mod_timer(&vport->fc_fdmitmo, jiffies + HZ * 60);
dea31012005-04-17 16:05:31 -05005410
James Smartfa4066b2008-01-11 01:53:27 -05005411 /* decrement the node reference count held for this callback
5412 * function.
5413 */
James Smart329f9bc2007-04-25 09:53:01 -04005414 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05005415 lpfc_mbuf_free(phba, mp->virt, mp->phys);
5416 kfree(mp);
James Smart329f9bc2007-04-25 09:53:01 -04005417 mempool_free(pmb, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -05005418
5419 return;
5420}
5421
James Smart685f0bf2007-04-25 09:53:08 -04005422static int
5423lpfc_filter_by_rpi(struct lpfc_nodelist *ndlp, void *param)
5424{
5425 uint16_t *rpi = param;
5426
James Smarteff4a012012-01-18 16:25:25 -05005427 /* check for active node */
5428 if (!NLP_CHK_NODE_ACT(ndlp))
5429 return 0;
5430
James Smart685f0bf2007-04-25 09:53:08 -04005431 return ndlp->nlp_rpi == *rpi;
5432}
5433
5434static int
5435lpfc_filter_by_wwpn(struct lpfc_nodelist *ndlp, void *param)
5436{
5437 return memcmp(&ndlp->nlp_portname, param,
5438 sizeof(ndlp->nlp_portname)) == 0;
5439}
5440
Adrian Bunka6ababd2007-11-05 18:07:33 +01005441static struct lpfc_nodelist *
James Smart2e0fef82007-06-17 19:56:36 -05005442__lpfc_find_node(struct lpfc_vport *vport, node_filter filter, void *param)
dea31012005-04-17 16:05:31 -05005443{
James.Smart@Emulex.Com21568f52005-10-28 20:29:36 -04005444 struct lpfc_nodelist *ndlp;
dea31012005-04-17 16:05:31 -05005445
James Smart2e0fef82007-06-17 19:56:36 -05005446 list_for_each_entry(ndlp, &vport->fc_nodes, nlp_listp) {
James Smart34f5ad82012-08-03 12:35:03 -04005447 if (filter(ndlp, param)) {
5448 lpfc_printf_vlog(vport, KERN_INFO, LOG_NODE,
5449 "3185 FIND node filter %p DID "
5450 "Data: x%p x%x x%x\n",
5451 filter, ndlp, ndlp->nlp_DID,
5452 ndlp->nlp_flag);
James Smart685f0bf2007-04-25 09:53:08 -04005453 return ndlp;
James Smart34f5ad82012-08-03 12:35:03 -04005454 }
James Smart685f0bf2007-04-25 09:53:08 -04005455 }
James Smart34f5ad82012-08-03 12:35:03 -04005456 lpfc_printf_vlog(vport, KERN_INFO, LOG_NODE,
5457 "3186 FIND node filter %p NOT FOUND.\n", filter);
James.Smart@Emulex.Com21568f52005-10-28 20:29:36 -04005458 return NULL;
dea31012005-04-17 16:05:31 -05005459}
5460
James Smart685f0bf2007-04-25 09:53:08 -04005461/*
5462 * This routine looks up the ndlp lists for the given RPI. If rpi found it
James Smart2e0fef82007-06-17 19:56:36 -05005463 * returns the node list element pointer else return NULL.
James Smart685f0bf2007-04-25 09:53:08 -04005464 */
5465struct lpfc_nodelist *
James Smart2e0fef82007-06-17 19:56:36 -05005466__lpfc_findnode_rpi(struct lpfc_vport *vport, uint16_t rpi)
James Smart685f0bf2007-04-25 09:53:08 -04005467{
James Smart2e0fef82007-06-17 19:56:36 -05005468 return __lpfc_find_node(vport, lpfc_filter_by_rpi, &rpi);
James Smart685f0bf2007-04-25 09:53:08 -04005469}
5470
James Smart488d1462006-03-07 15:02:37 -05005471/*
James Smart685f0bf2007-04-25 09:53:08 -04005472 * This routine looks up the ndlp lists for the given WWPN. If WWPN found it
James Smart2e0fef82007-06-17 19:56:36 -05005473 * returns the node element list pointer else return NULL.
James Smart488d1462006-03-07 15:02:37 -05005474 */
5475struct lpfc_nodelist *
James Smart2e0fef82007-06-17 19:56:36 -05005476lpfc_findnode_wwpn(struct lpfc_vport *vport, struct lpfc_name *wwpn)
James Smart488d1462006-03-07 15:02:37 -05005477{
James Smart2e0fef82007-06-17 19:56:36 -05005478 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart488d1462006-03-07 15:02:37 -05005479 struct lpfc_nodelist *ndlp;
James Smart488d1462006-03-07 15:02:37 -05005480
James Smart2e0fef82007-06-17 19:56:36 -05005481 spin_lock_irq(shost->host_lock);
5482 ndlp = __lpfc_find_node(vport, lpfc_filter_by_wwpn, wwpn);
5483 spin_unlock_irq(shost->host_lock);
James Smart858c9f62007-06-17 19:56:39 -05005484 return ndlp;
James Smart488d1462006-03-07 15:02:37 -05005485}
5486
James Smartcb69f7d2011-12-13 13:21:57 -05005487/*
5488 * This routine looks up the ndlp lists for the given RPI. If the rpi
5489 * is found, the routine returns the node element list pointer else
5490 * return NULL.
5491 */
5492struct lpfc_nodelist *
5493lpfc_findnode_rpi(struct lpfc_vport *vport, uint16_t rpi)
5494{
5495 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
5496 struct lpfc_nodelist *ndlp;
5497
5498 spin_lock_irq(shost->host_lock);
5499 ndlp = __lpfc_findnode_rpi(vport, rpi);
5500 spin_unlock_irq(shost->host_lock);
5501 return ndlp;
5502}
5503
5504/**
5505 * lpfc_find_vport_by_vpid - Find a vport on a HBA through vport identifier
5506 * @phba: pointer to lpfc hba data structure.
5507 * @vpi: the physical host virtual N_Port identifier.
5508 *
5509 * This routine finds a vport on a HBA (referred by @phba) through a
5510 * @vpi. The function walks the HBA's vport list and returns the address
5511 * of the vport with the matching @vpi.
5512 *
5513 * Return code
5514 * NULL - No vport with the matching @vpi found
5515 * Otherwise - Address to the vport with the matching @vpi.
5516 **/
5517struct lpfc_vport *
5518lpfc_find_vport_by_vpid(struct lpfc_hba *phba, uint16_t vpi)
5519{
5520 struct lpfc_vport *vport;
5521 unsigned long flags;
5522 int i = 0;
5523
5524 /* The physical ports are always vpi 0 - translate is unnecessary. */
5525 if (vpi > 0) {
5526 /*
5527 * Translate the physical vpi to the logical vpi. The
5528 * vport stores the logical vpi.
5529 */
5530 for (i = 0; i < phba->max_vpi; i++) {
5531 if (vpi == phba->vpi_ids[i])
5532 break;
5533 }
5534
5535 if (i >= phba->max_vpi) {
5536 lpfc_printf_log(phba, KERN_ERR, LOG_ELS,
5537 "2936 Could not find Vport mapped "
5538 "to vpi %d\n", vpi);
5539 return NULL;
5540 }
5541 }
5542
5543 spin_lock_irqsave(&phba->hbalock, flags);
5544 list_for_each_entry(vport, &phba->port_list, listentry) {
5545 if (vport->vpi == i) {
5546 spin_unlock_irqrestore(&phba->hbalock, flags);
5547 return vport;
5548 }
5549 }
5550 spin_unlock_irqrestore(&phba->hbalock, flags);
5551 return NULL;
5552}
5553
dea31012005-04-17 16:05:31 -05005554void
James Smart2e0fef82007-06-17 19:56:36 -05005555lpfc_nlp_init(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
5556 uint32_t did)
dea31012005-04-17 16:05:31 -05005557{
5558 memset(ndlp, 0, sizeof (struct lpfc_nodelist));
James Smart109f6ed2008-12-04 22:39:08 -05005559
5560 lpfc_initialize_node(vport, ndlp, did);
James Smart685f0bf2007-04-25 09:53:08 -04005561 INIT_LIST_HEAD(&ndlp->nlp_listp);
James Smart858c9f62007-06-17 19:56:39 -05005562
5563 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_NODE,
5564 "node init: did:x%x",
5565 ndlp->nlp_DID, 0, 0);
5566
dea31012005-04-17 16:05:31 -05005567 return;
5568}
James Smart329f9bc2007-04-25 09:53:01 -04005569
James Smart98c9ea52007-10-27 13:37:33 -04005570/* This routine releases all resources associated with a specifc NPort's ndlp
5571 * and mempool_free's the nodelist.
5572 */
James Smart311464e2007-08-02 11:10:37 -04005573static void
James Smart329f9bc2007-04-25 09:53:01 -04005574lpfc_nlp_release(struct kref *kref)
5575{
James Smarte47c9092008-02-08 18:49:26 -05005576 struct lpfc_hba *phba;
5577 unsigned long flags;
James Smart329f9bc2007-04-25 09:53:01 -04005578 struct lpfc_nodelist *ndlp = container_of(kref, struct lpfc_nodelist,
5579 kref);
James Smart858c9f62007-06-17 19:56:39 -05005580
5581 lpfc_debugfs_disc_trc(ndlp->vport, LPFC_DISC_TRC_NODE,
5582 "node release: did:x%x flg:x%x type:x%x",
5583 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_type);
5584
James Smarte47c9092008-02-08 18:49:26 -05005585 lpfc_printf_vlog(ndlp->vport, KERN_INFO, LOG_NODE,
James Smart939723a2012-05-09 21:19:03 -04005586 "0279 lpfc_nlp_release: ndlp:x%p did %x "
James Smarte47c9092008-02-08 18:49:26 -05005587 "usgmap:x%x refcnt:%d\n",
James Smart939723a2012-05-09 21:19:03 -04005588 (void *)ndlp, ndlp->nlp_DID, ndlp->nlp_usg_map,
James Smarte47c9092008-02-08 18:49:26 -05005589 atomic_read(&ndlp->kref.refcount));
5590
5591 /* remove ndlp from action. */
James Smart2e0fef82007-06-17 19:56:36 -05005592 lpfc_nlp_remove(ndlp->vport, ndlp);
James Smarte47c9092008-02-08 18:49:26 -05005593
5594 /* clear the ndlp active flag for all release cases */
James Smarta257bf92009-04-06 18:48:10 -04005595 phba = ndlp->phba;
James Smarte47c9092008-02-08 18:49:26 -05005596 spin_lock_irqsave(&phba->ndlp_lock, flags);
5597 NLP_CLR_NODE_ACT(ndlp);
5598 spin_unlock_irqrestore(&phba->ndlp_lock, flags);
James Smart40426292010-12-15 17:58:10 -05005599 if (phba->sli_rev == LPFC_SLI_REV4)
5600 lpfc_sli4_free_rpi(phba, ndlp->nlp_rpi);
James Smarte47c9092008-02-08 18:49:26 -05005601
5602 /* free ndlp memory for final ndlp release */
James Smartea2151b2008-09-07 11:52:10 -04005603 if (NLP_CHK_FREE_REQ(ndlp)) {
5604 kfree(ndlp->lat_data);
James Smarta257bf92009-04-06 18:48:10 -04005605 mempool_free(ndlp, ndlp->phba->nlp_mem_pool);
James Smartea2151b2008-09-07 11:52:10 -04005606 }
James Smart329f9bc2007-04-25 09:53:01 -04005607}
5608
James Smart98c9ea52007-10-27 13:37:33 -04005609/* This routine bumps the reference count for a ndlp structure to ensure
5610 * that one discovery thread won't free a ndlp while another discovery thread
5611 * is using it.
5612 */
James Smart329f9bc2007-04-25 09:53:01 -04005613struct lpfc_nodelist *
5614lpfc_nlp_get(struct lpfc_nodelist *ndlp)
5615{
James Smarte47c9092008-02-08 18:49:26 -05005616 struct lpfc_hba *phba;
5617 unsigned long flags;
5618
James Smart98c9ea52007-10-27 13:37:33 -04005619 if (ndlp) {
5620 lpfc_debugfs_disc_trc(ndlp->vport, LPFC_DISC_TRC_NODE,
5621 "node get: did:x%x flg:x%x refcnt:x%x",
5622 ndlp->nlp_DID, ndlp->nlp_flag,
5623 atomic_read(&ndlp->kref.refcount));
James Smarte47c9092008-02-08 18:49:26 -05005624 /* The check of ndlp usage to prevent incrementing the
5625 * ndlp reference count that is in the process of being
5626 * released.
5627 */
James Smarta257bf92009-04-06 18:48:10 -04005628 phba = ndlp->phba;
James Smarte47c9092008-02-08 18:49:26 -05005629 spin_lock_irqsave(&phba->ndlp_lock, flags);
5630 if (!NLP_CHK_NODE_ACT(ndlp) || NLP_CHK_FREE_ACK(ndlp)) {
5631 spin_unlock_irqrestore(&phba->ndlp_lock, flags);
5632 lpfc_printf_vlog(ndlp->vport, KERN_WARNING, LOG_NODE,
5633 "0276 lpfc_nlp_get: ndlp:x%p "
5634 "usgmap:x%x refcnt:%d\n",
5635 (void *)ndlp, ndlp->nlp_usg_map,
5636 atomic_read(&ndlp->kref.refcount));
5637 return NULL;
5638 } else
5639 kref_get(&ndlp->kref);
5640 spin_unlock_irqrestore(&phba->ndlp_lock, flags);
James Smart98c9ea52007-10-27 13:37:33 -04005641 }
James Smart329f9bc2007-04-25 09:53:01 -04005642 return ndlp;
5643}
5644
James Smart98c9ea52007-10-27 13:37:33 -04005645/* This routine decrements the reference count for a ndlp structure. If the
James Smarte47c9092008-02-08 18:49:26 -05005646 * count goes to 0, this indicates the the associated nodelist should be
5647 * freed. Returning 1 indicates the ndlp resource has been released; on the
5648 * other hand, returning 0 indicates the ndlp resource has not been released
5649 * yet.
James Smart98c9ea52007-10-27 13:37:33 -04005650 */
James Smart329f9bc2007-04-25 09:53:01 -04005651int
5652lpfc_nlp_put(struct lpfc_nodelist *ndlp)
5653{
James Smarte47c9092008-02-08 18:49:26 -05005654 struct lpfc_hba *phba;
5655 unsigned long flags;
5656
5657 if (!ndlp)
5658 return 1;
5659
5660 lpfc_debugfs_disc_trc(ndlp->vport, LPFC_DISC_TRC_NODE,
5661 "node put: did:x%x flg:x%x refcnt:x%x",
5662 ndlp->nlp_DID, ndlp->nlp_flag,
5663 atomic_read(&ndlp->kref.refcount));
James Smarta257bf92009-04-06 18:48:10 -04005664 phba = ndlp->phba;
James Smarte47c9092008-02-08 18:49:26 -05005665 spin_lock_irqsave(&phba->ndlp_lock, flags);
5666 /* Check the ndlp memory free acknowledge flag to avoid the
5667 * possible race condition that kref_put got invoked again
5668 * after previous one has done ndlp memory free.
5669 */
5670 if (NLP_CHK_FREE_ACK(ndlp)) {
5671 spin_unlock_irqrestore(&phba->ndlp_lock, flags);
5672 lpfc_printf_vlog(ndlp->vport, KERN_WARNING, LOG_NODE,
5673 "0274 lpfc_nlp_put: ndlp:x%p "
5674 "usgmap:x%x refcnt:%d\n",
5675 (void *)ndlp, ndlp->nlp_usg_map,
5676 atomic_read(&ndlp->kref.refcount));
5677 return 1;
James Smart98c9ea52007-10-27 13:37:33 -04005678 }
James Smarte47c9092008-02-08 18:49:26 -05005679 /* Check the ndlp inactivate log flag to avoid the possible
5680 * race condition that kref_put got invoked again after ndlp
5681 * is already in inactivating state.
5682 */
5683 if (NLP_CHK_IACT_REQ(ndlp)) {
5684 spin_unlock_irqrestore(&phba->ndlp_lock, flags);
5685 lpfc_printf_vlog(ndlp->vport, KERN_WARNING, LOG_NODE,
5686 "0275 lpfc_nlp_put: ndlp:x%p "
5687 "usgmap:x%x refcnt:%d\n",
5688 (void *)ndlp, ndlp->nlp_usg_map,
5689 atomic_read(&ndlp->kref.refcount));
5690 return 1;
5691 }
5692 /* For last put, mark the ndlp usage flags to make sure no
5693 * other kref_get and kref_put on the same ndlp shall get
5694 * in between the process when the final kref_put has been
5695 * invoked on this ndlp.
5696 */
5697 if (atomic_read(&ndlp->kref.refcount) == 1) {
5698 /* Indicate ndlp is put to inactive state. */
5699 NLP_SET_IACT_REQ(ndlp);
5700 /* Acknowledge ndlp memory free has been seen. */
5701 if (NLP_CHK_FREE_REQ(ndlp))
5702 NLP_SET_FREE_ACK(ndlp);
5703 }
5704 spin_unlock_irqrestore(&phba->ndlp_lock, flags);
5705 /* Note, the kref_put returns 1 when decrementing a reference
5706 * count that was 1, it invokes the release callback function,
5707 * but it still left the reference count as 1 (not actually
5708 * performs the last decrementation). Otherwise, it actually
5709 * decrements the reference count and returns 0.
5710 */
5711 return kref_put(&ndlp->kref, lpfc_nlp_release);
James Smart329f9bc2007-04-25 09:53:01 -04005712}
James Smart98c9ea52007-10-27 13:37:33 -04005713
5714/* This routine free's the specified nodelist if it is not in use
James Smarte47c9092008-02-08 18:49:26 -05005715 * by any other discovery thread. This routine returns 1 if the
5716 * ndlp has been freed. A return value of 0 indicates the ndlp is
5717 * not yet been released.
James Smart98c9ea52007-10-27 13:37:33 -04005718 */
5719int
5720lpfc_nlp_not_used(struct lpfc_nodelist *ndlp)
5721{
5722 lpfc_debugfs_disc_trc(ndlp->vport, LPFC_DISC_TRC_NODE,
5723 "node not used: did:x%x flg:x%x refcnt:x%x",
5724 ndlp->nlp_DID, ndlp->nlp_flag,
5725 atomic_read(&ndlp->kref.refcount));
James Smarte47c9092008-02-08 18:49:26 -05005726 if (atomic_read(&ndlp->kref.refcount) == 1)
5727 if (lpfc_nlp_put(ndlp))
5728 return 1;
James Smart98c9ea52007-10-27 13:37:33 -04005729 return 0;
5730}
James Smart6fb120a2009-05-22 14:52:59 -04005731
5732/**
5733 * lpfc_fcf_inuse - Check if FCF can be unregistered.
5734 * @phba: Pointer to hba context object.
5735 *
5736 * This function iterate through all FC nodes associated
5737 * will all vports to check if there is any node with
5738 * fc_rports associated with it. If there is an fc_rport
5739 * associated with the node, then the node is either in
5740 * discovered state or its devloss_timer is pending.
5741 */
5742static int
5743lpfc_fcf_inuse(struct lpfc_hba *phba)
5744{
5745 struct lpfc_vport **vports;
5746 int i, ret = 0;
5747 struct lpfc_nodelist *ndlp;
5748 struct Scsi_Host *shost;
5749
5750 vports = lpfc_create_vport_work_array(phba);
5751
James Smart63e801c2010-11-20 23:14:19 -05005752 /* If driver cannot allocate memory, indicate fcf is in use */
5753 if (!vports)
5754 return 1;
5755
James Smart6fb120a2009-05-22 14:52:59 -04005756 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
5757 shost = lpfc_shost_from_vport(vports[i]);
5758 spin_lock_irq(shost->host_lock);
James Smart05580562011-05-24 11:40:48 -04005759 /*
5760 * IF the CVL_RCVD bit is not set then we have sent the
5761 * flogi.
5762 * If dev_loss fires while we are waiting we do not want to
5763 * unreg the fcf.
5764 */
5765 if (!(vports[i]->fc_flag & FC_VPORT_CVL_RCVD)) {
5766 spin_unlock_irq(shost->host_lock);
5767 ret = 1;
5768 goto out;
5769 }
James Smart6fb120a2009-05-22 14:52:59 -04005770 list_for_each_entry(ndlp, &vports[i]->fc_nodes, nlp_listp) {
5771 if (NLP_CHK_NODE_ACT(ndlp) && ndlp->rport &&
5772 (ndlp->rport->roles & FC_RPORT_ROLE_FCP_TARGET)) {
5773 ret = 1;
5774 spin_unlock_irq(shost->host_lock);
5775 goto out;
James Smart80c17842012-03-01 22:35:45 -05005776 } else if (ndlp->nlp_flag & NLP_RPI_REGISTERED) {
5777 ret = 1;
James Smart891478a2009-11-18 15:40:23 -05005778 lpfc_printf_log(phba, KERN_INFO, LOG_ELS,
James Smart80c17842012-03-01 22:35:45 -05005779 "2624 RPI %x DID %x flag %x "
5780 "still logged in\n",
5781 ndlp->nlp_rpi, ndlp->nlp_DID,
5782 ndlp->nlp_flag);
James Smart6fb120a2009-05-22 14:52:59 -04005783 }
5784 }
5785 spin_unlock_irq(shost->host_lock);
5786 }
5787out:
5788 lpfc_destroy_vport_work_array(phba, vports);
5789 return ret;
5790}
5791
5792/**
5793 * lpfc_unregister_vfi_cmpl - Completion handler for unreg vfi.
5794 * @phba: Pointer to hba context object.
5795 * @mboxq: Pointer to mailbox object.
5796 *
5797 * This function frees memory associated with the mailbox command.
5798 */
James Smart1b511972011-12-13 13:23:09 -05005799void
James Smart6fb120a2009-05-22 14:52:59 -04005800lpfc_unregister_vfi_cmpl(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
5801{
5802 struct lpfc_vport *vport = mboxq->vport;
James Smart38b92ef2010-08-04 16:11:39 -04005803 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart6fb120a2009-05-22 14:52:59 -04005804
5805 if (mboxq->u.mb.mbxStatus) {
5806 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY|LOG_MBOX,
5807 "2555 UNREG_VFI mbxStatus error x%x "
5808 "HBA state x%x\n",
5809 mboxq->u.mb.mbxStatus, vport->port_state);
5810 }
James Smart38b92ef2010-08-04 16:11:39 -04005811 spin_lock_irq(shost->host_lock);
5812 phba->pport->fc_flag &= ~FC_VFI_REGISTERED;
5813 spin_unlock_irq(shost->host_lock);
James Smart6fb120a2009-05-22 14:52:59 -04005814 mempool_free(mboxq, phba->mbox_mem_pool);
5815 return;
5816}
5817
5818/**
5819 * lpfc_unregister_fcfi_cmpl - Completion handler for unreg fcfi.
5820 * @phba: Pointer to hba context object.
5821 * @mboxq: Pointer to mailbox object.
5822 *
5823 * This function frees memory associated with the mailbox command.
5824 */
5825static void
5826lpfc_unregister_fcfi_cmpl(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
5827{
5828 struct lpfc_vport *vport = mboxq->vport;
5829
5830 if (mboxq->u.mb.mbxStatus) {
5831 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY|LOG_MBOX,
5832 "2550 UNREG_FCFI mbxStatus error x%x "
5833 "HBA state x%x\n",
5834 mboxq->u.mb.mbxStatus, vport->port_state);
5835 }
5836 mempool_free(mboxq, phba->mbox_mem_pool);
5837 return;
5838}
5839
5840/**
James Smartecfd03c2010-02-12 14:41:27 -05005841 * lpfc_unregister_fcf_prep - Unregister fcf record preparation
James Smart6fb120a2009-05-22 14:52:59 -04005842 * @phba: Pointer to hba context object.
5843 *
James Smartecfd03c2010-02-12 14:41:27 -05005844 * This function prepare the HBA for unregistering the currently registered
5845 * FCF from the HBA. It performs unregistering, in order, RPIs, VPIs, and
5846 * VFIs.
James Smart6fb120a2009-05-22 14:52:59 -04005847 */
James Smartecfd03c2010-02-12 14:41:27 -05005848int
5849lpfc_unregister_fcf_prep(struct lpfc_hba *phba)
James Smart6fb120a2009-05-22 14:52:59 -04005850{
James Smart6fb120a2009-05-22 14:52:59 -04005851 struct lpfc_vport **vports;
James Smart695a8142010-01-26 23:08:03 -05005852 struct lpfc_nodelist *ndlp;
James Smart72100cc2010-02-12 14:43:01 -05005853 struct Scsi_Host *shost;
James Smartecfd03c2010-02-12 14:41:27 -05005854 int i, rc;
James Smart6fb120a2009-05-22 14:52:59 -04005855
James Smartecfd03c2010-02-12 14:41:27 -05005856 /* Unregister RPIs */
James Smart6fb120a2009-05-22 14:52:59 -04005857 if (lpfc_fcf_inuse(phba))
James Smartecfd03c2010-02-12 14:41:27 -05005858 lpfc_unreg_hba_rpis(phba);
James Smart6fb120a2009-05-22 14:52:59 -04005859
James Smart4d9ab992009-10-02 15:16:39 -04005860 /* At this point, all discovery is aborted */
5861 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
James Smart6fb120a2009-05-22 14:52:59 -04005862
5863 /* Unregister VPIs */
5864 vports = lpfc_create_vport_work_array(phba);
James Smartecfd03c2010-02-12 14:41:27 -05005865 if (vports && (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED))
James Smart6fb120a2009-05-22 14:52:59 -04005866 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
James Smart695a8142010-01-26 23:08:03 -05005867 /* Stop FLOGI/FDISC retries */
5868 ndlp = lpfc_findnode_did(vports[i], Fabric_DID);
5869 if (ndlp)
5870 lpfc_cancel_retry_delay_tmo(vports[i], ndlp);
James Smart78730cf2010-04-06 15:06:30 -04005871 lpfc_cleanup_pending_mbox(vports[i]);
James Smart5af5eee2010-10-22 11:06:38 -04005872 if (phba->sli_rev == LPFC_SLI_REV4)
5873 lpfc_sli4_unreg_all_rpis(vports[i]);
James Smart6fb120a2009-05-22 14:52:59 -04005874 lpfc_mbx_unreg_vpi(vports[i]);
James Smart72100cc2010-02-12 14:43:01 -05005875 shost = lpfc_shost_from_vport(vports[i]);
5876 spin_lock_irq(shost->host_lock);
James Smart891478a2009-11-18 15:40:23 -05005877 vports[i]->fc_flag |= FC_VPORT_NEEDS_INIT_VPI;
James Smartc8685952009-11-18 15:39:16 -05005878 vports[i]->vpi_state &= ~LPFC_VPI_REGISTERED;
James Smart72100cc2010-02-12 14:43:01 -05005879 spin_unlock_irq(shost->host_lock);
James Smart6fb120a2009-05-22 14:52:59 -04005880 }
5881 lpfc_destroy_vport_work_array(phba, vports);
5882
James Smart695a8142010-01-26 23:08:03 -05005883 /* Cleanup any outstanding ELS commands */
5884 lpfc_els_flush_all_cmd(phba);
5885
James Smart1b511972011-12-13 13:23:09 -05005886 /* Unregister the physical port VFI */
5887 rc = lpfc_issue_unreg_vfi(phba->pport);
5888 return rc;
James Smartecfd03c2010-02-12 14:41:27 -05005889}
5890
5891/**
5892 * lpfc_sli4_unregister_fcf - Unregister currently registered FCF record
5893 * @phba: Pointer to hba context object.
5894 *
5895 * This function issues synchronous unregister FCF mailbox command to HBA to
5896 * unregister the currently registered FCF record. The driver does not reset
5897 * the driver FCF usage state flags.
5898 *
5899 * Return 0 if successfully issued, none-zero otherwise.
5900 */
5901int
5902lpfc_sli4_unregister_fcf(struct lpfc_hba *phba)
5903{
5904 LPFC_MBOXQ_t *mbox;
5905 int rc;
5906
James Smart6fb120a2009-05-22 14:52:59 -04005907 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5908 if (!mbox) {
5909 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY|LOG_MBOX,
James Smartecfd03c2010-02-12 14:41:27 -05005910 "2551 UNREG_FCFI mbox allocation failed"
5911 "HBA state x%x\n", phba->pport->port_state);
5912 return -ENOMEM;
James Smart6fb120a2009-05-22 14:52:59 -04005913 }
James Smart6fb120a2009-05-22 14:52:59 -04005914 lpfc_unreg_fcfi(mbox, phba->fcf.fcfi);
5915 mbox->vport = phba->pport;
5916 mbox->mbox_cmpl = lpfc_unregister_fcfi_cmpl;
5917 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
5918
5919 if (rc == MBX_NOT_FINISHED) {
James Smartecfd03c2010-02-12 14:41:27 -05005920 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
5921 "2552 Unregister FCFI command failed rc x%x "
5922 "HBA state x%x\n",
5923 rc, phba->pport->port_state);
5924 return -EINVAL;
5925 }
5926 return 0;
5927}
5928
5929/**
5930 * lpfc_unregister_fcf_rescan - Unregister currently registered fcf and rescan
5931 * @phba: Pointer to hba context object.
5932 *
5933 * This function unregisters the currently reigstered FCF. This function
5934 * also tries to find another FCF for discovery by rescan the HBA FCF table.
5935 */
5936void
5937lpfc_unregister_fcf_rescan(struct lpfc_hba *phba)
5938{
5939 int rc;
5940
5941 /* Preparation for unregistering fcf */
5942 rc = lpfc_unregister_fcf_prep(phba);
5943 if (rc) {
5944 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY,
5945 "2748 Failed to prepare for unregistering "
5946 "HBA's FCF record: rc=%d\n", rc);
James Smart6fb120a2009-05-22 14:52:59 -04005947 return;
5948 }
5949
James Smartecfd03c2010-02-12 14:41:27 -05005950 /* Now, unregister FCF record and reset HBA FCF state */
5951 rc = lpfc_sli4_unregister_fcf(phba);
5952 if (rc)
5953 return;
5954 /* Reset HBA FCF states after successful unregister FCF */
5955 phba->fcf.fcf_flag = 0;
James Smartfc2b9892010-02-26 14:15:29 -05005956 phba->fcf.current_rec.flag = 0;
James Smart6fb120a2009-05-22 14:52:59 -04005957
5958 /*
5959 * If driver is not unloading, check if there is any other
5960 * FCF record that can be used for discovery.
5961 */
5962 if ((phba->pport->load_flag & FC_UNLOADING) ||
James Smartecfd03c2010-02-12 14:41:27 -05005963 (phba->link_state < LPFC_LINK_UP))
James Smart6fb120a2009-05-22 14:52:59 -04005964 return;
5965
James Smart0c9ab6f2010-02-26 14:15:57 -05005966 /* This is considered as the initial FCF discovery scan */
5967 spin_lock_irq(&phba->hbalock);
5968 phba->fcf.fcf_flag |= FCF_INIT_DISC;
5969 spin_unlock_irq(&phba->hbalock);
James Smart38b92ef2010-08-04 16:11:39 -04005970
5971 /* Reset FCF roundrobin bmask for new discovery */
James Smart7d791df2011-07-22 18:37:52 -04005972 lpfc_sli4_clear_fcf_rr_bmask(phba);
James Smart38b92ef2010-08-04 16:11:39 -04005973
James Smart0c9ab6f2010-02-26 14:15:57 -05005974 rc = lpfc_sli4_fcf_scan_read_fcf_rec(phba, LPFC_FCOE_FCF_GET_FIRST);
James Smart6fb120a2009-05-22 14:52:59 -04005975
James Smart0c9ab6f2010-02-26 14:15:57 -05005976 if (rc) {
5977 spin_lock_irq(&phba->hbalock);
5978 phba->fcf.fcf_flag &= ~FCF_INIT_DISC;
5979 spin_unlock_irq(&phba->hbalock);
James Smart6fb120a2009-05-22 14:52:59 -04005980 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY|LOG_MBOX,
James Smartecfd03c2010-02-12 14:41:27 -05005981 "2553 lpfc_unregister_unused_fcf failed "
5982 "to read FCF record HBA state x%x\n",
5983 phba->pport->port_state);
James Smart0c9ab6f2010-02-26 14:15:57 -05005984 }
James Smartecfd03c2010-02-12 14:41:27 -05005985}
5986
5987/**
5988 * lpfc_unregister_fcf - Unregister the currently registered fcf record
5989 * @phba: Pointer to hba context object.
5990 *
5991 * This function just unregisters the currently reigstered FCF. It does not
5992 * try to find another FCF for discovery.
5993 */
5994void
5995lpfc_unregister_fcf(struct lpfc_hba *phba)
5996{
5997 int rc;
5998
5999 /* Preparation for unregistering fcf */
6000 rc = lpfc_unregister_fcf_prep(phba);
6001 if (rc) {
6002 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY,
6003 "2749 Failed to prepare for unregistering "
6004 "HBA's FCF record: rc=%d\n", rc);
6005 return;
6006 }
6007
6008 /* Now, unregister FCF record and reset HBA FCF state */
6009 rc = lpfc_sli4_unregister_fcf(phba);
6010 if (rc)
6011 return;
6012 /* Set proper HBA FCF states after successful unregister FCF */
6013 spin_lock_irq(&phba->hbalock);
6014 phba->fcf.fcf_flag &= ~FCF_REGISTERED;
6015 spin_unlock_irq(&phba->hbalock);
6016}
6017
6018/**
6019 * lpfc_unregister_unused_fcf - Unregister FCF if all devices are disconnected.
6020 * @phba: Pointer to hba context object.
6021 *
6022 * This function check if there are any connected remote port for the FCF and
6023 * if all the devices are disconnected, this function unregister FCFI.
6024 * This function also tries to use another FCF for discovery.
6025 */
6026void
6027lpfc_unregister_unused_fcf(struct lpfc_hba *phba)
6028{
6029 /*
James Smart3804dc82010-07-14 15:31:37 -04006030 * If HBA is not running in FIP mode, if HBA does not support
6031 * FCoE, if FCF discovery is ongoing, or if FCF has not been
6032 * registered, do nothing.
James Smartecfd03c2010-02-12 14:41:27 -05006033 */
6034 spin_lock_irq(&phba->hbalock);
James Smart76a95d72010-11-20 23:11:48 -05006035 if (!(phba->hba_flag & HBA_FCOE_MODE) ||
James Smartecfd03c2010-02-12 14:41:27 -05006036 !(phba->fcf.fcf_flag & FCF_REGISTERED) ||
James Smartdbb6b3a2010-06-08 18:31:37 -04006037 !(phba->hba_flag & HBA_FIP_SUPPORT) ||
James Smart3804dc82010-07-14 15:31:37 -04006038 (phba->fcf.fcf_flag & FCF_DISCOVERY) ||
James Smartdbb6b3a2010-06-08 18:31:37 -04006039 (phba->pport->port_state == LPFC_FLOGI)) {
James Smartecfd03c2010-02-12 14:41:27 -05006040 spin_unlock_irq(&phba->hbalock);
6041 return;
6042 }
6043 spin_unlock_irq(&phba->hbalock);
6044
6045 if (lpfc_fcf_inuse(phba))
6046 return;
6047
6048 lpfc_unregister_fcf_rescan(phba);
James Smart6fb120a2009-05-22 14:52:59 -04006049}
6050
6051/**
6052 * lpfc_read_fcf_conn_tbl - Create driver FCF connection table.
6053 * @phba: Pointer to hba context object.
6054 * @buff: Buffer containing the FCF connection table as in the config
6055 * region.
6056 * This function create driver data structure for the FCF connection
6057 * record table read from config region 23.
6058 */
6059static void
6060lpfc_read_fcf_conn_tbl(struct lpfc_hba *phba,
6061 uint8_t *buff)
6062{
6063 struct lpfc_fcf_conn_entry *conn_entry, *next_conn_entry;
6064 struct lpfc_fcf_conn_hdr *conn_hdr;
6065 struct lpfc_fcf_conn_rec *conn_rec;
6066 uint32_t record_count;
6067 int i;
6068
6069 /* Free the current connect table */
6070 list_for_each_entry_safe(conn_entry, next_conn_entry,
James Smart4d9ab992009-10-02 15:16:39 -04006071 &phba->fcf_conn_rec_list, list) {
6072 list_del_init(&conn_entry->list);
James Smart6fb120a2009-05-22 14:52:59 -04006073 kfree(conn_entry);
James Smart4d9ab992009-10-02 15:16:39 -04006074 }
James Smart6fb120a2009-05-22 14:52:59 -04006075
6076 conn_hdr = (struct lpfc_fcf_conn_hdr *) buff;
6077 record_count = conn_hdr->length * sizeof(uint32_t)/
6078 sizeof(struct lpfc_fcf_conn_rec);
6079
6080 conn_rec = (struct lpfc_fcf_conn_rec *)
6081 (buff + sizeof(struct lpfc_fcf_conn_hdr));
6082
6083 for (i = 0; i < record_count; i++) {
6084 if (!(conn_rec[i].flags & FCFCNCT_VALID))
6085 continue;
6086 conn_entry = kzalloc(sizeof(struct lpfc_fcf_conn_entry),
6087 GFP_KERNEL);
6088 if (!conn_entry) {
6089 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6090 "2566 Failed to allocate connection"
6091 " table entry\n");
6092 return;
6093 }
6094
6095 memcpy(&conn_entry->conn_rec, &conn_rec[i],
6096 sizeof(struct lpfc_fcf_conn_rec));
6097 conn_entry->conn_rec.vlan_tag =
6098 le16_to_cpu(conn_entry->conn_rec.vlan_tag) & 0xFFF;
6099 conn_entry->conn_rec.flags =
6100 le16_to_cpu(conn_entry->conn_rec.flags);
6101 list_add_tail(&conn_entry->list,
6102 &phba->fcf_conn_rec_list);
6103 }
6104}
6105
6106/**
6107 * lpfc_read_fcoe_param - Read FCoe parameters from conf region..
6108 * @phba: Pointer to hba context object.
6109 * @buff: Buffer containing the FCoE parameter data structure.
6110 *
6111 * This function update driver data structure with config
6112 * parameters read from config region 23.
6113 */
6114static void
6115lpfc_read_fcoe_param(struct lpfc_hba *phba,
6116 uint8_t *buff)
6117{
6118 struct lpfc_fip_param_hdr *fcoe_param_hdr;
6119 struct lpfc_fcoe_params *fcoe_param;
6120
6121 fcoe_param_hdr = (struct lpfc_fip_param_hdr *)
6122 buff;
6123 fcoe_param = (struct lpfc_fcoe_params *)
James Smart32b97932009-07-19 10:01:21 -04006124 (buff + sizeof(struct lpfc_fip_param_hdr));
James Smart6fb120a2009-05-22 14:52:59 -04006125
6126 if ((fcoe_param_hdr->parm_version != FIPP_VERSION) ||
6127 (fcoe_param_hdr->length != FCOE_PARAM_LENGTH))
6128 return;
6129
James Smart6fb120a2009-05-22 14:52:59 -04006130 if (fcoe_param_hdr->parm_flags & FIPP_VLAN_VALID) {
6131 phba->valid_vlan = 1;
6132 phba->vlan_id = le16_to_cpu(fcoe_param->vlan_tag) &
6133 0xFFF;
6134 }
6135
6136 phba->fc_map[0] = fcoe_param->fc_map[0];
6137 phba->fc_map[1] = fcoe_param->fc_map[1];
6138 phba->fc_map[2] = fcoe_param->fc_map[2];
6139 return;
6140}
6141
6142/**
6143 * lpfc_get_rec_conf23 - Get a record type in config region data.
6144 * @buff: Buffer containing config region 23 data.
6145 * @size: Size of the data buffer.
6146 * @rec_type: Record type to be searched.
6147 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03006148 * This function searches config region data to find the beginning
James Smart6fb120a2009-05-22 14:52:59 -04006149 * of the record specified by record_type. If record found, this
6150 * function return pointer to the record else return NULL.
6151 */
6152static uint8_t *
6153lpfc_get_rec_conf23(uint8_t *buff, uint32_t size, uint8_t rec_type)
6154{
6155 uint32_t offset = 0, rec_length;
6156
6157 if ((buff[0] == LPFC_REGION23_LAST_REC) ||
6158 (size < sizeof(uint32_t)))
6159 return NULL;
6160
6161 rec_length = buff[offset + 1];
6162
6163 /*
6164 * One TLV record has one word header and number of data words
6165 * specified in the rec_length field of the record header.
6166 */
6167 while ((offset + rec_length * sizeof(uint32_t) + sizeof(uint32_t))
6168 <= size) {
6169 if (buff[offset] == rec_type)
6170 return &buff[offset];
6171
6172 if (buff[offset] == LPFC_REGION23_LAST_REC)
6173 return NULL;
6174
6175 offset += rec_length * sizeof(uint32_t) + sizeof(uint32_t);
6176 rec_length = buff[offset + 1];
6177 }
6178 return NULL;
6179}
6180
6181/**
6182 * lpfc_parse_fcoe_conf - Parse FCoE config data read from config region 23.
6183 * @phba: Pointer to lpfc_hba data structure.
6184 * @buff: Buffer containing config region 23 data.
6185 * @size: Size of the data buffer.
6186 *
Stefan Weileef35c22010-08-06 21:11:15 +02006187 * This function parses the FCoE config parameters in config region 23 and
James Smart6fb120a2009-05-22 14:52:59 -04006188 * populate driver data structure with the parameters.
6189 */
6190void
6191lpfc_parse_fcoe_conf(struct lpfc_hba *phba,
6192 uint8_t *buff,
6193 uint32_t size)
6194{
6195 uint32_t offset = 0, rec_length;
6196 uint8_t *rec_ptr;
6197
6198 /*
6199 * If data size is less than 2 words signature and version cannot be
6200 * verified.
6201 */
6202 if (size < 2*sizeof(uint32_t))
6203 return;
6204
6205 /* Check the region signature first */
6206 if (memcmp(buff, LPFC_REGION23_SIGNATURE, 4)) {
6207 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6208 "2567 Config region 23 has bad signature\n");
6209 return;
6210 }
6211
6212 offset += 4;
6213
6214 /* Check the data structure version */
6215 if (buff[offset] != LPFC_REGION23_VERSION) {
6216 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6217 "2568 Config region 23 has bad version\n");
6218 return;
6219 }
6220 offset += 4;
6221
6222 rec_length = buff[offset + 1];
6223
6224 /* Read FCoE param record */
6225 rec_ptr = lpfc_get_rec_conf23(&buff[offset],
6226 size - offset, FCOE_PARAM_TYPE);
6227 if (rec_ptr)
6228 lpfc_read_fcoe_param(phba, rec_ptr);
6229
6230 /* Read FCF connection table */
6231 rec_ptr = lpfc_get_rec_conf23(&buff[offset],
6232 size - offset, FCOE_CONN_TBL_TYPE);
6233 if (rec_ptr)
6234 lpfc_read_fcf_conn_tbl(phba, rec_ptr);
6235
6236}