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