blob: 25a97dfd4ea7a2aefa379284b28e677eac80adda [file] [log] [blame]
dea31012005-04-17 16:05:31 -05001/*******************************************************************
2 * This file is part of the Emulex Linux Device Driver for *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -04003 * Fibre Channel Host Bus Adapters. *
James Smart4fede782010-01-26 23:08:55 -05004 * Copyright (C) 2004-2010 Emulex. All rights reserved. *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -04005 * EMULEX and SLI are trademarks of Emulex. *
dea31012005-04-17 16:05:31 -05006 * www.emulex.com *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -04007 * Portions Copyright (C) 2004-2005 Christoph Hellwig *
dea31012005-04-17 16:05:31 -05008 * *
9 * This program is free software; you can redistribute it and/or *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -040010 * modify it under the terms of version 2 of the GNU General *
11 * Public License as published by the Free Software Foundation. *
12 * This program is distributed in the hope that it will be useful. *
13 * ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND *
14 * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, *
15 * FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE *
16 * DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD *
17 * TO BE LEGALLY INVALID. See the GNU General Public License for *
18 * more details, a copy of which can be found in the file COPYING *
19 * included with this package. *
dea31012005-04-17 16:05:31 -050020 *******************************************************************/
21
dea31012005-04-17 16:05:31 -050022#include <linux/blkdev.h>
23#include <linux/delay.h>
24#include <linux/dma-mapping.h>
25#include <linux/idr.h>
26#include <linux/interrupt.h>
27#include <linux/kthread.h>
28#include <linux/pci.h>
29#include <linux/spinlock.h>
James Smart92d7f7b2007-06-17 19:56:38 -050030#include <linux/ctype.h>
James Smart0d878412009-10-02 15:16:56 -040031#include <linux/aer.h>
dea31012005-04-17 16:05:31 -050032
James.Smart@Emulex.Com91886522005-08-10 15:03:09 -040033#include <scsi/scsi.h>
dea31012005-04-17 16:05:31 -050034#include <scsi/scsi_device.h>
35#include <scsi/scsi_host.h>
36#include <scsi/scsi_transport_fc.h>
37
James Smartda0436e2009-05-22 14:51:39 -040038#include "lpfc_hw4.h"
dea31012005-04-17 16:05:31 -050039#include "lpfc_hw.h"
40#include "lpfc_sli.h"
James Smartda0436e2009-05-22 14:51:39 -040041#include "lpfc_sli4.h"
James Smartea2151b2008-09-07 11:52:10 -040042#include "lpfc_nl.h"
dea31012005-04-17 16:05:31 -050043#include "lpfc_disc.h"
44#include "lpfc_scsi.h"
45#include "lpfc.h"
46#include "lpfc_logmsg.h"
47#include "lpfc_crtn.h"
James Smart92d7f7b2007-06-17 19:56:38 -050048#include "lpfc_vport.h"
dea31012005-04-17 16:05:31 -050049#include "lpfc_version.h"
50
James Smart81301a92008-12-04 22:39:46 -050051char *_dump_buf_data;
52unsigned long _dump_buf_data_order;
53char *_dump_buf_dif;
54unsigned long _dump_buf_dif_order;
55spinlock_t _dump_buf_lock;
56
dea31012005-04-17 16:05:31 -050057static void lpfc_get_hba_model_desc(struct lpfc_hba *, uint8_t *, uint8_t *);
58static int lpfc_post_rcv_buf(struct lpfc_hba *);
James Smartda0436e2009-05-22 14:51:39 -040059static int lpfc_sli4_queue_create(struct lpfc_hba *);
60static void lpfc_sli4_queue_destroy(struct lpfc_hba *);
61static int lpfc_create_bootstrap_mbox(struct lpfc_hba *);
62static int lpfc_setup_endian_order(struct lpfc_hba *);
63static int lpfc_sli4_read_config(struct lpfc_hba *);
64static void lpfc_destroy_bootstrap_mbox(struct lpfc_hba *);
65static void lpfc_free_sgl_list(struct lpfc_hba *);
66static int lpfc_init_sgl_list(struct lpfc_hba *);
67static int lpfc_init_active_sgl_array(struct lpfc_hba *);
68static void lpfc_free_active_sgl(struct lpfc_hba *);
69static int lpfc_hba_down_post_s3(struct lpfc_hba *phba);
70static int lpfc_hba_down_post_s4(struct lpfc_hba *phba);
71static int lpfc_sli4_cq_event_pool_create(struct lpfc_hba *);
72static void lpfc_sli4_cq_event_pool_destroy(struct lpfc_hba *);
73static void lpfc_sli4_cq_event_release_all(struct lpfc_hba *);
dea31012005-04-17 16:05:31 -050074
75static struct scsi_transport_template *lpfc_transport_template = NULL;
James Smart92d7f7b2007-06-17 19:56:38 -050076static struct scsi_transport_template *lpfc_vport_transport_template = NULL;
dea31012005-04-17 16:05:31 -050077static DEFINE_IDR(lpfc_hba_index);
78
James Smarte59058c2008-08-24 21:49:00 -040079/**
James Smart3621a712009-04-06 18:47:14 -040080 * lpfc_config_port_prep - Perform lpfc initialization prior to config port
James Smarte59058c2008-08-24 21:49:00 -040081 * @phba: pointer to lpfc hba data structure.
82 *
83 * This routine will do LPFC initialization prior to issuing the CONFIG_PORT
84 * mailbox command. It retrieves the revision information from the HBA and
85 * collects the Vital Product Data (VPD) about the HBA for preparing the
86 * configuration of the HBA.
87 *
88 * Return codes:
89 * 0 - success.
90 * -ERESTART - requests the SLI layer to reset the HBA and try again.
91 * Any other value - indicates an error.
92 **/
dea31012005-04-17 16:05:31 -050093int
James Smart2e0fef82007-06-17 19:56:36 -050094lpfc_config_port_prep(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -050095{
96 lpfc_vpd_t *vp = &phba->vpd;
97 int i = 0, rc;
98 LPFC_MBOXQ_t *pmb;
99 MAILBOX_t *mb;
100 char *lpfc_vpd_data = NULL;
101 uint16_t offset = 0;
102 static char licensed[56] =
103 "key unlock for use with gnu public licensed code only\0";
James Smart65a29c12006-07-06 15:50:50 -0400104 static int init_key = 1;
dea31012005-04-17 16:05:31 -0500105
106 pmb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
107 if (!pmb) {
James Smart2e0fef82007-06-17 19:56:36 -0500108 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -0500109 return -ENOMEM;
110 }
111
James Smart04c68492009-05-22 14:52:52 -0400112 mb = &pmb->u.mb;
James Smart2e0fef82007-06-17 19:56:36 -0500113 phba->link_state = LPFC_INIT_MBX_CMDS;
dea31012005-04-17 16:05:31 -0500114
115 if (lpfc_is_LC_HBA(phba->pcidev->device)) {
James Smart65a29c12006-07-06 15:50:50 -0400116 if (init_key) {
117 uint32_t *ptext = (uint32_t *) licensed;
dea31012005-04-17 16:05:31 -0500118
James Smart65a29c12006-07-06 15:50:50 -0400119 for (i = 0; i < 56; i += sizeof (uint32_t), ptext++)
120 *ptext = cpu_to_be32(*ptext);
121 init_key = 0;
122 }
dea31012005-04-17 16:05:31 -0500123
124 lpfc_read_nv(phba, pmb);
125 memset((char*)mb->un.varRDnvp.rsvd3, 0,
126 sizeof (mb->un.varRDnvp.rsvd3));
127 memcpy((char*)mb->un.varRDnvp.rsvd3, licensed,
128 sizeof (licensed));
129
130 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
131
132 if (rc != MBX_SUCCESS) {
James Smarted957682007-06-17 19:56:37 -0500133 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX,
James Smarte8b62012007-08-02 11:10:09 -0400134 "0324 Config Port initialization "
dea31012005-04-17 16:05:31 -0500135 "error, mbxCmd x%x READ_NVPARM, "
136 "mbxStatus x%x\n",
dea31012005-04-17 16:05:31 -0500137 mb->mbxCommand, mb->mbxStatus);
138 mempool_free(pmb, phba->mbox_mem_pool);
139 return -ERESTART;
140 }
141 memcpy(phba->wwnn, (char *)mb->un.varRDnvp.nodename,
James Smart2e0fef82007-06-17 19:56:36 -0500142 sizeof(phba->wwnn));
143 memcpy(phba->wwpn, (char *)mb->un.varRDnvp.portname,
144 sizeof(phba->wwpn));
dea31012005-04-17 16:05:31 -0500145 }
146
James Smart92d7f7b2007-06-17 19:56:38 -0500147 phba->sli3_options = 0x0;
148
dea31012005-04-17 16:05:31 -0500149 /* Setup and issue mailbox READ REV command */
150 lpfc_read_rev(phba, pmb);
151 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
152 if (rc != MBX_SUCCESS) {
James Smarted957682007-06-17 19:56:37 -0500153 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -0400154 "0439 Adapter failed to init, mbxCmd x%x "
dea31012005-04-17 16:05:31 -0500155 "READ_REV, mbxStatus x%x\n",
dea31012005-04-17 16:05:31 -0500156 mb->mbxCommand, mb->mbxStatus);
157 mempool_free( pmb, phba->mbox_mem_pool);
158 return -ERESTART;
159 }
160
James Smart92d7f7b2007-06-17 19:56:38 -0500161
James.Smart@Emulex.Com1de933f2005-11-28 11:41:15 -0500162 /*
163 * The value of rr must be 1 since the driver set the cv field to 1.
164 * This setting requires the FW to set all revision fields.
dea31012005-04-17 16:05:31 -0500165 */
James.Smart@Emulex.Com1de933f2005-11-28 11:41:15 -0500166 if (mb->un.varRdRev.rr == 0) {
dea31012005-04-17 16:05:31 -0500167 vp->rev.rBit = 0;
James.Smart@Emulex.Com1de933f2005-11-28 11:41:15 -0500168 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -0400169 "0440 Adapter failed to init, READ_REV has "
170 "missing revision information.\n");
dea31012005-04-17 16:05:31 -0500171 mempool_free(pmb, phba->mbox_mem_pool);
172 return -ERESTART;
dea31012005-04-17 16:05:31 -0500173 }
174
James Smart495a7142008-06-14 22:52:59 -0400175 if (phba->sli_rev == 3 && !mb->un.varRdRev.v3rsp) {
176 mempool_free(pmb, phba->mbox_mem_pool);
James Smarted957682007-06-17 19:56:37 -0500177 return -EINVAL;
James Smart495a7142008-06-14 22:52:59 -0400178 }
James Smarted957682007-06-17 19:56:37 -0500179
dea31012005-04-17 16:05:31 -0500180 /* Save information as VPD data */
James.Smart@Emulex.Com1de933f2005-11-28 11:41:15 -0500181 vp->rev.rBit = 1;
James Smart92d7f7b2007-06-17 19:56:38 -0500182 memcpy(&vp->sli3Feat, &mb->un.varRdRev.sli3Feat, sizeof(uint32_t));
James.Smart@Emulex.Com1de933f2005-11-28 11:41:15 -0500183 vp->rev.sli1FwRev = mb->un.varRdRev.sli1FwRev;
184 memcpy(vp->rev.sli1FwName, (char*) mb->un.varRdRev.sli1FwName, 16);
185 vp->rev.sli2FwRev = mb->un.varRdRev.sli2FwRev;
186 memcpy(vp->rev.sli2FwName, (char *) mb->un.varRdRev.sli2FwName, 16);
dea31012005-04-17 16:05:31 -0500187 vp->rev.biuRev = mb->un.varRdRev.biuRev;
188 vp->rev.smRev = mb->un.varRdRev.smRev;
189 vp->rev.smFwRev = mb->un.varRdRev.un.smFwRev;
190 vp->rev.endecRev = mb->un.varRdRev.endecRev;
191 vp->rev.fcphHigh = mb->un.varRdRev.fcphHigh;
192 vp->rev.fcphLow = mb->un.varRdRev.fcphLow;
193 vp->rev.feaLevelHigh = mb->un.varRdRev.feaLevelHigh;
194 vp->rev.feaLevelLow = mb->un.varRdRev.feaLevelLow;
195 vp->rev.postKernRev = mb->un.varRdRev.postKernRev;
196 vp->rev.opFwRev = mb->un.varRdRev.opFwRev;
197
James Smart92d7f7b2007-06-17 19:56:38 -0500198 /* If the sli feature level is less then 9, we must
199 * tear down all RPIs and VPIs on link down if NPIV
200 * is enabled.
201 */
202 if (vp->rev.feaLevelHigh < 9)
203 phba->sli3_options |= LPFC_SLI3_VPORT_TEARDOWN;
204
dea31012005-04-17 16:05:31 -0500205 if (lpfc_is_LC_HBA(phba->pcidev->device))
206 memcpy(phba->RandomData, (char *)&mb->un.varWords[24],
207 sizeof (phba->RandomData));
208
dea31012005-04-17 16:05:31 -0500209 /* Get adapter VPD information */
dea31012005-04-17 16:05:31 -0500210 lpfc_vpd_data = kmalloc(DMP_VPD_SIZE, GFP_KERNEL);
211 if (!lpfc_vpd_data)
James Smartd7c255b2008-08-24 21:50:00 -0400212 goto out_free_mbox;
dea31012005-04-17 16:05:31 -0500213
214 do {
James Smarta0c87cb2009-07-19 10:01:10 -0400215 lpfc_dump_mem(phba, pmb, offset, DMP_REGION_VPD);
dea31012005-04-17 16:05:31 -0500216 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
217
218 if (rc != MBX_SUCCESS) {
219 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -0400220 "0441 VPD not present on adapter, "
dea31012005-04-17 16:05:31 -0500221 "mbxCmd x%x DUMP VPD, mbxStatus x%x\n",
dea31012005-04-17 16:05:31 -0500222 mb->mbxCommand, mb->mbxStatus);
Jamie Wellnitz74b72a52006-02-28 22:33:04 -0500223 mb->un.varDmp.word_cnt = 0;
dea31012005-04-17 16:05:31 -0500224 }
James Smart04c68492009-05-22 14:52:52 -0400225 /* dump mem may return a zero when finished or we got a
226 * mailbox error, either way we are done.
227 */
228 if (mb->un.varDmp.word_cnt == 0)
229 break;
Jamie Wellnitz74b72a52006-02-28 22:33:04 -0500230 if (mb->un.varDmp.word_cnt > DMP_VPD_SIZE - offset)
231 mb->un.varDmp.word_cnt = DMP_VPD_SIZE - offset;
James Smartd7c255b2008-08-24 21:50:00 -0400232 lpfc_sli_pcimem_bcopy(((uint8_t *)mb) + DMP_RSP_OFFSET,
233 lpfc_vpd_data + offset,
James Smart92d7f7b2007-06-17 19:56:38 -0500234 mb->un.varDmp.word_cnt);
dea31012005-04-17 16:05:31 -0500235 offset += mb->un.varDmp.word_cnt;
Jamie Wellnitz74b72a52006-02-28 22:33:04 -0500236 } while (mb->un.varDmp.word_cnt && offset < DMP_VPD_SIZE);
237 lpfc_parse_vpd(phba, lpfc_vpd_data, offset);
dea31012005-04-17 16:05:31 -0500238
239 kfree(lpfc_vpd_data);
dea31012005-04-17 16:05:31 -0500240out_free_mbox:
241 mempool_free(pmb, phba->mbox_mem_pool);
242 return 0;
243}
244
James Smarte59058c2008-08-24 21:49:00 -0400245/**
James Smart3621a712009-04-06 18:47:14 -0400246 * lpfc_config_async_cmpl - Completion handler for config async event mbox cmd
James Smarte59058c2008-08-24 21:49:00 -0400247 * @phba: pointer to lpfc hba data structure.
248 * @pmboxq: pointer to the driver internal queue element for mailbox command.
249 *
250 * This is the completion handler for driver's configuring asynchronous event
251 * mailbox command to the device. If the mailbox command returns successfully,
252 * it will set internal async event support flag to 1; otherwise, it will
253 * set internal async event support flag to 0.
254 **/
James Smart57127f12007-10-27 13:37:05 -0400255static void
256lpfc_config_async_cmpl(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmboxq)
257{
James Smart04c68492009-05-22 14:52:52 -0400258 if (pmboxq->u.mb.mbxStatus == MBX_SUCCESS)
James Smart57127f12007-10-27 13:37:05 -0400259 phba->temp_sensor_support = 1;
260 else
261 phba->temp_sensor_support = 0;
262 mempool_free(pmboxq, phba->mbox_mem_pool);
263 return;
264}
265
James Smarte59058c2008-08-24 21:49:00 -0400266/**
James Smart3621a712009-04-06 18:47:14 -0400267 * lpfc_dump_wakeup_param_cmpl - dump memory mailbox command completion handler
James Smart97207482008-12-04 22:39:19 -0500268 * @phba: pointer to lpfc hba data structure.
269 * @pmboxq: pointer to the driver internal queue element for mailbox command.
270 *
271 * This is the completion handler for dump mailbox command for getting
272 * wake up parameters. When this command complete, the response contain
273 * Option rom version of the HBA. This function translate the version number
274 * into a human readable string and store it in OptionROMVersion.
275 **/
276static void
277lpfc_dump_wakeup_param_cmpl(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmboxq)
278{
279 struct prog_id *prg;
280 uint32_t prog_id_word;
281 char dist = ' ';
282 /* character array used for decoding dist type. */
283 char dist_char[] = "nabx";
284
James Smart04c68492009-05-22 14:52:52 -0400285 if (pmboxq->u.mb.mbxStatus != MBX_SUCCESS) {
James Smart9f1e1b52008-12-04 22:39:40 -0500286 mempool_free(pmboxq, phba->mbox_mem_pool);
James Smart97207482008-12-04 22:39:19 -0500287 return;
James Smart9f1e1b52008-12-04 22:39:40 -0500288 }
James Smart97207482008-12-04 22:39:19 -0500289
290 prg = (struct prog_id *) &prog_id_word;
291
292 /* word 7 contain option rom version */
James Smart04c68492009-05-22 14:52:52 -0400293 prog_id_word = pmboxq->u.mb.un.varWords[7];
James Smart97207482008-12-04 22:39:19 -0500294
295 /* Decode the Option rom version word to a readable string */
296 if (prg->dist < 4)
297 dist = dist_char[prg->dist];
298
299 if ((prg->dist == 3) && (prg->num == 0))
300 sprintf(phba->OptionROMVersion, "%d.%d%d",
301 prg->ver, prg->rev, prg->lev);
302 else
303 sprintf(phba->OptionROMVersion, "%d.%d%d%c%d",
304 prg->ver, prg->rev, prg->lev,
305 dist, prg->num);
James Smart9f1e1b52008-12-04 22:39:40 -0500306 mempool_free(pmboxq, phba->mbox_mem_pool);
James Smart97207482008-12-04 22:39:19 -0500307 return;
308}
309
310/**
James Smart3621a712009-04-06 18:47:14 -0400311 * lpfc_config_port_post - Perform lpfc initialization after config port
James Smarte59058c2008-08-24 21:49:00 -0400312 * @phba: pointer to lpfc hba data structure.
313 *
314 * This routine will do LPFC initialization after the CONFIG_PORT mailbox
315 * command call. It performs all internal resource and state setups on the
316 * port: post IOCB buffers, enable appropriate host interrupt attentions,
317 * ELS ring timers, etc.
318 *
319 * Return codes
320 * 0 - success.
321 * Any other value - error.
322 **/
dea31012005-04-17 16:05:31 -0500323int
James Smart2e0fef82007-06-17 19:56:36 -0500324lpfc_config_port_post(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -0500325{
James Smart2e0fef82007-06-17 19:56:36 -0500326 struct lpfc_vport *vport = phba->pport;
James Smarta257bf92009-04-06 18:48:10 -0400327 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea31012005-04-17 16:05:31 -0500328 LPFC_MBOXQ_t *pmb;
329 MAILBOX_t *mb;
330 struct lpfc_dmabuf *mp;
331 struct lpfc_sli *psli = &phba->sli;
332 uint32_t status, timeout;
James Smart2e0fef82007-06-17 19:56:36 -0500333 int i, j;
334 int rc;
dea31012005-04-17 16:05:31 -0500335
James Smart7af67052007-10-27 13:38:11 -0400336 spin_lock_irq(&phba->hbalock);
337 /*
338 * If the Config port completed correctly the HBA is not
339 * over heated any more.
340 */
341 if (phba->over_temp_state == HBA_OVER_TEMP)
342 phba->over_temp_state = HBA_NORMAL_TEMP;
343 spin_unlock_irq(&phba->hbalock);
344
dea31012005-04-17 16:05:31 -0500345 pmb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
346 if (!pmb) {
James Smart2e0fef82007-06-17 19:56:36 -0500347 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -0500348 return -ENOMEM;
349 }
James Smart04c68492009-05-22 14:52:52 -0400350 mb = &pmb->u.mb;
dea31012005-04-17 16:05:31 -0500351
dea31012005-04-17 16:05:31 -0500352 /* Get login parameters for NID. */
James Smart92d7f7b2007-06-17 19:56:38 -0500353 lpfc_read_sparam(phba, pmb, 0);
James Smarted957682007-06-17 19:56:37 -0500354 pmb->vport = vport;
dea31012005-04-17 16:05:31 -0500355 if (lpfc_sli_issue_mbox(phba, pmb, MBX_POLL) != MBX_SUCCESS) {
James Smarted957682007-06-17 19:56:37 -0500356 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -0400357 "0448 Adapter failed init, mbxCmd x%x "
dea31012005-04-17 16:05:31 -0500358 "READ_SPARM mbxStatus x%x\n",
dea31012005-04-17 16:05:31 -0500359 mb->mbxCommand, mb->mbxStatus);
James Smart2e0fef82007-06-17 19:56:36 -0500360 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -0500361 mp = (struct lpfc_dmabuf *) pmb->context1;
362 mempool_free( pmb, phba->mbox_mem_pool);
363 lpfc_mbuf_free(phba, mp->virt, mp->phys);
364 kfree(mp);
365 return -EIO;
366 }
367
368 mp = (struct lpfc_dmabuf *) pmb->context1;
369
James Smart2e0fef82007-06-17 19:56:36 -0500370 memcpy(&vport->fc_sparam, mp->virt, sizeof (struct serv_parm));
dea31012005-04-17 16:05:31 -0500371 lpfc_mbuf_free(phba, mp->virt, mp->phys);
372 kfree(mp);
373 pmb->context1 = NULL;
374
James Smarta12e07b2006-12-02 13:35:30 -0500375 if (phba->cfg_soft_wwnn)
James Smart2e0fef82007-06-17 19:56:36 -0500376 u64_to_wwn(phba->cfg_soft_wwnn,
377 vport->fc_sparam.nodeName.u.wwn);
James Smartc3f28af2006-08-18 17:47:18 -0400378 if (phba->cfg_soft_wwpn)
James Smart2e0fef82007-06-17 19:56:36 -0500379 u64_to_wwn(phba->cfg_soft_wwpn,
380 vport->fc_sparam.portName.u.wwn);
381 memcpy(&vport->fc_nodename, &vport->fc_sparam.nodeName,
dea31012005-04-17 16:05:31 -0500382 sizeof (struct lpfc_name));
James Smart2e0fef82007-06-17 19:56:36 -0500383 memcpy(&vport->fc_portname, &vport->fc_sparam.portName,
dea31012005-04-17 16:05:31 -0500384 sizeof (struct lpfc_name));
James Smarta257bf92009-04-06 18:48:10 -0400385
386 /* Update the fc_host data structures with new wwn. */
387 fc_host_node_name(shost) = wwn_to_u64(vport->fc_nodename.u.wwn);
388 fc_host_port_name(shost) = wwn_to_u64(vport->fc_portname.u.wwn);
James Smart21e9a0a2009-05-22 14:53:21 -0400389 fc_host_max_npiv_vports(shost) = phba->max_vpi;
James Smarta257bf92009-04-06 18:48:10 -0400390
dea31012005-04-17 16:05:31 -0500391 /* If no serial number in VPD data, use low 6 bytes of WWNN */
392 /* This should be consolidated into parse_vpd ? - mr */
393 if (phba->SerialNumber[0] == 0) {
394 uint8_t *outptr;
395
James Smart2e0fef82007-06-17 19:56:36 -0500396 outptr = &vport->fc_nodename.u.s.IEEE[0];
dea31012005-04-17 16:05:31 -0500397 for (i = 0; i < 12; i++) {
398 status = *outptr++;
399 j = ((status & 0xf0) >> 4);
400 if (j <= 9)
401 phba->SerialNumber[i] =
402 (char)((uint8_t) 0x30 + (uint8_t) j);
403 else
404 phba->SerialNumber[i] =
405 (char)((uint8_t) 0x61 + (uint8_t) (j - 10));
406 i++;
407 j = (status & 0xf);
408 if (j <= 9)
409 phba->SerialNumber[i] =
410 (char)((uint8_t) 0x30 + (uint8_t) j);
411 else
412 phba->SerialNumber[i] =
413 (char)((uint8_t) 0x61 + (uint8_t) (j - 10));
414 }
415 }
416
dea31012005-04-17 16:05:31 -0500417 lpfc_read_config(phba, pmb);
James Smarted957682007-06-17 19:56:37 -0500418 pmb->vport = vport;
dea31012005-04-17 16:05:31 -0500419 if (lpfc_sli_issue_mbox(phba, pmb, MBX_POLL) != MBX_SUCCESS) {
James Smarted957682007-06-17 19:56:37 -0500420 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -0400421 "0453 Adapter failed to init, mbxCmd x%x "
dea31012005-04-17 16:05:31 -0500422 "READ_CONFIG, mbxStatus x%x\n",
dea31012005-04-17 16:05:31 -0500423 mb->mbxCommand, mb->mbxStatus);
James Smart2e0fef82007-06-17 19:56:36 -0500424 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -0500425 mempool_free( pmb, phba->mbox_mem_pool);
426 return -EIO;
427 }
428
James Smarta0c87cb2009-07-19 10:01:10 -0400429 /* Check if the port is disabled */
430 lpfc_sli_read_link_ste(phba);
431
dea31012005-04-17 16:05:31 -0500432 /* Reset the DFT_HBA_Q_DEPTH to the max xri */
433 if (phba->cfg_hba_queue_depth > (mb->un.varRdConfig.max_xri+1))
434 phba->cfg_hba_queue_depth =
James Smartf1126682009-06-10 17:22:44 -0400435 (mb->un.varRdConfig.max_xri + 1) -
436 lpfc_sli4_get_els_iocb_cnt(phba);
dea31012005-04-17 16:05:31 -0500437
438 phba->lmt = mb->un.varRdConfig.lmt;
Jamie Wellnitz74b72a52006-02-28 22:33:04 -0500439
440 /* Get the default values for Model Name and Description */
441 lpfc_get_hba_model_desc(phba, phba->ModelName, phba->ModelDesc);
442
443 if ((phba->cfg_link_speed > LINK_SPEED_10G)
444 || ((phba->cfg_link_speed == LINK_SPEED_1G)
445 && !(phba->lmt & LMT_1Gb))
446 || ((phba->cfg_link_speed == LINK_SPEED_2G)
447 && !(phba->lmt & LMT_2Gb))
448 || ((phba->cfg_link_speed == LINK_SPEED_4G)
449 && !(phba->lmt & LMT_4Gb))
450 || ((phba->cfg_link_speed == LINK_SPEED_8G)
451 && !(phba->lmt & LMT_8Gb))
452 || ((phba->cfg_link_speed == LINK_SPEED_10G)
453 && !(phba->lmt & LMT_10Gb))) {
454 /* Reset link speed to auto */
James Smarted957682007-06-17 19:56:37 -0500455 lpfc_printf_log(phba, KERN_WARNING, LOG_LINK_EVENT,
James Smarte8b62012007-08-02 11:10:09 -0400456 "1302 Invalid speed for this board: "
dea31012005-04-17 16:05:31 -0500457 "Reset link speed to auto: x%x\n",
dea31012005-04-17 16:05:31 -0500458 phba->cfg_link_speed);
459 phba->cfg_link_speed = LINK_SPEED_AUTO;
460 }
461
James Smart2e0fef82007-06-17 19:56:36 -0500462 phba->link_state = LPFC_LINK_DOWN;
dea31012005-04-17 16:05:31 -0500463
James Smart0b727fe2007-10-27 13:37:25 -0400464 /* Only process IOCBs on ELS ring till hba_state is READY */
James Smarta4bc3372006-12-02 13:34:16 -0500465 if (psli->ring[psli->extra_ring].cmdringaddr)
466 psli->ring[psli->extra_ring].flag |= LPFC_STOP_IOCB_EVENT;
dea31012005-04-17 16:05:31 -0500467 if (psli->ring[psli->fcp_ring].cmdringaddr)
468 psli->ring[psli->fcp_ring].flag |= LPFC_STOP_IOCB_EVENT;
469 if (psli->ring[psli->next_ring].cmdringaddr)
470 psli->ring[psli->next_ring].flag |= LPFC_STOP_IOCB_EVENT;
471
472 /* Post receive buffers for desired rings */
James Smarted957682007-06-17 19:56:37 -0500473 if (phba->sli_rev != 3)
474 lpfc_post_rcv_buf(phba);
dea31012005-04-17 16:05:31 -0500475
James Smart93996272008-08-24 21:50:30 -0400476 /*
477 * Configure HBA MSI-X attention conditions to messages if MSI-X mode
478 */
479 if (phba->intr_type == MSIX) {
480 rc = lpfc_config_msi(phba, pmb);
481 if (rc) {
482 mempool_free(pmb, phba->mbox_mem_pool);
483 return -EIO;
484 }
485 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
486 if (rc != MBX_SUCCESS) {
487 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX,
488 "0352 Config MSI mailbox command "
489 "failed, mbxCmd x%x, mbxStatus x%x\n",
James Smart04c68492009-05-22 14:52:52 -0400490 pmb->u.mb.mbxCommand,
491 pmb->u.mb.mbxStatus);
James Smart93996272008-08-24 21:50:30 -0400492 mempool_free(pmb, phba->mbox_mem_pool);
493 return -EIO;
494 }
495 }
496
James Smart04c68492009-05-22 14:52:52 -0400497 spin_lock_irq(&phba->hbalock);
James Smart93996272008-08-24 21:50:30 -0400498 /* Initialize ERATT handling flag */
499 phba->hba_flag &= ~HBA_ERATT_HANDLED;
500
dea31012005-04-17 16:05:31 -0500501 /* Enable appropriate host interrupts */
dea31012005-04-17 16:05:31 -0500502 status = readl(phba->HCregaddr);
503 status |= HC_MBINT_ENA | HC_ERINT_ENA | HC_LAINT_ENA;
504 if (psli->num_rings > 0)
505 status |= HC_R0INT_ENA;
506 if (psli->num_rings > 1)
507 status |= HC_R1INT_ENA;
508 if (psli->num_rings > 2)
509 status |= HC_R2INT_ENA;
510 if (psli->num_rings > 3)
511 status |= HC_R3INT_ENA;
512
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -0500513 if ((phba->cfg_poll & ENABLE_FCP_RING_POLLING) &&
514 (phba->cfg_poll & DISABLE_FCP_RING_INT))
James Smart93996272008-08-24 21:50:30 -0400515 status &= ~(HC_R0INT_ENA);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -0500516
dea31012005-04-17 16:05:31 -0500517 writel(status, phba->HCregaddr);
518 readl(phba->HCregaddr); /* flush */
James Smart2e0fef82007-06-17 19:56:36 -0500519 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -0500520
James Smart93996272008-08-24 21:50:30 -0400521 /* Set up ring-0 (ELS) timer */
522 timeout = phba->fc_ratov * 2;
James Smart2e0fef82007-06-17 19:56:36 -0500523 mod_timer(&vport->els_tmofunc, jiffies + HZ * timeout);
James Smart93996272008-08-24 21:50:30 -0400524 /* Set up heart beat (HB) timer */
James Smart858c9f62007-06-17 19:56:39 -0500525 mod_timer(&phba->hb_tmofunc, jiffies + HZ * LPFC_HB_MBOX_INTERVAL);
526 phba->hb_outstanding = 0;
527 phba->last_completion_time = jiffies;
James Smart93996272008-08-24 21:50:30 -0400528 /* Set up error attention (ERATT) polling timer */
529 mod_timer(&phba->eratt_poll, jiffies + HZ * LPFC_ERATT_POLL_INTERVAL);
dea31012005-04-17 16:05:31 -0500530
James Smarta0c87cb2009-07-19 10:01:10 -0400531 if (phba->hba_flag & LINK_DISABLED) {
532 lpfc_printf_log(phba,
533 KERN_ERR, LOG_INIT,
534 "2598 Adapter Link is disabled.\n");
535 lpfc_down_link(phba, pmb);
536 pmb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
537 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
538 if ((rc != MBX_SUCCESS) && (rc != MBX_BUSY)) {
539 lpfc_printf_log(phba,
540 KERN_ERR, LOG_INIT,
541 "2599 Adapter failed to issue DOWN_LINK"
542 " mbox command rc 0x%x\n", rc);
543
544 mempool_free(pmb, phba->mbox_mem_pool);
545 return -EIO;
546 }
547 } else {
548 lpfc_init_link(phba, pmb, phba->cfg_topology,
549 phba->cfg_link_speed);
550 pmb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
551 lpfc_set_loopback_flag(phba);
552 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
553 if (rc != MBX_SUCCESS) {
554 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -0400555 "0454 Adapter failed to init, mbxCmd x%x "
dea31012005-04-17 16:05:31 -0500556 "INIT_LINK, mbxStatus x%x\n",
dea31012005-04-17 16:05:31 -0500557 mb->mbxCommand, mb->mbxStatus);
558
James Smarta0c87cb2009-07-19 10:01:10 -0400559 /* Clear all interrupt enable conditions */
560 writel(0, phba->HCregaddr);
561 readl(phba->HCregaddr); /* flush */
562 /* Clear all pending interrupts */
563 writel(0xffffffff, phba->HAregaddr);
564 readl(phba->HAregaddr); /* flush */
dea31012005-04-17 16:05:31 -0500565
James Smarta0c87cb2009-07-19 10:01:10 -0400566 phba->link_state = LPFC_HBA_ERROR;
567 if (rc != MBX_BUSY)
568 mempool_free(pmb, phba->mbox_mem_pool);
569 return -EIO;
570 }
dea31012005-04-17 16:05:31 -0500571 }
572 /* MBOX buffer will be freed in mbox compl */
James Smart57127f12007-10-27 13:37:05 -0400573 pmb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
574 lpfc_config_async(phba, pmb, LPFC_ELS_RING);
575 pmb->mbox_cmpl = lpfc_config_async_cmpl;
576 pmb->vport = phba->pport;
577 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
dea31012005-04-17 16:05:31 -0500578
James Smart57127f12007-10-27 13:37:05 -0400579 if ((rc != MBX_BUSY) && (rc != MBX_SUCCESS)) {
580 lpfc_printf_log(phba,
581 KERN_ERR,
582 LOG_INIT,
583 "0456 Adapter failed to issue "
James Smarte4e74272009-07-19 10:01:38 -0400584 "ASYNCEVT_ENABLE mbox status x%x\n",
James Smart57127f12007-10-27 13:37:05 -0400585 rc);
586 mempool_free(pmb, phba->mbox_mem_pool);
587 }
James Smart97207482008-12-04 22:39:19 -0500588
589 /* Get Option rom version */
590 pmb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
591 lpfc_dump_wakeup_param(phba, pmb);
592 pmb->mbox_cmpl = lpfc_dump_wakeup_param_cmpl;
593 pmb->vport = phba->pport;
594 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
595
596 if ((rc != MBX_BUSY) && (rc != MBX_SUCCESS)) {
597 lpfc_printf_log(phba, KERN_ERR, LOG_INIT, "0435 Adapter failed "
James Smarte4e74272009-07-19 10:01:38 -0400598 "to get Option ROM version status x%x\n", rc);
James Smart97207482008-12-04 22:39:19 -0500599 mempool_free(pmb, phba->mbox_mem_pool);
600 }
601
James Smartd7c255b2008-08-24 21:50:00 -0400602 return 0;
James Smartce8b3ce2006-07-06 15:50:36 -0400603}
604
James Smarte59058c2008-08-24 21:49:00 -0400605/**
James Smart3621a712009-04-06 18:47:14 -0400606 * lpfc_hba_down_prep - Perform lpfc uninitialization prior to HBA reset
James Smarte59058c2008-08-24 21:49:00 -0400607 * @phba: pointer to lpfc HBA data structure.
608 *
609 * This routine will do LPFC uninitialization before the HBA is reset when
610 * bringing down the SLI Layer.
611 *
612 * Return codes
613 * 0 - success.
614 * Any other value - error.
615 **/
dea31012005-04-17 16:05:31 -0500616int
James Smart2e0fef82007-06-17 19:56:36 -0500617lpfc_hba_down_prep(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -0500618{
James Smart1b32f6a2008-02-08 18:49:39 -0500619 struct lpfc_vport **vports;
620 int i;
James Smart3772a992009-05-22 14:50:54 -0400621
622 if (phba->sli_rev <= LPFC_SLI_REV3) {
623 /* Disable interrupts */
624 writel(0, phba->HCregaddr);
625 readl(phba->HCregaddr); /* flush */
626 }
dea31012005-04-17 16:05:31 -0500627
James Smart1b32f6a2008-02-08 18:49:39 -0500628 if (phba->pport->load_flag & FC_UNLOADING)
629 lpfc_cleanup_discovery_resources(phba->pport);
630 else {
631 vports = lpfc_create_vport_work_array(phba);
632 if (vports != NULL)
James Smart3772a992009-05-22 14:50:54 -0400633 for (i = 0; i <= phba->max_vports &&
634 vports[i] != NULL; i++)
James Smart1b32f6a2008-02-08 18:49:39 -0500635 lpfc_cleanup_discovery_resources(vports[i]);
636 lpfc_destroy_vport_work_array(phba, vports);
James Smart7f5f3d02008-02-08 18:50:14 -0500637 }
638 return 0;
dea31012005-04-17 16:05:31 -0500639}
640
James Smarte59058c2008-08-24 21:49:00 -0400641/**
James Smart3772a992009-05-22 14:50:54 -0400642 * lpfc_hba_down_post_s3 - Perform lpfc uninitialization after HBA reset
James Smarte59058c2008-08-24 21:49:00 -0400643 * @phba: pointer to lpfc HBA data structure.
644 *
645 * This routine will do uninitialization after the HBA is reset when bring
646 * down the SLI Layer.
647 *
648 * Return codes
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200649 * 0 - success.
James Smarte59058c2008-08-24 21:49:00 -0400650 * Any other value - error.
651 **/
James Smart3772a992009-05-22 14:50:54 -0400652static int
653lpfc_hba_down_post_s3(struct lpfc_hba *phba)
Jamie Wellnitz41415862006-02-28 19:25:27 -0500654{
655 struct lpfc_sli *psli = &phba->sli;
656 struct lpfc_sli_ring *pring;
657 struct lpfc_dmabuf *mp, *next_mp;
James Smart09372822008-01-11 01:52:54 -0500658 LIST_HEAD(completions);
Jamie Wellnitz41415862006-02-28 19:25:27 -0500659 int i;
660
James Smart92d7f7b2007-06-17 19:56:38 -0500661 if (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED)
662 lpfc_sli_hbqbuf_free_all(phba);
663 else {
664 /* Cleanup preposted buffers on the ELS ring */
665 pring = &psli->ring[LPFC_ELS_RING];
666 list_for_each_entry_safe(mp, next_mp, &pring->postbufq, list) {
667 list_del(&mp->list);
668 pring->postbufq_cnt--;
669 lpfc_mbuf_free(phba, mp->virt, mp->phys);
670 kfree(mp);
671 }
Jamie Wellnitz41415862006-02-28 19:25:27 -0500672 }
673
James Smart09372822008-01-11 01:52:54 -0500674 spin_lock_irq(&phba->hbalock);
Jamie Wellnitz41415862006-02-28 19:25:27 -0500675 for (i = 0; i < psli->num_rings; i++) {
676 pring = &psli->ring[i];
James Smart09372822008-01-11 01:52:54 -0500677
678 /* At this point in time the HBA is either reset or DOA. Either
679 * way, nothing should be on txcmplq as it will NEVER complete.
680 */
681 list_splice_init(&pring->txcmplq, &completions);
682 pring->txcmplq_cnt = 0;
683 spin_unlock_irq(&phba->hbalock);
684
James Smarta257bf92009-04-06 18:48:10 -0400685 /* Cancel all the IOCBs from the completions list */
686 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
687 IOERR_SLI_ABORTED);
James Smart09372822008-01-11 01:52:54 -0500688
Jamie Wellnitz41415862006-02-28 19:25:27 -0500689 lpfc_sli_abort_iocb_ring(phba, pring);
James Smart09372822008-01-11 01:52:54 -0500690 spin_lock_irq(&phba->hbalock);
Jamie Wellnitz41415862006-02-28 19:25:27 -0500691 }
James Smart09372822008-01-11 01:52:54 -0500692 spin_unlock_irq(&phba->hbalock);
Jamie Wellnitz41415862006-02-28 19:25:27 -0500693
694 return 0;
695}
James Smartda0436e2009-05-22 14:51:39 -0400696/**
697 * lpfc_hba_down_post_s4 - Perform lpfc uninitialization after HBA reset
698 * @phba: pointer to lpfc HBA data structure.
699 *
700 * This routine will do uninitialization after the HBA is reset when bring
701 * down the SLI Layer.
702 *
703 * Return codes
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200704 * 0 - success.
James Smartda0436e2009-05-22 14:51:39 -0400705 * Any other value - error.
706 **/
707static int
708lpfc_hba_down_post_s4(struct lpfc_hba *phba)
709{
710 struct lpfc_scsi_buf *psb, *psb_next;
711 LIST_HEAD(aborts);
712 int ret;
713 unsigned long iflag = 0;
714 ret = lpfc_hba_down_post_s3(phba);
715 if (ret)
716 return ret;
717 /* At this point in time the HBA is either reset or DOA. Either
718 * way, nothing should be on lpfc_abts_els_sgl_list, it needs to be
719 * on the lpfc_sgl_list so that it can either be freed if the
720 * driver is unloading or reposted if the driver is restarting
721 * the port.
722 */
723 spin_lock_irq(&phba->hbalock); /* required for lpfc_sgl_list and */
724 /* scsl_buf_list */
725 /* abts_sgl_list_lock required because worker thread uses this
726 * list.
727 */
728 spin_lock(&phba->sli4_hba.abts_sgl_list_lock);
729 list_splice_init(&phba->sli4_hba.lpfc_abts_els_sgl_list,
730 &phba->sli4_hba.lpfc_sgl_list);
731 spin_unlock(&phba->sli4_hba.abts_sgl_list_lock);
732 /* abts_scsi_buf_list_lock required because worker thread uses this
733 * list.
734 */
735 spin_lock(&phba->sli4_hba.abts_scsi_buf_list_lock);
736 list_splice_init(&phba->sli4_hba.lpfc_abts_scsi_buf_list,
737 &aborts);
738 spin_unlock(&phba->sli4_hba.abts_scsi_buf_list_lock);
739 spin_unlock_irq(&phba->hbalock);
740
741 list_for_each_entry_safe(psb, psb_next, &aborts, list) {
742 psb->pCmd = NULL;
743 psb->status = IOSTAT_SUCCESS;
744 }
745 spin_lock_irqsave(&phba->scsi_buf_list_lock, iflag);
746 list_splice(&aborts, &phba->lpfc_scsi_buf_list);
747 spin_unlock_irqrestore(&phba->scsi_buf_list_lock, iflag);
748 return 0;
749}
750
751/**
752 * lpfc_hba_down_post - Wrapper func for hba down post routine
753 * @phba: pointer to lpfc HBA data structure.
754 *
755 * This routine wraps the actual SLI3 or SLI4 routine for performing
756 * uninitialization after the HBA is reset when bring down the SLI Layer.
757 *
758 * Return codes
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200759 * 0 - success.
James Smartda0436e2009-05-22 14:51:39 -0400760 * Any other value - error.
761 **/
762int
763lpfc_hba_down_post(struct lpfc_hba *phba)
764{
765 return (*phba->lpfc_hba_down_post)(phba);
766}
Jamie Wellnitz41415862006-02-28 19:25:27 -0500767
James Smarte59058c2008-08-24 21:49:00 -0400768/**
James Smart3621a712009-04-06 18:47:14 -0400769 * lpfc_hb_timeout - The HBA-timer timeout handler
James Smarte59058c2008-08-24 21:49:00 -0400770 * @ptr: unsigned long holds the pointer to lpfc hba data structure.
771 *
772 * This is the HBA-timer timeout handler registered to the lpfc driver. When
773 * this timer fires, a HBA timeout event shall be posted to the lpfc driver
774 * work-port-events bitmap and the worker thread is notified. This timeout
775 * event will be used by the worker thread to invoke the actual timeout
776 * handler routine, lpfc_hb_timeout_handler. Any periodical operations will
777 * be performed in the timeout handler and the HBA timeout event bit shall
778 * be cleared by the worker thread after it has taken the event bitmap out.
779 **/
Adrian Bunka6ababd2007-11-05 18:07:33 +0100780static void
James Smart858c9f62007-06-17 19:56:39 -0500781lpfc_hb_timeout(unsigned long ptr)
782{
783 struct lpfc_hba *phba;
James Smart5e9d9b82008-06-14 22:52:53 -0400784 uint32_t tmo_posted;
James Smart858c9f62007-06-17 19:56:39 -0500785 unsigned long iflag;
786
787 phba = (struct lpfc_hba *)ptr;
James Smart93996272008-08-24 21:50:30 -0400788
789 /* Check for heart beat timeout conditions */
James Smart858c9f62007-06-17 19:56:39 -0500790 spin_lock_irqsave(&phba->pport->work_port_lock, iflag);
James Smart5e9d9b82008-06-14 22:52:53 -0400791 tmo_posted = phba->pport->work_port_events & WORKER_HB_TMO;
792 if (!tmo_posted)
James Smart858c9f62007-06-17 19:56:39 -0500793 phba->pport->work_port_events |= WORKER_HB_TMO;
794 spin_unlock_irqrestore(&phba->pport->work_port_lock, iflag);
795
James Smart93996272008-08-24 21:50:30 -0400796 /* Tell the worker thread there is work to do */
James Smart5e9d9b82008-06-14 22:52:53 -0400797 if (!tmo_posted)
798 lpfc_worker_wake_up(phba);
James Smart858c9f62007-06-17 19:56:39 -0500799 return;
800}
801
James Smarte59058c2008-08-24 21:49:00 -0400802/**
James Smart3621a712009-04-06 18:47:14 -0400803 * lpfc_hb_mbox_cmpl - The lpfc heart-beat mailbox command callback function
James Smarte59058c2008-08-24 21:49:00 -0400804 * @phba: pointer to lpfc hba data structure.
805 * @pmboxq: pointer to the driver internal queue element for mailbox command.
806 *
807 * This is the callback function to the lpfc heart-beat mailbox command.
808 * If configured, the lpfc driver issues the heart-beat mailbox command to
809 * the HBA every LPFC_HB_MBOX_INTERVAL (current 5) seconds. At the time the
810 * heart-beat mailbox command is issued, the driver shall set up heart-beat
811 * timeout timer to LPFC_HB_MBOX_TIMEOUT (current 30) seconds and marks
812 * heart-beat outstanding state. Once the mailbox command comes back and
813 * no error conditions detected, the heart-beat mailbox command timer is
814 * reset to LPFC_HB_MBOX_INTERVAL seconds and the heart-beat outstanding
815 * state is cleared for the next heart-beat. If the timer expired with the
816 * heart-beat outstanding state set, the driver will put the HBA offline.
817 **/
James Smart858c9f62007-06-17 19:56:39 -0500818static void
819lpfc_hb_mbox_cmpl(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmboxq)
820{
821 unsigned long drvr_flag;
822
823 spin_lock_irqsave(&phba->hbalock, drvr_flag);
824 phba->hb_outstanding = 0;
825 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
826
James Smart93996272008-08-24 21:50:30 -0400827 /* Check and reset heart-beat timer is necessary */
James Smart858c9f62007-06-17 19:56:39 -0500828 mempool_free(pmboxq, phba->mbox_mem_pool);
829 if (!(phba->pport->fc_flag & FC_OFFLINE_MODE) &&
830 !(phba->link_state == LPFC_HBA_ERROR) &&
James Smart51ef4c22007-08-02 11:10:31 -0400831 !(phba->pport->load_flag & FC_UNLOADING))
James Smart858c9f62007-06-17 19:56:39 -0500832 mod_timer(&phba->hb_tmofunc,
833 jiffies + HZ * LPFC_HB_MBOX_INTERVAL);
834 return;
835}
836
James Smarte59058c2008-08-24 21:49:00 -0400837/**
James Smart3621a712009-04-06 18:47:14 -0400838 * lpfc_hb_timeout_handler - The HBA-timer timeout handler
James Smarte59058c2008-08-24 21:49:00 -0400839 * @phba: pointer to lpfc hba data structure.
840 *
841 * This is the actual HBA-timer timeout handler to be invoked by the worker
842 * thread whenever the HBA timer fired and HBA-timeout event posted. This
843 * handler performs any periodic operations needed for the device. If such
844 * periodic event has already been attended to either in the interrupt handler
845 * or by processing slow-ring or fast-ring events within the HBA-timer
846 * timeout window (LPFC_HB_MBOX_INTERVAL), this handler just simply resets
847 * the timer for the next timeout period. If lpfc heart-beat mailbox command
848 * is configured and there is no heart-beat mailbox command outstanding, a
849 * heart-beat mailbox is issued and timer set properly. Otherwise, if there
850 * has been a heart-beat mailbox command outstanding, the HBA shall be put
851 * to offline.
852 **/
James Smart858c9f62007-06-17 19:56:39 -0500853void
854lpfc_hb_timeout_handler(struct lpfc_hba *phba)
855{
James Smart45ed1192009-10-02 15:17:02 -0400856 struct lpfc_vport **vports;
James Smart858c9f62007-06-17 19:56:39 -0500857 LPFC_MBOXQ_t *pmboxq;
James Smart0ff10d42008-01-11 01:52:36 -0500858 struct lpfc_dmabuf *buf_ptr;
James Smart45ed1192009-10-02 15:17:02 -0400859 int retval, i;
James Smart858c9f62007-06-17 19:56:39 -0500860 struct lpfc_sli *psli = &phba->sli;
James Smart0ff10d42008-01-11 01:52:36 -0500861 LIST_HEAD(completions);
James Smart858c9f62007-06-17 19:56:39 -0500862
James Smart45ed1192009-10-02 15:17:02 -0400863 vports = lpfc_create_vport_work_array(phba);
864 if (vports != NULL)
865 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++)
866 lpfc_rcv_seq_check_edtov(vports[i]);
867 lpfc_destroy_vport_work_array(phba, vports);
868
James Smart858c9f62007-06-17 19:56:39 -0500869 if ((phba->link_state == LPFC_HBA_ERROR) ||
James Smart51ef4c22007-08-02 11:10:31 -0400870 (phba->pport->load_flag & FC_UNLOADING) ||
James Smart858c9f62007-06-17 19:56:39 -0500871 (phba->pport->fc_flag & FC_OFFLINE_MODE))
872 return;
873
874 spin_lock_irq(&phba->pport->work_port_lock);
James Smart858c9f62007-06-17 19:56:39 -0500875
876 if (time_after(phba->last_completion_time + LPFC_HB_MBOX_INTERVAL * HZ,
877 jiffies)) {
878 spin_unlock_irq(&phba->pport->work_port_lock);
879 if (!phba->hb_outstanding)
880 mod_timer(&phba->hb_tmofunc,
881 jiffies + HZ * LPFC_HB_MBOX_INTERVAL);
882 else
883 mod_timer(&phba->hb_tmofunc,
884 jiffies + HZ * LPFC_HB_MBOX_TIMEOUT);
885 return;
886 }
887 spin_unlock_irq(&phba->pport->work_port_lock);
888
James Smart0ff10d42008-01-11 01:52:36 -0500889 if (phba->elsbuf_cnt &&
890 (phba->elsbuf_cnt == phba->elsbuf_prev_cnt)) {
891 spin_lock_irq(&phba->hbalock);
892 list_splice_init(&phba->elsbuf, &completions);
893 phba->elsbuf_cnt = 0;
894 phba->elsbuf_prev_cnt = 0;
895 spin_unlock_irq(&phba->hbalock);
896
897 while (!list_empty(&completions)) {
898 list_remove_head(&completions, buf_ptr,
899 struct lpfc_dmabuf, list);
900 lpfc_mbuf_free(phba, buf_ptr->virt, buf_ptr->phys);
901 kfree(buf_ptr);
902 }
903 }
904 phba->elsbuf_prev_cnt = phba->elsbuf_cnt;
905
James Smart858c9f62007-06-17 19:56:39 -0500906 /* If there is no heart beat outstanding, issue a heartbeat command */
James Smart13815c82008-01-11 01:52:48 -0500907 if (phba->cfg_enable_hba_heartbeat) {
908 if (!phba->hb_outstanding) {
909 pmboxq = mempool_alloc(phba->mbox_mem_pool,GFP_KERNEL);
910 if (!pmboxq) {
911 mod_timer(&phba->hb_tmofunc,
912 jiffies + HZ * LPFC_HB_MBOX_INTERVAL);
913 return;
914 }
915
916 lpfc_heart_beat(phba, pmboxq);
917 pmboxq->mbox_cmpl = lpfc_hb_mbox_cmpl;
918 pmboxq->vport = phba->pport;
919 retval = lpfc_sli_issue_mbox(phba, pmboxq, MBX_NOWAIT);
920
921 if (retval != MBX_BUSY && retval != MBX_SUCCESS) {
922 mempool_free(pmboxq, phba->mbox_mem_pool);
923 mod_timer(&phba->hb_tmofunc,
924 jiffies + HZ * LPFC_HB_MBOX_INTERVAL);
925 return;
926 }
James Smart858c9f62007-06-17 19:56:39 -0500927 mod_timer(&phba->hb_tmofunc,
James Smart13815c82008-01-11 01:52:48 -0500928 jiffies + HZ * LPFC_HB_MBOX_TIMEOUT);
929 phba->hb_outstanding = 1;
James Smart858c9f62007-06-17 19:56:39 -0500930 return;
James Smart13815c82008-01-11 01:52:48 -0500931 } else {
932 /*
933 * If heart beat timeout called with hb_outstanding set
934 * we need to take the HBA offline.
935 */
936 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
937 "0459 Adapter heartbeat failure, "
938 "taking this port offline.\n");
939
940 spin_lock_irq(&phba->hbalock);
James Smartf4b4c682009-05-22 14:53:12 -0400941 psli->sli_flag &= ~LPFC_SLI_ACTIVE;
James Smart13815c82008-01-11 01:52:48 -0500942 spin_unlock_irq(&phba->hbalock);
943
944 lpfc_offline_prep(phba);
945 lpfc_offline(phba);
946 lpfc_unblock_mgmt_io(phba);
947 phba->link_state = LPFC_HBA_ERROR;
948 lpfc_hba_down_post(phba);
James Smart858c9f62007-06-17 19:56:39 -0500949 }
James Smart858c9f62007-06-17 19:56:39 -0500950 }
951}
952
James Smarte59058c2008-08-24 21:49:00 -0400953/**
James Smart3621a712009-04-06 18:47:14 -0400954 * lpfc_offline_eratt - Bring lpfc offline on hardware error attention
James Smarte59058c2008-08-24 21:49:00 -0400955 * @phba: pointer to lpfc hba data structure.
956 *
957 * This routine is called to bring the HBA offline when HBA hardware error
958 * other than Port Error 6 has been detected.
959 **/
James Smart09372822008-01-11 01:52:54 -0500960static void
961lpfc_offline_eratt(struct lpfc_hba *phba)
962{
963 struct lpfc_sli *psli = &phba->sli;
964
965 spin_lock_irq(&phba->hbalock);
James Smartf4b4c682009-05-22 14:53:12 -0400966 psli->sli_flag &= ~LPFC_SLI_ACTIVE;
James Smart09372822008-01-11 01:52:54 -0500967 spin_unlock_irq(&phba->hbalock);
968 lpfc_offline_prep(phba);
969
970 lpfc_offline(phba);
971 lpfc_reset_barrier(phba);
James Smartf4b4c682009-05-22 14:53:12 -0400972 spin_lock_irq(&phba->hbalock);
James Smart09372822008-01-11 01:52:54 -0500973 lpfc_sli_brdreset(phba);
James Smartf4b4c682009-05-22 14:53:12 -0400974 spin_unlock_irq(&phba->hbalock);
James Smart09372822008-01-11 01:52:54 -0500975 lpfc_hba_down_post(phba);
976 lpfc_sli_brdready(phba, HS_MBRDY);
977 lpfc_unblock_mgmt_io(phba);
978 phba->link_state = LPFC_HBA_ERROR;
979 return;
980}
981
James Smarte59058c2008-08-24 21:49:00 -0400982/**
James Smartda0436e2009-05-22 14:51:39 -0400983 * lpfc_sli4_offline_eratt - Bring lpfc offline on SLI4 hardware error attention
984 * @phba: pointer to lpfc hba data structure.
985 *
986 * This routine is called to bring a SLI4 HBA offline when HBA hardware error
987 * other than Port Error 6 has been detected.
988 **/
989static void
990lpfc_sli4_offline_eratt(struct lpfc_hba *phba)
991{
992 lpfc_offline_prep(phba);
993 lpfc_offline(phba);
994 lpfc_sli4_brdreset(phba);
995 lpfc_hba_down_post(phba);
996 lpfc_sli4_post_status_check(phba);
997 lpfc_unblock_mgmt_io(phba);
998 phba->link_state = LPFC_HBA_ERROR;
999}
1000
1001/**
James Smarta257bf92009-04-06 18:48:10 -04001002 * lpfc_handle_deferred_eratt - The HBA hardware deferred error handler
1003 * @phba: pointer to lpfc hba data structure.
1004 *
1005 * This routine is invoked to handle the deferred HBA hardware error
1006 * conditions. This type of error is indicated by HBA by setting ER1
1007 * and another ER bit in the host status register. The driver will
1008 * wait until the ER1 bit clears before handling the error condition.
1009 **/
1010static void
1011lpfc_handle_deferred_eratt(struct lpfc_hba *phba)
1012{
1013 uint32_t old_host_status = phba->work_hs;
1014 struct lpfc_sli_ring *pring;
1015 struct lpfc_sli *psli = &phba->sli;
1016
James Smartf4b4c682009-05-22 14:53:12 -04001017 /* If the pci channel is offline, ignore possible errors,
1018 * since we cannot communicate with the pci card anyway.
1019 */
1020 if (pci_channel_offline(phba->pcidev)) {
1021 spin_lock_irq(&phba->hbalock);
1022 phba->hba_flag &= ~DEFER_ERATT;
1023 spin_unlock_irq(&phba->hbalock);
1024 return;
1025 }
1026
James Smarta257bf92009-04-06 18:48:10 -04001027 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
1028 "0479 Deferred Adapter Hardware Error "
1029 "Data: x%x x%x x%x\n",
1030 phba->work_hs,
1031 phba->work_status[0], phba->work_status[1]);
1032
1033 spin_lock_irq(&phba->hbalock);
James Smartf4b4c682009-05-22 14:53:12 -04001034 psli->sli_flag &= ~LPFC_SLI_ACTIVE;
James Smarta257bf92009-04-06 18:48:10 -04001035 spin_unlock_irq(&phba->hbalock);
1036
1037
1038 /*
1039 * Firmware stops when it triggred erratt. That could cause the I/Os
1040 * dropped by the firmware. Error iocb (I/O) on txcmplq and let the
1041 * SCSI layer retry it after re-establishing link.
1042 */
1043 pring = &psli->ring[psli->fcp_ring];
1044 lpfc_sli_abort_iocb_ring(phba, pring);
1045
1046 /*
1047 * There was a firmware error. Take the hba offline and then
1048 * attempt to restart it.
1049 */
1050 lpfc_offline_prep(phba);
1051 lpfc_offline(phba);
1052
1053 /* Wait for the ER1 bit to clear.*/
1054 while (phba->work_hs & HS_FFER1) {
1055 msleep(100);
1056 phba->work_hs = readl(phba->HSregaddr);
1057 /* If driver is unloading let the worker thread continue */
1058 if (phba->pport->load_flag & FC_UNLOADING) {
1059 phba->work_hs = 0;
1060 break;
1061 }
1062 }
1063
1064 /*
1065 * This is to ptrotect against a race condition in which
1066 * first write to the host attention register clear the
1067 * host status register.
1068 */
1069 if ((!phba->work_hs) && (!(phba->pport->load_flag & FC_UNLOADING)))
1070 phba->work_hs = old_host_status & ~HS_FFER1;
1071
James Smart3772a992009-05-22 14:50:54 -04001072 spin_lock_irq(&phba->hbalock);
James Smarta257bf92009-04-06 18:48:10 -04001073 phba->hba_flag &= ~DEFER_ERATT;
James Smart3772a992009-05-22 14:50:54 -04001074 spin_unlock_irq(&phba->hbalock);
James Smarta257bf92009-04-06 18:48:10 -04001075 phba->work_status[0] = readl(phba->MBslimaddr + 0xa8);
1076 phba->work_status[1] = readl(phba->MBslimaddr + 0xac);
1077}
1078
James Smart3772a992009-05-22 14:50:54 -04001079static void
1080lpfc_board_errevt_to_mgmt(struct lpfc_hba *phba)
1081{
1082 struct lpfc_board_event_header board_event;
1083 struct Scsi_Host *shost;
1084
1085 board_event.event_type = FC_REG_BOARD_EVENT;
1086 board_event.subcategory = LPFC_EVENT_PORTINTERR;
1087 shost = lpfc_shost_from_vport(phba->pport);
1088 fc_host_post_vendor_event(shost, fc_get_event_number(),
1089 sizeof(board_event),
1090 (char *) &board_event,
1091 LPFC_NL_VENDOR_ID);
1092}
1093
James Smarta257bf92009-04-06 18:48:10 -04001094/**
James Smart3772a992009-05-22 14:50:54 -04001095 * lpfc_handle_eratt_s3 - The SLI3 HBA hardware error handler
James Smarte59058c2008-08-24 21:49:00 -04001096 * @phba: pointer to lpfc hba data structure.
1097 *
1098 * This routine is invoked to handle the following HBA hardware error
1099 * conditions:
1100 * 1 - HBA error attention interrupt
1101 * 2 - DMA ring index out of range
1102 * 3 - Mailbox command came back as unknown
1103 **/
James Smart3772a992009-05-22 14:50:54 -04001104static void
1105lpfc_handle_eratt_s3(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -05001106{
James Smart2e0fef82007-06-17 19:56:36 -05001107 struct lpfc_vport *vport = phba->pport;
James Smart2e0fef82007-06-17 19:56:36 -05001108 struct lpfc_sli *psli = &phba->sli;
dea31012005-04-17 16:05:31 -05001109 struct lpfc_sli_ring *pring;
James Smartd2873e42006-08-18 17:46:43 -04001110 uint32_t event_data;
James Smart57127f12007-10-27 13:37:05 -04001111 unsigned long temperature;
1112 struct temp_event temp_event_data;
James Smart92d7f7b2007-06-17 19:56:38 -05001113 struct Scsi_Host *shost;
James Smart2e0fef82007-06-17 19:56:36 -05001114
Linas Vepstas8d63f372007-02-14 14:28:36 -06001115 /* If the pci channel is offline, ignore possible errors,
James Smart3772a992009-05-22 14:50:54 -04001116 * since we cannot communicate with the pci card anyway.
1117 */
1118 if (pci_channel_offline(phba->pcidev)) {
1119 spin_lock_irq(&phba->hbalock);
1120 phba->hba_flag &= ~DEFER_ERATT;
1121 spin_unlock_irq(&phba->hbalock);
Linas Vepstas8d63f372007-02-14 14:28:36 -06001122 return;
James Smart3772a992009-05-22 14:50:54 -04001123 }
1124
James Smart13815c82008-01-11 01:52:48 -05001125 /* If resets are disabled then leave the HBA alone and return */
1126 if (!phba->cfg_enable_hba_reset)
1127 return;
dea31012005-04-17 16:05:31 -05001128
James Smartea2151b2008-09-07 11:52:10 -04001129 /* Send an internal error event to mgmt application */
James Smart3772a992009-05-22 14:50:54 -04001130 lpfc_board_errevt_to_mgmt(phba);
James Smartea2151b2008-09-07 11:52:10 -04001131
James Smarta257bf92009-04-06 18:48:10 -04001132 if (phba->hba_flag & DEFER_ERATT)
1133 lpfc_handle_deferred_eratt(phba);
1134
James Smart97eab632008-04-07 10:16:05 -04001135 if (phba->work_hs & HS_FFER6) {
dea31012005-04-17 16:05:31 -05001136 /* Re-establishing Link */
1137 lpfc_printf_log(phba, KERN_INFO, LOG_LINK_EVENT,
James Smarte8b62012007-08-02 11:10:09 -04001138 "1301 Re-establishing Link "
dea31012005-04-17 16:05:31 -05001139 "Data: x%x x%x x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04001140 phba->work_hs,
dea31012005-04-17 16:05:31 -05001141 phba->work_status[0], phba->work_status[1]);
James Smart58da1ff2008-04-07 10:15:56 -04001142
James Smart92d7f7b2007-06-17 19:56:38 -05001143 spin_lock_irq(&phba->hbalock);
James Smartf4b4c682009-05-22 14:53:12 -04001144 psli->sli_flag &= ~LPFC_SLI_ACTIVE;
James Smart92d7f7b2007-06-17 19:56:38 -05001145 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05001146
1147 /*
1148 * Firmware stops when it triggled erratt with HS_FFER6.
1149 * That could cause the I/Os dropped by the firmware.
1150 * Error iocb (I/O) on txcmplq and let the SCSI layer
1151 * retry it after re-establishing link.
1152 */
1153 pring = &psli->ring[psli->fcp_ring];
1154 lpfc_sli_abort_iocb_ring(phba, pring);
1155
dea31012005-04-17 16:05:31 -05001156 /*
1157 * There was a firmware error. Take the hba offline and then
1158 * attempt to restart it.
1159 */
James Smart46fa3112007-04-25 09:51:45 -04001160 lpfc_offline_prep(phba);
dea31012005-04-17 16:05:31 -05001161 lpfc_offline(phba);
Jamie Wellnitz41415862006-02-28 19:25:27 -05001162 lpfc_sli_brdrestart(phba);
dea31012005-04-17 16:05:31 -05001163 if (lpfc_online(phba) == 0) { /* Initialize the HBA */
James Smart46fa3112007-04-25 09:51:45 -04001164 lpfc_unblock_mgmt_io(phba);
dea31012005-04-17 16:05:31 -05001165 return;
1166 }
James Smart46fa3112007-04-25 09:51:45 -04001167 lpfc_unblock_mgmt_io(phba);
James Smart57127f12007-10-27 13:37:05 -04001168 } else if (phba->work_hs & HS_CRIT_TEMP) {
1169 temperature = readl(phba->MBslimaddr + TEMPERATURE_OFFSET);
1170 temp_event_data.event_type = FC_REG_TEMPERATURE_EVENT;
1171 temp_event_data.event_code = LPFC_CRIT_TEMP;
1172 temp_event_data.data = (uint32_t)temperature;
1173
1174 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smartd7c255b2008-08-24 21:50:00 -04001175 "0406 Adapter maximum temperature exceeded "
James Smart57127f12007-10-27 13:37:05 -04001176 "(%ld), taking this port offline "
1177 "Data: x%x x%x x%x\n",
1178 temperature, phba->work_hs,
1179 phba->work_status[0], phba->work_status[1]);
1180
1181 shost = lpfc_shost_from_vport(phba->pport);
1182 fc_host_post_vendor_event(shost, fc_get_event_number(),
1183 sizeof(temp_event_data),
1184 (char *) &temp_event_data,
1185 SCSI_NL_VID_TYPE_PCI
1186 | PCI_VENDOR_ID_EMULEX);
1187
James Smart7af67052007-10-27 13:38:11 -04001188 spin_lock_irq(&phba->hbalock);
James Smart7af67052007-10-27 13:38:11 -04001189 phba->over_temp_state = HBA_OVER_TEMP;
1190 spin_unlock_irq(&phba->hbalock);
James Smart09372822008-01-11 01:52:54 -05001191 lpfc_offline_eratt(phba);
James Smart57127f12007-10-27 13:37:05 -04001192
dea31012005-04-17 16:05:31 -05001193 } else {
1194 /* The if clause above forces this code path when the status
James Smart93996272008-08-24 21:50:30 -04001195 * failure is a value other than FFER6. Do not call the offline
1196 * twice. This is the adapter hardware error path.
dea31012005-04-17 16:05:31 -05001197 */
1198 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04001199 "0457 Adapter Hardware Error "
dea31012005-04-17 16:05:31 -05001200 "Data: x%x x%x x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04001201 phba->work_hs,
dea31012005-04-17 16:05:31 -05001202 phba->work_status[0], phba->work_status[1]);
1203
James Smartd2873e42006-08-18 17:46:43 -04001204 event_data = FC_REG_DUMP_EVENT;
James Smart92d7f7b2007-06-17 19:56:38 -05001205 shost = lpfc_shost_from_vport(vport);
James Smart2e0fef82007-06-17 19:56:36 -05001206 fc_host_post_vendor_event(shost, fc_get_event_number(),
James Smartd2873e42006-08-18 17:46:43 -04001207 sizeof(event_data), (char *) &event_data,
1208 SCSI_NL_VID_TYPE_PCI | PCI_VENDOR_ID_EMULEX);
1209
James Smart09372822008-01-11 01:52:54 -05001210 lpfc_offline_eratt(phba);
dea31012005-04-17 16:05:31 -05001211 }
James Smart93996272008-08-24 21:50:30 -04001212 return;
dea31012005-04-17 16:05:31 -05001213}
1214
James Smarte59058c2008-08-24 21:49:00 -04001215/**
James Smartda0436e2009-05-22 14:51:39 -04001216 * lpfc_handle_eratt_s4 - The SLI4 HBA hardware error handler
1217 * @phba: pointer to lpfc hba data structure.
1218 *
1219 * This routine is invoked to handle the SLI4 HBA hardware error attention
1220 * conditions.
1221 **/
1222static void
1223lpfc_handle_eratt_s4(struct lpfc_hba *phba)
1224{
1225 struct lpfc_vport *vport = phba->pport;
1226 uint32_t event_data;
1227 struct Scsi_Host *shost;
1228
1229 /* If the pci channel is offline, ignore possible errors, since
1230 * we cannot communicate with the pci card anyway.
1231 */
1232 if (pci_channel_offline(phba->pcidev))
1233 return;
1234 /* If resets are disabled then leave the HBA alone and return */
1235 if (!phba->cfg_enable_hba_reset)
1236 return;
1237
1238 /* Send an internal error event to mgmt application */
1239 lpfc_board_errevt_to_mgmt(phba);
1240
1241 /* For now, the actual action for SLI4 device handling is not
1242 * specified yet, just treated it as adaptor hardware failure
1243 */
1244 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
1245 "0143 SLI4 Adapter Hardware Error Data: x%x x%x\n",
1246 phba->work_status[0], phba->work_status[1]);
1247
1248 event_data = FC_REG_DUMP_EVENT;
1249 shost = lpfc_shost_from_vport(vport);
1250 fc_host_post_vendor_event(shost, fc_get_event_number(),
1251 sizeof(event_data), (char *) &event_data,
1252 SCSI_NL_VID_TYPE_PCI | PCI_VENDOR_ID_EMULEX);
1253
1254 lpfc_sli4_offline_eratt(phba);
1255}
1256
1257/**
1258 * lpfc_handle_eratt - Wrapper func for handling hba error attention
1259 * @phba: pointer to lpfc HBA data structure.
1260 *
1261 * This routine wraps the actual SLI3 or SLI4 hba error attention handling
1262 * routine from the API jump table function pointer from the lpfc_hba struct.
1263 *
1264 * Return codes
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001265 * 0 - success.
James Smartda0436e2009-05-22 14:51:39 -04001266 * Any other value - error.
1267 **/
1268void
1269lpfc_handle_eratt(struct lpfc_hba *phba)
1270{
1271 (*phba->lpfc_handle_eratt)(phba);
1272}
1273
1274/**
James Smart3621a712009-04-06 18:47:14 -04001275 * lpfc_handle_latt - The HBA link event handler
James Smarte59058c2008-08-24 21:49:00 -04001276 * @phba: pointer to lpfc hba data structure.
1277 *
1278 * This routine is invoked from the worker thread to handle a HBA host
1279 * attention link event.
1280 **/
dea31012005-04-17 16:05:31 -05001281void
James Smart2e0fef82007-06-17 19:56:36 -05001282lpfc_handle_latt(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -05001283{
James Smart2e0fef82007-06-17 19:56:36 -05001284 struct lpfc_vport *vport = phba->pport;
1285 struct lpfc_sli *psli = &phba->sli;
dea31012005-04-17 16:05:31 -05001286 LPFC_MBOXQ_t *pmb;
1287 volatile uint32_t control;
1288 struct lpfc_dmabuf *mp;
James Smart09372822008-01-11 01:52:54 -05001289 int rc = 0;
dea31012005-04-17 16:05:31 -05001290
1291 pmb = (LPFC_MBOXQ_t *)mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
James Smart09372822008-01-11 01:52:54 -05001292 if (!pmb) {
1293 rc = 1;
dea31012005-04-17 16:05:31 -05001294 goto lpfc_handle_latt_err_exit;
James Smart09372822008-01-11 01:52:54 -05001295 }
dea31012005-04-17 16:05:31 -05001296
1297 mp = kmalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
James Smart09372822008-01-11 01:52:54 -05001298 if (!mp) {
1299 rc = 2;
dea31012005-04-17 16:05:31 -05001300 goto lpfc_handle_latt_free_pmb;
James Smart09372822008-01-11 01:52:54 -05001301 }
dea31012005-04-17 16:05:31 -05001302
1303 mp->virt = lpfc_mbuf_alloc(phba, 0, &mp->phys);
James Smart09372822008-01-11 01:52:54 -05001304 if (!mp->virt) {
1305 rc = 3;
dea31012005-04-17 16:05:31 -05001306 goto lpfc_handle_latt_free_mp;
James Smart09372822008-01-11 01:52:54 -05001307 }
dea31012005-04-17 16:05:31 -05001308
James.Smart@Emulex.Com6281bfe2005-11-28 11:41:33 -05001309 /* Cleanup any outstanding ELS commands */
James Smart549e55c2007-08-02 11:09:51 -04001310 lpfc_els_flush_all_cmd(phba);
dea31012005-04-17 16:05:31 -05001311
1312 psli->slistat.link_event++;
1313 lpfc_read_la(phba, pmb, mp);
1314 pmb->mbox_cmpl = lpfc_mbx_cmpl_read_la;
James Smart2e0fef82007-06-17 19:56:36 -05001315 pmb->vport = vport;
James Smart0d2b6b82008-06-14 22:52:47 -04001316 /* Block ELS IOCBs until we have processed this mbox command */
1317 phba->sli.ring[LPFC_ELS_RING].flag |= LPFC_STOP_IOCB_EVENT;
James Smart0b727fe2007-10-27 13:37:25 -04001318 rc = lpfc_sli_issue_mbox (phba, pmb, MBX_NOWAIT);
James Smart09372822008-01-11 01:52:54 -05001319 if (rc == MBX_NOT_FINISHED) {
1320 rc = 4;
James Smart14691152006-12-02 13:34:28 -05001321 goto lpfc_handle_latt_free_mbuf;
James Smart09372822008-01-11 01:52:54 -05001322 }
dea31012005-04-17 16:05:31 -05001323
1324 /* Clear Link Attention in HA REG */
James Smart2e0fef82007-06-17 19:56:36 -05001325 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05001326 writel(HA_LATT, phba->HAregaddr);
1327 readl(phba->HAregaddr); /* flush */
James Smart2e0fef82007-06-17 19:56:36 -05001328 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05001329
1330 return;
1331
James Smart14691152006-12-02 13:34:28 -05001332lpfc_handle_latt_free_mbuf:
James Smart0d2b6b82008-06-14 22:52:47 -04001333 phba->sli.ring[LPFC_ELS_RING].flag &= ~LPFC_STOP_IOCB_EVENT;
James Smart14691152006-12-02 13:34:28 -05001334 lpfc_mbuf_free(phba, mp->virt, mp->phys);
dea31012005-04-17 16:05:31 -05001335lpfc_handle_latt_free_mp:
1336 kfree(mp);
1337lpfc_handle_latt_free_pmb:
James Smart1dcb58e2007-04-25 09:51:30 -04001338 mempool_free(pmb, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -05001339lpfc_handle_latt_err_exit:
1340 /* Enable Link attention interrupts */
James Smart2e0fef82007-06-17 19:56:36 -05001341 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05001342 psli->sli_flag |= LPFC_PROCESS_LA;
1343 control = readl(phba->HCregaddr);
1344 control |= HC_LAINT_ENA;
1345 writel(control, phba->HCregaddr);
1346 readl(phba->HCregaddr); /* flush */
1347
1348 /* Clear Link Attention in HA REG */
1349 writel(HA_LATT, phba->HAregaddr);
1350 readl(phba->HAregaddr); /* flush */
James Smart2e0fef82007-06-17 19:56:36 -05001351 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05001352 lpfc_linkdown(phba);
James Smart2e0fef82007-06-17 19:56:36 -05001353 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -05001354
James Smart09372822008-01-11 01:52:54 -05001355 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX,
1356 "0300 LATT: Cannot issue READ_LA: Data:%d\n", rc);
dea31012005-04-17 16:05:31 -05001357
1358 return;
1359}
1360
James Smarte59058c2008-08-24 21:49:00 -04001361/**
James Smart3621a712009-04-06 18:47:14 -04001362 * lpfc_parse_vpd - Parse VPD (Vital Product Data)
James Smarte59058c2008-08-24 21:49:00 -04001363 * @phba: pointer to lpfc hba data structure.
1364 * @vpd: pointer to the vital product data.
1365 * @len: length of the vital product data in bytes.
1366 *
1367 * This routine parses the Vital Product Data (VPD). The VPD is treated as
1368 * an array of characters. In this routine, the ModelName, ProgramType, and
1369 * ModelDesc, etc. fields of the phba data structure will be populated.
1370 *
1371 * Return codes
1372 * 0 - pointer to the VPD passed in is NULL
1373 * 1 - success
1374 **/
James Smart3772a992009-05-22 14:50:54 -04001375int
James Smart2e0fef82007-06-17 19:56:36 -05001376lpfc_parse_vpd(struct lpfc_hba *phba, uint8_t *vpd, int len)
dea31012005-04-17 16:05:31 -05001377{
1378 uint8_t lenlo, lenhi;
Anton Blanchard07da60c2007-03-21 08:41:47 -05001379 int Length;
dea31012005-04-17 16:05:31 -05001380 int i, j;
1381 int finished = 0;
1382 int index = 0;
1383
1384 if (!vpd)
1385 return 0;
1386
1387 /* Vital Product */
James Smarted957682007-06-17 19:56:37 -05001388 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04001389 "0455 Vital Product Data: x%x x%x x%x x%x\n",
dea31012005-04-17 16:05:31 -05001390 (uint32_t) vpd[0], (uint32_t) vpd[1], (uint32_t) vpd[2],
1391 (uint32_t) vpd[3]);
Jamie Wellnitz74b72a52006-02-28 22:33:04 -05001392 while (!finished && (index < (len - 4))) {
dea31012005-04-17 16:05:31 -05001393 switch (vpd[index]) {
1394 case 0x82:
Jamie Wellnitz74b72a52006-02-28 22:33:04 -05001395 case 0x91:
dea31012005-04-17 16:05:31 -05001396 index += 1;
1397 lenlo = vpd[index];
1398 index += 1;
1399 lenhi = vpd[index];
1400 index += 1;
1401 i = ((((unsigned short)lenhi) << 8) + lenlo);
1402 index += i;
1403 break;
1404 case 0x90:
1405 index += 1;
1406 lenlo = vpd[index];
1407 index += 1;
1408 lenhi = vpd[index];
1409 index += 1;
1410 Length = ((((unsigned short)lenhi) << 8) + lenlo);
Jamie Wellnitz74b72a52006-02-28 22:33:04 -05001411 if (Length > len - index)
1412 Length = len - index;
dea31012005-04-17 16:05:31 -05001413 while (Length > 0) {
1414 /* Look for Serial Number */
1415 if ((vpd[index] == 'S') && (vpd[index+1] == 'N')) {
1416 index += 2;
1417 i = vpd[index];
1418 index += 1;
1419 j = 0;
1420 Length -= (3+i);
1421 while(i--) {
1422 phba->SerialNumber[j++] = vpd[index++];
1423 if (j == 31)
1424 break;
1425 }
1426 phba->SerialNumber[j] = 0;
1427 continue;
1428 }
1429 else if ((vpd[index] == 'V') && (vpd[index+1] == '1')) {
1430 phba->vpd_flag |= VPD_MODEL_DESC;
1431 index += 2;
1432 i = vpd[index];
1433 index += 1;
1434 j = 0;
1435 Length -= (3+i);
1436 while(i--) {
1437 phba->ModelDesc[j++] = vpd[index++];
1438 if (j == 255)
1439 break;
1440 }
1441 phba->ModelDesc[j] = 0;
1442 continue;
1443 }
1444 else if ((vpd[index] == 'V') && (vpd[index+1] == '2')) {
1445 phba->vpd_flag |= VPD_MODEL_NAME;
1446 index += 2;
1447 i = vpd[index];
1448 index += 1;
1449 j = 0;
1450 Length -= (3+i);
1451 while(i--) {
1452 phba->ModelName[j++] = vpd[index++];
1453 if (j == 79)
1454 break;
1455 }
1456 phba->ModelName[j] = 0;
1457 continue;
1458 }
1459 else if ((vpd[index] == 'V') && (vpd[index+1] == '3')) {
1460 phba->vpd_flag |= VPD_PROGRAM_TYPE;
1461 index += 2;
1462 i = vpd[index];
1463 index += 1;
1464 j = 0;
1465 Length -= (3+i);
1466 while(i--) {
1467 phba->ProgramType[j++] = vpd[index++];
1468 if (j == 255)
1469 break;
1470 }
1471 phba->ProgramType[j] = 0;
1472 continue;
1473 }
1474 else if ((vpd[index] == 'V') && (vpd[index+1] == '4')) {
1475 phba->vpd_flag |= VPD_PORT;
1476 index += 2;
1477 i = vpd[index];
1478 index += 1;
1479 j = 0;
1480 Length -= (3+i);
1481 while(i--) {
1482 phba->Port[j++] = vpd[index++];
1483 if (j == 19)
1484 break;
1485 }
1486 phba->Port[j] = 0;
1487 continue;
1488 }
1489 else {
1490 index += 2;
1491 i = vpd[index];
1492 index += 1;
1493 index += i;
1494 Length -= (3 + i);
1495 }
1496 }
1497 finished = 0;
1498 break;
1499 case 0x78:
1500 finished = 1;
1501 break;
1502 default:
1503 index ++;
1504 break;
1505 }
Jamie Wellnitz74b72a52006-02-28 22:33:04 -05001506 }
dea31012005-04-17 16:05:31 -05001507
1508 return(1);
1509}
1510
James Smarte59058c2008-08-24 21:49:00 -04001511/**
James Smart3621a712009-04-06 18:47:14 -04001512 * lpfc_get_hba_model_desc - Retrieve HBA device model name and description
James Smarte59058c2008-08-24 21:49:00 -04001513 * @phba: pointer to lpfc hba data structure.
1514 * @mdp: pointer to the data structure to hold the derived model name.
1515 * @descp: pointer to the data structure to hold the derived description.
1516 *
1517 * This routine retrieves HBA's description based on its registered PCI device
1518 * ID. The @descp passed into this function points to an array of 256 chars. It
1519 * shall be returned with the model name, maximum speed, and the host bus type.
1520 * The @mdp passed into this function points to an array of 80 chars. When the
1521 * function returns, the @mdp will be filled with the model name.
1522 **/
dea31012005-04-17 16:05:31 -05001523static void
James Smart2e0fef82007-06-17 19:56:36 -05001524lpfc_get_hba_model_desc(struct lpfc_hba *phba, uint8_t *mdp, uint8_t *descp)
dea31012005-04-17 16:05:31 -05001525{
1526 lpfc_vpd_t *vp;
James.Smart@Emulex.Comfefcb2b2005-11-28 15:08:56 -05001527 uint16_t dev_id = phba->pcidev->device;
Jamie Wellnitz74b72a52006-02-28 22:33:04 -05001528 int max_speed;
James Smart84774a42008-08-24 21:50:06 -04001529 int GE = 0;
James Smartda0436e2009-05-22 14:51:39 -04001530 int oneConnect = 0; /* default is not a oneConnect */
Jamie Wellnitz74b72a52006-02-28 22:33:04 -05001531 struct {
James Smarta747c9c2009-11-18 15:41:10 -05001532 char *name;
1533 char *bus;
1534 char *function;
1535 } m = {"<Unknown>", "", ""};
Jamie Wellnitz74b72a52006-02-28 22:33:04 -05001536
1537 if (mdp && mdp[0] != '\0'
1538 && descp && descp[0] != '\0')
1539 return;
1540
1541 if (phba->lmt & LMT_10Gb)
1542 max_speed = 10;
1543 else if (phba->lmt & LMT_8Gb)
1544 max_speed = 8;
1545 else if (phba->lmt & LMT_4Gb)
1546 max_speed = 4;
1547 else if (phba->lmt & LMT_2Gb)
1548 max_speed = 2;
1549 else
1550 max_speed = 1;
dea31012005-04-17 16:05:31 -05001551
1552 vp = &phba->vpd;
dea31012005-04-17 16:05:31 -05001553
James.Smart@Emulex.Come4adb202005-11-28 11:42:12 -05001554 switch (dev_id) {
James.Smart@Emulex.Com06325e72005-06-25 10:34:22 -04001555 case PCI_DEVICE_ID_FIREFLY:
James Smarta747c9c2009-11-18 15:41:10 -05001556 m = (typeof(m)){"LP6000", "PCI", "Fibre Channel Adapter"};
James.Smart@Emulex.Com06325e72005-06-25 10:34:22 -04001557 break;
dea31012005-04-17 16:05:31 -05001558 case PCI_DEVICE_ID_SUPERFLY:
1559 if (vp->rev.biuRev >= 1 && vp->rev.biuRev <= 3)
James Smarta747c9c2009-11-18 15:41:10 -05001560 m = (typeof(m)){"LP7000", "PCI",
1561 "Fibre Channel Adapter"};
dea31012005-04-17 16:05:31 -05001562 else
James Smarta747c9c2009-11-18 15:41:10 -05001563 m = (typeof(m)){"LP7000E", "PCI",
1564 "Fibre Channel Adapter"};
dea31012005-04-17 16:05:31 -05001565 break;
1566 case PCI_DEVICE_ID_DRAGONFLY:
James Smarta747c9c2009-11-18 15:41:10 -05001567 m = (typeof(m)){"LP8000", "PCI",
1568 "Fibre Channel Adapter"};
dea31012005-04-17 16:05:31 -05001569 break;
1570 case PCI_DEVICE_ID_CENTAUR:
1571 if (FC_JEDEC_ID(vp->rev.biuRev) == CENTAUR_2G_JEDEC_ID)
James Smarta747c9c2009-11-18 15:41:10 -05001572 m = (typeof(m)){"LP9002", "PCI",
1573 "Fibre Channel Adapter"};
dea31012005-04-17 16:05:31 -05001574 else
James Smarta747c9c2009-11-18 15:41:10 -05001575 m = (typeof(m)){"LP9000", "PCI",
1576 "Fibre Channel Adapter"};
dea31012005-04-17 16:05:31 -05001577 break;
1578 case PCI_DEVICE_ID_RFLY:
James Smarta747c9c2009-11-18 15:41:10 -05001579 m = (typeof(m)){"LP952", "PCI",
1580 "Fibre Channel Adapter"};
dea31012005-04-17 16:05:31 -05001581 break;
1582 case PCI_DEVICE_ID_PEGASUS:
James Smarta747c9c2009-11-18 15:41:10 -05001583 m = (typeof(m)){"LP9802", "PCI-X",
1584 "Fibre Channel Adapter"};
dea31012005-04-17 16:05:31 -05001585 break;
1586 case PCI_DEVICE_ID_THOR:
James Smarta747c9c2009-11-18 15:41:10 -05001587 m = (typeof(m)){"LP10000", "PCI-X",
1588 "Fibre Channel Adapter"};
dea31012005-04-17 16:05:31 -05001589 break;
1590 case PCI_DEVICE_ID_VIPER:
James Smarta747c9c2009-11-18 15:41:10 -05001591 m = (typeof(m)){"LPX1000", "PCI-X",
1592 "Fibre Channel Adapter"};
dea31012005-04-17 16:05:31 -05001593 break;
1594 case PCI_DEVICE_ID_PFLY:
James Smarta747c9c2009-11-18 15:41:10 -05001595 m = (typeof(m)){"LP982", "PCI-X",
1596 "Fibre Channel Adapter"};
dea31012005-04-17 16:05:31 -05001597 break;
1598 case PCI_DEVICE_ID_TFLY:
James Smarta747c9c2009-11-18 15:41:10 -05001599 m = (typeof(m)){"LP1050", "PCI-X",
1600 "Fibre Channel Adapter"};
dea31012005-04-17 16:05:31 -05001601 break;
1602 case PCI_DEVICE_ID_HELIOS:
James Smarta747c9c2009-11-18 15:41:10 -05001603 m = (typeof(m)){"LP11000", "PCI-X2",
1604 "Fibre Channel Adapter"};
dea31012005-04-17 16:05:31 -05001605 break;
James.Smart@Emulex.Come4adb202005-11-28 11:42:12 -05001606 case PCI_DEVICE_ID_HELIOS_SCSP:
James Smarta747c9c2009-11-18 15:41:10 -05001607 m = (typeof(m)){"LP11000-SP", "PCI-X2",
1608 "Fibre Channel Adapter"};
James.Smart@Emulex.Come4adb202005-11-28 11:42:12 -05001609 break;
1610 case PCI_DEVICE_ID_HELIOS_DCSP:
James Smarta747c9c2009-11-18 15:41:10 -05001611 m = (typeof(m)){"LP11002-SP", "PCI-X2",
1612 "Fibre Channel Adapter"};
James.Smart@Emulex.Come4adb202005-11-28 11:42:12 -05001613 break;
1614 case PCI_DEVICE_ID_NEPTUNE:
James Smarta747c9c2009-11-18 15:41:10 -05001615 m = (typeof(m)){"LPe1000", "PCIe", "Fibre Channel Adapter"};
James.Smart@Emulex.Come4adb202005-11-28 11:42:12 -05001616 break;
1617 case PCI_DEVICE_ID_NEPTUNE_SCSP:
James Smarta747c9c2009-11-18 15:41:10 -05001618 m = (typeof(m)){"LPe1000-SP", "PCIe", "Fibre Channel Adapter"};
James.Smart@Emulex.Come4adb202005-11-28 11:42:12 -05001619 break;
1620 case PCI_DEVICE_ID_NEPTUNE_DCSP:
James Smarta747c9c2009-11-18 15:41:10 -05001621 m = (typeof(m)){"LPe1002-SP", "PCIe", "Fibre Channel Adapter"};
James.Smart@Emulex.Come4adb202005-11-28 11:42:12 -05001622 break;
dea31012005-04-17 16:05:31 -05001623 case PCI_DEVICE_ID_BMID:
James Smarta747c9c2009-11-18 15:41:10 -05001624 m = (typeof(m)){"LP1150", "PCI-X2", "Fibre Channel Adapter"};
dea31012005-04-17 16:05:31 -05001625 break;
1626 case PCI_DEVICE_ID_BSMB:
James Smarta747c9c2009-11-18 15:41:10 -05001627 m = (typeof(m)){"LP111", "PCI-X2", "Fibre Channel Adapter"};
dea31012005-04-17 16:05:31 -05001628 break;
1629 case PCI_DEVICE_ID_ZEPHYR:
James Smarta747c9c2009-11-18 15:41:10 -05001630 m = (typeof(m)){"LPe11000", "PCIe", "Fibre Channel Adapter"};
dea31012005-04-17 16:05:31 -05001631 break;
James.Smart@Emulex.Come4adb202005-11-28 11:42:12 -05001632 case PCI_DEVICE_ID_ZEPHYR_SCSP:
James Smarta747c9c2009-11-18 15:41:10 -05001633 m = (typeof(m)){"LPe11000", "PCIe", "Fibre Channel Adapter"};
James.Smart@Emulex.Come4adb202005-11-28 11:42:12 -05001634 break;
1635 case PCI_DEVICE_ID_ZEPHYR_DCSP:
James Smarta747c9c2009-11-18 15:41:10 -05001636 m = (typeof(m)){"LP2105", "PCIe", "FCoE Adapter"};
James Smarta257bf92009-04-06 18:48:10 -04001637 GE = 1;
James.Smart@Emulex.Come4adb202005-11-28 11:42:12 -05001638 break;
dea31012005-04-17 16:05:31 -05001639 case PCI_DEVICE_ID_ZMID:
James Smarta747c9c2009-11-18 15:41:10 -05001640 m = (typeof(m)){"LPe1150", "PCIe", "Fibre Channel Adapter"};
dea31012005-04-17 16:05:31 -05001641 break;
1642 case PCI_DEVICE_ID_ZSMB:
James Smarta747c9c2009-11-18 15:41:10 -05001643 m = (typeof(m)){"LPe111", "PCIe", "Fibre Channel Adapter"};
dea31012005-04-17 16:05:31 -05001644 break;
1645 case PCI_DEVICE_ID_LP101:
James Smarta747c9c2009-11-18 15:41:10 -05001646 m = (typeof(m)){"LP101", "PCI-X", "Fibre Channel Adapter"};
dea31012005-04-17 16:05:31 -05001647 break;
1648 case PCI_DEVICE_ID_LP10000S:
James Smarta747c9c2009-11-18 15:41:10 -05001649 m = (typeof(m)){"LP10000-S", "PCI", "Fibre Channel Adapter"};
James.Smart@Emulex.Com06325e72005-06-25 10:34:22 -04001650 break;
James.Smart@Emulex.Come4adb202005-11-28 11:42:12 -05001651 case PCI_DEVICE_ID_LP11000S:
James Smarta747c9c2009-11-18 15:41:10 -05001652 m = (typeof(m)){"LP11000-S", "PCI-X2", "Fibre Channel Adapter"};
James Smart18a3b592006-12-02 13:35:08 -05001653 break;
James.Smart@Emulex.Come4adb202005-11-28 11:42:12 -05001654 case PCI_DEVICE_ID_LPE11000S:
James Smarta747c9c2009-11-18 15:41:10 -05001655 m = (typeof(m)){"LPe11000-S", "PCIe", "Fibre Channel Adapter"};
James.Smart@Emulex.Com5cc36b32005-11-28 11:42:19 -05001656 break;
James Smartb87eab32007-04-25 09:53:28 -04001657 case PCI_DEVICE_ID_SAT:
James Smarta747c9c2009-11-18 15:41:10 -05001658 m = (typeof(m)){"LPe12000", "PCIe", "Fibre Channel Adapter"};
James Smartb87eab32007-04-25 09:53:28 -04001659 break;
1660 case PCI_DEVICE_ID_SAT_MID:
James Smarta747c9c2009-11-18 15:41:10 -05001661 m = (typeof(m)){"LPe1250", "PCIe", "Fibre Channel Adapter"};
James Smartb87eab32007-04-25 09:53:28 -04001662 break;
1663 case PCI_DEVICE_ID_SAT_SMB:
James Smarta747c9c2009-11-18 15:41:10 -05001664 m = (typeof(m)){"LPe121", "PCIe", "Fibre Channel Adapter"};
James Smartb87eab32007-04-25 09:53:28 -04001665 break;
1666 case PCI_DEVICE_ID_SAT_DCSP:
James Smarta747c9c2009-11-18 15:41:10 -05001667 m = (typeof(m)){"LPe12002-SP", "PCIe", "Fibre Channel Adapter"};
James Smartb87eab32007-04-25 09:53:28 -04001668 break;
1669 case PCI_DEVICE_ID_SAT_SCSP:
James Smarta747c9c2009-11-18 15:41:10 -05001670 m = (typeof(m)){"LPe12000-SP", "PCIe", "Fibre Channel Adapter"};
James Smartb87eab32007-04-25 09:53:28 -04001671 break;
1672 case PCI_DEVICE_ID_SAT_S:
James Smarta747c9c2009-11-18 15:41:10 -05001673 m = (typeof(m)){"LPe12000-S", "PCIe", "Fibre Channel Adapter"};
James Smartb87eab32007-04-25 09:53:28 -04001674 break;
James Smart84774a42008-08-24 21:50:06 -04001675 case PCI_DEVICE_ID_HORNET:
James Smarta747c9c2009-11-18 15:41:10 -05001676 m = (typeof(m)){"LP21000", "PCIe", "FCoE Adapter"};
James Smart84774a42008-08-24 21:50:06 -04001677 GE = 1;
1678 break;
1679 case PCI_DEVICE_ID_PROTEUS_VF:
James Smarta747c9c2009-11-18 15:41:10 -05001680 m = (typeof(m)){"LPev12000", "PCIe IOV",
1681 "Fibre Channel Adapter"};
James Smart84774a42008-08-24 21:50:06 -04001682 break;
1683 case PCI_DEVICE_ID_PROTEUS_PF:
James Smarta747c9c2009-11-18 15:41:10 -05001684 m = (typeof(m)){"LPev12000", "PCIe IOV",
1685 "Fibre Channel Adapter"};
James Smart84774a42008-08-24 21:50:06 -04001686 break;
1687 case PCI_DEVICE_ID_PROTEUS_S:
James Smarta747c9c2009-11-18 15:41:10 -05001688 m = (typeof(m)){"LPemv12002-S", "PCIe IOV",
1689 "Fibre Channel Adapter"};
James Smart84774a42008-08-24 21:50:06 -04001690 break;
James Smartda0436e2009-05-22 14:51:39 -04001691 case PCI_DEVICE_ID_TIGERSHARK:
1692 oneConnect = 1;
James Smarta747c9c2009-11-18 15:41:10 -05001693 m = (typeof(m)){"OCe10100", "PCIe", "FCoE"};
James Smartda0436e2009-05-22 14:51:39 -04001694 break;
James Smarta747c9c2009-11-18 15:41:10 -05001695 case PCI_DEVICE_ID_TOMCAT:
James Smart6669f9b2009-10-02 15:16:45 -04001696 oneConnect = 1;
James Smarta747c9c2009-11-18 15:41:10 -05001697 m = (typeof(m)){"OCe11100", "PCIe", "FCoE"};
1698 break;
1699 case PCI_DEVICE_ID_FALCON:
1700 m = (typeof(m)){"LPSe12002-ML1-E", "PCIe",
1701 "EmulexSecure Fibre"};
James Smart6669f9b2009-10-02 15:16:45 -04001702 break;
James.Smart@Emulex.Com5cc36b32005-11-28 11:42:19 -05001703 default:
James Smarta747c9c2009-11-18 15:41:10 -05001704 m = (typeof(m)){"Unknown", "", ""};
James.Smart@Emulex.Come4adb202005-11-28 11:42:12 -05001705 break;
dea31012005-04-17 16:05:31 -05001706 }
Jamie Wellnitz74b72a52006-02-28 22:33:04 -05001707
1708 if (mdp && mdp[0] == '\0')
1709 snprintf(mdp, 79,"%s", m.name);
James Smartda0436e2009-05-22 14:51:39 -04001710 /* oneConnect hba requires special processing, they are all initiators
1711 * and we put the port number on the end
1712 */
1713 if (descp && descp[0] == '\0') {
1714 if (oneConnect)
1715 snprintf(descp, 255,
James Smarta747c9c2009-11-18 15:41:10 -05001716 "Emulex OneConnect %s, %s Initiator, Port %s",
1717 m.name, m.function,
James Smartda0436e2009-05-22 14:51:39 -04001718 phba->Port);
1719 else
1720 snprintf(descp, 255,
1721 "Emulex %s %d%s %s %s",
James Smarta747c9c2009-11-18 15:41:10 -05001722 m.name, max_speed, (GE) ? "GE" : "Gb",
1723 m.bus, m.function);
James Smartda0436e2009-05-22 14:51:39 -04001724 }
dea31012005-04-17 16:05:31 -05001725}
1726
James Smarte59058c2008-08-24 21:49:00 -04001727/**
James Smart3621a712009-04-06 18:47:14 -04001728 * lpfc_post_buffer - Post IOCB(s) with DMA buffer descriptor(s) to a IOCB ring
James Smarte59058c2008-08-24 21:49:00 -04001729 * @phba: pointer to lpfc hba data structure.
1730 * @pring: pointer to a IOCB ring.
1731 * @cnt: the number of IOCBs to be posted to the IOCB ring.
1732 *
1733 * This routine posts a given number of IOCBs with the associated DMA buffer
1734 * descriptors specified by the cnt argument to the given IOCB ring.
1735 *
1736 * Return codes
1737 * The number of IOCBs NOT able to be posted to the IOCB ring.
1738 **/
dea31012005-04-17 16:05:31 -05001739int
James Smart495a7142008-06-14 22:52:59 -04001740lpfc_post_buffer(struct lpfc_hba *phba, struct lpfc_sli_ring *pring, int cnt)
dea31012005-04-17 16:05:31 -05001741{
1742 IOCB_t *icmd;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04001743 struct lpfc_iocbq *iocb;
dea31012005-04-17 16:05:31 -05001744 struct lpfc_dmabuf *mp1, *mp2;
1745
1746 cnt += pring->missbufcnt;
1747
1748 /* While there are buffers to post */
1749 while (cnt > 0) {
1750 /* Allocate buffer for command iocb */
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -04001751 iocb = lpfc_sli_get_iocbq(phba);
dea31012005-04-17 16:05:31 -05001752 if (iocb == NULL) {
1753 pring->missbufcnt = cnt;
1754 return cnt;
1755 }
dea31012005-04-17 16:05:31 -05001756 icmd = &iocb->iocb;
1757
1758 /* 2 buffers can be posted per command */
1759 /* Allocate buffer to post */
1760 mp1 = kmalloc(sizeof (struct lpfc_dmabuf), GFP_KERNEL);
1761 if (mp1)
James Smart98c9ea52007-10-27 13:37:33 -04001762 mp1->virt = lpfc_mbuf_alloc(phba, MEM_PRI, &mp1->phys);
1763 if (!mp1 || !mp1->virt) {
Jesper Juhlc9475cb2005-11-07 01:01:26 -08001764 kfree(mp1);
James Bottomley604a3e32005-10-29 10:28:33 -05001765 lpfc_sli_release_iocbq(phba, iocb);
dea31012005-04-17 16:05:31 -05001766 pring->missbufcnt = cnt;
1767 return cnt;
1768 }
1769
1770 INIT_LIST_HEAD(&mp1->list);
1771 /* Allocate buffer to post */
1772 if (cnt > 1) {
1773 mp2 = kmalloc(sizeof (struct lpfc_dmabuf), GFP_KERNEL);
1774 if (mp2)
1775 mp2->virt = lpfc_mbuf_alloc(phba, MEM_PRI,
1776 &mp2->phys);
James Smart98c9ea52007-10-27 13:37:33 -04001777 if (!mp2 || !mp2->virt) {
Jesper Juhlc9475cb2005-11-07 01:01:26 -08001778 kfree(mp2);
dea31012005-04-17 16:05:31 -05001779 lpfc_mbuf_free(phba, mp1->virt, mp1->phys);
1780 kfree(mp1);
James Bottomley604a3e32005-10-29 10:28:33 -05001781 lpfc_sli_release_iocbq(phba, iocb);
dea31012005-04-17 16:05:31 -05001782 pring->missbufcnt = cnt;
1783 return cnt;
1784 }
1785
1786 INIT_LIST_HEAD(&mp2->list);
1787 } else {
1788 mp2 = NULL;
1789 }
1790
1791 icmd->un.cont64[0].addrHigh = putPaddrHigh(mp1->phys);
1792 icmd->un.cont64[0].addrLow = putPaddrLow(mp1->phys);
1793 icmd->un.cont64[0].tus.f.bdeSize = FCELSSIZE;
1794 icmd->ulpBdeCount = 1;
1795 cnt--;
1796 if (mp2) {
1797 icmd->un.cont64[1].addrHigh = putPaddrHigh(mp2->phys);
1798 icmd->un.cont64[1].addrLow = putPaddrLow(mp2->phys);
1799 icmd->un.cont64[1].tus.f.bdeSize = FCELSSIZE;
1800 cnt--;
1801 icmd->ulpBdeCount = 2;
1802 }
1803
1804 icmd->ulpCommand = CMD_QUE_RING_BUF64_CN;
1805 icmd->ulpLe = 1;
1806
James Smart3772a992009-05-22 14:50:54 -04001807 if (lpfc_sli_issue_iocb(phba, pring->ringno, iocb, 0) ==
1808 IOCB_ERROR) {
dea31012005-04-17 16:05:31 -05001809 lpfc_mbuf_free(phba, mp1->virt, mp1->phys);
1810 kfree(mp1);
1811 cnt++;
1812 if (mp2) {
1813 lpfc_mbuf_free(phba, mp2->virt, mp2->phys);
1814 kfree(mp2);
1815 cnt++;
1816 }
James Bottomley604a3e32005-10-29 10:28:33 -05001817 lpfc_sli_release_iocbq(phba, iocb);
dea31012005-04-17 16:05:31 -05001818 pring->missbufcnt = cnt;
dea31012005-04-17 16:05:31 -05001819 return cnt;
1820 }
dea31012005-04-17 16:05:31 -05001821 lpfc_sli_ringpostbuf_put(phba, pring, mp1);
James Smart92d7f7b2007-06-17 19:56:38 -05001822 if (mp2)
dea31012005-04-17 16:05:31 -05001823 lpfc_sli_ringpostbuf_put(phba, pring, mp2);
dea31012005-04-17 16:05:31 -05001824 }
1825 pring->missbufcnt = 0;
1826 return 0;
1827}
1828
James Smarte59058c2008-08-24 21:49:00 -04001829/**
James Smart3621a712009-04-06 18:47:14 -04001830 * lpfc_post_rcv_buf - Post the initial receive IOCB buffers to ELS ring
James Smarte59058c2008-08-24 21:49:00 -04001831 * @phba: pointer to lpfc hba data structure.
1832 *
1833 * This routine posts initial receive IOCB buffers to the ELS ring. The
1834 * current number of initial IOCB buffers specified by LPFC_BUF_RING0 is
1835 * set to 64 IOCBs.
1836 *
1837 * Return codes
1838 * 0 - success (currently always success)
1839 **/
dea31012005-04-17 16:05:31 -05001840static int
James Smart2e0fef82007-06-17 19:56:36 -05001841lpfc_post_rcv_buf(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -05001842{
1843 struct lpfc_sli *psli = &phba->sli;
1844
1845 /* Ring 0, ELS / CT buffers */
James Smart495a7142008-06-14 22:52:59 -04001846 lpfc_post_buffer(phba, &psli->ring[LPFC_ELS_RING], LPFC_BUF_RING0);
dea31012005-04-17 16:05:31 -05001847 /* Ring 2 - FCP no buffers needed */
1848
1849 return 0;
1850}
1851
1852#define S(N,V) (((V)<<(N))|((V)>>(32-(N))))
1853
James Smarte59058c2008-08-24 21:49:00 -04001854/**
James Smart3621a712009-04-06 18:47:14 -04001855 * lpfc_sha_init - Set up initial array of hash table entries
James Smarte59058c2008-08-24 21:49:00 -04001856 * @HashResultPointer: pointer to an array as hash table.
1857 *
1858 * This routine sets up the initial values to the array of hash table entries
1859 * for the LC HBAs.
1860 **/
dea31012005-04-17 16:05:31 -05001861static void
1862lpfc_sha_init(uint32_t * HashResultPointer)
1863{
1864 HashResultPointer[0] = 0x67452301;
1865 HashResultPointer[1] = 0xEFCDAB89;
1866 HashResultPointer[2] = 0x98BADCFE;
1867 HashResultPointer[3] = 0x10325476;
1868 HashResultPointer[4] = 0xC3D2E1F0;
1869}
1870
James Smarte59058c2008-08-24 21:49:00 -04001871/**
James Smart3621a712009-04-06 18:47:14 -04001872 * lpfc_sha_iterate - Iterate initial hash table with the working hash table
James Smarte59058c2008-08-24 21:49:00 -04001873 * @HashResultPointer: pointer to an initial/result hash table.
1874 * @HashWorkingPointer: pointer to an working hash table.
1875 *
1876 * This routine iterates an initial hash table pointed by @HashResultPointer
1877 * with the values from the working hash table pointeed by @HashWorkingPointer.
1878 * The results are putting back to the initial hash table, returned through
1879 * the @HashResultPointer as the result hash table.
1880 **/
dea31012005-04-17 16:05:31 -05001881static void
1882lpfc_sha_iterate(uint32_t * HashResultPointer, uint32_t * HashWorkingPointer)
1883{
1884 int t;
1885 uint32_t TEMP;
1886 uint32_t A, B, C, D, E;
1887 t = 16;
1888 do {
1889 HashWorkingPointer[t] =
1890 S(1,
1891 HashWorkingPointer[t - 3] ^ HashWorkingPointer[t -
1892 8] ^
1893 HashWorkingPointer[t - 14] ^ HashWorkingPointer[t - 16]);
1894 } while (++t <= 79);
1895 t = 0;
1896 A = HashResultPointer[0];
1897 B = HashResultPointer[1];
1898 C = HashResultPointer[2];
1899 D = HashResultPointer[3];
1900 E = HashResultPointer[4];
1901
1902 do {
1903 if (t < 20) {
1904 TEMP = ((B & C) | ((~B) & D)) + 0x5A827999;
1905 } else if (t < 40) {
1906 TEMP = (B ^ C ^ D) + 0x6ED9EBA1;
1907 } else if (t < 60) {
1908 TEMP = ((B & C) | (B & D) | (C & D)) + 0x8F1BBCDC;
1909 } else {
1910 TEMP = (B ^ C ^ D) + 0xCA62C1D6;
1911 }
1912 TEMP += S(5, A) + E + HashWorkingPointer[t];
1913 E = D;
1914 D = C;
1915 C = S(30, B);
1916 B = A;
1917 A = TEMP;
1918 } while (++t <= 79);
1919
1920 HashResultPointer[0] += A;
1921 HashResultPointer[1] += B;
1922 HashResultPointer[2] += C;
1923 HashResultPointer[3] += D;
1924 HashResultPointer[4] += E;
1925
1926}
1927
James Smarte59058c2008-08-24 21:49:00 -04001928/**
James Smart3621a712009-04-06 18:47:14 -04001929 * lpfc_challenge_key - Create challenge key based on WWPN of the HBA
James Smarte59058c2008-08-24 21:49:00 -04001930 * @RandomChallenge: pointer to the entry of host challenge random number array.
1931 * @HashWorking: pointer to the entry of the working hash array.
1932 *
1933 * This routine calculates the working hash array referred by @HashWorking
1934 * from the challenge random numbers associated with the host, referred by
1935 * @RandomChallenge. The result is put into the entry of the working hash
1936 * array and returned by reference through @HashWorking.
1937 **/
dea31012005-04-17 16:05:31 -05001938static void
1939lpfc_challenge_key(uint32_t * RandomChallenge, uint32_t * HashWorking)
1940{
1941 *HashWorking = (*RandomChallenge ^ *HashWorking);
1942}
1943
James Smarte59058c2008-08-24 21:49:00 -04001944/**
James Smart3621a712009-04-06 18:47:14 -04001945 * lpfc_hba_init - Perform special handling for LC HBA initialization
James Smarte59058c2008-08-24 21:49:00 -04001946 * @phba: pointer to lpfc hba data structure.
1947 * @hbainit: pointer to an array of unsigned 32-bit integers.
1948 *
1949 * This routine performs the special handling for LC HBA initialization.
1950 **/
dea31012005-04-17 16:05:31 -05001951void
1952lpfc_hba_init(struct lpfc_hba *phba, uint32_t *hbainit)
1953{
1954 int t;
1955 uint32_t *HashWorking;
James Smart2e0fef82007-06-17 19:56:36 -05001956 uint32_t *pwwnn = (uint32_t *) phba->wwnn;
dea31012005-04-17 16:05:31 -05001957
Mariusz Kozlowskibbfbbbc2007-08-11 10:13:24 +02001958 HashWorking = kcalloc(80, sizeof(uint32_t), GFP_KERNEL);
dea31012005-04-17 16:05:31 -05001959 if (!HashWorking)
1960 return;
1961
dea31012005-04-17 16:05:31 -05001962 HashWorking[0] = HashWorking[78] = *pwwnn++;
1963 HashWorking[1] = HashWorking[79] = *pwwnn;
1964
1965 for (t = 0; t < 7; t++)
1966 lpfc_challenge_key(phba->RandomData + t, HashWorking + t);
1967
1968 lpfc_sha_init(hbainit);
1969 lpfc_sha_iterate(hbainit, HashWorking);
1970 kfree(HashWorking);
1971}
1972
James Smarte59058c2008-08-24 21:49:00 -04001973/**
James Smart3621a712009-04-06 18:47:14 -04001974 * lpfc_cleanup - Performs vport cleanups before deleting a vport
James Smarte59058c2008-08-24 21:49:00 -04001975 * @vport: pointer to a virtual N_Port data structure.
1976 *
1977 * This routine performs the necessary cleanups before deleting the @vport.
1978 * It invokes the discovery state machine to perform necessary state
1979 * transitions and to release the ndlps associated with the @vport. Note,
1980 * the physical port is treated as @vport 0.
1981 **/
James Smart87af33f2007-10-27 13:37:43 -04001982void
James Smart2e0fef82007-06-17 19:56:36 -05001983lpfc_cleanup(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05001984{
James Smart87af33f2007-10-27 13:37:43 -04001985 struct lpfc_hba *phba = vport->phba;
dea31012005-04-17 16:05:31 -05001986 struct lpfc_nodelist *ndlp, *next_ndlp;
James Smarta8adb832007-10-27 13:37:53 -04001987 int i = 0;
dea31012005-04-17 16:05:31 -05001988
James Smart87af33f2007-10-27 13:37:43 -04001989 if (phba->link_state > LPFC_LINK_DOWN)
1990 lpfc_port_link_failure(vport);
1991
1992 list_for_each_entry_safe(ndlp, next_ndlp, &vport->fc_nodes, nlp_listp) {
James Smarte47c9092008-02-08 18:49:26 -05001993 if (!NLP_CHK_NODE_ACT(ndlp)) {
1994 ndlp = lpfc_enable_node(vport, ndlp,
1995 NLP_STE_UNUSED_NODE);
1996 if (!ndlp)
1997 continue;
1998 spin_lock_irq(&phba->ndlp_lock);
1999 NLP_SET_FREE_REQ(ndlp);
2000 spin_unlock_irq(&phba->ndlp_lock);
2001 /* Trigger the release of the ndlp memory */
2002 lpfc_nlp_put(ndlp);
2003 continue;
2004 }
2005 spin_lock_irq(&phba->ndlp_lock);
2006 if (NLP_CHK_FREE_REQ(ndlp)) {
2007 /* The ndlp should not be in memory free mode already */
2008 spin_unlock_irq(&phba->ndlp_lock);
2009 continue;
2010 } else
2011 /* Indicate request for freeing ndlp memory */
2012 NLP_SET_FREE_REQ(ndlp);
2013 spin_unlock_irq(&phba->ndlp_lock);
2014
James Smart58da1ff2008-04-07 10:15:56 -04002015 if (vport->port_type != LPFC_PHYSICAL_PORT &&
2016 ndlp->nlp_DID == Fabric_DID) {
2017 /* Just free up ndlp with Fabric_DID for vports */
2018 lpfc_nlp_put(ndlp);
2019 continue;
2020 }
2021
James Smart87af33f2007-10-27 13:37:43 -04002022 if (ndlp->nlp_type & NLP_FABRIC)
2023 lpfc_disc_state_machine(vport, ndlp, NULL,
2024 NLP_EVT_DEVICE_RECOVERY);
James Smarte47c9092008-02-08 18:49:26 -05002025
James Smart87af33f2007-10-27 13:37:43 -04002026 lpfc_disc_state_machine(vport, ndlp, NULL,
2027 NLP_EVT_DEVICE_RM);
James Smart495a7142008-06-14 22:52:59 -04002028
James Smart87af33f2007-10-27 13:37:43 -04002029 }
2030
James Smarta8adb832007-10-27 13:37:53 -04002031 /* At this point, ALL ndlp's should be gone
2032 * because of the previous NLP_EVT_DEVICE_RM.
2033 * Lets wait for this to happen, if needed.
2034 */
James Smart87af33f2007-10-27 13:37:43 -04002035 while (!list_empty(&vport->fc_nodes)) {
James Smarta8adb832007-10-27 13:37:53 -04002036 if (i++ > 3000) {
James Smart87af33f2007-10-27 13:37:43 -04002037 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
James Smarta8adb832007-10-27 13:37:53 -04002038 "0233 Nodelist not empty\n");
James Smarte47c9092008-02-08 18:49:26 -05002039 list_for_each_entry_safe(ndlp, next_ndlp,
2040 &vport->fc_nodes, nlp_listp) {
2041 lpfc_printf_vlog(ndlp->vport, KERN_ERR,
2042 LOG_NODE,
James Smartd7c255b2008-08-24 21:50:00 -04002043 "0282 did:x%x ndlp:x%p "
James Smarte47c9092008-02-08 18:49:26 -05002044 "usgmap:x%x refcnt:%d\n",
2045 ndlp->nlp_DID, (void *)ndlp,
2046 ndlp->nlp_usg_map,
2047 atomic_read(
2048 &ndlp->kref.refcount));
2049 }
James Smarta8adb832007-10-27 13:37:53 -04002050 break;
James Smart87af33f2007-10-27 13:37:43 -04002051 }
James Smarta8adb832007-10-27 13:37:53 -04002052
2053 /* Wait for any activity on ndlps to settle */
2054 msleep(10);
James Smart87af33f2007-10-27 13:37:43 -04002055 }
dea31012005-04-17 16:05:31 -05002056}
2057
James Smarte59058c2008-08-24 21:49:00 -04002058/**
James Smart3621a712009-04-06 18:47:14 -04002059 * lpfc_stop_vport_timers - Stop all the timers associated with a vport
James Smarte59058c2008-08-24 21:49:00 -04002060 * @vport: pointer to a virtual N_Port data structure.
2061 *
2062 * This routine stops all the timers associated with a @vport. This function
2063 * is invoked before disabling or deleting a @vport. Note that the physical
2064 * port is treated as @vport 0.
2065 **/
James Smart92d7f7b2007-06-17 19:56:38 -05002066void
2067lpfc_stop_vport_timers(struct lpfc_vport *vport)
dea31012005-04-17 16:05:31 -05002068{
James Smart92d7f7b2007-06-17 19:56:38 -05002069 del_timer_sync(&vport->els_tmofunc);
2070 del_timer_sync(&vport->fc_fdmitmo);
2071 lpfc_can_disctmo(vport);
2072 return;
dea31012005-04-17 16:05:31 -05002073}
2074
James Smarte59058c2008-08-24 21:49:00 -04002075/**
James Smart3772a992009-05-22 14:50:54 -04002076 * lpfc_stop_hba_timers - Stop all the timers associated with an HBA
James Smarte59058c2008-08-24 21:49:00 -04002077 * @phba: pointer to lpfc hba data structure.
2078 *
2079 * This routine stops all the timers associated with a HBA. This function is
2080 * invoked before either putting a HBA offline or unloading the driver.
2081 **/
James Smart3772a992009-05-22 14:50:54 -04002082void
2083lpfc_stop_hba_timers(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -05002084{
James Smart51ef4c22007-08-02 11:10:31 -04002085 lpfc_stop_vport_timers(phba->pport);
James Smart2e0fef82007-06-17 19:56:36 -05002086 del_timer_sync(&phba->sli.mbox_tmo);
James Smart92d7f7b2007-06-17 19:56:38 -05002087 del_timer_sync(&phba->fabric_block_timer);
James Smart93996272008-08-24 21:50:30 -04002088 del_timer_sync(&phba->eratt_poll);
James Smart3772a992009-05-22 14:50:54 -04002089 del_timer_sync(&phba->hb_tmofunc);
2090 phba->hb_outstanding = 0;
2091
2092 switch (phba->pci_dev_grp) {
2093 case LPFC_PCI_DEV_LP:
2094 /* Stop any LightPulse device specific driver timers */
2095 del_timer_sync(&phba->fcp_poll_timer);
2096 break;
2097 case LPFC_PCI_DEV_OC:
2098 /* Stop any OneConnect device sepcific driver timers */
2099 break;
2100 default:
2101 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
2102 "0297 Invalid device group (x%x)\n",
2103 phba->pci_dev_grp);
2104 break;
2105 }
James Smart2e0fef82007-06-17 19:56:36 -05002106 return;
dea31012005-04-17 16:05:31 -05002107}
2108
James Smarte59058c2008-08-24 21:49:00 -04002109/**
James Smart3621a712009-04-06 18:47:14 -04002110 * lpfc_block_mgmt_io - Mark a HBA's management interface as blocked
James Smarte59058c2008-08-24 21:49:00 -04002111 * @phba: pointer to lpfc hba data structure.
2112 *
2113 * This routine marks a HBA's management interface as blocked. Once the HBA's
2114 * management interface is marked as blocked, all the user space access to
2115 * the HBA, whether they are from sysfs interface or libdfc interface will
2116 * all be blocked. The HBA is set to block the management interface when the
2117 * driver prepares the HBA interface for online or offline.
2118 **/
Adrian Bunka6ababd2007-11-05 18:07:33 +01002119static void
2120lpfc_block_mgmt_io(struct lpfc_hba * phba)
2121{
2122 unsigned long iflag;
2123
2124 spin_lock_irqsave(&phba->hbalock, iflag);
2125 phba->sli.sli_flag |= LPFC_BLOCK_MGMT_IO;
2126 spin_unlock_irqrestore(&phba->hbalock, iflag);
2127}
2128
James Smarte59058c2008-08-24 21:49:00 -04002129/**
James Smart3621a712009-04-06 18:47:14 -04002130 * lpfc_online - Initialize and bring a HBA online
James Smarte59058c2008-08-24 21:49:00 -04002131 * @phba: pointer to lpfc hba data structure.
2132 *
2133 * This routine initializes the HBA and brings a HBA online. During this
2134 * process, the management interface is blocked to prevent user space access
2135 * to the HBA interfering with the driver initialization.
2136 *
2137 * Return codes
2138 * 0 - successful
2139 * 1 - failed
2140 **/
dea31012005-04-17 16:05:31 -05002141int
James Smart2e0fef82007-06-17 19:56:36 -05002142lpfc_online(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -05002143{
Julia Lawall372bd282008-12-16 16:15:08 +01002144 struct lpfc_vport *vport;
James Smart549e55c2007-08-02 11:09:51 -04002145 struct lpfc_vport **vports;
2146 int i;
James Smart2e0fef82007-06-17 19:56:36 -05002147
dea31012005-04-17 16:05:31 -05002148 if (!phba)
2149 return 0;
Julia Lawall372bd282008-12-16 16:15:08 +01002150 vport = phba->pport;
dea31012005-04-17 16:05:31 -05002151
James Smart2e0fef82007-06-17 19:56:36 -05002152 if (!(vport->fc_flag & FC_OFFLINE_MODE))
dea31012005-04-17 16:05:31 -05002153 return 0;
2154
James Smarted957682007-06-17 19:56:37 -05002155 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04002156 "0458 Bring Adapter online\n");
dea31012005-04-17 16:05:31 -05002157
James Smart46fa3112007-04-25 09:51:45 -04002158 lpfc_block_mgmt_io(phba);
dea31012005-04-17 16:05:31 -05002159
James Smart46fa3112007-04-25 09:51:45 -04002160 if (!lpfc_sli_queue_setup(phba)) {
2161 lpfc_unblock_mgmt_io(phba);
dea31012005-04-17 16:05:31 -05002162 return 1;
James Smart46fa3112007-04-25 09:51:45 -04002163 }
2164
James Smartda0436e2009-05-22 14:51:39 -04002165 if (phba->sli_rev == LPFC_SLI_REV4) {
2166 if (lpfc_sli4_hba_setup(phba)) { /* Initialize SLI4 HBA */
2167 lpfc_unblock_mgmt_io(phba);
2168 return 1;
2169 }
2170 } else {
2171 if (lpfc_sli_hba_setup(phba)) { /* Initialize SLI2/SLI3 HBA */
2172 lpfc_unblock_mgmt_io(phba);
2173 return 1;
2174 }
James Smart46fa3112007-04-25 09:51:45 -04002175 }
dea31012005-04-17 16:05:31 -05002176
James Smart549e55c2007-08-02 11:09:51 -04002177 vports = lpfc_create_vport_work_array(phba);
2178 if (vports != NULL)
James Smartda0436e2009-05-22 14:51:39 -04002179 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
James Smart549e55c2007-08-02 11:09:51 -04002180 struct Scsi_Host *shost;
2181 shost = lpfc_shost_from_vport(vports[i]);
2182 spin_lock_irq(shost->host_lock);
2183 vports[i]->fc_flag &= ~FC_OFFLINE_MODE;
2184 if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED)
2185 vports[i]->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
James Smart1c6834a2009-07-19 10:01:26 -04002186 if (phba->sli_rev == LPFC_SLI_REV4)
2187 vports[i]->fc_flag |= FC_VPORT_NEEDS_INIT_VPI;
James Smart549e55c2007-08-02 11:09:51 -04002188 spin_unlock_irq(shost->host_lock);
2189 }
James Smart09372822008-01-11 01:52:54 -05002190 lpfc_destroy_vport_work_array(phba, vports);
dea31012005-04-17 16:05:31 -05002191
James Smart46fa3112007-04-25 09:51:45 -04002192 lpfc_unblock_mgmt_io(phba);
dea31012005-04-17 16:05:31 -05002193 return 0;
2194}
2195
James Smarte59058c2008-08-24 21:49:00 -04002196/**
James Smart3621a712009-04-06 18:47:14 -04002197 * lpfc_unblock_mgmt_io - Mark a HBA's management interface to be not blocked
James Smarte59058c2008-08-24 21:49:00 -04002198 * @phba: pointer to lpfc hba data structure.
2199 *
2200 * This routine marks a HBA's management interface as not blocked. Once the
2201 * HBA's management interface is marked as not blocked, all the user space
2202 * access to the HBA, whether they are from sysfs interface or libdfc
2203 * interface will be allowed. The HBA is set to block the management interface
2204 * when the driver prepares the HBA interface for online or offline and then
2205 * set to unblock the management interface afterwards.
2206 **/
James Smart46fa3112007-04-25 09:51:45 -04002207void
James Smart46fa3112007-04-25 09:51:45 -04002208lpfc_unblock_mgmt_io(struct lpfc_hba * phba)
2209{
2210 unsigned long iflag;
2211
James Smart2e0fef82007-06-17 19:56:36 -05002212 spin_lock_irqsave(&phba->hbalock, iflag);
2213 phba->sli.sli_flag &= ~LPFC_BLOCK_MGMT_IO;
2214 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart46fa3112007-04-25 09:51:45 -04002215}
2216
James Smarte59058c2008-08-24 21:49:00 -04002217/**
James Smart3621a712009-04-06 18:47:14 -04002218 * lpfc_offline_prep - Prepare a HBA to be brought offline
James Smarte59058c2008-08-24 21:49:00 -04002219 * @phba: pointer to lpfc hba data structure.
2220 *
2221 * This routine is invoked to prepare a HBA to be brought offline. It performs
2222 * unregistration login to all the nodes on all vports and flushes the mailbox
2223 * queue to make it ready to be brought offline.
2224 **/
James Smart46fa3112007-04-25 09:51:45 -04002225void
2226lpfc_offline_prep(struct lpfc_hba * phba)
2227{
James Smart2e0fef82007-06-17 19:56:36 -05002228 struct lpfc_vport *vport = phba->pport;
James Smart46fa3112007-04-25 09:51:45 -04002229 struct lpfc_nodelist *ndlp, *next_ndlp;
James Smart87af33f2007-10-27 13:37:43 -04002230 struct lpfc_vport **vports;
2231 int i;
dea31012005-04-17 16:05:31 -05002232
James Smart2e0fef82007-06-17 19:56:36 -05002233 if (vport->fc_flag & FC_OFFLINE_MODE)
James Smart46fa3112007-04-25 09:51:45 -04002234 return;
dea31012005-04-17 16:05:31 -05002235
James Smart46fa3112007-04-25 09:51:45 -04002236 lpfc_block_mgmt_io(phba);
dea31012005-04-17 16:05:31 -05002237
2238 lpfc_linkdown(phba);
2239
James Smart87af33f2007-10-27 13:37:43 -04002240 /* Issue an unreg_login to all nodes on all vports */
2241 vports = lpfc_create_vport_work_array(phba);
2242 if (vports != NULL) {
James Smartda0436e2009-05-22 14:51:39 -04002243 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
James Smart87af33f2007-10-27 13:37:43 -04002244 struct Scsi_Host *shost;
2245
James Smarta8adb832007-10-27 13:37:53 -04002246 if (vports[i]->load_flag & FC_UNLOADING)
2247 continue;
James Smartc8685952009-11-18 15:39:16 -05002248 vports[i]->vpi_state &= ~LPFC_VPI_REGISTERED;
James Smart695a8142010-01-26 23:08:03 -05002249 vports[i]->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
2250 vports[i]->fc_flag &= ~FC_VFI_REGISTERED;
2251
James Smart87af33f2007-10-27 13:37:43 -04002252 shost = lpfc_shost_from_vport(vports[i]);
2253 list_for_each_entry_safe(ndlp, next_ndlp,
2254 &vports[i]->fc_nodes,
2255 nlp_listp) {
James Smarte47c9092008-02-08 18:49:26 -05002256 if (!NLP_CHK_NODE_ACT(ndlp))
2257 continue;
James Smart87af33f2007-10-27 13:37:43 -04002258 if (ndlp->nlp_state == NLP_STE_UNUSED_NODE)
2259 continue;
2260 if (ndlp->nlp_type & NLP_FABRIC) {
2261 lpfc_disc_state_machine(vports[i], ndlp,
2262 NULL, NLP_EVT_DEVICE_RECOVERY);
2263 lpfc_disc_state_machine(vports[i], ndlp,
2264 NULL, NLP_EVT_DEVICE_RM);
2265 }
2266 spin_lock_irq(shost->host_lock);
2267 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
2268 spin_unlock_irq(shost->host_lock);
2269 lpfc_unreg_rpi(vports[i], ndlp);
2270 }
2271 }
2272 }
James Smart09372822008-01-11 01:52:54 -05002273 lpfc_destroy_vport_work_array(phba, vports);
dea31012005-04-17 16:05:31 -05002274
James Smart04c68492009-05-22 14:52:52 -04002275 lpfc_sli_mbox_sys_shutdown(phba);
James Smart46fa3112007-04-25 09:51:45 -04002276}
2277
James Smarte59058c2008-08-24 21:49:00 -04002278/**
James Smart3621a712009-04-06 18:47:14 -04002279 * lpfc_offline - Bring a HBA offline
James Smarte59058c2008-08-24 21:49:00 -04002280 * @phba: pointer to lpfc hba data structure.
2281 *
2282 * This routine actually brings a HBA offline. It stops all the timers
2283 * associated with the HBA, brings down the SLI layer, and eventually
2284 * marks the HBA as in offline state for the upper layer protocol.
2285 **/
James Smart46fa3112007-04-25 09:51:45 -04002286void
James Smart2e0fef82007-06-17 19:56:36 -05002287lpfc_offline(struct lpfc_hba *phba)
James Smart46fa3112007-04-25 09:51:45 -04002288{
James Smart549e55c2007-08-02 11:09:51 -04002289 struct Scsi_Host *shost;
2290 struct lpfc_vport **vports;
2291 int i;
James Smart46fa3112007-04-25 09:51:45 -04002292
James Smart549e55c2007-08-02 11:09:51 -04002293 if (phba->pport->fc_flag & FC_OFFLINE_MODE)
James Smart46fa3112007-04-25 09:51:45 -04002294 return;
James Smart688a8862006-07-06 15:49:56 -04002295
James Smartda0436e2009-05-22 14:51:39 -04002296 /* stop port and all timers associated with this hba */
2297 lpfc_stop_port(phba);
James Smart51ef4c22007-08-02 11:10:31 -04002298 vports = lpfc_create_vport_work_array(phba);
2299 if (vports != NULL)
James Smartda0436e2009-05-22 14:51:39 -04002300 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++)
James Smart51ef4c22007-08-02 11:10:31 -04002301 lpfc_stop_vport_timers(vports[i]);
James Smart09372822008-01-11 01:52:54 -05002302 lpfc_destroy_vport_work_array(phba, vports);
James Smart92d7f7b2007-06-17 19:56:38 -05002303 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04002304 "0460 Bring Adapter offline\n");
dea31012005-04-17 16:05:31 -05002305 /* Bring down the SLI Layer and cleanup. The HBA is offline
2306 now. */
2307 lpfc_sli_hba_down(phba);
James Smart92d7f7b2007-06-17 19:56:38 -05002308 spin_lock_irq(&phba->hbalock);
James Smart7054a602007-04-25 09:52:34 -04002309 phba->work_ha = 0;
James Smart92d7f7b2007-06-17 19:56:38 -05002310 spin_unlock_irq(&phba->hbalock);
James Smart549e55c2007-08-02 11:09:51 -04002311 vports = lpfc_create_vport_work_array(phba);
2312 if (vports != NULL)
James Smartda0436e2009-05-22 14:51:39 -04002313 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
James Smart549e55c2007-08-02 11:09:51 -04002314 shost = lpfc_shost_from_vport(vports[i]);
James Smart549e55c2007-08-02 11:09:51 -04002315 spin_lock_irq(shost->host_lock);
2316 vports[i]->work_port_events = 0;
2317 vports[i]->fc_flag |= FC_OFFLINE_MODE;
2318 spin_unlock_irq(shost->host_lock);
2319 }
James Smart09372822008-01-11 01:52:54 -05002320 lpfc_destroy_vport_work_array(phba, vports);
dea31012005-04-17 16:05:31 -05002321}
2322
James Smarte59058c2008-08-24 21:49:00 -04002323/**
James Smart3621a712009-04-06 18:47:14 -04002324 * lpfc_scsi_free - Free all the SCSI buffers and IOCBs from driver lists
James Smarte59058c2008-08-24 21:49:00 -04002325 * @phba: pointer to lpfc hba data structure.
2326 *
2327 * This routine is to free all the SCSI buffers and IOCBs from the driver
2328 * list back to kernel. It is called from lpfc_pci_remove_one to free
2329 * the internal resources before the device is removed from the system.
2330 *
2331 * Return codes
2332 * 0 - successful (for now, it always returns 0)
2333 **/
dea31012005-04-17 16:05:31 -05002334static int
James Smart2e0fef82007-06-17 19:56:36 -05002335lpfc_scsi_free(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -05002336{
2337 struct lpfc_scsi_buf *sb, *sb_next;
2338 struct lpfc_iocbq *io, *io_next;
2339
James Smart2e0fef82007-06-17 19:56:36 -05002340 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05002341 /* Release all the lpfc_scsi_bufs maintained by this host. */
James Smart1c6f4ef52009-11-18 15:40:49 -05002342 spin_lock(&phba->scsi_buf_list_lock);
dea31012005-04-17 16:05:31 -05002343 list_for_each_entry_safe(sb, sb_next, &phba->lpfc_scsi_buf_list, list) {
2344 list_del(&sb->list);
2345 pci_pool_free(phba->lpfc_scsi_dma_buf_pool, sb->data,
James Smart92d7f7b2007-06-17 19:56:38 -05002346 sb->dma_handle);
dea31012005-04-17 16:05:31 -05002347 kfree(sb);
2348 phba->total_scsi_bufs--;
2349 }
James Smart1c6f4ef52009-11-18 15:40:49 -05002350 spin_unlock(&phba->scsi_buf_list_lock);
dea31012005-04-17 16:05:31 -05002351
2352 /* Release all the lpfc_iocbq entries maintained by this host. */
2353 list_for_each_entry_safe(io, io_next, &phba->lpfc_iocb_list, list) {
2354 list_del(&io->list);
2355 kfree(io);
2356 phba->total_iocbq_bufs--;
2357 }
James Smart2e0fef82007-06-17 19:56:36 -05002358 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05002359 return 0;
2360}
2361
James Smarte59058c2008-08-24 21:49:00 -04002362/**
James Smart3621a712009-04-06 18:47:14 -04002363 * lpfc_create_port - Create an FC port
James Smarte59058c2008-08-24 21:49:00 -04002364 * @phba: pointer to lpfc hba data structure.
2365 * @instance: a unique integer ID to this FC port.
2366 * @dev: pointer to the device data structure.
2367 *
2368 * This routine creates a FC port for the upper layer protocol. The FC port
2369 * can be created on top of either a physical port or a virtual port provided
2370 * by the HBA. This routine also allocates a SCSI host data structure (shost)
2371 * and associates the FC port created before adding the shost into the SCSI
2372 * layer.
2373 *
2374 * Return codes
2375 * @vport - pointer to the virtual N_Port data structure.
2376 * NULL - port create failed.
2377 **/
James Smart2e0fef82007-06-17 19:56:36 -05002378struct lpfc_vport *
James Smart3de2a652007-08-02 11:09:59 -04002379lpfc_create_port(struct lpfc_hba *phba, int instance, struct device *dev)
James Smart47a86172007-04-25 09:53:22 -04002380{
James Smart2e0fef82007-06-17 19:56:36 -05002381 struct lpfc_vport *vport;
2382 struct Scsi_Host *shost;
2383 int error = 0;
James Smart47a86172007-04-25 09:53:22 -04002384
James Smart3de2a652007-08-02 11:09:59 -04002385 if (dev != &phba->pcidev->dev)
2386 shost = scsi_host_alloc(&lpfc_vport_template,
2387 sizeof(struct lpfc_vport));
2388 else
2389 shost = scsi_host_alloc(&lpfc_template,
2390 sizeof(struct lpfc_vport));
James Smart2e0fef82007-06-17 19:56:36 -05002391 if (!shost)
2392 goto out;
James Smart47a86172007-04-25 09:53:22 -04002393
James Smart2e0fef82007-06-17 19:56:36 -05002394 vport = (struct lpfc_vport *) shost->hostdata;
2395 vport->phba = phba;
James Smart2e0fef82007-06-17 19:56:36 -05002396 vport->load_flag |= FC_LOADING;
James Smart92d7f7b2007-06-17 19:56:38 -05002397 vport->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
James Smart7f5f3d02008-02-08 18:50:14 -05002398 vport->fc_rscn_flush = 0;
James Smart47a86172007-04-25 09:53:22 -04002399
James Smart3de2a652007-08-02 11:09:59 -04002400 lpfc_get_vport_cfgparam(vport);
James Smart2e0fef82007-06-17 19:56:36 -05002401 shost->unique_id = instance;
2402 shost->max_id = LPFC_MAX_TARGET;
James Smart3de2a652007-08-02 11:09:59 -04002403 shost->max_lun = vport->cfg_max_luns;
James Smart2e0fef82007-06-17 19:56:36 -05002404 shost->this_id = -1;
2405 shost->max_cmd_len = 16;
James Smartda0436e2009-05-22 14:51:39 -04002406 if (phba->sli_rev == LPFC_SLI_REV4) {
2407 shost->dma_boundary = LPFC_SLI4_MAX_SEGMENT_SIZE;
2408 shost->sg_tablesize = phba->cfg_sg_seg_cnt;
2409 }
James Smart81301a92008-12-04 22:39:46 -05002410
James Smart47a86172007-04-25 09:53:22 -04002411 /*
James Smart2e0fef82007-06-17 19:56:36 -05002412 * Set initial can_queue value since 0 is no longer supported and
2413 * scsi_add_host will fail. This will be adjusted later based on the
2414 * max xri value determined in hba setup.
James Smart47a86172007-04-25 09:53:22 -04002415 */
James Smart2e0fef82007-06-17 19:56:36 -05002416 shost->can_queue = phba->cfg_hba_queue_depth - 10;
James Smart3de2a652007-08-02 11:09:59 -04002417 if (dev != &phba->pcidev->dev) {
James Smart92d7f7b2007-06-17 19:56:38 -05002418 shost->transportt = lpfc_vport_transport_template;
2419 vport->port_type = LPFC_NPIV_PORT;
2420 } else {
2421 shost->transportt = lpfc_transport_template;
2422 vport->port_type = LPFC_PHYSICAL_PORT;
2423 }
James Smart47a86172007-04-25 09:53:22 -04002424
James Smart2e0fef82007-06-17 19:56:36 -05002425 /* Initialize all internally managed lists. */
2426 INIT_LIST_HEAD(&vport->fc_nodes);
James Smartda0436e2009-05-22 14:51:39 -04002427 INIT_LIST_HEAD(&vport->rcv_buffer_list);
James Smart2e0fef82007-06-17 19:56:36 -05002428 spin_lock_init(&vport->work_port_lock);
James Smart47a86172007-04-25 09:53:22 -04002429
James Smart2e0fef82007-06-17 19:56:36 -05002430 init_timer(&vport->fc_disctmo);
2431 vport->fc_disctmo.function = lpfc_disc_timeout;
James Smart92d7f7b2007-06-17 19:56:38 -05002432 vport->fc_disctmo.data = (unsigned long)vport;
James Smart47a86172007-04-25 09:53:22 -04002433
James Smart2e0fef82007-06-17 19:56:36 -05002434 init_timer(&vport->fc_fdmitmo);
2435 vport->fc_fdmitmo.function = lpfc_fdmi_tmo;
James Smart92d7f7b2007-06-17 19:56:38 -05002436 vport->fc_fdmitmo.data = (unsigned long)vport;
James Smart47a86172007-04-25 09:53:22 -04002437
James Smart2e0fef82007-06-17 19:56:36 -05002438 init_timer(&vport->els_tmofunc);
2439 vport->els_tmofunc.function = lpfc_els_timeout;
James Smart92d7f7b2007-06-17 19:56:38 -05002440 vport->els_tmofunc.data = (unsigned long)vport;
James Smart47a86172007-04-25 09:53:22 -04002441
James Bottomleyd139b9b2009-11-05 13:33:12 -06002442 error = scsi_add_host_with_dma(shost, dev, &phba->pcidev->dev);
James Smart2e0fef82007-06-17 19:56:36 -05002443 if (error)
2444 goto out_put_shost;
James Smart47a86172007-04-25 09:53:22 -04002445
James Smart549e55c2007-08-02 11:09:51 -04002446 spin_lock_irq(&phba->hbalock);
James Smart2e0fef82007-06-17 19:56:36 -05002447 list_add_tail(&vport->listentry, &phba->port_list);
James Smart549e55c2007-08-02 11:09:51 -04002448 spin_unlock_irq(&phba->hbalock);
James Smart2e0fef82007-06-17 19:56:36 -05002449 return vport;
James Smart47a86172007-04-25 09:53:22 -04002450
James Smart2e0fef82007-06-17 19:56:36 -05002451out_put_shost:
2452 scsi_host_put(shost);
2453out:
2454 return NULL;
James Smart47a86172007-04-25 09:53:22 -04002455}
2456
James Smarte59058c2008-08-24 21:49:00 -04002457/**
James Smart3621a712009-04-06 18:47:14 -04002458 * destroy_port - destroy an FC port
James Smarte59058c2008-08-24 21:49:00 -04002459 * @vport: pointer to an lpfc virtual N_Port data structure.
2460 *
2461 * This routine destroys a FC port from the upper layer protocol. All the
2462 * resources associated with the port are released.
2463 **/
James Smart2e0fef82007-06-17 19:56:36 -05002464void
2465destroy_port(struct lpfc_vport *vport)
James Smart47a86172007-04-25 09:53:22 -04002466{
James Smart92d7f7b2007-06-17 19:56:38 -05002467 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2468 struct lpfc_hba *phba = vport->phba;
James Smart47a86172007-04-25 09:53:22 -04002469
James Smart858c9f62007-06-17 19:56:39 -05002470 lpfc_debugfs_terminate(vport);
James Smart92d7f7b2007-06-17 19:56:38 -05002471 fc_remove_host(shost);
2472 scsi_remove_host(shost);
James Smart47a86172007-04-25 09:53:22 -04002473
James Smart92d7f7b2007-06-17 19:56:38 -05002474 spin_lock_irq(&phba->hbalock);
2475 list_del_init(&vport->listentry);
2476 spin_unlock_irq(&phba->hbalock);
James Smart47a86172007-04-25 09:53:22 -04002477
James Smart92d7f7b2007-06-17 19:56:38 -05002478 lpfc_cleanup(vport);
James Smart47a86172007-04-25 09:53:22 -04002479 return;
James Smart47a86172007-04-25 09:53:22 -04002480}
2481
James Smarte59058c2008-08-24 21:49:00 -04002482/**
James Smart3621a712009-04-06 18:47:14 -04002483 * lpfc_get_instance - Get a unique integer ID
James Smarte59058c2008-08-24 21:49:00 -04002484 *
2485 * This routine allocates a unique integer ID from lpfc_hba_index pool. It
2486 * uses the kernel idr facility to perform the task.
2487 *
2488 * Return codes:
2489 * instance - a unique integer ID allocated as the new instance.
2490 * -1 - lpfc get instance failed.
2491 **/
James Smart92d7f7b2007-06-17 19:56:38 -05002492int
2493lpfc_get_instance(void)
2494{
2495 int instance = 0;
2496
2497 /* Assign an unused number */
2498 if (!idr_pre_get(&lpfc_hba_index, GFP_KERNEL))
2499 return -1;
2500 if (idr_get_new(&lpfc_hba_index, NULL, &instance))
2501 return -1;
2502 return instance;
2503}
2504
James Smarte59058c2008-08-24 21:49:00 -04002505/**
James Smart3621a712009-04-06 18:47:14 -04002506 * lpfc_scan_finished - method for SCSI layer to detect whether scan is done
James Smarte59058c2008-08-24 21:49:00 -04002507 * @shost: pointer to SCSI host data structure.
2508 * @time: elapsed time of the scan in jiffies.
2509 *
2510 * This routine is called by the SCSI layer with a SCSI host to determine
2511 * whether the scan host is finished.
2512 *
2513 * Note: there is no scan_start function as adapter initialization will have
2514 * asynchronously kicked off the link initialization.
2515 *
2516 * Return codes
2517 * 0 - SCSI host scan is not over yet.
2518 * 1 - SCSI host scan is over.
2519 **/
James Smart47a86172007-04-25 09:53:22 -04002520int lpfc_scan_finished(struct Scsi_Host *shost, unsigned long time)
2521{
James Smart2e0fef82007-06-17 19:56:36 -05002522 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
2523 struct lpfc_hba *phba = vport->phba;
James Smart858c9f62007-06-17 19:56:39 -05002524 int stat = 0;
James Smart47a86172007-04-25 09:53:22 -04002525
James Smart858c9f62007-06-17 19:56:39 -05002526 spin_lock_irq(shost->host_lock);
2527
James Smart51ef4c22007-08-02 11:10:31 -04002528 if (vport->load_flag & FC_UNLOADING) {
James Smart858c9f62007-06-17 19:56:39 -05002529 stat = 1;
James Smart47a86172007-04-25 09:53:22 -04002530 goto finished;
James Smart858c9f62007-06-17 19:56:39 -05002531 }
James Smart2e0fef82007-06-17 19:56:36 -05002532 if (time >= 30 * HZ) {
2533 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04002534 "0461 Scanning longer than 30 "
2535 "seconds. Continuing initialization\n");
James Smart858c9f62007-06-17 19:56:39 -05002536 stat = 1;
James Smart47a86172007-04-25 09:53:22 -04002537 goto finished;
James Smart2e0fef82007-06-17 19:56:36 -05002538 }
2539 if (time >= 15 * HZ && phba->link_state <= LPFC_LINK_DOWN) {
2540 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04002541 "0465 Link down longer than 15 "
2542 "seconds. Continuing initialization\n");
James Smart858c9f62007-06-17 19:56:39 -05002543 stat = 1;
James Smart2e0fef82007-06-17 19:56:36 -05002544 goto finished;
James Smart47a86172007-04-25 09:53:22 -04002545 }
2546
James Smart2e0fef82007-06-17 19:56:36 -05002547 if (vport->port_state != LPFC_VPORT_READY)
James Smart858c9f62007-06-17 19:56:39 -05002548 goto finished;
James Smart2e0fef82007-06-17 19:56:36 -05002549 if (vport->num_disc_nodes || vport->fc_prli_sent)
James Smart858c9f62007-06-17 19:56:39 -05002550 goto finished;
James Smart2e0fef82007-06-17 19:56:36 -05002551 if (vport->fc_map_cnt == 0 && time < 2 * HZ)
James Smart858c9f62007-06-17 19:56:39 -05002552 goto finished;
James Smart2e0fef82007-06-17 19:56:36 -05002553 if ((phba->sli.sli_flag & LPFC_SLI_MBOX_ACTIVE) != 0)
James Smart858c9f62007-06-17 19:56:39 -05002554 goto finished;
2555
2556 stat = 1;
James Smart47a86172007-04-25 09:53:22 -04002557
2558finished:
James Smart858c9f62007-06-17 19:56:39 -05002559 spin_unlock_irq(shost->host_lock);
2560 return stat;
James Smart92d7f7b2007-06-17 19:56:38 -05002561}
2562
James Smarte59058c2008-08-24 21:49:00 -04002563/**
James Smart3621a712009-04-06 18:47:14 -04002564 * lpfc_host_attrib_init - Initialize SCSI host attributes on a FC port
James Smarte59058c2008-08-24 21:49:00 -04002565 * @shost: pointer to SCSI host data structure.
2566 *
2567 * This routine initializes a given SCSI host attributes on a FC port. The
2568 * SCSI host can be either on top of a physical port or a virtual port.
2569 **/
James Smart92d7f7b2007-06-17 19:56:38 -05002570void lpfc_host_attrib_init(struct Scsi_Host *shost)
2571{
2572 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
2573 struct lpfc_hba *phba = vport->phba;
James Smart47a86172007-04-25 09:53:22 -04002574 /*
James Smart2e0fef82007-06-17 19:56:36 -05002575 * Set fixed host attributes. Must done after lpfc_sli_hba_setup().
James Smart47a86172007-04-25 09:53:22 -04002576 */
2577
James Smart2e0fef82007-06-17 19:56:36 -05002578 fc_host_node_name(shost) = wwn_to_u64(vport->fc_nodename.u.wwn);
2579 fc_host_port_name(shost) = wwn_to_u64(vport->fc_portname.u.wwn);
James Smart47a86172007-04-25 09:53:22 -04002580 fc_host_supported_classes(shost) = FC_COS_CLASS3;
2581
2582 memset(fc_host_supported_fc4s(shost), 0,
James Smart2e0fef82007-06-17 19:56:36 -05002583 sizeof(fc_host_supported_fc4s(shost)));
James Smart47a86172007-04-25 09:53:22 -04002584 fc_host_supported_fc4s(shost)[2] = 1;
2585 fc_host_supported_fc4s(shost)[7] = 1;
2586
James Smart92d7f7b2007-06-17 19:56:38 -05002587 lpfc_vport_symbolic_node_name(vport, fc_host_symbolic_name(shost),
2588 sizeof fc_host_symbolic_name(shost));
James Smart47a86172007-04-25 09:53:22 -04002589
2590 fc_host_supported_speeds(shost) = 0;
2591 if (phba->lmt & LMT_10Gb)
2592 fc_host_supported_speeds(shost) |= FC_PORTSPEED_10GBIT;
James Smarta8adb832007-10-27 13:37:53 -04002593 if (phba->lmt & LMT_8Gb)
2594 fc_host_supported_speeds(shost) |= FC_PORTSPEED_8GBIT;
James Smart47a86172007-04-25 09:53:22 -04002595 if (phba->lmt & LMT_4Gb)
2596 fc_host_supported_speeds(shost) |= FC_PORTSPEED_4GBIT;
2597 if (phba->lmt & LMT_2Gb)
2598 fc_host_supported_speeds(shost) |= FC_PORTSPEED_2GBIT;
2599 if (phba->lmt & LMT_1Gb)
2600 fc_host_supported_speeds(shost) |= FC_PORTSPEED_1GBIT;
2601
2602 fc_host_maxframe_size(shost) =
James Smart2e0fef82007-06-17 19:56:36 -05002603 (((uint32_t) vport->fc_sparam.cmn.bbRcvSizeMsb & 0x0F) << 8) |
2604 (uint32_t) vport->fc_sparam.cmn.bbRcvSizeLsb;
James Smart47a86172007-04-25 09:53:22 -04002605
2606 /* This value is also unchanging */
2607 memset(fc_host_active_fc4s(shost), 0,
James Smart2e0fef82007-06-17 19:56:36 -05002608 sizeof(fc_host_active_fc4s(shost)));
James Smart47a86172007-04-25 09:53:22 -04002609 fc_host_active_fc4s(shost)[2] = 1;
2610 fc_host_active_fc4s(shost)[7] = 1;
2611
James Smart92d7f7b2007-06-17 19:56:38 -05002612 fc_host_max_npiv_vports(shost) = phba->max_vpi;
James Smart47a86172007-04-25 09:53:22 -04002613 spin_lock_irq(shost->host_lock);
James Smart51ef4c22007-08-02 11:10:31 -04002614 vport->load_flag &= ~FC_LOADING;
James Smart47a86172007-04-25 09:53:22 -04002615 spin_unlock_irq(shost->host_lock);
James Smart47a86172007-04-25 09:53:22 -04002616}
dea31012005-04-17 16:05:31 -05002617
James Smarte59058c2008-08-24 21:49:00 -04002618/**
James Smartda0436e2009-05-22 14:51:39 -04002619 * lpfc_stop_port_s3 - Stop SLI3 device port
James Smarte59058c2008-08-24 21:49:00 -04002620 * @phba: pointer to lpfc hba data structure.
2621 *
James Smartda0436e2009-05-22 14:51:39 -04002622 * This routine is invoked to stop an SLI3 device port, it stops the device
2623 * from generating interrupts and stops the device driver's timers for the
2624 * device.
James Smarte59058c2008-08-24 21:49:00 -04002625 **/
James Smartdb2378e2008-02-08 18:49:51 -05002626static void
James Smartda0436e2009-05-22 14:51:39 -04002627lpfc_stop_port_s3(struct lpfc_hba *phba)
James Smartdb2378e2008-02-08 18:49:51 -05002628{
James Smartda0436e2009-05-22 14:51:39 -04002629 /* Clear all interrupt enable conditions */
2630 writel(0, phba->HCregaddr);
2631 readl(phba->HCregaddr); /* flush */
2632 /* Clear all pending interrupts */
2633 writel(0xffffffff, phba->HAregaddr);
2634 readl(phba->HAregaddr); /* flush */
James Smart93996272008-08-24 21:50:30 -04002635
James Smartda0436e2009-05-22 14:51:39 -04002636 /* Reset some HBA SLI setup states */
2637 lpfc_stop_hba_timers(phba);
2638 phba->pport->work_port_events = 0;
James Smartdb2378e2008-02-08 18:49:51 -05002639}
2640
James Smarte59058c2008-08-24 21:49:00 -04002641/**
James Smartda0436e2009-05-22 14:51:39 -04002642 * lpfc_stop_port_s4 - Stop SLI4 device port
James Smart5b75da22008-12-04 22:39:35 -05002643 * @phba: pointer to lpfc hba data structure.
2644 *
James Smartda0436e2009-05-22 14:51:39 -04002645 * This routine is invoked to stop an SLI4 device port, it stops the device
2646 * from generating interrupts and stops the device driver's timers for the
2647 * device.
2648 **/
2649static void
2650lpfc_stop_port_s4(struct lpfc_hba *phba)
2651{
2652 /* Reset some HBA SLI4 setup states */
2653 lpfc_stop_hba_timers(phba);
2654 phba->pport->work_port_events = 0;
2655 phba->sli4_hba.intr_enable = 0;
2656 /* Hard clear it for now, shall have more graceful way to wait later */
2657 phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
2658}
2659
2660/**
2661 * lpfc_stop_port - Wrapper function for stopping hba port
2662 * @phba: Pointer to HBA context object.
James Smart5b75da22008-12-04 22:39:35 -05002663 *
James Smartda0436e2009-05-22 14:51:39 -04002664 * This routine wraps the actual SLI3 or SLI4 hba stop port routine from
2665 * the API jump table function pointer from the lpfc_hba struct.
2666 **/
2667void
2668lpfc_stop_port(struct lpfc_hba *phba)
2669{
2670 phba->lpfc_stop_port(phba);
2671}
2672
2673/**
2674 * lpfc_sli4_remove_dflt_fcf - Remove the driver default fcf record from the port.
2675 * @phba: pointer to lpfc hba data structure.
2676 *
2677 * This routine is invoked to remove the driver default fcf record from
2678 * the port. This routine currently acts on FCF Index 0.
2679 *
2680 **/
2681void
2682lpfc_sli_remove_dflt_fcf(struct lpfc_hba *phba)
2683{
2684 int rc = 0;
2685 LPFC_MBOXQ_t *mboxq;
2686 struct lpfc_mbx_del_fcf_tbl_entry *del_fcf_record;
2687 uint32_t mbox_tmo, req_len;
2688 uint32_t shdr_status, shdr_add_status;
2689
2690 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
2691 if (!mboxq) {
2692 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
2693 "2020 Failed to allocate mbox for ADD_FCF cmd\n");
2694 return;
2695 }
2696
2697 req_len = sizeof(struct lpfc_mbx_del_fcf_tbl_entry) -
2698 sizeof(struct lpfc_sli4_cfg_mhdr);
2699 rc = lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_FCOE,
2700 LPFC_MBOX_OPCODE_FCOE_DELETE_FCF,
2701 req_len, LPFC_SLI4_MBX_EMBED);
2702 /*
2703 * In phase 1, there is a single FCF index, 0. In phase2, the driver
2704 * supports multiple FCF indices.
2705 */
2706 del_fcf_record = &mboxq->u.mqe.un.del_fcf_entry;
2707 bf_set(lpfc_mbx_del_fcf_tbl_count, del_fcf_record, 1);
2708 bf_set(lpfc_mbx_del_fcf_tbl_index, del_fcf_record,
2709 phba->fcf.fcf_indx);
2710
2711 if (!phba->sli4_hba.intr_enable)
2712 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
2713 else {
2714 mbox_tmo = lpfc_mbox_tmo_val(phba, MBX_SLI4_CONFIG);
2715 rc = lpfc_sli_issue_mbox_wait(phba, mboxq, mbox_tmo);
2716 }
2717 /* The IOCTL status is embedded in the mailbox subheader. */
2718 shdr_status = bf_get(lpfc_mbox_hdr_status,
2719 &del_fcf_record->header.cfg_shdr.response);
2720 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status,
2721 &del_fcf_record->header.cfg_shdr.response);
2722 if (shdr_status || shdr_add_status || rc != MBX_SUCCESS) {
2723 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
2724 "2516 DEL FCF of default FCF Index failed "
2725 "mbx status x%x, status x%x add_status x%x\n",
2726 rc, shdr_status, shdr_add_status);
2727 }
2728 if (rc != MBX_TIMEOUT)
2729 mempool_free(mboxq, phba->mbox_mem_pool);
2730}
2731
2732/**
James Smart6669f9b2009-10-02 15:16:45 -04002733 * lpfc_sli4_fw_cfg_check - Read the firmware config and verify FCoE support
2734 * @phba: pointer to lpfc hba data structure.
2735 *
2736 * This function uses the QUERY_FW_CFG mailbox command to determine if the
2737 * firmware loaded supports FCoE. A return of zero indicates that the mailbox
2738 * was successful and the firmware supports FCoE. Any other return indicates
2739 * a error. It is assumed that this function will be called before interrupts
2740 * are enabled.
2741 **/
2742static int
2743lpfc_sli4_fw_cfg_check(struct lpfc_hba *phba)
2744{
2745 int rc = 0;
2746 LPFC_MBOXQ_t *mboxq;
2747 struct lpfc_mbx_query_fw_cfg *query_fw_cfg;
2748 uint32_t length;
2749 uint32_t shdr_status, shdr_add_status;
2750
2751 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
2752 if (!mboxq) {
2753 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
2754 "2621 Failed to allocate mbox for "
2755 "query firmware config cmd\n");
2756 return -ENOMEM;
2757 }
2758 query_fw_cfg = &mboxq->u.mqe.un.query_fw_cfg;
2759 length = (sizeof(struct lpfc_mbx_query_fw_cfg) -
2760 sizeof(struct lpfc_sli4_cfg_mhdr));
2761 lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_COMMON,
2762 LPFC_MBOX_OPCODE_QUERY_FW_CFG,
2763 length, LPFC_SLI4_MBX_EMBED);
2764 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
2765 /* The IOCTL status is embedded in the mailbox subheader. */
2766 shdr_status = bf_get(lpfc_mbox_hdr_status,
2767 &query_fw_cfg->header.cfg_shdr.response);
2768 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status,
2769 &query_fw_cfg->header.cfg_shdr.response);
2770 if (shdr_status || shdr_add_status || rc != MBX_SUCCESS) {
2771 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
2772 "2622 Query Firmware Config failed "
2773 "mbx status x%x, status x%x add_status x%x\n",
2774 rc, shdr_status, shdr_add_status);
2775 return -EINVAL;
2776 }
2777 if (!bf_get(lpfc_function_mode_fcoe_i, query_fw_cfg)) {
2778 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
2779 "2623 FCoE Function not supported by firmware. "
2780 "Function mode = %08x\n",
2781 query_fw_cfg->function_mode);
2782 return -EINVAL;
2783 }
2784 if (rc != MBX_TIMEOUT)
2785 mempool_free(mboxq, phba->mbox_mem_pool);
2786 return 0;
2787}
2788
2789/**
James Smartda0436e2009-05-22 14:51:39 -04002790 * lpfc_sli4_parse_latt_fault - Parse sli4 link-attention link fault code
2791 * @phba: pointer to lpfc hba data structure.
2792 * @acqe_link: pointer to the async link completion queue entry.
2793 *
2794 * This routine is to parse the SLI4 link-attention link fault code and
2795 * translate it into the base driver's read link attention mailbox command
2796 * status.
2797 *
2798 * Return: Link-attention status in terms of base driver's coding.
2799 **/
2800static uint16_t
2801lpfc_sli4_parse_latt_fault(struct lpfc_hba *phba,
2802 struct lpfc_acqe_link *acqe_link)
2803{
2804 uint16_t latt_fault;
2805
2806 switch (bf_get(lpfc_acqe_link_fault, acqe_link)) {
2807 case LPFC_ASYNC_LINK_FAULT_NONE:
2808 case LPFC_ASYNC_LINK_FAULT_LOCAL:
2809 case LPFC_ASYNC_LINK_FAULT_REMOTE:
2810 latt_fault = 0;
2811 break;
2812 default:
2813 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
2814 "0398 Invalid link fault code: x%x\n",
2815 bf_get(lpfc_acqe_link_fault, acqe_link));
2816 latt_fault = MBXERR_ERROR;
2817 break;
2818 }
2819 return latt_fault;
2820}
2821
2822/**
2823 * lpfc_sli4_parse_latt_type - Parse sli4 link attention type
2824 * @phba: pointer to lpfc hba data structure.
2825 * @acqe_link: pointer to the async link completion queue entry.
2826 *
2827 * This routine is to parse the SLI4 link attention type and translate it
2828 * into the base driver's link attention type coding.
2829 *
2830 * Return: Link attention type in terms of base driver's coding.
2831 **/
2832static uint8_t
2833lpfc_sli4_parse_latt_type(struct lpfc_hba *phba,
2834 struct lpfc_acqe_link *acqe_link)
2835{
2836 uint8_t att_type;
2837
2838 switch (bf_get(lpfc_acqe_link_status, acqe_link)) {
2839 case LPFC_ASYNC_LINK_STATUS_DOWN:
2840 case LPFC_ASYNC_LINK_STATUS_LOGICAL_DOWN:
2841 att_type = AT_LINK_DOWN;
2842 break;
2843 case LPFC_ASYNC_LINK_STATUS_UP:
2844 /* Ignore physical link up events - wait for logical link up */
2845 att_type = AT_RESERVED;
2846 break;
2847 case LPFC_ASYNC_LINK_STATUS_LOGICAL_UP:
2848 att_type = AT_LINK_UP;
2849 break;
2850 default:
2851 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
2852 "0399 Invalid link attention type: x%x\n",
2853 bf_get(lpfc_acqe_link_status, acqe_link));
2854 att_type = AT_RESERVED;
2855 break;
2856 }
2857 return att_type;
2858}
2859
2860/**
2861 * lpfc_sli4_parse_latt_link_speed - Parse sli4 link-attention link speed
2862 * @phba: pointer to lpfc hba data structure.
2863 * @acqe_link: pointer to the async link completion queue entry.
2864 *
2865 * This routine is to parse the SLI4 link-attention link speed and translate
2866 * it into the base driver's link-attention link speed coding.
2867 *
2868 * Return: Link-attention link speed in terms of base driver's coding.
2869 **/
2870static uint8_t
2871lpfc_sli4_parse_latt_link_speed(struct lpfc_hba *phba,
2872 struct lpfc_acqe_link *acqe_link)
2873{
2874 uint8_t link_speed;
2875
2876 switch (bf_get(lpfc_acqe_link_speed, acqe_link)) {
2877 case LPFC_ASYNC_LINK_SPEED_ZERO:
2878 link_speed = LA_UNKNW_LINK;
2879 break;
2880 case LPFC_ASYNC_LINK_SPEED_10MBPS:
2881 link_speed = LA_UNKNW_LINK;
2882 break;
2883 case LPFC_ASYNC_LINK_SPEED_100MBPS:
2884 link_speed = LA_UNKNW_LINK;
2885 break;
2886 case LPFC_ASYNC_LINK_SPEED_1GBPS:
2887 link_speed = LA_1GHZ_LINK;
2888 break;
2889 case LPFC_ASYNC_LINK_SPEED_10GBPS:
2890 link_speed = LA_10GHZ_LINK;
2891 break;
2892 default:
2893 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
2894 "0483 Invalid link-attention link speed: x%x\n",
2895 bf_get(lpfc_acqe_link_speed, acqe_link));
2896 link_speed = LA_UNKNW_LINK;
2897 break;
2898 }
2899 return link_speed;
2900}
2901
2902/**
2903 * lpfc_sli4_async_link_evt - Process the asynchronous link event
2904 * @phba: pointer to lpfc hba data structure.
2905 * @acqe_link: pointer to the async link completion queue entry.
2906 *
2907 * This routine is to handle the SLI4 asynchronous link event.
2908 **/
2909static void
2910lpfc_sli4_async_link_evt(struct lpfc_hba *phba,
2911 struct lpfc_acqe_link *acqe_link)
2912{
2913 struct lpfc_dmabuf *mp;
2914 LPFC_MBOXQ_t *pmb;
2915 MAILBOX_t *mb;
2916 READ_LA_VAR *la;
2917 uint8_t att_type;
2918
2919 att_type = lpfc_sli4_parse_latt_type(phba, acqe_link);
2920 if (att_type != AT_LINK_DOWN && att_type != AT_LINK_UP)
2921 return;
James Smart32b97932009-07-19 10:01:21 -04002922 phba->fcoe_eventtag = acqe_link->event_tag;
James Smartda0436e2009-05-22 14:51:39 -04002923 pmb = (LPFC_MBOXQ_t *)mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
2924 if (!pmb) {
2925 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
2926 "0395 The mboxq allocation failed\n");
2927 return;
2928 }
2929 mp = kmalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
2930 if (!mp) {
2931 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
2932 "0396 The lpfc_dmabuf allocation failed\n");
2933 goto out_free_pmb;
2934 }
2935 mp->virt = lpfc_mbuf_alloc(phba, 0, &mp->phys);
2936 if (!mp->virt) {
2937 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
2938 "0397 The mbuf allocation failed\n");
2939 goto out_free_dmabuf;
2940 }
2941
2942 /* Cleanup any outstanding ELS commands */
2943 lpfc_els_flush_all_cmd(phba);
2944
2945 /* Block ELS IOCBs until we have done process link event */
2946 phba->sli.ring[LPFC_ELS_RING].flag |= LPFC_STOP_IOCB_EVENT;
2947
2948 /* Update link event statistics */
2949 phba->sli.slistat.link_event++;
2950
2951 /* Create pseudo lpfc_handle_latt mailbox command from link ACQE */
2952 lpfc_read_la(phba, pmb, mp);
2953 pmb->vport = phba->pport;
2954
2955 /* Parse and translate status field */
2956 mb = &pmb->u.mb;
2957 mb->mbxStatus = lpfc_sli4_parse_latt_fault(phba, acqe_link);
2958
2959 /* Parse and translate link attention fields */
2960 la = (READ_LA_VAR *) &pmb->u.mb.un.varReadLA;
2961 la->eventTag = acqe_link->event_tag;
2962 la->attType = att_type;
2963 la->UlnkSpeed = lpfc_sli4_parse_latt_link_speed(phba, acqe_link);
2964
2965 /* Fake the the following irrelvant fields */
2966 la->topology = TOPOLOGY_PT_PT;
2967 la->granted_AL_PA = 0;
2968 la->il = 0;
2969 la->pb = 0;
2970 la->fa = 0;
2971 la->mm = 0;
2972
2973 /* Keep the link status for extra SLI4 state machine reference */
2974 phba->sli4_hba.link_state.speed =
2975 bf_get(lpfc_acqe_link_speed, acqe_link);
2976 phba->sli4_hba.link_state.duplex =
2977 bf_get(lpfc_acqe_link_duplex, acqe_link);
2978 phba->sli4_hba.link_state.status =
2979 bf_get(lpfc_acqe_link_status, acqe_link);
2980 phba->sli4_hba.link_state.physical =
2981 bf_get(lpfc_acqe_link_physical, acqe_link);
2982 phba->sli4_hba.link_state.fault =
2983 bf_get(lpfc_acqe_link_fault, acqe_link);
James Smart65467b62010-01-26 23:08:29 -05002984 phba->sli4_hba.link_state.logical_speed =
2985 bf_get(lpfc_acqe_qos_link_speed, acqe_link);
James Smartda0436e2009-05-22 14:51:39 -04002986
2987 /* Invoke the lpfc_handle_latt mailbox command callback function */
2988 lpfc_mbx_cmpl_read_la(phba, pmb);
2989
2990 return;
2991
2992out_free_dmabuf:
2993 kfree(mp);
2994out_free_pmb:
2995 mempool_free(pmb, phba->mbox_mem_pool);
2996}
2997
2998/**
2999 * lpfc_sli4_async_fcoe_evt - Process the asynchronous fcoe event
3000 * @phba: pointer to lpfc hba data structure.
3001 * @acqe_link: pointer to the async fcoe completion queue entry.
3002 *
3003 * This routine is to handle the SLI4 asynchronous fcoe event.
3004 **/
3005static void
3006lpfc_sli4_async_fcoe_evt(struct lpfc_hba *phba,
3007 struct lpfc_acqe_fcoe *acqe_fcoe)
3008{
3009 uint8_t event_type = bf_get(lpfc_acqe_fcoe_event_type, acqe_fcoe);
3010 int rc;
James Smart6669f9b2009-10-02 15:16:45 -04003011 struct lpfc_vport *vport;
3012 struct lpfc_nodelist *ndlp;
3013 struct Scsi_Host *shost;
James Smart97957242009-12-21 17:03:15 -05003014 uint32_t link_state;
James Smart695a8142010-01-26 23:08:03 -05003015 int active_vlink_present;
3016 struct lpfc_vport **vports;
3017 int i;
James Smartda0436e2009-05-22 14:51:39 -04003018
James Smart4d9ab992009-10-02 15:16:39 -04003019 phba->fc_eventTag = acqe_fcoe->event_tag;
James Smart32b97932009-07-19 10:01:21 -04003020 phba->fcoe_eventtag = acqe_fcoe->event_tag;
James Smartda0436e2009-05-22 14:51:39 -04003021 switch (event_type) {
3022 case LPFC_FCOE_EVENT_TYPE_NEW_FCF:
3023 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY,
James Smarte4e74272009-07-19 10:01:38 -04003024 "2546 New FCF found index 0x%x tag 0x%x\n",
James Smart6669f9b2009-10-02 15:16:45 -04003025 acqe_fcoe->index,
James Smartda0436e2009-05-22 14:51:39 -04003026 acqe_fcoe->event_tag);
3027 /*
James Smart32b97932009-07-19 10:01:21 -04003028 * If the current FCF is in discovered state, or
3029 * FCF discovery is in progress do nothing.
James Smartda0436e2009-05-22 14:51:39 -04003030 */
3031 spin_lock_irq(&phba->hbalock);
James Smart32b97932009-07-19 10:01:21 -04003032 if ((phba->fcf.fcf_flag & FCF_DISCOVERED) ||
3033 (phba->hba_flag & FCF_DISC_INPROGRESS)) {
James Smartda0436e2009-05-22 14:51:39 -04003034 spin_unlock_irq(&phba->hbalock);
3035 break;
3036 }
3037 spin_unlock_irq(&phba->hbalock);
3038
3039 /* Read the FCF table and re-discover SAN. */
James Smart6a9c52c2009-10-02 15:16:51 -04003040 rc = lpfc_sli4_read_fcf_record(phba, LPFC_FCOE_FCF_GET_FIRST);
James Smartda0436e2009-05-22 14:51:39 -04003041 if (rc)
3042 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY,
James Smart6a9c52c2009-10-02 15:16:51 -04003043 "2547 Read FCF record failed 0x%x\n",
3044 rc);
James Smartda0436e2009-05-22 14:51:39 -04003045 break;
3046
3047 case LPFC_FCOE_EVENT_TYPE_FCF_TABLE_FULL:
3048 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smarte4e74272009-07-19 10:01:38 -04003049 "2548 FCF Table full count 0x%x tag 0x%x\n",
James Smartda0436e2009-05-22 14:51:39 -04003050 bf_get(lpfc_acqe_fcoe_fcf_count, acqe_fcoe),
3051 acqe_fcoe->event_tag);
3052 break;
3053
3054 case LPFC_FCOE_EVENT_TYPE_FCF_DEAD:
3055 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY,
James Smart6a9c52c2009-10-02 15:16:51 -04003056 "2549 FCF disconnected from network index 0x%x"
James Smart6669f9b2009-10-02 15:16:45 -04003057 " tag 0x%x\n", acqe_fcoe->index,
James Smartda0436e2009-05-22 14:51:39 -04003058 acqe_fcoe->event_tag);
3059 /* If the event is not for currently used fcf do nothing */
James Smart6669f9b2009-10-02 15:16:45 -04003060 if (phba->fcf.fcf_indx != acqe_fcoe->index)
James Smartda0436e2009-05-22 14:51:39 -04003061 break;
3062 /*
3063 * Currently, driver support only one FCF - so treat this as
James Smart97957242009-12-21 17:03:15 -05003064 * a link down, but save the link state because we don't want
3065 * it to be changed to Link Down unless it is already down.
James Smartda0436e2009-05-22 14:51:39 -04003066 */
James Smart97957242009-12-21 17:03:15 -05003067 link_state = phba->link_state;
James Smartda0436e2009-05-22 14:51:39 -04003068 lpfc_linkdown(phba);
James Smart97957242009-12-21 17:03:15 -05003069 phba->link_state = link_state;
James Smartda0436e2009-05-22 14:51:39 -04003070 /* Unregister FCF if no devices connected to it */
3071 lpfc_unregister_unused_fcf(phba);
3072 break;
James Smart6669f9b2009-10-02 15:16:45 -04003073 case LPFC_FCOE_EVENT_TYPE_CVL:
3074 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY,
3075 "2718 Clear Virtual Link Received for VPI 0x%x"
3076 " tag 0x%x\n", acqe_fcoe->index, acqe_fcoe->event_tag);
3077 vport = lpfc_find_vport_by_vpid(phba,
James Smartc8685952009-11-18 15:39:16 -05003078 acqe_fcoe->index - phba->vpi_base);
James Smart6669f9b2009-10-02 15:16:45 -04003079 if (!vport)
3080 break;
3081 ndlp = lpfc_findnode_did(vport, Fabric_DID);
3082 if (!ndlp)
3083 break;
3084 shost = lpfc_shost_from_vport(vport);
James Smart695a8142010-01-26 23:08:03 -05003085 if (phba->pport->port_state <= LPFC_FLOGI)
3086 break;
3087 /* If virtual link is not yet instantiated ignore CVL */
3088 if (vport->port_state <= LPFC_FDISC)
3089 break;
3090
James Smart6669f9b2009-10-02 15:16:45 -04003091 lpfc_linkdown_port(vport);
James Smart695a8142010-01-26 23:08:03 -05003092 lpfc_cleanup_pending_mbox(vport);
3093 spin_lock_irq(shost->host_lock);
3094 vport->fc_flag |= FC_VPORT_CVL_RCVD;
3095 spin_unlock_irq(shost->host_lock);
3096 active_vlink_present = 0;
3097
3098 vports = lpfc_create_vport_work_array(phba);
3099 if (vports) {
3100 for (i = 0; i <= phba->max_vports && vports[i] != NULL;
3101 i++) {
3102 if ((!(vports[i]->fc_flag &
3103 FC_VPORT_CVL_RCVD)) &&
3104 (vports[i]->port_state > LPFC_FDISC)) {
3105 active_vlink_present = 1;
3106 break;
3107 }
3108 }
3109 lpfc_destroy_vport_work_array(phba, vports);
3110 }
3111
3112 if (active_vlink_present) {
3113 /*
3114 * If there are other active VLinks present,
3115 * re-instantiate the Vlink using FDISC.
3116 */
James Smart6669f9b2009-10-02 15:16:45 -04003117 mod_timer(&ndlp->nlp_delayfunc, jiffies + HZ);
3118 spin_lock_irq(shost->host_lock);
3119 ndlp->nlp_flag |= NLP_DELAY_TMO;
3120 spin_unlock_irq(shost->host_lock);
James Smart695a8142010-01-26 23:08:03 -05003121 ndlp->nlp_last_elscmd = ELS_CMD_FDISC;
3122 vport->port_state = LPFC_FDISC;
3123 } else {
3124 lpfc_retry_pport_discovery(phba);
James Smart6669f9b2009-10-02 15:16:45 -04003125 }
3126 break;
James Smartda0436e2009-05-22 14:51:39 -04003127 default:
3128 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
3129 "0288 Unknown FCoE event type 0x%x event tag "
3130 "0x%x\n", event_type, acqe_fcoe->event_tag);
3131 break;
3132 }
3133}
3134
3135/**
3136 * lpfc_sli4_async_dcbx_evt - Process the asynchronous dcbx event
3137 * @phba: pointer to lpfc hba data structure.
3138 * @acqe_link: pointer to the async dcbx completion queue entry.
3139 *
3140 * This routine is to handle the SLI4 asynchronous dcbx event.
3141 **/
3142static void
3143lpfc_sli4_async_dcbx_evt(struct lpfc_hba *phba,
3144 struct lpfc_acqe_dcbx *acqe_dcbx)
3145{
James Smart4d9ab992009-10-02 15:16:39 -04003146 phba->fc_eventTag = acqe_dcbx->event_tag;
James Smartda0436e2009-05-22 14:51:39 -04003147 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
3148 "0290 The SLI4 DCBX asynchronous event is not "
3149 "handled yet\n");
3150}
3151
3152/**
3153 * lpfc_sli4_async_event_proc - Process all the pending asynchronous event
3154 * @phba: pointer to lpfc hba data structure.
3155 *
3156 * This routine is invoked by the worker thread to process all the pending
3157 * SLI4 asynchronous events.
3158 **/
3159void lpfc_sli4_async_event_proc(struct lpfc_hba *phba)
3160{
3161 struct lpfc_cq_event *cq_event;
3162
3163 /* First, declare the async event has been handled */
3164 spin_lock_irq(&phba->hbalock);
3165 phba->hba_flag &= ~ASYNC_EVENT;
3166 spin_unlock_irq(&phba->hbalock);
3167 /* Now, handle all the async events */
3168 while (!list_empty(&phba->sli4_hba.sp_asynce_work_queue)) {
3169 /* Get the first event from the head of the event queue */
3170 spin_lock_irq(&phba->hbalock);
3171 list_remove_head(&phba->sli4_hba.sp_asynce_work_queue,
3172 cq_event, struct lpfc_cq_event, list);
3173 spin_unlock_irq(&phba->hbalock);
3174 /* Process the asynchronous event */
3175 switch (bf_get(lpfc_trailer_code, &cq_event->cqe.mcqe_cmpl)) {
3176 case LPFC_TRAILER_CODE_LINK:
3177 lpfc_sli4_async_link_evt(phba,
3178 &cq_event->cqe.acqe_link);
3179 break;
3180 case LPFC_TRAILER_CODE_FCOE:
3181 lpfc_sli4_async_fcoe_evt(phba,
3182 &cq_event->cqe.acqe_fcoe);
3183 break;
3184 case LPFC_TRAILER_CODE_DCBX:
3185 lpfc_sli4_async_dcbx_evt(phba,
3186 &cq_event->cqe.acqe_dcbx);
3187 break;
3188 default:
3189 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
3190 "1804 Invalid asynchrous event code: "
3191 "x%x\n", bf_get(lpfc_trailer_code,
3192 &cq_event->cqe.mcqe_cmpl));
3193 break;
3194 }
3195 /* Free the completion event processed to the free pool */
3196 lpfc_sli4_cq_event_release(phba, cq_event);
3197 }
3198}
3199
3200/**
3201 * lpfc_api_table_setup - Set up per hba pci-device group func api jump table
3202 * @phba: pointer to lpfc hba data structure.
3203 * @dev_grp: The HBA PCI-Device group number.
3204 *
3205 * This routine is invoked to set up the per HBA PCI-Device group function
3206 * API jump table entries.
3207 *
3208 * Return: 0 if success, otherwise -ENODEV
3209 **/
3210int
3211lpfc_api_table_setup(struct lpfc_hba *phba, uint8_t dev_grp)
James Smart5b75da22008-12-04 22:39:35 -05003212{
3213 int rc;
3214
James Smartda0436e2009-05-22 14:51:39 -04003215 /* Set up lpfc PCI-device group */
3216 phba->pci_dev_grp = dev_grp;
James Smart5b75da22008-12-04 22:39:35 -05003217
James Smartda0436e2009-05-22 14:51:39 -04003218 /* The LPFC_PCI_DEV_OC uses SLI4 */
3219 if (dev_grp == LPFC_PCI_DEV_OC)
3220 phba->sli_rev = LPFC_SLI_REV4;
James Smart5b75da22008-12-04 22:39:35 -05003221
James Smartda0436e2009-05-22 14:51:39 -04003222 /* Set up device INIT API function jump table */
3223 rc = lpfc_init_api_table_setup(phba, dev_grp);
3224 if (rc)
3225 return -ENODEV;
3226 /* Set up SCSI API function jump table */
3227 rc = lpfc_scsi_api_table_setup(phba, dev_grp);
3228 if (rc)
3229 return -ENODEV;
3230 /* Set up SLI API function jump table */
3231 rc = lpfc_sli_api_table_setup(phba, dev_grp);
3232 if (rc)
3233 return -ENODEV;
3234 /* Set up MBOX API function jump table */
3235 rc = lpfc_mbox_api_table_setup(phba, dev_grp);
3236 if (rc)
3237 return -ENODEV;
James Smart5b75da22008-12-04 22:39:35 -05003238
James Smartda0436e2009-05-22 14:51:39 -04003239 return 0;
James Smart5b75da22008-12-04 22:39:35 -05003240}
3241
3242/**
James Smart3621a712009-04-06 18:47:14 -04003243 * lpfc_log_intr_mode - Log the active interrupt mode
James Smart5b75da22008-12-04 22:39:35 -05003244 * @phba: pointer to lpfc hba data structure.
3245 * @intr_mode: active interrupt mode adopted.
3246 *
3247 * This routine it invoked to log the currently used active interrupt mode
3248 * to the device.
James Smart3772a992009-05-22 14:50:54 -04003249 **/
3250static void lpfc_log_intr_mode(struct lpfc_hba *phba, uint32_t intr_mode)
James Smart5b75da22008-12-04 22:39:35 -05003251{
3252 switch (intr_mode) {
3253 case 0:
3254 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
3255 "0470 Enable INTx interrupt mode.\n");
3256 break;
3257 case 1:
3258 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
3259 "0481 Enabled MSI interrupt mode.\n");
3260 break;
3261 case 2:
3262 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
3263 "0480 Enabled MSI-X interrupt mode.\n");
3264 break;
3265 default:
3266 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3267 "0482 Illegal interrupt mode.\n");
3268 break;
3269 }
3270 return;
3271}
3272
James Smart5b75da22008-12-04 22:39:35 -05003273/**
James Smart3772a992009-05-22 14:50:54 -04003274 * lpfc_enable_pci_dev - Enable a generic PCI device.
James Smart5b75da22008-12-04 22:39:35 -05003275 * @phba: pointer to lpfc hba data structure.
3276 *
James Smart3772a992009-05-22 14:50:54 -04003277 * This routine is invoked to enable the PCI device that is common to all
3278 * PCI devices.
James Smart5b75da22008-12-04 22:39:35 -05003279 *
3280 * Return codes
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02003281 * 0 - successful
James Smart3772a992009-05-22 14:50:54 -04003282 * other values - error
James Smart5b75da22008-12-04 22:39:35 -05003283 **/
James Smart3772a992009-05-22 14:50:54 -04003284static int
3285lpfc_enable_pci_dev(struct lpfc_hba *phba)
James Smart5b75da22008-12-04 22:39:35 -05003286{
James Smart3772a992009-05-22 14:50:54 -04003287 struct pci_dev *pdev;
3288 int bars;
James Smart5b75da22008-12-04 22:39:35 -05003289
James Smart3772a992009-05-22 14:50:54 -04003290 /* Obtain PCI device reference */
3291 if (!phba->pcidev)
3292 goto out_error;
3293 else
3294 pdev = phba->pcidev;
3295 /* Select PCI BARs */
3296 bars = pci_select_bars(pdev, IORESOURCE_MEM);
3297 /* Enable PCI device */
3298 if (pci_enable_device_mem(pdev))
3299 goto out_error;
3300 /* Request PCI resource for the device */
3301 if (pci_request_selected_regions(pdev, bars, LPFC_DRIVER_NAME))
3302 goto out_disable_device;
3303 /* Set up device as PCI master and save state for EEH */
3304 pci_set_master(pdev);
3305 pci_try_set_mwi(pdev);
3306 pci_save_state(pdev);
James Smart5b75da22008-12-04 22:39:35 -05003307
James Smart3772a992009-05-22 14:50:54 -04003308 return 0;
James Smart5b75da22008-12-04 22:39:35 -05003309
James Smart3772a992009-05-22 14:50:54 -04003310out_disable_device:
3311 pci_disable_device(pdev);
3312out_error:
3313 return -ENODEV;
James Smart5b75da22008-12-04 22:39:35 -05003314}
3315
3316/**
James Smart3772a992009-05-22 14:50:54 -04003317 * lpfc_disable_pci_dev - Disable a generic PCI device.
James Smart5b75da22008-12-04 22:39:35 -05003318 * @phba: pointer to lpfc hba data structure.
3319 *
James Smart3772a992009-05-22 14:50:54 -04003320 * This routine is invoked to disable the PCI device that is common to all
3321 * PCI devices.
James Smart5b75da22008-12-04 22:39:35 -05003322 **/
3323static void
James Smart3772a992009-05-22 14:50:54 -04003324lpfc_disable_pci_dev(struct lpfc_hba *phba)
James Smart5b75da22008-12-04 22:39:35 -05003325{
James Smart3772a992009-05-22 14:50:54 -04003326 struct pci_dev *pdev;
3327 int bars;
James Smart5b75da22008-12-04 22:39:35 -05003328
James Smart3772a992009-05-22 14:50:54 -04003329 /* Obtain PCI device reference */
3330 if (!phba->pcidev)
3331 return;
3332 else
3333 pdev = phba->pcidev;
3334 /* Select PCI BARs */
3335 bars = pci_select_bars(pdev, IORESOURCE_MEM);
3336 /* Release PCI resource and disable PCI device */
3337 pci_release_selected_regions(pdev, bars);
3338 pci_disable_device(pdev);
3339 /* Null out PCI private reference to driver */
3340 pci_set_drvdata(pdev, NULL);
James Smart5b75da22008-12-04 22:39:35 -05003341
3342 return;
3343}
3344
3345/**
James Smart3772a992009-05-22 14:50:54 -04003346 * lpfc_reset_hba - Reset a hba
3347 * @phba: pointer to lpfc hba data structure.
James Smarte59058c2008-08-24 21:49:00 -04003348 *
James Smart3772a992009-05-22 14:50:54 -04003349 * This routine is invoked to reset a hba device. It brings the HBA
3350 * offline, performs a board restart, and then brings the board back
3351 * online. The lpfc_offline calls lpfc_sli_hba_down which will clean up
3352 * on outstanding mailbox commands.
James Smarte59058c2008-08-24 21:49:00 -04003353 **/
James Smart3772a992009-05-22 14:50:54 -04003354void
3355lpfc_reset_hba(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -05003356{
James Smart3772a992009-05-22 14:50:54 -04003357 /* If resets are disabled then set error state and return. */
3358 if (!phba->cfg_enable_hba_reset) {
3359 phba->link_state = LPFC_HBA_ERROR;
3360 return;
3361 }
3362 lpfc_offline_prep(phba);
3363 lpfc_offline(phba);
3364 lpfc_sli_brdrestart(phba);
3365 lpfc_online(phba);
3366 lpfc_unblock_mgmt_io(phba);
3367}
dea31012005-04-17 16:05:31 -05003368
James Smart3772a992009-05-22 14:50:54 -04003369/**
3370 * lpfc_sli_driver_resource_setup - Setup driver internal resources for SLI3 dev.
3371 * @phba: pointer to lpfc hba data structure.
3372 *
3373 * This routine is invoked to set up the driver internal resources specific to
3374 * support the SLI-3 HBA device it attached to.
3375 *
3376 * Return codes
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02003377 * 0 - successful
James Smart3772a992009-05-22 14:50:54 -04003378 * other values - error
3379 **/
3380static int
3381lpfc_sli_driver_resource_setup(struct lpfc_hba *phba)
3382{
3383 struct lpfc_sli *psli;
dea31012005-04-17 16:05:31 -05003384
James Smart3772a992009-05-22 14:50:54 -04003385 /*
3386 * Initialize timers used by driver
3387 */
dea31012005-04-17 16:05:31 -05003388
James Smart3772a992009-05-22 14:50:54 -04003389 /* Heartbeat timer */
3390 init_timer(&phba->hb_tmofunc);
3391 phba->hb_tmofunc.function = lpfc_hb_timeout;
3392 phba->hb_tmofunc.data = (unsigned long)phba;
3393
3394 psli = &phba->sli;
3395 /* MBOX heartbeat timer */
3396 init_timer(&psli->mbox_tmo);
3397 psli->mbox_tmo.function = lpfc_mbox_timeout;
3398 psli->mbox_tmo.data = (unsigned long) phba;
3399 /* FCP polling mode timer */
3400 init_timer(&phba->fcp_poll_timer);
3401 phba->fcp_poll_timer.function = lpfc_poll_timeout;
3402 phba->fcp_poll_timer.data = (unsigned long) phba;
3403 /* Fabric block timer */
3404 init_timer(&phba->fabric_block_timer);
3405 phba->fabric_block_timer.function = lpfc_fabric_block_timeout;
3406 phba->fabric_block_timer.data = (unsigned long) phba;
3407 /* EA polling mode timer */
3408 init_timer(&phba->eratt_poll);
3409 phba->eratt_poll.function = lpfc_poll_eratt;
3410 phba->eratt_poll.data = (unsigned long) phba;
3411
3412 /* Host attention work mask setup */
3413 phba->work_ha_mask = (HA_ERATT | HA_MBATT | HA_LATT);
3414 phba->work_ha_mask |= (HA_RXMASK << (LPFC_ELS_RING * 4));
3415
3416 /* Get all the module params for configuring this host */
3417 lpfc_get_cfgparam(phba);
3418 /*
3419 * Since the sg_tablesize is module parameter, the sg_dma_buf_size
3420 * used to create the sg_dma_buf_pool must be dynamically calculated.
3421 * 2 segments are added since the IOCB needs a command and response bde.
3422 */
3423 phba->cfg_sg_dma_buf_size = sizeof(struct fcp_cmnd) +
3424 sizeof(struct fcp_rsp) +
3425 ((phba->cfg_sg_seg_cnt + 2) * sizeof(struct ulp_bde64));
3426
3427 if (phba->cfg_enable_bg) {
3428 phba->cfg_sg_seg_cnt = LPFC_MAX_SG_SEG_CNT;
3429 phba->cfg_sg_dma_buf_size +=
3430 phba->cfg_prot_sg_seg_cnt * sizeof(struct ulp_bde64);
3431 }
3432
3433 /* Also reinitialize the host templates with new values. */
3434 lpfc_vport_template.sg_tablesize = phba->cfg_sg_seg_cnt;
3435 lpfc_template.sg_tablesize = phba->cfg_sg_seg_cnt;
3436
3437 phba->max_vpi = LPFC_MAX_VPI;
3438 /* This will be set to correct value after config_port mbox */
3439 phba->max_vports = 0;
3440
3441 /*
3442 * Initialize the SLI Layer to run with lpfc HBAs.
3443 */
3444 lpfc_sli_setup(phba);
3445 lpfc_sli_queue_setup(phba);
3446
3447 /* Allocate device driver memory */
3448 if (lpfc_mem_alloc(phba, BPL_ALIGN_SZ))
3449 return -ENOMEM;
3450
3451 return 0;
3452}
3453
3454/**
3455 * lpfc_sli_driver_resource_unset - Unset drvr internal resources for SLI3 dev
3456 * @phba: pointer to lpfc hba data structure.
3457 *
3458 * This routine is invoked to unset the driver internal resources set up
3459 * specific for supporting the SLI-3 HBA device it attached to.
3460 **/
3461static void
3462lpfc_sli_driver_resource_unset(struct lpfc_hba *phba)
3463{
3464 /* Free device driver memory allocated */
3465 lpfc_mem_free_all(phba);
3466
3467 return;
3468}
3469
3470/**
James Smartda0436e2009-05-22 14:51:39 -04003471 * lpfc_sli4_driver_resource_setup - Setup drvr internal resources for SLI4 dev
3472 * @phba: pointer to lpfc hba data structure.
3473 *
3474 * This routine is invoked to set up the driver internal resources specific to
3475 * support the SLI-4 HBA device it attached to.
3476 *
3477 * Return codes
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02003478 * 0 - successful
James Smartda0436e2009-05-22 14:51:39 -04003479 * other values - error
3480 **/
3481static int
3482lpfc_sli4_driver_resource_setup(struct lpfc_hba *phba)
3483{
3484 struct lpfc_sli *psli;
3485 int rc;
3486 int i, hbq_count;
3487
3488 /* Before proceed, wait for POST done and device ready */
3489 rc = lpfc_sli4_post_status_check(phba);
3490 if (rc)
3491 return -ENODEV;
3492
3493 /*
3494 * Initialize timers used by driver
3495 */
3496
3497 /* Heartbeat timer */
3498 init_timer(&phba->hb_tmofunc);
3499 phba->hb_tmofunc.function = lpfc_hb_timeout;
3500 phba->hb_tmofunc.data = (unsigned long)phba;
3501
3502 psli = &phba->sli;
3503 /* MBOX heartbeat timer */
3504 init_timer(&psli->mbox_tmo);
3505 psli->mbox_tmo.function = lpfc_mbox_timeout;
3506 psli->mbox_tmo.data = (unsigned long) phba;
3507 /* Fabric block timer */
3508 init_timer(&phba->fabric_block_timer);
3509 phba->fabric_block_timer.function = lpfc_fabric_block_timeout;
3510 phba->fabric_block_timer.data = (unsigned long) phba;
3511 /* EA polling mode timer */
3512 init_timer(&phba->eratt_poll);
3513 phba->eratt_poll.function = lpfc_poll_eratt;
3514 phba->eratt_poll.data = (unsigned long) phba;
3515 /*
3516 * We need to do a READ_CONFIG mailbox command here before
3517 * calling lpfc_get_cfgparam. For VFs this will report the
3518 * MAX_XRI, MAX_VPI, MAX_RPI, MAX_IOCB, and MAX_VFI settings.
3519 * All of the resources allocated
3520 * for this Port are tied to these values.
3521 */
3522 /* Get all the module params for configuring this host */
3523 lpfc_get_cfgparam(phba);
3524 phba->max_vpi = LPFC_MAX_VPI;
3525 /* This will be set to correct value after the read_config mbox */
3526 phba->max_vports = 0;
3527
3528 /* Program the default value of vlan_id and fc_map */
3529 phba->valid_vlan = 0;
3530 phba->fc_map[0] = LPFC_FCOE_FCF_MAP0;
3531 phba->fc_map[1] = LPFC_FCOE_FCF_MAP1;
3532 phba->fc_map[2] = LPFC_FCOE_FCF_MAP2;
3533
3534 /*
3535 * Since the sg_tablesize is module parameter, the sg_dma_buf_size
3536 * used to create the sg_dma_buf_pool must be dynamically calculated.
3537 * 2 segments are added since the IOCB needs a command and response bde.
3538 * To insure that the scsi sgl does not cross a 4k page boundary only
3539 * sgl sizes of 1k, 2k, 4k, and 8k are supported.
3540 * Table of sgl sizes and seg_cnt:
3541 * sgl size, sg_seg_cnt total seg
3542 * 1k 50 52
3543 * 2k 114 116
3544 * 4k 242 244
3545 * 8k 498 500
3546 * cmd(32) + rsp(160) + (52 * sizeof(sli4_sge)) = 1024
3547 * cmd(32) + rsp(160) + (116 * sizeof(sli4_sge)) = 2048
3548 * cmd(32) + rsp(160) + (244 * sizeof(sli4_sge)) = 4096
3549 * cmd(32) + rsp(160) + (500 * sizeof(sli4_sge)) = 8192
3550 */
3551 if (phba->cfg_sg_seg_cnt <= LPFC_DEFAULT_SG_SEG_CNT)
3552 phba->cfg_sg_seg_cnt = 50;
3553 else if (phba->cfg_sg_seg_cnt <= 114)
3554 phba->cfg_sg_seg_cnt = 114;
3555 else if (phba->cfg_sg_seg_cnt <= 242)
3556 phba->cfg_sg_seg_cnt = 242;
3557 else
3558 phba->cfg_sg_seg_cnt = 498;
3559
3560 phba->cfg_sg_dma_buf_size = sizeof(struct fcp_cmnd)
3561 + sizeof(struct fcp_rsp);
3562 phba->cfg_sg_dma_buf_size +=
3563 ((phba->cfg_sg_seg_cnt + 2) * sizeof(struct sli4_sge));
3564
3565 /* Initialize buffer queue management fields */
3566 hbq_count = lpfc_sli_hbq_count();
3567 for (i = 0; i < hbq_count; ++i)
3568 INIT_LIST_HEAD(&phba->hbqs[i].hbq_buffer_list);
3569 INIT_LIST_HEAD(&phba->rb_pend_list);
3570 phba->hbqs[LPFC_ELS_HBQ].hbq_alloc_buffer = lpfc_sli4_rb_alloc;
3571 phba->hbqs[LPFC_ELS_HBQ].hbq_free_buffer = lpfc_sli4_rb_free;
3572
3573 /*
3574 * Initialize the SLI Layer to run with lpfc SLI4 HBAs.
3575 */
3576 /* Initialize the Abort scsi buffer list used by driver */
3577 spin_lock_init(&phba->sli4_hba.abts_scsi_buf_list_lock);
3578 INIT_LIST_HEAD(&phba->sli4_hba.lpfc_abts_scsi_buf_list);
3579 /* This abort list used by worker thread */
3580 spin_lock_init(&phba->sli4_hba.abts_sgl_list_lock);
3581
3582 /*
3583 * Initialize dirver internal slow-path work queues
3584 */
3585
3586 /* Driver internel slow-path CQ Event pool */
3587 INIT_LIST_HEAD(&phba->sli4_hba.sp_cqe_event_pool);
3588 /* Response IOCB work queue list */
James Smart45ed1192009-10-02 15:17:02 -04003589 INIT_LIST_HEAD(&phba->sli4_hba.sp_queue_event);
James Smartda0436e2009-05-22 14:51:39 -04003590 /* Asynchronous event CQ Event work queue list */
3591 INIT_LIST_HEAD(&phba->sli4_hba.sp_asynce_work_queue);
3592 /* Fast-path XRI aborted CQ Event work queue list */
3593 INIT_LIST_HEAD(&phba->sli4_hba.sp_fcp_xri_aborted_work_queue);
3594 /* Slow-path XRI aborted CQ Event work queue list */
3595 INIT_LIST_HEAD(&phba->sli4_hba.sp_els_xri_aborted_work_queue);
3596 /* Receive queue CQ Event work queue list */
3597 INIT_LIST_HEAD(&phba->sli4_hba.sp_unsol_work_queue);
3598
3599 /* Initialize the driver internal SLI layer lists. */
3600 lpfc_sli_setup(phba);
3601 lpfc_sli_queue_setup(phba);
3602
3603 /* Allocate device driver memory */
3604 rc = lpfc_mem_alloc(phba, SGL_ALIGN_SZ);
3605 if (rc)
3606 return -ENOMEM;
3607
3608 /* Create the bootstrap mailbox command */
3609 rc = lpfc_create_bootstrap_mbox(phba);
3610 if (unlikely(rc))
3611 goto out_free_mem;
3612
3613 /* Set up the host's endian order with the device. */
3614 rc = lpfc_setup_endian_order(phba);
3615 if (unlikely(rc))
3616 goto out_free_bsmbx;
3617
James Smart6669f9b2009-10-02 15:16:45 -04003618 rc = lpfc_sli4_fw_cfg_check(phba);
3619 if (unlikely(rc))
3620 goto out_free_bsmbx;
3621
James Smartda0436e2009-05-22 14:51:39 -04003622 /* Set up the hba's configuration parameters. */
3623 rc = lpfc_sli4_read_config(phba);
3624 if (unlikely(rc))
3625 goto out_free_bsmbx;
3626
3627 /* Perform a function reset */
3628 rc = lpfc_pci_function_reset(phba);
3629 if (unlikely(rc))
3630 goto out_free_bsmbx;
3631
3632 /* Create all the SLI4 queues */
3633 rc = lpfc_sli4_queue_create(phba);
3634 if (rc)
3635 goto out_free_bsmbx;
3636
3637 /* Create driver internal CQE event pool */
3638 rc = lpfc_sli4_cq_event_pool_create(phba);
3639 if (rc)
3640 goto out_destroy_queue;
3641
3642 /* Initialize and populate the iocb list per host */
3643 rc = lpfc_init_sgl_list(phba);
3644 if (rc) {
3645 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3646 "1400 Failed to initialize sgl list.\n");
3647 goto out_destroy_cq_event_pool;
3648 }
3649 rc = lpfc_init_active_sgl_array(phba);
3650 if (rc) {
3651 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3652 "1430 Failed to initialize sgl list.\n");
3653 goto out_free_sgl_list;
3654 }
3655
3656 rc = lpfc_sli4_init_rpi_hdrs(phba);
3657 if (rc) {
3658 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3659 "1432 Failed to initialize rpi headers.\n");
3660 goto out_free_active_sgl;
3661 }
3662
3663 phba->sli4_hba.fcp_eq_hdl = kzalloc((sizeof(struct lpfc_fcp_eq_hdl) *
3664 phba->cfg_fcp_eq_count), GFP_KERNEL);
3665 if (!phba->sli4_hba.fcp_eq_hdl) {
3666 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3667 "2572 Failed allocate memory for fast-path "
3668 "per-EQ handle array\n");
3669 goto out_remove_rpi_hdrs;
3670 }
3671
3672 phba->sli4_hba.msix_entries = kzalloc((sizeof(struct msix_entry) *
3673 phba->sli4_hba.cfg_eqn), GFP_KERNEL);
3674 if (!phba->sli4_hba.msix_entries) {
3675 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3676 "2573 Failed allocate memory for msi-x "
3677 "interrupt vector entries\n");
3678 goto out_free_fcp_eq_hdl;
3679 }
3680
3681 return rc;
3682
3683out_free_fcp_eq_hdl:
3684 kfree(phba->sli4_hba.fcp_eq_hdl);
3685out_remove_rpi_hdrs:
3686 lpfc_sli4_remove_rpi_hdrs(phba);
3687out_free_active_sgl:
3688 lpfc_free_active_sgl(phba);
3689out_free_sgl_list:
3690 lpfc_free_sgl_list(phba);
3691out_destroy_cq_event_pool:
3692 lpfc_sli4_cq_event_pool_destroy(phba);
3693out_destroy_queue:
3694 lpfc_sli4_queue_destroy(phba);
3695out_free_bsmbx:
3696 lpfc_destroy_bootstrap_mbox(phba);
3697out_free_mem:
3698 lpfc_mem_free(phba);
3699 return rc;
3700}
3701
3702/**
3703 * lpfc_sli4_driver_resource_unset - Unset drvr internal resources for SLI4 dev
3704 * @phba: pointer to lpfc hba data structure.
3705 *
3706 * This routine is invoked to unset the driver internal resources set up
3707 * specific for supporting the SLI-4 HBA device it attached to.
3708 **/
3709static void
3710lpfc_sli4_driver_resource_unset(struct lpfc_hba *phba)
3711{
3712 struct lpfc_fcf_conn_entry *conn_entry, *next_conn_entry;
3713
3714 /* unregister default FCFI from the HBA */
3715 lpfc_sli4_fcfi_unreg(phba, phba->fcf.fcfi);
3716
3717 /* Free the default FCR table */
3718 lpfc_sli_remove_dflt_fcf(phba);
3719
3720 /* Free memory allocated for msi-x interrupt vector entries */
3721 kfree(phba->sli4_hba.msix_entries);
3722
3723 /* Free memory allocated for fast-path work queue handles */
3724 kfree(phba->sli4_hba.fcp_eq_hdl);
3725
3726 /* Free the allocated rpi headers. */
3727 lpfc_sli4_remove_rpi_hdrs(phba);
James Smartd11e31d2009-06-10 17:23:06 -04003728 lpfc_sli4_remove_rpis(phba);
James Smartda0436e2009-05-22 14:51:39 -04003729
3730 /* Free the ELS sgl list */
3731 lpfc_free_active_sgl(phba);
3732 lpfc_free_sgl_list(phba);
3733
3734 /* Free the SCSI sgl management array */
3735 kfree(phba->sli4_hba.lpfc_scsi_psb_array);
3736
3737 /* Free the SLI4 queues */
3738 lpfc_sli4_queue_destroy(phba);
3739
3740 /* Free the completion queue EQ event pool */
3741 lpfc_sli4_cq_event_release_all(phba);
3742 lpfc_sli4_cq_event_pool_destroy(phba);
3743
3744 /* Reset SLI4 HBA FCoE function */
3745 lpfc_pci_function_reset(phba);
3746
3747 /* Free the bsmbx region. */
3748 lpfc_destroy_bootstrap_mbox(phba);
3749
3750 /* Free the SLI Layer memory with SLI4 HBAs */
3751 lpfc_mem_free_all(phba);
3752
3753 /* Free the current connect table */
3754 list_for_each_entry_safe(conn_entry, next_conn_entry,
James Smart4d9ab992009-10-02 15:16:39 -04003755 &phba->fcf_conn_rec_list, list) {
3756 list_del_init(&conn_entry->list);
James Smartda0436e2009-05-22 14:51:39 -04003757 kfree(conn_entry);
James Smart4d9ab992009-10-02 15:16:39 -04003758 }
James Smartda0436e2009-05-22 14:51:39 -04003759
3760 return;
3761}
3762
3763/**
James Smart3772a992009-05-22 14:50:54 -04003764 * lpfc_init_api_table_setup - Set up init api fucntion jump table
3765 * @phba: The hba struct for which this call is being executed.
3766 * @dev_grp: The HBA PCI-Device group number.
3767 *
3768 * This routine sets up the device INIT interface API function jump table
3769 * in @phba struct.
3770 *
3771 * Returns: 0 - success, -ENODEV - failure.
3772 **/
3773int
3774lpfc_init_api_table_setup(struct lpfc_hba *phba, uint8_t dev_grp)
3775{
3776 switch (dev_grp) {
3777 case LPFC_PCI_DEV_LP:
3778 phba->lpfc_hba_down_post = lpfc_hba_down_post_s3;
3779 phba->lpfc_handle_eratt = lpfc_handle_eratt_s3;
3780 phba->lpfc_stop_port = lpfc_stop_port_s3;
3781 break;
James Smartda0436e2009-05-22 14:51:39 -04003782 case LPFC_PCI_DEV_OC:
3783 phba->lpfc_hba_down_post = lpfc_hba_down_post_s4;
3784 phba->lpfc_handle_eratt = lpfc_handle_eratt_s4;
3785 phba->lpfc_stop_port = lpfc_stop_port_s4;
3786 break;
James Smart3772a992009-05-22 14:50:54 -04003787 default:
3788 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3789 "1431 Invalid HBA PCI-device group: 0x%x\n",
3790 dev_grp);
3791 return -ENODEV;
3792 break;
3793 }
3794 return 0;
3795}
3796
3797/**
3798 * lpfc_setup_driver_resource_phase1 - Phase1 etup driver internal resources.
3799 * @phba: pointer to lpfc hba data structure.
3800 *
3801 * This routine is invoked to set up the driver internal resources before the
3802 * device specific resource setup to support the HBA device it attached to.
3803 *
3804 * Return codes
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02003805 * 0 - successful
James Smart3772a992009-05-22 14:50:54 -04003806 * other values - error
3807 **/
3808static int
3809lpfc_setup_driver_resource_phase1(struct lpfc_hba *phba)
3810{
3811 /*
3812 * Driver resources common to all SLI revisions
3813 */
James Smartea2151b2008-09-07 11:52:10 -04003814 atomic_set(&phba->fast_event_count, 0);
James Smart2e0fef82007-06-17 19:56:36 -05003815 spin_lock_init(&phba->hbalock);
dea31012005-04-17 16:05:31 -05003816
James Smarte47c9092008-02-08 18:49:26 -05003817 /* Initialize ndlp management spinlock */
3818 spin_lock_init(&phba->ndlp_lock);
3819
James Smart2e0fef82007-06-17 19:56:36 -05003820 INIT_LIST_HEAD(&phba->port_list);
James Smart3772a992009-05-22 14:50:54 -04003821 INIT_LIST_HEAD(&phba->work_list);
James Smart84774a42008-08-24 21:50:06 -04003822 init_waitqueue_head(&phba->wait_4_mlo_m_q);
dea31012005-04-17 16:05:31 -05003823
James Smart3772a992009-05-22 14:50:54 -04003824 /* Initialize the wait queue head for the kernel thread */
3825 init_waitqueue_head(&phba->work_waitq);
James Smart858c9f62007-06-17 19:56:39 -05003826
James Smart3772a992009-05-22 14:50:54 -04003827 /* Initialize the scsi buffer list used by driver for scsi IO */
3828 spin_lock_init(&phba->scsi_buf_list_lock);
3829 INIT_LIST_HEAD(&phba->lpfc_scsi_buf_list);
dea31012005-04-17 16:05:31 -05003830
James Smart3772a992009-05-22 14:50:54 -04003831 /* Initialize the fabric iocb list */
3832 INIT_LIST_HEAD(&phba->fabric_iocb_list);
dea31012005-04-17 16:05:31 -05003833
James Smart3772a992009-05-22 14:50:54 -04003834 /* Initialize list to save ELS buffers */
3835 INIT_LIST_HEAD(&phba->elsbuf);
dea31012005-04-17 16:05:31 -05003836
James Smart3772a992009-05-22 14:50:54 -04003837 /* Initialize FCF connection rec list */
3838 INIT_LIST_HEAD(&phba->fcf_conn_rec_list);
dea31012005-04-17 16:05:31 -05003839
James Smart3772a992009-05-22 14:50:54 -04003840 return 0;
3841}
dea31012005-04-17 16:05:31 -05003842
James Smart3772a992009-05-22 14:50:54 -04003843/**
3844 * lpfc_setup_driver_resource_phase2 - Phase2 setup driver internal resources.
3845 * @phba: pointer to lpfc hba data structure.
3846 *
3847 * This routine is invoked to set up the driver internal resources after the
3848 * device specific resource setup to support the HBA device it attached to.
3849 *
3850 * Return codes
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02003851 * 0 - successful
James Smart3772a992009-05-22 14:50:54 -04003852 * other values - error
3853 **/
3854static int
3855lpfc_setup_driver_resource_phase2(struct lpfc_hba *phba)
3856{
3857 int error;
3858
3859 /* Startup the kernel thread for this host adapter. */
3860 phba->worker_thread = kthread_run(lpfc_do_work, phba,
3861 "lpfc_worker_%d", phba->brd_no);
3862 if (IS_ERR(phba->worker_thread)) {
3863 error = PTR_ERR(phba->worker_thread);
3864 return error;
Jamie Wellnitz901a9202006-02-28 19:25:19 -05003865 }
3866
James Smart3772a992009-05-22 14:50:54 -04003867 return 0;
3868}
3869
3870/**
3871 * lpfc_unset_driver_resource_phase2 - Phase2 unset driver internal resources.
3872 * @phba: pointer to lpfc hba data structure.
3873 *
3874 * This routine is invoked to unset the driver internal resources set up after
3875 * the device specific resource setup for supporting the HBA device it
3876 * attached to.
3877 **/
3878static void
3879lpfc_unset_driver_resource_phase2(struct lpfc_hba *phba)
3880{
3881 /* Stop kernel worker thread */
3882 kthread_stop(phba->worker_thread);
3883}
3884
3885/**
3886 * lpfc_free_iocb_list - Free iocb list.
3887 * @phba: pointer to lpfc hba data structure.
3888 *
3889 * This routine is invoked to free the driver's IOCB list and memory.
3890 **/
3891static void
3892lpfc_free_iocb_list(struct lpfc_hba *phba)
3893{
3894 struct lpfc_iocbq *iocbq_entry = NULL, *iocbq_next = NULL;
3895
3896 spin_lock_irq(&phba->hbalock);
3897 list_for_each_entry_safe(iocbq_entry, iocbq_next,
3898 &phba->lpfc_iocb_list, list) {
3899 list_del(&iocbq_entry->list);
3900 kfree(iocbq_entry);
3901 phba->total_iocbq_bufs--;
Jamie Wellnitz901a9202006-02-28 19:25:19 -05003902 }
James Smart3772a992009-05-22 14:50:54 -04003903 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05003904
James Smart3772a992009-05-22 14:50:54 -04003905 return;
3906}
dea31012005-04-17 16:05:31 -05003907
James Smart3772a992009-05-22 14:50:54 -04003908/**
3909 * lpfc_init_iocb_list - Allocate and initialize iocb list.
3910 * @phba: pointer to lpfc hba data structure.
3911 *
3912 * This routine is invoked to allocate and initizlize the driver's IOCB
3913 * list and set up the IOCB tag array accordingly.
3914 *
3915 * Return codes
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02003916 * 0 - successful
James Smart3772a992009-05-22 14:50:54 -04003917 * other values - error
3918 **/
3919static int
3920lpfc_init_iocb_list(struct lpfc_hba *phba, int iocb_count)
3921{
3922 struct lpfc_iocbq *iocbq_entry = NULL;
3923 uint16_t iotag;
3924 int i;
dea31012005-04-17 16:05:31 -05003925
3926 /* Initialize and populate the iocb list per host. */
3927 INIT_LIST_HEAD(&phba->lpfc_iocb_list);
James Smart3772a992009-05-22 14:50:54 -04003928 for (i = 0; i < iocb_count; i++) {
Yoann Padioleaudd00cc42007-07-19 01:49:03 -07003929 iocbq_entry = kzalloc(sizeof(struct lpfc_iocbq), GFP_KERNEL);
dea31012005-04-17 16:05:31 -05003930 if (iocbq_entry == NULL) {
3931 printk(KERN_ERR "%s: only allocated %d iocbs of "
3932 "expected %d count. Unloading driver.\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07003933 __func__, i, LPFC_IOCB_LIST_CNT);
dea31012005-04-17 16:05:31 -05003934 goto out_free_iocbq;
3935 }
3936
James Bottomley604a3e32005-10-29 10:28:33 -05003937 iotag = lpfc_sli_next_iotag(phba, iocbq_entry);
3938 if (iotag == 0) {
James Smart3772a992009-05-22 14:50:54 -04003939 kfree(iocbq_entry);
James Bottomley604a3e32005-10-29 10:28:33 -05003940 printk(KERN_ERR "%s: failed to allocate IOTAG. "
James Smart3772a992009-05-22 14:50:54 -04003941 "Unloading driver.\n", __func__);
James Bottomley604a3e32005-10-29 10:28:33 -05003942 goto out_free_iocbq;
3943 }
James Smart3772a992009-05-22 14:50:54 -04003944 iocbq_entry->sli4_xritag = NO_XRI;
James Smart2e0fef82007-06-17 19:56:36 -05003945
3946 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05003947 list_add(&iocbq_entry->list, &phba->lpfc_iocb_list);
3948 phba->total_iocbq_bufs++;
James Smart2e0fef82007-06-17 19:56:36 -05003949 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05003950 }
3951
James Smart3772a992009-05-22 14:50:54 -04003952 return 0;
3953
3954out_free_iocbq:
3955 lpfc_free_iocb_list(phba);
3956
3957 return -ENOMEM;
3958}
3959
3960/**
James Smartda0436e2009-05-22 14:51:39 -04003961 * lpfc_free_sgl_list - Free sgl list.
3962 * @phba: pointer to lpfc hba data structure.
3963 *
3964 * This routine is invoked to free the driver's sgl list and memory.
3965 **/
3966static void
3967lpfc_free_sgl_list(struct lpfc_hba *phba)
3968{
3969 struct lpfc_sglq *sglq_entry = NULL, *sglq_next = NULL;
3970 LIST_HEAD(sglq_list);
3971 int rc = 0;
3972
3973 spin_lock_irq(&phba->hbalock);
3974 list_splice_init(&phba->sli4_hba.lpfc_sgl_list, &sglq_list);
3975 spin_unlock_irq(&phba->hbalock);
3976
3977 list_for_each_entry_safe(sglq_entry, sglq_next,
3978 &sglq_list, list) {
3979 list_del(&sglq_entry->list);
3980 lpfc_mbuf_free(phba, sglq_entry->virt, sglq_entry->phys);
3981 kfree(sglq_entry);
3982 phba->sli4_hba.total_sglq_bufs--;
3983 }
3984 rc = lpfc_sli4_remove_all_sgl_pages(phba);
3985 if (rc) {
3986 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smart6a9c52c2009-10-02 15:16:51 -04003987 "2005 Unable to deregister pages from HBA: %x\n", rc);
James Smartda0436e2009-05-22 14:51:39 -04003988 }
3989 kfree(phba->sli4_hba.lpfc_els_sgl_array);
3990}
3991
3992/**
3993 * lpfc_init_active_sgl_array - Allocate the buf to track active ELS XRIs.
3994 * @phba: pointer to lpfc hba data structure.
3995 *
3996 * This routine is invoked to allocate the driver's active sgl memory.
3997 * This array will hold the sglq_entry's for active IOs.
3998 **/
3999static int
4000lpfc_init_active_sgl_array(struct lpfc_hba *phba)
4001{
4002 int size;
4003 size = sizeof(struct lpfc_sglq *);
4004 size *= phba->sli4_hba.max_cfg_param.max_xri;
4005
4006 phba->sli4_hba.lpfc_sglq_active_list =
4007 kzalloc(size, GFP_KERNEL);
4008 if (!phba->sli4_hba.lpfc_sglq_active_list)
4009 return -ENOMEM;
4010 return 0;
4011}
4012
4013/**
4014 * lpfc_free_active_sgl - Free the buf that tracks active ELS XRIs.
4015 * @phba: pointer to lpfc hba data structure.
4016 *
4017 * This routine is invoked to walk through the array of active sglq entries
4018 * and free all of the resources.
4019 * This is just a place holder for now.
4020 **/
4021static void
4022lpfc_free_active_sgl(struct lpfc_hba *phba)
4023{
4024 kfree(phba->sli4_hba.lpfc_sglq_active_list);
4025}
4026
4027/**
4028 * lpfc_init_sgl_list - Allocate and initialize sgl list.
4029 * @phba: pointer to lpfc hba data structure.
4030 *
4031 * This routine is invoked to allocate and initizlize the driver's sgl
4032 * list and set up the sgl xritag tag array accordingly.
4033 *
4034 * Return codes
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02004035 * 0 - successful
James Smartda0436e2009-05-22 14:51:39 -04004036 * other values - error
4037 **/
4038static int
4039lpfc_init_sgl_list(struct lpfc_hba *phba)
4040{
4041 struct lpfc_sglq *sglq_entry = NULL;
4042 int i;
4043 int els_xri_cnt;
4044
4045 els_xri_cnt = lpfc_sli4_get_els_iocb_cnt(phba);
4046 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
4047 "2400 lpfc_init_sgl_list els %d.\n",
4048 els_xri_cnt);
4049 /* Initialize and populate the sglq list per host/VF. */
4050 INIT_LIST_HEAD(&phba->sli4_hba.lpfc_sgl_list);
4051 INIT_LIST_HEAD(&phba->sli4_hba.lpfc_abts_els_sgl_list);
4052
4053 /* Sanity check on XRI management */
4054 if (phba->sli4_hba.max_cfg_param.max_xri <= els_xri_cnt) {
4055 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
4056 "2562 No room left for SCSI XRI allocation: "
4057 "max_xri=%d, els_xri=%d\n",
4058 phba->sli4_hba.max_cfg_param.max_xri,
4059 els_xri_cnt);
4060 return -ENOMEM;
4061 }
4062
4063 /* Allocate memory for the ELS XRI management array */
4064 phba->sli4_hba.lpfc_els_sgl_array =
4065 kzalloc((sizeof(struct lpfc_sglq *) * els_xri_cnt),
4066 GFP_KERNEL);
4067
4068 if (!phba->sli4_hba.lpfc_els_sgl_array) {
4069 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
4070 "2401 Failed to allocate memory for ELS "
4071 "XRI management array of size %d.\n",
4072 els_xri_cnt);
4073 return -ENOMEM;
4074 }
4075
4076 /* Keep the SCSI XRI into the XRI management array */
4077 phba->sli4_hba.scsi_xri_max =
4078 phba->sli4_hba.max_cfg_param.max_xri - els_xri_cnt;
4079 phba->sli4_hba.scsi_xri_cnt = 0;
4080
4081 phba->sli4_hba.lpfc_scsi_psb_array =
4082 kzalloc((sizeof(struct lpfc_scsi_buf *) *
4083 phba->sli4_hba.scsi_xri_max), GFP_KERNEL);
4084
4085 if (!phba->sli4_hba.lpfc_scsi_psb_array) {
4086 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
4087 "2563 Failed to allocate memory for SCSI "
4088 "XRI management array of size %d.\n",
4089 phba->sli4_hba.scsi_xri_max);
4090 kfree(phba->sli4_hba.lpfc_els_sgl_array);
4091 return -ENOMEM;
4092 }
4093
4094 for (i = 0; i < els_xri_cnt; i++) {
4095 sglq_entry = kzalloc(sizeof(struct lpfc_sglq), GFP_KERNEL);
4096 if (sglq_entry == NULL) {
4097 printk(KERN_ERR "%s: only allocated %d sgls of "
4098 "expected %d count. Unloading driver.\n",
4099 __func__, i, els_xri_cnt);
4100 goto out_free_mem;
4101 }
4102
4103 sglq_entry->sli4_xritag = lpfc_sli4_next_xritag(phba);
4104 if (sglq_entry->sli4_xritag == NO_XRI) {
4105 kfree(sglq_entry);
4106 printk(KERN_ERR "%s: failed to allocate XRI.\n"
4107 "Unloading driver.\n", __func__);
4108 goto out_free_mem;
4109 }
4110 sglq_entry->buff_type = GEN_BUFF_TYPE;
4111 sglq_entry->virt = lpfc_mbuf_alloc(phba, 0, &sglq_entry->phys);
4112 if (sglq_entry->virt == NULL) {
4113 kfree(sglq_entry);
4114 printk(KERN_ERR "%s: failed to allocate mbuf.\n"
4115 "Unloading driver.\n", __func__);
4116 goto out_free_mem;
4117 }
4118 sglq_entry->sgl = sglq_entry->virt;
4119 memset(sglq_entry->sgl, 0, LPFC_BPL_SIZE);
4120
4121 /* The list order is used by later block SGL registraton */
4122 spin_lock_irq(&phba->hbalock);
4123 list_add_tail(&sglq_entry->list, &phba->sli4_hba.lpfc_sgl_list);
4124 phba->sli4_hba.lpfc_els_sgl_array[i] = sglq_entry;
4125 phba->sli4_hba.total_sglq_bufs++;
4126 spin_unlock_irq(&phba->hbalock);
4127 }
4128 return 0;
4129
4130out_free_mem:
4131 kfree(phba->sli4_hba.lpfc_scsi_psb_array);
4132 lpfc_free_sgl_list(phba);
4133 return -ENOMEM;
4134}
4135
4136/**
4137 * lpfc_sli4_init_rpi_hdrs - Post the rpi header memory region to the port
4138 * @phba: pointer to lpfc hba data structure.
4139 *
4140 * This routine is invoked to post rpi header templates to the
4141 * HBA consistent with the SLI-4 interface spec. This routine
4142 * posts a PAGE_SIZE memory region to the port to hold up to
4143 * PAGE_SIZE modulo 64 rpi context headers.
4144 * No locks are held here because this is an initialization routine
4145 * called only from probe or lpfc_online when interrupts are not
4146 * enabled and the driver is reinitializing the device.
4147 *
4148 * Return codes
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02004149 * 0 - successful
James Smartda0436e2009-05-22 14:51:39 -04004150 * ENOMEM - No availble memory
4151 * EIO - The mailbox failed to complete successfully.
4152 **/
4153int
4154lpfc_sli4_init_rpi_hdrs(struct lpfc_hba *phba)
4155{
4156 int rc = 0;
4157 int longs;
4158 uint16_t rpi_count;
4159 struct lpfc_rpi_hdr *rpi_hdr;
4160
4161 INIT_LIST_HEAD(&phba->sli4_hba.lpfc_rpi_hdr_list);
4162
4163 /*
4164 * Provision an rpi bitmask range for discovery. The total count
4165 * is the difference between max and base + 1.
4166 */
4167 rpi_count = phba->sli4_hba.max_cfg_param.rpi_base +
4168 phba->sli4_hba.max_cfg_param.max_rpi - 1;
4169
4170 longs = ((rpi_count) + BITS_PER_LONG - 1) / BITS_PER_LONG;
4171 phba->sli4_hba.rpi_bmask = kzalloc(longs * sizeof(unsigned long),
4172 GFP_KERNEL);
4173 if (!phba->sli4_hba.rpi_bmask)
4174 return -ENOMEM;
4175
4176 rpi_hdr = lpfc_sli4_create_rpi_hdr(phba);
4177 if (!rpi_hdr) {
4178 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
4179 "0391 Error during rpi post operation\n");
4180 lpfc_sli4_remove_rpis(phba);
4181 rc = -ENODEV;
4182 }
4183
4184 return rc;
4185}
4186
4187/**
4188 * lpfc_sli4_create_rpi_hdr - Allocate an rpi header memory region
4189 * @phba: pointer to lpfc hba data structure.
4190 *
4191 * This routine is invoked to allocate a single 4KB memory region to
4192 * support rpis and stores them in the phba. This single region
4193 * provides support for up to 64 rpis. The region is used globally
4194 * by the device.
4195 *
4196 * Returns:
4197 * A valid rpi hdr on success.
4198 * A NULL pointer on any failure.
4199 **/
4200struct lpfc_rpi_hdr *
4201lpfc_sli4_create_rpi_hdr(struct lpfc_hba *phba)
4202{
4203 uint16_t rpi_limit, curr_rpi_range;
4204 struct lpfc_dmabuf *dmabuf;
4205 struct lpfc_rpi_hdr *rpi_hdr;
4206
4207 rpi_limit = phba->sli4_hba.max_cfg_param.rpi_base +
4208 phba->sli4_hba.max_cfg_param.max_rpi - 1;
4209
4210 spin_lock_irq(&phba->hbalock);
4211 curr_rpi_range = phba->sli4_hba.next_rpi;
4212 spin_unlock_irq(&phba->hbalock);
4213
4214 /*
4215 * The port has a limited number of rpis. The increment here
4216 * is LPFC_RPI_HDR_COUNT - 1 to account for the starting value
4217 * and to allow the full max_rpi range per port.
4218 */
4219 if ((curr_rpi_range + (LPFC_RPI_HDR_COUNT - 1)) > rpi_limit)
4220 return NULL;
4221
4222 /*
4223 * First allocate the protocol header region for the port. The
4224 * port expects a 4KB DMA-mapped memory region that is 4K aligned.
4225 */
4226 dmabuf = kzalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
4227 if (!dmabuf)
4228 return NULL;
4229
4230 dmabuf->virt = dma_alloc_coherent(&phba->pcidev->dev,
4231 LPFC_HDR_TEMPLATE_SIZE,
4232 &dmabuf->phys,
4233 GFP_KERNEL);
4234 if (!dmabuf->virt) {
4235 rpi_hdr = NULL;
4236 goto err_free_dmabuf;
4237 }
4238
4239 memset(dmabuf->virt, 0, LPFC_HDR_TEMPLATE_SIZE);
4240 if (!IS_ALIGNED(dmabuf->phys, LPFC_HDR_TEMPLATE_SIZE)) {
4241 rpi_hdr = NULL;
4242 goto err_free_coherent;
4243 }
4244
4245 /* Save the rpi header data for cleanup later. */
4246 rpi_hdr = kzalloc(sizeof(struct lpfc_rpi_hdr), GFP_KERNEL);
4247 if (!rpi_hdr)
4248 goto err_free_coherent;
4249
4250 rpi_hdr->dmabuf = dmabuf;
4251 rpi_hdr->len = LPFC_HDR_TEMPLATE_SIZE;
4252 rpi_hdr->page_count = 1;
4253 spin_lock_irq(&phba->hbalock);
4254 rpi_hdr->start_rpi = phba->sli4_hba.next_rpi;
4255 list_add_tail(&rpi_hdr->list, &phba->sli4_hba.lpfc_rpi_hdr_list);
4256
4257 /*
4258 * The next_rpi stores the next module-64 rpi value to post
4259 * in any subsequent rpi memory region postings.
4260 */
4261 phba->sli4_hba.next_rpi += LPFC_RPI_HDR_COUNT;
4262 spin_unlock_irq(&phba->hbalock);
4263 return rpi_hdr;
4264
4265 err_free_coherent:
4266 dma_free_coherent(&phba->pcidev->dev, LPFC_HDR_TEMPLATE_SIZE,
4267 dmabuf->virt, dmabuf->phys);
4268 err_free_dmabuf:
4269 kfree(dmabuf);
4270 return NULL;
4271}
4272
4273/**
4274 * lpfc_sli4_remove_rpi_hdrs - Remove all rpi header memory regions
4275 * @phba: pointer to lpfc hba data structure.
4276 *
4277 * This routine is invoked to remove all memory resources allocated
4278 * to support rpis. This routine presumes the caller has released all
4279 * rpis consumed by fabric or port logins and is prepared to have
4280 * the header pages removed.
4281 **/
4282void
4283lpfc_sli4_remove_rpi_hdrs(struct lpfc_hba *phba)
4284{
4285 struct lpfc_rpi_hdr *rpi_hdr, *next_rpi_hdr;
4286
4287 list_for_each_entry_safe(rpi_hdr, next_rpi_hdr,
4288 &phba->sli4_hba.lpfc_rpi_hdr_list, list) {
4289 list_del(&rpi_hdr->list);
4290 dma_free_coherent(&phba->pcidev->dev, rpi_hdr->len,
4291 rpi_hdr->dmabuf->virt, rpi_hdr->dmabuf->phys);
4292 kfree(rpi_hdr->dmabuf);
4293 kfree(rpi_hdr);
4294 }
4295
4296 phba->sli4_hba.next_rpi = phba->sli4_hba.max_cfg_param.rpi_base;
4297 memset(phba->sli4_hba.rpi_bmask, 0, sizeof(*phba->sli4_hba.rpi_bmask));
4298}
4299
4300/**
James Smart3772a992009-05-22 14:50:54 -04004301 * lpfc_hba_alloc - Allocate driver hba data structure for a device.
4302 * @pdev: pointer to pci device data structure.
4303 *
4304 * This routine is invoked to allocate the driver hba data structure for an
4305 * HBA device. If the allocation is successful, the phba reference to the
4306 * PCI device data structure is set.
4307 *
4308 * Return codes
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02004309 * pointer to @phba - successful
James Smart3772a992009-05-22 14:50:54 -04004310 * NULL - error
4311 **/
4312static struct lpfc_hba *
4313lpfc_hba_alloc(struct pci_dev *pdev)
4314{
4315 struct lpfc_hba *phba;
4316
4317 /* Allocate memory for HBA structure */
4318 phba = kzalloc(sizeof(struct lpfc_hba), GFP_KERNEL);
4319 if (!phba) {
Jiri Slabye34ccdf2009-07-13 23:25:54 +02004320 dev_err(&pdev->dev, "failed to allocate hba struct\n");
James Smart3772a992009-05-22 14:50:54 -04004321 return NULL;
4322 }
4323
4324 /* Set reference to PCI device in HBA structure */
4325 phba->pcidev = pdev;
4326
4327 /* Assign an unused board number */
4328 phba->brd_no = lpfc_get_instance();
4329 if (phba->brd_no < 0) {
4330 kfree(phba);
4331 return NULL;
4332 }
4333
James Smart4fede782010-01-26 23:08:55 -05004334 spin_lock_init(&phba->ct_ev_lock);
James Smartf1c3b0f2009-07-19 10:01:32 -04004335 INIT_LIST_HEAD(&phba->ct_ev_waiters);
4336
James Smart3772a992009-05-22 14:50:54 -04004337 return phba;
4338}
4339
4340/**
4341 * lpfc_hba_free - Free driver hba data structure with a device.
4342 * @phba: pointer to lpfc hba data structure.
4343 *
4344 * This routine is invoked to free the driver hba data structure with an
4345 * HBA device.
4346 **/
4347static void
4348lpfc_hba_free(struct lpfc_hba *phba)
4349{
4350 /* Release the driver assigned board number */
4351 idr_remove(&lpfc_hba_index, phba->brd_no);
4352
4353 kfree(phba);
4354 return;
4355}
4356
4357/**
4358 * lpfc_create_shost - Create hba physical port with associated scsi host.
4359 * @phba: pointer to lpfc hba data structure.
4360 *
4361 * This routine is invoked to create HBA physical port and associate a SCSI
4362 * host with it.
4363 *
4364 * Return codes
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02004365 * 0 - successful
James Smart3772a992009-05-22 14:50:54 -04004366 * other values - error
4367 **/
4368static int
4369lpfc_create_shost(struct lpfc_hba *phba)
4370{
4371 struct lpfc_vport *vport;
4372 struct Scsi_Host *shost;
4373
4374 /* Initialize HBA FC structure */
dea31012005-04-17 16:05:31 -05004375 phba->fc_edtov = FF_DEF_EDTOV;
4376 phba->fc_ratov = FF_DEF_RATOV;
4377 phba->fc_altov = FF_DEF_ALTOV;
4378 phba->fc_arbtov = FF_DEF_ARBTOV;
4379
James Smart3de2a652007-08-02 11:09:59 -04004380 vport = lpfc_create_port(phba, phba->brd_no, &phba->pcidev->dev);
James Smart2e0fef82007-06-17 19:56:36 -05004381 if (!vport)
James Smart3772a992009-05-22 14:50:54 -04004382 return -ENODEV;
James Smart2e0fef82007-06-17 19:56:36 -05004383
4384 shost = lpfc_shost_from_vport(vport);
James Smart2e0fef82007-06-17 19:56:36 -05004385 phba->pport = vport;
James Smart858c9f62007-06-17 19:56:39 -05004386 lpfc_debugfs_initialize(vport);
James Smart3772a992009-05-22 14:50:54 -04004387 /* Put reference to SCSI host to driver's device private data */
4388 pci_set_drvdata(phba->pcidev, shost);
James Smart2e0fef82007-06-17 19:56:36 -05004389
James Smart3772a992009-05-22 14:50:54 -04004390 return 0;
4391}
dea31012005-04-17 16:05:31 -05004392
James Smart3772a992009-05-22 14:50:54 -04004393/**
4394 * lpfc_destroy_shost - Destroy hba physical port with associated scsi host.
4395 * @phba: pointer to lpfc hba data structure.
4396 *
4397 * This routine is invoked to destroy HBA physical port and the associated
4398 * SCSI host.
4399 **/
4400static void
4401lpfc_destroy_shost(struct lpfc_hba *phba)
4402{
4403 struct lpfc_vport *vport = phba->pport;
James Smart93996272008-08-24 21:50:30 -04004404
James Smart3772a992009-05-22 14:50:54 -04004405 /* Destroy physical port that associated with the SCSI host */
4406 destroy_port(vport);
4407
4408 return;
4409}
4410
4411/**
4412 * lpfc_setup_bg - Setup Block guard structures and debug areas.
4413 * @phba: pointer to lpfc hba data structure.
4414 * @shost: the shost to be used to detect Block guard settings.
4415 *
4416 * This routine sets up the local Block guard protocol settings for @shost.
4417 * This routine also allocates memory for debugging bg buffers.
4418 **/
4419static void
4420lpfc_setup_bg(struct lpfc_hba *phba, struct Scsi_Host *shost)
4421{
4422 int pagecnt = 10;
4423 if (lpfc_prot_mask && lpfc_prot_guard) {
4424 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
4425 "1478 Registering BlockGuard with the "
4426 "SCSI layer\n");
4427 scsi_host_set_prot(shost, lpfc_prot_mask);
4428 scsi_host_set_guard(shost, lpfc_prot_guard);
James Smart98c9ea52007-10-27 13:37:33 -04004429 }
James Smart81301a92008-12-04 22:39:46 -05004430 if (!_dump_buf_data) {
James Smart81301a92008-12-04 22:39:46 -05004431 while (pagecnt) {
4432 spin_lock_init(&_dump_buf_lock);
4433 _dump_buf_data =
4434 (char *) __get_free_pages(GFP_KERNEL, pagecnt);
4435 if (_dump_buf_data) {
James Smart6a9c52c2009-10-02 15:16:51 -04004436 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
4437 "9043 BLKGRD: allocated %d pages for "
James Smart3772a992009-05-22 14:50:54 -04004438 "_dump_buf_data at 0x%p\n",
4439 (1 << pagecnt), _dump_buf_data);
James Smart81301a92008-12-04 22:39:46 -05004440 _dump_buf_data_order = pagecnt;
James Smart3772a992009-05-22 14:50:54 -04004441 memset(_dump_buf_data, 0,
4442 ((1 << PAGE_SHIFT) << pagecnt));
James Smart81301a92008-12-04 22:39:46 -05004443 break;
James Smart3772a992009-05-22 14:50:54 -04004444 } else
James Smart81301a92008-12-04 22:39:46 -05004445 --pagecnt;
James Smart81301a92008-12-04 22:39:46 -05004446 }
James Smart81301a92008-12-04 22:39:46 -05004447 if (!_dump_buf_data_order)
James Smart6a9c52c2009-10-02 15:16:51 -04004448 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
4449 "9044 BLKGRD: ERROR unable to allocate "
James Smart3772a992009-05-22 14:50:54 -04004450 "memory for hexdump\n");
4451 } else
James Smart6a9c52c2009-10-02 15:16:51 -04004452 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
4453 "9045 BLKGRD: already allocated _dump_buf_data=0x%p"
James Smart81301a92008-12-04 22:39:46 -05004454 "\n", _dump_buf_data);
James Smart81301a92008-12-04 22:39:46 -05004455 if (!_dump_buf_dif) {
James Smart81301a92008-12-04 22:39:46 -05004456 while (pagecnt) {
4457 _dump_buf_dif =
4458 (char *) __get_free_pages(GFP_KERNEL, pagecnt);
4459 if (_dump_buf_dif) {
James Smart6a9c52c2009-10-02 15:16:51 -04004460 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
4461 "9046 BLKGRD: allocated %d pages for "
James Smart3772a992009-05-22 14:50:54 -04004462 "_dump_buf_dif at 0x%p\n",
4463 (1 << pagecnt), _dump_buf_dif);
James Smart81301a92008-12-04 22:39:46 -05004464 _dump_buf_dif_order = pagecnt;
James Smart3772a992009-05-22 14:50:54 -04004465 memset(_dump_buf_dif, 0,
4466 ((1 << PAGE_SHIFT) << pagecnt));
James Smart81301a92008-12-04 22:39:46 -05004467 break;
James Smart3772a992009-05-22 14:50:54 -04004468 } else
James Smart81301a92008-12-04 22:39:46 -05004469 --pagecnt;
James Smart81301a92008-12-04 22:39:46 -05004470 }
James Smart81301a92008-12-04 22:39:46 -05004471 if (!_dump_buf_dif_order)
James Smart6a9c52c2009-10-02 15:16:51 -04004472 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
4473 "9047 BLKGRD: ERROR unable to allocate "
James Smart3772a992009-05-22 14:50:54 -04004474 "memory for hexdump\n");
4475 } else
James Smart6a9c52c2009-10-02 15:16:51 -04004476 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
4477 "9048 BLKGRD: already allocated _dump_buf_dif=0x%p\n",
James Smart3772a992009-05-22 14:50:54 -04004478 _dump_buf_dif);
4479}
4480
4481/**
4482 * lpfc_post_init_setup - Perform necessary device post initialization setup.
4483 * @phba: pointer to lpfc hba data structure.
4484 *
4485 * This routine is invoked to perform all the necessary post initialization
4486 * setup for the device.
4487 **/
4488static void
4489lpfc_post_init_setup(struct lpfc_hba *phba)
4490{
4491 struct Scsi_Host *shost;
4492 struct lpfc_adapter_event_header adapter_event;
4493
4494 /* Get the default values for Model Name and Description */
4495 lpfc_get_hba_model_desc(phba, phba->ModelName, phba->ModelDesc);
4496
4497 /*
4498 * hba setup may have changed the hba_queue_depth so we need to
4499 * adjust the value of can_queue.
4500 */
4501 shost = pci_get_drvdata(phba->pcidev);
4502 shost->can_queue = phba->cfg_hba_queue_depth - 10;
4503 if (phba->sli3_options & LPFC_SLI3_BG_ENABLED)
4504 lpfc_setup_bg(phba, shost);
James Smart858c9f62007-06-17 19:56:39 -05004505
4506 lpfc_host_attrib_init(shost);
4507
James Smart2e0fef82007-06-17 19:56:36 -05004508 if (phba->cfg_poll & DISABLE_FCP_RING_INT) {
4509 spin_lock_irq(shost->host_lock);
4510 lpfc_poll_start_timer(phba);
4511 spin_unlock_irq(shost->host_lock);
4512 }
James Smart8f6d98d2006-08-01 07:34:00 -04004513
James Smart93996272008-08-24 21:50:30 -04004514 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
4515 "0428 Perform SCSI scan\n");
James Smartea2151b2008-09-07 11:52:10 -04004516 /* Send board arrival event to upper layer */
4517 adapter_event.event_type = FC_REG_ADAPTER_EVENT;
4518 adapter_event.subcategory = LPFC_EVENT_ARRIVAL;
4519 fc_host_post_vendor_event(shost, fc_get_event_number(),
James Smart3772a992009-05-22 14:50:54 -04004520 sizeof(adapter_event),
4521 (char *) &adapter_event,
4522 LPFC_NL_VENDOR_ID);
4523 return;
4524}
4525
4526/**
4527 * lpfc_sli_pci_mem_setup - Setup SLI3 HBA PCI memory space.
4528 * @phba: pointer to lpfc hba data structure.
4529 *
4530 * This routine is invoked to set up the PCI device memory space for device
4531 * with SLI-3 interface spec.
4532 *
4533 * Return codes
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02004534 * 0 - successful
James Smart3772a992009-05-22 14:50:54 -04004535 * other values - error
4536 **/
4537static int
4538lpfc_sli_pci_mem_setup(struct lpfc_hba *phba)
4539{
4540 struct pci_dev *pdev;
4541 unsigned long bar0map_len, bar2map_len;
4542 int i, hbq_count;
4543 void *ptr;
4544 int error = -ENODEV;
4545
4546 /* Obtain PCI device reference */
4547 if (!phba->pcidev)
4548 return error;
4549 else
4550 pdev = phba->pcidev;
4551
4552 /* Set the device DMA mask size */
Michael Reed8e685972009-09-18 12:02:05 -05004553 if (pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) != 0
4554 || pci_set_consistent_dma_mask(pdev,DMA_BIT_MASK(64)) != 0) {
4555 if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32)) != 0
4556 || pci_set_consistent_dma_mask(pdev,DMA_BIT_MASK(32)) != 0) {
James Smart3772a992009-05-22 14:50:54 -04004557 return error;
Michael Reed8e685972009-09-18 12:02:05 -05004558 }
4559 }
James Smart3772a992009-05-22 14:50:54 -04004560
4561 /* Get the bus address of Bar0 and Bar2 and the number of bytes
4562 * required by each mapping.
4563 */
4564 phba->pci_bar0_map = pci_resource_start(pdev, 0);
4565 bar0map_len = pci_resource_len(pdev, 0);
4566
4567 phba->pci_bar2_map = pci_resource_start(pdev, 2);
4568 bar2map_len = pci_resource_len(pdev, 2);
4569
4570 /* Map HBA SLIM to a kernel virtual address. */
4571 phba->slim_memmap_p = ioremap(phba->pci_bar0_map, bar0map_len);
4572 if (!phba->slim_memmap_p) {
4573 dev_printk(KERN_ERR, &pdev->dev,
4574 "ioremap failed for SLIM memory.\n");
4575 goto out;
4576 }
4577
4578 /* Map HBA Control Registers to a kernel virtual address. */
4579 phba->ctrl_regs_memmap_p = ioremap(phba->pci_bar2_map, bar2map_len);
4580 if (!phba->ctrl_regs_memmap_p) {
4581 dev_printk(KERN_ERR, &pdev->dev,
4582 "ioremap failed for HBA control registers.\n");
4583 goto out_iounmap_slim;
4584 }
4585
4586 /* Allocate memory for SLI-2 structures */
4587 phba->slim2p.virt = dma_alloc_coherent(&pdev->dev,
4588 SLI2_SLIM_SIZE,
4589 &phba->slim2p.phys,
4590 GFP_KERNEL);
4591 if (!phba->slim2p.virt)
4592 goto out_iounmap;
4593
4594 memset(phba->slim2p.virt, 0, SLI2_SLIM_SIZE);
4595 phba->mbox = phba->slim2p.virt + offsetof(struct lpfc_sli2_slim, mbx);
4596 phba->pcb = (phba->slim2p.virt + offsetof(struct lpfc_sli2_slim, pcb));
4597 phba->IOCBs = (phba->slim2p.virt +
4598 offsetof(struct lpfc_sli2_slim, IOCBs));
4599
4600 phba->hbqslimp.virt = dma_alloc_coherent(&pdev->dev,
4601 lpfc_sli_hbq_size(),
4602 &phba->hbqslimp.phys,
4603 GFP_KERNEL);
4604 if (!phba->hbqslimp.virt)
4605 goto out_free_slim;
4606
4607 hbq_count = lpfc_sli_hbq_count();
4608 ptr = phba->hbqslimp.virt;
4609 for (i = 0; i < hbq_count; ++i) {
4610 phba->hbqs[i].hbq_virt = ptr;
4611 INIT_LIST_HEAD(&phba->hbqs[i].hbq_buffer_list);
4612 ptr += (lpfc_hbq_defs[i]->entry_count *
4613 sizeof(struct lpfc_hbq_entry));
4614 }
4615 phba->hbqs[LPFC_ELS_HBQ].hbq_alloc_buffer = lpfc_els_hbq_alloc;
4616 phba->hbqs[LPFC_ELS_HBQ].hbq_free_buffer = lpfc_els_hbq_free;
4617
4618 memset(phba->hbqslimp.virt, 0, lpfc_sli_hbq_size());
4619
4620 INIT_LIST_HEAD(&phba->rb_pend_list);
4621
4622 phba->MBslimaddr = phba->slim_memmap_p;
4623 phba->HAregaddr = phba->ctrl_regs_memmap_p + HA_REG_OFFSET;
4624 phba->CAregaddr = phba->ctrl_regs_memmap_p + CA_REG_OFFSET;
4625 phba->HSregaddr = phba->ctrl_regs_memmap_p + HS_REG_OFFSET;
4626 phba->HCregaddr = phba->ctrl_regs_memmap_p + HC_REG_OFFSET;
James Smartea2151b2008-09-07 11:52:10 -04004627
dea31012005-04-17 16:05:31 -05004628 return 0;
4629
dea31012005-04-17 16:05:31 -05004630out_free_slim:
James Smart34b02dc2008-08-24 21:49:55 -04004631 dma_free_coherent(&pdev->dev, SLI2_SLIM_SIZE,
4632 phba->slim2p.virt, phba->slim2p.phys);
dea31012005-04-17 16:05:31 -05004633out_iounmap:
4634 iounmap(phba->ctrl_regs_memmap_p);
Jamie Wellnitz901a9202006-02-28 19:25:19 -05004635out_iounmap_slim:
dea31012005-04-17 16:05:31 -05004636 iounmap(phba->slim_memmap_p);
dea31012005-04-17 16:05:31 -05004637out:
4638 return error;
4639}
4640
James Smarte59058c2008-08-24 21:49:00 -04004641/**
James Smart3772a992009-05-22 14:50:54 -04004642 * lpfc_sli_pci_mem_unset - Unset SLI3 HBA PCI memory space.
4643 * @phba: pointer to lpfc hba data structure.
4644 *
4645 * This routine is invoked to unset the PCI device memory space for device
4646 * with SLI-3 interface spec.
4647 **/
4648static void
4649lpfc_sli_pci_mem_unset(struct lpfc_hba *phba)
4650{
4651 struct pci_dev *pdev;
4652
4653 /* Obtain PCI device reference */
4654 if (!phba->pcidev)
4655 return;
4656 else
4657 pdev = phba->pcidev;
4658
4659 /* Free coherent DMA memory allocated */
4660 dma_free_coherent(&pdev->dev, lpfc_sli_hbq_size(),
4661 phba->hbqslimp.virt, phba->hbqslimp.phys);
4662 dma_free_coherent(&pdev->dev, SLI2_SLIM_SIZE,
4663 phba->slim2p.virt, phba->slim2p.phys);
4664
4665 /* I/O memory unmap */
4666 iounmap(phba->ctrl_regs_memmap_p);
4667 iounmap(phba->slim_memmap_p);
4668
4669 return;
4670}
4671
4672/**
James Smartda0436e2009-05-22 14:51:39 -04004673 * lpfc_sli4_post_status_check - Wait for SLI4 POST done and check status
4674 * @phba: pointer to lpfc hba data structure.
4675 *
4676 * This routine is invoked to wait for SLI4 device Power On Self Test (POST)
4677 * done and check status.
4678 *
4679 * Return 0 if successful, otherwise -ENODEV.
4680 **/
4681int
4682lpfc_sli4_post_status_check(struct lpfc_hba *phba)
4683{
4684 struct lpfc_register sta_reg, uerrlo_reg, uerrhi_reg, scratchpad;
James Smartda0436e2009-05-22 14:51:39 -04004685 int i, port_error = -ENODEV;
4686
4687 if (!phba->sli4_hba.STAregaddr)
4688 return -ENODEV;
4689
James Smartda0436e2009-05-22 14:51:39 -04004690 /* Wait up to 30 seconds for the SLI Port POST done and ready */
4691 for (i = 0; i < 3000; i++) {
4692 sta_reg.word0 = readl(phba->sli4_hba.STAregaddr);
4693 /* Encounter fatal POST error, break out */
4694 if (bf_get(lpfc_hst_state_perr, &sta_reg)) {
4695 port_error = -ENODEV;
4696 break;
4697 }
4698 if (LPFC_POST_STAGE_ARMFW_READY ==
4699 bf_get(lpfc_hst_state_port_status, &sta_reg)) {
4700 port_error = 0;
4701 break;
4702 }
4703 msleep(10);
4704 }
4705
4706 if (port_error)
4707 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
4708 "1408 Failure HBA POST Status: sta_reg=0x%x, "
4709 "perr=x%x, sfi=x%x, nip=x%x, ipc=x%x, xrom=x%x, "
4710 "dl=x%x, pstatus=x%x\n", sta_reg.word0,
4711 bf_get(lpfc_hst_state_perr, &sta_reg),
4712 bf_get(lpfc_hst_state_sfi, &sta_reg),
4713 bf_get(lpfc_hst_state_nip, &sta_reg),
4714 bf_get(lpfc_hst_state_ipc, &sta_reg),
4715 bf_get(lpfc_hst_state_xrom, &sta_reg),
4716 bf_get(lpfc_hst_state_dl, &sta_reg),
4717 bf_get(lpfc_hst_state_port_status, &sta_reg));
4718
4719 /* Log device information */
4720 scratchpad.word0 = readl(phba->sli4_hba.SCRATCHPADregaddr);
4721 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
4722 "2534 Device Info: ChipType=0x%x, SliRev=0x%x, "
4723 "FeatureL1=0x%x, FeatureL2=0x%x\n",
4724 bf_get(lpfc_scratchpad_chiptype, &scratchpad),
4725 bf_get(lpfc_scratchpad_slirev, &scratchpad),
4726 bf_get(lpfc_scratchpad_featurelevel1, &scratchpad),
4727 bf_get(lpfc_scratchpad_featurelevel2, &scratchpad));
James Smarta747c9c2009-11-18 15:41:10 -05004728 phba->sli4_hba.ue_mask_lo = readl(phba->sli4_hba.UEMASKLOregaddr);
4729 phba->sli4_hba.ue_mask_hi = readl(phba->sli4_hba.UEMASKHIregaddr);
James Smart8fa38512009-07-19 10:01:03 -04004730 /* With uncoverable error, log the error message and return error */
James Smarta747c9c2009-11-18 15:41:10 -05004731 uerrlo_reg.word0 = readl(phba->sli4_hba.UERRLOregaddr);
4732 uerrhi_reg.word0 = readl(phba->sli4_hba.UERRHIregaddr);
4733 if ((~phba->sli4_hba.ue_mask_lo & uerrlo_reg.word0) ||
4734 (~phba->sli4_hba.ue_mask_hi & uerrhi_reg.word0)) {
4735 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
4736 "1422 HBA Unrecoverable error: "
4737 "uerr_lo_reg=0x%x, uerr_hi_reg=0x%x, "
4738 "ue_mask_lo_reg=0x%x, ue_mask_hi_reg=0x%x\n",
4739 uerrlo_reg.word0, uerrhi_reg.word0,
4740 phba->sli4_hba.ue_mask_lo,
4741 phba->sli4_hba.ue_mask_hi);
James Smart8fa38512009-07-19 10:01:03 -04004742 return -ENODEV;
4743 }
4744
James Smartda0436e2009-05-22 14:51:39 -04004745 return port_error;
4746}
4747
4748/**
4749 * lpfc_sli4_bar0_register_memmap - Set up SLI4 BAR0 register memory map.
4750 * @phba: pointer to lpfc hba data structure.
4751 *
4752 * This routine is invoked to set up SLI4 BAR0 PCI config space register
4753 * memory map.
4754 **/
4755static void
4756lpfc_sli4_bar0_register_memmap(struct lpfc_hba *phba)
4757{
4758 phba->sli4_hba.UERRLOregaddr = phba->sli4_hba.conf_regs_memmap_p +
4759 LPFC_UERR_STATUS_LO;
4760 phba->sli4_hba.UERRHIregaddr = phba->sli4_hba.conf_regs_memmap_p +
4761 LPFC_UERR_STATUS_HI;
James Smarta747c9c2009-11-18 15:41:10 -05004762 phba->sli4_hba.UEMASKLOregaddr = phba->sli4_hba.conf_regs_memmap_p +
4763 LPFC_UE_MASK_LO;
4764 phba->sli4_hba.UEMASKHIregaddr = phba->sli4_hba.conf_regs_memmap_p +
4765 LPFC_UE_MASK_HI;
James Smartda0436e2009-05-22 14:51:39 -04004766 phba->sli4_hba.SCRATCHPADregaddr = phba->sli4_hba.conf_regs_memmap_p +
4767 LPFC_SCRATCHPAD;
4768}
4769
4770/**
4771 * lpfc_sli4_bar1_register_memmap - Set up SLI4 BAR1 register memory map.
4772 * @phba: pointer to lpfc hba data structure.
4773 *
4774 * This routine is invoked to set up SLI4 BAR1 control status register (CSR)
4775 * memory map.
4776 **/
4777static void
4778lpfc_sli4_bar1_register_memmap(struct lpfc_hba *phba)
4779{
4780
4781 phba->sli4_hba.STAregaddr = phba->sli4_hba.ctrl_regs_memmap_p +
4782 LPFC_HST_STATE;
4783 phba->sli4_hba.ISRregaddr = phba->sli4_hba.ctrl_regs_memmap_p +
4784 LPFC_HST_ISR0;
4785 phba->sli4_hba.IMRregaddr = phba->sli4_hba.ctrl_regs_memmap_p +
4786 LPFC_HST_IMR0;
4787 phba->sli4_hba.ISCRregaddr = phba->sli4_hba.ctrl_regs_memmap_p +
4788 LPFC_HST_ISCR0;
4789 return;
4790}
4791
4792/**
4793 * lpfc_sli4_bar2_register_memmap - Set up SLI4 BAR2 register memory map.
4794 * @phba: pointer to lpfc hba data structure.
4795 * @vf: virtual function number
4796 *
4797 * This routine is invoked to set up SLI4 BAR2 doorbell register memory map
4798 * based on the given viftual function number, @vf.
4799 *
4800 * Return 0 if successful, otherwise -ENODEV.
4801 **/
4802static int
4803lpfc_sli4_bar2_register_memmap(struct lpfc_hba *phba, uint32_t vf)
4804{
4805 if (vf > LPFC_VIR_FUNC_MAX)
4806 return -ENODEV;
4807
4808 phba->sli4_hba.RQDBregaddr = (phba->sli4_hba.drbl_regs_memmap_p +
4809 vf * LPFC_VFR_PAGE_SIZE + LPFC_RQ_DOORBELL);
4810 phba->sli4_hba.WQDBregaddr = (phba->sli4_hba.drbl_regs_memmap_p +
4811 vf * LPFC_VFR_PAGE_SIZE + LPFC_WQ_DOORBELL);
4812 phba->sli4_hba.EQCQDBregaddr = (phba->sli4_hba.drbl_regs_memmap_p +
4813 vf * LPFC_VFR_PAGE_SIZE + LPFC_EQCQ_DOORBELL);
4814 phba->sli4_hba.MQDBregaddr = (phba->sli4_hba.drbl_regs_memmap_p +
4815 vf * LPFC_VFR_PAGE_SIZE + LPFC_MQ_DOORBELL);
4816 phba->sli4_hba.BMBXregaddr = (phba->sli4_hba.drbl_regs_memmap_p +
4817 vf * LPFC_VFR_PAGE_SIZE + LPFC_BMBX);
4818 return 0;
4819}
4820
4821/**
4822 * lpfc_create_bootstrap_mbox - Create the bootstrap mailbox
4823 * @phba: pointer to lpfc hba data structure.
4824 *
4825 * This routine is invoked to create the bootstrap mailbox
4826 * region consistent with the SLI-4 interface spec. This
4827 * routine allocates all memory necessary to communicate
4828 * mailbox commands to the port and sets up all alignment
4829 * needs. No locks are expected to be held when calling
4830 * this routine.
4831 *
4832 * Return codes
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02004833 * 0 - successful
James Smartda0436e2009-05-22 14:51:39 -04004834 * ENOMEM - could not allocated memory.
4835 **/
4836static int
4837lpfc_create_bootstrap_mbox(struct lpfc_hba *phba)
4838{
4839 uint32_t bmbx_size;
4840 struct lpfc_dmabuf *dmabuf;
4841 struct dma_address *dma_address;
4842 uint32_t pa_addr;
4843 uint64_t phys_addr;
4844
4845 dmabuf = kzalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
4846 if (!dmabuf)
4847 return -ENOMEM;
4848
4849 /*
4850 * The bootstrap mailbox region is comprised of 2 parts
4851 * plus an alignment restriction of 16 bytes.
4852 */
4853 bmbx_size = sizeof(struct lpfc_bmbx_create) + (LPFC_ALIGN_16_BYTE - 1);
4854 dmabuf->virt = dma_alloc_coherent(&phba->pcidev->dev,
4855 bmbx_size,
4856 &dmabuf->phys,
4857 GFP_KERNEL);
4858 if (!dmabuf->virt) {
4859 kfree(dmabuf);
4860 return -ENOMEM;
4861 }
4862 memset(dmabuf->virt, 0, bmbx_size);
4863
4864 /*
4865 * Initialize the bootstrap mailbox pointers now so that the register
4866 * operations are simple later. The mailbox dma address is required
4867 * to be 16-byte aligned. Also align the virtual memory as each
4868 * maibox is copied into the bmbx mailbox region before issuing the
4869 * command to the port.
4870 */
4871 phba->sli4_hba.bmbx.dmabuf = dmabuf;
4872 phba->sli4_hba.bmbx.bmbx_size = bmbx_size;
4873
4874 phba->sli4_hba.bmbx.avirt = PTR_ALIGN(dmabuf->virt,
4875 LPFC_ALIGN_16_BYTE);
4876 phba->sli4_hba.bmbx.aphys = ALIGN(dmabuf->phys,
4877 LPFC_ALIGN_16_BYTE);
4878
4879 /*
4880 * Set the high and low physical addresses now. The SLI4 alignment
4881 * requirement is 16 bytes and the mailbox is posted to the port
4882 * as two 30-bit addresses. The other data is a bit marking whether
4883 * the 30-bit address is the high or low address.
4884 * Upcast bmbx aphys to 64bits so shift instruction compiles
4885 * clean on 32 bit machines.
4886 */
4887 dma_address = &phba->sli4_hba.bmbx.dma_address;
4888 phys_addr = (uint64_t)phba->sli4_hba.bmbx.aphys;
4889 pa_addr = (uint32_t) ((phys_addr >> 34) & 0x3fffffff);
4890 dma_address->addr_hi = (uint32_t) ((pa_addr << 2) |
4891 LPFC_BMBX_BIT1_ADDR_HI);
4892
4893 pa_addr = (uint32_t) ((phba->sli4_hba.bmbx.aphys >> 4) & 0x3fffffff);
4894 dma_address->addr_lo = (uint32_t) ((pa_addr << 2) |
4895 LPFC_BMBX_BIT1_ADDR_LO);
4896 return 0;
4897}
4898
4899/**
4900 * lpfc_destroy_bootstrap_mbox - Destroy all bootstrap mailbox resources
4901 * @phba: pointer to lpfc hba data structure.
4902 *
4903 * This routine is invoked to teardown the bootstrap mailbox
4904 * region and release all host resources. This routine requires
4905 * the caller to ensure all mailbox commands recovered, no
4906 * additional mailbox comands are sent, and interrupts are disabled
4907 * before calling this routine.
4908 *
4909 **/
4910static void
4911lpfc_destroy_bootstrap_mbox(struct lpfc_hba *phba)
4912{
4913 dma_free_coherent(&phba->pcidev->dev,
4914 phba->sli4_hba.bmbx.bmbx_size,
4915 phba->sli4_hba.bmbx.dmabuf->virt,
4916 phba->sli4_hba.bmbx.dmabuf->phys);
4917
4918 kfree(phba->sli4_hba.bmbx.dmabuf);
4919 memset(&phba->sli4_hba.bmbx, 0, sizeof(struct lpfc_bmbx));
4920}
4921
4922/**
4923 * lpfc_sli4_read_config - Get the config parameters.
4924 * @phba: pointer to lpfc hba data structure.
4925 *
4926 * This routine is invoked to read the configuration parameters from the HBA.
4927 * The configuration parameters are used to set the base and maximum values
4928 * for RPI's XRI's VPI's VFI's and FCFIs. These values also affect the resource
4929 * allocation for the port.
4930 *
4931 * Return codes
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02004932 * 0 - successful
James Smartda0436e2009-05-22 14:51:39 -04004933 * ENOMEM - No availble memory
4934 * EIO - The mailbox failed to complete successfully.
4935 **/
4936static int
4937lpfc_sli4_read_config(struct lpfc_hba *phba)
4938{
4939 LPFC_MBOXQ_t *pmb;
4940 struct lpfc_mbx_read_config *rd_config;
4941 uint32_t rc = 0;
4942
4943 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4944 if (!pmb) {
4945 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
4946 "2011 Unable to allocate memory for issuing "
4947 "SLI_CONFIG_SPECIAL mailbox command\n");
4948 return -ENOMEM;
4949 }
4950
4951 lpfc_read_config(phba, pmb);
4952
4953 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
4954 if (rc != MBX_SUCCESS) {
4955 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
4956 "2012 Mailbox failed , mbxCmd x%x "
4957 "READ_CONFIG, mbxStatus x%x\n",
4958 bf_get(lpfc_mqe_command, &pmb->u.mqe),
4959 bf_get(lpfc_mqe_status, &pmb->u.mqe));
4960 rc = -EIO;
4961 } else {
4962 rd_config = &pmb->u.mqe.un.rd_config;
4963 phba->sli4_hba.max_cfg_param.max_xri =
4964 bf_get(lpfc_mbx_rd_conf_xri_count, rd_config);
4965 phba->sli4_hba.max_cfg_param.xri_base =
4966 bf_get(lpfc_mbx_rd_conf_xri_base, rd_config);
4967 phba->sli4_hba.max_cfg_param.max_vpi =
4968 bf_get(lpfc_mbx_rd_conf_vpi_count, rd_config);
4969 phba->sli4_hba.max_cfg_param.vpi_base =
4970 bf_get(lpfc_mbx_rd_conf_vpi_base, rd_config);
4971 phba->sli4_hba.max_cfg_param.max_rpi =
4972 bf_get(lpfc_mbx_rd_conf_rpi_count, rd_config);
4973 phba->sli4_hba.max_cfg_param.rpi_base =
4974 bf_get(lpfc_mbx_rd_conf_rpi_base, rd_config);
4975 phba->sli4_hba.max_cfg_param.max_vfi =
4976 bf_get(lpfc_mbx_rd_conf_vfi_count, rd_config);
4977 phba->sli4_hba.max_cfg_param.vfi_base =
4978 bf_get(lpfc_mbx_rd_conf_vfi_base, rd_config);
4979 phba->sli4_hba.max_cfg_param.max_fcfi =
4980 bf_get(lpfc_mbx_rd_conf_fcfi_count, rd_config);
4981 phba->sli4_hba.max_cfg_param.fcfi_base =
4982 bf_get(lpfc_mbx_rd_conf_fcfi_base, rd_config);
4983 phba->sli4_hba.max_cfg_param.max_eq =
4984 bf_get(lpfc_mbx_rd_conf_eq_count, rd_config);
4985 phba->sli4_hba.max_cfg_param.max_rq =
4986 bf_get(lpfc_mbx_rd_conf_rq_count, rd_config);
4987 phba->sli4_hba.max_cfg_param.max_wq =
4988 bf_get(lpfc_mbx_rd_conf_wq_count, rd_config);
4989 phba->sli4_hba.max_cfg_param.max_cq =
4990 bf_get(lpfc_mbx_rd_conf_cq_count, rd_config);
4991 phba->lmt = bf_get(lpfc_mbx_rd_conf_lmt, rd_config);
4992 phba->sli4_hba.next_xri = phba->sli4_hba.max_cfg_param.xri_base;
4993 phba->vpi_base = phba->sli4_hba.max_cfg_param.vpi_base;
4994 phba->vfi_base = phba->sli4_hba.max_cfg_param.vfi_base;
4995 phba->sli4_hba.next_rpi = phba->sli4_hba.max_cfg_param.rpi_base;
James Smart5ffc2662009-11-18 15:39:44 -05004996 phba->max_vpi = (phba->sli4_hba.max_cfg_param.max_vpi > 0) ?
4997 (phba->sli4_hba.max_cfg_param.max_vpi - 1) : 0;
James Smartda0436e2009-05-22 14:51:39 -04004998 phba->max_vports = phba->max_vpi;
4999 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
5000 "2003 cfg params XRI(B:%d M:%d), "
5001 "VPI(B:%d M:%d) "
5002 "VFI(B:%d M:%d) "
5003 "RPI(B:%d M:%d) "
5004 "FCFI(B:%d M:%d)\n",
5005 phba->sli4_hba.max_cfg_param.xri_base,
5006 phba->sli4_hba.max_cfg_param.max_xri,
5007 phba->sli4_hba.max_cfg_param.vpi_base,
5008 phba->sli4_hba.max_cfg_param.max_vpi,
5009 phba->sli4_hba.max_cfg_param.vfi_base,
5010 phba->sli4_hba.max_cfg_param.max_vfi,
5011 phba->sli4_hba.max_cfg_param.rpi_base,
5012 phba->sli4_hba.max_cfg_param.max_rpi,
5013 phba->sli4_hba.max_cfg_param.fcfi_base,
5014 phba->sli4_hba.max_cfg_param.max_fcfi);
5015 }
5016 mempool_free(pmb, phba->mbox_mem_pool);
5017
5018 /* Reset the DFT_HBA_Q_DEPTH to the max xri */
5019 if (phba->cfg_hba_queue_depth > (phba->sli4_hba.max_cfg_param.max_xri))
5020 phba->cfg_hba_queue_depth =
5021 phba->sli4_hba.max_cfg_param.max_xri;
5022 return rc;
5023}
5024
5025/**
5026 * lpfc_dev_endian_order_setup - Notify the port of the host's endian order.
5027 * @phba: pointer to lpfc hba data structure.
5028 *
5029 * This routine is invoked to setup the host-side endian order to the
5030 * HBA consistent with the SLI-4 interface spec.
5031 *
5032 * Return codes
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02005033 * 0 - successful
James Smartda0436e2009-05-22 14:51:39 -04005034 * ENOMEM - No availble memory
5035 * EIO - The mailbox failed to complete successfully.
5036 **/
5037static int
5038lpfc_setup_endian_order(struct lpfc_hba *phba)
5039{
5040 LPFC_MBOXQ_t *mboxq;
5041 uint32_t rc = 0;
5042 uint32_t endian_mb_data[2] = {HOST_ENDIAN_LOW_WORD0,
5043 HOST_ENDIAN_HIGH_WORD1};
5044
5045 mboxq = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5046 if (!mboxq) {
5047 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5048 "0492 Unable to allocate memory for issuing "
5049 "SLI_CONFIG_SPECIAL mailbox command\n");
5050 return -ENOMEM;
5051 }
5052
5053 /*
5054 * The SLI4_CONFIG_SPECIAL mailbox command requires the first two
5055 * words to contain special data values and no other data.
5056 */
5057 memset(mboxq, 0, sizeof(LPFC_MBOXQ_t));
5058 memcpy(&mboxq->u.mqe, &endian_mb_data, sizeof(endian_mb_data));
5059 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
5060 if (rc != MBX_SUCCESS) {
5061 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5062 "0493 SLI_CONFIG_SPECIAL mailbox failed with "
5063 "status x%x\n",
5064 rc);
5065 rc = -EIO;
5066 }
5067
5068 mempool_free(mboxq, phba->mbox_mem_pool);
5069 return rc;
5070}
5071
5072/**
5073 * lpfc_sli4_queue_create - Create all the SLI4 queues
5074 * @phba: pointer to lpfc hba data structure.
5075 *
5076 * This routine is invoked to allocate all the SLI4 queues for the FCoE HBA
5077 * operation. For each SLI4 queue type, the parameters such as queue entry
5078 * count (queue depth) shall be taken from the module parameter. For now,
5079 * we just use some constant number as place holder.
5080 *
5081 * Return codes
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02005082 * 0 - successful
James Smartda0436e2009-05-22 14:51:39 -04005083 * ENOMEM - No availble memory
5084 * EIO - The mailbox failed to complete successfully.
5085 **/
5086static int
5087lpfc_sli4_queue_create(struct lpfc_hba *phba)
5088{
5089 struct lpfc_queue *qdesc;
5090 int fcp_eqidx, fcp_cqidx, fcp_wqidx;
5091 int cfg_fcp_wq_count;
5092 int cfg_fcp_eq_count;
5093
5094 /*
5095 * Sanity check for confiugred queue parameters against the run-time
5096 * device parameters
5097 */
5098
5099 /* Sanity check on FCP fast-path WQ parameters */
5100 cfg_fcp_wq_count = phba->cfg_fcp_wq_count;
5101 if (cfg_fcp_wq_count >
5102 (phba->sli4_hba.max_cfg_param.max_wq - LPFC_SP_WQN_DEF)) {
5103 cfg_fcp_wq_count = phba->sli4_hba.max_cfg_param.max_wq -
5104 LPFC_SP_WQN_DEF;
5105 if (cfg_fcp_wq_count < LPFC_FP_WQN_MIN) {
5106 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5107 "2581 Not enough WQs (%d) from "
5108 "the pci function for supporting "
5109 "FCP WQs (%d)\n",
5110 phba->sli4_hba.max_cfg_param.max_wq,
5111 phba->cfg_fcp_wq_count);
5112 goto out_error;
5113 }
5114 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
5115 "2582 Not enough WQs (%d) from the pci "
5116 "function for supporting the requested "
5117 "FCP WQs (%d), the actual FCP WQs can "
5118 "be supported: %d\n",
5119 phba->sli4_hba.max_cfg_param.max_wq,
5120 phba->cfg_fcp_wq_count, cfg_fcp_wq_count);
5121 }
5122 /* The actual number of FCP work queues adopted */
5123 phba->cfg_fcp_wq_count = cfg_fcp_wq_count;
5124
5125 /* Sanity check on FCP fast-path EQ parameters */
5126 cfg_fcp_eq_count = phba->cfg_fcp_eq_count;
5127 if (cfg_fcp_eq_count >
5128 (phba->sli4_hba.max_cfg_param.max_eq - LPFC_SP_EQN_DEF)) {
5129 cfg_fcp_eq_count = phba->sli4_hba.max_cfg_param.max_eq -
5130 LPFC_SP_EQN_DEF;
5131 if (cfg_fcp_eq_count < LPFC_FP_EQN_MIN) {
5132 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5133 "2574 Not enough EQs (%d) from the "
5134 "pci function for supporting FCP "
5135 "EQs (%d)\n",
5136 phba->sli4_hba.max_cfg_param.max_eq,
5137 phba->cfg_fcp_eq_count);
5138 goto out_error;
5139 }
5140 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
5141 "2575 Not enough EQs (%d) from the pci "
5142 "function for supporting the requested "
5143 "FCP EQs (%d), the actual FCP EQs can "
5144 "be supported: %d\n",
5145 phba->sli4_hba.max_cfg_param.max_eq,
5146 phba->cfg_fcp_eq_count, cfg_fcp_eq_count);
5147 }
5148 /* It does not make sense to have more EQs than WQs */
5149 if (cfg_fcp_eq_count > phba->cfg_fcp_wq_count) {
5150 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
James Smart6a9c52c2009-10-02 15:16:51 -04005151 "2593 The FCP EQ count(%d) cannot be greater "
5152 "than the FCP WQ count(%d), limiting the "
5153 "FCP EQ count to %d\n", cfg_fcp_eq_count,
James Smartda0436e2009-05-22 14:51:39 -04005154 phba->cfg_fcp_wq_count,
5155 phba->cfg_fcp_wq_count);
5156 cfg_fcp_eq_count = phba->cfg_fcp_wq_count;
5157 }
5158 /* The actual number of FCP event queues adopted */
5159 phba->cfg_fcp_eq_count = cfg_fcp_eq_count;
5160 /* The overall number of event queues used */
5161 phba->sli4_hba.cfg_eqn = phba->cfg_fcp_eq_count + LPFC_SP_EQN_DEF;
5162
5163 /*
5164 * Create Event Queues (EQs)
5165 */
5166
5167 /* Get EQ depth from module parameter, fake the default for now */
5168 phba->sli4_hba.eq_esize = LPFC_EQE_SIZE_4B;
5169 phba->sli4_hba.eq_ecount = LPFC_EQE_DEF_COUNT;
5170
5171 /* Create slow path event queue */
5172 qdesc = lpfc_sli4_queue_alloc(phba, phba->sli4_hba.eq_esize,
5173 phba->sli4_hba.eq_ecount);
5174 if (!qdesc) {
5175 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5176 "0496 Failed allocate slow-path EQ\n");
5177 goto out_error;
5178 }
5179 phba->sli4_hba.sp_eq = qdesc;
5180
5181 /* Create fast-path FCP Event Queue(s) */
5182 phba->sli4_hba.fp_eq = kzalloc((sizeof(struct lpfc_queue *) *
5183 phba->cfg_fcp_eq_count), GFP_KERNEL);
5184 if (!phba->sli4_hba.fp_eq) {
5185 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5186 "2576 Failed allocate memory for fast-path "
5187 "EQ record array\n");
5188 goto out_free_sp_eq;
5189 }
5190 for (fcp_eqidx = 0; fcp_eqidx < phba->cfg_fcp_eq_count; fcp_eqidx++) {
5191 qdesc = lpfc_sli4_queue_alloc(phba, phba->sli4_hba.eq_esize,
5192 phba->sli4_hba.eq_ecount);
5193 if (!qdesc) {
5194 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5195 "0497 Failed allocate fast-path EQ\n");
5196 goto out_free_fp_eq;
5197 }
5198 phba->sli4_hba.fp_eq[fcp_eqidx] = qdesc;
5199 }
5200
5201 /*
5202 * Create Complete Queues (CQs)
5203 */
5204
5205 /* Get CQ depth from module parameter, fake the default for now */
5206 phba->sli4_hba.cq_esize = LPFC_CQE_SIZE;
5207 phba->sli4_hba.cq_ecount = LPFC_CQE_DEF_COUNT;
5208
5209 /* Create slow-path Mailbox Command Complete Queue */
5210 qdesc = lpfc_sli4_queue_alloc(phba, phba->sli4_hba.cq_esize,
5211 phba->sli4_hba.cq_ecount);
5212 if (!qdesc) {
5213 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5214 "0500 Failed allocate slow-path mailbox CQ\n");
5215 goto out_free_fp_eq;
5216 }
5217 phba->sli4_hba.mbx_cq = qdesc;
5218
5219 /* Create slow-path ELS Complete Queue */
5220 qdesc = lpfc_sli4_queue_alloc(phba, phba->sli4_hba.cq_esize,
5221 phba->sli4_hba.cq_ecount);
5222 if (!qdesc) {
5223 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5224 "0501 Failed allocate slow-path ELS CQ\n");
5225 goto out_free_mbx_cq;
5226 }
5227 phba->sli4_hba.els_cq = qdesc;
5228
James Smartda0436e2009-05-22 14:51:39 -04005229
5230 /* Create fast-path FCP Completion Queue(s), one-to-one with EQs */
5231 phba->sli4_hba.fcp_cq = kzalloc((sizeof(struct lpfc_queue *) *
5232 phba->cfg_fcp_eq_count), GFP_KERNEL);
5233 if (!phba->sli4_hba.fcp_cq) {
5234 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5235 "2577 Failed allocate memory for fast-path "
5236 "CQ record array\n");
James Smart4d9ab992009-10-02 15:16:39 -04005237 goto out_free_els_cq;
James Smartda0436e2009-05-22 14:51:39 -04005238 }
5239 for (fcp_cqidx = 0; fcp_cqidx < phba->cfg_fcp_eq_count; fcp_cqidx++) {
5240 qdesc = lpfc_sli4_queue_alloc(phba, phba->sli4_hba.cq_esize,
5241 phba->sli4_hba.cq_ecount);
5242 if (!qdesc) {
5243 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5244 "0499 Failed allocate fast-path FCP "
5245 "CQ (%d)\n", fcp_cqidx);
5246 goto out_free_fcp_cq;
5247 }
5248 phba->sli4_hba.fcp_cq[fcp_cqidx] = qdesc;
5249 }
5250
5251 /* Create Mailbox Command Queue */
5252 phba->sli4_hba.mq_esize = LPFC_MQE_SIZE;
5253 phba->sli4_hba.mq_ecount = LPFC_MQE_DEF_COUNT;
5254
5255 qdesc = lpfc_sli4_queue_alloc(phba, phba->sli4_hba.mq_esize,
5256 phba->sli4_hba.mq_ecount);
5257 if (!qdesc) {
5258 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5259 "0505 Failed allocate slow-path MQ\n");
5260 goto out_free_fcp_cq;
5261 }
5262 phba->sli4_hba.mbx_wq = qdesc;
5263
5264 /*
5265 * Create all the Work Queues (WQs)
5266 */
5267 phba->sli4_hba.wq_esize = LPFC_WQE_SIZE;
5268 phba->sli4_hba.wq_ecount = LPFC_WQE_DEF_COUNT;
5269
5270 /* Create slow-path ELS Work Queue */
5271 qdesc = lpfc_sli4_queue_alloc(phba, phba->sli4_hba.wq_esize,
5272 phba->sli4_hba.wq_ecount);
5273 if (!qdesc) {
5274 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5275 "0504 Failed allocate slow-path ELS WQ\n");
5276 goto out_free_mbx_wq;
5277 }
5278 phba->sli4_hba.els_wq = qdesc;
5279
5280 /* Create fast-path FCP Work Queue(s) */
5281 phba->sli4_hba.fcp_wq = kzalloc((sizeof(struct lpfc_queue *) *
5282 phba->cfg_fcp_wq_count), GFP_KERNEL);
5283 if (!phba->sli4_hba.fcp_wq) {
5284 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5285 "2578 Failed allocate memory for fast-path "
5286 "WQ record array\n");
5287 goto out_free_els_wq;
5288 }
5289 for (fcp_wqidx = 0; fcp_wqidx < phba->cfg_fcp_wq_count; fcp_wqidx++) {
5290 qdesc = lpfc_sli4_queue_alloc(phba, phba->sli4_hba.wq_esize,
5291 phba->sli4_hba.wq_ecount);
5292 if (!qdesc) {
5293 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5294 "0503 Failed allocate fast-path FCP "
5295 "WQ (%d)\n", fcp_wqidx);
5296 goto out_free_fcp_wq;
5297 }
5298 phba->sli4_hba.fcp_wq[fcp_wqidx] = qdesc;
5299 }
5300
5301 /*
5302 * Create Receive Queue (RQ)
5303 */
5304 phba->sli4_hba.rq_esize = LPFC_RQE_SIZE;
5305 phba->sli4_hba.rq_ecount = LPFC_RQE_DEF_COUNT;
5306
5307 /* Create Receive Queue for header */
5308 qdesc = lpfc_sli4_queue_alloc(phba, phba->sli4_hba.rq_esize,
5309 phba->sli4_hba.rq_ecount);
5310 if (!qdesc) {
5311 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5312 "0506 Failed allocate receive HRQ\n");
5313 goto out_free_fcp_wq;
5314 }
5315 phba->sli4_hba.hdr_rq = qdesc;
5316
5317 /* Create Receive Queue for data */
5318 qdesc = lpfc_sli4_queue_alloc(phba, phba->sli4_hba.rq_esize,
5319 phba->sli4_hba.rq_ecount);
5320 if (!qdesc) {
5321 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5322 "0507 Failed allocate receive DRQ\n");
5323 goto out_free_hdr_rq;
5324 }
5325 phba->sli4_hba.dat_rq = qdesc;
5326
5327 return 0;
5328
5329out_free_hdr_rq:
5330 lpfc_sli4_queue_free(phba->sli4_hba.hdr_rq);
5331 phba->sli4_hba.hdr_rq = NULL;
5332out_free_fcp_wq:
5333 for (--fcp_wqidx; fcp_wqidx >= 0; fcp_wqidx--) {
5334 lpfc_sli4_queue_free(phba->sli4_hba.fcp_wq[fcp_wqidx]);
5335 phba->sli4_hba.fcp_wq[fcp_wqidx] = NULL;
5336 }
5337 kfree(phba->sli4_hba.fcp_wq);
5338out_free_els_wq:
5339 lpfc_sli4_queue_free(phba->sli4_hba.els_wq);
5340 phba->sli4_hba.els_wq = NULL;
5341out_free_mbx_wq:
5342 lpfc_sli4_queue_free(phba->sli4_hba.mbx_wq);
5343 phba->sli4_hba.mbx_wq = NULL;
5344out_free_fcp_cq:
5345 for (--fcp_cqidx; fcp_cqidx >= 0; fcp_cqidx--) {
5346 lpfc_sli4_queue_free(phba->sli4_hba.fcp_cq[fcp_cqidx]);
5347 phba->sli4_hba.fcp_cq[fcp_cqidx] = NULL;
5348 }
5349 kfree(phba->sli4_hba.fcp_cq);
James Smartda0436e2009-05-22 14:51:39 -04005350out_free_els_cq:
5351 lpfc_sli4_queue_free(phba->sli4_hba.els_cq);
5352 phba->sli4_hba.els_cq = NULL;
5353out_free_mbx_cq:
5354 lpfc_sli4_queue_free(phba->sli4_hba.mbx_cq);
5355 phba->sli4_hba.mbx_cq = NULL;
5356out_free_fp_eq:
5357 for (--fcp_eqidx; fcp_eqidx >= 0; fcp_eqidx--) {
5358 lpfc_sli4_queue_free(phba->sli4_hba.fp_eq[fcp_eqidx]);
5359 phba->sli4_hba.fp_eq[fcp_eqidx] = NULL;
5360 }
5361 kfree(phba->sli4_hba.fp_eq);
5362out_free_sp_eq:
5363 lpfc_sli4_queue_free(phba->sli4_hba.sp_eq);
5364 phba->sli4_hba.sp_eq = NULL;
5365out_error:
5366 return -ENOMEM;
5367}
5368
5369/**
5370 * lpfc_sli4_queue_destroy - Destroy all the SLI4 queues
5371 * @phba: pointer to lpfc hba data structure.
5372 *
5373 * This routine is invoked to release all the SLI4 queues with the FCoE HBA
5374 * operation.
5375 *
5376 * Return codes
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02005377 * 0 - successful
James Smartda0436e2009-05-22 14:51:39 -04005378 * ENOMEM - No availble memory
5379 * EIO - The mailbox failed to complete successfully.
5380 **/
5381static void
5382lpfc_sli4_queue_destroy(struct lpfc_hba *phba)
5383{
5384 int fcp_qidx;
5385
5386 /* Release mailbox command work queue */
5387 lpfc_sli4_queue_free(phba->sli4_hba.mbx_wq);
5388 phba->sli4_hba.mbx_wq = NULL;
5389
5390 /* Release ELS work queue */
5391 lpfc_sli4_queue_free(phba->sli4_hba.els_wq);
5392 phba->sli4_hba.els_wq = NULL;
5393
5394 /* Release FCP work queue */
5395 for (fcp_qidx = 0; fcp_qidx < phba->cfg_fcp_wq_count; fcp_qidx++)
5396 lpfc_sli4_queue_free(phba->sli4_hba.fcp_wq[fcp_qidx]);
5397 kfree(phba->sli4_hba.fcp_wq);
5398 phba->sli4_hba.fcp_wq = NULL;
5399
5400 /* Release unsolicited receive queue */
5401 lpfc_sli4_queue_free(phba->sli4_hba.hdr_rq);
5402 phba->sli4_hba.hdr_rq = NULL;
5403 lpfc_sli4_queue_free(phba->sli4_hba.dat_rq);
5404 phba->sli4_hba.dat_rq = NULL;
5405
James Smartda0436e2009-05-22 14:51:39 -04005406 /* Release ELS complete queue */
5407 lpfc_sli4_queue_free(phba->sli4_hba.els_cq);
5408 phba->sli4_hba.els_cq = NULL;
5409
5410 /* Release mailbox command complete queue */
5411 lpfc_sli4_queue_free(phba->sli4_hba.mbx_cq);
5412 phba->sli4_hba.mbx_cq = NULL;
5413
5414 /* Release FCP response complete queue */
5415 for (fcp_qidx = 0; fcp_qidx < phba->cfg_fcp_eq_count; fcp_qidx++)
5416 lpfc_sli4_queue_free(phba->sli4_hba.fcp_cq[fcp_qidx]);
5417 kfree(phba->sli4_hba.fcp_cq);
5418 phba->sli4_hba.fcp_cq = NULL;
5419
5420 /* Release fast-path event queue */
5421 for (fcp_qidx = 0; fcp_qidx < phba->cfg_fcp_eq_count; fcp_qidx++)
5422 lpfc_sli4_queue_free(phba->sli4_hba.fp_eq[fcp_qidx]);
5423 kfree(phba->sli4_hba.fp_eq);
5424 phba->sli4_hba.fp_eq = NULL;
5425
5426 /* Release slow-path event queue */
5427 lpfc_sli4_queue_free(phba->sli4_hba.sp_eq);
5428 phba->sli4_hba.sp_eq = NULL;
5429
5430 return;
5431}
5432
5433/**
5434 * lpfc_sli4_queue_setup - Set up all the SLI4 queues
5435 * @phba: pointer to lpfc hba data structure.
5436 *
5437 * This routine is invoked to set up all the SLI4 queues for the FCoE HBA
5438 * operation.
5439 *
5440 * Return codes
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02005441 * 0 - successful
James Smartda0436e2009-05-22 14:51:39 -04005442 * ENOMEM - No availble memory
5443 * EIO - The mailbox failed to complete successfully.
5444 **/
5445int
5446lpfc_sli4_queue_setup(struct lpfc_hba *phba)
5447{
5448 int rc = -ENOMEM;
5449 int fcp_eqidx, fcp_cqidx, fcp_wqidx;
5450 int fcp_cq_index = 0;
5451
5452 /*
5453 * Set up Event Queues (EQs)
5454 */
5455
5456 /* Set up slow-path event queue */
5457 if (!phba->sli4_hba.sp_eq) {
5458 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5459 "0520 Slow-path EQ not allocated\n");
5460 goto out_error;
5461 }
5462 rc = lpfc_eq_create(phba, phba->sli4_hba.sp_eq,
5463 LPFC_SP_DEF_IMAX);
5464 if (rc) {
5465 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5466 "0521 Failed setup of slow-path EQ: "
5467 "rc = 0x%x\n", rc);
5468 goto out_error;
5469 }
5470 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
5471 "2583 Slow-path EQ setup: queue-id=%d\n",
5472 phba->sli4_hba.sp_eq->queue_id);
5473
5474 /* Set up fast-path event queue */
5475 for (fcp_eqidx = 0; fcp_eqidx < phba->cfg_fcp_eq_count; fcp_eqidx++) {
5476 if (!phba->sli4_hba.fp_eq[fcp_eqidx]) {
5477 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5478 "0522 Fast-path EQ (%d) not "
5479 "allocated\n", fcp_eqidx);
5480 goto out_destroy_fp_eq;
5481 }
5482 rc = lpfc_eq_create(phba, phba->sli4_hba.fp_eq[fcp_eqidx],
5483 phba->cfg_fcp_imax);
5484 if (rc) {
5485 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5486 "0523 Failed setup of fast-path EQ "
5487 "(%d), rc = 0x%x\n", fcp_eqidx, rc);
5488 goto out_destroy_fp_eq;
5489 }
5490 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
5491 "2584 Fast-path EQ setup: "
5492 "queue[%d]-id=%d\n", fcp_eqidx,
5493 phba->sli4_hba.fp_eq[fcp_eqidx]->queue_id);
5494 }
5495
5496 /*
5497 * Set up Complete Queues (CQs)
5498 */
5499
5500 /* Set up slow-path MBOX Complete Queue as the first CQ */
5501 if (!phba->sli4_hba.mbx_cq) {
5502 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5503 "0528 Mailbox CQ not allocated\n");
5504 goto out_destroy_fp_eq;
5505 }
5506 rc = lpfc_cq_create(phba, phba->sli4_hba.mbx_cq, phba->sli4_hba.sp_eq,
5507 LPFC_MCQ, LPFC_MBOX);
5508 if (rc) {
5509 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5510 "0529 Failed setup of slow-path mailbox CQ: "
5511 "rc = 0x%x\n", rc);
5512 goto out_destroy_fp_eq;
5513 }
5514 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
5515 "2585 MBX CQ setup: cq-id=%d, parent eq-id=%d\n",
5516 phba->sli4_hba.mbx_cq->queue_id,
5517 phba->sli4_hba.sp_eq->queue_id);
5518
5519 /* Set up slow-path ELS Complete Queue */
5520 if (!phba->sli4_hba.els_cq) {
5521 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5522 "0530 ELS CQ not allocated\n");
5523 goto out_destroy_mbx_cq;
5524 }
5525 rc = lpfc_cq_create(phba, phba->sli4_hba.els_cq, phba->sli4_hba.sp_eq,
5526 LPFC_WCQ, LPFC_ELS);
5527 if (rc) {
5528 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5529 "0531 Failed setup of slow-path ELS CQ: "
5530 "rc = 0x%x\n", rc);
5531 goto out_destroy_mbx_cq;
5532 }
5533 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
5534 "2586 ELS CQ setup: cq-id=%d, parent eq-id=%d\n",
5535 phba->sli4_hba.els_cq->queue_id,
5536 phba->sli4_hba.sp_eq->queue_id);
5537
James Smartda0436e2009-05-22 14:51:39 -04005538 /* Set up fast-path FCP Response Complete Queue */
5539 for (fcp_cqidx = 0; fcp_cqidx < phba->cfg_fcp_eq_count; fcp_cqidx++) {
5540 if (!phba->sli4_hba.fcp_cq[fcp_cqidx]) {
5541 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5542 "0526 Fast-path FCP CQ (%d) not "
5543 "allocated\n", fcp_cqidx);
5544 goto out_destroy_fcp_cq;
5545 }
5546 rc = lpfc_cq_create(phba, phba->sli4_hba.fcp_cq[fcp_cqidx],
5547 phba->sli4_hba.fp_eq[fcp_cqidx],
5548 LPFC_WCQ, LPFC_FCP);
5549 if (rc) {
5550 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5551 "0527 Failed setup of fast-path FCP "
5552 "CQ (%d), rc = 0x%x\n", fcp_cqidx, rc);
5553 goto out_destroy_fcp_cq;
5554 }
5555 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
5556 "2588 FCP CQ setup: cq[%d]-id=%d, "
5557 "parent eq[%d]-id=%d\n",
5558 fcp_cqidx,
5559 phba->sli4_hba.fcp_cq[fcp_cqidx]->queue_id,
5560 fcp_cqidx,
5561 phba->sli4_hba.fp_eq[fcp_cqidx]->queue_id);
5562 }
5563
5564 /*
5565 * Set up all the Work Queues (WQs)
5566 */
5567
5568 /* Set up Mailbox Command Queue */
5569 if (!phba->sli4_hba.mbx_wq) {
5570 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5571 "0538 Slow-path MQ not allocated\n");
5572 goto out_destroy_fcp_cq;
5573 }
5574 rc = lpfc_mq_create(phba, phba->sli4_hba.mbx_wq,
5575 phba->sli4_hba.mbx_cq, LPFC_MBOX);
5576 if (rc) {
5577 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5578 "0539 Failed setup of slow-path MQ: "
5579 "rc = 0x%x\n", rc);
5580 goto out_destroy_fcp_cq;
5581 }
5582 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
5583 "2589 MBX MQ setup: wq-id=%d, parent cq-id=%d\n",
5584 phba->sli4_hba.mbx_wq->queue_id,
5585 phba->sli4_hba.mbx_cq->queue_id);
5586
5587 /* Set up slow-path ELS Work Queue */
5588 if (!phba->sli4_hba.els_wq) {
5589 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5590 "0536 Slow-path ELS WQ not allocated\n");
5591 goto out_destroy_mbx_wq;
5592 }
5593 rc = lpfc_wq_create(phba, phba->sli4_hba.els_wq,
5594 phba->sli4_hba.els_cq, LPFC_ELS);
5595 if (rc) {
5596 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5597 "0537 Failed setup of slow-path ELS WQ: "
5598 "rc = 0x%x\n", rc);
5599 goto out_destroy_mbx_wq;
5600 }
5601 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
5602 "2590 ELS WQ setup: wq-id=%d, parent cq-id=%d\n",
5603 phba->sli4_hba.els_wq->queue_id,
5604 phba->sli4_hba.els_cq->queue_id);
5605
5606 /* Set up fast-path FCP Work Queue */
5607 for (fcp_wqidx = 0; fcp_wqidx < phba->cfg_fcp_wq_count; fcp_wqidx++) {
5608 if (!phba->sli4_hba.fcp_wq[fcp_wqidx]) {
5609 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5610 "0534 Fast-path FCP WQ (%d) not "
5611 "allocated\n", fcp_wqidx);
5612 goto out_destroy_fcp_wq;
5613 }
5614 rc = lpfc_wq_create(phba, phba->sli4_hba.fcp_wq[fcp_wqidx],
5615 phba->sli4_hba.fcp_cq[fcp_cq_index],
5616 LPFC_FCP);
5617 if (rc) {
5618 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5619 "0535 Failed setup of fast-path FCP "
5620 "WQ (%d), rc = 0x%x\n", fcp_wqidx, rc);
5621 goto out_destroy_fcp_wq;
5622 }
5623 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
5624 "2591 FCP WQ setup: wq[%d]-id=%d, "
5625 "parent cq[%d]-id=%d\n",
5626 fcp_wqidx,
5627 phba->sli4_hba.fcp_wq[fcp_wqidx]->queue_id,
5628 fcp_cq_index,
5629 phba->sli4_hba.fcp_cq[fcp_cq_index]->queue_id);
5630 /* Round robin FCP Work Queue's Completion Queue assignment */
5631 fcp_cq_index = ((fcp_cq_index + 1) % phba->cfg_fcp_eq_count);
5632 }
5633
5634 /*
5635 * Create Receive Queue (RQ)
5636 */
5637 if (!phba->sli4_hba.hdr_rq || !phba->sli4_hba.dat_rq) {
5638 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5639 "0540 Receive Queue not allocated\n");
5640 goto out_destroy_fcp_wq;
5641 }
5642 rc = lpfc_rq_create(phba, phba->sli4_hba.hdr_rq, phba->sli4_hba.dat_rq,
James Smart4d9ab992009-10-02 15:16:39 -04005643 phba->sli4_hba.els_cq, LPFC_USOL);
James Smartda0436e2009-05-22 14:51:39 -04005644 if (rc) {
5645 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5646 "0541 Failed setup of Receive Queue: "
5647 "rc = 0x%x\n", rc);
5648 goto out_destroy_fcp_wq;
5649 }
5650 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
5651 "2592 USL RQ setup: hdr-rq-id=%d, dat-rq-id=%d "
5652 "parent cq-id=%d\n",
5653 phba->sli4_hba.hdr_rq->queue_id,
5654 phba->sli4_hba.dat_rq->queue_id,
James Smart4d9ab992009-10-02 15:16:39 -04005655 phba->sli4_hba.els_cq->queue_id);
James Smartda0436e2009-05-22 14:51:39 -04005656 return 0;
5657
5658out_destroy_fcp_wq:
5659 for (--fcp_wqidx; fcp_wqidx >= 0; fcp_wqidx--)
5660 lpfc_wq_destroy(phba, phba->sli4_hba.fcp_wq[fcp_wqidx]);
5661 lpfc_wq_destroy(phba, phba->sli4_hba.els_wq);
5662out_destroy_mbx_wq:
5663 lpfc_mq_destroy(phba, phba->sli4_hba.mbx_wq);
5664out_destroy_fcp_cq:
5665 for (--fcp_cqidx; fcp_cqidx >= 0; fcp_cqidx--)
5666 lpfc_cq_destroy(phba, phba->sli4_hba.fcp_cq[fcp_cqidx]);
James Smartda0436e2009-05-22 14:51:39 -04005667 lpfc_cq_destroy(phba, phba->sli4_hba.els_cq);
5668out_destroy_mbx_cq:
5669 lpfc_cq_destroy(phba, phba->sli4_hba.mbx_cq);
5670out_destroy_fp_eq:
5671 for (--fcp_eqidx; fcp_eqidx >= 0; fcp_eqidx--)
5672 lpfc_eq_destroy(phba, phba->sli4_hba.fp_eq[fcp_eqidx]);
5673 lpfc_eq_destroy(phba, phba->sli4_hba.sp_eq);
5674out_error:
5675 return rc;
5676}
5677
5678/**
5679 * lpfc_sli4_queue_unset - Unset all the SLI4 queues
5680 * @phba: pointer to lpfc hba data structure.
5681 *
5682 * This routine is invoked to unset all the SLI4 queues with the FCoE HBA
5683 * operation.
5684 *
5685 * Return codes
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02005686 * 0 - successful
James Smartda0436e2009-05-22 14:51:39 -04005687 * ENOMEM - No availble memory
5688 * EIO - The mailbox failed to complete successfully.
5689 **/
5690void
5691lpfc_sli4_queue_unset(struct lpfc_hba *phba)
5692{
5693 int fcp_qidx;
5694
5695 /* Unset mailbox command work queue */
5696 lpfc_mq_destroy(phba, phba->sli4_hba.mbx_wq);
5697 /* Unset ELS work queue */
5698 lpfc_wq_destroy(phba, phba->sli4_hba.els_wq);
5699 /* Unset unsolicited receive queue */
5700 lpfc_rq_destroy(phba, phba->sli4_hba.hdr_rq, phba->sli4_hba.dat_rq);
5701 /* Unset FCP work queue */
5702 for (fcp_qidx = 0; fcp_qidx < phba->cfg_fcp_wq_count; fcp_qidx++)
5703 lpfc_wq_destroy(phba, phba->sli4_hba.fcp_wq[fcp_qidx]);
5704 /* Unset mailbox command complete queue */
5705 lpfc_cq_destroy(phba, phba->sli4_hba.mbx_cq);
5706 /* Unset ELS complete queue */
5707 lpfc_cq_destroy(phba, phba->sli4_hba.els_cq);
James Smartda0436e2009-05-22 14:51:39 -04005708 /* Unset FCP response complete queue */
5709 for (fcp_qidx = 0; fcp_qidx < phba->cfg_fcp_eq_count; fcp_qidx++)
5710 lpfc_cq_destroy(phba, phba->sli4_hba.fcp_cq[fcp_qidx]);
5711 /* Unset fast-path event queue */
5712 for (fcp_qidx = 0; fcp_qidx < phba->cfg_fcp_eq_count; fcp_qidx++)
5713 lpfc_eq_destroy(phba, phba->sli4_hba.fp_eq[fcp_qidx]);
5714 /* Unset slow-path event queue */
5715 lpfc_eq_destroy(phba, phba->sli4_hba.sp_eq);
5716}
5717
5718/**
5719 * lpfc_sli4_cq_event_pool_create - Create completion-queue event free pool
5720 * @phba: pointer to lpfc hba data structure.
5721 *
5722 * This routine is invoked to allocate and set up a pool of completion queue
5723 * events. The body of the completion queue event is a completion queue entry
5724 * CQE. For now, this pool is used for the interrupt service routine to queue
5725 * the following HBA completion queue events for the worker thread to process:
5726 * - Mailbox asynchronous events
5727 * - Receive queue completion unsolicited events
5728 * Later, this can be used for all the slow-path events.
5729 *
5730 * Return codes
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02005731 * 0 - successful
James Smartda0436e2009-05-22 14:51:39 -04005732 * -ENOMEM - No availble memory
5733 **/
5734static int
5735lpfc_sli4_cq_event_pool_create(struct lpfc_hba *phba)
5736{
5737 struct lpfc_cq_event *cq_event;
5738 int i;
5739
5740 for (i = 0; i < (4 * phba->sli4_hba.cq_ecount); i++) {
5741 cq_event = kmalloc(sizeof(struct lpfc_cq_event), GFP_KERNEL);
5742 if (!cq_event)
5743 goto out_pool_create_fail;
5744 list_add_tail(&cq_event->list,
5745 &phba->sli4_hba.sp_cqe_event_pool);
5746 }
5747 return 0;
5748
5749out_pool_create_fail:
5750 lpfc_sli4_cq_event_pool_destroy(phba);
5751 return -ENOMEM;
5752}
5753
5754/**
5755 * lpfc_sli4_cq_event_pool_destroy - Free completion-queue event free pool
5756 * @phba: pointer to lpfc hba data structure.
5757 *
5758 * This routine is invoked to free the pool of completion queue events at
5759 * driver unload time. Note that, it is the responsibility of the driver
5760 * cleanup routine to free all the outstanding completion-queue events
5761 * allocated from this pool back into the pool before invoking this routine
5762 * to destroy the pool.
5763 **/
5764static void
5765lpfc_sli4_cq_event_pool_destroy(struct lpfc_hba *phba)
5766{
5767 struct lpfc_cq_event *cq_event, *next_cq_event;
5768
5769 list_for_each_entry_safe(cq_event, next_cq_event,
5770 &phba->sli4_hba.sp_cqe_event_pool, list) {
5771 list_del(&cq_event->list);
5772 kfree(cq_event);
5773 }
5774}
5775
5776/**
5777 * __lpfc_sli4_cq_event_alloc - Allocate a completion-queue event from free pool
5778 * @phba: pointer to lpfc hba data structure.
5779 *
5780 * This routine is the lock free version of the API invoked to allocate a
5781 * completion-queue event from the free pool.
5782 *
5783 * Return: Pointer to the newly allocated completion-queue event if successful
5784 * NULL otherwise.
5785 **/
5786struct lpfc_cq_event *
5787__lpfc_sli4_cq_event_alloc(struct lpfc_hba *phba)
5788{
5789 struct lpfc_cq_event *cq_event = NULL;
5790
5791 list_remove_head(&phba->sli4_hba.sp_cqe_event_pool, cq_event,
5792 struct lpfc_cq_event, list);
5793 return cq_event;
5794}
5795
5796/**
5797 * lpfc_sli4_cq_event_alloc - Allocate a completion-queue event from free pool
5798 * @phba: pointer to lpfc hba data structure.
5799 *
5800 * This routine is the lock version of the API invoked to allocate a
5801 * completion-queue event from the free pool.
5802 *
5803 * Return: Pointer to the newly allocated completion-queue event if successful
5804 * NULL otherwise.
5805 **/
5806struct lpfc_cq_event *
5807lpfc_sli4_cq_event_alloc(struct lpfc_hba *phba)
5808{
5809 struct lpfc_cq_event *cq_event;
5810 unsigned long iflags;
5811
5812 spin_lock_irqsave(&phba->hbalock, iflags);
5813 cq_event = __lpfc_sli4_cq_event_alloc(phba);
5814 spin_unlock_irqrestore(&phba->hbalock, iflags);
5815 return cq_event;
5816}
5817
5818/**
5819 * __lpfc_sli4_cq_event_release - Release a completion-queue event to free pool
5820 * @phba: pointer to lpfc hba data structure.
5821 * @cq_event: pointer to the completion queue event to be freed.
5822 *
5823 * This routine is the lock free version of the API invoked to release a
5824 * completion-queue event back into the free pool.
5825 **/
5826void
5827__lpfc_sli4_cq_event_release(struct lpfc_hba *phba,
5828 struct lpfc_cq_event *cq_event)
5829{
5830 list_add_tail(&cq_event->list, &phba->sli4_hba.sp_cqe_event_pool);
5831}
5832
5833/**
5834 * lpfc_sli4_cq_event_release - Release a completion-queue event to free pool
5835 * @phba: pointer to lpfc hba data structure.
5836 * @cq_event: pointer to the completion queue event to be freed.
5837 *
5838 * This routine is the lock version of the API invoked to release a
5839 * completion-queue event back into the free pool.
5840 **/
5841void
5842lpfc_sli4_cq_event_release(struct lpfc_hba *phba,
5843 struct lpfc_cq_event *cq_event)
5844{
5845 unsigned long iflags;
5846 spin_lock_irqsave(&phba->hbalock, iflags);
5847 __lpfc_sli4_cq_event_release(phba, cq_event);
5848 spin_unlock_irqrestore(&phba->hbalock, iflags);
5849}
5850
5851/**
5852 * lpfc_sli4_cq_event_release_all - Release all cq events to the free pool
5853 * @phba: pointer to lpfc hba data structure.
5854 *
5855 * This routine is to free all the pending completion-queue events to the
5856 * back into the free pool for device reset.
5857 **/
5858static void
5859lpfc_sli4_cq_event_release_all(struct lpfc_hba *phba)
5860{
5861 LIST_HEAD(cqelist);
5862 struct lpfc_cq_event *cqe;
5863 unsigned long iflags;
5864
5865 /* Retrieve all the pending WCQEs from pending WCQE lists */
5866 spin_lock_irqsave(&phba->hbalock, iflags);
5867 /* Pending FCP XRI abort events */
5868 list_splice_init(&phba->sli4_hba.sp_fcp_xri_aborted_work_queue,
5869 &cqelist);
5870 /* Pending ELS XRI abort events */
5871 list_splice_init(&phba->sli4_hba.sp_els_xri_aborted_work_queue,
5872 &cqelist);
5873 /* Pending asynnc events */
5874 list_splice_init(&phba->sli4_hba.sp_asynce_work_queue,
5875 &cqelist);
5876 spin_unlock_irqrestore(&phba->hbalock, iflags);
5877
5878 while (!list_empty(&cqelist)) {
5879 list_remove_head(&cqelist, cqe, struct lpfc_cq_event, list);
5880 lpfc_sli4_cq_event_release(phba, cqe);
5881 }
5882}
5883
5884/**
5885 * lpfc_pci_function_reset - Reset pci function.
5886 * @phba: pointer to lpfc hba data structure.
5887 *
5888 * This routine is invoked to request a PCI function reset. It will destroys
5889 * all resources assigned to the PCI function which originates this request.
5890 *
5891 * Return codes
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02005892 * 0 - successful
James Smartda0436e2009-05-22 14:51:39 -04005893 * ENOMEM - No availble memory
5894 * EIO - The mailbox failed to complete successfully.
5895 **/
5896int
5897lpfc_pci_function_reset(struct lpfc_hba *phba)
5898{
5899 LPFC_MBOXQ_t *mboxq;
5900 uint32_t rc = 0;
5901 uint32_t shdr_status, shdr_add_status;
5902 union lpfc_sli4_cfg_shdr *shdr;
5903
5904 mboxq = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5905 if (!mboxq) {
5906 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5907 "0494 Unable to allocate memory for issuing "
5908 "SLI_FUNCTION_RESET mailbox command\n");
5909 return -ENOMEM;
5910 }
5911
5912 /* Set up PCI function reset SLI4_CONFIG mailbox-ioctl command */
5913 lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_COMMON,
5914 LPFC_MBOX_OPCODE_FUNCTION_RESET, 0,
5915 LPFC_SLI4_MBX_EMBED);
5916 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
5917 shdr = (union lpfc_sli4_cfg_shdr *)
5918 &mboxq->u.mqe.un.sli4_config.header.cfg_shdr;
5919 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
5920 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
5921 if (rc != MBX_TIMEOUT)
5922 mempool_free(mboxq, phba->mbox_mem_pool);
5923 if (shdr_status || shdr_add_status || rc) {
5924 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5925 "0495 SLI_FUNCTION_RESET mailbox failed with "
5926 "status x%x add_status x%x, mbx status x%x\n",
5927 shdr_status, shdr_add_status, rc);
5928 rc = -ENXIO;
5929 }
5930 return rc;
5931}
5932
5933/**
5934 * lpfc_sli4_send_nop_mbox_cmds - Send sli-4 nop mailbox commands
5935 * @phba: pointer to lpfc hba data structure.
5936 * @cnt: number of nop mailbox commands to send.
5937 *
5938 * This routine is invoked to send a number @cnt of NOP mailbox command and
5939 * wait for each command to complete.
5940 *
5941 * Return: the number of NOP mailbox command completed.
5942 **/
5943static int
5944lpfc_sli4_send_nop_mbox_cmds(struct lpfc_hba *phba, uint32_t cnt)
5945{
5946 LPFC_MBOXQ_t *mboxq;
5947 int length, cmdsent;
5948 uint32_t mbox_tmo;
5949 uint32_t rc = 0;
5950 uint32_t shdr_status, shdr_add_status;
5951 union lpfc_sli4_cfg_shdr *shdr;
5952
5953 if (cnt == 0) {
5954 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
5955 "2518 Requested to send 0 NOP mailbox cmd\n");
5956 return cnt;
5957 }
5958
5959 mboxq = (LPFC_MBOXQ_t *)mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5960 if (!mboxq) {
5961 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5962 "2519 Unable to allocate memory for issuing "
5963 "NOP mailbox command\n");
5964 return 0;
5965 }
5966
5967 /* Set up NOP SLI4_CONFIG mailbox-ioctl command */
5968 length = (sizeof(struct lpfc_mbx_nop) -
5969 sizeof(struct lpfc_sli4_cfg_mhdr));
5970 lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_COMMON,
5971 LPFC_MBOX_OPCODE_NOP, length, LPFC_SLI4_MBX_EMBED);
5972
5973 mbox_tmo = lpfc_mbox_tmo_val(phba, MBX_SLI4_CONFIG);
5974 for (cmdsent = 0; cmdsent < cnt; cmdsent++) {
5975 if (!phba->sli4_hba.intr_enable)
5976 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
5977 else
5978 rc = lpfc_sli_issue_mbox_wait(phba, mboxq, mbox_tmo);
5979 if (rc == MBX_TIMEOUT)
5980 break;
5981 /* Check return status */
5982 shdr = (union lpfc_sli4_cfg_shdr *)
5983 &mboxq->u.mqe.un.sli4_config.header.cfg_shdr;
5984 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
5985 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status,
5986 &shdr->response);
5987 if (shdr_status || shdr_add_status || rc) {
5988 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
5989 "2520 NOP mailbox command failed "
5990 "status x%x add_status x%x mbx "
5991 "status x%x\n", shdr_status,
5992 shdr_add_status, rc);
5993 break;
5994 }
5995 }
5996
5997 if (rc != MBX_TIMEOUT)
5998 mempool_free(mboxq, phba->mbox_mem_pool);
5999
6000 return cmdsent;
6001}
6002
6003/**
6004 * lpfc_sli4_fcfi_unreg - Unregister fcfi to device
6005 * @phba: pointer to lpfc hba data structure.
6006 * @fcfi: fcf index.
6007 *
6008 * This routine is invoked to unregister a FCFI from device.
6009 **/
6010void
6011lpfc_sli4_fcfi_unreg(struct lpfc_hba *phba, uint16_t fcfi)
6012{
6013 LPFC_MBOXQ_t *mbox;
6014 uint32_t mbox_tmo;
6015 int rc;
6016 unsigned long flags;
6017
6018 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
6019
6020 if (!mbox)
6021 return;
6022
6023 lpfc_unreg_fcfi(mbox, fcfi);
6024
6025 if (!phba->sli4_hba.intr_enable)
6026 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
6027 else {
6028 mbox_tmo = lpfc_mbox_tmo_val(phba, MBX_SLI4_CONFIG);
6029 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
6030 }
6031 if (rc != MBX_TIMEOUT)
6032 mempool_free(mbox, phba->mbox_mem_pool);
6033 if (rc != MBX_SUCCESS)
6034 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
6035 "2517 Unregister FCFI command failed "
6036 "status %d, mbxStatus x%x\n", rc,
6037 bf_get(lpfc_mqe_status, &mbox->u.mqe));
6038 else {
6039 spin_lock_irqsave(&phba->hbalock, flags);
6040 /* Mark the FCFI is no longer registered */
6041 phba->fcf.fcf_flag &=
6042 ~(FCF_AVAILABLE | FCF_REGISTERED | FCF_DISCOVERED);
6043 spin_unlock_irqrestore(&phba->hbalock, flags);
6044 }
6045}
6046
6047/**
6048 * lpfc_sli4_pci_mem_setup - Setup SLI4 HBA PCI memory space.
6049 * @phba: pointer to lpfc hba data structure.
6050 *
6051 * This routine is invoked to set up the PCI device memory space for device
6052 * with SLI-4 interface spec.
6053 *
6054 * Return codes
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02006055 * 0 - successful
James Smartda0436e2009-05-22 14:51:39 -04006056 * other values - error
6057 **/
6058static int
6059lpfc_sli4_pci_mem_setup(struct lpfc_hba *phba)
6060{
6061 struct pci_dev *pdev;
6062 unsigned long bar0map_len, bar1map_len, bar2map_len;
6063 int error = -ENODEV;
6064
6065 /* Obtain PCI device reference */
6066 if (!phba->pcidev)
6067 return error;
6068 else
6069 pdev = phba->pcidev;
6070
6071 /* Set the device DMA mask size */
Michael Reed8e685972009-09-18 12:02:05 -05006072 if (pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) != 0
6073 || pci_set_consistent_dma_mask(pdev,DMA_BIT_MASK(64)) != 0) {
6074 if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32)) != 0
6075 || pci_set_consistent_dma_mask(pdev,DMA_BIT_MASK(32)) != 0) {
James Smartda0436e2009-05-22 14:51:39 -04006076 return error;
Michael Reed8e685972009-09-18 12:02:05 -05006077 }
6078 }
James Smartda0436e2009-05-22 14:51:39 -04006079
6080 /* Get the bus address of SLI4 device Bar0, Bar1, and Bar2 and the
6081 * number of bytes required by each mapping. They are actually
James Smart1dfb5a42010-02-12 14:40:50 -05006082 * mapping to the PCI BAR regions 0 or 1, 2, and 4 by the SLI4 device.
James Smartda0436e2009-05-22 14:51:39 -04006083 */
James Smart1dfb5a42010-02-12 14:40:50 -05006084 if (pci_resource_start(pdev, 0)) {
6085 phba->pci_bar0_map = pci_resource_start(pdev, 0);
6086 bar0map_len = pci_resource_len(pdev, 0);
6087 } else {
6088 phba->pci_bar0_map = pci_resource_start(pdev, 1);
6089 bar0map_len = pci_resource_len(pdev, 1);
6090 }
6091 phba->pci_bar1_map = pci_resource_start(pdev, 2);
6092 bar1map_len = pci_resource_len(pdev, 2);
James Smartda0436e2009-05-22 14:51:39 -04006093
James Smart1dfb5a42010-02-12 14:40:50 -05006094 phba->pci_bar2_map = pci_resource_start(pdev, 4);
6095 bar2map_len = pci_resource_len(pdev, 4);
James Smartda0436e2009-05-22 14:51:39 -04006096
6097 /* Map SLI4 PCI Config Space Register base to a kernel virtual addr */
6098 phba->sli4_hba.conf_regs_memmap_p =
6099 ioremap(phba->pci_bar0_map, bar0map_len);
6100 if (!phba->sli4_hba.conf_regs_memmap_p) {
6101 dev_printk(KERN_ERR, &pdev->dev,
6102 "ioremap failed for SLI4 PCI config registers.\n");
6103 goto out;
6104 }
6105
6106 /* Map SLI4 HBA Control Register base to a kernel virtual address. */
6107 phba->sli4_hba.ctrl_regs_memmap_p =
6108 ioremap(phba->pci_bar1_map, bar1map_len);
6109 if (!phba->sli4_hba.ctrl_regs_memmap_p) {
6110 dev_printk(KERN_ERR, &pdev->dev,
6111 "ioremap failed for SLI4 HBA control registers.\n");
6112 goto out_iounmap_conf;
6113 }
6114
6115 /* Map SLI4 HBA Doorbell Register base to a kernel virtual address. */
6116 phba->sli4_hba.drbl_regs_memmap_p =
6117 ioremap(phba->pci_bar2_map, bar2map_len);
6118 if (!phba->sli4_hba.drbl_regs_memmap_p) {
6119 dev_printk(KERN_ERR, &pdev->dev,
6120 "ioremap failed for SLI4 HBA doorbell registers.\n");
6121 goto out_iounmap_ctrl;
6122 }
6123
6124 /* Set up BAR0 PCI config space register memory map */
6125 lpfc_sli4_bar0_register_memmap(phba);
6126
6127 /* Set up BAR1 register memory map */
6128 lpfc_sli4_bar1_register_memmap(phba);
6129
6130 /* Set up BAR2 register memory map */
6131 error = lpfc_sli4_bar2_register_memmap(phba, LPFC_VF0);
6132 if (error)
6133 goto out_iounmap_all;
6134
6135 return 0;
6136
6137out_iounmap_all:
6138 iounmap(phba->sli4_hba.drbl_regs_memmap_p);
6139out_iounmap_ctrl:
6140 iounmap(phba->sli4_hba.ctrl_regs_memmap_p);
6141out_iounmap_conf:
6142 iounmap(phba->sli4_hba.conf_regs_memmap_p);
6143out:
6144 return error;
6145}
6146
6147/**
6148 * lpfc_sli4_pci_mem_unset - Unset SLI4 HBA PCI memory space.
6149 * @phba: pointer to lpfc hba data structure.
6150 *
6151 * This routine is invoked to unset the PCI device memory space for device
6152 * with SLI-4 interface spec.
6153 **/
6154static void
6155lpfc_sli4_pci_mem_unset(struct lpfc_hba *phba)
6156{
6157 struct pci_dev *pdev;
6158
6159 /* Obtain PCI device reference */
6160 if (!phba->pcidev)
6161 return;
6162 else
6163 pdev = phba->pcidev;
6164
6165 /* Free coherent DMA memory allocated */
6166
6167 /* Unmap I/O memory space */
6168 iounmap(phba->sli4_hba.drbl_regs_memmap_p);
6169 iounmap(phba->sli4_hba.ctrl_regs_memmap_p);
6170 iounmap(phba->sli4_hba.conf_regs_memmap_p);
6171
6172 return;
6173}
6174
6175/**
James Smart3772a992009-05-22 14:50:54 -04006176 * lpfc_sli_enable_msix - Enable MSI-X interrupt mode on SLI-3 device
6177 * @phba: pointer to lpfc hba data structure.
6178 *
6179 * This routine is invoked to enable the MSI-X interrupt vectors to device
6180 * with SLI-3 interface specs. The kernel function pci_enable_msix() is
6181 * called to enable the MSI-X vectors. Note that pci_enable_msix(), once
6182 * invoked, enables either all or nothing, depending on the current
6183 * availability of PCI vector resources. The device driver is responsible
6184 * for calling the individual request_irq() to register each MSI-X vector
6185 * with a interrupt handler, which is done in this function. Note that
6186 * later when device is unloading, the driver should always call free_irq()
6187 * on all MSI-X vectors it has done request_irq() on before calling
6188 * pci_disable_msix(). Failure to do so results in a BUG_ON() and a device
6189 * will be left with MSI-X enabled and leaks its vectors.
6190 *
6191 * Return codes
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02006192 * 0 - successful
James Smart3772a992009-05-22 14:50:54 -04006193 * other values - error
6194 **/
6195static int
6196lpfc_sli_enable_msix(struct lpfc_hba *phba)
6197{
6198 int rc, i;
6199 LPFC_MBOXQ_t *pmb;
6200
6201 /* Set up MSI-X multi-message vectors */
6202 for (i = 0; i < LPFC_MSIX_VECTORS; i++)
6203 phba->msix_entries[i].entry = i;
6204
6205 /* Configure MSI-X capability structure */
6206 rc = pci_enable_msix(phba->pcidev, phba->msix_entries,
6207 ARRAY_SIZE(phba->msix_entries));
6208 if (rc) {
6209 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
6210 "0420 PCI enable MSI-X failed (%d)\n", rc);
6211 goto msi_fail_out;
6212 }
6213 for (i = 0; i < LPFC_MSIX_VECTORS; i++)
6214 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
6215 "0477 MSI-X entry[%d]: vector=x%x "
6216 "message=%d\n", i,
6217 phba->msix_entries[i].vector,
6218 phba->msix_entries[i].entry);
6219 /*
6220 * Assign MSI-X vectors to interrupt handlers
6221 */
6222
6223 /* vector-0 is associated to slow-path handler */
6224 rc = request_irq(phba->msix_entries[0].vector,
6225 &lpfc_sli_sp_intr_handler, IRQF_SHARED,
6226 LPFC_SP_DRIVER_HANDLER_NAME, phba);
6227 if (rc) {
6228 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
6229 "0421 MSI-X slow-path request_irq failed "
6230 "(%d)\n", rc);
6231 goto msi_fail_out;
6232 }
6233
6234 /* vector-1 is associated to fast-path handler */
6235 rc = request_irq(phba->msix_entries[1].vector,
6236 &lpfc_sli_fp_intr_handler, IRQF_SHARED,
6237 LPFC_FP_DRIVER_HANDLER_NAME, phba);
6238
6239 if (rc) {
6240 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
6241 "0429 MSI-X fast-path request_irq failed "
6242 "(%d)\n", rc);
6243 goto irq_fail_out;
6244 }
6245
6246 /*
6247 * Configure HBA MSI-X attention conditions to messages
6248 */
6249 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
6250
6251 if (!pmb) {
6252 rc = -ENOMEM;
6253 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6254 "0474 Unable to allocate memory for issuing "
6255 "MBOX_CONFIG_MSI command\n");
6256 goto mem_fail_out;
6257 }
6258 rc = lpfc_config_msi(phba, pmb);
6259 if (rc)
6260 goto mbx_fail_out;
6261 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
6262 if (rc != MBX_SUCCESS) {
6263 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX,
6264 "0351 Config MSI mailbox command failed, "
6265 "mbxCmd x%x, mbxStatus x%x\n",
6266 pmb->u.mb.mbxCommand, pmb->u.mb.mbxStatus);
6267 goto mbx_fail_out;
6268 }
6269
6270 /* Free memory allocated for mailbox command */
6271 mempool_free(pmb, phba->mbox_mem_pool);
6272 return rc;
6273
6274mbx_fail_out:
6275 /* Free memory allocated for mailbox command */
6276 mempool_free(pmb, phba->mbox_mem_pool);
6277
6278mem_fail_out:
6279 /* free the irq already requested */
6280 free_irq(phba->msix_entries[1].vector, phba);
6281
6282irq_fail_out:
6283 /* free the irq already requested */
6284 free_irq(phba->msix_entries[0].vector, phba);
6285
6286msi_fail_out:
6287 /* Unconfigure MSI-X capability structure */
6288 pci_disable_msix(phba->pcidev);
6289 return rc;
6290}
6291
6292/**
6293 * lpfc_sli_disable_msix - Disable MSI-X interrupt mode on SLI-3 device.
6294 * @phba: pointer to lpfc hba data structure.
6295 *
6296 * This routine is invoked to release the MSI-X vectors and then disable the
6297 * MSI-X interrupt mode to device with SLI-3 interface spec.
6298 **/
6299static void
6300lpfc_sli_disable_msix(struct lpfc_hba *phba)
6301{
6302 int i;
6303
6304 /* Free up MSI-X multi-message vectors */
6305 for (i = 0; i < LPFC_MSIX_VECTORS; i++)
6306 free_irq(phba->msix_entries[i].vector, phba);
6307 /* Disable MSI-X */
6308 pci_disable_msix(phba->pcidev);
6309
6310 return;
6311}
6312
6313/**
6314 * lpfc_sli_enable_msi - Enable MSI interrupt mode on SLI-3 device.
6315 * @phba: pointer to lpfc hba data structure.
6316 *
6317 * This routine is invoked to enable the MSI interrupt mode to device with
6318 * SLI-3 interface spec. The kernel function pci_enable_msi() is called to
6319 * enable the MSI vector. The device driver is responsible for calling the
6320 * request_irq() to register MSI vector with a interrupt the handler, which
6321 * is done in this function.
6322 *
6323 * Return codes
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02006324 * 0 - successful
James Smart3772a992009-05-22 14:50:54 -04006325 * other values - error
6326 */
6327static int
6328lpfc_sli_enable_msi(struct lpfc_hba *phba)
6329{
6330 int rc;
6331
6332 rc = pci_enable_msi(phba->pcidev);
6333 if (!rc)
6334 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
6335 "0462 PCI enable MSI mode success.\n");
6336 else {
6337 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
6338 "0471 PCI enable MSI mode failed (%d)\n", rc);
6339 return rc;
6340 }
6341
6342 rc = request_irq(phba->pcidev->irq, lpfc_sli_intr_handler,
6343 IRQF_SHARED, LPFC_DRIVER_NAME, phba);
6344 if (rc) {
6345 pci_disable_msi(phba->pcidev);
6346 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
6347 "0478 MSI request_irq failed (%d)\n", rc);
6348 }
6349 return rc;
6350}
6351
6352/**
6353 * lpfc_sli_disable_msi - Disable MSI interrupt mode to SLI-3 device.
6354 * @phba: pointer to lpfc hba data structure.
6355 *
6356 * This routine is invoked to disable the MSI interrupt mode to device with
6357 * SLI-3 interface spec. The driver calls free_irq() on MSI vector it has
6358 * done request_irq() on before calling pci_disable_msi(). Failure to do so
6359 * results in a BUG_ON() and a device will be left with MSI enabled and leaks
6360 * its vector.
6361 */
6362static void
6363lpfc_sli_disable_msi(struct lpfc_hba *phba)
6364{
6365 free_irq(phba->pcidev->irq, phba);
6366 pci_disable_msi(phba->pcidev);
6367 return;
6368}
6369
6370/**
6371 * lpfc_sli_enable_intr - Enable device interrupt to SLI-3 device.
6372 * @phba: pointer to lpfc hba data structure.
6373 *
6374 * This routine is invoked to enable device interrupt and associate driver's
6375 * interrupt handler(s) to interrupt vector(s) to device with SLI-3 interface
6376 * spec. Depends on the interrupt mode configured to the driver, the driver
6377 * will try to fallback from the configured interrupt mode to an interrupt
6378 * mode which is supported by the platform, kernel, and device in the order
6379 * of:
6380 * MSI-X -> MSI -> IRQ.
6381 *
6382 * Return codes
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02006383 * 0 - successful
James Smart3772a992009-05-22 14:50:54 -04006384 * other values - error
6385 **/
6386static uint32_t
6387lpfc_sli_enable_intr(struct lpfc_hba *phba, uint32_t cfg_mode)
6388{
6389 uint32_t intr_mode = LPFC_INTR_ERROR;
6390 int retval;
6391
6392 if (cfg_mode == 2) {
6393 /* Need to issue conf_port mbox cmd before conf_msi mbox cmd */
6394 retval = lpfc_sli_config_port(phba, LPFC_SLI_REV3);
6395 if (!retval) {
6396 /* Now, try to enable MSI-X interrupt mode */
6397 retval = lpfc_sli_enable_msix(phba);
6398 if (!retval) {
6399 /* Indicate initialization to MSI-X mode */
6400 phba->intr_type = MSIX;
6401 intr_mode = 2;
6402 }
6403 }
6404 }
6405
6406 /* Fallback to MSI if MSI-X initialization failed */
6407 if (cfg_mode >= 1 && phba->intr_type == NONE) {
6408 retval = lpfc_sli_enable_msi(phba);
6409 if (!retval) {
6410 /* Indicate initialization to MSI mode */
6411 phba->intr_type = MSI;
6412 intr_mode = 1;
6413 }
6414 }
6415
6416 /* Fallback to INTx if both MSI-X/MSI initalization failed */
6417 if (phba->intr_type == NONE) {
6418 retval = request_irq(phba->pcidev->irq, lpfc_sli_intr_handler,
6419 IRQF_SHARED, LPFC_DRIVER_NAME, phba);
6420 if (!retval) {
6421 /* Indicate initialization to INTx mode */
6422 phba->intr_type = INTx;
6423 intr_mode = 0;
6424 }
6425 }
6426 return intr_mode;
6427}
6428
6429/**
6430 * lpfc_sli_disable_intr - Disable device interrupt to SLI-3 device.
6431 * @phba: pointer to lpfc hba data structure.
6432 *
6433 * This routine is invoked to disable device interrupt and disassociate the
6434 * driver's interrupt handler(s) from interrupt vector(s) to device with
6435 * SLI-3 interface spec. Depending on the interrupt mode, the driver will
6436 * release the interrupt vector(s) for the message signaled interrupt.
6437 **/
6438static void
6439lpfc_sli_disable_intr(struct lpfc_hba *phba)
6440{
6441 /* Disable the currently initialized interrupt mode */
6442 if (phba->intr_type == MSIX)
6443 lpfc_sli_disable_msix(phba);
6444 else if (phba->intr_type == MSI)
6445 lpfc_sli_disable_msi(phba);
6446 else if (phba->intr_type == INTx)
6447 free_irq(phba->pcidev->irq, phba);
6448
6449 /* Reset interrupt management states */
6450 phba->intr_type = NONE;
6451 phba->sli.slistat.sli_intr = 0;
6452
6453 return;
6454}
6455
6456/**
James Smartda0436e2009-05-22 14:51:39 -04006457 * lpfc_sli4_enable_msix - Enable MSI-X interrupt mode to SLI-4 device
6458 * @phba: pointer to lpfc hba data structure.
6459 *
6460 * This routine is invoked to enable the MSI-X interrupt vectors to device
6461 * with SLI-4 interface spec. The kernel function pci_enable_msix() is called
6462 * to enable the MSI-X vectors. Note that pci_enable_msix(), once invoked,
6463 * enables either all or nothing, depending on the current availability of
6464 * PCI vector resources. The device driver is responsible for calling the
6465 * individual request_irq() to register each MSI-X vector with a interrupt
6466 * handler, which is done in this function. Note that later when device is
6467 * unloading, the driver should always call free_irq() on all MSI-X vectors
6468 * it has done request_irq() on before calling pci_disable_msix(). Failure
6469 * to do so results in a BUG_ON() and a device will be left with MSI-X
6470 * enabled and leaks its vectors.
6471 *
6472 * Return codes
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02006473 * 0 - successful
James Smartda0436e2009-05-22 14:51:39 -04006474 * other values - error
6475 **/
6476static int
6477lpfc_sli4_enable_msix(struct lpfc_hba *phba)
6478{
6479 int rc, index;
6480
6481 /* Set up MSI-X multi-message vectors */
6482 for (index = 0; index < phba->sli4_hba.cfg_eqn; index++)
6483 phba->sli4_hba.msix_entries[index].entry = index;
6484
6485 /* Configure MSI-X capability structure */
6486 rc = pci_enable_msix(phba->pcidev, phba->sli4_hba.msix_entries,
6487 phba->sli4_hba.cfg_eqn);
6488 if (rc) {
6489 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
6490 "0484 PCI enable MSI-X failed (%d)\n", rc);
6491 goto msi_fail_out;
6492 }
6493 /* Log MSI-X vector assignment */
6494 for (index = 0; index < phba->sli4_hba.cfg_eqn; index++)
6495 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
6496 "0489 MSI-X entry[%d]: vector=x%x "
6497 "message=%d\n", index,
6498 phba->sli4_hba.msix_entries[index].vector,
6499 phba->sli4_hba.msix_entries[index].entry);
6500 /*
6501 * Assign MSI-X vectors to interrupt handlers
6502 */
6503
6504 /* The first vector must associated to slow-path handler for MQ */
6505 rc = request_irq(phba->sli4_hba.msix_entries[0].vector,
6506 &lpfc_sli4_sp_intr_handler, IRQF_SHARED,
6507 LPFC_SP_DRIVER_HANDLER_NAME, phba);
6508 if (rc) {
6509 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
6510 "0485 MSI-X slow-path request_irq failed "
6511 "(%d)\n", rc);
6512 goto msi_fail_out;
6513 }
6514
6515 /* The rest of the vector(s) are associated to fast-path handler(s) */
6516 for (index = 1; index < phba->sli4_hba.cfg_eqn; index++) {
6517 phba->sli4_hba.fcp_eq_hdl[index - 1].idx = index - 1;
6518 phba->sli4_hba.fcp_eq_hdl[index - 1].phba = phba;
6519 rc = request_irq(phba->sli4_hba.msix_entries[index].vector,
6520 &lpfc_sli4_fp_intr_handler, IRQF_SHARED,
6521 LPFC_FP_DRIVER_HANDLER_NAME,
6522 &phba->sli4_hba.fcp_eq_hdl[index - 1]);
6523 if (rc) {
6524 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
6525 "0486 MSI-X fast-path (%d) "
6526 "request_irq failed (%d)\n", index, rc);
6527 goto cfg_fail_out;
6528 }
6529 }
6530
6531 return rc;
6532
6533cfg_fail_out:
6534 /* free the irq already requested */
6535 for (--index; index >= 1; index--)
6536 free_irq(phba->sli4_hba.msix_entries[index - 1].vector,
6537 &phba->sli4_hba.fcp_eq_hdl[index - 1]);
6538
6539 /* free the irq already requested */
6540 free_irq(phba->sli4_hba.msix_entries[0].vector, phba);
6541
6542msi_fail_out:
6543 /* Unconfigure MSI-X capability structure */
6544 pci_disable_msix(phba->pcidev);
6545 return rc;
6546}
6547
6548/**
6549 * lpfc_sli4_disable_msix - Disable MSI-X interrupt mode to SLI-4 device
6550 * @phba: pointer to lpfc hba data structure.
6551 *
6552 * This routine is invoked to release the MSI-X vectors and then disable the
6553 * MSI-X interrupt mode to device with SLI-4 interface spec.
6554 **/
6555static void
6556lpfc_sli4_disable_msix(struct lpfc_hba *phba)
6557{
6558 int index;
6559
6560 /* Free up MSI-X multi-message vectors */
6561 free_irq(phba->sli4_hba.msix_entries[0].vector, phba);
6562
6563 for (index = 1; index < phba->sli4_hba.cfg_eqn; index++)
6564 free_irq(phba->sli4_hba.msix_entries[index].vector,
6565 &phba->sli4_hba.fcp_eq_hdl[index - 1]);
6566 /* Disable MSI-X */
6567 pci_disable_msix(phba->pcidev);
6568
6569 return;
6570}
6571
6572/**
6573 * lpfc_sli4_enable_msi - Enable MSI interrupt mode to SLI-4 device
6574 * @phba: pointer to lpfc hba data structure.
6575 *
6576 * This routine is invoked to enable the MSI interrupt mode to device with
6577 * SLI-4 interface spec. The kernel function pci_enable_msi() is called
6578 * to enable the MSI vector. The device driver is responsible for calling
6579 * the request_irq() to register MSI vector with a interrupt the handler,
6580 * which is done in this function.
6581 *
6582 * Return codes
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02006583 * 0 - successful
James Smartda0436e2009-05-22 14:51:39 -04006584 * other values - error
6585 **/
6586static int
6587lpfc_sli4_enable_msi(struct lpfc_hba *phba)
6588{
6589 int rc, index;
6590
6591 rc = pci_enable_msi(phba->pcidev);
6592 if (!rc)
6593 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
6594 "0487 PCI enable MSI mode success.\n");
6595 else {
6596 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
6597 "0488 PCI enable MSI mode failed (%d)\n", rc);
6598 return rc;
6599 }
6600
6601 rc = request_irq(phba->pcidev->irq, lpfc_sli4_intr_handler,
6602 IRQF_SHARED, LPFC_DRIVER_NAME, phba);
6603 if (rc) {
6604 pci_disable_msi(phba->pcidev);
6605 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
6606 "0490 MSI request_irq failed (%d)\n", rc);
6607 }
6608
6609 for (index = 0; index < phba->cfg_fcp_eq_count; index++) {
6610 phba->sli4_hba.fcp_eq_hdl[index].idx = index;
6611 phba->sli4_hba.fcp_eq_hdl[index].phba = phba;
6612 }
6613
6614 return rc;
6615}
6616
6617/**
6618 * lpfc_sli4_disable_msi - Disable MSI interrupt mode to SLI-4 device
6619 * @phba: pointer to lpfc hba data structure.
6620 *
6621 * This routine is invoked to disable the MSI interrupt mode to device with
6622 * SLI-4 interface spec. The driver calls free_irq() on MSI vector it has
6623 * done request_irq() on before calling pci_disable_msi(). Failure to do so
6624 * results in a BUG_ON() and a device will be left with MSI enabled and leaks
6625 * its vector.
6626 **/
6627static void
6628lpfc_sli4_disable_msi(struct lpfc_hba *phba)
6629{
6630 free_irq(phba->pcidev->irq, phba);
6631 pci_disable_msi(phba->pcidev);
6632 return;
6633}
6634
6635/**
6636 * lpfc_sli4_enable_intr - Enable device interrupt to SLI-4 device
6637 * @phba: pointer to lpfc hba data structure.
6638 *
6639 * This routine is invoked to enable device interrupt and associate driver's
6640 * interrupt handler(s) to interrupt vector(s) to device with SLI-4
6641 * interface spec. Depends on the interrupt mode configured to the driver,
6642 * the driver will try to fallback from the configured interrupt mode to an
6643 * interrupt mode which is supported by the platform, kernel, and device in
6644 * the order of:
6645 * MSI-X -> MSI -> IRQ.
6646 *
6647 * Return codes
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02006648 * 0 - successful
James Smartda0436e2009-05-22 14:51:39 -04006649 * other values - error
6650 **/
6651static uint32_t
6652lpfc_sli4_enable_intr(struct lpfc_hba *phba, uint32_t cfg_mode)
6653{
6654 uint32_t intr_mode = LPFC_INTR_ERROR;
6655 int retval, index;
6656
6657 if (cfg_mode == 2) {
6658 /* Preparation before conf_msi mbox cmd */
6659 retval = 0;
6660 if (!retval) {
6661 /* Now, try to enable MSI-X interrupt mode */
6662 retval = lpfc_sli4_enable_msix(phba);
6663 if (!retval) {
6664 /* Indicate initialization to MSI-X mode */
6665 phba->intr_type = MSIX;
6666 intr_mode = 2;
6667 }
6668 }
6669 }
6670
6671 /* Fallback to MSI if MSI-X initialization failed */
6672 if (cfg_mode >= 1 && phba->intr_type == NONE) {
6673 retval = lpfc_sli4_enable_msi(phba);
6674 if (!retval) {
6675 /* Indicate initialization to MSI mode */
6676 phba->intr_type = MSI;
6677 intr_mode = 1;
6678 }
6679 }
6680
6681 /* Fallback to INTx if both MSI-X/MSI initalization failed */
6682 if (phba->intr_type == NONE) {
6683 retval = request_irq(phba->pcidev->irq, lpfc_sli4_intr_handler,
6684 IRQF_SHARED, LPFC_DRIVER_NAME, phba);
6685 if (!retval) {
6686 /* Indicate initialization to INTx mode */
6687 phba->intr_type = INTx;
6688 intr_mode = 0;
6689 for (index = 0; index < phba->cfg_fcp_eq_count;
6690 index++) {
6691 phba->sli4_hba.fcp_eq_hdl[index].idx = index;
6692 phba->sli4_hba.fcp_eq_hdl[index].phba = phba;
6693 }
6694 }
6695 }
6696 return intr_mode;
6697}
6698
6699/**
6700 * lpfc_sli4_disable_intr - Disable device interrupt to SLI-4 device
6701 * @phba: pointer to lpfc hba data structure.
6702 *
6703 * This routine is invoked to disable device interrupt and disassociate
6704 * the driver's interrupt handler(s) from interrupt vector(s) to device
6705 * with SLI-4 interface spec. Depending on the interrupt mode, the driver
6706 * will release the interrupt vector(s) for the message signaled interrupt.
6707 **/
6708static void
6709lpfc_sli4_disable_intr(struct lpfc_hba *phba)
6710{
6711 /* Disable the currently initialized interrupt mode */
6712 if (phba->intr_type == MSIX)
6713 lpfc_sli4_disable_msix(phba);
6714 else if (phba->intr_type == MSI)
6715 lpfc_sli4_disable_msi(phba);
6716 else if (phba->intr_type == INTx)
6717 free_irq(phba->pcidev->irq, phba);
6718
6719 /* Reset interrupt management states */
6720 phba->intr_type = NONE;
6721 phba->sli.slistat.sli_intr = 0;
6722
6723 return;
6724}
6725
6726/**
James Smart3772a992009-05-22 14:50:54 -04006727 * lpfc_unset_hba - Unset SLI3 hba device initialization
6728 * @phba: pointer to lpfc hba data structure.
6729 *
6730 * This routine is invoked to unset the HBA device initialization steps to
6731 * a device with SLI-3 interface spec.
6732 **/
6733static void
6734lpfc_unset_hba(struct lpfc_hba *phba)
6735{
6736 struct lpfc_vport *vport = phba->pport;
6737 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
6738
6739 spin_lock_irq(shost->host_lock);
6740 vport->load_flag |= FC_UNLOADING;
6741 spin_unlock_irq(shost->host_lock);
6742
6743 lpfc_stop_hba_timers(phba);
6744
6745 phba->pport->work_port_events = 0;
6746
6747 lpfc_sli_hba_down(phba);
6748
6749 lpfc_sli_brdrestart(phba);
6750
6751 lpfc_sli_disable_intr(phba);
6752
6753 return;
6754}
6755
6756/**
James Smartda0436e2009-05-22 14:51:39 -04006757 * lpfc_sli4_unset_hba - Unset SLI4 hba device initialization.
6758 * @phba: pointer to lpfc hba data structure.
6759 *
6760 * This routine is invoked to unset the HBA device initialization steps to
6761 * a device with SLI-4 interface spec.
6762 **/
6763static void
6764lpfc_sli4_unset_hba(struct lpfc_hba *phba)
6765{
6766 struct lpfc_vport *vport = phba->pport;
6767 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
6768
6769 spin_lock_irq(shost->host_lock);
6770 vport->load_flag |= FC_UNLOADING;
6771 spin_unlock_irq(shost->host_lock);
6772
6773 phba->pport->work_port_events = 0;
6774
6775 lpfc_sli4_hba_down(phba);
6776
6777 lpfc_sli4_disable_intr(phba);
6778
6779 return;
6780}
6781
6782/**
6783 * lpfc_sli4_hba_unset - Unset the fcoe hba
6784 * @phba: Pointer to HBA context object.
6785 *
6786 * This function is called in the SLI4 code path to reset the HBA's FCoE
6787 * function. The caller is not required to hold any lock. This routine
6788 * issues PCI function reset mailbox command to reset the FCoE function.
6789 * At the end of the function, it calls lpfc_hba_down_post function to
6790 * free any pending commands.
6791 **/
6792static void
6793lpfc_sli4_hba_unset(struct lpfc_hba *phba)
6794{
6795 int wait_cnt = 0;
6796 LPFC_MBOXQ_t *mboxq;
6797
6798 lpfc_stop_hba_timers(phba);
6799 phba->sli4_hba.intr_enable = 0;
6800
6801 /*
6802 * Gracefully wait out the potential current outstanding asynchronous
6803 * mailbox command.
6804 */
6805
6806 /* First, block any pending async mailbox command from posted */
6807 spin_lock_irq(&phba->hbalock);
6808 phba->sli.sli_flag |= LPFC_SLI_ASYNC_MBX_BLK;
6809 spin_unlock_irq(&phba->hbalock);
6810 /* Now, trying to wait it out if we can */
6811 while (phba->sli.sli_flag & LPFC_SLI_MBOX_ACTIVE) {
6812 msleep(10);
6813 if (++wait_cnt > LPFC_ACTIVE_MBOX_WAIT_CNT)
6814 break;
6815 }
6816 /* Forcefully release the outstanding mailbox command if timed out */
6817 if (phba->sli.sli_flag & LPFC_SLI_MBOX_ACTIVE) {
6818 spin_lock_irq(&phba->hbalock);
6819 mboxq = phba->sli.mbox_active;
6820 mboxq->u.mb.mbxStatus = MBX_NOT_FINISHED;
6821 __lpfc_mbox_cmpl_put(phba, mboxq);
6822 phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
6823 phba->sli.mbox_active = NULL;
6824 spin_unlock_irq(&phba->hbalock);
6825 }
6826
6827 /* Tear down the queues in the HBA */
6828 lpfc_sli4_queue_unset(phba);
6829
6830 /* Disable PCI subsystem interrupt */
6831 lpfc_sli4_disable_intr(phba);
6832
6833 /* Stop kthread signal shall trigger work_done one more time */
6834 kthread_stop(phba->worker_thread);
6835
6836 /* Stop the SLI4 device port */
6837 phba->pport->work_port_events = 0;
6838}
6839
6840/**
James Smart3772a992009-05-22 14:50:54 -04006841 * lpfc_pci_probe_one_s3 - PCI probe func to reg SLI-3 device to PCI subsystem.
6842 * @pdev: pointer to PCI device
6843 * @pid: pointer to PCI device identifier
6844 *
6845 * This routine is to be called to attach a device with SLI-3 interface spec
6846 * to the PCI subsystem. When an Emulex HBA with SLI-3 interface spec is
6847 * presented on PCI bus, the kernel PCI subsystem looks at PCI device-specific
6848 * information of the device and driver to see if the driver state that it can
6849 * support this kind of device. If the match is successful, the driver core
6850 * invokes this routine. If this routine determines it can claim the HBA, it
6851 * does all the initialization that it needs to do to handle the HBA properly.
6852 *
6853 * Return code
6854 * 0 - driver can claim the device
6855 * negative value - driver can not claim the device
6856 **/
6857static int __devinit
6858lpfc_pci_probe_one_s3(struct pci_dev *pdev, const struct pci_device_id *pid)
6859{
6860 struct lpfc_hba *phba;
6861 struct lpfc_vport *vport = NULL;
James Smart6669f9b2009-10-02 15:16:45 -04006862 struct Scsi_Host *shost = NULL;
James Smart3772a992009-05-22 14:50:54 -04006863 int error;
6864 uint32_t cfg_mode, intr_mode;
6865
6866 /* Allocate memory for HBA structure */
6867 phba = lpfc_hba_alloc(pdev);
6868 if (!phba)
6869 return -ENOMEM;
6870
6871 /* Perform generic PCI device enabling operation */
6872 error = lpfc_enable_pci_dev(phba);
6873 if (error) {
6874 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6875 "1401 Failed to enable pci device.\n");
6876 goto out_free_phba;
6877 }
6878
6879 /* Set up SLI API function jump table for PCI-device group-0 HBAs */
6880 error = lpfc_api_table_setup(phba, LPFC_PCI_DEV_LP);
6881 if (error)
6882 goto out_disable_pci_dev;
6883
6884 /* Set up SLI-3 specific device PCI memory space */
6885 error = lpfc_sli_pci_mem_setup(phba);
6886 if (error) {
6887 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6888 "1402 Failed to set up pci memory space.\n");
6889 goto out_disable_pci_dev;
6890 }
6891
6892 /* Set up phase-1 common device driver resources */
6893 error = lpfc_setup_driver_resource_phase1(phba);
6894 if (error) {
6895 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6896 "1403 Failed to set up driver resource.\n");
6897 goto out_unset_pci_mem_s3;
6898 }
6899
6900 /* Set up SLI-3 specific device driver resources */
6901 error = lpfc_sli_driver_resource_setup(phba);
6902 if (error) {
6903 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6904 "1404 Failed to set up driver resource.\n");
6905 goto out_unset_pci_mem_s3;
6906 }
6907
6908 /* Initialize and populate the iocb list per host */
6909 error = lpfc_init_iocb_list(phba, LPFC_IOCB_LIST_CNT);
6910 if (error) {
6911 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6912 "1405 Failed to initialize iocb list.\n");
6913 goto out_unset_driver_resource_s3;
6914 }
6915
6916 /* Set up common device driver resources */
6917 error = lpfc_setup_driver_resource_phase2(phba);
6918 if (error) {
6919 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6920 "1406 Failed to set up driver resource.\n");
6921 goto out_free_iocb_list;
6922 }
6923
6924 /* Create SCSI host to the physical port */
6925 error = lpfc_create_shost(phba);
6926 if (error) {
6927 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6928 "1407 Failed to create scsi host.\n");
6929 goto out_unset_driver_resource;
6930 }
6931
6932 /* Configure sysfs attributes */
6933 vport = phba->pport;
6934 error = lpfc_alloc_sysfs_attr(vport);
6935 if (error) {
6936 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6937 "1476 Failed to allocate sysfs attr\n");
6938 goto out_destroy_shost;
6939 }
6940
James Smart6669f9b2009-10-02 15:16:45 -04006941 shost = lpfc_shost_from_vport(vport); /* save shost for error cleanup */
James Smart3772a992009-05-22 14:50:54 -04006942 /* Now, trying to enable interrupt and bring up the device */
6943 cfg_mode = phba->cfg_use_msi;
6944 while (true) {
6945 /* Put device to a known state before enabling interrupt */
6946 lpfc_stop_port(phba);
6947 /* Configure and enable interrupt */
6948 intr_mode = lpfc_sli_enable_intr(phba, cfg_mode);
6949 if (intr_mode == LPFC_INTR_ERROR) {
6950 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6951 "0431 Failed to enable interrupt.\n");
6952 error = -ENODEV;
6953 goto out_free_sysfs_attr;
6954 }
6955 /* SLI-3 HBA setup */
6956 if (lpfc_sli_hba_setup(phba)) {
6957 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6958 "1477 Failed to set up hba\n");
6959 error = -ENODEV;
6960 goto out_remove_device;
6961 }
6962
6963 /* Wait 50ms for the interrupts of previous mailbox commands */
6964 msleep(50);
6965 /* Check active interrupts on message signaled interrupts */
6966 if (intr_mode == 0 ||
6967 phba->sli.slistat.sli_intr > LPFC_MSIX_VECTORS) {
6968 /* Log the current active interrupt mode */
6969 phba->intr_mode = intr_mode;
6970 lpfc_log_intr_mode(phba, intr_mode);
6971 break;
6972 } else {
6973 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
6974 "0447 Configure interrupt mode (%d) "
6975 "failed active interrupt test.\n",
6976 intr_mode);
6977 /* Disable the current interrupt mode */
6978 lpfc_sli_disable_intr(phba);
6979 /* Try next level of interrupt mode */
6980 cfg_mode = --intr_mode;
6981 }
6982 }
6983
6984 /* Perform post initialization setup */
6985 lpfc_post_init_setup(phba);
6986
6987 /* Check if there are static vports to be created. */
6988 lpfc_create_static_vport(phba);
6989
6990 return 0;
6991
6992out_remove_device:
6993 lpfc_unset_hba(phba);
6994out_free_sysfs_attr:
6995 lpfc_free_sysfs_attr(vport);
6996out_destroy_shost:
6997 lpfc_destroy_shost(phba);
6998out_unset_driver_resource:
6999 lpfc_unset_driver_resource_phase2(phba);
7000out_free_iocb_list:
7001 lpfc_free_iocb_list(phba);
7002out_unset_driver_resource_s3:
7003 lpfc_sli_driver_resource_unset(phba);
7004out_unset_pci_mem_s3:
7005 lpfc_sli_pci_mem_unset(phba);
7006out_disable_pci_dev:
7007 lpfc_disable_pci_dev(phba);
James Smart6669f9b2009-10-02 15:16:45 -04007008 if (shost)
7009 scsi_host_put(shost);
James Smart3772a992009-05-22 14:50:54 -04007010out_free_phba:
7011 lpfc_hba_free(phba);
7012 return error;
7013}
7014
7015/**
7016 * lpfc_pci_remove_one_s3 - PCI func to unreg SLI-3 device from PCI subsystem.
James Smarte59058c2008-08-24 21:49:00 -04007017 * @pdev: pointer to PCI device
7018 *
James Smart3772a992009-05-22 14:50:54 -04007019 * This routine is to be called to disattach a device with SLI-3 interface
7020 * spec from PCI subsystem. When an Emulex HBA with SLI-3 interface spec is
7021 * removed from PCI bus, it performs all the necessary cleanup for the HBA
7022 * device to be removed from the PCI subsystem properly.
James Smarte59058c2008-08-24 21:49:00 -04007023 **/
dea31012005-04-17 16:05:31 -05007024static void __devexit
James Smart3772a992009-05-22 14:50:54 -04007025lpfc_pci_remove_one_s3(struct pci_dev *pdev)
dea31012005-04-17 16:05:31 -05007026{
James Smart2e0fef82007-06-17 19:56:36 -05007027 struct Scsi_Host *shost = pci_get_drvdata(pdev);
7028 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
James Smarteada2722008-12-04 22:39:13 -05007029 struct lpfc_vport **vports;
James Smart2e0fef82007-06-17 19:56:36 -05007030 struct lpfc_hba *phba = vport->phba;
James Smarteada2722008-12-04 22:39:13 -05007031 int i;
Tomohiro Kusumi8a4df1202008-01-11 01:53:00 -05007032 int bars = pci_select_bars(pdev, IORESOURCE_MEM);
7033
James Smart549e55c2007-08-02 11:09:51 -04007034 spin_lock_irq(&phba->hbalock);
James Smart51ef4c22007-08-02 11:10:31 -04007035 vport->load_flag |= FC_UNLOADING;
James Smart549e55c2007-08-02 11:09:51 -04007036 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05007037
James Smart858c9f62007-06-17 19:56:39 -05007038 lpfc_free_sysfs_attr(vport);
7039
James Smarteada2722008-12-04 22:39:13 -05007040 /* Release all the vports against this physical port */
7041 vports = lpfc_create_vport_work_array(phba);
7042 if (vports != NULL)
James Smart3772a992009-05-22 14:50:54 -04007043 for (i = 1; i <= phba->max_vports && vports[i] != NULL; i++)
James Smarteada2722008-12-04 22:39:13 -05007044 fc_vport_terminate(vports[i]->fc_vport);
7045 lpfc_destroy_vport_work_array(phba, vports);
7046
7047 /* Remove FC host and then SCSI host with the physical port */
James Smart858c9f62007-06-17 19:56:39 -05007048 fc_remove_host(shost);
7049 scsi_remove_host(shost);
James Smart87af33f2007-10-27 13:37:43 -04007050 lpfc_cleanup(vport);
7051
James Smart2e0fef82007-06-17 19:56:36 -05007052 /*
7053 * Bring down the SLI Layer. This step disable all interrupts,
7054 * clears the rings, discards all mailbox commands, and resets
7055 * the HBA.
7056 */
James Smarta257bf92009-04-06 18:48:10 -04007057
7058 /* HBA interrupt will be diabled after this call */
James Smart2e0fef82007-06-17 19:56:36 -05007059 lpfc_sli_hba_down(phba);
James Smarta257bf92009-04-06 18:48:10 -04007060 /* Stop kthread signal shall trigger work_done one more time */
7061 kthread_stop(phba->worker_thread);
7062 /* Final cleanup of txcmplq and reset the HBA */
James Smart2e0fef82007-06-17 19:56:36 -05007063 lpfc_sli_brdrestart(phba);
7064
James Smart3772a992009-05-22 14:50:54 -04007065 lpfc_stop_hba_timers(phba);
James Smart858c9f62007-06-17 19:56:39 -05007066 spin_lock_irq(&phba->hbalock);
7067 list_del_init(&vport->listentry);
7068 spin_unlock_irq(&phba->hbalock);
7069
James Smart858c9f62007-06-17 19:56:39 -05007070 lpfc_debugfs_terminate(vport);
James Smart2e0fef82007-06-17 19:56:36 -05007071
James Smart5b75da22008-12-04 22:39:35 -05007072 /* Disable interrupt */
James Smart3772a992009-05-22 14:50:54 -04007073 lpfc_sli_disable_intr(phba);
dea31012005-04-17 16:05:31 -05007074
7075 pci_set_drvdata(pdev, NULL);
James Smart858c9f62007-06-17 19:56:39 -05007076 scsi_host_put(shost);
James Smart2e0fef82007-06-17 19:56:36 -05007077
7078 /*
7079 * Call scsi_free before mem_free since scsi bufs are released to their
7080 * corresponding pools here.
7081 */
7082 lpfc_scsi_free(phba);
James Smart3772a992009-05-22 14:50:54 -04007083 lpfc_mem_free_all(phba);
James Smart2e0fef82007-06-17 19:56:36 -05007084
James Smart34b02dc2008-08-24 21:49:55 -04007085 dma_free_coherent(&pdev->dev, lpfc_sli_hbq_size(),
7086 phba->hbqslimp.virt, phba->hbqslimp.phys);
James Smarted957682007-06-17 19:56:37 -05007087
James Smart2e0fef82007-06-17 19:56:36 -05007088 /* Free resources associated with SLI2 interface */
7089 dma_free_coherent(&pdev->dev, SLI2_SLIM_SIZE,
James Smart34b02dc2008-08-24 21:49:55 -04007090 phba->slim2p.virt, phba->slim2p.phys);
James Smart2e0fef82007-06-17 19:56:36 -05007091
7092 /* unmap adapter SLIM and Control Registers */
7093 iounmap(phba->ctrl_regs_memmap_p);
7094 iounmap(phba->slim_memmap_p);
7095
James Smart3772a992009-05-22 14:50:54 -04007096 lpfc_hba_free(phba);
James Smart2e0fef82007-06-17 19:56:36 -05007097
Tomohiro Kusumi8a4df1202008-01-11 01:53:00 -05007098 pci_release_selected_regions(pdev, bars);
James Smart2e0fef82007-06-17 19:56:36 -05007099 pci_disable_device(pdev);
dea31012005-04-17 16:05:31 -05007100}
7101
Linas Vepstas8d63f372007-02-14 14:28:36 -06007102/**
James Smart3772a992009-05-22 14:50:54 -04007103 * lpfc_pci_suspend_one_s3 - PCI func to suspend SLI-3 device for power mgmnt
James Smart3a55b532008-12-04 22:38:54 -05007104 * @pdev: pointer to PCI device
7105 * @msg: power management message
7106 *
James Smart3772a992009-05-22 14:50:54 -04007107 * This routine is to be called from the kernel's PCI subsystem to support
7108 * system Power Management (PM) to device with SLI-3 interface spec. When
7109 * PM invokes this method, it quiesces the device by stopping the driver's
7110 * worker thread for the device, turning off device's interrupt and DMA,
7111 * and bring the device offline. Note that as the driver implements the
7112 * minimum PM requirements to a power-aware driver's PM support for the
7113 * suspend/resume -- all the possible PM messages (SUSPEND, HIBERNATE, FREEZE)
7114 * to the suspend() method call will be treated as SUSPEND and the driver will
7115 * fully reinitialize its device during resume() method call, the driver will
7116 * set device to PCI_D3hot state in PCI config space instead of setting it
7117 * according to the @msg provided by the PM.
James Smart3a55b532008-12-04 22:38:54 -05007118 *
7119 * Return code
James Smart3772a992009-05-22 14:50:54 -04007120 * 0 - driver suspended the device
7121 * Error otherwise
James Smart3a55b532008-12-04 22:38:54 -05007122 **/
7123static int
James Smart3772a992009-05-22 14:50:54 -04007124lpfc_pci_suspend_one_s3(struct pci_dev *pdev, pm_message_t msg)
James Smart3a55b532008-12-04 22:38:54 -05007125{
7126 struct Scsi_Host *shost = pci_get_drvdata(pdev);
7127 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
7128
7129 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
7130 "0473 PCI device Power Management suspend.\n");
7131
7132 /* Bring down the device */
7133 lpfc_offline_prep(phba);
7134 lpfc_offline(phba);
7135 kthread_stop(phba->worker_thread);
7136
7137 /* Disable interrupt from device */
James Smart3772a992009-05-22 14:50:54 -04007138 lpfc_sli_disable_intr(phba);
James Smart3a55b532008-12-04 22:38:54 -05007139
7140 /* Save device state to PCI config space */
7141 pci_save_state(pdev);
7142 pci_set_power_state(pdev, PCI_D3hot);
7143
7144 return 0;
7145}
7146
7147/**
James Smart3772a992009-05-22 14:50:54 -04007148 * lpfc_pci_resume_one_s3 - PCI func to resume SLI-3 device for power mgmnt
James Smart3a55b532008-12-04 22:38:54 -05007149 * @pdev: pointer to PCI device
7150 *
James Smart3772a992009-05-22 14:50:54 -04007151 * This routine is to be called from the kernel's PCI subsystem to support
7152 * system Power Management (PM) to device with SLI-3 interface spec. When PM
7153 * invokes this method, it restores the device's PCI config space state and
7154 * fully reinitializes the device and brings it online. Note that as the
7155 * driver implements the minimum PM requirements to a power-aware driver's
7156 * PM for suspend/resume -- all the possible PM messages (SUSPEND, HIBERNATE,
7157 * FREEZE) to the suspend() method call will be treated as SUSPEND and the
7158 * driver will fully reinitialize its device during resume() method call,
7159 * the device will be set to PCI_D0 directly in PCI config space before
7160 * restoring the state.
James Smart3a55b532008-12-04 22:38:54 -05007161 *
7162 * Return code
James Smart3772a992009-05-22 14:50:54 -04007163 * 0 - driver suspended the device
7164 * Error otherwise
James Smart3a55b532008-12-04 22:38:54 -05007165 **/
7166static int
James Smart3772a992009-05-22 14:50:54 -04007167lpfc_pci_resume_one_s3(struct pci_dev *pdev)
James Smart3a55b532008-12-04 22:38:54 -05007168{
7169 struct Scsi_Host *shost = pci_get_drvdata(pdev);
7170 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
James Smart5b75da22008-12-04 22:39:35 -05007171 uint32_t intr_mode;
James Smart3a55b532008-12-04 22:38:54 -05007172 int error;
7173
7174 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
7175 "0452 PCI device Power Management resume.\n");
7176
7177 /* Restore device state from PCI config space */
7178 pci_set_power_state(pdev, PCI_D0);
7179 pci_restore_state(pdev);
James Smart0d878412009-10-02 15:16:56 -04007180
James Smart1dfb5a42010-02-12 14:40:50 -05007181 /*
7182 * As the new kernel behavior of pci_restore_state() API call clears
7183 * device saved_state flag, need to save the restored state again.
7184 */
7185 pci_save_state(pdev);
7186
James Smart3a55b532008-12-04 22:38:54 -05007187 if (pdev->is_busmaster)
7188 pci_set_master(pdev);
7189
7190 /* Startup the kernel thread for this host adapter. */
7191 phba->worker_thread = kthread_run(lpfc_do_work, phba,
7192 "lpfc_worker_%d", phba->brd_no);
7193 if (IS_ERR(phba->worker_thread)) {
7194 error = PTR_ERR(phba->worker_thread);
7195 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7196 "0434 PM resume failed to start worker "
7197 "thread: error=x%x.\n", error);
7198 return error;
7199 }
7200
James Smart5b75da22008-12-04 22:39:35 -05007201 /* Configure and enable interrupt */
James Smart3772a992009-05-22 14:50:54 -04007202 intr_mode = lpfc_sli_enable_intr(phba, phba->intr_mode);
James Smart5b75da22008-12-04 22:39:35 -05007203 if (intr_mode == LPFC_INTR_ERROR) {
James Smart3a55b532008-12-04 22:38:54 -05007204 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smart5b75da22008-12-04 22:39:35 -05007205 "0430 PM resume Failed to enable interrupt\n");
7206 return -EIO;
7207 } else
7208 phba->intr_mode = intr_mode;
James Smart3a55b532008-12-04 22:38:54 -05007209
7210 /* Restart HBA and bring it online */
7211 lpfc_sli_brdrestart(phba);
7212 lpfc_online(phba);
7213
James Smart5b75da22008-12-04 22:39:35 -05007214 /* Log the current active interrupt mode */
7215 lpfc_log_intr_mode(phba, phba->intr_mode);
7216
James Smart3a55b532008-12-04 22:38:54 -05007217 return 0;
7218}
7219
7220/**
James Smart891478a2009-11-18 15:40:23 -05007221 * lpfc_sli_prep_dev_for_recover - Prepare SLI3 device for pci slot recover
7222 * @phba: pointer to lpfc hba data structure.
7223 *
7224 * This routine is called to prepare the SLI3 device for PCI slot recover. It
7225 * aborts and stops all the on-going I/Os on the pci device.
7226 **/
7227static void
7228lpfc_sli_prep_dev_for_recover(struct lpfc_hba *phba)
7229{
7230 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7231 "2723 PCI channel I/O abort preparing for recovery\n");
7232 /* Prepare for bringing HBA offline */
7233 lpfc_offline_prep(phba);
7234 /* Clear sli active flag to prevent sysfs access to HBA */
7235 spin_lock_irq(&phba->hbalock);
7236 phba->sli.sli_flag &= ~LPFC_SLI_ACTIVE;
7237 spin_unlock_irq(&phba->hbalock);
7238 /* Stop and flush all I/Os and bring HBA offline */
7239 lpfc_offline(phba);
7240}
7241
7242/**
James Smart0d878412009-10-02 15:16:56 -04007243 * lpfc_sli_prep_dev_for_reset - Prepare SLI3 device for pci slot reset
7244 * @phba: pointer to lpfc hba data structure.
7245 *
7246 * This routine is called to prepare the SLI3 device for PCI slot reset. It
7247 * disables the device interrupt and pci device, and aborts the internal FCP
7248 * pending I/Os.
7249 **/
7250static void
7251lpfc_sli_prep_dev_for_reset(struct lpfc_hba *phba)
7252{
7253 struct lpfc_sli *psli = &phba->sli;
7254 struct lpfc_sli_ring *pring;
7255
7256 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smart891478a2009-11-18 15:40:23 -05007257 "2710 PCI channel disable preparing for reset\n");
James Smart0d878412009-10-02 15:16:56 -04007258 /* Disable interrupt and pci device */
7259 lpfc_sli_disable_intr(phba);
7260 pci_disable_device(phba->pcidev);
7261 /*
7262 * There may be I/Os dropped by the firmware.
7263 * Error iocb (I/O) on txcmplq and let the SCSI layer
7264 * retry it after re-establishing link.
7265 */
7266 pring = &psli->ring[psli->fcp_ring];
7267 lpfc_sli_abort_iocb_ring(phba, pring);
7268}
7269
7270/**
7271 * lpfc_sli_prep_dev_for_perm_failure - Prepare SLI3 dev for pci slot disable
7272 * @phba: pointer to lpfc hba data structure.
7273 *
7274 * This routine is called to prepare the SLI3 device for PCI slot permanently
7275 * disabling. It blocks the SCSI transport layer traffic and flushes the FCP
7276 * pending I/Os.
7277 **/
7278static void
7279lpfc_prep_dev_for_perm_failure(struct lpfc_hba *phba)
7280{
7281 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smart891478a2009-11-18 15:40:23 -05007282 "2711 PCI channel permanent disable for failure\n");
James Smart0d878412009-10-02 15:16:56 -04007283 /* Clean up all driver's outstanding SCSI I/Os */
7284 lpfc_sli_flush_fcp_rings(phba);
7285}
7286
7287/**
James Smart3772a992009-05-22 14:50:54 -04007288 * lpfc_io_error_detected_s3 - Method for handling SLI-3 device PCI I/O error
James Smarte59058c2008-08-24 21:49:00 -04007289 * @pdev: pointer to PCI device.
7290 * @state: the current PCI connection state.
Linas Vepstas8d63f372007-02-14 14:28:36 -06007291 *
James Smart3772a992009-05-22 14:50:54 -04007292 * This routine is called from the PCI subsystem for I/O error handling to
7293 * device with SLI-3 interface spec. This function is called by the PCI
7294 * subsystem after a PCI bus error affecting this device has been detected.
7295 * When this function is invoked, it will need to stop all the I/Os and
7296 * interrupt(s) to the device. Once that is done, it will return
7297 * PCI_ERS_RESULT_NEED_RESET for the PCI subsystem to perform proper recovery
7298 * as desired.
James Smarte59058c2008-08-24 21:49:00 -04007299 *
7300 * Return codes
James Smart0d878412009-10-02 15:16:56 -04007301 * PCI_ERS_RESULT_CAN_RECOVER - can be recovered with reset_link
James Smart3772a992009-05-22 14:50:54 -04007302 * PCI_ERS_RESULT_NEED_RESET - need to reset before recovery
7303 * PCI_ERS_RESULT_DISCONNECT - device could not be recovered
James Smarte59058c2008-08-24 21:49:00 -04007304 **/
James Smart3772a992009-05-22 14:50:54 -04007305static pci_ers_result_t
7306lpfc_io_error_detected_s3(struct pci_dev *pdev, pci_channel_state_t state)
Linas Vepstas8d63f372007-02-14 14:28:36 -06007307{
James Smart51ef4c22007-08-02 11:10:31 -04007308 struct Scsi_Host *shost = pci_get_drvdata(pdev);
7309 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
Linas Vepstas8d63f372007-02-14 14:28:36 -06007310
James Smartaacc20e2009-12-21 17:02:51 -05007311 /* Block all SCSI devices' I/Os on the host */
7312 lpfc_scsi_dev_block(phba);
7313
James Smart0d878412009-10-02 15:16:56 -04007314 switch (state) {
7315 case pci_channel_io_normal:
James Smart891478a2009-11-18 15:40:23 -05007316 /* Non-fatal error, prepare for recovery */
7317 lpfc_sli_prep_dev_for_recover(phba);
James Smart0d878412009-10-02 15:16:56 -04007318 return PCI_ERS_RESULT_CAN_RECOVER;
7319 case pci_channel_io_frozen:
7320 /* Fatal error, prepare for slot reset */
7321 lpfc_sli_prep_dev_for_reset(phba);
7322 return PCI_ERS_RESULT_NEED_RESET;
7323 case pci_channel_io_perm_failure:
7324 /* Permanent failure, prepare for device down */
7325 lpfc_prep_dev_for_perm_failure(phba);
Linas Vepstas8d63f372007-02-14 14:28:36 -06007326 return PCI_ERS_RESULT_DISCONNECT;
James Smart0d878412009-10-02 15:16:56 -04007327 default:
7328 /* Unknown state, prepare and request slot reset */
7329 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7330 "0472 Unknown PCI error state: x%x\n", state);
7331 lpfc_sli_prep_dev_for_reset(phba);
7332 return PCI_ERS_RESULT_NEED_RESET;
James Smarta8e497d2008-08-24 21:50:11 -04007333 }
Linas Vepstas8d63f372007-02-14 14:28:36 -06007334}
7335
7336/**
James Smart3772a992009-05-22 14:50:54 -04007337 * lpfc_io_slot_reset_s3 - Method for restarting PCI SLI-3 device from scratch.
James Smarte59058c2008-08-24 21:49:00 -04007338 * @pdev: pointer to PCI device.
Linas Vepstas8d63f372007-02-14 14:28:36 -06007339 *
James Smart3772a992009-05-22 14:50:54 -04007340 * This routine is called from the PCI subsystem for error handling to
7341 * device with SLI-3 interface spec. This is called after PCI bus has been
7342 * reset to restart the PCI card from scratch, as if from a cold-boot.
7343 * During the PCI subsystem error recovery, after driver returns
7344 * PCI_ERS_RESULT_NEED_RESET, the PCI subsystem will perform proper error
7345 * recovery and then call this routine before calling the .resume method
7346 * to recover the device. This function will initialize the HBA device,
7347 * enable the interrupt, but it will just put the HBA to offline state
7348 * without passing any I/O traffic.
James Smarte59058c2008-08-24 21:49:00 -04007349 *
7350 * Return codes
James Smart3772a992009-05-22 14:50:54 -04007351 * PCI_ERS_RESULT_RECOVERED - the device has been recovered
7352 * PCI_ERS_RESULT_DISCONNECT - device could not be recovered
Linas Vepstas8d63f372007-02-14 14:28:36 -06007353 */
James Smart3772a992009-05-22 14:50:54 -04007354static pci_ers_result_t
7355lpfc_io_slot_reset_s3(struct pci_dev *pdev)
Linas Vepstas8d63f372007-02-14 14:28:36 -06007356{
James Smart51ef4c22007-08-02 11:10:31 -04007357 struct Scsi_Host *shost = pci_get_drvdata(pdev);
7358 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
Linas Vepstas8d63f372007-02-14 14:28:36 -06007359 struct lpfc_sli *psli = &phba->sli;
James Smart5b75da22008-12-04 22:39:35 -05007360 uint32_t intr_mode;
Linas Vepstas8d63f372007-02-14 14:28:36 -06007361
7362 dev_printk(KERN_INFO, &pdev->dev, "recovering from a slot reset.\n");
Benjamin Herrenschmidt09483912007-12-20 15:28:09 +11007363 if (pci_enable_device_mem(pdev)) {
Linas Vepstas8d63f372007-02-14 14:28:36 -06007364 printk(KERN_ERR "lpfc: Cannot re-enable "
7365 "PCI device after reset.\n");
7366 return PCI_ERS_RESULT_DISCONNECT;
7367 }
7368
James Smart97207482008-12-04 22:39:19 -05007369 pci_restore_state(pdev);
James Smart1dfb5a42010-02-12 14:40:50 -05007370
7371 /*
7372 * As the new kernel behavior of pci_restore_state() API call clears
7373 * device saved_state flag, need to save the restored state again.
7374 */
7375 pci_save_state(pdev);
7376
James Smart97207482008-12-04 22:39:19 -05007377 if (pdev->is_busmaster)
7378 pci_set_master(pdev);
Linas Vepstas8d63f372007-02-14 14:28:36 -06007379
James Smart92d7f7b2007-06-17 19:56:38 -05007380 spin_lock_irq(&phba->hbalock);
James Smart3772a992009-05-22 14:50:54 -04007381 psli->sli_flag &= ~LPFC_SLI_ACTIVE;
James Smart92d7f7b2007-06-17 19:56:38 -05007382 spin_unlock_irq(&phba->hbalock);
Linas Vepstas8d63f372007-02-14 14:28:36 -06007383
James Smart5b75da22008-12-04 22:39:35 -05007384 /* Configure and enable interrupt */
James Smart3772a992009-05-22 14:50:54 -04007385 intr_mode = lpfc_sli_enable_intr(phba, phba->intr_mode);
James Smart5b75da22008-12-04 22:39:35 -05007386 if (intr_mode == LPFC_INTR_ERROR) {
7387 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7388 "0427 Cannot re-enable interrupt after "
7389 "slot reset.\n");
7390 return PCI_ERS_RESULT_DISCONNECT;
7391 } else
7392 phba->intr_mode = intr_mode;
Linas Vepstas8d63f372007-02-14 14:28:36 -06007393
7394 /* Take device offline; this will perform cleanup */
7395 lpfc_offline(phba);
7396 lpfc_sli_brdrestart(phba);
7397
James Smart5b75da22008-12-04 22:39:35 -05007398 /* Log the current active interrupt mode */
7399 lpfc_log_intr_mode(phba, phba->intr_mode);
7400
Linas Vepstas8d63f372007-02-14 14:28:36 -06007401 return PCI_ERS_RESULT_RECOVERED;
7402}
7403
7404/**
James Smart3772a992009-05-22 14:50:54 -04007405 * lpfc_io_resume_s3 - Method for resuming PCI I/O operation on SLI-3 device.
James Smarte59058c2008-08-24 21:49:00 -04007406 * @pdev: pointer to PCI device
Linas Vepstas8d63f372007-02-14 14:28:36 -06007407 *
James Smart3772a992009-05-22 14:50:54 -04007408 * This routine is called from the PCI subsystem for error handling to device
7409 * with SLI-3 interface spec. It is called when kernel error recovery tells
7410 * the lpfc driver that it is ok to resume normal PCI operation after PCI bus
7411 * error recovery. After this call, traffic can start to flow from this device
7412 * again.
Linas Vepstas8d63f372007-02-14 14:28:36 -06007413 */
James Smart3772a992009-05-22 14:50:54 -04007414static void
7415lpfc_io_resume_s3(struct pci_dev *pdev)
Linas Vepstas8d63f372007-02-14 14:28:36 -06007416{
James Smart51ef4c22007-08-02 11:10:31 -04007417 struct Scsi_Host *shost = pci_get_drvdata(pdev);
7418 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
Linas Vepstas8d63f372007-02-14 14:28:36 -06007419
James Smart0d878412009-10-02 15:16:56 -04007420 /* Bring the device online */
James Smart58da1ff2008-04-07 10:15:56 -04007421 lpfc_online(phba);
James Smart0d878412009-10-02 15:16:56 -04007422
7423 /* Clean up Advanced Error Reporting (AER) if needed */
7424 if (phba->hba_flag & HBA_AER_ENABLED)
7425 pci_cleanup_aer_uncorrect_error_status(pdev);
Linas Vepstas8d63f372007-02-14 14:28:36 -06007426}
7427
James Smart3772a992009-05-22 14:50:54 -04007428/**
James Smartda0436e2009-05-22 14:51:39 -04007429 * lpfc_sli4_get_els_iocb_cnt - Calculate the # of ELS IOCBs to reserve
7430 * @phba: pointer to lpfc hba data structure.
7431 *
7432 * returns the number of ELS/CT IOCBs to reserve
7433 **/
7434int
7435lpfc_sli4_get_els_iocb_cnt(struct lpfc_hba *phba)
7436{
7437 int max_xri = phba->sli4_hba.max_cfg_param.max_xri;
7438
James Smartf1126682009-06-10 17:22:44 -04007439 if (phba->sli_rev == LPFC_SLI_REV4) {
7440 if (max_xri <= 100)
James Smart6a9c52c2009-10-02 15:16:51 -04007441 return 10;
James Smartf1126682009-06-10 17:22:44 -04007442 else if (max_xri <= 256)
James Smart6a9c52c2009-10-02 15:16:51 -04007443 return 25;
James Smartf1126682009-06-10 17:22:44 -04007444 else if (max_xri <= 512)
James Smart6a9c52c2009-10-02 15:16:51 -04007445 return 50;
James Smartf1126682009-06-10 17:22:44 -04007446 else if (max_xri <= 1024)
James Smart6a9c52c2009-10-02 15:16:51 -04007447 return 100;
James Smartf1126682009-06-10 17:22:44 -04007448 else
James Smart6a9c52c2009-10-02 15:16:51 -04007449 return 150;
James Smartf1126682009-06-10 17:22:44 -04007450 } else
7451 return 0;
James Smartda0436e2009-05-22 14:51:39 -04007452}
7453
7454/**
7455 * lpfc_pci_probe_one_s4 - PCI probe func to reg SLI-4 device to PCI subsys
7456 * @pdev: pointer to PCI device
7457 * @pid: pointer to PCI device identifier
7458 *
7459 * This routine is called from the kernel's PCI subsystem to device with
7460 * SLI-4 interface spec. When an Emulex HBA with SLI-4 interface spec is
7461 * presented on PCI bus, the kernel PCI subsystem looks at PCI device-specific
7462 * information of the device and driver to see if the driver state that it
7463 * can support this kind of device. If the match is successful, the driver
7464 * core invokes this routine. If this routine determines it can claim the HBA,
7465 * it does all the initialization that it needs to do to handle the HBA
7466 * properly.
7467 *
7468 * Return code
7469 * 0 - driver can claim the device
7470 * negative value - driver can not claim the device
7471 **/
7472static int __devinit
7473lpfc_pci_probe_one_s4(struct pci_dev *pdev, const struct pci_device_id *pid)
7474{
7475 struct lpfc_hba *phba;
7476 struct lpfc_vport *vport = NULL;
James Smart6669f9b2009-10-02 15:16:45 -04007477 struct Scsi_Host *shost = NULL;
James Smartda0436e2009-05-22 14:51:39 -04007478 int error;
7479 uint32_t cfg_mode, intr_mode;
7480 int mcnt;
7481
7482 /* Allocate memory for HBA structure */
7483 phba = lpfc_hba_alloc(pdev);
7484 if (!phba)
7485 return -ENOMEM;
7486
7487 /* Perform generic PCI device enabling operation */
7488 error = lpfc_enable_pci_dev(phba);
7489 if (error) {
7490 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7491 "1409 Failed to enable pci device.\n");
7492 goto out_free_phba;
7493 }
7494
7495 /* Set up SLI API function jump table for PCI-device group-1 HBAs */
7496 error = lpfc_api_table_setup(phba, LPFC_PCI_DEV_OC);
7497 if (error)
7498 goto out_disable_pci_dev;
7499
7500 /* Set up SLI-4 specific device PCI memory space */
7501 error = lpfc_sli4_pci_mem_setup(phba);
7502 if (error) {
7503 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7504 "1410 Failed to set up pci memory space.\n");
7505 goto out_disable_pci_dev;
7506 }
7507
7508 /* Set up phase-1 common device driver resources */
7509 error = lpfc_setup_driver_resource_phase1(phba);
7510 if (error) {
7511 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7512 "1411 Failed to set up driver resource.\n");
7513 goto out_unset_pci_mem_s4;
7514 }
7515
7516 /* Set up SLI-4 Specific device driver resources */
7517 error = lpfc_sli4_driver_resource_setup(phba);
7518 if (error) {
7519 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7520 "1412 Failed to set up driver resource.\n");
7521 goto out_unset_pci_mem_s4;
7522 }
7523
7524 /* Initialize and populate the iocb list per host */
7525 error = lpfc_init_iocb_list(phba,
7526 phba->sli4_hba.max_cfg_param.max_xri);
7527 if (error) {
7528 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7529 "1413 Failed to initialize iocb list.\n");
7530 goto out_unset_driver_resource_s4;
7531 }
7532
7533 /* Set up common device driver resources */
7534 error = lpfc_setup_driver_resource_phase2(phba);
7535 if (error) {
7536 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7537 "1414 Failed to set up driver resource.\n");
7538 goto out_free_iocb_list;
7539 }
7540
7541 /* Create SCSI host to the physical port */
7542 error = lpfc_create_shost(phba);
7543 if (error) {
7544 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7545 "1415 Failed to create scsi host.\n");
7546 goto out_unset_driver_resource;
7547 }
7548
7549 /* Configure sysfs attributes */
7550 vport = phba->pport;
7551 error = lpfc_alloc_sysfs_attr(vport);
7552 if (error) {
7553 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7554 "1416 Failed to allocate sysfs attr\n");
7555 goto out_destroy_shost;
7556 }
7557
James Smart6669f9b2009-10-02 15:16:45 -04007558 shost = lpfc_shost_from_vport(vport); /* save shost for error cleanup */
James Smartda0436e2009-05-22 14:51:39 -04007559 /* Now, trying to enable interrupt and bring up the device */
7560 cfg_mode = phba->cfg_use_msi;
7561 while (true) {
7562 /* Put device to a known state before enabling interrupt */
7563 lpfc_stop_port(phba);
7564 /* Configure and enable interrupt */
7565 intr_mode = lpfc_sli4_enable_intr(phba, cfg_mode);
7566 if (intr_mode == LPFC_INTR_ERROR) {
7567 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7568 "0426 Failed to enable interrupt.\n");
7569 error = -ENODEV;
7570 goto out_free_sysfs_attr;
7571 }
James Smartdef9c7a2009-12-21 17:02:28 -05007572 /* Default to single FCP EQ for non-MSI-X */
7573 if (phba->intr_type != MSIX)
7574 phba->cfg_fcp_eq_count = 1;
James Smartda0436e2009-05-22 14:51:39 -04007575 /* Set up SLI-4 HBA */
7576 if (lpfc_sli4_hba_setup(phba)) {
7577 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7578 "1421 Failed to set up hba\n");
7579 error = -ENODEV;
7580 goto out_disable_intr;
7581 }
7582
7583 /* Send NOP mbx cmds for non-INTx mode active interrupt test */
7584 if (intr_mode != 0)
7585 mcnt = lpfc_sli4_send_nop_mbox_cmds(phba,
7586 LPFC_ACT_INTR_CNT);
7587
7588 /* Check active interrupts received only for MSI/MSI-X */
7589 if (intr_mode == 0 ||
7590 phba->sli.slistat.sli_intr >= LPFC_ACT_INTR_CNT) {
7591 /* Log the current active interrupt mode */
7592 phba->intr_mode = intr_mode;
7593 lpfc_log_intr_mode(phba, intr_mode);
7594 break;
7595 }
7596 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
7597 "0451 Configure interrupt mode (%d) "
7598 "failed active interrupt test.\n",
7599 intr_mode);
7600 /* Unset the preivous SLI-4 HBA setup */
7601 lpfc_sli4_unset_hba(phba);
7602 /* Try next level of interrupt mode */
7603 cfg_mode = --intr_mode;
7604 }
7605
7606 /* Perform post initialization setup */
7607 lpfc_post_init_setup(phba);
7608
James Smart1c6834a2009-07-19 10:01:26 -04007609 /* Check if there are static vports to be created. */
7610 lpfc_create_static_vport(phba);
7611
James Smartda0436e2009-05-22 14:51:39 -04007612 return 0;
7613
7614out_disable_intr:
7615 lpfc_sli4_disable_intr(phba);
7616out_free_sysfs_attr:
7617 lpfc_free_sysfs_attr(vport);
7618out_destroy_shost:
7619 lpfc_destroy_shost(phba);
7620out_unset_driver_resource:
7621 lpfc_unset_driver_resource_phase2(phba);
7622out_free_iocb_list:
7623 lpfc_free_iocb_list(phba);
7624out_unset_driver_resource_s4:
7625 lpfc_sli4_driver_resource_unset(phba);
7626out_unset_pci_mem_s4:
7627 lpfc_sli4_pci_mem_unset(phba);
7628out_disable_pci_dev:
7629 lpfc_disable_pci_dev(phba);
James Smart6669f9b2009-10-02 15:16:45 -04007630 if (shost)
7631 scsi_host_put(shost);
James Smartda0436e2009-05-22 14:51:39 -04007632out_free_phba:
7633 lpfc_hba_free(phba);
7634 return error;
7635}
7636
7637/**
7638 * lpfc_pci_remove_one_s4 - PCI func to unreg SLI-4 device from PCI subsystem
7639 * @pdev: pointer to PCI device
7640 *
7641 * This routine is called from the kernel's PCI subsystem to device with
7642 * SLI-4 interface spec. When an Emulex HBA with SLI-4 interface spec is
7643 * removed from PCI bus, it performs all the necessary cleanup for the HBA
7644 * device to be removed from the PCI subsystem properly.
7645 **/
7646static void __devexit
7647lpfc_pci_remove_one_s4(struct pci_dev *pdev)
7648{
7649 struct Scsi_Host *shost = pci_get_drvdata(pdev);
7650 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
7651 struct lpfc_vport **vports;
7652 struct lpfc_hba *phba = vport->phba;
7653 int i;
7654
7655 /* Mark the device unloading flag */
7656 spin_lock_irq(&phba->hbalock);
7657 vport->load_flag |= FC_UNLOADING;
7658 spin_unlock_irq(&phba->hbalock);
7659
7660 /* Free the HBA sysfs attributes */
7661 lpfc_free_sysfs_attr(vport);
7662
7663 /* Release all the vports against this physical port */
7664 vports = lpfc_create_vport_work_array(phba);
7665 if (vports != NULL)
7666 for (i = 1; i <= phba->max_vports && vports[i] != NULL; i++)
7667 fc_vport_terminate(vports[i]->fc_vport);
7668 lpfc_destroy_vport_work_array(phba, vports);
7669
7670 /* Remove FC host and then SCSI host with the physical port */
7671 fc_remove_host(shost);
7672 scsi_remove_host(shost);
7673
7674 /* Perform cleanup on the physical port */
7675 lpfc_cleanup(vport);
7676
7677 /*
7678 * Bring down the SLI Layer. This step disables all interrupts,
7679 * clears the rings, discards all mailbox commands, and resets
7680 * the HBA FCoE function.
7681 */
7682 lpfc_debugfs_terminate(vport);
7683 lpfc_sli4_hba_unset(phba);
7684
7685 spin_lock_irq(&phba->hbalock);
7686 list_del_init(&vport->listentry);
7687 spin_unlock_irq(&phba->hbalock);
7688
7689 /* Call scsi_free before lpfc_sli4_driver_resource_unset since scsi
7690 * buffers are released to their corresponding pools here.
7691 */
7692 lpfc_scsi_free(phba);
7693 lpfc_sli4_driver_resource_unset(phba);
7694
7695 /* Unmap adapter Control and Doorbell registers */
7696 lpfc_sli4_pci_mem_unset(phba);
7697
7698 /* Release PCI resources and disable device's PCI function */
7699 scsi_host_put(shost);
7700 lpfc_disable_pci_dev(phba);
7701
7702 /* Finally, free the driver's device data structure */
7703 lpfc_hba_free(phba);
7704
7705 return;
7706}
7707
7708/**
7709 * lpfc_pci_suspend_one_s4 - PCI func to suspend SLI-4 device for power mgmnt
7710 * @pdev: pointer to PCI device
7711 * @msg: power management message
7712 *
7713 * This routine is called from the kernel's PCI subsystem to support system
7714 * Power Management (PM) to device with SLI-4 interface spec. When PM invokes
7715 * this method, it quiesces the device by stopping the driver's worker
7716 * thread for the device, turning off device's interrupt and DMA, and bring
7717 * the device offline. Note that as the driver implements the minimum PM
7718 * requirements to a power-aware driver's PM support for suspend/resume -- all
7719 * the possible PM messages (SUSPEND, HIBERNATE, FREEZE) to the suspend()
7720 * method call will be treated as SUSPEND and the driver will fully
7721 * reinitialize its device during resume() method call, the driver will set
7722 * device to PCI_D3hot state in PCI config space instead of setting it
7723 * according to the @msg provided by the PM.
7724 *
7725 * Return code
7726 * 0 - driver suspended the device
7727 * Error otherwise
7728 **/
7729static int
7730lpfc_pci_suspend_one_s4(struct pci_dev *pdev, pm_message_t msg)
7731{
7732 struct Scsi_Host *shost = pci_get_drvdata(pdev);
7733 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
7734
7735 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
7736 "0298 PCI device Power Management suspend.\n");
7737
7738 /* Bring down the device */
7739 lpfc_offline_prep(phba);
7740 lpfc_offline(phba);
7741 kthread_stop(phba->worker_thread);
7742
7743 /* Disable interrupt from device */
7744 lpfc_sli4_disable_intr(phba);
7745
7746 /* Save device state to PCI config space */
7747 pci_save_state(pdev);
7748 pci_set_power_state(pdev, PCI_D3hot);
7749
7750 return 0;
7751}
7752
7753/**
7754 * lpfc_pci_resume_one_s4 - PCI func to resume SLI-4 device for power mgmnt
7755 * @pdev: pointer to PCI device
7756 *
7757 * This routine is called from the kernel's PCI subsystem to support system
7758 * Power Management (PM) to device with SLI-4 interface spac. When PM invokes
7759 * this method, it restores the device's PCI config space state and fully
7760 * reinitializes the device and brings it online. Note that as the driver
7761 * implements the minimum PM requirements to a power-aware driver's PM for
7762 * suspend/resume -- all the possible PM messages (SUSPEND, HIBERNATE, FREEZE)
7763 * to the suspend() method call will be treated as SUSPEND and the driver
7764 * will fully reinitialize its device during resume() method call, the device
7765 * will be set to PCI_D0 directly in PCI config space before restoring the
7766 * state.
7767 *
7768 * Return code
7769 * 0 - driver suspended the device
7770 * Error otherwise
7771 **/
7772static int
7773lpfc_pci_resume_one_s4(struct pci_dev *pdev)
7774{
7775 struct Scsi_Host *shost = pci_get_drvdata(pdev);
7776 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
7777 uint32_t intr_mode;
7778 int error;
7779
7780 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
7781 "0292 PCI device Power Management resume.\n");
7782
7783 /* Restore device state from PCI config space */
7784 pci_set_power_state(pdev, PCI_D0);
7785 pci_restore_state(pdev);
James Smart1dfb5a42010-02-12 14:40:50 -05007786
7787 /*
7788 * As the new kernel behavior of pci_restore_state() API call clears
7789 * device saved_state flag, need to save the restored state again.
7790 */
7791 pci_save_state(pdev);
7792
James Smartda0436e2009-05-22 14:51:39 -04007793 if (pdev->is_busmaster)
7794 pci_set_master(pdev);
7795
7796 /* Startup the kernel thread for this host adapter. */
7797 phba->worker_thread = kthread_run(lpfc_do_work, phba,
7798 "lpfc_worker_%d", phba->brd_no);
7799 if (IS_ERR(phba->worker_thread)) {
7800 error = PTR_ERR(phba->worker_thread);
7801 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7802 "0293 PM resume failed to start worker "
7803 "thread: error=x%x.\n", error);
7804 return error;
7805 }
7806
7807 /* Configure and enable interrupt */
7808 intr_mode = lpfc_sli4_enable_intr(phba, phba->intr_mode);
7809 if (intr_mode == LPFC_INTR_ERROR) {
7810 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7811 "0294 PM resume Failed to enable interrupt\n");
7812 return -EIO;
7813 } else
7814 phba->intr_mode = intr_mode;
7815
7816 /* Restart HBA and bring it online */
7817 lpfc_sli_brdrestart(phba);
7818 lpfc_online(phba);
7819
7820 /* Log the current active interrupt mode */
7821 lpfc_log_intr_mode(phba, phba->intr_mode);
7822
7823 return 0;
7824}
7825
7826/**
7827 * lpfc_io_error_detected_s4 - Method for handling PCI I/O error to SLI-4 device
7828 * @pdev: pointer to PCI device.
7829 * @state: the current PCI connection state.
7830 *
7831 * This routine is called from the PCI subsystem for error handling to device
7832 * with SLI-4 interface spec. This function is called by the PCI subsystem
7833 * after a PCI bus error affecting this device has been detected. When this
7834 * function is invoked, it will need to stop all the I/Os and interrupt(s)
7835 * to the device. Once that is done, it will return PCI_ERS_RESULT_NEED_RESET
7836 * for the PCI subsystem to perform proper recovery as desired.
7837 *
7838 * Return codes
7839 * PCI_ERS_RESULT_NEED_RESET - need to reset before recovery
7840 * PCI_ERS_RESULT_DISCONNECT - device could not be recovered
7841 **/
7842static pci_ers_result_t
7843lpfc_io_error_detected_s4(struct pci_dev *pdev, pci_channel_state_t state)
7844{
7845 return PCI_ERS_RESULT_NEED_RESET;
7846}
7847
7848/**
7849 * lpfc_io_slot_reset_s4 - Method for restart PCI SLI-4 device from scratch
7850 * @pdev: pointer to PCI device.
7851 *
7852 * This routine is called from the PCI subsystem for error handling to device
7853 * with SLI-4 interface spec. It is called after PCI bus has been reset to
7854 * restart the PCI card from scratch, as if from a cold-boot. During the
7855 * PCI subsystem error recovery, after the driver returns
7856 * PCI_ERS_RESULT_NEED_RESET, the PCI subsystem will perform proper error
7857 * recovery and then call this routine before calling the .resume method to
7858 * recover the device. This function will initialize the HBA device, enable
7859 * the interrupt, but it will just put the HBA to offline state without
7860 * passing any I/O traffic.
7861 *
7862 * Return codes
7863 * PCI_ERS_RESULT_RECOVERED - the device has been recovered
7864 * PCI_ERS_RESULT_DISCONNECT - device could not be recovered
7865 */
7866static pci_ers_result_t
7867lpfc_io_slot_reset_s4(struct pci_dev *pdev)
7868{
7869 return PCI_ERS_RESULT_RECOVERED;
7870}
7871
7872/**
7873 * lpfc_io_resume_s4 - Method for resuming PCI I/O operation to SLI-4 device
7874 * @pdev: pointer to PCI device
7875 *
7876 * This routine is called from the PCI subsystem for error handling to device
7877 * with SLI-4 interface spec. It is called when kernel error recovery tells
7878 * the lpfc driver that it is ok to resume normal PCI operation after PCI bus
7879 * error recovery. After this call, traffic can start to flow from this device
7880 * again.
7881 **/
7882static void
7883lpfc_io_resume_s4(struct pci_dev *pdev)
7884{
7885 return;
7886}
7887
7888/**
James Smart3772a992009-05-22 14:50:54 -04007889 * lpfc_pci_probe_one - lpfc PCI probe func to reg dev to PCI subsystem
7890 * @pdev: pointer to PCI device
7891 * @pid: pointer to PCI device identifier
7892 *
7893 * This routine is to be registered to the kernel's PCI subsystem. When an
7894 * Emulex HBA device is presented on PCI bus, the kernel PCI subsystem looks
7895 * at PCI device-specific information of the device and driver to see if the
7896 * driver state that it can support this kind of device. If the match is
7897 * successful, the driver core invokes this routine. This routine dispatches
7898 * the action to the proper SLI-3 or SLI-4 device probing routine, which will
7899 * do all the initialization that it needs to do to handle the HBA device
7900 * properly.
7901 *
7902 * Return code
7903 * 0 - driver can claim the device
7904 * negative value - driver can not claim the device
7905 **/
7906static int __devinit
7907lpfc_pci_probe_one(struct pci_dev *pdev, const struct pci_device_id *pid)
7908{
7909 int rc;
James Smart8fa38512009-07-19 10:01:03 -04007910 struct lpfc_sli_intf intf;
James Smart3772a992009-05-22 14:50:54 -04007911
James Smart8fa38512009-07-19 10:01:03 -04007912 if (pci_read_config_dword(pdev, LPFC_SLIREV_CONF_WORD, &intf.word0))
James Smart3772a992009-05-22 14:50:54 -04007913 return -ENODEV;
7914
James Smart8fa38512009-07-19 10:01:03 -04007915 if ((bf_get(lpfc_sli_intf_valid, &intf) == LPFC_SLI_INTF_VALID) &&
7916 (bf_get(lpfc_sli_intf_rev, &intf) == LPFC_SLIREV_CONF_SLI4))
James Smartda0436e2009-05-22 14:51:39 -04007917 rc = lpfc_pci_probe_one_s4(pdev, pid);
James Smart8fa38512009-07-19 10:01:03 -04007918 else
James Smart3772a992009-05-22 14:50:54 -04007919 rc = lpfc_pci_probe_one_s3(pdev, pid);
James Smart8fa38512009-07-19 10:01:03 -04007920
James Smart3772a992009-05-22 14:50:54 -04007921 return rc;
7922}
7923
7924/**
7925 * lpfc_pci_remove_one - lpfc PCI func to unreg dev from PCI subsystem
7926 * @pdev: pointer to PCI device
7927 *
7928 * This routine is to be registered to the kernel's PCI subsystem. When an
7929 * Emulex HBA is removed from PCI bus, the driver core invokes this routine.
7930 * This routine dispatches the action to the proper SLI-3 or SLI-4 device
7931 * remove routine, which will perform all the necessary cleanup for the
7932 * device to be removed from the PCI subsystem properly.
7933 **/
7934static void __devexit
7935lpfc_pci_remove_one(struct pci_dev *pdev)
7936{
7937 struct Scsi_Host *shost = pci_get_drvdata(pdev);
7938 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
7939
7940 switch (phba->pci_dev_grp) {
7941 case LPFC_PCI_DEV_LP:
7942 lpfc_pci_remove_one_s3(pdev);
7943 break;
James Smartda0436e2009-05-22 14:51:39 -04007944 case LPFC_PCI_DEV_OC:
7945 lpfc_pci_remove_one_s4(pdev);
7946 break;
James Smart3772a992009-05-22 14:50:54 -04007947 default:
7948 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7949 "1424 Invalid PCI device group: 0x%x\n",
7950 phba->pci_dev_grp);
7951 break;
7952 }
7953 return;
7954}
7955
7956/**
7957 * lpfc_pci_suspend_one - lpfc PCI func to suspend dev for power management
7958 * @pdev: pointer to PCI device
7959 * @msg: power management message
7960 *
7961 * This routine is to be registered to the kernel's PCI subsystem to support
7962 * system Power Management (PM). When PM invokes this method, it dispatches
7963 * the action to the proper SLI-3 or SLI-4 device suspend routine, which will
7964 * suspend the device.
7965 *
7966 * Return code
7967 * 0 - driver suspended the device
7968 * Error otherwise
7969 **/
7970static int
7971lpfc_pci_suspend_one(struct pci_dev *pdev, pm_message_t msg)
7972{
7973 struct Scsi_Host *shost = pci_get_drvdata(pdev);
7974 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
7975 int rc = -ENODEV;
7976
7977 switch (phba->pci_dev_grp) {
7978 case LPFC_PCI_DEV_LP:
7979 rc = lpfc_pci_suspend_one_s3(pdev, msg);
7980 break;
James Smartda0436e2009-05-22 14:51:39 -04007981 case LPFC_PCI_DEV_OC:
7982 rc = lpfc_pci_suspend_one_s4(pdev, msg);
7983 break;
James Smart3772a992009-05-22 14:50:54 -04007984 default:
7985 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7986 "1425 Invalid PCI device group: 0x%x\n",
7987 phba->pci_dev_grp);
7988 break;
7989 }
7990 return rc;
7991}
7992
7993/**
7994 * lpfc_pci_resume_one - lpfc PCI func to resume dev for power management
7995 * @pdev: pointer to PCI device
7996 *
7997 * This routine is to be registered to the kernel's PCI subsystem to support
7998 * system Power Management (PM). When PM invokes this method, it dispatches
7999 * the action to the proper SLI-3 or SLI-4 device resume routine, which will
8000 * resume the device.
8001 *
8002 * Return code
8003 * 0 - driver suspended the device
8004 * Error otherwise
8005 **/
8006static int
8007lpfc_pci_resume_one(struct pci_dev *pdev)
8008{
8009 struct Scsi_Host *shost = pci_get_drvdata(pdev);
8010 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
8011 int rc = -ENODEV;
8012
8013 switch (phba->pci_dev_grp) {
8014 case LPFC_PCI_DEV_LP:
8015 rc = lpfc_pci_resume_one_s3(pdev);
8016 break;
James Smartda0436e2009-05-22 14:51:39 -04008017 case LPFC_PCI_DEV_OC:
8018 rc = lpfc_pci_resume_one_s4(pdev);
8019 break;
James Smart3772a992009-05-22 14:50:54 -04008020 default:
8021 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
8022 "1426 Invalid PCI device group: 0x%x\n",
8023 phba->pci_dev_grp);
8024 break;
8025 }
8026 return rc;
8027}
8028
8029/**
8030 * lpfc_io_error_detected - lpfc method for handling PCI I/O error
8031 * @pdev: pointer to PCI device.
8032 * @state: the current PCI connection state.
8033 *
8034 * This routine is registered to the PCI subsystem for error handling. This
8035 * function is called by the PCI subsystem after a PCI bus error affecting
8036 * this device has been detected. When this routine is invoked, it dispatches
8037 * the action to the proper SLI-3 or SLI-4 device error detected handling
8038 * routine, which will perform the proper error detected operation.
8039 *
8040 * Return codes
8041 * PCI_ERS_RESULT_NEED_RESET - need to reset before recovery
8042 * PCI_ERS_RESULT_DISCONNECT - device could not be recovered
8043 **/
8044static pci_ers_result_t
8045lpfc_io_error_detected(struct pci_dev *pdev, pci_channel_state_t state)
8046{
8047 struct Scsi_Host *shost = pci_get_drvdata(pdev);
8048 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
8049 pci_ers_result_t rc = PCI_ERS_RESULT_DISCONNECT;
8050
8051 switch (phba->pci_dev_grp) {
8052 case LPFC_PCI_DEV_LP:
8053 rc = lpfc_io_error_detected_s3(pdev, state);
8054 break;
James Smartda0436e2009-05-22 14:51:39 -04008055 case LPFC_PCI_DEV_OC:
8056 rc = lpfc_io_error_detected_s4(pdev, state);
8057 break;
James Smart3772a992009-05-22 14:50:54 -04008058 default:
8059 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
8060 "1427 Invalid PCI device group: 0x%x\n",
8061 phba->pci_dev_grp);
8062 break;
8063 }
8064 return rc;
8065}
8066
8067/**
8068 * lpfc_io_slot_reset - lpfc method for restart PCI dev from scratch
8069 * @pdev: pointer to PCI device.
8070 *
8071 * This routine is registered to the PCI subsystem for error handling. This
8072 * function is called after PCI bus has been reset to restart the PCI card
8073 * from scratch, as if from a cold-boot. When this routine is invoked, it
8074 * dispatches the action to the proper SLI-3 or SLI-4 device reset handling
8075 * routine, which will perform the proper device reset.
8076 *
8077 * Return codes
8078 * PCI_ERS_RESULT_RECOVERED - the device has been recovered
8079 * PCI_ERS_RESULT_DISCONNECT - device could not be recovered
8080 **/
8081static pci_ers_result_t
8082lpfc_io_slot_reset(struct pci_dev *pdev)
8083{
8084 struct Scsi_Host *shost = pci_get_drvdata(pdev);
8085 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
8086 pci_ers_result_t rc = PCI_ERS_RESULT_DISCONNECT;
8087
8088 switch (phba->pci_dev_grp) {
8089 case LPFC_PCI_DEV_LP:
8090 rc = lpfc_io_slot_reset_s3(pdev);
8091 break;
James Smartda0436e2009-05-22 14:51:39 -04008092 case LPFC_PCI_DEV_OC:
8093 rc = lpfc_io_slot_reset_s4(pdev);
8094 break;
James Smart3772a992009-05-22 14:50:54 -04008095 default:
8096 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
8097 "1428 Invalid PCI device group: 0x%x\n",
8098 phba->pci_dev_grp);
8099 break;
8100 }
8101 return rc;
8102}
8103
8104/**
8105 * lpfc_io_resume - lpfc method for resuming PCI I/O operation
8106 * @pdev: pointer to PCI device
8107 *
8108 * This routine is registered to the PCI subsystem for error handling. It
8109 * is called when kernel error recovery tells the lpfc driver that it is
8110 * OK to resume normal PCI operation after PCI bus error recovery. When
8111 * this routine is invoked, it dispatches the action to the proper SLI-3
8112 * or SLI-4 device io_resume routine, which will resume the device operation.
8113 **/
8114static void
8115lpfc_io_resume(struct pci_dev *pdev)
8116{
8117 struct Scsi_Host *shost = pci_get_drvdata(pdev);
8118 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
8119
8120 switch (phba->pci_dev_grp) {
8121 case LPFC_PCI_DEV_LP:
8122 lpfc_io_resume_s3(pdev);
8123 break;
James Smartda0436e2009-05-22 14:51:39 -04008124 case LPFC_PCI_DEV_OC:
8125 lpfc_io_resume_s4(pdev);
8126 break;
James Smart3772a992009-05-22 14:50:54 -04008127 default:
8128 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
8129 "1429 Invalid PCI device group: 0x%x\n",
8130 phba->pci_dev_grp);
8131 break;
8132 }
8133 return;
8134}
8135
dea31012005-04-17 16:05:31 -05008136static struct pci_device_id lpfc_id_table[] = {
8137 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_VIPER,
8138 PCI_ANY_ID, PCI_ANY_ID, },
James.Smart@Emulex.Com06325e72005-06-25 10:34:22 -04008139 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_FIREFLY,
8140 PCI_ANY_ID, PCI_ANY_ID, },
dea31012005-04-17 16:05:31 -05008141 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_THOR,
8142 PCI_ANY_ID, PCI_ANY_ID, },
8143 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_PEGASUS,
8144 PCI_ANY_ID, PCI_ANY_ID, },
8145 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_CENTAUR,
8146 PCI_ANY_ID, PCI_ANY_ID, },
8147 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_DRAGONFLY,
8148 PCI_ANY_ID, PCI_ANY_ID, },
8149 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_SUPERFLY,
8150 PCI_ANY_ID, PCI_ANY_ID, },
8151 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_RFLY,
8152 PCI_ANY_ID, PCI_ANY_ID, },
8153 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_PFLY,
8154 PCI_ANY_ID, PCI_ANY_ID, },
James.Smart@Emulex.Come4adb202005-11-28 11:42:12 -05008155 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_NEPTUNE,
8156 PCI_ANY_ID, PCI_ANY_ID, },
8157 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_NEPTUNE_SCSP,
8158 PCI_ANY_ID, PCI_ANY_ID, },
8159 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_NEPTUNE_DCSP,
8160 PCI_ANY_ID, PCI_ANY_ID, },
dea31012005-04-17 16:05:31 -05008161 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_HELIOS,
8162 PCI_ANY_ID, PCI_ANY_ID, },
James.Smart@Emulex.Come4adb202005-11-28 11:42:12 -05008163 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_HELIOS_SCSP,
8164 PCI_ANY_ID, PCI_ANY_ID, },
8165 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_HELIOS_DCSP,
8166 PCI_ANY_ID, PCI_ANY_ID, },
dea31012005-04-17 16:05:31 -05008167 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_BMID,
8168 PCI_ANY_ID, PCI_ANY_ID, },
8169 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_BSMB,
8170 PCI_ANY_ID, PCI_ANY_ID, },
8171 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_ZEPHYR,
8172 PCI_ANY_ID, PCI_ANY_ID, },
James Smart84774a42008-08-24 21:50:06 -04008173 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_HORNET,
8174 PCI_ANY_ID, PCI_ANY_ID, },
James.Smart@Emulex.Come4adb202005-11-28 11:42:12 -05008175 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_ZEPHYR_SCSP,
8176 PCI_ANY_ID, PCI_ANY_ID, },
8177 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_ZEPHYR_DCSP,
8178 PCI_ANY_ID, PCI_ANY_ID, },
dea31012005-04-17 16:05:31 -05008179 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_ZMID,
8180 PCI_ANY_ID, PCI_ANY_ID, },
8181 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_ZSMB,
8182 PCI_ANY_ID, PCI_ANY_ID, },
8183 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_TFLY,
8184 PCI_ANY_ID, PCI_ANY_ID, },
8185 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_LP101,
8186 PCI_ANY_ID, PCI_ANY_ID, },
8187 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_LP10000S,
8188 PCI_ANY_ID, PCI_ANY_ID, },
James.Smart@Emulex.Come4adb202005-11-28 11:42:12 -05008189 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_LP11000S,
8190 PCI_ANY_ID, PCI_ANY_ID, },
8191 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_LPE11000S,
8192 PCI_ANY_ID, PCI_ANY_ID, },
James Smartb87eab32007-04-25 09:53:28 -04008193 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_SAT,
8194 PCI_ANY_ID, PCI_ANY_ID, },
8195 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_SAT_MID,
8196 PCI_ANY_ID, PCI_ANY_ID, },
8197 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_SAT_SMB,
8198 PCI_ANY_ID, PCI_ANY_ID, },
8199 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_SAT_DCSP,
8200 PCI_ANY_ID, PCI_ANY_ID, },
8201 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_SAT_SCSP,
8202 PCI_ANY_ID, PCI_ANY_ID, },
8203 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_SAT_S,
8204 PCI_ANY_ID, PCI_ANY_ID, },
James Smart84774a42008-08-24 21:50:06 -04008205 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_PROTEUS_VF,
8206 PCI_ANY_ID, PCI_ANY_ID, },
8207 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_PROTEUS_PF,
8208 PCI_ANY_ID, PCI_ANY_ID, },
8209 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_PROTEUS_S,
8210 PCI_ANY_ID, PCI_ANY_ID, },
James Smart3772a992009-05-22 14:50:54 -04008211 {PCI_VENDOR_ID_SERVERENGINE, PCI_DEVICE_ID_TIGERSHARK,
8212 PCI_ANY_ID, PCI_ANY_ID, },
James Smarta747c9c2009-11-18 15:41:10 -05008213 {PCI_VENDOR_ID_SERVERENGINE, PCI_DEVICE_ID_TOMCAT,
8214 PCI_ANY_ID, PCI_ANY_ID, },
8215 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_FALCON,
James Smart6669f9b2009-10-02 15:16:45 -04008216 PCI_ANY_ID, PCI_ANY_ID, },
dea31012005-04-17 16:05:31 -05008217 { 0 }
8218};
8219
8220MODULE_DEVICE_TABLE(pci, lpfc_id_table);
8221
Linas Vepstas8d63f372007-02-14 14:28:36 -06008222static struct pci_error_handlers lpfc_err_handler = {
8223 .error_detected = lpfc_io_error_detected,
8224 .slot_reset = lpfc_io_slot_reset,
8225 .resume = lpfc_io_resume,
8226};
8227
dea31012005-04-17 16:05:31 -05008228static struct pci_driver lpfc_driver = {
8229 .name = LPFC_DRIVER_NAME,
8230 .id_table = lpfc_id_table,
8231 .probe = lpfc_pci_probe_one,
8232 .remove = __devexit_p(lpfc_pci_remove_one),
James Smart3a55b532008-12-04 22:38:54 -05008233 .suspend = lpfc_pci_suspend_one,
James Smart3772a992009-05-22 14:50:54 -04008234 .resume = lpfc_pci_resume_one,
James Smart2e0fef82007-06-17 19:56:36 -05008235 .err_handler = &lpfc_err_handler,
dea31012005-04-17 16:05:31 -05008236};
8237
James Smarte59058c2008-08-24 21:49:00 -04008238/**
James Smart3621a712009-04-06 18:47:14 -04008239 * lpfc_init - lpfc module initialization routine
James Smarte59058c2008-08-24 21:49:00 -04008240 *
8241 * This routine is to be invoked when the lpfc module is loaded into the
8242 * kernel. The special kernel macro module_init() is used to indicate the
8243 * role of this routine to the kernel as lpfc module entry point.
8244 *
8245 * Return codes
8246 * 0 - successful
8247 * -ENOMEM - FC attach transport failed
8248 * all others - failed
8249 */
dea31012005-04-17 16:05:31 -05008250static int __init
8251lpfc_init(void)
8252{
8253 int error = 0;
8254
8255 printk(LPFC_MODULE_DESC "\n");
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -04008256 printk(LPFC_COPYRIGHT "\n");
dea31012005-04-17 16:05:31 -05008257
James Smart7ee5d432007-10-27 13:37:17 -04008258 if (lpfc_enable_npiv) {
8259 lpfc_transport_functions.vport_create = lpfc_vport_create;
8260 lpfc_transport_functions.vport_delete = lpfc_vport_delete;
8261 }
dea31012005-04-17 16:05:31 -05008262 lpfc_transport_template =
8263 fc_attach_transport(&lpfc_transport_functions);
James Smart7ee5d432007-10-27 13:37:17 -04008264 if (lpfc_transport_template == NULL)
dea31012005-04-17 16:05:31 -05008265 return -ENOMEM;
James Smart7ee5d432007-10-27 13:37:17 -04008266 if (lpfc_enable_npiv) {
James Smart7ee5d432007-10-27 13:37:17 -04008267 lpfc_vport_transport_template =
James Smart98c9ea52007-10-27 13:37:33 -04008268 fc_attach_transport(&lpfc_vport_transport_functions);
8269 if (lpfc_vport_transport_template == NULL) {
8270 fc_release_transport(lpfc_transport_template);
James Smart7ee5d432007-10-27 13:37:17 -04008271 return -ENOMEM;
James Smart98c9ea52007-10-27 13:37:33 -04008272 }
James Smart7ee5d432007-10-27 13:37:17 -04008273 }
dea31012005-04-17 16:05:31 -05008274 error = pci_register_driver(&lpfc_driver);
James Smart92d7f7b2007-06-17 19:56:38 -05008275 if (error) {
dea31012005-04-17 16:05:31 -05008276 fc_release_transport(lpfc_transport_template);
James Smartd7c255b2008-08-24 21:50:00 -04008277 if (lpfc_enable_npiv)
8278 fc_release_transport(lpfc_vport_transport_template);
James Smart92d7f7b2007-06-17 19:56:38 -05008279 }
dea31012005-04-17 16:05:31 -05008280
8281 return error;
8282}
8283
James Smarte59058c2008-08-24 21:49:00 -04008284/**
James Smart3621a712009-04-06 18:47:14 -04008285 * lpfc_exit - lpfc module removal routine
James Smarte59058c2008-08-24 21:49:00 -04008286 *
8287 * This routine is invoked when the lpfc module is removed from the kernel.
8288 * The special kernel macro module_exit() is used to indicate the role of
8289 * this routine to the kernel as lpfc module exit point.
8290 */
dea31012005-04-17 16:05:31 -05008291static void __exit
8292lpfc_exit(void)
8293{
8294 pci_unregister_driver(&lpfc_driver);
8295 fc_release_transport(lpfc_transport_template);
James Smart7ee5d432007-10-27 13:37:17 -04008296 if (lpfc_enable_npiv)
8297 fc_release_transport(lpfc_vport_transport_template);
James Smart81301a92008-12-04 22:39:46 -05008298 if (_dump_buf_data) {
James Smart6a9c52c2009-10-02 15:16:51 -04008299 printk(KERN_ERR "9062 BLKGRD: freeing %lu pages for "
8300 "_dump_buf_data at 0x%p\n",
James Smart81301a92008-12-04 22:39:46 -05008301 (1L << _dump_buf_data_order), _dump_buf_data);
8302 free_pages((unsigned long)_dump_buf_data, _dump_buf_data_order);
8303 }
8304
8305 if (_dump_buf_dif) {
James Smart6a9c52c2009-10-02 15:16:51 -04008306 printk(KERN_ERR "9049 BLKGRD: freeing %lu pages for "
8307 "_dump_buf_dif at 0x%p\n",
James Smart81301a92008-12-04 22:39:46 -05008308 (1L << _dump_buf_dif_order), _dump_buf_dif);
8309 free_pages((unsigned long)_dump_buf_dif, _dump_buf_dif_order);
8310 }
dea31012005-04-17 16:05:31 -05008311}
8312
8313module_init(lpfc_init);
8314module_exit(lpfc_exit);
8315MODULE_LICENSE("GPL");
8316MODULE_DESCRIPTION(LPFC_MODULE_DESC);
8317MODULE_AUTHOR("Emulex Corporation - tech.support@emulex.com");
8318MODULE_VERSION("0:" LPFC_DRIVER_VERSION);