[SCSI] lpfc 8.2.8 v2 : Add sysfs control of target queue depth handling
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / scsi / lpfc / lpfc_init.c
CommitLineData
dea3101e
JB
1/*******************************************************************
2 * This file is part of the Emulex Linux Device Driver for *
c44ce173 3 * Fibre Channel Host Bus Adapters. *
e47c9093 4 * Copyright (C) 2004-2008 Emulex. All rights reserved. *
c44ce173 5 * EMULEX and SLI are trademarks of Emulex. *
dea3101e 6 * www.emulex.com *
c44ce173 7 * Portions Copyright (C) 2004-2005 Christoph Hellwig *
dea3101e
JB
8 * *
9 * This program is free software; you can redistribute it and/or *
c44ce173
JSEC
10 * 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. *
dea3101e
JB
20 *******************************************************************/
21
dea3101e
JB
22#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>
92d7f7b0 30#include <linux/ctype.h>
dea3101e 31
91886523 32#include <scsi/scsi.h>
dea3101e
JB
33#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"
92d7f7b0 44#include "lpfc_vport.h"
dea3101e
JB
45#include "lpfc_version.h"
46
74b72a59 47static int lpfc_parse_vpd(struct lpfc_hba *, uint8_t *, int);
dea3101e
JB
48static 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;
92d7f7b0 52static struct scsi_transport_template *lpfc_vport_transport_template = NULL;
dea3101e
JB
53static DEFINE_IDR(lpfc_hba_index);
54
e59058c4
JS
55/**
56 * lpfc_config_port_prep: Perform lpfc initialization prior to config port.
57 * @phba: pointer to lpfc hba data structure.
58 *
59 * This routine will do LPFC initialization prior to issuing the CONFIG_PORT
60 * mailbox command. It retrieves the revision information from the HBA and
61 * collects the Vital Product Data (VPD) about the HBA for preparing the
62 * configuration of the HBA.
63 *
64 * Return codes:
65 * 0 - success.
66 * -ERESTART - requests the SLI layer to reset the HBA and try again.
67 * Any other value - indicates an error.
68 **/
dea3101e 69int
2e0fef85 70lpfc_config_port_prep(struct lpfc_hba *phba)
dea3101e
JB
71{
72 lpfc_vpd_t *vp = &phba->vpd;
73 int i = 0, rc;
74 LPFC_MBOXQ_t *pmb;
75 MAILBOX_t *mb;
76 char *lpfc_vpd_data = NULL;
77 uint16_t offset = 0;
78 static char licensed[56] =
79 "key unlock for use with gnu public licensed code only\0";
65a29c16 80 static int init_key = 1;
dea3101e
JB
81
82 pmb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
83 if (!pmb) {
2e0fef85 84 phba->link_state = LPFC_HBA_ERROR;
dea3101e
JB
85 return -ENOMEM;
86 }
87
88 mb = &pmb->mb;
2e0fef85 89 phba->link_state = LPFC_INIT_MBX_CMDS;
dea3101e
JB
90
91 if (lpfc_is_LC_HBA(phba->pcidev->device)) {
65a29c16
JS
92 if (init_key) {
93 uint32_t *ptext = (uint32_t *) licensed;
dea3101e 94
65a29c16
JS
95 for (i = 0; i < 56; i += sizeof (uint32_t), ptext++)
96 *ptext = cpu_to_be32(*ptext);
97 init_key = 0;
98 }
dea3101e
JB
99
100 lpfc_read_nv(phba, pmb);
101 memset((char*)mb->un.varRDnvp.rsvd3, 0,
102 sizeof (mb->un.varRDnvp.rsvd3));
103 memcpy((char*)mb->un.varRDnvp.rsvd3, licensed,
104 sizeof (licensed));
105
106 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
107
108 if (rc != MBX_SUCCESS) {
ed957684 109 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX,
e8b62011 110 "0324 Config Port initialization "
dea3101e
JB
111 "error, mbxCmd x%x READ_NVPARM, "
112 "mbxStatus x%x\n",
dea3101e
JB
113 mb->mbxCommand, mb->mbxStatus);
114 mempool_free(pmb, phba->mbox_mem_pool);
115 return -ERESTART;
116 }
117 memcpy(phba->wwnn, (char *)mb->un.varRDnvp.nodename,
2e0fef85
JS
118 sizeof(phba->wwnn));
119 memcpy(phba->wwpn, (char *)mb->un.varRDnvp.portname,
120 sizeof(phba->wwpn));
dea3101e
JB
121 }
122
92d7f7b0
JS
123 phba->sli3_options = 0x0;
124
dea3101e
JB
125 /* Setup and issue mailbox READ REV command */
126 lpfc_read_rev(phba, pmb);
127 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
128 if (rc != MBX_SUCCESS) {
ed957684 129 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
e8b62011 130 "0439 Adapter failed to init, mbxCmd x%x "
dea3101e 131 "READ_REV, mbxStatus x%x\n",
dea3101e
JB
132 mb->mbxCommand, mb->mbxStatus);
133 mempool_free( pmb, phba->mbox_mem_pool);
134 return -ERESTART;
135 }
136
92d7f7b0 137
1de933f3
JSEC
138 /*
139 * The value of rr must be 1 since the driver set the cv field to 1.
140 * This setting requires the FW to set all revision fields.
dea3101e 141 */
1de933f3 142 if (mb->un.varRdRev.rr == 0) {
dea3101e 143 vp->rev.rBit = 0;
1de933f3 144 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
e8b62011
JS
145 "0440 Adapter failed to init, READ_REV has "
146 "missing revision information.\n");
dea3101e
JB
147 mempool_free(pmb, phba->mbox_mem_pool);
148 return -ERESTART;
dea3101e
JB
149 }
150
495a714c
JS
151 if (phba->sli_rev == 3 && !mb->un.varRdRev.v3rsp) {
152 mempool_free(pmb, phba->mbox_mem_pool);
ed957684 153 return -EINVAL;
495a714c 154 }
ed957684 155
dea3101e 156 /* Save information as VPD data */
1de933f3 157 vp->rev.rBit = 1;
92d7f7b0 158 memcpy(&vp->sli3Feat, &mb->un.varRdRev.sli3Feat, sizeof(uint32_t));
1de933f3
JSEC
159 vp->rev.sli1FwRev = mb->un.varRdRev.sli1FwRev;
160 memcpy(vp->rev.sli1FwName, (char*) mb->un.varRdRev.sli1FwName, 16);
161 vp->rev.sli2FwRev = mb->un.varRdRev.sli2FwRev;
162 memcpy(vp->rev.sli2FwName, (char *) mb->un.varRdRev.sli2FwName, 16);
dea3101e
JB
163 vp->rev.biuRev = mb->un.varRdRev.biuRev;
164 vp->rev.smRev = mb->un.varRdRev.smRev;
165 vp->rev.smFwRev = mb->un.varRdRev.un.smFwRev;
166 vp->rev.endecRev = mb->un.varRdRev.endecRev;
167 vp->rev.fcphHigh = mb->un.varRdRev.fcphHigh;
168 vp->rev.fcphLow = mb->un.varRdRev.fcphLow;
169 vp->rev.feaLevelHigh = mb->un.varRdRev.feaLevelHigh;
170 vp->rev.feaLevelLow = mb->un.varRdRev.feaLevelLow;
171 vp->rev.postKernRev = mb->un.varRdRev.postKernRev;
172 vp->rev.opFwRev = mb->un.varRdRev.opFwRev;
173
92d7f7b0
JS
174 /* If the sli feature level is less then 9, we must
175 * tear down all RPIs and VPIs on link down if NPIV
176 * is enabled.
177 */
178 if (vp->rev.feaLevelHigh < 9)
179 phba->sli3_options |= LPFC_SLI3_VPORT_TEARDOWN;
180
dea3101e
JB
181 if (lpfc_is_LC_HBA(phba->pcidev->device))
182 memcpy(phba->RandomData, (char *)&mb->un.varWords[24],
183 sizeof (phba->RandomData));
184
dea3101e 185 /* Get adapter VPD information */
dea3101e
JB
186 lpfc_vpd_data = kmalloc(DMP_VPD_SIZE, GFP_KERNEL);
187 if (!lpfc_vpd_data)
d7c255b2 188 goto out_free_mbox;
dea3101e
JB
189
190 do {
191 lpfc_dump_mem(phba, pmb, offset);
192 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
193
194 if (rc != MBX_SUCCESS) {
195 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
e8b62011 196 "0441 VPD not present on adapter, "
dea3101e 197 "mbxCmd x%x DUMP VPD, mbxStatus x%x\n",
dea3101e 198 mb->mbxCommand, mb->mbxStatus);
74b72a59 199 mb->un.varDmp.word_cnt = 0;
dea3101e 200 }
74b72a59
JW
201 if (mb->un.varDmp.word_cnt > DMP_VPD_SIZE - offset)
202 mb->un.varDmp.word_cnt = DMP_VPD_SIZE - offset;
d7c255b2
JS
203 lpfc_sli_pcimem_bcopy(((uint8_t *)mb) + DMP_RSP_OFFSET,
204 lpfc_vpd_data + offset,
92d7f7b0 205 mb->un.varDmp.word_cnt);
dea3101e 206 offset += mb->un.varDmp.word_cnt;
74b72a59
JW
207 } while (mb->un.varDmp.word_cnt && offset < DMP_VPD_SIZE);
208 lpfc_parse_vpd(phba, lpfc_vpd_data, offset);
dea3101e
JB
209
210 kfree(lpfc_vpd_data);
dea3101e
JB
211out_free_mbox:
212 mempool_free(pmb, phba->mbox_mem_pool);
213 return 0;
214}
215
e59058c4
JS
216/**
217 * lpfc_config_async_cmpl: Completion handler for config async event mbox cmd.
218 * @phba: pointer to lpfc hba data structure.
219 * @pmboxq: pointer to the driver internal queue element for mailbox command.
220 *
221 * This is the completion handler for driver's configuring asynchronous event
222 * mailbox command to the device. If the mailbox command returns successfully,
223 * it will set internal async event support flag to 1; otherwise, it will
224 * set internal async event support flag to 0.
225 **/
57127f15
JS
226static void
227lpfc_config_async_cmpl(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmboxq)
228{
229 if (pmboxq->mb.mbxStatus == MBX_SUCCESS)
230 phba->temp_sensor_support = 1;
231 else
232 phba->temp_sensor_support = 0;
233 mempool_free(pmboxq, phba->mbox_mem_pool);
234 return;
235}
236
e59058c4
JS
237/**
238 * lpfc_config_port_post: Perform lpfc initialization after config port.
239 * @phba: pointer to lpfc hba data structure.
240 *
241 * This routine will do LPFC initialization after the CONFIG_PORT mailbox
242 * command call. It performs all internal resource and state setups on the
243 * port: post IOCB buffers, enable appropriate host interrupt attentions,
244 * ELS ring timers, etc.
245 *
246 * Return codes
247 * 0 - success.
248 * Any other value - error.
249 **/
dea3101e 250int
2e0fef85 251lpfc_config_port_post(struct lpfc_hba *phba)
dea3101e 252{
2e0fef85 253 struct lpfc_vport *vport = phba->pport;
dea3101e
JB
254 LPFC_MBOXQ_t *pmb;
255 MAILBOX_t *mb;
256 struct lpfc_dmabuf *mp;
257 struct lpfc_sli *psli = &phba->sli;
258 uint32_t status, timeout;
2e0fef85
JS
259 int i, j;
260 int rc;
dea3101e 261
7af67051
JS
262 spin_lock_irq(&phba->hbalock);
263 /*
264 * If the Config port completed correctly the HBA is not
265 * over heated any more.
266 */
267 if (phba->over_temp_state == HBA_OVER_TEMP)
268 phba->over_temp_state = HBA_NORMAL_TEMP;
269 spin_unlock_irq(&phba->hbalock);
270
dea3101e
JB
271 pmb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
272 if (!pmb) {
2e0fef85 273 phba->link_state = LPFC_HBA_ERROR;
dea3101e
JB
274 return -ENOMEM;
275 }
276 mb = &pmb->mb;
277
dea3101e 278 /* Get login parameters for NID. */
92d7f7b0 279 lpfc_read_sparam(phba, pmb, 0);
ed957684 280 pmb->vport = vport;
dea3101e 281 if (lpfc_sli_issue_mbox(phba, pmb, MBX_POLL) != MBX_SUCCESS) {
ed957684 282 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
e8b62011 283 "0448 Adapter failed init, mbxCmd x%x "
dea3101e 284 "READ_SPARM mbxStatus x%x\n",
dea3101e 285 mb->mbxCommand, mb->mbxStatus);
2e0fef85 286 phba->link_state = LPFC_HBA_ERROR;
dea3101e
JB
287 mp = (struct lpfc_dmabuf *) pmb->context1;
288 mempool_free( pmb, phba->mbox_mem_pool);
289 lpfc_mbuf_free(phba, mp->virt, mp->phys);
290 kfree(mp);
291 return -EIO;
292 }
293
294 mp = (struct lpfc_dmabuf *) pmb->context1;
295
2e0fef85 296 memcpy(&vport->fc_sparam, mp->virt, sizeof (struct serv_parm));
dea3101e
JB
297 lpfc_mbuf_free(phba, mp->virt, mp->phys);
298 kfree(mp);
299 pmb->context1 = NULL;
300
a12e07bc 301 if (phba->cfg_soft_wwnn)
2e0fef85
JS
302 u64_to_wwn(phba->cfg_soft_wwnn,
303 vport->fc_sparam.nodeName.u.wwn);
c3f28afa 304 if (phba->cfg_soft_wwpn)
2e0fef85
JS
305 u64_to_wwn(phba->cfg_soft_wwpn,
306 vport->fc_sparam.portName.u.wwn);
307 memcpy(&vport->fc_nodename, &vport->fc_sparam.nodeName,
dea3101e 308 sizeof (struct lpfc_name));
2e0fef85 309 memcpy(&vport->fc_portname, &vport->fc_sparam.portName,
dea3101e
JB
310 sizeof (struct lpfc_name));
311 /* If no serial number in VPD data, use low 6 bytes of WWNN */
312 /* This should be consolidated into parse_vpd ? - mr */
313 if (phba->SerialNumber[0] == 0) {
314 uint8_t *outptr;
315
2e0fef85 316 outptr = &vport->fc_nodename.u.s.IEEE[0];
dea3101e
JB
317 for (i = 0; i < 12; i++) {
318 status = *outptr++;
319 j = ((status & 0xf0) >> 4);
320 if (j <= 9)
321 phba->SerialNumber[i] =
322 (char)((uint8_t) 0x30 + (uint8_t) j);
323 else
324 phba->SerialNumber[i] =
325 (char)((uint8_t) 0x61 + (uint8_t) (j - 10));
326 i++;
327 j = (status & 0xf);
328 if (j <= 9)
329 phba->SerialNumber[i] =
330 (char)((uint8_t) 0x30 + (uint8_t) j);
331 else
332 phba->SerialNumber[i] =
333 (char)((uint8_t) 0x61 + (uint8_t) (j - 10));
334 }
335 }
336
dea3101e 337 lpfc_read_config(phba, pmb);
ed957684 338 pmb->vport = vport;
dea3101e 339 if (lpfc_sli_issue_mbox(phba, pmb, MBX_POLL) != MBX_SUCCESS) {
ed957684 340 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
e8b62011 341 "0453 Adapter failed to init, mbxCmd x%x "
dea3101e 342 "READ_CONFIG, mbxStatus x%x\n",
dea3101e 343 mb->mbxCommand, mb->mbxStatus);
2e0fef85 344 phba->link_state = LPFC_HBA_ERROR;
dea3101e
JB
345 mempool_free( pmb, phba->mbox_mem_pool);
346 return -EIO;
347 }
348
349 /* Reset the DFT_HBA_Q_DEPTH to the max xri */
350 if (phba->cfg_hba_queue_depth > (mb->un.varRdConfig.max_xri+1))
351 phba->cfg_hba_queue_depth =
352 mb->un.varRdConfig.max_xri + 1;
353
354 phba->lmt = mb->un.varRdConfig.lmt;
74b72a59
JW
355
356 /* Get the default values for Model Name and Description */
357 lpfc_get_hba_model_desc(phba, phba->ModelName, phba->ModelDesc);
358
359 if ((phba->cfg_link_speed > LINK_SPEED_10G)
360 || ((phba->cfg_link_speed == LINK_SPEED_1G)
361 && !(phba->lmt & LMT_1Gb))
362 || ((phba->cfg_link_speed == LINK_SPEED_2G)
363 && !(phba->lmt & LMT_2Gb))
364 || ((phba->cfg_link_speed == LINK_SPEED_4G)
365 && !(phba->lmt & LMT_4Gb))
366 || ((phba->cfg_link_speed == LINK_SPEED_8G)
367 && !(phba->lmt & LMT_8Gb))
368 || ((phba->cfg_link_speed == LINK_SPEED_10G)
369 && !(phba->lmt & LMT_10Gb))) {
370 /* Reset link speed to auto */
ed957684 371 lpfc_printf_log(phba, KERN_WARNING, LOG_LINK_EVENT,
e8b62011 372 "1302 Invalid speed for this board: "
dea3101e 373 "Reset link speed to auto: x%x\n",
dea3101e
JB
374 phba->cfg_link_speed);
375 phba->cfg_link_speed = LINK_SPEED_AUTO;
376 }
377
2e0fef85 378 phba->link_state = LPFC_LINK_DOWN;
dea3101e 379
0b727fea 380 /* Only process IOCBs on ELS ring till hba_state is READY */
a4bc3379
JS
381 if (psli->ring[psli->extra_ring].cmdringaddr)
382 psli->ring[psli->extra_ring].flag |= LPFC_STOP_IOCB_EVENT;
dea3101e
JB
383 if (psli->ring[psli->fcp_ring].cmdringaddr)
384 psli->ring[psli->fcp_ring].flag |= LPFC_STOP_IOCB_EVENT;
385 if (psli->ring[psli->next_ring].cmdringaddr)
386 psli->ring[psli->next_ring].flag |= LPFC_STOP_IOCB_EVENT;
387
388 /* Post receive buffers for desired rings */
ed957684
JS
389 if (phba->sli_rev != 3)
390 lpfc_post_rcv_buf(phba);
dea3101e 391
9399627f
JS
392 /*
393 * Configure HBA MSI-X attention conditions to messages if MSI-X mode
394 */
395 if (phba->intr_type == MSIX) {
396 rc = lpfc_config_msi(phba, pmb);
397 if (rc) {
398 mempool_free(pmb, phba->mbox_mem_pool);
399 return -EIO;
400 }
401 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
402 if (rc != MBX_SUCCESS) {
403 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX,
404 "0352 Config MSI mailbox command "
405 "failed, mbxCmd x%x, mbxStatus x%x\n",
406 pmb->mb.mbxCommand, pmb->mb.mbxStatus);
407 mempool_free(pmb, phba->mbox_mem_pool);
408 return -EIO;
409 }
410 }
411
412 /* Initialize ERATT handling flag */
413 phba->hba_flag &= ~HBA_ERATT_HANDLED;
414
dea3101e 415 /* Enable appropriate host interrupts */
2e0fef85 416 spin_lock_irq(&phba->hbalock);
dea3101e
JB
417 status = readl(phba->HCregaddr);
418 status |= HC_MBINT_ENA | HC_ERINT_ENA | HC_LAINT_ENA;
419 if (psli->num_rings > 0)
420 status |= HC_R0INT_ENA;
421 if (psli->num_rings > 1)
422 status |= HC_R1INT_ENA;
423 if (psli->num_rings > 2)
424 status |= HC_R2INT_ENA;
425 if (psli->num_rings > 3)
426 status |= HC_R3INT_ENA;
427
875fbdfe
JSEC
428 if ((phba->cfg_poll & ENABLE_FCP_RING_POLLING) &&
429 (phba->cfg_poll & DISABLE_FCP_RING_INT))
9399627f 430 status &= ~(HC_R0INT_ENA);
875fbdfe 431
dea3101e
JB
432 writel(status, phba->HCregaddr);
433 readl(phba->HCregaddr); /* flush */
2e0fef85 434 spin_unlock_irq(&phba->hbalock);
dea3101e 435
9399627f
JS
436 /* Set up ring-0 (ELS) timer */
437 timeout = phba->fc_ratov * 2;
2e0fef85 438 mod_timer(&vport->els_tmofunc, jiffies + HZ * timeout);
9399627f 439 /* Set up heart beat (HB) timer */
858c9f6c
JS
440 mod_timer(&phba->hb_tmofunc, jiffies + HZ * LPFC_HB_MBOX_INTERVAL);
441 phba->hb_outstanding = 0;
442 phba->last_completion_time = jiffies;
9399627f
JS
443 /* Set up error attention (ERATT) polling timer */
444 mod_timer(&phba->eratt_poll, jiffies + HZ * LPFC_ERATT_POLL_INTERVAL);
dea3101e
JB
445
446 lpfc_init_link(phba, pmb, phba->cfg_topology, phba->cfg_link_speed);
447 pmb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
5b8bd0c9 448 lpfc_set_loopback_flag(phba);
d7c255b2 449 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
8aee918a 450 if (rc != MBX_SUCCESS) {
ed957684 451 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
e8b62011 452 "0454 Adapter failed to init, mbxCmd x%x "
dea3101e 453 "INIT_LINK, mbxStatus x%x\n",
dea3101e
JB
454 mb->mbxCommand, mb->mbxStatus);
455
456 /* Clear all interrupt enable conditions */
457 writel(0, phba->HCregaddr);
458 readl(phba->HCregaddr); /* flush */
459 /* Clear all pending interrupts */
460 writel(0xffffffff, phba->HAregaddr);
461 readl(phba->HAregaddr); /* flush */
462
2e0fef85 463 phba->link_state = LPFC_HBA_ERROR;
8aee918a
JS
464 if (rc != MBX_BUSY)
465 mempool_free(pmb, phba->mbox_mem_pool);
dea3101e
JB
466 return -EIO;
467 }
468 /* MBOX buffer will be freed in mbox compl */
57127f15
JS
469 pmb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
470 lpfc_config_async(phba, pmb, LPFC_ELS_RING);
471 pmb->mbox_cmpl = lpfc_config_async_cmpl;
472 pmb->vport = phba->pport;
473 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
dea3101e 474
57127f15
JS
475 if ((rc != MBX_BUSY) && (rc != MBX_SUCCESS)) {
476 lpfc_printf_log(phba,
477 KERN_ERR,
478 LOG_INIT,
479 "0456 Adapter failed to issue "
480 "ASYNCEVT_ENABLE mbox status x%x \n.",
481 rc);
482 mempool_free(pmb, phba->mbox_mem_pool);
483 }
d7c255b2 484 return 0;
ce8b3ce5
JS
485}
486
e59058c4
JS
487/**
488 * lpfc_hba_down_prep: Perform lpfc uninitialization prior to HBA reset.
489 * @phba: pointer to lpfc HBA data structure.
490 *
491 * This routine will do LPFC uninitialization before the HBA is reset when
492 * bringing down the SLI Layer.
493 *
494 * Return codes
495 * 0 - success.
496 * Any other value - error.
497 **/
dea3101e 498int
2e0fef85 499lpfc_hba_down_prep(struct lpfc_hba *phba)
dea3101e 500{
1b32f6aa
JS
501 struct lpfc_vport **vports;
502 int i;
dea3101e
JB
503 /* Disable interrupts */
504 writel(0, phba->HCregaddr);
505 readl(phba->HCregaddr); /* flush */
506
1b32f6aa
JS
507 if (phba->pport->load_flag & FC_UNLOADING)
508 lpfc_cleanup_discovery_resources(phba->pport);
509 else {
510 vports = lpfc_create_vport_work_array(phba);
511 if (vports != NULL)
512 for(i = 0; i <= phba->max_vpi && vports[i] != NULL; i++)
513 lpfc_cleanup_discovery_resources(vports[i]);
514 lpfc_destroy_vport_work_array(phba, vports);
7f5f3d0d
JS
515 }
516 return 0;
dea3101e
JB
517}
518
e59058c4
JS
519/**
520 * lpfc_hba_down_post: Perform lpfc uninitialization after HBA reset.
521 * @phba: pointer to lpfc HBA data structure.
522 *
523 * This routine will do uninitialization after the HBA is reset when bring
524 * down the SLI Layer.
525 *
526 * Return codes
527 * 0 - sucess.
528 * Any other value - error.
529 **/
41415862 530int
2e0fef85 531lpfc_hba_down_post(struct lpfc_hba *phba)
41415862
JW
532{
533 struct lpfc_sli *psli = &phba->sli;
534 struct lpfc_sli_ring *pring;
535 struct lpfc_dmabuf *mp, *next_mp;
09372820
JS
536 struct lpfc_iocbq *iocb;
537 IOCB_t *cmd = NULL;
538 LIST_HEAD(completions);
41415862
JW
539 int i;
540
92d7f7b0
JS
541 if (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED)
542 lpfc_sli_hbqbuf_free_all(phba);
543 else {
544 /* Cleanup preposted buffers on the ELS ring */
545 pring = &psli->ring[LPFC_ELS_RING];
546 list_for_each_entry_safe(mp, next_mp, &pring->postbufq, list) {
547 list_del(&mp->list);
548 pring->postbufq_cnt--;
549 lpfc_mbuf_free(phba, mp->virt, mp->phys);
550 kfree(mp);
551 }
41415862
JW
552 }
553
09372820 554 spin_lock_irq(&phba->hbalock);
41415862
JW
555 for (i = 0; i < psli->num_rings; i++) {
556 pring = &psli->ring[i];
09372820
JS
557
558 /* At this point in time the HBA is either reset or DOA. Either
559 * way, nothing should be on txcmplq as it will NEVER complete.
560 */
561 list_splice_init(&pring->txcmplq, &completions);
562 pring->txcmplq_cnt = 0;
563 spin_unlock_irq(&phba->hbalock);
564
565 while (!list_empty(&completions)) {
566 iocb = list_get_first(&completions, struct lpfc_iocbq,
567 list);
568 cmd = &iocb->iocb;
569 list_del_init(&iocb->list);
570
571 if (!iocb->iocb_cmpl)
572 lpfc_sli_release_iocbq(phba, iocb);
573 else {
574 cmd->ulpStatus = IOSTAT_LOCAL_REJECT;
575 cmd->un.ulpWord[4] = IOERR_SLI_ABORTED;
576 (iocb->iocb_cmpl) (phba, iocb, iocb);
577 }
578 }
579
41415862 580 lpfc_sli_abort_iocb_ring(phba, pring);
09372820 581 spin_lock_irq(&phba->hbalock);
41415862 582 }
09372820 583 spin_unlock_irq(&phba->hbalock);
41415862
JW
584
585 return 0;
586}
587
e59058c4
JS
588/**
589 * lpfc_hb_timeout: The HBA-timer timeout handler.
590 * @ptr: unsigned long holds the pointer to lpfc hba data structure.
591 *
592 * This is the HBA-timer timeout handler registered to the lpfc driver. When
593 * this timer fires, a HBA timeout event shall be posted to the lpfc driver
594 * work-port-events bitmap and the worker thread is notified. This timeout
595 * event will be used by the worker thread to invoke the actual timeout
596 * handler routine, lpfc_hb_timeout_handler. Any periodical operations will
597 * be performed in the timeout handler and the HBA timeout event bit shall
598 * be cleared by the worker thread after it has taken the event bitmap out.
599 **/
a6ababd2 600static void
858c9f6c
JS
601lpfc_hb_timeout(unsigned long ptr)
602{
603 struct lpfc_hba *phba;
5e9d9b82 604 uint32_t tmo_posted;
858c9f6c
JS
605 unsigned long iflag;
606
607 phba = (struct lpfc_hba *)ptr;
9399627f
JS
608
609 /* Check for heart beat timeout conditions */
858c9f6c 610 spin_lock_irqsave(&phba->pport->work_port_lock, iflag);
5e9d9b82
JS
611 tmo_posted = phba->pport->work_port_events & WORKER_HB_TMO;
612 if (!tmo_posted)
858c9f6c
JS
613 phba->pport->work_port_events |= WORKER_HB_TMO;
614 spin_unlock_irqrestore(&phba->pport->work_port_lock, iflag);
615
9399627f 616 /* Tell the worker thread there is work to do */
5e9d9b82
JS
617 if (!tmo_posted)
618 lpfc_worker_wake_up(phba);
858c9f6c
JS
619 return;
620}
621
e59058c4
JS
622/**
623 * lpfc_hb_mbox_cmpl: The lpfc heart-beat mailbox command callback function.
624 * @phba: pointer to lpfc hba data structure.
625 * @pmboxq: pointer to the driver internal queue element for mailbox command.
626 *
627 * This is the callback function to the lpfc heart-beat mailbox command.
628 * If configured, the lpfc driver issues the heart-beat mailbox command to
629 * the HBA every LPFC_HB_MBOX_INTERVAL (current 5) seconds. At the time the
630 * heart-beat mailbox command is issued, the driver shall set up heart-beat
631 * timeout timer to LPFC_HB_MBOX_TIMEOUT (current 30) seconds and marks
632 * heart-beat outstanding state. Once the mailbox command comes back and
633 * no error conditions detected, the heart-beat mailbox command timer is
634 * reset to LPFC_HB_MBOX_INTERVAL seconds and the heart-beat outstanding
635 * state is cleared for the next heart-beat. If the timer expired with the
636 * heart-beat outstanding state set, the driver will put the HBA offline.
637 **/
858c9f6c
JS
638static void
639lpfc_hb_mbox_cmpl(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmboxq)
640{
641 unsigned long drvr_flag;
642
643 spin_lock_irqsave(&phba->hbalock, drvr_flag);
644 phba->hb_outstanding = 0;
645 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
646
9399627f 647 /* Check and reset heart-beat timer is necessary */
858c9f6c
JS
648 mempool_free(pmboxq, phba->mbox_mem_pool);
649 if (!(phba->pport->fc_flag & FC_OFFLINE_MODE) &&
650 !(phba->link_state == LPFC_HBA_ERROR) &&
51ef4c26 651 !(phba->pport->load_flag & FC_UNLOADING))
858c9f6c
JS
652 mod_timer(&phba->hb_tmofunc,
653 jiffies + HZ * LPFC_HB_MBOX_INTERVAL);
654 return;
655}
656
e59058c4
JS
657/**
658 * lpfc_hb_timeout_handler: The HBA-timer timeout handler.
659 * @phba: pointer to lpfc hba data structure.
660 *
661 * This is the actual HBA-timer timeout handler to be invoked by the worker
662 * thread whenever the HBA timer fired and HBA-timeout event posted. This
663 * handler performs any periodic operations needed for the device. If such
664 * periodic event has already been attended to either in the interrupt handler
665 * or by processing slow-ring or fast-ring events within the HBA-timer
666 * timeout window (LPFC_HB_MBOX_INTERVAL), this handler just simply resets
667 * the timer for the next timeout period. If lpfc heart-beat mailbox command
668 * is configured and there is no heart-beat mailbox command outstanding, a
669 * heart-beat mailbox is issued and timer set properly. Otherwise, if there
670 * has been a heart-beat mailbox command outstanding, the HBA shall be put
671 * to offline.
672 **/
858c9f6c
JS
673void
674lpfc_hb_timeout_handler(struct lpfc_hba *phba)
675{
676 LPFC_MBOXQ_t *pmboxq;
0ff10d46 677 struct lpfc_dmabuf *buf_ptr;
858c9f6c
JS
678 int retval;
679 struct lpfc_sli *psli = &phba->sli;
0ff10d46 680 LIST_HEAD(completions);
858c9f6c
JS
681
682 if ((phba->link_state == LPFC_HBA_ERROR) ||
51ef4c26 683 (phba->pport->load_flag & FC_UNLOADING) ||
858c9f6c
JS
684 (phba->pport->fc_flag & FC_OFFLINE_MODE))
685 return;
686
687 spin_lock_irq(&phba->pport->work_port_lock);
688 /* If the timer is already canceled do nothing */
689 if (!(phba->pport->work_port_events & WORKER_HB_TMO)) {
690 spin_unlock_irq(&phba->pport->work_port_lock);
691 return;
692 }
693
694 if (time_after(phba->last_completion_time + LPFC_HB_MBOX_INTERVAL * HZ,
695 jiffies)) {
696 spin_unlock_irq(&phba->pport->work_port_lock);
697 if (!phba->hb_outstanding)
698 mod_timer(&phba->hb_tmofunc,
699 jiffies + HZ * LPFC_HB_MBOX_INTERVAL);
700 else
701 mod_timer(&phba->hb_tmofunc,
702 jiffies + HZ * LPFC_HB_MBOX_TIMEOUT);
703 return;
704 }
705 spin_unlock_irq(&phba->pport->work_port_lock);
706
0ff10d46
JS
707 if (phba->elsbuf_cnt &&
708 (phba->elsbuf_cnt == phba->elsbuf_prev_cnt)) {
709 spin_lock_irq(&phba->hbalock);
710 list_splice_init(&phba->elsbuf, &completions);
711 phba->elsbuf_cnt = 0;
712 phba->elsbuf_prev_cnt = 0;
713 spin_unlock_irq(&phba->hbalock);
714
715 while (!list_empty(&completions)) {
716 list_remove_head(&completions, buf_ptr,
717 struct lpfc_dmabuf, list);
718 lpfc_mbuf_free(phba, buf_ptr->virt, buf_ptr->phys);
719 kfree(buf_ptr);
720 }
721 }
722 phba->elsbuf_prev_cnt = phba->elsbuf_cnt;
723
858c9f6c 724 /* If there is no heart beat outstanding, issue a heartbeat command */
13815c83
JS
725 if (phba->cfg_enable_hba_heartbeat) {
726 if (!phba->hb_outstanding) {
727 pmboxq = mempool_alloc(phba->mbox_mem_pool,GFP_KERNEL);
728 if (!pmboxq) {
729 mod_timer(&phba->hb_tmofunc,
730 jiffies + HZ * LPFC_HB_MBOX_INTERVAL);
731 return;
732 }
858c9f6c 733
13815c83
JS
734 lpfc_heart_beat(phba, pmboxq);
735 pmboxq->mbox_cmpl = lpfc_hb_mbox_cmpl;
736 pmboxq->vport = phba->pport;
737 retval = lpfc_sli_issue_mbox(phba, pmboxq, MBX_NOWAIT);
858c9f6c 738
13815c83
JS
739 if (retval != MBX_BUSY && retval != MBX_SUCCESS) {
740 mempool_free(pmboxq, phba->mbox_mem_pool);
741 mod_timer(&phba->hb_tmofunc,
742 jiffies + HZ * LPFC_HB_MBOX_INTERVAL);
743 return;
744 }
858c9f6c 745 mod_timer(&phba->hb_tmofunc,
13815c83
JS
746 jiffies + HZ * LPFC_HB_MBOX_TIMEOUT);
747 phba->hb_outstanding = 1;
858c9f6c 748 return;
13815c83
JS
749 } else {
750 /*
751 * If heart beat timeout called with hb_outstanding set
752 * we need to take the HBA offline.
753 */
754 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
755 "0459 Adapter heartbeat failure, "
756 "taking this port offline.\n");
757
758 spin_lock_irq(&phba->hbalock);
759 psli->sli_flag &= ~LPFC_SLI2_ACTIVE;
760 spin_unlock_irq(&phba->hbalock);
761
762 lpfc_offline_prep(phba);
763 lpfc_offline(phba);
764 lpfc_unblock_mgmt_io(phba);
765 phba->link_state = LPFC_HBA_ERROR;
766 lpfc_hba_down_post(phba);
858c9f6c 767 }
858c9f6c
JS
768 }
769}
770
e59058c4
JS
771/**
772 * lpfc_offline_eratt: Bring lpfc offline on hardware error attention.
773 * @phba: pointer to lpfc hba data structure.
774 *
775 * This routine is called to bring the HBA offline when HBA hardware error
776 * other than Port Error 6 has been detected.
777 **/
09372820
JS
778static void
779lpfc_offline_eratt(struct lpfc_hba *phba)
780{
781 struct lpfc_sli *psli = &phba->sli;
782
783 spin_lock_irq(&phba->hbalock);
784 psli->sli_flag &= ~LPFC_SLI2_ACTIVE;
785 spin_unlock_irq(&phba->hbalock);
786 lpfc_offline_prep(phba);
787
788 lpfc_offline(phba);
789 lpfc_reset_barrier(phba);
790 lpfc_sli_brdreset(phba);
791 lpfc_hba_down_post(phba);
792 lpfc_sli_brdready(phba, HS_MBRDY);
793 lpfc_unblock_mgmt_io(phba);
794 phba->link_state = LPFC_HBA_ERROR;
795 return;
796}
797
e59058c4
JS
798/**
799 * lpfc_handle_eratt: The HBA hardware error handler.
800 * @phba: pointer to lpfc hba data structure.
801 *
802 * This routine is invoked to handle the following HBA hardware error
803 * conditions:
804 * 1 - HBA error attention interrupt
805 * 2 - DMA ring index out of range
806 * 3 - Mailbox command came back as unknown
807 **/
dea3101e 808void
2e0fef85 809lpfc_handle_eratt(struct lpfc_hba *phba)
dea3101e 810{
2e0fef85 811 struct lpfc_vport *vport = phba->pport;
2e0fef85 812 struct lpfc_sli *psli = &phba->sli;
dea3101e 813 struct lpfc_sli_ring *pring;
d2873e4c 814 uint32_t event_data;
57127f15
JS
815 unsigned long temperature;
816 struct temp_event temp_event_data;
92d7f7b0 817 struct Scsi_Host *shost;
2e0fef85 818
8d63f375
LV
819 /* If the pci channel is offline, ignore possible errors,
820 * since we cannot communicate with the pci card anyway. */
821 if (pci_channel_offline(phba->pcidev))
822 return;
13815c83
JS
823 /* If resets are disabled then leave the HBA alone and return */
824 if (!phba->cfg_enable_hba_reset)
825 return;
dea3101e 826
97eab634 827 if (phba->work_hs & HS_FFER6) {
dea3101e
JB
828 /* Re-establishing Link */
829 lpfc_printf_log(phba, KERN_INFO, LOG_LINK_EVENT,
e8b62011 830 "1301 Re-establishing Link "
dea3101e 831 "Data: x%x x%x x%x\n",
e8b62011 832 phba->work_hs,
dea3101e 833 phba->work_status[0], phba->work_status[1]);
58da1ffb 834
92d7f7b0 835 spin_lock_irq(&phba->hbalock);
9290831f 836 psli->sli_flag &= ~LPFC_SLI2_ACTIVE;
92d7f7b0 837 spin_unlock_irq(&phba->hbalock);
dea3101e
JB
838
839 /*
840 * Firmware stops when it triggled erratt with HS_FFER6.
841 * That could cause the I/Os dropped by the firmware.
842 * Error iocb (I/O) on txcmplq and let the SCSI layer
843 * retry it after re-establishing link.
844 */
845 pring = &psli->ring[psli->fcp_ring];
846 lpfc_sli_abort_iocb_ring(phba, pring);
847
dea3101e
JB
848 /*
849 * There was a firmware error. Take the hba offline and then
850 * attempt to restart it.
851 */
46fa311e 852 lpfc_offline_prep(phba);
dea3101e 853 lpfc_offline(phba);
41415862 854 lpfc_sli_brdrestart(phba);
dea3101e 855 if (lpfc_online(phba) == 0) { /* Initialize the HBA */
46fa311e 856 lpfc_unblock_mgmt_io(phba);
dea3101e
JB
857 return;
858 }
46fa311e 859 lpfc_unblock_mgmt_io(phba);
57127f15
JS
860 } else if (phba->work_hs & HS_CRIT_TEMP) {
861 temperature = readl(phba->MBslimaddr + TEMPERATURE_OFFSET);
862 temp_event_data.event_type = FC_REG_TEMPERATURE_EVENT;
863 temp_event_data.event_code = LPFC_CRIT_TEMP;
864 temp_event_data.data = (uint32_t)temperature;
865
866 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
d7c255b2 867 "0406 Adapter maximum temperature exceeded "
57127f15
JS
868 "(%ld), taking this port offline "
869 "Data: x%x x%x x%x\n",
870 temperature, phba->work_hs,
871 phba->work_status[0], phba->work_status[1]);
872
873 shost = lpfc_shost_from_vport(phba->pport);
874 fc_host_post_vendor_event(shost, fc_get_event_number(),
875 sizeof(temp_event_data),
876 (char *) &temp_event_data,
877 SCSI_NL_VID_TYPE_PCI
878 | PCI_VENDOR_ID_EMULEX);
879
7af67051 880 spin_lock_irq(&phba->hbalock);
7af67051
JS
881 phba->over_temp_state = HBA_OVER_TEMP;
882 spin_unlock_irq(&phba->hbalock);
09372820 883 lpfc_offline_eratt(phba);
57127f15 884
dea3101e
JB
885 } else {
886 /* The if clause above forces this code path when the status
9399627f
JS
887 * failure is a value other than FFER6. Do not call the offline
888 * twice. This is the adapter hardware error path.
dea3101e
JB
889 */
890 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
e8b62011 891 "0457 Adapter Hardware Error "
dea3101e 892 "Data: x%x x%x x%x\n",
e8b62011 893 phba->work_hs,
dea3101e
JB
894 phba->work_status[0], phba->work_status[1]);
895
d2873e4c 896 event_data = FC_REG_DUMP_EVENT;
92d7f7b0 897 shost = lpfc_shost_from_vport(vport);
2e0fef85 898 fc_host_post_vendor_event(shost, fc_get_event_number(),
d2873e4c
JS
899 sizeof(event_data), (char *) &event_data,
900 SCSI_NL_VID_TYPE_PCI | PCI_VENDOR_ID_EMULEX);
901
09372820 902 lpfc_offline_eratt(phba);
dea3101e 903 }
9399627f 904 return;
dea3101e
JB
905}
906
e59058c4
JS
907/**
908 * lpfc_handle_latt: The HBA link event handler.
909 * @phba: pointer to lpfc hba data structure.
910 *
911 * This routine is invoked from the worker thread to handle a HBA host
912 * attention link event.
913 **/
dea3101e 914void
2e0fef85 915lpfc_handle_latt(struct lpfc_hba *phba)
dea3101e 916{
2e0fef85
JS
917 struct lpfc_vport *vport = phba->pport;
918 struct lpfc_sli *psli = &phba->sli;
dea3101e
JB
919 LPFC_MBOXQ_t *pmb;
920 volatile uint32_t control;
921 struct lpfc_dmabuf *mp;
09372820 922 int rc = 0;
dea3101e
JB
923
924 pmb = (LPFC_MBOXQ_t *)mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
09372820
JS
925 if (!pmb) {
926 rc = 1;
dea3101e 927 goto lpfc_handle_latt_err_exit;
09372820 928 }
dea3101e
JB
929
930 mp = kmalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
09372820
JS
931 if (!mp) {
932 rc = 2;
dea3101e 933 goto lpfc_handle_latt_free_pmb;
09372820 934 }
dea3101e
JB
935
936 mp->virt = lpfc_mbuf_alloc(phba, 0, &mp->phys);
09372820
JS
937 if (!mp->virt) {
938 rc = 3;
dea3101e 939 goto lpfc_handle_latt_free_mp;
09372820 940 }
dea3101e 941
6281bfe0 942 /* Cleanup any outstanding ELS commands */
549e55cd 943 lpfc_els_flush_all_cmd(phba);
dea3101e
JB
944
945 psli->slistat.link_event++;
946 lpfc_read_la(phba, pmb, mp);
947 pmb->mbox_cmpl = lpfc_mbx_cmpl_read_la;
2e0fef85 948 pmb->vport = vport;
0d2b6b83
JS
949 /* Block ELS IOCBs until we have processed this mbox command */
950 phba->sli.ring[LPFC_ELS_RING].flag |= LPFC_STOP_IOCB_EVENT;
0b727fea 951 rc = lpfc_sli_issue_mbox (phba, pmb, MBX_NOWAIT);
09372820
JS
952 if (rc == MBX_NOT_FINISHED) {
953 rc = 4;
14691150 954 goto lpfc_handle_latt_free_mbuf;
09372820 955 }
dea3101e
JB
956
957 /* Clear Link Attention in HA REG */
2e0fef85 958 spin_lock_irq(&phba->hbalock);
dea3101e
JB
959 writel(HA_LATT, phba->HAregaddr);
960 readl(phba->HAregaddr); /* flush */
2e0fef85 961 spin_unlock_irq(&phba->hbalock);
dea3101e
JB
962
963 return;
964
14691150 965lpfc_handle_latt_free_mbuf:
0d2b6b83 966 phba->sli.ring[LPFC_ELS_RING].flag &= ~LPFC_STOP_IOCB_EVENT;
14691150 967 lpfc_mbuf_free(phba, mp->virt, mp->phys);
dea3101e
JB
968lpfc_handle_latt_free_mp:
969 kfree(mp);
970lpfc_handle_latt_free_pmb:
1dcb58e5 971 mempool_free(pmb, phba->mbox_mem_pool);
dea3101e
JB
972lpfc_handle_latt_err_exit:
973 /* Enable Link attention interrupts */
2e0fef85 974 spin_lock_irq(&phba->hbalock);
dea3101e
JB
975 psli->sli_flag |= LPFC_PROCESS_LA;
976 control = readl(phba->HCregaddr);
977 control |= HC_LAINT_ENA;
978 writel(control, phba->HCregaddr);
979 readl(phba->HCregaddr); /* flush */
980
981 /* Clear Link Attention in HA REG */
982 writel(HA_LATT, phba->HAregaddr);
983 readl(phba->HAregaddr); /* flush */
2e0fef85 984 spin_unlock_irq(&phba->hbalock);
dea3101e 985 lpfc_linkdown(phba);
2e0fef85 986 phba->link_state = LPFC_HBA_ERROR;
dea3101e 987
09372820
JS
988 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX,
989 "0300 LATT: Cannot issue READ_LA: Data:%d\n", rc);
dea3101e
JB
990
991 return;
992}
993
e59058c4
JS
994/**
995 * lpfc_parse_vpd: Parse VPD (Vital Product Data).
996 * @phba: pointer to lpfc hba data structure.
997 * @vpd: pointer to the vital product data.
998 * @len: length of the vital product data in bytes.
999 *
1000 * This routine parses the Vital Product Data (VPD). The VPD is treated as
1001 * an array of characters. In this routine, the ModelName, ProgramType, and
1002 * ModelDesc, etc. fields of the phba data structure will be populated.
1003 *
1004 * Return codes
1005 * 0 - pointer to the VPD passed in is NULL
1006 * 1 - success
1007 **/
dea3101e 1008static int
2e0fef85 1009lpfc_parse_vpd(struct lpfc_hba *phba, uint8_t *vpd, int len)
dea3101e
JB
1010{
1011 uint8_t lenlo, lenhi;
07da60c1 1012 int Length;
dea3101e
JB
1013 int i, j;
1014 int finished = 0;
1015 int index = 0;
1016
1017 if (!vpd)
1018 return 0;
1019
1020 /* Vital Product */
ed957684 1021 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
e8b62011 1022 "0455 Vital Product Data: x%x x%x x%x x%x\n",
dea3101e
JB
1023 (uint32_t) vpd[0], (uint32_t) vpd[1], (uint32_t) vpd[2],
1024 (uint32_t) vpd[3]);
74b72a59 1025 while (!finished && (index < (len - 4))) {
dea3101e
JB
1026 switch (vpd[index]) {
1027 case 0x82:
74b72a59 1028 case 0x91:
dea3101e
JB
1029 index += 1;
1030 lenlo = vpd[index];
1031 index += 1;
1032 lenhi = vpd[index];
1033 index += 1;
1034 i = ((((unsigned short)lenhi) << 8) + lenlo);
1035 index += i;
1036 break;
1037 case 0x90:
1038 index += 1;
1039 lenlo = vpd[index];
1040 index += 1;
1041 lenhi = vpd[index];
1042 index += 1;
1043 Length = ((((unsigned short)lenhi) << 8) + lenlo);
74b72a59
JW
1044 if (Length > len - index)
1045 Length = len - index;
dea3101e
JB
1046 while (Length > 0) {
1047 /* Look for Serial Number */
1048 if ((vpd[index] == 'S') && (vpd[index+1] == 'N')) {
1049 index += 2;
1050 i = vpd[index];
1051 index += 1;
1052 j = 0;
1053 Length -= (3+i);
1054 while(i--) {
1055 phba->SerialNumber[j++] = vpd[index++];
1056 if (j == 31)
1057 break;
1058 }
1059 phba->SerialNumber[j] = 0;
1060 continue;
1061 }
1062 else if ((vpd[index] == 'V') && (vpd[index+1] == '1')) {
1063 phba->vpd_flag |= VPD_MODEL_DESC;
1064 index += 2;
1065 i = vpd[index];
1066 index += 1;
1067 j = 0;
1068 Length -= (3+i);
1069 while(i--) {
1070 phba->ModelDesc[j++] = vpd[index++];
1071 if (j == 255)
1072 break;
1073 }
1074 phba->ModelDesc[j] = 0;
1075 continue;
1076 }
1077 else if ((vpd[index] == 'V') && (vpd[index+1] == '2')) {
1078 phba->vpd_flag |= VPD_MODEL_NAME;
1079 index += 2;
1080 i = vpd[index];
1081 index += 1;
1082 j = 0;
1083 Length -= (3+i);
1084 while(i--) {
1085 phba->ModelName[j++] = vpd[index++];
1086 if (j == 79)
1087 break;
1088 }
1089 phba->ModelName[j] = 0;
1090 continue;
1091 }
1092 else if ((vpd[index] == 'V') && (vpd[index+1] == '3')) {
1093 phba->vpd_flag |= VPD_PROGRAM_TYPE;
1094 index += 2;
1095 i = vpd[index];
1096 index += 1;
1097 j = 0;
1098 Length -= (3+i);
1099 while(i--) {
1100 phba->ProgramType[j++] = vpd[index++];
1101 if (j == 255)
1102 break;
1103 }
1104 phba->ProgramType[j] = 0;
1105 continue;
1106 }
1107 else if ((vpd[index] == 'V') && (vpd[index+1] == '4')) {
1108 phba->vpd_flag |= VPD_PORT;
1109 index += 2;
1110 i = vpd[index];
1111 index += 1;
1112 j = 0;
1113 Length -= (3+i);
1114 while(i--) {
1115 phba->Port[j++] = vpd[index++];
1116 if (j == 19)
1117 break;
1118 }
1119 phba->Port[j] = 0;
1120 continue;
1121 }
1122 else {
1123 index += 2;
1124 i = vpd[index];
1125 index += 1;
1126 index += i;
1127 Length -= (3 + i);
1128 }
1129 }
1130 finished = 0;
1131 break;
1132 case 0x78:
1133 finished = 1;
1134 break;
1135 default:
1136 index ++;
1137 break;
1138 }
74b72a59 1139 }
dea3101e
JB
1140
1141 return(1);
1142}
1143
e59058c4
JS
1144/**
1145 * lpfc_get_hba_model_desc: Retrieve HBA device model name and description.
1146 * @phba: pointer to lpfc hba data structure.
1147 * @mdp: pointer to the data structure to hold the derived model name.
1148 * @descp: pointer to the data structure to hold the derived description.
1149 *
1150 * This routine retrieves HBA's description based on its registered PCI device
1151 * ID. The @descp passed into this function points to an array of 256 chars. It
1152 * shall be returned with the model name, maximum speed, and the host bus type.
1153 * The @mdp passed into this function points to an array of 80 chars. When the
1154 * function returns, the @mdp will be filled with the model name.
1155 **/
dea3101e 1156static void
2e0fef85 1157lpfc_get_hba_model_desc(struct lpfc_hba *phba, uint8_t *mdp, uint8_t *descp)
dea3101e
JB
1158{
1159 lpfc_vpd_t *vp;
fefcb2b6 1160 uint16_t dev_id = phba->pcidev->device;
74b72a59 1161 int max_speed;
84774a4d 1162 int GE = 0;
74b72a59
JW
1163 struct {
1164 char * name;
1165 int max_speed;
74b72a59 1166 char * bus;
18a3b596 1167 } m = {"<Unknown>", 0, ""};
74b72a59
JW
1168
1169 if (mdp && mdp[0] != '\0'
1170 && descp && descp[0] != '\0')
1171 return;
1172
1173 if (phba->lmt & LMT_10Gb)
1174 max_speed = 10;
1175 else if (phba->lmt & LMT_8Gb)
1176 max_speed = 8;
1177 else if (phba->lmt & LMT_4Gb)
1178 max_speed = 4;
1179 else if (phba->lmt & LMT_2Gb)
1180 max_speed = 2;
1181 else
1182 max_speed = 1;
dea3101e
JB
1183
1184 vp = &phba->vpd;
dea3101e 1185
e4adb204 1186 switch (dev_id) {
06325e74 1187 case PCI_DEVICE_ID_FIREFLY:
18a3b596 1188 m = (typeof(m)){"LP6000", max_speed, "PCI"};
06325e74 1189 break;
dea3101e
JB
1190 case PCI_DEVICE_ID_SUPERFLY:
1191 if (vp->rev.biuRev >= 1 && vp->rev.biuRev <= 3)
18a3b596 1192 m = (typeof(m)){"LP7000", max_speed, "PCI"};
dea3101e 1193 else
18a3b596 1194 m = (typeof(m)){"LP7000E", max_speed, "PCI"};
dea3101e
JB
1195 break;
1196 case PCI_DEVICE_ID_DRAGONFLY:
18a3b596 1197 m = (typeof(m)){"LP8000", max_speed, "PCI"};
dea3101e
JB
1198 break;
1199 case PCI_DEVICE_ID_CENTAUR:
1200 if (FC_JEDEC_ID(vp->rev.biuRev) == CENTAUR_2G_JEDEC_ID)
18a3b596 1201 m = (typeof(m)){"LP9002", max_speed, "PCI"};
dea3101e 1202 else
18a3b596 1203 m = (typeof(m)){"LP9000", max_speed, "PCI"};
dea3101e
JB
1204 break;
1205 case PCI_DEVICE_ID_RFLY:
18a3b596 1206 m = (typeof(m)){"LP952", max_speed, "PCI"};
dea3101e
JB
1207 break;
1208 case PCI_DEVICE_ID_PEGASUS:
18a3b596 1209 m = (typeof(m)){"LP9802", max_speed, "PCI-X"};
dea3101e
JB
1210 break;
1211 case PCI_DEVICE_ID_THOR:
18a3b596 1212 m = (typeof(m)){"LP10000", max_speed, "PCI-X"};
dea3101e
JB
1213 break;
1214 case PCI_DEVICE_ID_VIPER:
18a3b596 1215 m = (typeof(m)){"LPX1000", max_speed, "PCI-X"};
dea3101e
JB
1216 break;
1217 case PCI_DEVICE_ID_PFLY:
18a3b596 1218 m = (typeof(m)){"LP982", max_speed, "PCI-X"};
dea3101e
JB
1219 break;
1220 case PCI_DEVICE_ID_TFLY:
18a3b596 1221 m = (typeof(m)){"LP1050", max_speed, "PCI-X"};
dea3101e
JB
1222 break;
1223 case PCI_DEVICE_ID_HELIOS:
18a3b596 1224 m = (typeof(m)){"LP11000", max_speed, "PCI-X2"};
dea3101e 1225 break;
e4adb204 1226 case PCI_DEVICE_ID_HELIOS_SCSP:
18a3b596 1227 m = (typeof(m)){"LP11000-SP", max_speed, "PCI-X2"};
e4adb204
JSEC
1228 break;
1229 case PCI_DEVICE_ID_HELIOS_DCSP:
18a3b596 1230 m = (typeof(m)){"LP11002-SP", max_speed, "PCI-X2"};
e4adb204
JSEC
1231 break;
1232 case PCI_DEVICE_ID_NEPTUNE:
18a3b596 1233 m = (typeof(m)){"LPe1000", max_speed, "PCIe"};
e4adb204
JSEC
1234 break;
1235 case PCI_DEVICE_ID_NEPTUNE_SCSP:
18a3b596 1236 m = (typeof(m)){"LPe1000-SP", max_speed, "PCIe"};
e4adb204
JSEC
1237 break;
1238 case PCI_DEVICE_ID_NEPTUNE_DCSP:
18a3b596 1239 m = (typeof(m)){"LPe1002-SP", max_speed, "PCIe"};
e4adb204 1240 break;
dea3101e 1241 case PCI_DEVICE_ID_BMID:
18a3b596 1242 m = (typeof(m)){"LP1150", max_speed, "PCI-X2"};
dea3101e
JB
1243 break;
1244 case PCI_DEVICE_ID_BSMB:
18a3b596 1245 m = (typeof(m)){"LP111", max_speed, "PCI-X2"};
dea3101e
JB
1246 break;
1247 case PCI_DEVICE_ID_ZEPHYR:
18a3b596 1248 m = (typeof(m)){"LPe11000", max_speed, "PCIe"};
dea3101e 1249 break;
e4adb204 1250 case PCI_DEVICE_ID_ZEPHYR_SCSP:
18a3b596 1251 m = (typeof(m)){"LPe11000", max_speed, "PCIe"};
e4adb204
JSEC
1252 break;
1253 case PCI_DEVICE_ID_ZEPHYR_DCSP:
18a3b596 1254 m = (typeof(m)){"LPe11002-SP", max_speed, "PCIe"};
e4adb204 1255 break;
dea3101e 1256 case PCI_DEVICE_ID_ZMID:
18a3b596 1257 m = (typeof(m)){"LPe1150", max_speed, "PCIe"};
dea3101e
JB
1258 break;
1259 case PCI_DEVICE_ID_ZSMB:
18a3b596 1260 m = (typeof(m)){"LPe111", max_speed, "PCIe"};
dea3101e
JB
1261 break;
1262 case PCI_DEVICE_ID_LP101:
18a3b596 1263 m = (typeof(m)){"LP101", max_speed, "PCI-X"};
dea3101e
JB
1264 break;
1265 case PCI_DEVICE_ID_LP10000S:
18a3b596 1266 m = (typeof(m)){"LP10000-S", max_speed, "PCI"};
06325e74 1267 break;
e4adb204 1268 case PCI_DEVICE_ID_LP11000S:
18a3b596
JS
1269 m = (typeof(m)){"LP11000-S", max_speed,
1270 "PCI-X2"};
1271 break;
e4adb204 1272 case PCI_DEVICE_ID_LPE11000S:
18a3b596
JS
1273 m = (typeof(m)){"LPe11000-S", max_speed,
1274 "PCIe"};
5cc36b3c 1275 break;
b87eab38
JS
1276 case PCI_DEVICE_ID_SAT:
1277 m = (typeof(m)){"LPe12000", max_speed, "PCIe"};
1278 break;
1279 case PCI_DEVICE_ID_SAT_MID:
1280 m = (typeof(m)){"LPe1250", max_speed, "PCIe"};
1281 break;
1282 case PCI_DEVICE_ID_SAT_SMB:
1283 m = (typeof(m)){"LPe121", max_speed, "PCIe"};
1284 break;
1285 case PCI_DEVICE_ID_SAT_DCSP:
1286 m = (typeof(m)){"LPe12002-SP", max_speed, "PCIe"};
1287 break;
1288 case PCI_DEVICE_ID_SAT_SCSP:
1289 m = (typeof(m)){"LPe12000-SP", max_speed, "PCIe"};
1290 break;
1291 case PCI_DEVICE_ID_SAT_S:
1292 m = (typeof(m)){"LPe12000-S", max_speed, "PCIe"};
1293 break;
84774a4d
JS
1294 case PCI_DEVICE_ID_HORNET:
1295 m = (typeof(m)){"LP21000", max_speed, "PCIe"};
1296 GE = 1;
1297 break;
1298 case PCI_DEVICE_ID_PROTEUS_VF:
1299 m = (typeof(m)) {"LPev12000", max_speed, "PCIe IOV"};
1300 break;
1301 case PCI_DEVICE_ID_PROTEUS_PF:
1302 m = (typeof(m)) {"LPev12000", max_speed, "PCIe IOV"};
1303 break;
1304 case PCI_DEVICE_ID_PROTEUS_S:
1305 m = (typeof(m)) {"LPemv12002-S", max_speed, "PCIe IOV"};
1306 break;
5cc36b3c 1307 default:
041976fb 1308 m = (typeof(m)){ NULL };
e4adb204 1309 break;
dea3101e 1310 }
74b72a59
JW
1311
1312 if (mdp && mdp[0] == '\0')
1313 snprintf(mdp, 79,"%s", m.name);
1314 if (descp && descp[0] == '\0')
1315 snprintf(descp, 255,
84774a4d
JS
1316 "Emulex %s %d%s %s %s",
1317 m.name, m.max_speed,
1318 (GE) ? "GE" : "Gb",
1319 m.bus,
1320 (GE) ? "FCoE Adapter" : "Fibre Channel Adapter");
dea3101e
JB
1321}
1322
e59058c4
JS
1323/**
1324 * lpfc_post_buffer: Post IOCB(s) with DMA buffer descriptor(s) to a IOCB ring.
1325 * @phba: pointer to lpfc hba data structure.
1326 * @pring: pointer to a IOCB ring.
1327 * @cnt: the number of IOCBs to be posted to the IOCB ring.
1328 *
1329 * This routine posts a given number of IOCBs with the associated DMA buffer
1330 * descriptors specified by the cnt argument to the given IOCB ring.
1331 *
1332 * Return codes
1333 * The number of IOCBs NOT able to be posted to the IOCB ring.
1334 **/
dea3101e 1335int
495a714c 1336lpfc_post_buffer(struct lpfc_hba *phba, struct lpfc_sli_ring *pring, int cnt)
dea3101e
JB
1337{
1338 IOCB_t *icmd;
0bd4ca25 1339 struct lpfc_iocbq *iocb;
dea3101e
JB
1340 struct lpfc_dmabuf *mp1, *mp2;
1341
1342 cnt += pring->missbufcnt;
1343
1344 /* While there are buffers to post */
1345 while (cnt > 0) {
1346 /* Allocate buffer for command iocb */
0bd4ca25 1347 iocb = lpfc_sli_get_iocbq(phba);
dea3101e
JB
1348 if (iocb == NULL) {
1349 pring->missbufcnt = cnt;
1350 return cnt;
1351 }
dea3101e
JB
1352 icmd = &iocb->iocb;
1353
1354 /* 2 buffers can be posted per command */
1355 /* Allocate buffer to post */
1356 mp1 = kmalloc(sizeof (struct lpfc_dmabuf), GFP_KERNEL);
1357 if (mp1)
98c9ea5c
JS
1358 mp1->virt = lpfc_mbuf_alloc(phba, MEM_PRI, &mp1->phys);
1359 if (!mp1 || !mp1->virt) {
c9475cb0 1360 kfree(mp1);
604a3e30 1361 lpfc_sli_release_iocbq(phba, iocb);
dea3101e
JB
1362 pring->missbufcnt = cnt;
1363 return cnt;
1364 }
1365
1366 INIT_LIST_HEAD(&mp1->list);
1367 /* Allocate buffer to post */
1368 if (cnt > 1) {
1369 mp2 = kmalloc(sizeof (struct lpfc_dmabuf), GFP_KERNEL);
1370 if (mp2)
1371 mp2->virt = lpfc_mbuf_alloc(phba, MEM_PRI,
1372 &mp2->phys);
98c9ea5c 1373 if (!mp2 || !mp2->virt) {
c9475cb0 1374 kfree(mp2);
dea3101e
JB
1375 lpfc_mbuf_free(phba, mp1->virt, mp1->phys);
1376 kfree(mp1);
604a3e30 1377 lpfc_sli_release_iocbq(phba, iocb);
dea3101e
JB
1378 pring->missbufcnt = cnt;
1379 return cnt;
1380 }
1381
1382 INIT_LIST_HEAD(&mp2->list);
1383 } else {
1384 mp2 = NULL;
1385 }
1386
1387 icmd->un.cont64[0].addrHigh = putPaddrHigh(mp1->phys);
1388 icmd->un.cont64[0].addrLow = putPaddrLow(mp1->phys);
1389 icmd->un.cont64[0].tus.f.bdeSize = FCELSSIZE;
1390 icmd->ulpBdeCount = 1;
1391 cnt--;
1392 if (mp2) {
1393 icmd->un.cont64[1].addrHigh = putPaddrHigh(mp2->phys);
1394 icmd->un.cont64[1].addrLow = putPaddrLow(mp2->phys);
1395 icmd->un.cont64[1].tus.f.bdeSize = FCELSSIZE;
1396 cnt--;
1397 icmd->ulpBdeCount = 2;
1398 }
1399
1400 icmd->ulpCommand = CMD_QUE_RING_BUF64_CN;
1401 icmd->ulpLe = 1;
1402
dea3101e
JB
1403 if (lpfc_sli_issue_iocb(phba, pring, iocb, 0) == IOCB_ERROR) {
1404 lpfc_mbuf_free(phba, mp1->virt, mp1->phys);
1405 kfree(mp1);
1406 cnt++;
1407 if (mp2) {
1408 lpfc_mbuf_free(phba, mp2->virt, mp2->phys);
1409 kfree(mp2);
1410 cnt++;
1411 }
604a3e30 1412 lpfc_sli_release_iocbq(phba, iocb);
dea3101e 1413 pring->missbufcnt = cnt;
dea3101e
JB
1414 return cnt;
1415 }
dea3101e 1416 lpfc_sli_ringpostbuf_put(phba, pring, mp1);
92d7f7b0 1417 if (mp2)
dea3101e 1418 lpfc_sli_ringpostbuf_put(phba, pring, mp2);
dea3101e
JB
1419 }
1420 pring->missbufcnt = 0;
1421 return 0;
1422}
1423
e59058c4
JS
1424/**
1425 * lpfc_post_rcv_buf: Post the initial receive IOCB buffers to ELS ring.
1426 * @phba: pointer to lpfc hba data structure.
1427 *
1428 * This routine posts initial receive IOCB buffers to the ELS ring. The
1429 * current number of initial IOCB buffers specified by LPFC_BUF_RING0 is
1430 * set to 64 IOCBs.
1431 *
1432 * Return codes
1433 * 0 - success (currently always success)
1434 **/
dea3101e 1435static int
2e0fef85 1436lpfc_post_rcv_buf(struct lpfc_hba *phba)
dea3101e
JB
1437{
1438 struct lpfc_sli *psli = &phba->sli;
1439
1440 /* Ring 0, ELS / CT buffers */
495a714c 1441 lpfc_post_buffer(phba, &psli->ring[LPFC_ELS_RING], LPFC_BUF_RING0);
dea3101e
JB
1442 /* Ring 2 - FCP no buffers needed */
1443
1444 return 0;
1445}
1446
1447#define S(N,V) (((V)<<(N))|((V)>>(32-(N))))
1448
e59058c4
JS
1449/**
1450 * lpfc_sha_init: Set up initial array of hash table entries.
1451 * @HashResultPointer: pointer to an array as hash table.
1452 *
1453 * This routine sets up the initial values to the array of hash table entries
1454 * for the LC HBAs.
1455 **/
dea3101e
JB
1456static void
1457lpfc_sha_init(uint32_t * HashResultPointer)
1458{
1459 HashResultPointer[0] = 0x67452301;
1460 HashResultPointer[1] = 0xEFCDAB89;
1461 HashResultPointer[2] = 0x98BADCFE;
1462 HashResultPointer[3] = 0x10325476;
1463 HashResultPointer[4] = 0xC3D2E1F0;
1464}
1465
e59058c4
JS
1466/**
1467 * lpfc_sha_iterate: Iterate initial hash table with the working hash table.
1468 * @HashResultPointer: pointer to an initial/result hash table.
1469 * @HashWorkingPointer: pointer to an working hash table.
1470 *
1471 * This routine iterates an initial hash table pointed by @HashResultPointer
1472 * with the values from the working hash table pointeed by @HashWorkingPointer.
1473 * The results are putting back to the initial hash table, returned through
1474 * the @HashResultPointer as the result hash table.
1475 **/
dea3101e
JB
1476static void
1477lpfc_sha_iterate(uint32_t * HashResultPointer, uint32_t * HashWorkingPointer)
1478{
1479 int t;
1480 uint32_t TEMP;
1481 uint32_t A, B, C, D, E;
1482 t = 16;
1483 do {
1484 HashWorkingPointer[t] =
1485 S(1,
1486 HashWorkingPointer[t - 3] ^ HashWorkingPointer[t -
1487 8] ^
1488 HashWorkingPointer[t - 14] ^ HashWorkingPointer[t - 16]);
1489 } while (++t <= 79);
1490 t = 0;
1491 A = HashResultPointer[0];
1492 B = HashResultPointer[1];
1493 C = HashResultPointer[2];
1494 D = HashResultPointer[3];
1495 E = HashResultPointer[4];
1496
1497 do {
1498 if (t < 20) {
1499 TEMP = ((B & C) | ((~B) & D)) + 0x5A827999;
1500 } else if (t < 40) {
1501 TEMP = (B ^ C ^ D) + 0x6ED9EBA1;
1502 } else if (t < 60) {
1503 TEMP = ((B & C) | (B & D) | (C & D)) + 0x8F1BBCDC;
1504 } else {
1505 TEMP = (B ^ C ^ D) + 0xCA62C1D6;
1506 }
1507 TEMP += S(5, A) + E + HashWorkingPointer[t];
1508 E = D;
1509 D = C;
1510 C = S(30, B);
1511 B = A;
1512 A = TEMP;
1513 } while (++t <= 79);
1514
1515 HashResultPointer[0] += A;
1516 HashResultPointer[1] += B;
1517 HashResultPointer[2] += C;
1518 HashResultPointer[3] += D;
1519 HashResultPointer[4] += E;
1520
1521}
1522
e59058c4
JS
1523/**
1524 * lpfc_challenge_key: Create challenge key based on WWPN of the HBA.
1525 * @RandomChallenge: pointer to the entry of host challenge random number array.
1526 * @HashWorking: pointer to the entry of the working hash array.
1527 *
1528 * This routine calculates the working hash array referred by @HashWorking
1529 * from the challenge random numbers associated with the host, referred by
1530 * @RandomChallenge. The result is put into the entry of the working hash
1531 * array and returned by reference through @HashWorking.
1532 **/
dea3101e
JB
1533static void
1534lpfc_challenge_key(uint32_t * RandomChallenge, uint32_t * HashWorking)
1535{
1536 *HashWorking = (*RandomChallenge ^ *HashWorking);
1537}
1538
e59058c4
JS
1539/**
1540 * lpfc_hba_init: Perform special handling for LC HBA initialization.
1541 * @phba: pointer to lpfc hba data structure.
1542 * @hbainit: pointer to an array of unsigned 32-bit integers.
1543 *
1544 * This routine performs the special handling for LC HBA initialization.
1545 **/
dea3101e
JB
1546void
1547lpfc_hba_init(struct lpfc_hba *phba, uint32_t *hbainit)
1548{
1549 int t;
1550 uint32_t *HashWorking;
2e0fef85 1551 uint32_t *pwwnn = (uint32_t *) phba->wwnn;
dea3101e 1552
bbfbbbc1 1553 HashWorking = kcalloc(80, sizeof(uint32_t), GFP_KERNEL);
dea3101e
JB
1554 if (!HashWorking)
1555 return;
1556
dea3101e
JB
1557 HashWorking[0] = HashWorking[78] = *pwwnn++;
1558 HashWorking[1] = HashWorking[79] = *pwwnn;
1559
1560 for (t = 0; t < 7; t++)
1561 lpfc_challenge_key(phba->RandomData + t, HashWorking + t);
1562
1563 lpfc_sha_init(hbainit);
1564 lpfc_sha_iterate(hbainit, HashWorking);
1565 kfree(HashWorking);
1566}
1567
e59058c4
JS
1568/**
1569 * lpfc_cleanup: Performs vport cleanups before deleting a vport.
1570 * @vport: pointer to a virtual N_Port data structure.
1571 *
1572 * This routine performs the necessary cleanups before deleting the @vport.
1573 * It invokes the discovery state machine to perform necessary state
1574 * transitions and to release the ndlps associated with the @vport. Note,
1575 * the physical port is treated as @vport 0.
1576 **/
87af33fe 1577void
2e0fef85 1578lpfc_cleanup(struct lpfc_vport *vport)
dea3101e 1579{
87af33fe 1580 struct lpfc_hba *phba = vport->phba;
dea3101e 1581 struct lpfc_nodelist *ndlp, *next_ndlp;
a8adb832 1582 int i = 0;
dea3101e 1583
87af33fe
JS
1584 if (phba->link_state > LPFC_LINK_DOWN)
1585 lpfc_port_link_failure(vport);
1586
1587 list_for_each_entry_safe(ndlp, next_ndlp, &vport->fc_nodes, nlp_listp) {
e47c9093
JS
1588 if (!NLP_CHK_NODE_ACT(ndlp)) {
1589 ndlp = lpfc_enable_node(vport, ndlp,
1590 NLP_STE_UNUSED_NODE);
1591 if (!ndlp)
1592 continue;
1593 spin_lock_irq(&phba->ndlp_lock);
1594 NLP_SET_FREE_REQ(ndlp);
1595 spin_unlock_irq(&phba->ndlp_lock);
1596 /* Trigger the release of the ndlp memory */
1597 lpfc_nlp_put(ndlp);
1598 continue;
1599 }
1600 spin_lock_irq(&phba->ndlp_lock);
1601 if (NLP_CHK_FREE_REQ(ndlp)) {
1602 /* The ndlp should not be in memory free mode already */
1603 spin_unlock_irq(&phba->ndlp_lock);
1604 continue;
1605 } else
1606 /* Indicate request for freeing ndlp memory */
1607 NLP_SET_FREE_REQ(ndlp);
1608 spin_unlock_irq(&phba->ndlp_lock);
1609
58da1ffb
JS
1610 if (vport->port_type != LPFC_PHYSICAL_PORT &&
1611 ndlp->nlp_DID == Fabric_DID) {
1612 /* Just free up ndlp with Fabric_DID for vports */
1613 lpfc_nlp_put(ndlp);
1614 continue;
1615 }
1616
87af33fe
JS
1617 if (ndlp->nlp_type & NLP_FABRIC)
1618 lpfc_disc_state_machine(vport, ndlp, NULL,
1619 NLP_EVT_DEVICE_RECOVERY);
e47c9093 1620
87af33fe
JS
1621 lpfc_disc_state_machine(vport, ndlp, NULL,
1622 NLP_EVT_DEVICE_RM);
495a714c 1623
87af33fe
JS
1624 }
1625
a8adb832
JS
1626 /* At this point, ALL ndlp's should be gone
1627 * because of the previous NLP_EVT_DEVICE_RM.
1628 * Lets wait for this to happen, if needed.
1629 */
87af33fe
JS
1630 while (!list_empty(&vport->fc_nodes)) {
1631
a8adb832 1632 if (i++ > 3000) {
87af33fe 1633 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
a8adb832 1634 "0233 Nodelist not empty\n");
e47c9093
JS
1635 list_for_each_entry_safe(ndlp, next_ndlp,
1636 &vport->fc_nodes, nlp_listp) {
1637 lpfc_printf_vlog(ndlp->vport, KERN_ERR,
1638 LOG_NODE,
d7c255b2 1639 "0282 did:x%x ndlp:x%p "
e47c9093
JS
1640 "usgmap:x%x refcnt:%d\n",
1641 ndlp->nlp_DID, (void *)ndlp,
1642 ndlp->nlp_usg_map,
1643 atomic_read(
1644 &ndlp->kref.refcount));
1645 }
a8adb832 1646 break;
87af33fe 1647 }
a8adb832
JS
1648
1649 /* Wait for any activity on ndlps to settle */
1650 msleep(10);
87af33fe 1651 }
dea3101e
JB
1652 return;
1653}
1654
e59058c4
JS
1655/**
1656 * lpfc_stop_vport_timers: Stop all the timers associated with a vport.
1657 * @vport: pointer to a virtual N_Port data structure.
1658 *
1659 * This routine stops all the timers associated with a @vport. This function
1660 * is invoked before disabling or deleting a @vport. Note that the physical
1661 * port is treated as @vport 0.
1662 **/
92d7f7b0
JS
1663void
1664lpfc_stop_vport_timers(struct lpfc_vport *vport)
dea3101e 1665{
92d7f7b0
JS
1666 del_timer_sync(&vport->els_tmofunc);
1667 del_timer_sync(&vport->fc_fdmitmo);
1668 lpfc_can_disctmo(vport);
1669 return;
dea3101e
JB
1670}
1671
e59058c4
JS
1672/**
1673 * lpfc_stop_phba_timers: Stop all the timers associated with an HBA.
1674 * @phba: pointer to lpfc hba data structure.
1675 *
1676 * This routine stops all the timers associated with a HBA. This function is
1677 * invoked before either putting a HBA offline or unloading the driver.
1678 **/
2e0fef85 1679static void
92d7f7b0 1680lpfc_stop_phba_timers(struct lpfc_hba *phba)
dea3101e 1681{
875fbdfe 1682 del_timer_sync(&phba->fcp_poll_timer);
51ef4c26 1683 lpfc_stop_vport_timers(phba->pport);
2e0fef85 1684 del_timer_sync(&phba->sli.mbox_tmo);
92d7f7b0 1685 del_timer_sync(&phba->fabric_block_timer);
858c9f6c
JS
1686 phba->hb_outstanding = 0;
1687 del_timer_sync(&phba->hb_tmofunc);
9399627f 1688 del_timer_sync(&phba->eratt_poll);
2e0fef85 1689 return;
dea3101e
JB
1690}
1691
e59058c4
JS
1692/**
1693 * lpfc_block_mgmt_io: Mark a HBA's management interface as blocked.
1694 * @phba: pointer to lpfc hba data structure.
1695 *
1696 * This routine marks a HBA's management interface as blocked. Once the HBA's
1697 * management interface is marked as blocked, all the user space access to
1698 * the HBA, whether they are from sysfs interface or libdfc interface will
1699 * all be blocked. The HBA is set to block the management interface when the
1700 * driver prepares the HBA interface for online or offline.
1701 **/
a6ababd2
AB
1702static void
1703lpfc_block_mgmt_io(struct lpfc_hba * phba)
1704{
1705 unsigned long iflag;
1706
1707 spin_lock_irqsave(&phba->hbalock, iflag);
1708 phba->sli.sli_flag |= LPFC_BLOCK_MGMT_IO;
1709 spin_unlock_irqrestore(&phba->hbalock, iflag);
1710}
1711
e59058c4
JS
1712/**
1713 * lpfc_online: Initialize and bring a HBA online.
1714 * @phba: pointer to lpfc hba data structure.
1715 *
1716 * This routine initializes the HBA and brings a HBA online. During this
1717 * process, the management interface is blocked to prevent user space access
1718 * to the HBA interfering with the driver initialization.
1719 *
1720 * Return codes
1721 * 0 - successful
1722 * 1 - failed
1723 **/
dea3101e 1724int
2e0fef85 1725lpfc_online(struct lpfc_hba *phba)
dea3101e 1726{
2e0fef85 1727 struct lpfc_vport *vport = phba->pport;
549e55cd
JS
1728 struct lpfc_vport **vports;
1729 int i;
2e0fef85 1730
dea3101e
JB
1731 if (!phba)
1732 return 0;
1733
2e0fef85 1734 if (!(vport->fc_flag & FC_OFFLINE_MODE))
dea3101e
JB
1735 return 0;
1736
ed957684 1737 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
e8b62011 1738 "0458 Bring Adapter online\n");
dea3101e 1739
46fa311e
JS
1740 lpfc_block_mgmt_io(phba);
1741
1742 if (!lpfc_sli_queue_setup(phba)) {
1743 lpfc_unblock_mgmt_io(phba);
dea3101e 1744 return 1;
46fa311e 1745 }
dea3101e 1746
46fa311e
JS
1747 if (lpfc_sli_hba_setup(phba)) { /* Initialize the HBA */
1748 lpfc_unblock_mgmt_io(phba);
dea3101e 1749 return 1;
46fa311e 1750 }
dea3101e 1751
549e55cd
JS
1752 vports = lpfc_create_vport_work_array(phba);
1753 if (vports != NULL)
09372820 1754 for(i = 0; i <= phba->max_vpi && vports[i] != NULL; i++) {
549e55cd
JS
1755 struct Scsi_Host *shost;
1756 shost = lpfc_shost_from_vport(vports[i]);
1757 spin_lock_irq(shost->host_lock);
1758 vports[i]->fc_flag &= ~FC_OFFLINE_MODE;
1759 if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED)
1760 vports[i]->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
1761 spin_unlock_irq(shost->host_lock);
1762 }
09372820 1763 lpfc_destroy_vport_work_array(phba, vports);
dea3101e 1764
46fa311e 1765 lpfc_unblock_mgmt_io(phba);
dea3101e
JB
1766 return 0;
1767}
1768
e59058c4
JS
1769/**
1770 * lpfc_unblock_mgmt_io: Mark a HBA's management interface to be not blocked.
1771 * @phba: pointer to lpfc hba data structure.
1772 *
1773 * This routine marks a HBA's management interface as not blocked. Once the
1774 * HBA's management interface is marked as not blocked, all the user space
1775 * access to the HBA, whether they are from sysfs interface or libdfc
1776 * interface will be allowed. The HBA is set to block the management interface
1777 * when the driver prepares the HBA interface for online or offline and then
1778 * set to unblock the management interface afterwards.
1779 **/
46fa311e
JS
1780void
1781lpfc_unblock_mgmt_io(struct lpfc_hba * phba)
1782{
1783 unsigned long iflag;
1784
2e0fef85
JS
1785 spin_lock_irqsave(&phba->hbalock, iflag);
1786 phba->sli.sli_flag &= ~LPFC_BLOCK_MGMT_IO;
1787 spin_unlock_irqrestore(&phba->hbalock, iflag);
46fa311e
JS
1788}
1789
e59058c4
JS
1790/**
1791 * lpfc_offline_prep: Prepare a HBA to be brought offline.
1792 * @phba: pointer to lpfc hba data structure.
1793 *
1794 * This routine is invoked to prepare a HBA to be brought offline. It performs
1795 * unregistration login to all the nodes on all vports and flushes the mailbox
1796 * queue to make it ready to be brought offline.
1797 **/
46fa311e
JS
1798void
1799lpfc_offline_prep(struct lpfc_hba * phba)
1800{
2e0fef85 1801 struct lpfc_vport *vport = phba->pport;
46fa311e 1802 struct lpfc_nodelist *ndlp, *next_ndlp;
87af33fe
JS
1803 struct lpfc_vport **vports;
1804 int i;
dea3101e 1805
2e0fef85 1806 if (vport->fc_flag & FC_OFFLINE_MODE)
46fa311e 1807 return;
dea3101e 1808
46fa311e 1809 lpfc_block_mgmt_io(phba);
dea3101e
JB
1810
1811 lpfc_linkdown(phba);
1812
87af33fe
JS
1813 /* Issue an unreg_login to all nodes on all vports */
1814 vports = lpfc_create_vport_work_array(phba);
1815 if (vports != NULL) {
09372820 1816 for(i = 0; i <= phba->max_vpi && vports[i] != NULL; i++) {
87af33fe
JS
1817 struct Scsi_Host *shost;
1818
a8adb832
JS
1819 if (vports[i]->load_flag & FC_UNLOADING)
1820 continue;
87af33fe
JS
1821 shost = lpfc_shost_from_vport(vports[i]);
1822 list_for_each_entry_safe(ndlp, next_ndlp,
1823 &vports[i]->fc_nodes,
1824 nlp_listp) {
e47c9093
JS
1825 if (!NLP_CHK_NODE_ACT(ndlp))
1826 continue;
87af33fe
JS
1827 if (ndlp->nlp_state == NLP_STE_UNUSED_NODE)
1828 continue;
1829 if (ndlp->nlp_type & NLP_FABRIC) {
1830 lpfc_disc_state_machine(vports[i], ndlp,
1831 NULL, NLP_EVT_DEVICE_RECOVERY);
1832 lpfc_disc_state_machine(vports[i], ndlp,
1833 NULL, NLP_EVT_DEVICE_RM);
1834 }
1835 spin_lock_irq(shost->host_lock);
1836 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
1837 spin_unlock_irq(shost->host_lock);
1838 lpfc_unreg_rpi(vports[i], ndlp);
1839 }
1840 }
1841 }
09372820 1842 lpfc_destroy_vport_work_array(phba, vports);
dea3101e 1843
46fa311e
JS
1844 lpfc_sli_flush_mbox_queue(phba);
1845}
1846
e59058c4
JS
1847/**
1848 * lpfc_offline: Bring a HBA offline.
1849 * @phba: pointer to lpfc hba data structure.
1850 *
1851 * This routine actually brings a HBA offline. It stops all the timers
1852 * associated with the HBA, brings down the SLI layer, and eventually
1853 * marks the HBA as in offline state for the upper layer protocol.
1854 **/
46fa311e 1855void
2e0fef85 1856lpfc_offline(struct lpfc_hba *phba)
46fa311e 1857{
549e55cd
JS
1858 struct Scsi_Host *shost;
1859 struct lpfc_vport **vports;
1860 int i;
46fa311e 1861
549e55cd 1862 if (phba->pport->fc_flag & FC_OFFLINE_MODE)
46fa311e 1863 return;
688a8863 1864
dea3101e 1865 /* stop all timers associated with this hba */
92d7f7b0 1866 lpfc_stop_phba_timers(phba);
51ef4c26
JS
1867 vports = lpfc_create_vport_work_array(phba);
1868 if (vports != NULL)
09372820 1869 for(i = 0; i <= phba->max_vpi && vports[i] != NULL; i++)
51ef4c26 1870 lpfc_stop_vport_timers(vports[i]);
09372820 1871 lpfc_destroy_vport_work_array(phba, vports);
92d7f7b0 1872 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
e8b62011 1873 "0460 Bring Adapter offline\n");
dea3101e
JB
1874 /* Bring down the SLI Layer and cleanup. The HBA is offline
1875 now. */
1876 lpfc_sli_hba_down(phba);
92d7f7b0 1877 spin_lock_irq(&phba->hbalock);
7054a606 1878 phba->work_ha = 0;
92d7f7b0 1879 spin_unlock_irq(&phba->hbalock);
549e55cd
JS
1880 vports = lpfc_create_vport_work_array(phba);
1881 if (vports != NULL)
09372820 1882 for(i = 0; i <= phba->max_vpi && vports[i] != NULL; i++) {
549e55cd 1883 shost = lpfc_shost_from_vport(vports[i]);
549e55cd
JS
1884 spin_lock_irq(shost->host_lock);
1885 vports[i]->work_port_events = 0;
1886 vports[i]->fc_flag |= FC_OFFLINE_MODE;
1887 spin_unlock_irq(shost->host_lock);
1888 }
09372820 1889 lpfc_destroy_vport_work_array(phba, vports);
dea3101e
JB
1890}
1891
e59058c4
JS
1892/**
1893 * lpfc_scsi_free: Free all the SCSI buffers and IOCBs from driver lists.
1894 * @phba: pointer to lpfc hba data structure.
1895 *
1896 * This routine is to free all the SCSI buffers and IOCBs from the driver
1897 * list back to kernel. It is called from lpfc_pci_remove_one to free
1898 * the internal resources before the device is removed from the system.
1899 *
1900 * Return codes
1901 * 0 - successful (for now, it always returns 0)
1902 **/
dea3101e 1903static int
2e0fef85 1904lpfc_scsi_free(struct lpfc_hba *phba)
dea3101e
JB
1905{
1906 struct lpfc_scsi_buf *sb, *sb_next;
1907 struct lpfc_iocbq *io, *io_next;
1908
2e0fef85 1909 spin_lock_irq(&phba->hbalock);
dea3101e
JB
1910 /* Release all the lpfc_scsi_bufs maintained by this host. */
1911 list_for_each_entry_safe(sb, sb_next, &phba->lpfc_scsi_buf_list, list) {
1912 list_del(&sb->list);
1913 pci_pool_free(phba->lpfc_scsi_dma_buf_pool, sb->data,
92d7f7b0 1914 sb->dma_handle);
dea3101e
JB
1915 kfree(sb);
1916 phba->total_scsi_bufs--;
1917 }
1918
1919 /* Release all the lpfc_iocbq entries maintained by this host. */
1920 list_for_each_entry_safe(io, io_next, &phba->lpfc_iocb_list, list) {
1921 list_del(&io->list);
1922 kfree(io);
1923 phba->total_iocbq_bufs--;
1924 }
1925
2e0fef85 1926 spin_unlock_irq(&phba->hbalock);
dea3101e
JB
1927
1928 return 0;
1929}
1930
e59058c4
JS
1931/**
1932 * lpfc_create_port: Create an FC port.
1933 * @phba: pointer to lpfc hba data structure.
1934 * @instance: a unique integer ID to this FC port.
1935 * @dev: pointer to the device data structure.
1936 *
1937 * This routine creates a FC port for the upper layer protocol. The FC port
1938 * can be created on top of either a physical port or a virtual port provided
1939 * by the HBA. This routine also allocates a SCSI host data structure (shost)
1940 * and associates the FC port created before adding the shost into the SCSI
1941 * layer.
1942 *
1943 * Return codes
1944 * @vport - pointer to the virtual N_Port data structure.
1945 * NULL - port create failed.
1946 **/
2e0fef85 1947struct lpfc_vport *
3de2a653 1948lpfc_create_port(struct lpfc_hba *phba, int instance, struct device *dev)
47a8617c 1949{
2e0fef85
JS
1950 struct lpfc_vport *vport;
1951 struct Scsi_Host *shost;
1952 int error = 0;
47a8617c 1953
3de2a653
JS
1954 if (dev != &phba->pcidev->dev)
1955 shost = scsi_host_alloc(&lpfc_vport_template,
1956 sizeof(struct lpfc_vport));
1957 else
1958 shost = scsi_host_alloc(&lpfc_template,
1959 sizeof(struct lpfc_vport));
2e0fef85
JS
1960 if (!shost)
1961 goto out;
47a8617c 1962
2e0fef85
JS
1963 vport = (struct lpfc_vport *) shost->hostdata;
1964 vport->phba = phba;
2e0fef85 1965 vport->load_flag |= FC_LOADING;
92d7f7b0 1966 vport->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
7f5f3d0d 1967 vport->fc_rscn_flush = 0;
47a8617c 1968
3de2a653 1969 lpfc_get_vport_cfgparam(vport);
2e0fef85
JS
1970 shost->unique_id = instance;
1971 shost->max_id = LPFC_MAX_TARGET;
3de2a653 1972 shost->max_lun = vport->cfg_max_luns;
2e0fef85
JS
1973 shost->this_id = -1;
1974 shost->max_cmd_len = 16;
47a8617c 1975 /*
2e0fef85
JS
1976 * Set initial can_queue value since 0 is no longer supported and
1977 * scsi_add_host will fail. This will be adjusted later based on the
1978 * max xri value determined in hba setup.
47a8617c 1979 */
2e0fef85 1980 shost->can_queue = phba->cfg_hba_queue_depth - 10;
3de2a653 1981 if (dev != &phba->pcidev->dev) {
92d7f7b0
JS
1982 shost->transportt = lpfc_vport_transport_template;
1983 vport->port_type = LPFC_NPIV_PORT;
1984 } else {
1985 shost->transportt = lpfc_transport_template;
1986 vport->port_type = LPFC_PHYSICAL_PORT;
1987 }
47a8617c 1988
2e0fef85
JS
1989 /* Initialize all internally managed lists. */
1990 INIT_LIST_HEAD(&vport->fc_nodes);
1991 spin_lock_init(&vport->work_port_lock);
47a8617c 1992
2e0fef85
JS
1993 init_timer(&vport->fc_disctmo);
1994 vport->fc_disctmo.function = lpfc_disc_timeout;
92d7f7b0 1995 vport->fc_disctmo.data = (unsigned long)vport;
47a8617c 1996
2e0fef85
JS
1997 init_timer(&vport->fc_fdmitmo);
1998 vport->fc_fdmitmo.function = lpfc_fdmi_tmo;
92d7f7b0 1999 vport->fc_fdmitmo.data = (unsigned long)vport;
47a8617c 2000
2e0fef85
JS
2001 init_timer(&vport->els_tmofunc);
2002 vport->els_tmofunc.function = lpfc_els_timeout;
92d7f7b0 2003 vport->els_tmofunc.data = (unsigned long)vport;
47a8617c 2004
3de2a653 2005 error = scsi_add_host(shost, dev);
2e0fef85
JS
2006 if (error)
2007 goto out_put_shost;
47a8617c 2008
549e55cd 2009 spin_lock_irq(&phba->hbalock);
2e0fef85 2010 list_add_tail(&vport->listentry, &phba->port_list);
549e55cd 2011 spin_unlock_irq(&phba->hbalock);
2e0fef85 2012 return vport;
47a8617c 2013
2e0fef85
JS
2014out_put_shost:
2015 scsi_host_put(shost);
2016out:
2017 return NULL;
47a8617c
JS
2018}
2019
e59058c4
JS
2020/**
2021 * destroy_port: Destroy an FC port.
2022 * @vport: pointer to an lpfc virtual N_Port data structure.
2023 *
2024 * This routine destroys a FC port from the upper layer protocol. All the
2025 * resources associated with the port are released.
2026 **/
2e0fef85
JS
2027void
2028destroy_port(struct lpfc_vport *vport)
47a8617c 2029{
92d7f7b0
JS
2030 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2031 struct lpfc_hba *phba = vport->phba;
47a8617c 2032
92d7f7b0 2033 kfree(vport->vname);
47a8617c 2034
858c9f6c 2035 lpfc_debugfs_terminate(vport);
92d7f7b0
JS
2036 fc_remove_host(shost);
2037 scsi_remove_host(shost);
47a8617c 2038
92d7f7b0
JS
2039 spin_lock_irq(&phba->hbalock);
2040 list_del_init(&vport->listentry);
2041 spin_unlock_irq(&phba->hbalock);
47a8617c 2042
92d7f7b0 2043 lpfc_cleanup(vport);
47a8617c 2044 return;
47a8617c
JS
2045}
2046
e59058c4
JS
2047/**
2048 * lpfc_get_instance: Get a unique integer ID.
2049 *
2050 * This routine allocates a unique integer ID from lpfc_hba_index pool. It
2051 * uses the kernel idr facility to perform the task.
2052 *
2053 * Return codes:
2054 * instance - a unique integer ID allocated as the new instance.
2055 * -1 - lpfc get instance failed.
2056 **/
92d7f7b0
JS
2057int
2058lpfc_get_instance(void)
2059{
2060 int instance = 0;
47a8617c 2061
92d7f7b0
JS
2062 /* Assign an unused number */
2063 if (!idr_pre_get(&lpfc_hba_index, GFP_KERNEL))
2064 return -1;
2065 if (idr_get_new(&lpfc_hba_index, NULL, &instance))
2066 return -1;
2067 return instance;
47a8617c
JS
2068}
2069
e59058c4
JS
2070/**
2071 * lpfc_scan_finished: method for SCSI layer to detect whether scan is done.
2072 * @shost: pointer to SCSI host data structure.
2073 * @time: elapsed time of the scan in jiffies.
2074 *
2075 * This routine is called by the SCSI layer with a SCSI host to determine
2076 * whether the scan host is finished.
2077 *
2078 * Note: there is no scan_start function as adapter initialization will have
2079 * asynchronously kicked off the link initialization.
2080 *
2081 * Return codes
2082 * 0 - SCSI host scan is not over yet.
2083 * 1 - SCSI host scan is over.
2084 **/
47a8617c
JS
2085int lpfc_scan_finished(struct Scsi_Host *shost, unsigned long time)
2086{
2e0fef85
JS
2087 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
2088 struct lpfc_hba *phba = vport->phba;
858c9f6c 2089 int stat = 0;
47a8617c 2090
858c9f6c
JS
2091 spin_lock_irq(shost->host_lock);
2092
51ef4c26 2093 if (vport->load_flag & FC_UNLOADING) {
858c9f6c
JS
2094 stat = 1;
2095 goto finished;
2096 }
2e0fef85
JS
2097 if (time >= 30 * HZ) {
2098 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
e8b62011
JS
2099 "0461 Scanning longer than 30 "
2100 "seconds. Continuing initialization\n");
858c9f6c 2101 stat = 1;
47a8617c 2102 goto finished;
2e0fef85
JS
2103 }
2104 if (time >= 15 * HZ && phba->link_state <= LPFC_LINK_DOWN) {
2105 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
e8b62011
JS
2106 "0465 Link down longer than 15 "
2107 "seconds. Continuing initialization\n");
858c9f6c 2108 stat = 1;
47a8617c 2109 goto finished;
2e0fef85 2110 }
47a8617c 2111
2e0fef85 2112 if (vport->port_state != LPFC_VPORT_READY)
858c9f6c 2113 goto finished;
2e0fef85 2114 if (vport->num_disc_nodes || vport->fc_prli_sent)
858c9f6c 2115 goto finished;
2e0fef85 2116 if (vport->fc_map_cnt == 0 && time < 2 * HZ)
858c9f6c 2117 goto finished;
2e0fef85 2118 if ((phba->sli.sli_flag & LPFC_SLI_MBOX_ACTIVE) != 0)
858c9f6c
JS
2119 goto finished;
2120
2121 stat = 1;
47a8617c
JS
2122
2123finished:
858c9f6c
JS
2124 spin_unlock_irq(shost->host_lock);
2125 return stat;
92d7f7b0 2126}
47a8617c 2127
e59058c4
JS
2128/**
2129 * lpfc_host_attrib_init: Initialize SCSI host attributes on a FC port.
2130 * @shost: pointer to SCSI host data structure.
2131 *
2132 * This routine initializes a given SCSI host attributes on a FC port. The
2133 * SCSI host can be either on top of a physical port or a virtual port.
2134 **/
92d7f7b0
JS
2135void lpfc_host_attrib_init(struct Scsi_Host *shost)
2136{
2137 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
2138 struct lpfc_hba *phba = vport->phba;
47a8617c 2139 /*
2e0fef85 2140 * Set fixed host attributes. Must done after lpfc_sli_hba_setup().
47a8617c
JS
2141 */
2142
2e0fef85
JS
2143 fc_host_node_name(shost) = wwn_to_u64(vport->fc_nodename.u.wwn);
2144 fc_host_port_name(shost) = wwn_to_u64(vport->fc_portname.u.wwn);
47a8617c
JS
2145 fc_host_supported_classes(shost) = FC_COS_CLASS3;
2146
2147 memset(fc_host_supported_fc4s(shost), 0,
2e0fef85 2148 sizeof(fc_host_supported_fc4s(shost)));
47a8617c
JS
2149 fc_host_supported_fc4s(shost)[2] = 1;
2150 fc_host_supported_fc4s(shost)[7] = 1;
2151
92d7f7b0
JS
2152 lpfc_vport_symbolic_node_name(vport, fc_host_symbolic_name(shost),
2153 sizeof fc_host_symbolic_name(shost));
47a8617c
JS
2154
2155 fc_host_supported_speeds(shost) = 0;
2156 if (phba->lmt & LMT_10Gb)
2157 fc_host_supported_speeds(shost) |= FC_PORTSPEED_10GBIT;
a8adb832
JS
2158 if (phba->lmt & LMT_8Gb)
2159 fc_host_supported_speeds(shost) |= FC_PORTSPEED_8GBIT;
47a8617c
JS
2160 if (phba->lmt & LMT_4Gb)
2161 fc_host_supported_speeds(shost) |= FC_PORTSPEED_4GBIT;
2162 if (phba->lmt & LMT_2Gb)
2163 fc_host_supported_speeds(shost) |= FC_PORTSPEED_2GBIT;
2164 if (phba->lmt & LMT_1Gb)
2165 fc_host_supported_speeds(shost) |= FC_PORTSPEED_1GBIT;
2166
2167 fc_host_maxframe_size(shost) =
2e0fef85
JS
2168 (((uint32_t) vport->fc_sparam.cmn.bbRcvSizeMsb & 0x0F) << 8) |
2169 (uint32_t) vport->fc_sparam.cmn.bbRcvSizeLsb;
47a8617c
JS
2170
2171 /* This value is also unchanging */
2172 memset(fc_host_active_fc4s(shost), 0,
2e0fef85 2173 sizeof(fc_host_active_fc4s(shost)));
47a8617c
JS
2174 fc_host_active_fc4s(shost)[2] = 1;
2175 fc_host_active_fc4s(shost)[7] = 1;
2176
92d7f7b0 2177 fc_host_max_npiv_vports(shost) = phba->max_vpi;
47a8617c 2178 spin_lock_irq(shost->host_lock);
51ef4c26 2179 vport->load_flag &= ~FC_LOADING;
47a8617c 2180 spin_unlock_irq(shost->host_lock);
47a8617c 2181}
dea3101e 2182
e59058c4
JS
2183/**
2184 * lpfc_enable_msix: Enable MSI-X interrupt mode.
2185 * @phba: pointer to lpfc hba data structure.
2186 *
2187 * This routine is invoked to enable the MSI-X interrupt vectors. The kernel
2188 * function pci_enable_msix() is called to enable the MSI-X vectors. Note that
2189 * pci_enable_msix(), once invoked, enables either all or nothing, depending
2190 * on the current availability of PCI vector resources. The device driver is
2191 * responsible for calling the individual request_irq() to register each MSI-X
2192 * vector with a interrupt handler, which is done in this function. Note that
2193 * later when device is unloading, the driver should always call free_irq()
2194 * on all MSI-X vectors it has done request_irq() on before calling
2195 * pci_disable_msix(). Failure to do so results in a BUG_ON() and a device
2196 * will be left with MSI-X enabled and leaks its vectors.
2197 *
2198 * Return codes
2199 * 0 - sucessful
2200 * other values - error
2201 **/
db2378e0
JS
2202static int
2203lpfc_enable_msix(struct lpfc_hba *phba)
2204{
9399627f
JS
2205 int rc, i;
2206 LPFC_MBOXQ_t *pmb;
db2378e0 2207
9399627f
JS
2208 /* Set up MSI-X multi-message vectors */
2209 for (i = 0; i < LPFC_MSIX_VECTORS; i++)
2210 phba->msix_entries[i].entry = i;
db2378e0 2211
9399627f
JS
2212 /* Configure MSI-X capability structure */
2213 rc = pci_enable_msix(phba->pcidev, phba->msix_entries,
db2378e0 2214 ARRAY_SIZE(phba->msix_entries));
9399627f 2215 if (rc) {
db2378e0
JS
2216 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
2217 "0420 Enable MSI-X failed (%d), continuing "
9399627f
JS
2218 "with MSI\n", rc);
2219 goto msi_fail_out;
2220 } else
2221 for (i = 0; i < LPFC_MSIX_VECTORS; i++)
2222 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
2223 "0477 MSI-X entry[%d]: vector=x%x "
2224 "message=%d\n", i,
2225 phba->msix_entries[i].vector,
2226 phba->msix_entries[i].entry);
2227 /*
2228 * Assign MSI-X vectors to interrupt handlers
2229 */
2230
2231 /* vector-0 is associated to slow-path handler */
2232 rc = request_irq(phba->msix_entries[0].vector, &lpfc_sp_intr_handler,
2233 IRQF_SHARED, LPFC_SP_DRIVER_HANDLER_NAME, phba);
2234 if (rc) {
2235 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
2236 "0421 MSI-X slow-path request_irq failed "
2237 "(%d), continuing with MSI\n", rc);
2238 goto msi_fail_out;
db2378e0
JS
2239 }
2240
9399627f
JS
2241 /* vector-1 is associated to fast-path handler */
2242 rc = request_irq(phba->msix_entries[1].vector, &lpfc_fp_intr_handler,
2243 IRQF_SHARED, LPFC_FP_DRIVER_HANDLER_NAME, phba);
2244
2245 if (rc) {
db2378e0 2246 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
9399627f
JS
2247 "0429 MSI-X fast-path request_irq failed "
2248 "(%d), continuing with MSI\n", rc);
2249 goto irq_fail_out;
db2378e0 2250 }
9399627f
JS
2251
2252 /*
2253 * Configure HBA MSI-X attention conditions to messages
2254 */
2255 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
2256
2257 if (!pmb) {
2258 rc = -ENOMEM;
2259 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
2260 "0474 Unable to allocate memory for issuing "
2261 "MBOX_CONFIG_MSI command\n");
2262 goto mem_fail_out;
2263 }
2264 rc = lpfc_config_msi(phba, pmb);
2265 if (rc)
2266 goto mbx_fail_out;
2267 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
2268 if (rc != MBX_SUCCESS) {
2269 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX,
2270 "0351 Config MSI mailbox command failed, "
2271 "mbxCmd x%x, mbxStatus x%x\n",
2272 pmb->mb.mbxCommand, pmb->mb.mbxStatus);
2273 goto mbx_fail_out;
2274 }
2275
2276 /* Free memory allocated for mailbox command */
2277 mempool_free(pmb, phba->mbox_mem_pool);
2278 return rc;
2279
2280mbx_fail_out:
2281 /* Free memory allocated for mailbox command */
2282 mempool_free(pmb, phba->mbox_mem_pool);
2283
2284mem_fail_out:
2285 /* free the irq already requested */
2286 free_irq(phba->msix_entries[1].vector, phba);
2287
2288irq_fail_out:
2289 /* free the irq already requested */
2290 free_irq(phba->msix_entries[0].vector, phba);
2291
2292msi_fail_out:
2293 /* Unconfigure MSI-X capability structure */
2294 pci_disable_msix(phba->pcidev);
2295 return rc;
db2378e0
JS
2296}
2297
e59058c4
JS
2298/**
2299 * lpfc_disable_msix: Disable MSI-X interrupt mode.
2300 * @phba: pointer to lpfc hba data structure.
2301 *
2302 * This routine is invoked to release the MSI-X vectors and then disable the
2303 * MSI-X interrupt mode.
2304 **/
db2378e0
JS
2305static void
2306lpfc_disable_msix(struct lpfc_hba *phba)
2307{
9399627f
JS
2308 int i;
2309
2310 /* Free up MSI-X multi-message vectors */
2311 for (i = 0; i < LPFC_MSIX_VECTORS; i++)
2312 free_irq(phba->msix_entries[i].vector, phba);
2313 /* Disable MSI-X */
db2378e0
JS
2314 pci_disable_msix(phba->pcidev);
2315}
2316
e59058c4
JS
2317/**
2318 * lpfc_pci_probe_one: lpfc PCI probe func to register device to PCI subsystem.
2319 * @pdev: pointer to PCI device
2320 * @pid: pointer to PCI device identifier
2321 *
2322 * This routine is to be registered to the kernel's PCI subsystem. When an
2323 * Emulex HBA is presented in PCI bus, the kernel PCI subsystem looks at
2324 * PCI device-specific information of the device and driver to see if the
2325 * driver state that it can support this kind of device. If the match is
2326 * successful, the driver core invokes this routine. If this routine
2327 * determines it can claim the HBA, it does all the initialization that it
2328 * needs to do to handle the HBA properly.
2329 *
2330 * Return code
2331 * 0 - driver can claim the device
2332 * negative value - driver can not claim the device
2333 **/
dea3101e
JB
2334static int __devinit
2335lpfc_pci_probe_one(struct pci_dev *pdev, const struct pci_device_id *pid)
2336{
2e0fef85
JS
2337 struct lpfc_vport *vport = NULL;
2338 struct lpfc_hba *phba;
2339 struct lpfc_sli *psli;
dea3101e 2340 struct lpfc_iocbq *iocbq_entry = NULL, *iocbq_next = NULL;
2e0fef85 2341 struct Scsi_Host *shost = NULL;
51ef4c26 2342 void *ptr;
dea3101e 2343 unsigned long bar0map_len, bar2map_len;
98c9ea5c 2344 int error = -ENODEV, retval;
51ef4c26 2345 int i, hbq_count;
604a3e30 2346 uint16_t iotag;
8a4df120 2347 int bars = pci_select_bars(pdev, IORESOURCE_MEM);
dea3101e 2348
d5f78fb0 2349 if (pci_enable_device_mem(pdev))
dea3101e 2350 goto out;
8a4df120 2351 if (pci_request_selected_regions(pdev, bars, LPFC_DRIVER_NAME))
dea3101e
JB
2352 goto out_disable_device;
2353
2e0fef85
JS
2354 phba = kzalloc(sizeof (struct lpfc_hba), GFP_KERNEL);
2355 if (!phba)
dea3101e
JB
2356 goto out_release_regions;
2357
2e0fef85 2358 spin_lock_init(&phba->hbalock);
dea3101e 2359
e47c9093
JS
2360 /* Initialize ndlp management spinlock */
2361 spin_lock_init(&phba->ndlp_lock);
2362
dea3101e
JB
2363 phba->pcidev = pdev;
2364
2365 /* Assign an unused board number */
92d7f7b0 2366 if ((phba->brd_no = lpfc_get_instance()) < 0)
2e0fef85 2367 goto out_free_phba;
dea3101e 2368
2e0fef85 2369 INIT_LIST_HEAD(&phba->port_list);
84774a4d 2370 init_waitqueue_head(&phba->wait_4_mlo_m_q);
2e0fef85
JS
2371 /*
2372 * Get all the module params for configuring this host and then
2373 * establish the host.
2374 */
2375 lpfc_get_cfgparam(phba);
92d7f7b0 2376 phba->max_vpi = LPFC_MAX_VPI;
dea3101e
JB
2377
2378 /* Initialize timers used by driver */
858c9f6c
JS
2379 init_timer(&phba->hb_tmofunc);
2380 phba->hb_tmofunc.function = lpfc_hb_timeout;
2381 phba->hb_tmofunc.data = (unsigned long)phba;
2382
dea3101e
JB
2383 psli = &phba->sli;
2384 init_timer(&psli->mbox_tmo);
2385 psli->mbox_tmo.function = lpfc_mbox_timeout;
2e0fef85 2386 psli->mbox_tmo.data = (unsigned long) phba;
875fbdfe
JSEC
2387 init_timer(&phba->fcp_poll_timer);
2388 phba->fcp_poll_timer.function = lpfc_poll_timeout;
2e0fef85 2389 phba->fcp_poll_timer.data = (unsigned long) phba;
92d7f7b0
JS
2390 init_timer(&phba->fabric_block_timer);
2391 phba->fabric_block_timer.function = lpfc_fabric_block_timeout;
2392 phba->fabric_block_timer.data = (unsigned long) phba;
9399627f
JS
2393 init_timer(&phba->eratt_poll);
2394 phba->eratt_poll.function = lpfc_poll_eratt;
2395 phba->eratt_poll.data = (unsigned long) phba;
dea3101e 2396
dea3101e 2397 pci_set_master(pdev);
694625c0 2398 pci_try_set_mwi(pdev);
dea3101e
JB
2399
2400 if (pci_set_dma_mask(phba->pcidev, DMA_64BIT_MASK) != 0)
2401 if (pci_set_dma_mask(phba->pcidev, DMA_32BIT_MASK) != 0)
2402 goto out_idr_remove;
2403
2404 /*
2405 * Get the bus address of Bar0 and Bar2 and the number of bytes
2406 * required by each mapping.
2407 */
2408 phba->pci_bar0_map = pci_resource_start(phba->pcidev, 0);
2409 bar0map_len = pci_resource_len(phba->pcidev, 0);
2410
2411 phba->pci_bar2_map = pci_resource_start(phba->pcidev, 2);
2412 bar2map_len = pci_resource_len(phba->pcidev, 2);
2413
901a920f 2414 /* Map HBA SLIM to a kernel virtual address. */
9399627f 2415 phba->slim_memmap_p = ioremap(phba->pci_bar0_map, bar0map_len);
901a920f
JW
2416 if (!phba->slim_memmap_p) {
2417 error = -ENODEV;
2418 dev_printk(KERN_ERR, &pdev->dev,
2419 "ioremap failed for SLIM memory.\n");
2420 goto out_idr_remove;
2421 }
2422
2423 /* Map HBA Control Registers to a kernel virtual address. */
dea3101e 2424 phba->ctrl_regs_memmap_p = ioremap(phba->pci_bar2_map, bar2map_len);
901a920f
JW
2425 if (!phba->ctrl_regs_memmap_p) {
2426 error = -ENODEV;
2427 dev_printk(KERN_ERR, &pdev->dev,
2428 "ioremap failed for HBA control registers.\n");
2429 goto out_iounmap_slim;
2430 }
dea3101e
JB
2431
2432 /* Allocate memory for SLI-2 structures */
34b02dcd
JS
2433 phba->slim2p.virt = dma_alloc_coherent(&phba->pcidev->dev,
2434 SLI2_SLIM_SIZE,
2435 &phba->slim2p.phys,
2436 GFP_KERNEL);
2437 if (!phba->slim2p.virt)
dea3101e
JB
2438 goto out_iounmap;
2439
34b02dcd 2440 memset(phba->slim2p.virt, 0, SLI2_SLIM_SIZE);
d7c255b2
JS
2441 phba->mbox = phba->slim2p.virt + offsetof(struct lpfc_sli2_slim, mbx);
2442 phba->pcb = (phba->slim2p.virt + offsetof(struct lpfc_sli2_slim, pcb));
2443 phba->IOCBs = (phba->slim2p.virt +
2444 offsetof(struct lpfc_sli2_slim, IOCBs));
dea3101e 2445
ed957684
JS
2446 phba->hbqslimp.virt = dma_alloc_coherent(&phba->pcidev->dev,
2447 lpfc_sli_hbq_size(),
2448 &phba->hbqslimp.phys,
2449 GFP_KERNEL);
2450 if (!phba->hbqslimp.virt)
2451 goto out_free_slim;
2452
51ef4c26
JS
2453 hbq_count = lpfc_sli_hbq_count();
2454 ptr = phba->hbqslimp.virt;
2455 for (i = 0; i < hbq_count; ++i) {
2456 phba->hbqs[i].hbq_virt = ptr;
2457 INIT_LIST_HEAD(&phba->hbqs[i].hbq_buffer_list);
2458 ptr += (lpfc_hbq_defs[i]->entry_count *
2459 sizeof(struct lpfc_hbq_entry));
2460 }
2461 phba->hbqs[LPFC_ELS_HBQ].hbq_alloc_buffer = lpfc_els_hbq_alloc;
2462 phba->hbqs[LPFC_ELS_HBQ].hbq_free_buffer = lpfc_els_hbq_free;
2463
ed957684
JS
2464 memset(phba->hbqslimp.virt, 0, lpfc_sli_hbq_size());
2465
3163f725
JS
2466 INIT_LIST_HEAD(&phba->hbqbuf_in_list);
2467
dea3101e
JB
2468 /* Initialize the SLI Layer to run with lpfc HBAs. */
2469 lpfc_sli_setup(phba);
2470 lpfc_sli_queue_setup(phba);
2471
98c9ea5c
JS
2472 retval = lpfc_mem_alloc(phba);
2473 if (retval) {
2474 error = retval;
ed957684 2475 goto out_free_hbqslimp;
98c9ea5c 2476 }
dea3101e
JB
2477
2478 /* Initialize and populate the iocb list per host. */
2479 INIT_LIST_HEAD(&phba->lpfc_iocb_list);
2480 for (i = 0; i < LPFC_IOCB_LIST_CNT; i++) {
dd00cc48 2481 iocbq_entry = kzalloc(sizeof(struct lpfc_iocbq), GFP_KERNEL);
dea3101e
JB
2482 if (iocbq_entry == NULL) {
2483 printk(KERN_ERR "%s: only allocated %d iocbs of "
2484 "expected %d count. Unloading driver.\n",
cadbd4a5 2485 __func__, i, LPFC_IOCB_LIST_CNT);
dea3101e
JB
2486 error = -ENOMEM;
2487 goto out_free_iocbq;
2488 }
2489
604a3e30
JB
2490 iotag = lpfc_sli_next_iotag(phba, iocbq_entry);
2491 if (iotag == 0) {
2492 kfree (iocbq_entry);
2493 printk(KERN_ERR "%s: failed to allocate IOTAG. "
2494 "Unloading driver.\n",
cadbd4a5 2495 __func__);
604a3e30
JB
2496 error = -ENOMEM;
2497 goto out_free_iocbq;
2498 }
2e0fef85
JS
2499
2500 spin_lock_irq(&phba->hbalock);
dea3101e
JB
2501 list_add(&iocbq_entry->list, &phba->lpfc_iocb_list);
2502 phba->total_iocbq_bufs++;
2e0fef85 2503 spin_unlock_irq(&phba->hbalock);
dea3101e
JB
2504 }
2505
2506 /* Initialize HBA structure */
2507 phba->fc_edtov = FF_DEF_EDTOV;
2508 phba->fc_ratov = FF_DEF_RATOV;
2509 phba->fc_altov = FF_DEF_ALTOV;
2510 phba->fc_arbtov = FF_DEF_ARBTOV;
2511
2512 INIT_LIST_HEAD(&phba->work_list);
9399627f 2513 phba->work_ha_mask = (HA_ERATT | HA_MBATT | HA_LATT);
dea3101e
JB
2514 phba->work_ha_mask |= (HA_RXMASK << (LPFC_ELS_RING * 4));
2515
5e9d9b82
JS
2516 /* Initialize the wait queue head for the kernel thread */
2517 init_waitqueue_head(&phba->work_waitq);
2518
dea3101e
JB
2519 /* Startup the kernel thread for this host adapter. */
2520 phba->worker_thread = kthread_run(lpfc_do_work, phba,
2521 "lpfc_worker_%d", phba->brd_no);
2522 if (IS_ERR(phba->worker_thread)) {
2523 error = PTR_ERR(phba->worker_thread);
2524 goto out_free_iocbq;
2525 }
2526
dea3101e 2527 /* Initialize the list of scsi buffers used by driver for scsi IO. */
875fbdfe 2528 spin_lock_init(&phba->scsi_buf_list_lock);
dea3101e
JB
2529 INIT_LIST_HEAD(&phba->lpfc_scsi_buf_list);
2530
92d7f7b0
JS
2531 /* Initialize list of fabric iocbs */
2532 INIT_LIST_HEAD(&phba->fabric_iocb_list);
2533
0ff10d46
JS
2534 /* Initialize list to save ELS buffers */
2535 INIT_LIST_HEAD(&phba->elsbuf);
2536
3de2a653 2537 vport = lpfc_create_port(phba, phba->brd_no, &phba->pcidev->dev);
2e0fef85
JS
2538 if (!vport)
2539 goto out_kthread_stop;
2540
2541 shost = lpfc_shost_from_vport(vport);
2e0fef85 2542 phba->pport = vport;
858c9f6c 2543 lpfc_debugfs_initialize(vport);
2e0fef85 2544
92d7f7b0 2545 pci_set_drvdata(pdev, shost);
db2378e0
JS
2546 phba->intr_type = NONE;
2547
9399627f
JS
2548 phba->MBslimaddr = phba->slim_memmap_p;
2549 phba->HAregaddr = phba->ctrl_regs_memmap_p + HA_REG_OFFSET;
2550 phba->CAregaddr = phba->ctrl_regs_memmap_p + CA_REG_OFFSET;
2551 phba->HSregaddr = phba->ctrl_regs_memmap_p + HS_REG_OFFSET;
2552 phba->HCregaddr = phba->ctrl_regs_memmap_p + HC_REG_OFFSET;
2553
2554 /* Configure and enable interrupt */
db2378e0 2555 if (phba->cfg_use_msi == 2) {
9399627f
JS
2556 /* Need to issue conf_port mbox cmd before conf_msi mbox cmd */
2557 error = lpfc_sli_config_port(phba, 3);
2558 if (error)
2559 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
2560 "0427 Firmware not capable of SLI 3 mode.\n");
2561 else {
2562 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
2563 "0426 Firmware capable of SLI 3 mode.\n");
2564 /* Now, try to enable MSI-X interrupt mode */
2565 error = lpfc_enable_msix(phba);
2566 if (!error) {
2567 phba->intr_type = MSIX;
2568 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
2569 "0430 enable MSI-X mode.\n");
2570 }
2571 }
db2378e0 2572 }
dea3101e 2573
db2378e0
JS
2574 /* Fallback to MSI if MSI-X initialization failed */
2575 if (phba->cfg_use_msi >= 1 && phba->intr_type == NONE) {
98c9ea5c 2576 retval = pci_enable_msi(phba->pcidev);
9399627f 2577 if (!retval) {
db2378e0 2578 phba->intr_type = MSI;
e8b62011 2579 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
9399627f
JS
2580 "0473 enable MSI mode.\n");
2581 } else
2582 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
2583 "0452 enable IRQ mode.\n");
4ff43246
JS
2584 }
2585
db2378e0
JS
2586 /* MSI-X is the only case the doesn't need to call request_irq */
2587 if (phba->intr_type != MSIX) {
2588 retval = request_irq(phba->pcidev->irq, lpfc_intr_handler,
2589 IRQF_SHARED, LPFC_DRIVER_NAME, phba);
2590 if (retval) {
2591 lpfc_printf_log(phba, KERN_ERR, LOG_INIT, "0451 Enable "
2592 "interrupt handler failed\n");
2593 error = retval;
2594 goto out_disable_msi;
2595 } else if (phba->intr_type != MSI)
2596 phba->intr_type = INTx;
dea3101e 2597 }
dea3101e 2598
98c9ea5c 2599 if (lpfc_alloc_sysfs_attr(vport)) {
9399627f
JS
2600 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
2601 "1476 Failed to allocate sysfs attr\n");
98c9ea5c 2602 error = -ENOMEM;
dea3101e 2603 goto out_free_irq;
98c9ea5c 2604 }
875fbdfe 2605
98c9ea5c 2606 if (lpfc_sli_hba_setup(phba)) {
9399627f
JS
2607 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
2608 "1477 Failed to set up hba\n");
98c9ea5c 2609 error = -ENODEV;
858c9f6c 2610 goto out_remove_device;
98c9ea5c 2611 }
858c9f6c
JS
2612
2613 /*
2614 * hba setup may have changed the hba_queue_depth so we need to adjust
2615 * the value of can_queue.
2616 */
2617 shost->can_queue = phba->cfg_hba_queue_depth - 10;
2618
2619 lpfc_host_attrib_init(shost);
2620
2e0fef85
JS
2621 if (phba->cfg_poll & DISABLE_FCP_RING_INT) {
2622 spin_lock_irq(shost->host_lock);
2623 lpfc_poll_start_timer(phba);
2624 spin_unlock_irq(shost->host_lock);
2625 }
dea3101e 2626
9399627f
JS
2627 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
2628 "0428 Perform SCSI scan\n");
858c9f6c 2629 scsi_scan_host(shost);
dea3101e 2630
dea3101e
JB
2631 return 0;
2632
858c9f6c
JS
2633out_remove_device:
2634 lpfc_free_sysfs_attr(vport);
2635 spin_lock_irq(shost->host_lock);
51ef4c26 2636 vport->load_flag |= FC_UNLOADING;
858c9f6c 2637 spin_unlock_irq(shost->host_lock);
dea3101e 2638out_free_irq:
92d7f7b0 2639 lpfc_stop_phba_timers(phba);
2e0fef85 2640 phba->pport->work_port_events = 0;
db2378e0
JS
2641
2642 if (phba->intr_type == MSIX)
2643 lpfc_disable_msix(phba);
2644 else
2645 free_irq(phba->pcidev->irq, phba);
2646
92d7f7b0 2647out_disable_msi:
db2378e0 2648 if (phba->intr_type == MSI)
51ef4c26 2649 pci_disable_msi(phba->pcidev);
2e0fef85 2650 destroy_port(vport);
dea3101e
JB
2651out_kthread_stop:
2652 kthread_stop(phba->worker_thread);
2653out_free_iocbq:
2654 list_for_each_entry_safe(iocbq_entry, iocbq_next,
2655 &phba->lpfc_iocb_list, list) {
dea3101e
JB
2656 kfree(iocbq_entry);
2657 phba->total_iocbq_bufs--;
dea3101e
JB
2658 }
2659 lpfc_mem_free(phba);
ed957684 2660out_free_hbqslimp:
34b02dcd
JS
2661 dma_free_coherent(&pdev->dev, lpfc_sli_hbq_size(),
2662 phba->hbqslimp.virt, phba->hbqslimp.phys);
dea3101e 2663out_free_slim:
34b02dcd
JS
2664 dma_free_coherent(&pdev->dev, SLI2_SLIM_SIZE,
2665 phba->slim2p.virt, phba->slim2p.phys);
dea3101e
JB
2666out_iounmap:
2667 iounmap(phba->ctrl_regs_memmap_p);
901a920f 2668out_iounmap_slim:
dea3101e
JB
2669 iounmap(phba->slim_memmap_p);
2670out_idr_remove:
2671 idr_remove(&lpfc_hba_index, phba->brd_no);
2e0fef85
JS
2672out_free_phba:
2673 kfree(phba);
dea3101e 2674out_release_regions:
8a4df120 2675 pci_release_selected_regions(pdev, bars);
dea3101e
JB
2676out_disable_device:
2677 pci_disable_device(pdev);
2678out:
defbcf11 2679 pci_set_drvdata(pdev, NULL);
858c9f6c
JS
2680 if (shost)
2681 scsi_host_put(shost);
dea3101e
JB
2682 return error;
2683}
2684
e59058c4
JS
2685/**
2686 * lpfc_pci_remove_one: lpfc PCI func to unregister device from PCI subsystem.
2687 * @pdev: pointer to PCI device
2688 *
2689 * This routine is to be registered to the kernel's PCI subsystem. When an
2690 * Emulex HBA is removed from PCI bus. It perform all the necessary cleanup
2691 * for the HBA device to be removed from the PCI subsystem properly.
2692 **/
dea3101e
JB
2693static void __devexit
2694lpfc_pci_remove_one(struct pci_dev *pdev)
2695{
2e0fef85
JS
2696 struct Scsi_Host *shost = pci_get_drvdata(pdev);
2697 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
2698 struct lpfc_hba *phba = vport->phba;
8a4df120
TK
2699 int bars = pci_select_bars(pdev, IORESOURCE_MEM);
2700
549e55cd 2701 spin_lock_irq(&phba->hbalock);
51ef4c26 2702 vport->load_flag |= FC_UNLOADING;
549e55cd 2703 spin_unlock_irq(&phba->hbalock);
2e0fef85 2704
858c9f6c
JS
2705 kfree(vport->vname);
2706 lpfc_free_sysfs_attr(vport);
2707
09372820
JS
2708 kthread_stop(phba->worker_thread);
2709
858c9f6c
JS
2710 fc_remove_host(shost);
2711 scsi_remove_host(shost);
87af33fe
JS
2712 lpfc_cleanup(vport);
2713
2e0fef85
JS
2714 /*
2715 * Bring down the SLI Layer. This step disable all interrupts,
2716 * clears the rings, discards all mailbox commands, and resets
2717 * the HBA.
2718 */
2719 lpfc_sli_hba_down(phba);
2720 lpfc_sli_brdrestart(phba);
2721
92d7f7b0 2722 lpfc_stop_phba_timers(phba);
858c9f6c
JS
2723 spin_lock_irq(&phba->hbalock);
2724 list_del_init(&vport->listentry);
2725 spin_unlock_irq(&phba->hbalock);
2726
858c9f6c 2727 lpfc_debugfs_terminate(vport);
2e0fef85 2728
db2378e0
JS
2729 if (phba->intr_type == MSIX)
2730 lpfc_disable_msix(phba);
2731 else {
2732 free_irq(phba->pcidev->irq, phba);
2733 if (phba->intr_type == MSI)
2734 pci_disable_msi(phba->pcidev);
2735 }
dea3101e
JB
2736
2737 pci_set_drvdata(pdev, NULL);
858c9f6c 2738 scsi_host_put(shost);
2e0fef85
JS
2739
2740 /*
2741 * Call scsi_free before mem_free since scsi bufs are released to their
2742 * corresponding pools here.
2743 */
2744 lpfc_scsi_free(phba);
2745 lpfc_mem_free(phba);
2746
34b02dcd
JS
2747 dma_free_coherent(&pdev->dev, lpfc_sli_hbq_size(),
2748 phba->hbqslimp.virt, phba->hbqslimp.phys);
ed957684 2749
2e0fef85
JS
2750 /* Free resources associated with SLI2 interface */
2751 dma_free_coherent(&pdev->dev, SLI2_SLIM_SIZE,
34b02dcd 2752 phba->slim2p.virt, phba->slim2p.phys);
2e0fef85
JS
2753
2754 /* unmap adapter SLIM and Control Registers */
2755 iounmap(phba->ctrl_regs_memmap_p);
2756 iounmap(phba->slim_memmap_p);
2757
2758 idr_remove(&lpfc_hba_index, phba->brd_no);
2759
2760 kfree(phba);
2761
8a4df120 2762 pci_release_selected_regions(pdev, bars);
2e0fef85 2763 pci_disable_device(pdev);
dea3101e
JB
2764}
2765
8d63f375 2766/**
e59058c4
JS
2767 * lpfc_io_error_detected: Driver method for handling PCI I/O error detected.
2768 * @pdev: pointer to PCI device.
2769 * @state: the current PCI connection state.
8d63f375 2770 *
e59058c4
JS
2771 * This routine is registered to the PCI subsystem for error handling. This
2772 * function is called by the PCI subsystem after a PCI bus error affecting
2773 * this device has been detected. When this function is invoked, it will
2774 * need to stop all the I/Os and interrupt(s) to the device. Once that is
2775 * done, it will return PCI_ERS_RESULT_NEED_RESET for the PCI subsystem to
2776 * perform proper recovery as desired.
2777 *
2778 * Return codes
2779 * PCI_ERS_RESULT_NEED_RESET - need to reset before recovery
2780 * PCI_ERS_RESULT_DISCONNECT - device could not be recovered
2781 **/
8d63f375
LV
2782static pci_ers_result_t lpfc_io_error_detected(struct pci_dev *pdev,
2783 pci_channel_state_t state)
2784{
51ef4c26
JS
2785 struct Scsi_Host *shost = pci_get_drvdata(pdev);
2786 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
8d63f375
LV
2787 struct lpfc_sli *psli = &phba->sli;
2788 struct lpfc_sli_ring *pring;
2789
a8e497d5
JS
2790 if (state == pci_channel_io_perm_failure) {
2791 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
2792 "0472 PCI channel I/O permanent failure\n");
2793 /* Block all SCSI devices' I/Os on the host */
2794 lpfc_scsi_dev_block(phba);
2795 /* Clean up all driver's outstanding SCSI I/Os */
2796 lpfc_sli_flush_fcp_rings(phba);
8d63f375 2797 return PCI_ERS_RESULT_DISCONNECT;
a8e497d5 2798 }
5daa49ef 2799
8d63f375
LV
2800 pci_disable_device(pdev);
2801 /*
2802 * There may be I/Os dropped by the firmware.
2803 * Error iocb (I/O) on txcmplq and let the SCSI layer
2804 * retry it after re-establishing link.
2805 */
2806 pring = &psli->ring[psli->fcp_ring];
2807 lpfc_sli_abort_iocb_ring(phba, pring);
2808
db2378e0
JS
2809 if (phba->intr_type == MSIX)
2810 lpfc_disable_msix(phba);
2811 else {
2812 free_irq(phba->pcidev->irq, phba);
2813 if (phba->intr_type == MSI)
2814 pci_disable_msi(phba->pcidev);
2815 }
51ef4c26 2816
8d63f375
LV
2817 /* Request a slot reset. */
2818 return PCI_ERS_RESULT_NEED_RESET;
2819}
2820
2821/**
e59058c4
JS
2822 * lpfc_io_slot_reset: Restart a PCI device from scratch.
2823 * @pdev: pointer to PCI device.
2824 *
2825 * This routine is registered to the PCI subsystem for error handling. This is
2826 * called after PCI bus has been reset to restart the PCI card from scratch,
2827 * as if from a cold-boot. During the PCI subsystem error recovery, after the
2828 * driver returns PCI_ERS_RESULT_NEED_RESET, the PCI subsystem will perform
2829 * proper error recovery and then call this routine before calling the .resume
2830 * method to recover the device. This function will initialize the HBA device,
2831 * enable the interrupt, but it will just put the HBA to offline state without
2832 * passing any I/O traffic.
8d63f375 2833 *
e59058c4
JS
2834 * Return codes
2835 * PCI_ERS_RESULT_RECOVERED - the device has been recovered
2836 * PCI_ERS_RESULT_DISCONNECT - device could not be recovered
8d63f375
LV
2837 */
2838static pci_ers_result_t lpfc_io_slot_reset(struct pci_dev *pdev)
2839{
51ef4c26
JS
2840 struct Scsi_Host *shost = pci_get_drvdata(pdev);
2841 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
8d63f375 2842 struct lpfc_sli *psli = &phba->sli;
9b379605 2843 int error, retval;
8d63f375
LV
2844
2845 dev_printk(KERN_INFO, &pdev->dev, "recovering from a slot reset.\n");
09483916 2846 if (pci_enable_device_mem(pdev)) {
8d63f375
LV
2847 printk(KERN_ERR "lpfc: Cannot re-enable "
2848 "PCI device after reset.\n");
2849 return PCI_ERS_RESULT_DISCONNECT;
2850 }
2851
2852 pci_set_master(pdev);
2853
92d7f7b0 2854 spin_lock_irq(&phba->hbalock);
8d63f375 2855 psli->sli_flag &= ~LPFC_SLI2_ACTIVE;
92d7f7b0 2856 spin_unlock_irq(&phba->hbalock);
8d63f375 2857
9b379605
JS
2858 /* Enable configured interrupt method */
2859 phba->intr_type = NONE;
2860 if (phba->cfg_use_msi == 2) {
9399627f
JS
2861 /* Need to issue conf_port mbox cmd before conf_msi mbox cmd */
2862 error = lpfc_sli_config_port(phba, 3);
2863 if (error)
2864 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
2865 "0478 Firmware not capable of SLI 3 mode.\n");
2866 else {
2867 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
2868 "0479 Firmware capable of SLI 3 mode.\n");
2869 /* Now, try to enable MSI-X interrupt mode */
2870 error = lpfc_enable_msix(phba);
2871 if (!error) {
2872 phba->intr_type = MSIX;
2873 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
2874 "0480 enable MSI-X mode.\n");
2875 }
2876 }
9b379605
JS
2877 }
2878
2879 /* Fallback to MSI if MSI-X initialization failed */
2880 if (phba->cfg_use_msi >= 1 && phba->intr_type == NONE) {
2881 retval = pci_enable_msi(phba->pcidev);
9399627f 2882 if (!retval) {
9b379605 2883 phba->intr_type = MSI;
9b379605 2884 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
9399627f
JS
2885 "0481 enable MSI mode.\n");
2886 } else
2887 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
2888 "0470 enable IRQ mode.\n");
9b379605
JS
2889 }
2890
2891 /* MSI-X is the only case the doesn't need to call request_irq */
2892 if (phba->intr_type != MSIX) {
2893 retval = request_irq(phba->pcidev->irq, lpfc_intr_handler,
2894 IRQF_SHARED, LPFC_DRIVER_NAME, phba);
2895 if (retval) {
2896 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
2897 "0471 Enable interrupt handler "
2898 "failed\n");
2899 } else if (phba->intr_type != MSI)
2900 phba->intr_type = INTx;
2901 }
8d63f375
LV
2902
2903 /* Take device offline; this will perform cleanup */
2904 lpfc_offline(phba);
2905 lpfc_sli_brdrestart(phba);
2906
2907 return PCI_ERS_RESULT_RECOVERED;
2908}
2909
2910/**
e59058c4
JS
2911 * lpfc_io_resume: Resume PCI I/O operation.
2912 * @pdev: pointer to PCI device
8d63f375 2913 *
e59058c4
JS
2914 * This routine is registered to the PCI subsystem for error handling. It is
2915 * called when kernel error recovery tells the lpfc driver that it is ok to
2916 * resume normal PCI operation after PCI bus error recovery. After this call,
2917 * traffic can start to flow from this device again.
8d63f375
LV
2918 */
2919static void lpfc_io_resume(struct pci_dev *pdev)
2920{
51ef4c26
JS
2921 struct Scsi_Host *shost = pci_get_drvdata(pdev);
2922 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
8d63f375 2923
58da1ffb 2924 lpfc_online(phba);
8d63f375
LV
2925}
2926
dea3101e
JB
2927static struct pci_device_id lpfc_id_table[] = {
2928 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_VIPER,
2929 PCI_ANY_ID, PCI_ANY_ID, },
06325e74
JSEC
2930 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_FIREFLY,
2931 PCI_ANY_ID, PCI_ANY_ID, },
dea3101e
JB
2932 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_THOR,
2933 PCI_ANY_ID, PCI_ANY_ID, },
2934 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_PEGASUS,
2935 PCI_ANY_ID, PCI_ANY_ID, },
2936 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_CENTAUR,
2937 PCI_ANY_ID, PCI_ANY_ID, },
2938 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_DRAGONFLY,
2939 PCI_ANY_ID, PCI_ANY_ID, },
2940 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_SUPERFLY,
2941 PCI_ANY_ID, PCI_ANY_ID, },
2942 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_RFLY,
2943 PCI_ANY_ID, PCI_ANY_ID, },
2944 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_PFLY,
2945 PCI_ANY_ID, PCI_ANY_ID, },
e4adb204
JSEC
2946 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_NEPTUNE,
2947 PCI_ANY_ID, PCI_ANY_ID, },
2948 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_NEPTUNE_SCSP,
2949 PCI_ANY_ID, PCI_ANY_ID, },
2950 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_NEPTUNE_DCSP,
2951 PCI_ANY_ID, PCI_ANY_ID, },
dea3101e
JB
2952 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_HELIOS,
2953 PCI_ANY_ID, PCI_ANY_ID, },
e4adb204
JSEC
2954 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_HELIOS_SCSP,
2955 PCI_ANY_ID, PCI_ANY_ID, },
2956 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_HELIOS_DCSP,
2957 PCI_ANY_ID, PCI_ANY_ID, },
dea3101e
JB
2958 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_BMID,
2959 PCI_ANY_ID, PCI_ANY_ID, },
2960 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_BSMB,
2961 PCI_ANY_ID, PCI_ANY_ID, },
2962 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_ZEPHYR,
2963 PCI_ANY_ID, PCI_ANY_ID, },
84774a4d
JS
2964 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_HORNET,
2965 PCI_ANY_ID, PCI_ANY_ID, },
e4adb204
JSEC
2966 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_ZEPHYR_SCSP,
2967 PCI_ANY_ID, PCI_ANY_ID, },
2968 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_ZEPHYR_DCSP,
2969 PCI_ANY_ID, PCI_ANY_ID, },
dea3101e
JB
2970 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_ZMID,
2971 PCI_ANY_ID, PCI_ANY_ID, },
2972 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_ZSMB,
2973 PCI_ANY_ID, PCI_ANY_ID, },
2974 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_TFLY,
2975 PCI_ANY_ID, PCI_ANY_ID, },
2976 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_LP101,
2977 PCI_ANY_ID, PCI_ANY_ID, },
2978 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_LP10000S,
2979 PCI_ANY_ID, PCI_ANY_ID, },
e4adb204
JSEC
2980 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_LP11000S,
2981 PCI_ANY_ID, PCI_ANY_ID, },
2982 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_LPE11000S,
2983 PCI_ANY_ID, PCI_ANY_ID, },
b87eab38
JS
2984 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_SAT,
2985 PCI_ANY_ID, PCI_ANY_ID, },
2986 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_SAT_MID,
2987 PCI_ANY_ID, PCI_ANY_ID, },
2988 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_SAT_SMB,
2989 PCI_ANY_ID, PCI_ANY_ID, },
2990 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_SAT_DCSP,
2991 PCI_ANY_ID, PCI_ANY_ID, },
2992 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_SAT_SCSP,
2993 PCI_ANY_ID, PCI_ANY_ID, },
2994 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_SAT_S,
2995 PCI_ANY_ID, PCI_ANY_ID, },
84774a4d
JS
2996 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_PROTEUS_VF,
2997 PCI_ANY_ID, PCI_ANY_ID, },
2998 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_PROTEUS_PF,
2999 PCI_ANY_ID, PCI_ANY_ID, },
3000 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_PROTEUS_S,
3001 PCI_ANY_ID, PCI_ANY_ID, },
dea3101e
JB
3002 { 0 }
3003};
3004
3005MODULE_DEVICE_TABLE(pci, lpfc_id_table);
3006
8d63f375
LV
3007static struct pci_error_handlers lpfc_err_handler = {
3008 .error_detected = lpfc_io_error_detected,
3009 .slot_reset = lpfc_io_slot_reset,
3010 .resume = lpfc_io_resume,
3011};
3012
dea3101e
JB
3013static struct pci_driver lpfc_driver = {
3014 .name = LPFC_DRIVER_NAME,
3015 .id_table = lpfc_id_table,
3016 .probe = lpfc_pci_probe_one,
3017 .remove = __devexit_p(lpfc_pci_remove_one),
2e0fef85 3018 .err_handler = &lpfc_err_handler,
dea3101e
JB
3019};
3020
e59058c4
JS
3021/**
3022 * lpfc_init: lpfc module initialization routine.
3023 *
3024 * This routine is to be invoked when the lpfc module is loaded into the
3025 * kernel. The special kernel macro module_init() is used to indicate the
3026 * role of this routine to the kernel as lpfc module entry point.
3027 *
3028 * Return codes
3029 * 0 - successful
3030 * -ENOMEM - FC attach transport failed
3031 * all others - failed
3032 */
dea3101e
JB
3033static int __init
3034lpfc_init(void)
3035{
3036 int error = 0;
3037
3038 printk(LPFC_MODULE_DESC "\n");
c44ce173 3039 printk(LPFC_COPYRIGHT "\n");
dea3101e 3040
7ee5d43e
JS
3041 if (lpfc_enable_npiv) {
3042 lpfc_transport_functions.vport_create = lpfc_vport_create;
3043 lpfc_transport_functions.vport_delete = lpfc_vport_delete;
3044 }
dea3101e
JB
3045 lpfc_transport_template =
3046 fc_attach_transport(&lpfc_transport_functions);
7ee5d43e 3047 if (lpfc_transport_template == NULL)
dea3101e 3048 return -ENOMEM;
7ee5d43e 3049 if (lpfc_enable_npiv) {
7ee5d43e 3050 lpfc_vport_transport_template =
98c9ea5c
JS
3051 fc_attach_transport(&lpfc_vport_transport_functions);
3052 if (lpfc_vport_transport_template == NULL) {
3053 fc_release_transport(lpfc_transport_template);
7ee5d43e 3054 return -ENOMEM;
98c9ea5c 3055 }
7ee5d43e 3056 }
dea3101e 3057 error = pci_register_driver(&lpfc_driver);
92d7f7b0 3058 if (error) {
dea3101e 3059 fc_release_transport(lpfc_transport_template);
d7c255b2
JS
3060 if (lpfc_enable_npiv)
3061 fc_release_transport(lpfc_vport_transport_template);
92d7f7b0 3062 }
dea3101e
JB
3063
3064 return error;
3065}
3066
e59058c4
JS
3067/**
3068 * lpfc_exit: lpfc module removal routine.
3069 *
3070 * This routine is invoked when the lpfc module is removed from the kernel.
3071 * The special kernel macro module_exit() is used to indicate the role of
3072 * this routine to the kernel as lpfc module exit point.
3073 */
dea3101e
JB
3074static void __exit
3075lpfc_exit(void)
3076{
3077 pci_unregister_driver(&lpfc_driver);
3078 fc_release_transport(lpfc_transport_template);
7ee5d43e
JS
3079 if (lpfc_enable_npiv)
3080 fc_release_transport(lpfc_vport_transport_template);
dea3101e
JB
3081}
3082
3083module_init(lpfc_init);
3084module_exit(lpfc_exit);
3085MODULE_LICENSE("GPL");
3086MODULE_DESCRIPTION(LPFC_MODULE_DESC);
3087MODULE_AUTHOR("Emulex Corporation - tech.support@emulex.com");
3088MODULE_VERSION("0:" LPFC_DRIVER_VERSION);