1 /*******************************************************************
2 * This file is part of the Emulex Linux Device Driver for *
3 * Fibre Channel Host Bus Adapters. *
4 * Copyright (C) 2017-2021 Broadcom. All Rights Reserved. The term *
5 * “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. *
6 * Copyright (C) 2004-2016 Emulex. All rights reserved. *
7 * EMULEX and SLI are trademarks of Emulex. *
9 * Portions Copyright (C) 2004-2005 Christoph Hellwig *
11 * This program is free software; you can redistribute it and/or *
12 * modify it under the terms of version 2 of the GNU General *
13 * Public License as published by the Free Software Foundation. *
14 * This program is distributed in the hope that it will be useful. *
15 * ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND *
16 * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, *
17 * FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE *
18 * DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD *
19 * TO BE LEGALLY INVALID. See the GNU General Public License for *
20 * more details, a copy of which can be found in the file COPYING *
21 * included with this package. *
22 *******************************************************************/
24 #include <linux/blkdev.h>
25 #include <linux/delay.h>
26 #include <linux/dma-mapping.h>
27 #include <linux/idr.h>
28 #include <linux/interrupt.h>
29 #include <linux/module.h>
30 #include <linux/kthread.h>
31 #include <linux/pci.h>
32 #include <linux/spinlock.h>
33 #include <linux/ctype.h>
34 #include <linux/aer.h>
35 #include <linux/slab.h>
36 #include <linux/firmware.h>
37 #include <linux/miscdevice.h>
38 #include <linux/percpu.h>
39 #include <linux/msi.h>
40 #include <linux/irq.h>
41 #include <linux/bitops.h>
42 #include <linux/crash_dump.h>
43 #include <linux/cpu.h>
44 #include <linux/cpuhotplug.h>
46 #include <scsi/scsi.h>
47 #include <scsi/scsi_device.h>
48 #include <scsi/scsi_host.h>
49 #include <scsi/scsi_transport_fc.h>
50 #include <scsi/scsi_tcq.h>
51 #include <scsi/fc/fc_fs.h>
56 #include "lpfc_sli4.h"
58 #include "lpfc_disc.h"
60 #include "lpfc_scsi.h"
61 #include "lpfc_nvme.h"
62 #include "lpfc_logmsg.h"
63 #include "lpfc_crtn.h"
64 #include "lpfc_vport.h"
65 #include "lpfc_version.h"
68 static enum cpuhp_state lpfc_cpuhp_state;
69 /* Used when mapping IRQ vectors in a driver centric manner */
70 static uint32_t lpfc_present_cpu;
72 static void __lpfc_cpuhp_remove(struct lpfc_hba *phba);
73 static void lpfc_cpuhp_remove(struct lpfc_hba *phba);
74 static void lpfc_cpuhp_add(struct lpfc_hba *phba);
75 static void lpfc_get_hba_model_desc(struct lpfc_hba *, uint8_t *, uint8_t *);
76 static int lpfc_post_rcv_buf(struct lpfc_hba *);
77 static int lpfc_sli4_queue_verify(struct lpfc_hba *);
78 static int lpfc_create_bootstrap_mbox(struct lpfc_hba *);
79 static int lpfc_setup_endian_order(struct lpfc_hba *);
80 static void lpfc_destroy_bootstrap_mbox(struct lpfc_hba *);
81 static void lpfc_free_els_sgl_list(struct lpfc_hba *);
82 static void lpfc_free_nvmet_sgl_list(struct lpfc_hba *);
83 static void lpfc_init_sgl_list(struct lpfc_hba *);
84 static int lpfc_init_active_sgl_array(struct lpfc_hba *);
85 static void lpfc_free_active_sgl(struct lpfc_hba *);
86 static int lpfc_hba_down_post_s3(struct lpfc_hba *phba);
87 static int lpfc_hba_down_post_s4(struct lpfc_hba *phba);
88 static int lpfc_sli4_cq_event_pool_create(struct lpfc_hba *);
89 static void lpfc_sli4_cq_event_pool_destroy(struct lpfc_hba *);
90 static void lpfc_sli4_cq_event_release_all(struct lpfc_hba *);
91 static void lpfc_sli4_disable_intr(struct lpfc_hba *);
92 static uint32_t lpfc_sli4_enable_intr(struct lpfc_hba *, uint32_t);
93 static void lpfc_sli4_oas_verify(struct lpfc_hba *phba);
94 static uint16_t lpfc_find_cpu_handle(struct lpfc_hba *, uint16_t, int);
95 static void lpfc_setup_bg(struct lpfc_hba *, struct Scsi_Host *);
96 static int lpfc_sli4_cgn_parm_chg_evt(struct lpfc_hba *);
98 static struct scsi_transport_template *lpfc_transport_template = NULL;
99 static struct scsi_transport_template *lpfc_vport_transport_template = NULL;
100 static DEFINE_IDR(lpfc_hba_index);
101 #define LPFC_NVMET_BUF_POST 254
102 static int lpfc_vmid_res_alloc(struct lpfc_hba *phba, struct lpfc_vport *vport);
105 * lpfc_config_port_prep - Perform lpfc initialization prior to config port
106 * @phba: pointer to lpfc hba data structure.
108 * This routine will do LPFC initialization prior to issuing the CONFIG_PORT
109 * mailbox command. It retrieves the revision information from the HBA and
110 * collects the Vital Product Data (VPD) about the HBA for preparing the
111 * configuration of the HBA.
115 * -ERESTART - requests the SLI layer to reset the HBA and try again.
116 * Any other value - indicates an error.
119 lpfc_config_port_prep(struct lpfc_hba *phba)
121 lpfc_vpd_t *vp = &phba->vpd;
125 char *lpfc_vpd_data = NULL;
127 static char licensed[56] =
128 "key unlock for use with gnu public licensed code only\0";
129 static int init_key = 1;
131 pmb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
133 phba->link_state = LPFC_HBA_ERROR;
138 phba->link_state = LPFC_INIT_MBX_CMDS;
140 if (lpfc_is_LC_HBA(phba->pcidev->device)) {
142 uint32_t *ptext = (uint32_t *) licensed;
144 for (i = 0; i < 56; i += sizeof (uint32_t), ptext++)
145 *ptext = cpu_to_be32(*ptext);
149 lpfc_read_nv(phba, pmb);
150 memset((char*)mb->un.varRDnvp.rsvd3, 0,
151 sizeof (mb->un.varRDnvp.rsvd3));
152 memcpy((char*)mb->un.varRDnvp.rsvd3, licensed,
155 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
157 if (rc != MBX_SUCCESS) {
158 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
159 "0324 Config Port initialization "
160 "error, mbxCmd x%x READ_NVPARM, "
162 mb->mbxCommand, mb->mbxStatus);
163 mempool_free(pmb, phba->mbox_mem_pool);
166 memcpy(phba->wwnn, (char *)mb->un.varRDnvp.nodename,
168 memcpy(phba->wwpn, (char *)mb->un.varRDnvp.portname,
173 * Clear all option bits except LPFC_SLI3_BG_ENABLED,
174 * which was already set in lpfc_get_cfgparam()
176 phba->sli3_options &= (uint32_t)LPFC_SLI3_BG_ENABLED;
178 /* Setup and issue mailbox READ REV command */
179 lpfc_read_rev(phba, pmb);
180 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
181 if (rc != MBX_SUCCESS) {
182 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
183 "0439 Adapter failed to init, mbxCmd x%x "
184 "READ_REV, mbxStatus x%x\n",
185 mb->mbxCommand, mb->mbxStatus);
186 mempool_free( pmb, phba->mbox_mem_pool);
192 * The value of rr must be 1 since the driver set the cv field to 1.
193 * This setting requires the FW to set all revision fields.
195 if (mb->un.varRdRev.rr == 0) {
197 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
198 "0440 Adapter failed to init, READ_REV has "
199 "missing revision information.\n");
200 mempool_free(pmb, phba->mbox_mem_pool);
204 if (phba->sli_rev == 3 && !mb->un.varRdRev.v3rsp) {
205 mempool_free(pmb, phba->mbox_mem_pool);
209 /* Save information as VPD data */
211 memcpy(&vp->sli3Feat, &mb->un.varRdRev.sli3Feat, sizeof(uint32_t));
212 vp->rev.sli1FwRev = mb->un.varRdRev.sli1FwRev;
213 memcpy(vp->rev.sli1FwName, (char*) mb->un.varRdRev.sli1FwName, 16);
214 vp->rev.sli2FwRev = mb->un.varRdRev.sli2FwRev;
215 memcpy(vp->rev.sli2FwName, (char *) mb->un.varRdRev.sli2FwName, 16);
216 vp->rev.biuRev = mb->un.varRdRev.biuRev;
217 vp->rev.smRev = mb->un.varRdRev.smRev;
218 vp->rev.smFwRev = mb->un.varRdRev.un.smFwRev;
219 vp->rev.endecRev = mb->un.varRdRev.endecRev;
220 vp->rev.fcphHigh = mb->un.varRdRev.fcphHigh;
221 vp->rev.fcphLow = mb->un.varRdRev.fcphLow;
222 vp->rev.feaLevelHigh = mb->un.varRdRev.feaLevelHigh;
223 vp->rev.feaLevelLow = mb->un.varRdRev.feaLevelLow;
224 vp->rev.postKernRev = mb->un.varRdRev.postKernRev;
225 vp->rev.opFwRev = mb->un.varRdRev.opFwRev;
227 /* If the sli feature level is less then 9, we must
228 * tear down all RPIs and VPIs on link down if NPIV
231 if (vp->rev.feaLevelHigh < 9)
232 phba->sli3_options |= LPFC_SLI3_VPORT_TEARDOWN;
234 if (lpfc_is_LC_HBA(phba->pcidev->device))
235 memcpy(phba->RandomData, (char *)&mb->un.varWords[24],
236 sizeof (phba->RandomData));
238 /* Get adapter VPD information */
239 lpfc_vpd_data = kmalloc(DMP_VPD_SIZE, GFP_KERNEL);
243 lpfc_dump_mem(phba, pmb, offset, DMP_REGION_VPD);
244 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
246 if (rc != MBX_SUCCESS) {
247 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
248 "0441 VPD not present on adapter, "
249 "mbxCmd x%x DUMP VPD, mbxStatus x%x\n",
250 mb->mbxCommand, mb->mbxStatus);
251 mb->un.varDmp.word_cnt = 0;
253 /* dump mem may return a zero when finished or we got a
254 * mailbox error, either way we are done.
256 if (mb->un.varDmp.word_cnt == 0)
259 if (mb->un.varDmp.word_cnt > DMP_VPD_SIZE - offset)
260 mb->un.varDmp.word_cnt = DMP_VPD_SIZE - offset;
261 lpfc_sli_pcimem_bcopy(((uint8_t *)mb) + DMP_RSP_OFFSET,
262 lpfc_vpd_data + offset,
263 mb->un.varDmp.word_cnt);
264 offset += mb->un.varDmp.word_cnt;
265 } while (mb->un.varDmp.word_cnt && offset < DMP_VPD_SIZE);
267 lpfc_parse_vpd(phba, lpfc_vpd_data, offset);
269 kfree(lpfc_vpd_data);
271 mempool_free(pmb, phba->mbox_mem_pool);
276 * lpfc_config_async_cmpl - Completion handler for config async event mbox cmd
277 * @phba: pointer to lpfc hba data structure.
278 * @pmboxq: pointer to the driver internal queue element for mailbox command.
280 * This is the completion handler for driver's configuring asynchronous event
281 * mailbox command to the device. If the mailbox command returns successfully,
282 * it will set internal async event support flag to 1; otherwise, it will
283 * set internal async event support flag to 0.
286 lpfc_config_async_cmpl(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmboxq)
288 if (pmboxq->u.mb.mbxStatus == MBX_SUCCESS)
289 phba->temp_sensor_support = 1;
291 phba->temp_sensor_support = 0;
292 mempool_free(pmboxq, phba->mbox_mem_pool);
297 * lpfc_dump_wakeup_param_cmpl - dump memory mailbox command completion handler
298 * @phba: pointer to lpfc hba data structure.
299 * @pmboxq: pointer to the driver internal queue element for mailbox command.
301 * This is the completion handler for dump mailbox command for getting
302 * wake up parameters. When this command complete, the response contain
303 * Option rom version of the HBA. This function translate the version number
304 * into a human readable string and store it in OptionROMVersion.
307 lpfc_dump_wakeup_param_cmpl(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmboxq)
310 uint32_t prog_id_word;
312 /* character array used for decoding dist type. */
313 char dist_char[] = "nabx";
315 if (pmboxq->u.mb.mbxStatus != MBX_SUCCESS) {
316 mempool_free(pmboxq, phba->mbox_mem_pool);
320 prg = (struct prog_id *) &prog_id_word;
322 /* word 7 contain option rom version */
323 prog_id_word = pmboxq->u.mb.un.varWords[7];
325 /* Decode the Option rom version word to a readable string */
327 dist = dist_char[prg->dist];
329 if ((prg->dist == 3) && (prg->num == 0))
330 snprintf(phba->OptionROMVersion, 32, "%d.%d%d",
331 prg->ver, prg->rev, prg->lev);
333 snprintf(phba->OptionROMVersion, 32, "%d.%d%d%c%d",
334 prg->ver, prg->rev, prg->lev,
336 mempool_free(pmboxq, phba->mbox_mem_pool);
341 * lpfc_update_vport_wwn - Updates the fc_nodename, fc_portname,
342 * cfg_soft_wwnn, cfg_soft_wwpn
343 * @vport: pointer to lpfc vport data structure.
350 lpfc_update_vport_wwn(struct lpfc_vport *vport)
352 uint8_t vvvl = vport->fc_sparam.cmn.valid_vendor_ver_level;
353 u32 *fawwpn_key = (u32 *)&vport->fc_sparam.un.vendorVersion[0];
355 /* If the soft name exists then update it using the service params */
356 if (vport->phba->cfg_soft_wwnn)
357 u64_to_wwn(vport->phba->cfg_soft_wwnn,
358 vport->fc_sparam.nodeName.u.wwn);
359 if (vport->phba->cfg_soft_wwpn)
360 u64_to_wwn(vport->phba->cfg_soft_wwpn,
361 vport->fc_sparam.portName.u.wwn);
364 * If the name is empty or there exists a soft name
365 * then copy the service params name, otherwise use the fc name
367 if (vport->fc_nodename.u.wwn[0] == 0 || vport->phba->cfg_soft_wwnn)
368 memcpy(&vport->fc_nodename, &vport->fc_sparam.nodeName,
369 sizeof(struct lpfc_name));
371 memcpy(&vport->fc_sparam.nodeName, &vport->fc_nodename,
372 sizeof(struct lpfc_name));
375 * If the port name has changed, then set the Param changes flag
378 if (vport->fc_portname.u.wwn[0] != 0 &&
379 memcmp(&vport->fc_portname, &vport->fc_sparam.portName,
380 sizeof(struct lpfc_name)))
381 vport->vport_flag |= FAWWPN_PARAM_CHG;
383 if (vport->fc_portname.u.wwn[0] == 0 ||
384 vport->phba->cfg_soft_wwpn ||
385 (vvvl == 1 && cpu_to_be32(*fawwpn_key) == FAPWWN_KEY_VENDOR) ||
386 vport->vport_flag & FAWWPN_SET) {
387 memcpy(&vport->fc_portname, &vport->fc_sparam.portName,
388 sizeof(struct lpfc_name));
389 vport->vport_flag &= ~FAWWPN_SET;
390 if (vvvl == 1 && cpu_to_be32(*fawwpn_key) == FAPWWN_KEY_VENDOR)
391 vport->vport_flag |= FAWWPN_SET;
394 memcpy(&vport->fc_sparam.portName, &vport->fc_portname,
395 sizeof(struct lpfc_name));
399 * lpfc_config_port_post - Perform lpfc initialization after config port
400 * @phba: pointer to lpfc hba data structure.
402 * This routine will do LPFC initialization after the CONFIG_PORT mailbox
403 * command call. It performs all internal resource and state setups on the
404 * port: post IOCB buffers, enable appropriate host interrupt attentions,
405 * ELS ring timers, etc.
409 * Any other value - error.
412 lpfc_config_port_post(struct lpfc_hba *phba)
414 struct lpfc_vport *vport = phba->pport;
415 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
418 struct lpfc_dmabuf *mp;
419 struct lpfc_sli *psli = &phba->sli;
420 uint32_t status, timeout;
424 spin_lock_irq(&phba->hbalock);
426 * If the Config port completed correctly the HBA is not
427 * over heated any more.
429 if (phba->over_temp_state == HBA_OVER_TEMP)
430 phba->over_temp_state = HBA_NORMAL_TEMP;
431 spin_unlock_irq(&phba->hbalock);
433 pmb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
435 phba->link_state = LPFC_HBA_ERROR;
440 /* Get login parameters for NID. */
441 rc = lpfc_read_sparam(phba, pmb, 0);
443 mempool_free(pmb, phba->mbox_mem_pool);
448 if (lpfc_sli_issue_mbox(phba, pmb, MBX_POLL) != MBX_SUCCESS) {
449 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
450 "0448 Adapter failed init, mbxCmd x%x "
451 "READ_SPARM mbxStatus x%x\n",
452 mb->mbxCommand, mb->mbxStatus);
453 phba->link_state = LPFC_HBA_ERROR;
454 mp = (struct lpfc_dmabuf *)pmb->ctx_buf;
455 mempool_free(pmb, phba->mbox_mem_pool);
456 lpfc_mbuf_free(phba, mp->virt, mp->phys);
461 mp = (struct lpfc_dmabuf *)pmb->ctx_buf;
463 memcpy(&vport->fc_sparam, mp->virt, sizeof (struct serv_parm));
464 lpfc_mbuf_free(phba, mp->virt, mp->phys);
467 lpfc_update_vport_wwn(vport);
469 /* Update the fc_host data structures with new wwn. */
470 fc_host_node_name(shost) = wwn_to_u64(vport->fc_nodename.u.wwn);
471 fc_host_port_name(shost) = wwn_to_u64(vport->fc_portname.u.wwn);
472 fc_host_max_npiv_vports(shost) = phba->max_vpi;
474 /* If no serial number in VPD data, use low 6 bytes of WWNN */
475 /* This should be consolidated into parse_vpd ? - mr */
476 if (phba->SerialNumber[0] == 0) {
479 outptr = &vport->fc_nodename.u.s.IEEE[0];
480 for (i = 0; i < 12; i++) {
482 j = ((status & 0xf0) >> 4);
484 phba->SerialNumber[i] =
485 (char)((uint8_t) 0x30 + (uint8_t) j);
487 phba->SerialNumber[i] =
488 (char)((uint8_t) 0x61 + (uint8_t) (j - 10));
492 phba->SerialNumber[i] =
493 (char)((uint8_t) 0x30 + (uint8_t) j);
495 phba->SerialNumber[i] =
496 (char)((uint8_t) 0x61 + (uint8_t) (j - 10));
500 lpfc_read_config(phba, pmb);
502 if (lpfc_sli_issue_mbox(phba, pmb, MBX_POLL) != MBX_SUCCESS) {
503 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
504 "0453 Adapter failed to init, mbxCmd x%x "
505 "READ_CONFIG, mbxStatus x%x\n",
506 mb->mbxCommand, mb->mbxStatus);
507 phba->link_state = LPFC_HBA_ERROR;
508 mempool_free( pmb, phba->mbox_mem_pool);
512 /* Check if the port is disabled */
513 lpfc_sli_read_link_ste(phba);
515 /* Reset the DFT_HBA_Q_DEPTH to the max xri */
516 if (phba->cfg_hba_queue_depth > mb->un.varRdConfig.max_xri) {
517 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
518 "3359 HBA queue depth changed from %d to %d\n",
519 phba->cfg_hba_queue_depth,
520 mb->un.varRdConfig.max_xri);
521 phba->cfg_hba_queue_depth = mb->un.varRdConfig.max_xri;
524 phba->lmt = mb->un.varRdConfig.lmt;
526 /* Get the default values for Model Name and Description */
527 lpfc_get_hba_model_desc(phba, phba->ModelName, phba->ModelDesc);
529 phba->link_state = LPFC_LINK_DOWN;
531 /* Only process IOCBs on ELS ring till hba_state is READY */
532 if (psli->sli3_ring[LPFC_EXTRA_RING].sli.sli3.cmdringaddr)
533 psli->sli3_ring[LPFC_EXTRA_RING].flag |= LPFC_STOP_IOCB_EVENT;
534 if (psli->sli3_ring[LPFC_FCP_RING].sli.sli3.cmdringaddr)
535 psli->sli3_ring[LPFC_FCP_RING].flag |= LPFC_STOP_IOCB_EVENT;
537 /* Post receive buffers for desired rings */
538 if (phba->sli_rev != 3)
539 lpfc_post_rcv_buf(phba);
542 * Configure HBA MSI-X attention conditions to messages if MSI-X mode
544 if (phba->intr_type == MSIX) {
545 rc = lpfc_config_msi(phba, pmb);
547 mempool_free(pmb, phba->mbox_mem_pool);
550 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
551 if (rc != MBX_SUCCESS) {
552 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
553 "0352 Config MSI mailbox command "
554 "failed, mbxCmd x%x, mbxStatus x%x\n",
555 pmb->u.mb.mbxCommand,
556 pmb->u.mb.mbxStatus);
557 mempool_free(pmb, phba->mbox_mem_pool);
562 spin_lock_irq(&phba->hbalock);
563 /* Initialize ERATT handling flag */
564 phba->hba_flag &= ~HBA_ERATT_HANDLED;
566 /* Enable appropriate host interrupts */
567 if (lpfc_readl(phba->HCregaddr, &status)) {
568 spin_unlock_irq(&phba->hbalock);
571 status |= HC_MBINT_ENA | HC_ERINT_ENA | HC_LAINT_ENA;
572 if (psli->num_rings > 0)
573 status |= HC_R0INT_ENA;
574 if (psli->num_rings > 1)
575 status |= HC_R1INT_ENA;
576 if (psli->num_rings > 2)
577 status |= HC_R2INT_ENA;
578 if (psli->num_rings > 3)
579 status |= HC_R3INT_ENA;
581 if ((phba->cfg_poll & ENABLE_FCP_RING_POLLING) &&
582 (phba->cfg_poll & DISABLE_FCP_RING_INT))
583 status &= ~(HC_R0INT_ENA);
585 writel(status, phba->HCregaddr);
586 readl(phba->HCregaddr); /* flush */
587 spin_unlock_irq(&phba->hbalock);
589 /* Set up ring-0 (ELS) timer */
590 timeout = phba->fc_ratov * 2;
591 mod_timer(&vport->els_tmofunc,
592 jiffies + msecs_to_jiffies(1000 * timeout));
593 /* Set up heart beat (HB) timer */
594 mod_timer(&phba->hb_tmofunc,
595 jiffies + msecs_to_jiffies(1000 * LPFC_HB_MBOX_INTERVAL));
596 phba->hba_flag &= ~(HBA_HBEAT_INP | HBA_HBEAT_TMO);
597 phba->last_completion_time = jiffies;
598 /* Set up error attention (ERATT) polling timer */
599 mod_timer(&phba->eratt_poll,
600 jiffies + msecs_to_jiffies(1000 * phba->eratt_poll_interval));
602 if (phba->hba_flag & LINK_DISABLED) {
603 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
604 "2598 Adapter Link is disabled.\n");
605 lpfc_down_link(phba, pmb);
606 pmb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
607 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
608 if ((rc != MBX_SUCCESS) && (rc != MBX_BUSY)) {
609 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
610 "2599 Adapter failed to issue DOWN_LINK"
611 " mbox command rc 0x%x\n", rc);
613 mempool_free(pmb, phba->mbox_mem_pool);
616 } else if (phba->cfg_suppress_link_up == LPFC_INITIALIZE_LINK) {
617 mempool_free(pmb, phba->mbox_mem_pool);
618 rc = phba->lpfc_hba_init_link(phba, MBX_NOWAIT);
622 /* MBOX buffer will be freed in mbox compl */
623 pmb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
625 phba->link_state = LPFC_HBA_ERROR;
629 lpfc_config_async(phba, pmb, LPFC_ELS_RING);
630 pmb->mbox_cmpl = lpfc_config_async_cmpl;
631 pmb->vport = phba->pport;
632 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
634 if ((rc != MBX_BUSY) && (rc != MBX_SUCCESS)) {
635 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
636 "0456 Adapter failed to issue "
637 "ASYNCEVT_ENABLE mbox status x%x\n",
639 mempool_free(pmb, phba->mbox_mem_pool);
642 /* Get Option rom version */
643 pmb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
645 phba->link_state = LPFC_HBA_ERROR;
649 lpfc_dump_wakeup_param(phba, pmb);
650 pmb->mbox_cmpl = lpfc_dump_wakeup_param_cmpl;
651 pmb->vport = phba->pport;
652 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
654 if ((rc != MBX_BUSY) && (rc != MBX_SUCCESS)) {
655 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
656 "0435 Adapter failed "
657 "to get Option ROM version status x%x\n", rc);
658 mempool_free(pmb, phba->mbox_mem_pool);
665 * lpfc_hba_init_link - Initialize the FC link
666 * @phba: pointer to lpfc hba data structure.
667 * @flag: mailbox command issue mode - either MBX_POLL or MBX_NOWAIT
669 * This routine will issue the INIT_LINK mailbox command call.
670 * It is available to other drivers through the lpfc_hba data
671 * structure for use as a delayed link up mechanism with the
672 * module parameter lpfc_suppress_link_up.
676 * Any other value - error
679 lpfc_hba_init_link(struct lpfc_hba *phba, uint32_t flag)
681 return lpfc_hba_init_link_fc_topology(phba, phba->cfg_topology, flag);
685 * lpfc_hba_init_link_fc_topology - Initialize FC link with desired topology
686 * @phba: pointer to lpfc hba data structure.
687 * @fc_topology: desired fc topology.
688 * @flag: mailbox command issue mode - either MBX_POLL or MBX_NOWAIT
690 * This routine will issue the INIT_LINK mailbox command call.
691 * It is available to other drivers through the lpfc_hba data
692 * structure for use as a delayed link up mechanism with the
693 * module parameter lpfc_suppress_link_up.
697 * Any other value - error
700 lpfc_hba_init_link_fc_topology(struct lpfc_hba *phba, uint32_t fc_topology,
703 struct lpfc_vport *vport = phba->pport;
708 pmb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
710 phba->link_state = LPFC_HBA_ERROR;
716 if ((phba->cfg_link_speed > LPFC_USER_LINK_SPEED_MAX) ||
717 ((phba->cfg_link_speed == LPFC_USER_LINK_SPEED_1G) &&
718 !(phba->lmt & LMT_1Gb)) ||
719 ((phba->cfg_link_speed == LPFC_USER_LINK_SPEED_2G) &&
720 !(phba->lmt & LMT_2Gb)) ||
721 ((phba->cfg_link_speed == LPFC_USER_LINK_SPEED_4G) &&
722 !(phba->lmt & LMT_4Gb)) ||
723 ((phba->cfg_link_speed == LPFC_USER_LINK_SPEED_8G) &&
724 !(phba->lmt & LMT_8Gb)) ||
725 ((phba->cfg_link_speed == LPFC_USER_LINK_SPEED_10G) &&
726 !(phba->lmt & LMT_10Gb)) ||
727 ((phba->cfg_link_speed == LPFC_USER_LINK_SPEED_16G) &&
728 !(phba->lmt & LMT_16Gb)) ||
729 ((phba->cfg_link_speed == LPFC_USER_LINK_SPEED_32G) &&
730 !(phba->lmt & LMT_32Gb)) ||
731 ((phba->cfg_link_speed == LPFC_USER_LINK_SPEED_64G) &&
732 !(phba->lmt & LMT_64Gb))) {
733 /* Reset link speed to auto */
734 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
735 "1302 Invalid speed for this board:%d "
736 "Reset link speed to auto.\n",
737 phba->cfg_link_speed);
738 phba->cfg_link_speed = LPFC_USER_LINK_SPEED_AUTO;
740 lpfc_init_link(phba, pmb, fc_topology, phba->cfg_link_speed);
741 pmb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
742 if (phba->sli_rev < LPFC_SLI_REV4)
743 lpfc_set_loopback_flag(phba);
744 rc = lpfc_sli_issue_mbox(phba, pmb, flag);
745 if ((rc != MBX_BUSY) && (rc != MBX_SUCCESS)) {
746 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
747 "0498 Adapter failed to init, mbxCmd x%x "
748 "INIT_LINK, mbxStatus x%x\n",
749 mb->mbxCommand, mb->mbxStatus);
750 if (phba->sli_rev <= LPFC_SLI_REV3) {
751 /* Clear all interrupt enable conditions */
752 writel(0, phba->HCregaddr);
753 readl(phba->HCregaddr); /* flush */
754 /* Clear all pending interrupts */
755 writel(0xffffffff, phba->HAregaddr);
756 readl(phba->HAregaddr); /* flush */
758 phba->link_state = LPFC_HBA_ERROR;
759 if (rc != MBX_BUSY || flag == MBX_POLL)
760 mempool_free(pmb, phba->mbox_mem_pool);
763 phba->cfg_suppress_link_up = LPFC_INITIALIZE_LINK;
764 if (flag == MBX_POLL)
765 mempool_free(pmb, phba->mbox_mem_pool);
771 * lpfc_hba_down_link - this routine downs the FC link
772 * @phba: pointer to lpfc hba data structure.
773 * @flag: mailbox command issue mode - either MBX_POLL or MBX_NOWAIT
775 * This routine will issue the DOWN_LINK mailbox command call.
776 * It is available to other drivers through the lpfc_hba data
777 * structure for use to stop the link.
781 * Any other value - error
784 lpfc_hba_down_link(struct lpfc_hba *phba, uint32_t flag)
789 pmb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
791 phba->link_state = LPFC_HBA_ERROR;
795 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
796 "0491 Adapter Link is disabled.\n");
797 lpfc_down_link(phba, pmb);
798 pmb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
799 rc = lpfc_sli_issue_mbox(phba, pmb, flag);
800 if ((rc != MBX_SUCCESS) && (rc != MBX_BUSY)) {
801 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
802 "2522 Adapter failed to issue DOWN_LINK"
803 " mbox command rc 0x%x\n", rc);
805 mempool_free(pmb, phba->mbox_mem_pool);
808 if (flag == MBX_POLL)
809 mempool_free(pmb, phba->mbox_mem_pool);
815 * lpfc_hba_down_prep - Perform lpfc uninitialization prior to HBA reset
816 * @phba: pointer to lpfc HBA data structure.
818 * This routine will do LPFC uninitialization before the HBA is reset when
819 * bringing down the SLI Layer.
823 * Any other value - error.
826 lpfc_hba_down_prep(struct lpfc_hba *phba)
828 struct lpfc_vport **vports;
831 if (phba->sli_rev <= LPFC_SLI_REV3) {
832 /* Disable interrupts */
833 writel(0, phba->HCregaddr);
834 readl(phba->HCregaddr); /* flush */
837 if (phba->pport->load_flag & FC_UNLOADING)
838 lpfc_cleanup_discovery_resources(phba->pport);
840 vports = lpfc_create_vport_work_array(phba);
842 for (i = 0; i <= phba->max_vports &&
843 vports[i] != NULL; i++)
844 lpfc_cleanup_discovery_resources(vports[i]);
845 lpfc_destroy_vport_work_array(phba, vports);
851 * lpfc_sli4_free_sp_events - Cleanup sp_queue_events to free
852 * rspiocb which got deferred
854 * @phba: pointer to lpfc HBA data structure.
856 * This routine will cleanup completed slow path events after HBA is reset
857 * when bringing down the SLI Layer.
864 lpfc_sli4_free_sp_events(struct lpfc_hba *phba)
866 struct lpfc_iocbq *rspiocbq;
867 struct hbq_dmabuf *dmabuf;
868 struct lpfc_cq_event *cq_event;
870 spin_lock_irq(&phba->hbalock);
871 phba->hba_flag &= ~HBA_SP_QUEUE_EVT;
872 spin_unlock_irq(&phba->hbalock);
874 while (!list_empty(&phba->sli4_hba.sp_queue_event)) {
875 /* Get the response iocb from the head of work queue */
876 spin_lock_irq(&phba->hbalock);
877 list_remove_head(&phba->sli4_hba.sp_queue_event,
878 cq_event, struct lpfc_cq_event, list);
879 spin_unlock_irq(&phba->hbalock);
881 switch (bf_get(lpfc_wcqe_c_code, &cq_event->cqe.wcqe_cmpl)) {
882 case CQE_CODE_COMPL_WQE:
883 rspiocbq = container_of(cq_event, struct lpfc_iocbq,
885 lpfc_sli_release_iocbq(phba, rspiocbq);
887 case CQE_CODE_RECEIVE:
888 case CQE_CODE_RECEIVE_V1:
889 dmabuf = container_of(cq_event, struct hbq_dmabuf,
891 lpfc_in_buf_free(phba, &dmabuf->dbuf);
897 * lpfc_hba_free_post_buf - Perform lpfc uninitialization after HBA reset
898 * @phba: pointer to lpfc HBA data structure.
900 * This routine will cleanup posted ELS buffers after the HBA is reset
901 * when bringing down the SLI Layer.
908 lpfc_hba_free_post_buf(struct lpfc_hba *phba)
910 struct lpfc_sli *psli = &phba->sli;
911 struct lpfc_sli_ring *pring;
912 struct lpfc_dmabuf *mp, *next_mp;
916 if (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED)
917 lpfc_sli_hbqbuf_free_all(phba);
919 /* Cleanup preposted buffers on the ELS ring */
920 pring = &psli->sli3_ring[LPFC_ELS_RING];
921 spin_lock_irq(&phba->hbalock);
922 list_splice_init(&pring->postbufq, &buflist);
923 spin_unlock_irq(&phba->hbalock);
926 list_for_each_entry_safe(mp, next_mp, &buflist, list) {
929 lpfc_mbuf_free(phba, mp->virt, mp->phys);
933 spin_lock_irq(&phba->hbalock);
934 pring->postbufq_cnt -= count;
935 spin_unlock_irq(&phba->hbalock);
940 * lpfc_hba_clean_txcmplq - Perform lpfc uninitialization after HBA reset
941 * @phba: pointer to lpfc HBA data structure.
943 * This routine will cleanup the txcmplq after the HBA is reset when bringing
944 * down the SLI Layer.
950 lpfc_hba_clean_txcmplq(struct lpfc_hba *phba)
952 struct lpfc_sli *psli = &phba->sli;
953 struct lpfc_queue *qp = NULL;
954 struct lpfc_sli_ring *pring;
955 LIST_HEAD(completions);
957 struct lpfc_iocbq *piocb, *next_iocb;
959 if (phba->sli_rev != LPFC_SLI_REV4) {
960 for (i = 0; i < psli->num_rings; i++) {
961 pring = &psli->sli3_ring[i];
962 spin_lock_irq(&phba->hbalock);
963 /* At this point in time the HBA is either reset or DOA
964 * Nothing should be on txcmplq as it will
967 list_splice_init(&pring->txcmplq, &completions);
968 pring->txcmplq_cnt = 0;
969 spin_unlock_irq(&phba->hbalock);
971 lpfc_sli_abort_iocb_ring(phba, pring);
973 /* Cancel all the IOCBs from the completions list */
974 lpfc_sli_cancel_iocbs(phba, &completions,
975 IOSTAT_LOCAL_REJECT, IOERR_SLI_ABORTED);
978 list_for_each_entry(qp, &phba->sli4_hba.lpfc_wq_list, wq_list) {
982 spin_lock_irq(&pring->ring_lock);
983 list_for_each_entry_safe(piocb, next_iocb,
984 &pring->txcmplq, list)
985 piocb->iocb_flag &= ~LPFC_IO_ON_TXCMPLQ;
986 list_splice_init(&pring->txcmplq, &completions);
987 pring->txcmplq_cnt = 0;
988 spin_unlock_irq(&pring->ring_lock);
989 lpfc_sli_abort_iocb_ring(phba, pring);
991 /* Cancel all the IOCBs from the completions list */
992 lpfc_sli_cancel_iocbs(phba, &completions,
993 IOSTAT_LOCAL_REJECT, IOERR_SLI_ABORTED);
997 * lpfc_hba_down_post_s3 - Perform lpfc uninitialization after HBA reset
998 * @phba: pointer to lpfc HBA data structure.
1000 * This routine will do uninitialization after the HBA is reset when bring
1001 * down the SLI Layer.
1005 * Any other value - error.
1008 lpfc_hba_down_post_s3(struct lpfc_hba *phba)
1010 lpfc_hba_free_post_buf(phba);
1011 lpfc_hba_clean_txcmplq(phba);
1016 * lpfc_hba_down_post_s4 - Perform lpfc uninitialization after HBA reset
1017 * @phba: pointer to lpfc HBA data structure.
1019 * This routine will do uninitialization after the HBA is reset when bring
1020 * down the SLI Layer.
1024 * Any other value - error.
1027 lpfc_hba_down_post_s4(struct lpfc_hba *phba)
1029 struct lpfc_io_buf *psb, *psb_next;
1030 struct lpfc_async_xchg_ctx *ctxp, *ctxp_next;
1031 struct lpfc_sli4_hdw_queue *qp;
1033 LIST_HEAD(nvme_aborts);
1034 LIST_HEAD(nvmet_aborts);
1035 struct lpfc_sglq *sglq_entry = NULL;
1039 lpfc_sli_hbqbuf_free_all(phba);
1040 lpfc_hba_clean_txcmplq(phba);
1042 /* At this point in time the HBA is either reset or DOA. Either
1043 * way, nothing should be on lpfc_abts_els_sgl_list, it needs to be
1044 * on the lpfc_els_sgl_list so that it can either be freed if the
1045 * driver is unloading or reposted if the driver is restarting
1049 /* sgl_list_lock required because worker thread uses this
1052 spin_lock_irq(&phba->sli4_hba.sgl_list_lock);
1053 list_for_each_entry(sglq_entry,
1054 &phba->sli4_hba.lpfc_abts_els_sgl_list, list)
1055 sglq_entry->state = SGL_FREED;
1057 list_splice_init(&phba->sli4_hba.lpfc_abts_els_sgl_list,
1058 &phba->sli4_hba.lpfc_els_sgl_list);
1061 spin_unlock_irq(&phba->sli4_hba.sgl_list_lock);
1063 /* abts_xxxx_buf_list_lock required because worker thread uses this
1066 spin_lock_irq(&phba->hbalock);
1068 for (idx = 0; idx < phba->cfg_hdw_queue; idx++) {
1069 qp = &phba->sli4_hba.hdwq[idx];
1071 spin_lock(&qp->abts_io_buf_list_lock);
1072 list_splice_init(&qp->lpfc_abts_io_buf_list,
1075 list_for_each_entry_safe(psb, psb_next, &aborts, list) {
1077 psb->status = IOSTAT_SUCCESS;
1080 spin_lock(&qp->io_buf_list_put_lock);
1081 list_splice_init(&aborts, &qp->lpfc_io_buf_list_put);
1082 qp->put_io_bufs += qp->abts_scsi_io_bufs;
1083 qp->put_io_bufs += qp->abts_nvme_io_bufs;
1084 qp->abts_scsi_io_bufs = 0;
1085 qp->abts_nvme_io_bufs = 0;
1086 spin_unlock(&qp->io_buf_list_put_lock);
1087 spin_unlock(&qp->abts_io_buf_list_lock);
1089 spin_unlock_irq(&phba->hbalock);
1091 if (phba->cfg_enable_fc4_type & LPFC_ENABLE_NVME) {
1092 spin_lock_irq(&phba->sli4_hba.abts_nvmet_buf_list_lock);
1093 list_splice_init(&phba->sli4_hba.lpfc_abts_nvmet_ctx_list,
1095 spin_unlock_irq(&phba->sli4_hba.abts_nvmet_buf_list_lock);
1096 list_for_each_entry_safe(ctxp, ctxp_next, &nvmet_aborts, list) {
1097 ctxp->flag &= ~(LPFC_NVME_XBUSY | LPFC_NVME_ABORT_OP);
1098 lpfc_nvmet_ctxbuf_post(phba, ctxp->ctxbuf);
1102 lpfc_sli4_free_sp_events(phba);
1107 * lpfc_hba_down_post - Wrapper func for hba down post routine
1108 * @phba: pointer to lpfc HBA data structure.
1110 * This routine wraps the actual SLI3 or SLI4 routine for performing
1111 * uninitialization after the HBA is reset when bring down the SLI Layer.
1115 * Any other value - error.
1118 lpfc_hba_down_post(struct lpfc_hba *phba)
1120 return (*phba->lpfc_hba_down_post)(phba);
1124 * lpfc_hb_timeout - The HBA-timer timeout handler
1125 * @t: timer context used to obtain the pointer to lpfc hba data structure.
1127 * This is the HBA-timer timeout handler registered to the lpfc driver. When
1128 * this timer fires, a HBA timeout event shall be posted to the lpfc driver
1129 * work-port-events bitmap and the worker thread is notified. This timeout
1130 * event will be used by the worker thread to invoke the actual timeout
1131 * handler routine, lpfc_hb_timeout_handler. Any periodical operations will
1132 * be performed in the timeout handler and the HBA timeout event bit shall
1133 * be cleared by the worker thread after it has taken the event bitmap out.
1136 lpfc_hb_timeout(struct timer_list *t)
1138 struct lpfc_hba *phba;
1139 uint32_t tmo_posted;
1140 unsigned long iflag;
1142 phba = from_timer(phba, t, hb_tmofunc);
1144 /* Check for heart beat timeout conditions */
1145 spin_lock_irqsave(&phba->pport->work_port_lock, iflag);
1146 tmo_posted = phba->pport->work_port_events & WORKER_HB_TMO;
1148 phba->pport->work_port_events |= WORKER_HB_TMO;
1149 spin_unlock_irqrestore(&phba->pport->work_port_lock, iflag);
1151 /* Tell the worker thread there is work to do */
1153 lpfc_worker_wake_up(phba);
1158 * lpfc_rrq_timeout - The RRQ-timer timeout handler
1159 * @t: timer context used to obtain the pointer to lpfc hba data structure.
1161 * This is the RRQ-timer timeout handler registered to the lpfc driver. When
1162 * this timer fires, a RRQ timeout event shall be posted to the lpfc driver
1163 * work-port-events bitmap and the worker thread is notified. This timeout
1164 * event will be used by the worker thread to invoke the actual timeout
1165 * handler routine, lpfc_rrq_handler. Any periodical operations will
1166 * be performed in the timeout handler and the RRQ timeout event bit shall
1167 * be cleared by the worker thread after it has taken the event bitmap out.
1170 lpfc_rrq_timeout(struct timer_list *t)
1172 struct lpfc_hba *phba;
1173 unsigned long iflag;
1175 phba = from_timer(phba, t, rrq_tmr);
1176 spin_lock_irqsave(&phba->pport->work_port_lock, iflag);
1177 if (!(phba->pport->load_flag & FC_UNLOADING))
1178 phba->hba_flag |= HBA_RRQ_ACTIVE;
1180 phba->hba_flag &= ~HBA_RRQ_ACTIVE;
1181 spin_unlock_irqrestore(&phba->pport->work_port_lock, iflag);
1183 if (!(phba->pport->load_flag & FC_UNLOADING))
1184 lpfc_worker_wake_up(phba);
1188 * lpfc_hb_mbox_cmpl - The lpfc heart-beat mailbox command callback function
1189 * @phba: pointer to lpfc hba data structure.
1190 * @pmboxq: pointer to the driver internal queue element for mailbox command.
1192 * This is the callback function to the lpfc heart-beat mailbox command.
1193 * If configured, the lpfc driver issues the heart-beat mailbox command to
1194 * the HBA every LPFC_HB_MBOX_INTERVAL (current 5) seconds. At the time the
1195 * heart-beat mailbox command is issued, the driver shall set up heart-beat
1196 * timeout timer to LPFC_HB_MBOX_TIMEOUT (current 30) seconds and marks
1197 * heart-beat outstanding state. Once the mailbox command comes back and
1198 * no error conditions detected, the heart-beat mailbox command timer is
1199 * reset to LPFC_HB_MBOX_INTERVAL seconds and the heart-beat outstanding
1200 * state is cleared for the next heart-beat. If the timer expired with the
1201 * heart-beat outstanding state set, the driver will put the HBA offline.
1204 lpfc_hb_mbox_cmpl(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmboxq)
1206 unsigned long drvr_flag;
1208 spin_lock_irqsave(&phba->hbalock, drvr_flag);
1209 phba->hba_flag &= ~(HBA_HBEAT_INP | HBA_HBEAT_TMO);
1210 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
1212 /* Check and reset heart-beat timer if necessary */
1213 mempool_free(pmboxq, phba->mbox_mem_pool);
1214 if (!(phba->pport->fc_flag & FC_OFFLINE_MODE) &&
1215 !(phba->link_state == LPFC_HBA_ERROR) &&
1216 !(phba->pport->load_flag & FC_UNLOADING))
1217 mod_timer(&phba->hb_tmofunc,
1219 msecs_to_jiffies(1000 * LPFC_HB_MBOX_INTERVAL));
1224 * lpfc_idle_stat_delay_work - idle_stat tracking
1226 * This routine tracks per-cq idle_stat and determines polling decisions.
1232 lpfc_idle_stat_delay_work(struct work_struct *work)
1234 struct lpfc_hba *phba = container_of(to_delayed_work(work),
1236 idle_stat_delay_work);
1237 struct lpfc_queue *cq;
1238 struct lpfc_sli4_hdw_queue *hdwq;
1239 struct lpfc_idle_stat *idle_stat;
1240 u32 i, idle_percent;
1241 u64 wall, wall_idle, diff_wall, diff_idle, busy_time;
1243 if (phba->pport->load_flag & FC_UNLOADING)
1246 if (phba->link_state == LPFC_HBA_ERROR ||
1247 phba->pport->fc_flag & FC_OFFLINE_MODE ||
1248 phba->cmf_active_mode != LPFC_CFG_OFF)
1251 for_each_present_cpu(i) {
1252 hdwq = &phba->sli4_hba.hdwq[phba->sli4_hba.cpu_map[i].hdwq];
1255 /* Skip if we've already handled this cq's primary CPU */
1259 idle_stat = &phba->sli4_hba.idle_stat[i];
1261 /* get_cpu_idle_time returns values as running counters. Thus,
1262 * to know the amount for this period, the prior counter values
1263 * need to be subtracted from the current counter values.
1264 * From there, the idle time stat can be calculated as a
1265 * percentage of 100 - the sum of the other consumption times.
1267 wall_idle = get_cpu_idle_time(i, &wall, 1);
1268 diff_idle = wall_idle - idle_stat->prev_idle;
1269 diff_wall = wall - idle_stat->prev_wall;
1271 if (diff_wall <= diff_idle)
1274 busy_time = diff_wall - diff_idle;
1276 idle_percent = div64_u64(100 * busy_time, diff_wall);
1277 idle_percent = 100 - idle_percent;
1279 if (idle_percent < 15)
1280 cq->poll_mode = LPFC_QUEUE_WORK;
1282 cq->poll_mode = LPFC_IRQ_POLL;
1284 idle_stat->prev_idle = wall_idle;
1285 idle_stat->prev_wall = wall;
1289 schedule_delayed_work(&phba->idle_stat_delay_work,
1290 msecs_to_jiffies(LPFC_IDLE_STAT_DELAY));
1294 lpfc_hb_eq_delay_work(struct work_struct *work)
1296 struct lpfc_hba *phba = container_of(to_delayed_work(work),
1297 struct lpfc_hba, eq_delay_work);
1298 struct lpfc_eq_intr_info *eqi, *eqi_new;
1299 struct lpfc_queue *eq, *eq_next;
1300 unsigned char *ena_delay = NULL;
1304 if (!phba->cfg_auto_imax || phba->pport->load_flag & FC_UNLOADING)
1307 if (phba->link_state == LPFC_HBA_ERROR ||
1308 phba->pport->fc_flag & FC_OFFLINE_MODE)
1311 ena_delay = kcalloc(phba->sli4_hba.num_possible_cpu, sizeof(*ena_delay),
1316 for (i = 0; i < phba->cfg_irq_chann; i++) {
1317 /* Get the EQ corresponding to the IRQ vector */
1318 eq = phba->sli4_hba.hba_eq_hdl[i].eq;
1321 if (eq->q_mode || eq->q_flag & HBA_EQ_DELAY_CHK) {
1322 eq->q_flag &= ~HBA_EQ_DELAY_CHK;
1323 ena_delay[eq->last_cpu] = 1;
1327 for_each_present_cpu(i) {
1328 eqi = per_cpu_ptr(phba->sli4_hba.eq_info, i);
1330 usdelay = (eqi->icnt >> 10) * LPFC_EQ_DELAY_STEP;
1331 if (usdelay > LPFC_MAX_AUTO_EQ_DELAY)
1332 usdelay = LPFC_MAX_AUTO_EQ_DELAY;
1339 list_for_each_entry_safe(eq, eq_next, &eqi->list, cpu_list) {
1340 if (unlikely(eq->last_cpu != i)) {
1341 eqi_new = per_cpu_ptr(phba->sli4_hba.eq_info,
1343 list_move_tail(&eq->cpu_list, &eqi_new->list);
1346 if (usdelay != eq->q_mode)
1347 lpfc_modify_hba_eq_delay(phba, eq->hdwq, 1,
1355 queue_delayed_work(phba->wq, &phba->eq_delay_work,
1356 msecs_to_jiffies(LPFC_EQ_DELAY_MSECS));
1360 * lpfc_hb_mxp_handler - Multi-XRI pools handler to adjust XRI distribution
1361 * @phba: pointer to lpfc hba data structure.
1363 * For each heartbeat, this routine does some heuristic methods to adjust
1364 * XRI distribution. The goal is to fully utilize free XRIs.
1366 static void lpfc_hb_mxp_handler(struct lpfc_hba *phba)
1371 hwq_count = phba->cfg_hdw_queue;
1372 for (i = 0; i < hwq_count; i++) {
1373 /* Adjust XRIs in private pool */
1374 lpfc_adjust_pvt_pool_count(phba, i);
1376 /* Adjust high watermark */
1377 lpfc_adjust_high_watermark(phba, i);
1379 #ifdef LPFC_MXP_STAT
1380 /* Snapshot pbl, pvt and busy count */
1381 lpfc_snapshot_mxp(phba, i);
1387 * lpfc_issue_hb_mbox - Issues heart-beat mailbox command
1388 * @phba: pointer to lpfc hba data structure.
1390 * If a HB mbox is not already in progrees, this routine will allocate
1391 * a LPFC_MBOXQ_t, populate it with a MBX_HEARTBEAT (0x31) command,
1392 * and issue it. The HBA_HBEAT_INP flag means the command is in progress.
1395 lpfc_issue_hb_mbox(struct lpfc_hba *phba)
1397 LPFC_MBOXQ_t *pmboxq;
1400 /* Is a Heartbeat mbox already in progress */
1401 if (phba->hba_flag & HBA_HBEAT_INP)
1404 pmboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
1408 lpfc_heart_beat(phba, pmboxq);
1409 pmboxq->mbox_cmpl = lpfc_hb_mbox_cmpl;
1410 pmboxq->vport = phba->pport;
1411 retval = lpfc_sli_issue_mbox(phba, pmboxq, MBX_NOWAIT);
1413 if (retval != MBX_BUSY && retval != MBX_SUCCESS) {
1414 mempool_free(pmboxq, phba->mbox_mem_pool);
1417 phba->hba_flag |= HBA_HBEAT_INP;
1423 * lpfc_issue_hb_tmo - Signals heartbeat timer to issue mbox command
1424 * @phba: pointer to lpfc hba data structure.
1426 * The heartbeat timer (every 5 sec) will fire. If the HBA_HBEAT_TMO
1427 * flag is set, it will force a MBX_HEARTBEAT mbox command, regardless
1428 * of the value of lpfc_enable_hba_heartbeat.
1429 * If lpfc_enable_hba_heartbeat is set, the timeout routine will always
1430 * try to issue a MBX_HEARTBEAT mbox command.
1433 lpfc_issue_hb_tmo(struct lpfc_hba *phba)
1435 if (phba->cfg_enable_hba_heartbeat)
1437 phba->hba_flag |= HBA_HBEAT_TMO;
1441 * lpfc_hb_timeout_handler - The HBA-timer timeout handler
1442 * @phba: pointer to lpfc hba data structure.
1444 * This is the actual HBA-timer timeout handler to be invoked by the worker
1445 * thread whenever the HBA timer fired and HBA-timeout event posted. This
1446 * handler performs any periodic operations needed for the device. If such
1447 * periodic event has already been attended to either in the interrupt handler
1448 * or by processing slow-ring or fast-ring events within the HBA-timer
1449 * timeout window (LPFC_HB_MBOX_INTERVAL), this handler just simply resets
1450 * the timer for the next timeout period. If lpfc heart-beat mailbox command
1451 * is configured and there is no heart-beat mailbox command outstanding, a
1452 * heart-beat mailbox is issued and timer set properly. Otherwise, if there
1453 * has been a heart-beat mailbox command outstanding, the HBA shall be put
1457 lpfc_hb_timeout_handler(struct lpfc_hba *phba)
1459 struct lpfc_vport **vports;
1460 struct lpfc_dmabuf *buf_ptr;
1463 struct lpfc_sli *psli = &phba->sli;
1464 LIST_HEAD(completions);
1466 if (phba->cfg_xri_rebalancing) {
1467 /* Multi-XRI pools handler */
1468 lpfc_hb_mxp_handler(phba);
1471 vports = lpfc_create_vport_work_array(phba);
1473 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
1474 lpfc_rcv_seq_check_edtov(vports[i]);
1475 lpfc_fdmi_change_check(vports[i]);
1477 lpfc_destroy_vport_work_array(phba, vports);
1479 if ((phba->link_state == LPFC_HBA_ERROR) ||
1480 (phba->pport->load_flag & FC_UNLOADING) ||
1481 (phba->pport->fc_flag & FC_OFFLINE_MODE))
1484 if (phba->elsbuf_cnt &&
1485 (phba->elsbuf_cnt == phba->elsbuf_prev_cnt)) {
1486 spin_lock_irq(&phba->hbalock);
1487 list_splice_init(&phba->elsbuf, &completions);
1488 phba->elsbuf_cnt = 0;
1489 phba->elsbuf_prev_cnt = 0;
1490 spin_unlock_irq(&phba->hbalock);
1492 while (!list_empty(&completions)) {
1493 list_remove_head(&completions, buf_ptr,
1494 struct lpfc_dmabuf, list);
1495 lpfc_mbuf_free(phba, buf_ptr->virt, buf_ptr->phys);
1499 phba->elsbuf_prev_cnt = phba->elsbuf_cnt;
1501 /* If there is no heart beat outstanding, issue a heartbeat command */
1502 if (phba->cfg_enable_hba_heartbeat) {
1503 /* If IOs are completing, no need to issue a MBX_HEARTBEAT */
1504 spin_lock_irq(&phba->pport->work_port_lock);
1505 if (time_after(phba->last_completion_time +
1506 msecs_to_jiffies(1000 * LPFC_HB_MBOX_INTERVAL),
1508 spin_unlock_irq(&phba->pport->work_port_lock);
1509 if (phba->hba_flag & HBA_HBEAT_INP)
1510 tmo = (1000 * LPFC_HB_MBOX_TIMEOUT);
1512 tmo = (1000 * LPFC_HB_MBOX_INTERVAL);
1515 spin_unlock_irq(&phba->pport->work_port_lock);
1517 /* Check if a MBX_HEARTBEAT is already in progress */
1518 if (phba->hba_flag & HBA_HBEAT_INP) {
1520 * If heart beat timeout called with HBA_HBEAT_INP set
1521 * we need to give the hb mailbox cmd a chance to
1524 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
1525 "0459 Adapter heartbeat still outstanding: "
1526 "last compl time was %d ms.\n",
1527 jiffies_to_msecs(jiffies
1528 - phba->last_completion_time));
1529 tmo = (1000 * LPFC_HB_MBOX_TIMEOUT);
1531 if ((!(psli->sli_flag & LPFC_SLI_MBOX_ACTIVE)) &&
1532 (list_empty(&psli->mboxq))) {
1534 retval = lpfc_issue_hb_mbox(phba);
1536 tmo = (1000 * LPFC_HB_MBOX_INTERVAL);
1539 phba->skipped_hb = 0;
1540 } else if (time_before_eq(phba->last_completion_time,
1541 phba->skipped_hb)) {
1542 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
1543 "2857 Last completion time not "
1544 " updated in %d ms\n",
1545 jiffies_to_msecs(jiffies
1546 - phba->last_completion_time));
1548 phba->skipped_hb = jiffies;
1550 tmo = (1000 * LPFC_HB_MBOX_TIMEOUT);
1554 /* Check to see if we want to force a MBX_HEARTBEAT */
1555 if (phba->hba_flag & HBA_HBEAT_TMO) {
1556 retval = lpfc_issue_hb_mbox(phba);
1558 tmo = (1000 * LPFC_HB_MBOX_INTERVAL);
1560 tmo = (1000 * LPFC_HB_MBOX_TIMEOUT);
1563 tmo = (1000 * LPFC_HB_MBOX_INTERVAL);
1566 mod_timer(&phba->hb_tmofunc, jiffies + msecs_to_jiffies(tmo));
1570 * lpfc_offline_eratt - Bring lpfc offline on hardware error attention
1571 * @phba: pointer to lpfc hba data structure.
1573 * This routine is called to bring the HBA offline when HBA hardware error
1574 * other than Port Error 6 has been detected.
1577 lpfc_offline_eratt(struct lpfc_hba *phba)
1579 struct lpfc_sli *psli = &phba->sli;
1581 spin_lock_irq(&phba->hbalock);
1582 psli->sli_flag &= ~LPFC_SLI_ACTIVE;
1583 spin_unlock_irq(&phba->hbalock);
1584 lpfc_offline_prep(phba, LPFC_MBX_NO_WAIT);
1587 lpfc_reset_barrier(phba);
1588 spin_lock_irq(&phba->hbalock);
1589 lpfc_sli_brdreset(phba);
1590 spin_unlock_irq(&phba->hbalock);
1591 lpfc_hba_down_post(phba);
1592 lpfc_sli_brdready(phba, HS_MBRDY);
1593 lpfc_unblock_mgmt_io(phba);
1594 phba->link_state = LPFC_HBA_ERROR;
1599 * lpfc_sli4_offline_eratt - Bring lpfc offline on SLI4 hardware error attention
1600 * @phba: pointer to lpfc hba data structure.
1602 * This routine is called to bring a SLI4 HBA offline when HBA hardware error
1603 * other than Port Error 6 has been detected.
1606 lpfc_sli4_offline_eratt(struct lpfc_hba *phba)
1608 spin_lock_irq(&phba->hbalock);
1609 phba->link_state = LPFC_HBA_ERROR;
1610 spin_unlock_irq(&phba->hbalock);
1612 lpfc_offline_prep(phba, LPFC_MBX_NO_WAIT);
1613 lpfc_sli_flush_io_rings(phba);
1615 lpfc_hba_down_post(phba);
1616 lpfc_unblock_mgmt_io(phba);
1620 * lpfc_handle_deferred_eratt - The HBA hardware deferred error handler
1621 * @phba: pointer to lpfc hba data structure.
1623 * This routine is invoked to handle the deferred HBA hardware error
1624 * conditions. This type of error is indicated by HBA by setting ER1
1625 * and another ER bit in the host status register. The driver will
1626 * wait until the ER1 bit clears before handling the error condition.
1629 lpfc_handle_deferred_eratt(struct lpfc_hba *phba)
1631 uint32_t old_host_status = phba->work_hs;
1632 struct lpfc_sli *psli = &phba->sli;
1634 /* If the pci channel is offline, ignore possible errors,
1635 * since we cannot communicate with the pci card anyway.
1637 if (pci_channel_offline(phba->pcidev)) {
1638 spin_lock_irq(&phba->hbalock);
1639 phba->hba_flag &= ~DEFER_ERATT;
1640 spin_unlock_irq(&phba->hbalock);
1644 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
1645 "0479 Deferred Adapter Hardware Error "
1646 "Data: x%x x%x x%x\n",
1647 phba->work_hs, phba->work_status[0],
1648 phba->work_status[1]);
1650 spin_lock_irq(&phba->hbalock);
1651 psli->sli_flag &= ~LPFC_SLI_ACTIVE;
1652 spin_unlock_irq(&phba->hbalock);
1656 * Firmware stops when it triggred erratt. That could cause the I/Os
1657 * dropped by the firmware. Error iocb (I/O) on txcmplq and let the
1658 * SCSI layer retry it after re-establishing link.
1660 lpfc_sli_abort_fcp_rings(phba);
1663 * There was a firmware error. Take the hba offline and then
1664 * attempt to restart it.
1666 lpfc_offline_prep(phba, LPFC_MBX_WAIT);
1669 /* Wait for the ER1 bit to clear.*/
1670 while (phba->work_hs & HS_FFER1) {
1672 if (lpfc_readl(phba->HSregaddr, &phba->work_hs)) {
1673 phba->work_hs = UNPLUG_ERR ;
1676 /* If driver is unloading let the worker thread continue */
1677 if (phba->pport->load_flag & FC_UNLOADING) {
1684 * This is to ptrotect against a race condition in which
1685 * first write to the host attention register clear the
1686 * host status register.
1688 if ((!phba->work_hs) && (!(phba->pport->load_flag & FC_UNLOADING)))
1689 phba->work_hs = old_host_status & ~HS_FFER1;
1691 spin_lock_irq(&phba->hbalock);
1692 phba->hba_flag &= ~DEFER_ERATT;
1693 spin_unlock_irq(&phba->hbalock);
1694 phba->work_status[0] = readl(phba->MBslimaddr + 0xa8);
1695 phba->work_status[1] = readl(phba->MBslimaddr + 0xac);
1699 lpfc_board_errevt_to_mgmt(struct lpfc_hba *phba)
1701 struct lpfc_board_event_header board_event;
1702 struct Scsi_Host *shost;
1704 board_event.event_type = FC_REG_BOARD_EVENT;
1705 board_event.subcategory = LPFC_EVENT_PORTINTERR;
1706 shost = lpfc_shost_from_vport(phba->pport);
1707 fc_host_post_vendor_event(shost, fc_get_event_number(),
1708 sizeof(board_event),
1709 (char *) &board_event,
1714 * lpfc_handle_eratt_s3 - The SLI3 HBA hardware error handler
1715 * @phba: pointer to lpfc hba data structure.
1717 * This routine is invoked to handle the following HBA hardware error
1719 * 1 - HBA error attention interrupt
1720 * 2 - DMA ring index out of range
1721 * 3 - Mailbox command came back as unknown
1724 lpfc_handle_eratt_s3(struct lpfc_hba *phba)
1726 struct lpfc_vport *vport = phba->pport;
1727 struct lpfc_sli *psli = &phba->sli;
1728 uint32_t event_data;
1729 unsigned long temperature;
1730 struct temp_event temp_event_data;
1731 struct Scsi_Host *shost;
1733 /* If the pci channel is offline, ignore possible errors,
1734 * since we cannot communicate with the pci card anyway.
1736 if (pci_channel_offline(phba->pcidev)) {
1737 spin_lock_irq(&phba->hbalock);
1738 phba->hba_flag &= ~DEFER_ERATT;
1739 spin_unlock_irq(&phba->hbalock);
1743 /* If resets are disabled then leave the HBA alone and return */
1744 if (!phba->cfg_enable_hba_reset)
1747 /* Send an internal error event to mgmt application */
1748 lpfc_board_errevt_to_mgmt(phba);
1750 if (phba->hba_flag & DEFER_ERATT)
1751 lpfc_handle_deferred_eratt(phba);
1753 if ((phba->work_hs & HS_FFER6) || (phba->work_hs & HS_FFER8)) {
1754 if (phba->work_hs & HS_FFER6)
1755 /* Re-establishing Link */
1756 lpfc_printf_log(phba, KERN_INFO, LOG_LINK_EVENT,
1757 "1301 Re-establishing Link "
1758 "Data: x%x x%x x%x\n",
1759 phba->work_hs, phba->work_status[0],
1760 phba->work_status[1]);
1761 if (phba->work_hs & HS_FFER8)
1762 /* Device Zeroization */
1763 lpfc_printf_log(phba, KERN_INFO, LOG_LINK_EVENT,
1764 "2861 Host Authentication device "
1765 "zeroization Data:x%x x%x x%x\n",
1766 phba->work_hs, phba->work_status[0],
1767 phba->work_status[1]);
1769 spin_lock_irq(&phba->hbalock);
1770 psli->sli_flag &= ~LPFC_SLI_ACTIVE;
1771 spin_unlock_irq(&phba->hbalock);
1774 * Firmware stops when it triggled erratt with HS_FFER6.
1775 * That could cause the I/Os dropped by the firmware.
1776 * Error iocb (I/O) on txcmplq and let the SCSI layer
1777 * retry it after re-establishing link.
1779 lpfc_sli_abort_fcp_rings(phba);
1782 * There was a firmware error. Take the hba offline and then
1783 * attempt to restart it.
1785 lpfc_offline_prep(phba, LPFC_MBX_NO_WAIT);
1787 lpfc_sli_brdrestart(phba);
1788 if (lpfc_online(phba) == 0) { /* Initialize the HBA */
1789 lpfc_unblock_mgmt_io(phba);
1792 lpfc_unblock_mgmt_io(phba);
1793 } else if (phba->work_hs & HS_CRIT_TEMP) {
1794 temperature = readl(phba->MBslimaddr + TEMPERATURE_OFFSET);
1795 temp_event_data.event_type = FC_REG_TEMPERATURE_EVENT;
1796 temp_event_data.event_code = LPFC_CRIT_TEMP;
1797 temp_event_data.data = (uint32_t)temperature;
1799 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
1800 "0406 Adapter maximum temperature exceeded "
1801 "(%ld), taking this port offline "
1802 "Data: x%x x%x x%x\n",
1803 temperature, phba->work_hs,
1804 phba->work_status[0], phba->work_status[1]);
1806 shost = lpfc_shost_from_vport(phba->pport);
1807 fc_host_post_vendor_event(shost, fc_get_event_number(),
1808 sizeof(temp_event_data),
1809 (char *) &temp_event_data,
1810 SCSI_NL_VID_TYPE_PCI
1811 | PCI_VENDOR_ID_EMULEX);
1813 spin_lock_irq(&phba->hbalock);
1814 phba->over_temp_state = HBA_OVER_TEMP;
1815 spin_unlock_irq(&phba->hbalock);
1816 lpfc_offline_eratt(phba);
1819 /* The if clause above forces this code path when the status
1820 * failure is a value other than FFER6. Do not call the offline
1821 * twice. This is the adapter hardware error path.
1823 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
1824 "0457 Adapter Hardware Error "
1825 "Data: x%x x%x x%x\n",
1827 phba->work_status[0], phba->work_status[1]);
1829 event_data = FC_REG_DUMP_EVENT;
1830 shost = lpfc_shost_from_vport(vport);
1831 fc_host_post_vendor_event(shost, fc_get_event_number(),
1832 sizeof(event_data), (char *) &event_data,
1833 SCSI_NL_VID_TYPE_PCI | PCI_VENDOR_ID_EMULEX);
1835 lpfc_offline_eratt(phba);
1841 * lpfc_sli4_port_sta_fn_reset - The SLI4 function reset due to port status reg
1842 * @phba: pointer to lpfc hba data structure.
1843 * @mbx_action: flag for mailbox shutdown action.
1844 * @en_rn_msg: send reset/port recovery message.
1845 * This routine is invoked to perform an SLI4 port PCI function reset in
1846 * response to port status register polling attention. It waits for port
1847 * status register (ERR, RDY, RN) bits before proceeding with function reset.
1848 * During this process, interrupt vectors are freed and later requested
1849 * for handling possible port resource change.
1852 lpfc_sli4_port_sta_fn_reset(struct lpfc_hba *phba, int mbx_action,
1857 LPFC_MBOXQ_t *mboxq;
1859 if (bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf) >=
1860 LPFC_SLI_INTF_IF_TYPE_2) {
1862 * On error status condition, driver need to wait for port
1863 * ready before performing reset.
1865 rc = lpfc_sli4_pdev_status_reg_wait(phba);
1870 /* need reset: attempt for port recovery */
1872 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
1873 "2887 Reset Needed: Attempting Port "
1876 /* If we are no wait, the HBA has been reset and is not
1877 * functional, thus we should clear
1878 * (LPFC_SLI_ACTIVE | LPFC_SLI_MBOX_ACTIVE) flags.
1880 if (mbx_action == LPFC_MBX_NO_WAIT) {
1881 spin_lock_irq(&phba->hbalock);
1882 phba->sli.sli_flag &= ~LPFC_SLI_ACTIVE;
1883 if (phba->sli.mbox_active) {
1884 mboxq = phba->sli.mbox_active;
1885 mboxq->u.mb.mbxStatus = MBX_NOT_FINISHED;
1886 __lpfc_mbox_cmpl_put(phba, mboxq);
1887 phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
1888 phba->sli.mbox_active = NULL;
1890 spin_unlock_irq(&phba->hbalock);
1893 lpfc_offline_prep(phba, mbx_action);
1894 lpfc_sli_flush_io_rings(phba);
1896 /* release interrupt for possible resource change */
1897 lpfc_sli4_disable_intr(phba);
1898 rc = lpfc_sli_brdrestart(phba);
1900 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
1901 "6309 Failed to restart board\n");
1904 /* request and enable interrupt */
1905 intr_mode = lpfc_sli4_enable_intr(phba, phba->intr_mode);
1906 if (intr_mode == LPFC_INTR_ERROR) {
1907 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
1908 "3175 Failed to enable interrupt\n");
1911 phba->intr_mode = intr_mode;
1912 rc = lpfc_online(phba);
1914 lpfc_unblock_mgmt_io(phba);
1920 * lpfc_handle_eratt_s4 - The SLI4 HBA hardware error handler
1921 * @phba: pointer to lpfc hba data structure.
1923 * This routine is invoked to handle the SLI4 HBA hardware error attention
1927 lpfc_handle_eratt_s4(struct lpfc_hba *phba)
1929 struct lpfc_vport *vport = phba->pport;
1930 uint32_t event_data;
1931 struct Scsi_Host *shost;
1933 struct lpfc_register portstat_reg = {0};
1934 uint32_t reg_err1, reg_err2;
1935 uint32_t uerrlo_reg, uemasklo_reg;
1936 uint32_t smphr_port_status = 0, pci_rd_rc1, pci_rd_rc2;
1937 bool en_rn_msg = true;
1938 struct temp_event temp_event_data;
1939 struct lpfc_register portsmphr_reg;
1942 /* If the pci channel is offline, ignore possible errors, since
1943 * we cannot communicate with the pci card anyway.
1945 if (pci_channel_offline(phba->pcidev)) {
1946 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
1947 "3166 pci channel is offline\n");
1948 lpfc_sli4_offline_eratt(phba);
1952 memset(&portsmphr_reg, 0, sizeof(portsmphr_reg));
1953 if_type = bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf);
1955 case LPFC_SLI_INTF_IF_TYPE_0:
1956 pci_rd_rc1 = lpfc_readl(
1957 phba->sli4_hba.u.if_type0.UERRLOregaddr,
1959 pci_rd_rc2 = lpfc_readl(
1960 phba->sli4_hba.u.if_type0.UEMASKLOregaddr,
1962 /* consider PCI bus read error as pci_channel_offline */
1963 if (pci_rd_rc1 == -EIO && pci_rd_rc2 == -EIO)
1965 if (!(phba->hba_flag & HBA_RECOVERABLE_UE)) {
1966 lpfc_sli4_offline_eratt(phba);
1969 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
1970 "7623 Checking UE recoverable");
1972 for (i = 0; i < phba->sli4_hba.ue_to_sr / 1000; i++) {
1973 if (lpfc_readl(phba->sli4_hba.PSMPHRregaddr,
1974 &portsmphr_reg.word0))
1977 smphr_port_status = bf_get(lpfc_port_smphr_port_status,
1979 if ((smphr_port_status & LPFC_PORT_SEM_MASK) ==
1980 LPFC_PORT_SEM_UE_RECOVERABLE)
1982 /*Sleep for 1Sec, before checking SEMAPHORE */
1986 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
1987 "4827 smphr_port_status x%x : Waited %dSec",
1988 smphr_port_status, i);
1990 /* Recoverable UE, reset the HBA device */
1991 if ((smphr_port_status & LPFC_PORT_SEM_MASK) ==
1992 LPFC_PORT_SEM_UE_RECOVERABLE) {
1993 for (i = 0; i < 20; i++) {
1995 if (!lpfc_readl(phba->sli4_hba.PSMPHRregaddr,
1996 &portsmphr_reg.word0) &&
1997 (LPFC_POST_STAGE_PORT_READY ==
1998 bf_get(lpfc_port_smphr_port_status,
2000 rc = lpfc_sli4_port_sta_fn_reset(phba,
2001 LPFC_MBX_NO_WAIT, en_rn_msg);
2004 lpfc_printf_log(phba, KERN_ERR,
2006 "4215 Failed to recover UE");
2011 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
2012 "7624 Firmware not ready: Failing UE recovery,"
2013 " waited %dSec", i);
2014 phba->link_state = LPFC_HBA_ERROR;
2017 case LPFC_SLI_INTF_IF_TYPE_2:
2018 case LPFC_SLI_INTF_IF_TYPE_6:
2019 pci_rd_rc1 = lpfc_readl(
2020 phba->sli4_hba.u.if_type2.STATUSregaddr,
2021 &portstat_reg.word0);
2022 /* consider PCI bus read error as pci_channel_offline */
2023 if (pci_rd_rc1 == -EIO) {
2024 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
2025 "3151 PCI bus read access failure: x%x\n",
2026 readl(phba->sli4_hba.u.if_type2.STATUSregaddr));
2027 lpfc_sli4_offline_eratt(phba);
2030 reg_err1 = readl(phba->sli4_hba.u.if_type2.ERR1regaddr);
2031 reg_err2 = readl(phba->sli4_hba.u.if_type2.ERR2regaddr);
2032 if (bf_get(lpfc_sliport_status_oti, &portstat_reg)) {
2033 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
2034 "2889 Port Overtemperature event, "
2035 "taking port offline Data: x%x x%x\n",
2036 reg_err1, reg_err2);
2038 phba->sfp_alarm |= LPFC_TRANSGRESSION_HIGH_TEMPERATURE;
2039 temp_event_data.event_type = FC_REG_TEMPERATURE_EVENT;
2040 temp_event_data.event_code = LPFC_CRIT_TEMP;
2041 temp_event_data.data = 0xFFFFFFFF;
2043 shost = lpfc_shost_from_vport(phba->pport);
2044 fc_host_post_vendor_event(shost, fc_get_event_number(),
2045 sizeof(temp_event_data),
2046 (char *)&temp_event_data,
2047 SCSI_NL_VID_TYPE_PCI
2048 | PCI_VENDOR_ID_EMULEX);
2050 spin_lock_irq(&phba->hbalock);
2051 phba->over_temp_state = HBA_OVER_TEMP;
2052 spin_unlock_irq(&phba->hbalock);
2053 lpfc_sli4_offline_eratt(phba);
2056 if (reg_err1 == SLIPORT_ERR1_REG_ERR_CODE_2 &&
2057 reg_err2 == SLIPORT_ERR2_REG_FW_RESTART) {
2058 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
2059 "3143 Port Down: Firmware Update "
2062 } else if (reg_err1 == SLIPORT_ERR1_REG_ERR_CODE_2 &&
2063 reg_err2 == SLIPORT_ERR2_REG_FORCED_DUMP)
2064 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
2065 "3144 Port Down: Debug Dump\n");
2066 else if (reg_err1 == SLIPORT_ERR1_REG_ERR_CODE_2 &&
2067 reg_err2 == SLIPORT_ERR2_REG_FUNC_PROVISON)
2068 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
2069 "3145 Port Down: Provisioning\n");
2071 /* If resets are disabled then leave the HBA alone and return */
2072 if (!phba->cfg_enable_hba_reset)
2075 /* Check port status register for function reset */
2076 rc = lpfc_sli4_port_sta_fn_reset(phba, LPFC_MBX_NO_WAIT,
2079 /* don't report event on forced debug dump */
2080 if (reg_err1 == SLIPORT_ERR1_REG_ERR_CODE_2 &&
2081 reg_err2 == SLIPORT_ERR2_REG_FORCED_DUMP)
2086 /* fall through for not able to recover */
2087 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
2088 "3152 Unrecoverable error\n");
2089 phba->link_state = LPFC_HBA_ERROR;
2091 case LPFC_SLI_INTF_IF_TYPE_1:
2095 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
2096 "3123 Report dump event to upper layer\n");
2097 /* Send an internal error event to mgmt application */
2098 lpfc_board_errevt_to_mgmt(phba);
2100 event_data = FC_REG_DUMP_EVENT;
2101 shost = lpfc_shost_from_vport(vport);
2102 fc_host_post_vendor_event(shost, fc_get_event_number(),
2103 sizeof(event_data), (char *) &event_data,
2104 SCSI_NL_VID_TYPE_PCI | PCI_VENDOR_ID_EMULEX);
2108 * lpfc_handle_eratt - Wrapper func for handling hba error attention
2109 * @phba: pointer to lpfc HBA data structure.
2111 * This routine wraps the actual SLI3 or SLI4 hba error attention handling
2112 * routine from the API jump table function pointer from the lpfc_hba struct.
2116 * Any other value - error.
2119 lpfc_handle_eratt(struct lpfc_hba *phba)
2121 (*phba->lpfc_handle_eratt)(phba);
2125 * lpfc_handle_latt - The HBA link event handler
2126 * @phba: pointer to lpfc hba data structure.
2128 * This routine is invoked from the worker thread to handle a HBA host
2129 * attention link event. SLI3 only.
2132 lpfc_handle_latt(struct lpfc_hba *phba)
2134 struct lpfc_vport *vport = phba->pport;
2135 struct lpfc_sli *psli = &phba->sli;
2137 volatile uint32_t control;
2138 struct lpfc_dmabuf *mp;
2141 pmb = (LPFC_MBOXQ_t *)mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
2144 goto lpfc_handle_latt_err_exit;
2147 mp = kmalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
2150 goto lpfc_handle_latt_free_pmb;
2153 mp->virt = lpfc_mbuf_alloc(phba, 0, &mp->phys);
2156 goto lpfc_handle_latt_free_mp;
2159 /* Cleanup any outstanding ELS commands */
2160 lpfc_els_flush_all_cmd(phba);
2162 psli->slistat.link_event++;
2163 lpfc_read_topology(phba, pmb, mp);
2164 pmb->mbox_cmpl = lpfc_mbx_cmpl_read_topology;
2166 /* Block ELS IOCBs until we have processed this mbox command */
2167 phba->sli.sli3_ring[LPFC_ELS_RING].flag |= LPFC_STOP_IOCB_EVENT;
2168 rc = lpfc_sli_issue_mbox (phba, pmb, MBX_NOWAIT);
2169 if (rc == MBX_NOT_FINISHED) {
2171 goto lpfc_handle_latt_free_mbuf;
2174 /* Clear Link Attention in HA REG */
2175 spin_lock_irq(&phba->hbalock);
2176 writel(HA_LATT, phba->HAregaddr);
2177 readl(phba->HAregaddr); /* flush */
2178 spin_unlock_irq(&phba->hbalock);
2182 lpfc_handle_latt_free_mbuf:
2183 phba->sli.sli3_ring[LPFC_ELS_RING].flag &= ~LPFC_STOP_IOCB_EVENT;
2184 lpfc_mbuf_free(phba, mp->virt, mp->phys);
2185 lpfc_handle_latt_free_mp:
2187 lpfc_handle_latt_free_pmb:
2188 mempool_free(pmb, phba->mbox_mem_pool);
2189 lpfc_handle_latt_err_exit:
2190 /* Enable Link attention interrupts */
2191 spin_lock_irq(&phba->hbalock);
2192 psli->sli_flag |= LPFC_PROCESS_LA;
2193 control = readl(phba->HCregaddr);
2194 control |= HC_LAINT_ENA;
2195 writel(control, phba->HCregaddr);
2196 readl(phba->HCregaddr); /* flush */
2198 /* Clear Link Attention in HA REG */
2199 writel(HA_LATT, phba->HAregaddr);
2200 readl(phba->HAregaddr); /* flush */
2201 spin_unlock_irq(&phba->hbalock);
2202 lpfc_linkdown(phba);
2203 phba->link_state = LPFC_HBA_ERROR;
2205 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
2206 "0300 LATT: Cannot issue READ_LA: Data:%d\n", rc);
2212 * lpfc_parse_vpd - Parse VPD (Vital Product Data)
2213 * @phba: pointer to lpfc hba data structure.
2214 * @vpd: pointer to the vital product data.
2215 * @len: length of the vital product data in bytes.
2217 * This routine parses the Vital Product Data (VPD). The VPD is treated as
2218 * an array of characters. In this routine, the ModelName, ProgramType, and
2219 * ModelDesc, etc. fields of the phba data structure will be populated.
2222 * 0 - pointer to the VPD passed in is NULL
2226 lpfc_parse_vpd(struct lpfc_hba *phba, uint8_t *vpd, int len)
2228 uint8_t lenlo, lenhi;
2238 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
2239 "0455 Vital Product Data: x%x x%x x%x x%x\n",
2240 (uint32_t) vpd[0], (uint32_t) vpd[1], (uint32_t) vpd[2],
2242 while (!finished && (index < (len - 4))) {
2243 switch (vpd[index]) {
2251 i = ((((unsigned short)lenhi) << 8) + lenlo);
2260 Length = ((((unsigned short)lenhi) << 8) + lenlo);
2261 if (Length > len - index)
2262 Length = len - index;
2263 while (Length > 0) {
2264 /* Look for Serial Number */
2265 if ((vpd[index] == 'S') && (vpd[index+1] == 'N')) {
2272 phba->SerialNumber[j++] = vpd[index++];
2276 phba->SerialNumber[j] = 0;
2279 else if ((vpd[index] == 'V') && (vpd[index+1] == '1')) {
2280 phba->vpd_flag |= VPD_MODEL_DESC;
2287 phba->ModelDesc[j++] = vpd[index++];
2291 phba->ModelDesc[j] = 0;
2294 else if ((vpd[index] == 'V') && (vpd[index+1] == '2')) {
2295 phba->vpd_flag |= VPD_MODEL_NAME;
2302 phba->ModelName[j++] = vpd[index++];
2306 phba->ModelName[j] = 0;
2309 else if ((vpd[index] == 'V') && (vpd[index+1] == '3')) {
2310 phba->vpd_flag |= VPD_PROGRAM_TYPE;
2317 phba->ProgramType[j++] = vpd[index++];
2321 phba->ProgramType[j] = 0;
2324 else if ((vpd[index] == 'V') && (vpd[index+1] == '4')) {
2325 phba->vpd_flag |= VPD_PORT;
2332 if ((phba->sli_rev == LPFC_SLI_REV4) &&
2333 (phba->sli4_hba.pport_name_sta ==
2334 LPFC_SLI4_PPNAME_GET)) {
2338 phba->Port[j++] = vpd[index++];
2342 if ((phba->sli_rev != LPFC_SLI_REV4) ||
2343 (phba->sli4_hba.pport_name_sta ==
2344 LPFC_SLI4_PPNAME_NON))
2371 * lpfc_get_hba_model_desc - Retrieve HBA device model name and description
2372 * @phba: pointer to lpfc hba data structure.
2373 * @mdp: pointer to the data structure to hold the derived model name.
2374 * @descp: pointer to the data structure to hold the derived description.
2376 * This routine retrieves HBA's description based on its registered PCI device
2377 * ID. The @descp passed into this function points to an array of 256 chars. It
2378 * shall be returned with the model name, maximum speed, and the host bus type.
2379 * The @mdp passed into this function points to an array of 80 chars. When the
2380 * function returns, the @mdp will be filled with the model name.
2383 lpfc_get_hba_model_desc(struct lpfc_hba *phba, uint8_t *mdp, uint8_t *descp)
2386 uint16_t dev_id = phba->pcidev->device;
2389 int oneConnect = 0; /* default is not a oneConnect */
2394 } m = {"<Unknown>", "", ""};
2396 if (mdp && mdp[0] != '\0'
2397 && descp && descp[0] != '\0')
2400 if (phba->lmt & LMT_64Gb)
2402 else if (phba->lmt & LMT_32Gb)
2404 else if (phba->lmt & LMT_16Gb)
2406 else if (phba->lmt & LMT_10Gb)
2408 else if (phba->lmt & LMT_8Gb)
2410 else if (phba->lmt & LMT_4Gb)
2412 else if (phba->lmt & LMT_2Gb)
2414 else if (phba->lmt & LMT_1Gb)
2422 case PCI_DEVICE_ID_FIREFLY:
2423 m = (typeof(m)){"LP6000", "PCI",
2424 "Obsolete, Unsupported Fibre Channel Adapter"};
2426 case PCI_DEVICE_ID_SUPERFLY:
2427 if (vp->rev.biuRev >= 1 && vp->rev.biuRev <= 3)
2428 m = (typeof(m)){"LP7000", "PCI", ""};
2430 m = (typeof(m)){"LP7000E", "PCI", ""};
2431 m.function = "Obsolete, Unsupported Fibre Channel Adapter";
2433 case PCI_DEVICE_ID_DRAGONFLY:
2434 m = (typeof(m)){"LP8000", "PCI",
2435 "Obsolete, Unsupported Fibre Channel Adapter"};
2437 case PCI_DEVICE_ID_CENTAUR:
2438 if (FC_JEDEC_ID(vp->rev.biuRev) == CENTAUR_2G_JEDEC_ID)
2439 m = (typeof(m)){"LP9002", "PCI", ""};
2441 m = (typeof(m)){"LP9000", "PCI", ""};
2442 m.function = "Obsolete, Unsupported Fibre Channel Adapter";
2444 case PCI_DEVICE_ID_RFLY:
2445 m = (typeof(m)){"LP952", "PCI",
2446 "Obsolete, Unsupported Fibre Channel Adapter"};
2448 case PCI_DEVICE_ID_PEGASUS:
2449 m = (typeof(m)){"LP9802", "PCI-X",
2450 "Obsolete, Unsupported Fibre Channel Adapter"};
2452 case PCI_DEVICE_ID_THOR:
2453 m = (typeof(m)){"LP10000", "PCI-X",
2454 "Obsolete, Unsupported Fibre Channel Adapter"};
2456 case PCI_DEVICE_ID_VIPER:
2457 m = (typeof(m)){"LPX1000", "PCI-X",
2458 "Obsolete, Unsupported Fibre Channel Adapter"};
2460 case PCI_DEVICE_ID_PFLY:
2461 m = (typeof(m)){"LP982", "PCI-X",
2462 "Obsolete, Unsupported Fibre Channel Adapter"};
2464 case PCI_DEVICE_ID_TFLY:
2465 m = (typeof(m)){"LP1050", "PCI-X",
2466 "Obsolete, Unsupported Fibre Channel Adapter"};
2468 case PCI_DEVICE_ID_HELIOS:
2469 m = (typeof(m)){"LP11000", "PCI-X2",
2470 "Obsolete, Unsupported Fibre Channel Adapter"};
2472 case PCI_DEVICE_ID_HELIOS_SCSP:
2473 m = (typeof(m)){"LP11000-SP", "PCI-X2",
2474 "Obsolete, Unsupported Fibre Channel Adapter"};
2476 case PCI_DEVICE_ID_HELIOS_DCSP:
2477 m = (typeof(m)){"LP11002-SP", "PCI-X2",
2478 "Obsolete, Unsupported Fibre Channel Adapter"};
2480 case PCI_DEVICE_ID_NEPTUNE:
2481 m = (typeof(m)){"LPe1000", "PCIe",
2482 "Obsolete, Unsupported Fibre Channel Adapter"};
2484 case PCI_DEVICE_ID_NEPTUNE_SCSP:
2485 m = (typeof(m)){"LPe1000-SP", "PCIe",
2486 "Obsolete, Unsupported Fibre Channel Adapter"};
2488 case PCI_DEVICE_ID_NEPTUNE_DCSP:
2489 m = (typeof(m)){"LPe1002-SP", "PCIe",
2490 "Obsolete, Unsupported Fibre Channel Adapter"};
2492 case PCI_DEVICE_ID_BMID:
2493 m = (typeof(m)){"LP1150", "PCI-X2", "Fibre Channel Adapter"};
2495 case PCI_DEVICE_ID_BSMB:
2496 m = (typeof(m)){"LP111", "PCI-X2",
2497 "Obsolete, Unsupported Fibre Channel Adapter"};
2499 case PCI_DEVICE_ID_ZEPHYR:
2500 m = (typeof(m)){"LPe11000", "PCIe", "Fibre Channel Adapter"};
2502 case PCI_DEVICE_ID_ZEPHYR_SCSP:
2503 m = (typeof(m)){"LPe11000", "PCIe", "Fibre Channel Adapter"};
2505 case PCI_DEVICE_ID_ZEPHYR_DCSP:
2506 m = (typeof(m)){"LP2105", "PCIe", "FCoE Adapter"};
2509 case PCI_DEVICE_ID_ZMID:
2510 m = (typeof(m)){"LPe1150", "PCIe", "Fibre Channel Adapter"};
2512 case PCI_DEVICE_ID_ZSMB:
2513 m = (typeof(m)){"LPe111", "PCIe", "Fibre Channel Adapter"};
2515 case PCI_DEVICE_ID_LP101:
2516 m = (typeof(m)){"LP101", "PCI-X",
2517 "Obsolete, Unsupported Fibre Channel Adapter"};
2519 case PCI_DEVICE_ID_LP10000S:
2520 m = (typeof(m)){"LP10000-S", "PCI",
2521 "Obsolete, Unsupported Fibre Channel Adapter"};
2523 case PCI_DEVICE_ID_LP11000S:
2524 m = (typeof(m)){"LP11000-S", "PCI-X2",
2525 "Obsolete, Unsupported Fibre Channel Adapter"};
2527 case PCI_DEVICE_ID_LPE11000S:
2528 m = (typeof(m)){"LPe11000-S", "PCIe",
2529 "Obsolete, Unsupported Fibre Channel Adapter"};
2531 case PCI_DEVICE_ID_SAT:
2532 m = (typeof(m)){"LPe12000", "PCIe", "Fibre Channel Adapter"};
2534 case PCI_DEVICE_ID_SAT_MID:
2535 m = (typeof(m)){"LPe1250", "PCIe", "Fibre Channel Adapter"};
2537 case PCI_DEVICE_ID_SAT_SMB:
2538 m = (typeof(m)){"LPe121", "PCIe", "Fibre Channel Adapter"};
2540 case PCI_DEVICE_ID_SAT_DCSP:
2541 m = (typeof(m)){"LPe12002-SP", "PCIe", "Fibre Channel Adapter"};
2543 case PCI_DEVICE_ID_SAT_SCSP:
2544 m = (typeof(m)){"LPe12000-SP", "PCIe", "Fibre Channel Adapter"};
2546 case PCI_DEVICE_ID_SAT_S:
2547 m = (typeof(m)){"LPe12000-S", "PCIe", "Fibre Channel Adapter"};
2549 case PCI_DEVICE_ID_HORNET:
2550 m = (typeof(m)){"LP21000", "PCIe",
2551 "Obsolete, Unsupported FCoE Adapter"};
2554 case PCI_DEVICE_ID_PROTEUS_VF:
2555 m = (typeof(m)){"LPev12000", "PCIe IOV",
2556 "Obsolete, Unsupported Fibre Channel Adapter"};
2558 case PCI_DEVICE_ID_PROTEUS_PF:
2559 m = (typeof(m)){"LPev12000", "PCIe IOV",
2560 "Obsolete, Unsupported Fibre Channel Adapter"};
2562 case PCI_DEVICE_ID_PROTEUS_S:
2563 m = (typeof(m)){"LPemv12002-S", "PCIe IOV",
2564 "Obsolete, Unsupported Fibre Channel Adapter"};
2566 case PCI_DEVICE_ID_TIGERSHARK:
2568 m = (typeof(m)){"OCe10100", "PCIe", "FCoE"};
2570 case PCI_DEVICE_ID_TOMCAT:
2572 m = (typeof(m)){"OCe11100", "PCIe", "FCoE"};
2574 case PCI_DEVICE_ID_FALCON:
2575 m = (typeof(m)){"LPSe12002-ML1-E", "PCIe",
2576 "EmulexSecure Fibre"};
2578 case PCI_DEVICE_ID_BALIUS:
2579 m = (typeof(m)){"LPVe12002", "PCIe Shared I/O",
2580 "Obsolete, Unsupported Fibre Channel Adapter"};
2582 case PCI_DEVICE_ID_LANCER_FC:
2583 m = (typeof(m)){"LPe16000", "PCIe", "Fibre Channel Adapter"};
2585 case PCI_DEVICE_ID_LANCER_FC_VF:
2586 m = (typeof(m)){"LPe16000", "PCIe",
2587 "Obsolete, Unsupported Fibre Channel Adapter"};
2589 case PCI_DEVICE_ID_LANCER_FCOE:
2591 m = (typeof(m)){"OCe15100", "PCIe", "FCoE"};
2593 case PCI_DEVICE_ID_LANCER_FCOE_VF:
2595 m = (typeof(m)){"OCe15100", "PCIe",
2596 "Obsolete, Unsupported FCoE"};
2598 case PCI_DEVICE_ID_LANCER_G6_FC:
2599 m = (typeof(m)){"LPe32000", "PCIe", "Fibre Channel Adapter"};
2601 case PCI_DEVICE_ID_LANCER_G7_FC:
2602 m = (typeof(m)){"LPe36000", "PCIe", "Fibre Channel Adapter"};
2604 case PCI_DEVICE_ID_LANCER_G7P_FC:
2605 m = (typeof(m)){"LPe38000", "PCIe", "Fibre Channel Adapter"};
2607 case PCI_DEVICE_ID_SKYHAWK:
2608 case PCI_DEVICE_ID_SKYHAWK_VF:
2610 m = (typeof(m)){"OCe14000", "PCIe", "FCoE"};
2613 m = (typeof(m)){"Unknown", "", ""};
2617 if (mdp && mdp[0] == '\0')
2618 snprintf(mdp, 79,"%s", m.name);
2620 * oneConnect hba requires special processing, they are all initiators
2621 * and we put the port number on the end
2623 if (descp && descp[0] == '\0') {
2625 snprintf(descp, 255,
2626 "Emulex OneConnect %s, %s Initiator %s",
2629 else if (max_speed == 0)
2630 snprintf(descp, 255,
2632 m.name, m.bus, m.function);
2634 snprintf(descp, 255,
2635 "Emulex %s %d%s %s %s",
2636 m.name, max_speed, (GE) ? "GE" : "Gb",
2642 * lpfc_post_buffer - Post IOCB(s) with DMA buffer descriptor(s) to a IOCB ring
2643 * @phba: pointer to lpfc hba data structure.
2644 * @pring: pointer to a IOCB ring.
2645 * @cnt: the number of IOCBs to be posted to the IOCB ring.
2647 * This routine posts a given number of IOCBs with the associated DMA buffer
2648 * descriptors specified by the cnt argument to the given IOCB ring.
2651 * The number of IOCBs NOT able to be posted to the IOCB ring.
2654 lpfc_post_buffer(struct lpfc_hba *phba, struct lpfc_sli_ring *pring, int cnt)
2657 struct lpfc_iocbq *iocb;
2658 struct lpfc_dmabuf *mp1, *mp2;
2660 cnt += pring->missbufcnt;
2662 /* While there are buffers to post */
2664 /* Allocate buffer for command iocb */
2665 iocb = lpfc_sli_get_iocbq(phba);
2667 pring->missbufcnt = cnt;
2672 /* 2 buffers can be posted per command */
2673 /* Allocate buffer to post */
2674 mp1 = kmalloc(sizeof (struct lpfc_dmabuf), GFP_KERNEL);
2676 mp1->virt = lpfc_mbuf_alloc(phba, MEM_PRI, &mp1->phys);
2677 if (!mp1 || !mp1->virt) {
2679 lpfc_sli_release_iocbq(phba, iocb);
2680 pring->missbufcnt = cnt;
2684 INIT_LIST_HEAD(&mp1->list);
2685 /* Allocate buffer to post */
2687 mp2 = kmalloc(sizeof (struct lpfc_dmabuf), GFP_KERNEL);
2689 mp2->virt = lpfc_mbuf_alloc(phba, MEM_PRI,
2691 if (!mp2 || !mp2->virt) {
2693 lpfc_mbuf_free(phba, mp1->virt, mp1->phys);
2695 lpfc_sli_release_iocbq(phba, iocb);
2696 pring->missbufcnt = cnt;
2700 INIT_LIST_HEAD(&mp2->list);
2705 icmd->un.cont64[0].addrHigh = putPaddrHigh(mp1->phys);
2706 icmd->un.cont64[0].addrLow = putPaddrLow(mp1->phys);
2707 icmd->un.cont64[0].tus.f.bdeSize = FCELSSIZE;
2708 icmd->ulpBdeCount = 1;
2711 icmd->un.cont64[1].addrHigh = putPaddrHigh(mp2->phys);
2712 icmd->un.cont64[1].addrLow = putPaddrLow(mp2->phys);
2713 icmd->un.cont64[1].tus.f.bdeSize = FCELSSIZE;
2715 icmd->ulpBdeCount = 2;
2718 icmd->ulpCommand = CMD_QUE_RING_BUF64_CN;
2721 if (lpfc_sli_issue_iocb(phba, pring->ringno, iocb, 0) ==
2723 lpfc_mbuf_free(phba, mp1->virt, mp1->phys);
2727 lpfc_mbuf_free(phba, mp2->virt, mp2->phys);
2731 lpfc_sli_release_iocbq(phba, iocb);
2732 pring->missbufcnt = cnt;
2735 lpfc_sli_ringpostbuf_put(phba, pring, mp1);
2737 lpfc_sli_ringpostbuf_put(phba, pring, mp2);
2739 pring->missbufcnt = 0;
2744 * lpfc_post_rcv_buf - Post the initial receive IOCB buffers to ELS ring
2745 * @phba: pointer to lpfc hba data structure.
2747 * This routine posts initial receive IOCB buffers to the ELS ring. The
2748 * current number of initial IOCB buffers specified by LPFC_BUF_RING0 is
2749 * set to 64 IOCBs. SLI3 only.
2752 * 0 - success (currently always success)
2755 lpfc_post_rcv_buf(struct lpfc_hba *phba)
2757 struct lpfc_sli *psli = &phba->sli;
2759 /* Ring 0, ELS / CT buffers */
2760 lpfc_post_buffer(phba, &psli->sli3_ring[LPFC_ELS_RING], LPFC_BUF_RING0);
2761 /* Ring 2 - FCP no buffers needed */
2766 #define S(N,V) (((V)<<(N))|((V)>>(32-(N))))
2769 * lpfc_sha_init - Set up initial array of hash table entries
2770 * @HashResultPointer: pointer to an array as hash table.
2772 * This routine sets up the initial values to the array of hash table entries
2776 lpfc_sha_init(uint32_t * HashResultPointer)
2778 HashResultPointer[0] = 0x67452301;
2779 HashResultPointer[1] = 0xEFCDAB89;
2780 HashResultPointer[2] = 0x98BADCFE;
2781 HashResultPointer[3] = 0x10325476;
2782 HashResultPointer[4] = 0xC3D2E1F0;
2786 * lpfc_sha_iterate - Iterate initial hash table with the working hash table
2787 * @HashResultPointer: pointer to an initial/result hash table.
2788 * @HashWorkingPointer: pointer to an working hash table.
2790 * This routine iterates an initial hash table pointed by @HashResultPointer
2791 * with the values from the working hash table pointeed by @HashWorkingPointer.
2792 * The results are putting back to the initial hash table, returned through
2793 * the @HashResultPointer as the result hash table.
2796 lpfc_sha_iterate(uint32_t * HashResultPointer, uint32_t * HashWorkingPointer)
2800 uint32_t A, B, C, D, E;
2803 HashWorkingPointer[t] =
2805 HashWorkingPointer[t - 3] ^ HashWorkingPointer[t -
2807 HashWorkingPointer[t - 14] ^ HashWorkingPointer[t - 16]);
2808 } while (++t <= 79);
2810 A = HashResultPointer[0];
2811 B = HashResultPointer[1];
2812 C = HashResultPointer[2];
2813 D = HashResultPointer[3];
2814 E = HashResultPointer[4];
2818 TEMP = ((B & C) | ((~B) & D)) + 0x5A827999;
2819 } else if (t < 40) {
2820 TEMP = (B ^ C ^ D) + 0x6ED9EBA1;
2821 } else if (t < 60) {
2822 TEMP = ((B & C) | (B & D) | (C & D)) + 0x8F1BBCDC;
2824 TEMP = (B ^ C ^ D) + 0xCA62C1D6;
2826 TEMP += S(5, A) + E + HashWorkingPointer[t];
2832 } while (++t <= 79);
2834 HashResultPointer[0] += A;
2835 HashResultPointer[1] += B;
2836 HashResultPointer[2] += C;
2837 HashResultPointer[3] += D;
2838 HashResultPointer[4] += E;
2843 * lpfc_challenge_key - Create challenge key based on WWPN of the HBA
2844 * @RandomChallenge: pointer to the entry of host challenge random number array.
2845 * @HashWorking: pointer to the entry of the working hash array.
2847 * This routine calculates the working hash array referred by @HashWorking
2848 * from the challenge random numbers associated with the host, referred by
2849 * @RandomChallenge. The result is put into the entry of the working hash
2850 * array and returned by reference through @HashWorking.
2853 lpfc_challenge_key(uint32_t * RandomChallenge, uint32_t * HashWorking)
2855 *HashWorking = (*RandomChallenge ^ *HashWorking);
2859 * lpfc_hba_init - Perform special handling for LC HBA initialization
2860 * @phba: pointer to lpfc hba data structure.
2861 * @hbainit: pointer to an array of unsigned 32-bit integers.
2863 * This routine performs the special handling for LC HBA initialization.
2866 lpfc_hba_init(struct lpfc_hba *phba, uint32_t *hbainit)
2869 uint32_t *HashWorking;
2870 uint32_t *pwwnn = (uint32_t *) phba->wwnn;
2872 HashWorking = kcalloc(80, sizeof(uint32_t), GFP_KERNEL);
2876 HashWorking[0] = HashWorking[78] = *pwwnn++;
2877 HashWorking[1] = HashWorking[79] = *pwwnn;
2879 for (t = 0; t < 7; t++)
2880 lpfc_challenge_key(phba->RandomData + t, HashWorking + t);
2882 lpfc_sha_init(hbainit);
2883 lpfc_sha_iterate(hbainit, HashWorking);
2888 * lpfc_cleanup - Performs vport cleanups before deleting a vport
2889 * @vport: pointer to a virtual N_Port data structure.
2891 * This routine performs the necessary cleanups before deleting the @vport.
2892 * It invokes the discovery state machine to perform necessary state
2893 * transitions and to release the ndlps associated with the @vport. Note,
2894 * the physical port is treated as @vport 0.
2897 lpfc_cleanup(struct lpfc_vport *vport)
2899 struct lpfc_hba *phba = vport->phba;
2900 struct lpfc_nodelist *ndlp, *next_ndlp;
2903 if (phba->link_state > LPFC_LINK_DOWN)
2904 lpfc_port_link_failure(vport);
2906 /* Clean up VMID resources */
2907 if (lpfc_is_vmid_enabled(phba))
2908 lpfc_vmid_vport_cleanup(vport);
2910 list_for_each_entry_safe(ndlp, next_ndlp, &vport->fc_nodes, nlp_listp) {
2911 if (vport->port_type != LPFC_PHYSICAL_PORT &&
2912 ndlp->nlp_DID == Fabric_DID) {
2913 /* Just free up ndlp with Fabric_DID for vports */
2918 if (ndlp->nlp_DID == Fabric_Cntl_DID &&
2919 ndlp->nlp_state == NLP_STE_UNUSED_NODE) {
2924 /* Fabric Ports not in UNMAPPED state are cleaned up in the
2927 if (ndlp->nlp_type & NLP_FABRIC &&
2928 ndlp->nlp_state == NLP_STE_UNMAPPED_NODE)
2929 lpfc_disc_state_machine(vport, ndlp, NULL,
2930 NLP_EVT_DEVICE_RECOVERY);
2932 if (!(ndlp->fc4_xpt_flags & (NVME_XPT_REGD|SCSI_XPT_REGD)))
2933 lpfc_disc_state_machine(vport, ndlp, NULL,
2937 /* At this point, ALL ndlp's should be gone
2938 * because of the previous NLP_EVT_DEVICE_RM.
2939 * Lets wait for this to happen, if needed.
2941 while (!list_empty(&vport->fc_nodes)) {
2943 lpfc_printf_vlog(vport, KERN_ERR,
2945 "0233 Nodelist not empty\n");
2946 list_for_each_entry_safe(ndlp, next_ndlp,
2947 &vport->fc_nodes, nlp_listp) {
2948 lpfc_printf_vlog(ndlp->vport, KERN_ERR,
2950 "0282 did:x%x ndlp:x%px "
2951 "refcnt:%d xflags x%x nflag x%x\n",
2952 ndlp->nlp_DID, (void *)ndlp,
2953 kref_read(&ndlp->kref),
2954 ndlp->fc4_xpt_flags,
2960 /* Wait for any activity on ndlps to settle */
2963 lpfc_cleanup_vports_rrqs(vport, NULL);
2967 * lpfc_stop_vport_timers - Stop all the timers associated with a vport
2968 * @vport: pointer to a virtual N_Port data structure.
2970 * This routine stops all the timers associated with a @vport. This function
2971 * is invoked before disabling or deleting a @vport. Note that the physical
2972 * port is treated as @vport 0.
2975 lpfc_stop_vport_timers(struct lpfc_vport *vport)
2977 del_timer_sync(&vport->els_tmofunc);
2978 del_timer_sync(&vport->delayed_disc_tmo);
2979 lpfc_can_disctmo(vport);
2984 * __lpfc_sli4_stop_fcf_redisc_wait_timer - Stop FCF rediscovery wait timer
2985 * @phba: pointer to lpfc hba data structure.
2987 * This routine stops the SLI4 FCF rediscover wait timer if it's on. The
2988 * caller of this routine should already hold the host lock.
2991 __lpfc_sli4_stop_fcf_redisc_wait_timer(struct lpfc_hba *phba)
2993 /* Clear pending FCF rediscovery wait flag */
2994 phba->fcf.fcf_flag &= ~FCF_REDISC_PEND;
2996 /* Now, try to stop the timer */
2997 del_timer(&phba->fcf.redisc_wait);
3001 * lpfc_sli4_stop_fcf_redisc_wait_timer - Stop FCF rediscovery wait timer
3002 * @phba: pointer to lpfc hba data structure.
3004 * This routine stops the SLI4 FCF rediscover wait timer if it's on. It
3005 * checks whether the FCF rediscovery wait timer is pending with the host
3006 * lock held before proceeding with disabling the timer and clearing the
3007 * wait timer pendig flag.
3010 lpfc_sli4_stop_fcf_redisc_wait_timer(struct lpfc_hba *phba)
3012 spin_lock_irq(&phba->hbalock);
3013 if (!(phba->fcf.fcf_flag & FCF_REDISC_PEND)) {
3014 /* FCF rediscovery timer already fired or stopped */
3015 spin_unlock_irq(&phba->hbalock);
3018 __lpfc_sli4_stop_fcf_redisc_wait_timer(phba);
3019 /* Clear failover in progress flags */
3020 phba->fcf.fcf_flag &= ~(FCF_DEAD_DISC | FCF_ACVL_DISC);
3021 spin_unlock_irq(&phba->hbalock);
3025 * lpfc_cmf_stop - Stop CMF processing
3026 * @phba: pointer to lpfc hba data structure.
3028 * This is called when the link goes down or if CMF mode is turned OFF.
3029 * It is also called when going offline or unloaded just before the
3030 * congestion info buffer is unregistered.
3033 lpfc_cmf_stop(struct lpfc_hba *phba)
3036 struct lpfc_cgn_stat *cgs;
3038 /* We only do something if CMF is enabled */
3039 if (!phba->sli4_hba.pc_sli4_params.cmf)
3042 lpfc_printf_log(phba, KERN_INFO, LOG_CGN_MGMT,
3043 "6221 Stop CMF / Cancel Timer\n");
3045 /* Cancel the CMF timer */
3046 hrtimer_cancel(&phba->cmf_timer);
3048 /* Zero CMF counters */
3049 atomic_set(&phba->cmf_busy, 0);
3050 for_each_present_cpu(cpu) {
3051 cgs = per_cpu_ptr(phba->cmf_stat, cpu);
3052 atomic64_set(&cgs->total_bytes, 0);
3053 atomic64_set(&cgs->rcv_bytes, 0);
3054 atomic_set(&cgs->rx_io_cnt, 0);
3055 atomic64_set(&cgs->rx_latency, 0);
3057 atomic_set(&phba->cmf_bw_wait, 0);
3059 /* Resume any blocked IO - Queue unblock on workqueue */
3060 queue_work(phba->wq, &phba->unblock_request_work);
3063 static inline uint64_t
3064 lpfc_get_max_line_rate(struct lpfc_hba *phba)
3066 uint64_t rate = lpfc_sli_port_speed_get(phba);
3068 return ((((unsigned long)rate) * 1024 * 1024) / 10);
3072 lpfc_cmf_signal_init(struct lpfc_hba *phba)
3074 lpfc_printf_log(phba, KERN_INFO, LOG_CGN_MGMT,
3075 "6223 Signal CMF init\n");
3077 /* Use the new fc_linkspeed to recalculate */
3078 phba->cmf_interval_rate = LPFC_CMF_INTERVAL;
3079 phba->cmf_max_line_rate = lpfc_get_max_line_rate(phba);
3080 phba->cmf_link_byte_count = div_u64(phba->cmf_max_line_rate *
3081 phba->cmf_interval_rate, 1000);
3082 phba->cmf_max_bytes_per_interval = phba->cmf_link_byte_count;
3084 /* This is a signal to firmware to sync up CMF BW with link speed */
3085 lpfc_issue_cmf_sync_wqe(phba, 0, 0);
3089 * lpfc_cmf_start - Start CMF processing
3090 * @phba: pointer to lpfc hba data structure.
3092 * This is called when the link comes up or if CMF mode is turned OFF
3093 * to Monitor or Managed.
3096 lpfc_cmf_start(struct lpfc_hba *phba)
3098 struct lpfc_cgn_stat *cgs;
3101 /* We only do something if CMF is enabled */
3102 if (!phba->sli4_hba.pc_sli4_params.cmf ||
3103 phba->cmf_active_mode == LPFC_CFG_OFF)
3106 /* Reinitialize congestion buffer info */
3107 lpfc_init_congestion_buf(phba);
3109 atomic_set(&phba->cgn_fabric_warn_cnt, 0);
3110 atomic_set(&phba->cgn_fabric_alarm_cnt, 0);
3111 atomic_set(&phba->cgn_sync_alarm_cnt, 0);
3112 atomic_set(&phba->cgn_sync_warn_cnt, 0);
3114 atomic_set(&phba->cmf_busy, 0);
3115 for_each_present_cpu(cpu) {
3116 cgs = per_cpu_ptr(phba->cmf_stat, cpu);
3117 atomic64_set(&cgs->total_bytes, 0);
3118 atomic64_set(&cgs->rcv_bytes, 0);
3119 atomic_set(&cgs->rx_io_cnt, 0);
3120 atomic64_set(&cgs->rx_latency, 0);
3122 phba->cmf_latency.tv_sec = 0;
3123 phba->cmf_latency.tv_nsec = 0;
3125 lpfc_cmf_signal_init(phba);
3127 lpfc_printf_log(phba, KERN_INFO, LOG_CGN_MGMT,
3128 "6222 Start CMF / Timer\n");
3130 phba->cmf_timer_cnt = 0;
3131 hrtimer_start(&phba->cmf_timer,
3132 ktime_set(0, LPFC_CMF_INTERVAL * 1000000),
3134 /* Setup for latency check in IO cmpl routines */
3135 ktime_get_real_ts64(&phba->cmf_latency);
3137 atomic_set(&phba->cmf_bw_wait, 0);
3138 atomic_set(&phba->cmf_stop_io, 0);
3142 * lpfc_stop_hba_timers - Stop all the timers associated with an HBA
3143 * @phba: pointer to lpfc hba data structure.
3145 * This routine stops all the timers associated with a HBA. This function is
3146 * invoked before either putting a HBA offline or unloading the driver.
3149 lpfc_stop_hba_timers(struct lpfc_hba *phba)
3152 lpfc_stop_vport_timers(phba->pport);
3153 cancel_delayed_work_sync(&phba->eq_delay_work);
3154 cancel_delayed_work_sync(&phba->idle_stat_delay_work);
3155 del_timer_sync(&phba->sli.mbox_tmo);
3156 del_timer_sync(&phba->fabric_block_timer);
3157 del_timer_sync(&phba->eratt_poll);
3158 del_timer_sync(&phba->hb_tmofunc);
3159 if (phba->sli_rev == LPFC_SLI_REV4) {
3160 del_timer_sync(&phba->rrq_tmr);
3161 phba->hba_flag &= ~HBA_RRQ_ACTIVE;
3163 phba->hba_flag &= ~(HBA_HBEAT_INP | HBA_HBEAT_TMO);
3165 switch (phba->pci_dev_grp) {
3166 case LPFC_PCI_DEV_LP:
3167 /* Stop any LightPulse device specific driver timers */
3168 del_timer_sync(&phba->fcp_poll_timer);
3170 case LPFC_PCI_DEV_OC:
3171 /* Stop any OneConnect device specific driver timers */
3172 lpfc_sli4_stop_fcf_redisc_wait_timer(phba);
3175 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
3176 "0297 Invalid device group (x%x)\n",
3184 * lpfc_block_mgmt_io - Mark a HBA's management interface as blocked
3185 * @phba: pointer to lpfc hba data structure.
3186 * @mbx_action: flag for mailbox no wait action.
3188 * This routine marks a HBA's management interface as blocked. Once the HBA's
3189 * management interface is marked as blocked, all the user space access to
3190 * the HBA, whether they are from sysfs interface or libdfc interface will
3191 * all be blocked. The HBA is set to block the management interface when the
3192 * driver prepares the HBA interface for online or offline.
3195 lpfc_block_mgmt_io(struct lpfc_hba *phba, int mbx_action)
3197 unsigned long iflag;
3198 uint8_t actcmd = MBX_HEARTBEAT;
3199 unsigned long timeout;
3201 spin_lock_irqsave(&phba->hbalock, iflag);
3202 phba->sli.sli_flag |= LPFC_BLOCK_MGMT_IO;
3203 spin_unlock_irqrestore(&phba->hbalock, iflag);
3204 if (mbx_action == LPFC_MBX_NO_WAIT)
3206 timeout = msecs_to_jiffies(LPFC_MBOX_TMO * 1000) + jiffies;
3207 spin_lock_irqsave(&phba->hbalock, iflag);
3208 if (phba->sli.mbox_active) {
3209 actcmd = phba->sli.mbox_active->u.mb.mbxCommand;
3210 /* Determine how long we might wait for the active mailbox
3211 * command to be gracefully completed by firmware.
3213 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba,
3214 phba->sli.mbox_active) * 1000) + jiffies;
3216 spin_unlock_irqrestore(&phba->hbalock, iflag);
3218 /* Wait for the outstnading mailbox command to complete */
3219 while (phba->sli.mbox_active) {
3220 /* Check active mailbox complete status every 2ms */
3222 if (time_after(jiffies, timeout)) {
3223 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
3224 "2813 Mgmt IO is Blocked %x "
3225 "- mbox cmd %x still active\n",
3226 phba->sli.sli_flag, actcmd);
3233 * lpfc_sli4_node_prep - Assign RPIs for active nodes.
3234 * @phba: pointer to lpfc hba data structure.
3236 * Allocate RPIs for all active remote nodes. This is needed whenever
3237 * an SLI4 adapter is reset and the driver is not unloading. Its purpose
3238 * is to fixup the temporary rpi assignments.
3241 lpfc_sli4_node_prep(struct lpfc_hba *phba)
3243 struct lpfc_nodelist *ndlp, *next_ndlp;
3244 struct lpfc_vport **vports;
3247 if (phba->sli_rev != LPFC_SLI_REV4)
3250 vports = lpfc_create_vport_work_array(phba);
3254 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
3255 if (vports[i]->load_flag & FC_UNLOADING)
3258 list_for_each_entry_safe(ndlp, next_ndlp,
3259 &vports[i]->fc_nodes,
3261 rpi = lpfc_sli4_alloc_rpi(phba);
3262 if (rpi == LPFC_RPI_ALLOC_ERROR) {
3263 /* TODO print log? */
3266 ndlp->nlp_rpi = rpi;
3267 lpfc_printf_vlog(ndlp->vport, KERN_INFO,
3268 LOG_NODE | LOG_DISCOVERY,
3269 "0009 Assign RPI x%x to ndlp x%px "
3270 "DID:x%06x flg:x%x\n",
3271 ndlp->nlp_rpi, ndlp, ndlp->nlp_DID,
3275 lpfc_destroy_vport_work_array(phba, vports);
3279 * lpfc_create_expedite_pool - create expedite pool
3280 * @phba: pointer to lpfc hba data structure.
3282 * This routine moves a batch of XRIs from lpfc_io_buf_list_put of HWQ 0
3283 * to expedite pool. Mark them as expedite.
3285 static void lpfc_create_expedite_pool(struct lpfc_hba *phba)
3287 struct lpfc_sli4_hdw_queue *qp;
3288 struct lpfc_io_buf *lpfc_ncmd;
3289 struct lpfc_io_buf *lpfc_ncmd_next;
3290 struct lpfc_epd_pool *epd_pool;
3291 unsigned long iflag;
3293 epd_pool = &phba->epd_pool;
3294 qp = &phba->sli4_hba.hdwq[0];
3296 spin_lock_init(&epd_pool->lock);
3297 spin_lock_irqsave(&qp->io_buf_list_put_lock, iflag);
3298 spin_lock(&epd_pool->lock);
3299 INIT_LIST_HEAD(&epd_pool->list);
3300 list_for_each_entry_safe(lpfc_ncmd, lpfc_ncmd_next,
3301 &qp->lpfc_io_buf_list_put, list) {
3302 list_move_tail(&lpfc_ncmd->list, &epd_pool->list);
3303 lpfc_ncmd->expedite = true;
3306 if (epd_pool->count >= XRI_BATCH)
3309 spin_unlock(&epd_pool->lock);
3310 spin_unlock_irqrestore(&qp->io_buf_list_put_lock, iflag);
3314 * lpfc_destroy_expedite_pool - destroy expedite pool
3315 * @phba: pointer to lpfc hba data structure.
3317 * This routine returns XRIs from expedite pool to lpfc_io_buf_list_put
3318 * of HWQ 0. Clear the mark.
3320 static void lpfc_destroy_expedite_pool(struct lpfc_hba *phba)
3322 struct lpfc_sli4_hdw_queue *qp;
3323 struct lpfc_io_buf *lpfc_ncmd;
3324 struct lpfc_io_buf *lpfc_ncmd_next;
3325 struct lpfc_epd_pool *epd_pool;
3326 unsigned long iflag;
3328 epd_pool = &phba->epd_pool;
3329 qp = &phba->sli4_hba.hdwq[0];
3331 spin_lock_irqsave(&qp->io_buf_list_put_lock, iflag);
3332 spin_lock(&epd_pool->lock);
3333 list_for_each_entry_safe(lpfc_ncmd, lpfc_ncmd_next,
3334 &epd_pool->list, list) {
3335 list_move_tail(&lpfc_ncmd->list,
3336 &qp->lpfc_io_buf_list_put);
3337 lpfc_ncmd->flags = false;
3341 spin_unlock(&epd_pool->lock);
3342 spin_unlock_irqrestore(&qp->io_buf_list_put_lock, iflag);
3346 * lpfc_create_multixri_pools - create multi-XRI pools
3347 * @phba: pointer to lpfc hba data structure.
3349 * This routine initialize public, private per HWQ. Then, move XRIs from
3350 * lpfc_io_buf_list_put to public pool. High and low watermark are also
3353 void lpfc_create_multixri_pools(struct lpfc_hba *phba)
3358 struct lpfc_io_buf *lpfc_ncmd;
3359 struct lpfc_io_buf *lpfc_ncmd_next;
3360 unsigned long iflag;
3361 struct lpfc_sli4_hdw_queue *qp;
3362 struct lpfc_multixri_pool *multixri_pool;
3363 struct lpfc_pbl_pool *pbl_pool;
3364 struct lpfc_pvt_pool *pvt_pool;
3366 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
3367 "1234 num_hdw_queue=%d num_present_cpu=%d common_xri_cnt=%d\n",
3368 phba->cfg_hdw_queue, phba->sli4_hba.num_present_cpu,
3369 phba->sli4_hba.io_xri_cnt);
3371 if (phba->cfg_enable_fc4_type & LPFC_ENABLE_NVME)
3372 lpfc_create_expedite_pool(phba);
3374 hwq_count = phba->cfg_hdw_queue;
3375 count_per_hwq = phba->sli4_hba.io_xri_cnt / hwq_count;
3377 for (i = 0; i < hwq_count; i++) {
3378 multixri_pool = kzalloc(sizeof(*multixri_pool), GFP_KERNEL);
3380 if (!multixri_pool) {
3381 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
3382 "1238 Failed to allocate memory for "
3385 if (phba->cfg_enable_fc4_type & LPFC_ENABLE_NVME)
3386 lpfc_destroy_expedite_pool(phba);
3390 qp = &phba->sli4_hba.hdwq[j];
3391 kfree(qp->p_multixri_pool);
3394 phba->cfg_xri_rebalancing = 0;
3398 qp = &phba->sli4_hba.hdwq[i];
3399 qp->p_multixri_pool = multixri_pool;
3401 multixri_pool->xri_limit = count_per_hwq;
3402 multixri_pool->rrb_next_hwqid = i;
3404 /* Deal with public free xri pool */
3405 pbl_pool = &multixri_pool->pbl_pool;
3406 spin_lock_init(&pbl_pool->lock);
3407 spin_lock_irqsave(&qp->io_buf_list_put_lock, iflag);
3408 spin_lock(&pbl_pool->lock);
3409 INIT_LIST_HEAD(&pbl_pool->list);
3410 list_for_each_entry_safe(lpfc_ncmd, lpfc_ncmd_next,
3411 &qp->lpfc_io_buf_list_put, list) {
3412 list_move_tail(&lpfc_ncmd->list, &pbl_pool->list);
3416 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
3417 "1235 Moved %d buffers from PUT list over to pbl_pool[%d]\n",
3418 pbl_pool->count, i);
3419 spin_unlock(&pbl_pool->lock);
3420 spin_unlock_irqrestore(&qp->io_buf_list_put_lock, iflag);
3422 /* Deal with private free xri pool */
3423 pvt_pool = &multixri_pool->pvt_pool;
3424 pvt_pool->high_watermark = multixri_pool->xri_limit / 2;
3425 pvt_pool->low_watermark = XRI_BATCH;
3426 spin_lock_init(&pvt_pool->lock);
3427 spin_lock_irqsave(&pvt_pool->lock, iflag);
3428 INIT_LIST_HEAD(&pvt_pool->list);
3429 pvt_pool->count = 0;
3430 spin_unlock_irqrestore(&pvt_pool->lock, iflag);
3435 * lpfc_destroy_multixri_pools - destroy multi-XRI pools
3436 * @phba: pointer to lpfc hba data structure.
3438 * This routine returns XRIs from public/private to lpfc_io_buf_list_put.
3440 static void lpfc_destroy_multixri_pools(struct lpfc_hba *phba)
3444 struct lpfc_io_buf *lpfc_ncmd;
3445 struct lpfc_io_buf *lpfc_ncmd_next;
3446 unsigned long iflag;
3447 struct lpfc_sli4_hdw_queue *qp;
3448 struct lpfc_multixri_pool *multixri_pool;
3449 struct lpfc_pbl_pool *pbl_pool;
3450 struct lpfc_pvt_pool *pvt_pool;
3452 if (phba->cfg_enable_fc4_type & LPFC_ENABLE_NVME)
3453 lpfc_destroy_expedite_pool(phba);
3455 if (!(phba->pport->load_flag & FC_UNLOADING))
3456 lpfc_sli_flush_io_rings(phba);
3458 hwq_count = phba->cfg_hdw_queue;
3460 for (i = 0; i < hwq_count; i++) {
3461 qp = &phba->sli4_hba.hdwq[i];
3462 multixri_pool = qp->p_multixri_pool;
3466 qp->p_multixri_pool = NULL;
3468 spin_lock_irqsave(&qp->io_buf_list_put_lock, iflag);
3470 /* Deal with public free xri pool */
3471 pbl_pool = &multixri_pool->pbl_pool;
3472 spin_lock(&pbl_pool->lock);
3474 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
3475 "1236 Moving %d buffers from pbl_pool[%d] TO PUT list\n",
3476 pbl_pool->count, i);
3478 list_for_each_entry_safe(lpfc_ncmd, lpfc_ncmd_next,
3479 &pbl_pool->list, list) {
3480 list_move_tail(&lpfc_ncmd->list,
3481 &qp->lpfc_io_buf_list_put);
3486 INIT_LIST_HEAD(&pbl_pool->list);
3487 pbl_pool->count = 0;
3489 spin_unlock(&pbl_pool->lock);
3491 /* Deal with private free xri pool */
3492 pvt_pool = &multixri_pool->pvt_pool;
3493 spin_lock(&pvt_pool->lock);
3495 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
3496 "1237 Moving %d buffers from pvt_pool[%d] TO PUT list\n",
3497 pvt_pool->count, i);
3499 list_for_each_entry_safe(lpfc_ncmd, lpfc_ncmd_next,
3500 &pvt_pool->list, list) {
3501 list_move_tail(&lpfc_ncmd->list,
3502 &qp->lpfc_io_buf_list_put);
3507 INIT_LIST_HEAD(&pvt_pool->list);
3508 pvt_pool->count = 0;
3510 spin_unlock(&pvt_pool->lock);
3511 spin_unlock_irqrestore(&qp->io_buf_list_put_lock, iflag);
3513 kfree(multixri_pool);
3518 * lpfc_online - Initialize and bring a HBA online
3519 * @phba: pointer to lpfc hba data structure.
3521 * This routine initializes the HBA and brings a HBA online. During this
3522 * process, the management interface is blocked to prevent user space access
3523 * to the HBA interfering with the driver initialization.
3530 lpfc_online(struct lpfc_hba *phba)
3532 struct lpfc_vport *vport;
3533 struct lpfc_vport **vports;
3535 bool vpis_cleared = false;
3539 vport = phba->pport;
3541 if (!(vport->fc_flag & FC_OFFLINE_MODE))
3544 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
3545 "0458 Bring Adapter online\n");
3547 lpfc_block_mgmt_io(phba, LPFC_MBX_WAIT);
3549 if (phba->sli_rev == LPFC_SLI_REV4) {
3550 if (lpfc_sli4_hba_setup(phba)) { /* Initialize SLI4 HBA */
3551 lpfc_unblock_mgmt_io(phba);
3554 spin_lock_irq(&phba->hbalock);
3555 if (!phba->sli4_hba.max_cfg_param.vpi_used)
3556 vpis_cleared = true;
3557 spin_unlock_irq(&phba->hbalock);
3559 /* Reestablish the local initiator port.
3560 * The offline process destroyed the previous lport.
3562 if (phba->cfg_enable_fc4_type & LPFC_ENABLE_NVME &&
3563 !phba->nvmet_support) {
3564 error = lpfc_nvme_create_localport(phba->pport);
3566 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
3567 "6132 NVME restore reg failed "
3568 "on nvmei error x%x\n", error);
3571 lpfc_sli_queue_init(phba);
3572 if (lpfc_sli_hba_setup(phba)) { /* Initialize SLI2/SLI3 HBA */
3573 lpfc_unblock_mgmt_io(phba);
3578 vports = lpfc_create_vport_work_array(phba);
3579 if (vports != NULL) {
3580 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
3581 struct Scsi_Host *shost;
3582 shost = lpfc_shost_from_vport(vports[i]);
3583 spin_lock_irq(shost->host_lock);
3584 vports[i]->fc_flag &= ~FC_OFFLINE_MODE;
3585 if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED)
3586 vports[i]->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
3587 if (phba->sli_rev == LPFC_SLI_REV4) {
3588 vports[i]->fc_flag |= FC_VPORT_NEEDS_INIT_VPI;
3589 if ((vpis_cleared) &&
3590 (vports[i]->port_type !=
3591 LPFC_PHYSICAL_PORT))
3594 spin_unlock_irq(shost->host_lock);
3597 lpfc_destroy_vport_work_array(phba, vports);
3599 if (phba->cfg_xri_rebalancing)
3600 lpfc_create_multixri_pools(phba);
3602 lpfc_cpuhp_add(phba);
3604 lpfc_unblock_mgmt_io(phba);
3609 * lpfc_unblock_mgmt_io - Mark a HBA's management interface to be not blocked
3610 * @phba: pointer to lpfc hba data structure.
3612 * This routine marks a HBA's management interface as not blocked. Once the
3613 * HBA's management interface is marked as not blocked, all the user space
3614 * access to the HBA, whether they are from sysfs interface or libdfc
3615 * interface will be allowed. The HBA is set to block the management interface
3616 * when the driver prepares the HBA interface for online or offline and then
3617 * set to unblock the management interface afterwards.
3620 lpfc_unblock_mgmt_io(struct lpfc_hba * phba)
3622 unsigned long iflag;
3624 spin_lock_irqsave(&phba->hbalock, iflag);
3625 phba->sli.sli_flag &= ~LPFC_BLOCK_MGMT_IO;
3626 spin_unlock_irqrestore(&phba->hbalock, iflag);
3630 * lpfc_offline_prep - Prepare a HBA to be brought offline
3631 * @phba: pointer to lpfc hba data structure.
3632 * @mbx_action: flag for mailbox shutdown action.
3634 * This routine is invoked to prepare a HBA to be brought offline. It performs
3635 * unregistration login to all the nodes on all vports and flushes the mailbox
3636 * queue to make it ready to be brought offline.
3639 lpfc_offline_prep(struct lpfc_hba *phba, int mbx_action)
3641 struct lpfc_vport *vport = phba->pport;
3642 struct lpfc_nodelist *ndlp, *next_ndlp;
3643 struct lpfc_vport **vports;
3644 struct Scsi_Host *shost;
3647 if (vport->fc_flag & FC_OFFLINE_MODE)
3650 lpfc_block_mgmt_io(phba, mbx_action);
3652 lpfc_linkdown(phba);
3654 /* Issue an unreg_login to all nodes on all vports */
3655 vports = lpfc_create_vport_work_array(phba);
3656 if (vports != NULL) {
3657 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
3658 if (vports[i]->load_flag & FC_UNLOADING)
3660 shost = lpfc_shost_from_vport(vports[i]);
3661 spin_lock_irq(shost->host_lock);
3662 vports[i]->vpi_state &= ~LPFC_VPI_REGISTERED;
3663 vports[i]->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
3664 vports[i]->fc_flag &= ~FC_VFI_REGISTERED;
3665 spin_unlock_irq(shost->host_lock);
3667 shost = lpfc_shost_from_vport(vports[i]);
3668 list_for_each_entry_safe(ndlp, next_ndlp,
3669 &vports[i]->fc_nodes,
3672 spin_lock_irq(&ndlp->lock);
3673 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
3674 spin_unlock_irq(&ndlp->lock);
3676 lpfc_unreg_rpi(vports[i], ndlp);
3678 * Whenever an SLI4 port goes offline, free the
3679 * RPI. Get a new RPI when the adapter port
3680 * comes back online.
3682 if (phba->sli_rev == LPFC_SLI_REV4) {
3683 lpfc_printf_vlog(vports[i], KERN_INFO,
3684 LOG_NODE | LOG_DISCOVERY,
3685 "0011 Free RPI x%x on "
3686 "ndlp: x%px did x%x\n",
3687 ndlp->nlp_rpi, ndlp,
3689 lpfc_sli4_free_rpi(phba, ndlp->nlp_rpi);
3690 ndlp->nlp_rpi = LPFC_RPI_ALLOC_ERROR;
3693 if (ndlp->nlp_type & NLP_FABRIC) {
3694 lpfc_disc_state_machine(vports[i], ndlp,
3695 NULL, NLP_EVT_DEVICE_RECOVERY);
3697 /* Don't remove the node unless the
3698 * has been unregistered with the
3699 * transport. If so, let dev_loss
3700 * take care of the node.
3702 if (!(ndlp->fc4_xpt_flags &
3703 (NVME_XPT_REGD | SCSI_XPT_REGD)))
3704 lpfc_disc_state_machine
3712 lpfc_destroy_vport_work_array(phba, vports);
3714 lpfc_sli_mbox_sys_shutdown(phba, mbx_action);
3717 flush_workqueue(phba->wq);
3721 * lpfc_offline - Bring a HBA offline
3722 * @phba: pointer to lpfc hba data structure.
3724 * This routine actually brings a HBA offline. It stops all the timers
3725 * associated with the HBA, brings down the SLI layer, and eventually
3726 * marks the HBA as in offline state for the upper layer protocol.
3729 lpfc_offline(struct lpfc_hba *phba)
3731 struct Scsi_Host *shost;
3732 struct lpfc_vport **vports;
3735 if (phba->pport->fc_flag & FC_OFFLINE_MODE)
3738 /* stop port and all timers associated with this hba */
3739 lpfc_stop_port(phba);
3741 /* Tear down the local and target port registrations. The
3742 * nvme transports need to cleanup.
3744 lpfc_nvmet_destroy_targetport(phba);
3745 lpfc_nvme_destroy_localport(phba->pport);
3747 vports = lpfc_create_vport_work_array(phba);
3749 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++)
3750 lpfc_stop_vport_timers(vports[i]);
3751 lpfc_destroy_vport_work_array(phba, vports);
3752 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
3753 "0460 Bring Adapter offline\n");
3754 /* Bring down the SLI Layer and cleanup. The HBA is offline
3756 lpfc_sli_hba_down(phba);
3757 spin_lock_irq(&phba->hbalock);
3759 spin_unlock_irq(&phba->hbalock);
3760 vports = lpfc_create_vport_work_array(phba);
3762 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
3763 shost = lpfc_shost_from_vport(vports[i]);
3764 spin_lock_irq(shost->host_lock);
3765 vports[i]->work_port_events = 0;
3766 vports[i]->fc_flag |= FC_OFFLINE_MODE;
3767 spin_unlock_irq(shost->host_lock);
3769 lpfc_destroy_vport_work_array(phba, vports);
3770 /* If OFFLINE flag is clear (i.e. unloading), cpuhp removal is handled
3773 if (phba->pport->fc_flag & FC_OFFLINE_MODE)
3774 __lpfc_cpuhp_remove(phba);
3776 if (phba->cfg_xri_rebalancing)
3777 lpfc_destroy_multixri_pools(phba);
3781 * lpfc_scsi_free - Free all the SCSI buffers and IOCBs from driver lists
3782 * @phba: pointer to lpfc hba data structure.
3784 * This routine is to free all the SCSI buffers and IOCBs from the driver
3785 * list back to kernel. It is called from lpfc_pci_remove_one to free
3786 * the internal resources before the device is removed from the system.
3789 lpfc_scsi_free(struct lpfc_hba *phba)
3791 struct lpfc_io_buf *sb, *sb_next;
3793 if (!(phba->cfg_enable_fc4_type & LPFC_ENABLE_FCP))
3796 spin_lock_irq(&phba->hbalock);
3798 /* Release all the lpfc_scsi_bufs maintained by this host. */
3800 spin_lock(&phba->scsi_buf_list_put_lock);
3801 list_for_each_entry_safe(sb, sb_next, &phba->lpfc_scsi_buf_list_put,
3803 list_del(&sb->list);
3804 dma_pool_free(phba->lpfc_sg_dma_buf_pool, sb->data,
3807 phba->total_scsi_bufs--;
3809 spin_unlock(&phba->scsi_buf_list_put_lock);
3811 spin_lock(&phba->scsi_buf_list_get_lock);
3812 list_for_each_entry_safe(sb, sb_next, &phba->lpfc_scsi_buf_list_get,
3814 list_del(&sb->list);
3815 dma_pool_free(phba->lpfc_sg_dma_buf_pool, sb->data,
3818 phba->total_scsi_bufs--;
3820 spin_unlock(&phba->scsi_buf_list_get_lock);
3821 spin_unlock_irq(&phba->hbalock);
3825 * lpfc_io_free - Free all the IO buffers and IOCBs from driver lists
3826 * @phba: pointer to lpfc hba data structure.
3828 * This routine is to free all the IO buffers and IOCBs from the driver
3829 * list back to kernel. It is called from lpfc_pci_remove_one to free
3830 * the internal resources before the device is removed from the system.
3833 lpfc_io_free(struct lpfc_hba *phba)
3835 struct lpfc_io_buf *lpfc_ncmd, *lpfc_ncmd_next;
3836 struct lpfc_sli4_hdw_queue *qp;
3839 for (idx = 0; idx < phba->cfg_hdw_queue; idx++) {
3840 qp = &phba->sli4_hba.hdwq[idx];
3841 /* Release all the lpfc_nvme_bufs maintained by this host. */
3842 spin_lock(&qp->io_buf_list_put_lock);
3843 list_for_each_entry_safe(lpfc_ncmd, lpfc_ncmd_next,
3844 &qp->lpfc_io_buf_list_put,
3846 list_del(&lpfc_ncmd->list);
3848 dma_pool_free(phba->lpfc_sg_dma_buf_pool,
3849 lpfc_ncmd->data, lpfc_ncmd->dma_handle);
3850 if (phba->cfg_xpsgl && !phba->nvmet_support)
3851 lpfc_put_sgl_per_hdwq(phba, lpfc_ncmd);
3852 lpfc_put_cmd_rsp_buf_per_hdwq(phba, lpfc_ncmd);
3854 qp->total_io_bufs--;
3856 spin_unlock(&qp->io_buf_list_put_lock);
3858 spin_lock(&qp->io_buf_list_get_lock);
3859 list_for_each_entry_safe(lpfc_ncmd, lpfc_ncmd_next,
3860 &qp->lpfc_io_buf_list_get,
3862 list_del(&lpfc_ncmd->list);
3864 dma_pool_free(phba->lpfc_sg_dma_buf_pool,
3865 lpfc_ncmd->data, lpfc_ncmd->dma_handle);
3866 if (phba->cfg_xpsgl && !phba->nvmet_support)
3867 lpfc_put_sgl_per_hdwq(phba, lpfc_ncmd);
3868 lpfc_put_cmd_rsp_buf_per_hdwq(phba, lpfc_ncmd);
3870 qp->total_io_bufs--;
3872 spin_unlock(&qp->io_buf_list_get_lock);
3877 * lpfc_sli4_els_sgl_update - update ELS xri-sgl sizing and mapping
3878 * @phba: pointer to lpfc hba data structure.
3880 * This routine first calculates the sizes of the current els and allocated
3881 * scsi sgl lists, and then goes through all sgls to updates the physical
3882 * XRIs assigned due to port function reset. During port initialization, the
3883 * current els and allocated scsi sgl lists are 0s.
3886 * 0 - successful (for now, it always returns 0)
3889 lpfc_sli4_els_sgl_update(struct lpfc_hba *phba)
3891 struct lpfc_sglq *sglq_entry = NULL, *sglq_entry_next = NULL;
3892 uint16_t i, lxri, xri_cnt, els_xri_cnt;
3893 LIST_HEAD(els_sgl_list);
3897 * update on pci function's els xri-sgl list
3899 els_xri_cnt = lpfc_sli4_get_els_iocb_cnt(phba);
3901 if (els_xri_cnt > phba->sli4_hba.els_xri_cnt) {
3902 /* els xri-sgl expanded */
3903 xri_cnt = els_xri_cnt - phba->sli4_hba.els_xri_cnt;
3904 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
3905 "3157 ELS xri-sgl count increased from "
3906 "%d to %d\n", phba->sli4_hba.els_xri_cnt,
3908 /* allocate the additional els sgls */
3909 for (i = 0; i < xri_cnt; i++) {
3910 sglq_entry = kzalloc(sizeof(struct lpfc_sglq),
3912 if (sglq_entry == NULL) {
3913 lpfc_printf_log(phba, KERN_ERR,
3915 "2562 Failure to allocate an "
3916 "ELS sgl entry:%d\n", i);
3920 sglq_entry->buff_type = GEN_BUFF_TYPE;
3921 sglq_entry->virt = lpfc_mbuf_alloc(phba, 0,
3923 if (sglq_entry->virt == NULL) {
3925 lpfc_printf_log(phba, KERN_ERR,
3927 "2563 Failure to allocate an "
3928 "ELS mbuf:%d\n", i);
3932 sglq_entry->sgl = sglq_entry->virt;
3933 memset(sglq_entry->sgl, 0, LPFC_BPL_SIZE);
3934 sglq_entry->state = SGL_FREED;
3935 list_add_tail(&sglq_entry->list, &els_sgl_list);
3937 spin_lock_irq(&phba->sli4_hba.sgl_list_lock);
3938 list_splice_init(&els_sgl_list,
3939 &phba->sli4_hba.lpfc_els_sgl_list);
3940 spin_unlock_irq(&phba->sli4_hba.sgl_list_lock);
3941 } else if (els_xri_cnt < phba->sli4_hba.els_xri_cnt) {
3942 /* els xri-sgl shrinked */
3943 xri_cnt = phba->sli4_hba.els_xri_cnt - els_xri_cnt;
3944 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
3945 "3158 ELS xri-sgl count decreased from "
3946 "%d to %d\n", phba->sli4_hba.els_xri_cnt,
3948 spin_lock_irq(&phba->sli4_hba.sgl_list_lock);
3949 list_splice_init(&phba->sli4_hba.lpfc_els_sgl_list,
3951 /* release extra els sgls from list */
3952 for (i = 0; i < xri_cnt; i++) {
3953 list_remove_head(&els_sgl_list,
3954 sglq_entry, struct lpfc_sglq, list);
3956 __lpfc_mbuf_free(phba, sglq_entry->virt,
3961 list_splice_init(&els_sgl_list,
3962 &phba->sli4_hba.lpfc_els_sgl_list);
3963 spin_unlock_irq(&phba->sli4_hba.sgl_list_lock);
3965 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
3966 "3163 ELS xri-sgl count unchanged: %d\n",
3968 phba->sli4_hba.els_xri_cnt = els_xri_cnt;
3970 /* update xris to els sgls on the list */
3972 sglq_entry_next = NULL;
3973 list_for_each_entry_safe(sglq_entry, sglq_entry_next,
3974 &phba->sli4_hba.lpfc_els_sgl_list, list) {
3975 lxri = lpfc_sli4_next_xritag(phba);
3976 if (lxri == NO_XRI) {
3977 lpfc_printf_log(phba, KERN_ERR,
3979 "2400 Failed to allocate xri for "
3984 sglq_entry->sli4_lxritag = lxri;
3985 sglq_entry->sli4_xritag = phba->sli4_hba.xri_ids[lxri];
3990 lpfc_free_els_sgl_list(phba);
3995 * lpfc_sli4_nvmet_sgl_update - update xri-sgl sizing and mapping
3996 * @phba: pointer to lpfc hba data structure.
3998 * This routine first calculates the sizes of the current els and allocated
3999 * scsi sgl lists, and then goes through all sgls to updates the physical
4000 * XRIs assigned due to port function reset. During port initialization, the
4001 * current els and allocated scsi sgl lists are 0s.
4004 * 0 - successful (for now, it always returns 0)
4007 lpfc_sli4_nvmet_sgl_update(struct lpfc_hba *phba)
4009 struct lpfc_sglq *sglq_entry = NULL, *sglq_entry_next = NULL;
4010 uint16_t i, lxri, xri_cnt, els_xri_cnt;
4011 uint16_t nvmet_xri_cnt;
4012 LIST_HEAD(nvmet_sgl_list);
4016 * update on pci function's nvmet xri-sgl list
4018 els_xri_cnt = lpfc_sli4_get_els_iocb_cnt(phba);
4020 /* For NVMET, ALL remaining XRIs are dedicated for IO processing */
4021 nvmet_xri_cnt = phba->sli4_hba.max_cfg_param.max_xri - els_xri_cnt;
4022 if (nvmet_xri_cnt > phba->sli4_hba.nvmet_xri_cnt) {
4023 /* els xri-sgl expanded */
4024 xri_cnt = nvmet_xri_cnt - phba->sli4_hba.nvmet_xri_cnt;
4025 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
4026 "6302 NVMET xri-sgl cnt grew from %d to %d\n",
4027 phba->sli4_hba.nvmet_xri_cnt, nvmet_xri_cnt);
4028 /* allocate the additional nvmet sgls */
4029 for (i = 0; i < xri_cnt; i++) {
4030 sglq_entry = kzalloc(sizeof(struct lpfc_sglq),
4032 if (sglq_entry == NULL) {
4033 lpfc_printf_log(phba, KERN_ERR,
4035 "6303 Failure to allocate an "
4036 "NVMET sgl entry:%d\n", i);
4040 sglq_entry->buff_type = NVMET_BUFF_TYPE;
4041 sglq_entry->virt = lpfc_nvmet_buf_alloc(phba, 0,
4043 if (sglq_entry->virt == NULL) {
4045 lpfc_printf_log(phba, KERN_ERR,
4047 "6304 Failure to allocate an "
4048 "NVMET buf:%d\n", i);
4052 sglq_entry->sgl = sglq_entry->virt;
4053 memset(sglq_entry->sgl, 0,
4054 phba->cfg_sg_dma_buf_size);
4055 sglq_entry->state = SGL_FREED;
4056 list_add_tail(&sglq_entry->list, &nvmet_sgl_list);
4058 spin_lock_irq(&phba->hbalock);
4059 spin_lock(&phba->sli4_hba.sgl_list_lock);
4060 list_splice_init(&nvmet_sgl_list,
4061 &phba->sli4_hba.lpfc_nvmet_sgl_list);
4062 spin_unlock(&phba->sli4_hba.sgl_list_lock);
4063 spin_unlock_irq(&phba->hbalock);
4064 } else if (nvmet_xri_cnt < phba->sli4_hba.nvmet_xri_cnt) {
4065 /* nvmet xri-sgl shrunk */
4066 xri_cnt = phba->sli4_hba.nvmet_xri_cnt - nvmet_xri_cnt;
4067 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
4068 "6305 NVMET xri-sgl count decreased from "
4069 "%d to %d\n", phba->sli4_hba.nvmet_xri_cnt,
4071 spin_lock_irq(&phba->hbalock);
4072 spin_lock(&phba->sli4_hba.sgl_list_lock);
4073 list_splice_init(&phba->sli4_hba.lpfc_nvmet_sgl_list,
4075 /* release extra nvmet sgls from list */
4076 for (i = 0; i < xri_cnt; i++) {
4077 list_remove_head(&nvmet_sgl_list,
4078 sglq_entry, struct lpfc_sglq, list);
4080 lpfc_nvmet_buf_free(phba, sglq_entry->virt,
4085 list_splice_init(&nvmet_sgl_list,
4086 &phba->sli4_hba.lpfc_nvmet_sgl_list);
4087 spin_unlock(&phba->sli4_hba.sgl_list_lock);
4088 spin_unlock_irq(&phba->hbalock);
4090 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
4091 "6306 NVMET xri-sgl count unchanged: %d\n",
4093 phba->sli4_hba.nvmet_xri_cnt = nvmet_xri_cnt;
4095 /* update xris to nvmet sgls on the list */
4097 sglq_entry_next = NULL;
4098 list_for_each_entry_safe(sglq_entry, sglq_entry_next,
4099 &phba->sli4_hba.lpfc_nvmet_sgl_list, list) {
4100 lxri = lpfc_sli4_next_xritag(phba);
4101 if (lxri == NO_XRI) {
4102 lpfc_printf_log(phba, KERN_ERR,
4104 "6307 Failed to allocate xri for "
4109 sglq_entry->sli4_lxritag = lxri;
4110 sglq_entry->sli4_xritag = phba->sli4_hba.xri_ids[lxri];
4115 lpfc_free_nvmet_sgl_list(phba);
4120 lpfc_io_buf_flush(struct lpfc_hba *phba, struct list_head *cbuf)
4123 struct lpfc_sli4_hdw_queue *qp;
4124 struct lpfc_io_buf *lpfc_cmd;
4125 struct lpfc_io_buf *iobufp, *prev_iobufp;
4126 int idx, cnt, xri, inserted;
4129 for (idx = 0; idx < phba->cfg_hdw_queue; idx++) {
4130 qp = &phba->sli4_hba.hdwq[idx];
4131 spin_lock_irq(&qp->io_buf_list_get_lock);
4132 spin_lock(&qp->io_buf_list_put_lock);
4134 /* Take everything off the get and put lists */
4135 list_splice_init(&qp->lpfc_io_buf_list_get, &blist);
4136 list_splice(&qp->lpfc_io_buf_list_put, &blist);
4137 INIT_LIST_HEAD(&qp->lpfc_io_buf_list_get);
4138 INIT_LIST_HEAD(&qp->lpfc_io_buf_list_put);
4139 cnt += qp->get_io_bufs + qp->put_io_bufs;
4140 qp->get_io_bufs = 0;
4141 qp->put_io_bufs = 0;
4142 qp->total_io_bufs = 0;
4143 spin_unlock(&qp->io_buf_list_put_lock);
4144 spin_unlock_irq(&qp->io_buf_list_get_lock);
4148 * Take IO buffers off blist and put on cbuf sorted by XRI.
4149 * This is because POST_SGL takes a sequential range of XRIs
4150 * to post to the firmware.
4152 for (idx = 0; idx < cnt; idx++) {
4153 list_remove_head(&blist, lpfc_cmd, struct lpfc_io_buf, list);
4157 list_add_tail(&lpfc_cmd->list, cbuf);
4160 xri = lpfc_cmd->cur_iocbq.sli4_xritag;
4163 list_for_each_entry(iobufp, cbuf, list) {
4164 if (xri < iobufp->cur_iocbq.sli4_xritag) {
4166 list_add(&lpfc_cmd->list,
4167 &prev_iobufp->list);
4169 list_add(&lpfc_cmd->list, cbuf);
4173 prev_iobufp = iobufp;
4176 list_add_tail(&lpfc_cmd->list, cbuf);
4182 lpfc_io_buf_replenish(struct lpfc_hba *phba, struct list_head *cbuf)
4184 struct lpfc_sli4_hdw_queue *qp;
4185 struct lpfc_io_buf *lpfc_cmd;
4188 qp = phba->sli4_hba.hdwq;
4190 while (!list_empty(cbuf)) {
4191 for (idx = 0; idx < phba->cfg_hdw_queue; idx++) {
4192 list_remove_head(cbuf, lpfc_cmd,
4193 struct lpfc_io_buf, list);
4197 qp = &phba->sli4_hba.hdwq[idx];
4198 lpfc_cmd->hdwq_no = idx;
4199 lpfc_cmd->hdwq = qp;
4200 lpfc_cmd->cur_iocbq.wqe_cmpl = NULL;
4201 lpfc_cmd->cur_iocbq.iocb_cmpl = NULL;
4202 spin_lock(&qp->io_buf_list_put_lock);
4203 list_add_tail(&lpfc_cmd->list,
4204 &qp->lpfc_io_buf_list_put);
4206 qp->total_io_bufs++;
4207 spin_unlock(&qp->io_buf_list_put_lock);
4214 * lpfc_sli4_io_sgl_update - update xri-sgl sizing and mapping
4215 * @phba: pointer to lpfc hba data structure.
4217 * This routine first calculates the sizes of the current els and allocated
4218 * scsi sgl lists, and then goes through all sgls to updates the physical
4219 * XRIs assigned due to port function reset. During port initialization, the
4220 * current els and allocated scsi sgl lists are 0s.
4223 * 0 - successful (for now, it always returns 0)
4226 lpfc_sli4_io_sgl_update(struct lpfc_hba *phba)
4228 struct lpfc_io_buf *lpfc_ncmd = NULL, *lpfc_ncmd_next = NULL;
4229 uint16_t i, lxri, els_xri_cnt;
4230 uint16_t io_xri_cnt, io_xri_max;
4231 LIST_HEAD(io_sgl_list);
4235 * update on pci function's allocated nvme xri-sgl list
4238 /* maximum number of xris available for nvme buffers */
4239 els_xri_cnt = lpfc_sli4_get_els_iocb_cnt(phba);
4240 io_xri_max = phba->sli4_hba.max_cfg_param.max_xri - els_xri_cnt;
4241 phba->sli4_hba.io_xri_max = io_xri_max;
4243 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
4244 "6074 Current allocated XRI sgl count:%d, "
4245 "maximum XRI count:%d\n",
4246 phba->sli4_hba.io_xri_cnt,
4247 phba->sli4_hba.io_xri_max);
4249 cnt = lpfc_io_buf_flush(phba, &io_sgl_list);
4251 if (phba->sli4_hba.io_xri_cnt > phba->sli4_hba.io_xri_max) {
4252 /* max nvme xri shrunk below the allocated nvme buffers */
4253 io_xri_cnt = phba->sli4_hba.io_xri_cnt -
4254 phba->sli4_hba.io_xri_max;
4255 /* release the extra allocated nvme buffers */
4256 for (i = 0; i < io_xri_cnt; i++) {
4257 list_remove_head(&io_sgl_list, lpfc_ncmd,
4258 struct lpfc_io_buf, list);
4260 dma_pool_free(phba->lpfc_sg_dma_buf_pool,
4262 lpfc_ncmd->dma_handle);
4266 phba->sli4_hba.io_xri_cnt -= io_xri_cnt;
4269 /* update xris associated to remaining allocated nvme buffers */
4271 lpfc_ncmd_next = NULL;
4272 phba->sli4_hba.io_xri_cnt = cnt;
4273 list_for_each_entry_safe(lpfc_ncmd, lpfc_ncmd_next,
4274 &io_sgl_list, list) {
4275 lxri = lpfc_sli4_next_xritag(phba);
4276 if (lxri == NO_XRI) {
4277 lpfc_printf_log(phba, KERN_ERR,
4279 "6075 Failed to allocate xri for "
4284 lpfc_ncmd->cur_iocbq.sli4_lxritag = lxri;
4285 lpfc_ncmd->cur_iocbq.sli4_xritag = phba->sli4_hba.xri_ids[lxri];
4287 cnt = lpfc_io_buf_replenish(phba, &io_sgl_list);
4296 * lpfc_new_io_buf - IO buffer allocator for HBA with SLI4 IF spec
4297 * @phba: Pointer to lpfc hba data structure.
4298 * @num_to_alloc: The requested number of buffers to allocate.
4300 * This routine allocates nvme buffers for device with SLI-4 interface spec,
4301 * the nvme buffer contains all the necessary information needed to initiate
4302 * an I/O. After allocating up to @num_to_allocate IO buffers and put
4303 * them on a list, it post them to the port by using SGL block post.
4306 * int - number of IO buffers that were allocated and posted.
4307 * 0 = failure, less than num_to_alloc is a partial failure.
4310 lpfc_new_io_buf(struct lpfc_hba *phba, int num_to_alloc)
4312 struct lpfc_io_buf *lpfc_ncmd;
4313 struct lpfc_iocbq *pwqeq;
4314 uint16_t iotag, lxri = 0;
4315 int bcnt, num_posted;
4316 LIST_HEAD(prep_nblist);
4317 LIST_HEAD(post_nblist);
4318 LIST_HEAD(nvme_nblist);
4320 phba->sli4_hba.io_xri_cnt = 0;
4321 for (bcnt = 0; bcnt < num_to_alloc; bcnt++) {
4322 lpfc_ncmd = kzalloc(sizeof(*lpfc_ncmd), GFP_KERNEL);
4326 * Get memory from the pci pool to map the virt space to
4327 * pci bus space for an I/O. The DMA buffer includes the
4328 * number of SGE's necessary to support the sg_tablesize.
4330 lpfc_ncmd->data = dma_pool_zalloc(phba->lpfc_sg_dma_buf_pool,
4332 &lpfc_ncmd->dma_handle);
4333 if (!lpfc_ncmd->data) {
4338 if (phba->cfg_xpsgl && !phba->nvmet_support) {
4339 INIT_LIST_HEAD(&lpfc_ncmd->dma_sgl_xtra_list);
4342 * 4K Page alignment is CRITICAL to BlockGuard, double
4345 if ((phba->sli3_options & LPFC_SLI3_BG_ENABLED) &&
4346 (((unsigned long)(lpfc_ncmd->data) &
4347 (unsigned long)(SLI4_PAGE_SIZE - 1)) != 0)) {
4348 lpfc_printf_log(phba, KERN_ERR,
4350 "3369 Memory alignment err: "
4352 (unsigned long)lpfc_ncmd->data);
4353 dma_pool_free(phba->lpfc_sg_dma_buf_pool,
4355 lpfc_ncmd->dma_handle);
4361 INIT_LIST_HEAD(&lpfc_ncmd->dma_cmd_rsp_list);
4363 lxri = lpfc_sli4_next_xritag(phba);
4364 if (lxri == NO_XRI) {
4365 dma_pool_free(phba->lpfc_sg_dma_buf_pool,
4366 lpfc_ncmd->data, lpfc_ncmd->dma_handle);
4370 pwqeq = &lpfc_ncmd->cur_iocbq;
4372 /* Allocate iotag for lpfc_ncmd->cur_iocbq. */
4373 iotag = lpfc_sli_next_iotag(phba, pwqeq);
4375 dma_pool_free(phba->lpfc_sg_dma_buf_pool,
4376 lpfc_ncmd->data, lpfc_ncmd->dma_handle);
4378 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
4379 "6121 Failed to allocate IOTAG for"
4380 " XRI:0x%x\n", lxri);
4381 lpfc_sli4_free_xri(phba, lxri);
4384 pwqeq->sli4_lxritag = lxri;
4385 pwqeq->sli4_xritag = phba->sli4_hba.xri_ids[lxri];
4386 pwqeq->context1 = lpfc_ncmd;
4388 /* Initialize local short-hand pointers. */
4389 lpfc_ncmd->dma_sgl = lpfc_ncmd->data;
4390 lpfc_ncmd->dma_phys_sgl = lpfc_ncmd->dma_handle;
4391 lpfc_ncmd->cur_iocbq.context1 = lpfc_ncmd;
4392 spin_lock_init(&lpfc_ncmd->buf_lock);
4394 /* add the nvme buffer to a post list */
4395 list_add_tail(&lpfc_ncmd->list, &post_nblist);
4396 phba->sli4_hba.io_xri_cnt++;
4398 lpfc_printf_log(phba, KERN_INFO, LOG_NVME,
4399 "6114 Allocate %d out of %d requested new NVME "
4400 "buffers\n", bcnt, num_to_alloc);
4402 /* post the list of nvme buffer sgls to port if available */
4403 if (!list_empty(&post_nblist))
4404 num_posted = lpfc_sli4_post_io_sgl_list(
4405 phba, &post_nblist, bcnt);
4413 lpfc_get_wwpn(struct lpfc_hba *phba)
4417 LPFC_MBOXQ_t *mboxq;
4420 mboxq = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool,
4423 return (uint64_t)-1;
4425 /* First get WWN of HBA instance */
4426 lpfc_read_nv(phba, mboxq);
4427 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
4428 if (rc != MBX_SUCCESS) {
4429 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
4430 "6019 Mailbox failed , mbxCmd x%x "
4431 "READ_NV, mbxStatus x%x\n",
4432 bf_get(lpfc_mqe_command, &mboxq->u.mqe),
4433 bf_get(lpfc_mqe_status, &mboxq->u.mqe));
4434 mempool_free(mboxq, phba->mbox_mem_pool);
4435 return (uint64_t) -1;
4438 memcpy(&wwn, (char *)mb->un.varRDnvp.portname, sizeof(uint64_t));
4439 /* wwn is WWPN of HBA instance */
4440 mempool_free(mboxq, phba->mbox_mem_pool);
4441 if (phba->sli_rev == LPFC_SLI_REV4)
4442 return be64_to_cpu(wwn);
4444 return rol64(wwn, 32);
4448 * lpfc_vmid_res_alloc - Allocates resources for VMID
4449 * @phba: pointer to lpfc hba data structure.
4450 * @vport: pointer to vport data structure
4452 * This routine allocated the resources needed for the VMID.
4459 lpfc_vmid_res_alloc(struct lpfc_hba *phba, struct lpfc_vport *vport)
4461 /* VMID feature is supported only on SLI4 */
4462 if (phba->sli_rev == LPFC_SLI_REV3) {
4463 phba->cfg_vmid_app_header = 0;
4464 phba->cfg_vmid_priority_tagging = 0;
4467 if (lpfc_is_vmid_enabled(phba)) {
4469 kcalloc(phba->cfg_max_vmid, sizeof(struct lpfc_vmid),
4474 rwlock_init(&vport->vmid_lock);
4476 /* Set the VMID parameters for the vport */
4477 vport->vmid_priority_tagging = phba->cfg_vmid_priority_tagging;
4478 vport->vmid_inactivity_timeout =
4479 phba->cfg_vmid_inactivity_timeout;
4480 vport->max_vmid = phba->cfg_max_vmid;
4481 vport->cur_vmid_cnt = 0;
4483 vport->vmid_priority_range = bitmap_zalloc
4484 (LPFC_VMID_MAX_PRIORITY_RANGE, GFP_KERNEL);
4486 if (!vport->vmid_priority_range) {
4491 hash_init(vport->hash_table);
4497 * lpfc_create_port - Create an FC port
4498 * @phba: pointer to lpfc hba data structure.
4499 * @instance: a unique integer ID to this FC port.
4500 * @dev: pointer to the device data structure.
4502 * This routine creates a FC port for the upper layer protocol. The FC port
4503 * can be created on top of either a physical port or a virtual port provided
4504 * by the HBA. This routine also allocates a SCSI host data structure (shost)
4505 * and associates the FC port created before adding the shost into the SCSI
4509 * @vport - pointer to the virtual N_Port data structure.
4510 * NULL - port create failed.
4513 lpfc_create_port(struct lpfc_hba *phba, int instance, struct device *dev)
4515 struct lpfc_vport *vport;
4516 struct Scsi_Host *shost = NULL;
4517 struct scsi_host_template *template;
4521 bool use_no_reset_hba = false;
4524 if (lpfc_no_hba_reset_cnt) {
4525 if (phba->sli_rev < LPFC_SLI_REV4 &&
4526 dev == &phba->pcidev->dev) {
4527 /* Reset the port first */
4528 lpfc_sli_brdrestart(phba);
4529 rc = lpfc_sli_chipset_init(phba);
4533 wwn = lpfc_get_wwpn(phba);
4536 for (i = 0; i < lpfc_no_hba_reset_cnt; i++) {
4537 if (wwn == lpfc_no_hba_reset[i]) {
4538 lpfc_printf_log(phba, KERN_ERR,
4540 "6020 Setting use_no_reset port=%llx\n",
4542 use_no_reset_hba = true;
4547 /* Seed template for SCSI host registration */
4548 if (dev == &phba->pcidev->dev) {
4549 template = &phba->port_template;
4551 if (phba->cfg_enable_fc4_type & LPFC_ENABLE_FCP) {
4552 /* Seed physical port template */
4553 memcpy(template, &lpfc_template, sizeof(*template));
4555 if (use_no_reset_hba)
4556 /* template is for a no reset SCSI Host */
4557 template->eh_host_reset_handler = NULL;
4559 /* Template for all vports this physical port creates */
4560 memcpy(&phba->vport_template, &lpfc_template,
4562 phba->vport_template.shost_attrs = lpfc_vport_attrs;
4563 phba->vport_template.eh_bus_reset_handler = NULL;
4564 phba->vport_template.eh_host_reset_handler = NULL;
4565 phba->vport_template.vendor_id = 0;
4567 /* Initialize the host templates with updated value */
4568 if (phba->sli_rev == LPFC_SLI_REV4) {
4569 template->sg_tablesize = phba->cfg_scsi_seg_cnt;
4570 phba->vport_template.sg_tablesize =
4571 phba->cfg_scsi_seg_cnt;
4573 template->sg_tablesize = phba->cfg_sg_seg_cnt;
4574 phba->vport_template.sg_tablesize =
4575 phba->cfg_sg_seg_cnt;
4579 /* NVMET is for physical port only */
4580 memcpy(template, &lpfc_template_nvme,
4584 template = &phba->vport_template;
4587 shost = scsi_host_alloc(template, sizeof(struct lpfc_vport));
4591 vport = (struct lpfc_vport *) shost->hostdata;
4593 vport->load_flag |= FC_LOADING;
4594 vport->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
4595 vport->fc_rscn_flush = 0;
4596 lpfc_get_vport_cfgparam(vport);
4598 /* Adjust value in vport */
4599 vport->cfg_enable_fc4_type = phba->cfg_enable_fc4_type;
4601 shost->unique_id = instance;
4602 shost->max_id = LPFC_MAX_TARGET;
4603 shost->max_lun = vport->cfg_max_luns;
4604 shost->this_id = -1;
4605 shost->max_cmd_len = 16;
4607 if (phba->sli_rev == LPFC_SLI_REV4) {
4608 if (!phba->cfg_fcp_mq_threshold ||
4609 phba->cfg_fcp_mq_threshold > phba->cfg_hdw_queue)
4610 phba->cfg_fcp_mq_threshold = phba->cfg_hdw_queue;
4612 shost->nr_hw_queues = min_t(int, 2 * num_possible_nodes(),
4613 phba->cfg_fcp_mq_threshold);
4615 shost->dma_boundary =
4616 phba->sli4_hba.pc_sli4_params.sge_supp_len-1;
4618 if (phba->cfg_xpsgl && !phba->nvmet_support)
4619 shost->sg_tablesize = LPFC_MAX_SG_TABLESIZE;
4621 shost->sg_tablesize = phba->cfg_scsi_seg_cnt;
4623 /* SLI-3 has a limited number of hardware queues (3),
4624 * thus there is only one for FCP processing.
4626 shost->nr_hw_queues = 1;
4629 * Set initial can_queue value since 0 is no longer supported and
4630 * scsi_add_host will fail. This will be adjusted later based on the
4631 * max xri value determined in hba setup.
4633 shost->can_queue = phba->cfg_hba_queue_depth - 10;
4634 if (dev != &phba->pcidev->dev) {
4635 shost->transportt = lpfc_vport_transport_template;
4636 vport->port_type = LPFC_NPIV_PORT;
4638 shost->transportt = lpfc_transport_template;
4639 vport->port_type = LPFC_PHYSICAL_PORT;
4642 lpfc_printf_log(phba, KERN_INFO, LOG_INIT | LOG_FCP,
4643 "9081 CreatePort TMPLATE type %x TBLsize %d "
4645 vport->port_type, shost->sg_tablesize,
4646 phba->cfg_scsi_seg_cnt, phba->cfg_sg_seg_cnt);
4648 /* Allocate the resources for VMID */
4649 rc = lpfc_vmid_res_alloc(phba, vport);
4654 /* Initialize all internally managed lists. */
4655 INIT_LIST_HEAD(&vport->fc_nodes);
4656 INIT_LIST_HEAD(&vport->rcv_buffer_list);
4657 spin_lock_init(&vport->work_port_lock);
4659 timer_setup(&vport->fc_disctmo, lpfc_disc_timeout, 0);
4661 timer_setup(&vport->els_tmofunc, lpfc_els_timeout, 0);
4663 timer_setup(&vport->delayed_disc_tmo, lpfc_delayed_disc_tmo, 0);
4665 if (phba->sli3_options & LPFC_SLI3_BG_ENABLED)
4666 lpfc_setup_bg(phba, shost);
4668 error = scsi_add_host_with_dma(shost, dev, &phba->pcidev->dev);
4672 spin_lock_irq(&phba->port_list_lock);
4673 list_add_tail(&vport->listentry, &phba->port_list);
4674 spin_unlock_irq(&phba->port_list_lock);
4679 bitmap_free(vport->vmid_priority_range);
4680 scsi_host_put(shost);
4686 * destroy_port - destroy an FC port
4687 * @vport: pointer to an lpfc virtual N_Port data structure.
4689 * This routine destroys a FC port from the upper layer protocol. All the
4690 * resources associated with the port are released.
4693 destroy_port(struct lpfc_vport *vport)
4695 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
4696 struct lpfc_hba *phba = vport->phba;
4698 lpfc_debugfs_terminate(vport);
4699 fc_remove_host(shost);
4700 scsi_remove_host(shost);
4702 spin_lock_irq(&phba->port_list_lock);
4703 list_del_init(&vport->listentry);
4704 spin_unlock_irq(&phba->port_list_lock);
4706 lpfc_cleanup(vport);
4711 * lpfc_get_instance - Get a unique integer ID
4713 * This routine allocates a unique integer ID from lpfc_hba_index pool. It
4714 * uses the kernel idr facility to perform the task.
4717 * instance - a unique integer ID allocated as the new instance.
4718 * -1 - lpfc get instance failed.
4721 lpfc_get_instance(void)
4725 ret = idr_alloc(&lpfc_hba_index, NULL, 0, 0, GFP_KERNEL);
4726 return ret < 0 ? -1 : ret;
4730 * lpfc_scan_finished - method for SCSI layer to detect whether scan is done
4731 * @shost: pointer to SCSI host data structure.
4732 * @time: elapsed time of the scan in jiffies.
4734 * This routine is called by the SCSI layer with a SCSI host to determine
4735 * whether the scan host is finished.
4737 * Note: there is no scan_start function as adapter initialization will have
4738 * asynchronously kicked off the link initialization.
4741 * 0 - SCSI host scan is not over yet.
4742 * 1 - SCSI host scan is over.
4744 int lpfc_scan_finished(struct Scsi_Host *shost, unsigned long time)
4746 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
4747 struct lpfc_hba *phba = vport->phba;
4750 spin_lock_irq(shost->host_lock);
4752 if (vport->load_flag & FC_UNLOADING) {
4756 if (time >= msecs_to_jiffies(30 * 1000)) {
4757 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
4758 "0461 Scanning longer than 30 "
4759 "seconds. Continuing initialization\n");
4763 if (time >= msecs_to_jiffies(15 * 1000) &&
4764 phba->link_state <= LPFC_LINK_DOWN) {
4765 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
4766 "0465 Link down longer than 15 "
4767 "seconds. Continuing initialization\n");
4772 if (vport->port_state != LPFC_VPORT_READY)
4774 if (vport->num_disc_nodes || vport->fc_prli_sent)
4776 if (vport->fc_map_cnt == 0 && time < msecs_to_jiffies(2 * 1000))
4778 if ((phba->sli.sli_flag & LPFC_SLI_MBOX_ACTIVE) != 0)
4784 spin_unlock_irq(shost->host_lock);
4788 static void lpfc_host_supported_speeds_set(struct Scsi_Host *shost)
4790 struct lpfc_vport *vport = (struct lpfc_vport *)shost->hostdata;
4791 struct lpfc_hba *phba = vport->phba;
4793 fc_host_supported_speeds(shost) = 0;
4795 * Avoid reporting supported link speed for FCoE as it can't be
4796 * controlled via FCoE.
4798 if (phba->hba_flag & HBA_FCOE_MODE)
4801 if (phba->lmt & LMT_256Gb)
4802 fc_host_supported_speeds(shost) |= FC_PORTSPEED_256GBIT;
4803 if (phba->lmt & LMT_128Gb)
4804 fc_host_supported_speeds(shost) |= FC_PORTSPEED_128GBIT;
4805 if (phba->lmt & LMT_64Gb)
4806 fc_host_supported_speeds(shost) |= FC_PORTSPEED_64GBIT;
4807 if (phba->lmt & LMT_32Gb)
4808 fc_host_supported_speeds(shost) |= FC_PORTSPEED_32GBIT;
4809 if (phba->lmt & LMT_16Gb)
4810 fc_host_supported_speeds(shost) |= FC_PORTSPEED_16GBIT;
4811 if (phba->lmt & LMT_10Gb)
4812 fc_host_supported_speeds(shost) |= FC_PORTSPEED_10GBIT;
4813 if (phba->lmt & LMT_8Gb)
4814 fc_host_supported_speeds(shost) |= FC_PORTSPEED_8GBIT;
4815 if (phba->lmt & LMT_4Gb)
4816 fc_host_supported_speeds(shost) |= FC_PORTSPEED_4GBIT;
4817 if (phba->lmt & LMT_2Gb)
4818 fc_host_supported_speeds(shost) |= FC_PORTSPEED_2GBIT;
4819 if (phba->lmt & LMT_1Gb)
4820 fc_host_supported_speeds(shost) |= FC_PORTSPEED_1GBIT;
4824 * lpfc_host_attrib_init - Initialize SCSI host attributes on a FC port
4825 * @shost: pointer to SCSI host data structure.
4827 * This routine initializes a given SCSI host attributes on a FC port. The
4828 * SCSI host can be either on top of a physical port or a virtual port.
4830 void lpfc_host_attrib_init(struct Scsi_Host *shost)
4832 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
4833 struct lpfc_hba *phba = vport->phba;
4835 * Set fixed host attributes. Must done after lpfc_sli_hba_setup().
4838 fc_host_node_name(shost) = wwn_to_u64(vport->fc_nodename.u.wwn);
4839 fc_host_port_name(shost) = wwn_to_u64(vport->fc_portname.u.wwn);
4840 fc_host_supported_classes(shost) = FC_COS_CLASS3;
4842 memset(fc_host_supported_fc4s(shost), 0,
4843 sizeof(fc_host_supported_fc4s(shost)));
4844 fc_host_supported_fc4s(shost)[2] = 1;
4845 fc_host_supported_fc4s(shost)[7] = 1;
4847 lpfc_vport_symbolic_node_name(vport, fc_host_symbolic_name(shost),
4848 sizeof fc_host_symbolic_name(shost));
4850 lpfc_host_supported_speeds_set(shost);
4852 fc_host_maxframe_size(shost) =
4853 (((uint32_t) vport->fc_sparam.cmn.bbRcvSizeMsb & 0x0F) << 8) |
4854 (uint32_t) vport->fc_sparam.cmn.bbRcvSizeLsb;
4856 fc_host_dev_loss_tmo(shost) = vport->cfg_devloss_tmo;
4858 /* This value is also unchanging */
4859 memset(fc_host_active_fc4s(shost), 0,
4860 sizeof(fc_host_active_fc4s(shost)));
4861 fc_host_active_fc4s(shost)[2] = 1;
4862 fc_host_active_fc4s(shost)[7] = 1;
4864 fc_host_max_npiv_vports(shost) = phba->max_vpi;
4865 spin_lock_irq(shost->host_lock);
4866 vport->load_flag &= ~FC_LOADING;
4867 spin_unlock_irq(shost->host_lock);
4871 * lpfc_stop_port_s3 - Stop SLI3 device port
4872 * @phba: pointer to lpfc hba data structure.
4874 * This routine is invoked to stop an SLI3 device port, it stops the device
4875 * from generating interrupts and stops the device driver's timers for the
4879 lpfc_stop_port_s3(struct lpfc_hba *phba)
4881 /* Clear all interrupt enable conditions */
4882 writel(0, phba->HCregaddr);
4883 readl(phba->HCregaddr); /* flush */
4884 /* Clear all pending interrupts */
4885 writel(0xffffffff, phba->HAregaddr);
4886 readl(phba->HAregaddr); /* flush */
4888 /* Reset some HBA SLI setup states */
4889 lpfc_stop_hba_timers(phba);
4890 phba->pport->work_port_events = 0;
4894 * lpfc_stop_port_s4 - Stop SLI4 device port
4895 * @phba: pointer to lpfc hba data structure.
4897 * This routine is invoked to stop an SLI4 device port, it stops the device
4898 * from generating interrupts and stops the device driver's timers for the
4902 lpfc_stop_port_s4(struct lpfc_hba *phba)
4904 /* Reset some HBA SLI4 setup states */
4905 lpfc_stop_hba_timers(phba);
4907 phba->pport->work_port_events = 0;
4908 phba->sli4_hba.intr_enable = 0;
4912 * lpfc_stop_port - Wrapper function for stopping hba port
4913 * @phba: Pointer to HBA context object.
4915 * This routine wraps the actual SLI3 or SLI4 hba stop port routine from
4916 * the API jump table function pointer from the lpfc_hba struct.
4919 lpfc_stop_port(struct lpfc_hba *phba)
4921 phba->lpfc_stop_port(phba);
4924 flush_workqueue(phba->wq);
4928 * lpfc_fcf_redisc_wait_start_timer - Start fcf rediscover wait timer
4929 * @phba: Pointer to hba for which this call is being executed.
4931 * This routine starts the timer waiting for the FCF rediscovery to complete.
4934 lpfc_fcf_redisc_wait_start_timer(struct lpfc_hba *phba)
4936 unsigned long fcf_redisc_wait_tmo =
4937 (jiffies + msecs_to_jiffies(LPFC_FCF_REDISCOVER_WAIT_TMO));
4938 /* Start fcf rediscovery wait period timer */
4939 mod_timer(&phba->fcf.redisc_wait, fcf_redisc_wait_tmo);
4940 spin_lock_irq(&phba->hbalock);
4941 /* Allow action to new fcf asynchronous event */
4942 phba->fcf.fcf_flag &= ~(FCF_AVAILABLE | FCF_SCAN_DONE);
4943 /* Mark the FCF rediscovery pending state */
4944 phba->fcf.fcf_flag |= FCF_REDISC_PEND;
4945 spin_unlock_irq(&phba->hbalock);
4949 * lpfc_sli4_fcf_redisc_wait_tmo - FCF table rediscover wait timeout
4950 * @t: Timer context used to obtain the pointer to lpfc hba data structure.
4952 * This routine is invoked when waiting for FCF table rediscover has been
4953 * timed out. If new FCF record(s) has (have) been discovered during the
4954 * wait period, a new FCF event shall be added to the FCOE async event
4955 * list, and then worker thread shall be waked up for processing from the
4956 * worker thread context.
4959 lpfc_sli4_fcf_redisc_wait_tmo(struct timer_list *t)
4961 struct lpfc_hba *phba = from_timer(phba, t, fcf.redisc_wait);
4963 /* Don't send FCF rediscovery event if timer cancelled */
4964 spin_lock_irq(&phba->hbalock);
4965 if (!(phba->fcf.fcf_flag & FCF_REDISC_PEND)) {
4966 spin_unlock_irq(&phba->hbalock);
4969 /* Clear FCF rediscovery timer pending flag */
4970 phba->fcf.fcf_flag &= ~FCF_REDISC_PEND;
4971 /* FCF rediscovery event to worker thread */
4972 phba->fcf.fcf_flag |= FCF_REDISC_EVT;
4973 spin_unlock_irq(&phba->hbalock);
4974 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
4975 "2776 FCF rediscover quiescent timer expired\n");
4976 /* wake up worker thread */
4977 lpfc_worker_wake_up(phba);
4981 * lpfc_vmid_poll - VMID timeout detection
4982 * @t: Timer context used to obtain the pointer to lpfc hba data structure.
4984 * This routine is invoked when there is no I/O on by a VM for the specified
4985 * amount of time. When this situation is detected, the VMID has to be
4986 * deregistered from the switch and all the local resources freed. The VMID
4987 * will be reassigned to the VM once the I/O begins.
4990 lpfc_vmid_poll(struct timer_list *t)
4992 struct lpfc_hba *phba = from_timer(phba, t, inactive_vmid_poll);
4995 /* check if there is a need to issue QFPA */
4996 if (phba->pport->vmid_priority_tagging) {
4998 phba->pport->work_port_events |= WORKER_CHECK_VMID_ISSUE_QFPA;
5001 /* Is the vmid inactivity timer enabled */
5002 if (phba->pport->vmid_inactivity_timeout ||
5003 phba->pport->load_flag & FC_DEREGISTER_ALL_APP_ID) {
5005 phba->pport->work_port_events |= WORKER_CHECK_INACTIVE_VMID;
5009 lpfc_worker_wake_up(phba);
5011 /* restart the timer for the next iteration */
5012 mod_timer(&phba->inactive_vmid_poll, jiffies + msecs_to_jiffies(1000 *
5017 * lpfc_sli4_parse_latt_fault - Parse sli4 link-attention link fault code
5018 * @phba: pointer to lpfc hba data structure.
5019 * @acqe_link: pointer to the async link completion queue entry.
5021 * This routine is to parse the SLI4 link-attention link fault code.
5024 lpfc_sli4_parse_latt_fault(struct lpfc_hba *phba,
5025 struct lpfc_acqe_link *acqe_link)
5027 switch (bf_get(lpfc_acqe_link_fault, acqe_link)) {
5028 case LPFC_ASYNC_LINK_FAULT_NONE:
5029 case LPFC_ASYNC_LINK_FAULT_LOCAL:
5030 case LPFC_ASYNC_LINK_FAULT_REMOTE:
5031 case LPFC_ASYNC_LINK_FAULT_LR_LRR:
5034 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
5035 "0398 Unknown link fault code: x%x\n",
5036 bf_get(lpfc_acqe_link_fault, acqe_link));
5042 * lpfc_sli4_parse_latt_type - Parse sli4 link attention type
5043 * @phba: pointer to lpfc hba data structure.
5044 * @acqe_link: pointer to the async link completion queue entry.
5046 * This routine is to parse the SLI4 link attention type and translate it
5047 * into the base driver's link attention type coding.
5049 * Return: Link attention type in terms of base driver's coding.
5052 lpfc_sli4_parse_latt_type(struct lpfc_hba *phba,
5053 struct lpfc_acqe_link *acqe_link)
5057 switch (bf_get(lpfc_acqe_link_status, acqe_link)) {
5058 case LPFC_ASYNC_LINK_STATUS_DOWN:
5059 case LPFC_ASYNC_LINK_STATUS_LOGICAL_DOWN:
5060 att_type = LPFC_ATT_LINK_DOWN;
5062 case LPFC_ASYNC_LINK_STATUS_UP:
5063 /* Ignore physical link up events - wait for logical link up */
5064 att_type = LPFC_ATT_RESERVED;
5066 case LPFC_ASYNC_LINK_STATUS_LOGICAL_UP:
5067 att_type = LPFC_ATT_LINK_UP;
5070 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
5071 "0399 Invalid link attention type: x%x\n",
5072 bf_get(lpfc_acqe_link_status, acqe_link));
5073 att_type = LPFC_ATT_RESERVED;
5080 * lpfc_sli_port_speed_get - Get sli3 link speed code to link speed
5081 * @phba: pointer to lpfc hba data structure.
5083 * This routine is to get an SLI3 FC port's link speed in Mbps.
5085 * Return: link speed in terms of Mbps.
5088 lpfc_sli_port_speed_get(struct lpfc_hba *phba)
5090 uint32_t link_speed;
5092 if (!lpfc_is_link_up(phba))
5095 if (phba->sli_rev <= LPFC_SLI_REV3) {
5096 switch (phba->fc_linkspeed) {
5097 case LPFC_LINK_SPEED_1GHZ:
5100 case LPFC_LINK_SPEED_2GHZ:
5103 case LPFC_LINK_SPEED_4GHZ:
5106 case LPFC_LINK_SPEED_8GHZ:
5109 case LPFC_LINK_SPEED_10GHZ:
5112 case LPFC_LINK_SPEED_16GHZ:
5119 if (phba->sli4_hba.link_state.logical_speed)
5121 phba->sli4_hba.link_state.logical_speed;
5123 link_speed = phba->sli4_hba.link_state.speed;
5129 * lpfc_sli4_port_speed_parse - Parse async evt link speed code to link speed
5130 * @phba: pointer to lpfc hba data structure.
5131 * @evt_code: asynchronous event code.
5132 * @speed_code: asynchronous event link speed code.
5134 * This routine is to parse the giving SLI4 async event link speed code into
5135 * value of Mbps for the link speed.
5137 * Return: link speed in terms of Mbps.
5140 lpfc_sli4_port_speed_parse(struct lpfc_hba *phba, uint32_t evt_code,
5143 uint32_t port_speed;
5146 case LPFC_TRAILER_CODE_LINK:
5147 switch (speed_code) {
5148 case LPFC_ASYNC_LINK_SPEED_ZERO:
5151 case LPFC_ASYNC_LINK_SPEED_10MBPS:
5154 case LPFC_ASYNC_LINK_SPEED_100MBPS:
5157 case LPFC_ASYNC_LINK_SPEED_1GBPS:
5160 case LPFC_ASYNC_LINK_SPEED_10GBPS:
5163 case LPFC_ASYNC_LINK_SPEED_20GBPS:
5166 case LPFC_ASYNC_LINK_SPEED_25GBPS:
5169 case LPFC_ASYNC_LINK_SPEED_40GBPS:
5172 case LPFC_ASYNC_LINK_SPEED_100GBPS:
5173 port_speed = 100000;
5179 case LPFC_TRAILER_CODE_FC:
5180 switch (speed_code) {
5181 case LPFC_FC_LA_SPEED_UNKNOWN:
5184 case LPFC_FC_LA_SPEED_1G:
5187 case LPFC_FC_LA_SPEED_2G:
5190 case LPFC_FC_LA_SPEED_4G:
5193 case LPFC_FC_LA_SPEED_8G:
5196 case LPFC_FC_LA_SPEED_10G:
5199 case LPFC_FC_LA_SPEED_16G:
5202 case LPFC_FC_LA_SPEED_32G:
5205 case LPFC_FC_LA_SPEED_64G:
5208 case LPFC_FC_LA_SPEED_128G:
5209 port_speed = 128000;
5211 case LPFC_FC_LA_SPEED_256G:
5212 port_speed = 256000;
5225 * lpfc_sli4_async_link_evt - Process the asynchronous FCoE link event
5226 * @phba: pointer to lpfc hba data structure.
5227 * @acqe_link: pointer to the async link completion queue entry.
5229 * This routine is to handle the SLI4 asynchronous FCoE link event.
5232 lpfc_sli4_async_link_evt(struct lpfc_hba *phba,
5233 struct lpfc_acqe_link *acqe_link)
5235 struct lpfc_dmabuf *mp;
5238 struct lpfc_mbx_read_top *la;
5242 att_type = lpfc_sli4_parse_latt_type(phba, acqe_link);
5243 if (att_type != LPFC_ATT_LINK_DOWN && att_type != LPFC_ATT_LINK_UP)
5245 phba->fcoe_eventtag = acqe_link->event_tag;
5246 pmb = (LPFC_MBOXQ_t *)mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5248 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
5249 "0395 The mboxq allocation failed\n");
5252 mp = kmalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
5254 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
5255 "0396 The lpfc_dmabuf allocation failed\n");
5258 mp->virt = lpfc_mbuf_alloc(phba, 0, &mp->phys);
5260 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
5261 "0397 The mbuf allocation failed\n");
5262 goto out_free_dmabuf;
5265 /* Cleanup any outstanding ELS commands */
5266 lpfc_els_flush_all_cmd(phba);
5268 /* Block ELS IOCBs until we have done process link event */
5269 phba->sli4_hba.els_wq->pring->flag |= LPFC_STOP_IOCB_EVENT;
5271 /* Update link event statistics */
5272 phba->sli.slistat.link_event++;
5274 /* Create lpfc_handle_latt mailbox command from link ACQE */
5275 lpfc_read_topology(phba, pmb, mp);
5276 pmb->mbox_cmpl = lpfc_mbx_cmpl_read_topology;
5277 pmb->vport = phba->pport;
5279 /* Keep the link status for extra SLI4 state machine reference */
5280 phba->sli4_hba.link_state.speed =
5281 lpfc_sli4_port_speed_parse(phba, LPFC_TRAILER_CODE_LINK,
5282 bf_get(lpfc_acqe_link_speed, acqe_link));
5283 phba->sli4_hba.link_state.duplex =
5284 bf_get(lpfc_acqe_link_duplex, acqe_link);
5285 phba->sli4_hba.link_state.status =
5286 bf_get(lpfc_acqe_link_status, acqe_link);
5287 phba->sli4_hba.link_state.type =
5288 bf_get(lpfc_acqe_link_type, acqe_link);
5289 phba->sli4_hba.link_state.number =
5290 bf_get(lpfc_acqe_link_number, acqe_link);
5291 phba->sli4_hba.link_state.fault =
5292 bf_get(lpfc_acqe_link_fault, acqe_link);
5293 phba->sli4_hba.link_state.logical_speed =
5294 bf_get(lpfc_acqe_logical_link_speed, acqe_link) * 10;
5296 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
5297 "2900 Async FC/FCoE Link event - Speed:%dGBit "
5298 "duplex:x%x LA Type:x%x Port Type:%d Port Number:%d "
5299 "Logical speed:%dMbps Fault:%d\n",
5300 phba->sli4_hba.link_state.speed,
5301 phba->sli4_hba.link_state.topology,
5302 phba->sli4_hba.link_state.status,
5303 phba->sli4_hba.link_state.type,
5304 phba->sli4_hba.link_state.number,
5305 phba->sli4_hba.link_state.logical_speed,
5306 phba->sli4_hba.link_state.fault);
5308 * For FC Mode: issue the READ_TOPOLOGY mailbox command to fetch
5309 * topology info. Note: Optional for non FC-AL ports.
5311 if (!(phba->hba_flag & HBA_FCOE_MODE)) {
5312 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
5313 if (rc == MBX_NOT_FINISHED)
5314 goto out_free_dmabuf;
5318 * For FCoE Mode: fill in all the topology information we need and call
5319 * the READ_TOPOLOGY completion routine to continue without actually
5320 * sending the READ_TOPOLOGY mailbox command to the port.
5322 /* Initialize completion status */
5324 mb->mbxStatus = MBX_SUCCESS;
5326 /* Parse port fault information field */
5327 lpfc_sli4_parse_latt_fault(phba, acqe_link);
5329 /* Parse and translate link attention fields */
5330 la = (struct lpfc_mbx_read_top *) &pmb->u.mb.un.varReadTop;
5331 la->eventTag = acqe_link->event_tag;
5332 bf_set(lpfc_mbx_read_top_att_type, la, att_type);
5333 bf_set(lpfc_mbx_read_top_link_spd, la,
5334 (bf_get(lpfc_acqe_link_speed, acqe_link)));
5336 /* Fake the the following irrelvant fields */
5337 bf_set(lpfc_mbx_read_top_topology, la, LPFC_TOPOLOGY_PT_PT);
5338 bf_set(lpfc_mbx_read_top_alpa_granted, la, 0);
5339 bf_set(lpfc_mbx_read_top_il, la, 0);
5340 bf_set(lpfc_mbx_read_top_pb, la, 0);
5341 bf_set(lpfc_mbx_read_top_fa, la, 0);
5342 bf_set(lpfc_mbx_read_top_mm, la, 0);
5344 /* Invoke the lpfc_handle_latt mailbox command callback function */
5345 lpfc_mbx_cmpl_read_topology(phba, pmb);
5352 mempool_free(pmb, phba->mbox_mem_pool);
5356 * lpfc_async_link_speed_to_read_top - Parse async evt link speed code to read
5358 * @phba: pointer to lpfc hba data structure.
5359 * @speed_code: asynchronous event link speed code.
5361 * This routine is to parse the giving SLI4 async event link speed code into
5362 * value of Read topology link speed.
5364 * Return: link speed in terms of Read topology.
5367 lpfc_async_link_speed_to_read_top(struct lpfc_hba *phba, uint8_t speed_code)
5371 switch (speed_code) {
5372 case LPFC_FC_LA_SPEED_1G:
5373 port_speed = LPFC_LINK_SPEED_1GHZ;
5375 case LPFC_FC_LA_SPEED_2G:
5376 port_speed = LPFC_LINK_SPEED_2GHZ;
5378 case LPFC_FC_LA_SPEED_4G:
5379 port_speed = LPFC_LINK_SPEED_4GHZ;
5381 case LPFC_FC_LA_SPEED_8G:
5382 port_speed = LPFC_LINK_SPEED_8GHZ;
5384 case LPFC_FC_LA_SPEED_16G:
5385 port_speed = LPFC_LINK_SPEED_16GHZ;
5387 case LPFC_FC_LA_SPEED_32G:
5388 port_speed = LPFC_LINK_SPEED_32GHZ;
5390 case LPFC_FC_LA_SPEED_64G:
5391 port_speed = LPFC_LINK_SPEED_64GHZ;
5393 case LPFC_FC_LA_SPEED_128G:
5394 port_speed = LPFC_LINK_SPEED_128GHZ;
5396 case LPFC_FC_LA_SPEED_256G:
5397 port_speed = LPFC_LINK_SPEED_256GHZ;
5408 lpfc_cgn_dump_rxmonitor(struct lpfc_hba *phba)
5410 struct rxtable_entry *entry;
5411 int cnt = 0, head, tail, last, start;
5413 head = atomic_read(&phba->rxtable_idx_head);
5414 tail = atomic_read(&phba->rxtable_idx_tail);
5415 if (!phba->rxtable || head == tail) {
5416 lpfc_printf_log(phba, KERN_ERR, LOG_CGN_MGMT,
5417 "4411 Rxtable is empty\n");
5423 /* Display the last LPFC_MAX_RXMONITOR_DUMP entries from the rxtable */
5424 while (start != last) {
5428 start = LPFC_MAX_RXMONITOR_ENTRY - 1;
5429 entry = &phba->rxtable[start];
5430 lpfc_printf_log(phba, KERN_INFO, LOG_CGN_MGMT,
5431 "4410 %02d: MBPI %lld Xmit %lld Cmpl %lld "
5432 "Lat %lld ASz %lld Info %02d BWUtil %d "
5434 cnt, entry->max_bytes_per_interval,
5435 entry->total_bytes, entry->rcv_bytes,
5436 entry->avg_io_latency, entry->avg_io_size,
5437 entry->cmf_info, entry->timer_utilization,
5438 entry->timer_interval, start);
5440 if (cnt >= LPFC_MAX_RXMONITOR_DUMP)
5446 * lpfc_cgn_update_stat - Save data into congestion stats buffer
5447 * @phba: pointer to lpfc hba data structure.
5448 * @dtag: FPIN descriptor received
5450 * Increment the FPIN received counter/time when it happens.
5453 lpfc_cgn_update_stat(struct lpfc_hba *phba, uint32_t dtag)
5455 struct lpfc_cgn_info *cp;
5457 struct timespec64 cur_time;
5461 /* Make sure we have a congestion info buffer */
5464 cp = (struct lpfc_cgn_info *)phba->cgn_i->virt;
5465 ktime_get_real_ts64(&cur_time);
5466 time64_to_tm(cur_time.tv_sec, 0, &broken);
5468 /* Update congestion statistics */
5470 case ELS_DTAG_LNK_INTEGRITY:
5471 cnt = le32_to_cpu(cp->link_integ_notification);
5473 cp->link_integ_notification = cpu_to_le32(cnt);
5475 cp->cgn_stat_lnk_month = broken.tm_mon + 1;
5476 cp->cgn_stat_lnk_day = broken.tm_mday;
5477 cp->cgn_stat_lnk_year = broken.tm_year - 100;
5478 cp->cgn_stat_lnk_hour = broken.tm_hour;
5479 cp->cgn_stat_lnk_min = broken.tm_min;
5480 cp->cgn_stat_lnk_sec = broken.tm_sec;
5482 case ELS_DTAG_DELIVERY:
5483 cnt = le32_to_cpu(cp->delivery_notification);
5485 cp->delivery_notification = cpu_to_le32(cnt);
5487 cp->cgn_stat_del_month = broken.tm_mon + 1;
5488 cp->cgn_stat_del_day = broken.tm_mday;
5489 cp->cgn_stat_del_year = broken.tm_year - 100;
5490 cp->cgn_stat_del_hour = broken.tm_hour;
5491 cp->cgn_stat_del_min = broken.tm_min;
5492 cp->cgn_stat_del_sec = broken.tm_sec;
5494 case ELS_DTAG_PEER_CONGEST:
5495 cnt = le32_to_cpu(cp->cgn_peer_notification);
5497 cp->cgn_peer_notification = cpu_to_le32(cnt);
5499 cp->cgn_stat_peer_month = broken.tm_mon + 1;
5500 cp->cgn_stat_peer_day = broken.tm_mday;
5501 cp->cgn_stat_peer_year = broken.tm_year - 100;
5502 cp->cgn_stat_peer_hour = broken.tm_hour;
5503 cp->cgn_stat_peer_min = broken.tm_min;
5504 cp->cgn_stat_peer_sec = broken.tm_sec;
5506 case ELS_DTAG_CONGESTION:
5507 cnt = le32_to_cpu(cp->cgn_notification);
5509 cp->cgn_notification = cpu_to_le32(cnt);
5511 cp->cgn_stat_cgn_month = broken.tm_mon + 1;
5512 cp->cgn_stat_cgn_day = broken.tm_mday;
5513 cp->cgn_stat_cgn_year = broken.tm_year - 100;
5514 cp->cgn_stat_cgn_hour = broken.tm_hour;
5515 cp->cgn_stat_cgn_min = broken.tm_min;
5516 cp->cgn_stat_cgn_sec = broken.tm_sec;
5518 if (phba->cgn_fpin_frequency &&
5519 phba->cgn_fpin_frequency != LPFC_FPIN_INIT_FREQ) {
5520 value = LPFC_CGN_TIMER_TO_MIN / phba->cgn_fpin_frequency;
5521 cp->cgn_stat_npm = value;
5523 value = lpfc_cgn_calc_crc32(cp, LPFC_CGN_INFO_SZ,
5524 LPFC_CGN_CRC32_SEED);
5525 cp->cgn_info_crc = cpu_to_le32(value);
5529 * lpfc_cgn_save_evt_cnt - Save data into registered congestion buffer
5530 * @phba: pointer to lpfc hba data structure.
5532 * Save the congestion event data every minute.
5533 * On the hour collapse all the minute data into hour data. Every day
5534 * collapse all the hour data into daily data. Separate driver
5535 * and fabrc congestion event counters that will be saved out
5536 * to the registered congestion buffer every minute.
5539 lpfc_cgn_save_evt_cnt(struct lpfc_hba *phba)
5541 struct lpfc_cgn_info *cp;
5543 struct timespec64 cur_time;
5545 uint16_t value, mvalue;
5548 uint32_t dvalue, wvalue, lvalue, avalue;
5554 /* Make sure we have a congestion info buffer */
5557 cp = (struct lpfc_cgn_info *)phba->cgn_i->virt;
5559 if (time_before(jiffies, phba->cgn_evt_timestamp))
5561 phba->cgn_evt_timestamp = jiffies +
5562 msecs_to_jiffies(LPFC_CGN_TIMER_TO_MIN);
5563 phba->cgn_evt_minute++;
5565 /* We should get to this point in the routine on 1 minute intervals */
5567 ktime_get_real_ts64(&cur_time);
5568 time64_to_tm(cur_time.tv_sec, 0, &broken);
5570 if (phba->cgn_fpin_frequency &&
5571 phba->cgn_fpin_frequency != LPFC_FPIN_INIT_FREQ) {
5572 value = LPFC_CGN_TIMER_TO_MIN / phba->cgn_fpin_frequency;
5573 cp->cgn_stat_npm = value;
5576 /* Read and clear the latency counters for this minute */
5577 lvalue = atomic_read(&phba->cgn_latency_evt_cnt);
5578 latsum = atomic64_read(&phba->cgn_latency_evt);
5579 atomic_set(&phba->cgn_latency_evt_cnt, 0);
5580 atomic64_set(&phba->cgn_latency_evt, 0);
5582 /* We need to store MB/sec bandwidth in the congestion information.
5583 * block_cnt is count of 512 byte blocks for the entire minute,
5584 * bps will get bytes per sec before finally converting to MB/sec.
5586 bps = div_u64(phba->rx_block_cnt, LPFC_SEC_MIN) * 512;
5587 phba->rx_block_cnt = 0;
5588 mvalue = bps / (1024 * 1024); /* convert to MB/sec */
5591 /* cgn parameters */
5592 cp->cgn_info_mode = phba->cgn_p.cgn_param_mode;
5593 cp->cgn_info_level0 = phba->cgn_p.cgn_param_level0;
5594 cp->cgn_info_level1 = phba->cgn_p.cgn_param_level1;
5595 cp->cgn_info_level2 = phba->cgn_p.cgn_param_level2;
5597 /* Fill in default LUN qdepth */
5598 value = (uint16_t)(phba->pport->cfg_lun_queue_depth);
5599 cp->cgn_lunq = cpu_to_le16(value);
5601 /* Record congestion buffer info - every minute
5602 * cgn_driver_evt_cnt (Driver events)
5603 * cgn_fabric_warn_cnt (Congestion Warnings)
5604 * cgn_latency_evt_cnt / cgn_latency_evt (IO Latency)
5605 * cgn_fabric_alarm_cnt (Congestion Alarms)
5607 index = ++cp->cgn_index_minute;
5608 if (cp->cgn_index_minute == LPFC_MIN_HOUR) {
5609 cp->cgn_index_minute = 0;
5613 /* Get the number of driver events in this sample and reset counter */
5614 dvalue = atomic_read(&phba->cgn_driver_evt_cnt);
5615 atomic_set(&phba->cgn_driver_evt_cnt, 0);
5617 /* Get the number of warning events - FPIN and Signal for this minute */
5619 if ((phba->cgn_reg_fpin & LPFC_CGN_FPIN_WARN) ||
5620 phba->cgn_reg_signal == EDC_CG_SIG_WARN_ONLY ||
5621 phba->cgn_reg_signal == EDC_CG_SIG_WARN_ALARM)
5622 wvalue = atomic_read(&phba->cgn_fabric_warn_cnt);
5623 atomic_set(&phba->cgn_fabric_warn_cnt, 0);
5625 /* Get the number of alarm events - FPIN and Signal for this minute */
5627 if ((phba->cgn_reg_fpin & LPFC_CGN_FPIN_ALARM) ||
5628 phba->cgn_reg_signal == EDC_CG_SIG_WARN_ALARM)
5629 avalue = atomic_read(&phba->cgn_fabric_alarm_cnt);
5630 atomic_set(&phba->cgn_fabric_alarm_cnt, 0);
5632 /* Collect the driver, warning, alarm and latency counts for this
5633 * minute into the driver congestion buffer.
5635 ptr = &cp->cgn_drvr_min[index];
5636 value = (uint16_t)dvalue;
5637 *ptr = cpu_to_le16(value);
5639 ptr = &cp->cgn_warn_min[index];
5640 value = (uint16_t)wvalue;
5641 *ptr = cpu_to_le16(value);
5643 ptr = &cp->cgn_alarm_min[index];
5644 value = (uint16_t)avalue;
5645 *ptr = cpu_to_le16(value);
5647 lptr = &cp->cgn_latency_min[index];
5649 lvalue = (uint32_t)div_u64(latsum, lvalue);
5650 *lptr = cpu_to_le32(lvalue);
5655 /* Collect the bandwidth value into the driver's congesion buffer. */
5656 mptr = &cp->cgn_bw_min[index];
5657 *mptr = cpu_to_le16(mvalue);
5659 lpfc_printf_log(phba, KERN_INFO, LOG_CGN_MGMT,
5660 "2418 Congestion Info - minute (%d): %d %d %d %d %d\n",
5661 index, dvalue, wvalue, *lptr, mvalue, avalue);
5664 if ((phba->cgn_evt_minute % LPFC_MIN_HOUR) == 0) {
5665 /* Record congestion buffer info - every hour
5666 * Collapse all minutes into an hour
5668 index = ++cp->cgn_index_hour;
5669 if (cp->cgn_index_hour == LPFC_HOUR_DAY) {
5670 cp->cgn_index_hour = 0;
5680 for (i = 0; i < LPFC_MIN_HOUR; i++) {
5681 dvalue += le16_to_cpu(cp->cgn_drvr_min[i]);
5682 wvalue += le16_to_cpu(cp->cgn_warn_min[i]);
5683 lvalue += le32_to_cpu(cp->cgn_latency_min[i]);
5684 mbps += le16_to_cpu(cp->cgn_bw_min[i]);
5685 avalue += le16_to_cpu(cp->cgn_alarm_min[i]);
5687 if (lvalue) /* Avg of latency averages */
5688 lvalue /= LPFC_MIN_HOUR;
5689 if (mbps) /* Avg of Bandwidth averages */
5690 mvalue = mbps / LPFC_MIN_HOUR;
5692 lptr = &cp->cgn_drvr_hr[index];
5693 *lptr = cpu_to_le32(dvalue);
5694 lptr = &cp->cgn_warn_hr[index];
5695 *lptr = cpu_to_le32(wvalue);
5696 lptr = &cp->cgn_latency_hr[index];
5697 *lptr = cpu_to_le32(lvalue);
5698 mptr = &cp->cgn_bw_hr[index];
5699 *mptr = cpu_to_le16(mvalue);
5700 lptr = &cp->cgn_alarm_hr[index];
5701 *lptr = cpu_to_le32(avalue);
5703 lpfc_printf_log(phba, KERN_INFO, LOG_CGN_MGMT,
5704 "2419 Congestion Info - hour "
5705 "(%d): %d %d %d %d %d\n",
5706 index, dvalue, wvalue, lvalue, mvalue, avalue);
5710 if ((phba->cgn_evt_minute % LPFC_MIN_DAY) == 0) {
5711 /* Record congestion buffer info - every hour
5712 * Collapse all hours into a day. Rotate days
5713 * after LPFC_MAX_CGN_DAYS.
5715 index = ++cp->cgn_index_day;
5716 if (cp->cgn_index_day == LPFC_MAX_CGN_DAYS) {
5717 cp->cgn_index_day = 0;
5721 /* Anytime we overwrite daily index 0, after we wrap,
5722 * we will be overwriting the oldest day, so we must
5723 * update the congestion data start time for that day.
5724 * That start time should have previously been saved after
5725 * we wrote the last days worth of data.
5727 if ((phba->hba_flag & HBA_CGN_DAY_WRAP) && index == 0) {
5728 time64_to_tm(phba->cgn_daily_ts.tv_sec, 0, &broken);
5730 cp->cgn_info_month = broken.tm_mon + 1;
5731 cp->cgn_info_day = broken.tm_mday;
5732 cp->cgn_info_year = broken.tm_year - 100;
5733 cp->cgn_info_hour = broken.tm_hour;
5734 cp->cgn_info_minute = broken.tm_min;
5735 cp->cgn_info_second = broken.tm_sec;
5738 (phba, KERN_INFO, LOG_CGN_MGMT,
5739 "2646 CGNInfo idx0 Start Time: "
5740 "%d/%d/%d %d:%d:%d\n",
5741 cp->cgn_info_day, cp->cgn_info_month,
5742 cp->cgn_info_year, cp->cgn_info_hour,
5743 cp->cgn_info_minute, cp->cgn_info_second);
5752 for (i = 0; i < LPFC_HOUR_DAY; i++) {
5753 dvalue += le32_to_cpu(cp->cgn_drvr_hr[i]);
5754 wvalue += le32_to_cpu(cp->cgn_warn_hr[i]);
5755 lvalue += le32_to_cpu(cp->cgn_latency_hr[i]);
5756 mbps += le16_to_cpu(cp->cgn_bw_hr[i]);
5757 avalue += le32_to_cpu(cp->cgn_alarm_hr[i]);
5759 if (lvalue) /* Avg of latency averages */
5760 lvalue /= LPFC_HOUR_DAY;
5761 if (mbps) /* Avg of Bandwidth averages */
5762 mvalue = mbps / LPFC_HOUR_DAY;
5764 lptr = &cp->cgn_drvr_day[index];
5765 *lptr = cpu_to_le32(dvalue);
5766 lptr = &cp->cgn_warn_day[index];
5767 *lptr = cpu_to_le32(wvalue);
5768 lptr = &cp->cgn_latency_day[index];
5769 *lptr = cpu_to_le32(lvalue);
5770 mptr = &cp->cgn_bw_day[index];
5771 *mptr = cpu_to_le16(mvalue);
5772 lptr = &cp->cgn_alarm_day[index];
5773 *lptr = cpu_to_le32(avalue);
5775 lpfc_printf_log(phba, KERN_INFO, LOG_CGN_MGMT,
5776 "2420 Congestion Info - daily (%d): "
5778 index, dvalue, wvalue, lvalue, mvalue, avalue);
5780 /* We just wrote LPFC_MAX_CGN_DAYS of data,
5781 * so we are wrapped on any data after this.
5782 * Save this as the start time for the next day.
5784 if (index == (LPFC_MAX_CGN_DAYS - 1)) {
5785 phba->hba_flag |= HBA_CGN_DAY_WRAP;
5786 ktime_get_real_ts64(&phba->cgn_daily_ts);
5790 /* Use the frequency found in the last rcv'ed FPIN */
5791 value = phba->cgn_fpin_frequency;
5792 if (phba->cgn_reg_fpin & LPFC_CGN_FPIN_WARN)
5793 cp->cgn_warn_freq = cpu_to_le16(value);
5794 if (phba->cgn_reg_fpin & LPFC_CGN_FPIN_ALARM)
5795 cp->cgn_alarm_freq = cpu_to_le16(value);
5797 /* Frequency (in ms) Signal Warning/Signal Congestion Notifications
5798 * are received by the HBA
5800 value = phba->cgn_sig_freq;
5802 if (phba->cgn_reg_signal == EDC_CG_SIG_WARN_ONLY ||
5803 phba->cgn_reg_signal == EDC_CG_SIG_WARN_ALARM)
5804 cp->cgn_warn_freq = cpu_to_le16(value);
5805 if (phba->cgn_reg_signal == EDC_CG_SIG_WARN_ALARM)
5806 cp->cgn_alarm_freq = cpu_to_le16(value);
5808 lvalue = lpfc_cgn_calc_crc32(cp, LPFC_CGN_INFO_SZ,
5809 LPFC_CGN_CRC32_SEED);
5810 cp->cgn_info_crc = cpu_to_le32(lvalue);
5814 * lpfc_calc_cmf_latency - latency from start of rxate timer interval
5815 * @phba: The Hba for which this call is being executed.
5817 * The routine calculates the latency from the beginning of the CMF timer
5818 * interval to the current point in time. It is called from IO completion
5819 * when we exceed our Bandwidth limitation for the time interval.
5822 lpfc_calc_cmf_latency(struct lpfc_hba *phba)
5824 struct timespec64 cmpl_time;
5827 ktime_get_real_ts64(&cmpl_time);
5829 /* This routine works on a ms granularity so sec and usec are
5830 * converted accordingly.
5832 if (cmpl_time.tv_sec == phba->cmf_latency.tv_sec) {
5833 msec = (cmpl_time.tv_nsec - phba->cmf_latency.tv_nsec) /
5836 if (cmpl_time.tv_nsec >= phba->cmf_latency.tv_nsec) {
5837 msec = (cmpl_time.tv_sec -
5838 phba->cmf_latency.tv_sec) * MSEC_PER_SEC;
5839 msec += ((cmpl_time.tv_nsec -
5840 phba->cmf_latency.tv_nsec) / NSEC_PER_MSEC);
5842 msec = (cmpl_time.tv_sec - phba->cmf_latency.tv_sec -
5844 msec += (((NSEC_PER_SEC - phba->cmf_latency.tv_nsec) +
5845 cmpl_time.tv_nsec) / NSEC_PER_MSEC);
5852 * lpfc_cmf_timer - This is the timer function for one congestion
5854 * @timer: Pointer to the high resolution timer that expired
5856 static enum hrtimer_restart
5857 lpfc_cmf_timer(struct hrtimer *timer)
5859 struct lpfc_hba *phba = container_of(timer, struct lpfc_hba,
5861 struct rxtable_entry *entry;
5863 uint32_t head, tail;
5864 uint32_t busy, max_read;
5865 uint64_t total, rcv, lat, mbpi;
5866 int timer_interval = LPFC_CMF_INTERVAL;
5868 struct lpfc_cgn_stat *cgs;
5871 /* Only restart the timer if congestion mgmt is on */
5872 if (phba->cmf_active_mode == LPFC_CFG_OFF ||
5873 !phba->cmf_latency.tv_sec) {
5874 lpfc_printf_log(phba, KERN_INFO, LOG_CGN_MGMT,
5875 "6224 CMF timer exit: %d %lld\n",
5876 phba->cmf_active_mode,
5877 (uint64_t)phba->cmf_latency.tv_sec);
5878 return HRTIMER_NORESTART;
5881 /* If pport is not ready yet, just exit and wait for
5882 * the next timer cycle to hit.
5887 /* Do not block SCSI IO while in the timer routine since
5888 * total_bytes will be cleared
5890 atomic_set(&phba->cmf_stop_io, 1);
5892 /* First we need to calculate the actual ms between
5893 * the last timer interrupt and this one. We ask for
5894 * LPFC_CMF_INTERVAL, however the actual time may
5895 * vary depending on system overhead.
5897 ms = lpfc_calc_cmf_latency(phba);
5900 /* Immediately after we calculate the time since the last
5901 * timer interrupt, set the start time for the next
5904 ktime_get_real_ts64(&phba->cmf_latency);
5906 phba->cmf_link_byte_count =
5907 div_u64(phba->cmf_max_line_rate * LPFC_CMF_INTERVAL, 1000);
5909 /* Collect all the stats from the prior timer interval */
5914 for_each_present_cpu(cpu) {
5915 cgs = per_cpu_ptr(phba->cmf_stat, cpu);
5916 total += atomic64_xchg(&cgs->total_bytes, 0);
5917 io_cnt += atomic_xchg(&cgs->rx_io_cnt, 0);
5918 lat += atomic64_xchg(&cgs->rx_latency, 0);
5919 rcv += atomic64_xchg(&cgs->rcv_bytes, 0);
5922 /* Before we issue another CMF_SYNC_WQE, retrieve the BW
5923 * returned from the last CMF_SYNC_WQE issued, from
5924 * cmf_last_sync_bw. This will be the target BW for
5925 * this next timer interval.
5927 if (phba->cmf_active_mode == LPFC_CFG_MANAGED &&
5928 phba->link_state != LPFC_LINK_DOWN &&
5929 phba->hba_flag & HBA_SETUP) {
5930 mbpi = phba->cmf_last_sync_bw;
5931 phba->cmf_last_sync_bw = 0;
5932 lpfc_issue_cmf_sync_wqe(phba, LPFC_CMF_INTERVAL, total);
5934 /* For Monitor mode or link down we want mbpi
5935 * to be the full link speed
5937 mbpi = phba->cmf_link_byte_count;
5939 phba->cmf_timer_cnt++;
5942 /* Update congestion info buffer latency in us */
5943 atomic_add(io_cnt, &phba->cgn_latency_evt_cnt);
5944 atomic64_add(lat, &phba->cgn_latency_evt);
5946 busy = atomic_xchg(&phba->cmf_busy, 0);
5947 max_read = atomic_xchg(&phba->rx_max_read_cnt, 0);
5949 /* Calculate MBPI for the next timer interval */
5951 if (mbpi > phba->cmf_link_byte_count ||
5952 phba->cmf_active_mode == LPFC_CFG_MONITOR)
5953 mbpi = phba->cmf_link_byte_count;
5955 /* Change max_bytes_per_interval to what the prior
5956 * CMF_SYNC_WQE cmpl indicated.
5958 if (mbpi != phba->cmf_max_bytes_per_interval)
5959 phba->cmf_max_bytes_per_interval = mbpi;
5962 /* Save rxmonitor information for debug */
5963 if (phba->rxtable) {
5964 head = atomic_xchg(&phba->rxtable_idx_head,
5965 LPFC_RXMONITOR_TABLE_IN_USE);
5966 entry = &phba->rxtable[head];
5967 entry->total_bytes = total;
5968 entry->rcv_bytes = rcv;
5969 entry->cmf_busy = busy;
5970 entry->cmf_info = phba->cmf_active_info;
5972 entry->avg_io_latency = div_u64(lat, io_cnt);
5973 entry->avg_io_size = div_u64(rcv, io_cnt);
5975 entry->avg_io_latency = 0;
5976 entry->avg_io_size = 0;
5978 entry->max_read_cnt = max_read;
5979 entry->io_cnt = io_cnt;
5980 entry->max_bytes_per_interval = mbpi;
5981 if (phba->cmf_active_mode == LPFC_CFG_MANAGED)
5982 entry->timer_utilization = phba->cmf_last_ts;
5984 entry->timer_utilization = ms;
5985 entry->timer_interval = ms;
5986 phba->cmf_last_ts = 0;
5988 /* Increment rxtable index */
5989 head = (head + 1) % LPFC_MAX_RXMONITOR_ENTRY;
5990 tail = atomic_read(&phba->rxtable_idx_tail);
5992 tail = (tail + 1) % LPFC_MAX_RXMONITOR_ENTRY;
5993 atomic_set(&phba->rxtable_idx_tail, tail);
5995 atomic_set(&phba->rxtable_idx_head, head);
5998 if (phba->cmf_active_mode == LPFC_CFG_MONITOR) {
5999 /* If Monitor mode, check if we are oversubscribed
6000 * against the full line rate.
6002 if (mbpi && total > mbpi)
6003 atomic_inc(&phba->cgn_driver_evt_cnt);
6005 phba->rx_block_cnt += div_u64(rcv, 512); /* save 512 byte block cnt */
6007 /* Each minute save Fabric and Driver congestion information */
6008 lpfc_cgn_save_evt_cnt(phba);
6010 /* Since we need to call lpfc_cgn_save_evt_cnt every minute, on the
6011 * minute, adjust our next timer interval, if needed, to ensure a
6012 * 1 minute granularity when we get the next timer interrupt.
6014 if (time_after(jiffies + msecs_to_jiffies(LPFC_CMF_INTERVAL),
6015 phba->cgn_evt_timestamp)) {
6016 timer_interval = jiffies_to_msecs(phba->cgn_evt_timestamp -
6018 if (timer_interval <= 0)
6019 timer_interval = LPFC_CMF_INTERVAL;
6021 /* If we adjust timer_interval, max_bytes_per_interval
6022 * needs to be adjusted as well.
6024 phba->cmf_link_byte_count = div_u64(phba->cmf_max_line_rate *
6025 timer_interval, 1000);
6026 if (phba->cmf_active_mode == LPFC_CFG_MONITOR)
6027 phba->cmf_max_bytes_per_interval =
6028 phba->cmf_link_byte_count;
6031 /* Since total_bytes has already been zero'ed, its okay to unblock
6032 * after max_bytes_per_interval is setup.
6034 if (atomic_xchg(&phba->cmf_bw_wait, 0))
6035 queue_work(phba->wq, &phba->unblock_request_work);
6037 /* SCSI IO is now unblocked */
6038 atomic_set(&phba->cmf_stop_io, 0);
6041 hrtimer_forward_now(timer,
6042 ktime_set(0, timer_interval * NSEC_PER_MSEC));
6043 return HRTIMER_RESTART;
6046 #define trunk_link_status(__idx)\
6047 bf_get(lpfc_acqe_fc_la_trunk_config_port##__idx, acqe_fc) ?\
6048 ((phba->trunk_link.link##__idx.state == LPFC_LINK_UP) ?\
6049 "Link up" : "Link down") : "NA"
6050 /* Did port __idx reported an error */
6051 #define trunk_port_fault(__idx)\
6052 bf_get(lpfc_acqe_fc_la_trunk_config_port##__idx, acqe_fc) ?\
6053 (port_fault & (1 << __idx) ? "YES" : "NO") : "NA"
6056 lpfc_update_trunk_link_status(struct lpfc_hba *phba,
6057 struct lpfc_acqe_fc_la *acqe_fc)
6059 uint8_t port_fault = bf_get(lpfc_acqe_fc_la_trunk_linkmask, acqe_fc);
6060 uint8_t err = bf_get(lpfc_acqe_fc_la_trunk_fault, acqe_fc);
6062 phba->sli4_hba.link_state.speed =
6063 lpfc_sli4_port_speed_parse(phba, LPFC_TRAILER_CODE_FC,
6064 bf_get(lpfc_acqe_fc_la_speed, acqe_fc));
6066 phba->sli4_hba.link_state.logical_speed =
6067 bf_get(lpfc_acqe_fc_la_llink_spd, acqe_fc) * 10;
6068 /* We got FC link speed, convert to fc_linkspeed (READ_TOPOLOGY) */
6069 phba->fc_linkspeed =
6070 lpfc_async_link_speed_to_read_top(
6072 bf_get(lpfc_acqe_fc_la_speed, acqe_fc));
6074 if (bf_get(lpfc_acqe_fc_la_trunk_config_port0, acqe_fc)) {
6075 phba->trunk_link.link0.state =
6076 bf_get(lpfc_acqe_fc_la_trunk_link_status_port0, acqe_fc)
6077 ? LPFC_LINK_UP : LPFC_LINK_DOWN;
6078 phba->trunk_link.link0.fault = port_fault & 0x1 ? err : 0;
6080 if (bf_get(lpfc_acqe_fc_la_trunk_config_port1, acqe_fc)) {
6081 phba->trunk_link.link1.state =
6082 bf_get(lpfc_acqe_fc_la_trunk_link_status_port1, acqe_fc)
6083 ? LPFC_LINK_UP : LPFC_LINK_DOWN;
6084 phba->trunk_link.link1.fault = port_fault & 0x2 ? err : 0;
6086 if (bf_get(lpfc_acqe_fc_la_trunk_config_port2, acqe_fc)) {
6087 phba->trunk_link.link2.state =
6088 bf_get(lpfc_acqe_fc_la_trunk_link_status_port2, acqe_fc)
6089 ? LPFC_LINK_UP : LPFC_LINK_DOWN;
6090 phba->trunk_link.link2.fault = port_fault & 0x4 ? err : 0;
6092 if (bf_get(lpfc_acqe_fc_la_trunk_config_port3, acqe_fc)) {
6093 phba->trunk_link.link3.state =
6094 bf_get(lpfc_acqe_fc_la_trunk_link_status_port3, acqe_fc)
6095 ? LPFC_LINK_UP : LPFC_LINK_DOWN;
6096 phba->trunk_link.link3.fault = port_fault & 0x8 ? err : 0;
6099 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
6100 "2910 Async FC Trunking Event - Speed:%d\n"
6101 "\tLogical speed:%d "
6102 "port0: %s port1: %s port2: %s port3: %s\n",
6103 phba->sli4_hba.link_state.speed,
6104 phba->sli4_hba.link_state.logical_speed,
6105 trunk_link_status(0), trunk_link_status(1),
6106 trunk_link_status(2), trunk_link_status(3));
6108 if (phba->cmf_active_mode != LPFC_CFG_OFF)
6109 lpfc_cmf_signal_init(phba);
6112 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
6113 "3202 trunk error:0x%x (%s) seen on port0:%s "
6115 * SLI-4: We have only 0xA error codes
6116 * defined as of now. print an appropriate
6117 * message in case driver needs to be updated.
6119 "port1:%s port2:%s port3:%s\n", err, err > 0xA ?
6120 "UNDEFINED. update driver." : trunk_errmsg[err],
6121 trunk_port_fault(0), trunk_port_fault(1),
6122 trunk_port_fault(2), trunk_port_fault(3));
6127 * lpfc_sli4_async_fc_evt - Process the asynchronous FC link event
6128 * @phba: pointer to lpfc hba data structure.
6129 * @acqe_fc: pointer to the async fc completion queue entry.
6131 * This routine is to handle the SLI4 asynchronous FC event. It will simply log
6132 * that the event was received and then issue a read_topology mailbox command so
6133 * that the rest of the driver will treat it the same as SLI3.
6136 lpfc_sli4_async_fc_evt(struct lpfc_hba *phba, struct lpfc_acqe_fc_la *acqe_fc)
6138 struct lpfc_dmabuf *mp;
6141 struct lpfc_mbx_read_top *la;
6144 if (bf_get(lpfc_trailer_type, acqe_fc) !=
6145 LPFC_FC_LA_EVENT_TYPE_FC_LINK) {
6146 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
6147 "2895 Non FC link Event detected.(%d)\n",
6148 bf_get(lpfc_trailer_type, acqe_fc));
6152 if (bf_get(lpfc_acqe_fc_la_att_type, acqe_fc) ==
6153 LPFC_FC_LA_TYPE_TRUNKING_EVENT) {
6154 lpfc_update_trunk_link_status(phba, acqe_fc);
6158 /* Keep the link status for extra SLI4 state machine reference */
6159 phba->sli4_hba.link_state.speed =
6160 lpfc_sli4_port_speed_parse(phba, LPFC_TRAILER_CODE_FC,
6161 bf_get(lpfc_acqe_fc_la_speed, acqe_fc));
6162 phba->sli4_hba.link_state.duplex = LPFC_ASYNC_LINK_DUPLEX_FULL;
6163 phba->sli4_hba.link_state.topology =
6164 bf_get(lpfc_acqe_fc_la_topology, acqe_fc);
6165 phba->sli4_hba.link_state.status =
6166 bf_get(lpfc_acqe_fc_la_att_type, acqe_fc);
6167 phba->sli4_hba.link_state.type =
6168 bf_get(lpfc_acqe_fc_la_port_type, acqe_fc);
6169 phba->sli4_hba.link_state.number =
6170 bf_get(lpfc_acqe_fc_la_port_number, acqe_fc);
6171 phba->sli4_hba.link_state.fault =
6172 bf_get(lpfc_acqe_link_fault, acqe_fc);
6174 if (bf_get(lpfc_acqe_fc_la_att_type, acqe_fc) ==
6175 LPFC_FC_LA_TYPE_LINK_DOWN)
6176 phba->sli4_hba.link_state.logical_speed = 0;
6177 else if (!phba->sli4_hba.conf_trunk)
6178 phba->sli4_hba.link_state.logical_speed =
6179 bf_get(lpfc_acqe_fc_la_llink_spd, acqe_fc) * 10;
6181 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
6182 "2896 Async FC event - Speed:%dGBaud Topology:x%x "
6183 "LA Type:x%x Port Type:%d Port Number:%d Logical speed:"
6184 "%dMbps Fault:%d\n",
6185 phba->sli4_hba.link_state.speed,
6186 phba->sli4_hba.link_state.topology,
6187 phba->sli4_hba.link_state.status,
6188 phba->sli4_hba.link_state.type,
6189 phba->sli4_hba.link_state.number,
6190 phba->sli4_hba.link_state.logical_speed,
6191 phba->sli4_hba.link_state.fault);
6192 pmb = (LPFC_MBOXQ_t *)mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
6194 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
6195 "2897 The mboxq allocation failed\n");
6198 mp = kmalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
6200 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
6201 "2898 The lpfc_dmabuf allocation failed\n");
6204 mp->virt = lpfc_mbuf_alloc(phba, 0, &mp->phys);
6206 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
6207 "2899 The mbuf allocation failed\n");
6208 goto out_free_dmabuf;
6211 /* Cleanup any outstanding ELS commands */
6212 lpfc_els_flush_all_cmd(phba);
6214 /* Block ELS IOCBs until we have done process link event */
6215 phba->sli4_hba.els_wq->pring->flag |= LPFC_STOP_IOCB_EVENT;
6217 /* Update link event statistics */
6218 phba->sli.slistat.link_event++;
6220 /* Create lpfc_handle_latt mailbox command from link ACQE */
6221 lpfc_read_topology(phba, pmb, mp);
6222 pmb->mbox_cmpl = lpfc_mbx_cmpl_read_topology;
6223 pmb->vport = phba->pport;
6225 if (phba->sli4_hba.link_state.status != LPFC_FC_LA_TYPE_LINK_UP) {
6226 phba->link_flag &= ~(LS_MDS_LINK_DOWN | LS_MDS_LOOPBACK);
6228 switch (phba->sli4_hba.link_state.status) {
6229 case LPFC_FC_LA_TYPE_MDS_LINK_DOWN:
6230 phba->link_flag |= LS_MDS_LINK_DOWN;
6232 case LPFC_FC_LA_TYPE_MDS_LOOPBACK:
6233 phba->link_flag |= LS_MDS_LOOPBACK;
6239 /* Initialize completion status */
6241 mb->mbxStatus = MBX_SUCCESS;
6243 /* Parse port fault information field */
6244 lpfc_sli4_parse_latt_fault(phba, (void *)acqe_fc);
6246 /* Parse and translate link attention fields */
6247 la = (struct lpfc_mbx_read_top *)&pmb->u.mb.un.varReadTop;
6248 la->eventTag = acqe_fc->event_tag;
6250 if (phba->sli4_hba.link_state.status ==
6251 LPFC_FC_LA_TYPE_UNEXP_WWPN) {
6252 bf_set(lpfc_mbx_read_top_att_type, la,
6253 LPFC_FC_LA_TYPE_UNEXP_WWPN);
6255 bf_set(lpfc_mbx_read_top_att_type, la,
6256 LPFC_FC_LA_TYPE_LINK_DOWN);
6258 /* Invoke the mailbox command callback function */
6259 lpfc_mbx_cmpl_read_topology(phba, pmb);
6264 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
6265 if (rc == MBX_NOT_FINISHED)
6266 goto out_free_dmabuf;
6272 mempool_free(pmb, phba->mbox_mem_pool);
6276 * lpfc_sli4_async_sli_evt - Process the asynchronous SLI link event
6277 * @phba: pointer to lpfc hba data structure.
6278 * @acqe_sli: pointer to the async SLI completion queue entry.
6280 * This routine is to handle the SLI4 asynchronous SLI events.
6283 lpfc_sli4_async_sli_evt(struct lpfc_hba *phba, struct lpfc_acqe_sli *acqe_sli)
6289 uint8_t operational = 0;
6290 struct temp_event temp_event_data;
6291 struct lpfc_acqe_misconfigured_event *misconfigured;
6292 struct lpfc_acqe_cgn_signal *cgn_signal;
6293 struct Scsi_Host *shost;
6294 struct lpfc_vport **vports;
6297 evt_type = bf_get(lpfc_trailer_type, acqe_sli);
6299 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
6300 "2901 Async SLI event - Type:%d, Event Data: x%08x "
6301 "x%08x x%08x x%08x\n", evt_type,
6302 acqe_sli->event_data1, acqe_sli->event_data2,
6303 acqe_sli->reserved, acqe_sli->trailer);
6305 port_name = phba->Port[0];
6306 if (port_name == 0x00)
6307 port_name = '?'; /* get port name is empty */
6310 case LPFC_SLI_EVENT_TYPE_OVER_TEMP:
6311 temp_event_data.event_type = FC_REG_TEMPERATURE_EVENT;
6312 temp_event_data.event_code = LPFC_THRESHOLD_TEMP;
6313 temp_event_data.data = (uint32_t)acqe_sli->event_data1;
6315 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
6316 "3190 Over Temperature:%d Celsius- Port Name %c\n",
6317 acqe_sli->event_data1, port_name);
6319 phba->sfp_warning |= LPFC_TRANSGRESSION_HIGH_TEMPERATURE;
6320 shost = lpfc_shost_from_vport(phba->pport);
6321 fc_host_post_vendor_event(shost, fc_get_event_number(),
6322 sizeof(temp_event_data),
6323 (char *)&temp_event_data,
6324 SCSI_NL_VID_TYPE_PCI
6325 | PCI_VENDOR_ID_EMULEX);
6327 case LPFC_SLI_EVENT_TYPE_NORM_TEMP:
6328 temp_event_data.event_type = FC_REG_TEMPERATURE_EVENT;
6329 temp_event_data.event_code = LPFC_NORMAL_TEMP;
6330 temp_event_data.data = (uint32_t)acqe_sli->event_data1;
6332 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
6333 "3191 Normal Temperature:%d Celsius - Port Name %c\n",
6334 acqe_sli->event_data1, port_name);
6336 shost = lpfc_shost_from_vport(phba->pport);
6337 fc_host_post_vendor_event(shost, fc_get_event_number(),
6338 sizeof(temp_event_data),
6339 (char *)&temp_event_data,
6340 SCSI_NL_VID_TYPE_PCI
6341 | PCI_VENDOR_ID_EMULEX);
6343 case LPFC_SLI_EVENT_TYPE_MISCONFIGURED:
6344 misconfigured = (struct lpfc_acqe_misconfigured_event *)
6345 &acqe_sli->event_data1;
6347 /* fetch the status for this port */
6348 switch (phba->sli4_hba.lnk_info.lnk_no) {
6349 case LPFC_LINK_NUMBER_0:
6350 status = bf_get(lpfc_sli_misconfigured_port0_state,
6351 &misconfigured->theEvent);
6352 operational = bf_get(lpfc_sli_misconfigured_port0_op,
6353 &misconfigured->theEvent);
6355 case LPFC_LINK_NUMBER_1:
6356 status = bf_get(lpfc_sli_misconfigured_port1_state,
6357 &misconfigured->theEvent);
6358 operational = bf_get(lpfc_sli_misconfigured_port1_op,
6359 &misconfigured->theEvent);
6361 case LPFC_LINK_NUMBER_2:
6362 status = bf_get(lpfc_sli_misconfigured_port2_state,
6363 &misconfigured->theEvent);
6364 operational = bf_get(lpfc_sli_misconfigured_port2_op,
6365 &misconfigured->theEvent);
6367 case LPFC_LINK_NUMBER_3:
6368 status = bf_get(lpfc_sli_misconfigured_port3_state,
6369 &misconfigured->theEvent);
6370 operational = bf_get(lpfc_sli_misconfigured_port3_op,
6371 &misconfigured->theEvent);
6374 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
6376 "LPFC_SLI_EVENT_TYPE_MISCONFIGURED "
6377 "event: Invalid link %d",
6378 phba->sli4_hba.lnk_info.lnk_no);
6382 /* Skip if optic state unchanged */
6383 if (phba->sli4_hba.lnk_info.optic_state == status)
6387 case LPFC_SLI_EVENT_STATUS_VALID:
6388 sprintf(message, "Physical Link is functional");
6390 case LPFC_SLI_EVENT_STATUS_NOT_PRESENT:
6391 sprintf(message, "Optics faulted/incorrectly "
6392 "installed/not installed - Reseat optics, "
6393 "if issue not resolved, replace.");
6395 case LPFC_SLI_EVENT_STATUS_WRONG_TYPE:
6397 "Optics of two types installed - Remove one "
6398 "optic or install matching pair of optics.");
6400 case LPFC_SLI_EVENT_STATUS_UNSUPPORTED:
6401 sprintf(message, "Incompatible optics - Replace with "
6402 "compatible optics for card to function.");
6404 case LPFC_SLI_EVENT_STATUS_UNQUALIFIED:
6405 sprintf(message, "Unqualified optics - Replace with "
6406 "Avago optics for Warranty and Technical "
6407 "Support - Link is%s operational",
6408 (operational) ? " not" : "");
6410 case LPFC_SLI_EVENT_STATUS_UNCERTIFIED:
6411 sprintf(message, "Uncertified optics - Replace with "
6412 "Avago-certified optics to enable link "
6413 "operation - Link is%s operational",
6414 (operational) ? " not" : "");
6417 /* firmware is reporting a status we don't know about */
6418 sprintf(message, "Unknown event status x%02x", status);
6422 /* Issue READ_CONFIG mbox command to refresh supported speeds */
6423 rc = lpfc_sli4_read_config(phba);
6426 lpfc_printf_log(phba, KERN_ERR,
6428 "3194 Unable to retrieve supported "
6429 "speeds, rc = 0x%x\n", rc);
6431 vports = lpfc_create_vport_work_array(phba);
6432 if (vports != NULL) {
6433 for (i = 0; i <= phba->max_vports && vports[i] != NULL;
6435 shost = lpfc_shost_from_vport(vports[i]);
6436 lpfc_host_supported_speeds_set(shost);
6439 lpfc_destroy_vport_work_array(phba, vports);
6441 phba->sli4_hba.lnk_info.optic_state = status;
6442 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
6443 "3176 Port Name %c %s\n", port_name, message);
6445 case LPFC_SLI_EVENT_TYPE_REMOTE_DPORT:
6446 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
6447 "3192 Remote DPort Test Initiated - "
6448 "Event Data1:x%08x Event Data2: x%08x\n",
6449 acqe_sli->event_data1, acqe_sli->event_data2);
6451 case LPFC_SLI_EVENT_TYPE_PORT_PARAMS_CHG:
6452 /* Call FW to obtain active parms */
6453 lpfc_sli4_cgn_parm_chg_evt(phba);
6455 case LPFC_SLI_EVENT_TYPE_MISCONF_FAWWN:
6456 /* Misconfigured WWN. Reports that the SLI Port is configured
6457 * to use FA-WWN, but the attached device doesn’t support it.
6458 * No driver action is required.
6459 * Event Data1 - N.A, Event Data2 - N.A
6461 lpfc_log_msg(phba, KERN_WARNING, LOG_SLI,
6462 "2699 Misconfigured FA-WWN - Attached device does "
6463 "not support FA-WWN\n");
6465 case LPFC_SLI_EVENT_TYPE_EEPROM_FAILURE:
6466 /* EEPROM failure. No driver action is required */
6467 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
6468 "2518 EEPROM failure - "
6469 "Event Data1: x%08x Event Data2: x%08x\n",
6470 acqe_sli->event_data1, acqe_sli->event_data2);
6472 case LPFC_SLI_EVENT_TYPE_CGN_SIGNAL:
6473 if (phba->cmf_active_mode == LPFC_CFG_OFF)
6475 cgn_signal = (struct lpfc_acqe_cgn_signal *)
6476 &acqe_sli->event_data1;
6477 phba->cgn_acqe_cnt++;
6479 cnt = bf_get(lpfc_warn_acqe, cgn_signal);
6480 atomic64_add(cnt, &phba->cgn_acqe_stat.warn);
6481 atomic64_add(cgn_signal->alarm_cnt, &phba->cgn_acqe_stat.alarm);
6483 /* no threshold for CMF, even 1 signal will trigger an event */
6485 /* Alarm overrides warning, so check that first */
6486 if (cgn_signal->alarm_cnt) {
6487 if (phba->cgn_reg_signal == EDC_CG_SIG_WARN_ALARM) {
6488 /* Keep track of alarm cnt for cgn_info */
6489 atomic_add(cgn_signal->alarm_cnt,
6490 &phba->cgn_fabric_alarm_cnt);
6491 /* Keep track of alarm cnt for CMF_SYNC_WQE */
6492 atomic_add(cgn_signal->alarm_cnt,
6493 &phba->cgn_sync_alarm_cnt);
6496 /* signal action needs to be taken */
6497 if (phba->cgn_reg_signal == EDC_CG_SIG_WARN_ONLY ||
6498 phba->cgn_reg_signal == EDC_CG_SIG_WARN_ALARM) {
6499 /* Keep track of warning cnt for cgn_info */
6500 atomic_add(cnt, &phba->cgn_fabric_warn_cnt);
6501 /* Keep track of warning cnt for CMF_SYNC_WQE */
6502 atomic_add(cnt, &phba->cgn_sync_warn_cnt);
6507 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
6508 "3193 Unrecognized SLI event, type: 0x%x",
6515 * lpfc_sli4_perform_vport_cvl - Perform clear virtual link on a vport
6516 * @vport: pointer to vport data structure.
6518 * This routine is to perform Clear Virtual Link (CVL) on a vport in
6519 * response to a CVL event.
6521 * Return the pointer to the ndlp with the vport if successful, otherwise
6524 static struct lpfc_nodelist *
6525 lpfc_sli4_perform_vport_cvl(struct lpfc_vport *vport)
6527 struct lpfc_nodelist *ndlp;
6528 struct Scsi_Host *shost;
6529 struct lpfc_hba *phba;
6536 ndlp = lpfc_findnode_did(vport, Fabric_DID);
6538 /* Cannot find existing Fabric ndlp, so allocate a new one */
6539 ndlp = lpfc_nlp_init(vport, Fabric_DID);
6542 /* Set the node type */
6543 ndlp->nlp_type |= NLP_FABRIC;
6544 /* Put ndlp onto node list */
6545 lpfc_enqueue_node(vport, ndlp);
6547 if ((phba->pport->port_state < LPFC_FLOGI) &&
6548 (phba->pport->port_state != LPFC_VPORT_FAILED))
6550 /* If virtual link is not yet instantiated ignore CVL */
6551 if ((vport != phba->pport) && (vport->port_state < LPFC_FDISC)
6552 && (vport->port_state != LPFC_VPORT_FAILED))
6554 shost = lpfc_shost_from_vport(vport);
6557 lpfc_linkdown_port(vport);
6558 lpfc_cleanup_pending_mbox(vport);
6559 spin_lock_irq(shost->host_lock);
6560 vport->fc_flag |= FC_VPORT_CVL_RCVD;
6561 spin_unlock_irq(shost->host_lock);
6567 * lpfc_sli4_perform_all_vport_cvl - Perform clear virtual link on all vports
6568 * @phba: pointer to lpfc hba data structure.
6570 * This routine is to perform Clear Virtual Link (CVL) on all vports in
6571 * response to a FCF dead event.
6574 lpfc_sli4_perform_all_vport_cvl(struct lpfc_hba *phba)
6576 struct lpfc_vport **vports;
6579 vports = lpfc_create_vport_work_array(phba);
6581 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++)
6582 lpfc_sli4_perform_vport_cvl(vports[i]);
6583 lpfc_destroy_vport_work_array(phba, vports);
6587 * lpfc_sli4_async_fip_evt - Process the asynchronous FCoE FIP event
6588 * @phba: pointer to lpfc hba data structure.
6589 * @acqe_fip: pointer to the async fcoe completion queue entry.
6591 * This routine is to handle the SLI4 asynchronous fcoe event.
6594 lpfc_sli4_async_fip_evt(struct lpfc_hba *phba,
6595 struct lpfc_acqe_fip *acqe_fip)
6597 uint8_t event_type = bf_get(lpfc_trailer_type, acqe_fip);
6599 struct lpfc_vport *vport;
6600 struct lpfc_nodelist *ndlp;
6601 int active_vlink_present;
6602 struct lpfc_vport **vports;
6605 phba->fc_eventTag = acqe_fip->event_tag;
6606 phba->fcoe_eventtag = acqe_fip->event_tag;
6607 switch (event_type) {
6608 case LPFC_FIP_EVENT_TYPE_NEW_FCF:
6609 case LPFC_FIP_EVENT_TYPE_FCF_PARAM_MOD:
6610 if (event_type == LPFC_FIP_EVENT_TYPE_NEW_FCF)
6611 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
6612 "2546 New FCF event, evt_tag:x%x, "
6614 acqe_fip->event_tag,
6617 lpfc_printf_log(phba, KERN_WARNING, LOG_FIP |
6619 "2788 FCF param modified event, "
6620 "evt_tag:x%x, index:x%x\n",
6621 acqe_fip->event_tag,
6623 if (phba->fcf.fcf_flag & FCF_DISCOVERY) {
6625 * During period of FCF discovery, read the FCF
6626 * table record indexed by the event to update
6627 * FCF roundrobin failover eligible FCF bmask.
6629 lpfc_printf_log(phba, KERN_INFO, LOG_FIP |
6631 "2779 Read FCF (x%x) for updating "
6632 "roundrobin FCF failover bmask\n",
6634 rc = lpfc_sli4_read_fcf_rec(phba, acqe_fip->index);
6637 /* If the FCF discovery is in progress, do nothing. */
6638 spin_lock_irq(&phba->hbalock);
6639 if (phba->hba_flag & FCF_TS_INPROG) {
6640 spin_unlock_irq(&phba->hbalock);
6643 /* If fast FCF failover rescan event is pending, do nothing */
6644 if (phba->fcf.fcf_flag & (FCF_REDISC_EVT | FCF_REDISC_PEND)) {
6645 spin_unlock_irq(&phba->hbalock);
6649 /* If the FCF has been in discovered state, do nothing. */
6650 if (phba->fcf.fcf_flag & FCF_SCAN_DONE) {
6651 spin_unlock_irq(&phba->hbalock);
6654 spin_unlock_irq(&phba->hbalock);
6656 /* Otherwise, scan the entire FCF table and re-discover SAN */
6657 lpfc_printf_log(phba, KERN_INFO, LOG_FIP | LOG_DISCOVERY,
6658 "2770 Start FCF table scan per async FCF "
6659 "event, evt_tag:x%x, index:x%x\n",
6660 acqe_fip->event_tag, acqe_fip->index);
6661 rc = lpfc_sli4_fcf_scan_read_fcf_rec(phba,
6662 LPFC_FCOE_FCF_GET_FIRST);
6664 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
6665 "2547 Issue FCF scan read FCF mailbox "
6666 "command failed (x%x)\n", rc);
6669 case LPFC_FIP_EVENT_TYPE_FCF_TABLE_FULL:
6670 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
6671 "2548 FCF Table full count 0x%x tag 0x%x\n",
6672 bf_get(lpfc_acqe_fip_fcf_count, acqe_fip),
6673 acqe_fip->event_tag);
6676 case LPFC_FIP_EVENT_TYPE_FCF_DEAD:
6677 phba->fcoe_cvl_eventtag = acqe_fip->event_tag;
6678 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
6679 "2549 FCF (x%x) disconnected from network, "
6680 "tag:x%x\n", acqe_fip->index,
6681 acqe_fip->event_tag);
6683 * If we are in the middle of FCF failover process, clear
6684 * the corresponding FCF bit in the roundrobin bitmap.
6686 spin_lock_irq(&phba->hbalock);
6687 if ((phba->fcf.fcf_flag & FCF_DISCOVERY) &&
6688 (phba->fcf.current_rec.fcf_indx != acqe_fip->index)) {
6689 spin_unlock_irq(&phba->hbalock);
6690 /* Update FLOGI FCF failover eligible FCF bmask */
6691 lpfc_sli4_fcf_rr_index_clear(phba, acqe_fip->index);
6694 spin_unlock_irq(&phba->hbalock);
6696 /* If the event is not for currently used fcf do nothing */
6697 if (phba->fcf.current_rec.fcf_indx != acqe_fip->index)
6701 * Otherwise, request the port to rediscover the entire FCF
6702 * table for a fast recovery from case that the current FCF
6703 * is no longer valid as we are not in the middle of FCF
6704 * failover process already.
6706 spin_lock_irq(&phba->hbalock);
6707 /* Mark the fast failover process in progress */
6708 phba->fcf.fcf_flag |= FCF_DEAD_DISC;
6709 spin_unlock_irq(&phba->hbalock);
6711 lpfc_printf_log(phba, KERN_INFO, LOG_FIP | LOG_DISCOVERY,
6712 "2771 Start FCF fast failover process due to "
6713 "FCF DEAD event: evt_tag:x%x, fcf_index:x%x "
6714 "\n", acqe_fip->event_tag, acqe_fip->index);
6715 rc = lpfc_sli4_redisc_fcf_table(phba);
6717 lpfc_printf_log(phba, KERN_ERR, LOG_FIP |
6719 "2772 Issue FCF rediscover mailbox "
6720 "command failed, fail through to FCF "
6722 spin_lock_irq(&phba->hbalock);
6723 phba->fcf.fcf_flag &= ~FCF_DEAD_DISC;
6724 spin_unlock_irq(&phba->hbalock);
6726 * Last resort will fail over by treating this
6727 * as a link down to FCF registration.
6729 lpfc_sli4_fcf_dead_failthrough(phba);
6731 /* Reset FCF roundrobin bmask for new discovery */
6732 lpfc_sli4_clear_fcf_rr_bmask(phba);
6734 * Handling fast FCF failover to a DEAD FCF event is
6735 * considered equalivant to receiving CVL to all vports.
6737 lpfc_sli4_perform_all_vport_cvl(phba);
6740 case LPFC_FIP_EVENT_TYPE_CVL:
6741 phba->fcoe_cvl_eventtag = acqe_fip->event_tag;
6742 lpfc_printf_log(phba, KERN_ERR,
6744 "2718 Clear Virtual Link Received for VPI 0x%x"
6745 " tag 0x%x\n", acqe_fip->index, acqe_fip->event_tag);
6747 vport = lpfc_find_vport_by_vpid(phba,
6749 ndlp = lpfc_sli4_perform_vport_cvl(vport);
6752 active_vlink_present = 0;
6754 vports = lpfc_create_vport_work_array(phba);
6756 for (i = 0; i <= phba->max_vports && vports[i] != NULL;
6758 if ((!(vports[i]->fc_flag &
6759 FC_VPORT_CVL_RCVD)) &&
6760 (vports[i]->port_state > LPFC_FDISC)) {
6761 active_vlink_present = 1;
6765 lpfc_destroy_vport_work_array(phba, vports);
6769 * Don't re-instantiate if vport is marked for deletion.
6770 * If we are here first then vport_delete is going to wait
6771 * for discovery to complete.
6773 if (!(vport->load_flag & FC_UNLOADING) &&
6774 active_vlink_present) {
6776 * If there are other active VLinks present,
6777 * re-instantiate the Vlink using FDISC.
6779 mod_timer(&ndlp->nlp_delayfunc,
6780 jiffies + msecs_to_jiffies(1000));
6781 spin_lock_irq(&ndlp->lock);
6782 ndlp->nlp_flag |= NLP_DELAY_TMO;
6783 spin_unlock_irq(&ndlp->lock);
6784 ndlp->nlp_last_elscmd = ELS_CMD_FDISC;
6785 vport->port_state = LPFC_FDISC;
6788 * Otherwise, we request port to rediscover
6789 * the entire FCF table for a fast recovery
6790 * from possible case that the current FCF
6791 * is no longer valid if we are not already
6792 * in the FCF failover process.
6794 spin_lock_irq(&phba->hbalock);
6795 if (phba->fcf.fcf_flag & FCF_DISCOVERY) {
6796 spin_unlock_irq(&phba->hbalock);
6799 /* Mark the fast failover process in progress */
6800 phba->fcf.fcf_flag |= FCF_ACVL_DISC;
6801 spin_unlock_irq(&phba->hbalock);
6802 lpfc_printf_log(phba, KERN_INFO, LOG_FIP |
6804 "2773 Start FCF failover per CVL, "
6805 "evt_tag:x%x\n", acqe_fip->event_tag);
6806 rc = lpfc_sli4_redisc_fcf_table(phba);
6808 lpfc_printf_log(phba, KERN_ERR, LOG_FIP |
6810 "2774 Issue FCF rediscover "
6811 "mailbox command failed, "
6812 "through to CVL event\n");
6813 spin_lock_irq(&phba->hbalock);
6814 phba->fcf.fcf_flag &= ~FCF_ACVL_DISC;
6815 spin_unlock_irq(&phba->hbalock);
6817 * Last resort will be re-try on the
6818 * the current registered FCF entry.
6820 lpfc_retry_pport_discovery(phba);
6823 * Reset FCF roundrobin bmask for new
6826 lpfc_sli4_clear_fcf_rr_bmask(phba);
6830 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
6831 "0288 Unknown FCoE event type 0x%x event tag "
6832 "0x%x\n", event_type, acqe_fip->event_tag);
6838 * lpfc_sli4_async_dcbx_evt - Process the asynchronous dcbx event
6839 * @phba: pointer to lpfc hba data structure.
6840 * @acqe_dcbx: pointer to the async dcbx completion queue entry.
6842 * This routine is to handle the SLI4 asynchronous dcbx event.
6845 lpfc_sli4_async_dcbx_evt(struct lpfc_hba *phba,
6846 struct lpfc_acqe_dcbx *acqe_dcbx)
6848 phba->fc_eventTag = acqe_dcbx->event_tag;
6849 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
6850 "0290 The SLI4 DCBX asynchronous event is not "
6855 * lpfc_sli4_async_grp5_evt - Process the asynchronous group5 event
6856 * @phba: pointer to lpfc hba data structure.
6857 * @acqe_grp5: pointer to the async grp5 completion queue entry.
6859 * This routine is to handle the SLI4 asynchronous grp5 event. A grp5 event
6860 * is an asynchronous notified of a logical link speed change. The Port
6861 * reports the logical link speed in units of 10Mbps.
6864 lpfc_sli4_async_grp5_evt(struct lpfc_hba *phba,
6865 struct lpfc_acqe_grp5 *acqe_grp5)
6867 uint16_t prev_ll_spd;
6869 phba->fc_eventTag = acqe_grp5->event_tag;
6870 phba->fcoe_eventtag = acqe_grp5->event_tag;
6871 prev_ll_spd = phba->sli4_hba.link_state.logical_speed;
6872 phba->sli4_hba.link_state.logical_speed =
6873 (bf_get(lpfc_acqe_grp5_llink_spd, acqe_grp5)) * 10;
6874 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
6875 "2789 GRP5 Async Event: Updating logical link speed "
6876 "from %dMbps to %dMbps\n", prev_ll_spd,
6877 phba->sli4_hba.link_state.logical_speed);
6881 * lpfc_sli4_async_cmstat_evt - Process the asynchronous cmstat event
6882 * @phba: pointer to lpfc hba data structure.
6884 * This routine is to handle the SLI4 asynchronous cmstat event. A cmstat event
6885 * is an asynchronous notification of a request to reset CM stats.
6888 lpfc_sli4_async_cmstat_evt(struct lpfc_hba *phba)
6892 lpfc_init_congestion_stat(phba);
6896 * lpfc_cgn_params_val - Validate FW congestion parameters.
6897 * @phba: pointer to lpfc hba data structure.
6898 * @p_cfg_param: pointer to FW provided congestion parameters.
6900 * This routine validates the congestion parameters passed
6901 * by the FW to the driver via an ACQE event.
6904 lpfc_cgn_params_val(struct lpfc_hba *phba, struct lpfc_cgn_param *p_cfg_param)
6906 spin_lock_irq(&phba->hbalock);
6908 if (!lpfc_rangecheck(p_cfg_param->cgn_param_mode, LPFC_CFG_OFF,
6909 LPFC_CFG_MONITOR)) {
6910 lpfc_printf_log(phba, KERN_ERR, LOG_CGN_MGMT,
6911 "6225 CMF mode param out of range: %d\n",
6912 p_cfg_param->cgn_param_mode);
6913 p_cfg_param->cgn_param_mode = LPFC_CFG_OFF;
6916 spin_unlock_irq(&phba->hbalock);
6920 * lpfc_cgn_params_parse - Process a FW cong parm change event
6921 * @phba: pointer to lpfc hba data structure.
6922 * @p_cgn_param: pointer to a data buffer with the FW cong params.
6923 * @len: the size of pdata in bytes.
6925 * This routine validates the congestion management buffer signature
6926 * from the FW, validates the contents and makes corrections for
6927 * valid, in-range values. If the signature magic is correct and
6928 * after parameter validation, the contents are copied to the driver's
6929 * @phba structure. If the magic is incorrect, an error message is
6933 lpfc_cgn_params_parse(struct lpfc_hba *phba,
6934 struct lpfc_cgn_param *p_cgn_param, uint32_t len)
6936 struct lpfc_cgn_info *cp;
6937 uint32_t crc, oldmode;
6939 /* Make sure the FW has encoded the correct magic number to
6940 * validate the congestion parameter in FW memory.
6942 if (p_cgn_param->cgn_param_magic == LPFC_CFG_PARAM_MAGIC_NUM) {
6943 lpfc_printf_log(phba, KERN_INFO, LOG_CGN_MGMT | LOG_INIT,
6944 "4668 FW cgn parm buffer data: "
6945 "magic 0x%x version %d mode %d "
6946 "level0 %d level1 %d "
6947 "level2 %d byte13 %d "
6948 "byte14 %d byte15 %d "
6949 "byte11 %d byte12 %d activeMode %d\n",
6950 p_cgn_param->cgn_param_magic,
6951 p_cgn_param->cgn_param_version,
6952 p_cgn_param->cgn_param_mode,
6953 p_cgn_param->cgn_param_level0,
6954 p_cgn_param->cgn_param_level1,
6955 p_cgn_param->cgn_param_level2,
6956 p_cgn_param->byte13,
6957 p_cgn_param->byte14,
6958 p_cgn_param->byte15,
6959 p_cgn_param->byte11,
6960 p_cgn_param->byte12,
6961 phba->cmf_active_mode);
6963 oldmode = phba->cmf_active_mode;
6965 /* Any parameters out of range are corrected to defaults
6966 * by this routine. No need to fail.
6968 lpfc_cgn_params_val(phba, p_cgn_param);
6970 /* Parameters are verified, move them into driver storage */
6971 spin_lock_irq(&phba->hbalock);
6972 memcpy(&phba->cgn_p, p_cgn_param,
6973 sizeof(struct lpfc_cgn_param));
6975 /* Update parameters in congestion info buffer now */
6977 cp = (struct lpfc_cgn_info *)phba->cgn_i->virt;
6978 cp->cgn_info_mode = phba->cgn_p.cgn_param_mode;
6979 cp->cgn_info_level0 = phba->cgn_p.cgn_param_level0;
6980 cp->cgn_info_level1 = phba->cgn_p.cgn_param_level1;
6981 cp->cgn_info_level2 = phba->cgn_p.cgn_param_level2;
6982 crc = lpfc_cgn_calc_crc32(cp, LPFC_CGN_INFO_SZ,
6983 LPFC_CGN_CRC32_SEED);
6984 cp->cgn_info_crc = cpu_to_le32(crc);
6986 spin_unlock_irq(&phba->hbalock);
6988 phba->cmf_active_mode = phba->cgn_p.cgn_param_mode;
6992 if (phba->cgn_p.cgn_param_mode != LPFC_CFG_OFF) {
6993 /* Turning CMF on */
6994 lpfc_cmf_start(phba);
6996 if (phba->link_state >= LPFC_LINK_UP) {
6997 phba->cgn_reg_fpin =
6998 phba->cgn_init_reg_fpin;
6999 phba->cgn_reg_signal =
7000 phba->cgn_init_reg_signal;
7001 lpfc_issue_els_edc(phba->pport, 0);
7005 case LPFC_CFG_MANAGED:
7006 switch (phba->cgn_p.cgn_param_mode) {
7008 /* Turning CMF off */
7009 lpfc_cmf_stop(phba);
7010 if (phba->link_state >= LPFC_LINK_UP)
7011 lpfc_issue_els_edc(phba->pport, 0);
7013 case LPFC_CFG_MONITOR:
7014 lpfc_printf_log(phba, KERN_INFO, LOG_CGN_MGMT,
7015 "4661 Switch from MANAGED to "
7017 phba->cmf_max_bytes_per_interval =
7018 phba->cmf_link_byte_count;
7020 /* Resume blocked IO - unblock on workqueue */
7021 queue_work(phba->wq,
7022 &phba->unblock_request_work);
7026 case LPFC_CFG_MONITOR:
7027 switch (phba->cgn_p.cgn_param_mode) {
7029 /* Turning CMF off */
7030 lpfc_cmf_stop(phba);
7031 if (phba->link_state >= LPFC_LINK_UP)
7032 lpfc_issue_els_edc(phba->pport, 0);
7034 case LPFC_CFG_MANAGED:
7035 lpfc_printf_log(phba, KERN_INFO, LOG_CGN_MGMT,
7036 "4662 Switch from MONITOR to "
7038 lpfc_cmf_signal_init(phba);
7044 lpfc_printf_log(phba, KERN_ERR, LOG_CGN_MGMT | LOG_INIT,
7045 "4669 FW cgn parm buf wrong magic 0x%x "
7046 "version %d\n", p_cgn_param->cgn_param_magic,
7047 p_cgn_param->cgn_param_version);
7052 * lpfc_sli4_cgn_params_read - Read and Validate FW congestion parameters.
7053 * @phba: pointer to lpfc hba data structure.
7055 * This routine issues a read_object mailbox command to
7056 * get the congestion management parameters from the FW
7057 * parses it and updates the driver maintained values.
7060 * 0 if the object was empty
7061 * -Eval if an error was encountered
7062 * Count if bytes were read from object
7065 lpfc_sli4_cgn_params_read(struct lpfc_hba *phba)
7068 struct lpfc_cgn_param *p_cgn_param = NULL;
7072 /* Find out if the FW has a new set of congestion parameters. */
7073 len = sizeof(struct lpfc_cgn_param);
7074 pdata = kzalloc(len, GFP_KERNEL);
7075 ret = lpfc_read_object(phba, (char *)LPFC_PORT_CFG_NAME,
7078 /* 0 means no data. A negative means error. A positive means
7079 * bytes were copied.
7082 lpfc_printf_log(phba, KERN_ERR, LOG_CGN_MGMT | LOG_INIT,
7083 "4670 CGN RD OBJ returns no data\n");
7085 } else if (ret < 0) {
7086 /* Some error. Just exit and return it to the caller.*/
7090 lpfc_printf_log(phba, KERN_INFO, LOG_CGN_MGMT | LOG_INIT,
7091 "6234 READ CGN PARAMS Successful %d\n", len);
7093 /* Parse data pointer over len and update the phba congestion
7094 * parameters with values passed back. The receive rate values
7095 * may have been altered in FW, but take no action here.
7097 p_cgn_param = (struct lpfc_cgn_param *)pdata;
7098 lpfc_cgn_params_parse(phba, p_cgn_param, len);
7106 * lpfc_sli4_cgn_parm_chg_evt - Process a FW congestion param change event
7107 * @phba: pointer to lpfc hba data structure.
7109 * The FW generated Async ACQE SLI event calls this routine when
7110 * the event type is an SLI Internal Port Event and the Event Code
7111 * indicates a change to the FW maintained congestion parameters.
7113 * This routine executes a Read_Object mailbox call to obtain the
7114 * current congestion parameters maintained in FW and corrects
7115 * the driver's active congestion parameters.
7117 * The acqe event is not passed because there is no further data
7120 * Returns nonzero error if event processing encountered an error.
7121 * Zero otherwise for success.
7124 lpfc_sli4_cgn_parm_chg_evt(struct lpfc_hba *phba)
7128 if (!phba->sli4_hba.pc_sli4_params.cmf) {
7129 lpfc_printf_log(phba, KERN_ERR, LOG_CGN_MGMT | LOG_INIT,
7130 "4664 Cgn Evt when E2E off. Drop event\n");
7134 /* If the event is claiming an empty object, it's ok. A write
7135 * could have cleared it. Only error is a negative return
7138 ret = lpfc_sli4_cgn_params_read(phba);
7140 lpfc_printf_log(phba, KERN_ERR, LOG_CGN_MGMT | LOG_INIT,
7141 "4667 Error reading Cgn Params (%d)\n",
7144 lpfc_printf_log(phba, KERN_ERR, LOG_CGN_MGMT | LOG_INIT,
7145 "4673 CGN Event empty object.\n");
7151 * lpfc_sli4_async_event_proc - Process all the pending asynchronous event
7152 * @phba: pointer to lpfc hba data structure.
7154 * This routine is invoked by the worker thread to process all the pending
7155 * SLI4 asynchronous events.
7157 void lpfc_sli4_async_event_proc(struct lpfc_hba *phba)
7159 struct lpfc_cq_event *cq_event;
7160 unsigned long iflags;
7162 /* First, declare the async event has been handled */
7163 spin_lock_irqsave(&phba->hbalock, iflags);
7164 phba->hba_flag &= ~ASYNC_EVENT;
7165 spin_unlock_irqrestore(&phba->hbalock, iflags);
7167 /* Now, handle all the async events */
7168 spin_lock_irqsave(&phba->sli4_hba.asynce_list_lock, iflags);
7169 while (!list_empty(&phba->sli4_hba.sp_asynce_work_queue)) {
7170 list_remove_head(&phba->sli4_hba.sp_asynce_work_queue,
7171 cq_event, struct lpfc_cq_event, list);
7172 spin_unlock_irqrestore(&phba->sli4_hba.asynce_list_lock,
7175 /* Process the asynchronous event */
7176 switch (bf_get(lpfc_trailer_code, &cq_event->cqe.mcqe_cmpl)) {
7177 case LPFC_TRAILER_CODE_LINK:
7178 lpfc_sli4_async_link_evt(phba,
7179 &cq_event->cqe.acqe_link);
7181 case LPFC_TRAILER_CODE_FCOE:
7182 lpfc_sli4_async_fip_evt(phba, &cq_event->cqe.acqe_fip);
7184 case LPFC_TRAILER_CODE_DCBX:
7185 lpfc_sli4_async_dcbx_evt(phba,
7186 &cq_event->cqe.acqe_dcbx);
7188 case LPFC_TRAILER_CODE_GRP5:
7189 lpfc_sli4_async_grp5_evt(phba,
7190 &cq_event->cqe.acqe_grp5);
7192 case LPFC_TRAILER_CODE_FC:
7193 lpfc_sli4_async_fc_evt(phba, &cq_event->cqe.acqe_fc);
7195 case LPFC_TRAILER_CODE_SLI:
7196 lpfc_sli4_async_sli_evt(phba, &cq_event->cqe.acqe_sli);
7198 case LPFC_TRAILER_CODE_CMSTAT:
7199 lpfc_sli4_async_cmstat_evt(phba);
7202 lpfc_printf_log(phba, KERN_ERR,
7204 "1804 Invalid asynchronous event code: "
7205 "x%x\n", bf_get(lpfc_trailer_code,
7206 &cq_event->cqe.mcqe_cmpl));
7210 /* Free the completion event processed to the free pool */
7211 lpfc_sli4_cq_event_release(phba, cq_event);
7212 spin_lock_irqsave(&phba->sli4_hba.asynce_list_lock, iflags);
7214 spin_unlock_irqrestore(&phba->sli4_hba.asynce_list_lock, iflags);
7218 * lpfc_sli4_fcf_redisc_event_proc - Process fcf table rediscovery event
7219 * @phba: pointer to lpfc hba data structure.
7221 * This routine is invoked by the worker thread to process FCF table
7222 * rediscovery pending completion event.
7224 void lpfc_sli4_fcf_redisc_event_proc(struct lpfc_hba *phba)
7228 spin_lock_irq(&phba->hbalock);
7229 /* Clear FCF rediscovery timeout event */
7230 phba->fcf.fcf_flag &= ~FCF_REDISC_EVT;
7231 /* Clear driver fast failover FCF record flag */
7232 phba->fcf.failover_rec.flag = 0;
7233 /* Set state for FCF fast failover */
7234 phba->fcf.fcf_flag |= FCF_REDISC_FOV;
7235 spin_unlock_irq(&phba->hbalock);
7237 /* Scan FCF table from the first entry to re-discover SAN */
7238 lpfc_printf_log(phba, KERN_INFO, LOG_FIP | LOG_DISCOVERY,
7239 "2777 Start post-quiescent FCF table scan\n");
7240 rc = lpfc_sli4_fcf_scan_read_fcf_rec(phba, LPFC_FCOE_FCF_GET_FIRST);
7242 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
7243 "2747 Issue FCF scan read FCF mailbox "
7244 "command failed 0x%x\n", rc);
7248 * lpfc_api_table_setup - Set up per hba pci-device group func api jump table
7249 * @phba: pointer to lpfc hba data structure.
7250 * @dev_grp: The HBA PCI-Device group number.
7252 * This routine is invoked to set up the per HBA PCI-Device group function
7253 * API jump table entries.
7255 * Return: 0 if success, otherwise -ENODEV
7258 lpfc_api_table_setup(struct lpfc_hba *phba, uint8_t dev_grp)
7262 /* Set up lpfc PCI-device group */
7263 phba->pci_dev_grp = dev_grp;
7265 /* The LPFC_PCI_DEV_OC uses SLI4 */
7266 if (dev_grp == LPFC_PCI_DEV_OC)
7267 phba->sli_rev = LPFC_SLI_REV4;
7269 /* Set up device INIT API function jump table */
7270 rc = lpfc_init_api_table_setup(phba, dev_grp);
7273 /* Set up SCSI API function jump table */
7274 rc = lpfc_scsi_api_table_setup(phba, dev_grp);
7277 /* Set up SLI API function jump table */
7278 rc = lpfc_sli_api_table_setup(phba, dev_grp);
7281 /* Set up MBOX API function jump table */
7282 rc = lpfc_mbox_api_table_setup(phba, dev_grp);
7290 * lpfc_log_intr_mode - Log the active interrupt mode
7291 * @phba: pointer to lpfc hba data structure.
7292 * @intr_mode: active interrupt mode adopted.
7294 * This routine it invoked to log the currently used active interrupt mode
7297 static void lpfc_log_intr_mode(struct lpfc_hba *phba, uint32_t intr_mode)
7299 switch (intr_mode) {
7301 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
7302 "0470 Enable INTx interrupt mode.\n");
7305 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
7306 "0481 Enabled MSI interrupt mode.\n");
7309 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
7310 "0480 Enabled MSI-X interrupt mode.\n");
7313 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
7314 "0482 Illegal interrupt mode.\n");
7321 * lpfc_enable_pci_dev - Enable a generic PCI device.
7322 * @phba: pointer to lpfc hba data structure.
7324 * This routine is invoked to enable the PCI device that is common to all
7329 * other values - error
7332 lpfc_enable_pci_dev(struct lpfc_hba *phba)
7334 struct pci_dev *pdev;
7336 /* Obtain PCI device reference */
7340 pdev = phba->pcidev;
7341 /* Enable PCI device */
7342 if (pci_enable_device_mem(pdev))
7344 /* Request PCI resource for the device */
7345 if (pci_request_mem_regions(pdev, LPFC_DRIVER_NAME))
7346 goto out_disable_device;
7347 /* Set up device as PCI master and save state for EEH */
7348 pci_set_master(pdev);
7349 pci_try_set_mwi(pdev);
7350 pci_save_state(pdev);
7352 /* PCIe EEH recovery on powerpc platforms needs fundamental reset */
7353 if (pci_is_pcie(pdev))
7354 pdev->needs_freset = 1;
7359 pci_disable_device(pdev);
7361 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
7362 "1401 Failed to enable pci device\n");
7367 * lpfc_disable_pci_dev - Disable a generic PCI device.
7368 * @phba: pointer to lpfc hba data structure.
7370 * This routine is invoked to disable the PCI device that is common to all
7374 lpfc_disable_pci_dev(struct lpfc_hba *phba)
7376 struct pci_dev *pdev;
7378 /* Obtain PCI device reference */
7382 pdev = phba->pcidev;
7383 /* Release PCI resource and disable PCI device */
7384 pci_release_mem_regions(pdev);
7385 pci_disable_device(pdev);
7391 * lpfc_reset_hba - Reset a hba
7392 * @phba: pointer to lpfc hba data structure.
7394 * This routine is invoked to reset a hba device. It brings the HBA
7395 * offline, performs a board restart, and then brings the board back
7396 * online. The lpfc_offline calls lpfc_sli_hba_down which will clean up
7397 * on outstanding mailbox commands.
7400 lpfc_reset_hba(struct lpfc_hba *phba)
7402 /* If resets are disabled then set error state and return. */
7403 if (!phba->cfg_enable_hba_reset) {
7404 phba->link_state = LPFC_HBA_ERROR;
7408 /* If not LPFC_SLI_ACTIVE, force all IO to be flushed */
7409 if (phba->sli.sli_flag & LPFC_SLI_ACTIVE) {
7410 lpfc_offline_prep(phba, LPFC_MBX_WAIT);
7412 lpfc_offline_prep(phba, LPFC_MBX_NO_WAIT);
7413 lpfc_sli_flush_io_rings(phba);
7416 lpfc_sli_brdrestart(phba);
7418 lpfc_unblock_mgmt_io(phba);
7422 * lpfc_sli_sriov_nr_virtfn_get - Get the number of sr-iov virtual functions
7423 * @phba: pointer to lpfc hba data structure.
7425 * This function enables the PCI SR-IOV virtual functions to a physical
7426 * function. It invokes the PCI SR-IOV api with the @nr_vfn provided to
7427 * enable the number of virtual functions to the physical function. As
7428 * not all devices support SR-IOV, the return code from the pci_enable_sriov()
7429 * API call does not considered as an error condition for most of the device.
7432 lpfc_sli_sriov_nr_virtfn_get(struct lpfc_hba *phba)
7434 struct pci_dev *pdev = phba->pcidev;
7438 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_SRIOV);
7442 pci_read_config_word(pdev, pos + PCI_SRIOV_TOTAL_VF, &nr_virtfn);
7447 * lpfc_sli_probe_sriov_nr_virtfn - Enable a number of sr-iov virtual functions
7448 * @phba: pointer to lpfc hba data structure.
7449 * @nr_vfn: number of virtual functions to be enabled.
7451 * This function enables the PCI SR-IOV virtual functions to a physical
7452 * function. It invokes the PCI SR-IOV api with the @nr_vfn provided to
7453 * enable the number of virtual functions to the physical function. As
7454 * not all devices support SR-IOV, the return code from the pci_enable_sriov()
7455 * API call does not considered as an error condition for most of the device.
7458 lpfc_sli_probe_sriov_nr_virtfn(struct lpfc_hba *phba, int nr_vfn)
7460 struct pci_dev *pdev = phba->pcidev;
7461 uint16_t max_nr_vfn;
7464 max_nr_vfn = lpfc_sli_sriov_nr_virtfn_get(phba);
7465 if (nr_vfn > max_nr_vfn) {
7466 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
7467 "3057 Requested vfs (%d) greater than "
7468 "supported vfs (%d)", nr_vfn, max_nr_vfn);
7472 rc = pci_enable_sriov(pdev, nr_vfn);
7474 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
7475 "2806 Failed to enable sriov on this device "
7476 "with vfn number nr_vf:%d, rc:%d\n",
7479 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
7480 "2807 Successful enable sriov on this device "
7481 "with vfn number nr_vf:%d\n", nr_vfn);
7486 lpfc_unblock_requests_work(struct work_struct *work)
7488 struct lpfc_hba *phba = container_of(work, struct lpfc_hba,
7489 unblock_request_work);
7491 lpfc_unblock_requests(phba);
7495 * lpfc_setup_driver_resource_phase1 - Phase1 etup driver internal resources.
7496 * @phba: pointer to lpfc hba data structure.
7498 * This routine is invoked to set up the driver internal resources before the
7499 * device specific resource setup to support the HBA device it attached to.
7503 * other values - error
7506 lpfc_setup_driver_resource_phase1(struct lpfc_hba *phba)
7508 struct lpfc_sli *psli = &phba->sli;
7511 * Driver resources common to all SLI revisions
7513 atomic_set(&phba->fast_event_count, 0);
7514 atomic_set(&phba->dbg_log_idx, 0);
7515 atomic_set(&phba->dbg_log_cnt, 0);
7516 atomic_set(&phba->dbg_log_dmping, 0);
7517 spin_lock_init(&phba->hbalock);
7519 /* Initialize port_list spinlock */
7520 spin_lock_init(&phba->port_list_lock);
7521 INIT_LIST_HEAD(&phba->port_list);
7523 INIT_LIST_HEAD(&phba->work_list);
7524 init_waitqueue_head(&phba->wait_4_mlo_m_q);
7526 /* Initialize the wait queue head for the kernel thread */
7527 init_waitqueue_head(&phba->work_waitq);
7529 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
7530 "1403 Protocols supported %s %s %s\n",
7531 ((phba->cfg_enable_fc4_type & LPFC_ENABLE_FCP) ?
7533 ((phba->cfg_enable_fc4_type & LPFC_ENABLE_NVME) ?
7535 (phba->nvmet_support ? "NVMET" : " "));
7537 /* Initialize the IO buffer list used by driver for SLI3 SCSI */
7538 spin_lock_init(&phba->scsi_buf_list_get_lock);
7539 INIT_LIST_HEAD(&phba->lpfc_scsi_buf_list_get);
7540 spin_lock_init(&phba->scsi_buf_list_put_lock);
7541 INIT_LIST_HEAD(&phba->lpfc_scsi_buf_list_put);
7543 /* Initialize the fabric iocb list */
7544 INIT_LIST_HEAD(&phba->fabric_iocb_list);
7546 /* Initialize list to save ELS buffers */
7547 INIT_LIST_HEAD(&phba->elsbuf);
7549 /* Initialize FCF connection rec list */
7550 INIT_LIST_HEAD(&phba->fcf_conn_rec_list);
7552 /* Initialize OAS configuration list */
7553 spin_lock_init(&phba->devicelock);
7554 INIT_LIST_HEAD(&phba->luns);
7556 /* MBOX heartbeat timer */
7557 timer_setup(&psli->mbox_tmo, lpfc_mbox_timeout, 0);
7558 /* Fabric block timer */
7559 timer_setup(&phba->fabric_block_timer, lpfc_fabric_block_timeout, 0);
7560 /* EA polling mode timer */
7561 timer_setup(&phba->eratt_poll, lpfc_poll_eratt, 0);
7562 /* Heartbeat timer */
7563 timer_setup(&phba->hb_tmofunc, lpfc_hb_timeout, 0);
7565 INIT_DELAYED_WORK(&phba->eq_delay_work, lpfc_hb_eq_delay_work);
7567 INIT_DELAYED_WORK(&phba->idle_stat_delay_work,
7568 lpfc_idle_stat_delay_work);
7569 INIT_WORK(&phba->unblock_request_work, lpfc_unblock_requests_work);
7574 * lpfc_sli_driver_resource_setup - Setup driver internal resources for SLI3 dev
7575 * @phba: pointer to lpfc hba data structure.
7577 * This routine is invoked to set up the driver internal resources specific to
7578 * support the SLI-3 HBA device it attached to.
7582 * other values - error
7585 lpfc_sli_driver_resource_setup(struct lpfc_hba *phba)
7590 * Initialize timers used by driver
7593 /* FCP polling mode timer */
7594 timer_setup(&phba->fcp_poll_timer, lpfc_poll_timeout, 0);
7596 /* Host attention work mask setup */
7597 phba->work_ha_mask = (HA_ERATT | HA_MBATT | HA_LATT);
7598 phba->work_ha_mask |= (HA_RXMASK << (LPFC_ELS_RING * 4));
7600 /* Get all the module params for configuring this host */
7601 lpfc_get_cfgparam(phba);
7602 /* Set up phase-1 common device driver resources */
7604 rc = lpfc_setup_driver_resource_phase1(phba);
7608 if (phba->pcidev->device == PCI_DEVICE_ID_HORNET) {
7609 phba->menlo_flag |= HBA_MENLO_SUPPORT;
7610 /* check for menlo minimum sg count */
7611 if (phba->cfg_sg_seg_cnt < LPFC_DEFAULT_MENLO_SG_SEG_CNT)
7612 phba->cfg_sg_seg_cnt = LPFC_DEFAULT_MENLO_SG_SEG_CNT;
7615 if (!phba->sli.sli3_ring)
7616 phba->sli.sli3_ring = kcalloc(LPFC_SLI3_MAX_RING,
7617 sizeof(struct lpfc_sli_ring),
7619 if (!phba->sli.sli3_ring)
7623 * Since lpfc_sg_seg_cnt is module parameter, the sg_dma_buf_size
7624 * used to create the sg_dma_buf_pool must be dynamically calculated.
7627 if (phba->sli_rev == LPFC_SLI_REV4)
7628 entry_sz = sizeof(struct sli4_sge);
7630 entry_sz = sizeof(struct ulp_bde64);
7632 /* There are going to be 2 reserved BDEs: 1 FCP cmnd + 1 FCP rsp */
7633 if (phba->cfg_enable_bg) {
7635 * The scsi_buf for a T10-DIF I/O will hold the FCP cmnd,
7636 * the FCP rsp, and a BDE for each. Sice we have no control
7637 * over how many protection data segments the SCSI Layer
7638 * will hand us (ie: there could be one for every block
7639 * in the IO), we just allocate enough BDEs to accomidate
7640 * our max amount and we need to limit lpfc_sg_seg_cnt to
7641 * minimize the risk of running out.
7643 phba->cfg_sg_dma_buf_size = sizeof(struct fcp_cmnd) +
7644 sizeof(struct fcp_rsp) +
7645 (LPFC_MAX_SG_SEG_CNT * entry_sz);
7647 if (phba->cfg_sg_seg_cnt > LPFC_MAX_SG_SEG_CNT_DIF)
7648 phba->cfg_sg_seg_cnt = LPFC_MAX_SG_SEG_CNT_DIF;
7650 /* Total BDEs in BPL for scsi_sg_list and scsi_sg_prot_list */
7651 phba->cfg_total_seg_cnt = LPFC_MAX_SG_SEG_CNT;
7654 * The scsi_buf for a regular I/O will hold the FCP cmnd,
7655 * the FCP rsp, a BDE for each, and a BDE for up to
7656 * cfg_sg_seg_cnt data segments.
7658 phba->cfg_sg_dma_buf_size = sizeof(struct fcp_cmnd) +
7659 sizeof(struct fcp_rsp) +
7660 ((phba->cfg_sg_seg_cnt + 2) * entry_sz);
7662 /* Total BDEs in BPL for scsi_sg_list */
7663 phba->cfg_total_seg_cnt = phba->cfg_sg_seg_cnt + 2;
7666 lpfc_printf_log(phba, KERN_INFO, LOG_INIT | LOG_FCP,
7667 "9088 INIT sg_tablesize:%d dmabuf_size:%d total_bde:%d\n",
7668 phba->cfg_sg_seg_cnt, phba->cfg_sg_dma_buf_size,
7669 phba->cfg_total_seg_cnt);
7671 phba->max_vpi = LPFC_MAX_VPI;
7672 /* This will be set to correct value after config_port mbox */
7673 phba->max_vports = 0;
7676 * Initialize the SLI Layer to run with lpfc HBAs.
7678 lpfc_sli_setup(phba);
7679 lpfc_sli_queue_init(phba);
7681 /* Allocate device driver memory */
7682 if (lpfc_mem_alloc(phba, BPL_ALIGN_SZ))
7685 phba->lpfc_sg_dma_buf_pool =
7686 dma_pool_create("lpfc_sg_dma_buf_pool",
7687 &phba->pcidev->dev, phba->cfg_sg_dma_buf_size,
7690 if (!phba->lpfc_sg_dma_buf_pool)
7693 phba->lpfc_cmd_rsp_buf_pool =
7694 dma_pool_create("lpfc_cmd_rsp_buf_pool",
7696 sizeof(struct fcp_cmnd) +
7697 sizeof(struct fcp_rsp),
7700 if (!phba->lpfc_cmd_rsp_buf_pool)
7701 goto fail_free_dma_buf_pool;
7704 * Enable sr-iov virtual functions if supported and configured
7705 * through the module parameter.
7707 if (phba->cfg_sriov_nr_virtfn > 0) {
7708 rc = lpfc_sli_probe_sriov_nr_virtfn(phba,
7709 phba->cfg_sriov_nr_virtfn);
7711 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
7712 "2808 Requested number of SR-IOV "
7713 "virtual functions (%d) is not "
7715 phba->cfg_sriov_nr_virtfn);
7716 phba->cfg_sriov_nr_virtfn = 0;
7722 fail_free_dma_buf_pool:
7723 dma_pool_destroy(phba->lpfc_sg_dma_buf_pool);
7724 phba->lpfc_sg_dma_buf_pool = NULL;
7726 lpfc_mem_free(phba);
7731 * lpfc_sli_driver_resource_unset - Unset drvr internal resources for SLI3 dev
7732 * @phba: pointer to lpfc hba data structure.
7734 * This routine is invoked to unset the driver internal resources set up
7735 * specific for supporting the SLI-3 HBA device it attached to.
7738 lpfc_sli_driver_resource_unset(struct lpfc_hba *phba)
7740 /* Free device driver memory allocated */
7741 lpfc_mem_free_all(phba);
7747 * lpfc_sli4_driver_resource_setup - Setup drvr internal resources for SLI4 dev
7748 * @phba: pointer to lpfc hba data structure.
7750 * This routine is invoked to set up the driver internal resources specific to
7751 * support the SLI-4 HBA device it attached to.
7755 * other values - error
7758 lpfc_sli4_driver_resource_setup(struct lpfc_hba *phba)
7760 LPFC_MBOXQ_t *mboxq;
7762 int rc, i, max_buf_size;
7769 phba->sli4_hba.num_present_cpu = lpfc_present_cpu;
7770 phba->sli4_hba.num_possible_cpu = cpumask_last(cpu_possible_mask) + 1;
7771 phba->sli4_hba.curr_disp_cpu = 0;
7773 /* Get all the module params for configuring this host */
7774 lpfc_get_cfgparam(phba);
7776 /* Set up phase-1 common device driver resources */
7777 rc = lpfc_setup_driver_resource_phase1(phba);
7781 /* Before proceed, wait for POST done and device ready */
7782 rc = lpfc_sli4_post_status_check(phba);
7786 /* Allocate all driver workqueues here */
7788 /* The lpfc_wq workqueue for deferred irq use */
7789 phba->wq = alloc_workqueue("lpfc_wq", WQ_MEM_RECLAIM, 0);
7792 * Initialize timers used by driver
7795 timer_setup(&phba->rrq_tmr, lpfc_rrq_timeout, 0);
7797 /* FCF rediscover timer */
7798 timer_setup(&phba->fcf.redisc_wait, lpfc_sli4_fcf_redisc_wait_tmo, 0);
7800 /* CMF congestion timer */
7801 hrtimer_init(&phba->cmf_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
7802 phba->cmf_timer.function = lpfc_cmf_timer;
7805 * Control structure for handling external multi-buffer mailbox
7806 * command pass-through.
7808 memset((uint8_t *)&phba->mbox_ext_buf_ctx, 0,
7809 sizeof(struct lpfc_mbox_ext_buf_ctx));
7810 INIT_LIST_HEAD(&phba->mbox_ext_buf_ctx.ext_dmabuf_list);
7812 phba->max_vpi = LPFC_MAX_VPI;
7814 /* This will be set to correct value after the read_config mbox */
7815 phba->max_vports = 0;
7817 /* Program the default value of vlan_id and fc_map */
7818 phba->valid_vlan = 0;
7819 phba->fc_map[0] = LPFC_FCOE_FCF_MAP0;
7820 phba->fc_map[1] = LPFC_FCOE_FCF_MAP1;
7821 phba->fc_map[2] = LPFC_FCOE_FCF_MAP2;
7824 * For SLI4, instead of using ring 0 (LPFC_FCP_RING) for FCP commands
7825 * we will associate a new ring, for each EQ/CQ/WQ tuple.
7826 * The WQ create will allocate the ring.
7829 /* Initialize buffer queue management fields */
7830 INIT_LIST_HEAD(&phba->hbqs[LPFC_ELS_HBQ].hbq_buffer_list);
7831 phba->hbqs[LPFC_ELS_HBQ].hbq_alloc_buffer = lpfc_sli4_rb_alloc;
7832 phba->hbqs[LPFC_ELS_HBQ].hbq_free_buffer = lpfc_sli4_rb_free;
7834 /* for VMID idle timeout if VMID is enabled */
7835 if (lpfc_is_vmid_enabled(phba))
7836 timer_setup(&phba->inactive_vmid_poll, lpfc_vmid_poll, 0);
7839 * Initialize the SLI Layer to run with lpfc SLI4 HBAs.
7841 /* Initialize the Abort buffer list used by driver */
7842 spin_lock_init(&phba->sli4_hba.abts_io_buf_list_lock);
7843 INIT_LIST_HEAD(&phba->sli4_hba.lpfc_abts_io_buf_list);
7845 if (phba->cfg_enable_fc4_type & LPFC_ENABLE_NVME) {
7846 /* Initialize the Abort nvme buffer list used by driver */
7847 spin_lock_init(&phba->sli4_hba.abts_nvmet_buf_list_lock);
7848 INIT_LIST_HEAD(&phba->sli4_hba.lpfc_abts_nvmet_ctx_list);
7849 INIT_LIST_HEAD(&phba->sli4_hba.lpfc_nvmet_io_wait_list);
7850 spin_lock_init(&phba->sli4_hba.t_active_list_lock);
7851 INIT_LIST_HEAD(&phba->sli4_hba.t_active_ctx_list);
7854 /* This abort list used by worker thread */
7855 spin_lock_init(&phba->sli4_hba.sgl_list_lock);
7856 spin_lock_init(&phba->sli4_hba.nvmet_io_wait_lock);
7857 spin_lock_init(&phba->sli4_hba.asynce_list_lock);
7858 spin_lock_init(&phba->sli4_hba.els_xri_abrt_list_lock);
7861 * Initialize driver internal slow-path work queues
7864 /* Driver internel slow-path CQ Event pool */
7865 INIT_LIST_HEAD(&phba->sli4_hba.sp_cqe_event_pool);
7866 /* Response IOCB work queue list */
7867 INIT_LIST_HEAD(&phba->sli4_hba.sp_queue_event);
7868 /* Asynchronous event CQ Event work queue list */
7869 INIT_LIST_HEAD(&phba->sli4_hba.sp_asynce_work_queue);
7870 /* Slow-path XRI aborted CQ Event work queue list */
7871 INIT_LIST_HEAD(&phba->sli4_hba.sp_els_xri_aborted_work_queue);
7872 /* Receive queue CQ Event work queue list */
7873 INIT_LIST_HEAD(&phba->sli4_hba.sp_unsol_work_queue);
7875 /* Initialize extent block lists. */
7876 INIT_LIST_HEAD(&phba->sli4_hba.lpfc_rpi_blk_list);
7877 INIT_LIST_HEAD(&phba->sli4_hba.lpfc_xri_blk_list);
7878 INIT_LIST_HEAD(&phba->sli4_hba.lpfc_vfi_blk_list);
7879 INIT_LIST_HEAD(&phba->lpfc_vpi_blk_list);
7881 /* Initialize mboxq lists. If the early init routines fail
7882 * these lists need to be correctly initialized.
7884 INIT_LIST_HEAD(&phba->sli.mboxq);
7885 INIT_LIST_HEAD(&phba->sli.mboxq_cmpl);
7887 /* initialize optic_state to 0xFF */
7888 phba->sli4_hba.lnk_info.optic_state = 0xff;
7890 /* Allocate device driver memory */
7891 rc = lpfc_mem_alloc(phba, SGL_ALIGN_SZ);
7895 /* IF Type 2 ports get initialized now. */
7896 if (bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf) >=
7897 LPFC_SLI_INTF_IF_TYPE_2) {
7898 rc = lpfc_pci_function_reset(phba);
7903 phba->temp_sensor_support = 1;
7906 /* Create the bootstrap mailbox command */
7907 rc = lpfc_create_bootstrap_mbox(phba);
7911 /* Set up the host's endian order with the device. */
7912 rc = lpfc_setup_endian_order(phba);
7914 goto out_free_bsmbx;
7916 /* Set up the hba's configuration parameters. */
7917 rc = lpfc_sli4_read_config(phba);
7919 goto out_free_bsmbx;
7920 rc = lpfc_mem_alloc_active_rrq_pool_s4(phba);
7922 goto out_free_bsmbx;
7924 /* IF Type 0 ports get initialized now. */
7925 if (bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf) ==
7926 LPFC_SLI_INTF_IF_TYPE_0) {
7927 rc = lpfc_pci_function_reset(phba);
7929 goto out_free_bsmbx;
7932 mboxq = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool,
7936 goto out_free_bsmbx;
7939 /* Check for NVMET being configured */
7940 phba->nvmet_support = 0;
7941 if (lpfc_enable_nvmet_cnt) {
7943 /* First get WWN of HBA instance */
7944 lpfc_read_nv(phba, mboxq);
7945 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
7946 if (rc != MBX_SUCCESS) {
7947 lpfc_printf_log(phba, KERN_ERR,
7949 "6016 Mailbox failed , mbxCmd x%x "
7950 "READ_NV, mbxStatus x%x\n",
7951 bf_get(lpfc_mqe_command, &mboxq->u.mqe),
7952 bf_get(lpfc_mqe_status, &mboxq->u.mqe));
7953 mempool_free(mboxq, phba->mbox_mem_pool);
7955 goto out_free_bsmbx;
7958 memcpy(&wwn, (char *)mb->un.varRDnvp.nodename,
7960 wwn = cpu_to_be64(wwn);
7961 phba->sli4_hba.wwnn.u.name = wwn;
7962 memcpy(&wwn, (char *)mb->un.varRDnvp.portname,
7964 /* wwn is WWPN of HBA instance */
7965 wwn = cpu_to_be64(wwn);
7966 phba->sli4_hba.wwpn.u.name = wwn;
7968 /* Check to see if it matches any module parameter */
7969 for (i = 0; i < lpfc_enable_nvmet_cnt; i++) {
7970 if (wwn == lpfc_enable_nvmet[i]) {
7971 #if (IS_ENABLED(CONFIG_NVME_TARGET_FC))
7972 if (lpfc_nvmet_mem_alloc(phba))
7975 phba->nvmet_support = 1; /* a match */
7977 lpfc_printf_log(phba, KERN_ERR,
7979 "6017 NVME Target %016llx\n",
7982 lpfc_printf_log(phba, KERN_ERR,
7984 "6021 Can't enable NVME Target."
7985 " NVME_TARGET_FC infrastructure"
7986 " is not in kernel\n");
7988 /* Not supported for NVMET */
7989 phba->cfg_xri_rebalancing = 0;
7990 if (phba->irq_chann_mode == NHT_MODE) {
7991 phba->cfg_irq_chann =
7992 phba->sli4_hba.num_present_cpu;
7993 phba->cfg_hdw_queue =
7994 phba->sli4_hba.num_present_cpu;
7995 phba->irq_chann_mode = NORMAL_MODE;
8002 lpfc_nvme_mod_param_dep(phba);
8005 * Get sli4 parameters that override parameters from Port capabilities.
8006 * If this call fails, it isn't critical unless the SLI4 parameters come
8009 rc = lpfc_get_sli4_parameters(phba, mboxq);
8011 if_type = bf_get(lpfc_sli_intf_if_type,
8012 &phba->sli4_hba.sli_intf);
8013 if_fam = bf_get(lpfc_sli_intf_sli_family,
8014 &phba->sli4_hba.sli_intf);
8015 if (phba->sli4_hba.extents_in_use &&
8016 phba->sli4_hba.rpi_hdrs_in_use) {
8017 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
8018 "2999 Unsupported SLI4 Parameters "
8019 "Extents and RPI headers enabled.\n");
8020 if (if_type == LPFC_SLI_INTF_IF_TYPE_0 &&
8021 if_fam == LPFC_SLI_INTF_FAMILY_BE2) {
8022 mempool_free(mboxq, phba->mbox_mem_pool);
8024 goto out_free_bsmbx;
8027 if (!(if_type == LPFC_SLI_INTF_IF_TYPE_0 &&
8028 if_fam == LPFC_SLI_INTF_FAMILY_BE2)) {
8029 mempool_free(mboxq, phba->mbox_mem_pool);
8031 goto out_free_bsmbx;
8036 * 1 for cmd, 1 for rsp, NVME adds an extra one
8037 * for boundary conditions in its max_sgl_segment template.
8040 if (phba->cfg_enable_fc4_type & LPFC_ENABLE_NVME)
8044 * It doesn't matter what family our adapter is in, we are
8045 * limited to 2 Pages, 512 SGEs, for our SGL.
8046 * There are going to be 2 reserved SGEs: 1 FCP cmnd + 1 FCP rsp
8048 max_buf_size = (2 * SLI4_PAGE_SIZE);
8051 * Since lpfc_sg_seg_cnt is module param, the sg_dma_buf_size
8052 * used to create the sg_dma_buf_pool must be calculated.
8054 if (phba->sli3_options & LPFC_SLI3_BG_ENABLED) {
8055 /* Both cfg_enable_bg and cfg_external_dif code paths */
8058 * The scsi_buf for a T10-DIF I/O holds the FCP cmnd,
8059 * the FCP rsp, and a SGE. Sice we have no control
8060 * over how many protection segments the SCSI Layer
8061 * will hand us (ie: there could be one for every block
8062 * in the IO), just allocate enough SGEs to accomidate
8063 * our max amount and we need to limit lpfc_sg_seg_cnt
8064 * to minimize the risk of running out.
8066 phba->cfg_sg_dma_buf_size = sizeof(struct fcp_cmnd) +
8067 sizeof(struct fcp_rsp) + max_buf_size;
8069 /* Total SGEs for scsi_sg_list and scsi_sg_prot_list */
8070 phba->cfg_total_seg_cnt = LPFC_MAX_SGL_SEG_CNT;
8073 * If supporting DIF, reduce the seg count for scsi to
8074 * allow room for the DIF sges.
8076 if (phba->cfg_enable_bg &&
8077 phba->cfg_sg_seg_cnt > LPFC_MAX_BG_SLI4_SEG_CNT_DIF)
8078 phba->cfg_scsi_seg_cnt = LPFC_MAX_BG_SLI4_SEG_CNT_DIF;
8080 phba->cfg_scsi_seg_cnt = phba->cfg_sg_seg_cnt;
8084 * The scsi_buf for a regular I/O holds the FCP cmnd,
8085 * the FCP rsp, a SGE for each, and a SGE for up to
8086 * cfg_sg_seg_cnt data segments.
8088 phba->cfg_sg_dma_buf_size = sizeof(struct fcp_cmnd) +
8089 sizeof(struct fcp_rsp) +
8090 ((phba->cfg_sg_seg_cnt + extra) *
8091 sizeof(struct sli4_sge));
8093 /* Total SGEs for scsi_sg_list */
8094 phba->cfg_total_seg_cnt = phba->cfg_sg_seg_cnt + extra;
8095 phba->cfg_scsi_seg_cnt = phba->cfg_sg_seg_cnt;
8098 * NOTE: if (phba->cfg_sg_seg_cnt + extra) <= 256 we only
8099 * need to post 1 page for the SGL.
8103 if (phba->cfg_xpsgl && !phba->nvmet_support)
8104 phba->cfg_sg_dma_buf_size = LPFC_DEFAULT_XPSGL_SIZE;
8105 else if (phba->cfg_sg_dma_buf_size <= LPFC_MIN_SG_SLI4_BUF_SZ)
8106 phba->cfg_sg_dma_buf_size = LPFC_MIN_SG_SLI4_BUF_SZ;
8108 phba->cfg_sg_dma_buf_size =
8109 SLI4_PAGE_ALIGN(phba->cfg_sg_dma_buf_size);
8111 phba->border_sge_num = phba->cfg_sg_dma_buf_size /
8112 sizeof(struct sli4_sge);
8114 /* Limit to LPFC_MAX_NVME_SEG_CNT for NVME. */
8115 if (phba->cfg_enable_fc4_type & LPFC_ENABLE_NVME) {
8116 if (phba->cfg_sg_seg_cnt > LPFC_MAX_NVME_SEG_CNT) {
8117 lpfc_printf_log(phba, KERN_INFO, LOG_NVME | LOG_INIT,
8118 "6300 Reducing NVME sg segment "
8120 LPFC_MAX_NVME_SEG_CNT);
8121 phba->cfg_nvme_seg_cnt = LPFC_MAX_NVME_SEG_CNT;
8123 phba->cfg_nvme_seg_cnt = phba->cfg_sg_seg_cnt;
8126 lpfc_printf_log(phba, KERN_INFO, LOG_INIT | LOG_FCP,
8127 "9087 sg_seg_cnt:%d dmabuf_size:%d "
8128 "total:%d scsi:%d nvme:%d\n",
8129 phba->cfg_sg_seg_cnt, phba->cfg_sg_dma_buf_size,
8130 phba->cfg_total_seg_cnt, phba->cfg_scsi_seg_cnt,
8131 phba->cfg_nvme_seg_cnt);
8133 if (phba->cfg_sg_dma_buf_size < SLI4_PAGE_SIZE)
8134 i = phba->cfg_sg_dma_buf_size;
8138 phba->lpfc_sg_dma_buf_pool =
8139 dma_pool_create("lpfc_sg_dma_buf_pool",
8141 phba->cfg_sg_dma_buf_size,
8143 if (!phba->lpfc_sg_dma_buf_pool)
8144 goto out_free_bsmbx;
8146 phba->lpfc_cmd_rsp_buf_pool =
8147 dma_pool_create("lpfc_cmd_rsp_buf_pool",
8149 sizeof(struct fcp_cmnd) +
8150 sizeof(struct fcp_rsp),
8152 if (!phba->lpfc_cmd_rsp_buf_pool)
8153 goto out_free_sg_dma_buf;
8155 mempool_free(mboxq, phba->mbox_mem_pool);
8157 /* Verify OAS is supported */
8158 lpfc_sli4_oas_verify(phba);
8160 /* Verify RAS support on adapter */
8161 lpfc_sli4_ras_init(phba);
8163 /* Verify all the SLI4 queues */
8164 rc = lpfc_sli4_queue_verify(phba);
8166 goto out_free_cmd_rsp_buf;
8168 /* Create driver internal CQE event pool */
8169 rc = lpfc_sli4_cq_event_pool_create(phba);
8171 goto out_free_cmd_rsp_buf;
8173 /* Initialize sgl lists per host */
8174 lpfc_init_sgl_list(phba);
8176 /* Allocate and initialize active sgl array */
8177 rc = lpfc_init_active_sgl_array(phba);
8179 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
8180 "1430 Failed to initialize sgl list.\n");
8181 goto out_destroy_cq_event_pool;
8183 rc = lpfc_sli4_init_rpi_hdrs(phba);
8185 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
8186 "1432 Failed to initialize rpi headers.\n");
8187 goto out_free_active_sgl;
8190 /* Allocate eligible FCF bmask memory for FCF roundrobin failover */
8191 longs = (LPFC_SLI4_FCF_TBL_INDX_MAX + BITS_PER_LONG - 1)/BITS_PER_LONG;
8192 phba->fcf.fcf_rr_bmask = kcalloc(longs, sizeof(unsigned long),
8194 if (!phba->fcf.fcf_rr_bmask) {
8195 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
8196 "2759 Failed allocate memory for FCF round "
8197 "robin failover bmask\n");
8199 goto out_remove_rpi_hdrs;
8202 phba->sli4_hba.hba_eq_hdl = kcalloc(phba->cfg_irq_chann,
8203 sizeof(struct lpfc_hba_eq_hdl),
8205 if (!phba->sli4_hba.hba_eq_hdl) {
8206 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
8207 "2572 Failed allocate memory for "
8208 "fast-path per-EQ handle array\n");
8210 goto out_free_fcf_rr_bmask;
8213 phba->sli4_hba.cpu_map = kcalloc(phba->sli4_hba.num_possible_cpu,
8214 sizeof(struct lpfc_vector_map_info),
8216 if (!phba->sli4_hba.cpu_map) {
8217 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
8218 "3327 Failed allocate memory for msi-x "
8219 "interrupt vector mapping\n");
8221 goto out_free_hba_eq_hdl;
8224 phba->sli4_hba.eq_info = alloc_percpu(struct lpfc_eq_intr_info);
8225 if (!phba->sli4_hba.eq_info) {
8226 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
8227 "3321 Failed allocation for per_cpu stats\n");
8229 goto out_free_hba_cpu_map;
8232 phba->sli4_hba.idle_stat = kcalloc(phba->sli4_hba.num_possible_cpu,
8233 sizeof(*phba->sli4_hba.idle_stat),
8235 if (!phba->sli4_hba.idle_stat) {
8236 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
8237 "3390 Failed allocation for idle_stat\n");
8239 goto out_free_hba_eq_info;
8242 #ifdef CONFIG_SCSI_LPFC_DEBUG_FS
8243 phba->sli4_hba.c_stat = alloc_percpu(struct lpfc_hdwq_stat);
8244 if (!phba->sli4_hba.c_stat) {
8245 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
8246 "3332 Failed allocating per cpu hdwq stats\n");
8248 goto out_free_hba_idle_stat;
8252 phba->cmf_stat = alloc_percpu(struct lpfc_cgn_stat);
8253 if (!phba->cmf_stat) {
8254 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
8255 "3331 Failed allocating per cpu cgn stats\n");
8257 goto out_free_hba_hdwq_info;
8261 * Enable sr-iov virtual functions if supported and configured
8262 * through the module parameter.
8264 if (phba->cfg_sriov_nr_virtfn > 0) {
8265 rc = lpfc_sli_probe_sriov_nr_virtfn(phba,
8266 phba->cfg_sriov_nr_virtfn);
8268 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
8269 "3020 Requested number of SR-IOV "
8270 "virtual functions (%d) is not "
8272 phba->cfg_sriov_nr_virtfn);
8273 phba->cfg_sriov_nr_virtfn = 0;
8279 out_free_hba_hdwq_info:
8280 #ifdef CONFIG_SCSI_LPFC_DEBUG_FS
8281 free_percpu(phba->sli4_hba.c_stat);
8282 out_free_hba_idle_stat:
8284 kfree(phba->sli4_hba.idle_stat);
8285 out_free_hba_eq_info:
8286 free_percpu(phba->sli4_hba.eq_info);
8287 out_free_hba_cpu_map:
8288 kfree(phba->sli4_hba.cpu_map);
8289 out_free_hba_eq_hdl:
8290 kfree(phba->sli4_hba.hba_eq_hdl);
8291 out_free_fcf_rr_bmask:
8292 kfree(phba->fcf.fcf_rr_bmask);
8293 out_remove_rpi_hdrs:
8294 lpfc_sli4_remove_rpi_hdrs(phba);
8295 out_free_active_sgl:
8296 lpfc_free_active_sgl(phba);
8297 out_destroy_cq_event_pool:
8298 lpfc_sli4_cq_event_pool_destroy(phba);
8299 out_free_cmd_rsp_buf:
8300 dma_pool_destroy(phba->lpfc_cmd_rsp_buf_pool);
8301 phba->lpfc_cmd_rsp_buf_pool = NULL;
8302 out_free_sg_dma_buf:
8303 dma_pool_destroy(phba->lpfc_sg_dma_buf_pool);
8304 phba->lpfc_sg_dma_buf_pool = NULL;
8306 lpfc_destroy_bootstrap_mbox(phba);
8308 lpfc_mem_free(phba);
8313 * lpfc_sli4_driver_resource_unset - Unset drvr internal resources for SLI4 dev
8314 * @phba: pointer to lpfc hba data structure.
8316 * This routine is invoked to unset the driver internal resources set up
8317 * specific for supporting the SLI-4 HBA device it attached to.
8320 lpfc_sli4_driver_resource_unset(struct lpfc_hba *phba)
8322 struct lpfc_fcf_conn_entry *conn_entry, *next_conn_entry;
8324 free_percpu(phba->sli4_hba.eq_info);
8325 #ifdef CONFIG_SCSI_LPFC_DEBUG_FS
8326 free_percpu(phba->sli4_hba.c_stat);
8328 free_percpu(phba->cmf_stat);
8329 kfree(phba->sli4_hba.idle_stat);
8331 /* Free memory allocated for msi-x interrupt vector to CPU mapping */
8332 kfree(phba->sli4_hba.cpu_map);
8333 phba->sli4_hba.num_possible_cpu = 0;
8334 phba->sli4_hba.num_present_cpu = 0;
8335 phba->sli4_hba.curr_disp_cpu = 0;
8336 cpumask_clear(&phba->sli4_hba.irq_aff_mask);
8338 /* Free memory allocated for fast-path work queue handles */
8339 kfree(phba->sli4_hba.hba_eq_hdl);
8341 /* Free the allocated rpi headers. */
8342 lpfc_sli4_remove_rpi_hdrs(phba);
8343 lpfc_sli4_remove_rpis(phba);
8345 /* Free eligible FCF index bmask */
8346 kfree(phba->fcf.fcf_rr_bmask);
8348 /* Free the ELS sgl list */
8349 lpfc_free_active_sgl(phba);
8350 lpfc_free_els_sgl_list(phba);
8351 lpfc_free_nvmet_sgl_list(phba);
8353 /* Free the completion queue EQ event pool */
8354 lpfc_sli4_cq_event_release_all(phba);
8355 lpfc_sli4_cq_event_pool_destroy(phba);
8357 /* Release resource identifiers. */
8358 lpfc_sli4_dealloc_resource_identifiers(phba);
8360 /* Free the bsmbx region. */
8361 lpfc_destroy_bootstrap_mbox(phba);
8363 /* Free the SLI Layer memory with SLI4 HBAs */
8364 lpfc_mem_free_all(phba);
8366 /* Free the current connect table */
8367 list_for_each_entry_safe(conn_entry, next_conn_entry,
8368 &phba->fcf_conn_rec_list, list) {
8369 list_del_init(&conn_entry->list);
8377 * lpfc_init_api_table_setup - Set up init api function jump table
8378 * @phba: The hba struct for which this call is being executed.
8379 * @dev_grp: The HBA PCI-Device group number.
8381 * This routine sets up the device INIT interface API function jump table
8384 * Returns: 0 - success, -ENODEV - failure.
8387 lpfc_init_api_table_setup(struct lpfc_hba *phba, uint8_t dev_grp)
8389 phba->lpfc_hba_init_link = lpfc_hba_init_link;
8390 phba->lpfc_hba_down_link = lpfc_hba_down_link;
8391 phba->lpfc_selective_reset = lpfc_selective_reset;
8393 case LPFC_PCI_DEV_LP:
8394 phba->lpfc_hba_down_post = lpfc_hba_down_post_s3;
8395 phba->lpfc_handle_eratt = lpfc_handle_eratt_s3;
8396 phba->lpfc_stop_port = lpfc_stop_port_s3;
8398 case LPFC_PCI_DEV_OC:
8399 phba->lpfc_hba_down_post = lpfc_hba_down_post_s4;
8400 phba->lpfc_handle_eratt = lpfc_handle_eratt_s4;
8401 phba->lpfc_stop_port = lpfc_stop_port_s4;
8404 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
8405 "1431 Invalid HBA PCI-device group: 0x%x\n",
8413 * lpfc_setup_driver_resource_phase2 - Phase2 setup driver internal resources.
8414 * @phba: pointer to lpfc hba data structure.
8416 * This routine is invoked to set up the driver internal resources after the
8417 * device specific resource setup to support the HBA device it attached to.
8421 * other values - error
8424 lpfc_setup_driver_resource_phase2(struct lpfc_hba *phba)
8428 /* Startup the kernel thread for this host adapter. */
8429 phba->worker_thread = kthread_run(lpfc_do_work, phba,
8430 "lpfc_worker_%d", phba->brd_no);
8431 if (IS_ERR(phba->worker_thread)) {
8432 error = PTR_ERR(phba->worker_thread);
8440 * lpfc_unset_driver_resource_phase2 - Phase2 unset driver internal resources.
8441 * @phba: pointer to lpfc hba data structure.
8443 * This routine is invoked to unset the driver internal resources set up after
8444 * the device specific resource setup for supporting the HBA device it
8448 lpfc_unset_driver_resource_phase2(struct lpfc_hba *phba)
8451 flush_workqueue(phba->wq);
8452 destroy_workqueue(phba->wq);
8456 /* Stop kernel worker thread */
8457 if (phba->worker_thread)
8458 kthread_stop(phba->worker_thread);
8462 * lpfc_free_iocb_list - Free iocb list.
8463 * @phba: pointer to lpfc hba data structure.
8465 * This routine is invoked to free the driver's IOCB list and memory.
8468 lpfc_free_iocb_list(struct lpfc_hba *phba)
8470 struct lpfc_iocbq *iocbq_entry = NULL, *iocbq_next = NULL;
8472 spin_lock_irq(&phba->hbalock);
8473 list_for_each_entry_safe(iocbq_entry, iocbq_next,
8474 &phba->lpfc_iocb_list, list) {
8475 list_del(&iocbq_entry->list);
8477 phba->total_iocbq_bufs--;
8479 spin_unlock_irq(&phba->hbalock);
8485 * lpfc_init_iocb_list - Allocate and initialize iocb list.
8486 * @phba: pointer to lpfc hba data structure.
8487 * @iocb_count: number of requested iocbs
8489 * This routine is invoked to allocate and initizlize the driver's IOCB
8490 * list and set up the IOCB tag array accordingly.
8494 * other values - error
8497 lpfc_init_iocb_list(struct lpfc_hba *phba, int iocb_count)
8499 struct lpfc_iocbq *iocbq_entry = NULL;
8503 /* Initialize and populate the iocb list per host. */
8504 INIT_LIST_HEAD(&phba->lpfc_iocb_list);
8505 for (i = 0; i < iocb_count; i++) {
8506 iocbq_entry = kzalloc(sizeof(struct lpfc_iocbq), GFP_KERNEL);
8507 if (iocbq_entry == NULL) {
8508 printk(KERN_ERR "%s: only allocated %d iocbs of "
8509 "expected %d count. Unloading driver.\n",
8510 __func__, i, iocb_count);
8511 goto out_free_iocbq;
8514 iotag = lpfc_sli_next_iotag(phba, iocbq_entry);
8517 printk(KERN_ERR "%s: failed to allocate IOTAG. "
8518 "Unloading driver.\n", __func__);
8519 goto out_free_iocbq;
8521 iocbq_entry->sli4_lxritag = NO_XRI;
8522 iocbq_entry->sli4_xritag = NO_XRI;
8524 spin_lock_irq(&phba->hbalock);
8525 list_add(&iocbq_entry->list, &phba->lpfc_iocb_list);
8526 phba->total_iocbq_bufs++;
8527 spin_unlock_irq(&phba->hbalock);
8533 lpfc_free_iocb_list(phba);
8539 * lpfc_free_sgl_list - Free a given sgl list.
8540 * @phba: pointer to lpfc hba data structure.
8541 * @sglq_list: pointer to the head of sgl list.
8543 * This routine is invoked to free a give sgl list and memory.
8546 lpfc_free_sgl_list(struct lpfc_hba *phba, struct list_head *sglq_list)
8548 struct lpfc_sglq *sglq_entry = NULL, *sglq_next = NULL;
8550 list_for_each_entry_safe(sglq_entry, sglq_next, sglq_list, list) {
8551 list_del(&sglq_entry->list);
8552 lpfc_mbuf_free(phba, sglq_entry->virt, sglq_entry->phys);
8558 * lpfc_free_els_sgl_list - Free els sgl list.
8559 * @phba: pointer to lpfc hba data structure.
8561 * This routine is invoked to free the driver's els sgl list and memory.
8564 lpfc_free_els_sgl_list(struct lpfc_hba *phba)
8566 LIST_HEAD(sglq_list);
8568 /* Retrieve all els sgls from driver list */
8569 spin_lock_irq(&phba->sli4_hba.sgl_list_lock);
8570 list_splice_init(&phba->sli4_hba.lpfc_els_sgl_list, &sglq_list);
8571 spin_unlock_irq(&phba->sli4_hba.sgl_list_lock);
8573 /* Now free the sgl list */
8574 lpfc_free_sgl_list(phba, &sglq_list);
8578 * lpfc_free_nvmet_sgl_list - Free nvmet sgl list.
8579 * @phba: pointer to lpfc hba data structure.
8581 * This routine is invoked to free the driver's nvmet sgl list and memory.
8584 lpfc_free_nvmet_sgl_list(struct lpfc_hba *phba)
8586 struct lpfc_sglq *sglq_entry = NULL, *sglq_next = NULL;
8587 LIST_HEAD(sglq_list);
8589 /* Retrieve all nvmet sgls from driver list */
8590 spin_lock_irq(&phba->hbalock);
8591 spin_lock(&phba->sli4_hba.sgl_list_lock);
8592 list_splice_init(&phba->sli4_hba.lpfc_nvmet_sgl_list, &sglq_list);
8593 spin_unlock(&phba->sli4_hba.sgl_list_lock);
8594 spin_unlock_irq(&phba->hbalock);
8596 /* Now free the sgl list */
8597 list_for_each_entry_safe(sglq_entry, sglq_next, &sglq_list, list) {
8598 list_del(&sglq_entry->list);
8599 lpfc_nvmet_buf_free(phba, sglq_entry->virt, sglq_entry->phys);
8603 /* Update the nvmet_xri_cnt to reflect no current sgls.
8604 * The next initialization cycle sets the count and allocates
8605 * the sgls over again.
8607 phba->sli4_hba.nvmet_xri_cnt = 0;
8611 * lpfc_init_active_sgl_array - Allocate the buf to track active ELS XRIs.
8612 * @phba: pointer to lpfc hba data structure.
8614 * This routine is invoked to allocate the driver's active sgl memory.
8615 * This array will hold the sglq_entry's for active IOs.
8618 lpfc_init_active_sgl_array(struct lpfc_hba *phba)
8621 size = sizeof(struct lpfc_sglq *);
8622 size *= phba->sli4_hba.max_cfg_param.max_xri;
8624 phba->sli4_hba.lpfc_sglq_active_list =
8625 kzalloc(size, GFP_KERNEL);
8626 if (!phba->sli4_hba.lpfc_sglq_active_list)
8632 * lpfc_free_active_sgl - Free the buf that tracks active ELS XRIs.
8633 * @phba: pointer to lpfc hba data structure.
8635 * This routine is invoked to walk through the array of active sglq entries
8636 * and free all of the resources.
8637 * This is just a place holder for now.
8640 lpfc_free_active_sgl(struct lpfc_hba *phba)
8642 kfree(phba->sli4_hba.lpfc_sglq_active_list);
8646 * lpfc_init_sgl_list - Allocate and initialize sgl list.
8647 * @phba: pointer to lpfc hba data structure.
8649 * This routine is invoked to allocate and initizlize the driver's sgl
8650 * list and set up the sgl xritag tag array accordingly.
8654 lpfc_init_sgl_list(struct lpfc_hba *phba)
8656 /* Initialize and populate the sglq list per host/VF. */
8657 INIT_LIST_HEAD(&phba->sli4_hba.lpfc_els_sgl_list);
8658 INIT_LIST_HEAD(&phba->sli4_hba.lpfc_abts_els_sgl_list);
8659 INIT_LIST_HEAD(&phba->sli4_hba.lpfc_nvmet_sgl_list);
8660 INIT_LIST_HEAD(&phba->sli4_hba.lpfc_abts_nvmet_ctx_list);
8662 /* els xri-sgl book keeping */
8663 phba->sli4_hba.els_xri_cnt = 0;
8665 /* nvme xri-buffer book keeping */
8666 phba->sli4_hba.io_xri_cnt = 0;
8670 * lpfc_sli4_init_rpi_hdrs - Post the rpi header memory region to the port
8671 * @phba: pointer to lpfc hba data structure.
8673 * This routine is invoked to post rpi header templates to the
8674 * port for those SLI4 ports that do not support extents. This routine
8675 * posts a PAGE_SIZE memory region to the port to hold up to
8676 * PAGE_SIZE modulo 64 rpi context headers. This is an initialization routine
8677 * and should be called only when interrupts are disabled.
8681 * -ERROR - otherwise.
8684 lpfc_sli4_init_rpi_hdrs(struct lpfc_hba *phba)
8687 struct lpfc_rpi_hdr *rpi_hdr;
8689 INIT_LIST_HEAD(&phba->sli4_hba.lpfc_rpi_hdr_list);
8690 if (!phba->sli4_hba.rpi_hdrs_in_use)
8692 if (phba->sli4_hba.extents_in_use)
8695 rpi_hdr = lpfc_sli4_create_rpi_hdr(phba);
8697 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
8698 "0391 Error during rpi post operation\n");
8699 lpfc_sli4_remove_rpis(phba);
8707 * lpfc_sli4_create_rpi_hdr - Allocate an rpi header memory region
8708 * @phba: pointer to lpfc hba data structure.
8710 * This routine is invoked to allocate a single 4KB memory region to
8711 * support rpis and stores them in the phba. This single region
8712 * provides support for up to 64 rpis. The region is used globally
8716 * A valid rpi hdr on success.
8717 * A NULL pointer on any failure.
8719 struct lpfc_rpi_hdr *
8720 lpfc_sli4_create_rpi_hdr(struct lpfc_hba *phba)
8722 uint16_t rpi_limit, curr_rpi_range;
8723 struct lpfc_dmabuf *dmabuf;
8724 struct lpfc_rpi_hdr *rpi_hdr;
8727 * If the SLI4 port supports extents, posting the rpi header isn't
8728 * required. Set the expected maximum count and let the actual value
8729 * get set when extents are fully allocated.
8731 if (!phba->sli4_hba.rpi_hdrs_in_use)
8733 if (phba->sli4_hba.extents_in_use)
8736 /* The limit on the logical index is just the max_rpi count. */
8737 rpi_limit = phba->sli4_hba.max_cfg_param.max_rpi;
8739 spin_lock_irq(&phba->hbalock);
8741 * Establish the starting RPI in this header block. The starting
8742 * rpi is normalized to a zero base because the physical rpi is
8745 curr_rpi_range = phba->sli4_hba.next_rpi;
8746 spin_unlock_irq(&phba->hbalock);
8748 /* Reached full RPI range */
8749 if (curr_rpi_range == rpi_limit)
8753 * First allocate the protocol header region for the port. The
8754 * port expects a 4KB DMA-mapped memory region that is 4K aligned.
8756 dmabuf = kzalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
8760 dmabuf->virt = dma_alloc_coherent(&phba->pcidev->dev,
8761 LPFC_HDR_TEMPLATE_SIZE,
8762 &dmabuf->phys, GFP_KERNEL);
8763 if (!dmabuf->virt) {
8765 goto err_free_dmabuf;
8768 if (!IS_ALIGNED(dmabuf->phys, LPFC_HDR_TEMPLATE_SIZE)) {
8770 goto err_free_coherent;
8773 /* Save the rpi header data for cleanup later. */
8774 rpi_hdr = kzalloc(sizeof(struct lpfc_rpi_hdr), GFP_KERNEL);
8776 goto err_free_coherent;
8778 rpi_hdr->dmabuf = dmabuf;
8779 rpi_hdr->len = LPFC_HDR_TEMPLATE_SIZE;
8780 rpi_hdr->page_count = 1;
8781 spin_lock_irq(&phba->hbalock);
8783 /* The rpi_hdr stores the logical index only. */
8784 rpi_hdr->start_rpi = curr_rpi_range;
8785 rpi_hdr->next_rpi = phba->sli4_hba.next_rpi + LPFC_RPI_HDR_COUNT;
8786 list_add_tail(&rpi_hdr->list, &phba->sli4_hba.lpfc_rpi_hdr_list);
8788 spin_unlock_irq(&phba->hbalock);
8792 dma_free_coherent(&phba->pcidev->dev, LPFC_HDR_TEMPLATE_SIZE,
8793 dmabuf->virt, dmabuf->phys);
8800 * lpfc_sli4_remove_rpi_hdrs - Remove all rpi header memory regions
8801 * @phba: pointer to lpfc hba data structure.
8803 * This routine is invoked to remove all memory resources allocated
8804 * to support rpis for SLI4 ports not supporting extents. This routine
8805 * presumes the caller has released all rpis consumed by fabric or port
8806 * logins and is prepared to have the header pages removed.
8809 lpfc_sli4_remove_rpi_hdrs(struct lpfc_hba *phba)
8811 struct lpfc_rpi_hdr *rpi_hdr, *next_rpi_hdr;
8813 if (!phba->sli4_hba.rpi_hdrs_in_use)
8816 list_for_each_entry_safe(rpi_hdr, next_rpi_hdr,
8817 &phba->sli4_hba.lpfc_rpi_hdr_list, list) {
8818 list_del(&rpi_hdr->list);
8819 dma_free_coherent(&phba->pcidev->dev, rpi_hdr->len,
8820 rpi_hdr->dmabuf->virt, rpi_hdr->dmabuf->phys);
8821 kfree(rpi_hdr->dmabuf);
8825 /* There are no rpis available to the port now. */
8826 phba->sli4_hba.next_rpi = 0;
8830 * lpfc_hba_alloc - Allocate driver hba data structure for a device.
8831 * @pdev: pointer to pci device data structure.
8833 * This routine is invoked to allocate the driver hba data structure for an
8834 * HBA device. If the allocation is successful, the phba reference to the
8835 * PCI device data structure is set.
8838 * pointer to @phba - successful
8841 static struct lpfc_hba *
8842 lpfc_hba_alloc(struct pci_dev *pdev)
8844 struct lpfc_hba *phba;
8846 /* Allocate memory for HBA structure */
8847 phba = kzalloc(sizeof(struct lpfc_hba), GFP_KERNEL);
8849 dev_err(&pdev->dev, "failed to allocate hba struct\n");
8853 /* Set reference to PCI device in HBA structure */
8854 phba->pcidev = pdev;
8856 /* Assign an unused board number */
8857 phba->brd_no = lpfc_get_instance();
8858 if (phba->brd_no < 0) {
8862 phba->eratt_poll_interval = LPFC_ERATT_POLL_INTERVAL;
8864 spin_lock_init(&phba->ct_ev_lock);
8865 INIT_LIST_HEAD(&phba->ct_ev_waiters);
8871 * lpfc_hba_free - Free driver hba data structure with a device.
8872 * @phba: pointer to lpfc hba data structure.
8874 * This routine is invoked to free the driver hba data structure with an
8878 lpfc_hba_free(struct lpfc_hba *phba)
8880 if (phba->sli_rev == LPFC_SLI_REV4)
8881 kfree(phba->sli4_hba.hdwq);
8883 /* Release the driver assigned board number */
8884 idr_remove(&lpfc_hba_index, phba->brd_no);
8886 /* Free memory allocated with sli3 rings */
8887 kfree(phba->sli.sli3_ring);
8888 phba->sli.sli3_ring = NULL;
8895 * lpfc_create_shost - Create hba physical port with associated scsi host.
8896 * @phba: pointer to lpfc hba data structure.
8898 * This routine is invoked to create HBA physical port and associate a SCSI
8903 * other values - error
8906 lpfc_create_shost(struct lpfc_hba *phba)
8908 struct lpfc_vport *vport;
8909 struct Scsi_Host *shost;
8911 /* Initialize HBA FC structure */
8912 phba->fc_edtov = FF_DEF_EDTOV;
8913 phba->fc_ratov = FF_DEF_RATOV;
8914 phba->fc_altov = FF_DEF_ALTOV;
8915 phba->fc_arbtov = FF_DEF_ARBTOV;
8917 atomic_set(&phba->sdev_cnt, 0);
8918 vport = lpfc_create_port(phba, phba->brd_no, &phba->pcidev->dev);
8922 shost = lpfc_shost_from_vport(vport);
8923 phba->pport = vport;
8925 if (phba->nvmet_support) {
8926 /* Only 1 vport (pport) will support NVME target */
8927 phba->targetport = NULL;
8928 phba->cfg_enable_fc4_type = LPFC_ENABLE_NVME;
8929 lpfc_printf_log(phba, KERN_INFO, LOG_INIT | LOG_NVME_DISC,
8930 "6076 NVME Target Found\n");
8933 lpfc_debugfs_initialize(vport);
8934 /* Put reference to SCSI host to driver's device private data */
8935 pci_set_drvdata(phba->pcidev, shost);
8938 * At this point we are fully registered with PSA. In addition,
8939 * any initial discovery should be completed.
8941 vport->load_flag |= FC_ALLOW_FDMI;
8942 if (phba->cfg_enable_SmartSAN ||
8943 (phba->cfg_fdmi_on == LPFC_FDMI_SUPPORT)) {
8945 /* Setup appropriate attribute masks */
8946 vport->fdmi_hba_mask = LPFC_FDMI2_HBA_ATTR;
8947 if (phba->cfg_enable_SmartSAN)
8948 vport->fdmi_port_mask = LPFC_FDMI2_SMART_ATTR;
8950 vport->fdmi_port_mask = LPFC_FDMI2_PORT_ATTR;
8956 * lpfc_destroy_shost - Destroy hba physical port with associated scsi host.
8957 * @phba: pointer to lpfc hba data structure.
8959 * This routine is invoked to destroy HBA physical port and the associated
8963 lpfc_destroy_shost(struct lpfc_hba *phba)
8965 struct lpfc_vport *vport = phba->pport;
8967 /* Destroy physical port that associated with the SCSI host */
8968 destroy_port(vport);
8974 * lpfc_setup_bg - Setup Block guard structures and debug areas.
8975 * @phba: pointer to lpfc hba data structure.
8976 * @shost: the shost to be used to detect Block guard settings.
8978 * This routine sets up the local Block guard protocol settings for @shost.
8979 * This routine also allocates memory for debugging bg buffers.
8982 lpfc_setup_bg(struct lpfc_hba *phba, struct Scsi_Host *shost)
8987 if (phba->cfg_prot_mask && phba->cfg_prot_guard) {
8988 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
8989 "1478 Registering BlockGuard with the "
8992 old_mask = phba->cfg_prot_mask;
8993 old_guard = phba->cfg_prot_guard;
8995 /* Only allow supported values */
8996 phba->cfg_prot_mask &= (SHOST_DIF_TYPE1_PROTECTION |
8997 SHOST_DIX_TYPE0_PROTECTION |
8998 SHOST_DIX_TYPE1_PROTECTION);
8999 phba->cfg_prot_guard &= (SHOST_DIX_GUARD_IP |
9000 SHOST_DIX_GUARD_CRC);
9002 /* DIF Type 1 protection for profiles AST1/C1 is end to end */
9003 if (phba->cfg_prot_mask == SHOST_DIX_TYPE1_PROTECTION)
9004 phba->cfg_prot_mask |= SHOST_DIF_TYPE1_PROTECTION;
9006 if (phba->cfg_prot_mask && phba->cfg_prot_guard) {
9007 if ((old_mask != phba->cfg_prot_mask) ||
9008 (old_guard != phba->cfg_prot_guard))
9009 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
9010 "1475 Registering BlockGuard with the "
9011 "SCSI layer: mask %d guard %d\n",
9012 phba->cfg_prot_mask,
9013 phba->cfg_prot_guard);
9015 scsi_host_set_prot(shost, phba->cfg_prot_mask);
9016 scsi_host_set_guard(shost, phba->cfg_prot_guard);
9018 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
9019 "1479 Not Registering BlockGuard with the SCSI "
9020 "layer, Bad protection parameters: %d %d\n",
9021 old_mask, old_guard);
9026 * lpfc_post_init_setup - Perform necessary device post initialization setup.
9027 * @phba: pointer to lpfc hba data structure.
9029 * This routine is invoked to perform all the necessary post initialization
9030 * setup for the device.
9033 lpfc_post_init_setup(struct lpfc_hba *phba)
9035 struct Scsi_Host *shost;
9036 struct lpfc_adapter_event_header adapter_event;
9038 /* Get the default values for Model Name and Description */
9039 lpfc_get_hba_model_desc(phba, phba->ModelName, phba->ModelDesc);
9042 * hba setup may have changed the hba_queue_depth so we need to
9043 * adjust the value of can_queue.
9045 shost = pci_get_drvdata(phba->pcidev);
9046 shost->can_queue = phba->cfg_hba_queue_depth - 10;
9048 lpfc_host_attrib_init(shost);
9050 if (phba->cfg_poll & DISABLE_FCP_RING_INT) {
9051 spin_lock_irq(shost->host_lock);
9052 lpfc_poll_start_timer(phba);
9053 spin_unlock_irq(shost->host_lock);
9056 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
9057 "0428 Perform SCSI scan\n");
9058 /* Send board arrival event to upper layer */
9059 adapter_event.event_type = FC_REG_ADAPTER_EVENT;
9060 adapter_event.subcategory = LPFC_EVENT_ARRIVAL;
9061 fc_host_post_vendor_event(shost, fc_get_event_number(),
9062 sizeof(adapter_event),
9063 (char *) &adapter_event,
9069 * lpfc_sli_pci_mem_setup - Setup SLI3 HBA PCI memory space.
9070 * @phba: pointer to lpfc hba data structure.
9072 * This routine is invoked to set up the PCI device memory space for device
9073 * with SLI-3 interface spec.
9077 * other values - error
9080 lpfc_sli_pci_mem_setup(struct lpfc_hba *phba)
9082 struct pci_dev *pdev = phba->pcidev;
9083 unsigned long bar0map_len, bar2map_len;
9091 /* Set the device DMA mask size */
9092 error = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64));
9094 error = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
9099 /* Get the bus address of Bar0 and Bar2 and the number of bytes
9100 * required by each mapping.
9102 phba->pci_bar0_map = pci_resource_start(pdev, 0);
9103 bar0map_len = pci_resource_len(pdev, 0);
9105 phba->pci_bar2_map = pci_resource_start(pdev, 2);
9106 bar2map_len = pci_resource_len(pdev, 2);
9108 /* Map HBA SLIM to a kernel virtual address. */
9109 phba->slim_memmap_p = ioremap(phba->pci_bar0_map, bar0map_len);
9110 if (!phba->slim_memmap_p) {
9111 dev_printk(KERN_ERR, &pdev->dev,
9112 "ioremap failed for SLIM memory.\n");
9116 /* Map HBA Control Registers to a kernel virtual address. */
9117 phba->ctrl_regs_memmap_p = ioremap(phba->pci_bar2_map, bar2map_len);
9118 if (!phba->ctrl_regs_memmap_p) {
9119 dev_printk(KERN_ERR, &pdev->dev,
9120 "ioremap failed for HBA control registers.\n");
9121 goto out_iounmap_slim;
9124 /* Allocate memory for SLI-2 structures */
9125 phba->slim2p.virt = dma_alloc_coherent(&pdev->dev, SLI2_SLIM_SIZE,
9126 &phba->slim2p.phys, GFP_KERNEL);
9127 if (!phba->slim2p.virt)
9130 phba->mbox = phba->slim2p.virt + offsetof(struct lpfc_sli2_slim, mbx);
9131 phba->mbox_ext = (phba->slim2p.virt +
9132 offsetof(struct lpfc_sli2_slim, mbx_ext_words));
9133 phba->pcb = (phba->slim2p.virt + offsetof(struct lpfc_sli2_slim, pcb));
9134 phba->IOCBs = (phba->slim2p.virt +
9135 offsetof(struct lpfc_sli2_slim, IOCBs));
9137 phba->hbqslimp.virt = dma_alloc_coherent(&pdev->dev,
9138 lpfc_sli_hbq_size(),
9139 &phba->hbqslimp.phys,
9141 if (!phba->hbqslimp.virt)
9144 hbq_count = lpfc_sli_hbq_count();
9145 ptr = phba->hbqslimp.virt;
9146 for (i = 0; i < hbq_count; ++i) {
9147 phba->hbqs[i].hbq_virt = ptr;
9148 INIT_LIST_HEAD(&phba->hbqs[i].hbq_buffer_list);
9149 ptr += (lpfc_hbq_defs[i]->entry_count *
9150 sizeof(struct lpfc_hbq_entry));
9152 phba->hbqs[LPFC_ELS_HBQ].hbq_alloc_buffer = lpfc_els_hbq_alloc;
9153 phba->hbqs[LPFC_ELS_HBQ].hbq_free_buffer = lpfc_els_hbq_free;
9155 memset(phba->hbqslimp.virt, 0, lpfc_sli_hbq_size());
9157 phba->MBslimaddr = phba->slim_memmap_p;
9158 phba->HAregaddr = phba->ctrl_regs_memmap_p + HA_REG_OFFSET;
9159 phba->CAregaddr = phba->ctrl_regs_memmap_p + CA_REG_OFFSET;
9160 phba->HSregaddr = phba->ctrl_regs_memmap_p + HS_REG_OFFSET;
9161 phba->HCregaddr = phba->ctrl_regs_memmap_p + HC_REG_OFFSET;
9166 dma_free_coherent(&pdev->dev, SLI2_SLIM_SIZE,
9167 phba->slim2p.virt, phba->slim2p.phys);
9169 iounmap(phba->ctrl_regs_memmap_p);
9171 iounmap(phba->slim_memmap_p);
9177 * lpfc_sli_pci_mem_unset - Unset SLI3 HBA PCI memory space.
9178 * @phba: pointer to lpfc hba data structure.
9180 * This routine is invoked to unset the PCI device memory space for device
9181 * with SLI-3 interface spec.
9184 lpfc_sli_pci_mem_unset(struct lpfc_hba *phba)
9186 struct pci_dev *pdev;
9188 /* Obtain PCI device reference */
9192 pdev = phba->pcidev;
9194 /* Free coherent DMA memory allocated */
9195 dma_free_coherent(&pdev->dev, lpfc_sli_hbq_size(),
9196 phba->hbqslimp.virt, phba->hbqslimp.phys);
9197 dma_free_coherent(&pdev->dev, SLI2_SLIM_SIZE,
9198 phba->slim2p.virt, phba->slim2p.phys);
9200 /* I/O memory unmap */
9201 iounmap(phba->ctrl_regs_memmap_p);
9202 iounmap(phba->slim_memmap_p);
9208 * lpfc_sli4_post_status_check - Wait for SLI4 POST done and check status
9209 * @phba: pointer to lpfc hba data structure.
9211 * This routine is invoked to wait for SLI4 device Power On Self Test (POST)
9212 * done and check status.
9214 * Return 0 if successful, otherwise -ENODEV.
9217 lpfc_sli4_post_status_check(struct lpfc_hba *phba)
9219 struct lpfc_register portsmphr_reg, uerrlo_reg, uerrhi_reg;
9220 struct lpfc_register reg_data;
9221 int i, port_error = 0;
9224 memset(&portsmphr_reg, 0, sizeof(portsmphr_reg));
9225 memset(®_data, 0, sizeof(reg_data));
9226 if (!phba->sli4_hba.PSMPHRregaddr)
9229 /* Wait up to 30 seconds for the SLI Port POST done and ready */
9230 for (i = 0; i < 3000; i++) {
9231 if (lpfc_readl(phba->sli4_hba.PSMPHRregaddr,
9232 &portsmphr_reg.word0) ||
9233 (bf_get(lpfc_port_smphr_perr, &portsmphr_reg))) {
9234 /* Port has a fatal POST error, break out */
9235 port_error = -ENODEV;
9238 if (LPFC_POST_STAGE_PORT_READY ==
9239 bf_get(lpfc_port_smphr_port_status, &portsmphr_reg))
9245 * If there was a port error during POST, then don't proceed with
9246 * other register reads as the data may not be valid. Just exit.
9249 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
9250 "1408 Port Failed POST - portsmphr=0x%x, "
9251 "perr=x%x, sfi=x%x, nip=x%x, ipc=x%x, scr1=x%x, "
9252 "scr2=x%x, hscratch=x%x, pstatus=x%x\n",
9253 portsmphr_reg.word0,
9254 bf_get(lpfc_port_smphr_perr, &portsmphr_reg),
9255 bf_get(lpfc_port_smphr_sfi, &portsmphr_reg),
9256 bf_get(lpfc_port_smphr_nip, &portsmphr_reg),
9257 bf_get(lpfc_port_smphr_ipc, &portsmphr_reg),
9258 bf_get(lpfc_port_smphr_scr1, &portsmphr_reg),
9259 bf_get(lpfc_port_smphr_scr2, &portsmphr_reg),
9260 bf_get(lpfc_port_smphr_host_scratch, &portsmphr_reg),
9261 bf_get(lpfc_port_smphr_port_status, &portsmphr_reg));
9263 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
9264 "2534 Device Info: SLIFamily=0x%x, "
9265 "SLIRev=0x%x, IFType=0x%x, SLIHint_1=0x%x, "
9266 "SLIHint_2=0x%x, FT=0x%x\n",
9267 bf_get(lpfc_sli_intf_sli_family,
9268 &phba->sli4_hba.sli_intf),
9269 bf_get(lpfc_sli_intf_slirev,
9270 &phba->sli4_hba.sli_intf),
9271 bf_get(lpfc_sli_intf_if_type,
9272 &phba->sli4_hba.sli_intf),
9273 bf_get(lpfc_sli_intf_sli_hint1,
9274 &phba->sli4_hba.sli_intf),
9275 bf_get(lpfc_sli_intf_sli_hint2,
9276 &phba->sli4_hba.sli_intf),
9277 bf_get(lpfc_sli_intf_func_type,
9278 &phba->sli4_hba.sli_intf));
9280 * Check for other Port errors during the initialization
9281 * process. Fail the load if the port did not come up
9284 if_type = bf_get(lpfc_sli_intf_if_type,
9285 &phba->sli4_hba.sli_intf);
9287 case LPFC_SLI_INTF_IF_TYPE_0:
9288 phba->sli4_hba.ue_mask_lo =
9289 readl(phba->sli4_hba.u.if_type0.UEMASKLOregaddr);
9290 phba->sli4_hba.ue_mask_hi =
9291 readl(phba->sli4_hba.u.if_type0.UEMASKHIregaddr);
9293 readl(phba->sli4_hba.u.if_type0.UERRLOregaddr);
9295 readl(phba->sli4_hba.u.if_type0.UERRHIregaddr);
9296 if ((~phba->sli4_hba.ue_mask_lo & uerrlo_reg.word0) ||
9297 (~phba->sli4_hba.ue_mask_hi & uerrhi_reg.word0)) {
9298 lpfc_printf_log(phba, KERN_ERR,
9300 "1422 Unrecoverable Error "
9301 "Detected during POST "
9302 "uerr_lo_reg=0x%x, "
9303 "uerr_hi_reg=0x%x, "
9304 "ue_mask_lo_reg=0x%x, "
9305 "ue_mask_hi_reg=0x%x\n",
9308 phba->sli4_hba.ue_mask_lo,
9309 phba->sli4_hba.ue_mask_hi);
9310 port_error = -ENODEV;
9313 case LPFC_SLI_INTF_IF_TYPE_2:
9314 case LPFC_SLI_INTF_IF_TYPE_6:
9315 /* Final checks. The port status should be clean. */
9316 if (lpfc_readl(phba->sli4_hba.u.if_type2.STATUSregaddr,
9318 (bf_get(lpfc_sliport_status_err, ®_data) &&
9319 !bf_get(lpfc_sliport_status_rn, ®_data))) {
9320 phba->work_status[0] =
9321 readl(phba->sli4_hba.u.if_type2.
9323 phba->work_status[1] =
9324 readl(phba->sli4_hba.u.if_type2.
9326 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
9327 "2888 Unrecoverable port error "
9328 "following POST: port status reg "
9329 "0x%x, port_smphr reg 0x%x, "
9330 "error 1=0x%x, error 2=0x%x\n",
9332 portsmphr_reg.word0,
9333 phba->work_status[0],
9334 phba->work_status[1]);
9335 port_error = -ENODEV;
9338 case LPFC_SLI_INTF_IF_TYPE_1:
9347 * lpfc_sli4_bar0_register_memmap - Set up SLI4 BAR0 register memory map.
9348 * @phba: pointer to lpfc hba data structure.
9349 * @if_type: The SLI4 interface type getting configured.
9351 * This routine is invoked to set up SLI4 BAR0 PCI config space register
9355 lpfc_sli4_bar0_register_memmap(struct lpfc_hba *phba, uint32_t if_type)
9358 case LPFC_SLI_INTF_IF_TYPE_0:
9359 phba->sli4_hba.u.if_type0.UERRLOregaddr =
9360 phba->sli4_hba.conf_regs_memmap_p + LPFC_UERR_STATUS_LO;
9361 phba->sli4_hba.u.if_type0.UERRHIregaddr =
9362 phba->sli4_hba.conf_regs_memmap_p + LPFC_UERR_STATUS_HI;
9363 phba->sli4_hba.u.if_type0.UEMASKLOregaddr =
9364 phba->sli4_hba.conf_regs_memmap_p + LPFC_UE_MASK_LO;
9365 phba->sli4_hba.u.if_type0.UEMASKHIregaddr =
9366 phba->sli4_hba.conf_regs_memmap_p + LPFC_UE_MASK_HI;
9367 phba->sli4_hba.SLIINTFregaddr =
9368 phba->sli4_hba.conf_regs_memmap_p + LPFC_SLI_INTF;
9370 case LPFC_SLI_INTF_IF_TYPE_2:
9371 phba->sli4_hba.u.if_type2.EQDregaddr =
9372 phba->sli4_hba.conf_regs_memmap_p +
9373 LPFC_CTL_PORT_EQ_DELAY_OFFSET;
9374 phba->sli4_hba.u.if_type2.ERR1regaddr =
9375 phba->sli4_hba.conf_regs_memmap_p +
9376 LPFC_CTL_PORT_ER1_OFFSET;
9377 phba->sli4_hba.u.if_type2.ERR2regaddr =
9378 phba->sli4_hba.conf_regs_memmap_p +
9379 LPFC_CTL_PORT_ER2_OFFSET;
9380 phba->sli4_hba.u.if_type2.CTRLregaddr =
9381 phba->sli4_hba.conf_regs_memmap_p +
9382 LPFC_CTL_PORT_CTL_OFFSET;
9383 phba->sli4_hba.u.if_type2.STATUSregaddr =
9384 phba->sli4_hba.conf_regs_memmap_p +
9385 LPFC_CTL_PORT_STA_OFFSET;
9386 phba->sli4_hba.SLIINTFregaddr =
9387 phba->sli4_hba.conf_regs_memmap_p + LPFC_SLI_INTF;
9388 phba->sli4_hba.PSMPHRregaddr =
9389 phba->sli4_hba.conf_regs_memmap_p +
9390 LPFC_CTL_PORT_SEM_OFFSET;
9391 phba->sli4_hba.RQDBregaddr =
9392 phba->sli4_hba.conf_regs_memmap_p +
9393 LPFC_ULP0_RQ_DOORBELL;
9394 phba->sli4_hba.WQDBregaddr =
9395 phba->sli4_hba.conf_regs_memmap_p +
9396 LPFC_ULP0_WQ_DOORBELL;
9397 phba->sli4_hba.CQDBregaddr =
9398 phba->sli4_hba.conf_regs_memmap_p + LPFC_EQCQ_DOORBELL;
9399 phba->sli4_hba.EQDBregaddr = phba->sli4_hba.CQDBregaddr;
9400 phba->sli4_hba.MQDBregaddr =
9401 phba->sli4_hba.conf_regs_memmap_p + LPFC_MQ_DOORBELL;
9402 phba->sli4_hba.BMBXregaddr =
9403 phba->sli4_hba.conf_regs_memmap_p + LPFC_BMBX;
9405 case LPFC_SLI_INTF_IF_TYPE_6:
9406 phba->sli4_hba.u.if_type2.EQDregaddr =
9407 phba->sli4_hba.conf_regs_memmap_p +
9408 LPFC_CTL_PORT_EQ_DELAY_OFFSET;
9409 phba->sli4_hba.u.if_type2.ERR1regaddr =
9410 phba->sli4_hba.conf_regs_memmap_p +
9411 LPFC_CTL_PORT_ER1_OFFSET;
9412 phba->sli4_hba.u.if_type2.ERR2regaddr =
9413 phba->sli4_hba.conf_regs_memmap_p +
9414 LPFC_CTL_PORT_ER2_OFFSET;
9415 phba->sli4_hba.u.if_type2.CTRLregaddr =
9416 phba->sli4_hba.conf_regs_memmap_p +
9417 LPFC_CTL_PORT_CTL_OFFSET;
9418 phba->sli4_hba.u.if_type2.STATUSregaddr =
9419 phba->sli4_hba.conf_regs_memmap_p +
9420 LPFC_CTL_PORT_STA_OFFSET;
9421 phba->sli4_hba.PSMPHRregaddr =
9422 phba->sli4_hba.conf_regs_memmap_p +
9423 LPFC_CTL_PORT_SEM_OFFSET;
9424 phba->sli4_hba.BMBXregaddr =
9425 phba->sli4_hba.conf_regs_memmap_p + LPFC_BMBX;
9427 case LPFC_SLI_INTF_IF_TYPE_1:
9429 dev_printk(KERN_ERR, &phba->pcidev->dev,
9430 "FATAL - unsupported SLI4 interface type - %d\n",
9437 * lpfc_sli4_bar1_register_memmap - Set up SLI4 BAR1 register memory map.
9438 * @phba: pointer to lpfc hba data structure.
9439 * @if_type: sli if type to operate on.
9441 * This routine is invoked to set up SLI4 BAR1 register memory map.
9444 lpfc_sli4_bar1_register_memmap(struct lpfc_hba *phba, uint32_t if_type)
9447 case LPFC_SLI_INTF_IF_TYPE_0:
9448 phba->sli4_hba.PSMPHRregaddr =
9449 phba->sli4_hba.ctrl_regs_memmap_p +
9450 LPFC_SLIPORT_IF0_SMPHR;
9451 phba->sli4_hba.ISRregaddr = phba->sli4_hba.ctrl_regs_memmap_p +
9453 phba->sli4_hba.IMRregaddr = phba->sli4_hba.ctrl_regs_memmap_p +
9455 phba->sli4_hba.ISCRregaddr = phba->sli4_hba.ctrl_regs_memmap_p +
9458 case LPFC_SLI_INTF_IF_TYPE_6:
9459 phba->sli4_hba.RQDBregaddr = phba->sli4_hba.drbl_regs_memmap_p +
9460 LPFC_IF6_RQ_DOORBELL;
9461 phba->sli4_hba.WQDBregaddr = phba->sli4_hba.drbl_regs_memmap_p +
9462 LPFC_IF6_WQ_DOORBELL;
9463 phba->sli4_hba.CQDBregaddr = phba->sli4_hba.drbl_regs_memmap_p +
9464 LPFC_IF6_CQ_DOORBELL;
9465 phba->sli4_hba.EQDBregaddr = phba->sli4_hba.drbl_regs_memmap_p +
9466 LPFC_IF6_EQ_DOORBELL;
9467 phba->sli4_hba.MQDBregaddr = phba->sli4_hba.drbl_regs_memmap_p +
9468 LPFC_IF6_MQ_DOORBELL;
9470 case LPFC_SLI_INTF_IF_TYPE_2:
9471 case LPFC_SLI_INTF_IF_TYPE_1:
9473 dev_err(&phba->pcidev->dev,
9474 "FATAL - unsupported SLI4 interface type - %d\n",
9481 * lpfc_sli4_bar2_register_memmap - Set up SLI4 BAR2 register memory map.
9482 * @phba: pointer to lpfc hba data structure.
9483 * @vf: virtual function number
9485 * This routine is invoked to set up SLI4 BAR2 doorbell register memory map
9486 * based on the given viftual function number, @vf.
9488 * Return 0 if successful, otherwise -ENODEV.
9491 lpfc_sli4_bar2_register_memmap(struct lpfc_hba *phba, uint32_t vf)
9493 if (vf > LPFC_VIR_FUNC_MAX)
9496 phba->sli4_hba.RQDBregaddr = (phba->sli4_hba.drbl_regs_memmap_p +
9497 vf * LPFC_VFR_PAGE_SIZE +
9498 LPFC_ULP0_RQ_DOORBELL);
9499 phba->sli4_hba.WQDBregaddr = (phba->sli4_hba.drbl_regs_memmap_p +
9500 vf * LPFC_VFR_PAGE_SIZE +
9501 LPFC_ULP0_WQ_DOORBELL);
9502 phba->sli4_hba.CQDBregaddr = (phba->sli4_hba.drbl_regs_memmap_p +
9503 vf * LPFC_VFR_PAGE_SIZE +
9504 LPFC_EQCQ_DOORBELL);
9505 phba->sli4_hba.EQDBregaddr = phba->sli4_hba.CQDBregaddr;
9506 phba->sli4_hba.MQDBregaddr = (phba->sli4_hba.drbl_regs_memmap_p +
9507 vf * LPFC_VFR_PAGE_SIZE + LPFC_MQ_DOORBELL);
9508 phba->sli4_hba.BMBXregaddr = (phba->sli4_hba.drbl_regs_memmap_p +
9509 vf * LPFC_VFR_PAGE_SIZE + LPFC_BMBX);
9514 * lpfc_create_bootstrap_mbox - Create the bootstrap mailbox
9515 * @phba: pointer to lpfc hba data structure.
9517 * This routine is invoked to create the bootstrap mailbox
9518 * region consistent with the SLI-4 interface spec. This
9519 * routine allocates all memory necessary to communicate
9520 * mailbox commands to the port and sets up all alignment
9521 * needs. No locks are expected to be held when calling
9526 * -ENOMEM - could not allocated memory.
9529 lpfc_create_bootstrap_mbox(struct lpfc_hba *phba)
9532 struct lpfc_dmabuf *dmabuf;
9533 struct dma_address *dma_address;
9537 dmabuf = kzalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
9542 * The bootstrap mailbox region is comprised of 2 parts
9543 * plus an alignment restriction of 16 bytes.
9545 bmbx_size = sizeof(struct lpfc_bmbx_create) + (LPFC_ALIGN_16_BYTE - 1);
9546 dmabuf->virt = dma_alloc_coherent(&phba->pcidev->dev, bmbx_size,
9547 &dmabuf->phys, GFP_KERNEL);
9548 if (!dmabuf->virt) {
9554 * Initialize the bootstrap mailbox pointers now so that the register
9555 * operations are simple later. The mailbox dma address is required
9556 * to be 16-byte aligned. Also align the virtual memory as each
9557 * maibox is copied into the bmbx mailbox region before issuing the
9558 * command to the port.
9560 phba->sli4_hba.bmbx.dmabuf = dmabuf;
9561 phba->sli4_hba.bmbx.bmbx_size = bmbx_size;
9563 phba->sli4_hba.bmbx.avirt = PTR_ALIGN(dmabuf->virt,
9564 LPFC_ALIGN_16_BYTE);
9565 phba->sli4_hba.bmbx.aphys = ALIGN(dmabuf->phys,
9566 LPFC_ALIGN_16_BYTE);
9569 * Set the high and low physical addresses now. The SLI4 alignment
9570 * requirement is 16 bytes and the mailbox is posted to the port
9571 * as two 30-bit addresses. The other data is a bit marking whether
9572 * the 30-bit address is the high or low address.
9573 * Upcast bmbx aphys to 64bits so shift instruction compiles
9574 * clean on 32 bit machines.
9576 dma_address = &phba->sli4_hba.bmbx.dma_address;
9577 phys_addr = (uint64_t)phba->sli4_hba.bmbx.aphys;
9578 pa_addr = (uint32_t) ((phys_addr >> 34) & 0x3fffffff);
9579 dma_address->addr_hi = (uint32_t) ((pa_addr << 2) |
9580 LPFC_BMBX_BIT1_ADDR_HI);
9582 pa_addr = (uint32_t) ((phba->sli4_hba.bmbx.aphys >> 4) & 0x3fffffff);
9583 dma_address->addr_lo = (uint32_t) ((pa_addr << 2) |
9584 LPFC_BMBX_BIT1_ADDR_LO);
9589 * lpfc_destroy_bootstrap_mbox - Destroy all bootstrap mailbox resources
9590 * @phba: pointer to lpfc hba data structure.
9592 * This routine is invoked to teardown the bootstrap mailbox
9593 * region and release all host resources. This routine requires
9594 * the caller to ensure all mailbox commands recovered, no
9595 * additional mailbox comands are sent, and interrupts are disabled
9596 * before calling this routine.
9600 lpfc_destroy_bootstrap_mbox(struct lpfc_hba *phba)
9602 dma_free_coherent(&phba->pcidev->dev,
9603 phba->sli4_hba.bmbx.bmbx_size,
9604 phba->sli4_hba.bmbx.dmabuf->virt,
9605 phba->sli4_hba.bmbx.dmabuf->phys);
9607 kfree(phba->sli4_hba.bmbx.dmabuf);
9608 memset(&phba->sli4_hba.bmbx, 0, sizeof(struct lpfc_bmbx));
9611 static const char * const lpfc_topo_to_str[] = {
9621 #define LINK_FLAGS_DEF 0x0
9622 #define LINK_FLAGS_P2P 0x1
9623 #define LINK_FLAGS_LOOP 0x2
9625 * lpfc_map_topology - Map the topology read from READ_CONFIG
9626 * @phba: pointer to lpfc hba data structure.
9627 * @rd_config: pointer to read config data
9629 * This routine is invoked to map the topology values as read
9630 * from the read config mailbox command. If the persistent
9631 * topology feature is supported, the firmware will provide the
9632 * saved topology information to be used in INIT_LINK
9635 lpfc_map_topology(struct lpfc_hba *phba, struct lpfc_mbx_read_config *rd_config)
9639 ptv = bf_get(lpfc_mbx_rd_conf_ptv, rd_config);
9640 tf = bf_get(lpfc_mbx_rd_conf_tf, rd_config);
9641 pt = bf_get(lpfc_mbx_rd_conf_pt, rd_config);
9643 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
9644 "2027 Read Config Data : ptv:0x%x, tf:0x%x pt:0x%x",
9647 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
9648 "2019 FW does not support persistent topology "
9649 "Using driver parameter defined value [%s]",
9650 lpfc_topo_to_str[phba->cfg_topology]);
9653 /* FW supports persistent topology - override module parameter value */
9654 phba->hba_flag |= HBA_PERSISTENT_TOPO;
9656 /* if ASIC_GEN_NUM >= 0xC) */
9657 if ((bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf) ==
9658 LPFC_SLI_INTF_IF_TYPE_6) ||
9659 (bf_get(lpfc_sli_intf_sli_family, &phba->sli4_hba.sli_intf) ==
9660 LPFC_SLI_INTF_FAMILY_G6)) {
9662 phba->cfg_topology = ((pt == LINK_FLAGS_LOOP)
9663 ? FLAGS_TOPOLOGY_MODE_LOOP
9664 : FLAGS_TOPOLOGY_MODE_PT_PT);
9666 phba->hba_flag &= ~HBA_PERSISTENT_TOPO;
9670 /* If topology failover set - pt is '0' or '1' */
9671 phba->cfg_topology = (pt ? FLAGS_TOPOLOGY_MODE_PT_LOOP :
9672 FLAGS_TOPOLOGY_MODE_LOOP_PT);
9674 phba->cfg_topology = ((pt == LINK_FLAGS_P2P)
9675 ? FLAGS_TOPOLOGY_MODE_PT_PT
9676 : FLAGS_TOPOLOGY_MODE_LOOP);
9679 if (phba->hba_flag & HBA_PERSISTENT_TOPO) {
9680 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
9681 "2020 Using persistent topology value [%s]",
9682 lpfc_topo_to_str[phba->cfg_topology]);
9684 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
9685 "2021 Invalid topology values from FW "
9686 "Using driver parameter defined value [%s]",
9687 lpfc_topo_to_str[phba->cfg_topology]);
9692 * lpfc_sli4_read_config - Get the config parameters.
9693 * @phba: pointer to lpfc hba data structure.
9695 * This routine is invoked to read the configuration parameters from the HBA.
9696 * The configuration parameters are used to set the base and maximum values
9697 * for RPI's XRI's VPI's VFI's and FCFIs. These values also affect the resource
9698 * allocation for the port.
9702 * -ENOMEM - No available memory
9703 * -EIO - The mailbox failed to complete successfully.
9706 lpfc_sli4_read_config(struct lpfc_hba *phba)
9709 struct lpfc_mbx_read_config *rd_config;
9710 union lpfc_sli4_cfg_shdr *shdr;
9711 uint32_t shdr_status, shdr_add_status;
9712 struct lpfc_mbx_get_func_cfg *get_func_cfg;
9713 struct lpfc_rsrc_desc_fcfcoe *desc;
9715 uint16_t forced_link_speed;
9716 uint32_t if_type, qmin;
9717 int length, i, rc = 0, rc2;
9719 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
9721 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
9722 "2011 Unable to allocate memory for issuing "
9723 "SLI_CONFIG_SPECIAL mailbox command\n");
9727 lpfc_read_config(phba, pmb);
9729 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
9730 if (rc != MBX_SUCCESS) {
9731 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
9732 "2012 Mailbox failed , mbxCmd x%x "
9733 "READ_CONFIG, mbxStatus x%x\n",
9734 bf_get(lpfc_mqe_command, &pmb->u.mqe),
9735 bf_get(lpfc_mqe_status, &pmb->u.mqe));
9738 rd_config = &pmb->u.mqe.un.rd_config;
9739 if (bf_get(lpfc_mbx_rd_conf_lnk_ldv, rd_config)) {
9740 phba->sli4_hba.lnk_info.lnk_dv = LPFC_LNK_DAT_VAL;
9741 phba->sli4_hba.lnk_info.lnk_tp =
9742 bf_get(lpfc_mbx_rd_conf_lnk_type, rd_config);
9743 phba->sli4_hba.lnk_info.lnk_no =
9744 bf_get(lpfc_mbx_rd_conf_lnk_numb, rd_config);
9745 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
9746 "3081 lnk_type:%d, lnk_numb:%d\n",
9747 phba->sli4_hba.lnk_info.lnk_tp,
9748 phba->sli4_hba.lnk_info.lnk_no);
9750 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
9751 "3082 Mailbox (x%x) returned ldv:x0\n",
9752 bf_get(lpfc_mqe_command, &pmb->u.mqe));
9753 if (bf_get(lpfc_mbx_rd_conf_bbscn_def, rd_config)) {
9754 phba->bbcredit_support = 1;
9755 phba->sli4_hba.bbscn_params.word0 = rd_config->word8;
9758 phba->sli4_hba.conf_trunk =
9759 bf_get(lpfc_mbx_rd_conf_trunk, rd_config);
9760 phba->sli4_hba.extents_in_use =
9761 bf_get(lpfc_mbx_rd_conf_extnts_inuse, rd_config);
9762 phba->sli4_hba.max_cfg_param.max_xri =
9763 bf_get(lpfc_mbx_rd_conf_xri_count, rd_config);
9764 /* Reduce resource usage in kdump environment */
9765 if (is_kdump_kernel() &&
9766 phba->sli4_hba.max_cfg_param.max_xri > 512)
9767 phba->sli4_hba.max_cfg_param.max_xri = 512;
9768 phba->sli4_hba.max_cfg_param.xri_base =
9769 bf_get(lpfc_mbx_rd_conf_xri_base, rd_config);
9770 phba->sli4_hba.max_cfg_param.max_vpi =
9771 bf_get(lpfc_mbx_rd_conf_vpi_count, rd_config);
9772 /* Limit the max we support */
9773 if (phba->sli4_hba.max_cfg_param.max_vpi > LPFC_MAX_VPORTS)
9774 phba->sli4_hba.max_cfg_param.max_vpi = LPFC_MAX_VPORTS;
9775 phba->sli4_hba.max_cfg_param.vpi_base =
9776 bf_get(lpfc_mbx_rd_conf_vpi_base, rd_config);
9777 phba->sli4_hba.max_cfg_param.max_rpi =
9778 bf_get(lpfc_mbx_rd_conf_rpi_count, rd_config);
9779 phba->sli4_hba.max_cfg_param.rpi_base =
9780 bf_get(lpfc_mbx_rd_conf_rpi_base, rd_config);
9781 phba->sli4_hba.max_cfg_param.max_vfi =
9782 bf_get(lpfc_mbx_rd_conf_vfi_count, rd_config);
9783 phba->sli4_hba.max_cfg_param.vfi_base =
9784 bf_get(lpfc_mbx_rd_conf_vfi_base, rd_config);
9785 phba->sli4_hba.max_cfg_param.max_fcfi =
9786 bf_get(lpfc_mbx_rd_conf_fcfi_count, rd_config);
9787 phba->sli4_hba.max_cfg_param.max_eq =
9788 bf_get(lpfc_mbx_rd_conf_eq_count, rd_config);
9789 phba->sli4_hba.max_cfg_param.max_rq =
9790 bf_get(lpfc_mbx_rd_conf_rq_count, rd_config);
9791 phba->sli4_hba.max_cfg_param.max_wq =
9792 bf_get(lpfc_mbx_rd_conf_wq_count, rd_config);
9793 phba->sli4_hba.max_cfg_param.max_cq =
9794 bf_get(lpfc_mbx_rd_conf_cq_count, rd_config);
9795 phba->lmt = bf_get(lpfc_mbx_rd_conf_lmt, rd_config);
9796 phba->sli4_hba.next_xri = phba->sli4_hba.max_cfg_param.xri_base;
9797 phba->vpi_base = phba->sli4_hba.max_cfg_param.vpi_base;
9798 phba->vfi_base = phba->sli4_hba.max_cfg_param.vfi_base;
9799 phba->max_vpi = (phba->sli4_hba.max_cfg_param.max_vpi > 0) ?
9800 (phba->sli4_hba.max_cfg_param.max_vpi - 1) : 0;
9801 phba->max_vports = phba->max_vpi;
9803 /* Next decide on FPIN or Signal E2E CGN support
9804 * For congestion alarms and warnings valid combination are:
9805 * 1. FPIN alarms / FPIN warnings
9806 * 2. Signal alarms / Signal warnings
9807 * 3. FPIN alarms / Signal warnings
9808 * 4. Signal alarms / FPIN warnings
9810 * Initialize the adapter frequency to 100 mSecs
9812 phba->cgn_reg_fpin = LPFC_CGN_FPIN_BOTH;
9813 phba->cgn_reg_signal = EDC_CG_SIG_NOTSUPPORTED;
9814 phba->cgn_sig_freq = lpfc_fabric_cgn_frequency;
9816 if (lpfc_use_cgn_signal) {
9817 if (bf_get(lpfc_mbx_rd_conf_wcs, rd_config)) {
9818 phba->cgn_reg_signal = EDC_CG_SIG_WARN_ONLY;
9819 phba->cgn_reg_fpin &= ~LPFC_CGN_FPIN_WARN;
9821 if (bf_get(lpfc_mbx_rd_conf_acs, rd_config)) {
9822 /* MUST support both alarm and warning
9823 * because EDC does not support alarm alone.
9825 if (phba->cgn_reg_signal !=
9826 EDC_CG_SIG_WARN_ONLY) {
9827 /* Must support both or none */
9828 phba->cgn_reg_fpin = LPFC_CGN_FPIN_BOTH;
9829 phba->cgn_reg_signal =
9830 EDC_CG_SIG_NOTSUPPORTED;
9832 phba->cgn_reg_signal =
9833 EDC_CG_SIG_WARN_ALARM;
9834 phba->cgn_reg_fpin =
9840 /* Set the congestion initial signal and fpin values. */
9841 phba->cgn_init_reg_fpin = phba->cgn_reg_fpin;
9842 phba->cgn_init_reg_signal = phba->cgn_reg_signal;
9844 lpfc_printf_log(phba, KERN_INFO, LOG_CGN_MGMT,
9845 "6446 READ_CONFIG reg_sig x%x reg_fpin:x%x\n",
9846 phba->cgn_reg_signal, phba->cgn_reg_fpin);
9848 lpfc_map_topology(phba, rd_config);
9849 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
9850 "2003 cfg params Extents? %d "
9855 "FCFI:%d EQ:%d CQ:%d WQ:%d RQ:%d lmt:x%x\n",
9856 phba->sli4_hba.extents_in_use,
9857 phba->sli4_hba.max_cfg_param.xri_base,
9858 phba->sli4_hba.max_cfg_param.max_xri,
9859 phba->sli4_hba.max_cfg_param.vpi_base,
9860 phba->sli4_hba.max_cfg_param.max_vpi,
9861 phba->sli4_hba.max_cfg_param.vfi_base,
9862 phba->sli4_hba.max_cfg_param.max_vfi,
9863 phba->sli4_hba.max_cfg_param.rpi_base,
9864 phba->sli4_hba.max_cfg_param.max_rpi,
9865 phba->sli4_hba.max_cfg_param.max_fcfi,
9866 phba->sli4_hba.max_cfg_param.max_eq,
9867 phba->sli4_hba.max_cfg_param.max_cq,
9868 phba->sli4_hba.max_cfg_param.max_wq,
9869 phba->sli4_hba.max_cfg_param.max_rq,
9873 * Calculate queue resources based on how
9874 * many WQ/CQ/EQs are available.
9876 qmin = phba->sli4_hba.max_cfg_param.max_wq;
9877 if (phba->sli4_hba.max_cfg_param.max_cq < qmin)
9878 qmin = phba->sli4_hba.max_cfg_param.max_cq;
9879 if (phba->sli4_hba.max_cfg_param.max_eq < qmin)
9880 qmin = phba->sli4_hba.max_cfg_param.max_eq;
9882 * Whats left after this can go toward NVME / FCP.
9883 * The minus 4 accounts for ELS, NVME LS, MBOX
9884 * plus one extra. When configured for
9885 * NVMET, FCP io channel WQs are not created.
9889 /* Check to see if there is enough for NVME */
9890 if ((phba->cfg_irq_chann > qmin) ||
9891 (phba->cfg_hdw_queue > qmin)) {
9892 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
9893 "2005 Reducing Queues - "
9894 "FW resource limitation: "
9895 "WQ %d CQ %d EQ %d: min %d: "
9897 phba->sli4_hba.max_cfg_param.max_wq,
9898 phba->sli4_hba.max_cfg_param.max_cq,
9899 phba->sli4_hba.max_cfg_param.max_eq,
9900 qmin, phba->cfg_irq_chann,
9901 phba->cfg_hdw_queue);
9903 if (phba->cfg_irq_chann > qmin)
9904 phba->cfg_irq_chann = qmin;
9905 if (phba->cfg_hdw_queue > qmin)
9906 phba->cfg_hdw_queue = qmin;
9913 /* Update link speed if forced link speed is supported */
9914 if_type = bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf);
9915 if (if_type >= LPFC_SLI_INTF_IF_TYPE_2) {
9917 bf_get(lpfc_mbx_rd_conf_link_speed, rd_config);
9918 if (forced_link_speed) {
9919 phba->hba_flag |= HBA_FORCED_LINK_SPEED;
9921 switch (forced_link_speed) {
9923 phba->cfg_link_speed =
9924 LPFC_USER_LINK_SPEED_1G;
9927 phba->cfg_link_speed =
9928 LPFC_USER_LINK_SPEED_2G;
9931 phba->cfg_link_speed =
9932 LPFC_USER_LINK_SPEED_4G;
9935 phba->cfg_link_speed =
9936 LPFC_USER_LINK_SPEED_8G;
9938 case LINK_SPEED_10G:
9939 phba->cfg_link_speed =
9940 LPFC_USER_LINK_SPEED_10G;
9942 case LINK_SPEED_16G:
9943 phba->cfg_link_speed =
9944 LPFC_USER_LINK_SPEED_16G;
9946 case LINK_SPEED_32G:
9947 phba->cfg_link_speed =
9948 LPFC_USER_LINK_SPEED_32G;
9950 case LINK_SPEED_64G:
9951 phba->cfg_link_speed =
9952 LPFC_USER_LINK_SPEED_64G;
9955 phba->cfg_link_speed =
9956 LPFC_USER_LINK_SPEED_AUTO;
9959 lpfc_printf_log(phba, KERN_ERR,
9961 "0047 Unrecognized link "
9964 phba->cfg_link_speed =
9965 LPFC_USER_LINK_SPEED_AUTO;
9970 /* Reset the DFT_HBA_Q_DEPTH to the max xri */
9971 length = phba->sli4_hba.max_cfg_param.max_xri -
9972 lpfc_sli4_get_els_iocb_cnt(phba);
9973 if (phba->cfg_hba_queue_depth > length) {
9974 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
9975 "3361 HBA queue depth changed from %d to %d\n",
9976 phba->cfg_hba_queue_depth, length);
9977 phba->cfg_hba_queue_depth = length;
9980 if (bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf) <
9981 LPFC_SLI_INTF_IF_TYPE_2)
9984 /* get the pf# and vf# for SLI4 if_type 2 port */
9985 length = (sizeof(struct lpfc_mbx_get_func_cfg) -
9986 sizeof(struct lpfc_sli4_cfg_mhdr));
9987 lpfc_sli4_config(phba, pmb, LPFC_MBOX_SUBSYSTEM_COMMON,
9988 LPFC_MBOX_OPCODE_GET_FUNCTION_CONFIG,
9989 length, LPFC_SLI4_MBX_EMBED);
9991 rc2 = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
9992 shdr = (union lpfc_sli4_cfg_shdr *)
9993 &pmb->u.mqe.un.sli4_config.header.cfg_shdr;
9994 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
9995 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
9996 if (rc2 || shdr_status || shdr_add_status) {
9997 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
9998 "3026 Mailbox failed , mbxCmd x%x "
9999 "GET_FUNCTION_CONFIG, mbxStatus x%x\n",
10000 bf_get(lpfc_mqe_command, &pmb->u.mqe),
10001 bf_get(lpfc_mqe_status, &pmb->u.mqe));
10005 /* search for fc_fcoe resrouce descriptor */
10006 get_func_cfg = &pmb->u.mqe.un.get_func_cfg;
10008 pdesc_0 = (char *)&get_func_cfg->func_cfg.desc[0];
10009 desc = (struct lpfc_rsrc_desc_fcfcoe *)pdesc_0;
10010 length = bf_get(lpfc_rsrc_desc_fcfcoe_length, desc);
10011 if (length == LPFC_RSRC_DESC_TYPE_FCFCOE_V0_RSVD)
10012 length = LPFC_RSRC_DESC_TYPE_FCFCOE_V0_LENGTH;
10013 else if (length != LPFC_RSRC_DESC_TYPE_FCFCOE_V1_LENGTH)
10016 for (i = 0; i < LPFC_RSRC_DESC_MAX_NUM; i++) {
10017 desc = (struct lpfc_rsrc_desc_fcfcoe *)(pdesc_0 + length * i);
10018 if (LPFC_RSRC_DESC_TYPE_FCFCOE ==
10019 bf_get(lpfc_rsrc_desc_fcfcoe_type, desc)) {
10020 phba->sli4_hba.iov.pf_number =
10021 bf_get(lpfc_rsrc_desc_fcfcoe_pfnum, desc);
10022 phba->sli4_hba.iov.vf_number =
10023 bf_get(lpfc_rsrc_desc_fcfcoe_vfnum, desc);
10028 if (i < LPFC_RSRC_DESC_MAX_NUM)
10029 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
10030 "3027 GET_FUNCTION_CONFIG: pf_number:%d, "
10031 "vf_number:%d\n", phba->sli4_hba.iov.pf_number,
10032 phba->sli4_hba.iov.vf_number);
10034 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
10035 "3028 GET_FUNCTION_CONFIG: failed to find "
10036 "Resource Descriptor:x%x\n",
10037 LPFC_RSRC_DESC_TYPE_FCFCOE);
10040 mempool_free(pmb, phba->mbox_mem_pool);
10045 * lpfc_setup_endian_order - Write endian order to an SLI4 if_type 0 port.
10046 * @phba: pointer to lpfc hba data structure.
10048 * This routine is invoked to setup the port-side endian order when
10049 * the port if_type is 0. This routine has no function for other
10054 * -ENOMEM - No available memory
10055 * -EIO - The mailbox failed to complete successfully.
10058 lpfc_setup_endian_order(struct lpfc_hba *phba)
10060 LPFC_MBOXQ_t *mboxq;
10061 uint32_t if_type, rc = 0;
10062 uint32_t endian_mb_data[2] = {HOST_ENDIAN_LOW_WORD0,
10063 HOST_ENDIAN_HIGH_WORD1};
10065 if_type = bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf);
10067 case LPFC_SLI_INTF_IF_TYPE_0:
10068 mboxq = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool,
10071 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
10072 "0492 Unable to allocate memory for "
10073 "issuing SLI_CONFIG_SPECIAL mailbox "
10079 * The SLI4_CONFIG_SPECIAL mailbox command requires the first
10080 * two words to contain special data values and no other data.
10082 memset(mboxq, 0, sizeof(LPFC_MBOXQ_t));
10083 memcpy(&mboxq->u.mqe, &endian_mb_data, sizeof(endian_mb_data));
10084 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
10085 if (rc != MBX_SUCCESS) {
10086 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
10087 "0493 SLI_CONFIG_SPECIAL mailbox "
10088 "failed with status x%x\n",
10092 mempool_free(mboxq, phba->mbox_mem_pool);
10094 case LPFC_SLI_INTF_IF_TYPE_6:
10095 case LPFC_SLI_INTF_IF_TYPE_2:
10096 case LPFC_SLI_INTF_IF_TYPE_1:
10104 * lpfc_sli4_queue_verify - Verify and update EQ counts
10105 * @phba: pointer to lpfc hba data structure.
10107 * This routine is invoked to check the user settable queue counts for EQs.
10108 * After this routine is called the counts will be set to valid values that
10109 * adhere to the constraints of the system's interrupt vectors and the port's
10114 * -ENOMEM - No available memory
10117 lpfc_sli4_queue_verify(struct lpfc_hba *phba)
10120 * Sanity check for configured queue parameters against the run-time
10121 * device parameters
10124 if (phba->nvmet_support) {
10125 if (phba->cfg_hdw_queue < phba->cfg_nvmet_mrq)
10126 phba->cfg_nvmet_mrq = phba->cfg_hdw_queue;
10127 if (phba->cfg_nvmet_mrq > LPFC_NVMET_MRQ_MAX)
10128 phba->cfg_nvmet_mrq = LPFC_NVMET_MRQ_MAX;
10131 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10132 "2574 IO channels: hdwQ %d IRQ %d MRQ: %d\n",
10133 phba->cfg_hdw_queue, phba->cfg_irq_chann,
10134 phba->cfg_nvmet_mrq);
10136 /* Get EQ depth from module parameter, fake the default for now */
10137 phba->sli4_hba.eq_esize = LPFC_EQE_SIZE_4B;
10138 phba->sli4_hba.eq_ecount = LPFC_EQE_DEF_COUNT;
10140 /* Get CQ depth from module parameter, fake the default for now */
10141 phba->sli4_hba.cq_esize = LPFC_CQE_SIZE;
10142 phba->sli4_hba.cq_ecount = LPFC_CQE_DEF_COUNT;
10147 lpfc_alloc_io_wq_cq(struct lpfc_hba *phba, int idx)
10149 struct lpfc_queue *qdesc;
10153 cpu = lpfc_find_cpu_handle(phba, idx, LPFC_FIND_BY_HDWQ);
10154 /* Create Fast Path IO CQs */
10155 if (phba->enab_exp_wqcq_pages)
10156 /* Increase the CQ size when WQEs contain an embedded cdb */
10157 qdesc = lpfc_sli4_queue_alloc(phba, LPFC_EXPANDED_PAGE_SIZE,
10158 phba->sli4_hba.cq_esize,
10159 LPFC_CQE_EXP_COUNT, cpu);
10162 qdesc = lpfc_sli4_queue_alloc(phba, LPFC_DEFAULT_PAGE_SIZE,
10163 phba->sli4_hba.cq_esize,
10164 phba->sli4_hba.cq_ecount, cpu);
10166 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
10167 "0499 Failed allocate fast-path IO CQ (%d)\n",
10171 qdesc->qe_valid = 1;
10173 qdesc->chann = cpu;
10174 phba->sli4_hba.hdwq[idx].io_cq = qdesc;
10176 /* Create Fast Path IO WQs */
10177 if (phba->enab_exp_wqcq_pages) {
10178 /* Increase the WQ size when WQEs contain an embedded cdb */
10179 wqesize = (phba->fcp_embed_io) ?
10180 LPFC_WQE128_SIZE : phba->sli4_hba.wq_esize;
10181 qdesc = lpfc_sli4_queue_alloc(phba, LPFC_EXPANDED_PAGE_SIZE,
10183 LPFC_WQE_EXP_COUNT, cpu);
10185 qdesc = lpfc_sli4_queue_alloc(phba, LPFC_DEFAULT_PAGE_SIZE,
10186 phba->sli4_hba.wq_esize,
10187 phba->sli4_hba.wq_ecount, cpu);
10190 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
10191 "0503 Failed allocate fast-path IO WQ (%d)\n",
10196 qdesc->chann = cpu;
10197 phba->sli4_hba.hdwq[idx].io_wq = qdesc;
10198 list_add_tail(&qdesc->wq_list, &phba->sli4_hba.lpfc_wq_list);
10203 * lpfc_sli4_queue_create - Create all the SLI4 queues
10204 * @phba: pointer to lpfc hba data structure.
10206 * This routine is invoked to allocate all the SLI4 queues for the FCoE HBA
10207 * operation. For each SLI4 queue type, the parameters such as queue entry
10208 * count (queue depth) shall be taken from the module parameter. For now,
10209 * we just use some constant number as place holder.
10213 * -ENOMEM - No availble memory
10214 * -EIO - The mailbox failed to complete successfully.
10217 lpfc_sli4_queue_create(struct lpfc_hba *phba)
10219 struct lpfc_queue *qdesc;
10220 int idx, cpu, eqcpu;
10221 struct lpfc_sli4_hdw_queue *qp;
10222 struct lpfc_vector_map_info *cpup;
10223 struct lpfc_vector_map_info *eqcpup;
10224 struct lpfc_eq_intr_info *eqi;
10227 * Create HBA Record arrays.
10228 * Both NVME and FCP will share that same vectors / EQs
10230 phba->sli4_hba.mq_esize = LPFC_MQE_SIZE;
10231 phba->sli4_hba.mq_ecount = LPFC_MQE_DEF_COUNT;
10232 phba->sli4_hba.wq_esize = LPFC_WQE_SIZE;
10233 phba->sli4_hba.wq_ecount = LPFC_WQE_DEF_COUNT;
10234 phba->sli4_hba.rq_esize = LPFC_RQE_SIZE;
10235 phba->sli4_hba.rq_ecount = LPFC_RQE_DEF_COUNT;
10236 phba->sli4_hba.eq_esize = LPFC_EQE_SIZE_4B;
10237 phba->sli4_hba.eq_ecount = LPFC_EQE_DEF_COUNT;
10238 phba->sli4_hba.cq_esize = LPFC_CQE_SIZE;
10239 phba->sli4_hba.cq_ecount = LPFC_CQE_DEF_COUNT;
10241 if (!phba->sli4_hba.hdwq) {
10242 phba->sli4_hba.hdwq = kcalloc(
10243 phba->cfg_hdw_queue, sizeof(struct lpfc_sli4_hdw_queue),
10245 if (!phba->sli4_hba.hdwq) {
10246 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
10247 "6427 Failed allocate memory for "
10248 "fast-path Hardware Queue array\n");
10251 /* Prepare hardware queues to take IO buffers */
10252 for (idx = 0; idx < phba->cfg_hdw_queue; idx++) {
10253 qp = &phba->sli4_hba.hdwq[idx];
10254 spin_lock_init(&qp->io_buf_list_get_lock);
10255 spin_lock_init(&qp->io_buf_list_put_lock);
10256 INIT_LIST_HEAD(&qp->lpfc_io_buf_list_get);
10257 INIT_LIST_HEAD(&qp->lpfc_io_buf_list_put);
10258 qp->get_io_bufs = 0;
10259 qp->put_io_bufs = 0;
10260 qp->total_io_bufs = 0;
10261 spin_lock_init(&qp->abts_io_buf_list_lock);
10262 INIT_LIST_HEAD(&qp->lpfc_abts_io_buf_list);
10263 qp->abts_scsi_io_bufs = 0;
10264 qp->abts_nvme_io_bufs = 0;
10265 INIT_LIST_HEAD(&qp->sgl_list);
10266 INIT_LIST_HEAD(&qp->cmd_rsp_buf_list);
10267 spin_lock_init(&qp->hdwq_lock);
10271 if (phba->cfg_enable_fc4_type & LPFC_ENABLE_NVME) {
10272 if (phba->nvmet_support) {
10273 phba->sli4_hba.nvmet_cqset = kcalloc(
10274 phba->cfg_nvmet_mrq,
10275 sizeof(struct lpfc_queue *),
10277 if (!phba->sli4_hba.nvmet_cqset) {
10278 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
10279 "3121 Fail allocate memory for "
10280 "fast-path CQ set array\n");
10283 phba->sli4_hba.nvmet_mrq_hdr = kcalloc(
10284 phba->cfg_nvmet_mrq,
10285 sizeof(struct lpfc_queue *),
10287 if (!phba->sli4_hba.nvmet_mrq_hdr) {
10288 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
10289 "3122 Fail allocate memory for "
10290 "fast-path RQ set hdr array\n");
10293 phba->sli4_hba.nvmet_mrq_data = kcalloc(
10294 phba->cfg_nvmet_mrq,
10295 sizeof(struct lpfc_queue *),
10297 if (!phba->sli4_hba.nvmet_mrq_data) {
10298 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
10299 "3124 Fail allocate memory for "
10300 "fast-path RQ set data array\n");
10306 INIT_LIST_HEAD(&phba->sli4_hba.lpfc_wq_list);
10308 /* Create HBA Event Queues (EQs) */
10309 for_each_present_cpu(cpu) {
10310 /* We only want to create 1 EQ per vector, even though
10311 * multiple CPUs might be using that vector. so only
10312 * selects the CPUs that are LPFC_CPU_FIRST_IRQ.
10314 cpup = &phba->sli4_hba.cpu_map[cpu];
10315 if (!(cpup->flag & LPFC_CPU_FIRST_IRQ))
10318 /* Get a ptr to the Hardware Queue associated with this CPU */
10319 qp = &phba->sli4_hba.hdwq[cpup->hdwq];
10321 /* Allocate an EQ */
10322 qdesc = lpfc_sli4_queue_alloc(phba, LPFC_DEFAULT_PAGE_SIZE,
10323 phba->sli4_hba.eq_esize,
10324 phba->sli4_hba.eq_ecount, cpu);
10326 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
10327 "0497 Failed allocate EQ (%d)\n",
10331 qdesc->qe_valid = 1;
10332 qdesc->hdwq = cpup->hdwq;
10333 qdesc->chann = cpu; /* First CPU this EQ is affinitized to */
10334 qdesc->last_cpu = qdesc->chann;
10336 /* Save the allocated EQ in the Hardware Queue */
10337 qp->hba_eq = qdesc;
10339 eqi = per_cpu_ptr(phba->sli4_hba.eq_info, qdesc->last_cpu);
10340 list_add(&qdesc->cpu_list, &eqi->list);
10343 /* Now we need to populate the other Hardware Queues, that share
10344 * an IRQ vector, with the associated EQ ptr.
10346 for_each_present_cpu(cpu) {
10347 cpup = &phba->sli4_hba.cpu_map[cpu];
10349 /* Check for EQ already allocated in previous loop */
10350 if (cpup->flag & LPFC_CPU_FIRST_IRQ)
10353 /* Check for multiple CPUs per hdwq */
10354 qp = &phba->sli4_hba.hdwq[cpup->hdwq];
10358 /* We need to share an EQ for this hdwq */
10359 eqcpu = lpfc_find_cpu_handle(phba, cpup->eq, LPFC_FIND_BY_EQ);
10360 eqcpup = &phba->sli4_hba.cpu_map[eqcpu];
10361 qp->hba_eq = phba->sli4_hba.hdwq[eqcpup->hdwq].hba_eq;
10364 /* Allocate IO Path SLI4 CQ/WQs */
10365 for (idx = 0; idx < phba->cfg_hdw_queue; idx++) {
10366 if (lpfc_alloc_io_wq_cq(phba, idx))
10370 if (phba->nvmet_support) {
10371 for (idx = 0; idx < phba->cfg_nvmet_mrq; idx++) {
10372 cpu = lpfc_find_cpu_handle(phba, idx,
10373 LPFC_FIND_BY_HDWQ);
10374 qdesc = lpfc_sli4_queue_alloc(phba,
10375 LPFC_DEFAULT_PAGE_SIZE,
10376 phba->sli4_hba.cq_esize,
10377 phba->sli4_hba.cq_ecount,
10380 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
10381 "3142 Failed allocate NVME "
10382 "CQ Set (%d)\n", idx);
10385 qdesc->qe_valid = 1;
10387 qdesc->chann = cpu;
10388 phba->sli4_hba.nvmet_cqset[idx] = qdesc;
10393 * Create Slow Path Completion Queues (CQs)
10396 cpu = lpfc_find_cpu_handle(phba, 0, LPFC_FIND_BY_EQ);
10397 /* Create slow-path Mailbox Command Complete Queue */
10398 qdesc = lpfc_sli4_queue_alloc(phba, LPFC_DEFAULT_PAGE_SIZE,
10399 phba->sli4_hba.cq_esize,
10400 phba->sli4_hba.cq_ecount, cpu);
10402 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
10403 "0500 Failed allocate slow-path mailbox CQ\n");
10406 qdesc->qe_valid = 1;
10407 phba->sli4_hba.mbx_cq = qdesc;
10409 /* Create slow-path ELS Complete Queue */
10410 qdesc = lpfc_sli4_queue_alloc(phba, LPFC_DEFAULT_PAGE_SIZE,
10411 phba->sli4_hba.cq_esize,
10412 phba->sli4_hba.cq_ecount, cpu);
10414 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
10415 "0501 Failed allocate slow-path ELS CQ\n");
10418 qdesc->qe_valid = 1;
10419 qdesc->chann = cpu;
10420 phba->sli4_hba.els_cq = qdesc;
10424 * Create Slow Path Work Queues (WQs)
10427 /* Create Mailbox Command Queue */
10429 qdesc = lpfc_sli4_queue_alloc(phba, LPFC_DEFAULT_PAGE_SIZE,
10430 phba->sli4_hba.mq_esize,
10431 phba->sli4_hba.mq_ecount, cpu);
10433 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
10434 "0505 Failed allocate slow-path MQ\n");
10437 qdesc->chann = cpu;
10438 phba->sli4_hba.mbx_wq = qdesc;
10441 * Create ELS Work Queues
10444 /* Create slow-path ELS Work Queue */
10445 qdesc = lpfc_sli4_queue_alloc(phba, LPFC_DEFAULT_PAGE_SIZE,
10446 phba->sli4_hba.wq_esize,
10447 phba->sli4_hba.wq_ecount, cpu);
10449 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
10450 "0504 Failed allocate slow-path ELS WQ\n");
10453 qdesc->chann = cpu;
10454 phba->sli4_hba.els_wq = qdesc;
10455 list_add_tail(&qdesc->wq_list, &phba->sli4_hba.lpfc_wq_list);
10457 if (phba->cfg_enable_fc4_type & LPFC_ENABLE_NVME) {
10458 /* Create NVME LS Complete Queue */
10459 qdesc = lpfc_sli4_queue_alloc(phba, LPFC_DEFAULT_PAGE_SIZE,
10460 phba->sli4_hba.cq_esize,
10461 phba->sli4_hba.cq_ecount, cpu);
10463 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
10464 "6079 Failed allocate NVME LS CQ\n");
10467 qdesc->chann = cpu;
10468 qdesc->qe_valid = 1;
10469 phba->sli4_hba.nvmels_cq = qdesc;
10471 /* Create NVME LS Work Queue */
10472 qdesc = lpfc_sli4_queue_alloc(phba, LPFC_DEFAULT_PAGE_SIZE,
10473 phba->sli4_hba.wq_esize,
10474 phba->sli4_hba.wq_ecount, cpu);
10476 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
10477 "6080 Failed allocate NVME LS WQ\n");
10480 qdesc->chann = cpu;
10481 phba->sli4_hba.nvmels_wq = qdesc;
10482 list_add_tail(&qdesc->wq_list, &phba->sli4_hba.lpfc_wq_list);
10486 * Create Receive Queue (RQ)
10489 /* Create Receive Queue for header */
10490 qdesc = lpfc_sli4_queue_alloc(phba, LPFC_DEFAULT_PAGE_SIZE,
10491 phba->sli4_hba.rq_esize,
10492 phba->sli4_hba.rq_ecount, cpu);
10494 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
10495 "0506 Failed allocate receive HRQ\n");
10498 phba->sli4_hba.hdr_rq = qdesc;
10500 /* Create Receive Queue for data */
10501 qdesc = lpfc_sli4_queue_alloc(phba, LPFC_DEFAULT_PAGE_SIZE,
10502 phba->sli4_hba.rq_esize,
10503 phba->sli4_hba.rq_ecount, cpu);
10505 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
10506 "0507 Failed allocate receive DRQ\n");
10509 phba->sli4_hba.dat_rq = qdesc;
10511 if ((phba->cfg_enable_fc4_type & LPFC_ENABLE_NVME) &&
10512 phba->nvmet_support) {
10513 for (idx = 0; idx < phba->cfg_nvmet_mrq; idx++) {
10514 cpu = lpfc_find_cpu_handle(phba, idx,
10515 LPFC_FIND_BY_HDWQ);
10516 /* Create NVMET Receive Queue for header */
10517 qdesc = lpfc_sli4_queue_alloc(phba,
10518 LPFC_DEFAULT_PAGE_SIZE,
10519 phba->sli4_hba.rq_esize,
10520 LPFC_NVMET_RQE_DEF_COUNT,
10523 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
10524 "3146 Failed allocate "
10529 phba->sli4_hba.nvmet_mrq_hdr[idx] = qdesc;
10531 /* Only needed for header of RQ pair */
10532 qdesc->rqbp = kzalloc_node(sizeof(*qdesc->rqbp),
10535 if (qdesc->rqbp == NULL) {
10536 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
10537 "6131 Failed allocate "
10542 /* Put list in known state in case driver load fails. */
10543 INIT_LIST_HEAD(&qdesc->rqbp->rqb_buffer_list);
10545 /* Create NVMET Receive Queue for data */
10546 qdesc = lpfc_sli4_queue_alloc(phba,
10547 LPFC_DEFAULT_PAGE_SIZE,
10548 phba->sli4_hba.rq_esize,
10549 LPFC_NVMET_RQE_DEF_COUNT,
10552 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
10553 "3156 Failed allocate "
10558 phba->sli4_hba.nvmet_mrq_data[idx] = qdesc;
10562 /* Clear NVME stats */
10563 if (phba->cfg_enable_fc4_type & LPFC_ENABLE_NVME) {
10564 for (idx = 0; idx < phba->cfg_hdw_queue; idx++) {
10565 memset(&phba->sli4_hba.hdwq[idx].nvme_cstat, 0,
10566 sizeof(phba->sli4_hba.hdwq[idx].nvme_cstat));
10570 /* Clear SCSI stats */
10571 if (phba->cfg_enable_fc4_type & LPFC_ENABLE_FCP) {
10572 for (idx = 0; idx < phba->cfg_hdw_queue; idx++) {
10573 memset(&phba->sli4_hba.hdwq[idx].scsi_cstat, 0,
10574 sizeof(phba->sli4_hba.hdwq[idx].scsi_cstat));
10581 lpfc_sli4_queue_destroy(phba);
10586 __lpfc_sli4_release_queue(struct lpfc_queue **qp)
10589 lpfc_sli4_queue_free(*qp);
10595 lpfc_sli4_release_queues(struct lpfc_queue ***qs, int max)
10602 for (idx = 0; idx < max; idx++)
10603 __lpfc_sli4_release_queue(&(*qs)[idx]);
10610 lpfc_sli4_release_hdwq(struct lpfc_hba *phba)
10612 struct lpfc_sli4_hdw_queue *hdwq;
10613 struct lpfc_queue *eq;
10616 hdwq = phba->sli4_hba.hdwq;
10618 /* Loop thru all Hardware Queues */
10619 for (idx = 0; idx < phba->cfg_hdw_queue; idx++) {
10620 /* Free the CQ/WQ corresponding to the Hardware Queue */
10621 lpfc_sli4_queue_free(hdwq[idx].io_cq);
10622 lpfc_sli4_queue_free(hdwq[idx].io_wq);
10623 hdwq[idx].hba_eq = NULL;
10624 hdwq[idx].io_cq = NULL;
10625 hdwq[idx].io_wq = NULL;
10626 if (phba->cfg_xpsgl && !phba->nvmet_support)
10627 lpfc_free_sgl_per_hdwq(phba, &hdwq[idx]);
10628 lpfc_free_cmd_rsp_buf_per_hdwq(phba, &hdwq[idx]);
10630 /* Loop thru all IRQ vectors */
10631 for (idx = 0; idx < phba->cfg_irq_chann; idx++) {
10632 /* Free the EQ corresponding to the IRQ vector */
10633 eq = phba->sli4_hba.hba_eq_hdl[idx].eq;
10634 lpfc_sli4_queue_free(eq);
10635 phba->sli4_hba.hba_eq_hdl[idx].eq = NULL;
10640 * lpfc_sli4_queue_destroy - Destroy all the SLI4 queues
10641 * @phba: pointer to lpfc hba data structure.
10643 * This routine is invoked to release all the SLI4 queues with the FCoE HBA
10648 * -ENOMEM - No available memory
10649 * -EIO - The mailbox failed to complete successfully.
10652 lpfc_sli4_queue_destroy(struct lpfc_hba *phba)
10655 * Set FREE_INIT before beginning to free the queues.
10656 * Wait until the users of queues to acknowledge to
10657 * release queues by clearing FREE_WAIT.
10659 spin_lock_irq(&phba->hbalock);
10660 phba->sli.sli_flag |= LPFC_QUEUE_FREE_INIT;
10661 while (phba->sli.sli_flag & LPFC_QUEUE_FREE_WAIT) {
10662 spin_unlock_irq(&phba->hbalock);
10664 spin_lock_irq(&phba->hbalock);
10666 spin_unlock_irq(&phba->hbalock);
10668 lpfc_sli4_cleanup_poll_list(phba);
10670 /* Release HBA eqs */
10671 if (phba->sli4_hba.hdwq)
10672 lpfc_sli4_release_hdwq(phba);
10674 if (phba->nvmet_support) {
10675 lpfc_sli4_release_queues(&phba->sli4_hba.nvmet_cqset,
10676 phba->cfg_nvmet_mrq);
10678 lpfc_sli4_release_queues(&phba->sli4_hba.nvmet_mrq_hdr,
10679 phba->cfg_nvmet_mrq);
10680 lpfc_sli4_release_queues(&phba->sli4_hba.nvmet_mrq_data,
10681 phba->cfg_nvmet_mrq);
10684 /* Release mailbox command work queue */
10685 __lpfc_sli4_release_queue(&phba->sli4_hba.mbx_wq);
10687 /* Release ELS work queue */
10688 __lpfc_sli4_release_queue(&phba->sli4_hba.els_wq);
10690 /* Release ELS work queue */
10691 __lpfc_sli4_release_queue(&phba->sli4_hba.nvmels_wq);
10693 /* Release unsolicited receive queue */
10694 __lpfc_sli4_release_queue(&phba->sli4_hba.hdr_rq);
10695 __lpfc_sli4_release_queue(&phba->sli4_hba.dat_rq);
10697 /* Release ELS complete queue */
10698 __lpfc_sli4_release_queue(&phba->sli4_hba.els_cq);
10700 /* Release NVME LS complete queue */
10701 __lpfc_sli4_release_queue(&phba->sli4_hba.nvmels_cq);
10703 /* Release mailbox command complete queue */
10704 __lpfc_sli4_release_queue(&phba->sli4_hba.mbx_cq);
10706 /* Everything on this list has been freed */
10707 INIT_LIST_HEAD(&phba->sli4_hba.lpfc_wq_list);
10709 /* Done with freeing the queues */
10710 spin_lock_irq(&phba->hbalock);
10711 phba->sli.sli_flag &= ~LPFC_QUEUE_FREE_INIT;
10712 spin_unlock_irq(&phba->hbalock);
10716 lpfc_free_rq_buffer(struct lpfc_hba *phba, struct lpfc_queue *rq)
10718 struct lpfc_rqb *rqbp;
10719 struct lpfc_dmabuf *h_buf;
10720 struct rqb_dmabuf *rqb_buffer;
10723 while (!list_empty(&rqbp->rqb_buffer_list)) {
10724 list_remove_head(&rqbp->rqb_buffer_list, h_buf,
10725 struct lpfc_dmabuf, list);
10727 rqb_buffer = container_of(h_buf, struct rqb_dmabuf, hbuf);
10728 (rqbp->rqb_free_buffer)(phba, rqb_buffer);
10729 rqbp->buffer_count--;
10735 lpfc_create_wq_cq(struct lpfc_hba *phba, struct lpfc_queue *eq,
10736 struct lpfc_queue *cq, struct lpfc_queue *wq, uint16_t *cq_map,
10737 int qidx, uint32_t qtype)
10739 struct lpfc_sli_ring *pring;
10742 if (!eq || !cq || !wq) {
10743 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
10744 "6085 Fast-path %s (%d) not allocated\n",
10745 ((eq) ? ((cq) ? "WQ" : "CQ") : "EQ"), qidx);
10749 /* create the Cq first */
10750 rc = lpfc_cq_create(phba, cq, eq,
10751 (qtype == LPFC_MBOX) ? LPFC_MCQ : LPFC_WCQ, qtype);
10753 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
10754 "6086 Failed setup of CQ (%d), rc = 0x%x\n",
10755 qidx, (uint32_t)rc);
10759 if (qtype != LPFC_MBOX) {
10760 /* Setup cq_map for fast lookup */
10762 *cq_map = cq->queue_id;
10764 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
10765 "6087 CQ setup: cq[%d]-id=%d, parent eq[%d]-id=%d\n",
10766 qidx, cq->queue_id, qidx, eq->queue_id);
10768 /* create the wq */
10769 rc = lpfc_wq_create(phba, wq, cq, qtype);
10771 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
10772 "4618 Fail setup fastpath WQ (%d), rc = 0x%x\n",
10773 qidx, (uint32_t)rc);
10774 /* no need to tear down cq - caller will do so */
10778 /* Bind this CQ/WQ to the NVME ring */
10780 pring->sli.sli4.wqp = (void *)wq;
10783 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
10784 "2593 WQ setup: wq[%d]-id=%d assoc=%d, cq[%d]-id=%d\n",
10785 qidx, wq->queue_id, wq->assoc_qid, qidx, cq->queue_id);
10787 rc = lpfc_mq_create(phba, wq, cq, LPFC_MBOX);
10789 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
10790 "0539 Failed setup of slow-path MQ: "
10791 "rc = 0x%x\n", rc);
10792 /* no need to tear down cq - caller will do so */
10796 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
10797 "2589 MBX MQ setup: wq-id=%d, parent cq-id=%d\n",
10798 phba->sli4_hba.mbx_wq->queue_id,
10799 phba->sli4_hba.mbx_cq->queue_id);
10806 * lpfc_setup_cq_lookup - Setup the CQ lookup table
10807 * @phba: pointer to lpfc hba data structure.
10809 * This routine will populate the cq_lookup table by all
10810 * available CQ queue_id's.
10813 lpfc_setup_cq_lookup(struct lpfc_hba *phba)
10815 struct lpfc_queue *eq, *childq;
10818 memset(phba->sli4_hba.cq_lookup, 0,
10819 (sizeof(struct lpfc_queue *) * (phba->sli4_hba.cq_max + 1)));
10820 /* Loop thru all IRQ vectors */
10821 for (qidx = 0; qidx < phba->cfg_irq_chann; qidx++) {
10822 /* Get the EQ corresponding to the IRQ vector */
10823 eq = phba->sli4_hba.hba_eq_hdl[qidx].eq;
10826 /* Loop through all CQs associated with that EQ */
10827 list_for_each_entry(childq, &eq->child_list, list) {
10828 if (childq->queue_id > phba->sli4_hba.cq_max)
10830 if (childq->subtype == LPFC_IO)
10831 phba->sli4_hba.cq_lookup[childq->queue_id] =
10838 * lpfc_sli4_queue_setup - Set up all the SLI4 queues
10839 * @phba: pointer to lpfc hba data structure.
10841 * This routine is invoked to set up all the SLI4 queues for the FCoE HBA
10846 * -ENOMEM - No available memory
10847 * -EIO - The mailbox failed to complete successfully.
10850 lpfc_sli4_queue_setup(struct lpfc_hba *phba)
10852 uint32_t shdr_status, shdr_add_status;
10853 union lpfc_sli4_cfg_shdr *shdr;
10854 struct lpfc_vector_map_info *cpup;
10855 struct lpfc_sli4_hdw_queue *qp;
10856 LPFC_MBOXQ_t *mboxq;
10858 uint32_t length, usdelay;
10861 /* Check for dual-ULP support */
10862 mboxq = (LPFC_MBOXQ_t *)mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
10864 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
10865 "3249 Unable to allocate memory for "
10866 "QUERY_FW_CFG mailbox command\n");
10869 length = (sizeof(struct lpfc_mbx_query_fw_config) -
10870 sizeof(struct lpfc_sli4_cfg_mhdr));
10871 lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_COMMON,
10872 LPFC_MBOX_OPCODE_QUERY_FW_CFG,
10873 length, LPFC_SLI4_MBX_EMBED);
10875 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
10877 shdr = (union lpfc_sli4_cfg_shdr *)
10878 &mboxq->u.mqe.un.sli4_config.header.cfg_shdr;
10879 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
10880 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
10881 if (shdr_status || shdr_add_status || rc) {
10882 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
10883 "3250 QUERY_FW_CFG mailbox failed with status "
10884 "x%x add_status x%x, mbx status x%x\n",
10885 shdr_status, shdr_add_status, rc);
10886 mempool_free(mboxq, phba->mbox_mem_pool);
10891 phba->sli4_hba.fw_func_mode =
10892 mboxq->u.mqe.un.query_fw_cfg.rsp.function_mode;
10893 phba->sli4_hba.ulp0_mode = mboxq->u.mqe.un.query_fw_cfg.rsp.ulp0_mode;
10894 phba->sli4_hba.ulp1_mode = mboxq->u.mqe.un.query_fw_cfg.rsp.ulp1_mode;
10895 phba->sli4_hba.physical_port =
10896 mboxq->u.mqe.un.query_fw_cfg.rsp.physical_port;
10897 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
10898 "3251 QUERY_FW_CFG: func_mode:x%x, ulp0_mode:x%x, "
10899 "ulp1_mode:x%x\n", phba->sli4_hba.fw_func_mode,
10900 phba->sli4_hba.ulp0_mode, phba->sli4_hba.ulp1_mode);
10902 mempool_free(mboxq, phba->mbox_mem_pool);
10905 * Set up HBA Event Queues (EQs)
10907 qp = phba->sli4_hba.hdwq;
10909 /* Set up HBA event queue */
10911 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
10912 "3147 Fast-path EQs not allocated\n");
10917 /* Loop thru all IRQ vectors */
10918 for (qidx = 0; qidx < phba->cfg_irq_chann; qidx++) {
10919 /* Create HBA Event Queues (EQs) in order */
10920 for_each_present_cpu(cpu) {
10921 cpup = &phba->sli4_hba.cpu_map[cpu];
10923 /* Look for the CPU thats using that vector with
10924 * LPFC_CPU_FIRST_IRQ set.
10926 if (!(cpup->flag & LPFC_CPU_FIRST_IRQ))
10928 if (qidx != cpup->eq)
10931 /* Create an EQ for that vector */
10932 rc = lpfc_eq_create(phba, qp[cpup->hdwq].hba_eq,
10933 phba->cfg_fcp_imax);
10935 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
10936 "0523 Failed setup of fast-path"
10937 " EQ (%d), rc = 0x%x\n",
10938 cpup->eq, (uint32_t)rc);
10942 /* Save the EQ for that vector in the hba_eq_hdl */
10943 phba->sli4_hba.hba_eq_hdl[cpup->eq].eq =
10944 qp[cpup->hdwq].hba_eq;
10946 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
10947 "2584 HBA EQ setup: queue[%d]-id=%d\n",
10949 qp[cpup->hdwq].hba_eq->queue_id);
10953 /* Loop thru all Hardware Queues */
10954 for (qidx = 0; qidx < phba->cfg_hdw_queue; qidx++) {
10955 cpu = lpfc_find_cpu_handle(phba, qidx, LPFC_FIND_BY_HDWQ);
10956 cpup = &phba->sli4_hba.cpu_map[cpu];
10958 /* Create the CQ/WQ corresponding to the Hardware Queue */
10959 rc = lpfc_create_wq_cq(phba,
10960 phba->sli4_hba.hdwq[cpup->hdwq].hba_eq,
10963 &phba->sli4_hba.hdwq[qidx].io_cq_map,
10967 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
10968 "0535 Failed to setup fastpath "
10969 "IO WQ/CQ (%d), rc = 0x%x\n",
10970 qidx, (uint32_t)rc);
10976 * Set up Slow Path Complete Queues (CQs)
10979 /* Set up slow-path MBOX CQ/MQ */
10981 if (!phba->sli4_hba.mbx_cq || !phba->sli4_hba.mbx_wq) {
10982 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
10983 "0528 %s not allocated\n",
10984 phba->sli4_hba.mbx_cq ?
10985 "Mailbox WQ" : "Mailbox CQ");
10990 rc = lpfc_create_wq_cq(phba, qp[0].hba_eq,
10991 phba->sli4_hba.mbx_cq,
10992 phba->sli4_hba.mbx_wq,
10993 NULL, 0, LPFC_MBOX);
10995 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
10996 "0529 Failed setup of mailbox WQ/CQ: rc = 0x%x\n",
11000 if (phba->nvmet_support) {
11001 if (!phba->sli4_hba.nvmet_cqset) {
11002 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
11003 "3165 Fast-path NVME CQ Set "
11004 "array not allocated\n");
11008 if (phba->cfg_nvmet_mrq > 1) {
11009 rc = lpfc_cq_create_set(phba,
11010 phba->sli4_hba.nvmet_cqset,
11012 LPFC_WCQ, LPFC_NVMET);
11014 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
11015 "3164 Failed setup of NVME CQ "
11016 "Set, rc = 0x%x\n",
11021 /* Set up NVMET Receive Complete Queue */
11022 rc = lpfc_cq_create(phba, phba->sli4_hba.nvmet_cqset[0],
11024 LPFC_WCQ, LPFC_NVMET);
11026 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
11027 "6089 Failed setup NVMET CQ: "
11028 "rc = 0x%x\n", (uint32_t)rc);
11031 phba->sli4_hba.nvmet_cqset[0]->chann = 0;
11033 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
11034 "6090 NVMET CQ setup: cq-id=%d, "
11035 "parent eq-id=%d\n",
11036 phba->sli4_hba.nvmet_cqset[0]->queue_id,
11037 qp[0].hba_eq->queue_id);
11041 /* Set up slow-path ELS WQ/CQ */
11042 if (!phba->sli4_hba.els_cq || !phba->sli4_hba.els_wq) {
11043 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
11044 "0530 ELS %s not allocated\n",
11045 phba->sli4_hba.els_cq ? "WQ" : "CQ");
11049 rc = lpfc_create_wq_cq(phba, qp[0].hba_eq,
11050 phba->sli4_hba.els_cq,
11051 phba->sli4_hba.els_wq,
11052 NULL, 0, LPFC_ELS);
11054 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
11055 "0525 Failed setup of ELS WQ/CQ: rc = 0x%x\n",
11059 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
11060 "2590 ELS WQ setup: wq-id=%d, parent cq-id=%d\n",
11061 phba->sli4_hba.els_wq->queue_id,
11062 phba->sli4_hba.els_cq->queue_id);
11064 if (phba->cfg_enable_fc4_type & LPFC_ENABLE_NVME) {
11065 /* Set up NVME LS Complete Queue */
11066 if (!phba->sli4_hba.nvmels_cq || !phba->sli4_hba.nvmels_wq) {
11067 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
11068 "6091 LS %s not allocated\n",
11069 phba->sli4_hba.nvmels_cq ? "WQ" : "CQ");
11073 rc = lpfc_create_wq_cq(phba, qp[0].hba_eq,
11074 phba->sli4_hba.nvmels_cq,
11075 phba->sli4_hba.nvmels_wq,
11076 NULL, 0, LPFC_NVME_LS);
11078 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
11079 "0526 Failed setup of NVVME LS WQ/CQ: "
11080 "rc = 0x%x\n", (uint32_t)rc);
11084 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
11085 "6096 ELS WQ setup: wq-id=%d, "
11086 "parent cq-id=%d\n",
11087 phba->sli4_hba.nvmels_wq->queue_id,
11088 phba->sli4_hba.nvmels_cq->queue_id);
11092 * Create NVMET Receive Queue (RQ)
11094 if (phba->nvmet_support) {
11095 if ((!phba->sli4_hba.nvmet_cqset) ||
11096 (!phba->sli4_hba.nvmet_mrq_hdr) ||
11097 (!phba->sli4_hba.nvmet_mrq_data)) {
11098 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
11099 "6130 MRQ CQ Queues not "
11104 if (phba->cfg_nvmet_mrq > 1) {
11105 rc = lpfc_mrq_create(phba,
11106 phba->sli4_hba.nvmet_mrq_hdr,
11107 phba->sli4_hba.nvmet_mrq_data,
11108 phba->sli4_hba.nvmet_cqset,
11111 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
11112 "6098 Failed setup of NVMET "
11113 "MRQ: rc = 0x%x\n",
11119 rc = lpfc_rq_create(phba,
11120 phba->sli4_hba.nvmet_mrq_hdr[0],
11121 phba->sli4_hba.nvmet_mrq_data[0],
11122 phba->sli4_hba.nvmet_cqset[0],
11125 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
11126 "6057 Failed setup of NVMET "
11127 "Receive Queue: rc = 0x%x\n",
11133 phba, KERN_INFO, LOG_INIT,
11134 "6099 NVMET RQ setup: hdr-rq-id=%d, "
11135 "dat-rq-id=%d parent cq-id=%d\n",
11136 phba->sli4_hba.nvmet_mrq_hdr[0]->queue_id,
11137 phba->sli4_hba.nvmet_mrq_data[0]->queue_id,
11138 phba->sli4_hba.nvmet_cqset[0]->queue_id);
11143 if (!phba->sli4_hba.hdr_rq || !phba->sli4_hba.dat_rq) {
11144 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
11145 "0540 Receive Queue not allocated\n");
11150 rc = lpfc_rq_create(phba, phba->sli4_hba.hdr_rq, phba->sli4_hba.dat_rq,
11151 phba->sli4_hba.els_cq, LPFC_USOL);
11153 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
11154 "0541 Failed setup of Receive Queue: "
11155 "rc = 0x%x\n", (uint32_t)rc);
11159 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
11160 "2592 USL RQ setup: hdr-rq-id=%d, dat-rq-id=%d "
11161 "parent cq-id=%d\n",
11162 phba->sli4_hba.hdr_rq->queue_id,
11163 phba->sli4_hba.dat_rq->queue_id,
11164 phba->sli4_hba.els_cq->queue_id);
11166 if (phba->cfg_fcp_imax)
11167 usdelay = LPFC_SEC_TO_USEC / phba->cfg_fcp_imax;
11171 for (qidx = 0; qidx < phba->cfg_irq_chann;
11172 qidx += LPFC_MAX_EQ_DELAY_EQID_CNT)
11173 lpfc_modify_hba_eq_delay(phba, qidx, LPFC_MAX_EQ_DELAY_EQID_CNT,
11176 if (phba->sli4_hba.cq_max) {
11177 kfree(phba->sli4_hba.cq_lookup);
11178 phba->sli4_hba.cq_lookup = kcalloc((phba->sli4_hba.cq_max + 1),
11179 sizeof(struct lpfc_queue *), GFP_KERNEL);
11180 if (!phba->sli4_hba.cq_lookup) {
11181 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
11182 "0549 Failed setup of CQ Lookup table: "
11183 "size 0x%x\n", phba->sli4_hba.cq_max);
11187 lpfc_setup_cq_lookup(phba);
11192 lpfc_sli4_queue_unset(phba);
11198 * lpfc_sli4_queue_unset - Unset all the SLI4 queues
11199 * @phba: pointer to lpfc hba data structure.
11201 * This routine is invoked to unset all the SLI4 queues with the FCoE HBA
11206 * -ENOMEM - No available memory
11207 * -EIO - The mailbox failed to complete successfully.
11210 lpfc_sli4_queue_unset(struct lpfc_hba *phba)
11212 struct lpfc_sli4_hdw_queue *qp;
11213 struct lpfc_queue *eq;
11216 /* Unset mailbox command work queue */
11217 if (phba->sli4_hba.mbx_wq)
11218 lpfc_mq_destroy(phba, phba->sli4_hba.mbx_wq);
11220 /* Unset NVME LS work queue */
11221 if (phba->sli4_hba.nvmels_wq)
11222 lpfc_wq_destroy(phba, phba->sli4_hba.nvmels_wq);
11224 /* Unset ELS work queue */
11225 if (phba->sli4_hba.els_wq)
11226 lpfc_wq_destroy(phba, phba->sli4_hba.els_wq);
11228 /* Unset unsolicited receive queue */
11229 if (phba->sli4_hba.hdr_rq)
11230 lpfc_rq_destroy(phba, phba->sli4_hba.hdr_rq,
11231 phba->sli4_hba.dat_rq);
11233 /* Unset mailbox command complete queue */
11234 if (phba->sli4_hba.mbx_cq)
11235 lpfc_cq_destroy(phba, phba->sli4_hba.mbx_cq);
11237 /* Unset ELS complete queue */
11238 if (phba->sli4_hba.els_cq)
11239 lpfc_cq_destroy(phba, phba->sli4_hba.els_cq);
11241 /* Unset NVME LS complete queue */
11242 if (phba->sli4_hba.nvmels_cq)
11243 lpfc_cq_destroy(phba, phba->sli4_hba.nvmels_cq);
11245 if (phba->nvmet_support) {
11246 /* Unset NVMET MRQ queue */
11247 if (phba->sli4_hba.nvmet_mrq_hdr) {
11248 for (qidx = 0; qidx < phba->cfg_nvmet_mrq; qidx++)
11251 phba->sli4_hba.nvmet_mrq_hdr[qidx],
11252 phba->sli4_hba.nvmet_mrq_data[qidx]);
11255 /* Unset NVMET CQ Set complete queue */
11256 if (phba->sli4_hba.nvmet_cqset) {
11257 for (qidx = 0; qidx < phba->cfg_nvmet_mrq; qidx++)
11259 phba, phba->sli4_hba.nvmet_cqset[qidx]);
11263 /* Unset fast-path SLI4 queues */
11264 if (phba->sli4_hba.hdwq) {
11265 /* Loop thru all Hardware Queues */
11266 for (qidx = 0; qidx < phba->cfg_hdw_queue; qidx++) {
11267 /* Destroy the CQ/WQ corresponding to Hardware Queue */
11268 qp = &phba->sli4_hba.hdwq[qidx];
11269 lpfc_wq_destroy(phba, qp->io_wq);
11270 lpfc_cq_destroy(phba, qp->io_cq);
11272 /* Loop thru all IRQ vectors */
11273 for (qidx = 0; qidx < phba->cfg_irq_chann; qidx++) {
11274 /* Destroy the EQ corresponding to the IRQ vector */
11275 eq = phba->sli4_hba.hba_eq_hdl[qidx].eq;
11276 lpfc_eq_destroy(phba, eq);
11280 kfree(phba->sli4_hba.cq_lookup);
11281 phba->sli4_hba.cq_lookup = NULL;
11282 phba->sli4_hba.cq_max = 0;
11286 * lpfc_sli4_cq_event_pool_create - Create completion-queue event free pool
11287 * @phba: pointer to lpfc hba data structure.
11289 * This routine is invoked to allocate and set up a pool of completion queue
11290 * events. The body of the completion queue event is a completion queue entry
11291 * CQE. For now, this pool is used for the interrupt service routine to queue
11292 * the following HBA completion queue events for the worker thread to process:
11293 * - Mailbox asynchronous events
11294 * - Receive queue completion unsolicited events
11295 * Later, this can be used for all the slow-path events.
11299 * -ENOMEM - No available memory
11302 lpfc_sli4_cq_event_pool_create(struct lpfc_hba *phba)
11304 struct lpfc_cq_event *cq_event;
11307 for (i = 0; i < (4 * phba->sli4_hba.cq_ecount); i++) {
11308 cq_event = kmalloc(sizeof(struct lpfc_cq_event), GFP_KERNEL);
11310 goto out_pool_create_fail;
11311 list_add_tail(&cq_event->list,
11312 &phba->sli4_hba.sp_cqe_event_pool);
11316 out_pool_create_fail:
11317 lpfc_sli4_cq_event_pool_destroy(phba);
11322 * lpfc_sli4_cq_event_pool_destroy - Free completion-queue event free pool
11323 * @phba: pointer to lpfc hba data structure.
11325 * This routine is invoked to free the pool of completion queue events at
11326 * driver unload time. Note that, it is the responsibility of the driver
11327 * cleanup routine to free all the outstanding completion-queue events
11328 * allocated from this pool back into the pool before invoking this routine
11329 * to destroy the pool.
11332 lpfc_sli4_cq_event_pool_destroy(struct lpfc_hba *phba)
11334 struct lpfc_cq_event *cq_event, *next_cq_event;
11336 list_for_each_entry_safe(cq_event, next_cq_event,
11337 &phba->sli4_hba.sp_cqe_event_pool, list) {
11338 list_del(&cq_event->list);
11344 * __lpfc_sli4_cq_event_alloc - Allocate a completion-queue event from free pool
11345 * @phba: pointer to lpfc hba data structure.
11347 * This routine is the lock free version of the API invoked to allocate a
11348 * completion-queue event from the free pool.
11350 * Return: Pointer to the newly allocated completion-queue event if successful
11353 struct lpfc_cq_event *
11354 __lpfc_sli4_cq_event_alloc(struct lpfc_hba *phba)
11356 struct lpfc_cq_event *cq_event = NULL;
11358 list_remove_head(&phba->sli4_hba.sp_cqe_event_pool, cq_event,
11359 struct lpfc_cq_event, list);
11364 * lpfc_sli4_cq_event_alloc - Allocate a completion-queue event from free pool
11365 * @phba: pointer to lpfc hba data structure.
11367 * This routine is the lock version of the API invoked to allocate a
11368 * completion-queue event from the free pool.
11370 * Return: Pointer to the newly allocated completion-queue event if successful
11373 struct lpfc_cq_event *
11374 lpfc_sli4_cq_event_alloc(struct lpfc_hba *phba)
11376 struct lpfc_cq_event *cq_event;
11377 unsigned long iflags;
11379 spin_lock_irqsave(&phba->hbalock, iflags);
11380 cq_event = __lpfc_sli4_cq_event_alloc(phba);
11381 spin_unlock_irqrestore(&phba->hbalock, iflags);
11386 * __lpfc_sli4_cq_event_release - Release a completion-queue event to free pool
11387 * @phba: pointer to lpfc hba data structure.
11388 * @cq_event: pointer to the completion queue event to be freed.
11390 * This routine is the lock free version of the API invoked to release a
11391 * completion-queue event back into the free pool.
11394 __lpfc_sli4_cq_event_release(struct lpfc_hba *phba,
11395 struct lpfc_cq_event *cq_event)
11397 list_add_tail(&cq_event->list, &phba->sli4_hba.sp_cqe_event_pool);
11401 * lpfc_sli4_cq_event_release - Release a completion-queue event to free pool
11402 * @phba: pointer to lpfc hba data structure.
11403 * @cq_event: pointer to the completion queue event to be freed.
11405 * This routine is the lock version of the API invoked to release a
11406 * completion-queue event back into the free pool.
11409 lpfc_sli4_cq_event_release(struct lpfc_hba *phba,
11410 struct lpfc_cq_event *cq_event)
11412 unsigned long iflags;
11413 spin_lock_irqsave(&phba->hbalock, iflags);
11414 __lpfc_sli4_cq_event_release(phba, cq_event);
11415 spin_unlock_irqrestore(&phba->hbalock, iflags);
11419 * lpfc_sli4_cq_event_release_all - Release all cq events to the free pool
11420 * @phba: pointer to lpfc hba data structure.
11422 * This routine is to free all the pending completion-queue events to the
11423 * back into the free pool for device reset.
11426 lpfc_sli4_cq_event_release_all(struct lpfc_hba *phba)
11428 LIST_HEAD(cq_event_list);
11429 struct lpfc_cq_event *cq_event;
11430 unsigned long iflags;
11432 /* Retrieve all the pending WCQEs from pending WCQE lists */
11434 /* Pending ELS XRI abort events */
11435 spin_lock_irqsave(&phba->sli4_hba.els_xri_abrt_list_lock, iflags);
11436 list_splice_init(&phba->sli4_hba.sp_els_xri_aborted_work_queue,
11438 spin_unlock_irqrestore(&phba->sli4_hba.els_xri_abrt_list_lock, iflags);
11440 /* Pending asynnc events */
11441 spin_lock_irqsave(&phba->sli4_hba.asynce_list_lock, iflags);
11442 list_splice_init(&phba->sli4_hba.sp_asynce_work_queue,
11444 spin_unlock_irqrestore(&phba->sli4_hba.asynce_list_lock, iflags);
11446 while (!list_empty(&cq_event_list)) {
11447 list_remove_head(&cq_event_list, cq_event,
11448 struct lpfc_cq_event, list);
11449 lpfc_sli4_cq_event_release(phba, cq_event);
11454 * lpfc_pci_function_reset - Reset pci function.
11455 * @phba: pointer to lpfc hba data structure.
11457 * This routine is invoked to request a PCI function reset. It will destroys
11458 * all resources assigned to the PCI function which originates this request.
11462 * -ENOMEM - No available memory
11463 * -EIO - The mailbox failed to complete successfully.
11466 lpfc_pci_function_reset(struct lpfc_hba *phba)
11468 LPFC_MBOXQ_t *mboxq;
11469 uint32_t rc = 0, if_type;
11470 uint32_t shdr_status, shdr_add_status;
11472 uint32_t port_reset = 0;
11473 union lpfc_sli4_cfg_shdr *shdr;
11474 struct lpfc_register reg_data;
11477 if_type = bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf);
11479 case LPFC_SLI_INTF_IF_TYPE_0:
11480 mboxq = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool,
11483 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
11484 "0494 Unable to allocate memory for "
11485 "issuing SLI_FUNCTION_RESET mailbox "
11490 /* Setup PCI function reset mailbox-ioctl command */
11491 lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_COMMON,
11492 LPFC_MBOX_OPCODE_FUNCTION_RESET, 0,
11493 LPFC_SLI4_MBX_EMBED);
11494 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
11495 shdr = (union lpfc_sli4_cfg_shdr *)
11496 &mboxq->u.mqe.un.sli4_config.header.cfg_shdr;
11497 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
11498 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status,
11500 mempool_free(mboxq, phba->mbox_mem_pool);
11501 if (shdr_status || shdr_add_status || rc) {
11502 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
11503 "0495 SLI_FUNCTION_RESET mailbox "
11504 "failed with status x%x add_status x%x,"
11505 " mbx status x%x\n",
11506 shdr_status, shdr_add_status, rc);
11510 case LPFC_SLI_INTF_IF_TYPE_2:
11511 case LPFC_SLI_INTF_IF_TYPE_6:
11514 * Poll the Port Status Register and wait for RDY for
11515 * up to 30 seconds. If the port doesn't respond, treat
11518 for (rdy_chk = 0; rdy_chk < 1500; rdy_chk++) {
11519 if (lpfc_readl(phba->sli4_hba.u.if_type2.
11520 STATUSregaddr, ®_data.word0)) {
11524 if (bf_get(lpfc_sliport_status_rdy, ®_data))
11529 if (!bf_get(lpfc_sliport_status_rdy, ®_data)) {
11530 phba->work_status[0] = readl(
11531 phba->sli4_hba.u.if_type2.ERR1regaddr);
11532 phba->work_status[1] = readl(
11533 phba->sli4_hba.u.if_type2.ERR2regaddr);
11534 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
11535 "2890 Port not ready, port status reg "
11536 "0x%x error 1=0x%x, error 2=0x%x\n",
11538 phba->work_status[0],
11539 phba->work_status[1]);
11546 * Reset the port now
11548 reg_data.word0 = 0;
11549 bf_set(lpfc_sliport_ctrl_end, ®_data,
11550 LPFC_SLIPORT_LITTLE_ENDIAN);
11551 bf_set(lpfc_sliport_ctrl_ip, ®_data,
11552 LPFC_SLIPORT_INIT_PORT);
11553 writel(reg_data.word0, phba->sli4_hba.u.if_type2.
11556 pci_read_config_word(phba->pcidev,
11557 PCI_DEVICE_ID, &devid);
11562 } else if (bf_get(lpfc_sliport_status_rn, ®_data)) {
11568 case LPFC_SLI_INTF_IF_TYPE_1:
11574 /* Catch the not-ready port failure after a port reset. */
11576 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
11577 "3317 HBA not functional: IP Reset Failed "
11578 "try: echo fw_reset > board_mode\n");
11586 * lpfc_sli4_pci_mem_setup - Setup SLI4 HBA PCI memory space.
11587 * @phba: pointer to lpfc hba data structure.
11589 * This routine is invoked to set up the PCI device memory space for device
11590 * with SLI-4 interface spec.
11594 * other values - error
11597 lpfc_sli4_pci_mem_setup(struct lpfc_hba *phba)
11599 struct pci_dev *pdev = phba->pcidev;
11600 unsigned long bar0map_len, bar1map_len, bar2map_len;
11607 /* Set the device DMA mask size */
11608 error = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64));
11610 error = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
11615 * The BARs and register set definitions and offset locations are
11616 * dependent on the if_type.
11618 if (pci_read_config_dword(pdev, LPFC_SLI_INTF,
11619 &phba->sli4_hba.sli_intf.word0)) {
11623 /* There is no SLI3 failback for SLI4 devices. */
11624 if (bf_get(lpfc_sli_intf_valid, &phba->sli4_hba.sli_intf) !=
11625 LPFC_SLI_INTF_VALID) {
11626 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
11627 "2894 SLI_INTF reg contents invalid "
11628 "sli_intf reg 0x%x\n",
11629 phba->sli4_hba.sli_intf.word0);
11633 if_type = bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf);
11635 * Get the bus address of SLI4 device Bar regions and the
11636 * number of bytes required by each mapping. The mapping of the
11637 * particular PCI BARs regions is dependent on the type of
11640 if (pci_resource_start(pdev, PCI_64BIT_BAR0)) {
11641 phba->pci_bar0_map = pci_resource_start(pdev, PCI_64BIT_BAR0);
11642 bar0map_len = pci_resource_len(pdev, PCI_64BIT_BAR0);
11645 * Map SLI4 PCI Config Space Register base to a kernel virtual
11648 phba->sli4_hba.conf_regs_memmap_p =
11649 ioremap(phba->pci_bar0_map, bar0map_len);
11650 if (!phba->sli4_hba.conf_regs_memmap_p) {
11651 dev_printk(KERN_ERR, &pdev->dev,
11652 "ioremap failed for SLI4 PCI config "
11656 phba->pci_bar0_memmap_p = phba->sli4_hba.conf_regs_memmap_p;
11657 /* Set up BAR0 PCI config space register memory map */
11658 lpfc_sli4_bar0_register_memmap(phba, if_type);
11660 phba->pci_bar0_map = pci_resource_start(pdev, 1);
11661 bar0map_len = pci_resource_len(pdev, 1);
11662 if (if_type >= LPFC_SLI_INTF_IF_TYPE_2) {
11663 dev_printk(KERN_ERR, &pdev->dev,
11664 "FATAL - No BAR0 mapping for SLI4, if_type 2\n");
11667 phba->sli4_hba.conf_regs_memmap_p =
11668 ioremap(phba->pci_bar0_map, bar0map_len);
11669 if (!phba->sli4_hba.conf_regs_memmap_p) {
11670 dev_printk(KERN_ERR, &pdev->dev,
11671 "ioremap failed for SLI4 PCI config "
11675 lpfc_sli4_bar0_register_memmap(phba, if_type);
11678 if (if_type == LPFC_SLI_INTF_IF_TYPE_0) {
11679 if (pci_resource_start(pdev, PCI_64BIT_BAR2)) {
11681 * Map SLI4 if type 0 HBA Control Register base to a
11682 * kernel virtual address and setup the registers.
11684 phba->pci_bar1_map = pci_resource_start(pdev,
11686 bar1map_len = pci_resource_len(pdev, PCI_64BIT_BAR2);
11687 phba->sli4_hba.ctrl_regs_memmap_p =
11688 ioremap(phba->pci_bar1_map,
11690 if (!phba->sli4_hba.ctrl_regs_memmap_p) {
11691 dev_err(&pdev->dev,
11692 "ioremap failed for SLI4 HBA "
11693 "control registers.\n");
11695 goto out_iounmap_conf;
11697 phba->pci_bar2_memmap_p =
11698 phba->sli4_hba.ctrl_regs_memmap_p;
11699 lpfc_sli4_bar1_register_memmap(phba, if_type);
11702 goto out_iounmap_conf;
11706 if ((if_type == LPFC_SLI_INTF_IF_TYPE_6) &&
11707 (pci_resource_start(pdev, PCI_64BIT_BAR2))) {
11709 * Map SLI4 if type 6 HBA Doorbell Register base to a kernel
11710 * virtual address and setup the registers.
11712 phba->pci_bar1_map = pci_resource_start(pdev, PCI_64BIT_BAR2);
11713 bar1map_len = pci_resource_len(pdev, PCI_64BIT_BAR2);
11714 phba->sli4_hba.drbl_regs_memmap_p =
11715 ioremap(phba->pci_bar1_map, bar1map_len);
11716 if (!phba->sli4_hba.drbl_regs_memmap_p) {
11717 dev_err(&pdev->dev,
11718 "ioremap failed for SLI4 HBA doorbell registers.\n");
11720 goto out_iounmap_conf;
11722 phba->pci_bar2_memmap_p = phba->sli4_hba.drbl_regs_memmap_p;
11723 lpfc_sli4_bar1_register_memmap(phba, if_type);
11726 if (if_type == LPFC_SLI_INTF_IF_TYPE_0) {
11727 if (pci_resource_start(pdev, PCI_64BIT_BAR4)) {
11729 * Map SLI4 if type 0 HBA Doorbell Register base to
11730 * a kernel virtual address and setup the registers.
11732 phba->pci_bar2_map = pci_resource_start(pdev,
11734 bar2map_len = pci_resource_len(pdev, PCI_64BIT_BAR4);
11735 phba->sli4_hba.drbl_regs_memmap_p =
11736 ioremap(phba->pci_bar2_map,
11738 if (!phba->sli4_hba.drbl_regs_memmap_p) {
11739 dev_err(&pdev->dev,
11740 "ioremap failed for SLI4 HBA"
11741 " doorbell registers.\n");
11743 goto out_iounmap_ctrl;
11745 phba->pci_bar4_memmap_p =
11746 phba->sli4_hba.drbl_regs_memmap_p;
11747 error = lpfc_sli4_bar2_register_memmap(phba, LPFC_VF0);
11749 goto out_iounmap_all;
11752 goto out_iounmap_all;
11756 if (if_type == LPFC_SLI_INTF_IF_TYPE_6 &&
11757 pci_resource_start(pdev, PCI_64BIT_BAR4)) {
11759 * Map SLI4 if type 6 HBA DPP Register base to a kernel
11760 * virtual address and setup the registers.
11762 phba->pci_bar2_map = pci_resource_start(pdev, PCI_64BIT_BAR4);
11763 bar2map_len = pci_resource_len(pdev, PCI_64BIT_BAR4);
11764 phba->sli4_hba.dpp_regs_memmap_p =
11765 ioremap(phba->pci_bar2_map, bar2map_len);
11766 if (!phba->sli4_hba.dpp_regs_memmap_p) {
11767 dev_err(&pdev->dev,
11768 "ioremap failed for SLI4 HBA dpp registers.\n");
11770 goto out_iounmap_ctrl;
11772 phba->pci_bar4_memmap_p = phba->sli4_hba.dpp_regs_memmap_p;
11775 /* Set up the EQ/CQ register handeling functions now */
11777 case LPFC_SLI_INTF_IF_TYPE_0:
11778 case LPFC_SLI_INTF_IF_TYPE_2:
11779 phba->sli4_hba.sli4_eq_clr_intr = lpfc_sli4_eq_clr_intr;
11780 phba->sli4_hba.sli4_write_eq_db = lpfc_sli4_write_eq_db;
11781 phba->sli4_hba.sli4_write_cq_db = lpfc_sli4_write_cq_db;
11783 case LPFC_SLI_INTF_IF_TYPE_6:
11784 phba->sli4_hba.sli4_eq_clr_intr = lpfc_sli4_if6_eq_clr_intr;
11785 phba->sli4_hba.sli4_write_eq_db = lpfc_sli4_if6_write_eq_db;
11786 phba->sli4_hba.sli4_write_cq_db = lpfc_sli4_if6_write_cq_db;
11795 iounmap(phba->sli4_hba.drbl_regs_memmap_p);
11797 iounmap(phba->sli4_hba.ctrl_regs_memmap_p);
11799 iounmap(phba->sli4_hba.conf_regs_memmap_p);
11805 * lpfc_sli4_pci_mem_unset - Unset SLI4 HBA PCI memory space.
11806 * @phba: pointer to lpfc hba data structure.
11808 * This routine is invoked to unset the PCI device memory space for device
11809 * with SLI-4 interface spec.
11812 lpfc_sli4_pci_mem_unset(struct lpfc_hba *phba)
11815 if_type = bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf);
11818 case LPFC_SLI_INTF_IF_TYPE_0:
11819 iounmap(phba->sli4_hba.drbl_regs_memmap_p);
11820 iounmap(phba->sli4_hba.ctrl_regs_memmap_p);
11821 iounmap(phba->sli4_hba.conf_regs_memmap_p);
11823 case LPFC_SLI_INTF_IF_TYPE_2:
11824 iounmap(phba->sli4_hba.conf_regs_memmap_p);
11826 case LPFC_SLI_INTF_IF_TYPE_6:
11827 iounmap(phba->sli4_hba.drbl_regs_memmap_p);
11828 iounmap(phba->sli4_hba.conf_regs_memmap_p);
11829 if (phba->sli4_hba.dpp_regs_memmap_p)
11830 iounmap(phba->sli4_hba.dpp_regs_memmap_p);
11832 case LPFC_SLI_INTF_IF_TYPE_1:
11834 dev_printk(KERN_ERR, &phba->pcidev->dev,
11835 "FATAL - unsupported SLI4 interface type - %d\n",
11842 * lpfc_sli_enable_msix - Enable MSI-X interrupt mode on SLI-3 device
11843 * @phba: pointer to lpfc hba data structure.
11845 * This routine is invoked to enable the MSI-X interrupt vectors to device
11846 * with SLI-3 interface specs.
11850 * other values - error
11853 lpfc_sli_enable_msix(struct lpfc_hba *phba)
11858 /* Set up MSI-X multi-message vectors */
11859 rc = pci_alloc_irq_vectors(phba->pcidev,
11860 LPFC_MSIX_VECTORS, LPFC_MSIX_VECTORS, PCI_IRQ_MSIX);
11862 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
11863 "0420 PCI enable MSI-X failed (%d)\n", rc);
11868 * Assign MSI-X vectors to interrupt handlers
11871 /* vector-0 is associated to slow-path handler */
11872 rc = request_irq(pci_irq_vector(phba->pcidev, 0),
11873 &lpfc_sli_sp_intr_handler, 0,
11874 LPFC_SP_DRIVER_HANDLER_NAME, phba);
11876 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
11877 "0421 MSI-X slow-path request_irq failed "
11882 /* vector-1 is associated to fast-path handler */
11883 rc = request_irq(pci_irq_vector(phba->pcidev, 1),
11884 &lpfc_sli_fp_intr_handler, 0,
11885 LPFC_FP_DRIVER_HANDLER_NAME, phba);
11888 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
11889 "0429 MSI-X fast-path request_irq failed "
11895 * Configure HBA MSI-X attention conditions to messages
11897 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
11901 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
11902 "0474 Unable to allocate memory for issuing "
11903 "MBOX_CONFIG_MSI command\n");
11906 rc = lpfc_config_msi(phba, pmb);
11909 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
11910 if (rc != MBX_SUCCESS) {
11911 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX,
11912 "0351 Config MSI mailbox command failed, "
11913 "mbxCmd x%x, mbxStatus x%x\n",
11914 pmb->u.mb.mbxCommand, pmb->u.mb.mbxStatus);
11918 /* Free memory allocated for mailbox command */
11919 mempool_free(pmb, phba->mbox_mem_pool);
11923 /* Free memory allocated for mailbox command */
11924 mempool_free(pmb, phba->mbox_mem_pool);
11927 /* free the irq already requested */
11928 free_irq(pci_irq_vector(phba->pcidev, 1), phba);
11931 /* free the irq already requested */
11932 free_irq(pci_irq_vector(phba->pcidev, 0), phba);
11935 /* Unconfigure MSI-X capability structure */
11936 pci_free_irq_vectors(phba->pcidev);
11943 * lpfc_sli_enable_msi - Enable MSI interrupt mode on SLI-3 device.
11944 * @phba: pointer to lpfc hba data structure.
11946 * This routine is invoked to enable the MSI interrupt mode to device with
11947 * SLI-3 interface spec. The kernel function pci_enable_msi() is called to
11948 * enable the MSI vector. The device driver is responsible for calling the
11949 * request_irq() to register MSI vector with a interrupt the handler, which
11950 * is done in this function.
11954 * other values - error
11957 lpfc_sli_enable_msi(struct lpfc_hba *phba)
11961 rc = pci_enable_msi(phba->pcidev);
11963 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
11964 "0462 PCI enable MSI mode success.\n");
11966 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
11967 "0471 PCI enable MSI mode failed (%d)\n", rc);
11971 rc = request_irq(phba->pcidev->irq, lpfc_sli_intr_handler,
11972 0, LPFC_DRIVER_NAME, phba);
11974 pci_disable_msi(phba->pcidev);
11975 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
11976 "0478 MSI request_irq failed (%d)\n", rc);
11982 * lpfc_sli_enable_intr - Enable device interrupt to SLI-3 device.
11983 * @phba: pointer to lpfc hba data structure.
11984 * @cfg_mode: Interrupt configuration mode (INTx, MSI or MSI-X).
11986 * This routine is invoked to enable device interrupt and associate driver's
11987 * interrupt handler(s) to interrupt vector(s) to device with SLI-3 interface
11988 * spec. Depends on the interrupt mode configured to the driver, the driver
11989 * will try to fallback from the configured interrupt mode to an interrupt
11990 * mode which is supported by the platform, kernel, and device in the order
11992 * MSI-X -> MSI -> IRQ.
11996 * other values - error
11999 lpfc_sli_enable_intr(struct lpfc_hba *phba, uint32_t cfg_mode)
12001 uint32_t intr_mode = LPFC_INTR_ERROR;
12004 /* Need to issue conf_port mbox cmd before conf_msi mbox cmd */
12005 retval = lpfc_sli_config_port(phba, LPFC_SLI_REV3);
12008 phba->hba_flag &= ~HBA_NEEDS_CFG_PORT;
12010 if (cfg_mode == 2) {
12011 /* Now, try to enable MSI-X interrupt mode */
12012 retval = lpfc_sli_enable_msix(phba);
12014 /* Indicate initialization to MSI-X mode */
12015 phba->intr_type = MSIX;
12020 /* Fallback to MSI if MSI-X initialization failed */
12021 if (cfg_mode >= 1 && phba->intr_type == NONE) {
12022 retval = lpfc_sli_enable_msi(phba);
12024 /* Indicate initialization to MSI mode */
12025 phba->intr_type = MSI;
12030 /* Fallback to INTx if both MSI-X/MSI initalization failed */
12031 if (phba->intr_type == NONE) {
12032 retval = request_irq(phba->pcidev->irq, lpfc_sli_intr_handler,
12033 IRQF_SHARED, LPFC_DRIVER_NAME, phba);
12035 /* Indicate initialization to INTx mode */
12036 phba->intr_type = INTx;
12044 * lpfc_sli_disable_intr - Disable device interrupt to SLI-3 device.
12045 * @phba: pointer to lpfc hba data structure.
12047 * This routine is invoked to disable device interrupt and disassociate the
12048 * driver's interrupt handler(s) from interrupt vector(s) to device with
12049 * SLI-3 interface spec. Depending on the interrupt mode, the driver will
12050 * release the interrupt vector(s) for the message signaled interrupt.
12053 lpfc_sli_disable_intr(struct lpfc_hba *phba)
12057 if (phba->intr_type == MSIX)
12058 nr_irqs = LPFC_MSIX_VECTORS;
12062 for (i = 0; i < nr_irqs; i++)
12063 free_irq(pci_irq_vector(phba->pcidev, i), phba);
12064 pci_free_irq_vectors(phba->pcidev);
12066 /* Reset interrupt management states */
12067 phba->intr_type = NONE;
12068 phba->sli.slistat.sli_intr = 0;
12072 * lpfc_find_cpu_handle - Find the CPU that corresponds to the specified Queue
12073 * @phba: pointer to lpfc hba data structure.
12074 * @id: EQ vector index or Hardware Queue index
12075 * @match: LPFC_FIND_BY_EQ = match by EQ
12076 * LPFC_FIND_BY_HDWQ = match by Hardware Queue
12077 * Return the CPU that matches the selection criteria
12080 lpfc_find_cpu_handle(struct lpfc_hba *phba, uint16_t id, int match)
12082 struct lpfc_vector_map_info *cpup;
12085 /* Loop through all CPUs */
12086 for_each_present_cpu(cpu) {
12087 cpup = &phba->sli4_hba.cpu_map[cpu];
12089 /* If we are matching by EQ, there may be multiple CPUs using
12090 * using the same vector, so select the one with
12091 * LPFC_CPU_FIRST_IRQ set.
12093 if ((match == LPFC_FIND_BY_EQ) &&
12094 (cpup->flag & LPFC_CPU_FIRST_IRQ) &&
12098 /* If matching by HDWQ, select the first CPU that matches */
12099 if ((match == LPFC_FIND_BY_HDWQ) && (cpup->hdwq == id))
12107 * lpfc_find_hyper - Determine if the CPU map entry is hyper-threaded
12108 * @phba: pointer to lpfc hba data structure.
12109 * @cpu: CPU map index
12110 * @phys_id: CPU package physical id
12111 * @core_id: CPU core id
12114 lpfc_find_hyper(struct lpfc_hba *phba, int cpu,
12115 uint16_t phys_id, uint16_t core_id)
12117 struct lpfc_vector_map_info *cpup;
12120 for_each_present_cpu(idx) {
12121 cpup = &phba->sli4_hba.cpu_map[idx];
12122 /* Does the cpup match the one we are looking for */
12123 if ((cpup->phys_id == phys_id) &&
12124 (cpup->core_id == core_id) &&
12133 * lpfc_assign_eq_map_info - Assigns eq for vector_map structure
12134 * @phba: pointer to lpfc hba data structure.
12135 * @eqidx: index for eq and irq vector
12136 * @flag: flags to set for vector_map structure
12137 * @cpu: cpu used to index vector_map structure
12139 * The routine assigns eq info into vector_map structure
12142 lpfc_assign_eq_map_info(struct lpfc_hba *phba, uint16_t eqidx, uint16_t flag,
12145 struct lpfc_vector_map_info *cpup = &phba->sli4_hba.cpu_map[cpu];
12146 struct lpfc_hba_eq_hdl *eqhdl = lpfc_get_eq_hdl(eqidx);
12149 cpup->flag |= flag;
12151 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
12152 "3336 Set Affinity: CPU %d irq %d eq %d flag x%x\n",
12153 cpu, eqhdl->irq, cpup->eq, cpup->flag);
12157 * lpfc_cpu_map_array_init - Initialize cpu_map structure
12158 * @phba: pointer to lpfc hba data structure.
12160 * The routine initializes the cpu_map array structure
12163 lpfc_cpu_map_array_init(struct lpfc_hba *phba)
12165 struct lpfc_vector_map_info *cpup;
12166 struct lpfc_eq_intr_info *eqi;
12169 for_each_possible_cpu(cpu) {
12170 cpup = &phba->sli4_hba.cpu_map[cpu];
12171 cpup->phys_id = LPFC_VECTOR_MAP_EMPTY;
12172 cpup->core_id = LPFC_VECTOR_MAP_EMPTY;
12173 cpup->hdwq = LPFC_VECTOR_MAP_EMPTY;
12174 cpup->eq = LPFC_VECTOR_MAP_EMPTY;
12176 eqi = per_cpu_ptr(phba->sli4_hba.eq_info, cpu);
12177 INIT_LIST_HEAD(&eqi->list);
12183 * lpfc_hba_eq_hdl_array_init - Initialize hba_eq_hdl structure
12184 * @phba: pointer to lpfc hba data structure.
12186 * The routine initializes the hba_eq_hdl array structure
12189 lpfc_hba_eq_hdl_array_init(struct lpfc_hba *phba)
12191 struct lpfc_hba_eq_hdl *eqhdl;
12194 for (i = 0; i < phba->cfg_irq_chann; i++) {
12195 eqhdl = lpfc_get_eq_hdl(i);
12196 eqhdl->irq = LPFC_VECTOR_MAP_EMPTY;
12197 eqhdl->phba = phba;
12202 * lpfc_cpu_affinity_check - Check vector CPU affinity mappings
12203 * @phba: pointer to lpfc hba data structure.
12204 * @vectors: number of msix vectors allocated.
12206 * The routine will figure out the CPU affinity assignment for every
12207 * MSI-X vector allocated for the HBA.
12208 * In addition, the CPU to IO channel mapping will be calculated
12209 * and the phba->sli4_hba.cpu_map array will reflect this.
12212 lpfc_cpu_affinity_check(struct lpfc_hba *phba, int vectors)
12214 int i, cpu, idx, next_idx, new_cpu, start_cpu, first_cpu;
12215 int max_phys_id, min_phys_id;
12216 int max_core_id, min_core_id;
12217 struct lpfc_vector_map_info *cpup;
12218 struct lpfc_vector_map_info *new_cpup;
12220 struct cpuinfo_x86 *cpuinfo;
12222 #ifdef CONFIG_SCSI_LPFC_DEBUG_FS
12223 struct lpfc_hdwq_stat *c_stat;
12227 min_phys_id = LPFC_VECTOR_MAP_EMPTY;
12229 min_core_id = LPFC_VECTOR_MAP_EMPTY;
12231 /* Update CPU map with physical id and core id of each CPU */
12232 for_each_present_cpu(cpu) {
12233 cpup = &phba->sli4_hba.cpu_map[cpu];
12235 cpuinfo = &cpu_data(cpu);
12236 cpup->phys_id = cpuinfo->phys_proc_id;
12237 cpup->core_id = cpuinfo->cpu_core_id;
12238 if (lpfc_find_hyper(phba, cpu, cpup->phys_id, cpup->core_id))
12239 cpup->flag |= LPFC_CPU_MAP_HYPER;
12241 /* No distinction between CPUs for other platforms */
12243 cpup->core_id = cpu;
12246 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
12247 "3328 CPU %d physid %d coreid %d flag x%x\n",
12248 cpu, cpup->phys_id, cpup->core_id, cpup->flag);
12250 if (cpup->phys_id > max_phys_id)
12251 max_phys_id = cpup->phys_id;
12252 if (cpup->phys_id < min_phys_id)
12253 min_phys_id = cpup->phys_id;
12255 if (cpup->core_id > max_core_id)
12256 max_core_id = cpup->core_id;
12257 if (cpup->core_id < min_core_id)
12258 min_core_id = cpup->core_id;
12261 /* After looking at each irq vector assigned to this pcidev, its
12262 * possible to see that not ALL CPUs have been accounted for.
12263 * Next we will set any unassigned (unaffinitized) cpu map
12264 * entries to a IRQ on the same phys_id.
12266 first_cpu = cpumask_first(cpu_present_mask);
12267 start_cpu = first_cpu;
12269 for_each_present_cpu(cpu) {
12270 cpup = &phba->sli4_hba.cpu_map[cpu];
12272 /* Is this CPU entry unassigned */
12273 if (cpup->eq == LPFC_VECTOR_MAP_EMPTY) {
12274 /* Mark CPU as IRQ not assigned by the kernel */
12275 cpup->flag |= LPFC_CPU_MAP_UNASSIGN;
12277 /* If so, find a new_cpup thats on the the SAME
12278 * phys_id as cpup. start_cpu will start where we
12279 * left off so all unassigned entries don't get assgined
12280 * the IRQ of the first entry.
12282 new_cpu = start_cpu;
12283 for (i = 0; i < phba->sli4_hba.num_present_cpu; i++) {
12284 new_cpup = &phba->sli4_hba.cpu_map[new_cpu];
12285 if (!(new_cpup->flag & LPFC_CPU_MAP_UNASSIGN) &&
12286 (new_cpup->eq != LPFC_VECTOR_MAP_EMPTY) &&
12287 (new_cpup->phys_id == cpup->phys_id))
12289 new_cpu = cpumask_next(
12290 new_cpu, cpu_present_mask);
12291 if (new_cpu == nr_cpumask_bits)
12292 new_cpu = first_cpu;
12294 /* At this point, we leave the CPU as unassigned */
12297 /* We found a matching phys_id, so copy the IRQ info */
12298 cpup->eq = new_cpup->eq;
12300 /* Bump start_cpu to the next slot to minmize the
12301 * chance of having multiple unassigned CPU entries
12302 * selecting the same IRQ.
12304 start_cpu = cpumask_next(new_cpu, cpu_present_mask);
12305 if (start_cpu == nr_cpumask_bits)
12306 start_cpu = first_cpu;
12308 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
12309 "3337 Set Affinity: CPU %d "
12310 "eq %d from peer cpu %d same "
12312 cpu, cpup->eq, new_cpu,
12317 /* Set any unassigned cpu map entries to a IRQ on any phys_id */
12318 start_cpu = first_cpu;
12320 for_each_present_cpu(cpu) {
12321 cpup = &phba->sli4_hba.cpu_map[cpu];
12323 /* Is this entry unassigned */
12324 if (cpup->eq == LPFC_VECTOR_MAP_EMPTY) {
12325 /* Mark it as IRQ not assigned by the kernel */
12326 cpup->flag |= LPFC_CPU_MAP_UNASSIGN;
12328 /* If so, find a new_cpup thats on ANY phys_id
12329 * as the cpup. start_cpu will start where we
12330 * left off so all unassigned entries don't get
12331 * assigned the IRQ of the first entry.
12333 new_cpu = start_cpu;
12334 for (i = 0; i < phba->sli4_hba.num_present_cpu; i++) {
12335 new_cpup = &phba->sli4_hba.cpu_map[new_cpu];
12336 if (!(new_cpup->flag & LPFC_CPU_MAP_UNASSIGN) &&
12337 (new_cpup->eq != LPFC_VECTOR_MAP_EMPTY))
12339 new_cpu = cpumask_next(
12340 new_cpu, cpu_present_mask);
12341 if (new_cpu == nr_cpumask_bits)
12342 new_cpu = first_cpu;
12344 /* We should never leave an entry unassigned */
12345 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
12346 "3339 Set Affinity: CPU %d "
12347 "eq %d UNASSIGNED\n",
12348 cpup->hdwq, cpup->eq);
12351 /* We found an available entry, copy the IRQ info */
12352 cpup->eq = new_cpup->eq;
12354 /* Bump start_cpu to the next slot to minmize the
12355 * chance of having multiple unassigned CPU entries
12356 * selecting the same IRQ.
12358 start_cpu = cpumask_next(new_cpu, cpu_present_mask);
12359 if (start_cpu == nr_cpumask_bits)
12360 start_cpu = first_cpu;
12362 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
12363 "3338 Set Affinity: CPU %d "
12364 "eq %d from peer cpu %d (%d/%d)\n",
12365 cpu, cpup->eq, new_cpu,
12366 new_cpup->phys_id, new_cpup->core_id);
12370 /* Assign hdwq indices that are unique across all cpus in the map
12371 * that are also FIRST_CPUs.
12374 for_each_present_cpu(cpu) {
12375 cpup = &phba->sli4_hba.cpu_map[cpu];
12377 /* Only FIRST IRQs get a hdwq index assignment. */
12378 if (!(cpup->flag & LPFC_CPU_FIRST_IRQ))
12381 /* 1 to 1, the first LPFC_CPU_FIRST_IRQ cpus to a unique hdwq */
12384 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
12385 "3333 Set Affinity: CPU %d (phys %d core %d): "
12386 "hdwq %d eq %d flg x%x\n",
12387 cpu, cpup->phys_id, cpup->core_id,
12388 cpup->hdwq, cpup->eq, cpup->flag);
12390 /* Associate a hdwq with each cpu_map entry
12391 * This will be 1 to 1 - hdwq to cpu, unless there are less
12392 * hardware queues then CPUs. For that case we will just round-robin
12393 * the available hardware queues as they get assigned to CPUs.
12394 * The next_idx is the idx from the FIRST_CPU loop above to account
12395 * for irq_chann < hdwq. The idx is used for round-robin assignments
12396 * and needs to start at 0.
12401 for_each_present_cpu(cpu) {
12402 cpup = &phba->sli4_hba.cpu_map[cpu];
12404 /* FIRST cpus are already mapped. */
12405 if (cpup->flag & LPFC_CPU_FIRST_IRQ)
12408 /* If the cfg_irq_chann < cfg_hdw_queue, set the hdwq
12409 * of the unassigned cpus to the next idx so that all
12410 * hdw queues are fully utilized.
12412 if (next_idx < phba->cfg_hdw_queue) {
12413 cpup->hdwq = next_idx;
12418 /* Not a First CPU and all hdw_queues are used. Reuse a
12419 * Hardware Queue for another CPU, so be smart about it
12420 * and pick one that has its IRQ/EQ mapped to the same phys_id
12421 * (CPU package) and core_id.
12423 new_cpu = start_cpu;
12424 for (i = 0; i < phba->sli4_hba.num_present_cpu; i++) {
12425 new_cpup = &phba->sli4_hba.cpu_map[new_cpu];
12426 if (new_cpup->hdwq != LPFC_VECTOR_MAP_EMPTY &&
12427 new_cpup->phys_id == cpup->phys_id &&
12428 new_cpup->core_id == cpup->core_id) {
12431 new_cpu = cpumask_next(new_cpu, cpu_present_mask);
12432 if (new_cpu == nr_cpumask_bits)
12433 new_cpu = first_cpu;
12436 /* If we can't match both phys_id and core_id,
12437 * settle for just a phys_id match.
12439 new_cpu = start_cpu;
12440 for (i = 0; i < phba->sli4_hba.num_present_cpu; i++) {
12441 new_cpup = &phba->sli4_hba.cpu_map[new_cpu];
12442 if (new_cpup->hdwq != LPFC_VECTOR_MAP_EMPTY &&
12443 new_cpup->phys_id == cpup->phys_id)
12446 new_cpu = cpumask_next(new_cpu, cpu_present_mask);
12447 if (new_cpu == nr_cpumask_bits)
12448 new_cpu = first_cpu;
12451 /* Otherwise just round robin on cfg_hdw_queue */
12452 cpup->hdwq = idx % phba->cfg_hdw_queue;
12456 /* We found an available entry, copy the IRQ info */
12457 start_cpu = cpumask_next(new_cpu, cpu_present_mask);
12458 if (start_cpu == nr_cpumask_bits)
12459 start_cpu = first_cpu;
12460 cpup->hdwq = new_cpup->hdwq;
12462 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
12463 "3335 Set Affinity: CPU %d (phys %d core %d): "
12464 "hdwq %d eq %d flg x%x\n",
12465 cpu, cpup->phys_id, cpup->core_id,
12466 cpup->hdwq, cpup->eq, cpup->flag);
12470 * Initialize the cpu_map slots for not-present cpus in case
12471 * a cpu is hot-added. Perform a simple hdwq round robin assignment.
12474 for_each_possible_cpu(cpu) {
12475 cpup = &phba->sli4_hba.cpu_map[cpu];
12476 #ifdef CONFIG_SCSI_LPFC_DEBUG_FS
12477 c_stat = per_cpu_ptr(phba->sli4_hba.c_stat, cpu);
12478 c_stat->hdwq_no = cpup->hdwq;
12480 if (cpup->hdwq != LPFC_VECTOR_MAP_EMPTY)
12483 cpup->hdwq = idx++ % phba->cfg_hdw_queue;
12484 #ifdef CONFIG_SCSI_LPFC_DEBUG_FS
12485 c_stat->hdwq_no = cpup->hdwq;
12487 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
12488 "3340 Set Affinity: not present "
12489 "CPU %d hdwq %d\n",
12493 /* The cpu_map array will be used later during initialization
12494 * when EQ / CQ / WQs are allocated and configured.
12500 * lpfc_cpuhp_get_eq
12502 * @phba: pointer to lpfc hba data structure.
12503 * @cpu: cpu going offline
12504 * @eqlist: eq list to append to
12507 lpfc_cpuhp_get_eq(struct lpfc_hba *phba, unsigned int cpu,
12508 struct list_head *eqlist)
12510 const struct cpumask *maskp;
12511 struct lpfc_queue *eq;
12512 struct cpumask *tmp;
12515 tmp = kzalloc(cpumask_size(), GFP_KERNEL);
12519 for (idx = 0; idx < phba->cfg_irq_chann; idx++) {
12520 maskp = pci_irq_get_affinity(phba->pcidev, idx);
12524 * if irq is not affinitized to the cpu going
12525 * then we don't need to poll the eq attached
12528 if (!cpumask_and(tmp, maskp, cpumask_of(cpu)))
12530 /* get the cpus that are online and are affini-
12531 * tized to this irq vector. If the count is
12532 * more than 1 then cpuhp is not going to shut-
12533 * down this vector. Since this cpu has not
12534 * gone offline yet, we need >1.
12536 cpumask_and(tmp, maskp, cpu_online_mask);
12537 if (cpumask_weight(tmp) > 1)
12540 /* Now that we have an irq to shutdown, get the eq
12541 * mapped to this irq. Note: multiple hdwq's in
12542 * the software can share an eq, but eventually
12543 * only eq will be mapped to this vector
12545 eq = phba->sli4_hba.hba_eq_hdl[idx].eq;
12546 list_add(&eq->_poll_list, eqlist);
12552 static void __lpfc_cpuhp_remove(struct lpfc_hba *phba)
12554 if (phba->sli_rev != LPFC_SLI_REV4)
12557 cpuhp_state_remove_instance_nocalls(lpfc_cpuhp_state,
12560 * unregistering the instance doesn't stop the polling
12561 * timer. Wait for the poll timer to retire.
12564 del_timer_sync(&phba->cpuhp_poll_timer);
12567 static void lpfc_cpuhp_remove(struct lpfc_hba *phba)
12569 if (phba->pport->fc_flag & FC_OFFLINE_MODE)
12572 __lpfc_cpuhp_remove(phba);
12575 static void lpfc_cpuhp_add(struct lpfc_hba *phba)
12577 if (phba->sli_rev != LPFC_SLI_REV4)
12582 if (!list_empty(&phba->poll_list))
12583 mod_timer(&phba->cpuhp_poll_timer,
12584 jiffies + msecs_to_jiffies(LPFC_POLL_HB));
12588 cpuhp_state_add_instance_nocalls(lpfc_cpuhp_state,
12592 static int __lpfc_cpuhp_checks(struct lpfc_hba *phba, int *retval)
12594 if (phba->pport->load_flag & FC_UNLOADING) {
12599 if (phba->sli_rev != LPFC_SLI_REV4) {
12604 /* proceed with the hotplug */
12609 * lpfc_irq_set_aff - set IRQ affinity
12610 * @eqhdl: EQ handle
12611 * @cpu: cpu to set affinity
12615 lpfc_irq_set_aff(struct lpfc_hba_eq_hdl *eqhdl, unsigned int cpu)
12617 cpumask_clear(&eqhdl->aff_mask);
12618 cpumask_set_cpu(cpu, &eqhdl->aff_mask);
12619 irq_set_status_flags(eqhdl->irq, IRQ_NO_BALANCING);
12620 irq_set_affinity_hint(eqhdl->irq, &eqhdl->aff_mask);
12624 * lpfc_irq_clear_aff - clear IRQ affinity
12625 * @eqhdl: EQ handle
12629 lpfc_irq_clear_aff(struct lpfc_hba_eq_hdl *eqhdl)
12631 cpumask_clear(&eqhdl->aff_mask);
12632 irq_clear_status_flags(eqhdl->irq, IRQ_NO_BALANCING);
12636 * lpfc_irq_rebalance - rebalances IRQ affinity according to cpuhp event
12637 * @phba: pointer to HBA context object.
12638 * @cpu: cpu going offline/online
12639 * @offline: true, cpu is going offline. false, cpu is coming online.
12641 * If cpu is going offline, we'll try our best effort to find the next
12642 * online cpu on the phba's original_mask and migrate all offlining IRQ
12645 * If cpu is coming online, reaffinitize the IRQ back to the onlining cpu.
12647 * Note: Call only if NUMA or NHT mode is enabled, otherwise rely on
12648 * PCI_IRQ_AFFINITY to auto-manage IRQ affinity.
12652 lpfc_irq_rebalance(struct lpfc_hba *phba, unsigned int cpu, bool offline)
12654 struct lpfc_vector_map_info *cpup;
12655 struct cpumask *aff_mask;
12656 unsigned int cpu_select, cpu_next, idx;
12657 const struct cpumask *orig_mask;
12659 if (phba->irq_chann_mode == NORMAL_MODE)
12662 orig_mask = &phba->sli4_hba.irq_aff_mask;
12664 if (!cpumask_test_cpu(cpu, orig_mask))
12667 cpup = &phba->sli4_hba.cpu_map[cpu];
12669 if (!(cpup->flag & LPFC_CPU_FIRST_IRQ))
12673 /* Find next online CPU on original mask */
12674 cpu_next = cpumask_next_wrap(cpu, orig_mask, cpu, true);
12675 cpu_select = lpfc_next_online_cpu(orig_mask, cpu_next);
12677 /* Found a valid CPU */
12678 if ((cpu_select < nr_cpu_ids) && (cpu_select != cpu)) {
12679 /* Go through each eqhdl and ensure offlining
12680 * cpu aff_mask is migrated
12682 for (idx = 0; idx < phba->cfg_irq_chann; idx++) {
12683 aff_mask = lpfc_get_aff_mask(idx);
12685 /* Migrate affinity */
12686 if (cpumask_test_cpu(cpu, aff_mask))
12687 lpfc_irq_set_aff(lpfc_get_eq_hdl(idx),
12691 /* Rely on irqbalance if no online CPUs left on NUMA */
12692 for (idx = 0; idx < phba->cfg_irq_chann; idx++)
12693 lpfc_irq_clear_aff(lpfc_get_eq_hdl(idx));
12696 /* Migrate affinity back to this CPU */
12697 lpfc_irq_set_aff(lpfc_get_eq_hdl(cpup->eq), cpu);
12701 static int lpfc_cpu_offline(unsigned int cpu, struct hlist_node *node)
12703 struct lpfc_hba *phba = hlist_entry_safe(node, struct lpfc_hba, cpuhp);
12704 struct lpfc_queue *eq, *next;
12709 WARN_ONCE(!phba, "cpu: %u. phba:NULL", raw_smp_processor_id());
12713 if (__lpfc_cpuhp_checks(phba, &retval))
12716 lpfc_irq_rebalance(phba, cpu, true);
12718 retval = lpfc_cpuhp_get_eq(phba, cpu, &eqlist);
12722 /* start polling on these eq's */
12723 list_for_each_entry_safe(eq, next, &eqlist, _poll_list) {
12724 list_del_init(&eq->_poll_list);
12725 lpfc_sli4_start_polling(eq);
12731 static int lpfc_cpu_online(unsigned int cpu, struct hlist_node *node)
12733 struct lpfc_hba *phba = hlist_entry_safe(node, struct lpfc_hba, cpuhp);
12734 struct lpfc_queue *eq, *next;
12739 WARN_ONCE(!phba, "cpu: %u. phba:NULL", raw_smp_processor_id());
12743 if (__lpfc_cpuhp_checks(phba, &retval))
12746 lpfc_irq_rebalance(phba, cpu, false);
12748 list_for_each_entry_safe(eq, next, &phba->poll_list, _poll_list) {
12749 n = lpfc_find_cpu_handle(phba, eq->hdwq, LPFC_FIND_BY_HDWQ);
12751 lpfc_sli4_stop_polling(eq);
12758 * lpfc_sli4_enable_msix - Enable MSI-X interrupt mode to SLI-4 device
12759 * @phba: pointer to lpfc hba data structure.
12761 * This routine is invoked to enable the MSI-X interrupt vectors to device
12762 * with SLI-4 interface spec. It also allocates MSI-X vectors and maps them
12763 * to cpus on the system.
12765 * When cfg_irq_numa is enabled, the adapter will only allocate vectors for
12766 * the number of cpus on the same numa node as this adapter. The vectors are
12767 * allocated without requesting OS affinity mapping. A vector will be
12768 * allocated and assigned to each online and offline cpu. If the cpu is
12769 * online, then affinity will be set to that cpu. If the cpu is offline, then
12770 * affinity will be set to the nearest peer cpu within the numa node that is
12771 * online. If there are no online cpus within the numa node, affinity is not
12772 * assigned and the OS may do as it pleases. Note: cpu vector affinity mapping
12773 * is consistent with the way cpu online/offline is handled when cfg_irq_numa is
12776 * If numa mode is not enabled and there is more than 1 vector allocated, then
12777 * the driver relies on the managed irq interface where the OS assigns vector to
12778 * cpu affinity. The driver will then use that affinity mapping to setup its
12779 * cpu mapping table.
12783 * other values - error
12786 lpfc_sli4_enable_msix(struct lpfc_hba *phba)
12788 int vectors, rc, index;
12790 const struct cpumask *aff_mask = NULL;
12791 unsigned int cpu = 0, cpu_cnt = 0, cpu_select = nr_cpu_ids;
12792 struct lpfc_vector_map_info *cpup;
12793 struct lpfc_hba_eq_hdl *eqhdl;
12794 const struct cpumask *maskp;
12795 unsigned int flags = PCI_IRQ_MSIX;
12797 /* Set up MSI-X multi-message vectors */
12798 vectors = phba->cfg_irq_chann;
12800 if (phba->irq_chann_mode != NORMAL_MODE)
12801 aff_mask = &phba->sli4_hba.irq_aff_mask;
12804 cpu_cnt = cpumask_weight(aff_mask);
12805 vectors = min(phba->cfg_irq_chann, cpu_cnt);
12807 /* cpu: iterates over aff_mask including offline or online
12808 * cpu_select: iterates over online aff_mask to set affinity
12810 cpu = cpumask_first(aff_mask);
12811 cpu_select = lpfc_next_online_cpu(aff_mask, cpu);
12813 flags |= PCI_IRQ_AFFINITY;
12816 rc = pci_alloc_irq_vectors(phba->pcidev, 1, vectors, flags);
12818 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
12819 "0484 PCI enable MSI-X failed (%d)\n", rc);
12824 /* Assign MSI-X vectors to interrupt handlers */
12825 for (index = 0; index < vectors; index++) {
12826 eqhdl = lpfc_get_eq_hdl(index);
12827 name = eqhdl->handler_name;
12828 memset(name, 0, LPFC_SLI4_HANDLER_NAME_SZ);
12829 snprintf(name, LPFC_SLI4_HANDLER_NAME_SZ,
12830 LPFC_DRIVER_HANDLER_NAME"%d", index);
12832 eqhdl->idx = index;
12833 rc = request_irq(pci_irq_vector(phba->pcidev, index),
12834 &lpfc_sli4_hba_intr_handler, 0,
12837 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
12838 "0486 MSI-X fast-path (%d) "
12839 "request_irq failed (%d)\n", index, rc);
12843 eqhdl->irq = pci_irq_vector(phba->pcidev, index);
12846 /* If found a neighboring online cpu, set affinity */
12847 if (cpu_select < nr_cpu_ids)
12848 lpfc_irq_set_aff(eqhdl, cpu_select);
12850 /* Assign EQ to cpu_map */
12851 lpfc_assign_eq_map_info(phba, index,
12852 LPFC_CPU_FIRST_IRQ,
12855 /* Iterate to next offline or online cpu in aff_mask */
12856 cpu = cpumask_next(cpu, aff_mask);
12858 /* Find next online cpu in aff_mask to set affinity */
12859 cpu_select = lpfc_next_online_cpu(aff_mask, cpu);
12860 } else if (vectors == 1) {
12861 cpu = cpumask_first(cpu_present_mask);
12862 lpfc_assign_eq_map_info(phba, index, LPFC_CPU_FIRST_IRQ,
12865 maskp = pci_irq_get_affinity(phba->pcidev, index);
12867 /* Loop through all CPUs associated with vector index */
12868 for_each_cpu_and(cpu, maskp, cpu_present_mask) {
12869 cpup = &phba->sli4_hba.cpu_map[cpu];
12871 /* If this is the first CPU thats assigned to
12872 * this vector, set LPFC_CPU_FIRST_IRQ.
12874 * With certain platforms its possible that irq
12875 * vectors are affinitized to all the cpu's.
12876 * This can result in each cpu_map.eq to be set
12877 * to the last vector, resulting in overwrite
12878 * of all the previous cpu_map.eq. Ensure that
12879 * each vector receives a place in cpu_map.
12880 * Later call to lpfc_cpu_affinity_check will
12881 * ensure we are nicely balanced out.
12883 if (cpup->eq != LPFC_VECTOR_MAP_EMPTY)
12885 lpfc_assign_eq_map_info(phba, index,
12886 LPFC_CPU_FIRST_IRQ,
12893 if (vectors != phba->cfg_irq_chann) {
12894 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
12895 "3238 Reducing IO channels to match number of "
12896 "MSI-X vectors, requested %d got %d\n",
12897 phba->cfg_irq_chann, vectors);
12898 if (phba->cfg_irq_chann > vectors)
12899 phba->cfg_irq_chann = vectors;
12905 /* free the irq already requested */
12906 for (--index; index >= 0; index--) {
12907 eqhdl = lpfc_get_eq_hdl(index);
12908 lpfc_irq_clear_aff(eqhdl);
12909 irq_set_affinity_hint(eqhdl->irq, NULL);
12910 free_irq(eqhdl->irq, eqhdl);
12913 /* Unconfigure MSI-X capability structure */
12914 pci_free_irq_vectors(phba->pcidev);
12921 * lpfc_sli4_enable_msi - Enable MSI interrupt mode to SLI-4 device
12922 * @phba: pointer to lpfc hba data structure.
12924 * This routine is invoked to enable the MSI interrupt mode to device with
12925 * SLI-4 interface spec. The kernel function pci_alloc_irq_vectors() is
12926 * called to enable the MSI vector. The device driver is responsible for
12927 * calling the request_irq() to register MSI vector with a interrupt the
12928 * handler, which is done in this function.
12932 * other values - error
12935 lpfc_sli4_enable_msi(struct lpfc_hba *phba)
12939 struct lpfc_hba_eq_hdl *eqhdl;
12941 rc = pci_alloc_irq_vectors(phba->pcidev, 1, 1,
12942 PCI_IRQ_MSI | PCI_IRQ_AFFINITY);
12944 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
12945 "0487 PCI enable MSI mode success.\n");
12947 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
12948 "0488 PCI enable MSI mode failed (%d)\n", rc);
12949 return rc ? rc : -1;
12952 rc = request_irq(phba->pcidev->irq, lpfc_sli4_intr_handler,
12953 0, LPFC_DRIVER_NAME, phba);
12955 pci_free_irq_vectors(phba->pcidev);
12956 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
12957 "0490 MSI request_irq failed (%d)\n", rc);
12961 eqhdl = lpfc_get_eq_hdl(0);
12962 eqhdl->irq = pci_irq_vector(phba->pcidev, 0);
12964 cpu = cpumask_first(cpu_present_mask);
12965 lpfc_assign_eq_map_info(phba, 0, LPFC_CPU_FIRST_IRQ, cpu);
12967 for (index = 0; index < phba->cfg_irq_chann; index++) {
12968 eqhdl = lpfc_get_eq_hdl(index);
12969 eqhdl->idx = index;
12976 * lpfc_sli4_enable_intr - Enable device interrupt to SLI-4 device
12977 * @phba: pointer to lpfc hba data structure.
12978 * @cfg_mode: Interrupt configuration mode (INTx, MSI or MSI-X).
12980 * This routine is invoked to enable device interrupt and associate driver's
12981 * interrupt handler(s) to interrupt vector(s) to device with SLI-4
12982 * interface spec. Depends on the interrupt mode configured to the driver,
12983 * the driver will try to fallback from the configured interrupt mode to an
12984 * interrupt mode which is supported by the platform, kernel, and device in
12986 * MSI-X -> MSI -> IRQ.
12990 * other values - error
12993 lpfc_sli4_enable_intr(struct lpfc_hba *phba, uint32_t cfg_mode)
12995 uint32_t intr_mode = LPFC_INTR_ERROR;
12998 if (cfg_mode == 2) {
12999 /* Preparation before conf_msi mbox cmd */
13002 /* Now, try to enable MSI-X interrupt mode */
13003 retval = lpfc_sli4_enable_msix(phba);
13005 /* Indicate initialization to MSI-X mode */
13006 phba->intr_type = MSIX;
13012 /* Fallback to MSI if MSI-X initialization failed */
13013 if (cfg_mode >= 1 && phba->intr_type == NONE) {
13014 retval = lpfc_sli4_enable_msi(phba);
13016 /* Indicate initialization to MSI mode */
13017 phba->intr_type = MSI;
13022 /* Fallback to INTx if both MSI-X/MSI initalization failed */
13023 if (phba->intr_type == NONE) {
13024 retval = request_irq(phba->pcidev->irq, lpfc_sli4_intr_handler,
13025 IRQF_SHARED, LPFC_DRIVER_NAME, phba);
13027 struct lpfc_hba_eq_hdl *eqhdl;
13030 /* Indicate initialization to INTx mode */
13031 phba->intr_type = INTx;
13034 eqhdl = lpfc_get_eq_hdl(0);
13035 eqhdl->irq = pci_irq_vector(phba->pcidev, 0);
13037 cpu = cpumask_first(cpu_present_mask);
13038 lpfc_assign_eq_map_info(phba, 0, LPFC_CPU_FIRST_IRQ,
13040 for (idx = 0; idx < phba->cfg_irq_chann; idx++) {
13041 eqhdl = lpfc_get_eq_hdl(idx);
13050 * lpfc_sli4_disable_intr - Disable device interrupt to SLI-4 device
13051 * @phba: pointer to lpfc hba data structure.
13053 * This routine is invoked to disable device interrupt and disassociate
13054 * the driver's interrupt handler(s) from interrupt vector(s) to device
13055 * with SLI-4 interface spec. Depending on the interrupt mode, the driver
13056 * will release the interrupt vector(s) for the message signaled interrupt.
13059 lpfc_sli4_disable_intr(struct lpfc_hba *phba)
13061 /* Disable the currently initialized interrupt mode */
13062 if (phba->intr_type == MSIX) {
13064 struct lpfc_hba_eq_hdl *eqhdl;
13066 /* Free up MSI-X multi-message vectors */
13067 for (index = 0; index < phba->cfg_irq_chann; index++) {
13068 eqhdl = lpfc_get_eq_hdl(index);
13069 lpfc_irq_clear_aff(eqhdl);
13070 irq_set_affinity_hint(eqhdl->irq, NULL);
13071 free_irq(eqhdl->irq, eqhdl);
13074 free_irq(phba->pcidev->irq, phba);
13077 pci_free_irq_vectors(phba->pcidev);
13079 /* Reset interrupt management states */
13080 phba->intr_type = NONE;
13081 phba->sli.slistat.sli_intr = 0;
13085 * lpfc_unset_hba - Unset SLI3 hba device initialization
13086 * @phba: pointer to lpfc hba data structure.
13088 * This routine is invoked to unset the HBA device initialization steps to
13089 * a device with SLI-3 interface spec.
13092 lpfc_unset_hba(struct lpfc_hba *phba)
13094 struct lpfc_vport *vport = phba->pport;
13095 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
13097 spin_lock_irq(shost->host_lock);
13098 vport->load_flag |= FC_UNLOADING;
13099 spin_unlock_irq(shost->host_lock);
13101 kfree(phba->vpi_bmask);
13102 kfree(phba->vpi_ids);
13104 lpfc_stop_hba_timers(phba);
13106 phba->pport->work_port_events = 0;
13108 lpfc_sli_hba_down(phba);
13110 lpfc_sli_brdrestart(phba);
13112 lpfc_sli_disable_intr(phba);
13118 * lpfc_sli4_xri_exchange_busy_wait - Wait for device XRI exchange busy
13119 * @phba: Pointer to HBA context object.
13121 * This function is called in the SLI4 code path to wait for completion
13122 * of device's XRIs exchange busy. It will check the XRI exchange busy
13123 * on outstanding FCP and ELS I/Os every 10ms for up to 10 seconds; after
13124 * that, it will check the XRI exchange busy on outstanding FCP and ELS
13125 * I/Os every 30 seconds, log error message, and wait forever. Only when
13126 * all XRI exchange busy complete, the driver unload shall proceed with
13127 * invoking the function reset ioctl mailbox command to the CNA and the
13128 * the rest of the driver unload resource release.
13131 lpfc_sli4_xri_exchange_busy_wait(struct lpfc_hba *phba)
13133 struct lpfc_sli4_hdw_queue *qp;
13136 int io_xri_cmpl = 1;
13137 int nvmet_xri_cmpl = 1;
13138 int els_xri_cmpl = list_empty(&phba->sli4_hba.lpfc_abts_els_sgl_list);
13140 /* Driver just aborted IOs during the hba_unset process. Pause
13141 * here to give the HBA time to complete the IO and get entries
13142 * into the abts lists.
13144 msleep(LPFC_XRI_EXCH_BUSY_WAIT_T1 * 5);
13146 /* Wait for NVME pending IO to flush back to transport. */
13147 if (phba->cfg_enable_fc4_type & LPFC_ENABLE_NVME)
13148 lpfc_nvme_wait_for_io_drain(phba);
13151 for (idx = 0; idx < phba->cfg_hdw_queue; idx++) {
13152 qp = &phba->sli4_hba.hdwq[idx];
13153 io_xri_cmpl = list_empty(&qp->lpfc_abts_io_buf_list);
13154 if (!io_xri_cmpl) /* if list is NOT empty */
13160 if (phba->cfg_enable_fc4_type & LPFC_ENABLE_NVME) {
13162 list_empty(&phba->sli4_hba.lpfc_abts_nvmet_ctx_list);
13165 while (!els_xri_cmpl || !io_xri_cmpl || !nvmet_xri_cmpl) {
13166 if (wait_time > LPFC_XRI_EXCH_BUSY_WAIT_TMO) {
13167 if (!nvmet_xri_cmpl)
13168 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
13169 "6424 NVMET XRI exchange busy "
13170 "wait time: %d seconds.\n",
13173 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
13174 "6100 IO XRI exchange busy "
13175 "wait time: %d seconds.\n",
13178 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
13179 "2878 ELS XRI exchange busy "
13180 "wait time: %d seconds.\n",
13182 msleep(LPFC_XRI_EXCH_BUSY_WAIT_T2);
13183 wait_time += LPFC_XRI_EXCH_BUSY_WAIT_T2;
13185 msleep(LPFC_XRI_EXCH_BUSY_WAIT_T1);
13186 wait_time += LPFC_XRI_EXCH_BUSY_WAIT_T1;
13190 for (idx = 0; idx < phba->cfg_hdw_queue; idx++) {
13191 qp = &phba->sli4_hba.hdwq[idx];
13192 io_xri_cmpl = list_empty(
13193 &qp->lpfc_abts_io_buf_list);
13194 if (!io_xri_cmpl) /* if list is NOT empty */
13200 if (phba->cfg_enable_fc4_type & LPFC_ENABLE_NVME) {
13201 nvmet_xri_cmpl = list_empty(
13202 &phba->sli4_hba.lpfc_abts_nvmet_ctx_list);
13205 list_empty(&phba->sli4_hba.lpfc_abts_els_sgl_list);
13211 * lpfc_sli4_hba_unset - Unset the fcoe hba
13212 * @phba: Pointer to HBA context object.
13214 * This function is called in the SLI4 code path to reset the HBA's FCoE
13215 * function. The caller is not required to hold any lock. This routine
13216 * issues PCI function reset mailbox command to reset the FCoE function.
13217 * At the end of the function, it calls lpfc_hba_down_post function to
13218 * free any pending commands.
13221 lpfc_sli4_hba_unset(struct lpfc_hba *phba)
13224 LPFC_MBOXQ_t *mboxq;
13225 struct pci_dev *pdev = phba->pcidev;
13227 lpfc_stop_hba_timers(phba);
13228 hrtimer_cancel(&phba->cmf_timer);
13231 phba->sli4_hba.intr_enable = 0;
13234 * Gracefully wait out the potential current outstanding asynchronous
13238 /* First, block any pending async mailbox command from posted */
13239 spin_lock_irq(&phba->hbalock);
13240 phba->sli.sli_flag |= LPFC_SLI_ASYNC_MBX_BLK;
13241 spin_unlock_irq(&phba->hbalock);
13242 /* Now, trying to wait it out if we can */
13243 while (phba->sli.sli_flag & LPFC_SLI_MBOX_ACTIVE) {
13245 if (++wait_cnt > LPFC_ACTIVE_MBOX_WAIT_CNT)
13248 /* Forcefully release the outstanding mailbox command if timed out */
13249 if (phba->sli.sli_flag & LPFC_SLI_MBOX_ACTIVE) {
13250 spin_lock_irq(&phba->hbalock);
13251 mboxq = phba->sli.mbox_active;
13252 mboxq->u.mb.mbxStatus = MBX_NOT_FINISHED;
13253 __lpfc_mbox_cmpl_put(phba, mboxq);
13254 phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
13255 phba->sli.mbox_active = NULL;
13256 spin_unlock_irq(&phba->hbalock);
13259 /* Abort all iocbs associated with the hba */
13260 lpfc_sli_hba_iocb_abort(phba);
13262 /* Wait for completion of device XRI exchange busy */
13263 lpfc_sli4_xri_exchange_busy_wait(phba);
13265 /* per-phba callback de-registration for hotplug event */
13267 lpfc_cpuhp_remove(phba);
13269 /* Disable PCI subsystem interrupt */
13270 lpfc_sli4_disable_intr(phba);
13272 /* Disable SR-IOV if enabled */
13273 if (phba->cfg_sriov_nr_virtfn)
13274 pci_disable_sriov(pdev);
13276 /* Stop kthread signal shall trigger work_done one more time */
13277 kthread_stop(phba->worker_thread);
13279 /* Disable FW logging to host memory */
13280 lpfc_ras_stop_fwlog(phba);
13282 /* Unset the queues shared with the hardware then release all
13283 * allocated resources.
13285 lpfc_sli4_queue_unset(phba);
13286 lpfc_sli4_queue_destroy(phba);
13288 /* Reset SLI4 HBA FCoE function */
13289 lpfc_pci_function_reset(phba);
13291 /* Free RAS DMA memory */
13292 if (phba->ras_fwlog.ras_enabled)
13293 lpfc_sli4_ras_dma_free(phba);
13295 /* Stop the SLI4 device port */
13297 phba->pport->work_port_events = 0;
13301 lpfc_cgn_crc32(uint32_t crc, u8 byte)
13306 for (bit = 0; bit < 8; bit++) {
13307 msb = (crc >> 31) & 1;
13310 if (msb ^ (byte & 1)) {
13311 crc ^= LPFC_CGN_CRC32_MAGIC_NUMBER;
13320 lpfc_cgn_reverse_bits(uint32_t wd)
13322 uint32_t result = 0;
13325 for (i = 0; i < 32; i++) {
13327 result |= (1 & (wd >> i));
13333 * The routine corresponds with the algorithm the HBA firmware
13334 * uses to validate the data integrity.
13337 lpfc_cgn_calc_crc32(void *ptr, uint32_t byteLen, uint32_t crc)
13341 uint8_t *data = (uint8_t *)ptr;
13343 for (i = 0; i < byteLen; ++i)
13344 crc = lpfc_cgn_crc32(crc, data[i]);
13346 result = ~lpfc_cgn_reverse_bits(crc);
13351 lpfc_init_congestion_buf(struct lpfc_hba *phba)
13353 struct lpfc_cgn_info *cp;
13354 struct timespec64 cmpl_time;
13359 lpfc_printf_log(phba, KERN_INFO, LOG_CGN_MGMT,
13360 "6235 INIT Congestion Buffer %p\n", phba->cgn_i);
13364 cp = (struct lpfc_cgn_info *)phba->cgn_i->virt;
13366 atomic_set(&phba->cgn_fabric_warn_cnt, 0);
13367 atomic_set(&phba->cgn_fabric_alarm_cnt, 0);
13368 atomic_set(&phba->cgn_sync_alarm_cnt, 0);
13369 atomic_set(&phba->cgn_sync_warn_cnt, 0);
13371 atomic64_set(&phba->cgn_acqe_stat.alarm, 0);
13372 atomic64_set(&phba->cgn_acqe_stat.warn, 0);
13373 atomic_set(&phba->cgn_driver_evt_cnt, 0);
13374 atomic_set(&phba->cgn_latency_evt_cnt, 0);
13375 atomic64_set(&phba->cgn_latency_evt, 0);
13376 phba->cgn_evt_minute = 0;
13377 phba->hba_flag &= ~HBA_CGN_DAY_WRAP;
13379 memset(cp, 0xff, LPFC_CGN_DATA_SIZE);
13380 cp->cgn_info_size = cpu_to_le16(LPFC_CGN_INFO_SZ);
13381 cp->cgn_info_version = LPFC_CGN_INFO_V3;
13383 /* cgn parameters */
13384 cp->cgn_info_mode = phba->cgn_p.cgn_param_mode;
13385 cp->cgn_info_level0 = phba->cgn_p.cgn_param_level0;
13386 cp->cgn_info_level1 = phba->cgn_p.cgn_param_level1;
13387 cp->cgn_info_level2 = phba->cgn_p.cgn_param_level2;
13389 ktime_get_real_ts64(&cmpl_time);
13390 time64_to_tm(cmpl_time.tv_sec, 0, &broken);
13392 cp->cgn_info_month = broken.tm_mon + 1;
13393 cp->cgn_info_day = broken.tm_mday;
13394 cp->cgn_info_year = broken.tm_year - 100; /* relative to 2000 */
13395 cp->cgn_info_hour = broken.tm_hour;
13396 cp->cgn_info_minute = broken.tm_min;
13397 cp->cgn_info_second = broken.tm_sec;
13399 lpfc_printf_log(phba, KERN_INFO, LOG_CGN_MGMT | LOG_INIT,
13400 "2643 CGNInfo Init: Start Time "
13401 "%d/%d/%d %d:%d:%d\n",
13402 cp->cgn_info_day, cp->cgn_info_month,
13403 cp->cgn_info_year, cp->cgn_info_hour,
13404 cp->cgn_info_minute, cp->cgn_info_second);
13406 /* Fill in default LUN qdepth */
13408 size = (uint16_t)(phba->pport->cfg_lun_queue_depth);
13409 cp->cgn_lunq = cpu_to_le16(size);
13412 /* last used Index initialized to 0xff already */
13414 cp->cgn_warn_freq = cpu_to_le16(LPFC_FPIN_INIT_FREQ);
13415 cp->cgn_alarm_freq = cpu_to_le16(LPFC_FPIN_INIT_FREQ);
13416 crc = lpfc_cgn_calc_crc32(cp, LPFC_CGN_INFO_SZ, LPFC_CGN_CRC32_SEED);
13417 cp->cgn_info_crc = cpu_to_le32(crc);
13419 phba->cgn_evt_timestamp = jiffies +
13420 msecs_to_jiffies(LPFC_CGN_TIMER_TO_MIN);
13424 lpfc_init_congestion_stat(struct lpfc_hba *phba)
13426 struct lpfc_cgn_info *cp;
13427 struct timespec64 cmpl_time;
13431 lpfc_printf_log(phba, KERN_INFO, LOG_CGN_MGMT,
13432 "6236 INIT Congestion Stat %p\n", phba->cgn_i);
13437 cp = (struct lpfc_cgn_info *)phba->cgn_i->virt;
13438 memset(&cp->cgn_stat_npm, 0, LPFC_CGN_STAT_SIZE);
13440 ktime_get_real_ts64(&cmpl_time);
13441 time64_to_tm(cmpl_time.tv_sec, 0, &broken);
13443 cp->cgn_stat_month = broken.tm_mon + 1;
13444 cp->cgn_stat_day = broken.tm_mday;
13445 cp->cgn_stat_year = broken.tm_year - 100; /* relative to 2000 */
13446 cp->cgn_stat_hour = broken.tm_hour;
13447 cp->cgn_stat_minute = broken.tm_min;
13449 lpfc_printf_log(phba, KERN_INFO, LOG_CGN_MGMT | LOG_INIT,
13450 "2647 CGNstat Init: Start Time "
13451 "%d/%d/%d %d:%d\n",
13452 cp->cgn_stat_day, cp->cgn_stat_month,
13453 cp->cgn_stat_year, cp->cgn_stat_hour,
13454 cp->cgn_stat_minute);
13456 crc = lpfc_cgn_calc_crc32(cp, LPFC_CGN_INFO_SZ, LPFC_CGN_CRC32_SEED);
13457 cp->cgn_info_crc = cpu_to_le32(crc);
13461 * __lpfc_reg_congestion_buf - register congestion info buffer with HBA
13462 * @phba: Pointer to hba context object.
13463 * @reg: flag to determine register or unregister.
13466 __lpfc_reg_congestion_buf(struct lpfc_hba *phba, int reg)
13468 struct lpfc_mbx_reg_congestion_buf *reg_congestion_buf;
13469 union lpfc_sli4_cfg_shdr *shdr;
13470 uint32_t shdr_status, shdr_add_status;
13471 LPFC_MBOXQ_t *mboxq;
13477 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
13479 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX,
13480 "2641 REG_CONGESTION_BUF mbox allocation fail: "
13481 "HBA state x%x reg %d\n",
13482 phba->pport->port_state, reg);
13486 length = (sizeof(struct lpfc_mbx_reg_congestion_buf) -
13487 sizeof(struct lpfc_sli4_cfg_mhdr));
13488 lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_COMMON,
13489 LPFC_MBOX_OPCODE_REG_CONGESTION_BUF, length,
13490 LPFC_SLI4_MBX_EMBED);
13491 reg_congestion_buf = &mboxq->u.mqe.un.reg_congestion_buf;
13492 bf_set(lpfc_mbx_reg_cgn_buf_type, reg_congestion_buf, 1);
13494 bf_set(lpfc_mbx_reg_cgn_buf_cnt, reg_congestion_buf, 1);
13496 bf_set(lpfc_mbx_reg_cgn_buf_cnt, reg_congestion_buf, 0);
13497 reg_congestion_buf->length = sizeof(struct lpfc_cgn_info);
13498 reg_congestion_buf->addr_lo =
13499 putPaddrLow(phba->cgn_i->phys);
13500 reg_congestion_buf->addr_hi =
13501 putPaddrHigh(phba->cgn_i->phys);
13503 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
13504 shdr = (union lpfc_sli4_cfg_shdr *)
13505 &mboxq->u.mqe.un.sli4_config.header.cfg_shdr;
13506 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
13507 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status,
13509 mempool_free(mboxq, phba->mbox_mem_pool);
13510 if (shdr_status || shdr_add_status || rc) {
13511 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13512 "2642 REG_CONGESTION_BUF mailbox "
13513 "failed with status x%x add_status x%x,"
13514 " mbx status x%x reg %d\n",
13515 shdr_status, shdr_add_status, rc, reg);
13522 lpfc_unreg_congestion_buf(struct lpfc_hba *phba)
13524 lpfc_cmf_stop(phba);
13525 return __lpfc_reg_congestion_buf(phba, 0);
13529 lpfc_reg_congestion_buf(struct lpfc_hba *phba)
13531 return __lpfc_reg_congestion_buf(phba, 1);
13535 * lpfc_get_sli4_parameters - Get the SLI4 Config PARAMETERS.
13536 * @phba: Pointer to HBA context object.
13537 * @mboxq: Pointer to the mailboxq memory for the mailbox command response.
13539 * This function is called in the SLI4 code path to read the port's
13540 * sli4 capabilities.
13542 * This function may be be called from any context that can block-wait
13543 * for the completion. The expectation is that this routine is called
13544 * typically from probe_one or from the online routine.
13547 lpfc_get_sli4_parameters(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
13550 struct lpfc_mqe *mqe = &mboxq->u.mqe;
13551 struct lpfc_pc_sli4_params *sli4_params;
13554 bool exp_wqcq_pages = true;
13555 struct lpfc_sli4_parameters *mbx_sli4_parameters;
13558 * By default, the driver assumes the SLI4 port requires RPI
13559 * header postings. The SLI4_PARAM response will correct this
13562 phba->sli4_hba.rpi_hdrs_in_use = 1;
13564 /* Read the port's SLI4 Config Parameters */
13565 length = (sizeof(struct lpfc_mbx_get_sli4_parameters) -
13566 sizeof(struct lpfc_sli4_cfg_mhdr));
13567 lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_COMMON,
13568 LPFC_MBOX_OPCODE_GET_SLI4_PARAMETERS,
13569 length, LPFC_SLI4_MBX_EMBED);
13570 if (!phba->sli4_hba.intr_enable)
13571 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
13573 mbox_tmo = lpfc_mbox_tmo_val(phba, mboxq);
13574 rc = lpfc_sli_issue_mbox_wait(phba, mboxq, mbox_tmo);
13578 sli4_params = &phba->sli4_hba.pc_sli4_params;
13579 mbx_sli4_parameters = &mqe->un.get_sli4_parameters.sli4_parameters;
13580 sli4_params->if_type = bf_get(cfg_if_type, mbx_sli4_parameters);
13581 sli4_params->sli_rev = bf_get(cfg_sli_rev, mbx_sli4_parameters);
13582 sli4_params->sli_family = bf_get(cfg_sli_family, mbx_sli4_parameters);
13583 sli4_params->featurelevel_1 = bf_get(cfg_sli_hint_1,
13584 mbx_sli4_parameters);
13585 sli4_params->featurelevel_2 = bf_get(cfg_sli_hint_2,
13586 mbx_sli4_parameters);
13587 if (bf_get(cfg_phwq, mbx_sli4_parameters))
13588 phba->sli3_options |= LPFC_SLI4_PHWQ_ENABLED;
13590 phba->sli3_options &= ~LPFC_SLI4_PHWQ_ENABLED;
13591 sli4_params->sge_supp_len = mbx_sli4_parameters->sge_supp_len;
13592 sli4_params->loopbk_scope = bf_get(cfg_loopbk_scope,
13593 mbx_sli4_parameters);
13594 sli4_params->oas_supported = bf_get(cfg_oas, mbx_sli4_parameters);
13595 sli4_params->cqv = bf_get(cfg_cqv, mbx_sli4_parameters);
13596 sli4_params->mqv = bf_get(cfg_mqv, mbx_sli4_parameters);
13597 sli4_params->wqv = bf_get(cfg_wqv, mbx_sli4_parameters);
13598 sli4_params->rqv = bf_get(cfg_rqv, mbx_sli4_parameters);
13599 sli4_params->eqav = bf_get(cfg_eqav, mbx_sli4_parameters);
13600 sli4_params->cqav = bf_get(cfg_cqav, mbx_sli4_parameters);
13601 sli4_params->wqsize = bf_get(cfg_wqsize, mbx_sli4_parameters);
13602 sli4_params->bv1s = bf_get(cfg_bv1s, mbx_sli4_parameters);
13603 sli4_params->pls = bf_get(cfg_pvl, mbx_sli4_parameters);
13604 sli4_params->sgl_pages_max = bf_get(cfg_sgl_page_cnt,
13605 mbx_sli4_parameters);
13606 sli4_params->wqpcnt = bf_get(cfg_wqpcnt, mbx_sli4_parameters);
13607 sli4_params->sgl_pp_align = bf_get(cfg_sgl_pp_align,
13608 mbx_sli4_parameters);
13609 phba->sli4_hba.extents_in_use = bf_get(cfg_ext, mbx_sli4_parameters);
13610 phba->sli4_hba.rpi_hdrs_in_use = bf_get(cfg_hdrr, mbx_sli4_parameters);
13612 /* Check for Extended Pre-Registered SGL support */
13613 phba->cfg_xpsgl = bf_get(cfg_xpsgl, mbx_sli4_parameters);
13615 /* Check for firmware nvme support */
13616 rc = (bf_get(cfg_nvme, mbx_sli4_parameters) &&
13617 bf_get(cfg_xib, mbx_sli4_parameters));
13620 /* Save this to indicate the Firmware supports NVME */
13621 sli4_params->nvme = 1;
13623 /* Firmware NVME support, check driver FC4 NVME support */
13624 if (phba->cfg_enable_fc4_type == LPFC_ENABLE_FCP) {
13625 lpfc_printf_log(phba, KERN_INFO, LOG_INIT | LOG_NVME,
13626 "6133 Disabling NVME support: "
13627 "FC4 type not supported: x%x\n",
13628 phba->cfg_enable_fc4_type);
13632 /* No firmware NVME support, check driver FC4 NVME support */
13633 sli4_params->nvme = 0;
13634 if (phba->cfg_enable_fc4_type & LPFC_ENABLE_NVME) {
13635 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_NVME,
13636 "6101 Disabling NVME support: Not "
13637 "supported by firmware (%d %d) x%x\n",
13638 bf_get(cfg_nvme, mbx_sli4_parameters),
13639 bf_get(cfg_xib, mbx_sli4_parameters),
13640 phba->cfg_enable_fc4_type);
13642 phba->nvmet_support = 0;
13643 phba->cfg_nvmet_mrq = 0;
13644 phba->cfg_nvme_seg_cnt = 0;
13646 /* If no FC4 type support, move to just SCSI support */
13647 if (!(phba->cfg_enable_fc4_type & LPFC_ENABLE_FCP))
13649 phba->cfg_enable_fc4_type = LPFC_ENABLE_FCP;
13653 /* If the NVME FC4 type is enabled, scale the sg_seg_cnt to
13654 * accommodate 512K and 1M IOs in a single nvme buf.
13656 if (phba->cfg_enable_fc4_type & LPFC_ENABLE_NVME)
13657 phba->cfg_sg_seg_cnt = LPFC_MAX_NVME_SEG_CNT;
13659 /* Enable embedded Payload BDE if support is indicated */
13660 if (bf_get(cfg_pbde, mbx_sli4_parameters))
13661 phba->cfg_enable_pbde = 1;
13663 phba->cfg_enable_pbde = 0;
13666 * To support Suppress Response feature we must satisfy 3 conditions.
13667 * lpfc_suppress_rsp module parameter must be set (default).
13668 * In SLI4-Parameters Descriptor:
13669 * Extended Inline Buffers (XIB) must be supported.
13670 * Suppress Response IU Not Supported (SRIUNS) must NOT be supported
13671 * (double negative).
13673 if (phba->cfg_suppress_rsp && bf_get(cfg_xib, mbx_sli4_parameters) &&
13674 !(bf_get(cfg_nosr, mbx_sli4_parameters)))
13675 phba->sli.sli_flag |= LPFC_SLI_SUPPRESS_RSP;
13677 phba->cfg_suppress_rsp = 0;
13679 if (bf_get(cfg_eqdr, mbx_sli4_parameters))
13680 phba->sli.sli_flag |= LPFC_SLI_USE_EQDR;
13682 /* Make sure that sge_supp_len can be handled by the driver */
13683 if (sli4_params->sge_supp_len > LPFC_MAX_SGE_SIZE)
13684 sli4_params->sge_supp_len = LPFC_MAX_SGE_SIZE;
13687 * Check whether the adapter supports an embedded copy of the
13688 * FCP CMD IU within the WQE for FCP_Ixxx commands. In order
13689 * to use this option, 128-byte WQEs must be used.
13691 if (bf_get(cfg_ext_embed_cb, mbx_sli4_parameters))
13692 phba->fcp_embed_io = 1;
13694 phba->fcp_embed_io = 0;
13696 lpfc_printf_log(phba, KERN_INFO, LOG_INIT | LOG_NVME,
13697 "6422 XIB %d PBDE %d: FCP %d NVME %d %d %d\n",
13698 bf_get(cfg_xib, mbx_sli4_parameters),
13699 phba->cfg_enable_pbde,
13700 phba->fcp_embed_io, sli4_params->nvme,
13701 phba->cfg_nvme_embed_cmd, phba->cfg_suppress_rsp);
13703 if ((bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf) ==
13704 LPFC_SLI_INTF_IF_TYPE_2) &&
13705 (bf_get(lpfc_sli_intf_sli_family, &phba->sli4_hba.sli_intf) ==
13706 LPFC_SLI_INTF_FAMILY_LNCR_A0))
13707 exp_wqcq_pages = false;
13709 if ((bf_get(cfg_cqpsize, mbx_sli4_parameters) & LPFC_CQ_16K_PAGE_SZ) &&
13710 (bf_get(cfg_wqpsize, mbx_sli4_parameters) & LPFC_WQ_16K_PAGE_SZ) &&
13712 (sli4_params->wqsize & LPFC_WQ_SZ128_SUPPORT))
13713 phba->enab_exp_wqcq_pages = 1;
13715 phba->enab_exp_wqcq_pages = 0;
13717 * Check if the SLI port supports MDS Diagnostics
13719 if (bf_get(cfg_mds_diags, mbx_sli4_parameters))
13720 phba->mds_diags_support = 1;
13722 phba->mds_diags_support = 0;
13725 * Check if the SLI port supports NSLER
13727 if (bf_get(cfg_nsler, mbx_sli4_parameters))
13736 * lpfc_pci_probe_one_s3 - PCI probe func to reg SLI-3 device to PCI subsystem.
13737 * @pdev: pointer to PCI device
13738 * @pid: pointer to PCI device identifier
13740 * This routine is to be called to attach a device with SLI-3 interface spec
13741 * to the PCI subsystem. When an Emulex HBA with SLI-3 interface spec is
13742 * presented on PCI bus, the kernel PCI subsystem looks at PCI device-specific
13743 * information of the device and driver to see if the driver state that it can
13744 * support this kind of device. If the match is successful, the driver core
13745 * invokes this routine. If this routine determines it can claim the HBA, it
13746 * does all the initialization that it needs to do to handle the HBA properly.
13749 * 0 - driver can claim the device
13750 * negative value - driver can not claim the device
13753 lpfc_pci_probe_one_s3(struct pci_dev *pdev, const struct pci_device_id *pid)
13755 struct lpfc_hba *phba;
13756 struct lpfc_vport *vport = NULL;
13757 struct Scsi_Host *shost = NULL;
13759 uint32_t cfg_mode, intr_mode;
13761 /* Allocate memory for HBA structure */
13762 phba = lpfc_hba_alloc(pdev);
13766 /* Perform generic PCI device enabling operation */
13767 error = lpfc_enable_pci_dev(phba);
13769 goto out_free_phba;
13771 /* Set up SLI API function jump table for PCI-device group-0 HBAs */
13772 error = lpfc_api_table_setup(phba, LPFC_PCI_DEV_LP);
13774 goto out_disable_pci_dev;
13776 /* Set up SLI-3 specific device PCI memory space */
13777 error = lpfc_sli_pci_mem_setup(phba);
13779 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13780 "1402 Failed to set up pci memory space.\n");
13781 goto out_disable_pci_dev;
13784 /* Set up SLI-3 specific device driver resources */
13785 error = lpfc_sli_driver_resource_setup(phba);
13787 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13788 "1404 Failed to set up driver resource.\n");
13789 goto out_unset_pci_mem_s3;
13792 /* Initialize and populate the iocb list per host */
13794 error = lpfc_init_iocb_list(phba, LPFC_IOCB_LIST_CNT);
13796 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13797 "1405 Failed to initialize iocb list.\n");
13798 goto out_unset_driver_resource_s3;
13801 /* Set up common device driver resources */
13802 error = lpfc_setup_driver_resource_phase2(phba);
13804 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13805 "1406 Failed to set up driver resource.\n");
13806 goto out_free_iocb_list;
13809 /* Get the default values for Model Name and Description */
13810 lpfc_get_hba_model_desc(phba, phba->ModelName, phba->ModelDesc);
13812 /* Create SCSI host to the physical port */
13813 error = lpfc_create_shost(phba);
13815 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13816 "1407 Failed to create scsi host.\n");
13817 goto out_unset_driver_resource;
13820 /* Configure sysfs attributes */
13821 vport = phba->pport;
13822 error = lpfc_alloc_sysfs_attr(vport);
13824 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
13825 "1476 Failed to allocate sysfs attr\n");
13826 goto out_destroy_shost;
13829 shost = lpfc_shost_from_vport(vport); /* save shost for error cleanup */
13830 /* Now, trying to enable interrupt and bring up the device */
13831 cfg_mode = phba->cfg_use_msi;
13833 /* Put device to a known state before enabling interrupt */
13834 lpfc_stop_port(phba);
13835 /* Configure and enable interrupt */
13836 intr_mode = lpfc_sli_enable_intr(phba, cfg_mode);
13837 if (intr_mode == LPFC_INTR_ERROR) {
13838 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
13839 "0431 Failed to enable interrupt.\n");
13841 goto out_free_sysfs_attr;
13843 /* SLI-3 HBA setup */
13844 if (lpfc_sli_hba_setup(phba)) {
13845 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
13846 "1477 Failed to set up hba\n");
13848 goto out_remove_device;
13851 /* Wait 50ms for the interrupts of previous mailbox commands */
13853 /* Check active interrupts on message signaled interrupts */
13854 if (intr_mode == 0 ||
13855 phba->sli.slistat.sli_intr > LPFC_MSIX_VECTORS) {
13856 /* Log the current active interrupt mode */
13857 phba->intr_mode = intr_mode;
13858 lpfc_log_intr_mode(phba, intr_mode);
13861 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
13862 "0447 Configure interrupt mode (%d) "
13863 "failed active interrupt test.\n",
13865 /* Disable the current interrupt mode */
13866 lpfc_sli_disable_intr(phba);
13867 /* Try next level of interrupt mode */
13868 cfg_mode = --intr_mode;
13872 /* Perform post initialization setup */
13873 lpfc_post_init_setup(phba);
13875 /* Check if there are static vports to be created. */
13876 lpfc_create_static_vport(phba);
13881 lpfc_unset_hba(phba);
13882 out_free_sysfs_attr:
13883 lpfc_free_sysfs_attr(vport);
13885 lpfc_destroy_shost(phba);
13886 out_unset_driver_resource:
13887 lpfc_unset_driver_resource_phase2(phba);
13888 out_free_iocb_list:
13889 lpfc_free_iocb_list(phba);
13890 out_unset_driver_resource_s3:
13891 lpfc_sli_driver_resource_unset(phba);
13892 out_unset_pci_mem_s3:
13893 lpfc_sli_pci_mem_unset(phba);
13894 out_disable_pci_dev:
13895 lpfc_disable_pci_dev(phba);
13897 scsi_host_put(shost);
13899 lpfc_hba_free(phba);
13904 * lpfc_pci_remove_one_s3 - PCI func to unreg SLI-3 device from PCI subsystem.
13905 * @pdev: pointer to PCI device
13907 * This routine is to be called to disattach a device with SLI-3 interface
13908 * spec from PCI subsystem. When an Emulex HBA with SLI-3 interface spec is
13909 * removed from PCI bus, it performs all the necessary cleanup for the HBA
13910 * device to be removed from the PCI subsystem properly.
13913 lpfc_pci_remove_one_s3(struct pci_dev *pdev)
13915 struct Scsi_Host *shost = pci_get_drvdata(pdev);
13916 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
13917 struct lpfc_vport **vports;
13918 struct lpfc_hba *phba = vport->phba;
13921 spin_lock_irq(&phba->hbalock);
13922 vport->load_flag |= FC_UNLOADING;
13923 spin_unlock_irq(&phba->hbalock);
13925 lpfc_free_sysfs_attr(vport);
13927 /* Release all the vports against this physical port */
13928 vports = lpfc_create_vport_work_array(phba);
13929 if (vports != NULL)
13930 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
13931 if (vports[i]->port_type == LPFC_PHYSICAL_PORT)
13933 fc_vport_terminate(vports[i]->fc_vport);
13935 lpfc_destroy_vport_work_array(phba, vports);
13937 /* Remove FC host with the physical port */
13938 fc_remove_host(shost);
13939 scsi_remove_host(shost);
13941 /* Clean up all nodes, mailboxes and IOs. */
13942 lpfc_cleanup(vport);
13945 * Bring down the SLI Layer. This step disable all interrupts,
13946 * clears the rings, discards all mailbox commands, and resets
13950 /* HBA interrupt will be disabled after this call */
13951 lpfc_sli_hba_down(phba);
13952 /* Stop kthread signal shall trigger work_done one more time */
13953 kthread_stop(phba->worker_thread);
13954 /* Final cleanup of txcmplq and reset the HBA */
13955 lpfc_sli_brdrestart(phba);
13957 kfree(phba->vpi_bmask);
13958 kfree(phba->vpi_ids);
13960 lpfc_stop_hba_timers(phba);
13961 spin_lock_irq(&phba->port_list_lock);
13962 list_del_init(&vport->listentry);
13963 spin_unlock_irq(&phba->port_list_lock);
13965 lpfc_debugfs_terminate(vport);
13967 /* Disable SR-IOV if enabled */
13968 if (phba->cfg_sriov_nr_virtfn)
13969 pci_disable_sriov(pdev);
13971 /* Disable interrupt */
13972 lpfc_sli_disable_intr(phba);
13974 scsi_host_put(shost);
13977 * Call scsi_free before mem_free since scsi bufs are released to their
13978 * corresponding pools here.
13980 lpfc_scsi_free(phba);
13981 lpfc_free_iocb_list(phba);
13983 lpfc_mem_free_all(phba);
13985 dma_free_coherent(&pdev->dev, lpfc_sli_hbq_size(),
13986 phba->hbqslimp.virt, phba->hbqslimp.phys);
13988 /* Free resources associated with SLI2 interface */
13989 dma_free_coherent(&pdev->dev, SLI2_SLIM_SIZE,
13990 phba->slim2p.virt, phba->slim2p.phys);
13992 /* unmap adapter SLIM and Control Registers */
13993 iounmap(phba->ctrl_regs_memmap_p);
13994 iounmap(phba->slim_memmap_p);
13996 lpfc_hba_free(phba);
13998 pci_release_mem_regions(pdev);
13999 pci_disable_device(pdev);
14003 * lpfc_pci_suspend_one_s3 - PCI func to suspend SLI-3 device for power mgmnt
14004 * @dev_d: pointer to device
14006 * This routine is to be called from the kernel's PCI subsystem to support
14007 * system Power Management (PM) to device with SLI-3 interface spec. When
14008 * PM invokes this method, it quiesces the device by stopping the driver's
14009 * worker thread for the device, turning off device's interrupt and DMA,
14010 * and bring the device offline. Note that as the driver implements the
14011 * minimum PM requirements to a power-aware driver's PM support for the
14012 * suspend/resume -- all the possible PM messages (SUSPEND, HIBERNATE, FREEZE)
14013 * to the suspend() method call will be treated as SUSPEND and the driver will
14014 * fully reinitialize its device during resume() method call, the driver will
14015 * set device to PCI_D3hot state in PCI config space instead of setting it
14016 * according to the @msg provided by the PM.
14019 * 0 - driver suspended the device
14022 static int __maybe_unused
14023 lpfc_pci_suspend_one_s3(struct device *dev_d)
14025 struct Scsi_Host *shost = dev_get_drvdata(dev_d);
14026 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
14028 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
14029 "0473 PCI device Power Management suspend.\n");
14031 /* Bring down the device */
14032 lpfc_offline_prep(phba, LPFC_MBX_WAIT);
14033 lpfc_offline(phba);
14034 kthread_stop(phba->worker_thread);
14036 /* Disable interrupt from device */
14037 lpfc_sli_disable_intr(phba);
14043 * lpfc_pci_resume_one_s3 - PCI func to resume SLI-3 device for power mgmnt
14044 * @dev_d: pointer to device
14046 * This routine is to be called from the kernel's PCI subsystem to support
14047 * system Power Management (PM) to device with SLI-3 interface spec. When PM
14048 * invokes this method, it restores the device's PCI config space state and
14049 * fully reinitializes the device and brings it online. Note that as the
14050 * driver implements the minimum PM requirements to a power-aware driver's
14051 * PM for suspend/resume -- all the possible PM messages (SUSPEND, HIBERNATE,
14052 * FREEZE) to the suspend() method call will be treated as SUSPEND and the
14053 * driver will fully reinitialize its device during resume() method call,
14054 * the device will be set to PCI_D0 directly in PCI config space before
14055 * restoring the state.
14058 * 0 - driver suspended the device
14061 static int __maybe_unused
14062 lpfc_pci_resume_one_s3(struct device *dev_d)
14064 struct Scsi_Host *shost = dev_get_drvdata(dev_d);
14065 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
14066 uint32_t intr_mode;
14069 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
14070 "0452 PCI device Power Management resume.\n");
14072 /* Startup the kernel thread for this host adapter. */
14073 phba->worker_thread = kthread_run(lpfc_do_work, phba,
14074 "lpfc_worker_%d", phba->brd_no);
14075 if (IS_ERR(phba->worker_thread)) {
14076 error = PTR_ERR(phba->worker_thread);
14077 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14078 "0434 PM resume failed to start worker "
14079 "thread: error=x%x.\n", error);
14083 /* Configure and enable interrupt */
14084 intr_mode = lpfc_sli_enable_intr(phba, phba->intr_mode);
14085 if (intr_mode == LPFC_INTR_ERROR) {
14086 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
14087 "0430 PM resume Failed to enable interrupt\n");
14090 phba->intr_mode = intr_mode;
14092 /* Restart HBA and bring it online */
14093 lpfc_sli_brdrestart(phba);
14096 /* Log the current active interrupt mode */
14097 lpfc_log_intr_mode(phba, phba->intr_mode);
14103 * lpfc_sli_prep_dev_for_recover - Prepare SLI3 device for pci slot recover
14104 * @phba: pointer to lpfc hba data structure.
14106 * This routine is called to prepare the SLI3 device for PCI slot recover. It
14107 * aborts all the outstanding SCSI I/Os to the pci device.
14110 lpfc_sli_prep_dev_for_recover(struct lpfc_hba *phba)
14112 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
14113 "2723 PCI channel I/O abort preparing for recovery\n");
14116 * There may be errored I/Os through HBA, abort all I/Os on txcmplq
14117 * and let the SCSI mid-layer to retry them to recover.
14119 lpfc_sli_abort_fcp_rings(phba);
14123 * lpfc_sli_prep_dev_for_reset - Prepare SLI3 device for pci slot reset
14124 * @phba: pointer to lpfc hba data structure.
14126 * This routine is called to prepare the SLI3 device for PCI slot reset. It
14127 * disables the device interrupt and pci device, and aborts the internal FCP
14131 lpfc_sli_prep_dev_for_reset(struct lpfc_hba *phba)
14133 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
14134 "2710 PCI channel disable preparing for reset\n");
14136 /* Block any management I/Os to the device */
14137 lpfc_block_mgmt_io(phba, LPFC_MBX_WAIT);
14139 /* Block all SCSI devices' I/Os on the host */
14140 lpfc_scsi_dev_block(phba);
14142 /* Flush all driver's outstanding SCSI I/Os as we are to reset */
14143 lpfc_sli_flush_io_rings(phba);
14145 /* stop all timers */
14146 lpfc_stop_hba_timers(phba);
14148 /* Disable interrupt and pci device */
14149 lpfc_sli_disable_intr(phba);
14150 pci_disable_device(phba->pcidev);
14154 * lpfc_sli_prep_dev_for_perm_failure - Prepare SLI3 dev for pci slot disable
14155 * @phba: pointer to lpfc hba data structure.
14157 * This routine is called to prepare the SLI3 device for PCI slot permanently
14158 * disabling. It blocks the SCSI transport layer traffic and flushes the FCP
14162 lpfc_sli_prep_dev_for_perm_failure(struct lpfc_hba *phba)
14164 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
14165 "2711 PCI channel permanent disable for failure\n");
14166 /* Block all SCSI devices' I/Os on the host */
14167 lpfc_scsi_dev_block(phba);
14169 /* stop all timers */
14170 lpfc_stop_hba_timers(phba);
14172 /* Clean up all driver's outstanding SCSI I/Os */
14173 lpfc_sli_flush_io_rings(phba);
14177 * lpfc_io_error_detected_s3 - Method for handling SLI-3 device PCI I/O error
14178 * @pdev: pointer to PCI device.
14179 * @state: the current PCI connection state.
14181 * This routine is called from the PCI subsystem for I/O error handling to
14182 * device with SLI-3 interface spec. This function is called by the PCI
14183 * subsystem after a PCI bus error affecting this device has been detected.
14184 * When this function is invoked, it will need to stop all the I/Os and
14185 * interrupt(s) to the device. Once that is done, it will return
14186 * PCI_ERS_RESULT_NEED_RESET for the PCI subsystem to perform proper recovery
14190 * PCI_ERS_RESULT_CAN_RECOVER - can be recovered with reset_link
14191 * PCI_ERS_RESULT_NEED_RESET - need to reset before recovery
14192 * PCI_ERS_RESULT_DISCONNECT - device could not be recovered
14194 static pci_ers_result_t
14195 lpfc_io_error_detected_s3(struct pci_dev *pdev, pci_channel_state_t state)
14197 struct Scsi_Host *shost = pci_get_drvdata(pdev);
14198 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
14201 case pci_channel_io_normal:
14202 /* Non-fatal error, prepare for recovery */
14203 lpfc_sli_prep_dev_for_recover(phba);
14204 return PCI_ERS_RESULT_CAN_RECOVER;
14205 case pci_channel_io_frozen:
14206 /* Fatal error, prepare for slot reset */
14207 lpfc_sli_prep_dev_for_reset(phba);
14208 return PCI_ERS_RESULT_NEED_RESET;
14209 case pci_channel_io_perm_failure:
14210 /* Permanent failure, prepare for device down */
14211 lpfc_sli_prep_dev_for_perm_failure(phba);
14212 return PCI_ERS_RESULT_DISCONNECT;
14214 /* Unknown state, prepare and request slot reset */
14215 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
14216 "0472 Unknown PCI error state: x%x\n", state);
14217 lpfc_sli_prep_dev_for_reset(phba);
14218 return PCI_ERS_RESULT_NEED_RESET;
14223 * lpfc_io_slot_reset_s3 - Method for restarting PCI SLI-3 device from scratch.
14224 * @pdev: pointer to PCI device.
14226 * This routine is called from the PCI subsystem for error handling to
14227 * device with SLI-3 interface spec. This is called after PCI bus has been
14228 * reset to restart the PCI card from scratch, as if from a cold-boot.
14229 * During the PCI subsystem error recovery, after driver returns
14230 * PCI_ERS_RESULT_NEED_RESET, the PCI subsystem will perform proper error
14231 * recovery and then call this routine before calling the .resume method
14232 * to recover the device. This function will initialize the HBA device,
14233 * enable the interrupt, but it will just put the HBA to offline state
14234 * without passing any I/O traffic.
14237 * PCI_ERS_RESULT_RECOVERED - the device has been recovered
14238 * PCI_ERS_RESULT_DISCONNECT - device could not be recovered
14240 static pci_ers_result_t
14241 lpfc_io_slot_reset_s3(struct pci_dev *pdev)
14243 struct Scsi_Host *shost = pci_get_drvdata(pdev);
14244 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
14245 struct lpfc_sli *psli = &phba->sli;
14246 uint32_t intr_mode;
14248 dev_printk(KERN_INFO, &pdev->dev, "recovering from a slot reset.\n");
14249 if (pci_enable_device_mem(pdev)) {
14250 printk(KERN_ERR "lpfc: Cannot re-enable "
14251 "PCI device after reset.\n");
14252 return PCI_ERS_RESULT_DISCONNECT;
14255 pci_restore_state(pdev);
14258 * As the new kernel behavior of pci_restore_state() API call clears
14259 * device saved_state flag, need to save the restored state again.
14261 pci_save_state(pdev);
14263 if (pdev->is_busmaster)
14264 pci_set_master(pdev);
14266 spin_lock_irq(&phba->hbalock);
14267 psli->sli_flag &= ~LPFC_SLI_ACTIVE;
14268 spin_unlock_irq(&phba->hbalock);
14270 /* Configure and enable interrupt */
14271 intr_mode = lpfc_sli_enable_intr(phba, phba->intr_mode);
14272 if (intr_mode == LPFC_INTR_ERROR) {
14273 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
14274 "0427 Cannot re-enable interrupt after "
14276 return PCI_ERS_RESULT_DISCONNECT;
14278 phba->intr_mode = intr_mode;
14280 /* Take device offline, it will perform cleanup */
14281 lpfc_offline_prep(phba, LPFC_MBX_WAIT);
14282 lpfc_offline(phba);
14283 lpfc_sli_brdrestart(phba);
14285 /* Log the current active interrupt mode */
14286 lpfc_log_intr_mode(phba, phba->intr_mode);
14288 return PCI_ERS_RESULT_RECOVERED;
14292 * lpfc_io_resume_s3 - Method for resuming PCI I/O operation on SLI-3 device.
14293 * @pdev: pointer to PCI device
14295 * This routine is called from the PCI subsystem for error handling to device
14296 * with SLI-3 interface spec. It is called when kernel error recovery tells
14297 * the lpfc driver that it is ok to resume normal PCI operation after PCI bus
14298 * error recovery. After this call, traffic can start to flow from this device
14302 lpfc_io_resume_s3(struct pci_dev *pdev)
14304 struct Scsi_Host *shost = pci_get_drvdata(pdev);
14305 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
14307 /* Bring device online, it will be no-op for non-fatal error resume */
14312 * lpfc_sli4_get_els_iocb_cnt - Calculate the # of ELS IOCBs to reserve
14313 * @phba: pointer to lpfc hba data structure.
14315 * returns the number of ELS/CT IOCBs to reserve
14318 lpfc_sli4_get_els_iocb_cnt(struct lpfc_hba *phba)
14320 int max_xri = phba->sli4_hba.max_cfg_param.max_xri;
14322 if (phba->sli_rev == LPFC_SLI_REV4) {
14323 if (max_xri <= 100)
14325 else if (max_xri <= 256)
14327 else if (max_xri <= 512)
14329 else if (max_xri <= 1024)
14331 else if (max_xri <= 1536)
14333 else if (max_xri <= 2048)
14342 * lpfc_sli4_get_iocb_cnt - Calculate the # of total IOCBs to reserve
14343 * @phba: pointer to lpfc hba data structure.
14345 * returns the number of ELS/CT + NVMET IOCBs to reserve
14348 lpfc_sli4_get_iocb_cnt(struct lpfc_hba *phba)
14350 int max_xri = lpfc_sli4_get_els_iocb_cnt(phba);
14352 if (phba->nvmet_support)
14353 max_xri += LPFC_NVMET_BUF_POST;
14359 lpfc_log_write_firmware_error(struct lpfc_hba *phba, uint32_t offset,
14360 uint32_t magic_number, uint32_t ftype, uint32_t fid, uint32_t fsize,
14361 const struct firmware *fw)
14366 sli_family = bf_get(lpfc_sli_intf_sli_family, &phba->sli4_hba.sli_intf);
14367 /* Three cases: (1) FW was not supported on the detected adapter.
14368 * (2) FW update has been locked out administratively.
14369 * (3) Some other error during FW update.
14370 * In each case, an unmaskable message is written to the console
14371 * for admin diagnosis.
14373 if (offset == ADD_STATUS_FW_NOT_SUPPORTED ||
14374 (sli_family == LPFC_SLI_INTF_FAMILY_G6 &&
14375 magic_number != MAGIC_NUMBER_G6) ||
14376 (sli_family == LPFC_SLI_INTF_FAMILY_G7 &&
14377 magic_number != MAGIC_NUMBER_G7) ||
14378 (sli_family == LPFC_SLI_INTF_FAMILY_G7P &&
14379 magic_number != MAGIC_NUMBER_G7P)) {
14380 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
14381 "3030 This firmware version is not supported on"
14382 " this HBA model. Device:%x Magic:%x Type:%x "
14383 "ID:%x Size %d %zd\n",
14384 phba->pcidev->device, magic_number, ftype, fid,
14387 } else if (offset == ADD_STATUS_FW_DOWNLOAD_HW_DISABLED) {
14388 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
14389 "3021 Firmware downloads have been prohibited "
14390 "by a system configuration setting on "
14391 "Device:%x Magic:%x Type:%x ID:%x Size %d "
14393 phba->pcidev->device, magic_number, ftype, fid,
14397 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
14398 "3022 FW Download failed. Add Status x%x "
14399 "Device:%x Magic:%x Type:%x ID:%x Size %d "
14401 offset, phba->pcidev->device, magic_number,
14402 ftype, fid, fsize, fw->size);
14409 * lpfc_write_firmware - attempt to write a firmware image to the port
14410 * @fw: pointer to firmware image returned from request_firmware.
14411 * @context: pointer to firmware image returned from request_firmware.
14415 lpfc_write_firmware(const struct firmware *fw, void *context)
14417 struct lpfc_hba *phba = (struct lpfc_hba *)context;
14418 char fwrev[FW_REV_STR_SIZE];
14419 struct lpfc_grp_hdr *image;
14420 struct list_head dma_buffer_list;
14422 struct lpfc_dmabuf *dmabuf, *next;
14423 uint32_t offset = 0, temp_offset = 0;
14424 uint32_t magic_number, ftype, fid, fsize;
14426 /* It can be null in no-wait mode, sanity check */
14431 image = (struct lpfc_grp_hdr *)fw->data;
14433 magic_number = be32_to_cpu(image->magic_number);
14434 ftype = bf_get_be32(lpfc_grp_hdr_file_type, image);
14435 fid = bf_get_be32(lpfc_grp_hdr_id, image);
14436 fsize = be32_to_cpu(image->size);
14438 INIT_LIST_HEAD(&dma_buffer_list);
14439 lpfc_decode_firmware_rev(phba, fwrev, 1);
14440 if (strncmp(fwrev, image->revision, strnlen(image->revision, 16))) {
14441 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
14442 "3023 Updating Firmware, Current Version:%s "
14443 "New Version:%s\n",
14444 fwrev, image->revision);
14445 for (i = 0; i < LPFC_MBX_WR_CONFIG_MAX_BDE; i++) {
14446 dmabuf = kzalloc(sizeof(struct lpfc_dmabuf),
14452 dmabuf->virt = dma_alloc_coherent(&phba->pcidev->dev,
14456 if (!dmabuf->virt) {
14461 list_add_tail(&dmabuf->list, &dma_buffer_list);
14463 while (offset < fw->size) {
14464 temp_offset = offset;
14465 list_for_each_entry(dmabuf, &dma_buffer_list, list) {
14466 if (temp_offset + SLI4_PAGE_SIZE > fw->size) {
14467 memcpy(dmabuf->virt,
14468 fw->data + temp_offset,
14469 fw->size - temp_offset);
14470 temp_offset = fw->size;
14473 memcpy(dmabuf->virt, fw->data + temp_offset,
14475 temp_offset += SLI4_PAGE_SIZE;
14477 rc = lpfc_wr_object(phba, &dma_buffer_list,
14478 (fw->size - offset), &offset);
14480 rc = lpfc_log_write_firmware_error(phba, offset,
14491 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
14492 "3029 Skipped Firmware update, Current "
14493 "Version:%s New Version:%s\n",
14494 fwrev, image->revision);
14497 list_for_each_entry_safe(dmabuf, next, &dma_buffer_list, list) {
14498 list_del(&dmabuf->list);
14499 dma_free_coherent(&phba->pcidev->dev, SLI4_PAGE_SIZE,
14500 dmabuf->virt, dmabuf->phys);
14503 release_firmware(fw);
14506 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
14507 "3062 Firmware update error, status %d.\n", rc);
14509 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
14510 "3024 Firmware update success: size %d.\n", rc);
14514 * lpfc_sli4_request_firmware_update - Request linux generic firmware upgrade
14515 * @phba: pointer to lpfc hba data structure.
14516 * @fw_upgrade: which firmware to update.
14518 * This routine is called to perform Linux generic firmware upgrade on device
14519 * that supports such feature.
14522 lpfc_sli4_request_firmware_update(struct lpfc_hba *phba, uint8_t fw_upgrade)
14524 uint8_t file_name[ELX_MODEL_NAME_SIZE];
14526 const struct firmware *fw;
14528 /* Only supported on SLI4 interface type 2 for now */
14529 if (bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf) <
14530 LPFC_SLI_INTF_IF_TYPE_2)
14533 snprintf(file_name, ELX_MODEL_NAME_SIZE, "%s.grp", phba->ModelName);
14535 if (fw_upgrade == INT_FW_UPGRADE) {
14536 ret = request_firmware_nowait(THIS_MODULE, FW_ACTION_UEVENT,
14537 file_name, &phba->pcidev->dev,
14538 GFP_KERNEL, (void *)phba,
14539 lpfc_write_firmware);
14540 } else if (fw_upgrade == RUN_FW_UPGRADE) {
14541 ret = request_firmware(&fw, file_name, &phba->pcidev->dev);
14543 lpfc_write_firmware(fw, (void *)phba);
14552 * lpfc_pci_probe_one_s4 - PCI probe func to reg SLI-4 device to PCI subsys
14553 * @pdev: pointer to PCI device
14554 * @pid: pointer to PCI device identifier
14556 * This routine is called from the kernel's PCI subsystem to device with
14557 * SLI-4 interface spec. When an Emulex HBA with SLI-4 interface spec is
14558 * presented on PCI bus, the kernel PCI subsystem looks at PCI device-specific
14559 * information of the device and driver to see if the driver state that it
14560 * can support this kind of device. If the match is successful, the driver
14561 * core invokes this routine. If this routine determines it can claim the HBA,
14562 * it does all the initialization that it needs to do to handle the HBA
14566 * 0 - driver can claim the device
14567 * negative value - driver can not claim the device
14570 lpfc_pci_probe_one_s4(struct pci_dev *pdev, const struct pci_device_id *pid)
14572 struct lpfc_hba *phba;
14573 struct lpfc_vport *vport = NULL;
14574 struct Scsi_Host *shost = NULL;
14576 uint32_t cfg_mode, intr_mode;
14578 /* Allocate memory for HBA structure */
14579 phba = lpfc_hba_alloc(pdev);
14583 INIT_LIST_HEAD(&phba->poll_list);
14585 /* Perform generic PCI device enabling operation */
14586 error = lpfc_enable_pci_dev(phba);
14588 goto out_free_phba;
14590 /* Set up SLI API function jump table for PCI-device group-1 HBAs */
14591 error = lpfc_api_table_setup(phba, LPFC_PCI_DEV_OC);
14593 goto out_disable_pci_dev;
14595 /* Set up SLI-4 specific device PCI memory space */
14596 error = lpfc_sli4_pci_mem_setup(phba);
14598 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14599 "1410 Failed to set up pci memory space.\n");
14600 goto out_disable_pci_dev;
14603 /* Set up SLI-4 Specific device driver resources */
14604 error = lpfc_sli4_driver_resource_setup(phba);
14606 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14607 "1412 Failed to set up driver resource.\n");
14608 goto out_unset_pci_mem_s4;
14611 INIT_LIST_HEAD(&phba->active_rrq_list);
14612 INIT_LIST_HEAD(&phba->fcf.fcf_pri_list);
14614 /* Set up common device driver resources */
14615 error = lpfc_setup_driver_resource_phase2(phba);
14617 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14618 "1414 Failed to set up driver resource.\n");
14619 goto out_unset_driver_resource_s4;
14622 /* Get the default values for Model Name and Description */
14623 lpfc_get_hba_model_desc(phba, phba->ModelName, phba->ModelDesc);
14625 /* Now, trying to enable interrupt and bring up the device */
14626 cfg_mode = phba->cfg_use_msi;
14628 /* Put device to a known state before enabling interrupt */
14629 phba->pport = NULL;
14630 lpfc_stop_port(phba);
14632 /* Init cpu_map array */
14633 lpfc_cpu_map_array_init(phba);
14635 /* Init hba_eq_hdl array */
14636 lpfc_hba_eq_hdl_array_init(phba);
14638 /* Configure and enable interrupt */
14639 intr_mode = lpfc_sli4_enable_intr(phba, cfg_mode);
14640 if (intr_mode == LPFC_INTR_ERROR) {
14641 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
14642 "0426 Failed to enable interrupt.\n");
14644 goto out_unset_driver_resource;
14646 /* Default to single EQ for non-MSI-X */
14647 if (phba->intr_type != MSIX) {
14648 phba->cfg_irq_chann = 1;
14649 if (phba->cfg_enable_fc4_type & LPFC_ENABLE_NVME) {
14650 if (phba->nvmet_support)
14651 phba->cfg_nvmet_mrq = 1;
14654 lpfc_cpu_affinity_check(phba, phba->cfg_irq_chann);
14656 /* Create SCSI host to the physical port */
14657 error = lpfc_create_shost(phba);
14659 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14660 "1415 Failed to create scsi host.\n");
14661 goto out_disable_intr;
14663 vport = phba->pport;
14664 shost = lpfc_shost_from_vport(vport); /* save shost for error cleanup */
14666 /* Configure sysfs attributes */
14667 error = lpfc_alloc_sysfs_attr(vport);
14669 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14670 "1416 Failed to allocate sysfs attr\n");
14671 goto out_destroy_shost;
14674 /* Set up SLI-4 HBA */
14675 if (lpfc_sli4_hba_setup(phba)) {
14676 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
14677 "1421 Failed to set up hba\n");
14679 goto out_free_sysfs_attr;
14682 /* Log the current active interrupt mode */
14683 phba->intr_mode = intr_mode;
14684 lpfc_log_intr_mode(phba, intr_mode);
14686 /* Perform post initialization setup */
14687 lpfc_post_init_setup(phba);
14689 /* NVME support in FW earlier in the driver load corrects the
14690 * FC4 type making a check for nvme_support unnecessary.
14692 if (phba->nvmet_support == 0) {
14693 if (phba->cfg_enable_fc4_type & LPFC_ENABLE_NVME) {
14694 /* Create NVME binding with nvme_fc_transport. This
14695 * ensures the vport is initialized. If the localport
14696 * create fails, it should not unload the driver to
14697 * support field issues.
14699 error = lpfc_nvme_create_localport(vport);
14701 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
14702 "6004 NVME registration "
14703 "failed, error x%x\n",
14709 /* check for firmware upgrade or downgrade */
14710 if (phba->cfg_request_firmware_upgrade)
14711 lpfc_sli4_request_firmware_update(phba, INT_FW_UPGRADE);
14713 /* Check if there are static vports to be created. */
14714 lpfc_create_static_vport(phba);
14716 /* Enable RAS FW log support */
14717 lpfc_sli4_ras_setup(phba);
14719 timer_setup(&phba->cpuhp_poll_timer, lpfc_sli4_poll_hbtimer, 0);
14720 cpuhp_state_add_instance_nocalls(lpfc_cpuhp_state, &phba->cpuhp);
14724 out_free_sysfs_attr:
14725 lpfc_free_sysfs_attr(vport);
14727 lpfc_destroy_shost(phba);
14729 lpfc_sli4_disable_intr(phba);
14730 out_unset_driver_resource:
14731 lpfc_unset_driver_resource_phase2(phba);
14732 out_unset_driver_resource_s4:
14733 lpfc_sli4_driver_resource_unset(phba);
14734 out_unset_pci_mem_s4:
14735 lpfc_sli4_pci_mem_unset(phba);
14736 out_disable_pci_dev:
14737 lpfc_disable_pci_dev(phba);
14739 scsi_host_put(shost);
14741 lpfc_hba_free(phba);
14746 * lpfc_pci_remove_one_s4 - PCI func to unreg SLI-4 device from PCI subsystem
14747 * @pdev: pointer to PCI device
14749 * This routine is called from the kernel's PCI subsystem to device with
14750 * SLI-4 interface spec. When an Emulex HBA with SLI-4 interface spec is
14751 * removed from PCI bus, it performs all the necessary cleanup for the HBA
14752 * device to be removed from the PCI subsystem properly.
14755 lpfc_pci_remove_one_s4(struct pci_dev *pdev)
14757 struct Scsi_Host *shost = pci_get_drvdata(pdev);
14758 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
14759 struct lpfc_vport **vports;
14760 struct lpfc_hba *phba = vport->phba;
14763 /* Mark the device unloading flag */
14764 spin_lock_irq(&phba->hbalock);
14765 vport->load_flag |= FC_UNLOADING;
14766 spin_unlock_irq(&phba->hbalock);
14768 lpfc_unreg_congestion_buf(phba);
14770 lpfc_free_sysfs_attr(vport);
14772 /* Release all the vports against this physical port */
14773 vports = lpfc_create_vport_work_array(phba);
14774 if (vports != NULL)
14775 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
14776 if (vports[i]->port_type == LPFC_PHYSICAL_PORT)
14778 fc_vport_terminate(vports[i]->fc_vport);
14780 lpfc_destroy_vport_work_array(phba, vports);
14782 /* Remove FC host with the physical port */
14783 fc_remove_host(shost);
14784 scsi_remove_host(shost);
14786 /* Perform ndlp cleanup on the physical port. The nvme and nvmet
14787 * localports are destroyed after to cleanup all transport memory.
14789 lpfc_cleanup(vport);
14790 lpfc_nvmet_destroy_targetport(phba);
14791 lpfc_nvme_destroy_localport(vport);
14793 /* De-allocate multi-XRI pools */
14794 if (phba->cfg_xri_rebalancing)
14795 lpfc_destroy_multixri_pools(phba);
14798 * Bring down the SLI Layer. This step disables all interrupts,
14799 * clears the rings, discards all mailbox commands, and resets
14800 * the HBA FCoE function.
14802 lpfc_debugfs_terminate(vport);
14804 lpfc_stop_hba_timers(phba);
14805 spin_lock_irq(&phba->port_list_lock);
14806 list_del_init(&vport->listentry);
14807 spin_unlock_irq(&phba->port_list_lock);
14809 /* Perform scsi free before driver resource_unset since scsi
14810 * buffers are released to their corresponding pools here.
14812 lpfc_io_free(phba);
14813 lpfc_free_iocb_list(phba);
14814 lpfc_sli4_hba_unset(phba);
14816 lpfc_unset_driver_resource_phase2(phba);
14817 lpfc_sli4_driver_resource_unset(phba);
14819 /* Unmap adapter Control and Doorbell registers */
14820 lpfc_sli4_pci_mem_unset(phba);
14822 /* Release PCI resources and disable device's PCI function */
14823 scsi_host_put(shost);
14824 lpfc_disable_pci_dev(phba);
14826 /* Finally, free the driver's device data structure */
14827 lpfc_hba_free(phba);
14833 * lpfc_pci_suspend_one_s4 - PCI func to suspend SLI-4 device for power mgmnt
14834 * @dev_d: pointer to device
14836 * This routine is called from the kernel's PCI subsystem to support system
14837 * Power Management (PM) to device with SLI-4 interface spec. When PM invokes
14838 * this method, it quiesces the device by stopping the driver's worker
14839 * thread for the device, turning off device's interrupt and DMA, and bring
14840 * the device offline. Note that as the driver implements the minimum PM
14841 * requirements to a power-aware driver's PM support for suspend/resume -- all
14842 * the possible PM messages (SUSPEND, HIBERNATE, FREEZE) to the suspend()
14843 * method call will be treated as SUSPEND and the driver will fully
14844 * reinitialize its device during resume() method call, the driver will set
14845 * device to PCI_D3hot state in PCI config space instead of setting it
14846 * according to the @msg provided by the PM.
14849 * 0 - driver suspended the device
14852 static int __maybe_unused
14853 lpfc_pci_suspend_one_s4(struct device *dev_d)
14855 struct Scsi_Host *shost = dev_get_drvdata(dev_d);
14856 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
14858 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
14859 "2843 PCI device Power Management suspend.\n");
14861 /* Bring down the device */
14862 lpfc_offline_prep(phba, LPFC_MBX_WAIT);
14863 lpfc_offline(phba);
14864 kthread_stop(phba->worker_thread);
14866 /* Disable interrupt from device */
14867 lpfc_sli4_disable_intr(phba);
14868 lpfc_sli4_queue_destroy(phba);
14874 * lpfc_pci_resume_one_s4 - PCI func to resume SLI-4 device for power mgmnt
14875 * @dev_d: pointer to device
14877 * This routine is called from the kernel's PCI subsystem to support system
14878 * Power Management (PM) to device with SLI-4 interface spac. When PM invokes
14879 * this method, it restores the device's PCI config space state and fully
14880 * reinitializes the device and brings it online. Note that as the driver
14881 * implements the minimum PM requirements to a power-aware driver's PM for
14882 * suspend/resume -- all the possible PM messages (SUSPEND, HIBERNATE, FREEZE)
14883 * to the suspend() method call will be treated as SUSPEND and the driver
14884 * will fully reinitialize its device during resume() method call, the device
14885 * will be set to PCI_D0 directly in PCI config space before restoring the
14889 * 0 - driver suspended the device
14892 static int __maybe_unused
14893 lpfc_pci_resume_one_s4(struct device *dev_d)
14895 struct Scsi_Host *shost = dev_get_drvdata(dev_d);
14896 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
14897 uint32_t intr_mode;
14900 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
14901 "0292 PCI device Power Management resume.\n");
14903 /* Startup the kernel thread for this host adapter. */
14904 phba->worker_thread = kthread_run(lpfc_do_work, phba,
14905 "lpfc_worker_%d", phba->brd_no);
14906 if (IS_ERR(phba->worker_thread)) {
14907 error = PTR_ERR(phba->worker_thread);
14908 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14909 "0293 PM resume failed to start worker "
14910 "thread: error=x%x.\n", error);
14914 /* Configure and enable interrupt */
14915 intr_mode = lpfc_sli4_enable_intr(phba, phba->intr_mode);
14916 if (intr_mode == LPFC_INTR_ERROR) {
14917 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
14918 "0294 PM resume Failed to enable interrupt\n");
14921 phba->intr_mode = intr_mode;
14923 /* Restart HBA and bring it online */
14924 lpfc_sli_brdrestart(phba);
14927 /* Log the current active interrupt mode */
14928 lpfc_log_intr_mode(phba, phba->intr_mode);
14934 * lpfc_sli4_prep_dev_for_recover - Prepare SLI4 device for pci slot recover
14935 * @phba: pointer to lpfc hba data structure.
14937 * This routine is called to prepare the SLI4 device for PCI slot recover. It
14938 * aborts all the outstanding SCSI I/Os to the pci device.
14941 lpfc_sli4_prep_dev_for_recover(struct lpfc_hba *phba)
14943 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
14944 "2828 PCI channel I/O abort preparing for recovery\n");
14946 * There may be errored I/Os through HBA, abort all I/Os on txcmplq
14947 * and let the SCSI mid-layer to retry them to recover.
14949 lpfc_sli_abort_fcp_rings(phba);
14953 * lpfc_sli4_prep_dev_for_reset - Prepare SLI4 device for pci slot reset
14954 * @phba: pointer to lpfc hba data structure.
14956 * This routine is called to prepare the SLI4 device for PCI slot reset. It
14957 * disables the device interrupt and pci device, and aborts the internal FCP
14961 lpfc_sli4_prep_dev_for_reset(struct lpfc_hba *phba)
14963 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
14964 "2826 PCI channel disable preparing for reset\n");
14966 /* Block any management I/Os to the device */
14967 lpfc_block_mgmt_io(phba, LPFC_MBX_NO_WAIT);
14969 /* Block all SCSI devices' I/Os on the host */
14970 lpfc_scsi_dev_block(phba);
14972 /* Flush all driver's outstanding I/Os as we are to reset */
14973 lpfc_sli_flush_io_rings(phba);
14975 /* stop all timers */
14976 lpfc_stop_hba_timers(phba);
14978 /* Disable interrupt and pci device */
14979 lpfc_sli4_disable_intr(phba);
14980 lpfc_sli4_queue_destroy(phba);
14981 pci_disable_device(phba->pcidev);
14985 * lpfc_sli4_prep_dev_for_perm_failure - Prepare SLI4 dev for pci slot disable
14986 * @phba: pointer to lpfc hba data structure.
14988 * This routine is called to prepare the SLI4 device for PCI slot permanently
14989 * disabling. It blocks the SCSI transport layer traffic and flushes the FCP
14993 lpfc_sli4_prep_dev_for_perm_failure(struct lpfc_hba *phba)
14995 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
14996 "2827 PCI channel permanent disable for failure\n");
14998 /* Block all SCSI devices' I/Os on the host */
14999 lpfc_scsi_dev_block(phba);
15001 /* stop all timers */
15002 lpfc_stop_hba_timers(phba);
15004 /* Clean up all driver's outstanding I/Os */
15005 lpfc_sli_flush_io_rings(phba);
15009 * lpfc_io_error_detected_s4 - Method for handling PCI I/O error to SLI-4 device
15010 * @pdev: pointer to PCI device.
15011 * @state: the current PCI connection state.
15013 * This routine is called from the PCI subsystem for error handling to device
15014 * with SLI-4 interface spec. This function is called by the PCI subsystem
15015 * after a PCI bus error affecting this device has been detected. When this
15016 * function is invoked, it will need to stop all the I/Os and interrupt(s)
15017 * to the device. Once that is done, it will return PCI_ERS_RESULT_NEED_RESET
15018 * for the PCI subsystem to perform proper recovery as desired.
15021 * PCI_ERS_RESULT_NEED_RESET - need to reset before recovery
15022 * PCI_ERS_RESULT_DISCONNECT - device could not be recovered
15024 static pci_ers_result_t
15025 lpfc_io_error_detected_s4(struct pci_dev *pdev, pci_channel_state_t state)
15027 struct Scsi_Host *shost = pci_get_drvdata(pdev);
15028 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
15031 case pci_channel_io_normal:
15032 /* Non-fatal error, prepare for recovery */
15033 lpfc_sli4_prep_dev_for_recover(phba);
15034 return PCI_ERS_RESULT_CAN_RECOVER;
15035 case pci_channel_io_frozen:
15036 /* Fatal error, prepare for slot reset */
15037 lpfc_sli4_prep_dev_for_reset(phba);
15038 return PCI_ERS_RESULT_NEED_RESET;
15039 case pci_channel_io_perm_failure:
15040 /* Permanent failure, prepare for device down */
15041 lpfc_sli4_prep_dev_for_perm_failure(phba);
15042 return PCI_ERS_RESULT_DISCONNECT;
15044 /* Unknown state, prepare and request slot reset */
15045 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
15046 "2825 Unknown PCI error state: x%x\n", state);
15047 lpfc_sli4_prep_dev_for_reset(phba);
15048 return PCI_ERS_RESULT_NEED_RESET;
15053 * lpfc_io_slot_reset_s4 - Method for restart PCI SLI-4 device from scratch
15054 * @pdev: pointer to PCI device.
15056 * This routine is called from the PCI subsystem for error handling to device
15057 * with SLI-4 interface spec. It is called after PCI bus has been reset to
15058 * restart the PCI card from scratch, as if from a cold-boot. During the
15059 * PCI subsystem error recovery, after the driver returns
15060 * PCI_ERS_RESULT_NEED_RESET, the PCI subsystem will perform proper error
15061 * recovery and then call this routine before calling the .resume method to
15062 * recover the device. This function will initialize the HBA device, enable
15063 * the interrupt, but it will just put the HBA to offline state without
15064 * passing any I/O traffic.
15067 * PCI_ERS_RESULT_RECOVERED - the device has been recovered
15068 * PCI_ERS_RESULT_DISCONNECT - device could not be recovered
15070 static pci_ers_result_t
15071 lpfc_io_slot_reset_s4(struct pci_dev *pdev)
15073 struct Scsi_Host *shost = pci_get_drvdata(pdev);
15074 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
15075 struct lpfc_sli *psli = &phba->sli;
15076 uint32_t intr_mode;
15078 dev_printk(KERN_INFO, &pdev->dev, "recovering from a slot reset.\n");
15079 if (pci_enable_device_mem(pdev)) {
15080 printk(KERN_ERR "lpfc: Cannot re-enable "
15081 "PCI device after reset.\n");
15082 return PCI_ERS_RESULT_DISCONNECT;
15085 pci_restore_state(pdev);
15088 * As the new kernel behavior of pci_restore_state() API call clears
15089 * device saved_state flag, need to save the restored state again.
15091 pci_save_state(pdev);
15093 if (pdev->is_busmaster)
15094 pci_set_master(pdev);
15096 spin_lock_irq(&phba->hbalock);
15097 psli->sli_flag &= ~LPFC_SLI_ACTIVE;
15098 spin_unlock_irq(&phba->hbalock);
15100 /* Configure and enable interrupt */
15101 intr_mode = lpfc_sli4_enable_intr(phba, phba->intr_mode);
15102 if (intr_mode == LPFC_INTR_ERROR) {
15103 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
15104 "2824 Cannot re-enable interrupt after "
15106 return PCI_ERS_RESULT_DISCONNECT;
15108 phba->intr_mode = intr_mode;
15110 /* Log the current active interrupt mode */
15111 lpfc_log_intr_mode(phba, phba->intr_mode);
15113 return PCI_ERS_RESULT_RECOVERED;
15117 * lpfc_io_resume_s4 - Method for resuming PCI I/O operation to SLI-4 device
15118 * @pdev: pointer to PCI device
15120 * This routine is called from the PCI subsystem for error handling to device
15121 * with SLI-4 interface spec. It is called when kernel error recovery tells
15122 * the lpfc driver that it is ok to resume normal PCI operation after PCI bus
15123 * error recovery. After this call, traffic can start to flow from this device
15127 lpfc_io_resume_s4(struct pci_dev *pdev)
15129 struct Scsi_Host *shost = pci_get_drvdata(pdev);
15130 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
15133 * In case of slot reset, as function reset is performed through
15134 * mailbox command which needs DMA to be enabled, this operation
15135 * has to be moved to the io resume phase. Taking device offline
15136 * will perform the necessary cleanup.
15138 if (!(phba->sli.sli_flag & LPFC_SLI_ACTIVE)) {
15139 /* Perform device reset */
15140 lpfc_offline_prep(phba, LPFC_MBX_WAIT);
15141 lpfc_offline(phba);
15142 lpfc_sli_brdrestart(phba);
15143 /* Bring the device back online */
15149 * lpfc_pci_probe_one - lpfc PCI probe func to reg dev to PCI subsystem
15150 * @pdev: pointer to PCI device
15151 * @pid: pointer to PCI device identifier
15153 * This routine is to be registered to the kernel's PCI subsystem. When an
15154 * Emulex HBA device is presented on PCI bus, the kernel PCI subsystem looks
15155 * at PCI device-specific information of the device and driver to see if the
15156 * driver state that it can support this kind of device. If the match is
15157 * successful, the driver core invokes this routine. This routine dispatches
15158 * the action to the proper SLI-3 or SLI-4 device probing routine, which will
15159 * do all the initialization that it needs to do to handle the HBA device
15163 * 0 - driver can claim the device
15164 * negative value - driver can not claim the device
15167 lpfc_pci_probe_one(struct pci_dev *pdev, const struct pci_device_id *pid)
15170 struct lpfc_sli_intf intf;
15172 if (pci_read_config_dword(pdev, LPFC_SLI_INTF, &intf.word0))
15175 if ((bf_get(lpfc_sli_intf_valid, &intf) == LPFC_SLI_INTF_VALID) &&
15176 (bf_get(lpfc_sli_intf_slirev, &intf) == LPFC_SLI_INTF_REV_SLI4))
15177 rc = lpfc_pci_probe_one_s4(pdev, pid);
15179 rc = lpfc_pci_probe_one_s3(pdev, pid);
15185 * lpfc_pci_remove_one - lpfc PCI func to unreg dev from PCI subsystem
15186 * @pdev: pointer to PCI device
15188 * This routine is to be registered to the kernel's PCI subsystem. When an
15189 * Emulex HBA is removed from PCI bus, the driver core invokes this routine.
15190 * This routine dispatches the action to the proper SLI-3 or SLI-4 device
15191 * remove routine, which will perform all the necessary cleanup for the
15192 * device to be removed from the PCI subsystem properly.
15195 lpfc_pci_remove_one(struct pci_dev *pdev)
15197 struct Scsi_Host *shost = pci_get_drvdata(pdev);
15198 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
15200 switch (phba->pci_dev_grp) {
15201 case LPFC_PCI_DEV_LP:
15202 lpfc_pci_remove_one_s3(pdev);
15204 case LPFC_PCI_DEV_OC:
15205 lpfc_pci_remove_one_s4(pdev);
15208 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
15209 "1424 Invalid PCI device group: 0x%x\n",
15210 phba->pci_dev_grp);
15217 * lpfc_pci_suspend_one - lpfc PCI func to suspend dev for power management
15218 * @dev: pointer to device
15220 * This routine is to be registered to the kernel's PCI subsystem to support
15221 * system Power Management (PM). When PM invokes this method, it dispatches
15222 * the action to the proper SLI-3 or SLI-4 device suspend routine, which will
15223 * suspend the device.
15226 * 0 - driver suspended the device
15229 static int __maybe_unused
15230 lpfc_pci_suspend_one(struct device *dev)
15232 struct Scsi_Host *shost = dev_get_drvdata(dev);
15233 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
15236 switch (phba->pci_dev_grp) {
15237 case LPFC_PCI_DEV_LP:
15238 rc = lpfc_pci_suspend_one_s3(dev);
15240 case LPFC_PCI_DEV_OC:
15241 rc = lpfc_pci_suspend_one_s4(dev);
15244 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
15245 "1425 Invalid PCI device group: 0x%x\n",
15246 phba->pci_dev_grp);
15253 * lpfc_pci_resume_one - lpfc PCI func to resume dev for power management
15254 * @dev: pointer to device
15256 * This routine is to be registered to the kernel's PCI subsystem to support
15257 * system Power Management (PM). When PM invokes this method, it dispatches
15258 * the action to the proper SLI-3 or SLI-4 device resume routine, which will
15259 * resume the device.
15262 * 0 - driver suspended the device
15265 static int __maybe_unused
15266 lpfc_pci_resume_one(struct device *dev)
15268 struct Scsi_Host *shost = dev_get_drvdata(dev);
15269 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
15272 switch (phba->pci_dev_grp) {
15273 case LPFC_PCI_DEV_LP:
15274 rc = lpfc_pci_resume_one_s3(dev);
15276 case LPFC_PCI_DEV_OC:
15277 rc = lpfc_pci_resume_one_s4(dev);
15280 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
15281 "1426 Invalid PCI device group: 0x%x\n",
15282 phba->pci_dev_grp);
15289 * lpfc_io_error_detected - lpfc method for handling PCI I/O error
15290 * @pdev: pointer to PCI device.
15291 * @state: the current PCI connection state.
15293 * This routine is registered to the PCI subsystem for error handling. This
15294 * function is called by the PCI subsystem after a PCI bus error affecting
15295 * this device has been detected. When this routine is invoked, it dispatches
15296 * the action to the proper SLI-3 or SLI-4 device error detected handling
15297 * routine, which will perform the proper error detected operation.
15300 * PCI_ERS_RESULT_NEED_RESET - need to reset before recovery
15301 * PCI_ERS_RESULT_DISCONNECT - device could not be recovered
15303 static pci_ers_result_t
15304 lpfc_io_error_detected(struct pci_dev *pdev, pci_channel_state_t state)
15306 struct Scsi_Host *shost = pci_get_drvdata(pdev);
15307 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
15308 pci_ers_result_t rc = PCI_ERS_RESULT_DISCONNECT;
15310 switch (phba->pci_dev_grp) {
15311 case LPFC_PCI_DEV_LP:
15312 rc = lpfc_io_error_detected_s3(pdev, state);
15314 case LPFC_PCI_DEV_OC:
15315 rc = lpfc_io_error_detected_s4(pdev, state);
15318 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
15319 "1427 Invalid PCI device group: 0x%x\n",
15320 phba->pci_dev_grp);
15327 * lpfc_io_slot_reset - lpfc method for restart PCI dev from scratch
15328 * @pdev: pointer to PCI device.
15330 * This routine is registered to the PCI subsystem for error handling. This
15331 * function is called after PCI bus has been reset to restart the PCI card
15332 * from scratch, as if from a cold-boot. When this routine is invoked, it
15333 * dispatches the action to the proper SLI-3 or SLI-4 device reset handling
15334 * routine, which will perform the proper device reset.
15337 * PCI_ERS_RESULT_RECOVERED - the device has been recovered
15338 * PCI_ERS_RESULT_DISCONNECT - device could not be recovered
15340 static pci_ers_result_t
15341 lpfc_io_slot_reset(struct pci_dev *pdev)
15343 struct Scsi_Host *shost = pci_get_drvdata(pdev);
15344 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
15345 pci_ers_result_t rc = PCI_ERS_RESULT_DISCONNECT;
15347 switch (phba->pci_dev_grp) {
15348 case LPFC_PCI_DEV_LP:
15349 rc = lpfc_io_slot_reset_s3(pdev);
15351 case LPFC_PCI_DEV_OC:
15352 rc = lpfc_io_slot_reset_s4(pdev);
15355 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
15356 "1428 Invalid PCI device group: 0x%x\n",
15357 phba->pci_dev_grp);
15364 * lpfc_io_resume - lpfc method for resuming PCI I/O operation
15365 * @pdev: pointer to PCI device
15367 * This routine is registered to the PCI subsystem for error handling. It
15368 * is called when kernel error recovery tells the lpfc driver that it is
15369 * OK to resume normal PCI operation after PCI bus error recovery. When
15370 * this routine is invoked, it dispatches the action to the proper SLI-3
15371 * or SLI-4 device io_resume routine, which will resume the device operation.
15374 lpfc_io_resume(struct pci_dev *pdev)
15376 struct Scsi_Host *shost = pci_get_drvdata(pdev);
15377 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
15379 switch (phba->pci_dev_grp) {
15380 case LPFC_PCI_DEV_LP:
15381 lpfc_io_resume_s3(pdev);
15383 case LPFC_PCI_DEV_OC:
15384 lpfc_io_resume_s4(pdev);
15387 lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT,
15388 "1429 Invalid PCI device group: 0x%x\n",
15389 phba->pci_dev_grp);
15396 * lpfc_sli4_oas_verify - Verify OAS is supported by this adapter
15397 * @phba: pointer to lpfc hba data structure.
15399 * This routine checks to see if OAS is supported for this adapter. If
15400 * supported, the configure Flash Optimized Fabric flag is set. Otherwise,
15401 * the enable oas flag is cleared and the pool created for OAS device data
15406 lpfc_sli4_oas_verify(struct lpfc_hba *phba)
15409 if (!phba->cfg_EnableXLane)
15412 if (phba->sli4_hba.pc_sli4_params.oas_supported) {
15416 mempool_destroy(phba->device_data_mem_pool);
15417 phba->device_data_mem_pool = NULL;
15424 * lpfc_sli4_ras_init - Verify RAS-FW log is supported by this adapter
15425 * @phba: pointer to lpfc hba data structure.
15427 * This routine checks to see if RAS is supported by the adapter. Check the
15428 * function through which RAS support enablement is to be done.
15431 lpfc_sli4_ras_init(struct lpfc_hba *phba)
15433 /* if ASIC_GEN_NUM >= 0xC) */
15434 if ((bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf) ==
15435 LPFC_SLI_INTF_IF_TYPE_6) ||
15436 (bf_get(lpfc_sli_intf_sli_family, &phba->sli4_hba.sli_intf) ==
15437 LPFC_SLI_INTF_FAMILY_G6)) {
15438 phba->ras_fwlog.ras_hwsupport = true;
15439 if (phba->cfg_ras_fwlog_func == PCI_FUNC(phba->pcidev->devfn) &&
15440 phba->cfg_ras_fwlog_buffsize)
15441 phba->ras_fwlog.ras_enabled = true;
15443 phba->ras_fwlog.ras_enabled = false;
15445 phba->ras_fwlog.ras_hwsupport = false;
15450 MODULE_DEVICE_TABLE(pci, lpfc_id_table);
15452 static const struct pci_error_handlers lpfc_err_handler = {
15453 .error_detected = lpfc_io_error_detected,
15454 .slot_reset = lpfc_io_slot_reset,
15455 .resume = lpfc_io_resume,
15458 static SIMPLE_DEV_PM_OPS(lpfc_pci_pm_ops_one,
15459 lpfc_pci_suspend_one,
15460 lpfc_pci_resume_one);
15462 static struct pci_driver lpfc_driver = {
15463 .name = LPFC_DRIVER_NAME,
15464 .id_table = lpfc_id_table,
15465 .probe = lpfc_pci_probe_one,
15466 .remove = lpfc_pci_remove_one,
15467 .shutdown = lpfc_pci_remove_one,
15468 .driver.pm = &lpfc_pci_pm_ops_one,
15469 .err_handler = &lpfc_err_handler,
15472 static const struct file_operations lpfc_mgmt_fop = {
15473 .owner = THIS_MODULE,
15476 static struct miscdevice lpfc_mgmt_dev = {
15477 .minor = MISC_DYNAMIC_MINOR,
15478 .name = "lpfcmgmt",
15479 .fops = &lpfc_mgmt_fop,
15483 * lpfc_init - lpfc module initialization routine
15485 * This routine is to be invoked when the lpfc module is loaded into the
15486 * kernel. The special kernel macro module_init() is used to indicate the
15487 * role of this routine to the kernel as lpfc module entry point.
15491 * -ENOMEM - FC attach transport failed
15492 * all others - failed
15499 pr_info(LPFC_MODULE_DESC "\n");
15500 pr_info(LPFC_COPYRIGHT "\n");
15502 error = misc_register(&lpfc_mgmt_dev);
15504 printk(KERN_ERR "Could not register lpfcmgmt device, "
15505 "misc_register returned with status %d", error);
15508 lpfc_transport_functions.vport_create = lpfc_vport_create;
15509 lpfc_transport_functions.vport_delete = lpfc_vport_delete;
15510 lpfc_transport_template =
15511 fc_attach_transport(&lpfc_transport_functions);
15512 if (lpfc_transport_template == NULL)
15514 lpfc_vport_transport_template =
15515 fc_attach_transport(&lpfc_vport_transport_functions);
15516 if (lpfc_vport_transport_template == NULL) {
15517 fc_release_transport(lpfc_transport_template);
15520 lpfc_wqe_cmd_template();
15521 lpfc_nvmet_cmd_template();
15523 /* Initialize in case vector mapping is needed */
15524 lpfc_present_cpu = num_present_cpus();
15526 error = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN,
15527 "lpfc/sli4:online",
15528 lpfc_cpu_online, lpfc_cpu_offline);
15530 goto cpuhp_failure;
15531 lpfc_cpuhp_state = error;
15533 error = pci_register_driver(&lpfc_driver);
15540 cpuhp_remove_multi_state(lpfc_cpuhp_state);
15542 fc_release_transport(lpfc_transport_template);
15543 fc_release_transport(lpfc_vport_transport_template);
15545 misc_deregister(&lpfc_mgmt_dev);
15550 void lpfc_dmp_dbg(struct lpfc_hba *phba)
15552 unsigned int start_idx;
15553 unsigned int dbg_cnt;
15554 unsigned int temp_idx;
15557 unsigned long rem_nsec, iflags;
15558 bool log_verbose = false;
15559 struct lpfc_vport *port_iterator;
15561 /* Don't dump messages if we explicitly set log_verbose for the
15562 * physical port or any vport.
15564 if (phba->cfg_log_verbose)
15567 spin_lock_irqsave(&phba->port_list_lock, iflags);
15568 list_for_each_entry(port_iterator, &phba->port_list, listentry) {
15569 if (port_iterator->load_flag & FC_UNLOADING)
15571 if (scsi_host_get(lpfc_shost_from_vport(port_iterator))) {
15572 if (port_iterator->cfg_log_verbose)
15573 log_verbose = true;
15575 scsi_host_put(lpfc_shost_from_vport(port_iterator));
15578 spin_unlock_irqrestore(&phba->port_list_lock,
15584 spin_unlock_irqrestore(&phba->port_list_lock, iflags);
15586 if (atomic_cmpxchg(&phba->dbg_log_dmping, 0, 1) != 0)
15589 start_idx = (unsigned int)atomic_read(&phba->dbg_log_idx) % DBG_LOG_SZ;
15590 dbg_cnt = (unsigned int)atomic_read(&phba->dbg_log_cnt);
15593 temp_idx = start_idx;
15594 if (dbg_cnt >= DBG_LOG_SZ) {
15595 dbg_cnt = DBG_LOG_SZ;
15598 if ((start_idx + dbg_cnt) > (DBG_LOG_SZ - 1)) {
15599 temp_idx = (start_idx + dbg_cnt) % DBG_LOG_SZ;
15601 if (start_idx < dbg_cnt)
15602 start_idx = DBG_LOG_SZ - (dbg_cnt - start_idx);
15604 start_idx -= dbg_cnt;
15607 dev_info(&phba->pcidev->dev, "start %d end %d cnt %d\n",
15608 start_idx, temp_idx, dbg_cnt);
15610 for (i = 0; i < dbg_cnt; i++) {
15611 if ((start_idx + i) < DBG_LOG_SZ)
15612 temp_idx = (start_idx + i) % DBG_LOG_SZ;
15615 rem_nsec = do_div(phba->dbg_log[temp_idx].t_ns, NSEC_PER_SEC);
15616 dev_info(&phba->pcidev->dev, "%d: [%5lu.%06lu] %s",
15618 (unsigned long)phba->dbg_log[temp_idx].t_ns,
15620 phba->dbg_log[temp_idx].log);
15623 atomic_set(&phba->dbg_log_cnt, 0);
15624 atomic_set(&phba->dbg_log_dmping, 0);
15628 void lpfc_dbg_print(struct lpfc_hba *phba, const char *fmt, ...)
15632 int dbg_dmping = atomic_read(&phba->dbg_log_dmping);
15633 struct va_format vaf;
15636 va_start(args, fmt);
15637 if (unlikely(dbg_dmping)) {
15640 dev_info(&phba->pcidev->dev, "%pV", &vaf);
15644 idx = (unsigned int)atomic_fetch_add(1, &phba->dbg_log_idx) %
15647 atomic_inc(&phba->dbg_log_cnt);
15649 vscnprintf(phba->dbg_log[idx].log,
15650 sizeof(phba->dbg_log[idx].log), fmt, args);
15653 phba->dbg_log[idx].t_ns = local_clock();
15657 * lpfc_exit - lpfc module removal routine
15659 * This routine is invoked when the lpfc module is removed from the kernel.
15660 * The special kernel macro module_exit() is used to indicate the role of
15661 * this routine to the kernel as lpfc module exit point.
15666 misc_deregister(&lpfc_mgmt_dev);
15667 pci_unregister_driver(&lpfc_driver);
15668 cpuhp_remove_multi_state(lpfc_cpuhp_state);
15669 fc_release_transport(lpfc_transport_template);
15670 fc_release_transport(lpfc_vport_transport_template);
15671 idr_destroy(&lpfc_hba_index);
15674 module_init(lpfc_init);
15675 module_exit(lpfc_exit);
15676 MODULE_LICENSE("GPL");
15677 MODULE_DESCRIPTION(LPFC_MODULE_DESC);
15678 MODULE_AUTHOR("Broadcom");
15679 MODULE_VERSION("0:" LPFC_DRIVER_VERSION);