[SCSI] lpfc 8.3.20: Implement the FC and SLI async event handlers
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / scsi / lpfc / lpfc_init.c
CommitLineData
dea3101e
JB
1/*******************************************************************
2 * This file is part of the Emulex Linux Device Driver for *
c44ce173 3 * Fibre Channel Host Bus Adapters. *
4fede78f 4 * Copyright (C) 2004-2010 Emulex. All rights reserved. *
c44ce173 5 * EMULEX and SLI are trademarks of Emulex. *
dea3101e 6 * www.emulex.com *
c44ce173 7 * Portions Copyright (C) 2004-2005 Christoph Hellwig *
dea3101e
JB
8 * *
9 * This program is free software; you can redistribute it and/or *
c44ce173
JSEC
10 * modify it under the terms of version 2 of the GNU General *
11 * Public License as published by the Free Software Foundation. *
12 * This program is distributed in the hope that it will be useful. *
13 * ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND *
14 * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, *
15 * FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE *
16 * DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD *
17 * TO BE LEGALLY INVALID. See the GNU General Public License for *
18 * more details, a copy of which can be found in the file COPYING *
19 * included with this package. *
dea3101e
JB
20 *******************************************************************/
21
dea3101e
JB
22#include <linux/blkdev.h>
23#include <linux/delay.h>
24#include <linux/dma-mapping.h>
25#include <linux/idr.h>
26#include <linux/interrupt.h>
27#include <linux/kthread.h>
28#include <linux/pci.h>
29#include <linux/spinlock.h>
92d7f7b0 30#include <linux/ctype.h>
0d878419 31#include <linux/aer.h>
5a0e3ad6 32#include <linux/slab.h>
dea3101e 33
91886523 34#include <scsi/scsi.h>
dea3101e
JB
35#include <scsi/scsi_device.h>
36#include <scsi/scsi_host.h>
37#include <scsi/scsi_transport_fc.h>
38
da0436e9 39#include "lpfc_hw4.h"
dea3101e
JB
40#include "lpfc_hw.h"
41#include "lpfc_sli.h"
da0436e9 42#include "lpfc_sli4.h"
ea2151b4 43#include "lpfc_nl.h"
dea3101e
JB
44#include "lpfc_disc.h"
45#include "lpfc_scsi.h"
46#include "lpfc.h"
47#include "lpfc_logmsg.h"
48#include "lpfc_crtn.h"
92d7f7b0 49#include "lpfc_vport.h"
dea3101e
JB
50#include "lpfc_version.h"
51
81301a9b
JS
52char *_dump_buf_data;
53unsigned long _dump_buf_data_order;
54char *_dump_buf_dif;
55unsigned long _dump_buf_dif_order;
56spinlock_t _dump_buf_lock;
57
dea3101e
JB
58static void lpfc_get_hba_model_desc(struct lpfc_hba *, uint8_t *, uint8_t *);
59static int lpfc_post_rcv_buf(struct lpfc_hba *);
da0436e9
JS
60static int lpfc_sli4_queue_create(struct lpfc_hba *);
61static void lpfc_sli4_queue_destroy(struct lpfc_hba *);
62static int lpfc_create_bootstrap_mbox(struct lpfc_hba *);
63static int lpfc_setup_endian_order(struct lpfc_hba *);
64static int lpfc_sli4_read_config(struct lpfc_hba *);
65static void lpfc_destroy_bootstrap_mbox(struct lpfc_hba *);
66static void lpfc_free_sgl_list(struct lpfc_hba *);
67static int lpfc_init_sgl_list(struct lpfc_hba *);
68static int lpfc_init_active_sgl_array(struct lpfc_hba *);
69static void lpfc_free_active_sgl(struct lpfc_hba *);
70static int lpfc_hba_down_post_s3(struct lpfc_hba *phba);
71static int lpfc_hba_down_post_s4(struct lpfc_hba *phba);
72static int lpfc_sli4_cq_event_pool_create(struct lpfc_hba *);
73static void lpfc_sli4_cq_event_pool_destroy(struct lpfc_hba *);
74static void lpfc_sli4_cq_event_release_all(struct lpfc_hba *);
dea3101e
JB
75
76static struct scsi_transport_template *lpfc_transport_template = NULL;
92d7f7b0 77static struct scsi_transport_template *lpfc_vport_transport_template = NULL;
dea3101e
JB
78static DEFINE_IDR(lpfc_hba_index);
79
e59058c4 80/**
3621a710 81 * lpfc_config_port_prep - Perform lpfc initialization prior to config port
e59058c4
JS
82 * @phba: pointer to lpfc hba data structure.
83 *
84 * This routine will do LPFC initialization prior to issuing the CONFIG_PORT
85 * mailbox command. It retrieves the revision information from the HBA and
86 * collects the Vital Product Data (VPD) about the HBA for preparing the
87 * configuration of the HBA.
88 *
89 * Return codes:
90 * 0 - success.
91 * -ERESTART - requests the SLI layer to reset the HBA and try again.
92 * Any other value - indicates an error.
93 **/
dea3101e 94int
2e0fef85 95lpfc_config_port_prep(struct lpfc_hba *phba)
dea3101e
JB
96{
97 lpfc_vpd_t *vp = &phba->vpd;
98 int i = 0, rc;
99 LPFC_MBOXQ_t *pmb;
100 MAILBOX_t *mb;
101 char *lpfc_vpd_data = NULL;
102 uint16_t offset = 0;
103 static char licensed[56] =
104 "key unlock for use with gnu public licensed code only\0";
65a29c16 105 static int init_key = 1;
dea3101e
JB
106
107 pmb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
108 if (!pmb) {
2e0fef85 109 phba->link_state = LPFC_HBA_ERROR;
dea3101e
JB
110 return -ENOMEM;
111 }
112
04c68496 113 mb = &pmb->u.mb;
2e0fef85 114 phba->link_state = LPFC_INIT_MBX_CMDS;
dea3101e
JB
115
116 if (lpfc_is_LC_HBA(phba->pcidev->device)) {
65a29c16
JS
117 if (init_key) {
118 uint32_t *ptext = (uint32_t *) licensed;
dea3101e 119
65a29c16
JS
120 for (i = 0; i < 56; i += sizeof (uint32_t), ptext++)
121 *ptext = cpu_to_be32(*ptext);
122 init_key = 0;
123 }
dea3101e
JB
124
125 lpfc_read_nv(phba, pmb);
126 memset((char*)mb->un.varRDnvp.rsvd3, 0,
127 sizeof (mb->un.varRDnvp.rsvd3));
128 memcpy((char*)mb->un.varRDnvp.rsvd3, licensed,
129 sizeof (licensed));
130
131 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
132
133 if (rc != MBX_SUCCESS) {
ed957684 134 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX,
e8b62011 135 "0324 Config Port initialization "
dea3101e
JB
136 "error, mbxCmd x%x READ_NVPARM, "
137 "mbxStatus x%x\n",
dea3101e
JB
138 mb->mbxCommand, mb->mbxStatus);
139 mempool_free(pmb, phba->mbox_mem_pool);
140 return -ERESTART;
141 }
142 memcpy(phba->wwnn, (char *)mb->un.varRDnvp.nodename,
2e0fef85
JS
143 sizeof(phba->wwnn));
144 memcpy(phba->wwpn, (char *)mb->un.varRDnvp.portname,
145 sizeof(phba->wwpn));
dea3101e
JB
146 }
147
92d7f7b0
JS
148 phba->sli3_options = 0x0;
149
dea3101e
JB
150 /* Setup and issue mailbox READ REV command */
151 lpfc_read_rev(phba, pmb);
152 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
153 if (rc != MBX_SUCCESS) {
ed957684 154 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
e8b62011 155 "0439 Adapter failed to init, mbxCmd x%x "
dea3101e 156 "READ_REV, mbxStatus x%x\n",
dea3101e
JB
157 mb->mbxCommand, mb->mbxStatus);
158 mempool_free( pmb, phba->mbox_mem_pool);
159 return -ERESTART;
160 }
161
92d7f7b0 162
1de933f3
JSEC
163 /*
164 * The value of rr must be 1 since the driver set the cv field to 1.
165 * This setting requires the FW to set all revision fields.
dea3101e 166 */
1de933f3 167 if (mb->un.varRdRev.rr == 0) {
dea3101e 168 vp->rev.rBit = 0;
1de933f3 169 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
e8b62011
JS
170 "0440 Adapter failed to init, READ_REV has "
171 "missing revision information.\n");
dea3101e
JB
172 mempool_free(pmb, phba->mbox_mem_pool);
173 return -ERESTART;
dea3101e
JB
174 }
175
495a714c
JS
176 if (phba->sli_rev == 3 && !mb->un.varRdRev.v3rsp) {
177 mempool_free(pmb, phba->mbox_mem_pool);
ed957684 178 return -EINVAL;
495a714c 179 }
ed957684 180
dea3101e 181 /* Save information as VPD data */
1de933f3 182 vp->rev.rBit = 1;
92d7f7b0 183 memcpy(&vp->sli3Feat, &mb->un.varRdRev.sli3Feat, sizeof(uint32_t));
1de933f3
JSEC
184 vp->rev.sli1FwRev = mb->un.varRdRev.sli1FwRev;
185 memcpy(vp->rev.sli1FwName, (char*) mb->un.varRdRev.sli1FwName, 16);
186 vp->rev.sli2FwRev = mb->un.varRdRev.sli2FwRev;
187 memcpy(vp->rev.sli2FwName, (char *) mb->un.varRdRev.sli2FwName, 16);
dea3101e
JB
188 vp->rev.biuRev = mb->un.varRdRev.biuRev;
189 vp->rev.smRev = mb->un.varRdRev.smRev;
190 vp->rev.smFwRev = mb->un.varRdRev.un.smFwRev;
191 vp->rev.endecRev = mb->un.varRdRev.endecRev;
192 vp->rev.fcphHigh = mb->un.varRdRev.fcphHigh;
193 vp->rev.fcphLow = mb->un.varRdRev.fcphLow;
194 vp->rev.feaLevelHigh = mb->un.varRdRev.feaLevelHigh;
195 vp->rev.feaLevelLow = mb->un.varRdRev.feaLevelLow;
196 vp->rev.postKernRev = mb->un.varRdRev.postKernRev;
197 vp->rev.opFwRev = mb->un.varRdRev.opFwRev;
198
92d7f7b0
JS
199 /* If the sli feature level is less then 9, we must
200 * tear down all RPIs and VPIs on link down if NPIV
201 * is enabled.
202 */
203 if (vp->rev.feaLevelHigh < 9)
204 phba->sli3_options |= LPFC_SLI3_VPORT_TEARDOWN;
205
dea3101e
JB
206 if (lpfc_is_LC_HBA(phba->pcidev->device))
207 memcpy(phba->RandomData, (char *)&mb->un.varWords[24],
208 sizeof (phba->RandomData));
209
dea3101e 210 /* Get adapter VPD information */
dea3101e
JB
211 lpfc_vpd_data = kmalloc(DMP_VPD_SIZE, GFP_KERNEL);
212 if (!lpfc_vpd_data)
d7c255b2 213 goto out_free_mbox;
dea3101e
JB
214
215 do {
a0c87cbd 216 lpfc_dump_mem(phba, pmb, offset, DMP_REGION_VPD);
dea3101e
JB
217 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
218
219 if (rc != MBX_SUCCESS) {
220 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
e8b62011 221 "0441 VPD not present on adapter, "
dea3101e 222 "mbxCmd x%x DUMP VPD, mbxStatus x%x\n",
dea3101e 223 mb->mbxCommand, mb->mbxStatus);
74b72a59 224 mb->un.varDmp.word_cnt = 0;
dea3101e 225 }
04c68496
JS
226 /* dump mem may return a zero when finished or we got a
227 * mailbox error, either way we are done.
228 */
229 if (mb->un.varDmp.word_cnt == 0)
230 break;
74b72a59
JW
231 if (mb->un.varDmp.word_cnt > DMP_VPD_SIZE - offset)
232 mb->un.varDmp.word_cnt = DMP_VPD_SIZE - offset;
d7c255b2
JS
233 lpfc_sli_pcimem_bcopy(((uint8_t *)mb) + DMP_RSP_OFFSET,
234 lpfc_vpd_data + offset,
92d7f7b0 235 mb->un.varDmp.word_cnt);
dea3101e 236 offset += mb->un.varDmp.word_cnt;
74b72a59
JW
237 } while (mb->un.varDmp.word_cnt && offset < DMP_VPD_SIZE);
238 lpfc_parse_vpd(phba, lpfc_vpd_data, offset);
dea3101e
JB
239
240 kfree(lpfc_vpd_data);
dea3101e
JB
241out_free_mbox:
242 mempool_free(pmb, phba->mbox_mem_pool);
243 return 0;
244}
245
e59058c4 246/**
3621a710 247 * lpfc_config_async_cmpl - Completion handler for config async event mbox cmd
e59058c4
JS
248 * @phba: pointer to lpfc hba data structure.
249 * @pmboxq: pointer to the driver internal queue element for mailbox command.
250 *
251 * This is the completion handler for driver's configuring asynchronous event
252 * mailbox command to the device. If the mailbox command returns successfully,
253 * it will set internal async event support flag to 1; otherwise, it will
254 * set internal async event support flag to 0.
255 **/
57127f15
JS
256static void
257lpfc_config_async_cmpl(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmboxq)
258{
04c68496 259 if (pmboxq->u.mb.mbxStatus == MBX_SUCCESS)
57127f15
JS
260 phba->temp_sensor_support = 1;
261 else
262 phba->temp_sensor_support = 0;
263 mempool_free(pmboxq, phba->mbox_mem_pool);
264 return;
265}
266
97207482 267/**
3621a710 268 * lpfc_dump_wakeup_param_cmpl - dump memory mailbox command completion handler
97207482
JS
269 * @phba: pointer to lpfc hba data structure.
270 * @pmboxq: pointer to the driver internal queue element for mailbox command.
271 *
272 * This is the completion handler for dump mailbox command for getting
273 * wake up parameters. When this command complete, the response contain
274 * Option rom version of the HBA. This function translate the version number
275 * into a human readable string and store it in OptionROMVersion.
276 **/
277static void
278lpfc_dump_wakeup_param_cmpl(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmboxq)
279{
280 struct prog_id *prg;
281 uint32_t prog_id_word;
282 char dist = ' ';
283 /* character array used for decoding dist type. */
284 char dist_char[] = "nabx";
285
04c68496 286 if (pmboxq->u.mb.mbxStatus != MBX_SUCCESS) {
9f1e1b50 287 mempool_free(pmboxq, phba->mbox_mem_pool);
97207482 288 return;
9f1e1b50 289 }
97207482
JS
290
291 prg = (struct prog_id *) &prog_id_word;
292
293 /* word 7 contain option rom version */
04c68496 294 prog_id_word = pmboxq->u.mb.un.varWords[7];
97207482
JS
295
296 /* Decode the Option rom version word to a readable string */
297 if (prg->dist < 4)
298 dist = dist_char[prg->dist];
299
300 if ((prg->dist == 3) && (prg->num == 0))
301 sprintf(phba->OptionROMVersion, "%d.%d%d",
302 prg->ver, prg->rev, prg->lev);
303 else
304 sprintf(phba->OptionROMVersion, "%d.%d%d%c%d",
305 prg->ver, prg->rev, prg->lev,
306 dist, prg->num);
9f1e1b50 307 mempool_free(pmboxq, phba->mbox_mem_pool);
97207482
JS
308 return;
309}
310
e59058c4 311/**
3621a710 312 * lpfc_config_port_post - Perform lpfc initialization after config port
e59058c4
JS
313 * @phba: pointer to lpfc hba data structure.
314 *
315 * This routine will do LPFC initialization after the CONFIG_PORT mailbox
316 * command call. It performs all internal resource and state setups on the
317 * port: post IOCB buffers, enable appropriate host interrupt attentions,
318 * ELS ring timers, etc.
319 *
320 * Return codes
321 * 0 - success.
322 * Any other value - error.
323 **/
dea3101e 324int
2e0fef85 325lpfc_config_port_post(struct lpfc_hba *phba)
dea3101e 326{
2e0fef85 327 struct lpfc_vport *vport = phba->pport;
a257bf90 328 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
dea3101e
JB
329 LPFC_MBOXQ_t *pmb;
330 MAILBOX_t *mb;
331 struct lpfc_dmabuf *mp;
332 struct lpfc_sli *psli = &phba->sli;
333 uint32_t status, timeout;
2e0fef85
JS
334 int i, j;
335 int rc;
dea3101e 336
7af67051
JS
337 spin_lock_irq(&phba->hbalock);
338 /*
339 * If the Config port completed correctly the HBA is not
340 * over heated any more.
341 */
342 if (phba->over_temp_state == HBA_OVER_TEMP)
343 phba->over_temp_state = HBA_NORMAL_TEMP;
344 spin_unlock_irq(&phba->hbalock);
345
dea3101e
JB
346 pmb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
347 if (!pmb) {
2e0fef85 348 phba->link_state = LPFC_HBA_ERROR;
dea3101e
JB
349 return -ENOMEM;
350 }
04c68496 351 mb = &pmb->u.mb;
dea3101e 352
dea3101e 353 /* Get login parameters for NID. */
9f1177a3
JS
354 rc = lpfc_read_sparam(phba, pmb, 0);
355 if (rc) {
356 mempool_free(pmb, phba->mbox_mem_pool);
357 return -ENOMEM;
358 }
359
ed957684 360 pmb->vport = vport;
dea3101e 361 if (lpfc_sli_issue_mbox(phba, pmb, MBX_POLL) != MBX_SUCCESS) {
ed957684 362 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
e8b62011 363 "0448 Adapter failed init, mbxCmd x%x "
dea3101e 364 "READ_SPARM mbxStatus x%x\n",
dea3101e 365 mb->mbxCommand, mb->mbxStatus);
2e0fef85 366 phba->link_state = LPFC_HBA_ERROR;
dea3101e 367 mp = (struct lpfc_dmabuf *) pmb->context1;
9f1177a3 368 mempool_free(pmb, phba->mbox_mem_pool);
dea3101e
JB
369 lpfc_mbuf_free(phba, mp->virt, mp->phys);
370 kfree(mp);
371 return -EIO;
372 }
373
374 mp = (struct lpfc_dmabuf *) pmb->context1;
375
2e0fef85 376 memcpy(&vport->fc_sparam, mp->virt, sizeof (struct serv_parm));
dea3101e
JB
377 lpfc_mbuf_free(phba, mp->virt, mp->phys);
378 kfree(mp);
379 pmb->context1 = NULL;
380
a12e07bc 381 if (phba->cfg_soft_wwnn)
2e0fef85
JS
382 u64_to_wwn(phba->cfg_soft_wwnn,
383 vport->fc_sparam.nodeName.u.wwn);
c3f28afa 384 if (phba->cfg_soft_wwpn)
2e0fef85
JS
385 u64_to_wwn(phba->cfg_soft_wwpn,
386 vport->fc_sparam.portName.u.wwn);
387 memcpy(&vport->fc_nodename, &vport->fc_sparam.nodeName,
dea3101e 388 sizeof (struct lpfc_name));
2e0fef85 389 memcpy(&vport->fc_portname, &vport->fc_sparam.portName,
dea3101e 390 sizeof (struct lpfc_name));
a257bf90
JS
391
392 /* Update the fc_host data structures with new wwn. */
393 fc_host_node_name(shost) = wwn_to_u64(vport->fc_nodename.u.wwn);
394 fc_host_port_name(shost) = wwn_to_u64(vport->fc_portname.u.wwn);
21e9a0a5 395 fc_host_max_npiv_vports(shost) = phba->max_vpi;
a257bf90 396
dea3101e
JB
397 /* If no serial number in VPD data, use low 6 bytes of WWNN */
398 /* This should be consolidated into parse_vpd ? - mr */
399 if (phba->SerialNumber[0] == 0) {
400 uint8_t *outptr;
401
2e0fef85 402 outptr = &vport->fc_nodename.u.s.IEEE[0];
dea3101e
JB
403 for (i = 0; i < 12; i++) {
404 status = *outptr++;
405 j = ((status & 0xf0) >> 4);
406 if (j <= 9)
407 phba->SerialNumber[i] =
408 (char)((uint8_t) 0x30 + (uint8_t) j);
409 else
410 phba->SerialNumber[i] =
411 (char)((uint8_t) 0x61 + (uint8_t) (j - 10));
412 i++;
413 j = (status & 0xf);
414 if (j <= 9)
415 phba->SerialNumber[i] =
416 (char)((uint8_t) 0x30 + (uint8_t) j);
417 else
418 phba->SerialNumber[i] =
419 (char)((uint8_t) 0x61 + (uint8_t) (j - 10));
420 }
421 }
422
dea3101e 423 lpfc_read_config(phba, pmb);
ed957684 424 pmb->vport = vport;
dea3101e 425 if (lpfc_sli_issue_mbox(phba, pmb, MBX_POLL) != MBX_SUCCESS) {
ed957684 426 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
e8b62011 427 "0453 Adapter failed to init, mbxCmd x%x "
dea3101e 428 "READ_CONFIG, mbxStatus x%x\n",
dea3101e 429 mb->mbxCommand, mb->mbxStatus);
2e0fef85 430 phba->link_state = LPFC_HBA_ERROR;
dea3101e
JB
431 mempool_free( pmb, phba->mbox_mem_pool);
432 return -EIO;
433 }
434
a0c87cbd
JS
435 /* Check if the port is disabled */
436 lpfc_sli_read_link_ste(phba);
437
dea3101e
JB
438 /* Reset the DFT_HBA_Q_DEPTH to the max xri */
439 if (phba->cfg_hba_queue_depth > (mb->un.varRdConfig.max_xri+1))
440 phba->cfg_hba_queue_depth =
f1126688
JS
441 (mb->un.varRdConfig.max_xri + 1) -
442 lpfc_sli4_get_els_iocb_cnt(phba);
dea3101e
JB
443
444 phba->lmt = mb->un.varRdConfig.lmt;
74b72a59
JW
445
446 /* Get the default values for Model Name and Description */
447 lpfc_get_hba_model_desc(phba, phba->ModelName, phba->ModelDesc);
448
76a95d75
JS
449 if ((phba->cfg_link_speed > LPFC_USER_LINK_SPEED_16G)
450 || ((phba->cfg_link_speed == LPFC_USER_LINK_SPEED_1G)
74b72a59 451 && !(phba->lmt & LMT_1Gb))
76a95d75 452 || ((phba->cfg_link_speed == LPFC_USER_LINK_SPEED_2G)
74b72a59 453 && !(phba->lmt & LMT_2Gb))
76a95d75 454 || ((phba->cfg_link_speed == LPFC_USER_LINK_SPEED_4G)
74b72a59 455 && !(phba->lmt & LMT_4Gb))
76a95d75 456 || ((phba->cfg_link_speed == LPFC_USER_LINK_SPEED_8G)
74b72a59 457 && !(phba->lmt & LMT_8Gb))
76a95d75
JS
458 || ((phba->cfg_link_speed == LPFC_USER_LINK_SPEED_10G)
459 && !(phba->lmt & LMT_10Gb))
460 || ((phba->cfg_link_speed == LPFC_USER_LINK_SPEED_16G)
461 && !(phba->lmt & LMT_16Gb))) {
74b72a59 462 /* Reset link speed to auto */
ed957684 463 lpfc_printf_log(phba, KERN_WARNING, LOG_LINK_EVENT,
e8b62011 464 "1302 Invalid speed for this board: "
dea3101e 465 "Reset link speed to auto: x%x\n",
dea3101e 466 phba->cfg_link_speed);
76a95d75 467 phba->cfg_link_speed = LPFC_USER_LINK_SPEED_AUTO;
dea3101e
JB
468 }
469
2e0fef85 470 phba->link_state = LPFC_LINK_DOWN;
dea3101e 471
0b727fea 472 /* Only process IOCBs on ELS ring till hba_state is READY */
a4bc3379
JS
473 if (psli->ring[psli->extra_ring].cmdringaddr)
474 psli->ring[psli->extra_ring].flag |= LPFC_STOP_IOCB_EVENT;
dea3101e
JB
475 if (psli->ring[psli->fcp_ring].cmdringaddr)
476 psli->ring[psli->fcp_ring].flag |= LPFC_STOP_IOCB_EVENT;
477 if (psli->ring[psli->next_ring].cmdringaddr)
478 psli->ring[psli->next_ring].flag |= LPFC_STOP_IOCB_EVENT;
479
480 /* Post receive buffers for desired rings */
ed957684
JS
481 if (phba->sli_rev != 3)
482 lpfc_post_rcv_buf(phba);
dea3101e 483
9399627f
JS
484 /*
485 * Configure HBA MSI-X attention conditions to messages if MSI-X mode
486 */
487 if (phba->intr_type == MSIX) {
488 rc = lpfc_config_msi(phba, pmb);
489 if (rc) {
490 mempool_free(pmb, phba->mbox_mem_pool);
491 return -EIO;
492 }
493 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
494 if (rc != MBX_SUCCESS) {
495 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX,
496 "0352 Config MSI mailbox command "
497 "failed, mbxCmd x%x, mbxStatus x%x\n",
04c68496
JS
498 pmb->u.mb.mbxCommand,
499 pmb->u.mb.mbxStatus);
9399627f
JS
500 mempool_free(pmb, phba->mbox_mem_pool);
501 return -EIO;
502 }
503 }
504
04c68496 505 spin_lock_irq(&phba->hbalock);
9399627f
JS
506 /* Initialize ERATT handling flag */
507 phba->hba_flag &= ~HBA_ERATT_HANDLED;
508
dea3101e 509 /* Enable appropriate host interrupts */
dea3101e
JB
510 status = readl(phba->HCregaddr);
511 status |= HC_MBINT_ENA | HC_ERINT_ENA | HC_LAINT_ENA;
512 if (psli->num_rings > 0)
513 status |= HC_R0INT_ENA;
514 if (psli->num_rings > 1)
515 status |= HC_R1INT_ENA;
516 if (psli->num_rings > 2)
517 status |= HC_R2INT_ENA;
518 if (psli->num_rings > 3)
519 status |= HC_R3INT_ENA;
520
875fbdfe
JSEC
521 if ((phba->cfg_poll & ENABLE_FCP_RING_POLLING) &&
522 (phba->cfg_poll & DISABLE_FCP_RING_INT))
9399627f 523 status &= ~(HC_R0INT_ENA);
875fbdfe 524
dea3101e
JB
525 writel(status, phba->HCregaddr);
526 readl(phba->HCregaddr); /* flush */
2e0fef85 527 spin_unlock_irq(&phba->hbalock);
dea3101e 528
9399627f
JS
529 /* Set up ring-0 (ELS) timer */
530 timeout = phba->fc_ratov * 2;
2e0fef85 531 mod_timer(&vport->els_tmofunc, jiffies + HZ * timeout);
9399627f 532 /* Set up heart beat (HB) timer */
858c9f6c
JS
533 mod_timer(&phba->hb_tmofunc, jiffies + HZ * LPFC_HB_MBOX_INTERVAL);
534 phba->hb_outstanding = 0;
535 phba->last_completion_time = jiffies;
9399627f
JS
536 /* Set up error attention (ERATT) polling timer */
537 mod_timer(&phba->eratt_poll, jiffies + HZ * LPFC_ERATT_POLL_INTERVAL);
dea3101e 538
a0c87cbd
JS
539 if (phba->hba_flag & LINK_DISABLED) {
540 lpfc_printf_log(phba,
541 KERN_ERR, LOG_INIT,
542 "2598 Adapter Link is disabled.\n");
543 lpfc_down_link(phba, pmb);
544 pmb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
545 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
546 if ((rc != MBX_SUCCESS) && (rc != MBX_BUSY)) {
547 lpfc_printf_log(phba,
548 KERN_ERR, LOG_INIT,
549 "2599 Adapter failed to issue DOWN_LINK"
550 " mbox command rc 0x%x\n", rc);
551
552 mempool_free(pmb, phba->mbox_mem_pool);
553 return -EIO;
554 }
e40a02c1 555 } else if (phba->cfg_suppress_link_up == LPFC_INITIALIZE_LINK) {
a0c87cbd
JS
556 lpfc_init_link(phba, pmb, phba->cfg_topology,
557 phba->cfg_link_speed);
558 pmb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
559 lpfc_set_loopback_flag(phba);
560 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
561 if (rc != MBX_SUCCESS) {
562 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
e8b62011 563 "0454 Adapter failed to init, mbxCmd x%x "
dea3101e 564 "INIT_LINK, mbxStatus x%x\n",
dea3101e
JB
565 mb->mbxCommand, mb->mbxStatus);
566
a0c87cbd
JS
567 /* Clear all interrupt enable conditions */
568 writel(0, phba->HCregaddr);
569 readl(phba->HCregaddr); /* flush */
570 /* Clear all pending interrupts */
571 writel(0xffffffff, phba->HAregaddr);
572 readl(phba->HAregaddr); /* flush */
dea3101e 573
a0c87cbd
JS
574 phba->link_state = LPFC_HBA_ERROR;
575 if (rc != MBX_BUSY)
576 mempool_free(pmb, phba->mbox_mem_pool);
577 return -EIO;
578 }
dea3101e
JB
579 }
580 /* MBOX buffer will be freed in mbox compl */
57127f15 581 pmb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
9f1177a3
JS
582 if (!pmb) {
583 phba->link_state = LPFC_HBA_ERROR;
584 return -ENOMEM;
585 }
586
57127f15
JS
587 lpfc_config_async(phba, pmb, LPFC_ELS_RING);
588 pmb->mbox_cmpl = lpfc_config_async_cmpl;
589 pmb->vport = phba->pport;
590 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
dea3101e 591
57127f15
JS
592 if ((rc != MBX_BUSY) && (rc != MBX_SUCCESS)) {
593 lpfc_printf_log(phba,
594 KERN_ERR,
595 LOG_INIT,
596 "0456 Adapter failed to issue "
e4e74273 597 "ASYNCEVT_ENABLE mbox status x%x\n",
57127f15
JS
598 rc);
599 mempool_free(pmb, phba->mbox_mem_pool);
600 }
97207482
JS
601
602 /* Get Option rom version */
603 pmb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
9f1177a3
JS
604 if (!pmb) {
605 phba->link_state = LPFC_HBA_ERROR;
606 return -ENOMEM;
607 }
608
97207482
JS
609 lpfc_dump_wakeup_param(phba, pmb);
610 pmb->mbox_cmpl = lpfc_dump_wakeup_param_cmpl;
611 pmb->vport = phba->pport;
612 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
613
614 if ((rc != MBX_BUSY) && (rc != MBX_SUCCESS)) {
615 lpfc_printf_log(phba, KERN_ERR, LOG_INIT, "0435 Adapter failed "
e4e74273 616 "to get Option ROM version status x%x\n", rc);
97207482
JS
617 mempool_free(pmb, phba->mbox_mem_pool);
618 }
619
d7c255b2 620 return 0;
ce8b3ce5
JS
621}
622
84d1b006
JS
623/**
624 * lpfc_hba_init_link - Initialize the FC link
625 * @phba: pointer to lpfc hba data structure.
6e7288d9 626 * @flag: mailbox command issue mode - either MBX_POLL or MBX_NOWAIT
84d1b006
JS
627 *
628 * This routine will issue the INIT_LINK mailbox command call.
629 * It is available to other drivers through the lpfc_hba data
630 * structure for use as a delayed link up mechanism with the
631 * module parameter lpfc_suppress_link_up.
632 *
633 * Return code
634 * 0 - success
635 * Any other value - error
636 **/
637int
6e7288d9 638lpfc_hba_init_link(struct lpfc_hba *phba, uint32_t flag)
84d1b006
JS
639{
640 struct lpfc_vport *vport = phba->pport;
641 LPFC_MBOXQ_t *pmb;
642 MAILBOX_t *mb;
643 int rc;
644
645 pmb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
646 if (!pmb) {
647 phba->link_state = LPFC_HBA_ERROR;
648 return -ENOMEM;
649 }
650 mb = &pmb->u.mb;
651 pmb->vport = vport;
652
76a95d75 653 lpfc_init_link(phba, pmb, phba->cfg_topology, phba->cfg_link_speed);
84d1b006
JS
654 pmb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
655 lpfc_set_loopback_flag(phba);
6e7288d9 656 rc = lpfc_sli_issue_mbox(phba, pmb, flag);
76a95d75 657 if ((rc != MBX_BUSY) && (rc != MBX_SUCCESS)) {
84d1b006
JS
658 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
659 "0498 Adapter failed to init, mbxCmd x%x "
660 "INIT_LINK, mbxStatus x%x\n",
661 mb->mbxCommand, mb->mbxStatus);
76a95d75
JS
662 if (phba->sli_rev <= LPFC_SLI_REV3) {
663 /* Clear all interrupt enable conditions */
664 writel(0, phba->HCregaddr);
665 readl(phba->HCregaddr); /* flush */
666 /* Clear all pending interrupts */
667 writel(0xffffffff, phba->HAregaddr);
668 readl(phba->HAregaddr); /* flush */
669 }
84d1b006 670 phba->link_state = LPFC_HBA_ERROR;
6e7288d9 671 if (rc != MBX_BUSY || flag == MBX_POLL)
84d1b006
JS
672 mempool_free(pmb, phba->mbox_mem_pool);
673 return -EIO;
674 }
e40a02c1 675 phba->cfg_suppress_link_up = LPFC_INITIALIZE_LINK;
6e7288d9
JS
676 if (flag == MBX_POLL)
677 mempool_free(pmb, phba->mbox_mem_pool);
84d1b006
JS
678
679 return 0;
680}
681
682/**
683 * lpfc_hba_down_link - this routine downs the FC link
6e7288d9
JS
684 * @phba: pointer to lpfc hba data structure.
685 * @flag: mailbox command issue mode - either MBX_POLL or MBX_NOWAIT
84d1b006
JS
686 *
687 * This routine will issue the DOWN_LINK mailbox command call.
688 * It is available to other drivers through the lpfc_hba data
689 * structure for use to stop the link.
690 *
691 * Return code
692 * 0 - success
693 * Any other value - error
694 **/
695int
6e7288d9 696lpfc_hba_down_link(struct lpfc_hba *phba, uint32_t flag)
84d1b006
JS
697{
698 LPFC_MBOXQ_t *pmb;
699 int rc;
700
701 pmb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
702 if (!pmb) {
703 phba->link_state = LPFC_HBA_ERROR;
704 return -ENOMEM;
705 }
706
707 lpfc_printf_log(phba,
708 KERN_ERR, LOG_INIT,
709 "0491 Adapter Link is disabled.\n");
710 lpfc_down_link(phba, pmb);
711 pmb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
6e7288d9 712 rc = lpfc_sli_issue_mbox(phba, pmb, flag);
84d1b006
JS
713 if ((rc != MBX_SUCCESS) && (rc != MBX_BUSY)) {
714 lpfc_printf_log(phba,
715 KERN_ERR, LOG_INIT,
716 "2522 Adapter failed to issue DOWN_LINK"
717 " mbox command rc 0x%x\n", rc);
718
719 mempool_free(pmb, phba->mbox_mem_pool);
720 return -EIO;
721 }
6e7288d9
JS
722 if (flag == MBX_POLL)
723 mempool_free(pmb, phba->mbox_mem_pool);
724
84d1b006
JS
725 return 0;
726}
727
e59058c4 728/**
3621a710 729 * lpfc_hba_down_prep - Perform lpfc uninitialization prior to HBA reset
e59058c4
JS
730 * @phba: pointer to lpfc HBA data structure.
731 *
732 * This routine will do LPFC uninitialization before the HBA is reset when
733 * bringing down the SLI Layer.
734 *
735 * Return codes
736 * 0 - success.
737 * Any other value - error.
738 **/
dea3101e 739int
2e0fef85 740lpfc_hba_down_prep(struct lpfc_hba *phba)
dea3101e 741{
1b32f6aa
JS
742 struct lpfc_vport **vports;
743 int i;
3772a991
JS
744
745 if (phba->sli_rev <= LPFC_SLI_REV3) {
746 /* Disable interrupts */
747 writel(0, phba->HCregaddr);
748 readl(phba->HCregaddr); /* flush */
749 }
dea3101e 750
1b32f6aa
JS
751 if (phba->pport->load_flag & FC_UNLOADING)
752 lpfc_cleanup_discovery_resources(phba->pport);
753 else {
754 vports = lpfc_create_vport_work_array(phba);
755 if (vports != NULL)
3772a991
JS
756 for (i = 0; i <= phba->max_vports &&
757 vports[i] != NULL; i++)
1b32f6aa
JS
758 lpfc_cleanup_discovery_resources(vports[i]);
759 lpfc_destroy_vport_work_array(phba, vports);
7f5f3d0d
JS
760 }
761 return 0;
dea3101e
JB
762}
763
e59058c4 764/**
3772a991 765 * lpfc_hba_down_post_s3 - Perform lpfc uninitialization after HBA reset
e59058c4
JS
766 * @phba: pointer to lpfc HBA data structure.
767 *
768 * This routine will do uninitialization after the HBA is reset when bring
769 * down the SLI Layer.
770 *
771 * Return codes
af901ca1 772 * 0 - success.
e59058c4
JS
773 * Any other value - error.
774 **/
3772a991
JS
775static int
776lpfc_hba_down_post_s3(struct lpfc_hba *phba)
41415862
JW
777{
778 struct lpfc_sli *psli = &phba->sli;
779 struct lpfc_sli_ring *pring;
780 struct lpfc_dmabuf *mp, *next_mp;
09372820 781 LIST_HEAD(completions);
41415862
JW
782 int i;
783
92d7f7b0
JS
784 if (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED)
785 lpfc_sli_hbqbuf_free_all(phba);
786 else {
787 /* Cleanup preposted buffers on the ELS ring */
788 pring = &psli->ring[LPFC_ELS_RING];
789 list_for_each_entry_safe(mp, next_mp, &pring->postbufq, list) {
790 list_del(&mp->list);
791 pring->postbufq_cnt--;
792 lpfc_mbuf_free(phba, mp->virt, mp->phys);
793 kfree(mp);
794 }
41415862
JW
795 }
796
09372820 797 spin_lock_irq(&phba->hbalock);
41415862
JW
798 for (i = 0; i < psli->num_rings; i++) {
799 pring = &psli->ring[i];
09372820
JS
800
801 /* At this point in time the HBA is either reset or DOA. Either
802 * way, nothing should be on txcmplq as it will NEVER complete.
803 */
804 list_splice_init(&pring->txcmplq, &completions);
805 pring->txcmplq_cnt = 0;
806 spin_unlock_irq(&phba->hbalock);
807
a257bf90
JS
808 /* Cancel all the IOCBs from the completions list */
809 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
810 IOERR_SLI_ABORTED);
09372820 811
41415862 812 lpfc_sli_abort_iocb_ring(phba, pring);
09372820 813 spin_lock_irq(&phba->hbalock);
41415862 814 }
09372820 815 spin_unlock_irq(&phba->hbalock);
41415862
JW
816
817 return 0;
818}
5af5eee7 819
da0436e9
JS
820/**
821 * lpfc_hba_down_post_s4 - Perform lpfc uninitialization after HBA reset
822 * @phba: pointer to lpfc HBA data structure.
823 *
824 * This routine will do uninitialization after the HBA is reset when bring
825 * down the SLI Layer.
826 *
827 * Return codes
af901ca1 828 * 0 - success.
da0436e9
JS
829 * Any other value - error.
830 **/
831static int
832lpfc_hba_down_post_s4(struct lpfc_hba *phba)
833{
834 struct lpfc_scsi_buf *psb, *psb_next;
835 LIST_HEAD(aborts);
836 int ret;
837 unsigned long iflag = 0;
0f65ff68
JS
838 struct lpfc_sglq *sglq_entry = NULL;
839
da0436e9
JS
840 ret = lpfc_hba_down_post_s3(phba);
841 if (ret)
842 return ret;
843 /* At this point in time the HBA is either reset or DOA. Either
844 * way, nothing should be on lpfc_abts_els_sgl_list, it needs to be
845 * on the lpfc_sgl_list so that it can either be freed if the
846 * driver is unloading or reposted if the driver is restarting
847 * the port.
848 */
849 spin_lock_irq(&phba->hbalock); /* required for lpfc_sgl_list and */
850 /* scsl_buf_list */
851 /* abts_sgl_list_lock required because worker thread uses this
852 * list.
853 */
854 spin_lock(&phba->sli4_hba.abts_sgl_list_lock);
0f65ff68
JS
855 list_for_each_entry(sglq_entry,
856 &phba->sli4_hba.lpfc_abts_els_sgl_list, list)
857 sglq_entry->state = SGL_FREED;
858
da0436e9
JS
859 list_splice_init(&phba->sli4_hba.lpfc_abts_els_sgl_list,
860 &phba->sli4_hba.lpfc_sgl_list);
861 spin_unlock(&phba->sli4_hba.abts_sgl_list_lock);
862 /* abts_scsi_buf_list_lock required because worker thread uses this
863 * list.
864 */
865 spin_lock(&phba->sli4_hba.abts_scsi_buf_list_lock);
866 list_splice_init(&phba->sli4_hba.lpfc_abts_scsi_buf_list,
867 &aborts);
868 spin_unlock(&phba->sli4_hba.abts_scsi_buf_list_lock);
869 spin_unlock_irq(&phba->hbalock);
870
871 list_for_each_entry_safe(psb, psb_next, &aborts, list) {
872 psb->pCmd = NULL;
873 psb->status = IOSTAT_SUCCESS;
874 }
875 spin_lock_irqsave(&phba->scsi_buf_list_lock, iflag);
876 list_splice(&aborts, &phba->lpfc_scsi_buf_list);
877 spin_unlock_irqrestore(&phba->scsi_buf_list_lock, iflag);
878 return 0;
879}
880
881/**
882 * lpfc_hba_down_post - Wrapper func for hba down post routine
883 * @phba: pointer to lpfc HBA data structure.
884 *
885 * This routine wraps the actual SLI3 or SLI4 routine for performing
886 * uninitialization after the HBA is reset when bring down the SLI Layer.
887 *
888 * Return codes
af901ca1 889 * 0 - success.
da0436e9
JS
890 * Any other value - error.
891 **/
892int
893lpfc_hba_down_post(struct lpfc_hba *phba)
894{
895 return (*phba->lpfc_hba_down_post)(phba);
896}
41415862 897
e59058c4 898/**
3621a710 899 * lpfc_hb_timeout - The HBA-timer timeout handler
e59058c4
JS
900 * @ptr: unsigned long holds the pointer to lpfc hba data structure.
901 *
902 * This is the HBA-timer timeout handler registered to the lpfc driver. When
903 * this timer fires, a HBA timeout event shall be posted to the lpfc driver
904 * work-port-events bitmap and the worker thread is notified. This timeout
905 * event will be used by the worker thread to invoke the actual timeout
906 * handler routine, lpfc_hb_timeout_handler. Any periodical operations will
907 * be performed in the timeout handler and the HBA timeout event bit shall
908 * be cleared by the worker thread after it has taken the event bitmap out.
909 **/
a6ababd2 910static void
858c9f6c
JS
911lpfc_hb_timeout(unsigned long ptr)
912{
913 struct lpfc_hba *phba;
5e9d9b82 914 uint32_t tmo_posted;
858c9f6c
JS
915 unsigned long iflag;
916
917 phba = (struct lpfc_hba *)ptr;
9399627f
JS
918
919 /* Check for heart beat timeout conditions */
858c9f6c 920 spin_lock_irqsave(&phba->pport->work_port_lock, iflag);
5e9d9b82
JS
921 tmo_posted = phba->pport->work_port_events & WORKER_HB_TMO;
922 if (!tmo_posted)
858c9f6c
JS
923 phba->pport->work_port_events |= WORKER_HB_TMO;
924 spin_unlock_irqrestore(&phba->pport->work_port_lock, iflag);
925
9399627f 926 /* Tell the worker thread there is work to do */
5e9d9b82
JS
927 if (!tmo_posted)
928 lpfc_worker_wake_up(phba);
858c9f6c
JS
929 return;
930}
931
19ca7609
JS
932/**
933 * lpfc_rrq_timeout - The RRQ-timer timeout handler
934 * @ptr: unsigned long holds the pointer to lpfc hba data structure.
935 *
936 * This is the RRQ-timer timeout handler registered to the lpfc driver. When
937 * this timer fires, a RRQ timeout event shall be posted to the lpfc driver
938 * work-port-events bitmap and the worker thread is notified. This timeout
939 * event will be used by the worker thread to invoke the actual timeout
940 * handler routine, lpfc_rrq_handler. Any periodical operations will
941 * be performed in the timeout handler and the RRQ timeout event bit shall
942 * be cleared by the worker thread after it has taken the event bitmap out.
943 **/
944static void
945lpfc_rrq_timeout(unsigned long ptr)
946{
947 struct lpfc_hba *phba;
948 uint32_t tmo_posted;
949 unsigned long iflag;
950
951 phba = (struct lpfc_hba *)ptr;
952 spin_lock_irqsave(&phba->pport->work_port_lock, iflag);
953 tmo_posted = phba->hba_flag & HBA_RRQ_ACTIVE;
954 if (!tmo_posted)
955 phba->hba_flag |= HBA_RRQ_ACTIVE;
956 spin_unlock_irqrestore(&phba->pport->work_port_lock, iflag);
957 if (!tmo_posted)
958 lpfc_worker_wake_up(phba);
959}
960
e59058c4 961/**
3621a710 962 * lpfc_hb_mbox_cmpl - The lpfc heart-beat mailbox command callback function
e59058c4
JS
963 * @phba: pointer to lpfc hba data structure.
964 * @pmboxq: pointer to the driver internal queue element for mailbox command.
965 *
966 * This is the callback function to the lpfc heart-beat mailbox command.
967 * If configured, the lpfc driver issues the heart-beat mailbox command to
968 * the HBA every LPFC_HB_MBOX_INTERVAL (current 5) seconds. At the time the
969 * heart-beat mailbox command is issued, the driver shall set up heart-beat
970 * timeout timer to LPFC_HB_MBOX_TIMEOUT (current 30) seconds and marks
971 * heart-beat outstanding state. Once the mailbox command comes back and
972 * no error conditions detected, the heart-beat mailbox command timer is
973 * reset to LPFC_HB_MBOX_INTERVAL seconds and the heart-beat outstanding
974 * state is cleared for the next heart-beat. If the timer expired with the
975 * heart-beat outstanding state set, the driver will put the HBA offline.
976 **/
858c9f6c
JS
977static void
978lpfc_hb_mbox_cmpl(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmboxq)
979{
980 unsigned long drvr_flag;
981
982 spin_lock_irqsave(&phba->hbalock, drvr_flag);
983 phba->hb_outstanding = 0;
984 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
985
9399627f 986 /* Check and reset heart-beat timer is necessary */
858c9f6c
JS
987 mempool_free(pmboxq, phba->mbox_mem_pool);
988 if (!(phba->pport->fc_flag & FC_OFFLINE_MODE) &&
989 !(phba->link_state == LPFC_HBA_ERROR) &&
51ef4c26 990 !(phba->pport->load_flag & FC_UNLOADING))
858c9f6c
JS
991 mod_timer(&phba->hb_tmofunc,
992 jiffies + HZ * LPFC_HB_MBOX_INTERVAL);
993 return;
994}
995
e59058c4 996/**
3621a710 997 * lpfc_hb_timeout_handler - The HBA-timer timeout handler
e59058c4
JS
998 * @phba: pointer to lpfc hba data structure.
999 *
1000 * This is the actual HBA-timer timeout handler to be invoked by the worker
1001 * thread whenever the HBA timer fired and HBA-timeout event posted. This
1002 * handler performs any periodic operations needed for the device. If such
1003 * periodic event has already been attended to either in the interrupt handler
1004 * or by processing slow-ring or fast-ring events within the HBA-timer
1005 * timeout window (LPFC_HB_MBOX_INTERVAL), this handler just simply resets
1006 * the timer for the next timeout period. If lpfc heart-beat mailbox command
1007 * is configured and there is no heart-beat mailbox command outstanding, a
1008 * heart-beat mailbox is issued and timer set properly. Otherwise, if there
1009 * has been a heart-beat mailbox command outstanding, the HBA shall be put
1010 * to offline.
1011 **/
858c9f6c
JS
1012void
1013lpfc_hb_timeout_handler(struct lpfc_hba *phba)
1014{
45ed1190 1015 struct lpfc_vport **vports;
858c9f6c 1016 LPFC_MBOXQ_t *pmboxq;
0ff10d46 1017 struct lpfc_dmabuf *buf_ptr;
45ed1190 1018 int retval, i;
858c9f6c 1019 struct lpfc_sli *psli = &phba->sli;
0ff10d46 1020 LIST_HEAD(completions);
858c9f6c 1021
45ed1190
JS
1022 vports = lpfc_create_vport_work_array(phba);
1023 if (vports != NULL)
1024 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++)
1025 lpfc_rcv_seq_check_edtov(vports[i]);
1026 lpfc_destroy_vport_work_array(phba, vports);
1027
858c9f6c 1028 if ((phba->link_state == LPFC_HBA_ERROR) ||
51ef4c26 1029 (phba->pport->load_flag & FC_UNLOADING) ||
858c9f6c
JS
1030 (phba->pport->fc_flag & FC_OFFLINE_MODE))
1031 return;
1032
1033 spin_lock_irq(&phba->pport->work_port_lock);
858c9f6c
JS
1034
1035 if (time_after(phba->last_completion_time + LPFC_HB_MBOX_INTERVAL * HZ,
1036 jiffies)) {
1037 spin_unlock_irq(&phba->pport->work_port_lock);
1038 if (!phba->hb_outstanding)
1039 mod_timer(&phba->hb_tmofunc,
1040 jiffies + HZ * LPFC_HB_MBOX_INTERVAL);
1041 else
1042 mod_timer(&phba->hb_tmofunc,
1043 jiffies + HZ * LPFC_HB_MBOX_TIMEOUT);
1044 return;
1045 }
1046 spin_unlock_irq(&phba->pport->work_port_lock);
1047
0ff10d46
JS
1048 if (phba->elsbuf_cnt &&
1049 (phba->elsbuf_cnt == phba->elsbuf_prev_cnt)) {
1050 spin_lock_irq(&phba->hbalock);
1051 list_splice_init(&phba->elsbuf, &completions);
1052 phba->elsbuf_cnt = 0;
1053 phba->elsbuf_prev_cnt = 0;
1054 spin_unlock_irq(&phba->hbalock);
1055
1056 while (!list_empty(&completions)) {
1057 list_remove_head(&completions, buf_ptr,
1058 struct lpfc_dmabuf, list);
1059 lpfc_mbuf_free(phba, buf_ptr->virt, buf_ptr->phys);
1060 kfree(buf_ptr);
1061 }
1062 }
1063 phba->elsbuf_prev_cnt = phba->elsbuf_cnt;
1064
858c9f6c 1065 /* If there is no heart beat outstanding, issue a heartbeat command */
13815c83
JS
1066 if (phba->cfg_enable_hba_heartbeat) {
1067 if (!phba->hb_outstanding) {
bc73905a
JS
1068 if ((!(psli->sli_flag & LPFC_SLI_MBOX_ACTIVE)) &&
1069 (list_empty(&psli->mboxq))) {
1070 pmboxq = mempool_alloc(phba->mbox_mem_pool,
1071 GFP_KERNEL);
1072 if (!pmboxq) {
1073 mod_timer(&phba->hb_tmofunc,
1074 jiffies +
1075 HZ * LPFC_HB_MBOX_INTERVAL);
1076 return;
1077 }
1078
1079 lpfc_heart_beat(phba, pmboxq);
1080 pmboxq->mbox_cmpl = lpfc_hb_mbox_cmpl;
1081 pmboxq->vport = phba->pport;
1082 retval = lpfc_sli_issue_mbox(phba, pmboxq,
1083 MBX_NOWAIT);
1084
1085 if (retval != MBX_BUSY &&
1086 retval != MBX_SUCCESS) {
1087 mempool_free(pmboxq,
1088 phba->mbox_mem_pool);
1089 mod_timer(&phba->hb_tmofunc,
1090 jiffies +
1091 HZ * LPFC_HB_MBOX_INTERVAL);
1092 return;
1093 }
1094 phba->skipped_hb = 0;
1095 phba->hb_outstanding = 1;
1096 } else if (time_before_eq(phba->last_completion_time,
1097 phba->skipped_hb)) {
1098 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
1099 "2857 Last completion time not "
1100 " updated in %d ms\n",
1101 jiffies_to_msecs(jiffies
1102 - phba->last_completion_time));
1103 } else
1104 phba->skipped_hb = jiffies;
1105
858c9f6c 1106 mod_timer(&phba->hb_tmofunc,
13815c83 1107 jiffies + HZ * LPFC_HB_MBOX_TIMEOUT);
858c9f6c 1108 return;
13815c83
JS
1109 } else {
1110 /*
1111 * If heart beat timeout called with hb_outstanding set
dcf2a4e0
JS
1112 * we need to give the hb mailbox cmd a chance to
1113 * complete or TMO.
13815c83 1114 */
dcf2a4e0
JS
1115 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
1116 "0459 Adapter heartbeat still out"
1117 "standing:last compl time was %d ms.\n",
1118 jiffies_to_msecs(jiffies
1119 - phba->last_completion_time));
1120 mod_timer(&phba->hb_tmofunc,
1121 jiffies + HZ * LPFC_HB_MBOX_TIMEOUT);
858c9f6c 1122 }
858c9f6c
JS
1123 }
1124}
1125
e59058c4 1126/**
3621a710 1127 * lpfc_offline_eratt - Bring lpfc offline on hardware error attention
e59058c4
JS
1128 * @phba: pointer to lpfc hba data structure.
1129 *
1130 * This routine is called to bring the HBA offline when HBA hardware error
1131 * other than Port Error 6 has been detected.
1132 **/
09372820
JS
1133static void
1134lpfc_offline_eratt(struct lpfc_hba *phba)
1135{
1136 struct lpfc_sli *psli = &phba->sli;
1137
1138 spin_lock_irq(&phba->hbalock);
f4b4c68f 1139 psli->sli_flag &= ~LPFC_SLI_ACTIVE;
09372820
JS
1140 spin_unlock_irq(&phba->hbalock);
1141 lpfc_offline_prep(phba);
1142
1143 lpfc_offline(phba);
1144 lpfc_reset_barrier(phba);
f4b4c68f 1145 spin_lock_irq(&phba->hbalock);
09372820 1146 lpfc_sli_brdreset(phba);
f4b4c68f 1147 spin_unlock_irq(&phba->hbalock);
09372820
JS
1148 lpfc_hba_down_post(phba);
1149 lpfc_sli_brdready(phba, HS_MBRDY);
1150 lpfc_unblock_mgmt_io(phba);
1151 phba->link_state = LPFC_HBA_ERROR;
1152 return;
1153}
1154
da0436e9
JS
1155/**
1156 * lpfc_sli4_offline_eratt - Bring lpfc offline on SLI4 hardware error attention
1157 * @phba: pointer to lpfc hba data structure.
1158 *
1159 * This routine is called to bring a SLI4 HBA offline when HBA hardware error
1160 * other than Port Error 6 has been detected.
1161 **/
1162static void
1163lpfc_sli4_offline_eratt(struct lpfc_hba *phba)
1164{
1165 lpfc_offline_prep(phba);
1166 lpfc_offline(phba);
1167 lpfc_sli4_brdreset(phba);
1168 lpfc_hba_down_post(phba);
1169 lpfc_sli4_post_status_check(phba);
1170 lpfc_unblock_mgmt_io(phba);
1171 phba->link_state = LPFC_HBA_ERROR;
1172}
1173
a257bf90
JS
1174/**
1175 * lpfc_handle_deferred_eratt - The HBA hardware deferred error handler
1176 * @phba: pointer to lpfc hba data structure.
1177 *
1178 * This routine is invoked to handle the deferred HBA hardware error
1179 * conditions. This type of error is indicated by HBA by setting ER1
1180 * and another ER bit in the host status register. The driver will
1181 * wait until the ER1 bit clears before handling the error condition.
1182 **/
1183static void
1184lpfc_handle_deferred_eratt(struct lpfc_hba *phba)
1185{
1186 uint32_t old_host_status = phba->work_hs;
1187 struct lpfc_sli_ring *pring;
1188 struct lpfc_sli *psli = &phba->sli;
1189
f4b4c68f
JS
1190 /* If the pci channel is offline, ignore possible errors,
1191 * since we cannot communicate with the pci card anyway.
1192 */
1193 if (pci_channel_offline(phba->pcidev)) {
1194 spin_lock_irq(&phba->hbalock);
1195 phba->hba_flag &= ~DEFER_ERATT;
1196 spin_unlock_irq(&phba->hbalock);
1197 return;
1198 }
1199
a257bf90
JS
1200 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
1201 "0479 Deferred Adapter Hardware Error "
1202 "Data: x%x x%x x%x\n",
1203 phba->work_hs,
1204 phba->work_status[0], phba->work_status[1]);
1205
1206 spin_lock_irq(&phba->hbalock);
f4b4c68f 1207 psli->sli_flag &= ~LPFC_SLI_ACTIVE;
a257bf90
JS
1208 spin_unlock_irq(&phba->hbalock);
1209
1210
1211 /*
1212 * Firmware stops when it triggred erratt. That could cause the I/Os
1213 * dropped by the firmware. Error iocb (I/O) on txcmplq and let the
1214 * SCSI layer retry it after re-establishing link.
1215 */
1216 pring = &psli->ring[psli->fcp_ring];
1217 lpfc_sli_abort_iocb_ring(phba, pring);
1218
1219 /*
1220 * There was a firmware error. Take the hba offline and then
1221 * attempt to restart it.
1222 */
1223 lpfc_offline_prep(phba);
1224 lpfc_offline(phba);
1225
1226 /* Wait for the ER1 bit to clear.*/
1227 while (phba->work_hs & HS_FFER1) {
1228 msleep(100);
1229 phba->work_hs = readl(phba->HSregaddr);
1230 /* If driver is unloading let the worker thread continue */
1231 if (phba->pport->load_flag & FC_UNLOADING) {
1232 phba->work_hs = 0;
1233 break;
1234 }
1235 }
1236
1237 /*
1238 * This is to ptrotect against a race condition in which
1239 * first write to the host attention register clear the
1240 * host status register.
1241 */
1242 if ((!phba->work_hs) && (!(phba->pport->load_flag & FC_UNLOADING)))
1243 phba->work_hs = old_host_status & ~HS_FFER1;
1244
3772a991 1245 spin_lock_irq(&phba->hbalock);
a257bf90 1246 phba->hba_flag &= ~DEFER_ERATT;
3772a991 1247 spin_unlock_irq(&phba->hbalock);
a257bf90
JS
1248 phba->work_status[0] = readl(phba->MBslimaddr + 0xa8);
1249 phba->work_status[1] = readl(phba->MBslimaddr + 0xac);
1250}
1251
3772a991
JS
1252static void
1253lpfc_board_errevt_to_mgmt(struct lpfc_hba *phba)
1254{
1255 struct lpfc_board_event_header board_event;
1256 struct Scsi_Host *shost;
1257
1258 board_event.event_type = FC_REG_BOARD_EVENT;
1259 board_event.subcategory = LPFC_EVENT_PORTINTERR;
1260 shost = lpfc_shost_from_vport(phba->pport);
1261 fc_host_post_vendor_event(shost, fc_get_event_number(),
1262 sizeof(board_event),
1263 (char *) &board_event,
1264 LPFC_NL_VENDOR_ID);
1265}
1266
e59058c4 1267/**
3772a991 1268 * lpfc_handle_eratt_s3 - The SLI3 HBA hardware error handler
e59058c4
JS
1269 * @phba: pointer to lpfc hba data structure.
1270 *
1271 * This routine is invoked to handle the following HBA hardware error
1272 * conditions:
1273 * 1 - HBA error attention interrupt
1274 * 2 - DMA ring index out of range
1275 * 3 - Mailbox command came back as unknown
1276 **/
3772a991
JS
1277static void
1278lpfc_handle_eratt_s3(struct lpfc_hba *phba)
dea3101e 1279{
2e0fef85 1280 struct lpfc_vport *vport = phba->pport;
2e0fef85 1281 struct lpfc_sli *psli = &phba->sli;
dea3101e 1282 struct lpfc_sli_ring *pring;
d2873e4c 1283 uint32_t event_data;
57127f15
JS
1284 unsigned long temperature;
1285 struct temp_event temp_event_data;
92d7f7b0 1286 struct Scsi_Host *shost;
2e0fef85 1287
8d63f375 1288 /* If the pci channel is offline, ignore possible errors,
3772a991
JS
1289 * since we cannot communicate with the pci card anyway.
1290 */
1291 if (pci_channel_offline(phba->pcidev)) {
1292 spin_lock_irq(&phba->hbalock);
1293 phba->hba_flag &= ~DEFER_ERATT;
1294 spin_unlock_irq(&phba->hbalock);
8d63f375 1295 return;
3772a991
JS
1296 }
1297
13815c83
JS
1298 /* If resets are disabled then leave the HBA alone and return */
1299 if (!phba->cfg_enable_hba_reset)
1300 return;
dea3101e 1301
ea2151b4 1302 /* Send an internal error event to mgmt application */
3772a991 1303 lpfc_board_errevt_to_mgmt(phba);
ea2151b4 1304
a257bf90
JS
1305 if (phba->hba_flag & DEFER_ERATT)
1306 lpfc_handle_deferred_eratt(phba);
1307
dcf2a4e0
JS
1308 if ((phba->work_hs & HS_FFER6) || (phba->work_hs & HS_FFER8)) {
1309 if (phba->work_hs & HS_FFER6)
1310 /* Re-establishing Link */
1311 lpfc_printf_log(phba, KERN_INFO, LOG_LINK_EVENT,
1312 "1301 Re-establishing Link "
1313 "Data: x%x x%x x%x\n",
1314 phba->work_hs, phba->work_status[0],
1315 phba->work_status[1]);
1316 if (phba->work_hs & HS_FFER8)
1317 /* Device Zeroization */
1318 lpfc_printf_log(phba, KERN_INFO, LOG_LINK_EVENT,
1319 "2861 Host Authentication device "
1320 "zeroization Data:x%x x%x x%x\n",
1321 phba->work_hs, phba->work_status[0],
1322 phba->work_status[1]);
58da1ffb 1323
92d7f7b0 1324 spin_lock_irq(&phba->hbalock);
f4b4c68f 1325 psli->sli_flag &= ~LPFC_SLI_ACTIVE;
92d7f7b0 1326 spin_unlock_irq(&phba->hbalock);
dea3101e
JB
1327
1328 /*
1329 * Firmware stops when it triggled erratt with HS_FFER6.
1330 * That could cause the I/Os dropped by the firmware.
1331 * Error iocb (I/O) on txcmplq and let the SCSI layer
1332 * retry it after re-establishing link.
1333 */
1334 pring = &psli->ring[psli->fcp_ring];
1335 lpfc_sli_abort_iocb_ring(phba, pring);
1336
dea3101e
JB
1337 /*
1338 * There was a firmware error. Take the hba offline and then
1339 * attempt to restart it.
1340 */
46fa311e 1341 lpfc_offline_prep(phba);
dea3101e 1342 lpfc_offline(phba);
41415862 1343 lpfc_sli_brdrestart(phba);
dea3101e 1344 if (lpfc_online(phba) == 0) { /* Initialize the HBA */
46fa311e 1345 lpfc_unblock_mgmt_io(phba);
dea3101e
JB
1346 return;
1347 }
46fa311e 1348 lpfc_unblock_mgmt_io(phba);
57127f15
JS
1349 } else if (phba->work_hs & HS_CRIT_TEMP) {
1350 temperature = readl(phba->MBslimaddr + TEMPERATURE_OFFSET);
1351 temp_event_data.event_type = FC_REG_TEMPERATURE_EVENT;
1352 temp_event_data.event_code = LPFC_CRIT_TEMP;
1353 temp_event_data.data = (uint32_t)temperature;
1354
1355 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
d7c255b2 1356 "0406 Adapter maximum temperature exceeded "
57127f15
JS
1357 "(%ld), taking this port offline "
1358 "Data: x%x x%x x%x\n",
1359 temperature, phba->work_hs,
1360 phba->work_status[0], phba->work_status[1]);
1361
1362 shost = lpfc_shost_from_vport(phba->pport);
1363 fc_host_post_vendor_event(shost, fc_get_event_number(),
1364 sizeof(temp_event_data),
1365 (char *) &temp_event_data,
1366 SCSI_NL_VID_TYPE_PCI
1367 | PCI_VENDOR_ID_EMULEX);
1368
7af67051 1369 spin_lock_irq(&phba->hbalock);
7af67051
JS
1370 phba->over_temp_state = HBA_OVER_TEMP;
1371 spin_unlock_irq(&phba->hbalock);
09372820 1372 lpfc_offline_eratt(phba);
57127f15 1373
dea3101e
JB
1374 } else {
1375 /* The if clause above forces this code path when the status
9399627f
JS
1376 * failure is a value other than FFER6. Do not call the offline
1377 * twice. This is the adapter hardware error path.
dea3101e
JB
1378 */
1379 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
e8b62011 1380 "0457 Adapter Hardware Error "
dea3101e 1381 "Data: x%x x%x x%x\n",
e8b62011 1382 phba->work_hs,
dea3101e
JB
1383 phba->work_status[0], phba->work_status[1]);
1384
d2873e4c 1385 event_data = FC_REG_DUMP_EVENT;
92d7f7b0 1386 shost = lpfc_shost_from_vport(vport);
2e0fef85 1387 fc_host_post_vendor_event(shost, fc_get_event_number(),
d2873e4c
JS
1388 sizeof(event_data), (char *) &event_data,
1389 SCSI_NL_VID_TYPE_PCI | PCI_VENDOR_ID_EMULEX);
1390
09372820 1391 lpfc_offline_eratt(phba);
dea3101e 1392 }
9399627f 1393 return;
dea3101e
JB
1394}
1395
da0436e9
JS
1396/**
1397 * lpfc_handle_eratt_s4 - The SLI4 HBA hardware error handler
1398 * @phba: pointer to lpfc hba data structure.
1399 *
1400 * This routine is invoked to handle the SLI4 HBA hardware error attention
1401 * conditions.
1402 **/
1403static void
1404lpfc_handle_eratt_s4(struct lpfc_hba *phba)
1405{
1406 struct lpfc_vport *vport = phba->pport;
1407 uint32_t event_data;
1408 struct Scsi_Host *shost;
1409
1410 /* If the pci channel is offline, ignore possible errors, since
1411 * we cannot communicate with the pci card anyway.
1412 */
1413 if (pci_channel_offline(phba->pcidev))
1414 return;
1415 /* If resets are disabled then leave the HBA alone and return */
1416 if (!phba->cfg_enable_hba_reset)
1417 return;
1418
1419 /* Send an internal error event to mgmt application */
1420 lpfc_board_errevt_to_mgmt(phba);
1421
1422 /* For now, the actual action for SLI4 device handling is not
1423 * specified yet, just treated it as adaptor hardware failure
1424 */
1425 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
1426 "0143 SLI4 Adapter Hardware Error Data: x%x x%x\n",
1427 phba->work_status[0], phba->work_status[1]);
1428
1429 event_data = FC_REG_DUMP_EVENT;
1430 shost = lpfc_shost_from_vport(vport);
1431 fc_host_post_vendor_event(shost, fc_get_event_number(),
1432 sizeof(event_data), (char *) &event_data,
1433 SCSI_NL_VID_TYPE_PCI | PCI_VENDOR_ID_EMULEX);
1434
1435 lpfc_sli4_offline_eratt(phba);
1436}
1437
1438/**
1439 * lpfc_handle_eratt - Wrapper func for handling hba error attention
1440 * @phba: pointer to lpfc HBA data structure.
1441 *
1442 * This routine wraps the actual SLI3 or SLI4 hba error attention handling
1443 * routine from the API jump table function pointer from the lpfc_hba struct.
1444 *
1445 * Return codes
af901ca1 1446 * 0 - success.
da0436e9
JS
1447 * Any other value - error.
1448 **/
1449void
1450lpfc_handle_eratt(struct lpfc_hba *phba)
1451{
1452 (*phba->lpfc_handle_eratt)(phba);
1453}
1454
e59058c4 1455/**
3621a710 1456 * lpfc_handle_latt - The HBA link event handler
e59058c4
JS
1457 * @phba: pointer to lpfc hba data structure.
1458 *
1459 * This routine is invoked from the worker thread to handle a HBA host
1460 * attention link event.
1461 **/
dea3101e 1462void
2e0fef85 1463lpfc_handle_latt(struct lpfc_hba *phba)
dea3101e 1464{
2e0fef85
JS
1465 struct lpfc_vport *vport = phba->pport;
1466 struct lpfc_sli *psli = &phba->sli;
dea3101e
JB
1467 LPFC_MBOXQ_t *pmb;
1468 volatile uint32_t control;
1469 struct lpfc_dmabuf *mp;
09372820 1470 int rc = 0;
dea3101e
JB
1471
1472 pmb = (LPFC_MBOXQ_t *)mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
09372820
JS
1473 if (!pmb) {
1474 rc = 1;
dea3101e 1475 goto lpfc_handle_latt_err_exit;
09372820 1476 }
dea3101e
JB
1477
1478 mp = kmalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
09372820
JS
1479 if (!mp) {
1480 rc = 2;
dea3101e 1481 goto lpfc_handle_latt_free_pmb;
09372820 1482 }
dea3101e
JB
1483
1484 mp->virt = lpfc_mbuf_alloc(phba, 0, &mp->phys);
09372820
JS
1485 if (!mp->virt) {
1486 rc = 3;
dea3101e 1487 goto lpfc_handle_latt_free_mp;
09372820 1488 }
dea3101e 1489
6281bfe0 1490 /* Cleanup any outstanding ELS commands */
549e55cd 1491 lpfc_els_flush_all_cmd(phba);
dea3101e
JB
1492
1493 psli->slistat.link_event++;
76a95d75
JS
1494 lpfc_read_topology(phba, pmb, mp);
1495 pmb->mbox_cmpl = lpfc_mbx_cmpl_read_topology;
2e0fef85 1496 pmb->vport = vport;
0d2b6b83
JS
1497 /* Block ELS IOCBs until we have processed this mbox command */
1498 phba->sli.ring[LPFC_ELS_RING].flag |= LPFC_STOP_IOCB_EVENT;
0b727fea 1499 rc = lpfc_sli_issue_mbox (phba, pmb, MBX_NOWAIT);
09372820
JS
1500 if (rc == MBX_NOT_FINISHED) {
1501 rc = 4;
14691150 1502 goto lpfc_handle_latt_free_mbuf;
09372820 1503 }
dea3101e
JB
1504
1505 /* Clear Link Attention in HA REG */
2e0fef85 1506 spin_lock_irq(&phba->hbalock);
dea3101e
JB
1507 writel(HA_LATT, phba->HAregaddr);
1508 readl(phba->HAregaddr); /* flush */
2e0fef85 1509 spin_unlock_irq(&phba->hbalock);
dea3101e
JB
1510
1511 return;
1512
14691150 1513lpfc_handle_latt_free_mbuf:
0d2b6b83 1514 phba->sli.ring[LPFC_ELS_RING].flag &= ~LPFC_STOP_IOCB_EVENT;
14691150 1515 lpfc_mbuf_free(phba, mp->virt, mp->phys);
dea3101e
JB
1516lpfc_handle_latt_free_mp:
1517 kfree(mp);
1518lpfc_handle_latt_free_pmb:
1dcb58e5 1519 mempool_free(pmb, phba->mbox_mem_pool);
dea3101e
JB
1520lpfc_handle_latt_err_exit:
1521 /* Enable Link attention interrupts */
2e0fef85 1522 spin_lock_irq(&phba->hbalock);
dea3101e
JB
1523 psli->sli_flag |= LPFC_PROCESS_LA;
1524 control = readl(phba->HCregaddr);
1525 control |= HC_LAINT_ENA;
1526 writel(control, phba->HCregaddr);
1527 readl(phba->HCregaddr); /* flush */
1528
1529 /* Clear Link Attention in HA REG */
1530 writel(HA_LATT, phba->HAregaddr);
1531 readl(phba->HAregaddr); /* flush */
2e0fef85 1532 spin_unlock_irq(&phba->hbalock);
dea3101e 1533 lpfc_linkdown(phba);
2e0fef85 1534 phba->link_state = LPFC_HBA_ERROR;
dea3101e 1535
09372820
JS
1536 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX,
1537 "0300 LATT: Cannot issue READ_LA: Data:%d\n", rc);
dea3101e
JB
1538
1539 return;
1540}
1541
e59058c4 1542/**
3621a710 1543 * lpfc_parse_vpd - Parse VPD (Vital Product Data)
e59058c4
JS
1544 * @phba: pointer to lpfc hba data structure.
1545 * @vpd: pointer to the vital product data.
1546 * @len: length of the vital product data in bytes.
1547 *
1548 * This routine parses the Vital Product Data (VPD). The VPD is treated as
1549 * an array of characters. In this routine, the ModelName, ProgramType, and
1550 * ModelDesc, etc. fields of the phba data structure will be populated.
1551 *
1552 * Return codes
1553 * 0 - pointer to the VPD passed in is NULL
1554 * 1 - success
1555 **/
3772a991 1556int
2e0fef85 1557lpfc_parse_vpd(struct lpfc_hba *phba, uint8_t *vpd, int len)
dea3101e
JB
1558{
1559 uint8_t lenlo, lenhi;
07da60c1 1560 int Length;
dea3101e
JB
1561 int i, j;
1562 int finished = 0;
1563 int index = 0;
1564
1565 if (!vpd)
1566 return 0;
1567
1568 /* Vital Product */
ed957684 1569 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
e8b62011 1570 "0455 Vital Product Data: x%x x%x x%x x%x\n",
dea3101e
JB
1571 (uint32_t) vpd[0], (uint32_t) vpd[1], (uint32_t) vpd[2],
1572 (uint32_t) vpd[3]);
74b72a59 1573 while (!finished && (index < (len - 4))) {
dea3101e
JB
1574 switch (vpd[index]) {
1575 case 0x82:
74b72a59 1576 case 0x91:
dea3101e
JB
1577 index += 1;
1578 lenlo = vpd[index];
1579 index += 1;
1580 lenhi = vpd[index];
1581 index += 1;
1582 i = ((((unsigned short)lenhi) << 8) + lenlo);
1583 index += i;
1584 break;
1585 case 0x90:
1586 index += 1;
1587 lenlo = vpd[index];
1588 index += 1;
1589 lenhi = vpd[index];
1590 index += 1;
1591 Length = ((((unsigned short)lenhi) << 8) + lenlo);
74b72a59
JW
1592 if (Length > len - index)
1593 Length = len - index;
dea3101e
JB
1594 while (Length > 0) {
1595 /* Look for Serial Number */
1596 if ((vpd[index] == 'S') && (vpd[index+1] == 'N')) {
1597 index += 2;
1598 i = vpd[index];
1599 index += 1;
1600 j = 0;
1601 Length -= (3+i);
1602 while(i--) {
1603 phba->SerialNumber[j++] = vpd[index++];
1604 if (j == 31)
1605 break;
1606 }
1607 phba->SerialNumber[j] = 0;
1608 continue;
1609 }
1610 else if ((vpd[index] == 'V') && (vpd[index+1] == '1')) {
1611 phba->vpd_flag |= VPD_MODEL_DESC;
1612 index += 2;
1613 i = vpd[index];
1614 index += 1;
1615 j = 0;
1616 Length -= (3+i);
1617 while(i--) {
1618 phba->ModelDesc[j++] = vpd[index++];
1619 if (j == 255)
1620 break;
1621 }
1622 phba->ModelDesc[j] = 0;
1623 continue;
1624 }
1625 else if ((vpd[index] == 'V') && (vpd[index+1] == '2')) {
1626 phba->vpd_flag |= VPD_MODEL_NAME;
1627 index += 2;
1628 i = vpd[index];
1629 index += 1;
1630 j = 0;
1631 Length -= (3+i);
1632 while(i--) {
1633 phba->ModelName[j++] = vpd[index++];
1634 if (j == 79)
1635 break;
1636 }
1637 phba->ModelName[j] = 0;
1638 continue;
1639 }
1640 else if ((vpd[index] == 'V') && (vpd[index+1] == '3')) {
1641 phba->vpd_flag |= VPD_PROGRAM_TYPE;
1642 index += 2;
1643 i = vpd[index];
1644 index += 1;
1645 j = 0;
1646 Length -= (3+i);
1647 while(i--) {
1648 phba->ProgramType[j++] = vpd[index++];
1649 if (j == 255)
1650 break;
1651 }
1652 phba->ProgramType[j] = 0;
1653 continue;
1654 }
1655 else if ((vpd[index] == 'V') && (vpd[index+1] == '4')) {
1656 phba->vpd_flag |= VPD_PORT;
1657 index += 2;
1658 i = vpd[index];
1659 index += 1;
1660 j = 0;
1661 Length -= (3+i);
1662 while(i--) {
1663 phba->Port[j++] = vpd[index++];
1664 if (j == 19)
1665 break;
1666 }
1667 phba->Port[j] = 0;
1668 continue;
1669 }
1670 else {
1671 index += 2;
1672 i = vpd[index];
1673 index += 1;
1674 index += i;
1675 Length -= (3 + i);
1676 }
1677 }
1678 finished = 0;
1679 break;
1680 case 0x78:
1681 finished = 1;
1682 break;
1683 default:
1684 index ++;
1685 break;
1686 }
74b72a59 1687 }
dea3101e
JB
1688
1689 return(1);
1690}
1691
e59058c4 1692/**
3621a710 1693 * lpfc_get_hba_model_desc - Retrieve HBA device model name and description
e59058c4
JS
1694 * @phba: pointer to lpfc hba data structure.
1695 * @mdp: pointer to the data structure to hold the derived model name.
1696 * @descp: pointer to the data structure to hold the derived description.
1697 *
1698 * This routine retrieves HBA's description based on its registered PCI device
1699 * ID. The @descp passed into this function points to an array of 256 chars. It
1700 * shall be returned with the model name, maximum speed, and the host bus type.
1701 * The @mdp passed into this function points to an array of 80 chars. When the
1702 * function returns, the @mdp will be filled with the model name.
1703 **/
dea3101e 1704static void
2e0fef85 1705lpfc_get_hba_model_desc(struct lpfc_hba *phba, uint8_t *mdp, uint8_t *descp)
dea3101e
JB
1706{
1707 lpfc_vpd_t *vp;
fefcb2b6 1708 uint16_t dev_id = phba->pcidev->device;
74b72a59 1709 int max_speed;
84774a4d 1710 int GE = 0;
da0436e9 1711 int oneConnect = 0; /* default is not a oneConnect */
74b72a59 1712 struct {
a747c9ce
JS
1713 char *name;
1714 char *bus;
1715 char *function;
1716 } m = {"<Unknown>", "", ""};
74b72a59
JW
1717
1718 if (mdp && mdp[0] != '\0'
1719 && descp && descp[0] != '\0')
1720 return;
1721
1722 if (phba->lmt & LMT_10Gb)
1723 max_speed = 10;
1724 else if (phba->lmt & LMT_8Gb)
1725 max_speed = 8;
1726 else if (phba->lmt & LMT_4Gb)
1727 max_speed = 4;
1728 else if (phba->lmt & LMT_2Gb)
1729 max_speed = 2;
1730 else
1731 max_speed = 1;
dea3101e
JB
1732
1733 vp = &phba->vpd;
dea3101e 1734
e4adb204 1735 switch (dev_id) {
06325e74 1736 case PCI_DEVICE_ID_FIREFLY:
a747c9ce 1737 m = (typeof(m)){"LP6000", "PCI", "Fibre Channel Adapter"};
06325e74 1738 break;
dea3101e
JB
1739 case PCI_DEVICE_ID_SUPERFLY:
1740 if (vp->rev.biuRev >= 1 && vp->rev.biuRev <= 3)
a747c9ce
JS
1741 m = (typeof(m)){"LP7000", "PCI",
1742 "Fibre Channel Adapter"};
dea3101e 1743 else
a747c9ce
JS
1744 m = (typeof(m)){"LP7000E", "PCI",
1745 "Fibre Channel Adapter"};
dea3101e
JB
1746 break;
1747 case PCI_DEVICE_ID_DRAGONFLY:
a747c9ce
JS
1748 m = (typeof(m)){"LP8000", "PCI",
1749 "Fibre Channel Adapter"};
dea3101e
JB
1750 break;
1751 case PCI_DEVICE_ID_CENTAUR:
1752 if (FC_JEDEC_ID(vp->rev.biuRev) == CENTAUR_2G_JEDEC_ID)
a747c9ce
JS
1753 m = (typeof(m)){"LP9002", "PCI",
1754 "Fibre Channel Adapter"};
dea3101e 1755 else
a747c9ce
JS
1756 m = (typeof(m)){"LP9000", "PCI",
1757 "Fibre Channel Adapter"};
dea3101e
JB
1758 break;
1759 case PCI_DEVICE_ID_RFLY:
a747c9ce
JS
1760 m = (typeof(m)){"LP952", "PCI",
1761 "Fibre Channel Adapter"};
dea3101e
JB
1762 break;
1763 case PCI_DEVICE_ID_PEGASUS:
a747c9ce
JS
1764 m = (typeof(m)){"LP9802", "PCI-X",
1765 "Fibre Channel Adapter"};
dea3101e
JB
1766 break;
1767 case PCI_DEVICE_ID_THOR:
a747c9ce
JS
1768 m = (typeof(m)){"LP10000", "PCI-X",
1769 "Fibre Channel Adapter"};
dea3101e
JB
1770 break;
1771 case PCI_DEVICE_ID_VIPER:
a747c9ce
JS
1772 m = (typeof(m)){"LPX1000", "PCI-X",
1773 "Fibre Channel Adapter"};
dea3101e
JB
1774 break;
1775 case PCI_DEVICE_ID_PFLY:
a747c9ce
JS
1776 m = (typeof(m)){"LP982", "PCI-X",
1777 "Fibre Channel Adapter"};
dea3101e
JB
1778 break;
1779 case PCI_DEVICE_ID_TFLY:
a747c9ce
JS
1780 m = (typeof(m)){"LP1050", "PCI-X",
1781 "Fibre Channel Adapter"};
dea3101e
JB
1782 break;
1783 case PCI_DEVICE_ID_HELIOS:
a747c9ce
JS
1784 m = (typeof(m)){"LP11000", "PCI-X2",
1785 "Fibre Channel Adapter"};
dea3101e 1786 break;
e4adb204 1787 case PCI_DEVICE_ID_HELIOS_SCSP:
a747c9ce
JS
1788 m = (typeof(m)){"LP11000-SP", "PCI-X2",
1789 "Fibre Channel Adapter"};
e4adb204
JSEC
1790 break;
1791 case PCI_DEVICE_ID_HELIOS_DCSP:
a747c9ce
JS
1792 m = (typeof(m)){"LP11002-SP", "PCI-X2",
1793 "Fibre Channel Adapter"};
e4adb204
JSEC
1794 break;
1795 case PCI_DEVICE_ID_NEPTUNE:
a747c9ce 1796 m = (typeof(m)){"LPe1000", "PCIe", "Fibre Channel Adapter"};
e4adb204
JSEC
1797 break;
1798 case PCI_DEVICE_ID_NEPTUNE_SCSP:
a747c9ce 1799 m = (typeof(m)){"LPe1000-SP", "PCIe", "Fibre Channel Adapter"};
e4adb204
JSEC
1800 break;
1801 case PCI_DEVICE_ID_NEPTUNE_DCSP:
a747c9ce 1802 m = (typeof(m)){"LPe1002-SP", "PCIe", "Fibre Channel Adapter"};
e4adb204 1803 break;
dea3101e 1804 case PCI_DEVICE_ID_BMID:
a747c9ce 1805 m = (typeof(m)){"LP1150", "PCI-X2", "Fibre Channel Adapter"};
dea3101e
JB
1806 break;
1807 case PCI_DEVICE_ID_BSMB:
a747c9ce 1808 m = (typeof(m)){"LP111", "PCI-X2", "Fibre Channel Adapter"};
dea3101e
JB
1809 break;
1810 case PCI_DEVICE_ID_ZEPHYR:
a747c9ce 1811 m = (typeof(m)){"LPe11000", "PCIe", "Fibre Channel Adapter"};
dea3101e 1812 break;
e4adb204 1813 case PCI_DEVICE_ID_ZEPHYR_SCSP:
a747c9ce 1814 m = (typeof(m)){"LPe11000", "PCIe", "Fibre Channel Adapter"};
e4adb204
JSEC
1815 break;
1816 case PCI_DEVICE_ID_ZEPHYR_DCSP:
a747c9ce 1817 m = (typeof(m)){"LP2105", "PCIe", "FCoE Adapter"};
a257bf90 1818 GE = 1;
e4adb204 1819 break;
dea3101e 1820 case PCI_DEVICE_ID_ZMID:
a747c9ce 1821 m = (typeof(m)){"LPe1150", "PCIe", "Fibre Channel Adapter"};
dea3101e
JB
1822 break;
1823 case PCI_DEVICE_ID_ZSMB:
a747c9ce 1824 m = (typeof(m)){"LPe111", "PCIe", "Fibre Channel Adapter"};
dea3101e
JB
1825 break;
1826 case PCI_DEVICE_ID_LP101:
a747c9ce 1827 m = (typeof(m)){"LP101", "PCI-X", "Fibre Channel Adapter"};
dea3101e
JB
1828 break;
1829 case PCI_DEVICE_ID_LP10000S:
a747c9ce 1830 m = (typeof(m)){"LP10000-S", "PCI", "Fibre Channel Adapter"};
06325e74 1831 break;
e4adb204 1832 case PCI_DEVICE_ID_LP11000S:
a747c9ce 1833 m = (typeof(m)){"LP11000-S", "PCI-X2", "Fibre Channel Adapter"};
18a3b596 1834 break;
e4adb204 1835 case PCI_DEVICE_ID_LPE11000S:
a747c9ce 1836 m = (typeof(m)){"LPe11000-S", "PCIe", "Fibre Channel Adapter"};
5cc36b3c 1837 break;
b87eab38 1838 case PCI_DEVICE_ID_SAT:
a747c9ce 1839 m = (typeof(m)){"LPe12000", "PCIe", "Fibre Channel Adapter"};
b87eab38
JS
1840 break;
1841 case PCI_DEVICE_ID_SAT_MID:
a747c9ce 1842 m = (typeof(m)){"LPe1250", "PCIe", "Fibre Channel Adapter"};
b87eab38
JS
1843 break;
1844 case PCI_DEVICE_ID_SAT_SMB:
a747c9ce 1845 m = (typeof(m)){"LPe121", "PCIe", "Fibre Channel Adapter"};
b87eab38
JS
1846 break;
1847 case PCI_DEVICE_ID_SAT_DCSP:
a747c9ce 1848 m = (typeof(m)){"LPe12002-SP", "PCIe", "Fibre Channel Adapter"};
b87eab38
JS
1849 break;
1850 case PCI_DEVICE_ID_SAT_SCSP:
a747c9ce 1851 m = (typeof(m)){"LPe12000-SP", "PCIe", "Fibre Channel Adapter"};
b87eab38
JS
1852 break;
1853 case PCI_DEVICE_ID_SAT_S:
a747c9ce 1854 m = (typeof(m)){"LPe12000-S", "PCIe", "Fibre Channel Adapter"};
b87eab38 1855 break;
84774a4d 1856 case PCI_DEVICE_ID_HORNET:
a747c9ce 1857 m = (typeof(m)){"LP21000", "PCIe", "FCoE Adapter"};
84774a4d
JS
1858 GE = 1;
1859 break;
1860 case PCI_DEVICE_ID_PROTEUS_VF:
a747c9ce
JS
1861 m = (typeof(m)){"LPev12000", "PCIe IOV",
1862 "Fibre Channel Adapter"};
84774a4d
JS
1863 break;
1864 case PCI_DEVICE_ID_PROTEUS_PF:
a747c9ce
JS
1865 m = (typeof(m)){"LPev12000", "PCIe IOV",
1866 "Fibre Channel Adapter"};
84774a4d
JS
1867 break;
1868 case PCI_DEVICE_ID_PROTEUS_S:
a747c9ce
JS
1869 m = (typeof(m)){"LPemv12002-S", "PCIe IOV",
1870 "Fibre Channel Adapter"};
84774a4d 1871 break;
da0436e9
JS
1872 case PCI_DEVICE_ID_TIGERSHARK:
1873 oneConnect = 1;
a747c9ce 1874 m = (typeof(m)){"OCe10100", "PCIe", "FCoE"};
da0436e9 1875 break;
a747c9ce 1876 case PCI_DEVICE_ID_TOMCAT:
6669f9bb 1877 oneConnect = 1;
a747c9ce
JS
1878 m = (typeof(m)){"OCe11100", "PCIe", "FCoE"};
1879 break;
1880 case PCI_DEVICE_ID_FALCON:
1881 m = (typeof(m)){"LPSe12002-ML1-E", "PCIe",
1882 "EmulexSecure Fibre"};
6669f9bb 1883 break;
98fc5dd9
JS
1884 case PCI_DEVICE_ID_BALIUS:
1885 m = (typeof(m)){"LPVe12002", "PCIe Shared I/O",
1886 "Fibre Channel Adapter"};
1887 break;
085c647c
JS
1888 case PCI_DEVICE_ID_LANCER_FC:
1889 oneConnect = 1;
1890 m = (typeof(m)){"Undefined", "PCIe", "Fibre Channel Adapter"};
1891 break;
1892 case PCI_DEVICE_ID_LANCER_FCOE:
1893 oneConnect = 1;
1894 m = (typeof(m)){"Undefined", "PCIe", "FCoE"};
1895 break;
5cc36b3c 1896 default:
a747c9ce 1897 m = (typeof(m)){"Unknown", "", ""};
e4adb204 1898 break;
dea3101e 1899 }
74b72a59
JW
1900
1901 if (mdp && mdp[0] == '\0')
1902 snprintf(mdp, 79,"%s", m.name);
da0436e9
JS
1903 /* oneConnect hba requires special processing, they are all initiators
1904 * and we put the port number on the end
1905 */
1906 if (descp && descp[0] == '\0') {
1907 if (oneConnect)
1908 snprintf(descp, 255,
a747c9ce
JS
1909 "Emulex OneConnect %s, %s Initiator, Port %s",
1910 m.name, m.function,
da0436e9
JS
1911 phba->Port);
1912 else
1913 snprintf(descp, 255,
1914 "Emulex %s %d%s %s %s",
a747c9ce
JS
1915 m.name, max_speed, (GE) ? "GE" : "Gb",
1916 m.bus, m.function);
da0436e9 1917 }
dea3101e
JB
1918}
1919
e59058c4 1920/**
3621a710 1921 * lpfc_post_buffer - Post IOCB(s) with DMA buffer descriptor(s) to a IOCB ring
e59058c4
JS
1922 * @phba: pointer to lpfc hba data structure.
1923 * @pring: pointer to a IOCB ring.
1924 * @cnt: the number of IOCBs to be posted to the IOCB ring.
1925 *
1926 * This routine posts a given number of IOCBs with the associated DMA buffer
1927 * descriptors specified by the cnt argument to the given IOCB ring.
1928 *
1929 * Return codes
1930 * The number of IOCBs NOT able to be posted to the IOCB ring.
1931 **/
dea3101e 1932int
495a714c 1933lpfc_post_buffer(struct lpfc_hba *phba, struct lpfc_sli_ring *pring, int cnt)
dea3101e
JB
1934{
1935 IOCB_t *icmd;
0bd4ca25 1936 struct lpfc_iocbq *iocb;
dea3101e
JB
1937 struct lpfc_dmabuf *mp1, *mp2;
1938
1939 cnt += pring->missbufcnt;
1940
1941 /* While there are buffers to post */
1942 while (cnt > 0) {
1943 /* Allocate buffer for command iocb */
0bd4ca25 1944 iocb = lpfc_sli_get_iocbq(phba);
dea3101e
JB
1945 if (iocb == NULL) {
1946 pring->missbufcnt = cnt;
1947 return cnt;
1948 }
dea3101e
JB
1949 icmd = &iocb->iocb;
1950
1951 /* 2 buffers can be posted per command */
1952 /* Allocate buffer to post */
1953 mp1 = kmalloc(sizeof (struct lpfc_dmabuf), GFP_KERNEL);
1954 if (mp1)
98c9ea5c
JS
1955 mp1->virt = lpfc_mbuf_alloc(phba, MEM_PRI, &mp1->phys);
1956 if (!mp1 || !mp1->virt) {
c9475cb0 1957 kfree(mp1);
604a3e30 1958 lpfc_sli_release_iocbq(phba, iocb);
dea3101e
JB
1959 pring->missbufcnt = cnt;
1960 return cnt;
1961 }
1962
1963 INIT_LIST_HEAD(&mp1->list);
1964 /* Allocate buffer to post */
1965 if (cnt > 1) {
1966 mp2 = kmalloc(sizeof (struct lpfc_dmabuf), GFP_KERNEL);
1967 if (mp2)
1968 mp2->virt = lpfc_mbuf_alloc(phba, MEM_PRI,
1969 &mp2->phys);
98c9ea5c 1970 if (!mp2 || !mp2->virt) {
c9475cb0 1971 kfree(mp2);
dea3101e
JB
1972 lpfc_mbuf_free(phba, mp1->virt, mp1->phys);
1973 kfree(mp1);
604a3e30 1974 lpfc_sli_release_iocbq(phba, iocb);
dea3101e
JB
1975 pring->missbufcnt = cnt;
1976 return cnt;
1977 }
1978
1979 INIT_LIST_HEAD(&mp2->list);
1980 } else {
1981 mp2 = NULL;
1982 }
1983
1984 icmd->un.cont64[0].addrHigh = putPaddrHigh(mp1->phys);
1985 icmd->un.cont64[0].addrLow = putPaddrLow(mp1->phys);
1986 icmd->un.cont64[0].tus.f.bdeSize = FCELSSIZE;
1987 icmd->ulpBdeCount = 1;
1988 cnt--;
1989 if (mp2) {
1990 icmd->un.cont64[1].addrHigh = putPaddrHigh(mp2->phys);
1991 icmd->un.cont64[1].addrLow = putPaddrLow(mp2->phys);
1992 icmd->un.cont64[1].tus.f.bdeSize = FCELSSIZE;
1993 cnt--;
1994 icmd->ulpBdeCount = 2;
1995 }
1996
1997 icmd->ulpCommand = CMD_QUE_RING_BUF64_CN;
1998 icmd->ulpLe = 1;
1999
3772a991
JS
2000 if (lpfc_sli_issue_iocb(phba, pring->ringno, iocb, 0) ==
2001 IOCB_ERROR) {
dea3101e
JB
2002 lpfc_mbuf_free(phba, mp1->virt, mp1->phys);
2003 kfree(mp1);
2004 cnt++;
2005 if (mp2) {
2006 lpfc_mbuf_free(phba, mp2->virt, mp2->phys);
2007 kfree(mp2);
2008 cnt++;
2009 }
604a3e30 2010 lpfc_sli_release_iocbq(phba, iocb);
dea3101e 2011 pring->missbufcnt = cnt;
dea3101e
JB
2012 return cnt;
2013 }
dea3101e 2014 lpfc_sli_ringpostbuf_put(phba, pring, mp1);
92d7f7b0 2015 if (mp2)
dea3101e 2016 lpfc_sli_ringpostbuf_put(phba, pring, mp2);
dea3101e
JB
2017 }
2018 pring->missbufcnt = 0;
2019 return 0;
2020}
2021
e59058c4 2022/**
3621a710 2023 * lpfc_post_rcv_buf - Post the initial receive IOCB buffers to ELS ring
e59058c4
JS
2024 * @phba: pointer to lpfc hba data structure.
2025 *
2026 * This routine posts initial receive IOCB buffers to the ELS ring. The
2027 * current number of initial IOCB buffers specified by LPFC_BUF_RING0 is
2028 * set to 64 IOCBs.
2029 *
2030 * Return codes
2031 * 0 - success (currently always success)
2032 **/
dea3101e 2033static int
2e0fef85 2034lpfc_post_rcv_buf(struct lpfc_hba *phba)
dea3101e
JB
2035{
2036 struct lpfc_sli *psli = &phba->sli;
2037
2038 /* Ring 0, ELS / CT buffers */
495a714c 2039 lpfc_post_buffer(phba, &psli->ring[LPFC_ELS_RING], LPFC_BUF_RING0);
dea3101e
JB
2040 /* Ring 2 - FCP no buffers needed */
2041
2042 return 0;
2043}
2044
2045#define S(N,V) (((V)<<(N))|((V)>>(32-(N))))
2046
e59058c4 2047/**
3621a710 2048 * lpfc_sha_init - Set up initial array of hash table entries
e59058c4
JS
2049 * @HashResultPointer: pointer to an array as hash table.
2050 *
2051 * This routine sets up the initial values to the array of hash table entries
2052 * for the LC HBAs.
2053 **/
dea3101e
JB
2054static void
2055lpfc_sha_init(uint32_t * HashResultPointer)
2056{
2057 HashResultPointer[0] = 0x67452301;
2058 HashResultPointer[1] = 0xEFCDAB89;
2059 HashResultPointer[2] = 0x98BADCFE;
2060 HashResultPointer[3] = 0x10325476;
2061 HashResultPointer[4] = 0xC3D2E1F0;
2062}
2063
e59058c4 2064/**
3621a710 2065 * lpfc_sha_iterate - Iterate initial hash table with the working hash table
e59058c4
JS
2066 * @HashResultPointer: pointer to an initial/result hash table.
2067 * @HashWorkingPointer: pointer to an working hash table.
2068 *
2069 * This routine iterates an initial hash table pointed by @HashResultPointer
2070 * with the values from the working hash table pointeed by @HashWorkingPointer.
2071 * The results are putting back to the initial hash table, returned through
2072 * the @HashResultPointer as the result hash table.
2073 **/
dea3101e
JB
2074static void
2075lpfc_sha_iterate(uint32_t * HashResultPointer, uint32_t * HashWorkingPointer)
2076{
2077 int t;
2078 uint32_t TEMP;
2079 uint32_t A, B, C, D, E;
2080 t = 16;
2081 do {
2082 HashWorkingPointer[t] =
2083 S(1,
2084 HashWorkingPointer[t - 3] ^ HashWorkingPointer[t -
2085 8] ^
2086 HashWorkingPointer[t - 14] ^ HashWorkingPointer[t - 16]);
2087 } while (++t <= 79);
2088 t = 0;
2089 A = HashResultPointer[0];
2090 B = HashResultPointer[1];
2091 C = HashResultPointer[2];
2092 D = HashResultPointer[3];
2093 E = HashResultPointer[4];
2094
2095 do {
2096 if (t < 20) {
2097 TEMP = ((B & C) | ((~B) & D)) + 0x5A827999;
2098 } else if (t < 40) {
2099 TEMP = (B ^ C ^ D) + 0x6ED9EBA1;
2100 } else if (t < 60) {
2101 TEMP = ((B & C) | (B & D) | (C & D)) + 0x8F1BBCDC;
2102 } else {
2103 TEMP = (B ^ C ^ D) + 0xCA62C1D6;
2104 }
2105 TEMP += S(5, A) + E + HashWorkingPointer[t];
2106 E = D;
2107 D = C;
2108 C = S(30, B);
2109 B = A;
2110 A = TEMP;
2111 } while (++t <= 79);
2112
2113 HashResultPointer[0] += A;
2114 HashResultPointer[1] += B;
2115 HashResultPointer[2] += C;
2116 HashResultPointer[3] += D;
2117 HashResultPointer[4] += E;
2118
2119}
2120
e59058c4 2121/**
3621a710 2122 * lpfc_challenge_key - Create challenge key based on WWPN of the HBA
e59058c4
JS
2123 * @RandomChallenge: pointer to the entry of host challenge random number array.
2124 * @HashWorking: pointer to the entry of the working hash array.
2125 *
2126 * This routine calculates the working hash array referred by @HashWorking
2127 * from the challenge random numbers associated with the host, referred by
2128 * @RandomChallenge. The result is put into the entry of the working hash
2129 * array and returned by reference through @HashWorking.
2130 **/
dea3101e
JB
2131static void
2132lpfc_challenge_key(uint32_t * RandomChallenge, uint32_t * HashWorking)
2133{
2134 *HashWorking = (*RandomChallenge ^ *HashWorking);
2135}
2136
e59058c4 2137/**
3621a710 2138 * lpfc_hba_init - Perform special handling for LC HBA initialization
e59058c4
JS
2139 * @phba: pointer to lpfc hba data structure.
2140 * @hbainit: pointer to an array of unsigned 32-bit integers.
2141 *
2142 * This routine performs the special handling for LC HBA initialization.
2143 **/
dea3101e
JB
2144void
2145lpfc_hba_init(struct lpfc_hba *phba, uint32_t *hbainit)
2146{
2147 int t;
2148 uint32_t *HashWorking;
2e0fef85 2149 uint32_t *pwwnn = (uint32_t *) phba->wwnn;
dea3101e 2150
bbfbbbc1 2151 HashWorking = kcalloc(80, sizeof(uint32_t), GFP_KERNEL);
dea3101e
JB
2152 if (!HashWorking)
2153 return;
2154
dea3101e
JB
2155 HashWorking[0] = HashWorking[78] = *pwwnn++;
2156 HashWorking[1] = HashWorking[79] = *pwwnn;
2157
2158 for (t = 0; t < 7; t++)
2159 lpfc_challenge_key(phba->RandomData + t, HashWorking + t);
2160
2161 lpfc_sha_init(hbainit);
2162 lpfc_sha_iterate(hbainit, HashWorking);
2163 kfree(HashWorking);
2164}
2165
e59058c4 2166/**
3621a710 2167 * lpfc_cleanup - Performs vport cleanups before deleting a vport
e59058c4
JS
2168 * @vport: pointer to a virtual N_Port data structure.
2169 *
2170 * This routine performs the necessary cleanups before deleting the @vport.
2171 * It invokes the discovery state machine to perform necessary state
2172 * transitions and to release the ndlps associated with the @vport. Note,
2173 * the physical port is treated as @vport 0.
2174 **/
87af33fe 2175void
2e0fef85 2176lpfc_cleanup(struct lpfc_vport *vport)
dea3101e 2177{
87af33fe 2178 struct lpfc_hba *phba = vport->phba;
dea3101e 2179 struct lpfc_nodelist *ndlp, *next_ndlp;
a8adb832 2180 int i = 0;
dea3101e 2181
87af33fe
JS
2182 if (phba->link_state > LPFC_LINK_DOWN)
2183 lpfc_port_link_failure(vport);
2184
2185 list_for_each_entry_safe(ndlp, next_ndlp, &vport->fc_nodes, nlp_listp) {
e47c9093
JS
2186 if (!NLP_CHK_NODE_ACT(ndlp)) {
2187 ndlp = lpfc_enable_node(vport, ndlp,
2188 NLP_STE_UNUSED_NODE);
2189 if (!ndlp)
2190 continue;
2191 spin_lock_irq(&phba->ndlp_lock);
2192 NLP_SET_FREE_REQ(ndlp);
2193 spin_unlock_irq(&phba->ndlp_lock);
2194 /* Trigger the release of the ndlp memory */
2195 lpfc_nlp_put(ndlp);
2196 continue;
2197 }
2198 spin_lock_irq(&phba->ndlp_lock);
2199 if (NLP_CHK_FREE_REQ(ndlp)) {
2200 /* The ndlp should not be in memory free mode already */
2201 spin_unlock_irq(&phba->ndlp_lock);
2202 continue;
2203 } else
2204 /* Indicate request for freeing ndlp memory */
2205 NLP_SET_FREE_REQ(ndlp);
2206 spin_unlock_irq(&phba->ndlp_lock);
2207
58da1ffb
JS
2208 if (vport->port_type != LPFC_PHYSICAL_PORT &&
2209 ndlp->nlp_DID == Fabric_DID) {
2210 /* Just free up ndlp with Fabric_DID for vports */
2211 lpfc_nlp_put(ndlp);
2212 continue;
2213 }
2214
87af33fe
JS
2215 if (ndlp->nlp_type & NLP_FABRIC)
2216 lpfc_disc_state_machine(vport, ndlp, NULL,
2217 NLP_EVT_DEVICE_RECOVERY);
e47c9093 2218
87af33fe
JS
2219 lpfc_disc_state_machine(vport, ndlp, NULL,
2220 NLP_EVT_DEVICE_RM);
495a714c 2221
87af33fe
JS
2222 }
2223
a8adb832
JS
2224 /* At this point, ALL ndlp's should be gone
2225 * because of the previous NLP_EVT_DEVICE_RM.
2226 * Lets wait for this to happen, if needed.
2227 */
87af33fe 2228 while (!list_empty(&vport->fc_nodes)) {
a8adb832 2229 if (i++ > 3000) {
87af33fe 2230 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
a8adb832 2231 "0233 Nodelist not empty\n");
e47c9093
JS
2232 list_for_each_entry_safe(ndlp, next_ndlp,
2233 &vport->fc_nodes, nlp_listp) {
2234 lpfc_printf_vlog(ndlp->vport, KERN_ERR,
2235 LOG_NODE,
d7c255b2 2236 "0282 did:x%x ndlp:x%p "
e47c9093
JS
2237 "usgmap:x%x refcnt:%d\n",
2238 ndlp->nlp_DID, (void *)ndlp,
2239 ndlp->nlp_usg_map,
2240 atomic_read(
2241 &ndlp->kref.refcount));
2242 }
a8adb832 2243 break;
87af33fe 2244 }
a8adb832
JS
2245
2246 /* Wait for any activity on ndlps to settle */
2247 msleep(10);
87af33fe 2248 }
dea3101e
JB
2249}
2250
e59058c4 2251/**
3621a710 2252 * lpfc_stop_vport_timers - Stop all the timers associated with a vport
e59058c4
JS
2253 * @vport: pointer to a virtual N_Port data structure.
2254 *
2255 * This routine stops all the timers associated with a @vport. This function
2256 * is invoked before disabling or deleting a @vport. Note that the physical
2257 * port is treated as @vport 0.
2258 **/
92d7f7b0
JS
2259void
2260lpfc_stop_vport_timers(struct lpfc_vport *vport)
dea3101e 2261{
92d7f7b0
JS
2262 del_timer_sync(&vport->els_tmofunc);
2263 del_timer_sync(&vport->fc_fdmitmo);
2264 lpfc_can_disctmo(vport);
2265 return;
dea3101e
JB
2266}
2267
ecfd03c6
JS
2268/**
2269 * __lpfc_sli4_stop_fcf_redisc_wait_timer - Stop FCF rediscovery wait timer
2270 * @phba: pointer to lpfc hba data structure.
2271 *
2272 * This routine stops the SLI4 FCF rediscover wait timer if it's on. The
2273 * caller of this routine should already hold the host lock.
2274 **/
2275void
2276__lpfc_sli4_stop_fcf_redisc_wait_timer(struct lpfc_hba *phba)
2277{
5ac6b303
JS
2278 /* Clear pending FCF rediscovery wait flag */
2279 phba->fcf.fcf_flag &= ~FCF_REDISC_PEND;
2280
ecfd03c6
JS
2281 /* Now, try to stop the timer */
2282 del_timer(&phba->fcf.redisc_wait);
2283}
2284
2285/**
2286 * lpfc_sli4_stop_fcf_redisc_wait_timer - Stop FCF rediscovery wait timer
2287 * @phba: pointer to lpfc hba data structure.
2288 *
2289 * This routine stops the SLI4 FCF rediscover wait timer if it's on. It
2290 * checks whether the FCF rediscovery wait timer is pending with the host
2291 * lock held before proceeding with disabling the timer and clearing the
2292 * wait timer pendig flag.
2293 **/
2294void
2295lpfc_sli4_stop_fcf_redisc_wait_timer(struct lpfc_hba *phba)
2296{
2297 spin_lock_irq(&phba->hbalock);
2298 if (!(phba->fcf.fcf_flag & FCF_REDISC_PEND)) {
2299 /* FCF rediscovery timer already fired or stopped */
2300 spin_unlock_irq(&phba->hbalock);
2301 return;
2302 }
2303 __lpfc_sli4_stop_fcf_redisc_wait_timer(phba);
5ac6b303
JS
2304 /* Clear failover in progress flags */
2305 phba->fcf.fcf_flag &= ~(FCF_DEAD_DISC | FCF_ACVL_DISC);
ecfd03c6
JS
2306 spin_unlock_irq(&phba->hbalock);
2307}
2308
e59058c4 2309/**
3772a991 2310 * lpfc_stop_hba_timers - Stop all the timers associated with an HBA
e59058c4
JS
2311 * @phba: pointer to lpfc hba data structure.
2312 *
2313 * This routine stops all the timers associated with a HBA. This function is
2314 * invoked before either putting a HBA offline or unloading the driver.
2315 **/
3772a991
JS
2316void
2317lpfc_stop_hba_timers(struct lpfc_hba *phba)
dea3101e 2318{
51ef4c26 2319 lpfc_stop_vport_timers(phba->pport);
2e0fef85 2320 del_timer_sync(&phba->sli.mbox_tmo);
92d7f7b0 2321 del_timer_sync(&phba->fabric_block_timer);
9399627f 2322 del_timer_sync(&phba->eratt_poll);
3772a991
JS
2323 del_timer_sync(&phba->hb_tmofunc);
2324 phba->hb_outstanding = 0;
2325
2326 switch (phba->pci_dev_grp) {
2327 case LPFC_PCI_DEV_LP:
2328 /* Stop any LightPulse device specific driver timers */
2329 del_timer_sync(&phba->fcp_poll_timer);
2330 break;
2331 case LPFC_PCI_DEV_OC:
2332 /* Stop any OneConnect device sepcific driver timers */
ecfd03c6 2333 lpfc_sli4_stop_fcf_redisc_wait_timer(phba);
3772a991
JS
2334 break;
2335 default:
2336 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
2337 "0297 Invalid device group (x%x)\n",
2338 phba->pci_dev_grp);
2339 break;
2340 }
2e0fef85 2341 return;
dea3101e
JB
2342}
2343
e59058c4 2344/**
3621a710 2345 * lpfc_block_mgmt_io - Mark a HBA's management interface as blocked
e59058c4
JS
2346 * @phba: pointer to lpfc hba data structure.
2347 *
2348 * This routine marks a HBA's management interface as blocked. Once the HBA's
2349 * management interface is marked as blocked, all the user space access to
2350 * the HBA, whether they are from sysfs interface or libdfc interface will
2351 * all be blocked. The HBA is set to block the management interface when the
2352 * driver prepares the HBA interface for online or offline.
2353 **/
a6ababd2
AB
2354static void
2355lpfc_block_mgmt_io(struct lpfc_hba * phba)
2356{
2357 unsigned long iflag;
6e7288d9
JS
2358 uint8_t actcmd = MBX_HEARTBEAT;
2359 unsigned long timeout;
2360
a6ababd2
AB
2361
2362 spin_lock_irqsave(&phba->hbalock, iflag);
2363 phba->sli.sli_flag |= LPFC_BLOCK_MGMT_IO;
6e7288d9
JS
2364 if (phba->sli.mbox_active)
2365 actcmd = phba->sli.mbox_active->u.mb.mbxCommand;
a6ababd2 2366 spin_unlock_irqrestore(&phba->hbalock, iflag);
6e7288d9
JS
2367 /* Determine how long we might wait for the active mailbox
2368 * command to be gracefully completed by firmware.
2369 */
2370 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba, actcmd) * 1000) +
2371 jiffies;
2372 /* Wait for the outstnading mailbox command to complete */
2373 while (phba->sli.mbox_active) {
2374 /* Check active mailbox complete status every 2ms */
2375 msleep(2);
2376 if (time_after(jiffies, timeout)) {
2377 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
2378 "2813 Mgmt IO is Blocked %x "
2379 "- mbox cmd %x still active\n",
2380 phba->sli.sli_flag, actcmd);
2381 break;
2382 }
2383 }
a6ababd2
AB
2384}
2385
e59058c4 2386/**
3621a710 2387 * lpfc_online - Initialize and bring a HBA online
e59058c4
JS
2388 * @phba: pointer to lpfc hba data structure.
2389 *
2390 * This routine initializes the HBA and brings a HBA online. During this
2391 * process, the management interface is blocked to prevent user space access
2392 * to the HBA interfering with the driver initialization.
2393 *
2394 * Return codes
2395 * 0 - successful
2396 * 1 - failed
2397 **/
dea3101e 2398int
2e0fef85 2399lpfc_online(struct lpfc_hba *phba)
dea3101e 2400{
372bd282 2401 struct lpfc_vport *vport;
549e55cd
JS
2402 struct lpfc_vport **vports;
2403 int i;
2e0fef85 2404
dea3101e
JB
2405 if (!phba)
2406 return 0;
372bd282 2407 vport = phba->pport;
dea3101e 2408
2e0fef85 2409 if (!(vport->fc_flag & FC_OFFLINE_MODE))
dea3101e
JB
2410 return 0;
2411
ed957684 2412 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
e8b62011 2413 "0458 Bring Adapter online\n");
dea3101e 2414
46fa311e
JS
2415 lpfc_block_mgmt_io(phba);
2416
2417 if (!lpfc_sli_queue_setup(phba)) {
2418 lpfc_unblock_mgmt_io(phba);
dea3101e 2419 return 1;
46fa311e 2420 }
dea3101e 2421
da0436e9
JS
2422 if (phba->sli_rev == LPFC_SLI_REV4) {
2423 if (lpfc_sli4_hba_setup(phba)) { /* Initialize SLI4 HBA */
2424 lpfc_unblock_mgmt_io(phba);
2425 return 1;
2426 }
2427 } else {
2428 if (lpfc_sli_hba_setup(phba)) { /* Initialize SLI2/SLI3 HBA */
2429 lpfc_unblock_mgmt_io(phba);
2430 return 1;
2431 }
46fa311e 2432 }
dea3101e 2433
549e55cd
JS
2434 vports = lpfc_create_vport_work_array(phba);
2435 if (vports != NULL)
da0436e9 2436 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
549e55cd
JS
2437 struct Scsi_Host *shost;
2438 shost = lpfc_shost_from_vport(vports[i]);
2439 spin_lock_irq(shost->host_lock);
2440 vports[i]->fc_flag &= ~FC_OFFLINE_MODE;
2441 if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED)
2442 vports[i]->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
1c6834a7
JS
2443 if (phba->sli_rev == LPFC_SLI_REV4)
2444 vports[i]->fc_flag |= FC_VPORT_NEEDS_INIT_VPI;
549e55cd
JS
2445 spin_unlock_irq(shost->host_lock);
2446 }
09372820 2447 lpfc_destroy_vport_work_array(phba, vports);
dea3101e 2448
46fa311e 2449 lpfc_unblock_mgmt_io(phba);
dea3101e
JB
2450 return 0;
2451}
2452
e59058c4 2453/**
3621a710 2454 * lpfc_unblock_mgmt_io - Mark a HBA's management interface to be not blocked
e59058c4
JS
2455 * @phba: pointer to lpfc hba data structure.
2456 *
2457 * This routine marks a HBA's management interface as not blocked. Once the
2458 * HBA's management interface is marked as not blocked, all the user space
2459 * access to the HBA, whether they are from sysfs interface or libdfc
2460 * interface will be allowed. The HBA is set to block the management interface
2461 * when the driver prepares the HBA interface for online or offline and then
2462 * set to unblock the management interface afterwards.
2463 **/
46fa311e
JS
2464void
2465lpfc_unblock_mgmt_io(struct lpfc_hba * phba)
2466{
2467 unsigned long iflag;
2468
2e0fef85
JS
2469 spin_lock_irqsave(&phba->hbalock, iflag);
2470 phba->sli.sli_flag &= ~LPFC_BLOCK_MGMT_IO;
2471 spin_unlock_irqrestore(&phba->hbalock, iflag);
46fa311e
JS
2472}
2473
e59058c4 2474/**
3621a710 2475 * lpfc_offline_prep - Prepare a HBA to be brought offline
e59058c4
JS
2476 * @phba: pointer to lpfc hba data structure.
2477 *
2478 * This routine is invoked to prepare a HBA to be brought offline. It performs
2479 * unregistration login to all the nodes on all vports and flushes the mailbox
2480 * queue to make it ready to be brought offline.
2481 **/
46fa311e
JS
2482void
2483lpfc_offline_prep(struct lpfc_hba * phba)
2484{
2e0fef85 2485 struct lpfc_vport *vport = phba->pport;
46fa311e 2486 struct lpfc_nodelist *ndlp, *next_ndlp;
87af33fe 2487 struct lpfc_vport **vports;
72100cc4 2488 struct Scsi_Host *shost;
87af33fe 2489 int i;
dea3101e 2490
2e0fef85 2491 if (vport->fc_flag & FC_OFFLINE_MODE)
46fa311e 2492 return;
dea3101e 2493
46fa311e 2494 lpfc_block_mgmt_io(phba);
dea3101e
JB
2495
2496 lpfc_linkdown(phba);
2497
87af33fe
JS
2498 /* Issue an unreg_login to all nodes on all vports */
2499 vports = lpfc_create_vport_work_array(phba);
2500 if (vports != NULL) {
da0436e9 2501 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
a8adb832
JS
2502 if (vports[i]->load_flag & FC_UNLOADING)
2503 continue;
72100cc4
JS
2504 shost = lpfc_shost_from_vport(vports[i]);
2505 spin_lock_irq(shost->host_lock);
c868595d 2506 vports[i]->vpi_state &= ~LPFC_VPI_REGISTERED;
695a814e
JS
2507 vports[i]->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
2508 vports[i]->fc_flag &= ~FC_VFI_REGISTERED;
72100cc4 2509 spin_unlock_irq(shost->host_lock);
695a814e 2510
87af33fe
JS
2511 shost = lpfc_shost_from_vport(vports[i]);
2512 list_for_each_entry_safe(ndlp, next_ndlp,
2513 &vports[i]->fc_nodes,
2514 nlp_listp) {
e47c9093
JS
2515 if (!NLP_CHK_NODE_ACT(ndlp))
2516 continue;
87af33fe
JS
2517 if (ndlp->nlp_state == NLP_STE_UNUSED_NODE)
2518 continue;
2519 if (ndlp->nlp_type & NLP_FABRIC) {
2520 lpfc_disc_state_machine(vports[i], ndlp,
2521 NULL, NLP_EVT_DEVICE_RECOVERY);
2522 lpfc_disc_state_machine(vports[i], ndlp,
2523 NULL, NLP_EVT_DEVICE_RM);
2524 }
2525 spin_lock_irq(shost->host_lock);
2526 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
2527 spin_unlock_irq(shost->host_lock);
2528 lpfc_unreg_rpi(vports[i], ndlp);
2529 }
2530 }
2531 }
09372820 2532 lpfc_destroy_vport_work_array(phba, vports);
dea3101e 2533
04c68496 2534 lpfc_sli_mbox_sys_shutdown(phba);
46fa311e
JS
2535}
2536
e59058c4 2537/**
3621a710 2538 * lpfc_offline - Bring a HBA offline
e59058c4
JS
2539 * @phba: pointer to lpfc hba data structure.
2540 *
2541 * This routine actually brings a HBA offline. It stops all the timers
2542 * associated with the HBA, brings down the SLI layer, and eventually
2543 * marks the HBA as in offline state for the upper layer protocol.
2544 **/
46fa311e 2545void
2e0fef85 2546lpfc_offline(struct lpfc_hba *phba)
46fa311e 2547{
549e55cd
JS
2548 struct Scsi_Host *shost;
2549 struct lpfc_vport **vports;
2550 int i;
46fa311e 2551
549e55cd 2552 if (phba->pport->fc_flag & FC_OFFLINE_MODE)
46fa311e 2553 return;
688a8863 2554
da0436e9
JS
2555 /* stop port and all timers associated with this hba */
2556 lpfc_stop_port(phba);
51ef4c26
JS
2557 vports = lpfc_create_vport_work_array(phba);
2558 if (vports != NULL)
da0436e9 2559 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++)
51ef4c26 2560 lpfc_stop_vport_timers(vports[i]);
09372820 2561 lpfc_destroy_vport_work_array(phba, vports);
92d7f7b0 2562 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
e8b62011 2563 "0460 Bring Adapter offline\n");
dea3101e
JB
2564 /* Bring down the SLI Layer and cleanup. The HBA is offline
2565 now. */
2566 lpfc_sli_hba_down(phba);
92d7f7b0 2567 spin_lock_irq(&phba->hbalock);
7054a606 2568 phba->work_ha = 0;
92d7f7b0 2569 spin_unlock_irq(&phba->hbalock);
549e55cd
JS
2570 vports = lpfc_create_vport_work_array(phba);
2571 if (vports != NULL)
da0436e9 2572 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
549e55cd 2573 shost = lpfc_shost_from_vport(vports[i]);
549e55cd
JS
2574 spin_lock_irq(shost->host_lock);
2575 vports[i]->work_port_events = 0;
2576 vports[i]->fc_flag |= FC_OFFLINE_MODE;
2577 spin_unlock_irq(shost->host_lock);
2578 }
09372820 2579 lpfc_destroy_vport_work_array(phba, vports);
dea3101e
JB
2580}
2581
e59058c4 2582/**
3621a710 2583 * lpfc_scsi_free - Free all the SCSI buffers and IOCBs from driver lists
e59058c4
JS
2584 * @phba: pointer to lpfc hba data structure.
2585 *
2586 * This routine is to free all the SCSI buffers and IOCBs from the driver
2587 * list back to kernel. It is called from lpfc_pci_remove_one to free
2588 * the internal resources before the device is removed from the system.
2589 *
2590 * Return codes
2591 * 0 - successful (for now, it always returns 0)
2592 **/
dea3101e 2593static int
2e0fef85 2594lpfc_scsi_free(struct lpfc_hba *phba)
dea3101e
JB
2595{
2596 struct lpfc_scsi_buf *sb, *sb_next;
2597 struct lpfc_iocbq *io, *io_next;
2598
2e0fef85 2599 spin_lock_irq(&phba->hbalock);
dea3101e 2600 /* Release all the lpfc_scsi_bufs maintained by this host. */
1c6f4ef5 2601 spin_lock(&phba->scsi_buf_list_lock);
dea3101e
JB
2602 list_for_each_entry_safe(sb, sb_next, &phba->lpfc_scsi_buf_list, list) {
2603 list_del(&sb->list);
2604 pci_pool_free(phba->lpfc_scsi_dma_buf_pool, sb->data,
92d7f7b0 2605 sb->dma_handle);
dea3101e
JB
2606 kfree(sb);
2607 phba->total_scsi_bufs--;
2608 }
1c6f4ef5 2609 spin_unlock(&phba->scsi_buf_list_lock);
dea3101e
JB
2610
2611 /* Release all the lpfc_iocbq entries maintained by this host. */
2612 list_for_each_entry_safe(io, io_next, &phba->lpfc_iocb_list, list) {
2613 list_del(&io->list);
2614 kfree(io);
2615 phba->total_iocbq_bufs--;
2616 }
2e0fef85 2617 spin_unlock_irq(&phba->hbalock);
dea3101e
JB
2618 return 0;
2619}
2620
e59058c4 2621/**
3621a710 2622 * lpfc_create_port - Create an FC port
e59058c4
JS
2623 * @phba: pointer to lpfc hba data structure.
2624 * @instance: a unique integer ID to this FC port.
2625 * @dev: pointer to the device data structure.
2626 *
2627 * This routine creates a FC port for the upper layer protocol. The FC port
2628 * can be created on top of either a physical port or a virtual port provided
2629 * by the HBA. This routine also allocates a SCSI host data structure (shost)
2630 * and associates the FC port created before adding the shost into the SCSI
2631 * layer.
2632 *
2633 * Return codes
2634 * @vport - pointer to the virtual N_Port data structure.
2635 * NULL - port create failed.
2636 **/
2e0fef85 2637struct lpfc_vport *
3de2a653 2638lpfc_create_port(struct lpfc_hba *phba, int instance, struct device *dev)
47a8617c 2639{
2e0fef85
JS
2640 struct lpfc_vport *vport;
2641 struct Scsi_Host *shost;
2642 int error = 0;
47a8617c 2643
3de2a653
JS
2644 if (dev != &phba->pcidev->dev)
2645 shost = scsi_host_alloc(&lpfc_vport_template,
2646 sizeof(struct lpfc_vport));
2647 else
2648 shost = scsi_host_alloc(&lpfc_template,
2649 sizeof(struct lpfc_vport));
2e0fef85
JS
2650 if (!shost)
2651 goto out;
47a8617c 2652
2e0fef85
JS
2653 vport = (struct lpfc_vport *) shost->hostdata;
2654 vport->phba = phba;
2e0fef85 2655 vport->load_flag |= FC_LOADING;
92d7f7b0 2656 vport->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
7f5f3d0d 2657 vport->fc_rscn_flush = 0;
47a8617c 2658
3de2a653 2659 lpfc_get_vport_cfgparam(vport);
2e0fef85
JS
2660 shost->unique_id = instance;
2661 shost->max_id = LPFC_MAX_TARGET;
3de2a653 2662 shost->max_lun = vport->cfg_max_luns;
2e0fef85
JS
2663 shost->this_id = -1;
2664 shost->max_cmd_len = 16;
da0436e9 2665 if (phba->sli_rev == LPFC_SLI_REV4) {
28baac74 2666 shost->dma_boundary =
cb5172ea 2667 phba->sli4_hba.pc_sli4_params.sge_supp_len-1;
da0436e9
JS
2668 shost->sg_tablesize = phba->cfg_sg_seg_cnt;
2669 }
81301a9b 2670
47a8617c 2671 /*
2e0fef85
JS
2672 * Set initial can_queue value since 0 is no longer supported and
2673 * scsi_add_host will fail. This will be adjusted later based on the
2674 * max xri value determined in hba setup.
47a8617c 2675 */
2e0fef85 2676 shost->can_queue = phba->cfg_hba_queue_depth - 10;
3de2a653 2677 if (dev != &phba->pcidev->dev) {
92d7f7b0
JS
2678 shost->transportt = lpfc_vport_transport_template;
2679 vport->port_type = LPFC_NPIV_PORT;
2680 } else {
2681 shost->transportt = lpfc_transport_template;
2682 vport->port_type = LPFC_PHYSICAL_PORT;
2683 }
47a8617c 2684
2e0fef85
JS
2685 /* Initialize all internally managed lists. */
2686 INIT_LIST_HEAD(&vport->fc_nodes);
da0436e9 2687 INIT_LIST_HEAD(&vport->rcv_buffer_list);
2e0fef85 2688 spin_lock_init(&vport->work_port_lock);
47a8617c 2689
2e0fef85
JS
2690 init_timer(&vport->fc_disctmo);
2691 vport->fc_disctmo.function = lpfc_disc_timeout;
92d7f7b0 2692 vport->fc_disctmo.data = (unsigned long)vport;
47a8617c 2693
2e0fef85
JS
2694 init_timer(&vport->fc_fdmitmo);
2695 vport->fc_fdmitmo.function = lpfc_fdmi_tmo;
92d7f7b0 2696 vport->fc_fdmitmo.data = (unsigned long)vport;
47a8617c 2697
2e0fef85
JS
2698 init_timer(&vport->els_tmofunc);
2699 vport->els_tmofunc.function = lpfc_els_timeout;
92d7f7b0 2700 vport->els_tmofunc.data = (unsigned long)vport;
d139b9bd 2701 error = scsi_add_host_with_dma(shost, dev, &phba->pcidev->dev);
2e0fef85
JS
2702 if (error)
2703 goto out_put_shost;
47a8617c 2704
549e55cd 2705 spin_lock_irq(&phba->hbalock);
2e0fef85 2706 list_add_tail(&vport->listentry, &phba->port_list);
549e55cd 2707 spin_unlock_irq(&phba->hbalock);
2e0fef85 2708 return vport;
47a8617c 2709
2e0fef85
JS
2710out_put_shost:
2711 scsi_host_put(shost);
2712out:
2713 return NULL;
47a8617c
JS
2714}
2715
e59058c4 2716/**
3621a710 2717 * destroy_port - destroy an FC port
e59058c4
JS
2718 * @vport: pointer to an lpfc virtual N_Port data structure.
2719 *
2720 * This routine destroys a FC port from the upper layer protocol. All the
2721 * resources associated with the port are released.
2722 **/
2e0fef85
JS
2723void
2724destroy_port(struct lpfc_vport *vport)
47a8617c 2725{
92d7f7b0
JS
2726 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2727 struct lpfc_hba *phba = vport->phba;
47a8617c 2728
858c9f6c 2729 lpfc_debugfs_terminate(vport);
92d7f7b0
JS
2730 fc_remove_host(shost);
2731 scsi_remove_host(shost);
47a8617c 2732
92d7f7b0
JS
2733 spin_lock_irq(&phba->hbalock);
2734 list_del_init(&vport->listentry);
2735 spin_unlock_irq(&phba->hbalock);
47a8617c 2736
92d7f7b0 2737 lpfc_cleanup(vport);
47a8617c 2738 return;
47a8617c
JS
2739}
2740
e59058c4 2741/**
3621a710 2742 * lpfc_get_instance - Get a unique integer ID
e59058c4
JS
2743 *
2744 * This routine allocates a unique integer ID from lpfc_hba_index pool. It
2745 * uses the kernel idr facility to perform the task.
2746 *
2747 * Return codes:
2748 * instance - a unique integer ID allocated as the new instance.
2749 * -1 - lpfc get instance failed.
2750 **/
92d7f7b0
JS
2751int
2752lpfc_get_instance(void)
2753{
2754 int instance = 0;
47a8617c 2755
92d7f7b0
JS
2756 /* Assign an unused number */
2757 if (!idr_pre_get(&lpfc_hba_index, GFP_KERNEL))
2758 return -1;
2759 if (idr_get_new(&lpfc_hba_index, NULL, &instance))
2760 return -1;
2761 return instance;
47a8617c
JS
2762}
2763
e59058c4 2764/**
3621a710 2765 * lpfc_scan_finished - method for SCSI layer to detect whether scan is done
e59058c4
JS
2766 * @shost: pointer to SCSI host data structure.
2767 * @time: elapsed time of the scan in jiffies.
2768 *
2769 * This routine is called by the SCSI layer with a SCSI host to determine
2770 * whether the scan host is finished.
2771 *
2772 * Note: there is no scan_start function as adapter initialization will have
2773 * asynchronously kicked off the link initialization.
2774 *
2775 * Return codes
2776 * 0 - SCSI host scan is not over yet.
2777 * 1 - SCSI host scan is over.
2778 **/
47a8617c
JS
2779int lpfc_scan_finished(struct Scsi_Host *shost, unsigned long time)
2780{
2e0fef85
JS
2781 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
2782 struct lpfc_hba *phba = vport->phba;
858c9f6c 2783 int stat = 0;
47a8617c 2784
858c9f6c
JS
2785 spin_lock_irq(shost->host_lock);
2786
51ef4c26 2787 if (vport->load_flag & FC_UNLOADING) {
858c9f6c
JS
2788 stat = 1;
2789 goto finished;
2790 }
2e0fef85
JS
2791 if (time >= 30 * HZ) {
2792 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
e8b62011
JS
2793 "0461 Scanning longer than 30 "
2794 "seconds. Continuing initialization\n");
858c9f6c 2795 stat = 1;
47a8617c 2796 goto finished;
2e0fef85
JS
2797 }
2798 if (time >= 15 * HZ && phba->link_state <= LPFC_LINK_DOWN) {
2799 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
e8b62011
JS
2800 "0465 Link down longer than 15 "
2801 "seconds. Continuing initialization\n");
858c9f6c 2802 stat = 1;
47a8617c 2803 goto finished;
2e0fef85 2804 }
47a8617c 2805
2e0fef85 2806 if (vport->port_state != LPFC_VPORT_READY)
858c9f6c 2807 goto finished;
2e0fef85 2808 if (vport->num_disc_nodes || vport->fc_prli_sent)
858c9f6c 2809 goto finished;
2e0fef85 2810 if (vport->fc_map_cnt == 0 && time < 2 * HZ)
858c9f6c 2811 goto finished;
2e0fef85 2812 if ((phba->sli.sli_flag & LPFC_SLI_MBOX_ACTIVE) != 0)
858c9f6c
JS
2813 goto finished;
2814
2815 stat = 1;
47a8617c
JS
2816
2817finished:
858c9f6c
JS
2818 spin_unlock_irq(shost->host_lock);
2819 return stat;
92d7f7b0 2820}
47a8617c 2821
e59058c4 2822/**
3621a710 2823 * lpfc_host_attrib_init - Initialize SCSI host attributes on a FC port
e59058c4
JS
2824 * @shost: pointer to SCSI host data structure.
2825 *
2826 * This routine initializes a given SCSI host attributes on a FC port. The
2827 * SCSI host can be either on top of a physical port or a virtual port.
2828 **/
92d7f7b0
JS
2829void lpfc_host_attrib_init(struct Scsi_Host *shost)
2830{
2831 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
2832 struct lpfc_hba *phba = vport->phba;
47a8617c 2833 /*
2e0fef85 2834 * Set fixed host attributes. Must done after lpfc_sli_hba_setup().
47a8617c
JS
2835 */
2836
2e0fef85
JS
2837 fc_host_node_name(shost) = wwn_to_u64(vport->fc_nodename.u.wwn);
2838 fc_host_port_name(shost) = wwn_to_u64(vport->fc_portname.u.wwn);
47a8617c
JS
2839 fc_host_supported_classes(shost) = FC_COS_CLASS3;
2840
2841 memset(fc_host_supported_fc4s(shost), 0,
2e0fef85 2842 sizeof(fc_host_supported_fc4s(shost)));
47a8617c
JS
2843 fc_host_supported_fc4s(shost)[2] = 1;
2844 fc_host_supported_fc4s(shost)[7] = 1;
2845
92d7f7b0
JS
2846 lpfc_vport_symbolic_node_name(vport, fc_host_symbolic_name(shost),
2847 sizeof fc_host_symbolic_name(shost));
47a8617c
JS
2848
2849 fc_host_supported_speeds(shost) = 0;
2850 if (phba->lmt & LMT_10Gb)
2851 fc_host_supported_speeds(shost) |= FC_PORTSPEED_10GBIT;
a8adb832
JS
2852 if (phba->lmt & LMT_8Gb)
2853 fc_host_supported_speeds(shost) |= FC_PORTSPEED_8GBIT;
47a8617c
JS
2854 if (phba->lmt & LMT_4Gb)
2855 fc_host_supported_speeds(shost) |= FC_PORTSPEED_4GBIT;
2856 if (phba->lmt & LMT_2Gb)
2857 fc_host_supported_speeds(shost) |= FC_PORTSPEED_2GBIT;
2858 if (phba->lmt & LMT_1Gb)
2859 fc_host_supported_speeds(shost) |= FC_PORTSPEED_1GBIT;
2860
2861 fc_host_maxframe_size(shost) =
2e0fef85
JS
2862 (((uint32_t) vport->fc_sparam.cmn.bbRcvSizeMsb & 0x0F) << 8) |
2863 (uint32_t) vport->fc_sparam.cmn.bbRcvSizeLsb;
47a8617c 2864
0af5d708
MC
2865 fc_host_dev_loss_tmo(shost) = vport->cfg_devloss_tmo;
2866
47a8617c
JS
2867 /* This value is also unchanging */
2868 memset(fc_host_active_fc4s(shost), 0,
2e0fef85 2869 sizeof(fc_host_active_fc4s(shost)));
47a8617c
JS
2870 fc_host_active_fc4s(shost)[2] = 1;
2871 fc_host_active_fc4s(shost)[7] = 1;
2872
92d7f7b0 2873 fc_host_max_npiv_vports(shost) = phba->max_vpi;
47a8617c 2874 spin_lock_irq(shost->host_lock);
51ef4c26 2875 vport->load_flag &= ~FC_LOADING;
47a8617c 2876 spin_unlock_irq(shost->host_lock);
47a8617c 2877}
dea3101e 2878
e59058c4 2879/**
da0436e9 2880 * lpfc_stop_port_s3 - Stop SLI3 device port
e59058c4
JS
2881 * @phba: pointer to lpfc hba data structure.
2882 *
da0436e9
JS
2883 * This routine is invoked to stop an SLI3 device port, it stops the device
2884 * from generating interrupts and stops the device driver's timers for the
2885 * device.
e59058c4 2886 **/
da0436e9
JS
2887static void
2888lpfc_stop_port_s3(struct lpfc_hba *phba)
db2378e0 2889{
da0436e9
JS
2890 /* Clear all interrupt enable conditions */
2891 writel(0, phba->HCregaddr);
2892 readl(phba->HCregaddr); /* flush */
2893 /* Clear all pending interrupts */
2894 writel(0xffffffff, phba->HAregaddr);
2895 readl(phba->HAregaddr); /* flush */
db2378e0 2896
da0436e9
JS
2897 /* Reset some HBA SLI setup states */
2898 lpfc_stop_hba_timers(phba);
2899 phba->pport->work_port_events = 0;
2900}
db2378e0 2901
da0436e9
JS
2902/**
2903 * lpfc_stop_port_s4 - Stop SLI4 device port
2904 * @phba: pointer to lpfc hba data structure.
2905 *
2906 * This routine is invoked to stop an SLI4 device port, it stops the device
2907 * from generating interrupts and stops the device driver's timers for the
2908 * device.
2909 **/
2910static void
2911lpfc_stop_port_s4(struct lpfc_hba *phba)
2912{
2913 /* Reset some HBA SLI4 setup states */
2914 lpfc_stop_hba_timers(phba);
2915 phba->pport->work_port_events = 0;
2916 phba->sli4_hba.intr_enable = 0;
da0436e9 2917}
9399627f 2918
da0436e9
JS
2919/**
2920 * lpfc_stop_port - Wrapper function for stopping hba port
2921 * @phba: Pointer to HBA context object.
2922 *
2923 * This routine wraps the actual SLI3 or SLI4 hba stop port routine from
2924 * the API jump table function pointer from the lpfc_hba struct.
2925 **/
2926void
2927lpfc_stop_port(struct lpfc_hba *phba)
2928{
2929 phba->lpfc_stop_port(phba);
2930}
db2378e0 2931
ecfd03c6
JS
2932/**
2933 * lpfc_fcf_redisc_wait_start_timer - Start fcf rediscover wait timer
2934 * @phba: Pointer to hba for which this call is being executed.
2935 *
2936 * This routine starts the timer waiting for the FCF rediscovery to complete.
2937 **/
2938void
2939lpfc_fcf_redisc_wait_start_timer(struct lpfc_hba *phba)
2940{
2941 unsigned long fcf_redisc_wait_tmo =
2942 (jiffies + msecs_to_jiffies(LPFC_FCF_REDISCOVER_WAIT_TMO));
2943 /* Start fcf rediscovery wait period timer */
2944 mod_timer(&phba->fcf.redisc_wait, fcf_redisc_wait_tmo);
2945 spin_lock_irq(&phba->hbalock);
2946 /* Allow action to new fcf asynchronous event */
2947 phba->fcf.fcf_flag &= ~(FCF_AVAILABLE | FCF_SCAN_DONE);
2948 /* Mark the FCF rediscovery pending state */
2949 phba->fcf.fcf_flag |= FCF_REDISC_PEND;
2950 spin_unlock_irq(&phba->hbalock);
2951}
2952
2953/**
2954 * lpfc_sli4_fcf_redisc_wait_tmo - FCF table rediscover wait timeout
2955 * @ptr: Map to lpfc_hba data structure pointer.
2956 *
2957 * This routine is invoked when waiting for FCF table rediscover has been
2958 * timed out. If new FCF record(s) has (have) been discovered during the
2959 * wait period, a new FCF event shall be added to the FCOE async event
2960 * list, and then worker thread shall be waked up for processing from the
2961 * worker thread context.
2962 **/
2963void
2964lpfc_sli4_fcf_redisc_wait_tmo(unsigned long ptr)
2965{
2966 struct lpfc_hba *phba = (struct lpfc_hba *)ptr;
2967
2968 /* Don't send FCF rediscovery event if timer cancelled */
2969 spin_lock_irq(&phba->hbalock);
2970 if (!(phba->fcf.fcf_flag & FCF_REDISC_PEND)) {
2971 spin_unlock_irq(&phba->hbalock);
2972 return;
2973 }
2974 /* Clear FCF rediscovery timer pending flag */
2975 phba->fcf.fcf_flag &= ~FCF_REDISC_PEND;
2976 /* FCF rediscovery event to worker thread */
2977 phba->fcf.fcf_flag |= FCF_REDISC_EVT;
2978 spin_unlock_irq(&phba->hbalock);
0c9ab6f5 2979 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
a93ff37a 2980 "2776 FCF rediscover quiescent timer expired\n");
ecfd03c6
JS
2981 /* wake up worker thread */
2982 lpfc_worker_wake_up(phba);
2983}
2984
6669f9bb
JS
2985/**
2986 * lpfc_sli4_fw_cfg_check - Read the firmware config and verify FCoE support
2987 * @phba: pointer to lpfc hba data structure.
2988 *
2989 * This function uses the QUERY_FW_CFG mailbox command to determine if the
2990 * firmware loaded supports FCoE. A return of zero indicates that the mailbox
2991 * was successful and the firmware supports FCoE. Any other return indicates
2992 * a error. It is assumed that this function will be called before interrupts
2993 * are enabled.
2994 **/
2995static int
2996lpfc_sli4_fw_cfg_check(struct lpfc_hba *phba)
2997{
2998 int rc = 0;
2999 LPFC_MBOXQ_t *mboxq;
3000 struct lpfc_mbx_query_fw_cfg *query_fw_cfg;
3001 uint32_t length;
3002 uint32_t shdr_status, shdr_add_status;
3003
3004 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
3005 if (!mboxq) {
3006 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3007 "2621 Failed to allocate mbox for "
3008 "query firmware config cmd\n");
3009 return -ENOMEM;
3010 }
3011 query_fw_cfg = &mboxq->u.mqe.un.query_fw_cfg;
3012 length = (sizeof(struct lpfc_mbx_query_fw_cfg) -
3013 sizeof(struct lpfc_sli4_cfg_mhdr));
3014 lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_COMMON,
3015 LPFC_MBOX_OPCODE_QUERY_FW_CFG,
3016 length, LPFC_SLI4_MBX_EMBED);
3017 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
3018 /* The IOCTL status is embedded in the mailbox subheader. */
3019 shdr_status = bf_get(lpfc_mbox_hdr_status,
3020 &query_fw_cfg->header.cfg_shdr.response);
3021 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status,
3022 &query_fw_cfg->header.cfg_shdr.response);
3023 if (shdr_status || shdr_add_status || rc != MBX_SUCCESS) {
3024 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
3025 "2622 Query Firmware Config failed "
3026 "mbx status x%x, status x%x add_status x%x\n",
3027 rc, shdr_status, shdr_add_status);
3028 return -EINVAL;
3029 }
3030 if (!bf_get(lpfc_function_mode_fcoe_i, query_fw_cfg)) {
3031 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
3032 "2623 FCoE Function not supported by firmware. "
3033 "Function mode = %08x\n",
3034 query_fw_cfg->function_mode);
3035 return -EINVAL;
3036 }
3037 if (rc != MBX_TIMEOUT)
3038 mempool_free(mboxq, phba->mbox_mem_pool);
3039 return 0;
3040}
3041
e59058c4 3042/**
da0436e9 3043 * lpfc_sli4_parse_latt_fault - Parse sli4 link-attention link fault code
e59058c4 3044 * @phba: pointer to lpfc hba data structure.
da0436e9 3045 * @acqe_link: pointer to the async link completion queue entry.
e59058c4 3046 *
da0436e9
JS
3047 * This routine is to parse the SLI4 link-attention link fault code and
3048 * translate it into the base driver's read link attention mailbox command
3049 * status.
3050 *
3051 * Return: Link-attention status in terms of base driver's coding.
e59058c4 3052 **/
da0436e9
JS
3053static uint16_t
3054lpfc_sli4_parse_latt_fault(struct lpfc_hba *phba,
3055 struct lpfc_acqe_link *acqe_link)
db2378e0 3056{
da0436e9 3057 uint16_t latt_fault;
9399627f 3058
da0436e9
JS
3059 switch (bf_get(lpfc_acqe_link_fault, acqe_link)) {
3060 case LPFC_ASYNC_LINK_FAULT_NONE:
3061 case LPFC_ASYNC_LINK_FAULT_LOCAL:
3062 case LPFC_ASYNC_LINK_FAULT_REMOTE:
3063 latt_fault = 0;
3064 break;
3065 default:
3066 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3067 "0398 Invalid link fault code: x%x\n",
3068 bf_get(lpfc_acqe_link_fault, acqe_link));
3069 latt_fault = MBXERR_ERROR;
3070 break;
3071 }
3072 return latt_fault;
db2378e0
JS
3073}
3074
5b75da2f 3075/**
da0436e9 3076 * lpfc_sli4_parse_latt_type - Parse sli4 link attention type
5b75da2f 3077 * @phba: pointer to lpfc hba data structure.
da0436e9 3078 * @acqe_link: pointer to the async link completion queue entry.
5b75da2f 3079 *
da0436e9
JS
3080 * This routine is to parse the SLI4 link attention type and translate it
3081 * into the base driver's link attention type coding.
5b75da2f 3082 *
da0436e9
JS
3083 * Return: Link attention type in terms of base driver's coding.
3084 **/
3085static uint8_t
3086lpfc_sli4_parse_latt_type(struct lpfc_hba *phba,
3087 struct lpfc_acqe_link *acqe_link)
5b75da2f 3088{
da0436e9 3089 uint8_t att_type;
5b75da2f 3090
da0436e9
JS
3091 switch (bf_get(lpfc_acqe_link_status, acqe_link)) {
3092 case LPFC_ASYNC_LINK_STATUS_DOWN:
3093 case LPFC_ASYNC_LINK_STATUS_LOGICAL_DOWN:
76a95d75 3094 att_type = LPFC_ATT_LINK_DOWN;
da0436e9
JS
3095 break;
3096 case LPFC_ASYNC_LINK_STATUS_UP:
3097 /* Ignore physical link up events - wait for logical link up */
76a95d75 3098 att_type = LPFC_ATT_RESERVED;
da0436e9
JS
3099 break;
3100 case LPFC_ASYNC_LINK_STATUS_LOGICAL_UP:
76a95d75 3101 att_type = LPFC_ATT_LINK_UP;
da0436e9
JS
3102 break;
3103 default:
3104 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3105 "0399 Invalid link attention type: x%x\n",
3106 bf_get(lpfc_acqe_link_status, acqe_link));
76a95d75 3107 att_type = LPFC_ATT_RESERVED;
da0436e9 3108 break;
5b75da2f 3109 }
da0436e9 3110 return att_type;
5b75da2f
JS
3111}
3112
3113/**
da0436e9 3114 * lpfc_sli4_parse_latt_link_speed - Parse sli4 link-attention link speed
5b75da2f 3115 * @phba: pointer to lpfc hba data structure.
da0436e9 3116 * @acqe_link: pointer to the async link completion queue entry.
5b75da2f 3117 *
da0436e9
JS
3118 * This routine is to parse the SLI4 link-attention link speed and translate
3119 * it into the base driver's link-attention link speed coding.
3120 *
3121 * Return: Link-attention link speed in terms of base driver's coding.
3122 **/
3123static uint8_t
3124lpfc_sli4_parse_latt_link_speed(struct lpfc_hba *phba,
3125 struct lpfc_acqe_link *acqe_link)
5b75da2f 3126{
da0436e9
JS
3127 uint8_t link_speed;
3128
3129 switch (bf_get(lpfc_acqe_link_speed, acqe_link)) {
3130 case LPFC_ASYNC_LINK_SPEED_ZERO:
da0436e9 3131 case LPFC_ASYNC_LINK_SPEED_10MBPS:
da0436e9 3132 case LPFC_ASYNC_LINK_SPEED_100MBPS:
76a95d75 3133 link_speed = LPFC_LINK_SPEED_UNKNOWN;
da0436e9
JS
3134 break;
3135 case LPFC_ASYNC_LINK_SPEED_1GBPS:
76a95d75 3136 link_speed = LPFC_LINK_SPEED_1GHZ;
da0436e9
JS
3137 break;
3138 case LPFC_ASYNC_LINK_SPEED_10GBPS:
76a95d75 3139 link_speed = LPFC_LINK_SPEED_10GHZ;
da0436e9
JS
3140 break;
3141 default:
3142 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3143 "0483 Invalid link-attention link speed: x%x\n",
3144 bf_get(lpfc_acqe_link_speed, acqe_link));
76a95d75 3145 link_speed = LPFC_LINK_SPEED_UNKNOWN;
da0436e9
JS
3146 break;
3147 }
3148 return link_speed;
3149}
3150
3151/**
70f3c073 3152 * lpfc_sli4_async_link_evt - Process the asynchronous FCoE link event
da0436e9
JS
3153 * @phba: pointer to lpfc hba data structure.
3154 * @acqe_link: pointer to the async link completion queue entry.
3155 *
70f3c073 3156 * This routine is to handle the SLI4 asynchronous FCoE link event.
da0436e9
JS
3157 **/
3158static void
3159lpfc_sli4_async_link_evt(struct lpfc_hba *phba,
3160 struct lpfc_acqe_link *acqe_link)
3161{
3162 struct lpfc_dmabuf *mp;
3163 LPFC_MBOXQ_t *pmb;
3164 MAILBOX_t *mb;
76a95d75 3165 struct lpfc_mbx_read_top *la;
da0436e9 3166 uint8_t att_type;
76a95d75 3167 int rc;
da0436e9
JS
3168
3169 att_type = lpfc_sli4_parse_latt_type(phba, acqe_link);
76a95d75 3170 if (att_type != LPFC_ATT_LINK_DOWN && att_type != LPFC_ATT_LINK_UP)
da0436e9 3171 return;
32b9793f 3172 phba->fcoe_eventtag = acqe_link->event_tag;
da0436e9
JS
3173 pmb = (LPFC_MBOXQ_t *)mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
3174 if (!pmb) {
3175 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
3176 "0395 The mboxq allocation failed\n");
3177 return;
3178 }
3179 mp = kmalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
3180 if (!mp) {
3181 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
3182 "0396 The lpfc_dmabuf allocation failed\n");
3183 goto out_free_pmb;
3184 }
3185 mp->virt = lpfc_mbuf_alloc(phba, 0, &mp->phys);
3186 if (!mp->virt) {
3187 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
3188 "0397 The mbuf allocation failed\n");
3189 goto out_free_dmabuf;
3190 }
3191
3192 /* Cleanup any outstanding ELS commands */
3193 lpfc_els_flush_all_cmd(phba);
3194
3195 /* Block ELS IOCBs until we have done process link event */
3196 phba->sli.ring[LPFC_ELS_RING].flag |= LPFC_STOP_IOCB_EVENT;
3197
3198 /* Update link event statistics */
3199 phba->sli.slistat.link_event++;
3200
76a95d75
JS
3201 /* Create lpfc_handle_latt mailbox command from link ACQE */
3202 lpfc_read_topology(phba, pmb, mp);
3203 pmb->mbox_cmpl = lpfc_mbx_cmpl_read_topology;
da0436e9
JS
3204 pmb->vport = phba->pport;
3205
da0436e9
JS
3206 /* Keep the link status for extra SLI4 state machine reference */
3207 phba->sli4_hba.link_state.speed =
3208 bf_get(lpfc_acqe_link_speed, acqe_link);
3209 phba->sli4_hba.link_state.duplex =
3210 bf_get(lpfc_acqe_link_duplex, acqe_link);
3211 phba->sli4_hba.link_state.status =
3212 bf_get(lpfc_acqe_link_status, acqe_link);
70f3c073
JS
3213 phba->sli4_hba.link_state.type =
3214 bf_get(lpfc_acqe_link_type, acqe_link);
3215 phba->sli4_hba.link_state.number =
3216 bf_get(lpfc_acqe_link_number, acqe_link);
da0436e9
JS
3217 phba->sli4_hba.link_state.fault =
3218 bf_get(lpfc_acqe_link_fault, acqe_link);
65467b6b 3219 phba->sli4_hba.link_state.logical_speed =
70f3c073
JS
3220 bf_get(lpfc_acqe_logical_link_speed, acqe_link);
3221 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
3222 "2900 Async FCoE Link event - Speed:%dGBit duplex:x%x "
3223 "LA Type:x%x Port Type:%d Port Number:%d Logical "
3224 "speed:%dMbps Fault:%d\n",
3225 phba->sli4_hba.link_state.speed,
3226 phba->sli4_hba.link_state.topology,
3227 phba->sli4_hba.link_state.status,
3228 phba->sli4_hba.link_state.type,
3229 phba->sli4_hba.link_state.number,
3230 phba->sli4_hba.link_state.logical_speed * 10,
3231 phba->sli4_hba.link_state.fault);
76a95d75
JS
3232 /*
3233 * For FC Mode: issue the READ_TOPOLOGY mailbox command to fetch
3234 * topology info. Note: Optional for non FC-AL ports.
3235 */
3236 if (!(phba->hba_flag & HBA_FCOE_MODE)) {
3237 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
3238 if (rc == MBX_NOT_FINISHED)
3239 goto out_free_dmabuf;
3240 return;
3241 }
3242 /*
3243 * For FCoE Mode: fill in all the topology information we need and call
3244 * the READ_TOPOLOGY completion routine to continue without actually
3245 * sending the READ_TOPOLOGY mailbox command to the port.
3246 */
3247 /* Parse and translate status field */
3248 mb = &pmb->u.mb;
3249 mb->mbxStatus = lpfc_sli4_parse_latt_fault(phba, acqe_link);
3250
3251 /* Parse and translate link attention fields */
3252 la = (struct lpfc_mbx_read_top *) &pmb->u.mb.un.varReadTop;
3253 la->eventTag = acqe_link->event_tag;
3254 bf_set(lpfc_mbx_read_top_att_type, la, att_type);
3255 bf_set(lpfc_mbx_read_top_link_spd, la,
3256 lpfc_sli4_parse_latt_link_speed(phba, acqe_link));
3257
3258 /* Fake the the following irrelvant fields */
3259 bf_set(lpfc_mbx_read_top_topology, la, LPFC_TOPOLOGY_PT_PT);
3260 bf_set(lpfc_mbx_read_top_alpa_granted, la, 0);
3261 bf_set(lpfc_mbx_read_top_il, la, 0);
3262 bf_set(lpfc_mbx_read_top_pb, la, 0);
3263 bf_set(lpfc_mbx_read_top_fa, la, 0);
3264 bf_set(lpfc_mbx_read_top_mm, la, 0);
da0436e9
JS
3265
3266 /* Invoke the lpfc_handle_latt mailbox command callback function */
76a95d75 3267 lpfc_mbx_cmpl_read_topology(phba, pmb);
da0436e9 3268
5b75da2f 3269 return;
da0436e9
JS
3270
3271out_free_dmabuf:
3272 kfree(mp);
3273out_free_pmb:
3274 mempool_free(pmb, phba->mbox_mem_pool);
3275}
3276
70f3c073
JS
3277/**
3278 * lpfc_sli4_async_fc_evt - Process the asynchronous FC link event
3279 * @phba: pointer to lpfc hba data structure.
3280 * @acqe_fc: pointer to the async fc completion queue entry.
3281 *
3282 * This routine is to handle the SLI4 asynchronous FC event. It will simply log
3283 * that the event was received and then issue a read_topology mailbox command so
3284 * that the rest of the driver will treat it the same as SLI3.
3285 **/
3286static void
3287lpfc_sli4_async_fc_evt(struct lpfc_hba *phba, struct lpfc_acqe_fc_la *acqe_fc)
3288{
3289 struct lpfc_dmabuf *mp;
3290 LPFC_MBOXQ_t *pmb;
3291 int rc;
3292
3293 if (bf_get(lpfc_trailer_type, acqe_fc) !=
3294 LPFC_FC_LA_EVENT_TYPE_FC_LINK) {
3295 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
3296 "2895 Non FC link Event detected.(%d)\n",
3297 bf_get(lpfc_trailer_type, acqe_fc));
3298 return;
3299 }
3300 /* Keep the link status for extra SLI4 state machine reference */
3301 phba->sli4_hba.link_state.speed =
3302 bf_get(lpfc_acqe_fc_la_speed, acqe_fc);
3303 phba->sli4_hba.link_state.duplex = LPFC_ASYNC_LINK_DUPLEX_FULL;
3304 phba->sli4_hba.link_state.topology =
3305 bf_get(lpfc_acqe_fc_la_topology, acqe_fc);
3306 phba->sli4_hba.link_state.status =
3307 bf_get(lpfc_acqe_fc_la_att_type, acqe_fc);
3308 phba->sli4_hba.link_state.type =
3309 bf_get(lpfc_acqe_fc_la_port_type, acqe_fc);
3310 phba->sli4_hba.link_state.number =
3311 bf_get(lpfc_acqe_fc_la_port_number, acqe_fc);
3312 phba->sli4_hba.link_state.fault =
3313 bf_get(lpfc_acqe_link_fault, acqe_fc);
3314 phba->sli4_hba.link_state.logical_speed =
3315 bf_get(lpfc_acqe_fc_la_llink_spd, acqe_fc);
3316 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
3317 "2896 Async FC event - Speed:%dGBaud Topology:x%x "
3318 "LA Type:x%x Port Type:%d Port Number:%d Logical speed:"
3319 "%dMbps Fault:%d\n",
3320 phba->sli4_hba.link_state.speed,
3321 phba->sli4_hba.link_state.topology,
3322 phba->sli4_hba.link_state.status,
3323 phba->sli4_hba.link_state.type,
3324 phba->sli4_hba.link_state.number,
3325 phba->sli4_hba.link_state.logical_speed * 10,
3326 phba->sli4_hba.link_state.fault);
3327 pmb = (LPFC_MBOXQ_t *)mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
3328 if (!pmb) {
3329 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
3330 "2897 The mboxq allocation failed\n");
3331 return;
3332 }
3333 mp = kmalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
3334 if (!mp) {
3335 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
3336 "2898 The lpfc_dmabuf allocation failed\n");
3337 goto out_free_pmb;
3338 }
3339 mp->virt = lpfc_mbuf_alloc(phba, 0, &mp->phys);
3340 if (!mp->virt) {
3341 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
3342 "2899 The mbuf allocation failed\n");
3343 goto out_free_dmabuf;
3344 }
3345
3346 /* Cleanup any outstanding ELS commands */
3347 lpfc_els_flush_all_cmd(phba);
3348
3349 /* Block ELS IOCBs until we have done process link event */
3350 phba->sli.ring[LPFC_ELS_RING].flag |= LPFC_STOP_IOCB_EVENT;
3351
3352 /* Update link event statistics */
3353 phba->sli.slistat.link_event++;
3354
3355 /* Create lpfc_handle_latt mailbox command from link ACQE */
3356 lpfc_read_topology(phba, pmb, mp);
3357 pmb->mbox_cmpl = lpfc_mbx_cmpl_read_topology;
3358 pmb->vport = phba->pport;
3359
3360 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
3361 if (rc == MBX_NOT_FINISHED)
3362 goto out_free_dmabuf;
3363 return;
3364
3365out_free_dmabuf:
3366 kfree(mp);
3367out_free_pmb:
3368 mempool_free(pmb, phba->mbox_mem_pool);
3369}
3370
3371/**
3372 * lpfc_sli4_async_sli_evt - Process the asynchronous SLI link event
3373 * @phba: pointer to lpfc hba data structure.
3374 * @acqe_fc: pointer to the async SLI completion queue entry.
3375 *
3376 * This routine is to handle the SLI4 asynchronous SLI events.
3377 **/
3378static void
3379lpfc_sli4_async_sli_evt(struct lpfc_hba *phba, struct lpfc_acqe_sli *acqe_sli)
3380{
3381 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
3382 "2901 Async SLI event - Event Data1:x%08x Event Data2:"
3383 "x%08x SLI Event Type:%d",
3384 acqe_sli->event_data1, acqe_sli->event_data2,
3385 bf_get(lpfc_trailer_type, acqe_sli));
3386 return;
3387}
3388
fc2b989b
JS
3389/**
3390 * lpfc_sli4_perform_vport_cvl - Perform clear virtual link on a vport
3391 * @vport: pointer to vport data structure.
3392 *
3393 * This routine is to perform Clear Virtual Link (CVL) on a vport in
3394 * response to a CVL event.
3395 *
3396 * Return the pointer to the ndlp with the vport if successful, otherwise
3397 * return NULL.
3398 **/
3399static struct lpfc_nodelist *
3400lpfc_sli4_perform_vport_cvl(struct lpfc_vport *vport)
3401{
3402 struct lpfc_nodelist *ndlp;
3403 struct Scsi_Host *shost;
3404 struct lpfc_hba *phba;
3405
3406 if (!vport)
3407 return NULL;
fc2b989b
JS
3408 phba = vport->phba;
3409 if (!phba)
3410 return NULL;
78730cfe
JS
3411 ndlp = lpfc_findnode_did(vport, Fabric_DID);
3412 if (!ndlp) {
3413 /* Cannot find existing Fabric ndlp, so allocate a new one */
3414 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
3415 if (!ndlp)
3416 return 0;
3417 lpfc_nlp_init(vport, ndlp, Fabric_DID);
3418 /* Set the node type */
3419 ndlp->nlp_type |= NLP_FABRIC;
3420 /* Put ndlp onto node list */
3421 lpfc_enqueue_node(vport, ndlp);
3422 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
3423 /* re-setup ndlp without removing from node list */
3424 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
3425 if (!ndlp)
3426 return 0;
3427 }
63e801ce
JS
3428 if ((phba->pport->port_state < LPFC_FLOGI) &&
3429 (phba->pport->port_state != LPFC_VPORT_FAILED))
fc2b989b
JS
3430 return NULL;
3431 /* If virtual link is not yet instantiated ignore CVL */
63e801ce
JS
3432 if ((vport != phba->pport) && (vport->port_state < LPFC_FDISC)
3433 && (vport->port_state != LPFC_VPORT_FAILED))
fc2b989b
JS
3434 return NULL;
3435 shost = lpfc_shost_from_vport(vport);
3436 if (!shost)
3437 return NULL;
3438 lpfc_linkdown_port(vport);
3439 lpfc_cleanup_pending_mbox(vport);
3440 spin_lock_irq(shost->host_lock);
3441 vport->fc_flag |= FC_VPORT_CVL_RCVD;
3442 spin_unlock_irq(shost->host_lock);
3443
3444 return ndlp;
3445}
3446
3447/**
3448 * lpfc_sli4_perform_all_vport_cvl - Perform clear virtual link on all vports
3449 * @vport: pointer to lpfc hba data structure.
3450 *
3451 * This routine is to perform Clear Virtual Link (CVL) on all vports in
3452 * response to a FCF dead event.
3453 **/
3454static void
3455lpfc_sli4_perform_all_vport_cvl(struct lpfc_hba *phba)
3456{
3457 struct lpfc_vport **vports;
3458 int i;
3459
3460 vports = lpfc_create_vport_work_array(phba);
3461 if (vports)
3462 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++)
3463 lpfc_sli4_perform_vport_cvl(vports[i]);
3464 lpfc_destroy_vport_work_array(phba, vports);
3465}
3466
da0436e9 3467/**
76a95d75 3468 * lpfc_sli4_async_fip_evt - Process the asynchronous FCoE FIP event
da0436e9
JS
3469 * @phba: pointer to lpfc hba data structure.
3470 * @acqe_link: pointer to the async fcoe completion queue entry.
3471 *
3472 * This routine is to handle the SLI4 asynchronous fcoe event.
3473 **/
3474static void
76a95d75 3475lpfc_sli4_async_fip_evt(struct lpfc_hba *phba,
70f3c073 3476 struct lpfc_acqe_fip *acqe_fip)
da0436e9 3477{
70f3c073 3478 uint8_t event_type = bf_get(lpfc_trailer_type, acqe_fip);
da0436e9 3479 int rc;
6669f9bb
JS
3480 struct lpfc_vport *vport;
3481 struct lpfc_nodelist *ndlp;
3482 struct Scsi_Host *shost;
695a814e
JS
3483 int active_vlink_present;
3484 struct lpfc_vport **vports;
3485 int i;
da0436e9 3486
70f3c073
JS
3487 phba->fc_eventTag = acqe_fip->event_tag;
3488 phba->fcoe_eventtag = acqe_fip->event_tag;
da0436e9 3489 switch (event_type) {
70f3c073
JS
3490 case LPFC_FIP_EVENT_TYPE_NEW_FCF:
3491 case LPFC_FIP_EVENT_TYPE_FCF_PARAM_MOD:
3492 if (event_type == LPFC_FIP_EVENT_TYPE_NEW_FCF)
999d813f
JS
3493 lpfc_printf_log(phba, KERN_ERR, LOG_FIP |
3494 LOG_DISCOVERY,
a93ff37a
JS
3495 "2546 New FCF event, evt_tag:x%x, "
3496 "index:x%x\n",
70f3c073
JS
3497 acqe_fip->event_tag,
3498 acqe_fip->index);
999d813f
JS
3499 else
3500 lpfc_printf_log(phba, KERN_WARNING, LOG_FIP |
3501 LOG_DISCOVERY,
a93ff37a
JS
3502 "2788 FCF param modified event, "
3503 "evt_tag:x%x, index:x%x\n",
70f3c073
JS
3504 acqe_fip->event_tag,
3505 acqe_fip->index);
38b92ef8 3506 if (phba->fcf.fcf_flag & FCF_DISCOVERY) {
0c9ab6f5
JS
3507 /*
3508 * During period of FCF discovery, read the FCF
3509 * table record indexed by the event to update
a93ff37a 3510 * FCF roundrobin failover eligible FCF bmask.
0c9ab6f5
JS
3511 */
3512 lpfc_printf_log(phba, KERN_INFO, LOG_FIP |
3513 LOG_DISCOVERY,
a93ff37a
JS
3514 "2779 Read FCF (x%x) for updating "
3515 "roundrobin FCF failover bmask\n",
70f3c073
JS
3516 acqe_fip->index);
3517 rc = lpfc_sli4_read_fcf_rec(phba, acqe_fip->index);
0c9ab6f5 3518 }
38b92ef8
JS
3519
3520 /* If the FCF discovery is in progress, do nothing. */
3804dc84 3521 spin_lock_irq(&phba->hbalock);
a93ff37a 3522 if (phba->hba_flag & FCF_TS_INPROG) {
38b92ef8
JS
3523 spin_unlock_irq(&phba->hbalock);
3524 break;
3525 }
3526 /* If fast FCF failover rescan event is pending, do nothing */
3527 if (phba->fcf.fcf_flag & FCF_REDISC_EVT) {
3528 spin_unlock_irq(&phba->hbalock);
3529 break;
3530 }
3531
3532 /* If the FCF has been in discovered state, do nothing. */
3804dc84
JS
3533 if (phba->fcf.fcf_flag & FCF_SCAN_DONE) {
3534 spin_unlock_irq(&phba->hbalock);
3535 break;
3536 }
3537 spin_unlock_irq(&phba->hbalock);
38b92ef8 3538
0c9ab6f5
JS
3539 /* Otherwise, scan the entire FCF table and re-discover SAN */
3540 lpfc_printf_log(phba, KERN_INFO, LOG_FIP | LOG_DISCOVERY,
a93ff37a
JS
3541 "2770 Start FCF table scan per async FCF "
3542 "event, evt_tag:x%x, index:x%x\n",
70f3c073 3543 acqe_fip->event_tag, acqe_fip->index);
0c9ab6f5
JS
3544 rc = lpfc_sli4_fcf_scan_read_fcf_rec(phba,
3545 LPFC_FCOE_FCF_GET_FIRST);
da0436e9 3546 if (rc)
0c9ab6f5
JS
3547 lpfc_printf_log(phba, KERN_ERR, LOG_FIP | LOG_DISCOVERY,
3548 "2547 Issue FCF scan read FCF mailbox "
a93ff37a 3549 "command failed (x%x)\n", rc);
da0436e9
JS
3550 break;
3551
70f3c073 3552 case LPFC_FIP_EVENT_TYPE_FCF_TABLE_FULL:
da0436e9 3553 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
e4e74273 3554 "2548 FCF Table full count 0x%x tag 0x%x\n",
70f3c073
JS
3555 bf_get(lpfc_acqe_fip_fcf_count, acqe_fip),
3556 acqe_fip->event_tag);
da0436e9
JS
3557 break;
3558
70f3c073 3559 case LPFC_FIP_EVENT_TYPE_FCF_DEAD:
0c9ab6f5 3560 lpfc_printf_log(phba, KERN_ERR, LOG_FIP | LOG_DISCOVERY,
a93ff37a 3561 "2549 FCF (x%x) disconnected from network, "
70f3c073 3562 "tag:x%x\n", acqe_fip->index, acqe_fip->event_tag);
38b92ef8
JS
3563 /*
3564 * If we are in the middle of FCF failover process, clear
3565 * the corresponding FCF bit in the roundrobin bitmap.
da0436e9 3566 */
fc2b989b 3567 spin_lock_irq(&phba->hbalock);
0c9ab6f5 3568 if (phba->fcf.fcf_flag & FCF_DISCOVERY) {
fc2b989b 3569 spin_unlock_irq(&phba->hbalock);
0c9ab6f5 3570 /* Update FLOGI FCF failover eligible FCF bmask */
70f3c073 3571 lpfc_sli4_fcf_rr_index_clear(phba, acqe_fip->index);
fc2b989b
JS
3572 break;
3573 }
38b92ef8
JS
3574 spin_unlock_irq(&phba->hbalock);
3575
3576 /* If the event is not for currently used fcf do nothing */
70f3c073 3577 if (phba->fcf.current_rec.fcf_indx != acqe_fip->index)
38b92ef8
JS
3578 break;
3579
3580 /*
3581 * Otherwise, request the port to rediscover the entire FCF
3582 * table for a fast recovery from case that the current FCF
3583 * is no longer valid as we are not in the middle of FCF
3584 * failover process already.
3585 */
3586 spin_lock_irq(&phba->hbalock);
fc2b989b 3587 /* Mark the fast failover process in progress */
0c9ab6f5 3588 phba->fcf.fcf_flag |= FCF_DEAD_DISC;
fc2b989b 3589 spin_unlock_irq(&phba->hbalock);
38b92ef8 3590
0c9ab6f5
JS
3591 lpfc_printf_log(phba, KERN_INFO, LOG_FIP | LOG_DISCOVERY,
3592 "2771 Start FCF fast failover process due to "
3593 "FCF DEAD event: evt_tag:x%x, fcf_index:x%x "
70f3c073 3594 "\n", acqe_fip->event_tag, acqe_fip->index);
fc2b989b
JS
3595 rc = lpfc_sli4_redisc_fcf_table(phba);
3596 if (rc) {
0c9ab6f5
JS
3597 lpfc_printf_log(phba, KERN_ERR, LOG_FIP |
3598 LOG_DISCOVERY,
3599 "2772 Issue FCF rediscover mabilbox "
3600 "command failed, fail through to FCF "
3601 "dead event\n");
fc2b989b 3602 spin_lock_irq(&phba->hbalock);
0c9ab6f5 3603 phba->fcf.fcf_flag &= ~FCF_DEAD_DISC;
fc2b989b
JS
3604 spin_unlock_irq(&phba->hbalock);
3605 /*
3606 * Last resort will fail over by treating this
3607 * as a link down to FCF registration.
3608 */
3609 lpfc_sli4_fcf_dead_failthrough(phba);
38b92ef8
JS
3610 } else {
3611 /* Reset FCF roundrobin bmask for new discovery */
3612 memset(phba->fcf.fcf_rr_bmask, 0,
3613 sizeof(*phba->fcf.fcf_rr_bmask));
3614 /*
3615 * Handling fast FCF failover to a DEAD FCF event is
3616 * considered equalivant to receiving CVL to all vports.
fc2b989b
JS
3617 */
3618 lpfc_sli4_perform_all_vport_cvl(phba);
38b92ef8 3619 }
da0436e9 3620 break;
70f3c073 3621 case LPFC_FIP_EVENT_TYPE_CVL:
0c9ab6f5 3622 lpfc_printf_log(phba, KERN_ERR, LOG_FIP | LOG_DISCOVERY,
6669f9bb 3623 "2718 Clear Virtual Link Received for VPI 0x%x"
70f3c073 3624 " tag 0x%x\n", acqe_fip->index, acqe_fip->event_tag);
6669f9bb 3625 vport = lpfc_find_vport_by_vpid(phba,
70f3c073 3626 acqe_fip->index - phba->vpi_base);
fc2b989b 3627 ndlp = lpfc_sli4_perform_vport_cvl(vport);
6669f9bb
JS
3628 if (!ndlp)
3629 break;
695a814e
JS
3630 active_vlink_present = 0;
3631
3632 vports = lpfc_create_vport_work_array(phba);
3633 if (vports) {
3634 for (i = 0; i <= phba->max_vports && vports[i] != NULL;
3635 i++) {
3636 if ((!(vports[i]->fc_flag &
3637 FC_VPORT_CVL_RCVD)) &&
3638 (vports[i]->port_state > LPFC_FDISC)) {
3639 active_vlink_present = 1;
3640 break;
3641 }
3642 }
3643 lpfc_destroy_vport_work_array(phba, vports);
3644 }
3645
3646 if (active_vlink_present) {
3647 /*
3648 * If there are other active VLinks present,
3649 * re-instantiate the Vlink using FDISC.
3650 */
6669f9bb 3651 mod_timer(&ndlp->nlp_delayfunc, jiffies + HZ);
fc2b989b 3652 shost = lpfc_shost_from_vport(vport);
6669f9bb
JS
3653 spin_lock_irq(shost->host_lock);
3654 ndlp->nlp_flag |= NLP_DELAY_TMO;
3655 spin_unlock_irq(shost->host_lock);
695a814e
JS
3656 ndlp->nlp_last_elscmd = ELS_CMD_FDISC;
3657 vport->port_state = LPFC_FDISC;
3658 } else {
ecfd03c6
JS
3659 /*
3660 * Otherwise, we request port to rediscover
3661 * the entire FCF table for a fast recovery
3662 * from possible case that the current FCF
0c9ab6f5
JS
3663 * is no longer valid if we are not already
3664 * in the FCF failover process.
ecfd03c6 3665 */
fc2b989b 3666 spin_lock_irq(&phba->hbalock);
0c9ab6f5 3667 if (phba->fcf.fcf_flag & FCF_DISCOVERY) {
fc2b989b
JS
3668 spin_unlock_irq(&phba->hbalock);
3669 break;
3670 }
3671 /* Mark the fast failover process in progress */
0c9ab6f5 3672 phba->fcf.fcf_flag |= FCF_ACVL_DISC;
fc2b989b 3673 spin_unlock_irq(&phba->hbalock);
0c9ab6f5
JS
3674 lpfc_printf_log(phba, KERN_INFO, LOG_FIP |
3675 LOG_DISCOVERY,
a93ff37a 3676 "2773 Start FCF failover per CVL, "
70f3c073 3677 "evt_tag:x%x\n", acqe_fip->event_tag);
ecfd03c6 3678 rc = lpfc_sli4_redisc_fcf_table(phba);
fc2b989b 3679 if (rc) {
0c9ab6f5
JS
3680 lpfc_printf_log(phba, KERN_ERR, LOG_FIP |
3681 LOG_DISCOVERY,
3682 "2774 Issue FCF rediscover "
3683 "mabilbox command failed, "
3684 "through to CVL event\n");
fc2b989b 3685 spin_lock_irq(&phba->hbalock);
0c9ab6f5 3686 phba->fcf.fcf_flag &= ~FCF_ACVL_DISC;
fc2b989b 3687 spin_unlock_irq(&phba->hbalock);
ecfd03c6
JS
3688 /*
3689 * Last resort will be re-try on the
3690 * the current registered FCF entry.
3691 */
3692 lpfc_retry_pport_discovery(phba);
38b92ef8
JS
3693 } else
3694 /*
3695 * Reset FCF roundrobin bmask for new
3696 * discovery.
3697 */
3698 memset(phba->fcf.fcf_rr_bmask, 0,
3699 sizeof(*phba->fcf.fcf_rr_bmask));
6669f9bb
JS
3700 }
3701 break;
da0436e9
JS
3702 default:
3703 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
3704 "0288 Unknown FCoE event type 0x%x event tag "
70f3c073 3705 "0x%x\n", event_type, acqe_fip->event_tag);
da0436e9
JS
3706 break;
3707 }
3708}
3709
3710/**
3711 * lpfc_sli4_async_dcbx_evt - Process the asynchronous dcbx event
3712 * @phba: pointer to lpfc hba data structure.
3713 * @acqe_link: pointer to the async dcbx completion queue entry.
3714 *
3715 * This routine is to handle the SLI4 asynchronous dcbx event.
3716 **/
3717static void
3718lpfc_sli4_async_dcbx_evt(struct lpfc_hba *phba,
3719 struct lpfc_acqe_dcbx *acqe_dcbx)
3720{
4d9ab994 3721 phba->fc_eventTag = acqe_dcbx->event_tag;
da0436e9
JS
3722 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
3723 "0290 The SLI4 DCBX asynchronous event is not "
3724 "handled yet\n");
3725}
3726
b19a061a
JS
3727/**
3728 * lpfc_sli4_async_grp5_evt - Process the asynchronous group5 event
3729 * @phba: pointer to lpfc hba data structure.
3730 * @acqe_link: pointer to the async grp5 completion queue entry.
3731 *
3732 * This routine is to handle the SLI4 asynchronous grp5 event. A grp5 event
3733 * is an asynchronous notified of a logical link speed change. The Port
3734 * reports the logical link speed in units of 10Mbps.
3735 **/
3736static void
3737lpfc_sli4_async_grp5_evt(struct lpfc_hba *phba,
3738 struct lpfc_acqe_grp5 *acqe_grp5)
3739{
3740 uint16_t prev_ll_spd;
3741
3742 phba->fc_eventTag = acqe_grp5->event_tag;
3743 phba->fcoe_eventtag = acqe_grp5->event_tag;
3744 prev_ll_spd = phba->sli4_hba.link_state.logical_speed;
3745 phba->sli4_hba.link_state.logical_speed =
3746 (bf_get(lpfc_acqe_grp5_llink_spd, acqe_grp5));
3747 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
3748 "2789 GRP5 Async Event: Updating logical link speed "
3749 "from %dMbps to %dMbps\n", (prev_ll_spd * 10),
3750 (phba->sli4_hba.link_state.logical_speed*10));
3751}
3752
da0436e9
JS
3753/**
3754 * lpfc_sli4_async_event_proc - Process all the pending asynchronous event
3755 * @phba: pointer to lpfc hba data structure.
3756 *
3757 * This routine is invoked by the worker thread to process all the pending
3758 * SLI4 asynchronous events.
3759 **/
3760void lpfc_sli4_async_event_proc(struct lpfc_hba *phba)
3761{
3762 struct lpfc_cq_event *cq_event;
3763
3764 /* First, declare the async event has been handled */
3765 spin_lock_irq(&phba->hbalock);
3766 phba->hba_flag &= ~ASYNC_EVENT;
3767 spin_unlock_irq(&phba->hbalock);
3768 /* Now, handle all the async events */
3769 while (!list_empty(&phba->sli4_hba.sp_asynce_work_queue)) {
3770 /* Get the first event from the head of the event queue */
3771 spin_lock_irq(&phba->hbalock);
3772 list_remove_head(&phba->sli4_hba.sp_asynce_work_queue,
3773 cq_event, struct lpfc_cq_event, list);
3774 spin_unlock_irq(&phba->hbalock);
3775 /* Process the asynchronous event */
3776 switch (bf_get(lpfc_trailer_code, &cq_event->cqe.mcqe_cmpl)) {
3777 case LPFC_TRAILER_CODE_LINK:
3778 lpfc_sli4_async_link_evt(phba,
3779 &cq_event->cqe.acqe_link);
3780 break;
3781 case LPFC_TRAILER_CODE_FCOE:
70f3c073 3782 lpfc_sli4_async_fip_evt(phba, &cq_event->cqe.acqe_fip);
da0436e9
JS
3783 break;
3784 case LPFC_TRAILER_CODE_DCBX:
3785 lpfc_sli4_async_dcbx_evt(phba,
3786 &cq_event->cqe.acqe_dcbx);
3787 break;
b19a061a
JS
3788 case LPFC_TRAILER_CODE_GRP5:
3789 lpfc_sli4_async_grp5_evt(phba,
3790 &cq_event->cqe.acqe_grp5);
3791 break;
70f3c073
JS
3792 case LPFC_TRAILER_CODE_FC:
3793 lpfc_sli4_async_fc_evt(phba, &cq_event->cqe.acqe_fc);
3794 break;
3795 case LPFC_TRAILER_CODE_SLI:
3796 lpfc_sli4_async_sli_evt(phba, &cq_event->cqe.acqe_sli);
3797 break;
da0436e9
JS
3798 default:
3799 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
3800 "1804 Invalid asynchrous event code: "
3801 "x%x\n", bf_get(lpfc_trailer_code,
3802 &cq_event->cqe.mcqe_cmpl));
3803 break;
3804 }
3805 /* Free the completion event processed to the free pool */
3806 lpfc_sli4_cq_event_release(phba, cq_event);
3807 }
3808}
3809
ecfd03c6
JS
3810/**
3811 * lpfc_sli4_fcf_redisc_event_proc - Process fcf table rediscovery event
3812 * @phba: pointer to lpfc hba data structure.
3813 *
3814 * This routine is invoked by the worker thread to process FCF table
3815 * rediscovery pending completion event.
3816 **/
3817void lpfc_sli4_fcf_redisc_event_proc(struct lpfc_hba *phba)
3818{
3819 int rc;
3820
3821 spin_lock_irq(&phba->hbalock);
3822 /* Clear FCF rediscovery timeout event */
3823 phba->fcf.fcf_flag &= ~FCF_REDISC_EVT;
3824 /* Clear driver fast failover FCF record flag */
3825 phba->fcf.failover_rec.flag = 0;
3826 /* Set state for FCF fast failover */
3827 phba->fcf.fcf_flag |= FCF_REDISC_FOV;
3828 spin_unlock_irq(&phba->hbalock);
3829
3830 /* Scan FCF table from the first entry to re-discover SAN */
0c9ab6f5 3831 lpfc_printf_log(phba, KERN_INFO, LOG_FIP | LOG_DISCOVERY,
a93ff37a 3832 "2777 Start post-quiescent FCF table scan\n");
0c9ab6f5 3833 rc = lpfc_sli4_fcf_scan_read_fcf_rec(phba, LPFC_FCOE_FCF_GET_FIRST);
ecfd03c6 3834 if (rc)
0c9ab6f5
JS
3835 lpfc_printf_log(phba, KERN_ERR, LOG_FIP | LOG_DISCOVERY,
3836 "2747 Issue FCF scan read FCF mailbox "
3837 "command failed 0x%x\n", rc);
ecfd03c6
JS
3838}
3839
da0436e9
JS
3840/**
3841 * lpfc_api_table_setup - Set up per hba pci-device group func api jump table
3842 * @phba: pointer to lpfc hba data structure.
3843 * @dev_grp: The HBA PCI-Device group number.
3844 *
3845 * This routine is invoked to set up the per HBA PCI-Device group function
3846 * API jump table entries.
3847 *
3848 * Return: 0 if success, otherwise -ENODEV
3849 **/
3850int
3851lpfc_api_table_setup(struct lpfc_hba *phba, uint8_t dev_grp)
3852{
3853 int rc;
3854
3855 /* Set up lpfc PCI-device group */
3856 phba->pci_dev_grp = dev_grp;
3857
3858 /* The LPFC_PCI_DEV_OC uses SLI4 */
3859 if (dev_grp == LPFC_PCI_DEV_OC)
3860 phba->sli_rev = LPFC_SLI_REV4;
3861
3862 /* Set up device INIT API function jump table */
3863 rc = lpfc_init_api_table_setup(phba, dev_grp);
3864 if (rc)
3865 return -ENODEV;
3866 /* Set up SCSI API function jump table */
3867 rc = lpfc_scsi_api_table_setup(phba, dev_grp);
3868 if (rc)
3869 return -ENODEV;
3870 /* Set up SLI API function jump table */
3871 rc = lpfc_sli_api_table_setup(phba, dev_grp);
3872 if (rc)
3873 return -ENODEV;
3874 /* Set up MBOX API function jump table */
3875 rc = lpfc_mbox_api_table_setup(phba, dev_grp);
3876 if (rc)
3877 return -ENODEV;
3878
3879 return 0;
5b75da2f
JS
3880}
3881
3882/**
3621a710 3883 * lpfc_log_intr_mode - Log the active interrupt mode
5b75da2f
JS
3884 * @phba: pointer to lpfc hba data structure.
3885 * @intr_mode: active interrupt mode adopted.
3886 *
3887 * This routine it invoked to log the currently used active interrupt mode
3888 * to the device.
3772a991
JS
3889 **/
3890static void lpfc_log_intr_mode(struct lpfc_hba *phba, uint32_t intr_mode)
5b75da2f
JS
3891{
3892 switch (intr_mode) {
3893 case 0:
3894 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
3895 "0470 Enable INTx interrupt mode.\n");
3896 break;
3897 case 1:
3898 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
3899 "0481 Enabled MSI interrupt mode.\n");
3900 break;
3901 case 2:
3902 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
3903 "0480 Enabled MSI-X interrupt mode.\n");
3904 break;
3905 default:
3906 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3907 "0482 Illegal interrupt mode.\n");
3908 break;
3909 }
3910 return;
3911}
3912
5b75da2f 3913/**
3772a991 3914 * lpfc_enable_pci_dev - Enable a generic PCI device.
5b75da2f
JS
3915 * @phba: pointer to lpfc hba data structure.
3916 *
3772a991
JS
3917 * This routine is invoked to enable the PCI device that is common to all
3918 * PCI devices.
5b75da2f
JS
3919 *
3920 * Return codes
af901ca1 3921 * 0 - successful
3772a991 3922 * other values - error
5b75da2f 3923 **/
3772a991
JS
3924static int
3925lpfc_enable_pci_dev(struct lpfc_hba *phba)
5b75da2f 3926{
3772a991
JS
3927 struct pci_dev *pdev;
3928 int bars;
5b75da2f 3929
3772a991
JS
3930 /* Obtain PCI device reference */
3931 if (!phba->pcidev)
3932 goto out_error;
3933 else
3934 pdev = phba->pcidev;
3935 /* Select PCI BARs */
3936 bars = pci_select_bars(pdev, IORESOURCE_MEM);
3937 /* Enable PCI device */
3938 if (pci_enable_device_mem(pdev))
3939 goto out_error;
3940 /* Request PCI resource for the device */
3941 if (pci_request_selected_regions(pdev, bars, LPFC_DRIVER_NAME))
3942 goto out_disable_device;
3943 /* Set up device as PCI master and save state for EEH */
3944 pci_set_master(pdev);
3945 pci_try_set_mwi(pdev);
3946 pci_save_state(pdev);
5b75da2f 3947
3772a991 3948 return 0;
5b75da2f 3949
3772a991
JS
3950out_disable_device:
3951 pci_disable_device(pdev);
3952out_error:
3953 return -ENODEV;
5b75da2f
JS
3954}
3955
3956/**
3772a991 3957 * lpfc_disable_pci_dev - Disable a generic PCI device.
5b75da2f
JS
3958 * @phba: pointer to lpfc hba data structure.
3959 *
3772a991
JS
3960 * This routine is invoked to disable the PCI device that is common to all
3961 * PCI devices.
5b75da2f
JS
3962 **/
3963static void
3772a991 3964lpfc_disable_pci_dev(struct lpfc_hba *phba)
5b75da2f 3965{
3772a991
JS
3966 struct pci_dev *pdev;
3967 int bars;
5b75da2f 3968
3772a991
JS
3969 /* Obtain PCI device reference */
3970 if (!phba->pcidev)
3971 return;
3972 else
3973 pdev = phba->pcidev;
3974 /* Select PCI BARs */
3975 bars = pci_select_bars(pdev, IORESOURCE_MEM);
3976 /* Release PCI resource and disable PCI device */
3977 pci_release_selected_regions(pdev, bars);
3978 pci_disable_device(pdev);
3979 /* Null out PCI private reference to driver */
3980 pci_set_drvdata(pdev, NULL);
5b75da2f
JS
3981
3982 return;
3983}
3984
e59058c4 3985/**
3772a991
JS
3986 * lpfc_reset_hba - Reset a hba
3987 * @phba: pointer to lpfc hba data structure.
e59058c4 3988 *
3772a991
JS
3989 * This routine is invoked to reset a hba device. It brings the HBA
3990 * offline, performs a board restart, and then brings the board back
3991 * online. The lpfc_offline calls lpfc_sli_hba_down which will clean up
3992 * on outstanding mailbox commands.
e59058c4 3993 **/
3772a991
JS
3994void
3995lpfc_reset_hba(struct lpfc_hba *phba)
dea3101e 3996{
3772a991
JS
3997 /* If resets are disabled then set error state and return. */
3998 if (!phba->cfg_enable_hba_reset) {
3999 phba->link_state = LPFC_HBA_ERROR;
4000 return;
4001 }
4002 lpfc_offline_prep(phba);
4003 lpfc_offline(phba);
4004 lpfc_sli_brdrestart(phba);
4005 lpfc_online(phba);
4006 lpfc_unblock_mgmt_io(phba);
4007}
dea3101e 4008
3772a991
JS
4009/**
4010 * lpfc_sli_driver_resource_setup - Setup driver internal resources for SLI3 dev.
4011 * @phba: pointer to lpfc hba data structure.
4012 *
4013 * This routine is invoked to set up the driver internal resources specific to
4014 * support the SLI-3 HBA device it attached to.
4015 *
4016 * Return codes
af901ca1 4017 * 0 - successful
3772a991
JS
4018 * other values - error
4019 **/
4020static int
4021lpfc_sli_driver_resource_setup(struct lpfc_hba *phba)
4022{
4023 struct lpfc_sli *psli;
dea3101e 4024
2e0fef85 4025 /*
3772a991 4026 * Initialize timers used by driver
2e0fef85 4027 */
dea3101e 4028
3772a991 4029 /* Heartbeat timer */
858c9f6c
JS
4030 init_timer(&phba->hb_tmofunc);
4031 phba->hb_tmofunc.function = lpfc_hb_timeout;
4032 phba->hb_tmofunc.data = (unsigned long)phba;
4033
dea3101e 4034 psli = &phba->sli;
3772a991 4035 /* MBOX heartbeat timer */
dea3101e
JB
4036 init_timer(&psli->mbox_tmo);
4037 psli->mbox_tmo.function = lpfc_mbox_timeout;
2e0fef85 4038 psli->mbox_tmo.data = (unsigned long) phba;
3772a991 4039 /* FCP polling mode timer */
875fbdfe
JSEC
4040 init_timer(&phba->fcp_poll_timer);
4041 phba->fcp_poll_timer.function = lpfc_poll_timeout;
2e0fef85 4042 phba->fcp_poll_timer.data = (unsigned long) phba;
3772a991 4043 /* Fabric block timer */
92d7f7b0
JS
4044 init_timer(&phba->fabric_block_timer);
4045 phba->fabric_block_timer.function = lpfc_fabric_block_timeout;
4046 phba->fabric_block_timer.data = (unsigned long) phba;
3772a991 4047 /* EA polling mode timer */
9399627f
JS
4048 init_timer(&phba->eratt_poll);
4049 phba->eratt_poll.function = lpfc_poll_eratt;
4050 phba->eratt_poll.data = (unsigned long) phba;
dea3101e 4051
3772a991
JS
4052 /* Host attention work mask setup */
4053 phba->work_ha_mask = (HA_ERATT | HA_MBATT | HA_LATT);
4054 phba->work_ha_mask |= (HA_RXMASK << (LPFC_ELS_RING * 4));
dea3101e 4055
3772a991
JS
4056 /* Get all the module params for configuring this host */
4057 lpfc_get_cfgparam(phba);
49198b37
JS
4058 if (phba->pcidev->device == PCI_DEVICE_ID_HORNET) {
4059 phba->menlo_flag |= HBA_MENLO_SUPPORT;
4060 /* check for menlo minimum sg count */
4061 if (phba->cfg_sg_seg_cnt < LPFC_DEFAULT_MENLO_SG_SEG_CNT)
4062 phba->cfg_sg_seg_cnt = LPFC_DEFAULT_MENLO_SG_SEG_CNT;
4063 }
4064
dea3101e 4065 /*
3772a991
JS
4066 * Since the sg_tablesize is module parameter, the sg_dma_buf_size
4067 * used to create the sg_dma_buf_pool must be dynamically calculated.
4068 * 2 segments are added since the IOCB needs a command and response bde.
dea3101e 4069 */
3772a991
JS
4070 phba->cfg_sg_dma_buf_size = sizeof(struct fcp_cmnd) +
4071 sizeof(struct fcp_rsp) +
4072 ((phba->cfg_sg_seg_cnt + 2) * sizeof(struct ulp_bde64));
4073
4074 if (phba->cfg_enable_bg) {
4075 phba->cfg_sg_seg_cnt = LPFC_MAX_SG_SEG_CNT;
4076 phba->cfg_sg_dma_buf_size +=
4077 phba->cfg_prot_sg_seg_cnt * sizeof(struct ulp_bde64);
901a920f 4078 }
dea3101e 4079
3772a991
JS
4080 /* Also reinitialize the host templates with new values. */
4081 lpfc_vport_template.sg_tablesize = phba->cfg_sg_seg_cnt;
4082 lpfc_template.sg_tablesize = phba->cfg_sg_seg_cnt;
dea3101e 4083
3772a991
JS
4084 phba->max_vpi = LPFC_MAX_VPI;
4085 /* This will be set to correct value after config_port mbox */
4086 phba->max_vports = 0;
dea3101e 4087
3772a991
JS
4088 /*
4089 * Initialize the SLI Layer to run with lpfc HBAs.
4090 */
4091 lpfc_sli_setup(phba);
4092 lpfc_sli_queue_setup(phba);
ed957684 4093
3772a991
JS
4094 /* Allocate device driver memory */
4095 if (lpfc_mem_alloc(phba, BPL_ALIGN_SZ))
4096 return -ENOMEM;
51ef4c26 4097
3772a991
JS
4098 return 0;
4099}
ed957684 4100
3772a991
JS
4101/**
4102 * lpfc_sli_driver_resource_unset - Unset drvr internal resources for SLI3 dev
4103 * @phba: pointer to lpfc hba data structure.
4104 *
4105 * This routine is invoked to unset the driver internal resources set up
4106 * specific for supporting the SLI-3 HBA device it attached to.
4107 **/
4108static void
4109lpfc_sli_driver_resource_unset(struct lpfc_hba *phba)
4110{
4111 /* Free device driver memory allocated */
4112 lpfc_mem_free_all(phba);
3163f725 4113
3772a991
JS
4114 return;
4115}
dea3101e 4116
3772a991 4117/**
da0436e9 4118 * lpfc_sli4_driver_resource_setup - Setup drvr internal resources for SLI4 dev
3772a991
JS
4119 * @phba: pointer to lpfc hba data structure.
4120 *
da0436e9
JS
4121 * This routine is invoked to set up the driver internal resources specific to
4122 * support the SLI-4 HBA device it attached to.
3772a991
JS
4123 *
4124 * Return codes
af901ca1 4125 * 0 - successful
da0436e9 4126 * other values - error
3772a991
JS
4127 **/
4128static int
da0436e9 4129lpfc_sli4_driver_resource_setup(struct lpfc_hba *phba)
3772a991 4130{
da0436e9 4131 struct lpfc_sli *psli;
28baac74
JS
4132 LPFC_MBOXQ_t *mboxq;
4133 int rc, i, hbq_count, buf_size, dma_buf_size, max_buf_size;
4134 uint8_t pn_page[LPFC_MAX_SUPPORTED_PAGES] = {0};
4135 struct lpfc_mqe *mqe;
085c647c 4136 int longs, sli_family;
da0436e9
JS
4137
4138 /* Before proceed, wait for POST done and device ready */
4139 rc = lpfc_sli4_post_status_check(phba);
4140 if (rc)
4141 return -ENODEV;
4142
3772a991 4143 /*
da0436e9 4144 * Initialize timers used by driver
3772a991 4145 */
3772a991 4146
da0436e9
JS
4147 /* Heartbeat timer */
4148 init_timer(&phba->hb_tmofunc);
4149 phba->hb_tmofunc.function = lpfc_hb_timeout;
4150 phba->hb_tmofunc.data = (unsigned long)phba;
19ca7609
JS
4151 init_timer(&phba->rrq_tmr);
4152 phba->rrq_tmr.function = lpfc_rrq_timeout;
4153 phba->rrq_tmr.data = (unsigned long)phba;
3772a991 4154
da0436e9
JS
4155 psli = &phba->sli;
4156 /* MBOX heartbeat timer */
4157 init_timer(&psli->mbox_tmo);
4158 psli->mbox_tmo.function = lpfc_mbox_timeout;
4159 psli->mbox_tmo.data = (unsigned long) phba;
4160 /* Fabric block timer */
4161 init_timer(&phba->fabric_block_timer);
4162 phba->fabric_block_timer.function = lpfc_fabric_block_timeout;
4163 phba->fabric_block_timer.data = (unsigned long) phba;
4164 /* EA polling mode timer */
4165 init_timer(&phba->eratt_poll);
4166 phba->eratt_poll.function = lpfc_poll_eratt;
4167 phba->eratt_poll.data = (unsigned long) phba;
ecfd03c6
JS
4168 /* FCF rediscover timer */
4169 init_timer(&phba->fcf.redisc_wait);
4170 phba->fcf.redisc_wait.function = lpfc_sli4_fcf_redisc_wait_tmo;
4171 phba->fcf.redisc_wait.data = (unsigned long)phba;
4172
da0436e9
JS
4173 /*
4174 * We need to do a READ_CONFIG mailbox command here before
4175 * calling lpfc_get_cfgparam. For VFs this will report the
4176 * MAX_XRI, MAX_VPI, MAX_RPI, MAX_IOCB, and MAX_VFI settings.
4177 * All of the resources allocated
4178 * for this Port are tied to these values.
4179 */
4180 /* Get all the module params for configuring this host */
4181 lpfc_get_cfgparam(phba);
4182 phba->max_vpi = LPFC_MAX_VPI;
4183 /* This will be set to correct value after the read_config mbox */
4184 phba->max_vports = 0;
3772a991 4185
da0436e9
JS
4186 /* Program the default value of vlan_id and fc_map */
4187 phba->valid_vlan = 0;
4188 phba->fc_map[0] = LPFC_FCOE_FCF_MAP0;
4189 phba->fc_map[1] = LPFC_FCOE_FCF_MAP1;
4190 phba->fc_map[2] = LPFC_FCOE_FCF_MAP2;
3772a991 4191
da0436e9
JS
4192 /*
4193 * Since the sg_tablesize is module parameter, the sg_dma_buf_size
4194 * used to create the sg_dma_buf_pool must be dynamically calculated.
4195 * 2 segments are added since the IOCB needs a command and response bde.
4196 * To insure that the scsi sgl does not cross a 4k page boundary only
28baac74 4197 * sgl sizes of must be a power of 2.
da0436e9 4198 */
28baac74
JS
4199 buf_size = (sizeof(struct fcp_cmnd) + sizeof(struct fcp_rsp) +
4200 ((phba->cfg_sg_seg_cnt + 2) * sizeof(struct sli4_sge)));
085c647c
JS
4201
4202 sli_family = bf_get(lpfc_sli_intf_sli_family, &phba->sli4_hba.sli_intf);
4203 max_buf_size = LPFC_SLI4_MAX_BUF_SIZE;
4204 switch (sli_family) {
4205 case LPFC_SLI_INTF_FAMILY_BE2:
4206 case LPFC_SLI_INTF_FAMILY_BE3:
4207 /* There is a single hint for BE - 2 pages per BPL. */
4208 if (bf_get(lpfc_sli_intf_sli_hint1, &phba->sli4_hba.sli_intf) ==
4209 LPFC_SLI_INTF_SLI_HINT1_1)
4210 max_buf_size = LPFC_SLI4_FL1_MAX_BUF_SIZE;
4211 break;
4212 case LPFC_SLI_INTF_FAMILY_LNCR_A0:
4213 case LPFC_SLI_INTF_FAMILY_LNCR_B0:
4214 default:
4215 break;
4216 }
28baac74
JS
4217 for (dma_buf_size = LPFC_SLI4_MIN_BUF_SIZE;
4218 dma_buf_size < max_buf_size && buf_size > dma_buf_size;
4219 dma_buf_size = dma_buf_size << 1)
4220 ;
4221 if (dma_buf_size == max_buf_size)
4222 phba->cfg_sg_seg_cnt = (dma_buf_size -
4223 sizeof(struct fcp_cmnd) - sizeof(struct fcp_rsp) -
4224 (2 * sizeof(struct sli4_sge))) /
4225 sizeof(struct sli4_sge);
4226 phba->cfg_sg_dma_buf_size = dma_buf_size;
3772a991 4227
da0436e9
JS
4228 /* Initialize buffer queue management fields */
4229 hbq_count = lpfc_sli_hbq_count();
4230 for (i = 0; i < hbq_count; ++i)
4231 INIT_LIST_HEAD(&phba->hbqs[i].hbq_buffer_list);
4232 INIT_LIST_HEAD(&phba->rb_pend_list);
4233 phba->hbqs[LPFC_ELS_HBQ].hbq_alloc_buffer = lpfc_sli4_rb_alloc;
4234 phba->hbqs[LPFC_ELS_HBQ].hbq_free_buffer = lpfc_sli4_rb_free;
3772a991 4235
da0436e9
JS
4236 /*
4237 * Initialize the SLI Layer to run with lpfc SLI4 HBAs.
4238 */
4239 /* Initialize the Abort scsi buffer list used by driver */
4240 spin_lock_init(&phba->sli4_hba.abts_scsi_buf_list_lock);
4241 INIT_LIST_HEAD(&phba->sli4_hba.lpfc_abts_scsi_buf_list);
4242 /* This abort list used by worker thread */
4243 spin_lock_init(&phba->sli4_hba.abts_sgl_list_lock);
3772a991 4244
da0436e9
JS
4245 /*
4246 * Initialize dirver internal slow-path work queues
4247 */
3772a991 4248
da0436e9
JS
4249 /* Driver internel slow-path CQ Event pool */
4250 INIT_LIST_HEAD(&phba->sli4_hba.sp_cqe_event_pool);
4251 /* Response IOCB work queue list */
45ed1190 4252 INIT_LIST_HEAD(&phba->sli4_hba.sp_queue_event);
da0436e9
JS
4253 /* Asynchronous event CQ Event work queue list */
4254 INIT_LIST_HEAD(&phba->sli4_hba.sp_asynce_work_queue);
4255 /* Fast-path XRI aborted CQ Event work queue list */
4256 INIT_LIST_HEAD(&phba->sli4_hba.sp_fcp_xri_aborted_work_queue);
4257 /* Slow-path XRI aborted CQ Event work queue list */
4258 INIT_LIST_HEAD(&phba->sli4_hba.sp_els_xri_aborted_work_queue);
4259 /* Receive queue CQ Event work queue list */
4260 INIT_LIST_HEAD(&phba->sli4_hba.sp_unsol_work_queue);
4261
4262 /* Initialize the driver internal SLI layer lists. */
4263 lpfc_sli_setup(phba);
4264 lpfc_sli_queue_setup(phba);
3772a991 4265
da0436e9
JS
4266 /* Allocate device driver memory */
4267 rc = lpfc_mem_alloc(phba, SGL_ALIGN_SZ);
4268 if (rc)
4269 return -ENOMEM;
4270
4271 /* Create the bootstrap mailbox command */
4272 rc = lpfc_create_bootstrap_mbox(phba);
4273 if (unlikely(rc))
4274 goto out_free_mem;
4275
4276 /* Set up the host's endian order with the device. */
4277 rc = lpfc_setup_endian_order(phba);
4278 if (unlikely(rc))
4279 goto out_free_bsmbx;
4280
6669f9bb
JS
4281 rc = lpfc_sli4_fw_cfg_check(phba);
4282 if (unlikely(rc))
4283 goto out_free_bsmbx;
4284
da0436e9
JS
4285 /* Set up the hba's configuration parameters. */
4286 rc = lpfc_sli4_read_config(phba);
4287 if (unlikely(rc))
4288 goto out_free_bsmbx;
4289
4290 /* Perform a function reset */
4291 rc = lpfc_pci_function_reset(phba);
4292 if (unlikely(rc))
4293 goto out_free_bsmbx;
4294
cb5172ea
JS
4295 mboxq = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool,
4296 GFP_KERNEL);
4297 if (!mboxq) {
4298 rc = -ENOMEM;
4299 goto out_free_bsmbx;
4300 }
4301
4302 /* Get the Supported Pages. It is always available. */
4303 lpfc_supported_pages(mboxq);
4304 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
4305 if (unlikely(rc)) {
4306 rc = -EIO;
4307 mempool_free(mboxq, phba->mbox_mem_pool);
4308 goto out_free_bsmbx;
4309 }
4310
4311 mqe = &mboxq->u.mqe;
4312 memcpy(&pn_page[0], ((uint8_t *)&mqe->un.supp_pages.word3),
4313 LPFC_MAX_SUPPORTED_PAGES);
4314 for (i = 0; i < LPFC_MAX_SUPPORTED_PAGES; i++) {
4315 switch (pn_page[i]) {
4316 case LPFC_SLI4_PARAMETERS:
4317 phba->sli4_hba.pc_sli4_params.supported = 1;
4318 break;
4319 default:
4320 break;
4321 }
4322 }
4323
4324 /* Read the port's SLI4 Parameters capabilities if supported. */
4325 if (phba->sli4_hba.pc_sli4_params.supported)
4326 rc = lpfc_pc_sli4_params_get(phba, mboxq);
4327 mempool_free(mboxq, phba->mbox_mem_pool);
4328 if (rc) {
4329 rc = -EIO;
4330 goto out_free_bsmbx;
4331 }
da0436e9
JS
4332 /* Create all the SLI4 queues */
4333 rc = lpfc_sli4_queue_create(phba);
4334 if (rc)
4335 goto out_free_bsmbx;
4336
4337 /* Create driver internal CQE event pool */
4338 rc = lpfc_sli4_cq_event_pool_create(phba);
4339 if (rc)
4340 goto out_destroy_queue;
4341
4342 /* Initialize and populate the iocb list per host */
4343 rc = lpfc_init_sgl_list(phba);
4344 if (rc) {
4345 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
4346 "1400 Failed to initialize sgl list.\n");
4347 goto out_destroy_cq_event_pool;
4348 }
4349 rc = lpfc_init_active_sgl_array(phba);
4350 if (rc) {
4351 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
4352 "1430 Failed to initialize sgl list.\n");
4353 goto out_free_sgl_list;
4354 }
4355
4356 rc = lpfc_sli4_init_rpi_hdrs(phba);
4357 if (rc) {
4358 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
4359 "1432 Failed to initialize rpi headers.\n");
4360 goto out_free_active_sgl;
4361 }
4362
a93ff37a 4363 /* Allocate eligible FCF bmask memory for FCF roundrobin failover */
0c9ab6f5
JS
4364 longs = (LPFC_SLI4_FCF_TBL_INDX_MAX + BITS_PER_LONG - 1)/BITS_PER_LONG;
4365 phba->fcf.fcf_rr_bmask = kzalloc(longs * sizeof(unsigned long),
4366 GFP_KERNEL);
4367 if (!phba->fcf.fcf_rr_bmask) {
4368 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
4369 "2759 Failed allocate memory for FCF round "
4370 "robin failover bmask\n");
4371 goto out_remove_rpi_hdrs;
4372 }
4373
da0436e9
JS
4374 phba->sli4_hba.fcp_eq_hdl = kzalloc((sizeof(struct lpfc_fcp_eq_hdl) *
4375 phba->cfg_fcp_eq_count), GFP_KERNEL);
4376 if (!phba->sli4_hba.fcp_eq_hdl) {
4377 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
4378 "2572 Failed allocate memory for fast-path "
4379 "per-EQ handle array\n");
0c9ab6f5 4380 goto out_free_fcf_rr_bmask;
da0436e9
JS
4381 }
4382
4383 phba->sli4_hba.msix_entries = kzalloc((sizeof(struct msix_entry) *
4384 phba->sli4_hba.cfg_eqn), GFP_KERNEL);
4385 if (!phba->sli4_hba.msix_entries) {
4386 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
4387 "2573 Failed allocate memory for msi-x "
4388 "interrupt vector entries\n");
4389 goto out_free_fcp_eq_hdl;
4390 }
4391
4392 return rc;
4393
4394out_free_fcp_eq_hdl:
4395 kfree(phba->sli4_hba.fcp_eq_hdl);
0c9ab6f5
JS
4396out_free_fcf_rr_bmask:
4397 kfree(phba->fcf.fcf_rr_bmask);
da0436e9
JS
4398out_remove_rpi_hdrs:
4399 lpfc_sli4_remove_rpi_hdrs(phba);
4400out_free_active_sgl:
4401 lpfc_free_active_sgl(phba);
4402out_free_sgl_list:
4403 lpfc_free_sgl_list(phba);
4404out_destroy_cq_event_pool:
4405 lpfc_sli4_cq_event_pool_destroy(phba);
4406out_destroy_queue:
4407 lpfc_sli4_queue_destroy(phba);
4408out_free_bsmbx:
4409 lpfc_destroy_bootstrap_mbox(phba);
4410out_free_mem:
4411 lpfc_mem_free(phba);
4412 return rc;
4413}
4414
4415/**
4416 * lpfc_sli4_driver_resource_unset - Unset drvr internal resources for SLI4 dev
4417 * @phba: pointer to lpfc hba data structure.
4418 *
4419 * This routine is invoked to unset the driver internal resources set up
4420 * specific for supporting the SLI-4 HBA device it attached to.
4421 **/
4422static void
4423lpfc_sli4_driver_resource_unset(struct lpfc_hba *phba)
4424{
4425 struct lpfc_fcf_conn_entry *conn_entry, *next_conn_entry;
4426
da0436e9
JS
4427 /* Free memory allocated for msi-x interrupt vector entries */
4428 kfree(phba->sli4_hba.msix_entries);
4429
4430 /* Free memory allocated for fast-path work queue handles */
4431 kfree(phba->sli4_hba.fcp_eq_hdl);
4432
4433 /* Free the allocated rpi headers. */
4434 lpfc_sli4_remove_rpi_hdrs(phba);
d11e31dd 4435 lpfc_sli4_remove_rpis(phba);
da0436e9 4436
0c9ab6f5
JS
4437 /* Free eligible FCF index bmask */
4438 kfree(phba->fcf.fcf_rr_bmask);
4439
da0436e9
JS
4440 /* Free the ELS sgl list */
4441 lpfc_free_active_sgl(phba);
4442 lpfc_free_sgl_list(phba);
4443
4444 /* Free the SCSI sgl management array */
4445 kfree(phba->sli4_hba.lpfc_scsi_psb_array);
4446
4447 /* Free the SLI4 queues */
4448 lpfc_sli4_queue_destroy(phba);
4449
4450 /* Free the completion queue EQ event pool */
4451 lpfc_sli4_cq_event_release_all(phba);
4452 lpfc_sli4_cq_event_pool_destroy(phba);
4453
da0436e9
JS
4454 /* Free the bsmbx region. */
4455 lpfc_destroy_bootstrap_mbox(phba);
4456
4457 /* Free the SLI Layer memory with SLI4 HBAs */
4458 lpfc_mem_free_all(phba);
4459
4460 /* Free the current connect table */
4461 list_for_each_entry_safe(conn_entry, next_conn_entry,
4d9ab994
JS
4462 &phba->fcf_conn_rec_list, list) {
4463 list_del_init(&conn_entry->list);
da0436e9 4464 kfree(conn_entry);
4d9ab994 4465 }
da0436e9
JS
4466
4467 return;
4468}
4469
4470/**
4471 * lpfc_init_api_table_setup - Set up init api fucntion jump table
4472 * @phba: The hba struct for which this call is being executed.
4473 * @dev_grp: The HBA PCI-Device group number.
4474 *
4475 * This routine sets up the device INIT interface API function jump table
4476 * in @phba struct.
4477 *
4478 * Returns: 0 - success, -ENODEV - failure.
4479 **/
4480int
4481lpfc_init_api_table_setup(struct lpfc_hba *phba, uint8_t dev_grp)
4482{
84d1b006
JS
4483 phba->lpfc_hba_init_link = lpfc_hba_init_link;
4484 phba->lpfc_hba_down_link = lpfc_hba_down_link;
da0436e9
JS
4485 switch (dev_grp) {
4486 case LPFC_PCI_DEV_LP:
4487 phba->lpfc_hba_down_post = lpfc_hba_down_post_s3;
4488 phba->lpfc_handle_eratt = lpfc_handle_eratt_s3;
4489 phba->lpfc_stop_port = lpfc_stop_port_s3;
4490 break;
4491 case LPFC_PCI_DEV_OC:
4492 phba->lpfc_hba_down_post = lpfc_hba_down_post_s4;
4493 phba->lpfc_handle_eratt = lpfc_handle_eratt_s4;
4494 phba->lpfc_stop_port = lpfc_stop_port_s4;
4495 break;
4496 default:
4497 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
4498 "1431 Invalid HBA PCI-device group: 0x%x\n",
4499 dev_grp);
4500 return -ENODEV;
4501 break;
4502 }
4503 return 0;
4504}
4505
4506/**
4507 * lpfc_setup_driver_resource_phase1 - Phase1 etup driver internal resources.
4508 * @phba: pointer to lpfc hba data structure.
4509 *
4510 * This routine is invoked to set up the driver internal resources before the
4511 * device specific resource setup to support the HBA device it attached to.
4512 *
4513 * Return codes
af901ca1 4514 * 0 - successful
da0436e9
JS
4515 * other values - error
4516 **/
4517static int
4518lpfc_setup_driver_resource_phase1(struct lpfc_hba *phba)
4519{
4520 /*
4521 * Driver resources common to all SLI revisions
4522 */
4523 atomic_set(&phba->fast_event_count, 0);
4524 spin_lock_init(&phba->hbalock);
4525
4526 /* Initialize ndlp management spinlock */
4527 spin_lock_init(&phba->ndlp_lock);
4528
4529 INIT_LIST_HEAD(&phba->port_list);
4530 INIT_LIST_HEAD(&phba->work_list);
4531 init_waitqueue_head(&phba->wait_4_mlo_m_q);
4532
4533 /* Initialize the wait queue head for the kernel thread */
4534 init_waitqueue_head(&phba->work_waitq);
4535
4536 /* Initialize the scsi buffer list used by driver for scsi IO */
4537 spin_lock_init(&phba->scsi_buf_list_lock);
4538 INIT_LIST_HEAD(&phba->lpfc_scsi_buf_list);
4539
4540 /* Initialize the fabric iocb list */
4541 INIT_LIST_HEAD(&phba->fabric_iocb_list);
4542
4543 /* Initialize list to save ELS buffers */
4544 INIT_LIST_HEAD(&phba->elsbuf);
4545
4546 /* Initialize FCF connection rec list */
4547 INIT_LIST_HEAD(&phba->fcf_conn_rec_list);
4548
4549 return 0;
4550}
4551
4552/**
4553 * lpfc_setup_driver_resource_phase2 - Phase2 setup driver internal resources.
4554 * @phba: pointer to lpfc hba data structure.
4555 *
4556 * This routine is invoked to set up the driver internal resources after the
4557 * device specific resource setup to support the HBA device it attached to.
4558 *
4559 * Return codes
af901ca1 4560 * 0 - successful
da0436e9
JS
4561 * other values - error
4562 **/
4563static int
4564lpfc_setup_driver_resource_phase2(struct lpfc_hba *phba)
4565{
4566 int error;
4567
4568 /* Startup the kernel thread for this host adapter. */
4569 phba->worker_thread = kthread_run(lpfc_do_work, phba,
4570 "lpfc_worker_%d", phba->brd_no);
4571 if (IS_ERR(phba->worker_thread)) {
4572 error = PTR_ERR(phba->worker_thread);
4573 return error;
3772a991
JS
4574 }
4575
4576 return 0;
4577}
4578
4579/**
4580 * lpfc_unset_driver_resource_phase2 - Phase2 unset driver internal resources.
4581 * @phba: pointer to lpfc hba data structure.
4582 *
4583 * This routine is invoked to unset the driver internal resources set up after
4584 * the device specific resource setup for supporting the HBA device it
4585 * attached to.
4586 **/
4587static void
4588lpfc_unset_driver_resource_phase2(struct lpfc_hba *phba)
4589{
4590 /* Stop kernel worker thread */
4591 kthread_stop(phba->worker_thread);
4592}
4593
4594/**
4595 * lpfc_free_iocb_list - Free iocb list.
4596 * @phba: pointer to lpfc hba data structure.
4597 *
4598 * This routine is invoked to free the driver's IOCB list and memory.
4599 **/
4600static void
4601lpfc_free_iocb_list(struct lpfc_hba *phba)
4602{
4603 struct lpfc_iocbq *iocbq_entry = NULL, *iocbq_next = NULL;
4604
4605 spin_lock_irq(&phba->hbalock);
4606 list_for_each_entry_safe(iocbq_entry, iocbq_next,
4607 &phba->lpfc_iocb_list, list) {
4608 list_del(&iocbq_entry->list);
4609 kfree(iocbq_entry);
4610 phba->total_iocbq_bufs--;
98c9ea5c 4611 }
3772a991
JS
4612 spin_unlock_irq(&phba->hbalock);
4613
4614 return;
4615}
4616
4617/**
4618 * lpfc_init_iocb_list - Allocate and initialize iocb list.
4619 * @phba: pointer to lpfc hba data structure.
4620 *
4621 * This routine is invoked to allocate and initizlize the driver's IOCB
4622 * list and set up the IOCB tag array accordingly.
4623 *
4624 * Return codes
af901ca1 4625 * 0 - successful
3772a991
JS
4626 * other values - error
4627 **/
4628static int
4629lpfc_init_iocb_list(struct lpfc_hba *phba, int iocb_count)
4630{
4631 struct lpfc_iocbq *iocbq_entry = NULL;
4632 uint16_t iotag;
4633 int i;
dea3101e
JB
4634
4635 /* Initialize and populate the iocb list per host. */
4636 INIT_LIST_HEAD(&phba->lpfc_iocb_list);
3772a991 4637 for (i = 0; i < iocb_count; i++) {
dd00cc48 4638 iocbq_entry = kzalloc(sizeof(struct lpfc_iocbq), GFP_KERNEL);
dea3101e
JB
4639 if (iocbq_entry == NULL) {
4640 printk(KERN_ERR "%s: only allocated %d iocbs of "
4641 "expected %d count. Unloading driver.\n",
cadbd4a5 4642 __func__, i, LPFC_IOCB_LIST_CNT);
dea3101e
JB
4643 goto out_free_iocbq;
4644 }
4645
604a3e30
JB
4646 iotag = lpfc_sli_next_iotag(phba, iocbq_entry);
4647 if (iotag == 0) {
3772a991 4648 kfree(iocbq_entry);
604a3e30 4649 printk(KERN_ERR "%s: failed to allocate IOTAG. "
3772a991 4650 "Unloading driver.\n", __func__);
604a3e30
JB
4651 goto out_free_iocbq;
4652 }
3772a991 4653 iocbq_entry->sli4_xritag = NO_XRI;
2e0fef85
JS
4654
4655 spin_lock_irq(&phba->hbalock);
dea3101e
JB
4656 list_add(&iocbq_entry->list, &phba->lpfc_iocb_list);
4657 phba->total_iocbq_bufs++;
2e0fef85 4658 spin_unlock_irq(&phba->hbalock);
dea3101e
JB
4659 }
4660
3772a991 4661 return 0;
dea3101e 4662
3772a991
JS
4663out_free_iocbq:
4664 lpfc_free_iocb_list(phba);
dea3101e 4665
3772a991
JS
4666 return -ENOMEM;
4667}
5e9d9b82 4668
3772a991 4669/**
da0436e9
JS
4670 * lpfc_free_sgl_list - Free sgl list.
4671 * @phba: pointer to lpfc hba data structure.
3772a991 4672 *
da0436e9 4673 * This routine is invoked to free the driver's sgl list and memory.
3772a991 4674 **/
da0436e9
JS
4675static void
4676lpfc_free_sgl_list(struct lpfc_hba *phba)
3772a991 4677{
da0436e9
JS
4678 struct lpfc_sglq *sglq_entry = NULL, *sglq_next = NULL;
4679 LIST_HEAD(sglq_list);
dea3101e 4680
da0436e9
JS
4681 spin_lock_irq(&phba->hbalock);
4682 list_splice_init(&phba->sli4_hba.lpfc_sgl_list, &sglq_list);
4683 spin_unlock_irq(&phba->hbalock);
dea3101e 4684
da0436e9
JS
4685 list_for_each_entry_safe(sglq_entry, sglq_next,
4686 &sglq_list, list) {
4687 list_del(&sglq_entry->list);
4688 lpfc_mbuf_free(phba, sglq_entry->virt, sglq_entry->phys);
4689 kfree(sglq_entry);
4690 phba->sli4_hba.total_sglq_bufs--;
4691 }
da0436e9
JS
4692 kfree(phba->sli4_hba.lpfc_els_sgl_array);
4693}
92d7f7b0 4694
da0436e9
JS
4695/**
4696 * lpfc_init_active_sgl_array - Allocate the buf to track active ELS XRIs.
4697 * @phba: pointer to lpfc hba data structure.
4698 *
4699 * This routine is invoked to allocate the driver's active sgl memory.
4700 * This array will hold the sglq_entry's for active IOs.
4701 **/
4702static int
4703lpfc_init_active_sgl_array(struct lpfc_hba *phba)
4704{
4705 int size;
4706 size = sizeof(struct lpfc_sglq *);
4707 size *= phba->sli4_hba.max_cfg_param.max_xri;
4708
4709 phba->sli4_hba.lpfc_sglq_active_list =
4710 kzalloc(size, GFP_KERNEL);
4711 if (!phba->sli4_hba.lpfc_sglq_active_list)
4712 return -ENOMEM;
4713 return 0;
3772a991
JS
4714}
4715
4716/**
da0436e9 4717 * lpfc_free_active_sgl - Free the buf that tracks active ELS XRIs.
3772a991
JS
4718 * @phba: pointer to lpfc hba data structure.
4719 *
da0436e9
JS
4720 * This routine is invoked to walk through the array of active sglq entries
4721 * and free all of the resources.
4722 * This is just a place holder for now.
3772a991
JS
4723 **/
4724static void
da0436e9 4725lpfc_free_active_sgl(struct lpfc_hba *phba)
3772a991 4726{
da0436e9 4727 kfree(phba->sli4_hba.lpfc_sglq_active_list);
3772a991
JS
4728}
4729
4730/**
da0436e9 4731 * lpfc_init_sgl_list - Allocate and initialize sgl list.
3772a991
JS
4732 * @phba: pointer to lpfc hba data structure.
4733 *
da0436e9
JS
4734 * This routine is invoked to allocate and initizlize the driver's sgl
4735 * list and set up the sgl xritag tag array accordingly.
3772a991
JS
4736 *
4737 * Return codes
af901ca1 4738 * 0 - successful
da0436e9 4739 * other values - error
3772a991
JS
4740 **/
4741static int
da0436e9 4742lpfc_init_sgl_list(struct lpfc_hba *phba)
3772a991 4743{
da0436e9
JS
4744 struct lpfc_sglq *sglq_entry = NULL;
4745 int i;
4746 int els_xri_cnt;
4747
4748 els_xri_cnt = lpfc_sli4_get_els_iocb_cnt(phba);
4749 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
4750 "2400 lpfc_init_sgl_list els %d.\n",
4751 els_xri_cnt);
4752 /* Initialize and populate the sglq list per host/VF. */
4753 INIT_LIST_HEAD(&phba->sli4_hba.lpfc_sgl_list);
4754 INIT_LIST_HEAD(&phba->sli4_hba.lpfc_abts_els_sgl_list);
4755
4756 /* Sanity check on XRI management */
4757 if (phba->sli4_hba.max_cfg_param.max_xri <= els_xri_cnt) {
4758 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
4759 "2562 No room left for SCSI XRI allocation: "
4760 "max_xri=%d, els_xri=%d\n",
4761 phba->sli4_hba.max_cfg_param.max_xri,
4762 els_xri_cnt);
4763 return -ENOMEM;
4764 }
3772a991 4765
da0436e9
JS
4766 /* Allocate memory for the ELS XRI management array */
4767 phba->sli4_hba.lpfc_els_sgl_array =
4768 kzalloc((sizeof(struct lpfc_sglq *) * els_xri_cnt),
4769 GFP_KERNEL);
0ff10d46 4770
da0436e9
JS
4771 if (!phba->sli4_hba.lpfc_els_sgl_array) {
4772 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
4773 "2401 Failed to allocate memory for ELS "
4774 "XRI management array of size %d.\n",
4775 els_xri_cnt);
4776 return -ENOMEM;
4777 }
2e0fef85 4778
da0436e9
JS
4779 /* Keep the SCSI XRI into the XRI management array */
4780 phba->sli4_hba.scsi_xri_max =
4781 phba->sli4_hba.max_cfg_param.max_xri - els_xri_cnt;
4782 phba->sli4_hba.scsi_xri_cnt = 0;
4783
4784 phba->sli4_hba.lpfc_scsi_psb_array =
4785 kzalloc((sizeof(struct lpfc_scsi_buf *) *
4786 phba->sli4_hba.scsi_xri_max), GFP_KERNEL);
4787
4788 if (!phba->sli4_hba.lpfc_scsi_psb_array) {
4789 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
4790 "2563 Failed to allocate memory for SCSI "
4791 "XRI management array of size %d.\n",
4792 phba->sli4_hba.scsi_xri_max);
4793 kfree(phba->sli4_hba.lpfc_els_sgl_array);
4794 return -ENOMEM;
4795 }
4796
4797 for (i = 0; i < els_xri_cnt; i++) {
4798 sglq_entry = kzalloc(sizeof(struct lpfc_sglq), GFP_KERNEL);
4799 if (sglq_entry == NULL) {
4800 printk(KERN_ERR "%s: only allocated %d sgls of "
4801 "expected %d count. Unloading driver.\n",
4802 __func__, i, els_xri_cnt);
4803 goto out_free_mem;
4804 }
4805
4806 sglq_entry->sli4_xritag = lpfc_sli4_next_xritag(phba);
4807 if (sglq_entry->sli4_xritag == NO_XRI) {
4808 kfree(sglq_entry);
4809 printk(KERN_ERR "%s: failed to allocate XRI.\n"
4810 "Unloading driver.\n", __func__);
4811 goto out_free_mem;
4812 }
4813 sglq_entry->buff_type = GEN_BUFF_TYPE;
4814 sglq_entry->virt = lpfc_mbuf_alloc(phba, 0, &sglq_entry->phys);
4815 if (sglq_entry->virt == NULL) {
4816 kfree(sglq_entry);
4817 printk(KERN_ERR "%s: failed to allocate mbuf.\n"
4818 "Unloading driver.\n", __func__);
4819 goto out_free_mem;
4820 }
4821 sglq_entry->sgl = sglq_entry->virt;
4822 memset(sglq_entry->sgl, 0, LPFC_BPL_SIZE);
4823
4824 /* The list order is used by later block SGL registraton */
4825 spin_lock_irq(&phba->hbalock);
0f65ff68 4826 sglq_entry->state = SGL_FREED;
da0436e9
JS
4827 list_add_tail(&sglq_entry->list, &phba->sli4_hba.lpfc_sgl_list);
4828 phba->sli4_hba.lpfc_els_sgl_array[i] = sglq_entry;
4829 phba->sli4_hba.total_sglq_bufs++;
4830 spin_unlock_irq(&phba->hbalock);
4831 }
4832 return 0;
4833
4834out_free_mem:
4835 kfree(phba->sli4_hba.lpfc_scsi_psb_array);
4836 lpfc_free_sgl_list(phba);
4837 return -ENOMEM;
4838}
4839
4840/**
4841 * lpfc_sli4_init_rpi_hdrs - Post the rpi header memory region to the port
4842 * @phba: pointer to lpfc hba data structure.
4843 *
4844 * This routine is invoked to post rpi header templates to the
4845 * HBA consistent with the SLI-4 interface spec. This routine
4846 * posts a PAGE_SIZE memory region to the port to hold up to
4847 * PAGE_SIZE modulo 64 rpi context headers.
4848 * No locks are held here because this is an initialization routine
4849 * called only from probe or lpfc_online when interrupts are not
4850 * enabled and the driver is reinitializing the device.
4851 *
4852 * Return codes
af901ca1 4853 * 0 - successful
d439d286
JS
4854 * -ENOMEM - No availble memory
4855 * -EIO - The mailbox failed to complete successfully.
da0436e9
JS
4856 **/
4857int
4858lpfc_sli4_init_rpi_hdrs(struct lpfc_hba *phba)
4859{
4860 int rc = 0;
4861 int longs;
4862 uint16_t rpi_count;
4863 struct lpfc_rpi_hdr *rpi_hdr;
4864
4865 INIT_LIST_HEAD(&phba->sli4_hba.lpfc_rpi_hdr_list);
4866
4867 /*
4868 * Provision an rpi bitmask range for discovery. The total count
4869 * is the difference between max and base + 1.
4870 */
4871 rpi_count = phba->sli4_hba.max_cfg_param.rpi_base +
4872 phba->sli4_hba.max_cfg_param.max_rpi - 1;
4873
4874 longs = ((rpi_count) + BITS_PER_LONG - 1) / BITS_PER_LONG;
4875 phba->sli4_hba.rpi_bmask = kzalloc(longs * sizeof(unsigned long),
4876 GFP_KERNEL);
4877 if (!phba->sli4_hba.rpi_bmask)
4878 return -ENOMEM;
4879
4880 rpi_hdr = lpfc_sli4_create_rpi_hdr(phba);
4881 if (!rpi_hdr) {
4882 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
4883 "0391 Error during rpi post operation\n");
4884 lpfc_sli4_remove_rpis(phba);
4885 rc = -ENODEV;
4886 }
4887
4888 return rc;
4889}
4890
4891/**
4892 * lpfc_sli4_create_rpi_hdr - Allocate an rpi header memory region
4893 * @phba: pointer to lpfc hba data structure.
4894 *
4895 * This routine is invoked to allocate a single 4KB memory region to
4896 * support rpis and stores them in the phba. This single region
4897 * provides support for up to 64 rpis. The region is used globally
4898 * by the device.
4899 *
4900 * Returns:
4901 * A valid rpi hdr on success.
4902 * A NULL pointer on any failure.
4903 **/
4904struct lpfc_rpi_hdr *
4905lpfc_sli4_create_rpi_hdr(struct lpfc_hba *phba)
4906{
4907 uint16_t rpi_limit, curr_rpi_range;
4908 struct lpfc_dmabuf *dmabuf;
4909 struct lpfc_rpi_hdr *rpi_hdr;
4910
4911 rpi_limit = phba->sli4_hba.max_cfg_param.rpi_base +
4912 phba->sli4_hba.max_cfg_param.max_rpi - 1;
4913
4914 spin_lock_irq(&phba->hbalock);
4915 curr_rpi_range = phba->sli4_hba.next_rpi;
4916 spin_unlock_irq(&phba->hbalock);
4917
4918 /*
4919 * The port has a limited number of rpis. The increment here
4920 * is LPFC_RPI_HDR_COUNT - 1 to account for the starting value
4921 * and to allow the full max_rpi range per port.
4922 */
4923 if ((curr_rpi_range + (LPFC_RPI_HDR_COUNT - 1)) > rpi_limit)
4924 return NULL;
4925
4926 /*
4927 * First allocate the protocol header region for the port. The
4928 * port expects a 4KB DMA-mapped memory region that is 4K aligned.
4929 */
4930 dmabuf = kzalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
4931 if (!dmabuf)
4932 return NULL;
4933
4934 dmabuf->virt = dma_alloc_coherent(&phba->pcidev->dev,
4935 LPFC_HDR_TEMPLATE_SIZE,
4936 &dmabuf->phys,
4937 GFP_KERNEL);
4938 if (!dmabuf->virt) {
4939 rpi_hdr = NULL;
4940 goto err_free_dmabuf;
4941 }
4942
4943 memset(dmabuf->virt, 0, LPFC_HDR_TEMPLATE_SIZE);
4944 if (!IS_ALIGNED(dmabuf->phys, LPFC_HDR_TEMPLATE_SIZE)) {
4945 rpi_hdr = NULL;
4946 goto err_free_coherent;
4947 }
4948
4949 /* Save the rpi header data for cleanup later. */
4950 rpi_hdr = kzalloc(sizeof(struct lpfc_rpi_hdr), GFP_KERNEL);
4951 if (!rpi_hdr)
4952 goto err_free_coherent;
4953
4954 rpi_hdr->dmabuf = dmabuf;
4955 rpi_hdr->len = LPFC_HDR_TEMPLATE_SIZE;
4956 rpi_hdr->page_count = 1;
4957 spin_lock_irq(&phba->hbalock);
4958 rpi_hdr->start_rpi = phba->sli4_hba.next_rpi;
4959 list_add_tail(&rpi_hdr->list, &phba->sli4_hba.lpfc_rpi_hdr_list);
4960
4961 /*
4962 * The next_rpi stores the next module-64 rpi value to post
4963 * in any subsequent rpi memory region postings.
4964 */
4965 phba->sli4_hba.next_rpi += LPFC_RPI_HDR_COUNT;
4966 spin_unlock_irq(&phba->hbalock);
4967 return rpi_hdr;
4968
4969 err_free_coherent:
4970 dma_free_coherent(&phba->pcidev->dev, LPFC_HDR_TEMPLATE_SIZE,
4971 dmabuf->virt, dmabuf->phys);
4972 err_free_dmabuf:
4973 kfree(dmabuf);
4974 return NULL;
4975}
4976
4977/**
4978 * lpfc_sli4_remove_rpi_hdrs - Remove all rpi header memory regions
4979 * @phba: pointer to lpfc hba data structure.
4980 *
4981 * This routine is invoked to remove all memory resources allocated
4982 * to support rpis. This routine presumes the caller has released all
4983 * rpis consumed by fabric or port logins and is prepared to have
4984 * the header pages removed.
4985 **/
4986void
4987lpfc_sli4_remove_rpi_hdrs(struct lpfc_hba *phba)
4988{
4989 struct lpfc_rpi_hdr *rpi_hdr, *next_rpi_hdr;
4990
4991 list_for_each_entry_safe(rpi_hdr, next_rpi_hdr,
4992 &phba->sli4_hba.lpfc_rpi_hdr_list, list) {
4993 list_del(&rpi_hdr->list);
4994 dma_free_coherent(&phba->pcidev->dev, rpi_hdr->len,
4995 rpi_hdr->dmabuf->virt, rpi_hdr->dmabuf->phys);
4996 kfree(rpi_hdr->dmabuf);
4997 kfree(rpi_hdr);
4998 }
4999
5000 phba->sli4_hba.next_rpi = phba->sli4_hba.max_cfg_param.rpi_base;
5001 memset(phba->sli4_hba.rpi_bmask, 0, sizeof(*phba->sli4_hba.rpi_bmask));
5002}
5003
5004/**
5005 * lpfc_hba_alloc - Allocate driver hba data structure for a device.
5006 * @pdev: pointer to pci device data structure.
5007 *
5008 * This routine is invoked to allocate the driver hba data structure for an
5009 * HBA device. If the allocation is successful, the phba reference to the
5010 * PCI device data structure is set.
5011 *
5012 * Return codes
af901ca1 5013 * pointer to @phba - successful
da0436e9
JS
5014 * NULL - error
5015 **/
5016static struct lpfc_hba *
5017lpfc_hba_alloc(struct pci_dev *pdev)
5018{
5019 struct lpfc_hba *phba;
5020
5021 /* Allocate memory for HBA structure */
5022 phba = kzalloc(sizeof(struct lpfc_hba), GFP_KERNEL);
5023 if (!phba) {
e34ccdfe 5024 dev_err(&pdev->dev, "failed to allocate hba struct\n");
da0436e9
JS
5025 return NULL;
5026 }
5027
5028 /* Set reference to PCI device in HBA structure */
5029 phba->pcidev = pdev;
5030
5031 /* Assign an unused board number */
5032 phba->brd_no = lpfc_get_instance();
5033 if (phba->brd_no < 0) {
5034 kfree(phba);
5035 return NULL;
5036 }
5037
4fede78f 5038 spin_lock_init(&phba->ct_ev_lock);
f1c3b0fc
JS
5039 INIT_LIST_HEAD(&phba->ct_ev_waiters);
5040
da0436e9
JS
5041 return phba;
5042}
5043
5044/**
5045 * lpfc_hba_free - Free driver hba data structure with a device.
5046 * @phba: pointer to lpfc hba data structure.
5047 *
5048 * This routine is invoked to free the driver hba data structure with an
5049 * HBA device.
5050 **/
5051static void
5052lpfc_hba_free(struct lpfc_hba *phba)
5053{
5054 /* Release the driver assigned board number */
5055 idr_remove(&lpfc_hba_index, phba->brd_no);
5056
5057 kfree(phba);
5058 return;
5059}
5060
5061/**
5062 * lpfc_create_shost - Create hba physical port with associated scsi host.
5063 * @phba: pointer to lpfc hba data structure.
5064 *
5065 * This routine is invoked to create HBA physical port and associate a SCSI
5066 * host with it.
5067 *
5068 * Return codes
af901ca1 5069 * 0 - successful
da0436e9
JS
5070 * other values - error
5071 **/
5072static int
5073lpfc_create_shost(struct lpfc_hba *phba)
5074{
5075 struct lpfc_vport *vport;
5076 struct Scsi_Host *shost;
5077
5078 /* Initialize HBA FC structure */
5079 phba->fc_edtov = FF_DEF_EDTOV;
5080 phba->fc_ratov = FF_DEF_RATOV;
5081 phba->fc_altov = FF_DEF_ALTOV;
5082 phba->fc_arbtov = FF_DEF_ARBTOV;
5083
d7c47992 5084 atomic_set(&phba->sdev_cnt, 0);
da0436e9
JS
5085 vport = lpfc_create_port(phba, phba->brd_no, &phba->pcidev->dev);
5086 if (!vport)
5087 return -ENODEV;
5088
5089 shost = lpfc_shost_from_vport(vport);
5090 phba->pport = vport;
5091 lpfc_debugfs_initialize(vport);
5092 /* Put reference to SCSI host to driver's device private data */
5093 pci_set_drvdata(phba->pcidev, shost);
2e0fef85 5094
3772a991
JS
5095 return 0;
5096}
db2378e0 5097
3772a991
JS
5098/**
5099 * lpfc_destroy_shost - Destroy hba physical port with associated scsi host.
5100 * @phba: pointer to lpfc hba data structure.
5101 *
5102 * This routine is invoked to destroy HBA physical port and the associated
5103 * SCSI host.
5104 **/
5105static void
5106lpfc_destroy_shost(struct lpfc_hba *phba)
5107{
5108 struct lpfc_vport *vport = phba->pport;
5109
5110 /* Destroy physical port that associated with the SCSI host */
5111 destroy_port(vport);
5112
5113 return;
5114}
5115
5116/**
5117 * lpfc_setup_bg - Setup Block guard structures and debug areas.
5118 * @phba: pointer to lpfc hba data structure.
5119 * @shost: the shost to be used to detect Block guard settings.
5120 *
5121 * This routine sets up the local Block guard protocol settings for @shost.
5122 * This routine also allocates memory for debugging bg buffers.
5123 **/
5124static void
5125lpfc_setup_bg(struct lpfc_hba *phba, struct Scsi_Host *shost)
5126{
5127 int pagecnt = 10;
5128 if (lpfc_prot_mask && lpfc_prot_guard) {
5129 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
5130 "1478 Registering BlockGuard with the "
5131 "SCSI layer\n");
5132 scsi_host_set_prot(shost, lpfc_prot_mask);
5133 scsi_host_set_guard(shost, lpfc_prot_guard);
5134 }
5135 if (!_dump_buf_data) {
5136 while (pagecnt) {
5137 spin_lock_init(&_dump_buf_lock);
5138 _dump_buf_data =
5139 (char *) __get_free_pages(GFP_KERNEL, pagecnt);
5140 if (_dump_buf_data) {
6a9c52cf
JS
5141 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
5142 "9043 BLKGRD: allocated %d pages for "
3772a991
JS
5143 "_dump_buf_data at 0x%p\n",
5144 (1 << pagecnt), _dump_buf_data);
5145 _dump_buf_data_order = pagecnt;
5146 memset(_dump_buf_data, 0,
5147 ((1 << PAGE_SHIFT) << pagecnt));
5148 break;
5149 } else
5150 --pagecnt;
5151 }
5152 if (!_dump_buf_data_order)
6a9c52cf
JS
5153 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
5154 "9044 BLKGRD: ERROR unable to allocate "
3772a991
JS
5155 "memory for hexdump\n");
5156 } else
6a9c52cf
JS
5157 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
5158 "9045 BLKGRD: already allocated _dump_buf_data=0x%p"
3772a991
JS
5159 "\n", _dump_buf_data);
5160 if (!_dump_buf_dif) {
5161 while (pagecnt) {
5162 _dump_buf_dif =
5163 (char *) __get_free_pages(GFP_KERNEL, pagecnt);
5164 if (_dump_buf_dif) {
6a9c52cf
JS
5165 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
5166 "9046 BLKGRD: allocated %d pages for "
3772a991
JS
5167 "_dump_buf_dif at 0x%p\n",
5168 (1 << pagecnt), _dump_buf_dif);
5169 _dump_buf_dif_order = pagecnt;
5170 memset(_dump_buf_dif, 0,
5171 ((1 << PAGE_SHIFT) << pagecnt));
5172 break;
5173 } else
5174 --pagecnt;
5175 }
5176 if (!_dump_buf_dif_order)
6a9c52cf
JS
5177 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
5178 "9047 BLKGRD: ERROR unable to allocate "
3772a991
JS
5179 "memory for hexdump\n");
5180 } else
6a9c52cf
JS
5181 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
5182 "9048 BLKGRD: already allocated _dump_buf_dif=0x%p\n",
3772a991
JS
5183 _dump_buf_dif);
5184}
5185
5186/**
5187 * lpfc_post_init_setup - Perform necessary device post initialization setup.
5188 * @phba: pointer to lpfc hba data structure.
5189 *
5190 * This routine is invoked to perform all the necessary post initialization
5191 * setup for the device.
5192 **/
5193static void
5194lpfc_post_init_setup(struct lpfc_hba *phba)
5195{
5196 struct Scsi_Host *shost;
5197 struct lpfc_adapter_event_header adapter_event;
5198
5199 /* Get the default values for Model Name and Description */
5200 lpfc_get_hba_model_desc(phba, phba->ModelName, phba->ModelDesc);
5201
5202 /*
5203 * hba setup may have changed the hba_queue_depth so we need to
5204 * adjust the value of can_queue.
5205 */
5206 shost = pci_get_drvdata(phba->pcidev);
5207 shost->can_queue = phba->cfg_hba_queue_depth - 10;
5208 if (phba->sli3_options & LPFC_SLI3_BG_ENABLED)
5209 lpfc_setup_bg(phba, shost);
5210
5211 lpfc_host_attrib_init(shost);
5212
5213 if (phba->cfg_poll & DISABLE_FCP_RING_INT) {
5214 spin_lock_irq(shost->host_lock);
5215 lpfc_poll_start_timer(phba);
5216 spin_unlock_irq(shost->host_lock);
5217 }
5218
5219 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
5220 "0428 Perform SCSI scan\n");
5221 /* Send board arrival event to upper layer */
5222 adapter_event.event_type = FC_REG_ADAPTER_EVENT;
5223 adapter_event.subcategory = LPFC_EVENT_ARRIVAL;
5224 fc_host_post_vendor_event(shost, fc_get_event_number(),
5225 sizeof(adapter_event),
5226 (char *) &adapter_event,
5227 LPFC_NL_VENDOR_ID);
5228 return;
5229}
5230
5231/**
5232 * lpfc_sli_pci_mem_setup - Setup SLI3 HBA PCI memory space.
5233 * @phba: pointer to lpfc hba data structure.
5234 *
5235 * This routine is invoked to set up the PCI device memory space for device
5236 * with SLI-3 interface spec.
5237 *
5238 * Return codes
af901ca1 5239 * 0 - successful
3772a991
JS
5240 * other values - error
5241 **/
5242static int
5243lpfc_sli_pci_mem_setup(struct lpfc_hba *phba)
5244{
5245 struct pci_dev *pdev;
5246 unsigned long bar0map_len, bar2map_len;
5247 int i, hbq_count;
5248 void *ptr;
5249 int error = -ENODEV;
5250
5251 /* Obtain PCI device reference */
5252 if (!phba->pcidev)
5253 return error;
5254 else
5255 pdev = phba->pcidev;
5256
5257 /* Set the device DMA mask size */
8e68597d
MR
5258 if (pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) != 0
5259 || pci_set_consistent_dma_mask(pdev,DMA_BIT_MASK(64)) != 0) {
5260 if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32)) != 0
5261 || pci_set_consistent_dma_mask(pdev,DMA_BIT_MASK(32)) != 0) {
3772a991 5262 return error;
8e68597d
MR
5263 }
5264 }
3772a991
JS
5265
5266 /* Get the bus address of Bar0 and Bar2 and the number of bytes
5267 * required by each mapping.
5268 */
5269 phba->pci_bar0_map = pci_resource_start(pdev, 0);
5270 bar0map_len = pci_resource_len(pdev, 0);
5271
5272 phba->pci_bar2_map = pci_resource_start(pdev, 2);
5273 bar2map_len = pci_resource_len(pdev, 2);
5274
5275 /* Map HBA SLIM to a kernel virtual address. */
5276 phba->slim_memmap_p = ioremap(phba->pci_bar0_map, bar0map_len);
5277 if (!phba->slim_memmap_p) {
5278 dev_printk(KERN_ERR, &pdev->dev,
5279 "ioremap failed for SLIM memory.\n");
5280 goto out;
5281 }
5282
5283 /* Map HBA Control Registers to a kernel virtual address. */
5284 phba->ctrl_regs_memmap_p = ioremap(phba->pci_bar2_map, bar2map_len);
5285 if (!phba->ctrl_regs_memmap_p) {
5286 dev_printk(KERN_ERR, &pdev->dev,
5287 "ioremap failed for HBA control registers.\n");
5288 goto out_iounmap_slim;
5289 }
5290
5291 /* Allocate memory for SLI-2 structures */
5292 phba->slim2p.virt = dma_alloc_coherent(&pdev->dev,
5293 SLI2_SLIM_SIZE,
5294 &phba->slim2p.phys,
5295 GFP_KERNEL);
5296 if (!phba->slim2p.virt)
5297 goto out_iounmap;
5298
5299 memset(phba->slim2p.virt, 0, SLI2_SLIM_SIZE);
5300 phba->mbox = phba->slim2p.virt + offsetof(struct lpfc_sli2_slim, mbx);
7a470277
JS
5301 phba->mbox_ext = (phba->slim2p.virt +
5302 offsetof(struct lpfc_sli2_slim, mbx_ext_words));
3772a991
JS
5303 phba->pcb = (phba->slim2p.virt + offsetof(struct lpfc_sli2_slim, pcb));
5304 phba->IOCBs = (phba->slim2p.virt +
5305 offsetof(struct lpfc_sli2_slim, IOCBs));
5306
5307 phba->hbqslimp.virt = dma_alloc_coherent(&pdev->dev,
5308 lpfc_sli_hbq_size(),
5309 &phba->hbqslimp.phys,
5310 GFP_KERNEL);
5311 if (!phba->hbqslimp.virt)
5312 goto out_free_slim;
5313
5314 hbq_count = lpfc_sli_hbq_count();
5315 ptr = phba->hbqslimp.virt;
5316 for (i = 0; i < hbq_count; ++i) {
5317 phba->hbqs[i].hbq_virt = ptr;
5318 INIT_LIST_HEAD(&phba->hbqs[i].hbq_buffer_list);
5319 ptr += (lpfc_hbq_defs[i]->entry_count *
5320 sizeof(struct lpfc_hbq_entry));
5321 }
5322 phba->hbqs[LPFC_ELS_HBQ].hbq_alloc_buffer = lpfc_els_hbq_alloc;
5323 phba->hbqs[LPFC_ELS_HBQ].hbq_free_buffer = lpfc_els_hbq_free;
5324
5325 memset(phba->hbqslimp.virt, 0, lpfc_sli_hbq_size());
5326
5327 INIT_LIST_HEAD(&phba->rb_pend_list);
5328
5329 phba->MBslimaddr = phba->slim_memmap_p;
5330 phba->HAregaddr = phba->ctrl_regs_memmap_p + HA_REG_OFFSET;
5331 phba->CAregaddr = phba->ctrl_regs_memmap_p + CA_REG_OFFSET;
5332 phba->HSregaddr = phba->ctrl_regs_memmap_p + HS_REG_OFFSET;
5333 phba->HCregaddr = phba->ctrl_regs_memmap_p + HC_REG_OFFSET;
5334
5335 return 0;
5336
5337out_free_slim:
5338 dma_free_coherent(&pdev->dev, SLI2_SLIM_SIZE,
5339 phba->slim2p.virt, phba->slim2p.phys);
5340out_iounmap:
5341 iounmap(phba->ctrl_regs_memmap_p);
5342out_iounmap_slim:
5343 iounmap(phba->slim_memmap_p);
5344out:
5345 return error;
5346}
5347
5348/**
5349 * lpfc_sli_pci_mem_unset - Unset SLI3 HBA PCI memory space.
5350 * @phba: pointer to lpfc hba data structure.
5351 *
5352 * This routine is invoked to unset the PCI device memory space for device
5353 * with SLI-3 interface spec.
5354 **/
5355static void
5356lpfc_sli_pci_mem_unset(struct lpfc_hba *phba)
5357{
5358 struct pci_dev *pdev;
5359
5360 /* Obtain PCI device reference */
5361 if (!phba->pcidev)
5362 return;
5363 else
5364 pdev = phba->pcidev;
5365
5366 /* Free coherent DMA memory allocated */
5367 dma_free_coherent(&pdev->dev, lpfc_sli_hbq_size(),
5368 phba->hbqslimp.virt, phba->hbqslimp.phys);
5369 dma_free_coherent(&pdev->dev, SLI2_SLIM_SIZE,
5370 phba->slim2p.virt, phba->slim2p.phys);
5371
5372 /* I/O memory unmap */
5373 iounmap(phba->ctrl_regs_memmap_p);
5374 iounmap(phba->slim_memmap_p);
5375
5376 return;
5377}
5378
5379/**
da0436e9 5380 * lpfc_sli4_post_status_check - Wait for SLI4 POST done and check status
3772a991
JS
5381 * @phba: pointer to lpfc hba data structure.
5382 *
da0436e9
JS
5383 * This routine is invoked to wait for SLI4 device Power On Self Test (POST)
5384 * done and check status.
3772a991 5385 *
da0436e9 5386 * Return 0 if successful, otherwise -ENODEV.
3772a991 5387 **/
da0436e9
JS
5388int
5389lpfc_sli4_post_status_check(struct lpfc_hba *phba)
3772a991 5390{
28baac74 5391 struct lpfc_register sta_reg, uerrlo_reg, uerrhi_reg;
da0436e9 5392 int i, port_error = -ENODEV;
3772a991 5393
da0436e9
JS
5394 if (!phba->sli4_hba.STAregaddr)
5395 return -ENODEV;
3772a991 5396
da0436e9
JS
5397 /* Wait up to 30 seconds for the SLI Port POST done and ready */
5398 for (i = 0; i < 3000; i++) {
5399 sta_reg.word0 = readl(phba->sli4_hba.STAregaddr);
5400 /* Encounter fatal POST error, break out */
5401 if (bf_get(lpfc_hst_state_perr, &sta_reg)) {
5402 port_error = -ENODEV;
5403 break;
5404 }
5405 if (LPFC_POST_STAGE_ARMFW_READY ==
5406 bf_get(lpfc_hst_state_port_status, &sta_reg)) {
5407 port_error = 0;
5408 break;
5409 }
5410 msleep(10);
3772a991
JS
5411 }
5412
da0436e9
JS
5413 if (port_error)
5414 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5415 "1408 Failure HBA POST Status: sta_reg=0x%x, "
5416 "perr=x%x, sfi=x%x, nip=x%x, ipc=x%x, xrom=x%x, "
5417 "dl=x%x, pstatus=x%x\n", sta_reg.word0,
5418 bf_get(lpfc_hst_state_perr, &sta_reg),
5419 bf_get(lpfc_hst_state_sfi, &sta_reg),
5420 bf_get(lpfc_hst_state_nip, &sta_reg),
5421 bf_get(lpfc_hst_state_ipc, &sta_reg),
5422 bf_get(lpfc_hst_state_xrom, &sta_reg),
5423 bf_get(lpfc_hst_state_dl, &sta_reg),
5424 bf_get(lpfc_hst_state_port_status, &sta_reg));
5425
5426 /* Log device information */
28baac74
JS
5427 phba->sli4_hba.sli_intf.word0 = readl(phba->sli4_hba.SLIINTFregaddr);
5428 if (bf_get(lpfc_sli_intf_valid,
5429 &phba->sli4_hba.sli_intf) == LPFC_SLI_INTF_VALID) {
5430 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
5431 "2534 Device Info: ChipType=0x%x, SliRev=0x%x, "
085c647c
JS
5432 "IFType=0x%x, SLIHint_1=0x%x, SLIHint_2=0x%x, "
5433 "FT=0x%x\n",
28baac74
JS
5434 bf_get(lpfc_sli_intf_sli_family,
5435 &phba->sli4_hba.sli_intf),
5436 bf_get(lpfc_sli_intf_slirev,
5437 &phba->sli4_hba.sli_intf),
085c647c
JS
5438 bf_get(lpfc_sli_intf_if_type,
5439 &phba->sli4_hba.sli_intf),
5440 bf_get(lpfc_sli_intf_sli_hint1,
28baac74 5441 &phba->sli4_hba.sli_intf),
085c647c
JS
5442 bf_get(lpfc_sli_intf_sli_hint2,
5443 &phba->sli4_hba.sli_intf),
5444 bf_get(lpfc_sli_intf_func_type,
28baac74
JS
5445 &phba->sli4_hba.sli_intf));
5446 }
085c647c 5447
a747c9ce
JS
5448 phba->sli4_hba.ue_mask_lo = readl(phba->sli4_hba.UEMASKLOregaddr);
5449 phba->sli4_hba.ue_mask_hi = readl(phba->sli4_hba.UEMASKHIregaddr);
8fa38513 5450 /* With uncoverable error, log the error message and return error */
a747c9ce
JS
5451 uerrlo_reg.word0 = readl(phba->sli4_hba.UERRLOregaddr);
5452 uerrhi_reg.word0 = readl(phba->sli4_hba.UERRHIregaddr);
5453 if ((~phba->sli4_hba.ue_mask_lo & uerrlo_reg.word0) ||
5454 (~phba->sli4_hba.ue_mask_hi & uerrhi_reg.word0)) {
5455 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5456 "1422 HBA Unrecoverable error: "
5457 "uerr_lo_reg=0x%x, uerr_hi_reg=0x%x, "
5458 "ue_mask_lo_reg=0x%x, ue_mask_hi_reg=0x%x\n",
5459 uerrlo_reg.word0, uerrhi_reg.word0,
5460 phba->sli4_hba.ue_mask_lo,
5461 phba->sli4_hba.ue_mask_hi);
8fa38513
JS
5462 return -ENODEV;
5463 }
5464
da0436e9
JS
5465 return port_error;
5466}
3772a991 5467
da0436e9
JS
5468/**
5469 * lpfc_sli4_bar0_register_memmap - Set up SLI4 BAR0 register memory map.
5470 * @phba: pointer to lpfc hba data structure.
5471 *
5472 * This routine is invoked to set up SLI4 BAR0 PCI config space register
5473 * memory map.
5474 **/
5475static void
5476lpfc_sli4_bar0_register_memmap(struct lpfc_hba *phba)
5477{
5478 phba->sli4_hba.UERRLOregaddr = phba->sli4_hba.conf_regs_memmap_p +
5479 LPFC_UERR_STATUS_LO;
5480 phba->sli4_hba.UERRHIregaddr = phba->sli4_hba.conf_regs_memmap_p +
5481 LPFC_UERR_STATUS_HI;
a747c9ce
JS
5482 phba->sli4_hba.UEMASKLOregaddr = phba->sli4_hba.conf_regs_memmap_p +
5483 LPFC_UE_MASK_LO;
5484 phba->sli4_hba.UEMASKHIregaddr = phba->sli4_hba.conf_regs_memmap_p +
5485 LPFC_UE_MASK_HI;
28baac74
JS
5486 phba->sli4_hba.SLIINTFregaddr = phba->sli4_hba.conf_regs_memmap_p +
5487 LPFC_SLI_INTF;
da0436e9 5488}
3772a991 5489
da0436e9
JS
5490/**
5491 * lpfc_sli4_bar1_register_memmap - Set up SLI4 BAR1 register memory map.
5492 * @phba: pointer to lpfc hba data structure.
5493 *
5494 * This routine is invoked to set up SLI4 BAR1 control status register (CSR)
5495 * memory map.
5496 **/
5497static void
5498lpfc_sli4_bar1_register_memmap(struct lpfc_hba *phba)
5499{
3772a991 5500
da0436e9
JS
5501 phba->sli4_hba.STAregaddr = phba->sli4_hba.ctrl_regs_memmap_p +
5502 LPFC_HST_STATE;
5503 phba->sli4_hba.ISRregaddr = phba->sli4_hba.ctrl_regs_memmap_p +
5504 LPFC_HST_ISR0;
5505 phba->sli4_hba.IMRregaddr = phba->sli4_hba.ctrl_regs_memmap_p +
5506 LPFC_HST_IMR0;
5507 phba->sli4_hba.ISCRregaddr = phba->sli4_hba.ctrl_regs_memmap_p +
5508 LPFC_HST_ISCR0;
5509 return;
3772a991
JS
5510}
5511
5512/**
da0436e9 5513 * lpfc_sli4_bar2_register_memmap - Set up SLI4 BAR2 register memory map.
3772a991 5514 * @phba: pointer to lpfc hba data structure.
da0436e9 5515 * @vf: virtual function number
3772a991 5516 *
da0436e9
JS
5517 * This routine is invoked to set up SLI4 BAR2 doorbell register memory map
5518 * based on the given viftual function number, @vf.
5519 *
5520 * Return 0 if successful, otherwise -ENODEV.
3772a991 5521 **/
da0436e9
JS
5522static int
5523lpfc_sli4_bar2_register_memmap(struct lpfc_hba *phba, uint32_t vf)
3772a991 5524{
da0436e9
JS
5525 if (vf > LPFC_VIR_FUNC_MAX)
5526 return -ENODEV;
3772a991 5527
da0436e9
JS
5528 phba->sli4_hba.RQDBregaddr = (phba->sli4_hba.drbl_regs_memmap_p +
5529 vf * LPFC_VFR_PAGE_SIZE + LPFC_RQ_DOORBELL);
5530 phba->sli4_hba.WQDBregaddr = (phba->sli4_hba.drbl_regs_memmap_p +
5531 vf * LPFC_VFR_PAGE_SIZE + LPFC_WQ_DOORBELL);
5532 phba->sli4_hba.EQCQDBregaddr = (phba->sli4_hba.drbl_regs_memmap_p +
5533 vf * LPFC_VFR_PAGE_SIZE + LPFC_EQCQ_DOORBELL);
5534 phba->sli4_hba.MQDBregaddr = (phba->sli4_hba.drbl_regs_memmap_p +
5535 vf * LPFC_VFR_PAGE_SIZE + LPFC_MQ_DOORBELL);
5536 phba->sli4_hba.BMBXregaddr = (phba->sli4_hba.drbl_regs_memmap_p +
5537 vf * LPFC_VFR_PAGE_SIZE + LPFC_BMBX);
5538 return 0;
3772a991
JS
5539}
5540
5541/**
da0436e9 5542 * lpfc_create_bootstrap_mbox - Create the bootstrap mailbox
3772a991
JS
5543 * @phba: pointer to lpfc hba data structure.
5544 *
da0436e9
JS
5545 * This routine is invoked to create the bootstrap mailbox
5546 * region consistent with the SLI-4 interface spec. This
5547 * routine allocates all memory necessary to communicate
5548 * mailbox commands to the port and sets up all alignment
5549 * needs. No locks are expected to be held when calling
5550 * this routine.
3772a991
JS
5551 *
5552 * Return codes
af901ca1 5553 * 0 - successful
d439d286 5554 * -ENOMEM - could not allocated memory.
da0436e9 5555 **/
3772a991 5556static int
da0436e9 5557lpfc_create_bootstrap_mbox(struct lpfc_hba *phba)
3772a991 5558{
da0436e9
JS
5559 uint32_t bmbx_size;
5560 struct lpfc_dmabuf *dmabuf;
5561 struct dma_address *dma_address;
5562 uint32_t pa_addr;
5563 uint64_t phys_addr;
5564
5565 dmabuf = kzalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
5566 if (!dmabuf)
5567 return -ENOMEM;
3772a991 5568
da0436e9
JS
5569 /*
5570 * The bootstrap mailbox region is comprised of 2 parts
5571 * plus an alignment restriction of 16 bytes.
5572 */
5573 bmbx_size = sizeof(struct lpfc_bmbx_create) + (LPFC_ALIGN_16_BYTE - 1);
5574 dmabuf->virt = dma_alloc_coherent(&phba->pcidev->dev,
5575 bmbx_size,
5576 &dmabuf->phys,
5577 GFP_KERNEL);
5578 if (!dmabuf->virt) {
5579 kfree(dmabuf);
5580 return -ENOMEM;
3772a991 5581 }
da0436e9 5582 memset(dmabuf->virt, 0, bmbx_size);
3772a991 5583
da0436e9
JS
5584 /*
5585 * Initialize the bootstrap mailbox pointers now so that the register
5586 * operations are simple later. The mailbox dma address is required
5587 * to be 16-byte aligned. Also align the virtual memory as each
5588 * maibox is copied into the bmbx mailbox region before issuing the
5589 * command to the port.
5590 */
5591 phba->sli4_hba.bmbx.dmabuf = dmabuf;
5592 phba->sli4_hba.bmbx.bmbx_size = bmbx_size;
5593
5594 phba->sli4_hba.bmbx.avirt = PTR_ALIGN(dmabuf->virt,
5595 LPFC_ALIGN_16_BYTE);
5596 phba->sli4_hba.bmbx.aphys = ALIGN(dmabuf->phys,
5597 LPFC_ALIGN_16_BYTE);
5598
5599 /*
5600 * Set the high and low physical addresses now. The SLI4 alignment
5601 * requirement is 16 bytes and the mailbox is posted to the port
5602 * as two 30-bit addresses. The other data is a bit marking whether
5603 * the 30-bit address is the high or low address.
5604 * Upcast bmbx aphys to 64bits so shift instruction compiles
5605 * clean on 32 bit machines.
5606 */
5607 dma_address = &phba->sli4_hba.bmbx.dma_address;
5608 phys_addr = (uint64_t)phba->sli4_hba.bmbx.aphys;
5609 pa_addr = (uint32_t) ((phys_addr >> 34) & 0x3fffffff);
5610 dma_address->addr_hi = (uint32_t) ((pa_addr << 2) |
5611 LPFC_BMBX_BIT1_ADDR_HI);
5612
5613 pa_addr = (uint32_t) ((phba->sli4_hba.bmbx.aphys >> 4) & 0x3fffffff);
5614 dma_address->addr_lo = (uint32_t) ((pa_addr << 2) |
5615 LPFC_BMBX_BIT1_ADDR_LO);
5616 return 0;
3772a991
JS
5617}
5618
5619/**
da0436e9 5620 * lpfc_destroy_bootstrap_mbox - Destroy all bootstrap mailbox resources
3772a991
JS
5621 * @phba: pointer to lpfc hba data structure.
5622 *
da0436e9
JS
5623 * This routine is invoked to teardown the bootstrap mailbox
5624 * region and release all host resources. This routine requires
5625 * the caller to ensure all mailbox commands recovered, no
5626 * additional mailbox comands are sent, and interrupts are disabled
5627 * before calling this routine.
5628 *
5629 **/
3772a991 5630static void
da0436e9 5631lpfc_destroy_bootstrap_mbox(struct lpfc_hba *phba)
3772a991 5632{
da0436e9
JS
5633 dma_free_coherent(&phba->pcidev->dev,
5634 phba->sli4_hba.bmbx.bmbx_size,
5635 phba->sli4_hba.bmbx.dmabuf->virt,
5636 phba->sli4_hba.bmbx.dmabuf->phys);
5637
5638 kfree(phba->sli4_hba.bmbx.dmabuf);
5639 memset(&phba->sli4_hba.bmbx, 0, sizeof(struct lpfc_bmbx));
3772a991
JS
5640}
5641
5642/**
da0436e9 5643 * lpfc_sli4_read_config - Get the config parameters.
3772a991
JS
5644 * @phba: pointer to lpfc hba data structure.
5645 *
da0436e9
JS
5646 * This routine is invoked to read the configuration parameters from the HBA.
5647 * The configuration parameters are used to set the base and maximum values
5648 * for RPI's XRI's VPI's VFI's and FCFIs. These values also affect the resource
5649 * allocation for the port.
3772a991
JS
5650 *
5651 * Return codes
af901ca1 5652 * 0 - successful
d439d286
JS
5653 * -ENOMEM - No availble memory
5654 * -EIO - The mailbox failed to complete successfully.
3772a991 5655 **/
da0436e9
JS
5656static int
5657lpfc_sli4_read_config(struct lpfc_hba *phba)
3772a991 5658{
da0436e9
JS
5659 LPFC_MBOXQ_t *pmb;
5660 struct lpfc_mbx_read_config *rd_config;
5661 uint32_t rc = 0;
3772a991 5662
da0436e9
JS
5663 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5664 if (!pmb) {
5665 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
5666 "2011 Unable to allocate memory for issuing "
5667 "SLI_CONFIG_SPECIAL mailbox command\n");
5668 return -ENOMEM;
3772a991
JS
5669 }
5670
da0436e9 5671 lpfc_read_config(phba, pmb);
3772a991 5672
da0436e9
JS
5673 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
5674 if (rc != MBX_SUCCESS) {
5675 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
5676 "2012 Mailbox failed , mbxCmd x%x "
5677 "READ_CONFIG, mbxStatus x%x\n",
5678 bf_get(lpfc_mqe_command, &pmb->u.mqe),
5679 bf_get(lpfc_mqe_status, &pmb->u.mqe));
5680 rc = -EIO;
5681 } else {
5682 rd_config = &pmb->u.mqe.un.rd_config;
5683 phba->sli4_hba.max_cfg_param.max_xri =
5684 bf_get(lpfc_mbx_rd_conf_xri_count, rd_config);
5685 phba->sli4_hba.max_cfg_param.xri_base =
5686 bf_get(lpfc_mbx_rd_conf_xri_base, rd_config);
5687 phba->sli4_hba.max_cfg_param.max_vpi =
5688 bf_get(lpfc_mbx_rd_conf_vpi_count, rd_config);
5689 phba->sli4_hba.max_cfg_param.vpi_base =
5690 bf_get(lpfc_mbx_rd_conf_vpi_base, rd_config);
5691 phba->sli4_hba.max_cfg_param.max_rpi =
5692 bf_get(lpfc_mbx_rd_conf_rpi_count, rd_config);
5693 phba->sli4_hba.max_cfg_param.rpi_base =
5694 bf_get(lpfc_mbx_rd_conf_rpi_base, rd_config);
5695 phba->sli4_hba.max_cfg_param.max_vfi =
5696 bf_get(lpfc_mbx_rd_conf_vfi_count, rd_config);
5697 phba->sli4_hba.max_cfg_param.vfi_base =
5698 bf_get(lpfc_mbx_rd_conf_vfi_base, rd_config);
5699 phba->sli4_hba.max_cfg_param.max_fcfi =
5700 bf_get(lpfc_mbx_rd_conf_fcfi_count, rd_config);
5701 phba->sli4_hba.max_cfg_param.fcfi_base =
5702 bf_get(lpfc_mbx_rd_conf_fcfi_base, rd_config);
5703 phba->sli4_hba.max_cfg_param.max_eq =
5704 bf_get(lpfc_mbx_rd_conf_eq_count, rd_config);
5705 phba->sli4_hba.max_cfg_param.max_rq =
5706 bf_get(lpfc_mbx_rd_conf_rq_count, rd_config);
5707 phba->sli4_hba.max_cfg_param.max_wq =
5708 bf_get(lpfc_mbx_rd_conf_wq_count, rd_config);
5709 phba->sli4_hba.max_cfg_param.max_cq =
5710 bf_get(lpfc_mbx_rd_conf_cq_count, rd_config);
5711 phba->lmt = bf_get(lpfc_mbx_rd_conf_lmt, rd_config);
5712 phba->sli4_hba.next_xri = phba->sli4_hba.max_cfg_param.xri_base;
5713 phba->vpi_base = phba->sli4_hba.max_cfg_param.vpi_base;
5714 phba->vfi_base = phba->sli4_hba.max_cfg_param.vfi_base;
5715 phba->sli4_hba.next_rpi = phba->sli4_hba.max_cfg_param.rpi_base;
5ffc266e
JS
5716 phba->max_vpi = (phba->sli4_hba.max_cfg_param.max_vpi > 0) ?
5717 (phba->sli4_hba.max_cfg_param.max_vpi - 1) : 0;
da0436e9
JS
5718 phba->max_vports = phba->max_vpi;
5719 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
5720 "2003 cfg params XRI(B:%d M:%d), "
5721 "VPI(B:%d M:%d) "
5722 "VFI(B:%d M:%d) "
5723 "RPI(B:%d M:%d) "
5724 "FCFI(B:%d M:%d)\n",
5725 phba->sli4_hba.max_cfg_param.xri_base,
5726 phba->sli4_hba.max_cfg_param.max_xri,
5727 phba->sli4_hba.max_cfg_param.vpi_base,
5728 phba->sli4_hba.max_cfg_param.max_vpi,
5729 phba->sli4_hba.max_cfg_param.vfi_base,
5730 phba->sli4_hba.max_cfg_param.max_vfi,
5731 phba->sli4_hba.max_cfg_param.rpi_base,
5732 phba->sli4_hba.max_cfg_param.max_rpi,
5733 phba->sli4_hba.max_cfg_param.fcfi_base,
5734 phba->sli4_hba.max_cfg_param.max_fcfi);
3772a991 5735 }
da0436e9
JS
5736 mempool_free(pmb, phba->mbox_mem_pool);
5737
5738 /* Reset the DFT_HBA_Q_DEPTH to the max xri */
b92938b4
JS
5739 if (phba->cfg_hba_queue_depth >
5740 (phba->sli4_hba.max_cfg_param.max_xri -
5741 lpfc_sli4_get_els_iocb_cnt(phba)))
da0436e9 5742 phba->cfg_hba_queue_depth =
b92938b4
JS
5743 phba->sli4_hba.max_cfg_param.max_xri -
5744 lpfc_sli4_get_els_iocb_cnt(phba);
da0436e9 5745 return rc;
3772a991
JS
5746}
5747
5748/**
da0436e9 5749 * lpfc_dev_endian_order_setup - Notify the port of the host's endian order.
3772a991
JS
5750 * @phba: pointer to lpfc hba data structure.
5751 *
da0436e9
JS
5752 * This routine is invoked to setup the host-side endian order to the
5753 * HBA consistent with the SLI-4 interface spec.
5754 *
5755 * Return codes
af901ca1 5756 * 0 - successful
d439d286
JS
5757 * -ENOMEM - No availble memory
5758 * -EIO - The mailbox failed to complete successfully.
3772a991 5759 **/
da0436e9
JS
5760static int
5761lpfc_setup_endian_order(struct lpfc_hba *phba)
3772a991 5762{
da0436e9
JS
5763 LPFC_MBOXQ_t *mboxq;
5764 uint32_t rc = 0;
5765 uint32_t endian_mb_data[2] = {HOST_ENDIAN_LOW_WORD0,
5766 HOST_ENDIAN_HIGH_WORD1};
3772a991 5767
da0436e9
JS
5768 mboxq = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5769 if (!mboxq) {
5770 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5771 "0492 Unable to allocate memory for issuing "
5772 "SLI_CONFIG_SPECIAL mailbox command\n");
5773 return -ENOMEM;
5774 }
3772a991 5775
da0436e9
JS
5776 /*
5777 * The SLI4_CONFIG_SPECIAL mailbox command requires the first two
5778 * words to contain special data values and no other data.
5779 */
5780 memset(mboxq, 0, sizeof(LPFC_MBOXQ_t));
5781 memcpy(&mboxq->u.mqe, &endian_mb_data, sizeof(endian_mb_data));
5782 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
5783 if (rc != MBX_SUCCESS) {
5784 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5785 "0493 SLI_CONFIG_SPECIAL mailbox failed with "
5786 "status x%x\n",
5787 rc);
5788 rc = -EIO;
5789 }
5790
5791 mempool_free(mboxq, phba->mbox_mem_pool);
5792 return rc;
3772a991
JS
5793}
5794
5795/**
da0436e9 5796 * lpfc_sli4_queue_create - Create all the SLI4 queues
3772a991
JS
5797 * @phba: pointer to lpfc hba data structure.
5798 *
da0436e9
JS
5799 * This routine is invoked to allocate all the SLI4 queues for the FCoE HBA
5800 * operation. For each SLI4 queue type, the parameters such as queue entry
5801 * count (queue depth) shall be taken from the module parameter. For now,
5802 * we just use some constant number as place holder.
5803 *
5804 * Return codes
af901ca1 5805 * 0 - successful
d439d286
JS
5806 * -ENOMEM - No availble memory
5807 * -EIO - The mailbox failed to complete successfully.
3772a991 5808 **/
da0436e9
JS
5809static int
5810lpfc_sli4_queue_create(struct lpfc_hba *phba)
3772a991 5811{
da0436e9
JS
5812 struct lpfc_queue *qdesc;
5813 int fcp_eqidx, fcp_cqidx, fcp_wqidx;
5814 int cfg_fcp_wq_count;
5815 int cfg_fcp_eq_count;
3772a991 5816
da0436e9
JS
5817 /*
5818 * Sanity check for confiugred queue parameters against the run-time
5819 * device parameters
5820 */
3772a991 5821
da0436e9
JS
5822 /* Sanity check on FCP fast-path WQ parameters */
5823 cfg_fcp_wq_count = phba->cfg_fcp_wq_count;
5824 if (cfg_fcp_wq_count >
5825 (phba->sli4_hba.max_cfg_param.max_wq - LPFC_SP_WQN_DEF)) {
5826 cfg_fcp_wq_count = phba->sli4_hba.max_cfg_param.max_wq -
5827 LPFC_SP_WQN_DEF;
5828 if (cfg_fcp_wq_count < LPFC_FP_WQN_MIN) {
5829 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5830 "2581 Not enough WQs (%d) from "
5831 "the pci function for supporting "
5832 "FCP WQs (%d)\n",
5833 phba->sli4_hba.max_cfg_param.max_wq,
5834 phba->cfg_fcp_wq_count);
5835 goto out_error;
5836 }
5837 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
5838 "2582 Not enough WQs (%d) from the pci "
5839 "function for supporting the requested "
5840 "FCP WQs (%d), the actual FCP WQs can "
5841 "be supported: %d\n",
5842 phba->sli4_hba.max_cfg_param.max_wq,
5843 phba->cfg_fcp_wq_count, cfg_fcp_wq_count);
5844 }
5845 /* The actual number of FCP work queues adopted */
5846 phba->cfg_fcp_wq_count = cfg_fcp_wq_count;
5847
5848 /* Sanity check on FCP fast-path EQ parameters */
5849 cfg_fcp_eq_count = phba->cfg_fcp_eq_count;
5850 if (cfg_fcp_eq_count >
5851 (phba->sli4_hba.max_cfg_param.max_eq - LPFC_SP_EQN_DEF)) {
5852 cfg_fcp_eq_count = phba->sli4_hba.max_cfg_param.max_eq -
5853 LPFC_SP_EQN_DEF;
5854 if (cfg_fcp_eq_count < LPFC_FP_EQN_MIN) {
5855 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5856 "2574 Not enough EQs (%d) from the "
5857 "pci function for supporting FCP "
5858 "EQs (%d)\n",
5859 phba->sli4_hba.max_cfg_param.max_eq,
5860 phba->cfg_fcp_eq_count);
5861 goto out_error;
5862 }
5863 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
5864 "2575 Not enough EQs (%d) from the pci "
5865 "function for supporting the requested "
5866 "FCP EQs (%d), the actual FCP EQs can "
5867 "be supported: %d\n",
5868 phba->sli4_hba.max_cfg_param.max_eq,
5869 phba->cfg_fcp_eq_count, cfg_fcp_eq_count);
5870 }
5871 /* It does not make sense to have more EQs than WQs */
5872 if (cfg_fcp_eq_count > phba->cfg_fcp_wq_count) {
5873 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
6a9c52cf
JS
5874 "2593 The FCP EQ count(%d) cannot be greater "
5875 "than the FCP WQ count(%d), limiting the "
5876 "FCP EQ count to %d\n", cfg_fcp_eq_count,
da0436e9
JS
5877 phba->cfg_fcp_wq_count,
5878 phba->cfg_fcp_wq_count);
5879 cfg_fcp_eq_count = phba->cfg_fcp_wq_count;
5880 }
5881 /* The actual number of FCP event queues adopted */
5882 phba->cfg_fcp_eq_count = cfg_fcp_eq_count;
5883 /* The overall number of event queues used */
5884 phba->sli4_hba.cfg_eqn = phba->cfg_fcp_eq_count + LPFC_SP_EQN_DEF;
3772a991 5885
da0436e9
JS
5886 /*
5887 * Create Event Queues (EQs)
5888 */
3772a991 5889
da0436e9
JS
5890 /* Get EQ depth from module parameter, fake the default for now */
5891 phba->sli4_hba.eq_esize = LPFC_EQE_SIZE_4B;
5892 phba->sli4_hba.eq_ecount = LPFC_EQE_DEF_COUNT;
3772a991 5893
da0436e9
JS
5894 /* Create slow path event queue */
5895 qdesc = lpfc_sli4_queue_alloc(phba, phba->sli4_hba.eq_esize,
5896 phba->sli4_hba.eq_ecount);
5897 if (!qdesc) {
5898 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5899 "0496 Failed allocate slow-path EQ\n");
5900 goto out_error;
5901 }
5902 phba->sli4_hba.sp_eq = qdesc;
5903
5904 /* Create fast-path FCP Event Queue(s) */
5905 phba->sli4_hba.fp_eq = kzalloc((sizeof(struct lpfc_queue *) *
5906 phba->cfg_fcp_eq_count), GFP_KERNEL);
5907 if (!phba->sli4_hba.fp_eq) {
5908 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5909 "2576 Failed allocate memory for fast-path "
5910 "EQ record array\n");
5911 goto out_free_sp_eq;
5912 }
5913 for (fcp_eqidx = 0; fcp_eqidx < phba->cfg_fcp_eq_count; fcp_eqidx++) {
5914 qdesc = lpfc_sli4_queue_alloc(phba, phba->sli4_hba.eq_esize,
5915 phba->sli4_hba.eq_ecount);
5916 if (!qdesc) {
5917 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5918 "0497 Failed allocate fast-path EQ\n");
5919 goto out_free_fp_eq;
5920 }
5921 phba->sli4_hba.fp_eq[fcp_eqidx] = qdesc;
5922 }
5923
5924 /*
5925 * Create Complete Queues (CQs)
5926 */
5927
5928 /* Get CQ depth from module parameter, fake the default for now */
5929 phba->sli4_hba.cq_esize = LPFC_CQE_SIZE;
5930 phba->sli4_hba.cq_ecount = LPFC_CQE_DEF_COUNT;
5931
5932 /* Create slow-path Mailbox Command Complete Queue */
5933 qdesc = lpfc_sli4_queue_alloc(phba, phba->sli4_hba.cq_esize,
5934 phba->sli4_hba.cq_ecount);
5935 if (!qdesc) {
5936 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5937 "0500 Failed allocate slow-path mailbox CQ\n");
5938 goto out_free_fp_eq;
5939 }
5940 phba->sli4_hba.mbx_cq = qdesc;
5941
5942 /* Create slow-path ELS Complete Queue */
5943 qdesc = lpfc_sli4_queue_alloc(phba, phba->sli4_hba.cq_esize,
5944 phba->sli4_hba.cq_ecount);
5945 if (!qdesc) {
5946 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5947 "0501 Failed allocate slow-path ELS CQ\n");
5948 goto out_free_mbx_cq;
5949 }
5950 phba->sli4_hba.els_cq = qdesc;
5951
da0436e9
JS
5952
5953 /* Create fast-path FCP Completion Queue(s), one-to-one with EQs */
5954 phba->sli4_hba.fcp_cq = kzalloc((sizeof(struct lpfc_queue *) *
5955 phba->cfg_fcp_eq_count), GFP_KERNEL);
5956 if (!phba->sli4_hba.fcp_cq) {
5957 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5958 "2577 Failed allocate memory for fast-path "
5959 "CQ record array\n");
4d9ab994 5960 goto out_free_els_cq;
da0436e9
JS
5961 }
5962 for (fcp_cqidx = 0; fcp_cqidx < phba->cfg_fcp_eq_count; fcp_cqidx++) {
5963 qdesc = lpfc_sli4_queue_alloc(phba, phba->sli4_hba.cq_esize,
5964 phba->sli4_hba.cq_ecount);
5965 if (!qdesc) {
5966 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5967 "0499 Failed allocate fast-path FCP "
5968 "CQ (%d)\n", fcp_cqidx);
5969 goto out_free_fcp_cq;
5970 }
5971 phba->sli4_hba.fcp_cq[fcp_cqidx] = qdesc;
5972 }
5973
5974 /* Create Mailbox Command Queue */
5975 phba->sli4_hba.mq_esize = LPFC_MQE_SIZE;
5976 phba->sli4_hba.mq_ecount = LPFC_MQE_DEF_COUNT;
5977
5978 qdesc = lpfc_sli4_queue_alloc(phba, phba->sli4_hba.mq_esize,
5979 phba->sli4_hba.mq_ecount);
5980 if (!qdesc) {
5981 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5982 "0505 Failed allocate slow-path MQ\n");
5983 goto out_free_fcp_cq;
5984 }
5985 phba->sli4_hba.mbx_wq = qdesc;
5986
5987 /*
5988 * Create all the Work Queues (WQs)
5989 */
5990 phba->sli4_hba.wq_esize = LPFC_WQE_SIZE;
5991 phba->sli4_hba.wq_ecount = LPFC_WQE_DEF_COUNT;
5992
5993 /* Create slow-path ELS Work Queue */
5994 qdesc = lpfc_sli4_queue_alloc(phba, phba->sli4_hba.wq_esize,
5995 phba->sli4_hba.wq_ecount);
5996 if (!qdesc) {
5997 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5998 "0504 Failed allocate slow-path ELS WQ\n");
5999 goto out_free_mbx_wq;
6000 }
6001 phba->sli4_hba.els_wq = qdesc;
6002
6003 /* Create fast-path FCP Work Queue(s) */
6004 phba->sli4_hba.fcp_wq = kzalloc((sizeof(struct lpfc_queue *) *
6005 phba->cfg_fcp_wq_count), GFP_KERNEL);
6006 if (!phba->sli4_hba.fcp_wq) {
6007 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6008 "2578 Failed allocate memory for fast-path "
6009 "WQ record array\n");
6010 goto out_free_els_wq;
6011 }
6012 for (fcp_wqidx = 0; fcp_wqidx < phba->cfg_fcp_wq_count; fcp_wqidx++) {
6013 qdesc = lpfc_sli4_queue_alloc(phba, phba->sli4_hba.wq_esize,
6014 phba->sli4_hba.wq_ecount);
6015 if (!qdesc) {
6016 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6017 "0503 Failed allocate fast-path FCP "
6018 "WQ (%d)\n", fcp_wqidx);
6019 goto out_free_fcp_wq;
6020 }
6021 phba->sli4_hba.fcp_wq[fcp_wqidx] = qdesc;
6022 }
6023
6024 /*
6025 * Create Receive Queue (RQ)
6026 */
6027 phba->sli4_hba.rq_esize = LPFC_RQE_SIZE;
6028 phba->sli4_hba.rq_ecount = LPFC_RQE_DEF_COUNT;
6029
6030 /* Create Receive Queue for header */
6031 qdesc = lpfc_sli4_queue_alloc(phba, phba->sli4_hba.rq_esize,
6032 phba->sli4_hba.rq_ecount);
6033 if (!qdesc) {
6034 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6035 "0506 Failed allocate receive HRQ\n");
6036 goto out_free_fcp_wq;
6037 }
6038 phba->sli4_hba.hdr_rq = qdesc;
6039
6040 /* Create Receive Queue for data */
6041 qdesc = lpfc_sli4_queue_alloc(phba, phba->sli4_hba.rq_esize,
6042 phba->sli4_hba.rq_ecount);
6043 if (!qdesc) {
6044 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6045 "0507 Failed allocate receive DRQ\n");
6046 goto out_free_hdr_rq;
6047 }
6048 phba->sli4_hba.dat_rq = qdesc;
6049
6050 return 0;
6051
6052out_free_hdr_rq:
6053 lpfc_sli4_queue_free(phba->sli4_hba.hdr_rq);
6054 phba->sli4_hba.hdr_rq = NULL;
6055out_free_fcp_wq:
6056 for (--fcp_wqidx; fcp_wqidx >= 0; fcp_wqidx--) {
6057 lpfc_sli4_queue_free(phba->sli4_hba.fcp_wq[fcp_wqidx]);
6058 phba->sli4_hba.fcp_wq[fcp_wqidx] = NULL;
6059 }
6060 kfree(phba->sli4_hba.fcp_wq);
6061out_free_els_wq:
6062 lpfc_sli4_queue_free(phba->sli4_hba.els_wq);
6063 phba->sli4_hba.els_wq = NULL;
6064out_free_mbx_wq:
6065 lpfc_sli4_queue_free(phba->sli4_hba.mbx_wq);
6066 phba->sli4_hba.mbx_wq = NULL;
6067out_free_fcp_cq:
6068 for (--fcp_cqidx; fcp_cqidx >= 0; fcp_cqidx--) {
6069 lpfc_sli4_queue_free(phba->sli4_hba.fcp_cq[fcp_cqidx]);
6070 phba->sli4_hba.fcp_cq[fcp_cqidx] = NULL;
6071 }
6072 kfree(phba->sli4_hba.fcp_cq);
da0436e9
JS
6073out_free_els_cq:
6074 lpfc_sli4_queue_free(phba->sli4_hba.els_cq);
6075 phba->sli4_hba.els_cq = NULL;
6076out_free_mbx_cq:
6077 lpfc_sli4_queue_free(phba->sli4_hba.mbx_cq);
6078 phba->sli4_hba.mbx_cq = NULL;
6079out_free_fp_eq:
6080 for (--fcp_eqidx; fcp_eqidx >= 0; fcp_eqidx--) {
6081 lpfc_sli4_queue_free(phba->sli4_hba.fp_eq[fcp_eqidx]);
6082 phba->sli4_hba.fp_eq[fcp_eqidx] = NULL;
6083 }
6084 kfree(phba->sli4_hba.fp_eq);
6085out_free_sp_eq:
6086 lpfc_sli4_queue_free(phba->sli4_hba.sp_eq);
6087 phba->sli4_hba.sp_eq = NULL;
6088out_error:
6089 return -ENOMEM;
6090}
6091
6092/**
6093 * lpfc_sli4_queue_destroy - Destroy all the SLI4 queues
6094 * @phba: pointer to lpfc hba data structure.
6095 *
6096 * This routine is invoked to release all the SLI4 queues with the FCoE HBA
6097 * operation.
6098 *
6099 * Return codes
af901ca1 6100 * 0 - successful
d439d286
JS
6101 * -ENOMEM - No availble memory
6102 * -EIO - The mailbox failed to complete successfully.
da0436e9
JS
6103 **/
6104static void
6105lpfc_sli4_queue_destroy(struct lpfc_hba *phba)
6106{
6107 int fcp_qidx;
6108
6109 /* Release mailbox command work queue */
6110 lpfc_sli4_queue_free(phba->sli4_hba.mbx_wq);
6111 phba->sli4_hba.mbx_wq = NULL;
6112
6113 /* Release ELS work queue */
6114 lpfc_sli4_queue_free(phba->sli4_hba.els_wq);
6115 phba->sli4_hba.els_wq = NULL;
6116
6117 /* Release FCP work queue */
6118 for (fcp_qidx = 0; fcp_qidx < phba->cfg_fcp_wq_count; fcp_qidx++)
6119 lpfc_sli4_queue_free(phba->sli4_hba.fcp_wq[fcp_qidx]);
6120 kfree(phba->sli4_hba.fcp_wq);
6121 phba->sli4_hba.fcp_wq = NULL;
6122
6123 /* Release unsolicited receive queue */
6124 lpfc_sli4_queue_free(phba->sli4_hba.hdr_rq);
6125 phba->sli4_hba.hdr_rq = NULL;
6126 lpfc_sli4_queue_free(phba->sli4_hba.dat_rq);
6127 phba->sli4_hba.dat_rq = NULL;
6128
da0436e9
JS
6129 /* Release ELS complete queue */
6130 lpfc_sli4_queue_free(phba->sli4_hba.els_cq);
6131 phba->sli4_hba.els_cq = NULL;
6132
6133 /* Release mailbox command complete queue */
6134 lpfc_sli4_queue_free(phba->sli4_hba.mbx_cq);
6135 phba->sli4_hba.mbx_cq = NULL;
6136
6137 /* Release FCP response complete queue */
6138 for (fcp_qidx = 0; fcp_qidx < phba->cfg_fcp_eq_count; fcp_qidx++)
6139 lpfc_sli4_queue_free(phba->sli4_hba.fcp_cq[fcp_qidx]);
6140 kfree(phba->sli4_hba.fcp_cq);
6141 phba->sli4_hba.fcp_cq = NULL;
6142
6143 /* Release fast-path event queue */
6144 for (fcp_qidx = 0; fcp_qidx < phba->cfg_fcp_eq_count; fcp_qidx++)
6145 lpfc_sli4_queue_free(phba->sli4_hba.fp_eq[fcp_qidx]);
6146 kfree(phba->sli4_hba.fp_eq);
6147 phba->sli4_hba.fp_eq = NULL;
6148
6149 /* Release slow-path event queue */
6150 lpfc_sli4_queue_free(phba->sli4_hba.sp_eq);
6151 phba->sli4_hba.sp_eq = NULL;
6152
6153 return;
6154}
6155
6156/**
6157 * lpfc_sli4_queue_setup - Set up all the SLI4 queues
6158 * @phba: pointer to lpfc hba data structure.
6159 *
6160 * This routine is invoked to set up all the SLI4 queues for the FCoE HBA
6161 * operation.
6162 *
6163 * Return codes
af901ca1 6164 * 0 - successful
d439d286
JS
6165 * -ENOMEM - No availble memory
6166 * -EIO - The mailbox failed to complete successfully.
da0436e9
JS
6167 **/
6168int
6169lpfc_sli4_queue_setup(struct lpfc_hba *phba)
6170{
6171 int rc = -ENOMEM;
6172 int fcp_eqidx, fcp_cqidx, fcp_wqidx;
6173 int fcp_cq_index = 0;
6174
6175 /*
6176 * Set up Event Queues (EQs)
6177 */
6178
6179 /* Set up slow-path event queue */
6180 if (!phba->sli4_hba.sp_eq) {
6181 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6182 "0520 Slow-path EQ not allocated\n");
6183 goto out_error;
6184 }
6185 rc = lpfc_eq_create(phba, phba->sli4_hba.sp_eq,
6186 LPFC_SP_DEF_IMAX);
6187 if (rc) {
6188 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6189 "0521 Failed setup of slow-path EQ: "
6190 "rc = 0x%x\n", rc);
6191 goto out_error;
6192 }
6193 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
6194 "2583 Slow-path EQ setup: queue-id=%d\n",
6195 phba->sli4_hba.sp_eq->queue_id);
6196
6197 /* Set up fast-path event queue */
6198 for (fcp_eqidx = 0; fcp_eqidx < phba->cfg_fcp_eq_count; fcp_eqidx++) {
6199 if (!phba->sli4_hba.fp_eq[fcp_eqidx]) {
6200 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6201 "0522 Fast-path EQ (%d) not "
6202 "allocated\n", fcp_eqidx);
6203 goto out_destroy_fp_eq;
6204 }
6205 rc = lpfc_eq_create(phba, phba->sli4_hba.fp_eq[fcp_eqidx],
6206 phba->cfg_fcp_imax);
6207 if (rc) {
6208 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6209 "0523 Failed setup of fast-path EQ "
6210 "(%d), rc = 0x%x\n", fcp_eqidx, rc);
6211 goto out_destroy_fp_eq;
6212 }
6213 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
6214 "2584 Fast-path EQ setup: "
6215 "queue[%d]-id=%d\n", fcp_eqidx,
6216 phba->sli4_hba.fp_eq[fcp_eqidx]->queue_id);
6217 }
6218
6219 /*
6220 * Set up Complete Queues (CQs)
6221 */
6222
6223 /* Set up slow-path MBOX Complete Queue as the first CQ */
6224 if (!phba->sli4_hba.mbx_cq) {
6225 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6226 "0528 Mailbox CQ not allocated\n");
6227 goto out_destroy_fp_eq;
6228 }
6229 rc = lpfc_cq_create(phba, phba->sli4_hba.mbx_cq, phba->sli4_hba.sp_eq,
6230 LPFC_MCQ, LPFC_MBOX);
6231 if (rc) {
6232 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6233 "0529 Failed setup of slow-path mailbox CQ: "
6234 "rc = 0x%x\n", rc);
6235 goto out_destroy_fp_eq;
6236 }
6237 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
6238 "2585 MBX CQ setup: cq-id=%d, parent eq-id=%d\n",
6239 phba->sli4_hba.mbx_cq->queue_id,
6240 phba->sli4_hba.sp_eq->queue_id);
6241
6242 /* Set up slow-path ELS Complete Queue */
6243 if (!phba->sli4_hba.els_cq) {
6244 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6245 "0530 ELS CQ not allocated\n");
6246 goto out_destroy_mbx_cq;
6247 }
6248 rc = lpfc_cq_create(phba, phba->sli4_hba.els_cq, phba->sli4_hba.sp_eq,
6249 LPFC_WCQ, LPFC_ELS);
6250 if (rc) {
6251 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6252 "0531 Failed setup of slow-path ELS CQ: "
6253 "rc = 0x%x\n", rc);
6254 goto out_destroy_mbx_cq;
6255 }
6256 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
6257 "2586 ELS CQ setup: cq-id=%d, parent eq-id=%d\n",
6258 phba->sli4_hba.els_cq->queue_id,
6259 phba->sli4_hba.sp_eq->queue_id);
6260
da0436e9
JS
6261 /* Set up fast-path FCP Response Complete Queue */
6262 for (fcp_cqidx = 0; fcp_cqidx < phba->cfg_fcp_eq_count; fcp_cqidx++) {
6263 if (!phba->sli4_hba.fcp_cq[fcp_cqidx]) {
6264 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6265 "0526 Fast-path FCP CQ (%d) not "
6266 "allocated\n", fcp_cqidx);
6267 goto out_destroy_fcp_cq;
6268 }
6269 rc = lpfc_cq_create(phba, phba->sli4_hba.fcp_cq[fcp_cqidx],
6270 phba->sli4_hba.fp_eq[fcp_cqidx],
6271 LPFC_WCQ, LPFC_FCP);
6272 if (rc) {
6273 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6274 "0527 Failed setup of fast-path FCP "
6275 "CQ (%d), rc = 0x%x\n", fcp_cqidx, rc);
6276 goto out_destroy_fcp_cq;
6277 }
6278 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
6279 "2588 FCP CQ setup: cq[%d]-id=%d, "
6280 "parent eq[%d]-id=%d\n",
6281 fcp_cqidx,
6282 phba->sli4_hba.fcp_cq[fcp_cqidx]->queue_id,
6283 fcp_cqidx,
6284 phba->sli4_hba.fp_eq[fcp_cqidx]->queue_id);
6285 }
6286
6287 /*
6288 * Set up all the Work Queues (WQs)
6289 */
6290
6291 /* Set up Mailbox Command Queue */
6292 if (!phba->sli4_hba.mbx_wq) {
6293 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6294 "0538 Slow-path MQ not allocated\n");
6295 goto out_destroy_fcp_cq;
6296 }
6297 rc = lpfc_mq_create(phba, phba->sli4_hba.mbx_wq,
6298 phba->sli4_hba.mbx_cq, LPFC_MBOX);
6299 if (rc) {
6300 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6301 "0539 Failed setup of slow-path MQ: "
6302 "rc = 0x%x\n", rc);
6303 goto out_destroy_fcp_cq;
6304 }
6305 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
6306 "2589 MBX MQ setup: wq-id=%d, parent cq-id=%d\n",
6307 phba->sli4_hba.mbx_wq->queue_id,
6308 phba->sli4_hba.mbx_cq->queue_id);
6309
6310 /* Set up slow-path ELS Work Queue */
6311 if (!phba->sli4_hba.els_wq) {
6312 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6313 "0536 Slow-path ELS WQ not allocated\n");
6314 goto out_destroy_mbx_wq;
6315 }
6316 rc = lpfc_wq_create(phba, phba->sli4_hba.els_wq,
6317 phba->sli4_hba.els_cq, LPFC_ELS);
6318 if (rc) {
6319 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6320 "0537 Failed setup of slow-path ELS WQ: "
6321 "rc = 0x%x\n", rc);
6322 goto out_destroy_mbx_wq;
6323 }
6324 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
6325 "2590 ELS WQ setup: wq-id=%d, parent cq-id=%d\n",
6326 phba->sli4_hba.els_wq->queue_id,
6327 phba->sli4_hba.els_cq->queue_id);
6328
6329 /* Set up fast-path FCP Work Queue */
6330 for (fcp_wqidx = 0; fcp_wqidx < phba->cfg_fcp_wq_count; fcp_wqidx++) {
6331 if (!phba->sli4_hba.fcp_wq[fcp_wqidx]) {
6332 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6333 "0534 Fast-path FCP WQ (%d) not "
6334 "allocated\n", fcp_wqidx);
6335 goto out_destroy_fcp_wq;
6336 }
6337 rc = lpfc_wq_create(phba, phba->sli4_hba.fcp_wq[fcp_wqidx],
6338 phba->sli4_hba.fcp_cq[fcp_cq_index],
6339 LPFC_FCP);
6340 if (rc) {
6341 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6342 "0535 Failed setup of fast-path FCP "
6343 "WQ (%d), rc = 0x%x\n", fcp_wqidx, rc);
6344 goto out_destroy_fcp_wq;
6345 }
6346 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
6347 "2591 FCP WQ setup: wq[%d]-id=%d, "
6348 "parent cq[%d]-id=%d\n",
6349 fcp_wqidx,
6350 phba->sli4_hba.fcp_wq[fcp_wqidx]->queue_id,
6351 fcp_cq_index,
6352 phba->sli4_hba.fcp_cq[fcp_cq_index]->queue_id);
6353 /* Round robin FCP Work Queue's Completion Queue assignment */
6354 fcp_cq_index = ((fcp_cq_index + 1) % phba->cfg_fcp_eq_count);
6355 }
6356
6357 /*
6358 * Create Receive Queue (RQ)
6359 */
6360 if (!phba->sli4_hba.hdr_rq || !phba->sli4_hba.dat_rq) {
6361 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6362 "0540 Receive Queue not allocated\n");
6363 goto out_destroy_fcp_wq;
6364 }
6365 rc = lpfc_rq_create(phba, phba->sli4_hba.hdr_rq, phba->sli4_hba.dat_rq,
4d9ab994 6366 phba->sli4_hba.els_cq, LPFC_USOL);
da0436e9
JS
6367 if (rc) {
6368 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6369 "0541 Failed setup of Receive Queue: "
6370 "rc = 0x%x\n", rc);
6371 goto out_destroy_fcp_wq;
6372 }
6373 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
6374 "2592 USL RQ setup: hdr-rq-id=%d, dat-rq-id=%d "
6375 "parent cq-id=%d\n",
6376 phba->sli4_hba.hdr_rq->queue_id,
6377 phba->sli4_hba.dat_rq->queue_id,
4d9ab994 6378 phba->sli4_hba.els_cq->queue_id);
da0436e9
JS
6379 return 0;
6380
6381out_destroy_fcp_wq:
6382 for (--fcp_wqidx; fcp_wqidx >= 0; fcp_wqidx--)
6383 lpfc_wq_destroy(phba, phba->sli4_hba.fcp_wq[fcp_wqidx]);
6384 lpfc_wq_destroy(phba, phba->sli4_hba.els_wq);
6385out_destroy_mbx_wq:
6386 lpfc_mq_destroy(phba, phba->sli4_hba.mbx_wq);
6387out_destroy_fcp_cq:
6388 for (--fcp_cqidx; fcp_cqidx >= 0; fcp_cqidx--)
6389 lpfc_cq_destroy(phba, phba->sli4_hba.fcp_cq[fcp_cqidx]);
da0436e9
JS
6390 lpfc_cq_destroy(phba, phba->sli4_hba.els_cq);
6391out_destroy_mbx_cq:
6392 lpfc_cq_destroy(phba, phba->sli4_hba.mbx_cq);
6393out_destroy_fp_eq:
6394 for (--fcp_eqidx; fcp_eqidx >= 0; fcp_eqidx--)
6395 lpfc_eq_destroy(phba, phba->sli4_hba.fp_eq[fcp_eqidx]);
6396 lpfc_eq_destroy(phba, phba->sli4_hba.sp_eq);
6397out_error:
6398 return rc;
6399}
6400
6401/**
6402 * lpfc_sli4_queue_unset - Unset all the SLI4 queues
6403 * @phba: pointer to lpfc hba data structure.
6404 *
6405 * This routine is invoked to unset all the SLI4 queues with the FCoE HBA
6406 * operation.
6407 *
6408 * Return codes
af901ca1 6409 * 0 - successful
d439d286
JS
6410 * -ENOMEM - No availble memory
6411 * -EIO - The mailbox failed to complete successfully.
da0436e9
JS
6412 **/
6413void
6414lpfc_sli4_queue_unset(struct lpfc_hba *phba)
6415{
6416 int fcp_qidx;
6417
6418 /* Unset mailbox command work queue */
6419 lpfc_mq_destroy(phba, phba->sli4_hba.mbx_wq);
6420 /* Unset ELS work queue */
6421 lpfc_wq_destroy(phba, phba->sli4_hba.els_wq);
6422 /* Unset unsolicited receive queue */
6423 lpfc_rq_destroy(phba, phba->sli4_hba.hdr_rq, phba->sli4_hba.dat_rq);
6424 /* Unset FCP work queue */
6425 for (fcp_qidx = 0; fcp_qidx < phba->cfg_fcp_wq_count; fcp_qidx++)
6426 lpfc_wq_destroy(phba, phba->sli4_hba.fcp_wq[fcp_qidx]);
6427 /* Unset mailbox command complete queue */
6428 lpfc_cq_destroy(phba, phba->sli4_hba.mbx_cq);
6429 /* Unset ELS complete queue */
6430 lpfc_cq_destroy(phba, phba->sli4_hba.els_cq);
da0436e9
JS
6431 /* Unset FCP response complete queue */
6432 for (fcp_qidx = 0; fcp_qidx < phba->cfg_fcp_eq_count; fcp_qidx++)
6433 lpfc_cq_destroy(phba, phba->sli4_hba.fcp_cq[fcp_qidx]);
6434 /* Unset fast-path event queue */
6435 for (fcp_qidx = 0; fcp_qidx < phba->cfg_fcp_eq_count; fcp_qidx++)
6436 lpfc_eq_destroy(phba, phba->sli4_hba.fp_eq[fcp_qidx]);
6437 /* Unset slow-path event queue */
6438 lpfc_eq_destroy(phba, phba->sli4_hba.sp_eq);
6439}
6440
6441/**
6442 * lpfc_sli4_cq_event_pool_create - Create completion-queue event free pool
6443 * @phba: pointer to lpfc hba data structure.
6444 *
6445 * This routine is invoked to allocate and set up a pool of completion queue
6446 * events. The body of the completion queue event is a completion queue entry
6447 * CQE. For now, this pool is used for the interrupt service routine to queue
6448 * the following HBA completion queue events for the worker thread to process:
6449 * - Mailbox asynchronous events
6450 * - Receive queue completion unsolicited events
6451 * Later, this can be used for all the slow-path events.
6452 *
6453 * Return codes
af901ca1 6454 * 0 - successful
da0436e9
JS
6455 * -ENOMEM - No availble memory
6456 **/
6457static int
6458lpfc_sli4_cq_event_pool_create(struct lpfc_hba *phba)
6459{
6460 struct lpfc_cq_event *cq_event;
6461 int i;
6462
6463 for (i = 0; i < (4 * phba->sli4_hba.cq_ecount); i++) {
6464 cq_event = kmalloc(sizeof(struct lpfc_cq_event), GFP_KERNEL);
6465 if (!cq_event)
6466 goto out_pool_create_fail;
6467 list_add_tail(&cq_event->list,
6468 &phba->sli4_hba.sp_cqe_event_pool);
6469 }
6470 return 0;
6471
6472out_pool_create_fail:
6473 lpfc_sli4_cq_event_pool_destroy(phba);
6474 return -ENOMEM;
6475}
6476
6477/**
6478 * lpfc_sli4_cq_event_pool_destroy - Free completion-queue event free pool
6479 * @phba: pointer to lpfc hba data structure.
6480 *
6481 * This routine is invoked to free the pool of completion queue events at
6482 * driver unload time. Note that, it is the responsibility of the driver
6483 * cleanup routine to free all the outstanding completion-queue events
6484 * allocated from this pool back into the pool before invoking this routine
6485 * to destroy the pool.
6486 **/
6487static void
6488lpfc_sli4_cq_event_pool_destroy(struct lpfc_hba *phba)
6489{
6490 struct lpfc_cq_event *cq_event, *next_cq_event;
6491
6492 list_for_each_entry_safe(cq_event, next_cq_event,
6493 &phba->sli4_hba.sp_cqe_event_pool, list) {
6494 list_del(&cq_event->list);
6495 kfree(cq_event);
6496 }
6497}
6498
6499/**
6500 * __lpfc_sli4_cq_event_alloc - Allocate a completion-queue event from free pool
6501 * @phba: pointer to lpfc hba data structure.
6502 *
6503 * This routine is the lock free version of the API invoked to allocate a
6504 * completion-queue event from the free pool.
6505 *
6506 * Return: Pointer to the newly allocated completion-queue event if successful
6507 * NULL otherwise.
6508 **/
6509struct lpfc_cq_event *
6510__lpfc_sli4_cq_event_alloc(struct lpfc_hba *phba)
6511{
6512 struct lpfc_cq_event *cq_event = NULL;
6513
6514 list_remove_head(&phba->sli4_hba.sp_cqe_event_pool, cq_event,
6515 struct lpfc_cq_event, list);
6516 return cq_event;
6517}
6518
6519/**
6520 * lpfc_sli4_cq_event_alloc - Allocate a completion-queue event from free pool
6521 * @phba: pointer to lpfc hba data structure.
6522 *
6523 * This routine is the lock version of the API invoked to allocate a
6524 * completion-queue event from the free pool.
6525 *
6526 * Return: Pointer to the newly allocated completion-queue event if successful
6527 * NULL otherwise.
6528 **/
6529struct lpfc_cq_event *
6530lpfc_sli4_cq_event_alloc(struct lpfc_hba *phba)
6531{
6532 struct lpfc_cq_event *cq_event;
6533 unsigned long iflags;
6534
6535 spin_lock_irqsave(&phba->hbalock, iflags);
6536 cq_event = __lpfc_sli4_cq_event_alloc(phba);
6537 spin_unlock_irqrestore(&phba->hbalock, iflags);
6538 return cq_event;
6539}
6540
6541/**
6542 * __lpfc_sli4_cq_event_release - Release a completion-queue event to free pool
6543 * @phba: pointer to lpfc hba data structure.
6544 * @cq_event: pointer to the completion queue event to be freed.
6545 *
6546 * This routine is the lock free version of the API invoked to release a
6547 * completion-queue event back into the free pool.
6548 **/
6549void
6550__lpfc_sli4_cq_event_release(struct lpfc_hba *phba,
6551 struct lpfc_cq_event *cq_event)
6552{
6553 list_add_tail(&cq_event->list, &phba->sli4_hba.sp_cqe_event_pool);
6554}
6555
6556/**
6557 * lpfc_sli4_cq_event_release - Release a completion-queue event to free pool
6558 * @phba: pointer to lpfc hba data structure.
6559 * @cq_event: pointer to the completion queue event to be freed.
6560 *
6561 * This routine is the lock version of the API invoked to release a
6562 * completion-queue event back into the free pool.
6563 **/
6564void
6565lpfc_sli4_cq_event_release(struct lpfc_hba *phba,
6566 struct lpfc_cq_event *cq_event)
6567{
6568 unsigned long iflags;
6569 spin_lock_irqsave(&phba->hbalock, iflags);
6570 __lpfc_sli4_cq_event_release(phba, cq_event);
6571 spin_unlock_irqrestore(&phba->hbalock, iflags);
6572}
6573
6574/**
6575 * lpfc_sli4_cq_event_release_all - Release all cq events to the free pool
6576 * @phba: pointer to lpfc hba data structure.
6577 *
6578 * This routine is to free all the pending completion-queue events to the
6579 * back into the free pool for device reset.
6580 **/
6581static void
6582lpfc_sli4_cq_event_release_all(struct lpfc_hba *phba)
6583{
6584 LIST_HEAD(cqelist);
6585 struct lpfc_cq_event *cqe;
6586 unsigned long iflags;
6587
6588 /* Retrieve all the pending WCQEs from pending WCQE lists */
6589 spin_lock_irqsave(&phba->hbalock, iflags);
6590 /* Pending FCP XRI abort events */
6591 list_splice_init(&phba->sli4_hba.sp_fcp_xri_aborted_work_queue,
6592 &cqelist);
6593 /* Pending ELS XRI abort events */
6594 list_splice_init(&phba->sli4_hba.sp_els_xri_aborted_work_queue,
6595 &cqelist);
6596 /* Pending asynnc events */
6597 list_splice_init(&phba->sli4_hba.sp_asynce_work_queue,
6598 &cqelist);
6599 spin_unlock_irqrestore(&phba->hbalock, iflags);
6600
6601 while (!list_empty(&cqelist)) {
6602 list_remove_head(&cqelist, cqe, struct lpfc_cq_event, list);
6603 lpfc_sli4_cq_event_release(phba, cqe);
6604 }
6605}
6606
6607/**
6608 * lpfc_pci_function_reset - Reset pci function.
6609 * @phba: pointer to lpfc hba data structure.
6610 *
6611 * This routine is invoked to request a PCI function reset. It will destroys
6612 * all resources assigned to the PCI function which originates this request.
6613 *
6614 * Return codes
af901ca1 6615 * 0 - successful
d439d286
JS
6616 * -ENOMEM - No availble memory
6617 * -EIO - The mailbox failed to complete successfully.
da0436e9
JS
6618 **/
6619int
6620lpfc_pci_function_reset(struct lpfc_hba *phba)
6621{
6622 LPFC_MBOXQ_t *mboxq;
6623 uint32_t rc = 0;
6624 uint32_t shdr_status, shdr_add_status;
6625 union lpfc_sli4_cfg_shdr *shdr;
6626
6627 mboxq = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
6628 if (!mboxq) {
6629 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6630 "0494 Unable to allocate memory for issuing "
6631 "SLI_FUNCTION_RESET mailbox command\n");
6632 return -ENOMEM;
6633 }
6634
6635 /* Set up PCI function reset SLI4_CONFIG mailbox-ioctl command */
6636 lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_COMMON,
6637 LPFC_MBOX_OPCODE_FUNCTION_RESET, 0,
6638 LPFC_SLI4_MBX_EMBED);
6639 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
6640 shdr = (union lpfc_sli4_cfg_shdr *)
6641 &mboxq->u.mqe.un.sli4_config.header.cfg_shdr;
6642 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
6643 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
6644 if (rc != MBX_TIMEOUT)
6645 mempool_free(mboxq, phba->mbox_mem_pool);
6646 if (shdr_status || shdr_add_status || rc) {
6647 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6648 "0495 SLI_FUNCTION_RESET mailbox failed with "
6649 "status x%x add_status x%x, mbx status x%x\n",
6650 shdr_status, shdr_add_status, rc);
6651 rc = -ENXIO;
6652 }
6653 return rc;
6654}
6655
6656/**
6657 * lpfc_sli4_send_nop_mbox_cmds - Send sli-4 nop mailbox commands
6658 * @phba: pointer to lpfc hba data structure.
6659 * @cnt: number of nop mailbox commands to send.
6660 *
6661 * This routine is invoked to send a number @cnt of NOP mailbox command and
6662 * wait for each command to complete.
6663 *
6664 * Return: the number of NOP mailbox command completed.
6665 **/
6666static int
6667lpfc_sli4_send_nop_mbox_cmds(struct lpfc_hba *phba, uint32_t cnt)
6668{
6669 LPFC_MBOXQ_t *mboxq;
6670 int length, cmdsent;
6671 uint32_t mbox_tmo;
6672 uint32_t rc = 0;
6673 uint32_t shdr_status, shdr_add_status;
6674 union lpfc_sli4_cfg_shdr *shdr;
6675
6676 if (cnt == 0) {
6677 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
6678 "2518 Requested to send 0 NOP mailbox cmd\n");
6679 return cnt;
6680 }
6681
6682 mboxq = (LPFC_MBOXQ_t *)mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
6683 if (!mboxq) {
6684 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6685 "2519 Unable to allocate memory for issuing "
6686 "NOP mailbox command\n");
6687 return 0;
6688 }
6689
6690 /* Set up NOP SLI4_CONFIG mailbox-ioctl command */
6691 length = (sizeof(struct lpfc_mbx_nop) -
6692 sizeof(struct lpfc_sli4_cfg_mhdr));
6693 lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_COMMON,
6694 LPFC_MBOX_OPCODE_NOP, length, LPFC_SLI4_MBX_EMBED);
6695
6696 mbox_tmo = lpfc_mbox_tmo_val(phba, MBX_SLI4_CONFIG);
6697 for (cmdsent = 0; cmdsent < cnt; cmdsent++) {
6698 if (!phba->sli4_hba.intr_enable)
6699 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
6700 else
6701 rc = lpfc_sli_issue_mbox_wait(phba, mboxq, mbox_tmo);
6702 if (rc == MBX_TIMEOUT)
6703 break;
6704 /* Check return status */
6705 shdr = (union lpfc_sli4_cfg_shdr *)
6706 &mboxq->u.mqe.un.sli4_config.header.cfg_shdr;
6707 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
6708 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status,
6709 &shdr->response);
6710 if (shdr_status || shdr_add_status || rc) {
6711 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
6712 "2520 NOP mailbox command failed "
6713 "status x%x add_status x%x mbx "
6714 "status x%x\n", shdr_status,
6715 shdr_add_status, rc);
6716 break;
6717 }
6718 }
6719
6720 if (rc != MBX_TIMEOUT)
6721 mempool_free(mboxq, phba->mbox_mem_pool);
6722
6723 return cmdsent;
6724}
6725
da0436e9
JS
6726/**
6727 * lpfc_sli4_pci_mem_setup - Setup SLI4 HBA PCI memory space.
6728 * @phba: pointer to lpfc hba data structure.
6729 *
6730 * This routine is invoked to set up the PCI device memory space for device
6731 * with SLI-4 interface spec.
6732 *
6733 * Return codes
af901ca1 6734 * 0 - successful
da0436e9
JS
6735 * other values - error
6736 **/
6737static int
6738lpfc_sli4_pci_mem_setup(struct lpfc_hba *phba)
6739{
6740 struct pci_dev *pdev;
6741 unsigned long bar0map_len, bar1map_len, bar2map_len;
6742 int error = -ENODEV;
6743
6744 /* Obtain PCI device reference */
6745 if (!phba->pcidev)
6746 return error;
6747 else
6748 pdev = phba->pcidev;
6749
6750 /* Set the device DMA mask size */
8e68597d
MR
6751 if (pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) != 0
6752 || pci_set_consistent_dma_mask(pdev,DMA_BIT_MASK(64)) != 0) {
6753 if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32)) != 0
6754 || pci_set_consistent_dma_mask(pdev,DMA_BIT_MASK(32)) != 0) {
da0436e9 6755 return error;
8e68597d
MR
6756 }
6757 }
da0436e9
JS
6758
6759 /* Get the bus address of SLI4 device Bar0, Bar1, and Bar2 and the
6760 * number of bytes required by each mapping. They are actually
1dfb5a47 6761 * mapping to the PCI BAR regions 0 or 1, 2, and 4 by the SLI4 device.
da0436e9 6762 */
1dfb5a47
JS
6763 if (pci_resource_start(pdev, 0)) {
6764 phba->pci_bar0_map = pci_resource_start(pdev, 0);
6765 bar0map_len = pci_resource_len(pdev, 0);
6766 } else {
6767 phba->pci_bar0_map = pci_resource_start(pdev, 1);
6768 bar0map_len = pci_resource_len(pdev, 1);
6769 }
6770 phba->pci_bar1_map = pci_resource_start(pdev, 2);
6771 bar1map_len = pci_resource_len(pdev, 2);
da0436e9 6772
1dfb5a47
JS
6773 phba->pci_bar2_map = pci_resource_start(pdev, 4);
6774 bar2map_len = pci_resource_len(pdev, 4);
da0436e9
JS
6775
6776 /* Map SLI4 PCI Config Space Register base to a kernel virtual addr */
6777 phba->sli4_hba.conf_regs_memmap_p =
6778 ioremap(phba->pci_bar0_map, bar0map_len);
6779 if (!phba->sli4_hba.conf_regs_memmap_p) {
6780 dev_printk(KERN_ERR, &pdev->dev,
6781 "ioremap failed for SLI4 PCI config registers.\n");
6782 goto out;
6783 }
6784
6785 /* Map SLI4 HBA Control Register base to a kernel virtual address. */
6786 phba->sli4_hba.ctrl_regs_memmap_p =
6787 ioremap(phba->pci_bar1_map, bar1map_len);
6788 if (!phba->sli4_hba.ctrl_regs_memmap_p) {
6789 dev_printk(KERN_ERR, &pdev->dev,
6790 "ioremap failed for SLI4 HBA control registers.\n");
6791 goto out_iounmap_conf;
6792 }
6793
6794 /* Map SLI4 HBA Doorbell Register base to a kernel virtual address. */
6795 phba->sli4_hba.drbl_regs_memmap_p =
6796 ioremap(phba->pci_bar2_map, bar2map_len);
6797 if (!phba->sli4_hba.drbl_regs_memmap_p) {
6798 dev_printk(KERN_ERR, &pdev->dev,
6799 "ioremap failed for SLI4 HBA doorbell registers.\n");
6800 goto out_iounmap_ctrl;
6801 }
6802
6803 /* Set up BAR0 PCI config space register memory map */
6804 lpfc_sli4_bar0_register_memmap(phba);
6805
6806 /* Set up BAR1 register memory map */
6807 lpfc_sli4_bar1_register_memmap(phba);
6808
6809 /* Set up BAR2 register memory map */
6810 error = lpfc_sli4_bar2_register_memmap(phba, LPFC_VF0);
6811 if (error)
6812 goto out_iounmap_all;
6813
6814 return 0;
6815
6816out_iounmap_all:
6817 iounmap(phba->sli4_hba.drbl_regs_memmap_p);
6818out_iounmap_ctrl:
6819 iounmap(phba->sli4_hba.ctrl_regs_memmap_p);
6820out_iounmap_conf:
6821 iounmap(phba->sli4_hba.conf_regs_memmap_p);
6822out:
6823 return error;
6824}
6825
6826/**
6827 * lpfc_sli4_pci_mem_unset - Unset SLI4 HBA PCI memory space.
6828 * @phba: pointer to lpfc hba data structure.
6829 *
6830 * This routine is invoked to unset the PCI device memory space for device
6831 * with SLI-4 interface spec.
6832 **/
6833static void
6834lpfc_sli4_pci_mem_unset(struct lpfc_hba *phba)
6835{
6836 struct pci_dev *pdev;
6837
6838 /* Obtain PCI device reference */
6839 if (!phba->pcidev)
6840 return;
6841 else
6842 pdev = phba->pcidev;
6843
6844 /* Free coherent DMA memory allocated */
6845
6846 /* Unmap I/O memory space */
6847 iounmap(phba->sli4_hba.drbl_regs_memmap_p);
6848 iounmap(phba->sli4_hba.ctrl_regs_memmap_p);
6849 iounmap(phba->sli4_hba.conf_regs_memmap_p);
6850
6851 return;
6852}
6853
6854/**
6855 * lpfc_sli_enable_msix - Enable MSI-X interrupt mode on SLI-3 device
6856 * @phba: pointer to lpfc hba data structure.
6857 *
6858 * This routine is invoked to enable the MSI-X interrupt vectors to device
6859 * with SLI-3 interface specs. The kernel function pci_enable_msix() is
6860 * called to enable the MSI-X vectors. Note that pci_enable_msix(), once
6861 * invoked, enables either all or nothing, depending on the current
6862 * availability of PCI vector resources. The device driver is responsible
6863 * for calling the individual request_irq() to register each MSI-X vector
6864 * with a interrupt handler, which is done in this function. Note that
6865 * later when device is unloading, the driver should always call free_irq()
6866 * on all MSI-X vectors it has done request_irq() on before calling
6867 * pci_disable_msix(). Failure to do so results in a BUG_ON() and a device
6868 * will be left with MSI-X enabled and leaks its vectors.
6869 *
6870 * Return codes
af901ca1 6871 * 0 - successful
da0436e9
JS
6872 * other values - error
6873 **/
6874static int
6875lpfc_sli_enable_msix(struct lpfc_hba *phba)
6876{
6877 int rc, i;
6878 LPFC_MBOXQ_t *pmb;
6879
6880 /* Set up MSI-X multi-message vectors */
6881 for (i = 0; i < LPFC_MSIX_VECTORS; i++)
6882 phba->msix_entries[i].entry = i;
6883
6884 /* Configure MSI-X capability structure */
6885 rc = pci_enable_msix(phba->pcidev, phba->msix_entries,
6886 ARRAY_SIZE(phba->msix_entries));
6887 if (rc) {
6888 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
6889 "0420 PCI enable MSI-X failed (%d)\n", rc);
6890 goto msi_fail_out;
6891 }
6892 for (i = 0; i < LPFC_MSIX_VECTORS; i++)
6893 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
6894 "0477 MSI-X entry[%d]: vector=x%x "
6895 "message=%d\n", i,
6896 phba->msix_entries[i].vector,
6897 phba->msix_entries[i].entry);
6898 /*
6899 * Assign MSI-X vectors to interrupt handlers
6900 */
6901
6902 /* vector-0 is associated to slow-path handler */
6903 rc = request_irq(phba->msix_entries[0].vector,
6904 &lpfc_sli_sp_intr_handler, IRQF_SHARED,
6905 LPFC_SP_DRIVER_HANDLER_NAME, phba);
6906 if (rc) {
6907 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
6908 "0421 MSI-X slow-path request_irq failed "
6909 "(%d)\n", rc);
6910 goto msi_fail_out;
6911 }
6912
6913 /* vector-1 is associated to fast-path handler */
6914 rc = request_irq(phba->msix_entries[1].vector,
6915 &lpfc_sli_fp_intr_handler, IRQF_SHARED,
6916 LPFC_FP_DRIVER_HANDLER_NAME, phba);
6917
6918 if (rc) {
6919 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
6920 "0429 MSI-X fast-path request_irq failed "
6921 "(%d)\n", rc);
6922 goto irq_fail_out;
6923 }
6924
6925 /*
6926 * Configure HBA MSI-X attention conditions to messages
6927 */
6928 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
6929
6930 if (!pmb) {
6931 rc = -ENOMEM;
6932 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6933 "0474 Unable to allocate memory for issuing "
6934 "MBOX_CONFIG_MSI command\n");
6935 goto mem_fail_out;
6936 }
6937 rc = lpfc_config_msi(phba, pmb);
6938 if (rc)
6939 goto mbx_fail_out;
6940 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
6941 if (rc != MBX_SUCCESS) {
6942 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX,
6943 "0351 Config MSI mailbox command failed, "
6944 "mbxCmd x%x, mbxStatus x%x\n",
6945 pmb->u.mb.mbxCommand, pmb->u.mb.mbxStatus);
6946 goto mbx_fail_out;
6947 }
6948
6949 /* Free memory allocated for mailbox command */
6950 mempool_free(pmb, phba->mbox_mem_pool);
6951 return rc;
6952
6953mbx_fail_out:
6954 /* Free memory allocated for mailbox command */
6955 mempool_free(pmb, phba->mbox_mem_pool);
6956
6957mem_fail_out:
6958 /* free the irq already requested */
6959 free_irq(phba->msix_entries[1].vector, phba);
6960
6961irq_fail_out:
6962 /* free the irq already requested */
6963 free_irq(phba->msix_entries[0].vector, phba);
6964
6965msi_fail_out:
6966 /* Unconfigure MSI-X capability structure */
6967 pci_disable_msix(phba->pcidev);
6968 return rc;
6969}
6970
6971/**
6972 * lpfc_sli_disable_msix - Disable MSI-X interrupt mode on SLI-3 device.
6973 * @phba: pointer to lpfc hba data structure.
6974 *
6975 * This routine is invoked to release the MSI-X vectors and then disable the
6976 * MSI-X interrupt mode to device with SLI-3 interface spec.
6977 **/
6978static void
6979lpfc_sli_disable_msix(struct lpfc_hba *phba)
6980{
6981 int i;
6982
6983 /* Free up MSI-X multi-message vectors */
6984 for (i = 0; i < LPFC_MSIX_VECTORS; i++)
6985 free_irq(phba->msix_entries[i].vector, phba);
6986 /* Disable MSI-X */
6987 pci_disable_msix(phba->pcidev);
6988
6989 return;
6990}
6991
6992/**
6993 * lpfc_sli_enable_msi - Enable MSI interrupt mode on SLI-3 device.
6994 * @phba: pointer to lpfc hba data structure.
6995 *
6996 * This routine is invoked to enable the MSI interrupt mode to device with
6997 * SLI-3 interface spec. The kernel function pci_enable_msi() is called to
6998 * enable the MSI vector. The device driver is responsible for calling the
6999 * request_irq() to register MSI vector with a interrupt the handler, which
7000 * is done in this function.
7001 *
7002 * Return codes
af901ca1 7003 * 0 - successful
da0436e9
JS
7004 * other values - error
7005 */
7006static int
7007lpfc_sli_enable_msi(struct lpfc_hba *phba)
7008{
7009 int rc;
7010
7011 rc = pci_enable_msi(phba->pcidev);
7012 if (!rc)
7013 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
7014 "0462 PCI enable MSI mode success.\n");
7015 else {
7016 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
7017 "0471 PCI enable MSI mode failed (%d)\n", rc);
7018 return rc;
7019 }
7020
7021 rc = request_irq(phba->pcidev->irq, lpfc_sli_intr_handler,
7022 IRQF_SHARED, LPFC_DRIVER_NAME, phba);
7023 if (rc) {
7024 pci_disable_msi(phba->pcidev);
7025 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
7026 "0478 MSI request_irq failed (%d)\n", rc);
7027 }
7028 return rc;
7029}
7030
7031/**
7032 * lpfc_sli_disable_msi - Disable MSI interrupt mode to SLI-3 device.
7033 * @phba: pointer to lpfc hba data structure.
7034 *
7035 * This routine is invoked to disable the MSI interrupt mode to device with
7036 * SLI-3 interface spec. The driver calls free_irq() on MSI vector it has
7037 * done request_irq() on before calling pci_disable_msi(). Failure to do so
7038 * results in a BUG_ON() and a device will be left with MSI enabled and leaks
7039 * its vector.
7040 */
7041static void
7042lpfc_sli_disable_msi(struct lpfc_hba *phba)
7043{
7044 free_irq(phba->pcidev->irq, phba);
7045 pci_disable_msi(phba->pcidev);
7046 return;
7047}
7048
7049/**
7050 * lpfc_sli_enable_intr - Enable device interrupt to SLI-3 device.
7051 * @phba: pointer to lpfc hba data structure.
7052 *
7053 * This routine is invoked to enable device interrupt and associate driver's
7054 * interrupt handler(s) to interrupt vector(s) to device with SLI-3 interface
7055 * spec. Depends on the interrupt mode configured to the driver, the driver
7056 * will try to fallback from the configured interrupt mode to an interrupt
7057 * mode which is supported by the platform, kernel, and device in the order
7058 * of:
7059 * MSI-X -> MSI -> IRQ.
7060 *
7061 * Return codes
af901ca1 7062 * 0 - successful
da0436e9
JS
7063 * other values - error
7064 **/
7065static uint32_t
7066lpfc_sli_enable_intr(struct lpfc_hba *phba, uint32_t cfg_mode)
7067{
7068 uint32_t intr_mode = LPFC_INTR_ERROR;
7069 int retval;
7070
7071 if (cfg_mode == 2) {
7072 /* Need to issue conf_port mbox cmd before conf_msi mbox cmd */
7073 retval = lpfc_sli_config_port(phba, LPFC_SLI_REV3);
7074 if (!retval) {
7075 /* Now, try to enable MSI-X interrupt mode */
7076 retval = lpfc_sli_enable_msix(phba);
7077 if (!retval) {
7078 /* Indicate initialization to MSI-X mode */
7079 phba->intr_type = MSIX;
7080 intr_mode = 2;
7081 }
7082 }
7083 }
7084
7085 /* Fallback to MSI if MSI-X initialization failed */
7086 if (cfg_mode >= 1 && phba->intr_type == NONE) {
7087 retval = lpfc_sli_enable_msi(phba);
7088 if (!retval) {
7089 /* Indicate initialization to MSI mode */
7090 phba->intr_type = MSI;
7091 intr_mode = 1;
7092 }
7093 }
7094
7095 /* Fallback to INTx if both MSI-X/MSI initalization failed */
7096 if (phba->intr_type == NONE) {
7097 retval = request_irq(phba->pcidev->irq, lpfc_sli_intr_handler,
7098 IRQF_SHARED, LPFC_DRIVER_NAME, phba);
7099 if (!retval) {
7100 /* Indicate initialization to INTx mode */
7101 phba->intr_type = INTx;
7102 intr_mode = 0;
7103 }
7104 }
7105 return intr_mode;
7106}
7107
7108/**
7109 * lpfc_sli_disable_intr - Disable device interrupt to SLI-3 device.
7110 * @phba: pointer to lpfc hba data structure.
7111 *
7112 * This routine is invoked to disable device interrupt and disassociate the
7113 * driver's interrupt handler(s) from interrupt vector(s) to device with
7114 * SLI-3 interface spec. Depending on the interrupt mode, the driver will
7115 * release the interrupt vector(s) for the message signaled interrupt.
7116 **/
7117static void
7118lpfc_sli_disable_intr(struct lpfc_hba *phba)
7119{
7120 /* Disable the currently initialized interrupt mode */
7121 if (phba->intr_type == MSIX)
7122 lpfc_sli_disable_msix(phba);
7123 else if (phba->intr_type == MSI)
7124 lpfc_sli_disable_msi(phba);
7125 else if (phba->intr_type == INTx)
7126 free_irq(phba->pcidev->irq, phba);
7127
7128 /* Reset interrupt management states */
7129 phba->intr_type = NONE;
7130 phba->sli.slistat.sli_intr = 0;
7131
7132 return;
7133}
7134
7135/**
7136 * lpfc_sli4_enable_msix - Enable MSI-X interrupt mode to SLI-4 device
7137 * @phba: pointer to lpfc hba data structure.
7138 *
7139 * This routine is invoked to enable the MSI-X interrupt vectors to device
7140 * with SLI-4 interface spec. The kernel function pci_enable_msix() is called
7141 * to enable the MSI-X vectors. Note that pci_enable_msix(), once invoked,
7142 * enables either all or nothing, depending on the current availability of
7143 * PCI vector resources. The device driver is responsible for calling the
7144 * individual request_irq() to register each MSI-X vector with a interrupt
7145 * handler, which is done in this function. Note that later when device is
7146 * unloading, the driver should always call free_irq() on all MSI-X vectors
7147 * it has done request_irq() on before calling pci_disable_msix(). Failure
7148 * to do so results in a BUG_ON() and a device will be left with MSI-X
7149 * enabled and leaks its vectors.
7150 *
7151 * Return codes
af901ca1 7152 * 0 - successful
da0436e9
JS
7153 * other values - error
7154 **/
7155static int
7156lpfc_sli4_enable_msix(struct lpfc_hba *phba)
7157{
75baf696 7158 int vectors, rc, index;
da0436e9
JS
7159
7160 /* Set up MSI-X multi-message vectors */
7161 for (index = 0; index < phba->sli4_hba.cfg_eqn; index++)
7162 phba->sli4_hba.msix_entries[index].entry = index;
7163
7164 /* Configure MSI-X capability structure */
75baf696
JS
7165 vectors = phba->sli4_hba.cfg_eqn;
7166enable_msix_vectors:
da0436e9 7167 rc = pci_enable_msix(phba->pcidev, phba->sli4_hba.msix_entries,
75baf696
JS
7168 vectors);
7169 if (rc > 1) {
7170 vectors = rc;
7171 goto enable_msix_vectors;
7172 } else if (rc) {
da0436e9
JS
7173 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
7174 "0484 PCI enable MSI-X failed (%d)\n", rc);
7175 goto msi_fail_out;
7176 }
75baf696 7177
da0436e9 7178 /* Log MSI-X vector assignment */
75baf696 7179 for (index = 0; index < vectors; index++)
da0436e9
JS
7180 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
7181 "0489 MSI-X entry[%d]: vector=x%x "
7182 "message=%d\n", index,
7183 phba->sli4_hba.msix_entries[index].vector,
7184 phba->sli4_hba.msix_entries[index].entry);
7185 /*
7186 * Assign MSI-X vectors to interrupt handlers
7187 */
7188
7189 /* The first vector must associated to slow-path handler for MQ */
7190 rc = request_irq(phba->sli4_hba.msix_entries[0].vector,
7191 &lpfc_sli4_sp_intr_handler, IRQF_SHARED,
7192 LPFC_SP_DRIVER_HANDLER_NAME, phba);
7193 if (rc) {
7194 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
7195 "0485 MSI-X slow-path request_irq failed "
7196 "(%d)\n", rc);
7197 goto msi_fail_out;
7198 }
7199
7200 /* The rest of the vector(s) are associated to fast-path handler(s) */
75baf696 7201 for (index = 1; index < vectors; index++) {
da0436e9
JS
7202 phba->sli4_hba.fcp_eq_hdl[index - 1].idx = index - 1;
7203 phba->sli4_hba.fcp_eq_hdl[index - 1].phba = phba;
7204 rc = request_irq(phba->sli4_hba.msix_entries[index].vector,
7205 &lpfc_sli4_fp_intr_handler, IRQF_SHARED,
7206 LPFC_FP_DRIVER_HANDLER_NAME,
7207 &phba->sli4_hba.fcp_eq_hdl[index - 1]);
7208 if (rc) {
7209 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
7210 "0486 MSI-X fast-path (%d) "
7211 "request_irq failed (%d)\n", index, rc);
7212 goto cfg_fail_out;
7213 }
7214 }
75baf696 7215 phba->sli4_hba.msix_vec_nr = vectors;
da0436e9
JS
7216
7217 return rc;
7218
7219cfg_fail_out:
7220 /* free the irq already requested */
7221 for (--index; index >= 1; index--)
7222 free_irq(phba->sli4_hba.msix_entries[index - 1].vector,
7223 &phba->sli4_hba.fcp_eq_hdl[index - 1]);
7224
7225 /* free the irq already requested */
7226 free_irq(phba->sli4_hba.msix_entries[0].vector, phba);
7227
7228msi_fail_out:
7229 /* Unconfigure MSI-X capability structure */
7230 pci_disable_msix(phba->pcidev);
7231 return rc;
7232}
7233
7234/**
7235 * lpfc_sli4_disable_msix - Disable MSI-X interrupt mode to SLI-4 device
7236 * @phba: pointer to lpfc hba data structure.
7237 *
7238 * This routine is invoked to release the MSI-X vectors and then disable the
7239 * MSI-X interrupt mode to device with SLI-4 interface spec.
7240 **/
7241static void
7242lpfc_sli4_disable_msix(struct lpfc_hba *phba)
7243{
7244 int index;
7245
7246 /* Free up MSI-X multi-message vectors */
7247 free_irq(phba->sli4_hba.msix_entries[0].vector, phba);
7248
75baf696 7249 for (index = 1; index < phba->sli4_hba.msix_vec_nr; index++)
da0436e9
JS
7250 free_irq(phba->sli4_hba.msix_entries[index].vector,
7251 &phba->sli4_hba.fcp_eq_hdl[index - 1]);
75baf696 7252
da0436e9
JS
7253 /* Disable MSI-X */
7254 pci_disable_msix(phba->pcidev);
7255
7256 return;
7257}
7258
7259/**
7260 * lpfc_sli4_enable_msi - Enable MSI interrupt mode to SLI-4 device
7261 * @phba: pointer to lpfc hba data structure.
7262 *
7263 * This routine is invoked to enable the MSI interrupt mode to device with
7264 * SLI-4 interface spec. The kernel function pci_enable_msi() is called
7265 * to enable the MSI vector. The device driver is responsible for calling
7266 * the request_irq() to register MSI vector with a interrupt the handler,
7267 * which is done in this function.
7268 *
7269 * Return codes
af901ca1 7270 * 0 - successful
da0436e9
JS
7271 * other values - error
7272 **/
7273static int
7274lpfc_sli4_enable_msi(struct lpfc_hba *phba)
7275{
7276 int rc, index;
7277
7278 rc = pci_enable_msi(phba->pcidev);
7279 if (!rc)
7280 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
7281 "0487 PCI enable MSI mode success.\n");
7282 else {
7283 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
7284 "0488 PCI enable MSI mode failed (%d)\n", rc);
7285 return rc;
7286 }
7287
7288 rc = request_irq(phba->pcidev->irq, lpfc_sli4_intr_handler,
7289 IRQF_SHARED, LPFC_DRIVER_NAME, phba);
7290 if (rc) {
7291 pci_disable_msi(phba->pcidev);
7292 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
7293 "0490 MSI request_irq failed (%d)\n", rc);
75baf696 7294 return rc;
da0436e9
JS
7295 }
7296
7297 for (index = 0; index < phba->cfg_fcp_eq_count; index++) {
7298 phba->sli4_hba.fcp_eq_hdl[index].idx = index;
7299 phba->sli4_hba.fcp_eq_hdl[index].phba = phba;
7300 }
7301
75baf696 7302 return 0;
da0436e9
JS
7303}
7304
7305/**
7306 * lpfc_sli4_disable_msi - Disable MSI interrupt mode to SLI-4 device
7307 * @phba: pointer to lpfc hba data structure.
7308 *
7309 * This routine is invoked to disable the MSI interrupt mode to device with
7310 * SLI-4 interface spec. The driver calls free_irq() on MSI vector it has
7311 * done request_irq() on before calling pci_disable_msi(). Failure to do so
7312 * results in a BUG_ON() and a device will be left with MSI enabled and leaks
7313 * its vector.
7314 **/
7315static void
7316lpfc_sli4_disable_msi(struct lpfc_hba *phba)
7317{
7318 free_irq(phba->pcidev->irq, phba);
7319 pci_disable_msi(phba->pcidev);
7320 return;
7321}
7322
7323/**
7324 * lpfc_sli4_enable_intr - Enable device interrupt to SLI-4 device
7325 * @phba: pointer to lpfc hba data structure.
7326 *
7327 * This routine is invoked to enable device interrupt and associate driver's
7328 * interrupt handler(s) to interrupt vector(s) to device with SLI-4
7329 * interface spec. Depends on the interrupt mode configured to the driver,
7330 * the driver will try to fallback from the configured interrupt mode to an
7331 * interrupt mode which is supported by the platform, kernel, and device in
7332 * the order of:
7333 * MSI-X -> MSI -> IRQ.
7334 *
7335 * Return codes
af901ca1 7336 * 0 - successful
da0436e9
JS
7337 * other values - error
7338 **/
7339static uint32_t
7340lpfc_sli4_enable_intr(struct lpfc_hba *phba, uint32_t cfg_mode)
7341{
7342 uint32_t intr_mode = LPFC_INTR_ERROR;
7343 int retval, index;
7344
7345 if (cfg_mode == 2) {
7346 /* Preparation before conf_msi mbox cmd */
7347 retval = 0;
7348 if (!retval) {
7349 /* Now, try to enable MSI-X interrupt mode */
7350 retval = lpfc_sli4_enable_msix(phba);
7351 if (!retval) {
7352 /* Indicate initialization to MSI-X mode */
7353 phba->intr_type = MSIX;
7354 intr_mode = 2;
7355 }
7356 }
7357 }
7358
7359 /* Fallback to MSI if MSI-X initialization failed */
7360 if (cfg_mode >= 1 && phba->intr_type == NONE) {
7361 retval = lpfc_sli4_enable_msi(phba);
7362 if (!retval) {
7363 /* Indicate initialization to MSI mode */
7364 phba->intr_type = MSI;
7365 intr_mode = 1;
7366 }
7367 }
7368
7369 /* Fallback to INTx if both MSI-X/MSI initalization failed */
7370 if (phba->intr_type == NONE) {
7371 retval = request_irq(phba->pcidev->irq, lpfc_sli4_intr_handler,
7372 IRQF_SHARED, LPFC_DRIVER_NAME, phba);
7373 if (!retval) {
7374 /* Indicate initialization to INTx mode */
7375 phba->intr_type = INTx;
7376 intr_mode = 0;
7377 for (index = 0; index < phba->cfg_fcp_eq_count;
7378 index++) {
7379 phba->sli4_hba.fcp_eq_hdl[index].idx = index;
7380 phba->sli4_hba.fcp_eq_hdl[index].phba = phba;
7381 }
7382 }
7383 }
7384 return intr_mode;
7385}
7386
7387/**
7388 * lpfc_sli4_disable_intr - Disable device interrupt to SLI-4 device
7389 * @phba: pointer to lpfc hba data structure.
7390 *
7391 * This routine is invoked to disable device interrupt and disassociate
7392 * the driver's interrupt handler(s) from interrupt vector(s) to device
7393 * with SLI-4 interface spec. Depending on the interrupt mode, the driver
7394 * will release the interrupt vector(s) for the message signaled interrupt.
7395 **/
7396static void
7397lpfc_sli4_disable_intr(struct lpfc_hba *phba)
7398{
7399 /* Disable the currently initialized interrupt mode */
7400 if (phba->intr_type == MSIX)
7401 lpfc_sli4_disable_msix(phba);
7402 else if (phba->intr_type == MSI)
7403 lpfc_sli4_disable_msi(phba);
7404 else if (phba->intr_type == INTx)
7405 free_irq(phba->pcidev->irq, phba);
7406
7407 /* Reset interrupt management states */
7408 phba->intr_type = NONE;
7409 phba->sli.slistat.sli_intr = 0;
7410
7411 return;
7412}
7413
7414/**
7415 * lpfc_unset_hba - Unset SLI3 hba device initialization
7416 * @phba: pointer to lpfc hba data structure.
7417 *
7418 * This routine is invoked to unset the HBA device initialization steps to
7419 * a device with SLI-3 interface spec.
7420 **/
7421static void
7422lpfc_unset_hba(struct lpfc_hba *phba)
7423{
7424 struct lpfc_vport *vport = phba->pport;
7425 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
7426
7427 spin_lock_irq(shost->host_lock);
7428 vport->load_flag |= FC_UNLOADING;
7429 spin_unlock_irq(shost->host_lock);
7430
7431 lpfc_stop_hba_timers(phba);
7432
7433 phba->pport->work_port_events = 0;
7434
7435 lpfc_sli_hba_down(phba);
7436
7437 lpfc_sli_brdrestart(phba);
7438
7439 lpfc_sli_disable_intr(phba);
7440
7441 return;
7442}
7443
7444/**
7445 * lpfc_sli4_unset_hba - Unset SLI4 hba device initialization.
7446 * @phba: pointer to lpfc hba data structure.
7447 *
7448 * This routine is invoked to unset the HBA device initialization steps to
7449 * a device with SLI-4 interface spec.
7450 **/
7451static void
7452lpfc_sli4_unset_hba(struct lpfc_hba *phba)
7453{
7454 struct lpfc_vport *vport = phba->pport;
7455 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
7456
7457 spin_lock_irq(shost->host_lock);
7458 vport->load_flag |= FC_UNLOADING;
7459 spin_unlock_irq(shost->host_lock);
7460
7461 phba->pport->work_port_events = 0;
7462
3677a3a7
JS
7463 /* Stop the SLI4 device port */
7464 lpfc_stop_port(phba);
da0436e9
JS
7465
7466 lpfc_sli4_disable_intr(phba);
7467
3677a3a7
JS
7468 /* Reset SLI4 HBA FCoE function */
7469 lpfc_pci_function_reset(phba);
7470
da0436e9
JS
7471 return;
7472}
7473
5af5eee7
JS
7474/**
7475 * lpfc_sli4_xri_exchange_busy_wait - Wait for device XRI exchange busy
7476 * @phba: Pointer to HBA context object.
7477 *
7478 * This function is called in the SLI4 code path to wait for completion
7479 * of device's XRIs exchange busy. It will check the XRI exchange busy
7480 * on outstanding FCP and ELS I/Os every 10ms for up to 10 seconds; after
7481 * that, it will check the XRI exchange busy on outstanding FCP and ELS
7482 * I/Os every 30 seconds, log error message, and wait forever. Only when
7483 * all XRI exchange busy complete, the driver unload shall proceed with
7484 * invoking the function reset ioctl mailbox command to the CNA and the
7485 * the rest of the driver unload resource release.
7486 **/
7487static void
7488lpfc_sli4_xri_exchange_busy_wait(struct lpfc_hba *phba)
7489{
7490 int wait_time = 0;
7491 int fcp_xri_cmpl = list_empty(&phba->sli4_hba.lpfc_abts_scsi_buf_list);
7492 int els_xri_cmpl = list_empty(&phba->sli4_hba.lpfc_abts_els_sgl_list);
7493
7494 while (!fcp_xri_cmpl || !els_xri_cmpl) {
7495 if (wait_time > LPFC_XRI_EXCH_BUSY_WAIT_TMO) {
7496 if (!fcp_xri_cmpl)
7497 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7498 "2877 FCP XRI exchange busy "
7499 "wait time: %d seconds.\n",
7500 wait_time/1000);
7501 if (!els_xri_cmpl)
7502 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7503 "2878 ELS XRI exchange busy "
7504 "wait time: %d seconds.\n",
7505 wait_time/1000);
7506 msleep(LPFC_XRI_EXCH_BUSY_WAIT_T2);
7507 wait_time += LPFC_XRI_EXCH_BUSY_WAIT_T2;
7508 } else {
7509 msleep(LPFC_XRI_EXCH_BUSY_WAIT_T1);
7510 wait_time += LPFC_XRI_EXCH_BUSY_WAIT_T1;
7511 }
7512 fcp_xri_cmpl =
7513 list_empty(&phba->sli4_hba.lpfc_abts_scsi_buf_list);
7514 els_xri_cmpl =
7515 list_empty(&phba->sli4_hba.lpfc_abts_els_sgl_list);
7516 }
7517}
7518
da0436e9
JS
7519/**
7520 * lpfc_sli4_hba_unset - Unset the fcoe hba
7521 * @phba: Pointer to HBA context object.
7522 *
7523 * This function is called in the SLI4 code path to reset the HBA's FCoE
7524 * function. The caller is not required to hold any lock. This routine
7525 * issues PCI function reset mailbox command to reset the FCoE function.
7526 * At the end of the function, it calls lpfc_hba_down_post function to
7527 * free any pending commands.
7528 **/
7529static void
7530lpfc_sli4_hba_unset(struct lpfc_hba *phba)
7531{
7532 int wait_cnt = 0;
7533 LPFC_MBOXQ_t *mboxq;
7534
7535 lpfc_stop_hba_timers(phba);
7536 phba->sli4_hba.intr_enable = 0;
7537
7538 /*
7539 * Gracefully wait out the potential current outstanding asynchronous
7540 * mailbox command.
7541 */
7542
7543 /* First, block any pending async mailbox command from posted */
7544 spin_lock_irq(&phba->hbalock);
7545 phba->sli.sli_flag |= LPFC_SLI_ASYNC_MBX_BLK;
7546 spin_unlock_irq(&phba->hbalock);
7547 /* Now, trying to wait it out if we can */
7548 while (phba->sli.sli_flag & LPFC_SLI_MBOX_ACTIVE) {
7549 msleep(10);
7550 if (++wait_cnt > LPFC_ACTIVE_MBOX_WAIT_CNT)
7551 break;
7552 }
7553 /* Forcefully release the outstanding mailbox command if timed out */
7554 if (phba->sli.sli_flag & LPFC_SLI_MBOX_ACTIVE) {
7555 spin_lock_irq(&phba->hbalock);
7556 mboxq = phba->sli.mbox_active;
7557 mboxq->u.mb.mbxStatus = MBX_NOT_FINISHED;
7558 __lpfc_mbox_cmpl_put(phba, mboxq);
7559 phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
7560 phba->sli.mbox_active = NULL;
7561 spin_unlock_irq(&phba->hbalock);
7562 }
7563
5af5eee7
JS
7564 /* Abort all iocbs associated with the hba */
7565 lpfc_sli_hba_iocb_abort(phba);
7566
7567 /* Wait for completion of device XRI exchange busy */
7568 lpfc_sli4_xri_exchange_busy_wait(phba);
7569
da0436e9
JS
7570 /* Disable PCI subsystem interrupt */
7571 lpfc_sli4_disable_intr(phba);
7572
7573 /* Stop kthread signal shall trigger work_done one more time */
7574 kthread_stop(phba->worker_thread);
7575
3677a3a7
JS
7576 /* Reset SLI4 HBA FCoE function */
7577 lpfc_pci_function_reset(phba);
7578
da0436e9
JS
7579 /* Stop the SLI4 device port */
7580 phba->pport->work_port_events = 0;
7581}
7582
28baac74
JS
7583 /**
7584 * lpfc_pc_sli4_params_get - Get the SLI4_PARAMS port capabilities.
7585 * @phba: Pointer to HBA context object.
7586 * @mboxq: Pointer to the mailboxq memory for the mailbox command response.
7587 *
7588 * This function is called in the SLI4 code path to read the port's
7589 * sli4 capabilities.
7590 *
7591 * This function may be be called from any context that can block-wait
7592 * for the completion. The expectation is that this routine is called
7593 * typically from probe_one or from the online routine.
7594 **/
7595int
7596lpfc_pc_sli4_params_get(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
7597{
7598 int rc;
7599 struct lpfc_mqe *mqe;
7600 struct lpfc_pc_sli4_params *sli4_params;
7601 uint32_t mbox_tmo;
7602
7603 rc = 0;
7604 mqe = &mboxq->u.mqe;
7605
7606 /* Read the port's SLI4 Parameters port capabilities */
7607 lpfc_sli4_params(mboxq);
7608 if (!phba->sli4_hba.intr_enable)
7609 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
7610 else {
7611 mbox_tmo = lpfc_mbox_tmo_val(phba, MBX_PORT_CAPABILITIES);
7612 rc = lpfc_sli_issue_mbox_wait(phba, mboxq, mbox_tmo);
7613 }
7614
7615 if (unlikely(rc))
7616 return 1;
7617
7618 sli4_params = &phba->sli4_hba.pc_sli4_params;
7619 sli4_params->if_type = bf_get(if_type, &mqe->un.sli4_params);
7620 sli4_params->sli_rev = bf_get(sli_rev, &mqe->un.sli4_params);
7621 sli4_params->sli_family = bf_get(sli_family, &mqe->un.sli4_params);
7622 sli4_params->featurelevel_1 = bf_get(featurelevel_1,
7623 &mqe->un.sli4_params);
7624 sli4_params->featurelevel_2 = bf_get(featurelevel_2,
7625 &mqe->un.sli4_params);
7626 sli4_params->proto_types = mqe->un.sli4_params.word3;
7627 sli4_params->sge_supp_len = mqe->un.sli4_params.sge_supp_len;
7628 sli4_params->if_page_sz = bf_get(if_page_sz, &mqe->un.sli4_params);
7629 sli4_params->rq_db_window = bf_get(rq_db_window, &mqe->un.sli4_params);
7630 sli4_params->loopbk_scope = bf_get(loopbk_scope, &mqe->un.sli4_params);
7631 sli4_params->eq_pages_max = bf_get(eq_pages, &mqe->un.sli4_params);
7632 sli4_params->eqe_size = bf_get(eqe_size, &mqe->un.sli4_params);
7633 sli4_params->cq_pages_max = bf_get(cq_pages, &mqe->un.sli4_params);
7634 sli4_params->cqe_size = bf_get(cqe_size, &mqe->un.sli4_params);
7635 sli4_params->mq_pages_max = bf_get(mq_pages, &mqe->un.sli4_params);
7636 sli4_params->mqe_size = bf_get(mqe_size, &mqe->un.sli4_params);
7637 sli4_params->mq_elem_cnt = bf_get(mq_elem_cnt, &mqe->un.sli4_params);
7638 sli4_params->wq_pages_max = bf_get(wq_pages, &mqe->un.sli4_params);
7639 sli4_params->wqe_size = bf_get(wqe_size, &mqe->un.sli4_params);
7640 sli4_params->rq_pages_max = bf_get(rq_pages, &mqe->un.sli4_params);
7641 sli4_params->rqe_size = bf_get(rqe_size, &mqe->un.sli4_params);
7642 sli4_params->hdr_pages_max = bf_get(hdr_pages, &mqe->un.sli4_params);
7643 sli4_params->hdr_size = bf_get(hdr_size, &mqe->un.sli4_params);
7644 sli4_params->hdr_pp_align = bf_get(hdr_pp_align, &mqe->un.sli4_params);
7645 sli4_params->sgl_pages_max = bf_get(sgl_pages, &mqe->un.sli4_params);
7646 sli4_params->sgl_pp_align = bf_get(sgl_pp_align, &mqe->un.sli4_params);
7647 return rc;
7648}
7649
da0436e9
JS
7650/**
7651 * lpfc_pci_probe_one_s3 - PCI probe func to reg SLI-3 device to PCI subsystem.
7652 * @pdev: pointer to PCI device
7653 * @pid: pointer to PCI device identifier
7654 *
7655 * This routine is to be called to attach a device with SLI-3 interface spec
7656 * to the PCI subsystem. When an Emulex HBA with SLI-3 interface spec is
7657 * presented on PCI bus, the kernel PCI subsystem looks at PCI device-specific
7658 * information of the device and driver to see if the driver state that it can
7659 * support this kind of device. If the match is successful, the driver core
7660 * invokes this routine. If this routine determines it can claim the HBA, it
7661 * does all the initialization that it needs to do to handle the HBA properly.
7662 *
7663 * Return code
7664 * 0 - driver can claim the device
7665 * negative value - driver can not claim the device
7666 **/
7667static int __devinit
7668lpfc_pci_probe_one_s3(struct pci_dev *pdev, const struct pci_device_id *pid)
7669{
7670 struct lpfc_hba *phba;
7671 struct lpfc_vport *vport = NULL;
6669f9bb 7672 struct Scsi_Host *shost = NULL;
da0436e9
JS
7673 int error;
7674 uint32_t cfg_mode, intr_mode;
7675
7676 /* Allocate memory for HBA structure */
7677 phba = lpfc_hba_alloc(pdev);
7678 if (!phba)
7679 return -ENOMEM;
7680
7681 /* Perform generic PCI device enabling operation */
7682 error = lpfc_enable_pci_dev(phba);
7683 if (error) {
7684 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7685 "1401 Failed to enable pci device.\n");
7686 goto out_free_phba;
7687 }
7688
7689 /* Set up SLI API function jump table for PCI-device group-0 HBAs */
7690 error = lpfc_api_table_setup(phba, LPFC_PCI_DEV_LP);
7691 if (error)
7692 goto out_disable_pci_dev;
7693
7694 /* Set up SLI-3 specific device PCI memory space */
7695 error = lpfc_sli_pci_mem_setup(phba);
7696 if (error) {
7697 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7698 "1402 Failed to set up pci memory space.\n");
7699 goto out_disable_pci_dev;
7700 }
7701
7702 /* Set up phase-1 common device driver resources */
7703 error = lpfc_setup_driver_resource_phase1(phba);
7704 if (error) {
7705 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7706 "1403 Failed to set up driver resource.\n");
7707 goto out_unset_pci_mem_s3;
7708 }
7709
7710 /* Set up SLI-3 specific device driver resources */
7711 error = lpfc_sli_driver_resource_setup(phba);
7712 if (error) {
7713 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7714 "1404 Failed to set up driver resource.\n");
7715 goto out_unset_pci_mem_s3;
7716 }
7717
7718 /* Initialize and populate the iocb list per host */
7719 error = lpfc_init_iocb_list(phba, LPFC_IOCB_LIST_CNT);
7720 if (error) {
7721 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7722 "1405 Failed to initialize iocb list.\n");
7723 goto out_unset_driver_resource_s3;
7724 }
7725
7726 /* Set up common device driver resources */
7727 error = lpfc_setup_driver_resource_phase2(phba);
7728 if (error) {
7729 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7730 "1406 Failed to set up driver resource.\n");
7731 goto out_free_iocb_list;
7732 }
7733
7734 /* Create SCSI host to the physical port */
7735 error = lpfc_create_shost(phba);
7736 if (error) {
7737 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7738 "1407 Failed to create scsi host.\n");
7739 goto out_unset_driver_resource;
7740 }
7741
7742 /* Configure sysfs attributes */
7743 vport = phba->pport;
7744 error = lpfc_alloc_sysfs_attr(vport);
7745 if (error) {
7746 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7747 "1476 Failed to allocate sysfs attr\n");
7748 goto out_destroy_shost;
7749 }
7750
6669f9bb 7751 shost = lpfc_shost_from_vport(vport); /* save shost for error cleanup */
da0436e9
JS
7752 /* Now, trying to enable interrupt and bring up the device */
7753 cfg_mode = phba->cfg_use_msi;
7754 while (true) {
7755 /* Put device to a known state before enabling interrupt */
7756 lpfc_stop_port(phba);
7757 /* Configure and enable interrupt */
7758 intr_mode = lpfc_sli_enable_intr(phba, cfg_mode);
7759 if (intr_mode == LPFC_INTR_ERROR) {
7760 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7761 "0431 Failed to enable interrupt.\n");
7762 error = -ENODEV;
7763 goto out_free_sysfs_attr;
7764 }
7765 /* SLI-3 HBA setup */
7766 if (lpfc_sli_hba_setup(phba)) {
7767 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7768 "1477 Failed to set up hba\n");
7769 error = -ENODEV;
7770 goto out_remove_device;
7771 }
7772
7773 /* Wait 50ms for the interrupts of previous mailbox commands */
7774 msleep(50);
7775 /* Check active interrupts on message signaled interrupts */
7776 if (intr_mode == 0 ||
7777 phba->sli.slistat.sli_intr > LPFC_MSIX_VECTORS) {
7778 /* Log the current active interrupt mode */
7779 phba->intr_mode = intr_mode;
7780 lpfc_log_intr_mode(phba, intr_mode);
7781 break;
7782 } else {
7783 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
7784 "0447 Configure interrupt mode (%d) "
7785 "failed active interrupt test.\n",
7786 intr_mode);
7787 /* Disable the current interrupt mode */
7788 lpfc_sli_disable_intr(phba);
7789 /* Try next level of interrupt mode */
7790 cfg_mode = --intr_mode;
7791 }
7792 }
7793
7794 /* Perform post initialization setup */
7795 lpfc_post_init_setup(phba);
7796
7797 /* Check if there are static vports to be created. */
7798 lpfc_create_static_vport(phba);
7799
7800 return 0;
7801
7802out_remove_device:
7803 lpfc_unset_hba(phba);
7804out_free_sysfs_attr:
7805 lpfc_free_sysfs_attr(vport);
7806out_destroy_shost:
7807 lpfc_destroy_shost(phba);
7808out_unset_driver_resource:
7809 lpfc_unset_driver_resource_phase2(phba);
7810out_free_iocb_list:
7811 lpfc_free_iocb_list(phba);
7812out_unset_driver_resource_s3:
7813 lpfc_sli_driver_resource_unset(phba);
7814out_unset_pci_mem_s3:
7815 lpfc_sli_pci_mem_unset(phba);
7816out_disable_pci_dev:
7817 lpfc_disable_pci_dev(phba);
6669f9bb
JS
7818 if (shost)
7819 scsi_host_put(shost);
da0436e9
JS
7820out_free_phba:
7821 lpfc_hba_free(phba);
7822 return error;
7823}
7824
7825/**
7826 * lpfc_pci_remove_one_s3 - PCI func to unreg SLI-3 device from PCI subsystem.
7827 * @pdev: pointer to PCI device
7828 *
7829 * This routine is to be called to disattach a device with SLI-3 interface
7830 * spec from PCI subsystem. When an Emulex HBA with SLI-3 interface spec is
7831 * removed from PCI bus, it performs all the necessary cleanup for the HBA
7832 * device to be removed from the PCI subsystem properly.
7833 **/
7834static void __devexit
7835lpfc_pci_remove_one_s3(struct pci_dev *pdev)
7836{
7837 struct Scsi_Host *shost = pci_get_drvdata(pdev);
7838 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
7839 struct lpfc_vport **vports;
7840 struct lpfc_hba *phba = vport->phba;
7841 int i;
7842 int bars = pci_select_bars(pdev, IORESOURCE_MEM);
7843
7844 spin_lock_irq(&phba->hbalock);
7845 vport->load_flag |= FC_UNLOADING;
7846 spin_unlock_irq(&phba->hbalock);
7847
7848 lpfc_free_sysfs_attr(vport);
7849
7850 /* Release all the vports against this physical port */
7851 vports = lpfc_create_vport_work_array(phba);
7852 if (vports != NULL)
7853 for (i = 1; i <= phba->max_vports && vports[i] != NULL; i++)
7854 fc_vport_terminate(vports[i]->fc_vport);
7855 lpfc_destroy_vport_work_array(phba, vports);
7856
7857 /* Remove FC host and then SCSI host with the physical port */
7858 fc_remove_host(shost);
7859 scsi_remove_host(shost);
7860 lpfc_cleanup(vport);
7861
7862 /*
7863 * Bring down the SLI Layer. This step disable all interrupts,
7864 * clears the rings, discards all mailbox commands, and resets
7865 * the HBA.
7866 */
7867
7868 /* HBA interrupt will be diabled after this call */
7869 lpfc_sli_hba_down(phba);
7870 /* Stop kthread signal shall trigger work_done one more time */
7871 kthread_stop(phba->worker_thread);
7872 /* Final cleanup of txcmplq and reset the HBA */
7873 lpfc_sli_brdrestart(phba);
7874
7875 lpfc_stop_hba_timers(phba);
7876 spin_lock_irq(&phba->hbalock);
7877 list_del_init(&vport->listentry);
7878 spin_unlock_irq(&phba->hbalock);
7879
7880 lpfc_debugfs_terminate(vport);
7881
7882 /* Disable interrupt */
7883 lpfc_sli_disable_intr(phba);
7884
7885 pci_set_drvdata(pdev, NULL);
7886 scsi_host_put(shost);
7887
7888 /*
7889 * Call scsi_free before mem_free since scsi bufs are released to their
7890 * corresponding pools here.
7891 */
7892 lpfc_scsi_free(phba);
7893 lpfc_mem_free_all(phba);
7894
7895 dma_free_coherent(&pdev->dev, lpfc_sli_hbq_size(),
7896 phba->hbqslimp.virt, phba->hbqslimp.phys);
7897
7898 /* Free resources associated with SLI2 interface */
7899 dma_free_coherent(&pdev->dev, SLI2_SLIM_SIZE,
7900 phba->slim2p.virt, phba->slim2p.phys);
7901
7902 /* unmap adapter SLIM and Control Registers */
7903 iounmap(phba->ctrl_regs_memmap_p);
7904 iounmap(phba->slim_memmap_p);
7905
7906 lpfc_hba_free(phba);
7907
7908 pci_release_selected_regions(pdev, bars);
7909 pci_disable_device(pdev);
7910}
7911
7912/**
7913 * lpfc_pci_suspend_one_s3 - PCI func to suspend SLI-3 device for power mgmnt
7914 * @pdev: pointer to PCI device
7915 * @msg: power management message
7916 *
7917 * This routine is to be called from the kernel's PCI subsystem to support
7918 * system Power Management (PM) to device with SLI-3 interface spec. When
7919 * PM invokes this method, it quiesces the device by stopping the driver's
7920 * worker thread for the device, turning off device's interrupt and DMA,
7921 * and bring the device offline. Note that as the driver implements the
7922 * minimum PM requirements to a power-aware driver's PM support for the
7923 * suspend/resume -- all the possible PM messages (SUSPEND, HIBERNATE, FREEZE)
7924 * to the suspend() method call will be treated as SUSPEND and the driver will
7925 * fully reinitialize its device during resume() method call, the driver will
7926 * set device to PCI_D3hot state in PCI config space instead of setting it
7927 * according to the @msg provided by the PM.
7928 *
7929 * Return code
7930 * 0 - driver suspended the device
7931 * Error otherwise
7932 **/
7933static int
7934lpfc_pci_suspend_one_s3(struct pci_dev *pdev, pm_message_t msg)
7935{
7936 struct Scsi_Host *shost = pci_get_drvdata(pdev);
7937 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
7938
7939 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
7940 "0473 PCI device Power Management suspend.\n");
7941
7942 /* Bring down the device */
7943 lpfc_offline_prep(phba);
7944 lpfc_offline(phba);
7945 kthread_stop(phba->worker_thread);
7946
7947 /* Disable interrupt from device */
7948 lpfc_sli_disable_intr(phba);
7949
7950 /* Save device state to PCI config space */
7951 pci_save_state(pdev);
7952 pci_set_power_state(pdev, PCI_D3hot);
7953
7954 return 0;
7955}
7956
7957/**
7958 * lpfc_pci_resume_one_s3 - PCI func to resume SLI-3 device for power mgmnt
7959 * @pdev: pointer to PCI device
7960 *
7961 * This routine is to be called from the kernel's PCI subsystem to support
7962 * system Power Management (PM) to device with SLI-3 interface spec. When PM
7963 * invokes this method, it restores the device's PCI config space state and
7964 * fully reinitializes the device and brings it online. Note that as the
7965 * driver implements the minimum PM requirements to a power-aware driver's
7966 * PM for suspend/resume -- all the possible PM messages (SUSPEND, HIBERNATE,
7967 * FREEZE) to the suspend() method call will be treated as SUSPEND and the
7968 * driver will fully reinitialize its device during resume() method call,
7969 * the device will be set to PCI_D0 directly in PCI config space before
7970 * restoring the state.
7971 *
7972 * Return code
7973 * 0 - driver suspended the device
7974 * Error otherwise
7975 **/
7976static int
7977lpfc_pci_resume_one_s3(struct pci_dev *pdev)
7978{
7979 struct Scsi_Host *shost = pci_get_drvdata(pdev);
7980 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
7981 uint32_t intr_mode;
7982 int error;
7983
7984 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
7985 "0452 PCI device Power Management resume.\n");
7986
7987 /* Restore device state from PCI config space */
7988 pci_set_power_state(pdev, PCI_D0);
7989 pci_restore_state(pdev);
0d878419 7990
1dfb5a47
JS
7991 /*
7992 * As the new kernel behavior of pci_restore_state() API call clears
7993 * device saved_state flag, need to save the restored state again.
7994 */
7995 pci_save_state(pdev);
7996
da0436e9
JS
7997 if (pdev->is_busmaster)
7998 pci_set_master(pdev);
7999
8000 /* Startup the kernel thread for this host adapter. */
8001 phba->worker_thread = kthread_run(lpfc_do_work, phba,
8002 "lpfc_worker_%d", phba->brd_no);
8003 if (IS_ERR(phba->worker_thread)) {
8004 error = PTR_ERR(phba->worker_thread);
8005 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
8006 "0434 PM resume failed to start worker "
8007 "thread: error=x%x.\n", error);
8008 return error;
8009 }
8010
8011 /* Configure and enable interrupt */
8012 intr_mode = lpfc_sli_enable_intr(phba, phba->intr_mode);
8013 if (intr_mode == LPFC_INTR_ERROR) {
8014 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
8015 "0430 PM resume Failed to enable interrupt\n");
8016 return -EIO;
8017 } else
8018 phba->intr_mode = intr_mode;
8019
8020 /* Restart HBA and bring it online */
8021 lpfc_sli_brdrestart(phba);
8022 lpfc_online(phba);
8023
8024 /* Log the current active interrupt mode */
8025 lpfc_log_intr_mode(phba, phba->intr_mode);
8026
8027 return 0;
8028}
8029
891478a2
JS
8030/**
8031 * lpfc_sli_prep_dev_for_recover - Prepare SLI3 device for pci slot recover
8032 * @phba: pointer to lpfc hba data structure.
8033 *
8034 * This routine is called to prepare the SLI3 device for PCI slot recover. It
e2af0d2e 8035 * aborts all the outstanding SCSI I/Os to the pci device.
891478a2
JS
8036 **/
8037static void
8038lpfc_sli_prep_dev_for_recover(struct lpfc_hba *phba)
8039{
e2af0d2e
JS
8040 struct lpfc_sli *psli = &phba->sli;
8041 struct lpfc_sli_ring *pring;
8042
891478a2
JS
8043 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
8044 "2723 PCI channel I/O abort preparing for recovery\n");
e2af0d2e
JS
8045
8046 /*
8047 * There may be errored I/Os through HBA, abort all I/Os on txcmplq
8048 * and let the SCSI mid-layer to retry them to recover.
8049 */
8050 pring = &psli->ring[psli->fcp_ring];
8051 lpfc_sli_abort_iocb_ring(phba, pring);
891478a2
JS
8052}
8053
0d878419
JS
8054/**
8055 * lpfc_sli_prep_dev_for_reset - Prepare SLI3 device for pci slot reset
8056 * @phba: pointer to lpfc hba data structure.
8057 *
8058 * This routine is called to prepare the SLI3 device for PCI slot reset. It
8059 * disables the device interrupt and pci device, and aborts the internal FCP
8060 * pending I/Os.
8061 **/
8062static void
8063lpfc_sli_prep_dev_for_reset(struct lpfc_hba *phba)
8064{
0d878419 8065 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
891478a2 8066 "2710 PCI channel disable preparing for reset\n");
e2af0d2e 8067
75baf696
JS
8068 /* Block any management I/Os to the device */
8069 lpfc_block_mgmt_io(phba);
8070
e2af0d2e
JS
8071 /* Block all SCSI devices' I/Os on the host */
8072 lpfc_scsi_dev_block(phba);
8073
8074 /* stop all timers */
8075 lpfc_stop_hba_timers(phba);
8076
0d878419
JS
8077 /* Disable interrupt and pci device */
8078 lpfc_sli_disable_intr(phba);
8079 pci_disable_device(phba->pcidev);
75baf696 8080
e2af0d2e
JS
8081 /* Flush all driver's outstanding SCSI I/Os as we are to reset */
8082 lpfc_sli_flush_fcp_rings(phba);
0d878419
JS
8083}
8084
8085/**
8086 * lpfc_sli_prep_dev_for_perm_failure - Prepare SLI3 dev for pci slot disable
8087 * @phba: pointer to lpfc hba data structure.
8088 *
8089 * This routine is called to prepare the SLI3 device for PCI slot permanently
8090 * disabling. It blocks the SCSI transport layer traffic and flushes the FCP
8091 * pending I/Os.
8092 **/
8093static void
75baf696 8094lpfc_sli_prep_dev_for_perm_failure(struct lpfc_hba *phba)
0d878419
JS
8095{
8096 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
891478a2 8097 "2711 PCI channel permanent disable for failure\n");
e2af0d2e
JS
8098 /* Block all SCSI devices' I/Os on the host */
8099 lpfc_scsi_dev_block(phba);
8100
8101 /* stop all timers */
8102 lpfc_stop_hba_timers(phba);
8103
0d878419
JS
8104 /* Clean up all driver's outstanding SCSI I/Os */
8105 lpfc_sli_flush_fcp_rings(phba);
8106}
8107
da0436e9
JS
8108/**
8109 * lpfc_io_error_detected_s3 - Method for handling SLI-3 device PCI I/O error
8110 * @pdev: pointer to PCI device.
8111 * @state: the current PCI connection state.
8112 *
8113 * This routine is called from the PCI subsystem for I/O error handling to
8114 * device with SLI-3 interface spec. This function is called by the PCI
8115 * subsystem after a PCI bus error affecting this device has been detected.
8116 * When this function is invoked, it will need to stop all the I/Os and
8117 * interrupt(s) to the device. Once that is done, it will return
8118 * PCI_ERS_RESULT_NEED_RESET for the PCI subsystem to perform proper recovery
8119 * as desired.
8120 *
8121 * Return codes
0d878419 8122 * PCI_ERS_RESULT_CAN_RECOVER - can be recovered with reset_link
da0436e9
JS
8123 * PCI_ERS_RESULT_NEED_RESET - need to reset before recovery
8124 * PCI_ERS_RESULT_DISCONNECT - device could not be recovered
8125 **/
8126static pci_ers_result_t
8127lpfc_io_error_detected_s3(struct pci_dev *pdev, pci_channel_state_t state)
8128{
8129 struct Scsi_Host *shost = pci_get_drvdata(pdev);
8130 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
da0436e9 8131
0d878419
JS
8132 switch (state) {
8133 case pci_channel_io_normal:
891478a2
JS
8134 /* Non-fatal error, prepare for recovery */
8135 lpfc_sli_prep_dev_for_recover(phba);
0d878419
JS
8136 return PCI_ERS_RESULT_CAN_RECOVER;
8137 case pci_channel_io_frozen:
8138 /* Fatal error, prepare for slot reset */
8139 lpfc_sli_prep_dev_for_reset(phba);
8140 return PCI_ERS_RESULT_NEED_RESET;
8141 case pci_channel_io_perm_failure:
8142 /* Permanent failure, prepare for device down */
75baf696 8143 lpfc_sli_prep_dev_for_perm_failure(phba);
da0436e9 8144 return PCI_ERS_RESULT_DISCONNECT;
0d878419
JS
8145 default:
8146 /* Unknown state, prepare and request slot reset */
8147 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
8148 "0472 Unknown PCI error state: x%x\n", state);
8149 lpfc_sli_prep_dev_for_reset(phba);
8150 return PCI_ERS_RESULT_NEED_RESET;
da0436e9 8151 }
da0436e9
JS
8152}
8153
8154/**
8155 * lpfc_io_slot_reset_s3 - Method for restarting PCI SLI-3 device from scratch.
8156 * @pdev: pointer to PCI device.
8157 *
8158 * This routine is called from the PCI subsystem for error handling to
8159 * device with SLI-3 interface spec. This is called after PCI bus has been
8160 * reset to restart the PCI card from scratch, as if from a cold-boot.
8161 * During the PCI subsystem error recovery, after driver returns
8162 * PCI_ERS_RESULT_NEED_RESET, the PCI subsystem will perform proper error
8163 * recovery and then call this routine before calling the .resume method
8164 * to recover the device. This function will initialize the HBA device,
8165 * enable the interrupt, but it will just put the HBA to offline state
8166 * without passing any I/O traffic.
8167 *
8168 * Return codes
8169 * PCI_ERS_RESULT_RECOVERED - the device has been recovered
8170 * PCI_ERS_RESULT_DISCONNECT - device could not be recovered
8171 */
8172static pci_ers_result_t
8173lpfc_io_slot_reset_s3(struct pci_dev *pdev)
8174{
8175 struct Scsi_Host *shost = pci_get_drvdata(pdev);
8176 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
8177 struct lpfc_sli *psli = &phba->sli;
8178 uint32_t intr_mode;
8179
8180 dev_printk(KERN_INFO, &pdev->dev, "recovering from a slot reset.\n");
8181 if (pci_enable_device_mem(pdev)) {
8182 printk(KERN_ERR "lpfc: Cannot re-enable "
8183 "PCI device after reset.\n");
8184 return PCI_ERS_RESULT_DISCONNECT;
8185 }
8186
8187 pci_restore_state(pdev);
1dfb5a47
JS
8188
8189 /*
8190 * As the new kernel behavior of pci_restore_state() API call clears
8191 * device saved_state flag, need to save the restored state again.
8192 */
8193 pci_save_state(pdev);
8194
da0436e9
JS
8195 if (pdev->is_busmaster)
8196 pci_set_master(pdev);
8197
8198 spin_lock_irq(&phba->hbalock);
8199 psli->sli_flag &= ~LPFC_SLI_ACTIVE;
8200 spin_unlock_irq(&phba->hbalock);
8201
8202 /* Configure and enable interrupt */
8203 intr_mode = lpfc_sli_enable_intr(phba, phba->intr_mode);
8204 if (intr_mode == LPFC_INTR_ERROR) {
8205 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
8206 "0427 Cannot re-enable interrupt after "
8207 "slot reset.\n");
8208 return PCI_ERS_RESULT_DISCONNECT;
8209 } else
8210 phba->intr_mode = intr_mode;
8211
75baf696
JS
8212 /* Take device offline, it will perform cleanup */
8213 lpfc_offline_prep(phba);
da0436e9
JS
8214 lpfc_offline(phba);
8215 lpfc_sli_brdrestart(phba);
8216
8217 /* Log the current active interrupt mode */
8218 lpfc_log_intr_mode(phba, phba->intr_mode);
8219
8220 return PCI_ERS_RESULT_RECOVERED;
8221}
8222
8223/**
8224 * lpfc_io_resume_s3 - Method for resuming PCI I/O operation on SLI-3 device.
8225 * @pdev: pointer to PCI device
8226 *
8227 * This routine is called from the PCI subsystem for error handling to device
8228 * with SLI-3 interface spec. It is called when kernel error recovery tells
8229 * the lpfc driver that it is ok to resume normal PCI operation after PCI bus
8230 * error recovery. After this call, traffic can start to flow from this device
8231 * again.
8232 */
8233static void
8234lpfc_io_resume_s3(struct pci_dev *pdev)
8235{
8236 struct Scsi_Host *shost = pci_get_drvdata(pdev);
8237 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
3772a991 8238
e2af0d2e 8239 /* Bring device online, it will be no-op for non-fatal error resume */
da0436e9 8240 lpfc_online(phba);
0d878419
JS
8241
8242 /* Clean up Advanced Error Reporting (AER) if needed */
8243 if (phba->hba_flag & HBA_AER_ENABLED)
8244 pci_cleanup_aer_uncorrect_error_status(pdev);
da0436e9 8245}
3772a991 8246
da0436e9
JS
8247/**
8248 * lpfc_sli4_get_els_iocb_cnt - Calculate the # of ELS IOCBs to reserve
8249 * @phba: pointer to lpfc hba data structure.
8250 *
8251 * returns the number of ELS/CT IOCBs to reserve
8252 **/
8253int
8254lpfc_sli4_get_els_iocb_cnt(struct lpfc_hba *phba)
8255{
8256 int max_xri = phba->sli4_hba.max_cfg_param.max_xri;
8257
f1126688
JS
8258 if (phba->sli_rev == LPFC_SLI_REV4) {
8259 if (max_xri <= 100)
6a9c52cf 8260 return 10;
f1126688 8261 else if (max_xri <= 256)
6a9c52cf 8262 return 25;
f1126688 8263 else if (max_xri <= 512)
6a9c52cf 8264 return 50;
f1126688 8265 else if (max_xri <= 1024)
6a9c52cf 8266 return 100;
f1126688 8267 else
6a9c52cf 8268 return 150;
f1126688
JS
8269 } else
8270 return 0;
3772a991
JS
8271}
8272
8273/**
da0436e9 8274 * lpfc_pci_probe_one_s4 - PCI probe func to reg SLI-4 device to PCI subsys
3772a991
JS
8275 * @pdev: pointer to PCI device
8276 * @pid: pointer to PCI device identifier
8277 *
da0436e9
JS
8278 * This routine is called from the kernel's PCI subsystem to device with
8279 * SLI-4 interface spec. When an Emulex HBA with SLI-4 interface spec is
3772a991 8280 * presented on PCI bus, the kernel PCI subsystem looks at PCI device-specific
da0436e9
JS
8281 * information of the device and driver to see if the driver state that it
8282 * can support this kind of device. If the match is successful, the driver
8283 * core invokes this routine. If this routine determines it can claim the HBA,
8284 * it does all the initialization that it needs to do to handle the HBA
8285 * properly.
3772a991
JS
8286 *
8287 * Return code
8288 * 0 - driver can claim the device
8289 * negative value - driver can not claim the device
8290 **/
8291static int __devinit
da0436e9 8292lpfc_pci_probe_one_s4(struct pci_dev *pdev, const struct pci_device_id *pid)
3772a991
JS
8293{
8294 struct lpfc_hba *phba;
8295 struct lpfc_vport *vport = NULL;
6669f9bb 8296 struct Scsi_Host *shost = NULL;
3772a991
JS
8297 int error;
8298 uint32_t cfg_mode, intr_mode;
da0436e9 8299 int mcnt;
3772a991
JS
8300
8301 /* Allocate memory for HBA structure */
8302 phba = lpfc_hba_alloc(pdev);
8303 if (!phba)
8304 return -ENOMEM;
8305
8306 /* Perform generic PCI device enabling operation */
8307 error = lpfc_enable_pci_dev(phba);
8308 if (error) {
8309 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
da0436e9 8310 "1409 Failed to enable pci device.\n");
3772a991
JS
8311 goto out_free_phba;
8312 }
8313
da0436e9
JS
8314 /* Set up SLI API function jump table for PCI-device group-1 HBAs */
8315 error = lpfc_api_table_setup(phba, LPFC_PCI_DEV_OC);
3772a991
JS
8316 if (error)
8317 goto out_disable_pci_dev;
8318
da0436e9
JS
8319 /* Set up SLI-4 specific device PCI memory space */
8320 error = lpfc_sli4_pci_mem_setup(phba);
3772a991
JS
8321 if (error) {
8322 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
da0436e9 8323 "1410 Failed to set up pci memory space.\n");
3772a991
JS
8324 goto out_disable_pci_dev;
8325 }
8326
8327 /* Set up phase-1 common device driver resources */
8328 error = lpfc_setup_driver_resource_phase1(phba);
8329 if (error) {
8330 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
da0436e9
JS
8331 "1411 Failed to set up driver resource.\n");
8332 goto out_unset_pci_mem_s4;
3772a991
JS
8333 }
8334
da0436e9
JS
8335 /* Set up SLI-4 Specific device driver resources */
8336 error = lpfc_sli4_driver_resource_setup(phba);
3772a991
JS
8337 if (error) {
8338 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
da0436e9
JS
8339 "1412 Failed to set up driver resource.\n");
8340 goto out_unset_pci_mem_s4;
3772a991
JS
8341 }
8342
8343 /* Initialize and populate the iocb list per host */
2a9bf3d0
JS
8344
8345 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
8346 "2821 initialize iocb list %d.\n",
8347 phba->cfg_iocb_cnt*1024);
8348 error = lpfc_init_iocb_list(phba, phba->cfg_iocb_cnt*1024);
8349
3772a991
JS
8350 if (error) {
8351 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
da0436e9
JS
8352 "1413 Failed to initialize iocb list.\n");
8353 goto out_unset_driver_resource_s4;
3772a991
JS
8354 }
8355
19ca7609
JS
8356 INIT_LIST_HEAD(&phba->active_rrq_list);
8357
3772a991
JS
8358 /* Set up common device driver resources */
8359 error = lpfc_setup_driver_resource_phase2(phba);
8360 if (error) {
8361 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
da0436e9 8362 "1414 Failed to set up driver resource.\n");
3772a991
JS
8363 goto out_free_iocb_list;
8364 }
8365
8366 /* Create SCSI host to the physical port */
8367 error = lpfc_create_shost(phba);
8368 if (error) {
8369 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
da0436e9 8370 "1415 Failed to create scsi host.\n");
3772a991
JS
8371 goto out_unset_driver_resource;
8372 }
9399627f 8373
5b75da2f 8374 /* Configure sysfs attributes */
3772a991
JS
8375 vport = phba->pport;
8376 error = lpfc_alloc_sysfs_attr(vport);
8377 if (error) {
9399627f 8378 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
da0436e9 8379 "1416 Failed to allocate sysfs attr\n");
3772a991 8380 goto out_destroy_shost;
98c9ea5c 8381 }
875fbdfe 8382
6669f9bb 8383 shost = lpfc_shost_from_vport(vport); /* save shost for error cleanup */
3772a991 8384 /* Now, trying to enable interrupt and bring up the device */
5b75da2f
JS
8385 cfg_mode = phba->cfg_use_msi;
8386 while (true) {
3772a991
JS
8387 /* Put device to a known state before enabling interrupt */
8388 lpfc_stop_port(phba);
5b75da2f 8389 /* Configure and enable interrupt */
da0436e9 8390 intr_mode = lpfc_sli4_enable_intr(phba, cfg_mode);
5b75da2f
JS
8391 if (intr_mode == LPFC_INTR_ERROR) {
8392 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
da0436e9 8393 "0426 Failed to enable interrupt.\n");
3772a991 8394 error = -ENODEV;
5b75da2f
JS
8395 goto out_free_sysfs_attr;
8396 }
def9c7a9
JS
8397 /* Default to single FCP EQ for non-MSI-X */
8398 if (phba->intr_type != MSIX)
8399 phba->cfg_fcp_eq_count = 1;
75baf696
JS
8400 else if (phba->sli4_hba.msix_vec_nr < phba->cfg_fcp_eq_count)
8401 phba->cfg_fcp_eq_count = phba->sli4_hba.msix_vec_nr - 1;
da0436e9
JS
8402 /* Set up SLI-4 HBA */
8403 if (lpfc_sli4_hba_setup(phba)) {
5b75da2f 8404 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
da0436e9 8405 "1421 Failed to set up hba\n");
5b75da2f 8406 error = -ENODEV;
da0436e9 8407 goto out_disable_intr;
5b75da2f
JS
8408 }
8409
da0436e9
JS
8410 /* Send NOP mbx cmds for non-INTx mode active interrupt test */
8411 if (intr_mode != 0)
8412 mcnt = lpfc_sli4_send_nop_mbox_cmds(phba,
8413 LPFC_ACT_INTR_CNT);
8414
8415 /* Check active interrupts received only for MSI/MSI-X */
3772a991 8416 if (intr_mode == 0 ||
da0436e9 8417 phba->sli.slistat.sli_intr >= LPFC_ACT_INTR_CNT) {
5b75da2f
JS
8418 /* Log the current active interrupt mode */
8419 phba->intr_mode = intr_mode;
8420 lpfc_log_intr_mode(phba, intr_mode);
8421 break;
5b75da2f 8422 }
da0436e9
JS
8423 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
8424 "0451 Configure interrupt mode (%d) "
8425 "failed active interrupt test.\n",
8426 intr_mode);
8427 /* Unset the preivous SLI-4 HBA setup */
8428 lpfc_sli4_unset_hba(phba);
8429 /* Try next level of interrupt mode */
8430 cfg_mode = --intr_mode;
98c9ea5c 8431 }
858c9f6c 8432
3772a991
JS
8433 /* Perform post initialization setup */
8434 lpfc_post_init_setup(phba);
dea3101e 8435
1c6834a7
JS
8436 /* Check if there are static vports to be created. */
8437 lpfc_create_static_vport(phba);
8438
dea3101e
JB
8439 return 0;
8440
da0436e9
JS
8441out_disable_intr:
8442 lpfc_sli4_disable_intr(phba);
5b75da2f
JS
8443out_free_sysfs_attr:
8444 lpfc_free_sysfs_attr(vport);
3772a991
JS
8445out_destroy_shost:
8446 lpfc_destroy_shost(phba);
8447out_unset_driver_resource:
8448 lpfc_unset_driver_resource_phase2(phba);
8449out_free_iocb_list:
8450 lpfc_free_iocb_list(phba);
da0436e9
JS
8451out_unset_driver_resource_s4:
8452 lpfc_sli4_driver_resource_unset(phba);
8453out_unset_pci_mem_s4:
8454 lpfc_sli4_pci_mem_unset(phba);
3772a991
JS
8455out_disable_pci_dev:
8456 lpfc_disable_pci_dev(phba);
6669f9bb
JS
8457 if (shost)
8458 scsi_host_put(shost);
2e0fef85 8459out_free_phba:
3772a991 8460 lpfc_hba_free(phba);
dea3101e
JB
8461 return error;
8462}
8463
e59058c4 8464/**
da0436e9 8465 * lpfc_pci_remove_one_s4 - PCI func to unreg SLI-4 device from PCI subsystem
e59058c4
JS
8466 * @pdev: pointer to PCI device
8467 *
da0436e9
JS
8468 * This routine is called from the kernel's PCI subsystem to device with
8469 * SLI-4 interface spec. When an Emulex HBA with SLI-4 interface spec is
3772a991
JS
8470 * removed from PCI bus, it performs all the necessary cleanup for the HBA
8471 * device to be removed from the PCI subsystem properly.
e59058c4 8472 **/
dea3101e 8473static void __devexit
da0436e9 8474lpfc_pci_remove_one_s4(struct pci_dev *pdev)
dea3101e 8475{
da0436e9 8476 struct Scsi_Host *shost = pci_get_drvdata(pdev);
2e0fef85 8477 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
eada272d 8478 struct lpfc_vport **vports;
da0436e9 8479 struct lpfc_hba *phba = vport->phba;
eada272d 8480 int i;
8a4df120 8481
da0436e9 8482 /* Mark the device unloading flag */
549e55cd 8483 spin_lock_irq(&phba->hbalock);
51ef4c26 8484 vport->load_flag |= FC_UNLOADING;
549e55cd 8485 spin_unlock_irq(&phba->hbalock);
2e0fef85 8486
da0436e9 8487 /* Free the HBA sysfs attributes */
858c9f6c
JS
8488 lpfc_free_sysfs_attr(vport);
8489
eada272d
JS
8490 /* Release all the vports against this physical port */
8491 vports = lpfc_create_vport_work_array(phba);
8492 if (vports != NULL)
3772a991 8493 for (i = 1; i <= phba->max_vports && vports[i] != NULL; i++)
eada272d
JS
8494 fc_vport_terminate(vports[i]->fc_vport);
8495 lpfc_destroy_vport_work_array(phba, vports);
8496
8497 /* Remove FC host and then SCSI host with the physical port */
858c9f6c
JS
8498 fc_remove_host(shost);
8499 scsi_remove_host(shost);
da0436e9
JS
8500
8501 /* Perform cleanup on the physical port */
87af33fe
JS
8502 lpfc_cleanup(vport);
8503
2e0fef85 8504 /*
da0436e9 8505 * Bring down the SLI Layer. This step disables all interrupts,
2e0fef85 8506 * clears the rings, discards all mailbox commands, and resets
da0436e9 8507 * the HBA FCoE function.
2e0fef85 8508 */
da0436e9
JS
8509 lpfc_debugfs_terminate(vport);
8510 lpfc_sli4_hba_unset(phba);
a257bf90 8511
858c9f6c
JS
8512 spin_lock_irq(&phba->hbalock);
8513 list_del_init(&vport->listentry);
8514 spin_unlock_irq(&phba->hbalock);
8515
3677a3a7 8516 /* Perform scsi free before driver resource_unset since scsi
da0436e9 8517 * buffers are released to their corresponding pools here.
2e0fef85
JS
8518 */
8519 lpfc_scsi_free(phba);
da0436e9 8520 lpfc_sli4_driver_resource_unset(phba);
ed957684 8521
da0436e9
JS
8522 /* Unmap adapter Control and Doorbell registers */
8523 lpfc_sli4_pci_mem_unset(phba);
2e0fef85 8524
da0436e9
JS
8525 /* Release PCI resources and disable device's PCI function */
8526 scsi_host_put(shost);
8527 lpfc_disable_pci_dev(phba);
2e0fef85 8528
da0436e9 8529 /* Finally, free the driver's device data structure */
3772a991 8530 lpfc_hba_free(phba);
2e0fef85 8531
da0436e9 8532 return;
dea3101e
JB
8533}
8534
3a55b532 8535/**
da0436e9 8536 * lpfc_pci_suspend_one_s4 - PCI func to suspend SLI-4 device for power mgmnt
3a55b532
JS
8537 * @pdev: pointer to PCI device
8538 * @msg: power management message
8539 *
da0436e9
JS
8540 * This routine is called from the kernel's PCI subsystem to support system
8541 * Power Management (PM) to device with SLI-4 interface spec. When PM invokes
8542 * this method, it quiesces the device by stopping the driver's worker
8543 * thread for the device, turning off device's interrupt and DMA, and bring
8544 * the device offline. Note that as the driver implements the minimum PM
8545 * requirements to a power-aware driver's PM support for suspend/resume -- all
8546 * the possible PM messages (SUSPEND, HIBERNATE, FREEZE) to the suspend()
8547 * method call will be treated as SUSPEND and the driver will fully
8548 * reinitialize its device during resume() method call, the driver will set
8549 * device to PCI_D3hot state in PCI config space instead of setting it
3772a991 8550 * according to the @msg provided by the PM.
3a55b532
JS
8551 *
8552 * Return code
3772a991
JS
8553 * 0 - driver suspended the device
8554 * Error otherwise
3a55b532
JS
8555 **/
8556static int
da0436e9 8557lpfc_pci_suspend_one_s4(struct pci_dev *pdev, pm_message_t msg)
3a55b532
JS
8558{
8559 struct Scsi_Host *shost = pci_get_drvdata(pdev);
8560 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
8561
8562 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
75baf696 8563 "2843 PCI device Power Management suspend.\n");
3a55b532
JS
8564
8565 /* Bring down the device */
8566 lpfc_offline_prep(phba);
8567 lpfc_offline(phba);
8568 kthread_stop(phba->worker_thread);
8569
8570 /* Disable interrupt from device */
da0436e9 8571 lpfc_sli4_disable_intr(phba);
3a55b532
JS
8572
8573 /* Save device state to PCI config space */
8574 pci_save_state(pdev);
8575 pci_set_power_state(pdev, PCI_D3hot);
8576
8577 return 0;
8578}
8579
8580/**
da0436e9 8581 * lpfc_pci_resume_one_s4 - PCI func to resume SLI-4 device for power mgmnt
3a55b532
JS
8582 * @pdev: pointer to PCI device
8583 *
da0436e9
JS
8584 * This routine is called from the kernel's PCI subsystem to support system
8585 * Power Management (PM) to device with SLI-4 interface spac. When PM invokes
8586 * this method, it restores the device's PCI config space state and fully
8587 * reinitializes the device and brings it online. Note that as the driver
8588 * implements the minimum PM requirements to a power-aware driver's PM for
8589 * suspend/resume -- all the possible PM messages (SUSPEND, HIBERNATE, FREEZE)
8590 * to the suspend() method call will be treated as SUSPEND and the driver
8591 * will fully reinitialize its device during resume() method call, the device
8592 * will be set to PCI_D0 directly in PCI config space before restoring the
8593 * state.
3a55b532
JS
8594 *
8595 * Return code
3772a991
JS
8596 * 0 - driver suspended the device
8597 * Error otherwise
3a55b532
JS
8598 **/
8599static int
da0436e9 8600lpfc_pci_resume_one_s4(struct pci_dev *pdev)
3a55b532
JS
8601{
8602 struct Scsi_Host *shost = pci_get_drvdata(pdev);
8603 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
5b75da2f 8604 uint32_t intr_mode;
3a55b532
JS
8605 int error;
8606
8607 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
da0436e9 8608 "0292 PCI device Power Management resume.\n");
3a55b532
JS
8609
8610 /* Restore device state from PCI config space */
8611 pci_set_power_state(pdev, PCI_D0);
8612 pci_restore_state(pdev);
1dfb5a47
JS
8613
8614 /*
8615 * As the new kernel behavior of pci_restore_state() API call clears
8616 * device saved_state flag, need to save the restored state again.
8617 */
8618 pci_save_state(pdev);
8619
3a55b532
JS
8620 if (pdev->is_busmaster)
8621 pci_set_master(pdev);
8622
da0436e9 8623 /* Startup the kernel thread for this host adapter. */
3a55b532
JS
8624 phba->worker_thread = kthread_run(lpfc_do_work, phba,
8625 "lpfc_worker_%d", phba->brd_no);
8626 if (IS_ERR(phba->worker_thread)) {
8627 error = PTR_ERR(phba->worker_thread);
8628 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
da0436e9 8629 "0293 PM resume failed to start worker "
3a55b532
JS
8630 "thread: error=x%x.\n", error);
8631 return error;
8632 }
8633
5b75da2f 8634 /* Configure and enable interrupt */
da0436e9 8635 intr_mode = lpfc_sli4_enable_intr(phba, phba->intr_mode);
5b75da2f 8636 if (intr_mode == LPFC_INTR_ERROR) {
3a55b532 8637 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
da0436e9 8638 "0294 PM resume Failed to enable interrupt\n");
5b75da2f
JS
8639 return -EIO;
8640 } else
8641 phba->intr_mode = intr_mode;
3a55b532
JS
8642
8643 /* Restart HBA and bring it online */
8644 lpfc_sli_brdrestart(phba);
8645 lpfc_online(phba);
8646
5b75da2f
JS
8647 /* Log the current active interrupt mode */
8648 lpfc_log_intr_mode(phba, phba->intr_mode);
8649
3a55b532
JS
8650 return 0;
8651}
8652
75baf696
JS
8653/**
8654 * lpfc_sli4_prep_dev_for_recover - Prepare SLI4 device for pci slot recover
8655 * @phba: pointer to lpfc hba data structure.
8656 *
8657 * This routine is called to prepare the SLI4 device for PCI slot recover. It
8658 * aborts all the outstanding SCSI I/Os to the pci device.
8659 **/
8660static void
8661lpfc_sli4_prep_dev_for_recover(struct lpfc_hba *phba)
8662{
8663 struct lpfc_sli *psli = &phba->sli;
8664 struct lpfc_sli_ring *pring;
8665
8666 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
8667 "2828 PCI channel I/O abort preparing for recovery\n");
8668 /*
8669 * There may be errored I/Os through HBA, abort all I/Os on txcmplq
8670 * and let the SCSI mid-layer to retry them to recover.
8671 */
8672 pring = &psli->ring[psli->fcp_ring];
8673 lpfc_sli_abort_iocb_ring(phba, pring);
8674}
8675
8676/**
8677 * lpfc_sli4_prep_dev_for_reset - Prepare SLI4 device for pci slot reset
8678 * @phba: pointer to lpfc hba data structure.
8679 *
8680 * This routine is called to prepare the SLI4 device for PCI slot reset. It
8681 * disables the device interrupt and pci device, and aborts the internal FCP
8682 * pending I/Os.
8683 **/
8684static void
8685lpfc_sli4_prep_dev_for_reset(struct lpfc_hba *phba)
8686{
8687 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
8688 "2826 PCI channel disable preparing for reset\n");
8689
8690 /* Block any management I/Os to the device */
8691 lpfc_block_mgmt_io(phba);
8692
8693 /* Block all SCSI devices' I/Os on the host */
8694 lpfc_scsi_dev_block(phba);
8695
8696 /* stop all timers */
8697 lpfc_stop_hba_timers(phba);
8698
8699 /* Disable interrupt and pci device */
8700 lpfc_sli4_disable_intr(phba);
8701 pci_disable_device(phba->pcidev);
8702
8703 /* Flush all driver's outstanding SCSI I/Os as we are to reset */
8704 lpfc_sli_flush_fcp_rings(phba);
8705}
8706
8707/**
8708 * lpfc_sli4_prep_dev_for_perm_failure - Prepare SLI4 dev for pci slot disable
8709 * @phba: pointer to lpfc hba data structure.
8710 *
8711 * This routine is called to prepare the SLI4 device for PCI slot permanently
8712 * disabling. It blocks the SCSI transport layer traffic and flushes the FCP
8713 * pending I/Os.
8714 **/
8715static void
8716lpfc_sli4_prep_dev_for_perm_failure(struct lpfc_hba *phba)
8717{
8718 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
8719 "2827 PCI channel permanent disable for failure\n");
8720
8721 /* Block all SCSI devices' I/Os on the host */
8722 lpfc_scsi_dev_block(phba);
8723
8724 /* stop all timers */
8725 lpfc_stop_hba_timers(phba);
8726
8727 /* Clean up all driver's outstanding SCSI I/Os */
8728 lpfc_sli_flush_fcp_rings(phba);
8729}
8730
8d63f375 8731/**
da0436e9 8732 * lpfc_io_error_detected_s4 - Method for handling PCI I/O error to SLI-4 device
e59058c4
JS
8733 * @pdev: pointer to PCI device.
8734 * @state: the current PCI connection state.
8d63f375 8735 *
da0436e9
JS
8736 * This routine is called from the PCI subsystem for error handling to device
8737 * with SLI-4 interface spec. This function is called by the PCI subsystem
8738 * after a PCI bus error affecting this device has been detected. When this
8739 * function is invoked, it will need to stop all the I/Os and interrupt(s)
8740 * to the device. Once that is done, it will return PCI_ERS_RESULT_NEED_RESET
8741 * for the PCI subsystem to perform proper recovery as desired.
e59058c4
JS
8742 *
8743 * Return codes
3772a991
JS
8744 * PCI_ERS_RESULT_NEED_RESET - need to reset before recovery
8745 * PCI_ERS_RESULT_DISCONNECT - device could not be recovered
e59058c4 8746 **/
3772a991 8747static pci_ers_result_t
da0436e9 8748lpfc_io_error_detected_s4(struct pci_dev *pdev, pci_channel_state_t state)
8d63f375 8749{
75baf696
JS
8750 struct Scsi_Host *shost = pci_get_drvdata(pdev);
8751 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
8752
8753 switch (state) {
8754 case pci_channel_io_normal:
8755 /* Non-fatal error, prepare for recovery */
8756 lpfc_sli4_prep_dev_for_recover(phba);
8757 return PCI_ERS_RESULT_CAN_RECOVER;
8758 case pci_channel_io_frozen:
8759 /* Fatal error, prepare for slot reset */
8760 lpfc_sli4_prep_dev_for_reset(phba);
8761 return PCI_ERS_RESULT_NEED_RESET;
8762 case pci_channel_io_perm_failure:
8763 /* Permanent failure, prepare for device down */
8764 lpfc_sli4_prep_dev_for_perm_failure(phba);
8765 return PCI_ERS_RESULT_DISCONNECT;
8766 default:
8767 /* Unknown state, prepare and request slot reset */
8768 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
8769 "2825 Unknown PCI error state: x%x\n", state);
8770 lpfc_sli4_prep_dev_for_reset(phba);
8771 return PCI_ERS_RESULT_NEED_RESET;
8772 }
8d63f375
LV
8773}
8774
8775/**
da0436e9 8776 * lpfc_io_slot_reset_s4 - Method for restart PCI SLI-4 device from scratch
e59058c4
JS
8777 * @pdev: pointer to PCI device.
8778 *
da0436e9
JS
8779 * This routine is called from the PCI subsystem for error handling to device
8780 * with SLI-4 interface spec. It is called after PCI bus has been reset to
8781 * restart the PCI card from scratch, as if from a cold-boot. During the
8782 * PCI subsystem error recovery, after the driver returns
3772a991 8783 * PCI_ERS_RESULT_NEED_RESET, the PCI subsystem will perform proper error
da0436e9
JS
8784 * recovery and then call this routine before calling the .resume method to
8785 * recover the device. This function will initialize the HBA device, enable
8786 * the interrupt, but it will just put the HBA to offline state without
8787 * passing any I/O traffic.
8d63f375 8788 *
e59058c4 8789 * Return codes
3772a991
JS
8790 * PCI_ERS_RESULT_RECOVERED - the device has been recovered
8791 * PCI_ERS_RESULT_DISCONNECT - device could not be recovered
8d63f375 8792 */
3772a991 8793static pci_ers_result_t
da0436e9 8794lpfc_io_slot_reset_s4(struct pci_dev *pdev)
8d63f375 8795{
75baf696
JS
8796 struct Scsi_Host *shost = pci_get_drvdata(pdev);
8797 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
8798 struct lpfc_sli *psli = &phba->sli;
8799 uint32_t intr_mode;
8800
8801 dev_printk(KERN_INFO, &pdev->dev, "recovering from a slot reset.\n");
8802 if (pci_enable_device_mem(pdev)) {
8803 printk(KERN_ERR "lpfc: Cannot re-enable "
8804 "PCI device after reset.\n");
8805 return PCI_ERS_RESULT_DISCONNECT;
8806 }
8807
8808 pci_restore_state(pdev);
8809 if (pdev->is_busmaster)
8810 pci_set_master(pdev);
8811
8812 spin_lock_irq(&phba->hbalock);
8813 psli->sli_flag &= ~LPFC_SLI_ACTIVE;
8814 spin_unlock_irq(&phba->hbalock);
8815
8816 /* Configure and enable interrupt */
8817 intr_mode = lpfc_sli4_enable_intr(phba, phba->intr_mode);
8818 if (intr_mode == LPFC_INTR_ERROR) {
8819 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
8820 "2824 Cannot re-enable interrupt after "
8821 "slot reset.\n");
8822 return PCI_ERS_RESULT_DISCONNECT;
8823 } else
8824 phba->intr_mode = intr_mode;
8825
8826 /* Log the current active interrupt mode */
8827 lpfc_log_intr_mode(phba, phba->intr_mode);
8828
8d63f375
LV
8829 return PCI_ERS_RESULT_RECOVERED;
8830}
8831
8832/**
da0436e9 8833 * lpfc_io_resume_s4 - Method for resuming PCI I/O operation to SLI-4 device
e59058c4 8834 * @pdev: pointer to PCI device
8d63f375 8835 *
3772a991 8836 * This routine is called from the PCI subsystem for error handling to device
da0436e9 8837 * with SLI-4 interface spec. It is called when kernel error recovery tells
3772a991
JS
8838 * the lpfc driver that it is ok to resume normal PCI operation after PCI bus
8839 * error recovery. After this call, traffic can start to flow from this device
8840 * again.
da0436e9 8841 **/
3772a991 8842static void
da0436e9 8843lpfc_io_resume_s4(struct pci_dev *pdev)
8d63f375 8844{
75baf696
JS
8845 struct Scsi_Host *shost = pci_get_drvdata(pdev);
8846 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
8847
8848 /*
8849 * In case of slot reset, as function reset is performed through
8850 * mailbox command which needs DMA to be enabled, this operation
8851 * has to be moved to the io resume phase. Taking device offline
8852 * will perform the necessary cleanup.
8853 */
8854 if (!(phba->sli.sli_flag & LPFC_SLI_ACTIVE)) {
8855 /* Perform device reset */
8856 lpfc_offline_prep(phba);
8857 lpfc_offline(phba);
8858 lpfc_sli_brdrestart(phba);
8859 /* Bring the device back online */
8860 lpfc_online(phba);
8861 }
8862
8863 /* Clean up Advanced Error Reporting (AER) if needed */
8864 if (phba->hba_flag & HBA_AER_ENABLED)
8865 pci_cleanup_aer_uncorrect_error_status(pdev);
8d63f375
LV
8866}
8867
3772a991
JS
8868/**
8869 * lpfc_pci_probe_one - lpfc PCI probe func to reg dev to PCI subsystem
8870 * @pdev: pointer to PCI device
8871 * @pid: pointer to PCI device identifier
8872 *
8873 * This routine is to be registered to the kernel's PCI subsystem. When an
8874 * Emulex HBA device is presented on PCI bus, the kernel PCI subsystem looks
8875 * at PCI device-specific information of the device and driver to see if the
8876 * driver state that it can support this kind of device. If the match is
8877 * successful, the driver core invokes this routine. This routine dispatches
8878 * the action to the proper SLI-3 or SLI-4 device probing routine, which will
8879 * do all the initialization that it needs to do to handle the HBA device
8880 * properly.
8881 *
8882 * Return code
8883 * 0 - driver can claim the device
8884 * negative value - driver can not claim the device
8885 **/
8886static int __devinit
8887lpfc_pci_probe_one(struct pci_dev *pdev, const struct pci_device_id *pid)
8888{
8889 int rc;
8fa38513 8890 struct lpfc_sli_intf intf;
3772a991 8891
28baac74 8892 if (pci_read_config_dword(pdev, LPFC_SLI_INTF, &intf.word0))
3772a991
JS
8893 return -ENODEV;
8894
8fa38513 8895 if ((bf_get(lpfc_sli_intf_valid, &intf) == LPFC_SLI_INTF_VALID) &&
28baac74 8896 (bf_get(lpfc_sli_intf_slirev, &intf) == LPFC_SLI_INTF_REV_SLI4))
da0436e9 8897 rc = lpfc_pci_probe_one_s4(pdev, pid);
8fa38513 8898 else
3772a991 8899 rc = lpfc_pci_probe_one_s3(pdev, pid);
8fa38513 8900
3772a991
JS
8901 return rc;
8902}
8903
8904/**
8905 * lpfc_pci_remove_one - lpfc PCI func to unreg dev from PCI subsystem
8906 * @pdev: pointer to PCI device
8907 *
8908 * This routine is to be registered to the kernel's PCI subsystem. When an
8909 * Emulex HBA is removed from PCI bus, the driver core invokes this routine.
8910 * This routine dispatches the action to the proper SLI-3 or SLI-4 device
8911 * remove routine, which will perform all the necessary cleanup for the
8912 * device to be removed from the PCI subsystem properly.
8913 **/
8914static void __devexit
8915lpfc_pci_remove_one(struct pci_dev *pdev)
8916{
8917 struct Scsi_Host *shost = pci_get_drvdata(pdev);
8918 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
8919
8920 switch (phba->pci_dev_grp) {
8921 case LPFC_PCI_DEV_LP:
8922 lpfc_pci_remove_one_s3(pdev);
8923 break;
da0436e9
JS
8924 case LPFC_PCI_DEV_OC:
8925 lpfc_pci_remove_one_s4(pdev);
8926 break;
3772a991
JS
8927 default:
8928 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
8929 "1424 Invalid PCI device group: 0x%x\n",
8930 phba->pci_dev_grp);
8931 break;
8932 }
8933 return;
8934}
8935
8936/**
8937 * lpfc_pci_suspend_one - lpfc PCI func to suspend dev for power management
8938 * @pdev: pointer to PCI device
8939 * @msg: power management message
8940 *
8941 * This routine is to be registered to the kernel's PCI subsystem to support
8942 * system Power Management (PM). When PM invokes this method, it dispatches
8943 * the action to the proper SLI-3 or SLI-4 device suspend routine, which will
8944 * suspend the device.
8945 *
8946 * Return code
8947 * 0 - driver suspended the device
8948 * Error otherwise
8949 **/
8950static int
8951lpfc_pci_suspend_one(struct pci_dev *pdev, pm_message_t msg)
8952{
8953 struct Scsi_Host *shost = pci_get_drvdata(pdev);
8954 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
8955 int rc = -ENODEV;
8956
8957 switch (phba->pci_dev_grp) {
8958 case LPFC_PCI_DEV_LP:
8959 rc = lpfc_pci_suspend_one_s3(pdev, msg);
8960 break;
da0436e9
JS
8961 case LPFC_PCI_DEV_OC:
8962 rc = lpfc_pci_suspend_one_s4(pdev, msg);
8963 break;
3772a991
JS
8964 default:
8965 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
8966 "1425 Invalid PCI device group: 0x%x\n",
8967 phba->pci_dev_grp);
8968 break;
8969 }
8970 return rc;
8971}
8972
8973/**
8974 * lpfc_pci_resume_one - lpfc PCI func to resume dev for power management
8975 * @pdev: pointer to PCI device
8976 *
8977 * This routine is to be registered to the kernel's PCI subsystem to support
8978 * system Power Management (PM). When PM invokes this method, it dispatches
8979 * the action to the proper SLI-3 or SLI-4 device resume routine, which will
8980 * resume the device.
8981 *
8982 * Return code
8983 * 0 - driver suspended the device
8984 * Error otherwise
8985 **/
8986static int
8987lpfc_pci_resume_one(struct pci_dev *pdev)
8988{
8989 struct Scsi_Host *shost = pci_get_drvdata(pdev);
8990 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
8991 int rc = -ENODEV;
8992
8993 switch (phba->pci_dev_grp) {
8994 case LPFC_PCI_DEV_LP:
8995 rc = lpfc_pci_resume_one_s3(pdev);
8996 break;
da0436e9
JS
8997 case LPFC_PCI_DEV_OC:
8998 rc = lpfc_pci_resume_one_s4(pdev);
8999 break;
3772a991
JS
9000 default:
9001 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
9002 "1426 Invalid PCI device group: 0x%x\n",
9003 phba->pci_dev_grp);
9004 break;
9005 }
9006 return rc;
9007}
9008
9009/**
9010 * lpfc_io_error_detected - lpfc method for handling PCI I/O error
9011 * @pdev: pointer to PCI device.
9012 * @state: the current PCI connection state.
9013 *
9014 * This routine is registered to the PCI subsystem for error handling. This
9015 * function is called by the PCI subsystem after a PCI bus error affecting
9016 * this device has been detected. When this routine is invoked, it dispatches
9017 * the action to the proper SLI-3 or SLI-4 device error detected handling
9018 * routine, which will perform the proper error detected operation.
9019 *
9020 * Return codes
9021 * PCI_ERS_RESULT_NEED_RESET - need to reset before recovery
9022 * PCI_ERS_RESULT_DISCONNECT - device could not be recovered
9023 **/
9024static pci_ers_result_t
9025lpfc_io_error_detected(struct pci_dev *pdev, pci_channel_state_t state)
9026{
9027 struct Scsi_Host *shost = pci_get_drvdata(pdev);
9028 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
9029 pci_ers_result_t rc = PCI_ERS_RESULT_DISCONNECT;
9030
9031 switch (phba->pci_dev_grp) {
9032 case LPFC_PCI_DEV_LP:
9033 rc = lpfc_io_error_detected_s3(pdev, state);
9034 break;
da0436e9
JS
9035 case LPFC_PCI_DEV_OC:
9036 rc = lpfc_io_error_detected_s4(pdev, state);
9037 break;
3772a991
JS
9038 default:
9039 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
9040 "1427 Invalid PCI device group: 0x%x\n",
9041 phba->pci_dev_grp);
9042 break;
9043 }
9044 return rc;
9045}
9046
9047/**
9048 * lpfc_io_slot_reset - lpfc method for restart PCI dev from scratch
9049 * @pdev: pointer to PCI device.
9050 *
9051 * This routine is registered to the PCI subsystem for error handling. This
9052 * function is called after PCI bus has been reset to restart the PCI card
9053 * from scratch, as if from a cold-boot. When this routine is invoked, it
9054 * dispatches the action to the proper SLI-3 or SLI-4 device reset handling
9055 * routine, which will perform the proper device reset.
9056 *
9057 * Return codes
9058 * PCI_ERS_RESULT_RECOVERED - the device has been recovered
9059 * PCI_ERS_RESULT_DISCONNECT - device could not be recovered
9060 **/
9061static pci_ers_result_t
9062lpfc_io_slot_reset(struct pci_dev *pdev)
9063{
9064 struct Scsi_Host *shost = pci_get_drvdata(pdev);
9065 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
9066 pci_ers_result_t rc = PCI_ERS_RESULT_DISCONNECT;
9067
9068 switch (phba->pci_dev_grp) {
9069 case LPFC_PCI_DEV_LP:
9070 rc = lpfc_io_slot_reset_s3(pdev);
9071 break;
da0436e9
JS
9072 case LPFC_PCI_DEV_OC:
9073 rc = lpfc_io_slot_reset_s4(pdev);
9074 break;
3772a991
JS
9075 default:
9076 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
9077 "1428 Invalid PCI device group: 0x%x\n",
9078 phba->pci_dev_grp);
9079 break;
9080 }
9081 return rc;
9082}
9083
9084/**
9085 * lpfc_io_resume - lpfc method for resuming PCI I/O operation
9086 * @pdev: pointer to PCI device
9087 *
9088 * This routine is registered to the PCI subsystem for error handling. It
9089 * is called when kernel error recovery tells the lpfc driver that it is
9090 * OK to resume normal PCI operation after PCI bus error recovery. When
9091 * this routine is invoked, it dispatches the action to the proper SLI-3
9092 * or SLI-4 device io_resume routine, which will resume the device operation.
9093 **/
9094static void
9095lpfc_io_resume(struct pci_dev *pdev)
9096{
9097 struct Scsi_Host *shost = pci_get_drvdata(pdev);
9098 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
9099
9100 switch (phba->pci_dev_grp) {
9101 case LPFC_PCI_DEV_LP:
9102 lpfc_io_resume_s3(pdev);
9103 break;
da0436e9
JS
9104 case LPFC_PCI_DEV_OC:
9105 lpfc_io_resume_s4(pdev);
9106 break;
3772a991
JS
9107 default:
9108 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
9109 "1429 Invalid PCI device group: 0x%x\n",
9110 phba->pci_dev_grp);
9111 break;
9112 }
9113 return;
9114}
9115
dea3101e
JB
9116static struct pci_device_id lpfc_id_table[] = {
9117 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_VIPER,
9118 PCI_ANY_ID, PCI_ANY_ID, },
06325e74
JSEC
9119 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_FIREFLY,
9120 PCI_ANY_ID, PCI_ANY_ID, },
dea3101e
JB
9121 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_THOR,
9122 PCI_ANY_ID, PCI_ANY_ID, },
9123 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_PEGASUS,
9124 PCI_ANY_ID, PCI_ANY_ID, },
9125 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_CENTAUR,
9126 PCI_ANY_ID, PCI_ANY_ID, },
9127 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_DRAGONFLY,
9128 PCI_ANY_ID, PCI_ANY_ID, },
9129 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_SUPERFLY,
9130 PCI_ANY_ID, PCI_ANY_ID, },
9131 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_RFLY,
9132 PCI_ANY_ID, PCI_ANY_ID, },
9133 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_PFLY,
9134 PCI_ANY_ID, PCI_ANY_ID, },
e4adb204
JSEC
9135 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_NEPTUNE,
9136 PCI_ANY_ID, PCI_ANY_ID, },
9137 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_NEPTUNE_SCSP,
9138 PCI_ANY_ID, PCI_ANY_ID, },
9139 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_NEPTUNE_DCSP,
9140 PCI_ANY_ID, PCI_ANY_ID, },
dea3101e
JB
9141 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_HELIOS,
9142 PCI_ANY_ID, PCI_ANY_ID, },
e4adb204
JSEC
9143 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_HELIOS_SCSP,
9144 PCI_ANY_ID, PCI_ANY_ID, },
9145 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_HELIOS_DCSP,
9146 PCI_ANY_ID, PCI_ANY_ID, },
dea3101e
JB
9147 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_BMID,
9148 PCI_ANY_ID, PCI_ANY_ID, },
9149 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_BSMB,
9150 PCI_ANY_ID, PCI_ANY_ID, },
9151 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_ZEPHYR,
9152 PCI_ANY_ID, PCI_ANY_ID, },
84774a4d
JS
9153 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_HORNET,
9154 PCI_ANY_ID, PCI_ANY_ID, },
e4adb204
JSEC
9155 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_ZEPHYR_SCSP,
9156 PCI_ANY_ID, PCI_ANY_ID, },
9157 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_ZEPHYR_DCSP,
9158 PCI_ANY_ID, PCI_ANY_ID, },
dea3101e
JB
9159 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_ZMID,
9160 PCI_ANY_ID, PCI_ANY_ID, },
9161 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_ZSMB,
9162 PCI_ANY_ID, PCI_ANY_ID, },
9163 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_TFLY,
9164 PCI_ANY_ID, PCI_ANY_ID, },
9165 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_LP101,
9166 PCI_ANY_ID, PCI_ANY_ID, },
9167 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_LP10000S,
9168 PCI_ANY_ID, PCI_ANY_ID, },
e4adb204
JSEC
9169 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_LP11000S,
9170 PCI_ANY_ID, PCI_ANY_ID, },
9171 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_LPE11000S,
9172 PCI_ANY_ID, PCI_ANY_ID, },
b87eab38
JS
9173 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_SAT,
9174 PCI_ANY_ID, PCI_ANY_ID, },
9175 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_SAT_MID,
9176 PCI_ANY_ID, PCI_ANY_ID, },
9177 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_SAT_SMB,
9178 PCI_ANY_ID, PCI_ANY_ID, },
9179 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_SAT_DCSP,
9180 PCI_ANY_ID, PCI_ANY_ID, },
9181 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_SAT_SCSP,
9182 PCI_ANY_ID, PCI_ANY_ID, },
9183 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_SAT_S,
9184 PCI_ANY_ID, PCI_ANY_ID, },
84774a4d
JS
9185 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_PROTEUS_VF,
9186 PCI_ANY_ID, PCI_ANY_ID, },
9187 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_PROTEUS_PF,
9188 PCI_ANY_ID, PCI_ANY_ID, },
9189 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_PROTEUS_S,
9190 PCI_ANY_ID, PCI_ANY_ID, },
3772a991
JS
9191 {PCI_VENDOR_ID_SERVERENGINE, PCI_DEVICE_ID_TIGERSHARK,
9192 PCI_ANY_ID, PCI_ANY_ID, },
a747c9ce
JS
9193 {PCI_VENDOR_ID_SERVERENGINE, PCI_DEVICE_ID_TOMCAT,
9194 PCI_ANY_ID, PCI_ANY_ID, },
9195 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_FALCON,
6669f9bb 9196 PCI_ANY_ID, PCI_ANY_ID, },
98fc5dd9
JS
9197 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_BALIUS,
9198 PCI_ANY_ID, PCI_ANY_ID, },
085c647c
JS
9199 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_LANCER_FC,
9200 PCI_ANY_ID, PCI_ANY_ID, },
9201 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_LANCER_FCOE,
9202 PCI_ANY_ID, PCI_ANY_ID, },
dea3101e
JB
9203 { 0 }
9204};
9205
9206MODULE_DEVICE_TABLE(pci, lpfc_id_table);
9207
8d63f375
LV
9208static struct pci_error_handlers lpfc_err_handler = {
9209 .error_detected = lpfc_io_error_detected,
9210 .slot_reset = lpfc_io_slot_reset,
9211 .resume = lpfc_io_resume,
9212};
9213
dea3101e
JB
9214static struct pci_driver lpfc_driver = {
9215 .name = LPFC_DRIVER_NAME,
9216 .id_table = lpfc_id_table,
9217 .probe = lpfc_pci_probe_one,
9218 .remove = __devexit_p(lpfc_pci_remove_one),
3a55b532 9219 .suspend = lpfc_pci_suspend_one,
3772a991 9220 .resume = lpfc_pci_resume_one,
2e0fef85 9221 .err_handler = &lpfc_err_handler,
dea3101e
JB
9222};
9223
e59058c4 9224/**
3621a710 9225 * lpfc_init - lpfc module initialization routine
e59058c4
JS
9226 *
9227 * This routine is to be invoked when the lpfc module is loaded into the
9228 * kernel. The special kernel macro module_init() is used to indicate the
9229 * role of this routine to the kernel as lpfc module entry point.
9230 *
9231 * Return codes
9232 * 0 - successful
9233 * -ENOMEM - FC attach transport failed
9234 * all others - failed
9235 */
dea3101e
JB
9236static int __init
9237lpfc_init(void)
9238{
9239 int error = 0;
9240
9241 printk(LPFC_MODULE_DESC "\n");
c44ce173 9242 printk(LPFC_COPYRIGHT "\n");
dea3101e 9243
7ee5d43e
JS
9244 if (lpfc_enable_npiv) {
9245 lpfc_transport_functions.vport_create = lpfc_vport_create;
9246 lpfc_transport_functions.vport_delete = lpfc_vport_delete;
9247 }
dea3101e
JB
9248 lpfc_transport_template =
9249 fc_attach_transport(&lpfc_transport_functions);
7ee5d43e 9250 if (lpfc_transport_template == NULL)
dea3101e 9251 return -ENOMEM;
7ee5d43e 9252 if (lpfc_enable_npiv) {
7ee5d43e 9253 lpfc_vport_transport_template =
98c9ea5c
JS
9254 fc_attach_transport(&lpfc_vport_transport_functions);
9255 if (lpfc_vport_transport_template == NULL) {
9256 fc_release_transport(lpfc_transport_template);
7ee5d43e 9257 return -ENOMEM;
98c9ea5c 9258 }
7ee5d43e 9259 }
dea3101e 9260 error = pci_register_driver(&lpfc_driver);
92d7f7b0 9261 if (error) {
dea3101e 9262 fc_release_transport(lpfc_transport_template);
d7c255b2
JS
9263 if (lpfc_enable_npiv)
9264 fc_release_transport(lpfc_vport_transport_template);
92d7f7b0 9265 }
dea3101e
JB
9266
9267 return error;
9268}
9269
e59058c4 9270/**
3621a710 9271 * lpfc_exit - lpfc module removal routine
e59058c4
JS
9272 *
9273 * This routine is invoked when the lpfc module is removed from the kernel.
9274 * The special kernel macro module_exit() is used to indicate the role of
9275 * this routine to the kernel as lpfc module exit point.
9276 */
dea3101e
JB
9277static void __exit
9278lpfc_exit(void)
9279{
9280 pci_unregister_driver(&lpfc_driver);
9281 fc_release_transport(lpfc_transport_template);
7ee5d43e
JS
9282 if (lpfc_enable_npiv)
9283 fc_release_transport(lpfc_vport_transport_template);
81301a9b 9284 if (_dump_buf_data) {
6a9c52cf
JS
9285 printk(KERN_ERR "9062 BLKGRD: freeing %lu pages for "
9286 "_dump_buf_data at 0x%p\n",
81301a9b
JS
9287 (1L << _dump_buf_data_order), _dump_buf_data);
9288 free_pages((unsigned long)_dump_buf_data, _dump_buf_data_order);
9289 }
9290
9291 if (_dump_buf_dif) {
6a9c52cf
JS
9292 printk(KERN_ERR "9049 BLKGRD: freeing %lu pages for "
9293 "_dump_buf_dif at 0x%p\n",
81301a9b
JS
9294 (1L << _dump_buf_dif_order), _dump_buf_dif);
9295 free_pages((unsigned long)_dump_buf_dif, _dump_buf_dif_order);
9296 }
dea3101e
JB
9297}
9298
9299module_init(lpfc_init);
9300module_exit(lpfc_exit);
9301MODULE_LICENSE("GPL");
9302MODULE_DESCRIPTION(LPFC_MODULE_DESC);
9303MODULE_AUTHOR("Emulex Corporation - tech.support@emulex.com");
9304MODULE_VERSION("0:" LPFC_DRIVER_VERSION);