blob: ceb185fa3216a8fa0127464c1b3cb8906f44d970 [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/delay.h>
24#include <linux/dma-mapping.h>
25#include <linux/idr.h>
26#include <linux/interrupt.h>
27#include <linux/kthread.h>
28#include <linux/pci.h>
29#include <linux/spinlock.h>
James Smart92d7f7b2007-06-17 19:56:38 -050030#include <linux/ctype.h>
dea31012005-04-17 16:05:31 -050031
James.Smart@Emulex.Com91886522005-08-10 15:03:09 -040032#include <scsi/scsi.h>
dea31012005-04-17 16:05:31 -050033#include <scsi/scsi_device.h>
34#include <scsi/scsi_host.h>
35#include <scsi/scsi_transport_fc.h>
36
37#include "lpfc_hw.h"
38#include "lpfc_sli.h"
39#include "lpfc_disc.h"
40#include "lpfc_scsi.h"
41#include "lpfc.h"
42#include "lpfc_logmsg.h"
43#include "lpfc_crtn.h"
James Smart92d7f7b2007-06-17 19:56:38 -050044#include "lpfc_vport.h"
dea31012005-04-17 16:05:31 -050045#include "lpfc_version.h"
46
Jamie Wellnitz74b72a52006-02-28 22:33:04 -050047static int lpfc_parse_vpd(struct lpfc_hba *, uint8_t *, int);
dea31012005-04-17 16:05:31 -050048static void lpfc_get_hba_model_desc(struct lpfc_hba *, uint8_t *, uint8_t *);
49static int lpfc_post_rcv_buf(struct lpfc_hba *);
50
51static struct scsi_transport_template *lpfc_transport_template = NULL;
James Smart92d7f7b2007-06-17 19:56:38 -050052static struct scsi_transport_template *lpfc_vport_transport_template = NULL;
dea31012005-04-17 16:05:31 -050053static DEFINE_IDR(lpfc_hba_index);
54
55/************************************************************************/
56/* */
57/* lpfc_config_port_prep */
58/* This routine will do LPFC initialization prior to the */
59/* CONFIG_PORT mailbox command. This will be initialized */
60/* as a SLI layer callback routine. */
61/* This routine returns 0 on success or -ERESTART if it wants */
62/* the SLI layer to reset the HBA and try again. Any */
63/* other return value indicates an error. */
64/* */
65/************************************************************************/
66int
James Smart2e0fef82007-06-17 19:56:36 -050067lpfc_config_port_prep(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -050068{
69 lpfc_vpd_t *vp = &phba->vpd;
70 int i = 0, rc;
71 LPFC_MBOXQ_t *pmb;
72 MAILBOX_t *mb;
73 char *lpfc_vpd_data = NULL;
74 uint16_t offset = 0;
75 static char licensed[56] =
76 "key unlock for use with gnu public licensed code only\0";
James Smart65a29c12006-07-06 15:50:50 -040077 static int init_key = 1;
dea31012005-04-17 16:05:31 -050078
79 pmb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
80 if (!pmb) {
James Smart2e0fef82007-06-17 19:56:36 -050081 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -050082 return -ENOMEM;
83 }
84
85 mb = &pmb->mb;
James Smart2e0fef82007-06-17 19:56:36 -050086 phba->link_state = LPFC_INIT_MBX_CMDS;
dea31012005-04-17 16:05:31 -050087
88 if (lpfc_is_LC_HBA(phba->pcidev->device)) {
James Smart65a29c12006-07-06 15:50:50 -040089 if (init_key) {
90 uint32_t *ptext = (uint32_t *) licensed;
dea31012005-04-17 16:05:31 -050091
James Smart65a29c12006-07-06 15:50:50 -040092 for (i = 0; i < 56; i += sizeof (uint32_t), ptext++)
93 *ptext = cpu_to_be32(*ptext);
94 init_key = 0;
95 }
dea31012005-04-17 16:05:31 -050096
97 lpfc_read_nv(phba, pmb);
98 memset((char*)mb->un.varRDnvp.rsvd3, 0,
99 sizeof (mb->un.varRDnvp.rsvd3));
100 memcpy((char*)mb->un.varRDnvp.rsvd3, licensed,
101 sizeof (licensed));
102
103 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
104
105 if (rc != MBX_SUCCESS) {
James Smarted957682007-06-17 19:56:37 -0500106 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX,
James Smarte8b62012007-08-02 11:10:09 -0400107 "0324 Config Port initialization "
dea31012005-04-17 16:05:31 -0500108 "error, mbxCmd x%x READ_NVPARM, "
109 "mbxStatus x%x\n",
dea31012005-04-17 16:05:31 -0500110 mb->mbxCommand, mb->mbxStatus);
111 mempool_free(pmb, phba->mbox_mem_pool);
112 return -ERESTART;
113 }
114 memcpy(phba->wwnn, (char *)mb->un.varRDnvp.nodename,
James Smart2e0fef82007-06-17 19:56:36 -0500115 sizeof(phba->wwnn));
116 memcpy(phba->wwpn, (char *)mb->un.varRDnvp.portname,
117 sizeof(phba->wwpn));
dea31012005-04-17 16:05:31 -0500118 }
119
James Smart92d7f7b2007-06-17 19:56:38 -0500120 phba->sli3_options = 0x0;
121
dea31012005-04-17 16:05:31 -0500122 /* Setup and issue mailbox READ REV command */
123 lpfc_read_rev(phba, pmb);
124 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
125 if (rc != MBX_SUCCESS) {
James Smarted957682007-06-17 19:56:37 -0500126 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -0400127 "0439 Adapter failed to init, mbxCmd x%x "
dea31012005-04-17 16:05:31 -0500128 "READ_REV, mbxStatus x%x\n",
dea31012005-04-17 16:05:31 -0500129 mb->mbxCommand, mb->mbxStatus);
130 mempool_free( pmb, phba->mbox_mem_pool);
131 return -ERESTART;
132 }
133
James Smart92d7f7b2007-06-17 19:56:38 -0500134
James.Smart@Emulex.Com1de933f2005-11-28 11:41:15 -0500135 /*
136 * The value of rr must be 1 since the driver set the cv field to 1.
137 * This setting requires the FW to set all revision fields.
dea31012005-04-17 16:05:31 -0500138 */
James.Smart@Emulex.Com1de933f2005-11-28 11:41:15 -0500139 if (mb->un.varRdRev.rr == 0) {
dea31012005-04-17 16:05:31 -0500140 vp->rev.rBit = 0;
James.Smart@Emulex.Com1de933f2005-11-28 11:41:15 -0500141 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -0400142 "0440 Adapter failed to init, READ_REV has "
143 "missing revision information.\n");
dea31012005-04-17 16:05:31 -0500144 mempool_free(pmb, phba->mbox_mem_pool);
145 return -ERESTART;
dea31012005-04-17 16:05:31 -0500146 }
147
James Smarted957682007-06-17 19:56:37 -0500148 if (phba->sli_rev == 3 && !mb->un.varRdRev.v3rsp)
149 return -EINVAL;
150
dea31012005-04-17 16:05:31 -0500151 /* Save information as VPD data */
James.Smart@Emulex.Com1de933f2005-11-28 11:41:15 -0500152 vp->rev.rBit = 1;
James Smart92d7f7b2007-06-17 19:56:38 -0500153 memcpy(&vp->sli3Feat, &mb->un.varRdRev.sli3Feat, sizeof(uint32_t));
James.Smart@Emulex.Com1de933f2005-11-28 11:41:15 -0500154 vp->rev.sli1FwRev = mb->un.varRdRev.sli1FwRev;
155 memcpy(vp->rev.sli1FwName, (char*) mb->un.varRdRev.sli1FwName, 16);
156 vp->rev.sli2FwRev = mb->un.varRdRev.sli2FwRev;
157 memcpy(vp->rev.sli2FwName, (char *) mb->un.varRdRev.sli2FwName, 16);
dea31012005-04-17 16:05:31 -0500158 vp->rev.biuRev = mb->un.varRdRev.biuRev;
159 vp->rev.smRev = mb->un.varRdRev.smRev;
160 vp->rev.smFwRev = mb->un.varRdRev.un.smFwRev;
161 vp->rev.endecRev = mb->un.varRdRev.endecRev;
162 vp->rev.fcphHigh = mb->un.varRdRev.fcphHigh;
163 vp->rev.fcphLow = mb->un.varRdRev.fcphLow;
164 vp->rev.feaLevelHigh = mb->un.varRdRev.feaLevelHigh;
165 vp->rev.feaLevelLow = mb->un.varRdRev.feaLevelLow;
166 vp->rev.postKernRev = mb->un.varRdRev.postKernRev;
167 vp->rev.opFwRev = mb->un.varRdRev.opFwRev;
168
James Smart92d7f7b2007-06-17 19:56:38 -0500169 /* If the sli feature level is less then 9, we must
170 * tear down all RPIs and VPIs on link down if NPIV
171 * is enabled.
172 */
173 if (vp->rev.feaLevelHigh < 9)
174 phba->sli3_options |= LPFC_SLI3_VPORT_TEARDOWN;
175
dea31012005-04-17 16:05:31 -0500176 if (lpfc_is_LC_HBA(phba->pcidev->device))
177 memcpy(phba->RandomData, (char *)&mb->un.varWords[24],
178 sizeof (phba->RandomData));
179
dea31012005-04-17 16:05:31 -0500180 /* Get adapter VPD information */
181 pmb->context2 = kmalloc(DMP_RSP_SIZE, GFP_KERNEL);
182 if (!pmb->context2)
183 goto out_free_mbox;
184 lpfc_vpd_data = kmalloc(DMP_VPD_SIZE, GFP_KERNEL);
185 if (!lpfc_vpd_data)
186 goto out_free_context2;
187
188 do {
189 lpfc_dump_mem(phba, pmb, offset);
190 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
191
192 if (rc != MBX_SUCCESS) {
193 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -0400194 "0441 VPD not present on adapter, "
dea31012005-04-17 16:05:31 -0500195 "mbxCmd x%x DUMP VPD, mbxStatus x%x\n",
dea31012005-04-17 16:05:31 -0500196 mb->mbxCommand, mb->mbxStatus);
Jamie Wellnitz74b72a52006-02-28 22:33:04 -0500197 mb->un.varDmp.word_cnt = 0;
dea31012005-04-17 16:05:31 -0500198 }
Jamie Wellnitz74b72a52006-02-28 22:33:04 -0500199 if (mb->un.varDmp.word_cnt > DMP_VPD_SIZE - offset)
200 mb->un.varDmp.word_cnt = DMP_VPD_SIZE - offset;
dea31012005-04-17 16:05:31 -0500201 lpfc_sli_pcimem_bcopy(pmb->context2, lpfc_vpd_data + offset,
James Smart92d7f7b2007-06-17 19:56:38 -0500202 mb->un.varDmp.word_cnt);
dea31012005-04-17 16:05:31 -0500203 offset += mb->un.varDmp.word_cnt;
Jamie Wellnitz74b72a52006-02-28 22:33:04 -0500204 } while (mb->un.varDmp.word_cnt && offset < DMP_VPD_SIZE);
205 lpfc_parse_vpd(phba, lpfc_vpd_data, offset);
dea31012005-04-17 16:05:31 -0500206
207 kfree(lpfc_vpd_data);
208out_free_context2:
209 kfree(pmb->context2);
210out_free_mbox:
211 mempool_free(pmb, phba->mbox_mem_pool);
212 return 0;
213}
214
James Smart57127f12007-10-27 13:37:05 -0400215/* Completion handler for config async event mailbox command. */
216static void
217lpfc_config_async_cmpl(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmboxq)
218{
219 if (pmboxq->mb.mbxStatus == MBX_SUCCESS)
220 phba->temp_sensor_support = 1;
221 else
222 phba->temp_sensor_support = 0;
223 mempool_free(pmboxq, phba->mbox_mem_pool);
224 return;
225}
226
dea31012005-04-17 16:05:31 -0500227/************************************************************************/
228/* */
229/* lpfc_config_port_post */
230/* This routine will do LPFC initialization after the */
231/* CONFIG_PORT mailbox command. This will be initialized */
232/* as a SLI layer callback routine. */
233/* This routine returns 0 on success. Any other return value */
234/* indicates an error. */
235/* */
236/************************************************************************/
237int
James Smart2e0fef82007-06-17 19:56:36 -0500238lpfc_config_port_post(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -0500239{
James Smart2e0fef82007-06-17 19:56:36 -0500240 struct lpfc_vport *vport = phba->pport;
dea31012005-04-17 16:05:31 -0500241 LPFC_MBOXQ_t *pmb;
242 MAILBOX_t *mb;
243 struct lpfc_dmabuf *mp;
244 struct lpfc_sli *psli = &phba->sli;
245 uint32_t status, timeout;
James Smart2e0fef82007-06-17 19:56:36 -0500246 int i, j;
247 int rc;
dea31012005-04-17 16:05:31 -0500248
249 pmb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
250 if (!pmb) {
James Smart2e0fef82007-06-17 19:56:36 -0500251 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -0500252 return -ENOMEM;
253 }
254 mb = &pmb->mb;
255
dea31012005-04-17 16:05:31 -0500256 /* Get login parameters for NID. */
James Smart92d7f7b2007-06-17 19:56:38 -0500257 lpfc_read_sparam(phba, pmb, 0);
James Smarted957682007-06-17 19:56:37 -0500258 pmb->vport = vport;
dea31012005-04-17 16:05:31 -0500259 if (lpfc_sli_issue_mbox(phba, pmb, MBX_POLL) != MBX_SUCCESS) {
James Smarted957682007-06-17 19:56:37 -0500260 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -0400261 "0448 Adapter failed init, mbxCmd x%x "
dea31012005-04-17 16:05:31 -0500262 "READ_SPARM mbxStatus x%x\n",
dea31012005-04-17 16:05:31 -0500263 mb->mbxCommand, mb->mbxStatus);
James Smart2e0fef82007-06-17 19:56:36 -0500264 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -0500265 mp = (struct lpfc_dmabuf *) pmb->context1;
266 mempool_free( pmb, phba->mbox_mem_pool);
267 lpfc_mbuf_free(phba, mp->virt, mp->phys);
268 kfree(mp);
269 return -EIO;
270 }
271
272 mp = (struct lpfc_dmabuf *) pmb->context1;
273
James Smart2e0fef82007-06-17 19:56:36 -0500274 memcpy(&vport->fc_sparam, mp->virt, sizeof (struct serv_parm));
dea31012005-04-17 16:05:31 -0500275 lpfc_mbuf_free(phba, mp->virt, mp->phys);
276 kfree(mp);
277 pmb->context1 = NULL;
278
James Smarta12e07b2006-12-02 13:35:30 -0500279 if (phba->cfg_soft_wwnn)
James Smart2e0fef82007-06-17 19:56:36 -0500280 u64_to_wwn(phba->cfg_soft_wwnn,
281 vport->fc_sparam.nodeName.u.wwn);
James Smartc3f28af2006-08-18 17:47:18 -0400282 if (phba->cfg_soft_wwpn)
James Smart2e0fef82007-06-17 19:56:36 -0500283 u64_to_wwn(phba->cfg_soft_wwpn,
284 vport->fc_sparam.portName.u.wwn);
285 memcpy(&vport->fc_nodename, &vport->fc_sparam.nodeName,
dea31012005-04-17 16:05:31 -0500286 sizeof (struct lpfc_name));
James Smart2e0fef82007-06-17 19:56:36 -0500287 memcpy(&vport->fc_portname, &vport->fc_sparam.portName,
dea31012005-04-17 16:05:31 -0500288 sizeof (struct lpfc_name));
289 /* If no serial number in VPD data, use low 6 bytes of WWNN */
290 /* This should be consolidated into parse_vpd ? - mr */
291 if (phba->SerialNumber[0] == 0) {
292 uint8_t *outptr;
293
James Smart2e0fef82007-06-17 19:56:36 -0500294 outptr = &vport->fc_nodename.u.s.IEEE[0];
dea31012005-04-17 16:05:31 -0500295 for (i = 0; i < 12; i++) {
296 status = *outptr++;
297 j = ((status & 0xf0) >> 4);
298 if (j <= 9)
299 phba->SerialNumber[i] =
300 (char)((uint8_t) 0x30 + (uint8_t) j);
301 else
302 phba->SerialNumber[i] =
303 (char)((uint8_t) 0x61 + (uint8_t) (j - 10));
304 i++;
305 j = (status & 0xf);
306 if (j <= 9)
307 phba->SerialNumber[i] =
308 (char)((uint8_t) 0x30 + (uint8_t) j);
309 else
310 phba->SerialNumber[i] =
311 (char)((uint8_t) 0x61 + (uint8_t) (j - 10));
312 }
313 }
314
dea31012005-04-17 16:05:31 -0500315 lpfc_read_config(phba, pmb);
James Smarted957682007-06-17 19:56:37 -0500316 pmb->vport = vport;
dea31012005-04-17 16:05:31 -0500317 if (lpfc_sli_issue_mbox(phba, pmb, MBX_POLL) != MBX_SUCCESS) {
James Smarted957682007-06-17 19:56:37 -0500318 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -0400319 "0453 Adapter failed to init, mbxCmd x%x "
dea31012005-04-17 16:05:31 -0500320 "READ_CONFIG, mbxStatus x%x\n",
dea31012005-04-17 16:05:31 -0500321 mb->mbxCommand, mb->mbxStatus);
James Smart2e0fef82007-06-17 19:56:36 -0500322 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -0500323 mempool_free( pmb, phba->mbox_mem_pool);
324 return -EIO;
325 }
326
327 /* Reset the DFT_HBA_Q_DEPTH to the max xri */
328 if (phba->cfg_hba_queue_depth > (mb->un.varRdConfig.max_xri+1))
329 phba->cfg_hba_queue_depth =
330 mb->un.varRdConfig.max_xri + 1;
331
332 phba->lmt = mb->un.varRdConfig.lmt;
Jamie Wellnitz74b72a52006-02-28 22:33:04 -0500333
334 /* Get the default values for Model Name and Description */
335 lpfc_get_hba_model_desc(phba, phba->ModelName, phba->ModelDesc);
336
337 if ((phba->cfg_link_speed > LINK_SPEED_10G)
338 || ((phba->cfg_link_speed == LINK_SPEED_1G)
339 && !(phba->lmt & LMT_1Gb))
340 || ((phba->cfg_link_speed == LINK_SPEED_2G)
341 && !(phba->lmt & LMT_2Gb))
342 || ((phba->cfg_link_speed == LINK_SPEED_4G)
343 && !(phba->lmt & LMT_4Gb))
344 || ((phba->cfg_link_speed == LINK_SPEED_8G)
345 && !(phba->lmt & LMT_8Gb))
346 || ((phba->cfg_link_speed == LINK_SPEED_10G)
347 && !(phba->lmt & LMT_10Gb))) {
348 /* Reset link speed to auto */
James Smarted957682007-06-17 19:56:37 -0500349 lpfc_printf_log(phba, KERN_WARNING, LOG_LINK_EVENT,
James Smarte8b62012007-08-02 11:10:09 -0400350 "1302 Invalid speed for this board: "
dea31012005-04-17 16:05:31 -0500351 "Reset link speed to auto: x%x\n",
dea31012005-04-17 16:05:31 -0500352 phba->cfg_link_speed);
353 phba->cfg_link_speed = LINK_SPEED_AUTO;
354 }
355
James Smart2e0fef82007-06-17 19:56:36 -0500356 phba->link_state = LPFC_LINK_DOWN;
dea31012005-04-17 16:05:31 -0500357
James Smart0b727fe2007-10-27 13:37:25 -0400358 /* Only process IOCBs on ELS ring till hba_state is READY */
James Smarta4bc3372006-12-02 13:34:16 -0500359 if (psli->ring[psli->extra_ring].cmdringaddr)
360 psli->ring[psli->extra_ring].flag |= LPFC_STOP_IOCB_EVENT;
dea31012005-04-17 16:05:31 -0500361 if (psli->ring[psli->fcp_ring].cmdringaddr)
362 psli->ring[psli->fcp_ring].flag |= LPFC_STOP_IOCB_EVENT;
363 if (psli->ring[psli->next_ring].cmdringaddr)
364 psli->ring[psli->next_ring].flag |= LPFC_STOP_IOCB_EVENT;
365
366 /* Post receive buffers for desired rings */
James Smarted957682007-06-17 19:56:37 -0500367 if (phba->sli_rev != 3)
368 lpfc_post_rcv_buf(phba);
dea31012005-04-17 16:05:31 -0500369
370 /* Enable appropriate host interrupts */
James Smart2e0fef82007-06-17 19:56:36 -0500371 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -0500372 status = readl(phba->HCregaddr);
373 status |= HC_MBINT_ENA | HC_ERINT_ENA | HC_LAINT_ENA;
374 if (psli->num_rings > 0)
375 status |= HC_R0INT_ENA;
376 if (psli->num_rings > 1)
377 status |= HC_R1INT_ENA;
378 if (psli->num_rings > 2)
379 status |= HC_R2INT_ENA;
380 if (psli->num_rings > 3)
381 status |= HC_R3INT_ENA;
382
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -0500383 if ((phba->cfg_poll & ENABLE_FCP_RING_POLLING) &&
384 (phba->cfg_poll & DISABLE_FCP_RING_INT))
385 status &= ~(HC_R0INT_ENA << LPFC_FCP_RING);
386
dea31012005-04-17 16:05:31 -0500387 writel(status, phba->HCregaddr);
388 readl(phba->HCregaddr); /* flush */
James Smart2e0fef82007-06-17 19:56:36 -0500389 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -0500390
391 /*
392 * Setup the ring 0 (els) timeout handler
393 */
394 timeout = phba->fc_ratov << 1;
James Smart2e0fef82007-06-17 19:56:36 -0500395 mod_timer(&vport->els_tmofunc, jiffies + HZ * timeout);
James Smart858c9f62007-06-17 19:56:39 -0500396 mod_timer(&phba->hb_tmofunc, jiffies + HZ * LPFC_HB_MBOX_INTERVAL);
397 phba->hb_outstanding = 0;
398 phba->last_completion_time = jiffies;
dea31012005-04-17 16:05:31 -0500399
400 lpfc_init_link(phba, pmb, phba->cfg_topology, phba->cfg_link_speed);
401 pmb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
James Smarted957682007-06-17 19:56:37 -0500402 pmb->vport = vport;
James Smart8aee9182006-08-31 12:27:57 -0400403 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
James Smart5b8bd0c2007-04-25 09:52:49 -0400404 lpfc_set_loopback_flag(phba);
James Smart8aee9182006-08-31 12:27:57 -0400405 if (rc != MBX_SUCCESS) {
James Smarted957682007-06-17 19:56:37 -0500406 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -0400407 "0454 Adapter failed to init, mbxCmd x%x "
dea31012005-04-17 16:05:31 -0500408 "INIT_LINK, mbxStatus x%x\n",
dea31012005-04-17 16:05:31 -0500409 mb->mbxCommand, mb->mbxStatus);
410
411 /* Clear all interrupt enable conditions */
412 writel(0, phba->HCregaddr);
413 readl(phba->HCregaddr); /* flush */
414 /* Clear all pending interrupts */
415 writel(0xffffffff, phba->HAregaddr);
416 readl(phba->HAregaddr); /* flush */
417
James Smart2e0fef82007-06-17 19:56:36 -0500418 phba->link_state = LPFC_HBA_ERROR;
James Smart8aee9182006-08-31 12:27:57 -0400419 if (rc != MBX_BUSY)
420 mempool_free(pmb, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -0500421 return -EIO;
422 }
423 /* MBOX buffer will be freed in mbox compl */
James Smart57127f12007-10-27 13:37:05 -0400424 pmb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
425 lpfc_config_async(phba, pmb, LPFC_ELS_RING);
426 pmb->mbox_cmpl = lpfc_config_async_cmpl;
427 pmb->vport = phba->pport;
428 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
dea31012005-04-17 16:05:31 -0500429
James Smart57127f12007-10-27 13:37:05 -0400430 if ((rc != MBX_BUSY) && (rc != MBX_SUCCESS)) {
431 lpfc_printf_log(phba,
432 KERN_ERR,
433 LOG_INIT,
434 "0456 Adapter failed to issue "
435 "ASYNCEVT_ENABLE mbox status x%x \n.",
436 rc);
437 mempool_free(pmb, phba->mbox_mem_pool);
438 }
James Smartce8b3ce2006-07-06 15:50:36 -0400439 return (0);
440}
441
dea31012005-04-17 16:05:31 -0500442/************************************************************************/
443/* */
444/* lpfc_hba_down_prep */
445/* This routine will do LPFC uninitialization before the */
446/* HBA is reset when bringing down the SLI Layer. This will be */
447/* initialized as a SLI layer callback routine. */
448/* This routine returns 0 on success. Any other return value */
449/* indicates an error. */
450/* */
451/************************************************************************/
452int
James Smart2e0fef82007-06-17 19:56:36 -0500453lpfc_hba_down_prep(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -0500454{
455 /* Disable interrupts */
456 writel(0, phba->HCregaddr);
457 readl(phba->HCregaddr); /* flush */
458
James Smart51ef4c22007-08-02 11:10:31 -0400459 lpfc_cleanup_discovery_resources(phba->pport);
James Smart2e0fef82007-06-17 19:56:36 -0500460 return 0;
dea31012005-04-17 16:05:31 -0500461}
462
463/************************************************************************/
464/* */
Jamie Wellnitz41415862006-02-28 19:25:27 -0500465/* lpfc_hba_down_post */
466/* This routine will do uninitialization after the HBA is reset */
467/* when bringing down the SLI Layer. */
468/* This routine returns 0 on success. Any other return value */
469/* indicates an error. */
470/* */
471/************************************************************************/
472int
James Smart2e0fef82007-06-17 19:56:36 -0500473lpfc_hba_down_post(struct lpfc_hba *phba)
Jamie Wellnitz41415862006-02-28 19:25:27 -0500474{
475 struct lpfc_sli *psli = &phba->sli;
476 struct lpfc_sli_ring *pring;
477 struct lpfc_dmabuf *mp, *next_mp;
478 int i;
479
James Smart92d7f7b2007-06-17 19:56:38 -0500480 if (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED)
481 lpfc_sli_hbqbuf_free_all(phba);
482 else {
483 /* Cleanup preposted buffers on the ELS ring */
484 pring = &psli->ring[LPFC_ELS_RING];
485 list_for_each_entry_safe(mp, next_mp, &pring->postbufq, list) {
486 list_del(&mp->list);
487 pring->postbufq_cnt--;
488 lpfc_mbuf_free(phba, mp->virt, mp->phys);
489 kfree(mp);
490 }
Jamie Wellnitz41415862006-02-28 19:25:27 -0500491 }
492
493 for (i = 0; i < psli->num_rings; i++) {
494 pring = &psli->ring[i];
495 lpfc_sli_abort_iocb_ring(phba, pring);
496 }
497
498 return 0;
499}
500
James Smart858c9f62007-06-17 19:56:39 -0500501/* HBA heart beat timeout handler */
502void
503lpfc_hb_timeout(unsigned long ptr)
504{
505 struct lpfc_hba *phba;
506 unsigned long iflag;
507
508 phba = (struct lpfc_hba *)ptr;
509 spin_lock_irqsave(&phba->pport->work_port_lock, iflag);
510 if (!(phba->pport->work_port_events & WORKER_HB_TMO))
511 phba->pport->work_port_events |= WORKER_HB_TMO;
512 spin_unlock_irqrestore(&phba->pport->work_port_lock, iflag);
513
514 if (phba->work_wait)
515 wake_up(phba->work_wait);
516 return;
517}
518
519static void
520lpfc_hb_mbox_cmpl(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmboxq)
521{
522 unsigned long drvr_flag;
523
524 spin_lock_irqsave(&phba->hbalock, drvr_flag);
525 phba->hb_outstanding = 0;
526 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
527
528 mempool_free(pmboxq, phba->mbox_mem_pool);
529 if (!(phba->pport->fc_flag & FC_OFFLINE_MODE) &&
530 !(phba->link_state == LPFC_HBA_ERROR) &&
James Smart51ef4c22007-08-02 11:10:31 -0400531 !(phba->pport->load_flag & FC_UNLOADING))
James Smart858c9f62007-06-17 19:56:39 -0500532 mod_timer(&phba->hb_tmofunc,
533 jiffies + HZ * LPFC_HB_MBOX_INTERVAL);
534 return;
535}
536
537void
538lpfc_hb_timeout_handler(struct lpfc_hba *phba)
539{
540 LPFC_MBOXQ_t *pmboxq;
541 int retval;
542 struct lpfc_sli *psli = &phba->sli;
543
544 if ((phba->link_state == LPFC_HBA_ERROR) ||
James Smart51ef4c22007-08-02 11:10:31 -0400545 (phba->pport->load_flag & FC_UNLOADING) ||
James Smart858c9f62007-06-17 19:56:39 -0500546 (phba->pport->fc_flag & FC_OFFLINE_MODE))
547 return;
548
549 spin_lock_irq(&phba->pport->work_port_lock);
550 /* If the timer is already canceled do nothing */
551 if (!(phba->pport->work_port_events & WORKER_HB_TMO)) {
552 spin_unlock_irq(&phba->pport->work_port_lock);
553 return;
554 }
555
556 if (time_after(phba->last_completion_time + LPFC_HB_MBOX_INTERVAL * HZ,
557 jiffies)) {
558 spin_unlock_irq(&phba->pport->work_port_lock);
559 if (!phba->hb_outstanding)
560 mod_timer(&phba->hb_tmofunc,
561 jiffies + HZ * LPFC_HB_MBOX_INTERVAL);
562 else
563 mod_timer(&phba->hb_tmofunc,
564 jiffies + HZ * LPFC_HB_MBOX_TIMEOUT);
565 return;
566 }
567 spin_unlock_irq(&phba->pport->work_port_lock);
568
569 /* If there is no heart beat outstanding, issue a heartbeat command */
570 if (!phba->hb_outstanding) {
571 pmboxq = mempool_alloc(phba->mbox_mem_pool,GFP_KERNEL);
572 if (!pmboxq) {
573 mod_timer(&phba->hb_tmofunc,
574 jiffies + HZ * LPFC_HB_MBOX_INTERVAL);
575 return;
576 }
577
578 lpfc_heart_beat(phba, pmboxq);
579 pmboxq->mbox_cmpl = lpfc_hb_mbox_cmpl;
580 pmboxq->vport = phba->pport;
581 retval = lpfc_sli_issue_mbox(phba, pmboxq, MBX_NOWAIT);
582
583 if (retval != MBX_BUSY && retval != MBX_SUCCESS) {
584 mempool_free(pmboxq, phba->mbox_mem_pool);
585 mod_timer(&phba->hb_tmofunc,
586 jiffies + HZ * LPFC_HB_MBOX_INTERVAL);
587 return;
588 }
589 mod_timer(&phba->hb_tmofunc,
590 jiffies + HZ * LPFC_HB_MBOX_TIMEOUT);
591 phba->hb_outstanding = 1;
592 return;
593 } else {
594 /*
595 * If heart beat timeout called with hb_outstanding set we
596 * need to take the HBA offline.
597 */
598 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -0400599 "0459 Adapter heartbeat failure, taking "
600 "this port offline.\n");
James Smart858c9f62007-06-17 19:56:39 -0500601
602 spin_lock_irq(&phba->hbalock);
603 psli->sli_flag &= ~LPFC_SLI2_ACTIVE;
604 spin_unlock_irq(&phba->hbalock);
605
606 lpfc_offline_prep(phba);
607 lpfc_offline(phba);
608 lpfc_unblock_mgmt_io(phba);
609 phba->link_state = LPFC_HBA_ERROR;
610 lpfc_hba_down_post(phba);
611 }
612}
613
Jamie Wellnitz41415862006-02-28 19:25:27 -0500614/************************************************************************/
615/* */
dea31012005-04-17 16:05:31 -0500616/* lpfc_handle_eratt */
617/* This routine will handle processing a Host Attention */
618/* Error Status event. This will be initialized */
619/* as a SLI layer callback routine. */
620/* */
621/************************************************************************/
622void
James Smart2e0fef82007-06-17 19:56:36 -0500623lpfc_handle_eratt(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -0500624{
James Smart2e0fef82007-06-17 19:56:36 -0500625 struct lpfc_vport *vport = phba->pport;
James Smart2e0fef82007-06-17 19:56:36 -0500626 struct lpfc_sli *psli = &phba->sli;
dea31012005-04-17 16:05:31 -0500627 struct lpfc_sli_ring *pring;
James Smart549e55c2007-08-02 11:09:51 -0400628 struct lpfc_vport **vports;
James Smartd2873e42006-08-18 17:46:43 -0400629 uint32_t event_data;
James Smart57127f12007-10-27 13:37:05 -0400630 unsigned long temperature;
631 struct temp_event temp_event_data;
James Smart92d7f7b2007-06-17 19:56:38 -0500632 struct Scsi_Host *shost;
James Smart549e55c2007-08-02 11:09:51 -0400633 int i;
James Smart2e0fef82007-06-17 19:56:36 -0500634
Linas Vepstas8d63f372007-02-14 14:28:36 -0600635 /* If the pci channel is offline, ignore possible errors,
636 * since we cannot communicate with the pci card anyway. */
637 if (pci_channel_offline(phba->pcidev))
638 return;
dea31012005-04-17 16:05:31 -0500639
James Smartf5603512006-12-02 13:35:43 -0500640 if (phba->work_hs & HS_FFER6 ||
641 phba->work_hs & HS_FFER5) {
dea31012005-04-17 16:05:31 -0500642 /* Re-establishing Link */
643 lpfc_printf_log(phba, KERN_INFO, LOG_LINK_EVENT,
James Smarte8b62012007-08-02 11:10:09 -0400644 "1301 Re-establishing Link "
dea31012005-04-17 16:05:31 -0500645 "Data: x%x x%x x%x\n",
James Smarte8b62012007-08-02 11:10:09 -0400646 phba->work_hs,
dea31012005-04-17 16:05:31 -0500647 phba->work_status[0], phba->work_status[1]);
James Smart549e55c2007-08-02 11:09:51 -0400648 vports = lpfc_create_vport_work_array(phba);
649 if (vports != NULL)
650 for(i = 0;
651 i < LPFC_MAX_VPORTS && vports[i] != NULL;
652 i++){
653 shost = lpfc_shost_from_vport(vports[i]);
654 spin_lock_irq(shost->host_lock);
655 vports[i]->fc_flag |= FC_ESTABLISH_LINK;
656 spin_unlock_irq(shost->host_lock);
657 }
658 lpfc_destroy_vport_work_array(vports);
James Smart92d7f7b2007-06-17 19:56:38 -0500659 spin_lock_irq(&phba->hbalock);
James Smart92908312006-03-07 15:04:13 -0500660 psli->sli_flag &= ~LPFC_SLI2_ACTIVE;
James Smart92d7f7b2007-06-17 19:56:38 -0500661 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -0500662
663 /*
664 * Firmware stops when it triggled erratt with HS_FFER6.
665 * That could cause the I/Os dropped by the firmware.
666 * Error iocb (I/O) on txcmplq and let the SCSI layer
667 * retry it after re-establishing link.
668 */
669 pring = &psli->ring[psli->fcp_ring];
670 lpfc_sli_abort_iocb_ring(phba, pring);
671
672
673 /*
674 * There was a firmware error. Take the hba offline and then
675 * attempt to restart it.
676 */
James Smart46fa3112007-04-25 09:51:45 -0400677 lpfc_offline_prep(phba);
dea31012005-04-17 16:05:31 -0500678 lpfc_offline(phba);
Jamie Wellnitz41415862006-02-28 19:25:27 -0500679 lpfc_sli_brdrestart(phba);
dea31012005-04-17 16:05:31 -0500680 if (lpfc_online(phba) == 0) { /* Initialize the HBA */
681 mod_timer(&phba->fc_estabtmo, jiffies + HZ * 60);
James Smart46fa3112007-04-25 09:51:45 -0400682 lpfc_unblock_mgmt_io(phba);
dea31012005-04-17 16:05:31 -0500683 return;
684 }
James Smart46fa3112007-04-25 09:51:45 -0400685 lpfc_unblock_mgmt_io(phba);
James Smart57127f12007-10-27 13:37:05 -0400686 } else if (phba->work_hs & HS_CRIT_TEMP) {
687 temperature = readl(phba->MBslimaddr + TEMPERATURE_OFFSET);
688 temp_event_data.event_type = FC_REG_TEMPERATURE_EVENT;
689 temp_event_data.event_code = LPFC_CRIT_TEMP;
690 temp_event_data.data = (uint32_t)temperature;
691
692 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
693 "0459 Adapter maximum temperature exceeded "
694 "(%ld), taking this port offline "
695 "Data: x%x x%x x%x\n",
696 temperature, phba->work_hs,
697 phba->work_status[0], phba->work_status[1]);
698
699 shost = lpfc_shost_from_vport(phba->pport);
700 fc_host_post_vendor_event(shost, fc_get_event_number(),
701 sizeof(temp_event_data),
702 (char *) &temp_event_data,
703 SCSI_NL_VID_TYPE_PCI
704 | PCI_VENDOR_ID_EMULEX);
705
706 psli->sli_flag &= ~LPFC_SLI2_ACTIVE;
707 lpfc_offline_prep(phba);
708 lpfc_offline(phba);
709 lpfc_unblock_mgmt_io(phba);
710 phba->link_state = LPFC_HBA_ERROR;
711 lpfc_hba_down_post(phba);
712
dea31012005-04-17 16:05:31 -0500713 } else {
714 /* The if clause above forces this code path when the status
715 * failure is a value other than FFER6. Do not call the offline
716 * twice. This is the adapter hardware error path.
717 */
718 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -0400719 "0457 Adapter Hardware Error "
dea31012005-04-17 16:05:31 -0500720 "Data: x%x x%x x%x\n",
James Smarte8b62012007-08-02 11:10:09 -0400721 phba->work_hs,
dea31012005-04-17 16:05:31 -0500722 phba->work_status[0], phba->work_status[1]);
723
James Smartd2873e42006-08-18 17:46:43 -0400724 event_data = FC_REG_DUMP_EVENT;
James Smart92d7f7b2007-06-17 19:56:38 -0500725 shost = lpfc_shost_from_vport(vport);
James Smart2e0fef82007-06-17 19:56:36 -0500726 fc_host_post_vendor_event(shost, fc_get_event_number(),
James Smartd2873e42006-08-18 17:46:43 -0400727 sizeof(event_data), (char *) &event_data,
728 SCSI_NL_VID_TYPE_PCI | PCI_VENDOR_ID_EMULEX);
729
James Smart92d7f7b2007-06-17 19:56:38 -0500730 spin_lock_irq(&phba->hbalock);
James Smart92908312006-03-07 15:04:13 -0500731 psli->sli_flag &= ~LPFC_SLI2_ACTIVE;
James Smart92d7f7b2007-06-17 19:56:38 -0500732 spin_unlock_irq(&phba->hbalock);
James Smart46fa3112007-04-25 09:51:45 -0400733 lpfc_offline_prep(phba);
dea31012005-04-17 16:05:31 -0500734 lpfc_offline(phba);
James Smart46fa3112007-04-25 09:51:45 -0400735 lpfc_unblock_mgmt_io(phba);
James Smart2e0fef82007-06-17 19:56:36 -0500736 phba->link_state = LPFC_HBA_ERROR;
Jamie Wellnitz41415862006-02-28 19:25:27 -0500737 lpfc_hba_down_post(phba);
dea31012005-04-17 16:05:31 -0500738 }
739}
740
741/************************************************************************/
742/* */
743/* lpfc_handle_latt */
744/* This routine will handle processing a Host Attention */
745/* Link Status event. This will be initialized */
746/* as a SLI layer callback routine. */
747/* */
748/************************************************************************/
749void
James Smart2e0fef82007-06-17 19:56:36 -0500750lpfc_handle_latt(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -0500751{
James Smart2e0fef82007-06-17 19:56:36 -0500752 struct lpfc_vport *vport = phba->pport;
753 struct lpfc_sli *psli = &phba->sli;
dea31012005-04-17 16:05:31 -0500754 LPFC_MBOXQ_t *pmb;
755 volatile uint32_t control;
756 struct lpfc_dmabuf *mp;
757 int rc = -ENOMEM;
758
759 pmb = (LPFC_MBOXQ_t *)mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
760 if (!pmb)
761 goto lpfc_handle_latt_err_exit;
762
763 mp = kmalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
764 if (!mp)
765 goto lpfc_handle_latt_free_pmb;
766
767 mp->virt = lpfc_mbuf_alloc(phba, 0, &mp->phys);
768 if (!mp->virt)
769 goto lpfc_handle_latt_free_mp;
770
771 rc = -EIO;
772
James.Smart@Emulex.Com6281bfe2005-11-28 11:41:33 -0500773 /* Cleanup any outstanding ELS commands */
James Smart549e55c2007-08-02 11:09:51 -0400774 lpfc_els_flush_all_cmd(phba);
dea31012005-04-17 16:05:31 -0500775
776 psli->slistat.link_event++;
777 lpfc_read_la(phba, pmb, mp);
778 pmb->mbox_cmpl = lpfc_mbx_cmpl_read_la;
James Smart2e0fef82007-06-17 19:56:36 -0500779 pmb->vport = vport;
James Smart0b727fe2007-10-27 13:37:25 -0400780 rc = lpfc_sli_issue_mbox (phba, pmb, MBX_NOWAIT);
dea31012005-04-17 16:05:31 -0500781 if (rc == MBX_NOT_FINISHED)
James Smart14691152006-12-02 13:34:28 -0500782 goto lpfc_handle_latt_free_mbuf;
dea31012005-04-17 16:05:31 -0500783
784 /* Clear Link Attention in HA REG */
James Smart2e0fef82007-06-17 19:56:36 -0500785 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -0500786 writel(HA_LATT, phba->HAregaddr);
787 readl(phba->HAregaddr); /* flush */
James Smart2e0fef82007-06-17 19:56:36 -0500788 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -0500789
790 return;
791
James Smart14691152006-12-02 13:34:28 -0500792lpfc_handle_latt_free_mbuf:
793 lpfc_mbuf_free(phba, mp->virt, mp->phys);
dea31012005-04-17 16:05:31 -0500794lpfc_handle_latt_free_mp:
795 kfree(mp);
796lpfc_handle_latt_free_pmb:
James Smart1dcb58e2007-04-25 09:51:30 -0400797 mempool_free(pmb, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -0500798lpfc_handle_latt_err_exit:
799 /* Enable Link attention interrupts */
James Smart2e0fef82007-06-17 19:56:36 -0500800 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -0500801 psli->sli_flag |= LPFC_PROCESS_LA;
802 control = readl(phba->HCregaddr);
803 control |= HC_LAINT_ENA;
804 writel(control, phba->HCregaddr);
805 readl(phba->HCregaddr); /* flush */
806
807 /* Clear Link Attention in HA REG */
808 writel(HA_LATT, phba->HAregaddr);
809 readl(phba->HAregaddr); /* flush */
James Smart2e0fef82007-06-17 19:56:36 -0500810 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -0500811 lpfc_linkdown(phba);
James Smart2e0fef82007-06-17 19:56:36 -0500812 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -0500813
814 /* The other case is an error from issue_mbox */
815 if (rc == -ENOMEM)
James Smarted957682007-06-17 19:56:37 -0500816 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX,
James Smarte8b62012007-08-02 11:10:09 -0400817 "0300 READ_LA: no buffers\n");
dea31012005-04-17 16:05:31 -0500818
819 return;
820}
821
822/************************************************************************/
823/* */
824/* lpfc_parse_vpd */
825/* This routine will parse the VPD data */
826/* */
827/************************************************************************/
828static int
James Smart2e0fef82007-06-17 19:56:36 -0500829lpfc_parse_vpd(struct lpfc_hba *phba, uint8_t *vpd, int len)
dea31012005-04-17 16:05:31 -0500830{
831 uint8_t lenlo, lenhi;
Anton Blanchard07da60c2007-03-21 08:41:47 -0500832 int Length;
dea31012005-04-17 16:05:31 -0500833 int i, j;
834 int finished = 0;
835 int index = 0;
836
837 if (!vpd)
838 return 0;
839
840 /* Vital Product */
James Smarted957682007-06-17 19:56:37 -0500841 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -0400842 "0455 Vital Product Data: x%x x%x x%x x%x\n",
dea31012005-04-17 16:05:31 -0500843 (uint32_t) vpd[0], (uint32_t) vpd[1], (uint32_t) vpd[2],
844 (uint32_t) vpd[3]);
Jamie Wellnitz74b72a52006-02-28 22:33:04 -0500845 while (!finished && (index < (len - 4))) {
dea31012005-04-17 16:05:31 -0500846 switch (vpd[index]) {
847 case 0x82:
Jamie Wellnitz74b72a52006-02-28 22:33:04 -0500848 case 0x91:
dea31012005-04-17 16:05:31 -0500849 index += 1;
850 lenlo = vpd[index];
851 index += 1;
852 lenhi = vpd[index];
853 index += 1;
854 i = ((((unsigned short)lenhi) << 8) + lenlo);
855 index += i;
856 break;
857 case 0x90:
858 index += 1;
859 lenlo = vpd[index];
860 index += 1;
861 lenhi = vpd[index];
862 index += 1;
863 Length = ((((unsigned short)lenhi) << 8) + lenlo);
Jamie Wellnitz74b72a52006-02-28 22:33:04 -0500864 if (Length > len - index)
865 Length = len - index;
dea31012005-04-17 16:05:31 -0500866 while (Length > 0) {
867 /* Look for Serial Number */
868 if ((vpd[index] == 'S') && (vpd[index+1] == 'N')) {
869 index += 2;
870 i = vpd[index];
871 index += 1;
872 j = 0;
873 Length -= (3+i);
874 while(i--) {
875 phba->SerialNumber[j++] = vpd[index++];
876 if (j == 31)
877 break;
878 }
879 phba->SerialNumber[j] = 0;
880 continue;
881 }
882 else if ((vpd[index] == 'V') && (vpd[index+1] == '1')) {
883 phba->vpd_flag |= VPD_MODEL_DESC;
884 index += 2;
885 i = vpd[index];
886 index += 1;
887 j = 0;
888 Length -= (3+i);
889 while(i--) {
890 phba->ModelDesc[j++] = vpd[index++];
891 if (j == 255)
892 break;
893 }
894 phba->ModelDesc[j] = 0;
895 continue;
896 }
897 else if ((vpd[index] == 'V') && (vpd[index+1] == '2')) {
898 phba->vpd_flag |= VPD_MODEL_NAME;
899 index += 2;
900 i = vpd[index];
901 index += 1;
902 j = 0;
903 Length -= (3+i);
904 while(i--) {
905 phba->ModelName[j++] = vpd[index++];
906 if (j == 79)
907 break;
908 }
909 phba->ModelName[j] = 0;
910 continue;
911 }
912 else if ((vpd[index] == 'V') && (vpd[index+1] == '3')) {
913 phba->vpd_flag |= VPD_PROGRAM_TYPE;
914 index += 2;
915 i = vpd[index];
916 index += 1;
917 j = 0;
918 Length -= (3+i);
919 while(i--) {
920 phba->ProgramType[j++] = vpd[index++];
921 if (j == 255)
922 break;
923 }
924 phba->ProgramType[j] = 0;
925 continue;
926 }
927 else if ((vpd[index] == 'V') && (vpd[index+1] == '4')) {
928 phba->vpd_flag |= VPD_PORT;
929 index += 2;
930 i = vpd[index];
931 index += 1;
932 j = 0;
933 Length -= (3+i);
934 while(i--) {
935 phba->Port[j++] = vpd[index++];
936 if (j == 19)
937 break;
938 }
939 phba->Port[j] = 0;
940 continue;
941 }
942 else {
943 index += 2;
944 i = vpd[index];
945 index += 1;
946 index += i;
947 Length -= (3 + i);
948 }
949 }
950 finished = 0;
951 break;
952 case 0x78:
953 finished = 1;
954 break;
955 default:
956 index ++;
957 break;
958 }
Jamie Wellnitz74b72a52006-02-28 22:33:04 -0500959 }
dea31012005-04-17 16:05:31 -0500960
961 return(1);
962}
963
964static void
James Smart2e0fef82007-06-17 19:56:36 -0500965lpfc_get_hba_model_desc(struct lpfc_hba *phba, uint8_t *mdp, uint8_t *descp)
dea31012005-04-17 16:05:31 -0500966{
967 lpfc_vpd_t *vp;
James.Smart@Emulex.Comfefcb2b2005-11-28 15:08:56 -0500968 uint16_t dev_id = phba->pcidev->device;
Jamie Wellnitz74b72a52006-02-28 22:33:04 -0500969 int max_speed;
Jamie Wellnitz74b72a52006-02-28 22:33:04 -0500970 struct {
971 char * name;
972 int max_speed;
Jamie Wellnitz74b72a52006-02-28 22:33:04 -0500973 char * bus;
James Smart18a3b592006-12-02 13:35:08 -0500974 } m = {"<Unknown>", 0, ""};
Jamie Wellnitz74b72a52006-02-28 22:33:04 -0500975
976 if (mdp && mdp[0] != '\0'
977 && descp && descp[0] != '\0')
978 return;
979
980 if (phba->lmt & LMT_10Gb)
981 max_speed = 10;
982 else if (phba->lmt & LMT_8Gb)
983 max_speed = 8;
984 else if (phba->lmt & LMT_4Gb)
985 max_speed = 4;
986 else if (phba->lmt & LMT_2Gb)
987 max_speed = 2;
988 else
989 max_speed = 1;
dea31012005-04-17 16:05:31 -0500990
991 vp = &phba->vpd;
dea31012005-04-17 16:05:31 -0500992
James.Smart@Emulex.Come4adb202005-11-28 11:42:12 -0500993 switch (dev_id) {
James.Smart@Emulex.Com06325e72005-06-25 10:34:22 -0400994 case PCI_DEVICE_ID_FIREFLY:
James Smart18a3b592006-12-02 13:35:08 -0500995 m = (typeof(m)){"LP6000", max_speed, "PCI"};
James.Smart@Emulex.Com06325e72005-06-25 10:34:22 -0400996 break;
dea31012005-04-17 16:05:31 -0500997 case PCI_DEVICE_ID_SUPERFLY:
998 if (vp->rev.biuRev >= 1 && vp->rev.biuRev <= 3)
James Smart18a3b592006-12-02 13:35:08 -0500999 m = (typeof(m)){"LP7000", max_speed, "PCI"};
dea31012005-04-17 16:05:31 -05001000 else
James Smart18a3b592006-12-02 13:35:08 -05001001 m = (typeof(m)){"LP7000E", max_speed, "PCI"};
dea31012005-04-17 16:05:31 -05001002 break;
1003 case PCI_DEVICE_ID_DRAGONFLY:
James Smart18a3b592006-12-02 13:35:08 -05001004 m = (typeof(m)){"LP8000", max_speed, "PCI"};
dea31012005-04-17 16:05:31 -05001005 break;
1006 case PCI_DEVICE_ID_CENTAUR:
1007 if (FC_JEDEC_ID(vp->rev.biuRev) == CENTAUR_2G_JEDEC_ID)
James Smart18a3b592006-12-02 13:35:08 -05001008 m = (typeof(m)){"LP9002", max_speed, "PCI"};
dea31012005-04-17 16:05:31 -05001009 else
James Smart18a3b592006-12-02 13:35:08 -05001010 m = (typeof(m)){"LP9000", max_speed, "PCI"};
dea31012005-04-17 16:05:31 -05001011 break;
1012 case PCI_DEVICE_ID_RFLY:
James Smart18a3b592006-12-02 13:35:08 -05001013 m = (typeof(m)){"LP952", max_speed, "PCI"};
dea31012005-04-17 16:05:31 -05001014 break;
1015 case PCI_DEVICE_ID_PEGASUS:
James Smart18a3b592006-12-02 13:35:08 -05001016 m = (typeof(m)){"LP9802", max_speed, "PCI-X"};
dea31012005-04-17 16:05:31 -05001017 break;
1018 case PCI_DEVICE_ID_THOR:
James Smart18a3b592006-12-02 13:35:08 -05001019 m = (typeof(m)){"LP10000", max_speed, "PCI-X"};
dea31012005-04-17 16:05:31 -05001020 break;
1021 case PCI_DEVICE_ID_VIPER:
James Smart18a3b592006-12-02 13:35:08 -05001022 m = (typeof(m)){"LPX1000", max_speed, "PCI-X"};
dea31012005-04-17 16:05:31 -05001023 break;
1024 case PCI_DEVICE_ID_PFLY:
James Smart18a3b592006-12-02 13:35:08 -05001025 m = (typeof(m)){"LP982", max_speed, "PCI-X"};
dea31012005-04-17 16:05:31 -05001026 break;
1027 case PCI_DEVICE_ID_TFLY:
James Smart18a3b592006-12-02 13:35:08 -05001028 m = (typeof(m)){"LP1050", max_speed, "PCI-X"};
dea31012005-04-17 16:05:31 -05001029 break;
1030 case PCI_DEVICE_ID_HELIOS:
James Smart18a3b592006-12-02 13:35:08 -05001031 m = (typeof(m)){"LP11000", max_speed, "PCI-X2"};
dea31012005-04-17 16:05:31 -05001032 break;
James.Smart@Emulex.Come4adb202005-11-28 11:42:12 -05001033 case PCI_DEVICE_ID_HELIOS_SCSP:
James Smart18a3b592006-12-02 13:35:08 -05001034 m = (typeof(m)){"LP11000-SP", max_speed, "PCI-X2"};
James.Smart@Emulex.Come4adb202005-11-28 11:42:12 -05001035 break;
1036 case PCI_DEVICE_ID_HELIOS_DCSP:
James Smart18a3b592006-12-02 13:35:08 -05001037 m = (typeof(m)){"LP11002-SP", max_speed, "PCI-X2"};
James.Smart@Emulex.Come4adb202005-11-28 11:42:12 -05001038 break;
1039 case PCI_DEVICE_ID_NEPTUNE:
James Smart18a3b592006-12-02 13:35:08 -05001040 m = (typeof(m)){"LPe1000", max_speed, "PCIe"};
James.Smart@Emulex.Come4adb202005-11-28 11:42:12 -05001041 break;
1042 case PCI_DEVICE_ID_NEPTUNE_SCSP:
James Smart18a3b592006-12-02 13:35:08 -05001043 m = (typeof(m)){"LPe1000-SP", max_speed, "PCIe"};
James.Smart@Emulex.Come4adb202005-11-28 11:42:12 -05001044 break;
1045 case PCI_DEVICE_ID_NEPTUNE_DCSP:
James Smart18a3b592006-12-02 13:35:08 -05001046 m = (typeof(m)){"LPe1002-SP", max_speed, "PCIe"};
James.Smart@Emulex.Come4adb202005-11-28 11:42:12 -05001047 break;
dea31012005-04-17 16:05:31 -05001048 case PCI_DEVICE_ID_BMID:
James Smart18a3b592006-12-02 13:35:08 -05001049 m = (typeof(m)){"LP1150", max_speed, "PCI-X2"};
dea31012005-04-17 16:05:31 -05001050 break;
1051 case PCI_DEVICE_ID_BSMB:
James Smart18a3b592006-12-02 13:35:08 -05001052 m = (typeof(m)){"LP111", max_speed, "PCI-X2"};
dea31012005-04-17 16:05:31 -05001053 break;
1054 case PCI_DEVICE_ID_ZEPHYR:
James Smart18a3b592006-12-02 13:35:08 -05001055 m = (typeof(m)){"LPe11000", max_speed, "PCIe"};
dea31012005-04-17 16:05:31 -05001056 break;
James.Smart@Emulex.Come4adb202005-11-28 11:42:12 -05001057 case PCI_DEVICE_ID_ZEPHYR_SCSP:
James Smart18a3b592006-12-02 13:35:08 -05001058 m = (typeof(m)){"LPe11000", max_speed, "PCIe"};
James.Smart@Emulex.Come4adb202005-11-28 11:42:12 -05001059 break;
1060 case PCI_DEVICE_ID_ZEPHYR_DCSP:
James Smart18a3b592006-12-02 13:35:08 -05001061 m = (typeof(m)){"LPe11002-SP", max_speed, "PCIe"};
James.Smart@Emulex.Come4adb202005-11-28 11:42:12 -05001062 break;
dea31012005-04-17 16:05:31 -05001063 case PCI_DEVICE_ID_ZMID:
James Smart18a3b592006-12-02 13:35:08 -05001064 m = (typeof(m)){"LPe1150", max_speed, "PCIe"};
dea31012005-04-17 16:05:31 -05001065 break;
1066 case PCI_DEVICE_ID_ZSMB:
James Smart18a3b592006-12-02 13:35:08 -05001067 m = (typeof(m)){"LPe111", max_speed, "PCIe"};
dea31012005-04-17 16:05:31 -05001068 break;
1069 case PCI_DEVICE_ID_LP101:
James Smart18a3b592006-12-02 13:35:08 -05001070 m = (typeof(m)){"LP101", max_speed, "PCI-X"};
dea31012005-04-17 16:05:31 -05001071 break;
1072 case PCI_DEVICE_ID_LP10000S:
James Smart18a3b592006-12-02 13:35:08 -05001073 m = (typeof(m)){"LP10000-S", max_speed, "PCI"};
James.Smart@Emulex.Com06325e72005-06-25 10:34:22 -04001074 break;
James.Smart@Emulex.Come4adb202005-11-28 11:42:12 -05001075 case PCI_DEVICE_ID_LP11000S:
James Smart18a3b592006-12-02 13:35:08 -05001076 m = (typeof(m)){"LP11000-S", max_speed,
1077 "PCI-X2"};
1078 break;
James.Smart@Emulex.Come4adb202005-11-28 11:42:12 -05001079 case PCI_DEVICE_ID_LPE11000S:
James Smart18a3b592006-12-02 13:35:08 -05001080 m = (typeof(m)){"LPe11000-S", max_speed,
1081 "PCIe"};
James.Smart@Emulex.Com5cc36b32005-11-28 11:42:19 -05001082 break;
James Smartb87eab32007-04-25 09:53:28 -04001083 case PCI_DEVICE_ID_SAT:
1084 m = (typeof(m)){"LPe12000", max_speed, "PCIe"};
1085 break;
1086 case PCI_DEVICE_ID_SAT_MID:
1087 m = (typeof(m)){"LPe1250", max_speed, "PCIe"};
1088 break;
1089 case PCI_DEVICE_ID_SAT_SMB:
1090 m = (typeof(m)){"LPe121", max_speed, "PCIe"};
1091 break;
1092 case PCI_DEVICE_ID_SAT_DCSP:
1093 m = (typeof(m)){"LPe12002-SP", max_speed, "PCIe"};
1094 break;
1095 case PCI_DEVICE_ID_SAT_SCSP:
1096 m = (typeof(m)){"LPe12000-SP", max_speed, "PCIe"};
1097 break;
1098 case PCI_DEVICE_ID_SAT_S:
1099 m = (typeof(m)){"LPe12000-S", max_speed, "PCIe"};
1100 break;
James.Smart@Emulex.Com5cc36b32005-11-28 11:42:19 -05001101 default:
Randy Dunlap041976f2006-06-25 01:58:51 -07001102 m = (typeof(m)){ NULL };
James.Smart@Emulex.Come4adb202005-11-28 11:42:12 -05001103 break;
dea31012005-04-17 16:05:31 -05001104 }
Jamie Wellnitz74b72a52006-02-28 22:33:04 -05001105
1106 if (mdp && mdp[0] == '\0')
1107 snprintf(mdp, 79,"%s", m.name);
1108 if (descp && descp[0] == '\0')
1109 snprintf(descp, 255,
James Smart18a3b592006-12-02 13:35:08 -05001110 "Emulex %s %dGb %s Fibre Channel Adapter",
1111 m.name, m.max_speed, m.bus);
dea31012005-04-17 16:05:31 -05001112}
1113
1114/**************************************************/
1115/* lpfc_post_buffer */
1116/* */
1117/* This routine will post count buffers to the */
1118/* ring with the QUE_RING_BUF_CN command. This */
1119/* allows 3 buffers / command to be posted. */
1120/* Returns the number of buffers NOT posted. */
1121/**************************************************/
1122int
James Smart2e0fef82007-06-17 19:56:36 -05001123lpfc_post_buffer(struct lpfc_hba *phba, struct lpfc_sli_ring *pring, int cnt,
dea31012005-04-17 16:05:31 -05001124 int type)
1125{
1126 IOCB_t *icmd;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04001127 struct lpfc_iocbq *iocb;
dea31012005-04-17 16:05:31 -05001128 struct lpfc_dmabuf *mp1, *mp2;
1129
1130 cnt += pring->missbufcnt;
1131
1132 /* While there are buffers to post */
1133 while (cnt > 0) {
1134 /* Allocate buffer for command iocb */
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04001135 iocb = lpfc_sli_get_iocbq(phba);
dea31012005-04-17 16:05:31 -05001136 if (iocb == NULL) {
1137 pring->missbufcnt = cnt;
1138 return cnt;
1139 }
dea31012005-04-17 16:05:31 -05001140 icmd = &iocb->iocb;
1141
1142 /* 2 buffers can be posted per command */
1143 /* Allocate buffer to post */
1144 mp1 = kmalloc(sizeof (struct lpfc_dmabuf), GFP_KERNEL);
1145 if (mp1)
James Smart98c9ea52007-10-27 13:37:33 -04001146 mp1->virt = lpfc_mbuf_alloc(phba, MEM_PRI, &mp1->phys);
1147 if (!mp1 || !mp1->virt) {
Jesper Juhlc9475cb2005-11-07 01:01:26 -08001148 kfree(mp1);
James Bottomley604a3e32005-10-29 10:28:33 -05001149 lpfc_sli_release_iocbq(phba, iocb);
dea31012005-04-17 16:05:31 -05001150 pring->missbufcnt = cnt;
1151 return cnt;
1152 }
1153
1154 INIT_LIST_HEAD(&mp1->list);
1155 /* Allocate buffer to post */
1156 if (cnt > 1) {
1157 mp2 = kmalloc(sizeof (struct lpfc_dmabuf), GFP_KERNEL);
1158 if (mp2)
1159 mp2->virt = lpfc_mbuf_alloc(phba, MEM_PRI,
1160 &mp2->phys);
James Smart98c9ea52007-10-27 13:37:33 -04001161 if (!mp2 || !mp2->virt) {
Jesper Juhlc9475cb2005-11-07 01:01:26 -08001162 kfree(mp2);
dea31012005-04-17 16:05:31 -05001163 lpfc_mbuf_free(phba, mp1->virt, mp1->phys);
1164 kfree(mp1);
James Bottomley604a3e32005-10-29 10:28:33 -05001165 lpfc_sli_release_iocbq(phba, iocb);
dea31012005-04-17 16:05:31 -05001166 pring->missbufcnt = cnt;
1167 return cnt;
1168 }
1169
1170 INIT_LIST_HEAD(&mp2->list);
1171 } else {
1172 mp2 = NULL;
1173 }
1174
1175 icmd->un.cont64[0].addrHigh = putPaddrHigh(mp1->phys);
1176 icmd->un.cont64[0].addrLow = putPaddrLow(mp1->phys);
1177 icmd->un.cont64[0].tus.f.bdeSize = FCELSSIZE;
1178 icmd->ulpBdeCount = 1;
1179 cnt--;
1180 if (mp2) {
1181 icmd->un.cont64[1].addrHigh = putPaddrHigh(mp2->phys);
1182 icmd->un.cont64[1].addrLow = putPaddrLow(mp2->phys);
1183 icmd->un.cont64[1].tus.f.bdeSize = FCELSSIZE;
1184 cnt--;
1185 icmd->ulpBdeCount = 2;
1186 }
1187
1188 icmd->ulpCommand = CMD_QUE_RING_BUF64_CN;
1189 icmd->ulpLe = 1;
1190
dea31012005-04-17 16:05:31 -05001191 if (lpfc_sli_issue_iocb(phba, pring, iocb, 0) == IOCB_ERROR) {
1192 lpfc_mbuf_free(phba, mp1->virt, mp1->phys);
1193 kfree(mp1);
1194 cnt++;
1195 if (mp2) {
1196 lpfc_mbuf_free(phba, mp2->virt, mp2->phys);
1197 kfree(mp2);
1198 cnt++;
1199 }
James Bottomley604a3e32005-10-29 10:28:33 -05001200 lpfc_sli_release_iocbq(phba, iocb);
dea31012005-04-17 16:05:31 -05001201 pring->missbufcnt = cnt;
dea31012005-04-17 16:05:31 -05001202 return cnt;
1203 }
dea31012005-04-17 16:05:31 -05001204 lpfc_sli_ringpostbuf_put(phba, pring, mp1);
James Smart92d7f7b2007-06-17 19:56:38 -05001205 if (mp2)
dea31012005-04-17 16:05:31 -05001206 lpfc_sli_ringpostbuf_put(phba, pring, mp2);
dea31012005-04-17 16:05:31 -05001207 }
1208 pring->missbufcnt = 0;
1209 return 0;
1210}
1211
1212/************************************************************************/
1213/* */
1214/* lpfc_post_rcv_buf */
1215/* This routine post initial rcv buffers to the configured rings */
1216/* */
1217/************************************************************************/
1218static int
James Smart2e0fef82007-06-17 19:56:36 -05001219lpfc_post_rcv_buf(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -05001220{
1221 struct lpfc_sli *psli = &phba->sli;
1222
1223 /* Ring 0, ELS / CT buffers */
1224 lpfc_post_buffer(phba, &psli->ring[LPFC_ELS_RING], LPFC_BUF_RING0, 1);
1225 /* Ring 2 - FCP no buffers needed */
1226
1227 return 0;
1228}
1229
1230#define S(N,V) (((V)<<(N))|((V)>>(32-(N))))
1231
1232/************************************************************************/
1233/* */
1234/* lpfc_sha_init */
1235/* */
1236/************************************************************************/
1237static void
1238lpfc_sha_init(uint32_t * HashResultPointer)
1239{
1240 HashResultPointer[0] = 0x67452301;
1241 HashResultPointer[1] = 0xEFCDAB89;
1242 HashResultPointer[2] = 0x98BADCFE;
1243 HashResultPointer[3] = 0x10325476;
1244 HashResultPointer[4] = 0xC3D2E1F0;
1245}
1246
1247/************************************************************************/
1248/* */
1249/* lpfc_sha_iterate */
1250/* */
1251/************************************************************************/
1252static void
1253lpfc_sha_iterate(uint32_t * HashResultPointer, uint32_t * HashWorkingPointer)
1254{
1255 int t;
1256 uint32_t TEMP;
1257 uint32_t A, B, C, D, E;
1258 t = 16;
1259 do {
1260 HashWorkingPointer[t] =
1261 S(1,
1262 HashWorkingPointer[t - 3] ^ HashWorkingPointer[t -
1263 8] ^
1264 HashWorkingPointer[t - 14] ^ HashWorkingPointer[t - 16]);
1265 } while (++t <= 79);
1266 t = 0;
1267 A = HashResultPointer[0];
1268 B = HashResultPointer[1];
1269 C = HashResultPointer[2];
1270 D = HashResultPointer[3];
1271 E = HashResultPointer[4];
1272
1273 do {
1274 if (t < 20) {
1275 TEMP = ((B & C) | ((~B) & D)) + 0x5A827999;
1276 } else if (t < 40) {
1277 TEMP = (B ^ C ^ D) + 0x6ED9EBA1;
1278 } else if (t < 60) {
1279 TEMP = ((B & C) | (B & D) | (C & D)) + 0x8F1BBCDC;
1280 } else {
1281 TEMP = (B ^ C ^ D) + 0xCA62C1D6;
1282 }
1283 TEMP += S(5, A) + E + HashWorkingPointer[t];
1284 E = D;
1285 D = C;
1286 C = S(30, B);
1287 B = A;
1288 A = TEMP;
1289 } while (++t <= 79);
1290
1291 HashResultPointer[0] += A;
1292 HashResultPointer[1] += B;
1293 HashResultPointer[2] += C;
1294 HashResultPointer[3] += D;
1295 HashResultPointer[4] += E;
1296
1297}
1298
1299/************************************************************************/
1300/* */
1301/* lpfc_challenge_key */
1302/* */
1303/************************************************************************/
1304static void
1305lpfc_challenge_key(uint32_t * RandomChallenge, uint32_t * HashWorking)
1306{
1307 *HashWorking = (*RandomChallenge ^ *HashWorking);
1308}
1309
1310/************************************************************************/
1311/* */
1312/* lpfc_hba_init */
1313/* */
1314/************************************************************************/
1315void
1316lpfc_hba_init(struct lpfc_hba *phba, uint32_t *hbainit)
1317{
1318 int t;
1319 uint32_t *HashWorking;
James Smart2e0fef82007-06-17 19:56:36 -05001320 uint32_t *pwwnn = (uint32_t *) phba->wwnn;
dea31012005-04-17 16:05:31 -05001321
Mariusz Kozlowskibbfbbbc2007-08-11 10:13:24 +02001322 HashWorking = kcalloc(80, sizeof(uint32_t), GFP_KERNEL);
dea31012005-04-17 16:05:31 -05001323 if (!HashWorking)
1324 return;
1325
dea31012005-04-17 16:05:31 -05001326 HashWorking[0] = HashWorking[78] = *pwwnn++;
1327 HashWorking[1] = HashWorking[79] = *pwwnn;
1328
1329 for (t = 0; t < 7; t++)
1330 lpfc_challenge_key(phba->RandomData + t, HashWorking + t);
1331
1332 lpfc_sha_init(hbainit);
1333 lpfc_sha_iterate(hbainit, HashWorking);
1334 kfree(HashWorking);
1335}
1336
James Smart87af33f2007-10-27 13:37:43 -04001337void
James Smart2e0fef82007-06-17 19:56:36 -05001338lpfc_cleanup(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05001339{
James Smart87af33f2007-10-27 13:37:43 -04001340 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05001341 struct lpfc_nodelist *ndlp, *next_ndlp;
1342
James Smart87af33f2007-10-27 13:37:43 -04001343 if (phba->link_state > LPFC_LINK_DOWN)
1344 lpfc_port_link_failure(vport);
1345
1346 list_for_each_entry_safe(ndlp, next_ndlp, &vport->fc_nodes, nlp_listp) {
1347 if (ndlp->nlp_type & NLP_FABRIC)
1348 lpfc_disc_state_machine(vport, ndlp, NULL,
1349 NLP_EVT_DEVICE_RECOVERY);
1350 lpfc_disc_state_machine(vport, ndlp, NULL,
1351 NLP_EVT_DEVICE_RM);
1352 }
1353
1354 /* At this point, ALL ndlp's should be gone */
1355 while (!list_empty(&vport->fc_nodes)) {
1356
1357 list_for_each_entry_safe(ndlp, next_ndlp, &vport->fc_nodes,
1358 nlp_listp) {
1359 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
1360 "0233 Nodelist x%x not free: %d\n",
1361 ndlp->nlp_DID,
1362 atomic_read(&ndlp->kref.refcount));
1363 lpfc_drop_node(vport, ndlp);
1364 }
1365 }
dea31012005-04-17 16:05:31 -05001366 return;
1367}
1368
1369static void
1370lpfc_establish_link_tmo(unsigned long ptr)
1371{
James Smart92d7f7b2007-06-17 19:56:38 -05001372 struct lpfc_hba *phba = (struct lpfc_hba *) ptr;
James Smart549e55c2007-08-02 11:09:51 -04001373 struct lpfc_vport **vports;
dea31012005-04-17 16:05:31 -05001374 unsigned long iflag;
James Smart549e55c2007-08-02 11:09:51 -04001375 int i;
dea31012005-04-17 16:05:31 -05001376
dea31012005-04-17 16:05:31 -05001377 /* Re-establishing Link, timer expired */
1378 lpfc_printf_log(phba, KERN_ERR, LOG_LINK_EVENT,
James Smarte8b62012007-08-02 11:10:09 -04001379 "1300 Re-establishing Link, timer expired "
dea31012005-04-17 16:05:31 -05001380 "Data: x%x x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04001381 phba->pport->fc_flag, phba->pport->port_state);
James Smart549e55c2007-08-02 11:09:51 -04001382 vports = lpfc_create_vport_work_array(phba);
1383 if (vports != NULL)
1384 for(i = 0; i < LPFC_MAX_VPORTS && vports[i] != NULL; i++) {
1385 struct Scsi_Host *shost;
1386 shost = lpfc_shost_from_vport(vports[i]);
1387 spin_lock_irqsave(shost->host_lock, iflag);
1388 vports[i]->fc_flag &= ~FC_ESTABLISH_LINK;
1389 spin_unlock_irqrestore(shost->host_lock, iflag);
1390 }
1391 lpfc_destroy_vport_work_array(vports);
dea31012005-04-17 16:05:31 -05001392}
1393
James Smart92d7f7b2007-06-17 19:56:38 -05001394void
1395lpfc_stop_vport_timers(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05001396{
James Smart92d7f7b2007-06-17 19:56:38 -05001397 del_timer_sync(&vport->els_tmofunc);
1398 del_timer_sync(&vport->fc_fdmitmo);
1399 lpfc_can_disctmo(vport);
1400 return;
dea31012005-04-17 16:05:31 -05001401}
1402
James Smart2e0fef82007-06-17 19:56:36 -05001403static void
James Smart92d7f7b2007-06-17 19:56:38 -05001404lpfc_stop_phba_timers(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -05001405{
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001406 del_timer_sync(&phba->fcp_poll_timer);
dea31012005-04-17 16:05:31 -05001407 del_timer_sync(&phba->fc_estabtmo);
James Smart51ef4c22007-08-02 11:10:31 -04001408 lpfc_stop_vport_timers(phba->pport);
James Smart2e0fef82007-06-17 19:56:36 -05001409 del_timer_sync(&phba->sli.mbox_tmo);
James Smart92d7f7b2007-06-17 19:56:38 -05001410 del_timer_sync(&phba->fabric_block_timer);
James Smart858c9f62007-06-17 19:56:39 -05001411 phba->hb_outstanding = 0;
1412 del_timer_sync(&phba->hb_tmofunc);
James Smart2e0fef82007-06-17 19:56:36 -05001413 return;
dea31012005-04-17 16:05:31 -05001414}
1415
1416int
James Smart2e0fef82007-06-17 19:56:36 -05001417lpfc_online(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -05001418{
James Smart2e0fef82007-06-17 19:56:36 -05001419 struct lpfc_vport *vport = phba->pport;
James Smart549e55c2007-08-02 11:09:51 -04001420 struct lpfc_vport **vports;
1421 int i;
James Smart2e0fef82007-06-17 19:56:36 -05001422
dea31012005-04-17 16:05:31 -05001423 if (!phba)
1424 return 0;
1425
James Smart2e0fef82007-06-17 19:56:36 -05001426 if (!(vport->fc_flag & FC_OFFLINE_MODE))
dea31012005-04-17 16:05:31 -05001427 return 0;
1428
James Smarted957682007-06-17 19:56:37 -05001429 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04001430 "0458 Bring Adapter online\n");
dea31012005-04-17 16:05:31 -05001431
James Smart46fa3112007-04-25 09:51:45 -04001432 lpfc_block_mgmt_io(phba);
dea31012005-04-17 16:05:31 -05001433
James Smart46fa3112007-04-25 09:51:45 -04001434 if (!lpfc_sli_queue_setup(phba)) {
1435 lpfc_unblock_mgmt_io(phba);
dea31012005-04-17 16:05:31 -05001436 return 1;
James Smart46fa3112007-04-25 09:51:45 -04001437 }
1438
1439 if (lpfc_sli_hba_setup(phba)) { /* Initialize the HBA */
1440 lpfc_unblock_mgmt_io(phba);
1441 return 1;
1442 }
dea31012005-04-17 16:05:31 -05001443
James Smart549e55c2007-08-02 11:09:51 -04001444 vports = lpfc_create_vport_work_array(phba);
1445 if (vports != NULL)
1446 for(i = 0; i < LPFC_MAX_VPORTS && vports[i] != NULL; i++) {
1447 struct Scsi_Host *shost;
1448 shost = lpfc_shost_from_vport(vports[i]);
1449 spin_lock_irq(shost->host_lock);
1450 vports[i]->fc_flag &= ~FC_OFFLINE_MODE;
1451 if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED)
1452 vports[i]->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
1453 spin_unlock_irq(shost->host_lock);
1454 }
1455 lpfc_destroy_vport_work_array(vports);
dea31012005-04-17 16:05:31 -05001456
James Smart46fa3112007-04-25 09:51:45 -04001457 lpfc_unblock_mgmt_io(phba);
dea31012005-04-17 16:05:31 -05001458 return 0;
1459}
1460
James Smart46fa3112007-04-25 09:51:45 -04001461void
1462lpfc_block_mgmt_io(struct lpfc_hba * phba)
dea31012005-04-17 16:05:31 -05001463{
dea31012005-04-17 16:05:31 -05001464 unsigned long iflag;
dea31012005-04-17 16:05:31 -05001465
James Smart2e0fef82007-06-17 19:56:36 -05001466 spin_lock_irqsave(&phba->hbalock, iflag);
1467 phba->sli.sli_flag |= LPFC_BLOCK_MGMT_IO;
1468 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart46fa3112007-04-25 09:51:45 -04001469}
1470
1471void
1472lpfc_unblock_mgmt_io(struct lpfc_hba * phba)
1473{
1474 unsigned long iflag;
1475
James Smart2e0fef82007-06-17 19:56:36 -05001476 spin_lock_irqsave(&phba->hbalock, iflag);
1477 phba->sli.sli_flag &= ~LPFC_BLOCK_MGMT_IO;
1478 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart46fa3112007-04-25 09:51:45 -04001479}
1480
1481void
1482lpfc_offline_prep(struct lpfc_hba * phba)
1483{
James Smart2e0fef82007-06-17 19:56:36 -05001484 struct lpfc_vport *vport = phba->pport;
James Smart46fa3112007-04-25 09:51:45 -04001485 struct lpfc_nodelist *ndlp, *next_ndlp;
James Smart87af33f2007-10-27 13:37:43 -04001486 struct lpfc_vport **vports;
1487 int i;
dea31012005-04-17 16:05:31 -05001488
James Smart2e0fef82007-06-17 19:56:36 -05001489 if (vport->fc_flag & FC_OFFLINE_MODE)
James Smart46fa3112007-04-25 09:51:45 -04001490 return;
dea31012005-04-17 16:05:31 -05001491
James Smart46fa3112007-04-25 09:51:45 -04001492 lpfc_block_mgmt_io(phba);
dea31012005-04-17 16:05:31 -05001493
1494 lpfc_linkdown(phba);
1495
James Smart87af33f2007-10-27 13:37:43 -04001496 /* Issue an unreg_login to all nodes on all vports */
1497 vports = lpfc_create_vport_work_array(phba);
1498 if (vports != NULL) {
1499 for(i = 0; i < LPFC_MAX_VPORTS && vports[i] != NULL; i++) {
1500 struct Scsi_Host *shost;
1501
1502 shost = lpfc_shost_from_vport(vports[i]);
1503 list_for_each_entry_safe(ndlp, next_ndlp,
1504 &vports[i]->fc_nodes,
1505 nlp_listp) {
1506 if (ndlp->nlp_state == NLP_STE_UNUSED_NODE)
1507 continue;
1508 if (ndlp->nlp_type & NLP_FABRIC) {
1509 lpfc_disc_state_machine(vports[i], ndlp,
1510 NULL, NLP_EVT_DEVICE_RECOVERY);
1511 lpfc_disc_state_machine(vports[i], ndlp,
1512 NULL, NLP_EVT_DEVICE_RM);
1513 }
1514 spin_lock_irq(shost->host_lock);
1515 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
1516 spin_unlock_irq(shost->host_lock);
1517 lpfc_unreg_rpi(vports[i], ndlp);
1518 }
1519 }
1520 }
1521 lpfc_destroy_vport_work_array(vports);
dea31012005-04-17 16:05:31 -05001522
James Smart46fa3112007-04-25 09:51:45 -04001523 lpfc_sli_flush_mbox_queue(phba);
1524}
1525
1526void
James Smart2e0fef82007-06-17 19:56:36 -05001527lpfc_offline(struct lpfc_hba *phba)
James Smart46fa3112007-04-25 09:51:45 -04001528{
James Smart549e55c2007-08-02 11:09:51 -04001529 struct Scsi_Host *shost;
1530 struct lpfc_vport **vports;
1531 int i;
James Smart46fa3112007-04-25 09:51:45 -04001532
James Smart549e55c2007-08-02 11:09:51 -04001533 if (phba->pport->fc_flag & FC_OFFLINE_MODE)
James Smart46fa3112007-04-25 09:51:45 -04001534 return;
James Smart688a8862006-07-06 15:49:56 -04001535
dea31012005-04-17 16:05:31 -05001536 /* stop all timers associated with this hba */
James Smart92d7f7b2007-06-17 19:56:38 -05001537 lpfc_stop_phba_timers(phba);
James Smart51ef4c22007-08-02 11:10:31 -04001538 vports = lpfc_create_vport_work_array(phba);
1539 if (vports != NULL)
1540 for(i = 0; i < LPFC_MAX_VPORTS && vports[i] != NULL; i++)
1541 lpfc_stop_vport_timers(vports[i]);
1542 lpfc_destroy_vport_work_array(vports);
James Smart92d7f7b2007-06-17 19:56:38 -05001543 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04001544 "0460 Bring Adapter offline\n");
dea31012005-04-17 16:05:31 -05001545 /* Bring down the SLI Layer and cleanup. The HBA is offline
1546 now. */
1547 lpfc_sli_hba_down(phba);
James Smart92d7f7b2007-06-17 19:56:38 -05001548 spin_lock_irq(&phba->hbalock);
James Smart7054a602007-04-25 09:52:34 -04001549 phba->work_ha = 0;
James Smart92d7f7b2007-06-17 19:56:38 -05001550 spin_unlock_irq(&phba->hbalock);
James Smart549e55c2007-08-02 11:09:51 -04001551 vports = lpfc_create_vport_work_array(phba);
1552 if (vports != NULL)
1553 for(i = 0; i < LPFC_MAX_VPORTS && vports[i] != NULL; i++) {
1554 shost = lpfc_shost_from_vport(vports[i]);
James Smart549e55c2007-08-02 11:09:51 -04001555 spin_lock_irq(shost->host_lock);
1556 vports[i]->work_port_events = 0;
1557 vports[i]->fc_flag |= FC_OFFLINE_MODE;
1558 spin_unlock_irq(shost->host_lock);
1559 }
1560 lpfc_destroy_vport_work_array(vports);
dea31012005-04-17 16:05:31 -05001561}
1562
1563/******************************************************************************
1564* Function name: lpfc_scsi_free
1565*
1566* Description: Called from lpfc_pci_remove_one free internal driver resources
1567*
1568******************************************************************************/
1569static int
James Smart2e0fef82007-06-17 19:56:36 -05001570lpfc_scsi_free(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -05001571{
1572 struct lpfc_scsi_buf *sb, *sb_next;
1573 struct lpfc_iocbq *io, *io_next;
1574
James Smart2e0fef82007-06-17 19:56:36 -05001575 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05001576 /* Release all the lpfc_scsi_bufs maintained by this host. */
1577 list_for_each_entry_safe(sb, sb_next, &phba->lpfc_scsi_buf_list, list) {
1578 list_del(&sb->list);
1579 pci_pool_free(phba->lpfc_scsi_dma_buf_pool, sb->data,
James Smart92d7f7b2007-06-17 19:56:38 -05001580 sb->dma_handle);
dea31012005-04-17 16:05:31 -05001581 kfree(sb);
1582 phba->total_scsi_bufs--;
1583 }
1584
1585 /* Release all the lpfc_iocbq entries maintained by this host. */
1586 list_for_each_entry_safe(io, io_next, &phba->lpfc_iocb_list, list) {
1587 list_del(&io->list);
1588 kfree(io);
1589 phba->total_iocbq_bufs--;
1590 }
1591
James Smart2e0fef82007-06-17 19:56:36 -05001592 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05001593
1594 return 0;
1595}
1596
James Smart2e0fef82007-06-17 19:56:36 -05001597struct lpfc_vport *
James Smart3de2a652007-08-02 11:09:59 -04001598lpfc_create_port(struct lpfc_hba *phba, int instance, struct device *dev)
James Smart47a86172007-04-25 09:53:22 -04001599{
James Smart2e0fef82007-06-17 19:56:36 -05001600 struct lpfc_vport *vport;
1601 struct Scsi_Host *shost;
1602 int error = 0;
James Smart47a86172007-04-25 09:53:22 -04001603
James Smart3de2a652007-08-02 11:09:59 -04001604 if (dev != &phba->pcidev->dev)
1605 shost = scsi_host_alloc(&lpfc_vport_template,
1606 sizeof(struct lpfc_vport));
1607 else
1608 shost = scsi_host_alloc(&lpfc_template,
1609 sizeof(struct lpfc_vport));
James Smart2e0fef82007-06-17 19:56:36 -05001610 if (!shost)
1611 goto out;
James Smart47a86172007-04-25 09:53:22 -04001612
James Smart2e0fef82007-06-17 19:56:36 -05001613 vport = (struct lpfc_vport *) shost->hostdata;
1614 vport->phba = phba;
James Smart47a86172007-04-25 09:53:22 -04001615
James Smart2e0fef82007-06-17 19:56:36 -05001616 vport->load_flag |= FC_LOADING;
James Smart92d7f7b2007-06-17 19:56:38 -05001617 vport->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
James Smart47a86172007-04-25 09:53:22 -04001618
James Smart3de2a652007-08-02 11:09:59 -04001619 lpfc_get_vport_cfgparam(vport);
James Smart2e0fef82007-06-17 19:56:36 -05001620 shost->unique_id = instance;
1621 shost->max_id = LPFC_MAX_TARGET;
James Smart3de2a652007-08-02 11:09:59 -04001622 shost->max_lun = vport->cfg_max_luns;
James Smart2e0fef82007-06-17 19:56:36 -05001623 shost->this_id = -1;
1624 shost->max_cmd_len = 16;
James Smart47a86172007-04-25 09:53:22 -04001625 /*
James Smart2e0fef82007-06-17 19:56:36 -05001626 * Set initial can_queue value since 0 is no longer supported and
1627 * scsi_add_host will fail. This will be adjusted later based on the
1628 * max xri value determined in hba setup.
James Smart47a86172007-04-25 09:53:22 -04001629 */
James Smart2e0fef82007-06-17 19:56:36 -05001630 shost->can_queue = phba->cfg_hba_queue_depth - 10;
James Smart3de2a652007-08-02 11:09:59 -04001631 if (dev != &phba->pcidev->dev) {
James Smart92d7f7b2007-06-17 19:56:38 -05001632 shost->transportt = lpfc_vport_transport_template;
1633 vport->port_type = LPFC_NPIV_PORT;
1634 } else {
1635 shost->transportt = lpfc_transport_template;
1636 vport->port_type = LPFC_PHYSICAL_PORT;
1637 }
James Smart47a86172007-04-25 09:53:22 -04001638
James Smart2e0fef82007-06-17 19:56:36 -05001639 /* Initialize all internally managed lists. */
1640 INIT_LIST_HEAD(&vport->fc_nodes);
1641 spin_lock_init(&vport->work_port_lock);
James Smart47a86172007-04-25 09:53:22 -04001642
James Smart2e0fef82007-06-17 19:56:36 -05001643 init_timer(&vport->fc_disctmo);
1644 vport->fc_disctmo.function = lpfc_disc_timeout;
James Smart92d7f7b2007-06-17 19:56:38 -05001645 vport->fc_disctmo.data = (unsigned long)vport;
James Smart47a86172007-04-25 09:53:22 -04001646
James Smart2e0fef82007-06-17 19:56:36 -05001647 init_timer(&vport->fc_fdmitmo);
1648 vport->fc_fdmitmo.function = lpfc_fdmi_tmo;
James Smart92d7f7b2007-06-17 19:56:38 -05001649 vport->fc_fdmitmo.data = (unsigned long)vport;
James Smart47a86172007-04-25 09:53:22 -04001650
James Smart2e0fef82007-06-17 19:56:36 -05001651 init_timer(&vport->els_tmofunc);
1652 vport->els_tmofunc.function = lpfc_els_timeout;
James Smart92d7f7b2007-06-17 19:56:38 -05001653 vport->els_tmofunc.data = (unsigned long)vport;
James Smart47a86172007-04-25 09:53:22 -04001654
James Smart3de2a652007-08-02 11:09:59 -04001655 error = scsi_add_host(shost, dev);
James Smart2e0fef82007-06-17 19:56:36 -05001656 if (error)
1657 goto out_put_shost;
James Smart47a86172007-04-25 09:53:22 -04001658
James Smart549e55c2007-08-02 11:09:51 -04001659 spin_lock_irq(&phba->hbalock);
James Smart2e0fef82007-06-17 19:56:36 -05001660 list_add_tail(&vport->listentry, &phba->port_list);
James Smart549e55c2007-08-02 11:09:51 -04001661 spin_unlock_irq(&phba->hbalock);
James Smart2e0fef82007-06-17 19:56:36 -05001662 return vport;
James Smart47a86172007-04-25 09:53:22 -04001663
James Smart2e0fef82007-06-17 19:56:36 -05001664out_put_shost:
1665 scsi_host_put(shost);
1666out:
1667 return NULL;
James Smart47a86172007-04-25 09:53:22 -04001668}
1669
James Smart2e0fef82007-06-17 19:56:36 -05001670void
1671destroy_port(struct lpfc_vport *vport)
James Smart47a86172007-04-25 09:53:22 -04001672{
James Smart92d7f7b2007-06-17 19:56:38 -05001673 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
1674 struct lpfc_hba *phba = vport->phba;
James Smart47a86172007-04-25 09:53:22 -04001675
James Smart92d7f7b2007-06-17 19:56:38 -05001676 kfree(vport->vname);
James Smart47a86172007-04-25 09:53:22 -04001677
James Smart858c9f62007-06-17 19:56:39 -05001678 lpfc_debugfs_terminate(vport);
James Smart92d7f7b2007-06-17 19:56:38 -05001679 fc_remove_host(shost);
1680 scsi_remove_host(shost);
James Smart47a86172007-04-25 09:53:22 -04001681
James Smart92d7f7b2007-06-17 19:56:38 -05001682 spin_lock_irq(&phba->hbalock);
1683 list_del_init(&vport->listentry);
1684 spin_unlock_irq(&phba->hbalock);
James Smart47a86172007-04-25 09:53:22 -04001685
James Smart92d7f7b2007-06-17 19:56:38 -05001686 lpfc_cleanup(vport);
James Smart47a86172007-04-25 09:53:22 -04001687 return;
James Smart47a86172007-04-25 09:53:22 -04001688}
1689
James Smart92d7f7b2007-06-17 19:56:38 -05001690int
1691lpfc_get_instance(void)
1692{
1693 int instance = 0;
1694
1695 /* Assign an unused number */
1696 if (!idr_pre_get(&lpfc_hba_index, GFP_KERNEL))
1697 return -1;
1698 if (idr_get_new(&lpfc_hba_index, NULL, &instance))
1699 return -1;
1700 return instance;
1701}
1702
James Smart858c9f62007-06-17 19:56:39 -05001703/*
1704 * Note: there is no scan_start function as adapter initialization
1705 * will have asynchronously kicked off the link initialization.
1706 */
James Smart47a86172007-04-25 09:53:22 -04001707
1708int lpfc_scan_finished(struct Scsi_Host *shost, unsigned long time)
1709{
James Smart2e0fef82007-06-17 19:56:36 -05001710 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1711 struct lpfc_hba *phba = vport->phba;
James Smart858c9f62007-06-17 19:56:39 -05001712 int stat = 0;
James Smart47a86172007-04-25 09:53:22 -04001713
James Smart858c9f62007-06-17 19:56:39 -05001714 spin_lock_irq(shost->host_lock);
1715
James Smart51ef4c22007-08-02 11:10:31 -04001716 if (vport->load_flag & FC_UNLOADING) {
James Smart858c9f62007-06-17 19:56:39 -05001717 stat = 1;
James Smart47a86172007-04-25 09:53:22 -04001718 goto finished;
James Smart858c9f62007-06-17 19:56:39 -05001719 }
James Smart2e0fef82007-06-17 19:56:36 -05001720 if (time >= 30 * HZ) {
1721 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04001722 "0461 Scanning longer than 30 "
1723 "seconds. Continuing initialization\n");
James Smart858c9f62007-06-17 19:56:39 -05001724 stat = 1;
James Smart47a86172007-04-25 09:53:22 -04001725 goto finished;
James Smart2e0fef82007-06-17 19:56:36 -05001726 }
1727 if (time >= 15 * HZ && phba->link_state <= LPFC_LINK_DOWN) {
1728 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04001729 "0465 Link down longer than 15 "
1730 "seconds. Continuing initialization\n");
James Smart858c9f62007-06-17 19:56:39 -05001731 stat = 1;
James Smart2e0fef82007-06-17 19:56:36 -05001732 goto finished;
James Smart47a86172007-04-25 09:53:22 -04001733 }
1734
James Smart2e0fef82007-06-17 19:56:36 -05001735 if (vport->port_state != LPFC_VPORT_READY)
James Smart858c9f62007-06-17 19:56:39 -05001736 goto finished;
James Smart2e0fef82007-06-17 19:56:36 -05001737 if (vport->num_disc_nodes || vport->fc_prli_sent)
James Smart858c9f62007-06-17 19:56:39 -05001738 goto finished;
James Smart2e0fef82007-06-17 19:56:36 -05001739 if (vport->fc_map_cnt == 0 && time < 2 * HZ)
James Smart858c9f62007-06-17 19:56:39 -05001740 goto finished;
James Smart2e0fef82007-06-17 19:56:36 -05001741 if ((phba->sli.sli_flag & LPFC_SLI_MBOX_ACTIVE) != 0)
James Smart858c9f62007-06-17 19:56:39 -05001742 goto finished;
1743
1744 stat = 1;
James Smart47a86172007-04-25 09:53:22 -04001745
1746finished:
James Smart858c9f62007-06-17 19:56:39 -05001747 spin_unlock_irq(shost->host_lock);
1748 return stat;
James Smart92d7f7b2007-06-17 19:56:38 -05001749}
1750
1751void lpfc_host_attrib_init(struct Scsi_Host *shost)
1752{
1753 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
1754 struct lpfc_hba *phba = vport->phba;
James Smart47a86172007-04-25 09:53:22 -04001755 /*
James Smart2e0fef82007-06-17 19:56:36 -05001756 * Set fixed host attributes. Must done after lpfc_sli_hba_setup().
James Smart47a86172007-04-25 09:53:22 -04001757 */
1758
James Smart2e0fef82007-06-17 19:56:36 -05001759 fc_host_node_name(shost) = wwn_to_u64(vport->fc_nodename.u.wwn);
1760 fc_host_port_name(shost) = wwn_to_u64(vport->fc_portname.u.wwn);
James Smart47a86172007-04-25 09:53:22 -04001761 fc_host_supported_classes(shost) = FC_COS_CLASS3;
1762
1763 memset(fc_host_supported_fc4s(shost), 0,
James Smart2e0fef82007-06-17 19:56:36 -05001764 sizeof(fc_host_supported_fc4s(shost)));
James Smart47a86172007-04-25 09:53:22 -04001765 fc_host_supported_fc4s(shost)[2] = 1;
1766 fc_host_supported_fc4s(shost)[7] = 1;
1767
James Smart92d7f7b2007-06-17 19:56:38 -05001768 lpfc_vport_symbolic_node_name(vport, fc_host_symbolic_name(shost),
1769 sizeof fc_host_symbolic_name(shost));
James Smart47a86172007-04-25 09:53:22 -04001770
1771 fc_host_supported_speeds(shost) = 0;
1772 if (phba->lmt & LMT_10Gb)
1773 fc_host_supported_speeds(shost) |= FC_PORTSPEED_10GBIT;
1774 if (phba->lmt & LMT_4Gb)
1775 fc_host_supported_speeds(shost) |= FC_PORTSPEED_4GBIT;
1776 if (phba->lmt & LMT_2Gb)
1777 fc_host_supported_speeds(shost) |= FC_PORTSPEED_2GBIT;
1778 if (phba->lmt & LMT_1Gb)
1779 fc_host_supported_speeds(shost) |= FC_PORTSPEED_1GBIT;
1780
1781 fc_host_maxframe_size(shost) =
James Smart2e0fef82007-06-17 19:56:36 -05001782 (((uint32_t) vport->fc_sparam.cmn.bbRcvSizeMsb & 0x0F) << 8) |
1783 (uint32_t) vport->fc_sparam.cmn.bbRcvSizeLsb;
James Smart47a86172007-04-25 09:53:22 -04001784
1785 /* This value is also unchanging */
1786 memset(fc_host_active_fc4s(shost), 0,
James Smart2e0fef82007-06-17 19:56:36 -05001787 sizeof(fc_host_active_fc4s(shost)));
James Smart47a86172007-04-25 09:53:22 -04001788 fc_host_active_fc4s(shost)[2] = 1;
1789 fc_host_active_fc4s(shost)[7] = 1;
1790
James Smart92d7f7b2007-06-17 19:56:38 -05001791 fc_host_max_npiv_vports(shost) = phba->max_vpi;
James Smart47a86172007-04-25 09:53:22 -04001792 spin_lock_irq(shost->host_lock);
James Smart51ef4c22007-08-02 11:10:31 -04001793 vport->load_flag &= ~FC_LOADING;
James Smart47a86172007-04-25 09:53:22 -04001794 spin_unlock_irq(shost->host_lock);
James Smart47a86172007-04-25 09:53:22 -04001795}
dea31012005-04-17 16:05:31 -05001796
1797static int __devinit
1798lpfc_pci_probe_one(struct pci_dev *pdev, const struct pci_device_id *pid)
1799{
James Smart2e0fef82007-06-17 19:56:36 -05001800 struct lpfc_vport *vport = NULL;
1801 struct lpfc_hba *phba;
1802 struct lpfc_sli *psli;
dea31012005-04-17 16:05:31 -05001803 struct lpfc_iocbq *iocbq_entry = NULL, *iocbq_next = NULL;
James Smart2e0fef82007-06-17 19:56:36 -05001804 struct Scsi_Host *shost = NULL;
James Smart51ef4c22007-08-02 11:10:31 -04001805 void *ptr;
dea31012005-04-17 16:05:31 -05001806 unsigned long bar0map_len, bar2map_len;
James Smart98c9ea52007-10-27 13:37:33 -04001807 int error = -ENODEV, retval;
James Smart51ef4c22007-08-02 11:10:31 -04001808 int i, hbq_count;
James Bottomley604a3e32005-10-29 10:28:33 -05001809 uint16_t iotag;
dea31012005-04-17 16:05:31 -05001810
1811 if (pci_enable_device(pdev))
1812 goto out;
1813 if (pci_request_regions(pdev, LPFC_DRIVER_NAME))
1814 goto out_disable_device;
1815
James Smart2e0fef82007-06-17 19:56:36 -05001816 phba = kzalloc(sizeof (struct lpfc_hba), GFP_KERNEL);
1817 if (!phba)
dea31012005-04-17 16:05:31 -05001818 goto out_release_regions;
1819
James Smart2e0fef82007-06-17 19:56:36 -05001820 spin_lock_init(&phba->hbalock);
dea31012005-04-17 16:05:31 -05001821
dea31012005-04-17 16:05:31 -05001822 phba->pcidev = pdev;
1823
1824 /* Assign an unused board number */
James Smart92d7f7b2007-06-17 19:56:38 -05001825 if ((phba->brd_no = lpfc_get_instance()) < 0)
James Smart2e0fef82007-06-17 19:56:36 -05001826 goto out_free_phba;
dea31012005-04-17 16:05:31 -05001827
James Smart2e0fef82007-06-17 19:56:36 -05001828 INIT_LIST_HEAD(&phba->port_list);
James Smart2e0fef82007-06-17 19:56:36 -05001829 /*
1830 * Get all the module params for configuring this host and then
1831 * establish the host.
1832 */
1833 lpfc_get_cfgparam(phba);
James Smart92d7f7b2007-06-17 19:56:38 -05001834 phba->max_vpi = LPFC_MAX_VPI;
dea31012005-04-17 16:05:31 -05001835
1836 /* Initialize timers used by driver */
1837 init_timer(&phba->fc_estabtmo);
1838 phba->fc_estabtmo.function = lpfc_establish_link_tmo;
1839 phba->fc_estabtmo.data = (unsigned long)phba;
dea31012005-04-17 16:05:31 -05001840
James Smart858c9f62007-06-17 19:56:39 -05001841 init_timer(&phba->hb_tmofunc);
1842 phba->hb_tmofunc.function = lpfc_hb_timeout;
1843 phba->hb_tmofunc.data = (unsigned long)phba;
1844
dea31012005-04-17 16:05:31 -05001845 psli = &phba->sli;
1846 init_timer(&psli->mbox_tmo);
1847 psli->mbox_tmo.function = lpfc_mbox_timeout;
James Smart2e0fef82007-06-17 19:56:36 -05001848 psli->mbox_tmo.data = (unsigned long) phba;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001849 init_timer(&phba->fcp_poll_timer);
1850 phba->fcp_poll_timer.function = lpfc_poll_timeout;
James Smart2e0fef82007-06-17 19:56:36 -05001851 phba->fcp_poll_timer.data = (unsigned long) phba;
James Smart92d7f7b2007-06-17 19:56:38 -05001852 init_timer(&phba->fabric_block_timer);
1853 phba->fabric_block_timer.function = lpfc_fabric_block_timeout;
1854 phba->fabric_block_timer.data = (unsigned long) phba;
dea31012005-04-17 16:05:31 -05001855
dea31012005-04-17 16:05:31 -05001856 pci_set_master(pdev);
Randy Dunlap694625c2007-07-09 11:55:54 -07001857 pci_try_set_mwi(pdev);
dea31012005-04-17 16:05:31 -05001858
1859 if (pci_set_dma_mask(phba->pcidev, DMA_64BIT_MASK) != 0)
1860 if (pci_set_dma_mask(phba->pcidev, DMA_32BIT_MASK) != 0)
1861 goto out_idr_remove;
1862
1863 /*
1864 * Get the bus address of Bar0 and Bar2 and the number of bytes
1865 * required by each mapping.
1866 */
1867 phba->pci_bar0_map = pci_resource_start(phba->pcidev, 0);
1868 bar0map_len = pci_resource_len(phba->pcidev, 0);
1869
1870 phba->pci_bar2_map = pci_resource_start(phba->pcidev, 2);
1871 bar2map_len = pci_resource_len(phba->pcidev, 2);
1872
Jamie Wellnitz901a9202006-02-28 19:25:19 -05001873 /* Map HBA SLIM to a kernel virtual address. */
dea31012005-04-17 16:05:31 -05001874 phba->slim_memmap_p = ioremap(phba->pci_bar0_map, bar0map_len);
Jamie Wellnitz901a9202006-02-28 19:25:19 -05001875 if (!phba->slim_memmap_p) {
1876 error = -ENODEV;
1877 dev_printk(KERN_ERR, &pdev->dev,
1878 "ioremap failed for SLIM memory.\n");
1879 goto out_idr_remove;
1880 }
1881
1882 /* Map HBA Control Registers to a kernel virtual address. */
dea31012005-04-17 16:05:31 -05001883 phba->ctrl_regs_memmap_p = ioremap(phba->pci_bar2_map, bar2map_len);
Jamie Wellnitz901a9202006-02-28 19:25:19 -05001884 if (!phba->ctrl_regs_memmap_p) {
1885 error = -ENODEV;
1886 dev_printk(KERN_ERR, &pdev->dev,
1887 "ioremap failed for HBA control registers.\n");
1888 goto out_iounmap_slim;
1889 }
dea31012005-04-17 16:05:31 -05001890
1891 /* Allocate memory for SLI-2 structures */
1892 phba->slim2p = dma_alloc_coherent(&phba->pcidev->dev, SLI2_SLIM_SIZE,
1893 &phba->slim2p_mapping, GFP_KERNEL);
1894 if (!phba->slim2p)
1895 goto out_iounmap;
1896
James.Smart@Emulex.Comf91b3922005-10-28 20:29:28 -04001897 memset(phba->slim2p, 0, SLI2_SLIM_SIZE);
dea31012005-04-17 16:05:31 -05001898
James Smarted957682007-06-17 19:56:37 -05001899 phba->hbqslimp.virt = dma_alloc_coherent(&phba->pcidev->dev,
1900 lpfc_sli_hbq_size(),
1901 &phba->hbqslimp.phys,
1902 GFP_KERNEL);
1903 if (!phba->hbqslimp.virt)
1904 goto out_free_slim;
1905
James Smart51ef4c22007-08-02 11:10:31 -04001906 hbq_count = lpfc_sli_hbq_count();
1907 ptr = phba->hbqslimp.virt;
1908 for (i = 0; i < hbq_count; ++i) {
1909 phba->hbqs[i].hbq_virt = ptr;
1910 INIT_LIST_HEAD(&phba->hbqs[i].hbq_buffer_list);
1911 ptr += (lpfc_hbq_defs[i]->entry_count *
1912 sizeof(struct lpfc_hbq_entry));
1913 }
1914 phba->hbqs[LPFC_ELS_HBQ].hbq_alloc_buffer = lpfc_els_hbq_alloc;
1915 phba->hbqs[LPFC_ELS_HBQ].hbq_free_buffer = lpfc_els_hbq_free;
1916
James Smarted957682007-06-17 19:56:37 -05001917 memset(phba->hbqslimp.virt, 0, lpfc_sli_hbq_size());
1918
dea31012005-04-17 16:05:31 -05001919 /* Initialize the SLI Layer to run with lpfc HBAs. */
1920 lpfc_sli_setup(phba);
1921 lpfc_sli_queue_setup(phba);
1922
James Smart98c9ea52007-10-27 13:37:33 -04001923 retval = lpfc_mem_alloc(phba);
1924 if (retval) {
1925 error = retval;
James Smarted957682007-06-17 19:56:37 -05001926 goto out_free_hbqslimp;
James Smart98c9ea52007-10-27 13:37:33 -04001927 }
dea31012005-04-17 16:05:31 -05001928
1929 /* Initialize and populate the iocb list per host. */
1930 INIT_LIST_HEAD(&phba->lpfc_iocb_list);
1931 for (i = 0; i < LPFC_IOCB_LIST_CNT; i++) {
Yoann Padioleaudd00cc42007-07-19 01:49:03 -07001932 iocbq_entry = kzalloc(sizeof(struct lpfc_iocbq), GFP_KERNEL);
dea31012005-04-17 16:05:31 -05001933 if (iocbq_entry == NULL) {
1934 printk(KERN_ERR "%s: only allocated %d iocbs of "
1935 "expected %d count. Unloading driver.\n",
1936 __FUNCTION__, i, LPFC_IOCB_LIST_CNT);
1937 error = -ENOMEM;
1938 goto out_free_iocbq;
1939 }
1940
James Bottomley604a3e32005-10-29 10:28:33 -05001941 iotag = lpfc_sli_next_iotag(phba, iocbq_entry);
1942 if (iotag == 0) {
1943 kfree (iocbq_entry);
1944 printk(KERN_ERR "%s: failed to allocate IOTAG. "
1945 "Unloading driver.\n",
1946 __FUNCTION__);
1947 error = -ENOMEM;
1948 goto out_free_iocbq;
1949 }
James Smart2e0fef82007-06-17 19:56:36 -05001950
1951 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05001952 list_add(&iocbq_entry->list, &phba->lpfc_iocb_list);
1953 phba->total_iocbq_bufs++;
James Smart2e0fef82007-06-17 19:56:36 -05001954 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05001955 }
1956
1957 /* Initialize HBA structure */
1958 phba->fc_edtov = FF_DEF_EDTOV;
1959 phba->fc_ratov = FF_DEF_RATOV;
1960 phba->fc_altov = FF_DEF_ALTOV;
1961 phba->fc_arbtov = FF_DEF_ARBTOV;
1962
1963 INIT_LIST_HEAD(&phba->work_list);
1964 phba->work_ha_mask = (HA_ERATT|HA_MBATT|HA_LATT);
1965 phba->work_ha_mask |= (HA_RXMASK << (LPFC_ELS_RING * 4));
1966
1967 /* Startup the kernel thread for this host adapter. */
1968 phba->worker_thread = kthread_run(lpfc_do_work, phba,
1969 "lpfc_worker_%d", phba->brd_no);
1970 if (IS_ERR(phba->worker_thread)) {
1971 error = PTR_ERR(phba->worker_thread);
1972 goto out_free_iocbq;
1973 }
1974
dea31012005-04-17 16:05:31 -05001975 /* Initialize the list of scsi buffers used by driver for scsi IO. */
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05001976 spin_lock_init(&phba->scsi_buf_list_lock);
dea31012005-04-17 16:05:31 -05001977 INIT_LIST_HEAD(&phba->lpfc_scsi_buf_list);
1978
James Smart92d7f7b2007-06-17 19:56:38 -05001979 /* Initialize list of fabric iocbs */
1980 INIT_LIST_HEAD(&phba->fabric_iocb_list);
1981
James Smart3de2a652007-08-02 11:09:59 -04001982 vport = lpfc_create_port(phba, phba->brd_no, &phba->pcidev->dev);
James Smart2e0fef82007-06-17 19:56:36 -05001983 if (!vport)
1984 goto out_kthread_stop;
1985
1986 shost = lpfc_shost_from_vport(vport);
James Smart2e0fef82007-06-17 19:56:36 -05001987 phba->pport = vport;
James Smart858c9f62007-06-17 19:56:39 -05001988 lpfc_debugfs_initialize(vport);
James Smart2e0fef82007-06-17 19:56:36 -05001989
James Smart92d7f7b2007-06-17 19:56:38 -05001990 pci_set_drvdata(pdev, shost);
dea31012005-04-17 16:05:31 -05001991
James Smart4ff43242006-12-02 13:34:56 -05001992 if (phba->cfg_use_msi) {
James Smart98c9ea52007-10-27 13:37:33 -04001993 retval = pci_enable_msi(phba->pcidev);
1994 if (!retval)
James Smart51ef4c22007-08-02 11:10:31 -04001995 phba->using_msi = 1;
1996 else
James Smarte8b62012007-08-02 11:10:09 -04001997 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
1998 "0452 Enable MSI failed, continuing "
1999 "with IRQ\n");
James Smart4ff43242006-12-02 13:34:56 -05002000 }
2001
James Smart98c9ea52007-10-27 13:37:33 -04002002 retval = request_irq(phba->pcidev->irq, lpfc_intr_handler, IRQF_SHARED,
James Smart2e0fef82007-06-17 19:56:36 -05002003 LPFC_DRIVER_NAME, phba);
James Smart98c9ea52007-10-27 13:37:33 -04002004 if (retval) {
dea31012005-04-17 16:05:31 -05002005 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04002006 "0451 Enable interrupt handler failed\n");
James Smart98c9ea52007-10-27 13:37:33 -04002007 error = retval;
James Smart92d7f7b2007-06-17 19:56:38 -05002008 goto out_disable_msi;
dea31012005-04-17 16:05:31 -05002009 }
dea31012005-04-17 16:05:31 -05002010
James Smart2e0fef82007-06-17 19:56:36 -05002011 phba->MBslimaddr = phba->slim_memmap_p;
2012 phba->HAregaddr = phba->ctrl_regs_memmap_p + HA_REG_OFFSET;
2013 phba->CAregaddr = phba->ctrl_regs_memmap_p + CA_REG_OFFSET;
2014 phba->HSregaddr = phba->ctrl_regs_memmap_p + HS_REG_OFFSET;
2015 phba->HCregaddr = phba->ctrl_regs_memmap_p + HC_REG_OFFSET;
2016
James Smart98c9ea52007-10-27 13:37:33 -04002017 if (lpfc_alloc_sysfs_attr(vport)) {
2018 error = -ENOMEM;
dea31012005-04-17 16:05:31 -05002019 goto out_free_irq;
James Smart98c9ea52007-10-27 13:37:33 -04002020 }
dea31012005-04-17 16:05:31 -05002021
James Smart98c9ea52007-10-27 13:37:33 -04002022 if (lpfc_sli_hba_setup(phba)) {
2023 error = -ENODEV;
James Smart858c9f62007-06-17 19:56:39 -05002024 goto out_remove_device;
James Smart98c9ea52007-10-27 13:37:33 -04002025 }
James Smart858c9f62007-06-17 19:56:39 -05002026
2027 /*
2028 * hba setup may have changed the hba_queue_depth so we need to adjust
2029 * the value of can_queue.
2030 */
2031 shost->can_queue = phba->cfg_hba_queue_depth - 10;
2032
2033 lpfc_host_attrib_init(shost);
2034
James Smart2e0fef82007-06-17 19:56:36 -05002035 if (phba->cfg_poll & DISABLE_FCP_RING_INT) {
2036 spin_lock_irq(shost->host_lock);
2037 lpfc_poll_start_timer(phba);
2038 spin_unlock_irq(shost->host_lock);
2039 }
James Smart8f6d98d2006-08-01 07:34:00 -04002040
James Smart858c9f62007-06-17 19:56:39 -05002041 scsi_scan_host(shost);
dea31012005-04-17 16:05:31 -05002042
dea31012005-04-17 16:05:31 -05002043 return 0;
2044
James Smart858c9f62007-06-17 19:56:39 -05002045out_remove_device:
2046 lpfc_free_sysfs_attr(vport);
2047 spin_lock_irq(shost->host_lock);
James Smart51ef4c22007-08-02 11:10:31 -04002048 vport->load_flag |= FC_UNLOADING;
James Smart858c9f62007-06-17 19:56:39 -05002049 spin_unlock_irq(shost->host_lock);
dea31012005-04-17 16:05:31 -05002050out_free_irq:
James Smart92d7f7b2007-06-17 19:56:38 -05002051 lpfc_stop_phba_timers(phba);
James Smart2e0fef82007-06-17 19:56:36 -05002052 phba->pport->work_port_events = 0;
dea31012005-04-17 16:05:31 -05002053 free_irq(phba->pcidev->irq, phba);
James Smart92d7f7b2007-06-17 19:56:38 -05002054out_disable_msi:
James Smart51ef4c22007-08-02 11:10:31 -04002055 if (phba->using_msi)
2056 pci_disable_msi(phba->pcidev);
James Smart2e0fef82007-06-17 19:56:36 -05002057 destroy_port(vport);
dea31012005-04-17 16:05:31 -05002058out_kthread_stop:
2059 kthread_stop(phba->worker_thread);
2060out_free_iocbq:
2061 list_for_each_entry_safe(iocbq_entry, iocbq_next,
2062 &phba->lpfc_iocb_list, list) {
dea31012005-04-17 16:05:31 -05002063 kfree(iocbq_entry);
2064 phba->total_iocbq_bufs--;
dea31012005-04-17 16:05:31 -05002065 }
2066 lpfc_mem_free(phba);
James Smarted957682007-06-17 19:56:37 -05002067out_free_hbqslimp:
2068 dma_free_coherent(&pdev->dev, lpfc_sli_hbq_size(), phba->hbqslimp.virt,
2069 phba->hbqslimp.phys);
dea31012005-04-17 16:05:31 -05002070out_free_slim:
2071 dma_free_coherent(&pdev->dev, SLI2_SLIM_SIZE, phba->slim2p,
2072 phba->slim2p_mapping);
2073out_iounmap:
2074 iounmap(phba->ctrl_regs_memmap_p);
Jamie Wellnitz901a9202006-02-28 19:25:19 -05002075out_iounmap_slim:
dea31012005-04-17 16:05:31 -05002076 iounmap(phba->slim_memmap_p);
2077out_idr_remove:
2078 idr_remove(&lpfc_hba_index, phba->brd_no);
James Smart2e0fef82007-06-17 19:56:36 -05002079out_free_phba:
2080 kfree(phba);
dea31012005-04-17 16:05:31 -05002081out_release_regions:
2082 pci_release_regions(pdev);
2083out_disable_device:
2084 pci_disable_device(pdev);
2085out:
James Smartdefbcf12006-04-16 22:26:50 -04002086 pci_set_drvdata(pdev, NULL);
James Smart858c9f62007-06-17 19:56:39 -05002087 if (shost)
2088 scsi_host_put(shost);
dea31012005-04-17 16:05:31 -05002089 return error;
2090}
2091
2092static void __devexit
2093lpfc_pci_remove_one(struct pci_dev *pdev)
2094{
James Smart2e0fef82007-06-17 19:56:36 -05002095 struct Scsi_Host *shost = pci_get_drvdata(pdev);
2096 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
2097 struct lpfc_hba *phba = vport->phba;
James Smart549e55c2007-08-02 11:09:51 -04002098 spin_lock_irq(&phba->hbalock);
James Smart51ef4c22007-08-02 11:10:31 -04002099 vport->load_flag |= FC_UNLOADING;
James Smart549e55c2007-08-02 11:09:51 -04002100 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05002101
James Smart858c9f62007-06-17 19:56:39 -05002102 kfree(vport->vname);
2103 lpfc_free_sysfs_attr(vport);
2104
2105 fc_remove_host(shost);
2106 scsi_remove_host(shost);
James Smart87af33f2007-10-27 13:37:43 -04002107 lpfc_cleanup(vport);
2108
James Smart2e0fef82007-06-17 19:56:36 -05002109 /*
2110 * Bring down the SLI Layer. This step disable all interrupts,
2111 * clears the rings, discards all mailbox commands, and resets
2112 * the HBA.
2113 */
2114 lpfc_sli_hba_down(phba);
2115 lpfc_sli_brdrestart(phba);
2116
James Smart92d7f7b2007-06-17 19:56:38 -05002117 lpfc_stop_phba_timers(phba);
James Smart858c9f62007-06-17 19:56:39 -05002118 spin_lock_irq(&phba->hbalock);
2119 list_del_init(&vport->listentry);
2120 spin_unlock_irq(&phba->hbalock);
2121
James Smart858c9f62007-06-17 19:56:39 -05002122 lpfc_debugfs_terminate(vport);
James Smart2e0fef82007-06-17 19:56:36 -05002123
2124 kthread_stop(phba->worker_thread);
2125
2126 /* Release the irq reservation */
2127 free_irq(phba->pcidev->irq, phba);
James Smart51ef4c22007-08-02 11:10:31 -04002128 if (phba->using_msi)
2129 pci_disable_msi(phba->pcidev);
dea31012005-04-17 16:05:31 -05002130
2131 pci_set_drvdata(pdev, NULL);
James Smart858c9f62007-06-17 19:56:39 -05002132 scsi_host_put(shost);
James Smart2e0fef82007-06-17 19:56:36 -05002133
2134 /*
2135 * Call scsi_free before mem_free since scsi bufs are released to their
2136 * corresponding pools here.
2137 */
2138 lpfc_scsi_free(phba);
2139 lpfc_mem_free(phba);
2140
James Smarted957682007-06-17 19:56:37 -05002141 dma_free_coherent(&pdev->dev, lpfc_sli_hbq_size(), phba->hbqslimp.virt,
2142 phba->hbqslimp.phys);
2143
James Smart2e0fef82007-06-17 19:56:36 -05002144 /* Free resources associated with SLI2 interface */
2145 dma_free_coherent(&pdev->dev, SLI2_SLIM_SIZE,
2146 phba->slim2p, phba->slim2p_mapping);
2147
2148 /* unmap adapter SLIM and Control Registers */
2149 iounmap(phba->ctrl_regs_memmap_p);
2150 iounmap(phba->slim_memmap_p);
2151
2152 idr_remove(&lpfc_hba_index, phba->brd_no);
2153
2154 kfree(phba);
2155
2156 pci_release_regions(pdev);
2157 pci_disable_device(pdev);
dea31012005-04-17 16:05:31 -05002158}
2159
Linas Vepstas8d63f372007-02-14 14:28:36 -06002160/**
2161 * lpfc_io_error_detected - called when PCI error is detected
2162 * @pdev: Pointer to PCI device
2163 * @state: The current pci conneection state
2164 *
2165 * This function is called after a PCI bus error affecting
2166 * this device has been detected.
2167 */
2168static pci_ers_result_t lpfc_io_error_detected(struct pci_dev *pdev,
2169 pci_channel_state_t state)
2170{
James Smart51ef4c22007-08-02 11:10:31 -04002171 struct Scsi_Host *shost = pci_get_drvdata(pdev);
2172 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
Linas Vepstas8d63f372007-02-14 14:28:36 -06002173 struct lpfc_sli *psli = &phba->sli;
2174 struct lpfc_sli_ring *pring;
2175
Linas Vepstas5daa49e2007-03-08 16:19:11 -06002176 if (state == pci_channel_io_perm_failure)
Linas Vepstas8d63f372007-02-14 14:28:36 -06002177 return PCI_ERS_RESULT_DISCONNECT;
Linas Vepstas5daa49e2007-03-08 16:19:11 -06002178
Linas Vepstas8d63f372007-02-14 14:28:36 -06002179 pci_disable_device(pdev);
2180 /*
2181 * There may be I/Os dropped by the firmware.
2182 * Error iocb (I/O) on txcmplq and let the SCSI layer
2183 * retry it after re-establishing link.
2184 */
2185 pring = &psli->ring[psli->fcp_ring];
2186 lpfc_sli_abort_iocb_ring(phba, pring);
2187
James Smart51ef4c22007-08-02 11:10:31 -04002188 /* Release the irq reservation */
2189 free_irq(phba->pcidev->irq, phba);
2190 if (phba->using_msi)
2191 pci_disable_msi(phba->pcidev);
2192
Linas Vepstas8d63f372007-02-14 14:28:36 -06002193 /* Request a slot reset. */
2194 return PCI_ERS_RESULT_NEED_RESET;
2195}
2196
2197/**
2198 * lpfc_io_slot_reset - called after the pci bus has been reset.
2199 * @pdev: Pointer to PCI device
2200 *
2201 * Restart the card from scratch, as if from a cold-boot.
2202 */
2203static pci_ers_result_t lpfc_io_slot_reset(struct pci_dev *pdev)
2204{
James Smart51ef4c22007-08-02 11:10:31 -04002205 struct Scsi_Host *shost = pci_get_drvdata(pdev);
2206 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
Linas Vepstas8d63f372007-02-14 14:28:36 -06002207 struct lpfc_sli *psli = &phba->sli;
2208 int bars = pci_select_bars(pdev, IORESOURCE_MEM);
2209
2210 dev_printk(KERN_INFO, &pdev->dev, "recovering from a slot reset.\n");
2211 if (pci_enable_device_bars(pdev, bars)) {
2212 printk(KERN_ERR "lpfc: Cannot re-enable "
2213 "PCI device after reset.\n");
2214 return PCI_ERS_RESULT_DISCONNECT;
2215 }
2216
2217 pci_set_master(pdev);
2218
2219 /* Re-establishing Link */
James Smart51ef4c22007-08-02 11:10:31 -04002220 spin_lock_irq(shost->host_lock);
James Smart92d7f7b2007-06-17 19:56:38 -05002221 phba->pport->fc_flag |= FC_ESTABLISH_LINK;
James Smart51ef4c22007-08-02 11:10:31 -04002222 spin_unlock_irq(shost->host_lock);
Linas Vepstas8d63f372007-02-14 14:28:36 -06002223
James Smart92d7f7b2007-06-17 19:56:38 -05002224 spin_lock_irq(&phba->hbalock);
Linas Vepstas8d63f372007-02-14 14:28:36 -06002225 psli->sli_flag &= ~LPFC_SLI2_ACTIVE;
James Smart92d7f7b2007-06-17 19:56:38 -05002226 spin_unlock_irq(&phba->hbalock);
Linas Vepstas8d63f372007-02-14 14:28:36 -06002227
2228
2229 /* Take device offline; this will perform cleanup */
2230 lpfc_offline(phba);
2231 lpfc_sli_brdrestart(phba);
2232
2233 return PCI_ERS_RESULT_RECOVERED;
2234}
2235
2236/**
2237 * lpfc_io_resume - called when traffic can start flowing again.
2238 * @pdev: Pointer to PCI device
2239 *
2240 * This callback is called when the error recovery driver tells us that
2241 * its OK to resume normal operation.
2242 */
2243static void lpfc_io_resume(struct pci_dev *pdev)
2244{
James Smart51ef4c22007-08-02 11:10:31 -04002245 struct Scsi_Host *shost = pci_get_drvdata(pdev);
2246 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
Linas Vepstas8d63f372007-02-14 14:28:36 -06002247
2248 if (lpfc_online(phba) == 0) {
2249 mod_timer(&phba->fc_estabtmo, jiffies + HZ * 60);
2250 }
2251}
2252
dea31012005-04-17 16:05:31 -05002253static struct pci_device_id lpfc_id_table[] = {
2254 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_VIPER,
2255 PCI_ANY_ID, PCI_ANY_ID, },
James.Smart@Emulex.Com06325e72005-06-25 10:34:22 -04002256 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_FIREFLY,
2257 PCI_ANY_ID, PCI_ANY_ID, },
dea31012005-04-17 16:05:31 -05002258 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_THOR,
2259 PCI_ANY_ID, PCI_ANY_ID, },
2260 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_PEGASUS,
2261 PCI_ANY_ID, PCI_ANY_ID, },
2262 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_CENTAUR,
2263 PCI_ANY_ID, PCI_ANY_ID, },
2264 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_DRAGONFLY,
2265 PCI_ANY_ID, PCI_ANY_ID, },
2266 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_SUPERFLY,
2267 PCI_ANY_ID, PCI_ANY_ID, },
2268 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_RFLY,
2269 PCI_ANY_ID, PCI_ANY_ID, },
2270 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_PFLY,
2271 PCI_ANY_ID, PCI_ANY_ID, },
James.Smart@Emulex.Come4adb202005-11-28 11:42:12 -05002272 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_NEPTUNE,
2273 PCI_ANY_ID, PCI_ANY_ID, },
2274 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_NEPTUNE_SCSP,
2275 PCI_ANY_ID, PCI_ANY_ID, },
2276 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_NEPTUNE_DCSP,
2277 PCI_ANY_ID, PCI_ANY_ID, },
dea31012005-04-17 16:05:31 -05002278 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_HELIOS,
2279 PCI_ANY_ID, PCI_ANY_ID, },
James.Smart@Emulex.Come4adb202005-11-28 11:42:12 -05002280 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_HELIOS_SCSP,
2281 PCI_ANY_ID, PCI_ANY_ID, },
2282 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_HELIOS_DCSP,
2283 PCI_ANY_ID, PCI_ANY_ID, },
dea31012005-04-17 16:05:31 -05002284 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_BMID,
2285 PCI_ANY_ID, PCI_ANY_ID, },
2286 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_BSMB,
2287 PCI_ANY_ID, PCI_ANY_ID, },
2288 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_ZEPHYR,
2289 PCI_ANY_ID, PCI_ANY_ID, },
James.Smart@Emulex.Come4adb202005-11-28 11:42:12 -05002290 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_ZEPHYR_SCSP,
2291 PCI_ANY_ID, PCI_ANY_ID, },
2292 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_ZEPHYR_DCSP,
2293 PCI_ANY_ID, PCI_ANY_ID, },
dea31012005-04-17 16:05:31 -05002294 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_ZMID,
2295 PCI_ANY_ID, PCI_ANY_ID, },
2296 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_ZSMB,
2297 PCI_ANY_ID, PCI_ANY_ID, },
2298 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_TFLY,
2299 PCI_ANY_ID, PCI_ANY_ID, },
2300 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_LP101,
2301 PCI_ANY_ID, PCI_ANY_ID, },
2302 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_LP10000S,
2303 PCI_ANY_ID, PCI_ANY_ID, },
James.Smart@Emulex.Come4adb202005-11-28 11:42:12 -05002304 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_LP11000S,
2305 PCI_ANY_ID, PCI_ANY_ID, },
2306 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_LPE11000S,
2307 PCI_ANY_ID, PCI_ANY_ID, },
James Smartb87eab32007-04-25 09:53:28 -04002308 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_SAT,
2309 PCI_ANY_ID, PCI_ANY_ID, },
2310 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_SAT_MID,
2311 PCI_ANY_ID, PCI_ANY_ID, },
2312 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_SAT_SMB,
2313 PCI_ANY_ID, PCI_ANY_ID, },
2314 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_SAT_DCSP,
2315 PCI_ANY_ID, PCI_ANY_ID, },
2316 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_SAT_SCSP,
2317 PCI_ANY_ID, PCI_ANY_ID, },
2318 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_SAT_S,
2319 PCI_ANY_ID, PCI_ANY_ID, },
dea31012005-04-17 16:05:31 -05002320 { 0 }
2321};
2322
2323MODULE_DEVICE_TABLE(pci, lpfc_id_table);
2324
Linas Vepstas8d63f372007-02-14 14:28:36 -06002325static struct pci_error_handlers lpfc_err_handler = {
2326 .error_detected = lpfc_io_error_detected,
2327 .slot_reset = lpfc_io_slot_reset,
2328 .resume = lpfc_io_resume,
2329};
2330
dea31012005-04-17 16:05:31 -05002331static struct pci_driver lpfc_driver = {
2332 .name = LPFC_DRIVER_NAME,
2333 .id_table = lpfc_id_table,
2334 .probe = lpfc_pci_probe_one,
2335 .remove = __devexit_p(lpfc_pci_remove_one),
James Smart2e0fef82007-06-17 19:56:36 -05002336 .err_handler = &lpfc_err_handler,
dea31012005-04-17 16:05:31 -05002337};
2338
2339static int __init
2340lpfc_init(void)
2341{
2342 int error = 0;
2343
2344 printk(LPFC_MODULE_DESC "\n");
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -04002345 printk(LPFC_COPYRIGHT "\n");
dea31012005-04-17 16:05:31 -05002346
James Smart7ee5d432007-10-27 13:37:17 -04002347 if (lpfc_enable_npiv) {
2348 lpfc_transport_functions.vport_create = lpfc_vport_create;
2349 lpfc_transport_functions.vport_delete = lpfc_vport_delete;
2350 }
dea31012005-04-17 16:05:31 -05002351 lpfc_transport_template =
2352 fc_attach_transport(&lpfc_transport_functions);
James Smart7ee5d432007-10-27 13:37:17 -04002353 if (lpfc_transport_template == NULL)
dea31012005-04-17 16:05:31 -05002354 return -ENOMEM;
James Smart7ee5d432007-10-27 13:37:17 -04002355 if (lpfc_enable_npiv) {
James Smart7ee5d432007-10-27 13:37:17 -04002356 lpfc_vport_transport_template =
James Smart98c9ea52007-10-27 13:37:33 -04002357 fc_attach_transport(&lpfc_vport_transport_functions);
2358 if (lpfc_vport_transport_template == NULL) {
2359 fc_release_transport(lpfc_transport_template);
James Smart7ee5d432007-10-27 13:37:17 -04002360 return -ENOMEM;
James Smart98c9ea52007-10-27 13:37:33 -04002361 }
James Smart7ee5d432007-10-27 13:37:17 -04002362 }
dea31012005-04-17 16:05:31 -05002363 error = pci_register_driver(&lpfc_driver);
James Smart92d7f7b2007-06-17 19:56:38 -05002364 if (error) {
dea31012005-04-17 16:05:31 -05002365 fc_release_transport(lpfc_transport_template);
James Smart92d7f7b2007-06-17 19:56:38 -05002366 fc_release_transport(lpfc_vport_transport_template);
2367 }
dea31012005-04-17 16:05:31 -05002368
2369 return error;
2370}
2371
2372static void __exit
2373lpfc_exit(void)
2374{
2375 pci_unregister_driver(&lpfc_driver);
2376 fc_release_transport(lpfc_transport_template);
James Smart7ee5d432007-10-27 13:37:17 -04002377 if (lpfc_enable_npiv)
2378 fc_release_transport(lpfc_vport_transport_template);
dea31012005-04-17 16:05:31 -05002379}
2380
2381module_init(lpfc_init);
2382module_exit(lpfc_exit);
2383MODULE_LICENSE("GPL");
2384MODULE_DESCRIPTION(LPFC_MODULE_DESC);
2385MODULE_AUTHOR("Emulex Corporation - tech.support@emulex.com");
2386MODULE_VERSION("0:" LPFC_DRIVER_VERSION);