blob: ea27bbb81552bbf29a8ae20cf74a0557968f485d [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 Smart9413aff2007-04-25 09:53:35 -04004 * Copyright (C) 2004-2007 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>
23#include <linux/pci.h>
24#include <linux/kthread.h>
25#include <linux/interrupt.h>
26
James.Smart@Emulex.Com91886522005-08-10 15:03:09 -040027#include <scsi/scsi.h>
dea31012005-04-17 16:05:31 -050028#include <scsi/scsi_device.h>
29#include <scsi/scsi_host.h>
30#include <scsi/scsi_transport_fc.h>
31
32#include "lpfc_hw.h"
33#include "lpfc_disc.h"
34#include "lpfc_sli.h"
35#include "lpfc_scsi.h"
36#include "lpfc.h"
37#include "lpfc_logmsg.h"
38#include "lpfc_crtn.h"
James Smart92d7f7b2007-06-17 19:56:38 -050039#include "lpfc_vport.h"
James Smart858c9f62007-06-17 19:56:39 -050040#include "lpfc_debugfs.h"
dea31012005-04-17 16:05:31 -050041
42/* AlpaArray for assignment of scsid for scan-down and bind_method */
43static uint8_t lpfcAlpaArray[] = {
44 0xEF, 0xE8, 0xE4, 0xE2, 0xE1, 0xE0, 0xDC, 0xDA, 0xD9, 0xD6,
45 0xD5, 0xD4, 0xD3, 0xD2, 0xD1, 0xCE, 0xCD, 0xCC, 0xCB, 0xCA,
46 0xC9, 0xC7, 0xC6, 0xC5, 0xC3, 0xBC, 0xBA, 0xB9, 0xB6, 0xB5,
47 0xB4, 0xB3, 0xB2, 0xB1, 0xAE, 0xAD, 0xAC, 0xAB, 0xAA, 0xA9,
48 0xA7, 0xA6, 0xA5, 0xA3, 0x9F, 0x9E, 0x9D, 0x9B, 0x98, 0x97,
49 0x90, 0x8F, 0x88, 0x84, 0x82, 0x81, 0x80, 0x7C, 0x7A, 0x79,
50 0x76, 0x75, 0x74, 0x73, 0x72, 0x71, 0x6E, 0x6D, 0x6C, 0x6B,
51 0x6A, 0x69, 0x67, 0x66, 0x65, 0x63, 0x5C, 0x5A, 0x59, 0x56,
52 0x55, 0x54, 0x53, 0x52, 0x51, 0x4E, 0x4D, 0x4C, 0x4B, 0x4A,
53 0x49, 0x47, 0x46, 0x45, 0x43, 0x3C, 0x3A, 0x39, 0x36, 0x35,
54 0x34, 0x33, 0x32, 0x31, 0x2E, 0x2D, 0x2C, 0x2B, 0x2A, 0x29,
55 0x27, 0x26, 0x25, 0x23, 0x1F, 0x1E, 0x1D, 0x1B, 0x18, 0x17,
56 0x10, 0x0F, 0x08, 0x04, 0x02, 0x01
57};
58
James Smart2e0fef82007-06-17 19:56:36 -050059static void lpfc_disc_timeout_handler(struct lpfc_vport *);
dea31012005-04-17 16:05:31 -050060
James Smartc01f3202006-08-18 17:47:08 -040061void
62lpfc_terminate_rport_io(struct fc_rport *rport)
dea31012005-04-17 16:05:31 -050063{
James Smartc01f3202006-08-18 17:47:08 -040064 struct lpfc_rport_data *rdata;
65 struct lpfc_nodelist * ndlp;
66 struct lpfc_hba *phba;
dea31012005-04-17 16:05:31 -050067
James Smartc01f3202006-08-18 17:47:08 -040068 rdata = rport->dd_data;
69 ndlp = rdata->pnode;
70
71 if (!ndlp) {
72 if (rport->roles & FC_RPORT_ROLE_FCP_TARGET)
73 printk(KERN_ERR "Cannot find remote node"
74 " to terminate I/O Data x%x\n",
75 rport->port_id);
dea31012005-04-17 16:05:31 -050076 return;
77 }
78
James Smart2e0fef82007-06-17 19:56:36 -050079 phba = ndlp->vport->phba;
James Smart1a169682006-03-07 15:04:06 -050080
James Smart858c9f62007-06-17 19:56:39 -050081 lpfc_debugfs_disc_trc(ndlp->vport, LPFC_DISC_TRC_RPORT,
82 "rport terminate: sid:x%x did:x%x flg:x%x",
83 ndlp->nlp_sid, ndlp->nlp_DID, ndlp->nlp_flag);
84
James Smartc01f3202006-08-18 17:47:08 -040085 if (ndlp->nlp_sid != NLP_NO_SID) {
86 lpfc_sli_abort_iocb(phba, &phba->sli.ring[phba->sli.fcp_ring],
87 ndlp->nlp_sid, 0, 0, LPFC_CTX_TGT);
88 }
James Smartc01f3202006-08-18 17:47:08 -040089
90 return;
91}
92
93/*
94 * This function will be called when dev_loss_tmo fire.
95 */
96void
97lpfc_dev_loss_tmo_callbk(struct fc_rport *rport)
98{
99 struct lpfc_rport_data *rdata;
100 struct lpfc_nodelist * ndlp;
James Smart2e0fef82007-06-17 19:56:36 -0500101 struct lpfc_vport *vport;
James Smart858c9f62007-06-17 19:56:39 -0500102 struct lpfc_hba *phba;
103 struct completion devloss_compl;
104 struct lpfc_work_evt *evtp;
James Smartc01f3202006-08-18 17:47:08 -0400105
106 rdata = rport->dd_data;
107 ndlp = rdata->pnode;
108
109 if (!ndlp) {
James Smart92d7f7b2007-06-17 19:56:38 -0500110 if (rport->scsi_target_id != -1) {
James Smartc01f3202006-08-18 17:47:08 -0400111 printk(KERN_ERR "Cannot find remote node"
James Smart92d7f7b2007-06-17 19:56:38 -0500112 " for rport in dev_loss_tmo_callbk x%x\n",
113 rport->port_id);
114 }
James Smartc01f3202006-08-18 17:47:08 -0400115 return;
116 }
117
James Smart858c9f62007-06-17 19:56:39 -0500118 vport = ndlp->vport;
119 phba = vport->phba;
120
121 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_RPORT,
122 "rport devlosscb: sid:x%x did:x%x flg:x%x",
123 ndlp->nlp_sid, ndlp->nlp_DID, ndlp->nlp_flag);
124
125 init_completion(&devloss_compl);
126 evtp = &ndlp->dev_loss_evt;
127
128 if (!list_empty(&evtp->evt_listp))
129 return;
130
131 spin_lock_irq(&phba->hbalock);
132 evtp->evt_arg1 = ndlp;
133 evtp->evt_arg2 = &devloss_compl;
134 evtp->evt = LPFC_EVT_DEV_LOSS;
135 list_add_tail(&evtp->evt_listp, &phba->work_list);
136 if (phba->work_wait)
137 wake_up(phba->work_wait);
138
139 spin_unlock_irq(&phba->hbalock);
140
141 wait_for_completion(&devloss_compl);
142
143 return;
144}
145
146/*
147 * This function is called from the worker thread when dev_loss_tmo
148 * expire.
149 */
150void
151lpfc_dev_loss_tmo_handler(struct lpfc_nodelist *ndlp)
152{
153 struct lpfc_rport_data *rdata;
154 struct fc_rport *rport;
155 struct lpfc_vport *vport;
156 struct lpfc_hba *phba;
157 uint8_t *name;
158 int warn_on = 0;
159
160 rport = ndlp->rport;
161
162 if (!rport)
163 return;
164
165 rdata = rport->dd_data;
166 name = (uint8_t *) &ndlp->nlp_portname;
167 vport = ndlp->vport;
168 phba = vport->phba;
169
170 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_RPORT,
171 "rport devlosstmo:did:x%x type:x%x id:x%x",
172 ndlp->nlp_DID, ndlp->nlp_type, rport->scsi_target_id);
173
174 if (!(vport->load_flag & FC_UNLOADING) &&
175 ndlp->nlp_state == NLP_STE_MAPPED_NODE)
176 return;
177
James Smart92d7f7b2007-06-17 19:56:38 -0500178 if (ndlp->nlp_type & NLP_FABRIC) {
James Smart858c9f62007-06-17 19:56:39 -0500179 int put_node;
180 int put_rport;
181
James Smart92d7f7b2007-06-17 19:56:38 -0500182 /* We will clean up these Nodes in linkup */
183 put_node = rdata->pnode != NULL;
184 put_rport = ndlp->rport != NULL;
185 rdata->pnode = NULL;
186 ndlp->rport = NULL;
187 if (put_node)
188 lpfc_nlp_put(ndlp);
189 if (put_rport)
190 put_device(&rport->dev);
James Smart82085712007-04-25 09:52:41 -0400191 return;
James Smart92d7f7b2007-06-17 19:56:38 -0500192 }
James Smart82085712007-04-25 09:52:41 -0400193
dea31012005-04-17 16:05:31 -0500194 if (ndlp->nlp_sid != NLP_NO_SID) {
James.Smart@Emulex.Com6e8215e2005-06-25 10:34:04 -0400195 warn_on = 1;
dea31012005-04-17 16:05:31 -0500196 /* flush the target */
197 lpfc_sli_abort_iocb(phba, &phba->sli.ring[phba->sli.fcp_ring],
James Smart92d7f7b2007-06-17 19:56:38 -0500198 ndlp->nlp_sid, 0, 0, LPFC_CTX_TGT);
dea31012005-04-17 16:05:31 -0500199 }
James Smart2e0fef82007-06-17 19:56:36 -0500200 if (vport->load_flag & FC_UNLOADING)
James Smartc01f3202006-08-18 17:47:08 -0400201 warn_on = 0;
202
James.Smart@Emulex.Com6e8215e2005-06-25 10:34:04 -0400203 if (warn_on) {
204 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY,
James Smart92d7f7b2007-06-17 19:56:38 -0500205 "%d (%d):0203 Devloss timeout on "
James Smart488d1462006-03-07 15:02:37 -0500206 "WWPN %x:%x:%x:%x:%x:%x:%x:%x "
207 "NPort x%x Data: x%x x%x x%x\n",
James Smart92d7f7b2007-06-17 19:56:38 -0500208 phba->brd_no, vport->vpi,
James Smart488d1462006-03-07 15:02:37 -0500209 *name, *(name+1), *(name+2), *(name+3),
210 *(name+4), *(name+5), *(name+6), *(name+7),
211 ndlp->nlp_DID, ndlp->nlp_flag,
James.Smart@Emulex.Com6e8215e2005-06-25 10:34:04 -0400212 ndlp->nlp_state, ndlp->nlp_rpi);
213 } else {
214 lpfc_printf_log(phba, KERN_INFO, LOG_DISCOVERY,
James Smart92d7f7b2007-06-17 19:56:38 -0500215 "%d (%d):0204 Devloss timeout on "
James Smart488d1462006-03-07 15:02:37 -0500216 "WWPN %x:%x:%x:%x:%x:%x:%x:%x "
217 "NPort x%x Data: x%x x%x x%x\n",
James Smart92d7f7b2007-06-17 19:56:38 -0500218 phba->brd_no, vport->vpi,
James Smart488d1462006-03-07 15:02:37 -0500219 *name, *(name+1), *(name+2), *(name+3),
220 *(name+4), *(name+5), *(name+6), *(name+7),
221 ndlp->nlp_DID, ndlp->nlp_flag,
James.Smart@Emulex.Com6e8215e2005-06-25 10:34:04 -0400222 ndlp->nlp_state, ndlp->nlp_rpi);
223 }
224
James Smart2e0fef82007-06-17 19:56:36 -0500225 if (!(vport->load_flag & FC_UNLOADING) &&
James Smart1dcb58e2007-04-25 09:51:30 -0400226 !(ndlp->nlp_flag & NLP_DELAY_TMO) &&
James Smart82085712007-04-25 09:52:41 -0400227 !(ndlp->nlp_flag & NLP_NPR_2B_DISC) &&
228 (ndlp->nlp_state != NLP_STE_UNMAPPED_NODE))
James Smart2e0fef82007-06-17 19:56:36 -0500229 lpfc_disc_state_machine(vport, ndlp, NULL, NLP_EVT_DEVICE_RM);
James Smart1dcb58e2007-04-25 09:51:30 -0400230 else {
James Smart858c9f62007-06-17 19:56:39 -0500231 int put_node;
232 int put_rport;
233
James Smart92d7f7b2007-06-17 19:56:38 -0500234 put_node = rdata->pnode != NULL;
235 put_rport = ndlp->rport != NULL;
James Smart1dcb58e2007-04-25 09:51:30 -0400236 rdata->pnode = NULL;
237 ndlp->rport = NULL;
James Smart92d7f7b2007-06-17 19:56:38 -0500238 if (put_node)
239 lpfc_nlp_put(ndlp);
240 if (put_rport)
241 put_device(&rport->dev);
James Smart1dcb58e2007-04-25 09:51:30 -0400242 }
James Smart92d7f7b2007-06-17 19:56:38 -0500243}
James Smartc01f3202006-08-18 17:47:08 -0400244
James Smart92d7f7b2007-06-17 19:56:38 -0500245
246void
247lpfc_worker_wake_up(struct lpfc_hba *phba)
248{
249 wake_up(phba->work_wait);
dea31012005-04-17 16:05:31 -0500250 return;
251}
252
253static void
James Smart2e0fef82007-06-17 19:56:36 -0500254lpfc_work_list_done(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -0500255{
256 struct lpfc_work_evt *evtp = NULL;
257 struct lpfc_nodelist *ndlp;
James Smart92d7f7b2007-06-17 19:56:38 -0500258 struct lpfc_vport *vport;
dea31012005-04-17 16:05:31 -0500259 int free_evt;
260
James Smart2e0fef82007-06-17 19:56:36 -0500261 spin_lock_irq(&phba->hbalock);
262 while (!list_empty(&phba->work_list)) {
dea31012005-04-17 16:05:31 -0500263 list_remove_head((&phba->work_list), evtp, typeof(*evtp),
264 evt_listp);
James Smart2e0fef82007-06-17 19:56:36 -0500265 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -0500266 free_evt = 1;
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -0500267 switch (evtp->evt) {
James Smart858c9f62007-06-17 19:56:39 -0500268 case LPFC_EVT_DEV_LOSS_DELAY:
James Smart92d7f7b2007-06-17 19:56:38 -0500269 free_evt = 0; /* evt is part of ndlp */
270 ndlp = (struct lpfc_nodelist *) (evtp->evt_arg1);
271 vport = ndlp->vport;
272 if (!vport)
273 break;
James Smart858c9f62007-06-17 19:56:39 -0500274
275 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_RPORT,
276 "rport devlossdly:did:x%x flg:x%x",
277 ndlp->nlp_DID, ndlp->nlp_flag, 0);
278
James Smart92d7f7b2007-06-17 19:56:38 -0500279 if (!(vport->load_flag & FC_UNLOADING) &&
280 !(ndlp->nlp_flag & NLP_DELAY_TMO) &&
281 !(ndlp->nlp_flag & NLP_NPR_2B_DISC)) {
282 lpfc_disc_state_machine(vport, ndlp, NULL,
283 NLP_EVT_DEVICE_RM);
284 }
285 break;
dea31012005-04-17 16:05:31 -0500286 case LPFC_EVT_ELS_RETRY:
James Smart2e0fef82007-06-17 19:56:36 -0500287 ndlp = (struct lpfc_nodelist *) (evtp->evt_arg1);
dea31012005-04-17 16:05:31 -0500288 lpfc_els_retry_delay_handler(ndlp);
James Smart92d7f7b2007-06-17 19:56:38 -0500289 free_evt = 0; /* evt is part of ndlp */
dea31012005-04-17 16:05:31 -0500290 break;
James Smart858c9f62007-06-17 19:56:39 -0500291 case LPFC_EVT_DEV_LOSS:
292 ndlp = (struct lpfc_nodelist *)(evtp->evt_arg1);
293 lpfc_nlp_get(ndlp);
294 lpfc_dev_loss_tmo_handler(ndlp);
295 free_evt = 0;
296 complete((struct completion *)(evtp->evt_arg2));
297 lpfc_nlp_put(ndlp);
298 break;
dea31012005-04-17 16:05:31 -0500299 case LPFC_EVT_ONLINE:
James Smart2e0fef82007-06-17 19:56:36 -0500300 if (phba->link_state < LPFC_LINK_DOWN)
301 *(int *) (evtp->evt_arg1) = lpfc_online(phba);
Jamie Wellnitz41415862006-02-28 19:25:27 -0500302 else
James Smart2e0fef82007-06-17 19:56:36 -0500303 *(int *) (evtp->evt_arg1) = 0;
dea31012005-04-17 16:05:31 -0500304 complete((struct completion *)(evtp->evt_arg2));
305 break;
James Smart46fa3112007-04-25 09:51:45 -0400306 case LPFC_EVT_OFFLINE_PREP:
James Smart2e0fef82007-06-17 19:56:36 -0500307 if (phba->link_state >= LPFC_LINK_DOWN)
James Smart46fa3112007-04-25 09:51:45 -0400308 lpfc_offline_prep(phba);
309 *(int *)(evtp->evt_arg1) = 0;
310 complete((struct completion *)(evtp->evt_arg2));
311 break;
312 case LPFC_EVT_OFFLINE:
313 lpfc_offline(phba);
Jamie Wellnitz41415862006-02-28 19:25:27 -0500314 lpfc_sli_brdrestart(phba);
315 *(int *)(evtp->evt_arg1) =
James Smart46fa3112007-04-25 09:51:45 -0400316 lpfc_sli_brdready(phba, HS_FFRDY | HS_MBRDY);
317 lpfc_unblock_mgmt_io(phba);
Jamie Wellnitz41415862006-02-28 19:25:27 -0500318 complete((struct completion *)(evtp->evt_arg2));
319 break;
320 case LPFC_EVT_WARM_START:
James Smart46fa3112007-04-25 09:51:45 -0400321 lpfc_offline(phba);
James Smart92908312006-03-07 15:04:13 -0500322 lpfc_reset_barrier(phba);
Jamie Wellnitz41415862006-02-28 19:25:27 -0500323 lpfc_sli_brdreset(phba);
324 lpfc_hba_down_post(phba);
325 *(int *)(evtp->evt_arg1) =
326 lpfc_sli_brdready(phba, HS_MBRDY);
James Smart46fa3112007-04-25 09:51:45 -0400327 lpfc_unblock_mgmt_io(phba);
Jamie Wellnitz41415862006-02-28 19:25:27 -0500328 complete((struct completion *)(evtp->evt_arg2));
329 break;
330 case LPFC_EVT_KILL:
James Smart46fa3112007-04-25 09:51:45 -0400331 lpfc_offline(phba);
James Smart92908312006-03-07 15:04:13 -0500332 *(int *)(evtp->evt_arg1)
James Smart2e0fef82007-06-17 19:56:36 -0500333 = (phba->pport->stopped)
334 ? 0 : lpfc_sli_brdkill(phba);
James Smart46fa3112007-04-25 09:51:45 -0400335 lpfc_unblock_mgmt_io(phba);
dea31012005-04-17 16:05:31 -0500336 complete((struct completion *)(evtp->evt_arg2));
337 break;
338 }
339 if (free_evt)
340 kfree(evtp);
James Smart2e0fef82007-06-17 19:56:36 -0500341 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -0500342 }
James Smart2e0fef82007-06-17 19:56:36 -0500343 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -0500344
345}
346
James Smart858c9f62007-06-17 19:56:39 -0500347void
James Smart2e0fef82007-06-17 19:56:36 -0500348lpfc_work_done(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -0500349{
350 struct lpfc_sli_ring *pring;
James Smart858c9f62007-06-17 19:56:39 -0500351 uint32_t ha_copy, status, control, work_port_events;
James Smart2e0fef82007-06-17 19:56:36 -0500352 struct lpfc_vport *vport;
dea31012005-04-17 16:05:31 -0500353
James Smart2e0fef82007-06-17 19:56:36 -0500354 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -0500355 ha_copy = phba->work_ha;
356 phba->work_ha = 0;
James Smart2e0fef82007-06-17 19:56:36 -0500357 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -0500358
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -0500359 if (ha_copy & HA_ERATT)
dea31012005-04-17 16:05:31 -0500360 lpfc_handle_eratt(phba);
361
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -0500362 if (ha_copy & HA_MBATT)
dea31012005-04-17 16:05:31 -0500363 lpfc_sli_handle_mb_event(phba);
364
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -0500365 if (ha_copy & HA_LATT)
dea31012005-04-17 16:05:31 -0500366 lpfc_handle_latt(phba);
367
James Smart2e0fef82007-06-17 19:56:36 -0500368 spin_lock_irq(&phba->hbalock);
James Smart92d7f7b2007-06-17 19:56:38 -0500369 list_for_each_entry(vport, &phba->port_list, listentry) {
370 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
371
372 if (!scsi_host_get(shost)) {
373 continue;
374 }
375 spin_unlock_irq(&phba->hbalock);
376 work_port_events = vport->work_port_events;
377
378 if (work_port_events & WORKER_DISC_TMO)
379 lpfc_disc_timeout_handler(vport);
380
381 if (work_port_events & WORKER_ELS_TMO)
382 lpfc_els_timeout_handler(vport);
383
James Smart858c9f62007-06-17 19:56:39 -0500384 if (work_port_events & WORKER_HB_TMO)
385 lpfc_hb_timeout_handler(phba);
386
James Smart92d7f7b2007-06-17 19:56:38 -0500387 if (work_port_events & WORKER_MBOX_TMO)
388 lpfc_mbox_timeout_handler(phba);
389
390 if (work_port_events & WORKER_FABRIC_BLOCK_TMO)
391 lpfc_unblock_fabric_iocbs(phba);
392
393 if (work_port_events & WORKER_FDMI_TMO)
394 lpfc_fdmi_timeout_handler(vport);
395
396 if (work_port_events & WORKER_RAMP_DOWN_QUEUE)
397 lpfc_ramp_down_queue_handler(phba);
398
399 if (work_port_events & WORKER_RAMP_UP_QUEUE)
400 lpfc_ramp_up_queue_handler(phba);
401
402 spin_lock_irq(&vport->work_port_lock);
403 vport->work_port_events &= ~work_port_events;
404 spin_unlock_irq(&vport->work_port_lock);
405 scsi_host_put(shost);
406 spin_lock_irq(&phba->hbalock);
407 }
James Smart2e0fef82007-06-17 19:56:36 -0500408 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -0500409
James Smart858c9f62007-06-17 19:56:39 -0500410 pring = &phba->sli.ring[LPFC_ELS_RING];
411 status = (ha_copy & (HA_RXMASK << (4*LPFC_ELS_RING)));
412 status >>= (4*LPFC_ELS_RING);
413 if ((status & HA_RXMASK)
414 || (pring->flag & LPFC_DEFERRED_RING_EVENT)) {
415 if (pring->flag & LPFC_STOP_IOCB_MASK) {
416 pring->flag |= LPFC_DEFERRED_RING_EVENT;
417 } else {
418 lpfc_sli_handle_slow_ring_event(phba, pring,
419 (status &
420 HA_RXMASK));
421 pring->flag &= ~LPFC_DEFERRED_RING_EVENT;
422 }
423 /*
424 * Turn on Ring interrupts
425 */
426 spin_lock_irq(&phba->hbalock);
427 control = readl(phba->HCregaddr);
428 if (!(control & (HC_R0INT_ENA << LPFC_ELS_RING))) {
James Smarta58cbd52007-08-02 11:09:43 -0400429 lpfc_debugfs_slow_ring_trc(phba,
430 "WRK Enable ring: cntl:x%x hacopy:x%x",
431 control, ha_copy, 0);
432
James Smart858c9f62007-06-17 19:56:39 -0500433 control |= (HC_R0INT_ENA << LPFC_ELS_RING);
dea31012005-04-17 16:05:31 -0500434 writel(control, phba->HCregaddr);
435 readl(phba->HCregaddr); /* flush */
dea31012005-04-17 16:05:31 -0500436 }
James Smarta58cbd52007-08-02 11:09:43 -0400437 else {
438 lpfc_debugfs_slow_ring_trc(phba,
439 "WRK Ring ok: cntl:x%x hacopy:x%x",
440 control, ha_copy, 0);
441 }
James Smart858c9f62007-06-17 19:56:39 -0500442 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -0500443 }
James Smart2e0fef82007-06-17 19:56:36 -0500444 lpfc_work_list_done(phba);
dea31012005-04-17 16:05:31 -0500445}
446
447static int
James Smart2e0fef82007-06-17 19:56:36 -0500448check_work_wait_done(struct lpfc_hba *phba)
449{
James Smart92d7f7b2007-06-17 19:56:38 -0500450 struct lpfc_vport *vport;
451 struct lpfc_sli_ring *pring;
James Smart858c9f62007-06-17 19:56:39 -0500452 int rc = 0;
James Smarted957682007-06-17 19:56:37 -0500453
James Smart2e0fef82007-06-17 19:56:36 -0500454 spin_lock_irq(&phba->hbalock);
James Smart92d7f7b2007-06-17 19:56:38 -0500455 list_for_each_entry(vport, &phba->port_list, listentry) {
456 if (vport->work_port_events) {
457 rc = 1;
458 goto exit;
459 }
460 }
James Smart2e0fef82007-06-17 19:56:36 -0500461
James Smart92d7f7b2007-06-17 19:56:38 -0500462 if (phba->work_ha || (!list_empty(&phba->work_list)) ||
463 kthread_should_stop()) {
James Smart2e0fef82007-06-17 19:56:36 -0500464 rc = 1;
James Smart92d7f7b2007-06-17 19:56:38 -0500465 goto exit;
466 }
James Smart858c9f62007-06-17 19:56:39 -0500467
468 pring = &phba->sli.ring[LPFC_ELS_RING];
469 if (pring->flag & LPFC_DEFERRED_RING_EVENT)
470 rc = 1;
James Smart92d7f7b2007-06-17 19:56:38 -0500471exit:
472 if (rc)
473 phba->work_found++;
474 else
475 phba->work_found = 0;
James Smart2e0fef82007-06-17 19:56:36 -0500476
477 spin_unlock_irq(&phba->hbalock);
478 return rc;
dea31012005-04-17 16:05:31 -0500479}
480
James Smart92d7f7b2007-06-17 19:56:38 -0500481
dea31012005-04-17 16:05:31 -0500482int
483lpfc_do_work(void *p)
484{
485 struct lpfc_hba *phba = p;
486 int rc;
Peter Zijlstra7259f0d2006-10-29 22:46:36 -0800487 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(work_waitq);
dea31012005-04-17 16:05:31 -0500488
489 set_user_nice(current, -20);
490 phba->work_wait = &work_waitq;
James Smart92d7f7b2007-06-17 19:56:38 -0500491 phba->work_found = 0;
dea31012005-04-17 16:05:31 -0500492
493 while (1) {
494
495 rc = wait_event_interruptible(work_waitq,
James Smart92d7f7b2007-06-17 19:56:38 -0500496 check_work_wait_done(phba));
497
dea31012005-04-17 16:05:31 -0500498 BUG_ON(rc);
499
500 if (kthread_should_stop())
501 break;
502
503 lpfc_work_done(phba);
504
James Smart92d7f7b2007-06-17 19:56:38 -0500505 /* If there is alot of slow ring work, like during link up
506 * check_work_wait_done() may cause this thread to not give
507 * up the CPU for very long periods of time. This may cause
508 * soft lockups or other problems. To avoid these situations
509 * give up the CPU here after LPFC_MAX_WORKER_ITERATION
510 * consecutive iterations.
511 */
512 if (phba->work_found >= LPFC_MAX_WORKER_ITERATION) {
513 phba->work_found = 0;
514 schedule();
515 }
dea31012005-04-17 16:05:31 -0500516 }
517 phba->work_wait = NULL;
518 return 0;
519}
520
521/*
522 * This is only called to handle FC worker events. Since this a rare
523 * occurance, we allocate a struct lpfc_work_evt structure here instead of
524 * embedding it in the IOCB.
525 */
526int
James Smart2e0fef82007-06-17 19:56:36 -0500527lpfc_workq_post_event(struct lpfc_hba *phba, void *arg1, void *arg2,
dea31012005-04-17 16:05:31 -0500528 uint32_t evt)
529{
530 struct lpfc_work_evt *evtp;
James Smarted957682007-06-17 19:56:37 -0500531 unsigned long flags;
dea31012005-04-17 16:05:31 -0500532
533 /*
534 * All Mailbox completions and LPFC_ELS_RING rcv ring IOCB events will
535 * be queued to worker thread for processing
536 */
James Smart92d7f7b2007-06-17 19:56:38 -0500537 evtp = kmalloc(sizeof(struct lpfc_work_evt), GFP_ATOMIC);
dea31012005-04-17 16:05:31 -0500538 if (!evtp)
539 return 0;
540
541 evtp->evt_arg1 = arg1;
542 evtp->evt_arg2 = arg2;
543 evtp->evt = evt;
544
James Smarted957682007-06-17 19:56:37 -0500545 spin_lock_irqsave(&phba->hbalock, flags);
James Smart071fbd3d2006-04-15 11:53:20 -0400546 list_add_tail(&evtp->evt_listp, &phba->work_list);
dea31012005-04-17 16:05:31 -0500547 if (phba->work_wait)
James Smart92d7f7b2007-06-17 19:56:38 -0500548 lpfc_worker_wake_up(phba);
James Smarted957682007-06-17 19:56:37 -0500549 spin_unlock_irqrestore(&phba->hbalock, flags);
dea31012005-04-17 16:05:31 -0500550
551 return 1;
552}
553
James Smart92d7f7b2007-06-17 19:56:38 -0500554void
555lpfc_cleanup_rpis(struct lpfc_vport *vport, int remove)
556{
557 struct lpfc_hba *phba = vport->phba;
558 struct lpfc_nodelist *ndlp, *next_ndlp;
559 int rc;
560
561 list_for_each_entry_safe(ndlp, next_ndlp, &vport->fc_nodes, nlp_listp) {
562 if (ndlp->nlp_state == NLP_STE_UNUSED_NODE)
563 continue;
564
565 if (phba->sli3_options & LPFC_SLI3_VPORT_TEARDOWN)
566 lpfc_unreg_rpi(vport, ndlp);
567
568 /* Leave Fabric nodes alone on link down */
569 if (!remove && ndlp->nlp_type & NLP_FABRIC)
570 continue;
571 rc = lpfc_disc_state_machine(vport, ndlp, NULL,
572 remove
573 ? NLP_EVT_DEVICE_RM
574 : NLP_EVT_DEVICE_RECOVERY);
575 }
576 if (phba->sli3_options & LPFC_SLI3_VPORT_TEARDOWN) {
577 lpfc_mbx_unreg_vpi(vport);
578 vport->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
579 }
580}
581
582static void
583lpfc_linkdown_port(struct lpfc_vport *vport)
584{
585 struct lpfc_nodelist *ndlp, *next_ndlp;
586 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
587
588 fc_host_post_event(shost, fc_get_event_number(), FCH_EVT_LINKDOWN, 0);
589
James Smart858c9f62007-06-17 19:56:39 -0500590 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
591 "Link Down: state:x%x rtry:x%x flg:x%x",
592 vport->port_state, vport->fc_ns_retry, vport->fc_flag);
593
James Smart92d7f7b2007-06-17 19:56:38 -0500594 /* Cleanup any outstanding RSCN activity */
595 lpfc_els_flush_rscn(vport);
596
597 /* Cleanup any outstanding ELS commands */
598 lpfc_els_flush_cmd(vport);
599
600 lpfc_cleanup_rpis(vport, 0);
601
602 /* free any ndlp's on unused list */
603 list_for_each_entry_safe(ndlp, next_ndlp, &vport->fc_nodes, nlp_listp)
604 /* free any ndlp's in unused state */
605 if (ndlp->nlp_state == NLP_STE_UNUSED_NODE)
606 lpfc_drop_node(vport, ndlp);
607
608 /* Turn off discovery timer if its running */
609 lpfc_can_disctmo(vport);
610}
611
dea31012005-04-17 16:05:31 -0500612int
James Smart685f0bf2007-04-25 09:53:08 -0400613lpfc_linkdown(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -0500614{
James Smart2e0fef82007-06-17 19:56:36 -0500615 struct lpfc_vport *vport = phba->pport;
616 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart92d7f7b2007-06-17 19:56:38 -0500617 struct lpfc_vport *port_iterator;
James Smart685f0bf2007-04-25 09:53:08 -0400618 LPFC_MBOXQ_t *mb;
dea31012005-04-17 16:05:31 -0500619
James Smart2e0fef82007-06-17 19:56:36 -0500620 if (phba->link_state == LPFC_LINK_DOWN) {
621 return 0;
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -0500622 }
James Smart2e0fef82007-06-17 19:56:36 -0500623 spin_lock_irq(&phba->hbalock);
James Smart92d7f7b2007-06-17 19:56:38 -0500624 if (phba->link_state > LPFC_LINK_DOWN) {
James Smart2e0fef82007-06-17 19:56:36 -0500625 phba->link_state = LPFC_LINK_DOWN;
James Smart92d7f7b2007-06-17 19:56:38 -0500626 phba->pport->fc_flag &= ~FC_LBIT;
627 }
James Smart2e0fef82007-06-17 19:56:36 -0500628 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -0500629
James Smart92d7f7b2007-06-17 19:56:38 -0500630 list_for_each_entry(port_iterator, &phba->port_list, listentry) {
631
632 /* Issue a LINK DOWN event to all nodes */
633 lpfc_linkdown_port(port_iterator);
634 }
James Smartd2873e42006-08-18 17:46:43 -0400635
dea31012005-04-17 16:05:31 -0500636 /* Clean up any firmware default rpi's */
James Smart2e0fef82007-06-17 19:56:36 -0500637 mb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
638 if (mb) {
James Smart92d7f7b2007-06-17 19:56:38 -0500639 lpfc_unreg_did(phba, 0xffff, 0xffffffff, mb);
James Smarted957682007-06-17 19:56:37 -0500640 mb->vport = vport;
James Smart2e0fef82007-06-17 19:56:36 -0500641 mb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
dea31012005-04-17 16:05:31 -0500642 if (lpfc_sli_issue_mbox(phba, mb, (MBX_NOWAIT | MBX_STOP_IOCB))
643 == MBX_NOT_FINISHED) {
James Smart2e0fef82007-06-17 19:56:36 -0500644 mempool_free(mb, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -0500645 }
646 }
647
dea31012005-04-17 16:05:31 -0500648 /* Setup myDID for link up if we are in pt2pt mode */
James Smart92d7f7b2007-06-17 19:56:38 -0500649 if (phba->pport->fc_flag & FC_PT2PT) {
650 phba->pport->fc_myDID = 0;
James Smart2e0fef82007-06-17 19:56:36 -0500651 mb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
652 if (mb) {
dea31012005-04-17 16:05:31 -0500653 lpfc_config_link(phba, mb);
James Smart92d7f7b2007-06-17 19:56:38 -0500654 mb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
James Smarted957682007-06-17 19:56:37 -0500655 mb->vport = vport;
James Smart2e0fef82007-06-17 19:56:36 -0500656 if (lpfc_sli_issue_mbox(phba, mb,
657 (MBX_NOWAIT | MBX_STOP_IOCB))
dea31012005-04-17 16:05:31 -0500658 == MBX_NOT_FINISHED) {
James Smart2e0fef82007-06-17 19:56:36 -0500659 mempool_free(mb, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -0500660 }
661 }
James Smart2e0fef82007-06-17 19:56:36 -0500662 spin_lock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -0500663 phba->pport->fc_flag &= ~(FC_PT2PT | FC_PT2PT_PLOGI);
James Smart2e0fef82007-06-17 19:56:36 -0500664 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500665 }
James Smart2e0fef82007-06-17 19:56:36 -0500666
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -0500667 return 0;
dea31012005-04-17 16:05:31 -0500668}
669
James Smart92d7f7b2007-06-17 19:56:38 -0500670static void
671lpfc_linkup_cleanup_nodes(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -0500672{
James Smart92d7f7b2007-06-17 19:56:38 -0500673 struct lpfc_nodelist *ndlp;
674
675 list_for_each_entry(ndlp, &vport->fc_nodes, nlp_listp) {
676 if (ndlp->nlp_state == NLP_STE_UNUSED_NODE)
677 continue;
678
679 if (ndlp->nlp_type & NLP_FABRIC) {
680 /* On Linkup its safe to clean up the ndlp
681 * from Fabric connections.
682 */
683 if (ndlp->nlp_DID != Fabric_DID)
684 lpfc_unreg_rpi(vport, ndlp);
685 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
686 } else if (!(ndlp->nlp_flag & NLP_NPR_ADISC)) {
687 /* Fail outstanding IO now since device is
688 * marked for PLOGI.
689 */
690 lpfc_unreg_rpi(vport, ndlp);
691 }
692 }
693}
694
695static void
696lpfc_linkup_port(struct lpfc_vport *vport)
697{
698 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -0500699 struct lpfc_nodelist *ndlp, *next_ndlp;
James Smart92d7f7b2007-06-17 19:56:38 -0500700 struct lpfc_hba *phba = vport->phba;
701
702 if ((vport->load_flag & FC_UNLOADING) != 0)
703 return;
704
James Smart858c9f62007-06-17 19:56:39 -0500705 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
706 "Link Up: top:x%x speed:x%x flg:x%x",
707 phba->fc_topology, phba->fc_linkspeed, phba->link_flag);
708
James Smart92d7f7b2007-06-17 19:56:38 -0500709 /* If NPIV is not enabled, only bring the physical port up */
710 if (!(phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
711 (vport != phba->pport))
712 return;
dea31012005-04-17 16:05:31 -0500713
James Smart2e0fef82007-06-17 19:56:36 -0500714 fc_host_post_event(shost, fc_get_event_number(), FCH_EVT_LINKUP, 0);
James Smartd2873e42006-08-18 17:46:43 -0400715
James Smart2e0fef82007-06-17 19:56:36 -0500716 spin_lock_irq(shost->host_lock);
James Smart2e0fef82007-06-17 19:56:36 -0500717 vport->fc_flag &= ~(FC_PT2PT | FC_PT2PT_PLOGI | FC_ABORT_DISCOVERY |
718 FC_RSCN_MODE | FC_NLP_MORE | FC_RSCN_DISCOVERY);
719 vport->fc_flag |= FC_NDISC_ACTIVE;
720 vport->fc_ns_retry = 0;
721 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500722
James Smart92d7f7b2007-06-17 19:56:38 -0500723 if (vport->fc_flag & FC_LBIT)
724 lpfc_linkup_cleanup_nodes(vport);
dea31012005-04-17 16:05:31 -0500725
James Smart92d7f7b2007-06-17 19:56:38 -0500726 /* free any ndlp's in unused state */
James Smart2e0fef82007-06-17 19:56:36 -0500727 list_for_each_entry_safe(ndlp, next_ndlp, &vport->fc_nodes,
James Smart92d7f7b2007-06-17 19:56:38 -0500728 nlp_listp)
James Smart685f0bf2007-04-25 09:53:08 -0400729 if (ndlp->nlp_state == NLP_STE_UNUSED_NODE)
James Smart2e0fef82007-06-17 19:56:36 -0500730 lpfc_drop_node(vport, ndlp);
James Smart92d7f7b2007-06-17 19:56:38 -0500731}
732
733static int
734lpfc_linkup(struct lpfc_hba *phba)
735{
736 struct lpfc_vport *vport;
737
738 phba->link_state = LPFC_LINK_UP;
739
740 /* Unblock fabric iocbs if they are blocked */
741 clear_bit(FABRIC_COMANDS_BLOCKED, &phba->bit_flags);
742 del_timer_sync(&phba->fabric_block_timer);
743
744 list_for_each_entry(vport, &phba->port_list, listentry) {
745 lpfc_linkup_port(vport);
James Smart685f0bf2007-04-25 09:53:08 -0400746 }
James Smart92d7f7b2007-06-17 19:56:38 -0500747 if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED)
748 lpfc_issue_clear_la(phba, phba->pport);
dea31012005-04-17 16:05:31 -0500749
750 return 0;
751}
752
753/*
754 * This routine handles processing a CLEAR_LA mailbox
755 * command upon completion. It is setup in the LPFC_MBOXQ
756 * as the completion routine when the command is
757 * handed off to the SLI layer.
758 */
759void
James Smart2e0fef82007-06-17 19:56:36 -0500760lpfc_mbx_cmpl_clear_la(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
dea31012005-04-17 16:05:31 -0500761{
James Smart2e0fef82007-06-17 19:56:36 -0500762 struct lpfc_vport *vport = pmb->vport;
763 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
764 struct lpfc_sli *psli = &phba->sli;
765 MAILBOX_t *mb = &pmb->mb;
dea31012005-04-17 16:05:31 -0500766 uint32_t control;
767
dea31012005-04-17 16:05:31 -0500768 /* Since we don't do discovery right now, turn these off here */
James Smarta4bc3372006-12-02 13:34:16 -0500769 psli->ring[psli->extra_ring].flag &= ~LPFC_STOP_IOCB_EVENT;
dea31012005-04-17 16:05:31 -0500770 psli->ring[psli->fcp_ring].flag &= ~LPFC_STOP_IOCB_EVENT;
771 psli->ring[psli->next_ring].flag &= ~LPFC_STOP_IOCB_EVENT;
772
773 /* Check for error */
774 if ((mb->mbxStatus) && (mb->mbxStatus != 0x1601)) {
James Smart92d7f7b2007-06-17 19:56:38 -0500775 /* CLEAR_LA mbox error <mbxStatus> state <hba_state> */
dea31012005-04-17 16:05:31 -0500776 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX,
James Smart92d7f7b2007-06-17 19:56:38 -0500777 "%d (%d):0320 CLEAR_LA mbxStatus error x%x hba "
dea31012005-04-17 16:05:31 -0500778 "state x%x\n",
James Smart92d7f7b2007-06-17 19:56:38 -0500779 phba->brd_no, vport->vpi, mb->mbxStatus,
780 vport->port_state);
dea31012005-04-17 16:05:31 -0500781
James Smart2e0fef82007-06-17 19:56:36 -0500782 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -0500783 goto out;
784 }
785
James Smart92d7f7b2007-06-17 19:56:38 -0500786 if (vport->port_type == LPFC_PHYSICAL_PORT)
787 phba->link_state = LPFC_HBA_READY;
788
789 spin_lock_irq(&phba->hbalock);
790 psli->sli_flag |= LPFC_PROCESS_LA;
791 control = readl(phba->HCregaddr);
792 control |= HC_LAINT_ENA;
793 writel(control, phba->HCregaddr);
794 readl(phba->HCregaddr); /* flush */
795 spin_unlock_irq(&phba->hbalock);
796 return;
dea31012005-04-17 16:05:31 -0500797
James Smart2e0fef82007-06-17 19:56:36 -0500798 vport->num_disc_nodes = 0;
799 /* go thru NPR nodes and issue ELS PLOGIs */
800 if (vport->fc_npr_cnt)
801 lpfc_els_disc_plogi(vport);
802
803 if (!vport->num_disc_nodes) {
804 spin_lock_irq(shost->host_lock);
805 vport->fc_flag &= ~FC_NDISC_ACTIVE;
806 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500807 }
808
James Smart2e0fef82007-06-17 19:56:36 -0500809 vport->port_state = LPFC_VPORT_READY;
dea31012005-04-17 16:05:31 -0500810
811out:
812 /* Device Discovery completes */
James Smarted957682007-06-17 19:56:37 -0500813 lpfc_printf_log(phba, KERN_INFO, LOG_DISCOVERY,
James Smart92d7f7b2007-06-17 19:56:38 -0500814 "%d (%d):0225 Device Discovery completes\n",
815 phba->brd_no, vport->vpi);
dea31012005-04-17 16:05:31 -0500816
James Smart2e0fef82007-06-17 19:56:36 -0500817 mempool_free(pmb, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -0500818
James Smart2e0fef82007-06-17 19:56:36 -0500819 spin_lock_irq(shost->host_lock);
820 vport->fc_flag &= ~(FC_ABORT_DISCOVERY | FC_ESTABLISH_LINK);
821 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -0500822
823 del_timer_sync(&phba->fc_estabtmo);
824
James Smart2e0fef82007-06-17 19:56:36 -0500825 lpfc_can_disctmo(vport);
dea31012005-04-17 16:05:31 -0500826
827 /* turn on Link Attention interrupts */
James Smart2e0fef82007-06-17 19:56:36 -0500828
829 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -0500830 psli->sli_flag |= LPFC_PROCESS_LA;
831 control = readl(phba->HCregaddr);
832 control |= HC_LAINT_ENA;
833 writel(control, phba->HCregaddr);
834 readl(phba->HCregaddr); /* flush */
James Smart2e0fef82007-06-17 19:56:36 -0500835 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -0500836
837 return;
838}
839
James Smart2e0fef82007-06-17 19:56:36 -0500840
dea31012005-04-17 16:05:31 -0500841static void
Jamie Wellnitz25594c62006-02-28 19:25:34 -0500842lpfc_mbx_cmpl_local_config_link(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
dea31012005-04-17 16:05:31 -0500843{
James Smart2e0fef82007-06-17 19:56:36 -0500844 struct lpfc_vport *vport = pmb->vport;
dea31012005-04-17 16:05:31 -0500845
Jamie Wellnitz25594c62006-02-28 19:25:34 -0500846 if (pmb->mb.mbxStatus)
dea31012005-04-17 16:05:31 -0500847 goto out;
dea31012005-04-17 16:05:31 -0500848
Jamie Wellnitz25594c62006-02-28 19:25:34 -0500849 mempool_free(pmb, phba->mbox_mem_pool);
850
851 if (phba->fc_topology == TOPOLOGY_LOOP &&
James Smart2e0fef82007-06-17 19:56:36 -0500852 vport->fc_flag & FC_PUBLIC_LOOP &&
853 !(vport->fc_flag & FC_LBIT)) {
Jamie Wellnitz25594c62006-02-28 19:25:34 -0500854 /* Need to wait for FAN - use discovery timer
James Smart2e0fef82007-06-17 19:56:36 -0500855 * for timeout. port_state is identically
Jamie Wellnitz25594c62006-02-28 19:25:34 -0500856 * LPFC_LOCAL_CFG_LINK while waiting for FAN
857 */
James Smart2e0fef82007-06-17 19:56:36 -0500858 lpfc_set_disctmo(vport);
Jamie Wellnitz25594c62006-02-28 19:25:34 -0500859 return;
James Smart92d7f7b2007-06-17 19:56:38 -0500860 }
dea31012005-04-17 16:05:31 -0500861
James Smart2e0fef82007-06-17 19:56:36 -0500862 /* Start discovery by sending a FLOGI. port_state is identically
Jamie Wellnitz25594c62006-02-28 19:25:34 -0500863 * LPFC_FLOGI while waiting for FLOGI cmpl
864 */
James Smart92d7f7b2007-06-17 19:56:38 -0500865 if (vport->port_state != LPFC_FLOGI) {
866 vport->port_state = LPFC_FLOGI;
867 lpfc_set_disctmo(vport);
868 lpfc_initial_flogi(vport);
869 }
Jamie Wellnitz25594c62006-02-28 19:25:34 -0500870 return;
dea31012005-04-17 16:05:31 -0500871
872out:
Jamie Wellnitz25594c62006-02-28 19:25:34 -0500873 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX,
James Smart92d7f7b2007-06-17 19:56:38 -0500874 "%d (%d):0306 CONFIG_LINK mbxStatus error x%x "
Jamie Wellnitz25594c62006-02-28 19:25:34 -0500875 "HBA state x%x\n",
James Smart92d7f7b2007-06-17 19:56:38 -0500876 phba->brd_no, vport->vpi, pmb->mb.mbxStatus,
877 vport->port_state);
878
879 mempool_free(pmb, phba->mbox_mem_pool);
Jamie Wellnitz25594c62006-02-28 19:25:34 -0500880
881 lpfc_linkdown(phba);
882
Jamie Wellnitz25594c62006-02-28 19:25:34 -0500883 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY,
James Smart92d7f7b2007-06-17 19:56:38 -0500884 "%d (%d):0200 CONFIG_LINK bad hba state x%x\n",
885 phba->brd_no, vport->vpi, vport->port_state);
dea31012005-04-17 16:05:31 -0500886
James Smart92d7f7b2007-06-17 19:56:38 -0500887 lpfc_issue_clear_la(phba, vport);
dea31012005-04-17 16:05:31 -0500888 return;
889}
890
891static void
James Smart2e0fef82007-06-17 19:56:36 -0500892lpfc_mbx_cmpl_read_sparam(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
dea31012005-04-17 16:05:31 -0500893{
dea31012005-04-17 16:05:31 -0500894 MAILBOX_t *mb = &pmb->mb;
895 struct lpfc_dmabuf *mp = (struct lpfc_dmabuf *) pmb->context1;
James Smart2e0fef82007-06-17 19:56:36 -0500896 struct lpfc_vport *vport = pmb->vport;
dea31012005-04-17 16:05:31 -0500897
898
899 /* Check for error */
900 if (mb->mbxStatus) {
901 /* READ_SPARAM mbox error <mbxStatus> state <hba_state> */
902 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX,
James Smart92d7f7b2007-06-17 19:56:38 -0500903 "%d (%d):0319 READ_SPARAM mbxStatus error x%x "
dea31012005-04-17 16:05:31 -0500904 "hba state x%x>\n",
James Smart92d7f7b2007-06-17 19:56:38 -0500905 phba->brd_no, vport->vpi, mb->mbxStatus,
906 vport->port_state);
dea31012005-04-17 16:05:31 -0500907
908 lpfc_linkdown(phba);
dea31012005-04-17 16:05:31 -0500909 goto out;
910 }
911
James Smart2e0fef82007-06-17 19:56:36 -0500912 memcpy((uint8_t *) &vport->fc_sparam, (uint8_t *) mp->virt,
dea31012005-04-17 16:05:31 -0500913 sizeof (struct serv_parm));
James Smarta12e07b2006-12-02 13:35:30 -0500914 if (phba->cfg_soft_wwnn)
James Smart2e0fef82007-06-17 19:56:36 -0500915 u64_to_wwn(phba->cfg_soft_wwnn,
916 vport->fc_sparam.nodeName.u.wwn);
James Smartc3f28af2006-08-18 17:47:18 -0400917 if (phba->cfg_soft_wwpn)
James Smart2e0fef82007-06-17 19:56:36 -0500918 u64_to_wwn(phba->cfg_soft_wwpn,
919 vport->fc_sparam.portName.u.wwn);
James Smart92d7f7b2007-06-17 19:56:38 -0500920 memcpy(&vport->fc_nodename, &vport->fc_sparam.nodeName,
921 sizeof(vport->fc_nodename));
922 memcpy(&vport->fc_portname, &vport->fc_sparam.portName,
923 sizeof(vport->fc_portname));
924 if (vport->port_type == LPFC_PHYSICAL_PORT) {
925 memcpy(&phba->wwnn, &vport->fc_nodename, sizeof(phba->wwnn));
926 memcpy(&phba->wwpn, &vport->fc_portname, sizeof(phba->wwnn));
927 }
928
dea31012005-04-17 16:05:31 -0500929 lpfc_mbuf_free(phba, mp->virt, mp->phys);
930 kfree(mp);
James Smart2e0fef82007-06-17 19:56:36 -0500931 mempool_free(pmb, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -0500932 return;
933
934out:
935 pmb->context1 = NULL;
936 lpfc_mbuf_free(phba, mp->virt, mp->phys);
937 kfree(mp);
James Smart92d7f7b2007-06-17 19:56:38 -0500938 lpfc_issue_clear_la(phba, vport);
939 mempool_free(pmb, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -0500940 return;
941}
942
943static void
James Smart92d7f7b2007-06-17 19:56:38 -0500944lpfc_mbx_process_link_up(struct lpfc_hba *phba, READ_LA_VAR *la)
dea31012005-04-17 16:05:31 -0500945{
James Smart92d7f7b2007-06-17 19:56:38 -0500946 struct lpfc_vport *vport = phba->pport;
dea31012005-04-17 16:05:31 -0500947 LPFC_MBOXQ_t *sparam_mbox, *cfglink_mbox;
James Smart2e0fef82007-06-17 19:56:36 -0500948 int i;
James Smart14691152006-12-02 13:34:28 -0500949 struct lpfc_dmabuf *mp;
950 int rc;
951
dea31012005-04-17 16:05:31 -0500952 sparam_mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
953 cfglink_mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
954
James Smart92d7f7b2007-06-17 19:56:38 -0500955 spin_lock_irq(&phba->hbalock);
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -0500956 switch (la->UlnkSpeed) {
James Smart92d7f7b2007-06-17 19:56:38 -0500957 case LA_1GHZ_LINK:
958 phba->fc_linkspeed = LA_1GHZ_LINK;
959 break;
960 case LA_2GHZ_LINK:
961 phba->fc_linkspeed = LA_2GHZ_LINK;
962 break;
963 case LA_4GHZ_LINK:
964 phba->fc_linkspeed = LA_4GHZ_LINK;
965 break;
966 case LA_8GHZ_LINK:
967 phba->fc_linkspeed = LA_8GHZ_LINK;
968 break;
969 default:
970 phba->fc_linkspeed = LA_UNKNW_LINK;
971 break;
dea31012005-04-17 16:05:31 -0500972 }
973
974 phba->fc_topology = la->topology;
James Smart92d7f7b2007-06-17 19:56:38 -0500975 phba->link_flag &= ~LS_NPIV_FAB_SUPPORTED;
dea31012005-04-17 16:05:31 -0500976
977 if (phba->fc_topology == TOPOLOGY_LOOP) {
James Smart92d7f7b2007-06-17 19:56:38 -0500978 phba->sli3_options &= ~LPFC_SLI3_NPIV_ENABLED;
dea31012005-04-17 16:05:31 -0500979
James Smart92d7f7b2007-06-17 19:56:38 -0500980 /* Get Loop Map information */
dea31012005-04-17 16:05:31 -0500981 if (la->il)
James Smart2e0fef82007-06-17 19:56:36 -0500982 vport->fc_flag |= FC_LBIT;
dea31012005-04-17 16:05:31 -0500983
James Smart2e0fef82007-06-17 19:56:36 -0500984 vport->fc_myDID = la->granted_AL_PA;
dea31012005-04-17 16:05:31 -0500985 i = la->un.lilpBde64.tus.f.bdeSize;
986
987 if (i == 0) {
988 phba->alpa_map[0] = 0;
989 } else {
990 if (phba->cfg_log_verbose & LOG_LINK_EVENT) {
991 int numalpa, j, k;
992 union {
993 uint8_t pamap[16];
994 struct {
995 uint32_t wd1;
996 uint32_t wd2;
997 uint32_t wd3;
998 uint32_t wd4;
999 } pa;
1000 } un;
1001 numalpa = phba->alpa_map[0];
1002 j = 0;
1003 while (j < numalpa) {
1004 memset(un.pamap, 0, 16);
1005 for (k = 1; j < numalpa; k++) {
1006 un.pamap[k - 1] =
1007 phba->alpa_map[j + 1];
1008 j++;
1009 if (k == 16)
1010 break;
1011 }
1012 /* Link Up Event ALPA map */
1013 lpfc_printf_log(phba,
James Smart92d7f7b2007-06-17 19:56:38 -05001014 KERN_WARNING,
1015 LOG_LINK_EVENT,
1016 "%d:1304 Link Up Event "
1017 "ALPA map Data: x%x "
1018 "x%x x%x x%x\n",
1019 phba->brd_no,
1020 un.pa.wd1, un.pa.wd2,
1021 un.pa.wd3, un.pa.wd4);
dea31012005-04-17 16:05:31 -05001022 }
1023 }
1024 }
1025 } else {
James Smart92d7f7b2007-06-17 19:56:38 -05001026 if (!(phba->sli3_options & LPFC_SLI3_NPIV_ENABLED)) {
James Smart858c9f62007-06-17 19:56:39 -05001027 if (phba->max_vpi && phba->cfg_npiv_enable &&
James Smart92d7f7b2007-06-17 19:56:38 -05001028 (phba->sli_rev == 3))
1029 phba->sli3_options |= LPFC_SLI3_NPIV_ENABLED;
1030 }
James Smart2e0fef82007-06-17 19:56:36 -05001031 vport->fc_myDID = phba->fc_pref_DID;
1032 vport->fc_flag |= FC_LBIT;
dea31012005-04-17 16:05:31 -05001033 }
James Smart92d7f7b2007-06-17 19:56:38 -05001034 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05001035
1036 lpfc_linkup(phba);
1037 if (sparam_mbox) {
James Smart92d7f7b2007-06-17 19:56:38 -05001038 lpfc_read_sparam(phba, sparam_mbox, 0);
James Smart2e0fef82007-06-17 19:56:36 -05001039 sparam_mbox->vport = vport;
dea31012005-04-17 16:05:31 -05001040 sparam_mbox->mbox_cmpl = lpfc_mbx_cmpl_read_sparam;
James Smart14691152006-12-02 13:34:28 -05001041 rc = lpfc_sli_issue_mbox(phba, sparam_mbox,
James Smart92d7f7b2007-06-17 19:56:38 -05001042 (MBX_NOWAIT | MBX_STOP_IOCB));
James Smart14691152006-12-02 13:34:28 -05001043 if (rc == MBX_NOT_FINISHED) {
1044 mp = (struct lpfc_dmabuf *) sparam_mbox->context1;
1045 lpfc_mbuf_free(phba, mp->virt, mp->phys);
1046 kfree(mp);
1047 mempool_free(sparam_mbox, phba->mbox_mem_pool);
1048 if (cfglink_mbox)
1049 mempool_free(cfglink_mbox, phba->mbox_mem_pool);
James Smart92d7f7b2007-06-17 19:56:38 -05001050 goto out;
James Smart14691152006-12-02 13:34:28 -05001051 }
dea31012005-04-17 16:05:31 -05001052 }
1053
1054 if (cfglink_mbox) {
James Smart2e0fef82007-06-17 19:56:36 -05001055 vport->port_state = LPFC_LOCAL_CFG_LINK;
dea31012005-04-17 16:05:31 -05001056 lpfc_config_link(phba, cfglink_mbox);
James Smart2e0fef82007-06-17 19:56:36 -05001057 cfglink_mbox->vport = vport;
Jamie Wellnitz25594c62006-02-28 19:25:34 -05001058 cfglink_mbox->mbox_cmpl = lpfc_mbx_cmpl_local_config_link;
James Smart14691152006-12-02 13:34:28 -05001059 rc = lpfc_sli_issue_mbox(phba, cfglink_mbox,
James Smart92d7f7b2007-06-17 19:56:38 -05001060 (MBX_NOWAIT | MBX_STOP_IOCB));
1061 if (rc != MBX_NOT_FINISHED)
1062 return;
1063 mempool_free(cfglink_mbox, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -05001064 }
James Smart92d7f7b2007-06-17 19:56:38 -05001065out:
1066 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
1067 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX,
1068 "%d (%d):0263 Discovery Mailbox error: state: 0x%x : %p %p\n",
1069 phba->brd_no, vport->vpi,
1070 vport->port_state, sparam_mbox, cfglink_mbox);
1071
1072 lpfc_issue_clear_la(phba, vport);
1073 return;
dea31012005-04-17 16:05:31 -05001074}
1075
1076static void
James Smart2e0fef82007-06-17 19:56:36 -05001077lpfc_mbx_issue_link_down(struct lpfc_hba *phba)
1078{
dea31012005-04-17 16:05:31 -05001079 uint32_t control;
1080 struct lpfc_sli *psli = &phba->sli;
1081
1082 lpfc_linkdown(phba);
1083
1084 /* turn on Link Attention interrupts - no CLEAR_LA needed */
James Smart2e0fef82007-06-17 19:56:36 -05001085 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05001086 psli->sli_flag |= LPFC_PROCESS_LA;
1087 control = readl(phba->HCregaddr);
1088 control |= HC_LAINT_ENA;
1089 writel(control, phba->HCregaddr);
1090 readl(phba->HCregaddr); /* flush */
James Smart2e0fef82007-06-17 19:56:36 -05001091 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05001092}
1093
1094/*
1095 * This routine handles processing a READ_LA mailbox
1096 * command upon completion. It is setup in the LPFC_MBOXQ
1097 * as the completion routine when the command is
1098 * handed off to the SLI layer.
1099 */
1100void
James Smart2e0fef82007-06-17 19:56:36 -05001101lpfc_mbx_cmpl_read_la(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
dea31012005-04-17 16:05:31 -05001102{
James Smart2e0fef82007-06-17 19:56:36 -05001103 struct lpfc_vport *vport = pmb->vport;
1104 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05001105 READ_LA_VAR *la;
1106 MAILBOX_t *mb = &pmb->mb;
1107 struct lpfc_dmabuf *mp = (struct lpfc_dmabuf *) (pmb->context1);
1108
1109 /* Check for error */
1110 if (mb->mbxStatus) {
James Smarted957682007-06-17 19:56:37 -05001111 lpfc_printf_log(phba, KERN_INFO, LOG_LINK_EVENT,
dea31012005-04-17 16:05:31 -05001112 "%d:1307 READ_LA mbox error x%x state x%x\n",
James Smarted957682007-06-17 19:56:37 -05001113 phba->brd_no, mb->mbxStatus, vport->port_state);
dea31012005-04-17 16:05:31 -05001114 lpfc_mbx_issue_link_down(phba);
James Smart2e0fef82007-06-17 19:56:36 -05001115 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -05001116 goto lpfc_mbx_cmpl_read_la_free_mbuf;
1117 }
1118
1119 la = (READ_LA_VAR *) & pmb->mb.un.varReadLA;
1120
1121 memcpy(&phba->alpa_map[0], mp->virt, 128);
1122
James Smart2e0fef82007-06-17 19:56:36 -05001123 spin_lock_irq(shost->host_lock);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05001124 if (la->pb)
James Smart2e0fef82007-06-17 19:56:36 -05001125 vport->fc_flag |= FC_BYPASSED_MODE;
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05001126 else
James Smart2e0fef82007-06-17 19:56:36 -05001127 vport->fc_flag &= ~FC_BYPASSED_MODE;
1128 spin_unlock_irq(shost->host_lock);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05001129
dea31012005-04-17 16:05:31 -05001130 if (((phba->fc_eventTag + 1) < la->eventTag) ||
James Smart92d7f7b2007-06-17 19:56:38 -05001131 (phba->fc_eventTag == la->eventTag)) {
dea31012005-04-17 16:05:31 -05001132 phba->fc_stat.LinkMultiEvent++;
James Smart2e0fef82007-06-17 19:56:36 -05001133 if (la->attType == AT_LINK_UP)
dea31012005-04-17 16:05:31 -05001134 if (phba->fc_eventTag != 0)
1135 lpfc_linkdown(phba);
James Smart92d7f7b2007-06-17 19:56:38 -05001136 }
dea31012005-04-17 16:05:31 -05001137
1138 phba->fc_eventTag = la->eventTag;
1139
1140 if (la->attType == AT_LINK_UP) {
1141 phba->fc_stat.LinkUp++;
James Smart2e0fef82007-06-17 19:56:36 -05001142 if (phba->link_flag & LS_LOOPBACK_MODE) {
James Smart5b8bd0c2007-04-25 09:52:49 -04001143 lpfc_printf_log(phba, KERN_INFO, LOG_LINK_EVENT,
1144 "%d:1306 Link Up Event in loop back mode "
1145 "x%x received Data: x%x x%x x%x x%x\n",
1146 phba->brd_no, la->eventTag, phba->fc_eventTag,
1147 la->granted_AL_PA, la->UlnkSpeed,
1148 phba->alpa_map[0]);
1149 } else {
1150 lpfc_printf_log(phba, KERN_ERR, LOG_LINK_EVENT,
dea31012005-04-17 16:05:31 -05001151 "%d:1303 Link Up Event x%x received "
1152 "Data: x%x x%x x%x x%x\n",
1153 phba->brd_no, la->eventTag, phba->fc_eventTag,
1154 la->granted_AL_PA, la->UlnkSpeed,
1155 phba->alpa_map[0]);
James Smart5b8bd0c2007-04-25 09:52:49 -04001156 }
James Smart92d7f7b2007-06-17 19:56:38 -05001157 lpfc_mbx_process_link_up(phba, la);
dea31012005-04-17 16:05:31 -05001158 } else {
1159 phba->fc_stat.LinkDown++;
1160 lpfc_printf_log(phba, KERN_ERR, LOG_LINK_EVENT,
1161 "%d:1305 Link Down Event x%x received "
1162 "Data: x%x x%x x%x\n",
1163 phba->brd_no, la->eventTag, phba->fc_eventTag,
James Smart2e0fef82007-06-17 19:56:36 -05001164 phba->pport->port_state, vport->fc_flag);
dea31012005-04-17 16:05:31 -05001165 lpfc_mbx_issue_link_down(phba);
1166 }
1167
1168lpfc_mbx_cmpl_read_la_free_mbuf:
1169 lpfc_mbuf_free(phba, mp->virt, mp->phys);
1170 kfree(mp);
1171 mempool_free(pmb, phba->mbox_mem_pool);
1172 return;
1173}
1174
1175/*
1176 * This routine handles processing a REG_LOGIN mailbox
1177 * command upon completion. It is setup in the LPFC_MBOXQ
1178 * as the completion routine when the command is
1179 * handed off to the SLI layer.
1180 */
1181void
James Smart2e0fef82007-06-17 19:56:36 -05001182lpfc_mbx_cmpl_reg_login(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
dea31012005-04-17 16:05:31 -05001183{
James Smart2e0fef82007-06-17 19:56:36 -05001184 struct lpfc_vport *vport = pmb->vport;
James Smart92d7f7b2007-06-17 19:56:38 -05001185 struct lpfc_dmabuf *mp = (struct lpfc_dmabuf *) (pmb->context1);
James Smart2e0fef82007-06-17 19:56:36 -05001186 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) pmb->context2;
dea31012005-04-17 16:05:31 -05001187
dea31012005-04-17 16:05:31 -05001188 pmb->context1 = NULL;
1189
1190 /* Good status, call state machine */
James Smart2e0fef82007-06-17 19:56:36 -05001191 lpfc_disc_state_machine(vport, ndlp, pmb, NLP_EVT_CMPL_REG_LOGIN);
dea31012005-04-17 16:05:31 -05001192 lpfc_mbuf_free(phba, mp->virt, mp->phys);
1193 kfree(mp);
James Smart2e0fef82007-06-17 19:56:36 -05001194 mempool_free(pmb, phba->mbox_mem_pool);
James Smart329f9bc2007-04-25 09:53:01 -04001195 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05001196
1197 return;
1198}
1199
James Smart92d7f7b2007-06-17 19:56:38 -05001200static void
1201lpfc_mbx_cmpl_unreg_vpi(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
1202{
1203 MAILBOX_t *mb = &pmb->mb;
1204 struct lpfc_vport *vport = pmb->vport;
1205 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1206
1207 switch (mb->mbxStatus) {
1208 case 0x0011:
1209 case 0x0020:
1210 case 0x9700:
1211 lpfc_printf_log(phba, KERN_INFO, LOG_NODE,
1212 "%d (%d):0911 cmpl_unreg_vpi, "
1213 "mb status = 0x%x\n",
1214 phba->brd_no, vport->vpi, mb->mbxStatus);
1215 break;
James Smart92d7f7b2007-06-17 19:56:38 -05001216 }
1217 vport->unreg_vpi_cmpl = VPORT_OK;
1218 mempool_free(pmb, phba->mbox_mem_pool);
1219 /*
1220 * This shost reference might have been taken at the beginning of
1221 * lpfc_vport_delete()
1222 */
1223 if (vport->load_flag & FC_UNLOADING)
1224 scsi_host_put(shost);
1225}
1226
1227void
1228lpfc_mbx_unreg_vpi(struct lpfc_vport *vport)
1229{
1230 struct lpfc_hba *phba = vport->phba;
1231 LPFC_MBOXQ_t *mbox;
1232 int rc;
1233
1234 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
1235 if (!mbox)
1236 return;
1237
1238 lpfc_unreg_vpi(phba, vport->vpi, mbox);
1239 mbox->vport = vport;
1240 mbox->mbox_cmpl = lpfc_mbx_cmpl_unreg_vpi;
1241 rc = lpfc_sli_issue_mbox(phba, mbox, (MBX_NOWAIT | MBX_STOP_IOCB));
1242 if (rc == MBX_NOT_FINISHED) {
1243 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_VPORT,
1244 "%d (%d):1800 Could not issue unreg_vpi\n",
1245 phba->brd_no, vport->vpi);
1246 mempool_free(mbox, phba->mbox_mem_pool);
1247 vport->unreg_vpi_cmpl = VPORT_ERROR;
1248 }
1249}
1250
1251static void
1252lpfc_mbx_cmpl_reg_vpi(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
1253{
1254 struct lpfc_vport *vport = pmb->vport;
1255 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1256 MAILBOX_t *mb = &pmb->mb;
1257
1258 switch (mb->mbxStatus) {
1259 case 0x0011:
1260 case 0x9601:
1261 case 0x9602:
1262 lpfc_printf_log(phba, KERN_INFO, LOG_NODE,
1263 "%d (%d):0912 cmpl_reg_vpi, mb status = 0x%x\n",
1264 phba->brd_no, vport->vpi, mb->mbxStatus);
1265 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
1266 spin_lock_irq(shost->host_lock);
1267 vport->fc_flag &= ~(FC_FABRIC | FC_PUBLIC_LOOP);
1268 spin_unlock_irq(shost->host_lock);
1269 vport->fc_myDID = 0;
1270 goto out;
1271 }
James Smart92d7f7b2007-06-17 19:56:38 -05001272
1273 vport->num_disc_nodes = 0;
1274 /* go thru NPR list and issue ELS PLOGIs */
1275 if (vport->fc_npr_cnt)
1276 lpfc_els_disc_plogi(vport);
1277
1278 if (!vport->num_disc_nodes) {
1279 spin_lock_irq(shost->host_lock);
1280 vport->fc_flag &= ~FC_NDISC_ACTIVE;
1281 spin_unlock_irq(shost->host_lock);
1282 lpfc_can_disctmo(vport);
1283 }
1284 vport->port_state = LPFC_VPORT_READY;
1285
1286out:
1287 mempool_free(pmb, phba->mbox_mem_pool);
1288 return;
1289}
1290
dea31012005-04-17 16:05:31 -05001291/*
1292 * This routine handles processing a Fabric REG_LOGIN mailbox
1293 * command upon completion. It is setup in the LPFC_MBOXQ
1294 * as the completion routine when the command is
1295 * handed off to the SLI layer.
1296 */
1297void
James Smart2e0fef82007-06-17 19:56:36 -05001298lpfc_mbx_cmpl_fabric_reg_login(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
dea31012005-04-17 16:05:31 -05001299{
James Smart92d7f7b2007-06-17 19:56:38 -05001300 struct lpfc_vport *vport = pmb->vport;
1301 struct lpfc_vport *next_vport;
James Smart2e0fef82007-06-17 19:56:36 -05001302 MAILBOX_t *mb = &pmb->mb;
1303 struct lpfc_dmabuf *mp = (struct lpfc_dmabuf *) (pmb->context1);
James Smart92d7f7b2007-06-17 19:56:38 -05001304 struct lpfc_nodelist *ndlp;
dea31012005-04-17 16:05:31 -05001305 ndlp = (struct lpfc_nodelist *) pmb->context2;
dea31012005-04-17 16:05:31 -05001306
James Smart329f9bc2007-04-25 09:53:01 -04001307 pmb->context1 = NULL;
1308 pmb->context2 = NULL;
1309
dea31012005-04-17 16:05:31 -05001310 if (mb->mbxStatus) {
1311 lpfc_mbuf_free(phba, mp->virt, mp->phys);
1312 kfree(mp);
James Smart329f9bc2007-04-25 09:53:01 -04001313 mempool_free(pmb, phba->mbox_mem_pool);
1314 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05001315
James Smart92d7f7b2007-06-17 19:56:38 -05001316 if (phba->fc_topology == TOPOLOGY_LOOP) {
1317 /* FLOGI failed, use loop map to make discovery list */
1318 lpfc_disc_list_loopmap(vport);
dea31012005-04-17 16:05:31 -05001319
James Smart92d7f7b2007-06-17 19:56:38 -05001320 /* Start discovery */
1321 lpfc_disc_start(vport);
1322 return;
1323 }
1324
1325 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
1326 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX,
1327 "%d (%d):0258 Register Fabric login error: 0x%x\n",
1328 phba->brd_no, vport->vpi, mb->mbxStatus);
1329
dea31012005-04-17 16:05:31 -05001330 return;
1331 }
1332
dea31012005-04-17 16:05:31 -05001333 ndlp->nlp_rpi = mb->un.varWords[0];
dea31012005-04-17 16:05:31 -05001334 ndlp->nlp_type |= NLP_FABRIC;
James Smart2e0fef82007-06-17 19:56:36 -05001335 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
dea31012005-04-17 16:05:31 -05001336
James Smart329f9bc2007-04-25 09:53:01 -04001337 lpfc_nlp_put(ndlp); /* Drop the reference from the mbox */
1338
James Smart2e0fef82007-06-17 19:56:36 -05001339 if (vport->port_state == LPFC_FABRIC_CFG_LINK) {
James Smart92d7f7b2007-06-17 19:56:38 -05001340 list_for_each_entry(next_vport, &phba->port_list, listentry) {
1341 if (next_vport->port_type == LPFC_PHYSICAL_PORT)
1342 continue;
dea31012005-04-17 16:05:31 -05001343
James Smart92d7f7b2007-06-17 19:56:38 -05001344 if (phba->link_flag & LS_NPIV_FAB_SUPPORTED)
1345 lpfc_initial_fdisc(next_vport);
James Smart858c9f62007-06-17 19:56:39 -05001346 else if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) {
1347 lpfc_vport_set_state(vport,
1348 FC_VPORT_NO_FABRIC_SUPP);
1349 lpfc_printf_log(phba, KERN_ERR, LOG_ELS,
James Smart92d7f7b2007-06-17 19:56:38 -05001350 "%d (%d):0259 No NPIV Fabric "
1351 "support\n",
1352 phba->brd_no, vport->vpi);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05001353 }
1354 }
James Smart92d7f7b2007-06-17 19:56:38 -05001355 lpfc_do_scr_ns_plogi(phba, vport);
dea31012005-04-17 16:05:31 -05001356 }
1357
1358 lpfc_mbuf_free(phba, mp->virt, mp->phys);
1359 kfree(mp);
James Smart329f9bc2007-04-25 09:53:01 -04001360 mempool_free(pmb, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -05001361 return;
1362}
1363
1364/*
1365 * This routine handles processing a NameServer REG_LOGIN mailbox
1366 * command upon completion. It is setup in the LPFC_MBOXQ
1367 * as the completion routine when the command is
1368 * handed off to the SLI layer.
1369 */
1370void
James Smart2e0fef82007-06-17 19:56:36 -05001371lpfc_mbx_cmpl_ns_reg_login(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
dea31012005-04-17 16:05:31 -05001372{
James Smart2e0fef82007-06-17 19:56:36 -05001373 MAILBOX_t *mb = &pmb->mb;
1374 struct lpfc_dmabuf *mp = (struct lpfc_dmabuf *) (pmb->context1);
1375 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) pmb->context2;
1376 struct lpfc_vport *vport = pmb->vport;
dea31012005-04-17 16:05:31 -05001377
1378 if (mb->mbxStatus) {
James Smart92d7f7b2007-06-17 19:56:38 -05001379out:
James Smart329f9bc2007-04-25 09:53:01 -04001380 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05001381 lpfc_mbuf_free(phba, mp->virt, mp->phys);
1382 kfree(mp);
James Smartde0c5b32007-04-25 09:52:27 -04001383 mempool_free(pmb, phba->mbox_mem_pool);
James Smart2e0fef82007-06-17 19:56:36 -05001384 lpfc_drop_node(vport, ndlp);
dea31012005-04-17 16:05:31 -05001385
James Smart92d7f7b2007-06-17 19:56:38 -05001386 if (phba->fc_topology == TOPOLOGY_LOOP) {
1387 /*
1388 * RegLogin failed, use loop map to make discovery
1389 * list
1390 */
1391 lpfc_disc_list_loopmap(vport);
dea31012005-04-17 16:05:31 -05001392
James Smart92d7f7b2007-06-17 19:56:38 -05001393 /* Start discovery */
1394 lpfc_disc_start(vport);
1395 return;
1396 }
1397 lpfc_vport_set_state(vport, FC_VPORT_FAILED);
1398 lpfc_printf_log(phba, KERN_ERR, LOG_ELS,
1399 "%d (%d):0260 Register NameServer error: 0x%x\n",
1400 phba->brd_no, vport->vpi, mb->mbxStatus);
dea31012005-04-17 16:05:31 -05001401 return;
1402 }
1403
1404 pmb->context1 = NULL;
1405
dea31012005-04-17 16:05:31 -05001406 ndlp->nlp_rpi = mb->un.varWords[0];
dea31012005-04-17 16:05:31 -05001407 ndlp->nlp_type |= NLP_FABRIC;
James Smart2e0fef82007-06-17 19:56:36 -05001408 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
dea31012005-04-17 16:05:31 -05001409
James Smart2e0fef82007-06-17 19:56:36 -05001410 if (vport->port_state < LPFC_VPORT_READY) {
1411 /* Link up discovery requires Fabric registration. */
James Smart92d7f7b2007-06-17 19:56:38 -05001412 lpfc_ns_cmd(vport, SLI_CTNS_RFF_ID, 0, 0); /* Do this first! */
1413 lpfc_ns_cmd(vport, SLI_CTNS_RNN_ID, 0, 0);
1414 lpfc_ns_cmd(vport, SLI_CTNS_RSNN_NN, 0, 0);
1415 lpfc_ns_cmd(vport, SLI_CTNS_RSPN_ID, 0, 0);
1416 lpfc_ns_cmd(vport, SLI_CTNS_RFT_ID, 0, 0);
1417
1418 /* Issue SCR just before NameServer GID_FT Query */
1419 lpfc_issue_els_scr(vport, SCR_DID, 0);
dea31012005-04-17 16:05:31 -05001420 }
1421
James Smart2e0fef82007-06-17 19:56:36 -05001422 vport->fc_ns_retry = 0;
dea31012005-04-17 16:05:31 -05001423 /* Good status, issue CT Request to NameServer */
James Smart92d7f7b2007-06-17 19:56:38 -05001424 if (lpfc_ns_cmd(vport, SLI_CTNS_GID_FT, 0, 0)) {
dea31012005-04-17 16:05:31 -05001425 /* Cannot issue NameServer Query, so finish up discovery */
James Smart92d7f7b2007-06-17 19:56:38 -05001426 goto out;
dea31012005-04-17 16:05:31 -05001427 }
1428
James Smart329f9bc2007-04-25 09:53:01 -04001429 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05001430 lpfc_mbuf_free(phba, mp->virt, mp->phys);
1431 kfree(mp);
James Smart2e0fef82007-06-17 19:56:36 -05001432 mempool_free(pmb, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -05001433
1434 return;
1435}
1436
1437static void
James Smart2e0fef82007-06-17 19:56:36 -05001438lpfc_register_remote_port(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05001439{
James Smart2e0fef82007-06-17 19:56:36 -05001440 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1441 struct fc_rport *rport;
dea31012005-04-17 16:05:31 -05001442 struct lpfc_rport_data *rdata;
1443 struct fc_rport_identifiers rport_ids;
James Smart2e0fef82007-06-17 19:56:36 -05001444 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05001445
1446 /* Remote port has reappeared. Re-register w/ FC transport */
Andrew Morton68ce1eb2005-09-21 09:46:54 -07001447 rport_ids.node_name = wwn_to_u64(ndlp->nlp_nodename.u.wwn);
1448 rport_ids.port_name = wwn_to_u64(ndlp->nlp_portname.u.wwn);
dea31012005-04-17 16:05:31 -05001449 rport_ids.port_id = ndlp->nlp_DID;
1450 rport_ids.roles = FC_RPORT_ROLE_UNKNOWN;
dea31012005-04-17 16:05:31 -05001451
James Smart329f9bc2007-04-25 09:53:01 -04001452 /*
1453 * We leave our node pointer in rport->dd_data when we unregister a
1454 * FCP target port. But fc_remote_port_add zeros the space to which
1455 * rport->dd_data points. So, if we're reusing a previously
1456 * registered port, drop the reference that we took the last time we
1457 * registered the port.
1458 */
1459 if (ndlp->rport && ndlp->rport->dd_data &&
James Smart92d7f7b2007-06-17 19:56:38 -05001460 ((struct lpfc_rport_data *) ndlp->rport->dd_data)->pnode == ndlp) {
James Smart329f9bc2007-04-25 09:53:01 -04001461 lpfc_nlp_put(ndlp);
1462 }
James Smart858c9f62007-06-17 19:56:39 -05001463
1464 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_RPORT,
1465 "rport add: did:x%x flg:x%x type x%x",
1466 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_type);
1467
James Smart2e0fef82007-06-17 19:56:36 -05001468 ndlp->rport = rport = fc_remote_port_add(shost, 0, &rport_ids);
James Smart329f9bc2007-04-25 09:53:01 -04001469 if (!rport || !get_device(&rport->dev)) {
dea31012005-04-17 16:05:31 -05001470 dev_printk(KERN_WARNING, &phba->pcidev->dev,
1471 "Warning: fc_remote_port_add failed\n");
1472 return;
1473 }
1474
1475 /* initialize static port data */
1476 rport->maxframe_size = ndlp->nlp_maxframe;
1477 rport->supported_classes = ndlp->nlp_class_sup;
dea31012005-04-17 16:05:31 -05001478 rdata = rport->dd_data;
James Smart329f9bc2007-04-25 09:53:01 -04001479 rdata->pnode = lpfc_nlp_get(ndlp);
James.Smart@Emulex.Com23dc04f2005-11-28 11:41:44 -05001480
1481 if (ndlp->nlp_type & NLP_FCP_TARGET)
1482 rport_ids.roles |= FC_RPORT_ROLE_FCP_TARGET;
1483 if (ndlp->nlp_type & NLP_FCP_INITIATOR)
1484 rport_ids.roles |= FC_RPORT_ROLE_FCP_INITIATOR;
1485
1486
1487 if (rport_ids.roles != FC_RPORT_ROLE_UNKNOWN)
1488 fc_remote_port_rolechg(rport, rport_ids.roles);
1489
James Smart071fbd3d2006-04-15 11:53:20 -04001490 if ((rport->scsi_target_id != -1) &&
James Smart92d7f7b2007-06-17 19:56:38 -05001491 (rport->scsi_target_id < LPFC_MAX_TARGET)) {
James Smart071fbd3d2006-04-15 11:53:20 -04001492 ndlp->nlp_sid = rport->scsi_target_id;
1493 }
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04001494 return;
1495}
1496
1497static void
James Smart2e0fef82007-06-17 19:56:36 -05001498lpfc_unregister_remote_port(struct lpfc_nodelist *ndlp)
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04001499{
1500 struct fc_rport *rport = ndlp->rport;
James Smartc01f3202006-08-18 17:47:08 -04001501
James Smart858c9f62007-06-17 19:56:39 -05001502 lpfc_debugfs_disc_trc(ndlp->vport, LPFC_DISC_TRC_RPORT,
1503 "rport delete: did:x%x flg:x%x type x%x",
1504 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_type);
1505
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04001506 fc_remote_port_delete(rport);
dea31012005-04-17 16:05:31 -05001507
1508 return;
1509}
1510
James Smartde0c5b32007-04-25 09:52:27 -04001511static void
James Smart2e0fef82007-06-17 19:56:36 -05001512lpfc_nlp_counters(struct lpfc_vport *vport, int state, int count)
James Smartde0c5b32007-04-25 09:52:27 -04001513{
James Smart2e0fef82007-06-17 19:56:36 -05001514 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1515
1516 spin_lock_irq(shost->host_lock);
James Smartde0c5b32007-04-25 09:52:27 -04001517 switch (state) {
1518 case NLP_STE_UNUSED_NODE:
James Smart2e0fef82007-06-17 19:56:36 -05001519 vport->fc_unused_cnt += count;
James Smartde0c5b32007-04-25 09:52:27 -04001520 break;
1521 case NLP_STE_PLOGI_ISSUE:
James Smart2e0fef82007-06-17 19:56:36 -05001522 vport->fc_plogi_cnt += count;
James Smartde0c5b32007-04-25 09:52:27 -04001523 break;
1524 case NLP_STE_ADISC_ISSUE:
James Smart2e0fef82007-06-17 19:56:36 -05001525 vport->fc_adisc_cnt += count;
James Smartde0c5b32007-04-25 09:52:27 -04001526 break;
1527 case NLP_STE_REG_LOGIN_ISSUE:
James Smart2e0fef82007-06-17 19:56:36 -05001528 vport->fc_reglogin_cnt += count;
James Smartde0c5b32007-04-25 09:52:27 -04001529 break;
1530 case NLP_STE_PRLI_ISSUE:
James Smart2e0fef82007-06-17 19:56:36 -05001531 vport->fc_prli_cnt += count;
James Smartde0c5b32007-04-25 09:52:27 -04001532 break;
1533 case NLP_STE_UNMAPPED_NODE:
James Smart2e0fef82007-06-17 19:56:36 -05001534 vport->fc_unmap_cnt += count;
James Smartde0c5b32007-04-25 09:52:27 -04001535 break;
1536 case NLP_STE_MAPPED_NODE:
James Smart2e0fef82007-06-17 19:56:36 -05001537 vport->fc_map_cnt += count;
James Smartde0c5b32007-04-25 09:52:27 -04001538 break;
1539 case NLP_STE_NPR_NODE:
James Smart2e0fef82007-06-17 19:56:36 -05001540 vport->fc_npr_cnt += count;
James Smartde0c5b32007-04-25 09:52:27 -04001541 break;
1542 }
James Smart2e0fef82007-06-17 19:56:36 -05001543 spin_unlock_irq(shost->host_lock);
James Smartde0c5b32007-04-25 09:52:27 -04001544}
Jamie Wellnitz66a9ed62006-02-28 22:33:10 -05001545
James Smartde0c5b32007-04-25 09:52:27 -04001546static void
James Smart2e0fef82007-06-17 19:56:36 -05001547lpfc_nlp_state_cleanup(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
James Smartde0c5b32007-04-25 09:52:27 -04001548 int old_state, int new_state)
1549{
James Smart2e0fef82007-06-17 19:56:36 -05001550 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1551
James Smartde0c5b32007-04-25 09:52:27 -04001552 if (new_state == NLP_STE_UNMAPPED_NODE) {
1553 ndlp->nlp_type &= ~(NLP_FCP_TARGET | NLP_FCP_INITIATOR);
1554 ndlp->nlp_flag &= ~NLP_NODEV_REMOVE;
1555 ndlp->nlp_type |= NLP_FC_NODE;
1556 }
1557 if (new_state == NLP_STE_MAPPED_NODE)
1558 ndlp->nlp_flag &= ~NLP_NODEV_REMOVE;
1559 if (new_state == NLP_STE_NPR_NODE)
1560 ndlp->nlp_flag &= ~NLP_RCV_PLOGI;
dea31012005-04-17 16:05:31 -05001561
James Smartde0c5b32007-04-25 09:52:27 -04001562 /* Transport interface */
1563 if (ndlp->rport && (old_state == NLP_STE_MAPPED_NODE ||
1564 old_state == NLP_STE_UNMAPPED_NODE)) {
James Smart2e0fef82007-06-17 19:56:36 -05001565 vport->phba->nport_event_cnt++;
1566 lpfc_unregister_remote_port(ndlp);
James Smartde0c5b32007-04-25 09:52:27 -04001567 }
dea31012005-04-17 16:05:31 -05001568
James Smartde0c5b32007-04-25 09:52:27 -04001569 if (new_state == NLP_STE_MAPPED_NODE ||
1570 new_state == NLP_STE_UNMAPPED_NODE) {
James Smart2e0fef82007-06-17 19:56:36 -05001571 vport->phba->nport_event_cnt++;
James Smart858c9f62007-06-17 19:56:39 -05001572 /*
1573 * Tell the fc transport about the port, if we haven't
1574 * already. If we have, and it's a scsi entity, be
1575 * sure to unblock any attached scsi devices
1576 */
1577 lpfc_register_remote_port(vport, ndlp);
James Smartde0c5b32007-04-25 09:52:27 -04001578 }
James Smart858c9f62007-06-17 19:56:39 -05001579 /*
1580 * if we added to Mapped list, but the remote port
1581 * registration failed or assigned a target id outside
1582 * our presentable range - move the node to the
1583 * Unmapped List
1584 */
James Smartde0c5b32007-04-25 09:52:27 -04001585 if (new_state == NLP_STE_MAPPED_NODE &&
1586 (!ndlp->rport ||
1587 ndlp->rport->scsi_target_id == -1 ||
1588 ndlp->rport->scsi_target_id >= LPFC_MAX_TARGET)) {
James Smart2e0fef82007-06-17 19:56:36 -05001589 spin_lock_irq(shost->host_lock);
James Smartde0c5b32007-04-25 09:52:27 -04001590 ndlp->nlp_flag |= NLP_TGT_NO_SCSIID;
James Smart2e0fef82007-06-17 19:56:36 -05001591 spin_unlock_irq(shost->host_lock);
1592 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
dea31012005-04-17 16:05:31 -05001593 }
James Smartde0c5b32007-04-25 09:52:27 -04001594}
1595
James Smart685f0bf2007-04-25 09:53:08 -04001596static char *
1597lpfc_nlp_state_name(char *buffer, size_t size, int state)
1598{
1599 static char *states[] = {
1600 [NLP_STE_UNUSED_NODE] = "UNUSED",
1601 [NLP_STE_PLOGI_ISSUE] = "PLOGI",
1602 [NLP_STE_ADISC_ISSUE] = "ADISC",
1603 [NLP_STE_REG_LOGIN_ISSUE] = "REGLOGIN",
1604 [NLP_STE_PRLI_ISSUE] = "PRLI",
1605 [NLP_STE_UNMAPPED_NODE] = "UNMAPPED",
1606 [NLP_STE_MAPPED_NODE] = "MAPPED",
1607 [NLP_STE_NPR_NODE] = "NPR",
1608 };
1609
1610 if (state < ARRAY_SIZE(states) && states[state])
1611 strlcpy(buffer, states[state], size);
1612 else
1613 snprintf(buffer, size, "unknown (%d)", state);
1614 return buffer;
1615}
1616
James Smartde0c5b32007-04-25 09:52:27 -04001617void
James Smart2e0fef82007-06-17 19:56:36 -05001618lpfc_nlp_set_state(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
1619 int state)
James Smartde0c5b32007-04-25 09:52:27 -04001620{
James Smart2e0fef82007-06-17 19:56:36 -05001621 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smartde0c5b32007-04-25 09:52:27 -04001622 int old_state = ndlp->nlp_state;
James Smart685f0bf2007-04-25 09:53:08 -04001623 char name1[16], name2[16];
James Smartde0c5b32007-04-25 09:52:27 -04001624
James Smart2e0fef82007-06-17 19:56:36 -05001625 lpfc_printf_log(vport->phba, KERN_INFO, LOG_NODE,
James Smart858c9f62007-06-17 19:56:39 -05001626 "%d (%d):0904 NPort state transition x%06x, %s -> %s\n",
1627 vport->phba->brd_no, vport->vpi,
James Smart685f0bf2007-04-25 09:53:08 -04001628 ndlp->nlp_DID,
1629 lpfc_nlp_state_name(name1, sizeof(name1), old_state),
1630 lpfc_nlp_state_name(name2, sizeof(name2), state));
James Smart858c9f62007-06-17 19:56:39 -05001631
1632 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_NODE,
1633 "node statechg did:x%x old:%d ste:%d",
1634 ndlp->nlp_DID, old_state, state);
1635
James Smartde0c5b32007-04-25 09:52:27 -04001636 if (old_state == NLP_STE_NPR_NODE &&
1637 (ndlp->nlp_flag & NLP_DELAY_TMO) != 0 &&
1638 state != NLP_STE_NPR_NODE)
James Smart2e0fef82007-06-17 19:56:36 -05001639 lpfc_cancel_retry_delay_tmo(vport, ndlp);
James Smartde0c5b32007-04-25 09:52:27 -04001640 if (old_state == NLP_STE_UNMAPPED_NODE) {
1641 ndlp->nlp_flag &= ~NLP_TGT_NO_SCSIID;
1642 ndlp->nlp_type &= ~NLP_FC_NODE;
1643 }
1644
James Smart685f0bf2007-04-25 09:53:08 -04001645 if (list_empty(&ndlp->nlp_listp)) {
James Smart2e0fef82007-06-17 19:56:36 -05001646 spin_lock_irq(shost->host_lock);
1647 list_add_tail(&ndlp->nlp_listp, &vport->fc_nodes);
1648 spin_unlock_irq(shost->host_lock);
James Smart685f0bf2007-04-25 09:53:08 -04001649 } else if (old_state)
James Smart2e0fef82007-06-17 19:56:36 -05001650 lpfc_nlp_counters(vport, old_state, -1);
James Smartde0c5b32007-04-25 09:52:27 -04001651
1652 ndlp->nlp_state = state;
James Smart2e0fef82007-06-17 19:56:36 -05001653 lpfc_nlp_counters(vport, state, 1);
1654 lpfc_nlp_state_cleanup(vport, ndlp, old_state, state);
James Smartde0c5b32007-04-25 09:52:27 -04001655}
1656
1657void
James Smart2e0fef82007-06-17 19:56:36 -05001658lpfc_dequeue_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
James Smartde0c5b32007-04-25 09:52:27 -04001659{
James Smart2e0fef82007-06-17 19:56:36 -05001660 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1661
James Smartde0c5b32007-04-25 09:52:27 -04001662 if ((ndlp->nlp_flag & NLP_DELAY_TMO) != 0)
James Smart2e0fef82007-06-17 19:56:36 -05001663 lpfc_cancel_retry_delay_tmo(vport, ndlp);
James Smartde0c5b32007-04-25 09:52:27 -04001664 if (ndlp->nlp_state && !list_empty(&ndlp->nlp_listp))
James Smart2e0fef82007-06-17 19:56:36 -05001665 lpfc_nlp_counters(vport, ndlp->nlp_state, -1);
1666 spin_lock_irq(shost->host_lock);
James Smart685f0bf2007-04-25 09:53:08 -04001667 list_del_init(&ndlp->nlp_listp);
James Smart2e0fef82007-06-17 19:56:36 -05001668 spin_unlock_irq(shost->host_lock);
James Smart858c9f62007-06-17 19:56:39 -05001669 lpfc_nlp_state_cleanup(vport, ndlp, ndlp->nlp_state,
1670 NLP_STE_UNUSED_NODE);
James Smartde0c5b32007-04-25 09:52:27 -04001671}
1672
1673void
James Smart2e0fef82007-06-17 19:56:36 -05001674lpfc_drop_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
James Smartde0c5b32007-04-25 09:52:27 -04001675{
James Smart2e0fef82007-06-17 19:56:36 -05001676 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1677
James Smartde0c5b32007-04-25 09:52:27 -04001678 if ((ndlp->nlp_flag & NLP_DELAY_TMO) != 0)
James Smart2e0fef82007-06-17 19:56:36 -05001679 lpfc_cancel_retry_delay_tmo(vport, ndlp);
James Smartde0c5b32007-04-25 09:52:27 -04001680 if (ndlp->nlp_state && !list_empty(&ndlp->nlp_listp))
James Smart2e0fef82007-06-17 19:56:36 -05001681 lpfc_nlp_counters(vport, ndlp->nlp_state, -1);
1682 spin_lock_irq(shost->host_lock);
James Smart685f0bf2007-04-25 09:53:08 -04001683 list_del_init(&ndlp->nlp_listp);
James Smart858c9f62007-06-17 19:56:39 -05001684 ndlp->nlp_flag &= ~NLP_TARGET_REMOVE;
James Smart2e0fef82007-06-17 19:56:36 -05001685 spin_unlock_irq(shost->host_lock);
James Smart329f9bc2007-04-25 09:53:01 -04001686 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05001687}
1688
1689/*
1690 * Start / ReStart rescue timer for Discovery / RSCN handling
1691 */
1692void
James Smart2e0fef82007-06-17 19:56:36 -05001693lpfc_set_disctmo(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05001694{
James Smart2e0fef82007-06-17 19:56:36 -05001695 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1696 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05001697 uint32_t tmo;
1698
James Smart2e0fef82007-06-17 19:56:36 -05001699 if (vport->port_state == LPFC_LOCAL_CFG_LINK) {
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05001700 /* For FAN, timeout should be greater then edtov */
1701 tmo = (((phba->fc_edtov + 999) / 1000) + 1);
1702 } else {
1703 /* Normal discovery timeout should be > then ELS/CT timeout
1704 * FC spec states we need 3 * ratov for CT requests
1705 */
1706 tmo = ((phba->fc_ratov * 3) + 3);
1707 }
dea31012005-04-17 16:05:31 -05001708
James Smart858c9f62007-06-17 19:56:39 -05001709
1710 if (!timer_pending(&vport->fc_disctmo)) {
1711 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
1712 "set disc timer: tmo:x%x state:x%x flg:x%x",
1713 tmo, vport->port_state, vport->fc_flag);
1714 }
1715
James Smart2e0fef82007-06-17 19:56:36 -05001716 mod_timer(&vport->fc_disctmo, jiffies + HZ * tmo);
1717 spin_lock_irq(shost->host_lock);
1718 vport->fc_flag |= FC_DISC_TMO;
1719 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05001720
1721 /* Start Discovery Timer state <hba_state> */
1722 lpfc_printf_log(phba, KERN_INFO, LOG_DISCOVERY,
James Smart92d7f7b2007-06-17 19:56:38 -05001723 "%d (%d):0247 Start Discovery Timer state x%x "
dea31012005-04-17 16:05:31 -05001724 "Data: x%x x%lx x%x x%x\n",
James Smart92d7f7b2007-06-17 19:56:38 -05001725 phba->brd_no, vport->vpi, vport->port_state, tmo,
James Smart2e0fef82007-06-17 19:56:36 -05001726 (unsigned long)&vport->fc_disctmo, vport->fc_plogi_cnt,
1727 vport->fc_adisc_cnt);
dea31012005-04-17 16:05:31 -05001728
1729 return;
1730}
1731
1732/*
1733 * Cancel rescue timer for Discovery / RSCN handling
1734 */
1735int
James Smart2e0fef82007-06-17 19:56:36 -05001736lpfc_can_disctmo(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05001737{
James Smart2e0fef82007-06-17 19:56:36 -05001738 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1739 struct lpfc_hba *phba = vport->phba;
1740 unsigned long iflags;
1741
James Smart858c9f62007-06-17 19:56:39 -05001742 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
1743 "can disc timer: state:x%x rtry:x%x flg:x%x",
1744 vport->port_state, vport->fc_ns_retry, vport->fc_flag);
1745
dea31012005-04-17 16:05:31 -05001746 /* Turn off discovery timer if its running */
James Smart2e0fef82007-06-17 19:56:36 -05001747 if (vport->fc_flag & FC_DISC_TMO) {
1748 spin_lock_irqsave(shost->host_lock, iflags);
1749 vport->fc_flag &= ~FC_DISC_TMO;
1750 spin_unlock_irqrestore(shost->host_lock, iflags);
1751 del_timer_sync(&vport->fc_disctmo);
1752 spin_lock_irqsave(&vport->work_port_lock, iflags);
1753 vport->work_port_events &= ~WORKER_DISC_TMO;
1754 spin_unlock_irqrestore(&vport->work_port_lock, iflags);
dea31012005-04-17 16:05:31 -05001755 }
1756
1757 /* Cancel Discovery Timer state <hba_state> */
1758 lpfc_printf_log(phba, KERN_INFO, LOG_DISCOVERY,
James Smart92d7f7b2007-06-17 19:56:38 -05001759 "%d (%d):0248 Cancel Discovery Timer state x%x "
dea31012005-04-17 16:05:31 -05001760 "Data: x%x x%x x%x\n",
James Smart92d7f7b2007-06-17 19:56:38 -05001761 phba->brd_no, vport->vpi, vport->port_state,
1762 vport->fc_flag, vport->fc_plogi_cnt,
1763 vport->fc_adisc_cnt);
dea31012005-04-17 16:05:31 -05001764
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05001765 return 0;
dea31012005-04-17 16:05:31 -05001766}
1767
1768/*
1769 * Check specified ring for outstanding IOCB on the SLI queue
1770 * Return true if iocb matches the specified nport
1771 */
1772int
James Smart2e0fef82007-06-17 19:56:36 -05001773lpfc_check_sli_ndlp(struct lpfc_hba *phba,
1774 struct lpfc_sli_ring *pring,
1775 struct lpfc_iocbq *iocb,
1776 struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05001777{
James Smart2e0fef82007-06-17 19:56:36 -05001778 struct lpfc_sli *psli = &phba->sli;
1779 IOCB_t *icmd = &iocb->iocb;
James Smart92d7f7b2007-06-17 19:56:38 -05001780 struct lpfc_vport *vport = ndlp->vport;
1781
1782 if (iocb->vport != vport)
1783 return 0;
1784
dea31012005-04-17 16:05:31 -05001785 if (pring->ringno == LPFC_ELS_RING) {
1786 switch (icmd->ulpCommand) {
1787 case CMD_GEN_REQUEST64_CR:
1788 if (icmd->ulpContext == (volatile ushort)ndlp->nlp_rpi)
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05001789 return 1;
dea31012005-04-17 16:05:31 -05001790 case CMD_ELS_REQUEST64_CR:
James Smart10d4e952006-04-15 11:53:15 -04001791 if (icmd->un.elsreq64.remoteID == ndlp->nlp_DID)
1792 return 1;
dea31012005-04-17 16:05:31 -05001793 case CMD_XMIT_ELS_RSP64_CX:
1794 if (iocb->context1 == (uint8_t *) ndlp)
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05001795 return 1;
dea31012005-04-17 16:05:31 -05001796 }
James Smarta4bc3372006-12-02 13:34:16 -05001797 } else if (pring->ringno == psli->extra_ring) {
dea31012005-04-17 16:05:31 -05001798
1799 } else if (pring->ringno == psli->fcp_ring) {
1800 /* Skip match check if waiting to relogin to FCP target */
1801 if ((ndlp->nlp_type & NLP_FCP_TARGET) &&
James Smart92d7f7b2007-06-17 19:56:38 -05001802 (ndlp->nlp_flag & NLP_DELAY_TMO)) {
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05001803 return 0;
dea31012005-04-17 16:05:31 -05001804 }
1805 if (icmd->ulpContext == (volatile ushort)ndlp->nlp_rpi) {
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05001806 return 1;
dea31012005-04-17 16:05:31 -05001807 }
1808 } else if (pring->ringno == psli->next_ring) {
1809
1810 }
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05001811 return 0;
dea31012005-04-17 16:05:31 -05001812}
1813
1814/*
1815 * Free resources / clean up outstanding I/Os
1816 * associated with nlp_rpi in the LPFC_NODELIST entry.
1817 */
1818static int
James Smart2e0fef82007-06-17 19:56:36 -05001819lpfc_no_rpi(struct lpfc_hba *phba, struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05001820{
James Smart2534ba72007-04-25 09:52:20 -04001821 LIST_HEAD(completions);
dea31012005-04-17 16:05:31 -05001822 struct lpfc_sli *psli;
1823 struct lpfc_sli_ring *pring;
1824 struct lpfc_iocbq *iocb, *next_iocb;
1825 IOCB_t *icmd;
1826 uint32_t rpi, i;
1827
James Smart92d7f7b2007-06-17 19:56:38 -05001828 lpfc_fabric_abort_nport(ndlp);
1829
dea31012005-04-17 16:05:31 -05001830 /*
1831 * Everything that matches on txcmplq will be returned
1832 * by firmware with a no rpi error.
1833 */
1834 psli = &phba->sli;
1835 rpi = ndlp->nlp_rpi;
1836 if (rpi) {
1837 /* Now process each ring */
1838 for (i = 0; i < psli->num_rings; i++) {
1839 pring = &psli->ring[i];
1840
James Smart2e0fef82007-06-17 19:56:36 -05001841 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05001842 list_for_each_entry_safe(iocb, next_iocb, &pring->txq,
James Smart2e0fef82007-06-17 19:56:36 -05001843 list) {
dea31012005-04-17 16:05:31 -05001844 /*
1845 * Check to see if iocb matches the nport we are
1846 * looking for
1847 */
James Smart92d7f7b2007-06-17 19:56:38 -05001848 if ((lpfc_check_sli_ndlp(phba, pring, iocb,
1849 ndlp))) {
dea31012005-04-17 16:05:31 -05001850 /* It matches, so deque and call compl
1851 with an error */
James Smart2534ba72007-04-25 09:52:20 -04001852 list_move_tail(&iocb->list,
1853 &completions);
dea31012005-04-17 16:05:31 -05001854 pring->txq_cnt--;
dea31012005-04-17 16:05:31 -05001855 }
1856 }
James Smart2e0fef82007-06-17 19:56:36 -05001857 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05001858 }
1859 }
James Smart2534ba72007-04-25 09:52:20 -04001860
1861 while (!list_empty(&completions)) {
1862 iocb = list_get_first(&completions, struct lpfc_iocbq, list);
James Smart92d7f7b2007-06-17 19:56:38 -05001863 list_del_init(&iocb->list);
James Smart2534ba72007-04-25 09:52:20 -04001864
James Smart2e0fef82007-06-17 19:56:36 -05001865 if (!iocb->iocb_cmpl)
1866 lpfc_sli_release_iocbq(phba, iocb);
1867 else {
James Smart2534ba72007-04-25 09:52:20 -04001868 icmd = &iocb->iocb;
1869 icmd->ulpStatus = IOSTAT_LOCAL_REJECT;
1870 icmd->un.ulpWord[4] = IOERR_SLI_ABORTED;
James Smart2e0fef82007-06-17 19:56:36 -05001871 (iocb->iocb_cmpl)(phba, iocb, iocb);
1872 }
James Smart2534ba72007-04-25 09:52:20 -04001873 }
1874
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05001875 return 0;
dea31012005-04-17 16:05:31 -05001876}
1877
1878/*
1879 * Free rpi associated with LPFC_NODELIST entry.
1880 * This routine is called from lpfc_freenode(), when we are removing
1881 * a LPFC_NODELIST entry. It is also called if the driver initiates a
1882 * LOGO that completes successfully, and we are waiting to PLOGI back
1883 * to the remote NPort. In addition, it is called after we receive
1884 * and unsolicated ELS cmd, send back a rsp, the rsp completes and
1885 * we are waiting to PLOGI back to the remote NPort.
1886 */
1887int
James Smart2e0fef82007-06-17 19:56:36 -05001888lpfc_unreg_rpi(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05001889{
James Smart2e0fef82007-06-17 19:56:36 -05001890 struct lpfc_hba *phba = vport->phba;
1891 LPFC_MBOXQ_t *mbox;
dea31012005-04-17 16:05:31 -05001892 int rc;
1893
1894 if (ndlp->nlp_rpi) {
James Smart2e0fef82007-06-17 19:56:36 -05001895 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
1896 if (mbox) {
James Smart92d7f7b2007-06-17 19:56:38 -05001897 lpfc_unreg_login(phba, vport->vpi, ndlp->nlp_rpi, mbox);
James Smarted957682007-06-17 19:56:37 -05001898 mbox->vport = vport;
James Smart92d7f7b2007-06-17 19:56:38 -05001899 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
1900 rc = lpfc_sli_issue_mbox(phba, mbox,
1901 (MBX_NOWAIT | MBX_STOP_IOCB));
dea31012005-04-17 16:05:31 -05001902 if (rc == MBX_NOT_FINISHED)
James Smart2e0fef82007-06-17 19:56:36 -05001903 mempool_free(mbox, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -05001904 }
dea31012005-04-17 16:05:31 -05001905 lpfc_no_rpi(phba, ndlp);
1906 ndlp->nlp_rpi = 0;
1907 return 1;
1908 }
1909 return 0;
1910}
1911
James Smart92d7f7b2007-06-17 19:56:38 -05001912void
1913lpfc_unreg_all_rpis(struct lpfc_vport *vport)
1914{
1915 struct lpfc_hba *phba = vport->phba;
1916 LPFC_MBOXQ_t *mbox;
1917 int rc;
1918
1919 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
1920 if (mbox) {
1921 lpfc_unreg_login(phba, vport->vpi, 0xffff, mbox);
1922 mbox->vport = vport;
1923 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
1924 rc = lpfc_sli_issue_mbox(phba, mbox,
1925 (MBX_NOWAIT | MBX_STOP_IOCB));
1926 if (rc == MBX_NOT_FINISHED) {
1927 mempool_free(mbox, phba->mbox_mem_pool);
1928 }
1929 }
1930}
1931
1932void
1933lpfc_unreg_default_rpis(struct lpfc_vport *vport)
1934{
1935 struct lpfc_hba *phba = vport->phba;
1936 LPFC_MBOXQ_t *mbox;
1937 int rc;
1938
1939 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
1940 if (mbox) {
1941 lpfc_unreg_did(phba, vport->vpi, 0xffffffff, mbox);
1942 mbox->vport = vport;
1943 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
1944 rc = lpfc_sli_issue_mbox(phba, mbox,
1945 (MBX_NOWAIT | MBX_STOP_IOCB));
1946 if (rc == MBX_NOT_FINISHED) {
1947 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_VPORT,
1948 "%d (%d):1815 Could not issue "
1949 "unreg_did (default rpis)\n",
1950 phba->brd_no, vport->vpi);
1951 mempool_free(mbox, phba->mbox_mem_pool);
1952 }
1953 }
1954}
1955
dea31012005-04-17 16:05:31 -05001956/*
1957 * Free resources associated with LPFC_NODELIST entry
1958 * so it can be freed.
1959 */
1960static int
James Smart2e0fef82007-06-17 19:56:36 -05001961lpfc_cleanup_node(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05001962{
James Smart2e0fef82007-06-17 19:56:36 -05001963 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1964 struct lpfc_hba *phba = vport->phba;
1965 LPFC_MBOXQ_t *mb, *nextmb;
dea31012005-04-17 16:05:31 -05001966 struct lpfc_dmabuf *mp;
dea31012005-04-17 16:05:31 -05001967
1968 /* Cleanup node for NPort <nlp_DID> */
1969 lpfc_printf_log(phba, KERN_INFO, LOG_NODE,
James Smart92d7f7b2007-06-17 19:56:38 -05001970 "%d (%d):0900 Cleanup node for NPort x%x "
dea31012005-04-17 16:05:31 -05001971 "Data: x%x x%x x%x\n",
James Smart92d7f7b2007-06-17 19:56:38 -05001972 phba->brd_no, vport->vpi, ndlp->nlp_DID, ndlp->nlp_flag,
dea31012005-04-17 16:05:31 -05001973 ndlp->nlp_state, ndlp->nlp_rpi);
1974
James Smart2e0fef82007-06-17 19:56:36 -05001975 lpfc_dequeue_node(vport, ndlp);
dea31012005-04-17 16:05:31 -05001976
dea31012005-04-17 16:05:31 -05001977 /* cleanup any ndlp on mbox q waiting for reglogin cmpl */
1978 if ((mb = phba->sli.mbox_active)) {
1979 if ((mb->mb.mbxCommand == MBX_REG_LOGIN64) &&
1980 (ndlp == (struct lpfc_nodelist *) mb->context2)) {
1981 mb->context2 = NULL;
1982 mb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
1983 }
1984 }
James Smart33ccf8d2006-08-17 11:57:58 -04001985
James Smart2e0fef82007-06-17 19:56:36 -05001986 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05001987 list_for_each_entry_safe(mb, nextmb, &phba->sli.mboxq, list) {
1988 if ((mb->mb.mbxCommand == MBX_REG_LOGIN64) &&
James Smart92d7f7b2007-06-17 19:56:38 -05001989 (ndlp == (struct lpfc_nodelist *) mb->context2)) {
dea31012005-04-17 16:05:31 -05001990 mp = (struct lpfc_dmabuf *) (mb->context1);
1991 if (mp) {
James Smart2e0fef82007-06-17 19:56:36 -05001992 __lpfc_mbuf_free(phba, mp->virt, mp->phys);
dea31012005-04-17 16:05:31 -05001993 kfree(mp);
1994 }
1995 list_del(&mb->list);
1996 mempool_free(mb, phba->mbox_mem_pool);
James Smart329f9bc2007-04-25 09:53:01 -04001997 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05001998 }
1999 }
James Smart2e0fef82007-06-17 19:56:36 -05002000 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05002001
James Smart07951072007-04-25 09:51:38 -04002002 lpfc_els_abort(phba,ndlp);
James Smart2e0fef82007-06-17 19:56:36 -05002003 spin_lock_irq(shost->host_lock);
James Smartc01f3202006-08-18 17:47:08 -04002004 ndlp->nlp_flag &= ~NLP_DELAY_TMO;
James Smart2e0fef82007-06-17 19:56:36 -05002005 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002006
Jamie Wellnitz5024ab12006-02-28 19:25:28 -05002007 ndlp->nlp_last_elscmd = 0;
dea31012005-04-17 16:05:31 -05002008 del_timer_sync(&ndlp->nlp_delayfunc);
2009
dea31012005-04-17 16:05:31 -05002010 if (!list_empty(&ndlp->els_retry_evt.evt_listp))
2011 list_del_init(&ndlp->els_retry_evt.evt_listp);
James Smart92d7f7b2007-06-17 19:56:38 -05002012 if (!list_empty(&ndlp->dev_loss_evt.evt_listp))
2013 list_del_init(&ndlp->dev_loss_evt.evt_listp);
dea31012005-04-17 16:05:31 -05002014
James Smart858c9f62007-06-17 19:56:39 -05002015 if (!list_empty(&ndlp->dev_loss_evt.evt_listp)) {
2016 list_del_init(&ndlp->dev_loss_evt.evt_listp);
2017 complete((struct completion *)(ndlp->dev_loss_evt.evt_arg2));
2018 }
2019
James Smart2e0fef82007-06-17 19:56:36 -05002020 lpfc_unreg_rpi(vport, ndlp);
dea31012005-04-17 16:05:31 -05002021
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05002022 return 0;
dea31012005-04-17 16:05:31 -05002023}
2024
2025/*
2026 * Check to see if we can free the nlp back to the freelist.
2027 * If we are in the middle of using the nlp in the discovery state
2028 * machine, defer the free till we reach the end of the state machine.
2029 */
James Smart329f9bc2007-04-25 09:53:01 -04002030static void
James Smart2e0fef82007-06-17 19:56:36 -05002031lpfc_nlp_remove(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05002032{
James Smart1dcb58e2007-04-25 09:51:30 -04002033 struct lpfc_rport_data *rdata;
dea31012005-04-17 16:05:31 -05002034
2035 if (ndlp->nlp_flag & NLP_DELAY_TMO) {
James Smart2e0fef82007-06-17 19:56:36 -05002036 lpfc_cancel_retry_delay_tmo(vport, ndlp);
dea31012005-04-17 16:05:31 -05002037 }
2038
James Smart2e0fef82007-06-17 19:56:36 -05002039 lpfc_cleanup_node(vport, ndlp);
James Smart1dcb58e2007-04-25 09:51:30 -04002040
James Smart2e0fef82007-06-17 19:56:36 -05002041 /*
James Smart92d7f7b2007-06-17 19:56:38 -05002042 * We can get here with a non-NULL ndlp->rport because when we
2043 * unregister a rport we don't break the rport/node linkage. So if we
2044 * do, make sure we don't leaving any dangling pointers behind.
James Smart2e0fef82007-06-17 19:56:36 -05002045 */
James Smart92d7f7b2007-06-17 19:56:38 -05002046 if (ndlp->rport) {
James Smart329f9bc2007-04-25 09:53:01 -04002047 rdata = ndlp->rport->dd_data;
2048 rdata->pnode = NULL;
2049 ndlp->rport = NULL;
dea31012005-04-17 16:05:31 -05002050 }
dea31012005-04-17 16:05:31 -05002051}
2052
2053static int
James Smart2e0fef82007-06-17 19:56:36 -05002054lpfc_matchdid(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2055 uint32_t did)
dea31012005-04-17 16:05:31 -05002056{
James Smart2e0fef82007-06-17 19:56:36 -05002057 D_ID mydid, ndlpdid, matchdid;
dea31012005-04-17 16:05:31 -05002058
2059 if (did == Bcast_DID)
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05002060 return 0;
dea31012005-04-17 16:05:31 -05002061
2062 if (ndlp->nlp_DID == 0) {
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05002063 return 0;
dea31012005-04-17 16:05:31 -05002064 }
2065
2066 /* First check for Direct match */
2067 if (ndlp->nlp_DID == did)
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05002068 return 1;
dea31012005-04-17 16:05:31 -05002069
2070 /* Next check for area/domain identically equals 0 match */
James Smart2e0fef82007-06-17 19:56:36 -05002071 mydid.un.word = vport->fc_myDID;
dea31012005-04-17 16:05:31 -05002072 if ((mydid.un.b.domain == 0) && (mydid.un.b.area == 0)) {
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05002073 return 0;
dea31012005-04-17 16:05:31 -05002074 }
2075
2076 matchdid.un.word = did;
2077 ndlpdid.un.word = ndlp->nlp_DID;
2078 if (matchdid.un.b.id == ndlpdid.un.b.id) {
2079 if ((mydid.un.b.domain == matchdid.un.b.domain) &&
2080 (mydid.un.b.area == matchdid.un.b.area)) {
2081 if ((ndlpdid.un.b.domain == 0) &&
2082 (ndlpdid.un.b.area == 0)) {
2083 if (ndlpdid.un.b.id)
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05002084 return 1;
dea31012005-04-17 16:05:31 -05002085 }
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05002086 return 0;
dea31012005-04-17 16:05:31 -05002087 }
2088
2089 matchdid.un.word = ndlp->nlp_DID;
2090 if ((mydid.un.b.domain == ndlpdid.un.b.domain) &&
2091 (mydid.un.b.area == ndlpdid.un.b.area)) {
2092 if ((matchdid.un.b.domain == 0) &&
2093 (matchdid.un.b.area == 0)) {
2094 if (matchdid.un.b.id)
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05002095 return 1;
dea31012005-04-17 16:05:31 -05002096 }
2097 }
2098 }
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05002099 return 0;
dea31012005-04-17 16:05:31 -05002100}
2101
James Smart685f0bf2007-04-25 09:53:08 -04002102/* Search for a nodelist entry */
James Smart2e0fef82007-06-17 19:56:36 -05002103static struct lpfc_nodelist *
2104__lpfc_findnode_did(struct lpfc_vport *vport, uint32_t did)
dea31012005-04-17 16:05:31 -05002105{
James Smart2e0fef82007-06-17 19:56:36 -05002106 struct lpfc_hba *phba = vport->phba;
James Smart2fb9bd82006-12-02 13:33:57 -05002107 struct lpfc_nodelist *ndlp;
dea31012005-04-17 16:05:31 -05002108 uint32_t data1;
2109
James Smart2e0fef82007-06-17 19:56:36 -05002110 list_for_each_entry(ndlp, &vport->fc_nodes, nlp_listp) {
2111 if (lpfc_matchdid(vport, ndlp, did)) {
James Smart685f0bf2007-04-25 09:53:08 -04002112 data1 = (((uint32_t) ndlp->nlp_state << 24) |
2113 ((uint32_t) ndlp->nlp_xri << 16) |
2114 ((uint32_t) ndlp->nlp_type << 8) |
2115 ((uint32_t) ndlp->nlp_rpi & 0xff));
2116 lpfc_printf_log(phba, KERN_INFO, LOG_NODE,
James Smart92d7f7b2007-06-17 19:56:38 -05002117 "%d (%d):0929 FIND node DID "
James Smart685f0bf2007-04-25 09:53:08 -04002118 " Data: x%p x%x x%x x%x\n",
James Smart92d7f7b2007-06-17 19:56:38 -05002119 phba->brd_no, vport->vpi,
James Smart685f0bf2007-04-25 09:53:08 -04002120 ndlp, ndlp->nlp_DID,
2121 ndlp->nlp_flag, data1);
James Smart685f0bf2007-04-25 09:53:08 -04002122 return ndlp;
dea31012005-04-17 16:05:31 -05002123 }
2124 }
Jamie Wellnitz66a9ed62006-02-28 22:33:10 -05002125
dea31012005-04-17 16:05:31 -05002126 /* FIND node did <did> NOT FOUND */
James Smart2fb9bd82006-12-02 13:33:57 -05002127 lpfc_printf_log(phba, KERN_INFO, LOG_NODE,
James Smart92d7f7b2007-06-17 19:56:38 -05002128 "%d (%d):0932 FIND node did x%x NOT FOUND.\n",
2129 phba->brd_no, vport->vpi, did);
dea31012005-04-17 16:05:31 -05002130 return NULL;
2131}
2132
2133struct lpfc_nodelist *
James Smart2e0fef82007-06-17 19:56:36 -05002134lpfc_findnode_did(struct lpfc_vport *vport, uint32_t did)
dea31012005-04-17 16:05:31 -05002135{
James Smart2e0fef82007-06-17 19:56:36 -05002136 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -05002137 struct lpfc_nodelist *ndlp;
dea31012005-04-17 16:05:31 -05002138
James Smart2e0fef82007-06-17 19:56:36 -05002139 spin_lock_irq(shost->host_lock);
2140 ndlp = __lpfc_findnode_did(vport, did);
2141 spin_unlock_irq(shost->host_lock);
2142 return ndlp;
2143}
2144
2145struct lpfc_nodelist *
2146lpfc_setup_disc_node(struct lpfc_vport *vport, uint32_t did)
2147{
2148 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2149 struct lpfc_nodelist *ndlp;
2150
2151 ndlp = lpfc_findnode_did(vport, did);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05002152 if (!ndlp) {
James Smart2e0fef82007-06-17 19:56:36 -05002153 if ((vport->fc_flag & FC_RSCN_MODE) != 0 &&
2154 lpfc_rscn_payload_check(vport, did) == 0)
dea31012005-04-17 16:05:31 -05002155 return NULL;
2156 ndlp = (struct lpfc_nodelist *)
James Smart2e0fef82007-06-17 19:56:36 -05002157 mempool_alloc(vport->phba->nlp_mem_pool, GFP_KERNEL);
dea31012005-04-17 16:05:31 -05002158 if (!ndlp)
2159 return NULL;
James Smart2e0fef82007-06-17 19:56:36 -05002160 lpfc_nlp_init(vport, ndlp, did);
2161 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
2162 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002163 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
James Smart2e0fef82007-06-17 19:56:36 -05002164 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002165 return ndlp;
2166 }
James Smart2e0fef82007-06-17 19:56:36 -05002167 if (vport->fc_flag & FC_RSCN_MODE) {
2168 if (lpfc_rscn_payload_check(vport, did)) {
2169 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002170 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
James Smart2e0fef82007-06-17 19:56:36 -05002171 spin_unlock_irq(shost->host_lock);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05002172
2173 /* Since this node is marked for discovery,
2174 * delay timeout is not needed.
2175 */
James Smartfdcebe22006-03-07 15:04:01 -05002176 if (ndlp->nlp_flag & NLP_DELAY_TMO)
James Smart2e0fef82007-06-17 19:56:36 -05002177 lpfc_cancel_retry_delay_tmo(vport, ndlp);
James Smart071fbd3d2006-04-15 11:53:20 -04002178 } else
dea31012005-04-17 16:05:31 -05002179 ndlp = NULL;
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05002180 } else {
James Smart685f0bf2007-04-25 09:53:08 -04002181 if (ndlp->nlp_state == NLP_STE_ADISC_ISSUE ||
2182 ndlp->nlp_state == NLP_STE_PLOGI_ISSUE)
dea31012005-04-17 16:05:31 -05002183 return NULL;
James Smart2e0fef82007-06-17 19:56:36 -05002184 lpfc_nlp_set_state(vport, ndlp, NLP_STE_NPR_NODE);
2185 spin_lock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002186 ndlp->nlp_flag |= NLP_NPR_2B_DISC;
James Smart2e0fef82007-06-17 19:56:36 -05002187 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002188 }
2189 return ndlp;
2190}
2191
2192/* Build a list of nodes to discover based on the loopmap */
2193void
James Smart2e0fef82007-06-17 19:56:36 -05002194lpfc_disc_list_loopmap(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05002195{
James Smart2e0fef82007-06-17 19:56:36 -05002196 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05002197 int j;
2198 uint32_t alpa, index;
2199
James Smart2e0fef82007-06-17 19:56:36 -05002200 if (!lpfc_is_link_up(phba))
dea31012005-04-17 16:05:31 -05002201 return;
James Smart2e0fef82007-06-17 19:56:36 -05002202
2203 if (phba->fc_topology != TOPOLOGY_LOOP)
dea31012005-04-17 16:05:31 -05002204 return;
dea31012005-04-17 16:05:31 -05002205
2206 /* Check for loop map present or not */
2207 if (phba->alpa_map[0]) {
2208 for (j = 1; j <= phba->alpa_map[0]; j++) {
2209 alpa = phba->alpa_map[j];
James Smart2e0fef82007-06-17 19:56:36 -05002210 if (((vport->fc_myDID & 0xff) == alpa) || (alpa == 0))
dea31012005-04-17 16:05:31 -05002211 continue;
James Smart2e0fef82007-06-17 19:56:36 -05002212 lpfc_setup_disc_node(vport, alpa);
dea31012005-04-17 16:05:31 -05002213 }
2214 } else {
2215 /* No alpamap, so try all alpa's */
2216 for (j = 0; j < FC_MAXLOOP; j++) {
2217 /* If cfg_scan_down is set, start from highest
2218 * ALPA (0xef) to lowest (0x1).
2219 */
2220 if (phba->cfg_scan_down)
2221 index = j;
2222 else
2223 index = FC_MAXLOOP - j - 1;
2224 alpa = lpfcAlpaArray[index];
James Smart2e0fef82007-06-17 19:56:36 -05002225 if ((vport->fc_myDID & 0xff) == alpa)
dea31012005-04-17 16:05:31 -05002226 continue;
James Smart2e0fef82007-06-17 19:56:36 -05002227 lpfc_setup_disc_node(vport, alpa);
dea31012005-04-17 16:05:31 -05002228 }
2229 }
2230 return;
2231}
2232
dea31012005-04-17 16:05:31 -05002233void
James Smart2e0fef82007-06-17 19:56:36 -05002234lpfc_issue_clear_la(struct lpfc_hba *phba, struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05002235{
dea31012005-04-17 16:05:31 -05002236 LPFC_MBOXQ_t *mbox;
James Smart2e0fef82007-06-17 19:56:36 -05002237 struct lpfc_sli *psli = &phba->sli;
2238 struct lpfc_sli_ring *extra_ring = &psli->ring[psli->extra_ring];
2239 struct lpfc_sli_ring *fcp_ring = &psli->ring[psli->fcp_ring];
2240 struct lpfc_sli_ring *next_ring = &psli->ring[psli->next_ring];
2241 int rc;
2242
James Smart92d7f7b2007-06-17 19:56:38 -05002243 /*
2244 * if it's not a physical port or if we already send
2245 * clear_la then don't send it.
2246 */
2247 if ((phba->link_state >= LPFC_CLEAR_LA) ||
2248 (vport->port_type != LPFC_PHYSICAL_PORT))
2249 return;
2250
James Smart2e0fef82007-06-17 19:56:36 -05002251 /* Link up discovery */
2252 if ((mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL)) != NULL) {
2253 phba->link_state = LPFC_CLEAR_LA;
2254 lpfc_clear_la(phba, mbox);
2255 mbox->mbox_cmpl = lpfc_mbx_cmpl_clear_la;
2256 mbox->vport = vport;
2257 rc = lpfc_sli_issue_mbox(phba, mbox, (MBX_NOWAIT |
2258 MBX_STOP_IOCB));
2259 if (rc == MBX_NOT_FINISHED) {
2260 mempool_free(mbox, phba->mbox_mem_pool);
2261 lpfc_disc_flush_list(vport);
2262 extra_ring->flag &= ~LPFC_STOP_IOCB_EVENT;
2263 fcp_ring->flag &= ~LPFC_STOP_IOCB_EVENT;
2264 next_ring->flag &= ~LPFC_STOP_IOCB_EVENT;
James Smart92d7f7b2007-06-17 19:56:38 -05002265 phba->link_state = LPFC_HBA_ERROR;
2266 }
2267 }
2268}
2269
2270/* Reg_vpi to tell firmware to resume normal operations */
2271void
2272lpfc_issue_reg_vpi(struct lpfc_hba *phba, struct lpfc_vport *vport)
2273{
2274 LPFC_MBOXQ_t *regvpimbox;
2275
2276 regvpimbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
2277 if (regvpimbox) {
2278 lpfc_reg_vpi(phba, vport->vpi, vport->fc_myDID, regvpimbox);
2279 regvpimbox->mbox_cmpl = lpfc_mbx_cmpl_reg_vpi;
2280 regvpimbox->vport = vport;
2281 if (lpfc_sli_issue_mbox(phba, regvpimbox,
2282 (MBX_NOWAIT | MBX_STOP_IOCB))
2283 == MBX_NOT_FINISHED) {
2284 mempool_free(regvpimbox, phba->mbox_mem_pool);
James Smart2e0fef82007-06-17 19:56:36 -05002285 }
2286 }
2287}
2288
2289/* Start Link up / RSCN discovery on NPR nodes */
2290void
2291lpfc_disc_start(struct lpfc_vport *vport)
2292{
2293 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2294 struct lpfc_hba *phba = vport->phba;
James Smart685f0bf2007-04-25 09:53:08 -04002295 uint32_t num_sent;
dea31012005-04-17 16:05:31 -05002296 uint32_t clear_la_pending;
James Smart685f0bf2007-04-25 09:53:08 -04002297 int did_changed;
dea31012005-04-17 16:05:31 -05002298
James Smart2e0fef82007-06-17 19:56:36 -05002299 if (!lpfc_is_link_up(phba))
dea31012005-04-17 16:05:31 -05002300 return;
James Smart2e0fef82007-06-17 19:56:36 -05002301
2302 if (phba->link_state == LPFC_CLEAR_LA)
dea31012005-04-17 16:05:31 -05002303 clear_la_pending = 1;
2304 else
2305 clear_la_pending = 0;
2306
James Smart2e0fef82007-06-17 19:56:36 -05002307 if (vport->port_state < LPFC_VPORT_READY)
2308 vport->port_state = LPFC_DISC_AUTH;
dea31012005-04-17 16:05:31 -05002309
James Smart2e0fef82007-06-17 19:56:36 -05002310 lpfc_set_disctmo(vport);
2311
2312 if (vport->fc_prevDID == vport->fc_myDID)
dea31012005-04-17 16:05:31 -05002313 did_changed = 0;
James Smart2e0fef82007-06-17 19:56:36 -05002314 else
dea31012005-04-17 16:05:31 -05002315 did_changed = 1;
James Smart2e0fef82007-06-17 19:56:36 -05002316
2317 vport->fc_prevDID = vport->fc_myDID;
2318 vport->num_disc_nodes = 0;
dea31012005-04-17 16:05:31 -05002319
2320 /* Start Discovery state <hba_state> */
2321 lpfc_printf_log(phba, KERN_INFO, LOG_DISCOVERY,
James Smart92d7f7b2007-06-17 19:56:38 -05002322 "%d (%d):0202 Start Discovery hba state x%x "
dea31012005-04-17 16:05:31 -05002323 "Data: x%x x%x x%x\n",
James Smart92d7f7b2007-06-17 19:56:38 -05002324 phba->brd_no, vport->vpi, vport->port_state,
2325 vport->fc_flag, vport->fc_plogi_cnt,
2326 vport->fc_adisc_cnt);
dea31012005-04-17 16:05:31 -05002327
2328 /* First do ADISCs - if any */
James Smart2e0fef82007-06-17 19:56:36 -05002329 num_sent = lpfc_els_disc_adisc(vport);
dea31012005-04-17 16:05:31 -05002330
2331 if (num_sent)
2332 return;
2333
James Smart92d7f7b2007-06-17 19:56:38 -05002334 /*
2335 * For SLI3, cmpl_reg_vpi will set port_state to READY, and
2336 * continue discovery.
2337 */
2338 if ((phba->sli3_options & LPFC_SLI3_NPIV_ENABLED) &&
2339 !(vport->fc_flag & FC_RSCN_MODE)) {
2340 lpfc_issue_reg_vpi(phba, vport);
2341 return;
2342 }
James Smart2e0fef82007-06-17 19:56:36 -05002343
James Smart92d7f7b2007-06-17 19:56:38 -05002344 /*
2345 * For SLI2, we need to set port_state to READY and continue
2346 * discovery.
2347 */
2348 if (vport->port_state < LPFC_VPORT_READY && !clear_la_pending) {
2349 /* If we get here, there is nothing to ADISC */
2350 if (vport->port_type == LPFC_PHYSICAL_PORT)
2351 lpfc_issue_clear_la(phba, vport);
2352
2353 if (!(vport->fc_flag & FC_ABORT_DISCOVERY)) {
James Smart2e0fef82007-06-17 19:56:36 -05002354 vport->num_disc_nodes = 0;
2355 /* go thru NPR nodes and issue ELS PLOGIs */
2356 if (vport->fc_npr_cnt)
2357 lpfc_els_disc_plogi(vport);
2358
2359 if (!vport->num_disc_nodes) {
2360 spin_lock_irq(shost->host_lock);
2361 vport->fc_flag &= ~FC_NDISC_ACTIVE;
2362 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05002363 lpfc_can_disctmo(vport);
dea31012005-04-17 16:05:31 -05002364 }
2365 }
James Smart92d7f7b2007-06-17 19:56:38 -05002366 vport->port_state = LPFC_VPORT_READY;
dea31012005-04-17 16:05:31 -05002367 } else {
2368 /* Next do PLOGIs - if any */
James Smart2e0fef82007-06-17 19:56:36 -05002369 num_sent = lpfc_els_disc_plogi(vport);
dea31012005-04-17 16:05:31 -05002370
2371 if (num_sent)
2372 return;
2373
James Smart2e0fef82007-06-17 19:56:36 -05002374 if (vport->fc_flag & FC_RSCN_MODE) {
dea31012005-04-17 16:05:31 -05002375 /* Check to see if more RSCNs came in while we
2376 * were processing this one.
2377 */
James Smart2e0fef82007-06-17 19:56:36 -05002378 if ((vport->fc_rscn_id_cnt == 0) &&
2379 (!(vport->fc_flag & FC_RSCN_DISCOVERY))) {
2380 spin_lock_irq(shost->host_lock);
2381 vport->fc_flag &= ~FC_RSCN_MODE;
2382 spin_unlock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05002383 lpfc_can_disctmo(vport);
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05002384 } else
James Smart2e0fef82007-06-17 19:56:36 -05002385 lpfc_els_handle_rscn(vport);
dea31012005-04-17 16:05:31 -05002386 }
2387 }
2388 return;
2389}
2390
2391/*
2392 * Ignore completion for all IOCBs on tx and txcmpl queue for ELS
2393 * ring the match the sppecified nodelist.
2394 */
2395static void
James Smart2e0fef82007-06-17 19:56:36 -05002396lpfc_free_tx(struct lpfc_hba *phba, struct lpfc_nodelist *ndlp)
dea31012005-04-17 16:05:31 -05002397{
James Smart2534ba72007-04-25 09:52:20 -04002398 LIST_HEAD(completions);
dea31012005-04-17 16:05:31 -05002399 struct lpfc_sli *psli;
2400 IOCB_t *icmd;
2401 struct lpfc_iocbq *iocb, *next_iocb;
2402 struct lpfc_sli_ring *pring;
dea31012005-04-17 16:05:31 -05002403
2404 psli = &phba->sli;
2405 pring = &psli->ring[LPFC_ELS_RING];
2406
2407 /* Error matching iocb on txq or txcmplq
2408 * First check the txq.
2409 */
James Smart2e0fef82007-06-17 19:56:36 -05002410 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05002411 list_for_each_entry_safe(iocb, next_iocb, &pring->txq, list) {
2412 if (iocb->context1 != ndlp) {
2413 continue;
2414 }
2415 icmd = &iocb->iocb;
2416 if ((icmd->ulpCommand == CMD_ELS_REQUEST64_CR) ||
2417 (icmd->ulpCommand == CMD_XMIT_ELS_RSP64_CX)) {
2418
James Smart2534ba72007-04-25 09:52:20 -04002419 list_move_tail(&iocb->list, &completions);
dea31012005-04-17 16:05:31 -05002420 pring->txq_cnt--;
dea31012005-04-17 16:05:31 -05002421 }
2422 }
2423
2424 /* Next check the txcmplq */
2425 list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq, list) {
2426 if (iocb->context1 != ndlp) {
2427 continue;
2428 }
2429 icmd = &iocb->iocb;
James Smart2e0fef82007-06-17 19:56:36 -05002430 if (icmd->ulpCommand == CMD_ELS_REQUEST64_CR ||
2431 icmd->ulpCommand == CMD_XMIT_ELS_RSP64_CX) {
James Smart2534ba72007-04-25 09:52:20 -04002432 lpfc_sli_issue_abort_iotag(phba, pring, iocb);
dea31012005-04-17 16:05:31 -05002433 }
2434 }
James Smart2e0fef82007-06-17 19:56:36 -05002435 spin_unlock_irq(&phba->hbalock);
James Smart2534ba72007-04-25 09:52:20 -04002436
2437 while (!list_empty(&completions)) {
2438 iocb = list_get_first(&completions, struct lpfc_iocbq, list);
James Smart92d7f7b2007-06-17 19:56:38 -05002439 list_del_init(&iocb->list);
James Smart2534ba72007-04-25 09:52:20 -04002440
James Smart2e0fef82007-06-17 19:56:36 -05002441 if (!iocb->iocb_cmpl)
2442 lpfc_sli_release_iocbq(phba, iocb);
2443 else {
James Smart2534ba72007-04-25 09:52:20 -04002444 icmd = &iocb->iocb;
2445 icmd->ulpStatus = IOSTAT_LOCAL_REJECT;
2446 icmd->un.ulpWord[4] = IOERR_SLI_ABORTED;
2447 (iocb->iocb_cmpl) (phba, iocb, iocb);
James Smart2e0fef82007-06-17 19:56:36 -05002448 }
James Smart2534ba72007-04-25 09:52:20 -04002449 }
dea31012005-04-17 16:05:31 -05002450}
2451
2452void
James Smart2e0fef82007-06-17 19:56:36 -05002453lpfc_disc_flush_list(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05002454{
2455 struct lpfc_nodelist *ndlp, *next_ndlp;
James Smart2e0fef82007-06-17 19:56:36 -05002456 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05002457
James Smart2e0fef82007-06-17 19:56:36 -05002458 if (vport->fc_plogi_cnt || vport->fc_adisc_cnt) {
2459 list_for_each_entry_safe(ndlp, next_ndlp, &vport->fc_nodes,
James Smart685f0bf2007-04-25 09:53:08 -04002460 nlp_listp) {
2461 if (ndlp->nlp_state == NLP_STE_PLOGI_ISSUE ||
2462 ndlp->nlp_state == NLP_STE_ADISC_ISSUE) {
2463 lpfc_free_tx(phba, ndlp);
2464 lpfc_nlp_put(ndlp);
2465 }
dea31012005-04-17 16:05:31 -05002466 }
2467 }
dea31012005-04-17 16:05:31 -05002468}
2469
James Smart92d7f7b2007-06-17 19:56:38 -05002470void
2471lpfc_cleanup_discovery_resources(struct lpfc_vport *vport)
2472{
2473 lpfc_els_flush_rscn(vport);
2474 lpfc_els_flush_cmd(vport);
2475 lpfc_disc_flush_list(vport);
2476}
2477
dea31012005-04-17 16:05:31 -05002478/*****************************************************************************/
2479/*
2480 * NAME: lpfc_disc_timeout
2481 *
2482 * FUNCTION: Fibre Channel driver discovery timeout routine.
2483 *
2484 * EXECUTION ENVIRONMENT: interrupt only
2485 *
2486 * CALLED FROM:
2487 * Timer function
2488 *
2489 * RETURNS:
2490 * none
2491 */
2492/*****************************************************************************/
2493void
2494lpfc_disc_timeout(unsigned long ptr)
2495{
James Smart2e0fef82007-06-17 19:56:36 -05002496 struct lpfc_vport *vport = (struct lpfc_vport *) ptr;
2497 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05002498 unsigned long flags = 0;
2499
2500 if (unlikely(!phba))
2501 return;
2502
James Smart2e0fef82007-06-17 19:56:36 -05002503 if ((vport->work_port_events & WORKER_DISC_TMO) == 0) {
2504 spin_lock_irqsave(&vport->work_port_lock, flags);
2505 vport->work_port_events |= WORKER_DISC_TMO;
2506 spin_unlock_irqrestore(&vport->work_port_lock, flags);
2507
James Smart92d7f7b2007-06-17 19:56:38 -05002508 spin_lock_irqsave(&phba->hbalock, flags);
dea31012005-04-17 16:05:31 -05002509 if (phba->work_wait)
James Smart92d7f7b2007-06-17 19:56:38 -05002510 lpfc_worker_wake_up(phba);
2511 spin_unlock_irqrestore(&phba->hbalock, flags);
dea31012005-04-17 16:05:31 -05002512 }
dea31012005-04-17 16:05:31 -05002513 return;
2514}
2515
2516static void
James Smart2e0fef82007-06-17 19:56:36 -05002517lpfc_disc_timeout_handler(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05002518{
James Smart2e0fef82007-06-17 19:56:36 -05002519 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2520 struct lpfc_hba *phba = vport->phba;
2521 struct lpfc_sli *psli = &phba->sli;
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05002522 struct lpfc_nodelist *ndlp, *next_ndlp;
James Smart92d7f7b2007-06-17 19:56:38 -05002523 LPFC_MBOXQ_t *initlinkmbox;
dea31012005-04-17 16:05:31 -05002524 int rc, clrlaerr = 0;
2525
James Smart2e0fef82007-06-17 19:56:36 -05002526 if (!(vport->fc_flag & FC_DISC_TMO))
dea31012005-04-17 16:05:31 -05002527 return;
2528
James Smart2e0fef82007-06-17 19:56:36 -05002529 spin_lock_irq(shost->host_lock);
2530 vport->fc_flag &= ~FC_DISC_TMO;
2531 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002532
James Smart858c9f62007-06-17 19:56:39 -05002533 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_ELS_CMD,
2534 "disc timeout: state:x%x rtry:x%x flg:x%x",
2535 vport->port_state, vport->fc_ns_retry, vport->fc_flag);
2536
James Smart2e0fef82007-06-17 19:56:36 -05002537 switch (vport->port_state) {
dea31012005-04-17 16:05:31 -05002538
2539 case LPFC_LOCAL_CFG_LINK:
James Smart2e0fef82007-06-17 19:56:36 -05002540 /* port_state is identically LPFC_LOCAL_CFG_LINK while waiting for
2541 * FAN
2542 */
2543 /* FAN timeout */
James Smarted957682007-06-17 19:56:37 -05002544 lpfc_printf_log(phba, KERN_WARNING, LOG_DISCOVERY,
James Smart92d7f7b2007-06-17 19:56:38 -05002545 "%d (%d):0221 FAN timeout\n",
2546 phba->brd_no, vport->vpi);
dea31012005-04-17 16:05:31 -05002547
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05002548 /* Start discovery by sending FLOGI, clean up old rpis */
James Smart2e0fef82007-06-17 19:56:36 -05002549 list_for_each_entry_safe(ndlp, next_ndlp, &vport->fc_nodes,
James Smart685f0bf2007-04-25 09:53:08 -04002550 nlp_listp) {
2551 if (ndlp->nlp_state != NLP_STE_NPR_NODE)
2552 continue;
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05002553 if (ndlp->nlp_type & NLP_FABRIC) {
2554 /* Clean up the ndlp on Fabric connections */
James Smart2e0fef82007-06-17 19:56:36 -05002555 lpfc_drop_node(vport, ndlp);
Jamie Wellnitz2fe165b2006-02-28 19:25:31 -05002556 } else if (!(ndlp->nlp_flag & NLP_NPR_ADISC)) {
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05002557 /* Fail outstanding IO now since device
2558 * is marked for PLOGI.
2559 */
James Smart2e0fef82007-06-17 19:56:36 -05002560 lpfc_unreg_rpi(vport, ndlp);
Jamie Wellnitzc9f8735b2006-02-28 19:25:23 -05002561 }
2562 }
James Smart92d7f7b2007-06-17 19:56:38 -05002563 if (vport->port_state != LPFC_FLOGI) {
2564 vport->port_state = LPFC_FLOGI;
2565 lpfc_set_disctmo(vport);
2566 lpfc_initial_flogi(vport);
2567 }
dea31012005-04-17 16:05:31 -05002568 break;
2569
James Smart92d7f7b2007-06-17 19:56:38 -05002570 case LPFC_FDISC:
dea31012005-04-17 16:05:31 -05002571 case LPFC_FLOGI:
James Smart2e0fef82007-06-17 19:56:36 -05002572 /* port_state is identically LPFC_FLOGI while waiting for FLOGI cmpl */
dea31012005-04-17 16:05:31 -05002573 /* Initial FLOGI timeout */
James Smarted957682007-06-17 19:56:37 -05002574 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY,
James Smart92d7f7b2007-06-17 19:56:38 -05002575 "%d (%d):0222 Initial %s timeout\n",
2576 phba->brd_no, vport->vpi,
2577 vport->vpi ? "FLOGI" : "FDISC");
dea31012005-04-17 16:05:31 -05002578
2579 /* Assume no Fabric and go on with discovery.
2580 * Check for outstanding ELS FLOGI to abort.
2581 */
2582
2583 /* FLOGI failed, so just use loop map to make discovery list */
James Smart2e0fef82007-06-17 19:56:36 -05002584 lpfc_disc_list_loopmap(vport);
dea31012005-04-17 16:05:31 -05002585
2586 /* Start discovery */
James Smart2e0fef82007-06-17 19:56:36 -05002587 lpfc_disc_start(vport);
dea31012005-04-17 16:05:31 -05002588 break;
2589
2590 case LPFC_FABRIC_CFG_LINK:
2591 /* hba_state is identically LPFC_FABRIC_CFG_LINK while waiting for
2592 NameServer login */
2593 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY,
James Smart92d7f7b2007-06-17 19:56:38 -05002594 "%d (%d):0223 Timeout while waiting for "
2595 "NameServer login\n",
2596 phba->brd_no, vport->vpi);
dea31012005-04-17 16:05:31 -05002597
2598 /* Next look for NameServer ndlp */
James Smart2e0fef82007-06-17 19:56:36 -05002599 ndlp = lpfc_findnode_did(vport, NameServer_DID);
dea31012005-04-17 16:05:31 -05002600 if (ndlp)
James Smart329f9bc2007-04-25 09:53:01 -04002601 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05002602 /* Start discovery */
James Smart2e0fef82007-06-17 19:56:36 -05002603 lpfc_disc_start(vport);
dea31012005-04-17 16:05:31 -05002604 break;
2605
2606 case LPFC_NS_QRY:
2607 /* Check for wait for NameServer Rsp timeout */
2608 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY,
James Smart92d7f7b2007-06-17 19:56:38 -05002609 "%d (%d):0224 NameServer Query timeout "
dea31012005-04-17 16:05:31 -05002610 "Data: x%x x%x\n",
James Smart92d7f7b2007-06-17 19:56:38 -05002611 phba->brd_no, vport->vpi,
James Smart2e0fef82007-06-17 19:56:36 -05002612 vport->fc_ns_retry, LPFC_MAX_NS_RETRY);
dea31012005-04-17 16:05:31 -05002613
James Smart92d7f7b2007-06-17 19:56:38 -05002614 if (vport->fc_ns_retry < LPFC_MAX_NS_RETRY) {
2615 /* Try it one more time */
2616 vport->fc_ns_retry++;
2617 rc = lpfc_ns_cmd(vport, SLI_CTNS_GID_FT,
2618 vport->fc_ns_retry, 0);
2619 if (rc == 0)
2620 break;
dea31012005-04-17 16:05:31 -05002621 }
James Smart92d7f7b2007-06-17 19:56:38 -05002622 vport->fc_ns_retry = 0;
dea31012005-04-17 16:05:31 -05002623
James Smart92d7f7b2007-06-17 19:56:38 -05002624 /*
2625 * Discovery is over.
2626 * set port_state to PORT_READY if SLI2.
2627 * cmpl_reg_vpi will set port_state to READY for SLI3.
2628 */
2629 if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED)
2630 lpfc_issue_reg_vpi(phba, vport);
2631 else { /* NPIV Not enabled */
2632 lpfc_issue_clear_la(phba, vport);
2633 vport->port_state = LPFC_VPORT_READY;
dea31012005-04-17 16:05:31 -05002634 }
2635
2636 /* Setup and issue mailbox INITIALIZE LINK command */
2637 initlinkmbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
2638 if (!initlinkmbox) {
2639 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY,
James Smart92d7f7b2007-06-17 19:56:38 -05002640 "%d (%d):0206 Device Discovery "
dea31012005-04-17 16:05:31 -05002641 "completion error\n",
James Smart92d7f7b2007-06-17 19:56:38 -05002642 phba->brd_no, vport->vpi);
James Smart2e0fef82007-06-17 19:56:36 -05002643 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -05002644 break;
2645 }
2646
2647 lpfc_linkdown(phba);
2648 lpfc_init_link(phba, initlinkmbox, phba->cfg_topology,
2649 phba->cfg_link_speed);
2650 initlinkmbox->mb.un.varInitLnk.lipsr_AL_PA = 0;
James Smarted957682007-06-17 19:56:37 -05002651 initlinkmbox->vport = vport;
James Smart92d7f7b2007-06-17 19:56:38 -05002652 initlinkmbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
dea31012005-04-17 16:05:31 -05002653 rc = lpfc_sli_issue_mbox(phba, initlinkmbox,
2654 (MBX_NOWAIT | MBX_STOP_IOCB));
James Smart5b8bd0c2007-04-25 09:52:49 -04002655 lpfc_set_loopback_flag(phba);
dea31012005-04-17 16:05:31 -05002656 if (rc == MBX_NOT_FINISHED)
2657 mempool_free(initlinkmbox, phba->mbox_mem_pool);
2658
2659 break;
2660
2661 case LPFC_DISC_AUTH:
2662 /* Node Authentication timeout */
James Smarted957682007-06-17 19:56:37 -05002663 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY,
James Smart92d7f7b2007-06-17 19:56:38 -05002664 "%d (%d):0227 Node Authentication timeout\n",
2665 phba->brd_no, vport->vpi);
James Smart2e0fef82007-06-17 19:56:36 -05002666 lpfc_disc_flush_list(vport);
2667
James Smart92d7f7b2007-06-17 19:56:38 -05002668 /*
2669 * set port_state to PORT_READY if SLI2.
2670 * cmpl_reg_vpi will set port_state to READY for SLI3.
2671 */
2672 if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED)
2673 lpfc_issue_reg_vpi(phba, vport);
2674 else { /* NPIV Not enabled */
2675 lpfc_issue_clear_la(phba, vport);
2676 vport->port_state = LPFC_VPORT_READY;
dea31012005-04-17 16:05:31 -05002677 }
2678 break;
2679
James Smart2e0fef82007-06-17 19:56:36 -05002680 case LPFC_VPORT_READY:
2681 if (vport->fc_flag & FC_RSCN_MODE) {
James Smarted957682007-06-17 19:56:37 -05002682 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY,
James Smart92d7f7b2007-06-17 19:56:38 -05002683 "%d (%d):0231 RSCN timeout Data: x%x "
2684 "x%x\n",
2685 phba->brd_no, vport->vpi,
James Smart2e0fef82007-06-17 19:56:36 -05002686 vport->fc_ns_retry, LPFC_MAX_NS_RETRY);
dea31012005-04-17 16:05:31 -05002687
2688 /* Cleanup any outstanding ELS commands */
James Smart2e0fef82007-06-17 19:56:36 -05002689 lpfc_els_flush_cmd(vport);
dea31012005-04-17 16:05:31 -05002690
James Smart2e0fef82007-06-17 19:56:36 -05002691 lpfc_els_flush_rscn(vport);
2692 lpfc_disc_flush_list(vport);
dea31012005-04-17 16:05:31 -05002693 }
2694 break;
James Smart2e0fef82007-06-17 19:56:36 -05002695
James Smart92d7f7b2007-06-17 19:56:38 -05002696 default:
James Smarted957682007-06-17 19:56:37 -05002697 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY,
James Smart92d7f7b2007-06-17 19:56:38 -05002698 "%d (%d):0229 Unexpected discovery timeout, "
2699 "vport State x%x\n",
2700 phba->brd_no, vport->vpi, vport->port_state);
James Smart2e0fef82007-06-17 19:56:36 -05002701
2702 break;
2703 }
2704
2705 switch (phba->link_state) {
2706 case LPFC_CLEAR_LA:
James Smart92d7f7b2007-06-17 19:56:38 -05002707 /* CLEAR LA timeout */
James Smarted957682007-06-17 19:56:37 -05002708 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY,
James Smart92d7f7b2007-06-17 19:56:38 -05002709 "%d (%d):0228 CLEAR LA timeout\n",
2710 phba->brd_no, vport->vpi);
James Smart2e0fef82007-06-17 19:56:36 -05002711 clrlaerr = 1;
2712 break;
2713
2714 case LPFC_LINK_UNKNOWN:
2715 case LPFC_WARM_START:
2716 case LPFC_INIT_START:
2717 case LPFC_INIT_MBX_CMDS:
2718 case LPFC_LINK_DOWN:
2719 case LPFC_LINK_UP:
2720 case LPFC_HBA_ERROR:
James Smarted957682007-06-17 19:56:37 -05002721 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY,
James Smart92d7f7b2007-06-17 19:56:38 -05002722 "%d (%d):0230 Unexpected timeout, hba link "
James Smart2e0fef82007-06-17 19:56:36 -05002723 "state x%x\n",
James Smart92d7f7b2007-06-17 19:56:38 -05002724 phba->brd_no, vport->vpi, phba->link_state);
James Smart2e0fef82007-06-17 19:56:36 -05002725 clrlaerr = 1;
2726 break;
James Smart92d7f7b2007-06-17 19:56:38 -05002727
2728 case LPFC_HBA_READY:
2729 break;
dea31012005-04-17 16:05:31 -05002730 }
2731
2732 if (clrlaerr) {
James Smart2e0fef82007-06-17 19:56:36 -05002733 lpfc_disc_flush_list(vport);
James Smarta4bc3372006-12-02 13:34:16 -05002734 psli->ring[(psli->extra_ring)].flag &= ~LPFC_STOP_IOCB_EVENT;
dea31012005-04-17 16:05:31 -05002735 psli->ring[(psli->fcp_ring)].flag &= ~LPFC_STOP_IOCB_EVENT;
2736 psli->ring[(psli->next_ring)].flag &= ~LPFC_STOP_IOCB_EVENT;
James Smart2e0fef82007-06-17 19:56:36 -05002737 vport->port_state = LPFC_VPORT_READY;
dea31012005-04-17 16:05:31 -05002738 }
2739
2740 return;
2741}
2742
dea31012005-04-17 16:05:31 -05002743/*
2744 * This routine handles processing a NameServer REG_LOGIN mailbox
2745 * command upon completion. It is setup in the LPFC_MBOXQ
2746 * as the completion routine when the command is
2747 * handed off to the SLI layer.
2748 */
2749void
James Smart2e0fef82007-06-17 19:56:36 -05002750lpfc_mbx_cmpl_fdmi_reg_login(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
dea31012005-04-17 16:05:31 -05002751{
James Smart2e0fef82007-06-17 19:56:36 -05002752 MAILBOX_t *mb = &pmb->mb;
2753 struct lpfc_dmabuf *mp = (struct lpfc_dmabuf *) (pmb->context1);
2754 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) pmb->context2;
2755 struct lpfc_vport *vport = pmb->vport;
dea31012005-04-17 16:05:31 -05002756
2757 pmb->context1 = NULL;
2758
dea31012005-04-17 16:05:31 -05002759 ndlp->nlp_rpi = mb->un.varWords[0];
dea31012005-04-17 16:05:31 -05002760 ndlp->nlp_type |= NLP_FABRIC;
James Smart2e0fef82007-06-17 19:56:36 -05002761 lpfc_nlp_set_state(vport, ndlp, NLP_STE_UNMAPPED_NODE);
dea31012005-04-17 16:05:31 -05002762
James Smart2e0fef82007-06-17 19:56:36 -05002763 /*
2764 * Start issuing Fabric-Device Management Interface (FDMI) command to
2765 * 0xfffffa (FDMI well known port) or Delay issuing FDMI command if
2766 * fdmi-on=2 (supporting RPA/hostnmae)
dea31012005-04-17 16:05:31 -05002767 */
James Smart2e0fef82007-06-17 19:56:36 -05002768
2769 if (phba->cfg_fdmi_on == 1)
2770 lpfc_fdmi_cmd(vport, ndlp, SLI_MGMT_DHBA);
2771 else
2772 mod_timer(&vport->fc_fdmitmo, jiffies + HZ * 60);
dea31012005-04-17 16:05:31 -05002773
James Smart329f9bc2007-04-25 09:53:01 -04002774 /* Mailbox took a reference to the node */
2775 lpfc_nlp_put(ndlp);
dea31012005-04-17 16:05:31 -05002776 lpfc_mbuf_free(phba, mp->virt, mp->phys);
2777 kfree(mp);
James Smart329f9bc2007-04-25 09:53:01 -04002778 mempool_free(pmb, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -05002779
2780 return;
2781}
2782
James Smart685f0bf2007-04-25 09:53:08 -04002783static int
2784lpfc_filter_by_rpi(struct lpfc_nodelist *ndlp, void *param)
2785{
2786 uint16_t *rpi = param;
2787
2788 return ndlp->nlp_rpi == *rpi;
2789}
2790
2791static int
2792lpfc_filter_by_wwpn(struct lpfc_nodelist *ndlp, void *param)
2793{
2794 return memcmp(&ndlp->nlp_portname, param,
2795 sizeof(ndlp->nlp_portname)) == 0;
2796}
2797
dea31012005-04-17 16:05:31 -05002798struct lpfc_nodelist *
James Smart2e0fef82007-06-17 19:56:36 -05002799__lpfc_find_node(struct lpfc_vport *vport, node_filter filter, void *param)
dea31012005-04-17 16:05:31 -05002800{
James.Smart@Emulex.Com21568f52005-10-28 20:29:36 -04002801 struct lpfc_nodelist *ndlp;
dea31012005-04-17 16:05:31 -05002802
James Smart2e0fef82007-06-17 19:56:36 -05002803 list_for_each_entry(ndlp, &vport->fc_nodes, nlp_listp) {
James Smart685f0bf2007-04-25 09:53:08 -04002804 if (ndlp->nlp_state != NLP_STE_UNUSED_NODE &&
2805 filter(ndlp, param))
2806 return ndlp;
2807 }
James.Smart@Emulex.Com21568f52005-10-28 20:29:36 -04002808 return NULL;
dea31012005-04-17 16:05:31 -05002809}
2810
James Smart685f0bf2007-04-25 09:53:08 -04002811/*
2812 * Search node lists for a remote port matching filter criteria
James Smart92d7f7b2007-06-17 19:56:38 -05002813 * Caller needs to hold host_lock before calling this routine.
James Smart685f0bf2007-04-25 09:53:08 -04002814 */
2815struct lpfc_nodelist *
James Smart2e0fef82007-06-17 19:56:36 -05002816lpfc_find_node(struct lpfc_vport *vport, node_filter filter, void *param)
James Smart685f0bf2007-04-25 09:53:08 -04002817{
James Smart2e0fef82007-06-17 19:56:36 -05002818 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart685f0bf2007-04-25 09:53:08 -04002819 struct lpfc_nodelist *ndlp;
2820
James Smart2e0fef82007-06-17 19:56:36 -05002821 spin_lock_irq(shost->host_lock);
2822 ndlp = __lpfc_find_node(vport, filter, param);
2823 spin_unlock_irq(shost->host_lock);
James Smart685f0bf2007-04-25 09:53:08 -04002824 return ndlp;
2825}
2826
2827/*
2828 * This routine looks up the ndlp lists for the given RPI. If rpi found it
James Smart2e0fef82007-06-17 19:56:36 -05002829 * returns the node list element pointer else return NULL.
James Smart685f0bf2007-04-25 09:53:08 -04002830 */
2831struct lpfc_nodelist *
James Smart2e0fef82007-06-17 19:56:36 -05002832__lpfc_findnode_rpi(struct lpfc_vport *vport, uint16_t rpi)
James Smart685f0bf2007-04-25 09:53:08 -04002833{
James Smart2e0fef82007-06-17 19:56:36 -05002834 return __lpfc_find_node(vport, lpfc_filter_by_rpi, &rpi);
James Smart685f0bf2007-04-25 09:53:08 -04002835}
2836
James Smart2534ba72007-04-25 09:52:20 -04002837struct lpfc_nodelist *
James Smart2e0fef82007-06-17 19:56:36 -05002838lpfc_findnode_rpi(struct lpfc_vport *vport, uint16_t rpi)
James Smart2534ba72007-04-25 09:52:20 -04002839{
James Smart2e0fef82007-06-17 19:56:36 -05002840 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart2534ba72007-04-25 09:52:20 -04002841 struct lpfc_nodelist *ndlp;
2842
James Smart2e0fef82007-06-17 19:56:36 -05002843 spin_lock_irq(shost->host_lock);
2844 ndlp = __lpfc_findnode_rpi(vport, rpi);
2845 spin_unlock_irq(shost->host_lock);
James Smart2534ba72007-04-25 09:52:20 -04002846 return ndlp;
2847}
2848
James Smart488d1462006-03-07 15:02:37 -05002849/*
James Smart685f0bf2007-04-25 09:53:08 -04002850 * This routine looks up the ndlp lists for the given WWPN. If WWPN found it
James Smart2e0fef82007-06-17 19:56:36 -05002851 * returns the node element list pointer else return NULL.
James Smart488d1462006-03-07 15:02:37 -05002852 */
2853struct lpfc_nodelist *
James Smart2e0fef82007-06-17 19:56:36 -05002854lpfc_findnode_wwpn(struct lpfc_vport *vport, struct lpfc_name *wwpn)
James Smart488d1462006-03-07 15:02:37 -05002855{
James Smart2e0fef82007-06-17 19:56:36 -05002856 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smart488d1462006-03-07 15:02:37 -05002857 struct lpfc_nodelist *ndlp;
James Smart488d1462006-03-07 15:02:37 -05002858
James Smart2e0fef82007-06-17 19:56:36 -05002859 spin_lock_irq(shost->host_lock);
2860 ndlp = __lpfc_find_node(vport, lpfc_filter_by_wwpn, wwpn);
2861 spin_unlock_irq(shost->host_lock);
James Smart858c9f62007-06-17 19:56:39 -05002862 return ndlp;
James Smart488d1462006-03-07 15:02:37 -05002863}
2864
dea31012005-04-17 16:05:31 -05002865void
James Smart92d7f7b2007-06-17 19:56:38 -05002866lpfc_dev_loss_delay(unsigned long ptr)
2867{
2868 struct lpfc_nodelist *ndlp = (struct lpfc_nodelist *) ptr;
2869 struct lpfc_vport *vport = ndlp->vport;
2870 struct lpfc_hba *phba = vport->phba;
2871 struct lpfc_work_evt *evtp = &ndlp->dev_loss_evt;
2872 unsigned long flags;
2873
2874 evtp = &ndlp->dev_loss_evt;
2875
2876 spin_lock_irqsave(&phba->hbalock, flags);
2877 if (!list_empty(&evtp->evt_listp)) {
2878 spin_unlock_irqrestore(&phba->hbalock, flags);
2879 return;
2880 }
2881
2882 evtp->evt_arg1 = ndlp;
James Smart858c9f62007-06-17 19:56:39 -05002883 evtp->evt = LPFC_EVT_DEV_LOSS_DELAY;
James Smart92d7f7b2007-06-17 19:56:38 -05002884 list_add_tail(&evtp->evt_listp, &phba->work_list);
2885 if (phba->work_wait)
2886 lpfc_worker_wake_up(phba);
2887 spin_unlock_irqrestore(&phba->hbalock, flags);
2888 return;
2889}
2890
2891void
James Smart2e0fef82007-06-17 19:56:36 -05002892lpfc_nlp_init(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp,
2893 uint32_t did)
dea31012005-04-17 16:05:31 -05002894{
2895 memset(ndlp, 0, sizeof (struct lpfc_nodelist));
dea31012005-04-17 16:05:31 -05002896 INIT_LIST_HEAD(&ndlp->els_retry_evt.evt_listp);
James Smart92d7f7b2007-06-17 19:56:38 -05002897 INIT_LIST_HEAD(&ndlp->dev_loss_evt.evt_listp);
dea31012005-04-17 16:05:31 -05002898 init_timer(&ndlp->nlp_delayfunc);
2899 ndlp->nlp_delayfunc.function = lpfc_els_retry_delay;
2900 ndlp->nlp_delayfunc.data = (unsigned long)ndlp;
2901 ndlp->nlp_DID = did;
James Smart2e0fef82007-06-17 19:56:36 -05002902 ndlp->vport = vport;
dea31012005-04-17 16:05:31 -05002903 ndlp->nlp_sid = NLP_NO_SID;
James Smart685f0bf2007-04-25 09:53:08 -04002904 INIT_LIST_HEAD(&ndlp->nlp_listp);
James Smart329f9bc2007-04-25 09:53:01 -04002905 kref_init(&ndlp->kref);
James Smart858c9f62007-06-17 19:56:39 -05002906
2907 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_NODE,
2908 "node init: did:x%x",
2909 ndlp->nlp_DID, 0, 0);
2910
dea31012005-04-17 16:05:31 -05002911 return;
2912}
James Smart329f9bc2007-04-25 09:53:01 -04002913
2914void
2915lpfc_nlp_release(struct kref *kref)
2916{
2917 struct lpfc_nodelist *ndlp = container_of(kref, struct lpfc_nodelist,
2918 kref);
James Smart858c9f62007-06-17 19:56:39 -05002919
2920 lpfc_debugfs_disc_trc(ndlp->vport, LPFC_DISC_TRC_NODE,
2921 "node release: did:x%x flg:x%x type:x%x",
2922 ndlp->nlp_DID, ndlp->nlp_flag, ndlp->nlp_type);
2923
James Smart2e0fef82007-06-17 19:56:36 -05002924 lpfc_nlp_remove(ndlp->vport, ndlp);
2925 mempool_free(ndlp, ndlp->vport->phba->nlp_mem_pool);
James Smart329f9bc2007-04-25 09:53:01 -04002926}
2927
2928struct lpfc_nodelist *
2929lpfc_nlp_get(struct lpfc_nodelist *ndlp)
2930{
2931 if (ndlp)
2932 kref_get(&ndlp->kref);
2933 return ndlp;
2934}
2935
2936int
2937lpfc_nlp_put(struct lpfc_nodelist *ndlp)
2938{
2939 return ndlp ? kref_put(&ndlp->kref, lpfc_nlp_release) : 0;
2940}