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