mfd: wm8350-i2c: Make sure the i2c regmap functions are compiled
[linux/fpc-iii.git] / drivers / scsi / lpfc / lpfc_init.c
blob3b73eea729467f6f529d480312854b30cb8cff73
1 /*******************************************************************
2 * This file is part of the Emulex Linux Device Driver for *
3 * Fibre Channel Host Bus Adapters. *
4 * Copyright (C) 2004-2013 Emulex. All rights reserved. *
5 * EMULEX and SLI are trademarks of Emulex. *
6 * www.emulex.com *
7 * Portions Copyright (C) 2004-2005 Christoph Hellwig *
8 * *
9 * This program is free software; you can redistribute it and/or *
10 * modify it under the terms of version 2 of the GNU General *
11 * Public License as published by the Free Software Foundation. *
12 * This program is distributed in the hope that it will be useful. *
13 * ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND *
14 * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, *
15 * FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE *
16 * DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD *
17 * TO BE LEGALLY INVALID. See the GNU General Public License for *
18 * more details, a copy of which can be found in the file COPYING *
19 * included with this package. *
20 *******************************************************************/
22 #include <linux/blkdev.h>
23 #include <linux/delay.h>
24 #include <linux/dma-mapping.h>
25 #include <linux/idr.h>
26 #include <linux/interrupt.h>
27 #include <linux/module.h>
28 #include <linux/kthread.h>
29 #include <linux/pci.h>
30 #include <linux/spinlock.h>
31 #include <linux/ctype.h>
32 #include <linux/aer.h>
33 #include <linux/slab.h>
34 #include <linux/firmware.h>
35 #include <linux/miscdevice.h>
36 #include <linux/percpu.h>
38 #include <scsi/scsi.h>
39 #include <scsi/scsi_device.h>
40 #include <scsi/scsi_host.h>
41 #include <scsi/scsi_transport_fc.h>
43 #include "lpfc_hw4.h"
44 #include "lpfc_hw.h"
45 #include "lpfc_sli.h"
46 #include "lpfc_sli4.h"
47 #include "lpfc_nl.h"
48 #include "lpfc_disc.h"
49 #include "lpfc_scsi.h"
50 #include "lpfc.h"
51 #include "lpfc_logmsg.h"
52 #include "lpfc_crtn.h"
53 #include "lpfc_vport.h"
54 #include "lpfc_version.h"
56 char *_dump_buf_data;
57 unsigned long _dump_buf_data_order;
58 char *_dump_buf_dif;
59 unsigned long _dump_buf_dif_order;
60 spinlock_t _dump_buf_lock;
62 /* Used when mapping IRQ vectors in a driver centric manner */
63 uint16_t *lpfc_used_cpu;
64 uint32_t lpfc_present_cpu;
66 static void lpfc_get_hba_model_desc(struct lpfc_hba *, uint8_t *, uint8_t *);
67 static int lpfc_post_rcv_buf(struct lpfc_hba *);
68 static int lpfc_sli4_queue_verify(struct lpfc_hba *);
69 static int lpfc_create_bootstrap_mbox(struct lpfc_hba *);
70 static int lpfc_setup_endian_order(struct lpfc_hba *);
71 static void lpfc_destroy_bootstrap_mbox(struct lpfc_hba *);
72 static void lpfc_free_els_sgl_list(struct lpfc_hba *);
73 static void lpfc_init_sgl_list(struct lpfc_hba *);
74 static int lpfc_init_active_sgl_array(struct lpfc_hba *);
75 static void lpfc_free_active_sgl(struct lpfc_hba *);
76 static int lpfc_hba_down_post_s3(struct lpfc_hba *phba);
77 static int lpfc_hba_down_post_s4(struct lpfc_hba *phba);
78 static int lpfc_sli4_cq_event_pool_create(struct lpfc_hba *);
79 static void lpfc_sli4_cq_event_pool_destroy(struct lpfc_hba *);
80 static void lpfc_sli4_cq_event_release_all(struct lpfc_hba *);
81 static void lpfc_sli4_disable_intr(struct lpfc_hba *);
82 static uint32_t lpfc_sli4_enable_intr(struct lpfc_hba *, uint32_t);
84 static struct scsi_transport_template *lpfc_transport_template = NULL;
85 static struct scsi_transport_template *lpfc_vport_transport_template = NULL;
86 static DEFINE_IDR(lpfc_hba_index);
88 /**
89 * lpfc_config_port_prep - Perform lpfc initialization prior to config port
90 * @phba: pointer to lpfc hba data structure.
92 * This routine will do LPFC initialization prior to issuing the CONFIG_PORT
93 * mailbox command. It retrieves the revision information from the HBA and
94 * collects the Vital Product Data (VPD) about the HBA for preparing the
95 * configuration of the HBA.
97 * Return codes:
98 * 0 - success.
99 * -ERESTART - requests the SLI layer to reset the HBA and try again.
100 * Any other value - indicates an error.
103 lpfc_config_port_prep(struct lpfc_hba *phba)
105 lpfc_vpd_t *vp = &phba->vpd;
106 int i = 0, rc;
107 LPFC_MBOXQ_t *pmb;
108 MAILBOX_t *mb;
109 char *lpfc_vpd_data = NULL;
110 uint16_t offset = 0;
111 static char licensed[56] =
112 "key unlock for use with gnu public licensed code only\0";
113 static int init_key = 1;
115 pmb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
116 if (!pmb) {
117 phba->link_state = LPFC_HBA_ERROR;
118 return -ENOMEM;
121 mb = &pmb->u.mb;
122 phba->link_state = LPFC_INIT_MBX_CMDS;
124 if (lpfc_is_LC_HBA(phba->pcidev->device)) {
125 if (init_key) {
126 uint32_t *ptext = (uint32_t *) licensed;
128 for (i = 0; i < 56; i += sizeof (uint32_t), ptext++)
129 *ptext = cpu_to_be32(*ptext);
130 init_key = 0;
133 lpfc_read_nv(phba, pmb);
134 memset((char*)mb->un.varRDnvp.rsvd3, 0,
135 sizeof (mb->un.varRDnvp.rsvd3));
136 memcpy((char*)mb->un.varRDnvp.rsvd3, licensed,
137 sizeof (licensed));
139 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
141 if (rc != MBX_SUCCESS) {
142 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX,
143 "0324 Config Port initialization "
144 "error, mbxCmd x%x READ_NVPARM, "
145 "mbxStatus x%x\n",
146 mb->mbxCommand, mb->mbxStatus);
147 mempool_free(pmb, phba->mbox_mem_pool);
148 return -ERESTART;
150 memcpy(phba->wwnn, (char *)mb->un.varRDnvp.nodename,
151 sizeof(phba->wwnn));
152 memcpy(phba->wwpn, (char *)mb->un.varRDnvp.portname,
153 sizeof(phba->wwpn));
156 phba->sli3_options = 0x0;
158 /* Setup and issue mailbox READ REV command */
159 lpfc_read_rev(phba, pmb);
160 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
161 if (rc != MBX_SUCCESS) {
162 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
163 "0439 Adapter failed to init, mbxCmd x%x "
164 "READ_REV, mbxStatus x%x\n",
165 mb->mbxCommand, mb->mbxStatus);
166 mempool_free( pmb, phba->mbox_mem_pool);
167 return -ERESTART;
172 * The value of rr must be 1 since the driver set the cv field to 1.
173 * This setting requires the FW to set all revision fields.
175 if (mb->un.varRdRev.rr == 0) {
176 vp->rev.rBit = 0;
177 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
178 "0440 Adapter failed to init, READ_REV has "
179 "missing revision information.\n");
180 mempool_free(pmb, phba->mbox_mem_pool);
181 return -ERESTART;
184 if (phba->sli_rev == 3 && !mb->un.varRdRev.v3rsp) {
185 mempool_free(pmb, phba->mbox_mem_pool);
186 return -EINVAL;
189 /* Save information as VPD data */
190 vp->rev.rBit = 1;
191 memcpy(&vp->sli3Feat, &mb->un.varRdRev.sli3Feat, sizeof(uint32_t));
192 vp->rev.sli1FwRev = mb->un.varRdRev.sli1FwRev;
193 memcpy(vp->rev.sli1FwName, (char*) mb->un.varRdRev.sli1FwName, 16);
194 vp->rev.sli2FwRev = mb->un.varRdRev.sli2FwRev;
195 memcpy(vp->rev.sli2FwName, (char *) mb->un.varRdRev.sli2FwName, 16);
196 vp->rev.biuRev = mb->un.varRdRev.biuRev;
197 vp->rev.smRev = mb->un.varRdRev.smRev;
198 vp->rev.smFwRev = mb->un.varRdRev.un.smFwRev;
199 vp->rev.endecRev = mb->un.varRdRev.endecRev;
200 vp->rev.fcphHigh = mb->un.varRdRev.fcphHigh;
201 vp->rev.fcphLow = mb->un.varRdRev.fcphLow;
202 vp->rev.feaLevelHigh = mb->un.varRdRev.feaLevelHigh;
203 vp->rev.feaLevelLow = mb->un.varRdRev.feaLevelLow;
204 vp->rev.postKernRev = mb->un.varRdRev.postKernRev;
205 vp->rev.opFwRev = mb->un.varRdRev.opFwRev;
207 /* If the sli feature level is less then 9, we must
208 * tear down all RPIs and VPIs on link down if NPIV
209 * is enabled.
211 if (vp->rev.feaLevelHigh < 9)
212 phba->sli3_options |= LPFC_SLI3_VPORT_TEARDOWN;
214 if (lpfc_is_LC_HBA(phba->pcidev->device))
215 memcpy(phba->RandomData, (char *)&mb->un.varWords[24],
216 sizeof (phba->RandomData));
218 /* Get adapter VPD information */
219 lpfc_vpd_data = kmalloc(DMP_VPD_SIZE, GFP_KERNEL);
220 if (!lpfc_vpd_data)
221 goto out_free_mbox;
222 do {
223 lpfc_dump_mem(phba, pmb, offset, DMP_REGION_VPD);
224 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
226 if (rc != MBX_SUCCESS) {
227 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
228 "0441 VPD not present on adapter, "
229 "mbxCmd x%x DUMP VPD, mbxStatus x%x\n",
230 mb->mbxCommand, mb->mbxStatus);
231 mb->un.varDmp.word_cnt = 0;
233 /* dump mem may return a zero when finished or we got a
234 * mailbox error, either way we are done.
236 if (mb->un.varDmp.word_cnt == 0)
237 break;
238 if (mb->un.varDmp.word_cnt > DMP_VPD_SIZE - offset)
239 mb->un.varDmp.word_cnt = DMP_VPD_SIZE - offset;
240 lpfc_sli_pcimem_bcopy(((uint8_t *)mb) + DMP_RSP_OFFSET,
241 lpfc_vpd_data + offset,
242 mb->un.varDmp.word_cnt);
243 offset += mb->un.varDmp.word_cnt;
244 } while (mb->un.varDmp.word_cnt && offset < DMP_VPD_SIZE);
245 lpfc_parse_vpd(phba, lpfc_vpd_data, offset);
247 kfree(lpfc_vpd_data);
248 out_free_mbox:
249 mempool_free(pmb, phba->mbox_mem_pool);
250 return 0;
254 * lpfc_config_async_cmpl - Completion handler for config async event mbox cmd
255 * @phba: pointer to lpfc hba data structure.
256 * @pmboxq: pointer to the driver internal queue element for mailbox command.
258 * This is the completion handler for driver's configuring asynchronous event
259 * mailbox command to the device. If the mailbox command returns successfully,
260 * it will set internal async event support flag to 1; otherwise, it will
261 * set internal async event support flag to 0.
263 static void
264 lpfc_config_async_cmpl(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmboxq)
266 if (pmboxq->u.mb.mbxStatus == MBX_SUCCESS)
267 phba->temp_sensor_support = 1;
268 else
269 phba->temp_sensor_support = 0;
270 mempool_free(pmboxq, phba->mbox_mem_pool);
271 return;
275 * lpfc_dump_wakeup_param_cmpl - dump memory mailbox command completion handler
276 * @phba: pointer to lpfc hba data structure.
277 * @pmboxq: pointer to the driver internal queue element for mailbox command.
279 * This is the completion handler for dump mailbox command for getting
280 * wake up parameters. When this command complete, the response contain
281 * Option rom version of the HBA. This function translate the version number
282 * into a human readable string and store it in OptionROMVersion.
284 static void
285 lpfc_dump_wakeup_param_cmpl(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmboxq)
287 struct prog_id *prg;
288 uint32_t prog_id_word;
289 char dist = ' ';
290 /* character array used for decoding dist type. */
291 char dist_char[] = "nabx";
293 if (pmboxq->u.mb.mbxStatus != MBX_SUCCESS) {
294 mempool_free(pmboxq, phba->mbox_mem_pool);
295 return;
298 prg = (struct prog_id *) &prog_id_word;
300 /* word 7 contain option rom version */
301 prog_id_word = pmboxq->u.mb.un.varWords[7];
303 /* Decode the Option rom version word to a readable string */
304 if (prg->dist < 4)
305 dist = dist_char[prg->dist];
307 if ((prg->dist == 3) && (prg->num == 0))
308 sprintf(phba->OptionROMVersion, "%d.%d%d",
309 prg->ver, prg->rev, prg->lev);
310 else
311 sprintf(phba->OptionROMVersion, "%d.%d%d%c%d",
312 prg->ver, prg->rev, prg->lev,
313 dist, prg->num);
314 mempool_free(pmboxq, phba->mbox_mem_pool);
315 return;
319 * lpfc_update_vport_wwn - Updates the fc_nodename, fc_portname,
320 * cfg_soft_wwnn, cfg_soft_wwpn
321 * @vport: pointer to lpfc vport data structure.
324 * Return codes
325 * None.
327 void
328 lpfc_update_vport_wwn(struct lpfc_vport *vport)
330 /* If the soft name exists then update it using the service params */
331 if (vport->phba->cfg_soft_wwnn)
332 u64_to_wwn(vport->phba->cfg_soft_wwnn,
333 vport->fc_sparam.nodeName.u.wwn);
334 if (vport->phba->cfg_soft_wwpn)
335 u64_to_wwn(vport->phba->cfg_soft_wwpn,
336 vport->fc_sparam.portName.u.wwn);
339 * If the name is empty or there exists a soft name
340 * then copy the service params name, otherwise use the fc name
342 if (vport->fc_nodename.u.wwn[0] == 0 || vport->phba->cfg_soft_wwnn)
343 memcpy(&vport->fc_nodename, &vport->fc_sparam.nodeName,
344 sizeof(struct lpfc_name));
345 else
346 memcpy(&vport->fc_sparam.nodeName, &vport->fc_nodename,
347 sizeof(struct lpfc_name));
349 if (vport->fc_portname.u.wwn[0] == 0 || vport->phba->cfg_soft_wwpn)
350 memcpy(&vport->fc_portname, &vport->fc_sparam.portName,
351 sizeof(struct lpfc_name));
352 else
353 memcpy(&vport->fc_sparam.portName, &vport->fc_portname,
354 sizeof(struct lpfc_name));
358 * lpfc_config_port_post - Perform lpfc initialization after config port
359 * @phba: pointer to lpfc hba data structure.
361 * This routine will do LPFC initialization after the CONFIG_PORT mailbox
362 * command call. It performs all internal resource and state setups on the
363 * port: post IOCB buffers, enable appropriate host interrupt attentions,
364 * ELS ring timers, etc.
366 * Return codes
367 * 0 - success.
368 * Any other value - error.
371 lpfc_config_port_post(struct lpfc_hba *phba)
373 struct lpfc_vport *vport = phba->pport;
374 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
375 LPFC_MBOXQ_t *pmb;
376 MAILBOX_t *mb;
377 struct lpfc_dmabuf *mp;
378 struct lpfc_sli *psli = &phba->sli;
379 uint32_t status, timeout;
380 int i, j;
381 int rc;
383 spin_lock_irq(&phba->hbalock);
385 * If the Config port completed correctly the HBA is not
386 * over heated any more.
388 if (phba->over_temp_state == HBA_OVER_TEMP)
389 phba->over_temp_state = HBA_NORMAL_TEMP;
390 spin_unlock_irq(&phba->hbalock);
392 pmb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
393 if (!pmb) {
394 phba->link_state = LPFC_HBA_ERROR;
395 return -ENOMEM;
397 mb = &pmb->u.mb;
399 /* Get login parameters for NID. */
400 rc = lpfc_read_sparam(phba, pmb, 0);
401 if (rc) {
402 mempool_free(pmb, phba->mbox_mem_pool);
403 return -ENOMEM;
406 pmb->vport = vport;
407 if (lpfc_sli_issue_mbox(phba, pmb, MBX_POLL) != MBX_SUCCESS) {
408 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
409 "0448 Adapter failed init, mbxCmd x%x "
410 "READ_SPARM mbxStatus x%x\n",
411 mb->mbxCommand, mb->mbxStatus);
412 phba->link_state = LPFC_HBA_ERROR;
413 mp = (struct lpfc_dmabuf *) pmb->context1;
414 mempool_free(pmb, phba->mbox_mem_pool);
415 lpfc_mbuf_free(phba, mp->virt, mp->phys);
416 kfree(mp);
417 return -EIO;
420 mp = (struct lpfc_dmabuf *) pmb->context1;
422 memcpy(&vport->fc_sparam, mp->virt, sizeof (struct serv_parm));
423 lpfc_mbuf_free(phba, mp->virt, mp->phys);
424 kfree(mp);
425 pmb->context1 = NULL;
426 lpfc_update_vport_wwn(vport);
428 /* Update the fc_host data structures with new wwn. */
429 fc_host_node_name(shost) = wwn_to_u64(vport->fc_nodename.u.wwn);
430 fc_host_port_name(shost) = wwn_to_u64(vport->fc_portname.u.wwn);
431 fc_host_max_npiv_vports(shost) = phba->max_vpi;
433 /* If no serial number in VPD data, use low 6 bytes of WWNN */
434 /* This should be consolidated into parse_vpd ? - mr */
435 if (phba->SerialNumber[0] == 0) {
436 uint8_t *outptr;
438 outptr = &vport->fc_nodename.u.s.IEEE[0];
439 for (i = 0; i < 12; i++) {
440 status = *outptr++;
441 j = ((status & 0xf0) >> 4);
442 if (j <= 9)
443 phba->SerialNumber[i] =
444 (char)((uint8_t) 0x30 + (uint8_t) j);
445 else
446 phba->SerialNumber[i] =
447 (char)((uint8_t) 0x61 + (uint8_t) (j - 10));
448 i++;
449 j = (status & 0xf);
450 if (j <= 9)
451 phba->SerialNumber[i] =
452 (char)((uint8_t) 0x30 + (uint8_t) j);
453 else
454 phba->SerialNumber[i] =
455 (char)((uint8_t) 0x61 + (uint8_t) (j - 10));
459 lpfc_read_config(phba, pmb);
460 pmb->vport = vport;
461 if (lpfc_sli_issue_mbox(phba, pmb, MBX_POLL) != MBX_SUCCESS) {
462 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
463 "0453 Adapter failed to init, mbxCmd x%x "
464 "READ_CONFIG, mbxStatus x%x\n",
465 mb->mbxCommand, mb->mbxStatus);
466 phba->link_state = LPFC_HBA_ERROR;
467 mempool_free( pmb, phba->mbox_mem_pool);
468 return -EIO;
471 /* Check if the port is disabled */
472 lpfc_sli_read_link_ste(phba);
474 /* Reset the DFT_HBA_Q_DEPTH to the max xri */
475 i = (mb->un.varRdConfig.max_xri + 1);
476 if (phba->cfg_hba_queue_depth > i) {
477 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
478 "3359 HBA queue depth changed from %d to %d\n",
479 phba->cfg_hba_queue_depth, i);
480 phba->cfg_hba_queue_depth = i;
483 /* Reset the DFT_LUN_Q_DEPTH to (max xri >> 3) */
484 i = (mb->un.varRdConfig.max_xri >> 3);
485 if (phba->pport->cfg_lun_queue_depth > i) {
486 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
487 "3360 LUN queue depth changed from %d to %d\n",
488 phba->pport->cfg_lun_queue_depth, i);
489 phba->pport->cfg_lun_queue_depth = i;
492 phba->lmt = mb->un.varRdConfig.lmt;
494 /* Get the default values for Model Name and Description */
495 lpfc_get_hba_model_desc(phba, phba->ModelName, phba->ModelDesc);
497 phba->link_state = LPFC_LINK_DOWN;
499 /* Only process IOCBs on ELS ring till hba_state is READY */
500 if (psli->ring[psli->extra_ring].sli.sli3.cmdringaddr)
501 psli->ring[psli->extra_ring].flag |= LPFC_STOP_IOCB_EVENT;
502 if (psli->ring[psli->fcp_ring].sli.sli3.cmdringaddr)
503 psli->ring[psli->fcp_ring].flag |= LPFC_STOP_IOCB_EVENT;
504 if (psli->ring[psli->next_ring].sli.sli3.cmdringaddr)
505 psli->ring[psli->next_ring].flag |= LPFC_STOP_IOCB_EVENT;
507 /* Post receive buffers for desired rings */
508 if (phba->sli_rev != 3)
509 lpfc_post_rcv_buf(phba);
512 * Configure HBA MSI-X attention conditions to messages if MSI-X mode
514 if (phba->intr_type == MSIX) {
515 rc = lpfc_config_msi(phba, pmb);
516 if (rc) {
517 mempool_free(pmb, phba->mbox_mem_pool);
518 return -EIO;
520 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
521 if (rc != MBX_SUCCESS) {
522 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX,
523 "0352 Config MSI mailbox command "
524 "failed, mbxCmd x%x, mbxStatus x%x\n",
525 pmb->u.mb.mbxCommand,
526 pmb->u.mb.mbxStatus);
527 mempool_free(pmb, phba->mbox_mem_pool);
528 return -EIO;
532 spin_lock_irq(&phba->hbalock);
533 /* Initialize ERATT handling flag */
534 phba->hba_flag &= ~HBA_ERATT_HANDLED;
536 /* Enable appropriate host interrupts */
537 if (lpfc_readl(phba->HCregaddr, &status)) {
538 spin_unlock_irq(&phba->hbalock);
539 return -EIO;
541 status |= HC_MBINT_ENA | HC_ERINT_ENA | HC_LAINT_ENA;
542 if (psli->num_rings > 0)
543 status |= HC_R0INT_ENA;
544 if (psli->num_rings > 1)
545 status |= HC_R1INT_ENA;
546 if (psli->num_rings > 2)
547 status |= HC_R2INT_ENA;
548 if (psli->num_rings > 3)
549 status |= HC_R3INT_ENA;
551 if ((phba->cfg_poll & ENABLE_FCP_RING_POLLING) &&
552 (phba->cfg_poll & DISABLE_FCP_RING_INT))
553 status &= ~(HC_R0INT_ENA);
555 writel(status, phba->HCregaddr);
556 readl(phba->HCregaddr); /* flush */
557 spin_unlock_irq(&phba->hbalock);
559 /* Set up ring-0 (ELS) timer */
560 timeout = phba->fc_ratov * 2;
561 mod_timer(&vport->els_tmofunc,
562 jiffies + msecs_to_jiffies(1000 * timeout));
563 /* Set up heart beat (HB) timer */
564 mod_timer(&phba->hb_tmofunc,
565 jiffies + msecs_to_jiffies(1000 * LPFC_HB_MBOX_INTERVAL));
566 phba->hb_outstanding = 0;
567 phba->last_completion_time = jiffies;
568 /* Set up error attention (ERATT) polling timer */
569 mod_timer(&phba->eratt_poll,
570 jiffies + msecs_to_jiffies(1000 * LPFC_ERATT_POLL_INTERVAL));
572 if (phba->hba_flag & LINK_DISABLED) {
573 lpfc_printf_log(phba,
574 KERN_ERR, LOG_INIT,
575 "2598 Adapter Link is disabled.\n");
576 lpfc_down_link(phba, pmb);
577 pmb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
578 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
579 if ((rc != MBX_SUCCESS) && (rc != MBX_BUSY)) {
580 lpfc_printf_log(phba,
581 KERN_ERR, LOG_INIT,
582 "2599 Adapter failed to issue DOWN_LINK"
583 " mbox command rc 0x%x\n", rc);
585 mempool_free(pmb, phba->mbox_mem_pool);
586 return -EIO;
588 } else if (phba->cfg_suppress_link_up == LPFC_INITIALIZE_LINK) {
589 mempool_free(pmb, phba->mbox_mem_pool);
590 rc = phba->lpfc_hba_init_link(phba, MBX_NOWAIT);
591 if (rc)
592 return rc;
594 /* MBOX buffer will be freed in mbox compl */
595 pmb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
596 if (!pmb) {
597 phba->link_state = LPFC_HBA_ERROR;
598 return -ENOMEM;
601 lpfc_config_async(phba, pmb, LPFC_ELS_RING);
602 pmb->mbox_cmpl = lpfc_config_async_cmpl;
603 pmb->vport = phba->pport;
604 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
606 if ((rc != MBX_BUSY) && (rc != MBX_SUCCESS)) {
607 lpfc_printf_log(phba,
608 KERN_ERR,
609 LOG_INIT,
610 "0456 Adapter failed to issue "
611 "ASYNCEVT_ENABLE mbox status x%x\n",
612 rc);
613 mempool_free(pmb, phba->mbox_mem_pool);
616 /* Get Option rom version */
617 pmb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
618 if (!pmb) {
619 phba->link_state = LPFC_HBA_ERROR;
620 return -ENOMEM;
623 lpfc_dump_wakeup_param(phba, pmb);
624 pmb->mbox_cmpl = lpfc_dump_wakeup_param_cmpl;
625 pmb->vport = phba->pport;
626 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
628 if ((rc != MBX_BUSY) && (rc != MBX_SUCCESS)) {
629 lpfc_printf_log(phba, KERN_ERR, LOG_INIT, "0435 Adapter failed "
630 "to get Option ROM version status x%x\n", rc);
631 mempool_free(pmb, phba->mbox_mem_pool);
634 return 0;
638 * lpfc_hba_init_link - Initialize the FC link
639 * @phba: pointer to lpfc hba data structure.
640 * @flag: mailbox command issue mode - either MBX_POLL or MBX_NOWAIT
642 * This routine will issue the INIT_LINK mailbox command call.
643 * It is available to other drivers through the lpfc_hba data
644 * structure for use as a delayed link up mechanism with the
645 * module parameter lpfc_suppress_link_up.
647 * Return code
648 * 0 - success
649 * Any other value - error
652 lpfc_hba_init_link(struct lpfc_hba *phba, uint32_t flag)
654 return lpfc_hba_init_link_fc_topology(phba, phba->cfg_topology, flag);
658 * lpfc_hba_init_link_fc_topology - Initialize FC link with desired topology
659 * @phba: pointer to lpfc hba data structure.
660 * @fc_topology: desired fc topology.
661 * @flag: mailbox command issue mode - either MBX_POLL or MBX_NOWAIT
663 * This routine will issue the INIT_LINK mailbox command call.
664 * It is available to other drivers through the lpfc_hba data
665 * structure for use as a delayed link up mechanism with the
666 * module parameter lpfc_suppress_link_up.
668 * Return code
669 * 0 - success
670 * Any other value - error
673 lpfc_hba_init_link_fc_topology(struct lpfc_hba *phba, uint32_t fc_topology,
674 uint32_t flag)
676 struct lpfc_vport *vport = phba->pport;
677 LPFC_MBOXQ_t *pmb;
678 MAILBOX_t *mb;
679 int rc;
681 pmb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
682 if (!pmb) {
683 phba->link_state = LPFC_HBA_ERROR;
684 return -ENOMEM;
686 mb = &pmb->u.mb;
687 pmb->vport = vport;
689 if ((phba->cfg_link_speed > LPFC_USER_LINK_SPEED_MAX) ||
690 ((phba->cfg_link_speed == LPFC_USER_LINK_SPEED_1G) &&
691 !(phba->lmt & LMT_1Gb)) ||
692 ((phba->cfg_link_speed == LPFC_USER_LINK_SPEED_2G) &&
693 !(phba->lmt & LMT_2Gb)) ||
694 ((phba->cfg_link_speed == LPFC_USER_LINK_SPEED_4G) &&
695 !(phba->lmt & LMT_4Gb)) ||
696 ((phba->cfg_link_speed == LPFC_USER_LINK_SPEED_8G) &&
697 !(phba->lmt & LMT_8Gb)) ||
698 ((phba->cfg_link_speed == LPFC_USER_LINK_SPEED_10G) &&
699 !(phba->lmt & LMT_10Gb)) ||
700 ((phba->cfg_link_speed == LPFC_USER_LINK_SPEED_16G) &&
701 !(phba->lmt & LMT_16Gb))) {
702 /* Reset link speed to auto */
703 lpfc_printf_log(phba, KERN_ERR, LOG_LINK_EVENT,
704 "1302 Invalid speed for this board:%d "
705 "Reset link speed to auto.\n",
706 phba->cfg_link_speed);
707 phba->cfg_link_speed = LPFC_USER_LINK_SPEED_AUTO;
709 lpfc_init_link(phba, pmb, fc_topology, phba->cfg_link_speed);
710 pmb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
711 if (phba->sli_rev < LPFC_SLI_REV4)
712 lpfc_set_loopback_flag(phba);
713 rc = lpfc_sli_issue_mbox(phba, pmb, flag);
714 if ((rc != MBX_BUSY) && (rc != MBX_SUCCESS)) {
715 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
716 "0498 Adapter failed to init, mbxCmd x%x "
717 "INIT_LINK, mbxStatus x%x\n",
718 mb->mbxCommand, mb->mbxStatus);
719 if (phba->sli_rev <= LPFC_SLI_REV3) {
720 /* Clear all interrupt enable conditions */
721 writel(0, phba->HCregaddr);
722 readl(phba->HCregaddr); /* flush */
723 /* Clear all pending interrupts */
724 writel(0xffffffff, phba->HAregaddr);
725 readl(phba->HAregaddr); /* flush */
727 phba->link_state = LPFC_HBA_ERROR;
728 if (rc != MBX_BUSY || flag == MBX_POLL)
729 mempool_free(pmb, phba->mbox_mem_pool);
730 return -EIO;
732 phba->cfg_suppress_link_up = LPFC_INITIALIZE_LINK;
733 if (flag == MBX_POLL)
734 mempool_free(pmb, phba->mbox_mem_pool);
736 return 0;
740 * lpfc_hba_down_link - this routine downs the FC link
741 * @phba: pointer to lpfc hba data structure.
742 * @flag: mailbox command issue mode - either MBX_POLL or MBX_NOWAIT
744 * This routine will issue the DOWN_LINK mailbox command call.
745 * It is available to other drivers through the lpfc_hba data
746 * structure for use to stop the link.
748 * Return code
749 * 0 - success
750 * Any other value - error
753 lpfc_hba_down_link(struct lpfc_hba *phba, uint32_t flag)
755 LPFC_MBOXQ_t *pmb;
756 int rc;
758 pmb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
759 if (!pmb) {
760 phba->link_state = LPFC_HBA_ERROR;
761 return -ENOMEM;
764 lpfc_printf_log(phba,
765 KERN_ERR, LOG_INIT,
766 "0491 Adapter Link is disabled.\n");
767 lpfc_down_link(phba, pmb);
768 pmb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
769 rc = lpfc_sli_issue_mbox(phba, pmb, flag);
770 if ((rc != MBX_SUCCESS) && (rc != MBX_BUSY)) {
771 lpfc_printf_log(phba,
772 KERN_ERR, LOG_INIT,
773 "2522 Adapter failed to issue DOWN_LINK"
774 " mbox command rc 0x%x\n", rc);
776 mempool_free(pmb, phba->mbox_mem_pool);
777 return -EIO;
779 if (flag == MBX_POLL)
780 mempool_free(pmb, phba->mbox_mem_pool);
782 return 0;
786 * lpfc_hba_down_prep - Perform lpfc uninitialization prior to HBA reset
787 * @phba: pointer to lpfc HBA data structure.
789 * This routine will do LPFC uninitialization before the HBA is reset when
790 * bringing down the SLI Layer.
792 * Return codes
793 * 0 - success.
794 * Any other value - error.
797 lpfc_hba_down_prep(struct lpfc_hba *phba)
799 struct lpfc_vport **vports;
800 int i;
802 if (phba->sli_rev <= LPFC_SLI_REV3) {
803 /* Disable interrupts */
804 writel(0, phba->HCregaddr);
805 readl(phba->HCregaddr); /* flush */
808 if (phba->pport->load_flag & FC_UNLOADING)
809 lpfc_cleanup_discovery_resources(phba->pport);
810 else {
811 vports = lpfc_create_vport_work_array(phba);
812 if (vports != NULL)
813 for (i = 0; i <= phba->max_vports &&
814 vports[i] != NULL; i++)
815 lpfc_cleanup_discovery_resources(vports[i]);
816 lpfc_destroy_vport_work_array(phba, vports);
818 return 0;
822 * lpfc_hba_down_post_s3 - Perform lpfc uninitialization after HBA reset
823 * @phba: pointer to lpfc HBA data structure.
825 * This routine will do uninitialization after the HBA is reset when bring
826 * down the SLI Layer.
828 * Return codes
829 * 0 - success.
830 * Any other value - error.
832 static int
833 lpfc_hba_down_post_s3(struct lpfc_hba *phba)
835 struct lpfc_sli *psli = &phba->sli;
836 struct lpfc_sli_ring *pring;
837 struct lpfc_dmabuf *mp, *next_mp;
838 LIST_HEAD(completions);
839 int i;
841 if (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED)
842 lpfc_sli_hbqbuf_free_all(phba);
843 else {
844 /* Cleanup preposted buffers on the ELS ring */
845 pring = &psli->ring[LPFC_ELS_RING];
846 list_for_each_entry_safe(mp, next_mp, &pring->postbufq, list) {
847 list_del(&mp->list);
848 pring->postbufq_cnt--;
849 lpfc_mbuf_free(phba, mp->virt, mp->phys);
850 kfree(mp);
854 spin_lock_irq(&phba->hbalock);
855 for (i = 0; i < psli->num_rings; i++) {
856 pring = &psli->ring[i];
858 /* At this point in time the HBA is either reset or DOA. Either
859 * way, nothing should be on txcmplq as it will NEVER complete.
861 list_splice_init(&pring->txcmplq, &completions);
862 spin_unlock_irq(&phba->hbalock);
864 /* Cancel all the IOCBs from the completions list */
865 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
866 IOERR_SLI_ABORTED);
868 lpfc_sli_abort_iocb_ring(phba, pring);
869 spin_lock_irq(&phba->hbalock);
871 spin_unlock_irq(&phba->hbalock);
873 return 0;
877 * lpfc_hba_down_post_s4 - Perform lpfc uninitialization after HBA reset
878 * @phba: pointer to lpfc HBA data structure.
880 * This routine will do uninitialization after the HBA is reset when bring
881 * down the SLI Layer.
883 * Return codes
884 * 0 - success.
885 * Any other value - error.
887 static int
888 lpfc_hba_down_post_s4(struct lpfc_hba *phba)
890 struct lpfc_scsi_buf *psb, *psb_next;
891 LIST_HEAD(aborts);
892 int ret;
893 unsigned long iflag = 0;
894 struct lpfc_sglq *sglq_entry = NULL;
896 ret = lpfc_hba_down_post_s3(phba);
897 if (ret)
898 return ret;
899 /* At this point in time the HBA is either reset or DOA. Either
900 * way, nothing should be on lpfc_abts_els_sgl_list, it needs to be
901 * on the lpfc_sgl_list so that it can either be freed if the
902 * driver is unloading or reposted if the driver is restarting
903 * the port.
905 spin_lock_irq(&phba->hbalock); /* required for lpfc_sgl_list and */
906 /* scsl_buf_list */
907 /* abts_sgl_list_lock required because worker thread uses this
908 * list.
910 spin_lock(&phba->sli4_hba.abts_sgl_list_lock);
911 list_for_each_entry(sglq_entry,
912 &phba->sli4_hba.lpfc_abts_els_sgl_list, list)
913 sglq_entry->state = SGL_FREED;
915 list_splice_init(&phba->sli4_hba.lpfc_abts_els_sgl_list,
916 &phba->sli4_hba.lpfc_sgl_list);
917 spin_unlock(&phba->sli4_hba.abts_sgl_list_lock);
918 /* abts_scsi_buf_list_lock required because worker thread uses this
919 * list.
921 spin_lock(&phba->sli4_hba.abts_scsi_buf_list_lock);
922 list_splice_init(&phba->sli4_hba.lpfc_abts_scsi_buf_list,
923 &aborts);
924 spin_unlock(&phba->sli4_hba.abts_scsi_buf_list_lock);
925 spin_unlock_irq(&phba->hbalock);
927 list_for_each_entry_safe(psb, psb_next, &aborts, list) {
928 psb->pCmd = NULL;
929 psb->status = IOSTAT_SUCCESS;
931 spin_lock_irqsave(&phba->scsi_buf_list_put_lock, iflag);
932 list_splice(&aborts, &phba->lpfc_scsi_buf_list_put);
933 spin_unlock_irqrestore(&phba->scsi_buf_list_put_lock, iflag);
934 return 0;
938 * lpfc_hba_down_post - Wrapper func for hba down post routine
939 * @phba: pointer to lpfc HBA data structure.
941 * This routine wraps the actual SLI3 or SLI4 routine for performing
942 * uninitialization after the HBA is reset when bring down the SLI Layer.
944 * Return codes
945 * 0 - success.
946 * Any other value - error.
949 lpfc_hba_down_post(struct lpfc_hba *phba)
951 return (*phba->lpfc_hba_down_post)(phba);
955 * lpfc_hb_timeout - The HBA-timer timeout handler
956 * @ptr: unsigned long holds the pointer to lpfc hba data structure.
958 * This is the HBA-timer timeout handler registered to the lpfc driver. When
959 * this timer fires, a HBA timeout event shall be posted to the lpfc driver
960 * work-port-events bitmap and the worker thread is notified. This timeout
961 * event will be used by the worker thread to invoke the actual timeout
962 * handler routine, lpfc_hb_timeout_handler. Any periodical operations will
963 * be performed in the timeout handler and the HBA timeout event bit shall
964 * be cleared by the worker thread after it has taken the event bitmap out.
966 static void
967 lpfc_hb_timeout(unsigned long ptr)
969 struct lpfc_hba *phba;
970 uint32_t tmo_posted;
971 unsigned long iflag;
973 phba = (struct lpfc_hba *)ptr;
975 /* Check for heart beat timeout conditions */
976 spin_lock_irqsave(&phba->pport->work_port_lock, iflag);
977 tmo_posted = phba->pport->work_port_events & WORKER_HB_TMO;
978 if (!tmo_posted)
979 phba->pport->work_port_events |= WORKER_HB_TMO;
980 spin_unlock_irqrestore(&phba->pport->work_port_lock, iflag);
982 /* Tell the worker thread there is work to do */
983 if (!tmo_posted)
984 lpfc_worker_wake_up(phba);
985 return;
989 * lpfc_rrq_timeout - The RRQ-timer timeout handler
990 * @ptr: unsigned long holds the pointer to lpfc hba data structure.
992 * This is the RRQ-timer timeout handler registered to the lpfc driver. When
993 * this timer fires, a RRQ timeout event shall be posted to the lpfc driver
994 * work-port-events bitmap and the worker thread is notified. This timeout
995 * event will be used by the worker thread to invoke the actual timeout
996 * handler routine, lpfc_rrq_handler. Any periodical operations will
997 * be performed in the timeout handler and the RRQ timeout event bit shall
998 * be cleared by the worker thread after it has taken the event bitmap out.
1000 static void
1001 lpfc_rrq_timeout(unsigned long ptr)
1003 struct lpfc_hba *phba;
1004 unsigned long iflag;
1006 phba = (struct lpfc_hba *)ptr;
1007 spin_lock_irqsave(&phba->pport->work_port_lock, iflag);
1008 phba->hba_flag |= HBA_RRQ_ACTIVE;
1009 spin_unlock_irqrestore(&phba->pport->work_port_lock, iflag);
1010 lpfc_worker_wake_up(phba);
1014 * lpfc_hb_mbox_cmpl - The lpfc heart-beat mailbox command callback function
1015 * @phba: pointer to lpfc hba data structure.
1016 * @pmboxq: pointer to the driver internal queue element for mailbox command.
1018 * This is the callback function to the lpfc heart-beat mailbox command.
1019 * If configured, the lpfc driver issues the heart-beat mailbox command to
1020 * the HBA every LPFC_HB_MBOX_INTERVAL (current 5) seconds. At the time the
1021 * heart-beat mailbox command is issued, the driver shall set up heart-beat
1022 * timeout timer to LPFC_HB_MBOX_TIMEOUT (current 30) seconds and marks
1023 * heart-beat outstanding state. Once the mailbox command comes back and
1024 * no error conditions detected, the heart-beat mailbox command timer is
1025 * reset to LPFC_HB_MBOX_INTERVAL seconds and the heart-beat outstanding
1026 * state is cleared for the next heart-beat. If the timer expired with the
1027 * heart-beat outstanding state set, the driver will put the HBA offline.
1029 static void
1030 lpfc_hb_mbox_cmpl(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmboxq)
1032 unsigned long drvr_flag;
1034 spin_lock_irqsave(&phba->hbalock, drvr_flag);
1035 phba->hb_outstanding = 0;
1036 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
1038 /* Check and reset heart-beat timer is necessary */
1039 mempool_free(pmboxq, phba->mbox_mem_pool);
1040 if (!(phba->pport->fc_flag & FC_OFFLINE_MODE) &&
1041 !(phba->link_state == LPFC_HBA_ERROR) &&
1042 !(phba->pport->load_flag & FC_UNLOADING))
1043 mod_timer(&phba->hb_tmofunc,
1044 jiffies +
1045 msecs_to_jiffies(1000 * LPFC_HB_MBOX_INTERVAL));
1046 return;
1050 * lpfc_hb_timeout_handler - The HBA-timer timeout handler
1051 * @phba: pointer to lpfc hba data structure.
1053 * This is the actual HBA-timer timeout handler to be invoked by the worker
1054 * thread whenever the HBA timer fired and HBA-timeout event posted. This
1055 * handler performs any periodic operations needed for the device. If such
1056 * periodic event has already been attended to either in the interrupt handler
1057 * or by processing slow-ring or fast-ring events within the HBA-timer
1058 * timeout window (LPFC_HB_MBOX_INTERVAL), this handler just simply resets
1059 * the timer for the next timeout period. If lpfc heart-beat mailbox command
1060 * is configured and there is no heart-beat mailbox command outstanding, a
1061 * heart-beat mailbox is issued and timer set properly. Otherwise, if there
1062 * has been a heart-beat mailbox command outstanding, the HBA shall be put
1063 * to offline.
1065 void
1066 lpfc_hb_timeout_handler(struct lpfc_hba *phba)
1068 struct lpfc_vport **vports;
1069 LPFC_MBOXQ_t *pmboxq;
1070 struct lpfc_dmabuf *buf_ptr;
1071 int retval, i;
1072 struct lpfc_sli *psli = &phba->sli;
1073 LIST_HEAD(completions);
1075 vports = lpfc_create_vport_work_array(phba);
1076 if (vports != NULL)
1077 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++)
1078 lpfc_rcv_seq_check_edtov(vports[i]);
1079 lpfc_destroy_vport_work_array(phba, vports);
1081 if ((phba->link_state == LPFC_HBA_ERROR) ||
1082 (phba->pport->load_flag & FC_UNLOADING) ||
1083 (phba->pport->fc_flag & FC_OFFLINE_MODE))
1084 return;
1086 spin_lock_irq(&phba->pport->work_port_lock);
1088 if (time_after(phba->last_completion_time +
1089 msecs_to_jiffies(1000 * LPFC_HB_MBOX_INTERVAL),
1090 jiffies)) {
1091 spin_unlock_irq(&phba->pport->work_port_lock);
1092 if (!phba->hb_outstanding)
1093 mod_timer(&phba->hb_tmofunc,
1094 jiffies +
1095 msecs_to_jiffies(1000 * LPFC_HB_MBOX_INTERVAL));
1096 else
1097 mod_timer(&phba->hb_tmofunc,
1098 jiffies +
1099 msecs_to_jiffies(1000 * LPFC_HB_MBOX_TIMEOUT));
1100 return;
1102 spin_unlock_irq(&phba->pport->work_port_lock);
1104 if (phba->elsbuf_cnt &&
1105 (phba->elsbuf_cnt == phba->elsbuf_prev_cnt)) {
1106 spin_lock_irq(&phba->hbalock);
1107 list_splice_init(&phba->elsbuf, &completions);
1108 phba->elsbuf_cnt = 0;
1109 phba->elsbuf_prev_cnt = 0;
1110 spin_unlock_irq(&phba->hbalock);
1112 while (!list_empty(&completions)) {
1113 list_remove_head(&completions, buf_ptr,
1114 struct lpfc_dmabuf, list);
1115 lpfc_mbuf_free(phba, buf_ptr->virt, buf_ptr->phys);
1116 kfree(buf_ptr);
1119 phba->elsbuf_prev_cnt = phba->elsbuf_cnt;
1121 /* If there is no heart beat outstanding, issue a heartbeat command */
1122 if (phba->cfg_enable_hba_heartbeat) {
1123 if (!phba->hb_outstanding) {
1124 if ((!(psli->sli_flag & LPFC_SLI_MBOX_ACTIVE)) &&
1125 (list_empty(&psli->mboxq))) {
1126 pmboxq = mempool_alloc(phba->mbox_mem_pool,
1127 GFP_KERNEL);
1128 if (!pmboxq) {
1129 mod_timer(&phba->hb_tmofunc,
1130 jiffies +
1131 msecs_to_jiffies(1000 *
1132 LPFC_HB_MBOX_INTERVAL));
1133 return;
1136 lpfc_heart_beat(phba, pmboxq);
1137 pmboxq->mbox_cmpl = lpfc_hb_mbox_cmpl;
1138 pmboxq->vport = phba->pport;
1139 retval = lpfc_sli_issue_mbox(phba, pmboxq,
1140 MBX_NOWAIT);
1142 if (retval != MBX_BUSY &&
1143 retval != MBX_SUCCESS) {
1144 mempool_free(pmboxq,
1145 phba->mbox_mem_pool);
1146 mod_timer(&phba->hb_tmofunc,
1147 jiffies +
1148 msecs_to_jiffies(1000 *
1149 LPFC_HB_MBOX_INTERVAL));
1150 return;
1152 phba->skipped_hb = 0;
1153 phba->hb_outstanding = 1;
1154 } else if (time_before_eq(phba->last_completion_time,
1155 phba->skipped_hb)) {
1156 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
1157 "2857 Last completion time not "
1158 " updated in %d ms\n",
1159 jiffies_to_msecs(jiffies
1160 - phba->last_completion_time));
1161 } else
1162 phba->skipped_hb = jiffies;
1164 mod_timer(&phba->hb_tmofunc,
1165 jiffies +
1166 msecs_to_jiffies(1000 * LPFC_HB_MBOX_TIMEOUT));
1167 return;
1168 } else {
1170 * If heart beat timeout called with hb_outstanding set
1171 * we need to give the hb mailbox cmd a chance to
1172 * complete or TMO.
1174 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
1175 "0459 Adapter heartbeat still out"
1176 "standing:last compl time was %d ms.\n",
1177 jiffies_to_msecs(jiffies
1178 - phba->last_completion_time));
1179 mod_timer(&phba->hb_tmofunc,
1180 jiffies +
1181 msecs_to_jiffies(1000 * LPFC_HB_MBOX_TIMEOUT));
1187 * lpfc_offline_eratt - Bring lpfc offline on hardware error attention
1188 * @phba: pointer to lpfc hba data structure.
1190 * This routine is called to bring the HBA offline when HBA hardware error
1191 * other than Port Error 6 has been detected.
1193 static void
1194 lpfc_offline_eratt(struct lpfc_hba *phba)
1196 struct lpfc_sli *psli = &phba->sli;
1198 spin_lock_irq(&phba->hbalock);
1199 psli->sli_flag &= ~LPFC_SLI_ACTIVE;
1200 spin_unlock_irq(&phba->hbalock);
1201 lpfc_offline_prep(phba, LPFC_MBX_NO_WAIT);
1203 lpfc_offline(phba);
1204 lpfc_reset_barrier(phba);
1205 spin_lock_irq(&phba->hbalock);
1206 lpfc_sli_brdreset(phba);
1207 spin_unlock_irq(&phba->hbalock);
1208 lpfc_hba_down_post(phba);
1209 lpfc_sli_brdready(phba, HS_MBRDY);
1210 lpfc_unblock_mgmt_io(phba);
1211 phba->link_state = LPFC_HBA_ERROR;
1212 return;
1216 * lpfc_sli4_offline_eratt - Bring lpfc offline on SLI4 hardware error attention
1217 * @phba: pointer to lpfc hba data structure.
1219 * This routine is called to bring a SLI4 HBA offline when HBA hardware error
1220 * other than Port Error 6 has been detected.
1222 void
1223 lpfc_sli4_offline_eratt(struct lpfc_hba *phba)
1225 lpfc_offline_prep(phba, LPFC_MBX_NO_WAIT);
1226 lpfc_offline(phba);
1227 lpfc_sli4_brdreset(phba);
1228 lpfc_hba_down_post(phba);
1229 lpfc_sli4_post_status_check(phba);
1230 lpfc_unblock_mgmt_io(phba);
1231 phba->link_state = LPFC_HBA_ERROR;
1235 * lpfc_handle_deferred_eratt - The HBA hardware deferred error handler
1236 * @phba: pointer to lpfc hba data structure.
1238 * This routine is invoked to handle the deferred HBA hardware error
1239 * conditions. This type of error is indicated by HBA by setting ER1
1240 * and another ER bit in the host status register. The driver will
1241 * wait until the ER1 bit clears before handling the error condition.
1243 static void
1244 lpfc_handle_deferred_eratt(struct lpfc_hba *phba)
1246 uint32_t old_host_status = phba->work_hs;
1247 struct lpfc_sli_ring *pring;
1248 struct lpfc_sli *psli = &phba->sli;
1250 /* If the pci channel is offline, ignore possible errors,
1251 * since we cannot communicate with the pci card anyway.
1253 if (pci_channel_offline(phba->pcidev)) {
1254 spin_lock_irq(&phba->hbalock);
1255 phba->hba_flag &= ~DEFER_ERATT;
1256 spin_unlock_irq(&phba->hbalock);
1257 return;
1260 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
1261 "0479 Deferred Adapter Hardware Error "
1262 "Data: x%x x%x x%x\n",
1263 phba->work_hs,
1264 phba->work_status[0], phba->work_status[1]);
1266 spin_lock_irq(&phba->hbalock);
1267 psli->sli_flag &= ~LPFC_SLI_ACTIVE;
1268 spin_unlock_irq(&phba->hbalock);
1272 * Firmware stops when it triggred erratt. That could cause the I/Os
1273 * dropped by the firmware. Error iocb (I/O) on txcmplq and let the
1274 * SCSI layer retry it after re-establishing link.
1276 pring = &psli->ring[psli->fcp_ring];
1277 lpfc_sli_abort_iocb_ring(phba, pring);
1280 * There was a firmware error. Take the hba offline and then
1281 * attempt to restart it.
1283 lpfc_offline_prep(phba, LPFC_MBX_WAIT);
1284 lpfc_offline(phba);
1286 /* Wait for the ER1 bit to clear.*/
1287 while (phba->work_hs & HS_FFER1) {
1288 msleep(100);
1289 if (lpfc_readl(phba->HSregaddr, &phba->work_hs)) {
1290 phba->work_hs = UNPLUG_ERR ;
1291 break;
1293 /* If driver is unloading let the worker thread continue */
1294 if (phba->pport->load_flag & FC_UNLOADING) {
1295 phba->work_hs = 0;
1296 break;
1301 * This is to ptrotect against a race condition in which
1302 * first write to the host attention register clear the
1303 * host status register.
1305 if ((!phba->work_hs) && (!(phba->pport->load_flag & FC_UNLOADING)))
1306 phba->work_hs = old_host_status & ~HS_FFER1;
1308 spin_lock_irq(&phba->hbalock);
1309 phba->hba_flag &= ~DEFER_ERATT;
1310 spin_unlock_irq(&phba->hbalock);
1311 phba->work_status[0] = readl(phba->MBslimaddr + 0xa8);
1312 phba->work_status[1] = readl(phba->MBslimaddr + 0xac);
1315 static void
1316 lpfc_board_errevt_to_mgmt(struct lpfc_hba *phba)
1318 struct lpfc_board_event_header board_event;
1319 struct Scsi_Host *shost;
1321 board_event.event_type = FC_REG_BOARD_EVENT;
1322 board_event.subcategory = LPFC_EVENT_PORTINTERR;
1323 shost = lpfc_shost_from_vport(phba->pport);
1324 fc_host_post_vendor_event(shost, fc_get_event_number(),
1325 sizeof(board_event),
1326 (char *) &board_event,
1327 LPFC_NL_VENDOR_ID);
1331 * lpfc_handle_eratt_s3 - The SLI3 HBA hardware error handler
1332 * @phba: pointer to lpfc hba data structure.
1334 * This routine is invoked to handle the following HBA hardware error
1335 * conditions:
1336 * 1 - HBA error attention interrupt
1337 * 2 - DMA ring index out of range
1338 * 3 - Mailbox command came back as unknown
1340 static void
1341 lpfc_handle_eratt_s3(struct lpfc_hba *phba)
1343 struct lpfc_vport *vport = phba->pport;
1344 struct lpfc_sli *psli = &phba->sli;
1345 struct lpfc_sli_ring *pring;
1346 uint32_t event_data;
1347 unsigned long temperature;
1348 struct temp_event temp_event_data;
1349 struct Scsi_Host *shost;
1351 /* If the pci channel is offline, ignore possible errors,
1352 * since we cannot communicate with the pci card anyway.
1354 if (pci_channel_offline(phba->pcidev)) {
1355 spin_lock_irq(&phba->hbalock);
1356 phba->hba_flag &= ~DEFER_ERATT;
1357 spin_unlock_irq(&phba->hbalock);
1358 return;
1361 /* If resets are disabled then leave the HBA alone and return */
1362 if (!phba->cfg_enable_hba_reset)
1363 return;
1365 /* Send an internal error event to mgmt application */
1366 lpfc_board_errevt_to_mgmt(phba);
1368 if (phba->hba_flag & DEFER_ERATT)
1369 lpfc_handle_deferred_eratt(phba);
1371 if ((phba->work_hs & HS_FFER6) || (phba->work_hs & HS_FFER8)) {
1372 if (phba->work_hs & HS_FFER6)
1373 /* Re-establishing Link */
1374 lpfc_printf_log(phba, KERN_INFO, LOG_LINK_EVENT,
1375 "1301 Re-establishing Link "
1376 "Data: x%x x%x x%x\n",
1377 phba->work_hs, phba->work_status[0],
1378 phba->work_status[1]);
1379 if (phba->work_hs & HS_FFER8)
1380 /* Device Zeroization */
1381 lpfc_printf_log(phba, KERN_INFO, LOG_LINK_EVENT,
1382 "2861 Host Authentication device "
1383 "zeroization Data:x%x x%x x%x\n",
1384 phba->work_hs, phba->work_status[0],
1385 phba->work_status[1]);
1387 spin_lock_irq(&phba->hbalock);
1388 psli->sli_flag &= ~LPFC_SLI_ACTIVE;
1389 spin_unlock_irq(&phba->hbalock);
1392 * Firmware stops when it triggled erratt with HS_FFER6.
1393 * That could cause the I/Os dropped by the firmware.
1394 * Error iocb (I/O) on txcmplq and let the SCSI layer
1395 * retry it after re-establishing link.
1397 pring = &psli->ring[psli->fcp_ring];
1398 lpfc_sli_abort_iocb_ring(phba, pring);
1401 * There was a firmware error. Take the hba offline and then
1402 * attempt to restart it.
1404 lpfc_offline_prep(phba, LPFC_MBX_NO_WAIT);
1405 lpfc_offline(phba);
1406 lpfc_sli_brdrestart(phba);
1407 if (lpfc_online(phba) == 0) { /* Initialize the HBA */
1408 lpfc_unblock_mgmt_io(phba);
1409 return;
1411 lpfc_unblock_mgmt_io(phba);
1412 } else if (phba->work_hs & HS_CRIT_TEMP) {
1413 temperature = readl(phba->MBslimaddr + TEMPERATURE_OFFSET);
1414 temp_event_data.event_type = FC_REG_TEMPERATURE_EVENT;
1415 temp_event_data.event_code = LPFC_CRIT_TEMP;
1416 temp_event_data.data = (uint32_t)temperature;
1418 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
1419 "0406 Adapter maximum temperature exceeded "
1420 "(%ld), taking this port offline "
1421 "Data: x%x x%x x%x\n",
1422 temperature, phba->work_hs,
1423 phba->work_status[0], phba->work_status[1]);
1425 shost = lpfc_shost_from_vport(phba->pport);
1426 fc_host_post_vendor_event(shost, fc_get_event_number(),
1427 sizeof(temp_event_data),
1428 (char *) &temp_event_data,
1429 SCSI_NL_VID_TYPE_PCI
1430 | PCI_VENDOR_ID_EMULEX);
1432 spin_lock_irq(&phba->hbalock);
1433 phba->over_temp_state = HBA_OVER_TEMP;
1434 spin_unlock_irq(&phba->hbalock);
1435 lpfc_offline_eratt(phba);
1437 } else {
1438 /* The if clause above forces this code path when the status
1439 * failure is a value other than FFER6. Do not call the offline
1440 * twice. This is the adapter hardware error path.
1442 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
1443 "0457 Adapter Hardware Error "
1444 "Data: x%x x%x x%x\n",
1445 phba->work_hs,
1446 phba->work_status[0], phba->work_status[1]);
1448 event_data = FC_REG_DUMP_EVENT;
1449 shost = lpfc_shost_from_vport(vport);
1450 fc_host_post_vendor_event(shost, fc_get_event_number(),
1451 sizeof(event_data), (char *) &event_data,
1452 SCSI_NL_VID_TYPE_PCI | PCI_VENDOR_ID_EMULEX);
1454 lpfc_offline_eratt(phba);
1456 return;
1460 * lpfc_sli4_port_sta_fn_reset - The SLI4 function reset due to port status reg
1461 * @phba: pointer to lpfc hba data structure.
1462 * @mbx_action: flag for mailbox shutdown action.
1464 * This routine is invoked to perform an SLI4 port PCI function reset in
1465 * response to port status register polling attention. It waits for port
1466 * status register (ERR, RDY, RN) bits before proceeding with function reset.
1467 * During this process, interrupt vectors are freed and later requested
1468 * for handling possible port resource change.
1470 static int
1471 lpfc_sli4_port_sta_fn_reset(struct lpfc_hba *phba, int mbx_action)
1473 int rc;
1474 uint32_t intr_mode;
1477 * On error status condition, driver need to wait for port
1478 * ready before performing reset.
1480 rc = lpfc_sli4_pdev_status_reg_wait(phba);
1481 if (!rc) {
1482 /* need reset: attempt for port recovery */
1483 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
1484 "2887 Reset Needed: Attempting Port "
1485 "Recovery...\n");
1486 lpfc_offline_prep(phba, mbx_action);
1487 lpfc_offline(phba);
1488 /* release interrupt for possible resource change */
1489 lpfc_sli4_disable_intr(phba);
1490 lpfc_sli_brdrestart(phba);
1491 /* request and enable interrupt */
1492 intr_mode = lpfc_sli4_enable_intr(phba, phba->intr_mode);
1493 if (intr_mode == LPFC_INTR_ERROR) {
1494 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
1495 "3175 Failed to enable interrupt\n");
1496 return -EIO;
1497 } else {
1498 phba->intr_mode = intr_mode;
1500 rc = lpfc_online(phba);
1501 if (rc == 0)
1502 lpfc_unblock_mgmt_io(phba);
1504 return rc;
1508 * lpfc_handle_eratt_s4 - The SLI4 HBA hardware error handler
1509 * @phba: pointer to lpfc hba data structure.
1511 * This routine is invoked to handle the SLI4 HBA hardware error attention
1512 * conditions.
1514 static void
1515 lpfc_handle_eratt_s4(struct lpfc_hba *phba)
1517 struct lpfc_vport *vport = phba->pport;
1518 uint32_t event_data;
1519 struct Scsi_Host *shost;
1520 uint32_t if_type;
1521 struct lpfc_register portstat_reg = {0};
1522 uint32_t reg_err1, reg_err2;
1523 uint32_t uerrlo_reg, uemasklo_reg;
1524 uint32_t pci_rd_rc1, pci_rd_rc2;
1525 int rc;
1527 /* If the pci channel is offline, ignore possible errors, since
1528 * we cannot communicate with the pci card anyway.
1530 if (pci_channel_offline(phba->pcidev))
1531 return;
1532 /* If resets are disabled then leave the HBA alone and return */
1533 if (!phba->cfg_enable_hba_reset)
1534 return;
1536 if_type = bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf);
1537 switch (if_type) {
1538 case LPFC_SLI_INTF_IF_TYPE_0:
1539 pci_rd_rc1 = lpfc_readl(
1540 phba->sli4_hba.u.if_type0.UERRLOregaddr,
1541 &uerrlo_reg);
1542 pci_rd_rc2 = lpfc_readl(
1543 phba->sli4_hba.u.if_type0.UEMASKLOregaddr,
1544 &uemasklo_reg);
1545 /* consider PCI bus read error as pci_channel_offline */
1546 if (pci_rd_rc1 == -EIO && pci_rd_rc2 == -EIO)
1547 return;
1548 lpfc_sli4_offline_eratt(phba);
1549 break;
1550 case LPFC_SLI_INTF_IF_TYPE_2:
1551 pci_rd_rc1 = lpfc_readl(
1552 phba->sli4_hba.u.if_type2.STATUSregaddr,
1553 &portstat_reg.word0);
1554 /* consider PCI bus read error as pci_channel_offline */
1555 if (pci_rd_rc1 == -EIO) {
1556 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
1557 "3151 PCI bus read access failure: x%x\n",
1558 readl(phba->sli4_hba.u.if_type2.STATUSregaddr));
1559 return;
1561 reg_err1 = readl(phba->sli4_hba.u.if_type2.ERR1regaddr);
1562 reg_err2 = readl(phba->sli4_hba.u.if_type2.ERR2regaddr);
1563 if (bf_get(lpfc_sliport_status_oti, &portstat_reg)) {
1564 /* TODO: Register for Overtemp async events. */
1565 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
1566 "2889 Port Overtemperature event, "
1567 "taking port offline\n");
1568 spin_lock_irq(&phba->hbalock);
1569 phba->over_temp_state = HBA_OVER_TEMP;
1570 spin_unlock_irq(&phba->hbalock);
1571 lpfc_sli4_offline_eratt(phba);
1572 break;
1574 if (reg_err1 == SLIPORT_ERR1_REG_ERR_CODE_2 &&
1575 reg_err2 == SLIPORT_ERR2_REG_FW_RESTART)
1576 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
1577 "3143 Port Down: Firmware Restarted\n");
1578 else if (reg_err1 == SLIPORT_ERR1_REG_ERR_CODE_2 &&
1579 reg_err2 == SLIPORT_ERR2_REG_FORCED_DUMP)
1580 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
1581 "3144 Port Down: Debug Dump\n");
1582 else if (reg_err1 == SLIPORT_ERR1_REG_ERR_CODE_2 &&
1583 reg_err2 == SLIPORT_ERR2_REG_FUNC_PROVISON)
1584 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
1585 "3145 Port Down: Provisioning\n");
1587 /* Check port status register for function reset */
1588 rc = lpfc_sli4_port_sta_fn_reset(phba, LPFC_MBX_NO_WAIT);
1589 if (rc == 0) {
1590 /* don't report event on forced debug dump */
1591 if (reg_err1 == SLIPORT_ERR1_REG_ERR_CODE_2 &&
1592 reg_err2 == SLIPORT_ERR2_REG_FORCED_DUMP)
1593 return;
1594 else
1595 break;
1597 /* fall through for not able to recover */
1598 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
1599 "3152 Unrecoverable error, bring the port "
1600 "offline\n");
1601 lpfc_sli4_offline_eratt(phba);
1602 break;
1603 case LPFC_SLI_INTF_IF_TYPE_1:
1604 default:
1605 break;
1607 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
1608 "3123 Report dump event to upper layer\n");
1609 /* Send an internal error event to mgmt application */
1610 lpfc_board_errevt_to_mgmt(phba);
1612 event_data = FC_REG_DUMP_EVENT;
1613 shost = lpfc_shost_from_vport(vport);
1614 fc_host_post_vendor_event(shost, fc_get_event_number(),
1615 sizeof(event_data), (char *) &event_data,
1616 SCSI_NL_VID_TYPE_PCI | PCI_VENDOR_ID_EMULEX);
1620 * lpfc_handle_eratt - Wrapper func for handling hba error attention
1621 * @phba: pointer to lpfc HBA data structure.
1623 * This routine wraps the actual SLI3 or SLI4 hba error attention handling
1624 * routine from the API jump table function pointer from the lpfc_hba struct.
1626 * Return codes
1627 * 0 - success.
1628 * Any other value - error.
1630 void
1631 lpfc_handle_eratt(struct lpfc_hba *phba)
1633 (*phba->lpfc_handle_eratt)(phba);
1637 * lpfc_handle_latt - The HBA link event handler
1638 * @phba: pointer to lpfc hba data structure.
1640 * This routine is invoked from the worker thread to handle a HBA host
1641 * attention link event.
1643 void
1644 lpfc_handle_latt(struct lpfc_hba *phba)
1646 struct lpfc_vport *vport = phba->pport;
1647 struct lpfc_sli *psli = &phba->sli;
1648 LPFC_MBOXQ_t *pmb;
1649 volatile uint32_t control;
1650 struct lpfc_dmabuf *mp;
1651 int rc = 0;
1653 pmb = (LPFC_MBOXQ_t *)mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
1654 if (!pmb) {
1655 rc = 1;
1656 goto lpfc_handle_latt_err_exit;
1659 mp = kmalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
1660 if (!mp) {
1661 rc = 2;
1662 goto lpfc_handle_latt_free_pmb;
1665 mp->virt = lpfc_mbuf_alloc(phba, 0, &mp->phys);
1666 if (!mp->virt) {
1667 rc = 3;
1668 goto lpfc_handle_latt_free_mp;
1671 /* Cleanup any outstanding ELS commands */
1672 lpfc_els_flush_all_cmd(phba);
1674 psli->slistat.link_event++;
1675 lpfc_read_topology(phba, pmb, mp);
1676 pmb->mbox_cmpl = lpfc_mbx_cmpl_read_topology;
1677 pmb->vport = vport;
1678 /* Block ELS IOCBs until we have processed this mbox command */
1679 phba->sli.ring[LPFC_ELS_RING].flag |= LPFC_STOP_IOCB_EVENT;
1680 rc = lpfc_sli_issue_mbox (phba, pmb, MBX_NOWAIT);
1681 if (rc == MBX_NOT_FINISHED) {
1682 rc = 4;
1683 goto lpfc_handle_latt_free_mbuf;
1686 /* Clear Link Attention in HA REG */
1687 spin_lock_irq(&phba->hbalock);
1688 writel(HA_LATT, phba->HAregaddr);
1689 readl(phba->HAregaddr); /* flush */
1690 spin_unlock_irq(&phba->hbalock);
1692 return;
1694 lpfc_handle_latt_free_mbuf:
1695 phba->sli.ring[LPFC_ELS_RING].flag &= ~LPFC_STOP_IOCB_EVENT;
1696 lpfc_mbuf_free(phba, mp->virt, mp->phys);
1697 lpfc_handle_latt_free_mp:
1698 kfree(mp);
1699 lpfc_handle_latt_free_pmb:
1700 mempool_free(pmb, phba->mbox_mem_pool);
1701 lpfc_handle_latt_err_exit:
1702 /* Enable Link attention interrupts */
1703 spin_lock_irq(&phba->hbalock);
1704 psli->sli_flag |= LPFC_PROCESS_LA;
1705 control = readl(phba->HCregaddr);
1706 control |= HC_LAINT_ENA;
1707 writel(control, phba->HCregaddr);
1708 readl(phba->HCregaddr); /* flush */
1710 /* Clear Link Attention in HA REG */
1711 writel(HA_LATT, phba->HAregaddr);
1712 readl(phba->HAregaddr); /* flush */
1713 spin_unlock_irq(&phba->hbalock);
1714 lpfc_linkdown(phba);
1715 phba->link_state = LPFC_HBA_ERROR;
1717 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX,
1718 "0300 LATT: Cannot issue READ_LA: Data:%d\n", rc);
1720 return;
1724 * lpfc_parse_vpd - Parse VPD (Vital Product Data)
1725 * @phba: pointer to lpfc hba data structure.
1726 * @vpd: pointer to the vital product data.
1727 * @len: length of the vital product data in bytes.
1729 * This routine parses the Vital Product Data (VPD). The VPD is treated as
1730 * an array of characters. In this routine, the ModelName, ProgramType, and
1731 * ModelDesc, etc. fields of the phba data structure will be populated.
1733 * Return codes
1734 * 0 - pointer to the VPD passed in is NULL
1735 * 1 - success
1738 lpfc_parse_vpd(struct lpfc_hba *phba, uint8_t *vpd, int len)
1740 uint8_t lenlo, lenhi;
1741 int Length;
1742 int i, j;
1743 int finished = 0;
1744 int index = 0;
1746 if (!vpd)
1747 return 0;
1749 /* Vital Product */
1750 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
1751 "0455 Vital Product Data: x%x x%x x%x x%x\n",
1752 (uint32_t) vpd[0], (uint32_t) vpd[1], (uint32_t) vpd[2],
1753 (uint32_t) vpd[3]);
1754 while (!finished && (index < (len - 4))) {
1755 switch (vpd[index]) {
1756 case 0x82:
1757 case 0x91:
1758 index += 1;
1759 lenlo = vpd[index];
1760 index += 1;
1761 lenhi = vpd[index];
1762 index += 1;
1763 i = ((((unsigned short)lenhi) << 8) + lenlo);
1764 index += i;
1765 break;
1766 case 0x90:
1767 index += 1;
1768 lenlo = vpd[index];
1769 index += 1;
1770 lenhi = vpd[index];
1771 index += 1;
1772 Length = ((((unsigned short)lenhi) << 8) + lenlo);
1773 if (Length > len - index)
1774 Length = len - index;
1775 while (Length > 0) {
1776 /* Look for Serial Number */
1777 if ((vpd[index] == 'S') && (vpd[index+1] == 'N')) {
1778 index += 2;
1779 i = vpd[index];
1780 index += 1;
1781 j = 0;
1782 Length -= (3+i);
1783 while(i--) {
1784 phba->SerialNumber[j++] = vpd[index++];
1785 if (j == 31)
1786 break;
1788 phba->SerialNumber[j] = 0;
1789 continue;
1791 else if ((vpd[index] == 'V') && (vpd[index+1] == '1')) {
1792 phba->vpd_flag |= VPD_MODEL_DESC;
1793 index += 2;
1794 i = vpd[index];
1795 index += 1;
1796 j = 0;
1797 Length -= (3+i);
1798 while(i--) {
1799 phba->ModelDesc[j++] = vpd[index++];
1800 if (j == 255)
1801 break;
1803 phba->ModelDesc[j] = 0;
1804 continue;
1806 else if ((vpd[index] == 'V') && (vpd[index+1] == '2')) {
1807 phba->vpd_flag |= VPD_MODEL_NAME;
1808 index += 2;
1809 i = vpd[index];
1810 index += 1;
1811 j = 0;
1812 Length -= (3+i);
1813 while(i--) {
1814 phba->ModelName[j++] = vpd[index++];
1815 if (j == 79)
1816 break;
1818 phba->ModelName[j] = 0;
1819 continue;
1821 else if ((vpd[index] == 'V') && (vpd[index+1] == '3')) {
1822 phba->vpd_flag |= VPD_PROGRAM_TYPE;
1823 index += 2;
1824 i = vpd[index];
1825 index += 1;
1826 j = 0;
1827 Length -= (3+i);
1828 while(i--) {
1829 phba->ProgramType[j++] = vpd[index++];
1830 if (j == 255)
1831 break;
1833 phba->ProgramType[j] = 0;
1834 continue;
1836 else if ((vpd[index] == 'V') && (vpd[index+1] == '4')) {
1837 phba->vpd_flag |= VPD_PORT;
1838 index += 2;
1839 i = vpd[index];
1840 index += 1;
1841 j = 0;
1842 Length -= (3+i);
1843 while(i--) {
1844 if ((phba->sli_rev == LPFC_SLI_REV4) &&
1845 (phba->sli4_hba.pport_name_sta ==
1846 LPFC_SLI4_PPNAME_GET)) {
1847 j++;
1848 index++;
1849 } else
1850 phba->Port[j++] = vpd[index++];
1851 if (j == 19)
1852 break;
1854 if ((phba->sli_rev != LPFC_SLI_REV4) ||
1855 (phba->sli4_hba.pport_name_sta ==
1856 LPFC_SLI4_PPNAME_NON))
1857 phba->Port[j] = 0;
1858 continue;
1860 else {
1861 index += 2;
1862 i = vpd[index];
1863 index += 1;
1864 index += i;
1865 Length -= (3 + i);
1868 finished = 0;
1869 break;
1870 case 0x78:
1871 finished = 1;
1872 break;
1873 default:
1874 index ++;
1875 break;
1879 return(1);
1883 * lpfc_get_hba_model_desc - Retrieve HBA device model name and description
1884 * @phba: pointer to lpfc hba data structure.
1885 * @mdp: pointer to the data structure to hold the derived model name.
1886 * @descp: pointer to the data structure to hold the derived description.
1888 * This routine retrieves HBA's description based on its registered PCI device
1889 * ID. The @descp passed into this function points to an array of 256 chars. It
1890 * shall be returned with the model name, maximum speed, and the host bus type.
1891 * The @mdp passed into this function points to an array of 80 chars. When the
1892 * function returns, the @mdp will be filled with the model name.
1894 static void
1895 lpfc_get_hba_model_desc(struct lpfc_hba *phba, uint8_t *mdp, uint8_t *descp)
1897 lpfc_vpd_t *vp;
1898 uint16_t dev_id = phba->pcidev->device;
1899 int max_speed;
1900 int GE = 0;
1901 int oneConnect = 0; /* default is not a oneConnect */
1902 struct {
1903 char *name;
1904 char *bus;
1905 char *function;
1906 } m = {"<Unknown>", "", ""};
1908 if (mdp && mdp[0] != '\0'
1909 && descp && descp[0] != '\0')
1910 return;
1912 if (phba->lmt & LMT_16Gb)
1913 max_speed = 16;
1914 else if (phba->lmt & LMT_10Gb)
1915 max_speed = 10;
1916 else if (phba->lmt & LMT_8Gb)
1917 max_speed = 8;
1918 else if (phba->lmt & LMT_4Gb)
1919 max_speed = 4;
1920 else if (phba->lmt & LMT_2Gb)
1921 max_speed = 2;
1922 else if (phba->lmt & LMT_1Gb)
1923 max_speed = 1;
1924 else
1925 max_speed = 0;
1927 vp = &phba->vpd;
1929 switch (dev_id) {
1930 case PCI_DEVICE_ID_FIREFLY:
1931 m = (typeof(m)){"LP6000", "PCI", "Fibre Channel Adapter"};
1932 break;
1933 case PCI_DEVICE_ID_SUPERFLY:
1934 if (vp->rev.biuRev >= 1 && vp->rev.biuRev <= 3)
1935 m = (typeof(m)){"LP7000", "PCI",
1936 "Fibre Channel Adapter"};
1937 else
1938 m = (typeof(m)){"LP7000E", "PCI",
1939 "Fibre Channel Adapter"};
1940 break;
1941 case PCI_DEVICE_ID_DRAGONFLY:
1942 m = (typeof(m)){"LP8000", "PCI",
1943 "Fibre Channel Adapter"};
1944 break;
1945 case PCI_DEVICE_ID_CENTAUR:
1946 if (FC_JEDEC_ID(vp->rev.biuRev) == CENTAUR_2G_JEDEC_ID)
1947 m = (typeof(m)){"LP9002", "PCI",
1948 "Fibre Channel Adapter"};
1949 else
1950 m = (typeof(m)){"LP9000", "PCI",
1951 "Fibre Channel Adapter"};
1952 break;
1953 case PCI_DEVICE_ID_RFLY:
1954 m = (typeof(m)){"LP952", "PCI",
1955 "Fibre Channel Adapter"};
1956 break;
1957 case PCI_DEVICE_ID_PEGASUS:
1958 m = (typeof(m)){"LP9802", "PCI-X",
1959 "Fibre Channel Adapter"};
1960 break;
1961 case PCI_DEVICE_ID_THOR:
1962 m = (typeof(m)){"LP10000", "PCI-X",
1963 "Fibre Channel Adapter"};
1964 break;
1965 case PCI_DEVICE_ID_VIPER:
1966 m = (typeof(m)){"LPX1000", "PCI-X",
1967 "Fibre Channel Adapter"};
1968 break;
1969 case PCI_DEVICE_ID_PFLY:
1970 m = (typeof(m)){"LP982", "PCI-X",
1971 "Fibre Channel Adapter"};
1972 break;
1973 case PCI_DEVICE_ID_TFLY:
1974 m = (typeof(m)){"LP1050", "PCI-X",
1975 "Fibre Channel Adapter"};
1976 break;
1977 case PCI_DEVICE_ID_HELIOS:
1978 m = (typeof(m)){"LP11000", "PCI-X2",
1979 "Fibre Channel Adapter"};
1980 break;
1981 case PCI_DEVICE_ID_HELIOS_SCSP:
1982 m = (typeof(m)){"LP11000-SP", "PCI-X2",
1983 "Fibre Channel Adapter"};
1984 break;
1985 case PCI_DEVICE_ID_HELIOS_DCSP:
1986 m = (typeof(m)){"LP11002-SP", "PCI-X2",
1987 "Fibre Channel Adapter"};
1988 break;
1989 case PCI_DEVICE_ID_NEPTUNE:
1990 m = (typeof(m)){"LPe1000", "PCIe", "Fibre Channel Adapter"};
1991 break;
1992 case PCI_DEVICE_ID_NEPTUNE_SCSP:
1993 m = (typeof(m)){"LPe1000-SP", "PCIe", "Fibre Channel Adapter"};
1994 break;
1995 case PCI_DEVICE_ID_NEPTUNE_DCSP:
1996 m = (typeof(m)){"LPe1002-SP", "PCIe", "Fibre Channel Adapter"};
1997 break;
1998 case PCI_DEVICE_ID_BMID:
1999 m = (typeof(m)){"LP1150", "PCI-X2", "Fibre Channel Adapter"};
2000 break;
2001 case PCI_DEVICE_ID_BSMB:
2002 m = (typeof(m)){"LP111", "PCI-X2", "Fibre Channel Adapter"};
2003 break;
2004 case PCI_DEVICE_ID_ZEPHYR:
2005 m = (typeof(m)){"LPe11000", "PCIe", "Fibre Channel Adapter"};
2006 break;
2007 case PCI_DEVICE_ID_ZEPHYR_SCSP:
2008 m = (typeof(m)){"LPe11000", "PCIe", "Fibre Channel Adapter"};
2009 break;
2010 case PCI_DEVICE_ID_ZEPHYR_DCSP:
2011 m = (typeof(m)){"LP2105", "PCIe", "FCoE Adapter"};
2012 GE = 1;
2013 break;
2014 case PCI_DEVICE_ID_ZMID:
2015 m = (typeof(m)){"LPe1150", "PCIe", "Fibre Channel Adapter"};
2016 break;
2017 case PCI_DEVICE_ID_ZSMB:
2018 m = (typeof(m)){"LPe111", "PCIe", "Fibre Channel Adapter"};
2019 break;
2020 case PCI_DEVICE_ID_LP101:
2021 m = (typeof(m)){"LP101", "PCI-X", "Fibre Channel Adapter"};
2022 break;
2023 case PCI_DEVICE_ID_LP10000S:
2024 m = (typeof(m)){"LP10000-S", "PCI", "Fibre Channel Adapter"};
2025 break;
2026 case PCI_DEVICE_ID_LP11000S:
2027 m = (typeof(m)){"LP11000-S", "PCI-X2", "Fibre Channel Adapter"};
2028 break;
2029 case PCI_DEVICE_ID_LPE11000S:
2030 m = (typeof(m)){"LPe11000-S", "PCIe", "Fibre Channel Adapter"};
2031 break;
2032 case PCI_DEVICE_ID_SAT:
2033 m = (typeof(m)){"LPe12000", "PCIe", "Fibre Channel Adapter"};
2034 break;
2035 case PCI_DEVICE_ID_SAT_MID:
2036 m = (typeof(m)){"LPe1250", "PCIe", "Fibre Channel Adapter"};
2037 break;
2038 case PCI_DEVICE_ID_SAT_SMB:
2039 m = (typeof(m)){"LPe121", "PCIe", "Fibre Channel Adapter"};
2040 break;
2041 case PCI_DEVICE_ID_SAT_DCSP:
2042 m = (typeof(m)){"LPe12002-SP", "PCIe", "Fibre Channel Adapter"};
2043 break;
2044 case PCI_DEVICE_ID_SAT_SCSP:
2045 m = (typeof(m)){"LPe12000-SP", "PCIe", "Fibre Channel Adapter"};
2046 break;
2047 case PCI_DEVICE_ID_SAT_S:
2048 m = (typeof(m)){"LPe12000-S", "PCIe", "Fibre Channel Adapter"};
2049 break;
2050 case PCI_DEVICE_ID_HORNET:
2051 m = (typeof(m)){"LP21000", "PCIe", "FCoE Adapter"};
2052 GE = 1;
2053 break;
2054 case PCI_DEVICE_ID_PROTEUS_VF:
2055 m = (typeof(m)){"LPev12000", "PCIe IOV",
2056 "Fibre Channel Adapter"};
2057 break;
2058 case PCI_DEVICE_ID_PROTEUS_PF:
2059 m = (typeof(m)){"LPev12000", "PCIe IOV",
2060 "Fibre Channel Adapter"};
2061 break;
2062 case PCI_DEVICE_ID_PROTEUS_S:
2063 m = (typeof(m)){"LPemv12002-S", "PCIe IOV",
2064 "Fibre Channel Adapter"};
2065 break;
2066 case PCI_DEVICE_ID_TIGERSHARK:
2067 oneConnect = 1;
2068 m = (typeof(m)){"OCe10100", "PCIe", "FCoE"};
2069 break;
2070 case PCI_DEVICE_ID_TOMCAT:
2071 oneConnect = 1;
2072 m = (typeof(m)){"OCe11100", "PCIe", "FCoE"};
2073 break;
2074 case PCI_DEVICE_ID_FALCON:
2075 m = (typeof(m)){"LPSe12002-ML1-E", "PCIe",
2076 "EmulexSecure Fibre"};
2077 break;
2078 case PCI_DEVICE_ID_BALIUS:
2079 m = (typeof(m)){"LPVe12002", "PCIe Shared I/O",
2080 "Fibre Channel Adapter"};
2081 break;
2082 case PCI_DEVICE_ID_LANCER_FC:
2083 case PCI_DEVICE_ID_LANCER_FC_VF:
2084 m = (typeof(m)){"LPe16000", "PCIe", "Fibre Channel Adapter"};
2085 break;
2086 case PCI_DEVICE_ID_LANCER_FCOE:
2087 case PCI_DEVICE_ID_LANCER_FCOE_VF:
2088 oneConnect = 1;
2089 m = (typeof(m)){"OCe15100", "PCIe", "FCoE"};
2090 break;
2091 case PCI_DEVICE_ID_SKYHAWK:
2092 case PCI_DEVICE_ID_SKYHAWK_VF:
2093 oneConnect = 1;
2094 m = (typeof(m)){"OCe14000", "PCIe", "FCoE"};
2095 break;
2096 default:
2097 m = (typeof(m)){"Unknown", "", ""};
2098 break;
2101 if (mdp && mdp[0] == '\0')
2102 snprintf(mdp, 79,"%s", m.name);
2104 * oneConnect hba requires special processing, they are all initiators
2105 * and we put the port number on the end
2107 if (descp && descp[0] == '\0') {
2108 if (oneConnect)
2109 snprintf(descp, 255,
2110 "Emulex OneConnect %s, %s Initiator %s",
2111 m.name, m.function,
2112 phba->Port);
2113 else if (max_speed == 0)
2114 snprintf(descp, 255,
2115 "Emulex %s %s %s ",
2116 m.name, m.bus, m.function);
2117 else
2118 snprintf(descp, 255,
2119 "Emulex %s %d%s %s %s",
2120 m.name, max_speed, (GE) ? "GE" : "Gb",
2121 m.bus, m.function);
2126 * lpfc_post_buffer - Post IOCB(s) with DMA buffer descriptor(s) to a IOCB ring
2127 * @phba: pointer to lpfc hba data structure.
2128 * @pring: pointer to a IOCB ring.
2129 * @cnt: the number of IOCBs to be posted to the IOCB ring.
2131 * This routine posts a given number of IOCBs with the associated DMA buffer
2132 * descriptors specified by the cnt argument to the given IOCB ring.
2134 * Return codes
2135 * The number of IOCBs NOT able to be posted to the IOCB ring.
2138 lpfc_post_buffer(struct lpfc_hba *phba, struct lpfc_sli_ring *pring, int cnt)
2140 IOCB_t *icmd;
2141 struct lpfc_iocbq *iocb;
2142 struct lpfc_dmabuf *mp1, *mp2;
2144 cnt += pring->missbufcnt;
2146 /* While there are buffers to post */
2147 while (cnt > 0) {
2148 /* Allocate buffer for command iocb */
2149 iocb = lpfc_sli_get_iocbq(phba);
2150 if (iocb == NULL) {
2151 pring->missbufcnt = cnt;
2152 return cnt;
2154 icmd = &iocb->iocb;
2156 /* 2 buffers can be posted per command */
2157 /* Allocate buffer to post */
2158 mp1 = kmalloc(sizeof (struct lpfc_dmabuf), GFP_KERNEL);
2159 if (mp1)
2160 mp1->virt = lpfc_mbuf_alloc(phba, MEM_PRI, &mp1->phys);
2161 if (!mp1 || !mp1->virt) {
2162 kfree(mp1);
2163 lpfc_sli_release_iocbq(phba, iocb);
2164 pring->missbufcnt = cnt;
2165 return cnt;
2168 INIT_LIST_HEAD(&mp1->list);
2169 /* Allocate buffer to post */
2170 if (cnt > 1) {
2171 mp2 = kmalloc(sizeof (struct lpfc_dmabuf), GFP_KERNEL);
2172 if (mp2)
2173 mp2->virt = lpfc_mbuf_alloc(phba, MEM_PRI,
2174 &mp2->phys);
2175 if (!mp2 || !mp2->virt) {
2176 kfree(mp2);
2177 lpfc_mbuf_free(phba, mp1->virt, mp1->phys);
2178 kfree(mp1);
2179 lpfc_sli_release_iocbq(phba, iocb);
2180 pring->missbufcnt = cnt;
2181 return cnt;
2184 INIT_LIST_HEAD(&mp2->list);
2185 } else {
2186 mp2 = NULL;
2189 icmd->un.cont64[0].addrHigh = putPaddrHigh(mp1->phys);
2190 icmd->un.cont64[0].addrLow = putPaddrLow(mp1->phys);
2191 icmd->un.cont64[0].tus.f.bdeSize = FCELSSIZE;
2192 icmd->ulpBdeCount = 1;
2193 cnt--;
2194 if (mp2) {
2195 icmd->un.cont64[1].addrHigh = putPaddrHigh(mp2->phys);
2196 icmd->un.cont64[1].addrLow = putPaddrLow(mp2->phys);
2197 icmd->un.cont64[1].tus.f.bdeSize = FCELSSIZE;
2198 cnt--;
2199 icmd->ulpBdeCount = 2;
2202 icmd->ulpCommand = CMD_QUE_RING_BUF64_CN;
2203 icmd->ulpLe = 1;
2205 if (lpfc_sli_issue_iocb(phba, pring->ringno, iocb, 0) ==
2206 IOCB_ERROR) {
2207 lpfc_mbuf_free(phba, mp1->virt, mp1->phys);
2208 kfree(mp1);
2209 cnt++;
2210 if (mp2) {
2211 lpfc_mbuf_free(phba, mp2->virt, mp2->phys);
2212 kfree(mp2);
2213 cnt++;
2215 lpfc_sli_release_iocbq(phba, iocb);
2216 pring->missbufcnt = cnt;
2217 return cnt;
2219 lpfc_sli_ringpostbuf_put(phba, pring, mp1);
2220 if (mp2)
2221 lpfc_sli_ringpostbuf_put(phba, pring, mp2);
2223 pring->missbufcnt = 0;
2224 return 0;
2228 * lpfc_post_rcv_buf - Post the initial receive IOCB buffers to ELS ring
2229 * @phba: pointer to lpfc hba data structure.
2231 * This routine posts initial receive IOCB buffers to the ELS ring. The
2232 * current number of initial IOCB buffers specified by LPFC_BUF_RING0 is
2233 * set to 64 IOCBs.
2235 * Return codes
2236 * 0 - success (currently always success)
2238 static int
2239 lpfc_post_rcv_buf(struct lpfc_hba *phba)
2241 struct lpfc_sli *psli = &phba->sli;
2243 /* Ring 0, ELS / CT buffers */
2244 lpfc_post_buffer(phba, &psli->ring[LPFC_ELS_RING], LPFC_BUF_RING0);
2245 /* Ring 2 - FCP no buffers needed */
2247 return 0;
2250 #define S(N,V) (((V)<<(N))|((V)>>(32-(N))))
2253 * lpfc_sha_init - Set up initial array of hash table entries
2254 * @HashResultPointer: pointer to an array as hash table.
2256 * This routine sets up the initial values to the array of hash table entries
2257 * for the LC HBAs.
2259 static void
2260 lpfc_sha_init(uint32_t * HashResultPointer)
2262 HashResultPointer[0] = 0x67452301;
2263 HashResultPointer[1] = 0xEFCDAB89;
2264 HashResultPointer[2] = 0x98BADCFE;
2265 HashResultPointer[3] = 0x10325476;
2266 HashResultPointer[4] = 0xC3D2E1F0;
2270 * lpfc_sha_iterate - Iterate initial hash table with the working hash table
2271 * @HashResultPointer: pointer to an initial/result hash table.
2272 * @HashWorkingPointer: pointer to an working hash table.
2274 * This routine iterates an initial hash table pointed by @HashResultPointer
2275 * with the values from the working hash table pointeed by @HashWorkingPointer.
2276 * The results are putting back to the initial hash table, returned through
2277 * the @HashResultPointer as the result hash table.
2279 static void
2280 lpfc_sha_iterate(uint32_t * HashResultPointer, uint32_t * HashWorkingPointer)
2282 int t;
2283 uint32_t TEMP;
2284 uint32_t A, B, C, D, E;
2285 t = 16;
2286 do {
2287 HashWorkingPointer[t] =
2288 S(1,
2289 HashWorkingPointer[t - 3] ^ HashWorkingPointer[t -
2290 8] ^
2291 HashWorkingPointer[t - 14] ^ HashWorkingPointer[t - 16]);
2292 } while (++t <= 79);
2293 t = 0;
2294 A = HashResultPointer[0];
2295 B = HashResultPointer[1];
2296 C = HashResultPointer[2];
2297 D = HashResultPointer[3];
2298 E = HashResultPointer[4];
2300 do {
2301 if (t < 20) {
2302 TEMP = ((B & C) | ((~B) & D)) + 0x5A827999;
2303 } else if (t < 40) {
2304 TEMP = (B ^ C ^ D) + 0x6ED9EBA1;
2305 } else if (t < 60) {
2306 TEMP = ((B & C) | (B & D) | (C & D)) + 0x8F1BBCDC;
2307 } else {
2308 TEMP = (B ^ C ^ D) + 0xCA62C1D6;
2310 TEMP += S(5, A) + E + HashWorkingPointer[t];
2311 E = D;
2312 D = C;
2313 C = S(30, B);
2314 B = A;
2315 A = TEMP;
2316 } while (++t <= 79);
2318 HashResultPointer[0] += A;
2319 HashResultPointer[1] += B;
2320 HashResultPointer[2] += C;
2321 HashResultPointer[3] += D;
2322 HashResultPointer[4] += E;
2327 * lpfc_challenge_key - Create challenge key based on WWPN of the HBA
2328 * @RandomChallenge: pointer to the entry of host challenge random number array.
2329 * @HashWorking: pointer to the entry of the working hash array.
2331 * This routine calculates the working hash array referred by @HashWorking
2332 * from the challenge random numbers associated with the host, referred by
2333 * @RandomChallenge. The result is put into the entry of the working hash
2334 * array and returned by reference through @HashWorking.
2336 static void
2337 lpfc_challenge_key(uint32_t * RandomChallenge, uint32_t * HashWorking)
2339 *HashWorking = (*RandomChallenge ^ *HashWorking);
2343 * lpfc_hba_init - Perform special handling for LC HBA initialization
2344 * @phba: pointer to lpfc hba data structure.
2345 * @hbainit: pointer to an array of unsigned 32-bit integers.
2347 * This routine performs the special handling for LC HBA initialization.
2349 void
2350 lpfc_hba_init(struct lpfc_hba *phba, uint32_t *hbainit)
2352 int t;
2353 uint32_t *HashWorking;
2354 uint32_t *pwwnn = (uint32_t *) phba->wwnn;
2356 HashWorking = kcalloc(80, sizeof(uint32_t), GFP_KERNEL);
2357 if (!HashWorking)
2358 return;
2360 HashWorking[0] = HashWorking[78] = *pwwnn++;
2361 HashWorking[1] = HashWorking[79] = *pwwnn;
2363 for (t = 0; t < 7; t++)
2364 lpfc_challenge_key(phba->RandomData + t, HashWorking + t);
2366 lpfc_sha_init(hbainit);
2367 lpfc_sha_iterate(hbainit, HashWorking);
2368 kfree(HashWorking);
2372 * lpfc_cleanup - Performs vport cleanups before deleting a vport
2373 * @vport: pointer to a virtual N_Port data structure.
2375 * This routine performs the necessary cleanups before deleting the @vport.
2376 * It invokes the discovery state machine to perform necessary state
2377 * transitions and to release the ndlps associated with the @vport. Note,
2378 * the physical port is treated as @vport 0.
2380 void
2381 lpfc_cleanup(struct lpfc_vport *vport)
2383 struct lpfc_hba *phba = vport->phba;
2384 struct lpfc_nodelist *ndlp, *next_ndlp;
2385 int i = 0;
2387 if (phba->link_state > LPFC_LINK_DOWN)
2388 lpfc_port_link_failure(vport);
2390 list_for_each_entry_safe(ndlp, next_ndlp, &vport->fc_nodes, nlp_listp) {
2391 if (!NLP_CHK_NODE_ACT(ndlp)) {
2392 ndlp = lpfc_enable_node(vport, ndlp,
2393 NLP_STE_UNUSED_NODE);
2394 if (!ndlp)
2395 continue;
2396 spin_lock_irq(&phba->ndlp_lock);
2397 NLP_SET_FREE_REQ(ndlp);
2398 spin_unlock_irq(&phba->ndlp_lock);
2399 /* Trigger the release of the ndlp memory */
2400 lpfc_nlp_put(ndlp);
2401 continue;
2403 spin_lock_irq(&phba->ndlp_lock);
2404 if (NLP_CHK_FREE_REQ(ndlp)) {
2405 /* The ndlp should not be in memory free mode already */
2406 spin_unlock_irq(&phba->ndlp_lock);
2407 continue;
2408 } else
2409 /* Indicate request for freeing ndlp memory */
2410 NLP_SET_FREE_REQ(ndlp);
2411 spin_unlock_irq(&phba->ndlp_lock);
2413 if (vport->port_type != LPFC_PHYSICAL_PORT &&
2414 ndlp->nlp_DID == Fabric_DID) {
2415 /* Just free up ndlp with Fabric_DID for vports */
2416 lpfc_nlp_put(ndlp);
2417 continue;
2420 /* take care of nodes in unused state before the state
2421 * machine taking action.
2423 if (ndlp->nlp_state == NLP_STE_UNUSED_NODE) {
2424 lpfc_nlp_put(ndlp);
2425 continue;
2428 if (ndlp->nlp_type & NLP_FABRIC)
2429 lpfc_disc_state_machine(vport, ndlp, NULL,
2430 NLP_EVT_DEVICE_RECOVERY);
2432 lpfc_disc_state_machine(vport, ndlp, NULL,
2433 NLP_EVT_DEVICE_RM);
2436 /* At this point, ALL ndlp's should be gone
2437 * because of the previous NLP_EVT_DEVICE_RM.
2438 * Lets wait for this to happen, if needed.
2440 while (!list_empty(&vport->fc_nodes)) {
2441 if (i++ > 3000) {
2442 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
2443 "0233 Nodelist not empty\n");
2444 list_for_each_entry_safe(ndlp, next_ndlp,
2445 &vport->fc_nodes, nlp_listp) {
2446 lpfc_printf_vlog(ndlp->vport, KERN_ERR,
2447 LOG_NODE,
2448 "0282 did:x%x ndlp:x%p "
2449 "usgmap:x%x refcnt:%d\n",
2450 ndlp->nlp_DID, (void *)ndlp,
2451 ndlp->nlp_usg_map,
2452 atomic_read(
2453 &ndlp->kref.refcount));
2455 break;
2458 /* Wait for any activity on ndlps to settle */
2459 msleep(10);
2461 lpfc_cleanup_vports_rrqs(vport, NULL);
2465 * lpfc_stop_vport_timers - Stop all the timers associated with a vport
2466 * @vport: pointer to a virtual N_Port data structure.
2468 * This routine stops all the timers associated with a @vport. This function
2469 * is invoked before disabling or deleting a @vport. Note that the physical
2470 * port is treated as @vport 0.
2472 void
2473 lpfc_stop_vport_timers(struct lpfc_vport *vport)
2475 del_timer_sync(&vport->els_tmofunc);
2476 del_timer_sync(&vport->fc_fdmitmo);
2477 del_timer_sync(&vport->delayed_disc_tmo);
2478 lpfc_can_disctmo(vport);
2479 return;
2483 * __lpfc_sli4_stop_fcf_redisc_wait_timer - Stop FCF rediscovery wait timer
2484 * @phba: pointer to lpfc hba data structure.
2486 * This routine stops the SLI4 FCF rediscover wait timer if it's on. The
2487 * caller of this routine should already hold the host lock.
2489 void
2490 __lpfc_sli4_stop_fcf_redisc_wait_timer(struct lpfc_hba *phba)
2492 /* Clear pending FCF rediscovery wait flag */
2493 phba->fcf.fcf_flag &= ~FCF_REDISC_PEND;
2495 /* Now, try to stop the timer */
2496 del_timer(&phba->fcf.redisc_wait);
2500 * lpfc_sli4_stop_fcf_redisc_wait_timer - Stop FCF rediscovery wait timer
2501 * @phba: pointer to lpfc hba data structure.
2503 * This routine stops the SLI4 FCF rediscover wait timer if it's on. It
2504 * checks whether the FCF rediscovery wait timer is pending with the host
2505 * lock held before proceeding with disabling the timer and clearing the
2506 * wait timer pendig flag.
2508 void
2509 lpfc_sli4_stop_fcf_redisc_wait_timer(struct lpfc_hba *phba)
2511 spin_lock_irq(&phba->hbalock);
2512 if (!(phba->fcf.fcf_flag & FCF_REDISC_PEND)) {
2513 /* FCF rediscovery timer already fired or stopped */
2514 spin_unlock_irq(&phba->hbalock);
2515 return;
2517 __lpfc_sli4_stop_fcf_redisc_wait_timer(phba);
2518 /* Clear failover in progress flags */
2519 phba->fcf.fcf_flag &= ~(FCF_DEAD_DISC | FCF_ACVL_DISC);
2520 spin_unlock_irq(&phba->hbalock);
2524 * lpfc_stop_hba_timers - Stop all the timers associated with an HBA
2525 * @phba: pointer to lpfc hba data structure.
2527 * This routine stops all the timers associated with a HBA. This function is
2528 * invoked before either putting a HBA offline or unloading the driver.
2530 void
2531 lpfc_stop_hba_timers(struct lpfc_hba *phba)
2533 lpfc_stop_vport_timers(phba->pport);
2534 del_timer_sync(&phba->sli.mbox_tmo);
2535 del_timer_sync(&phba->fabric_block_timer);
2536 del_timer_sync(&phba->eratt_poll);
2537 del_timer_sync(&phba->hb_tmofunc);
2538 if (phba->sli_rev == LPFC_SLI_REV4) {
2539 del_timer_sync(&phba->rrq_tmr);
2540 phba->hba_flag &= ~HBA_RRQ_ACTIVE;
2542 phba->hb_outstanding = 0;
2544 switch (phba->pci_dev_grp) {
2545 case LPFC_PCI_DEV_LP:
2546 /* Stop any LightPulse device specific driver timers */
2547 del_timer_sync(&phba->fcp_poll_timer);
2548 break;
2549 case LPFC_PCI_DEV_OC:
2550 /* Stop any OneConnect device sepcific driver timers */
2551 lpfc_sli4_stop_fcf_redisc_wait_timer(phba);
2552 break;
2553 default:
2554 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
2555 "0297 Invalid device group (x%x)\n",
2556 phba->pci_dev_grp);
2557 break;
2559 return;
2563 * lpfc_block_mgmt_io - Mark a HBA's management interface as blocked
2564 * @phba: pointer to lpfc hba data structure.
2566 * This routine marks a HBA's management interface as blocked. Once the HBA's
2567 * management interface is marked as blocked, all the user space access to
2568 * the HBA, whether they are from sysfs interface or libdfc interface will
2569 * all be blocked. The HBA is set to block the management interface when the
2570 * driver prepares the HBA interface for online or offline.
2572 static void
2573 lpfc_block_mgmt_io(struct lpfc_hba *phba, int mbx_action)
2575 unsigned long iflag;
2576 uint8_t actcmd = MBX_HEARTBEAT;
2577 unsigned long timeout;
2579 spin_lock_irqsave(&phba->hbalock, iflag);
2580 phba->sli.sli_flag |= LPFC_BLOCK_MGMT_IO;
2581 spin_unlock_irqrestore(&phba->hbalock, iflag);
2582 if (mbx_action == LPFC_MBX_NO_WAIT)
2583 return;
2584 timeout = msecs_to_jiffies(LPFC_MBOX_TMO * 1000) + jiffies;
2585 spin_lock_irqsave(&phba->hbalock, iflag);
2586 if (phba->sli.mbox_active) {
2587 actcmd = phba->sli.mbox_active->u.mb.mbxCommand;
2588 /* Determine how long we might wait for the active mailbox
2589 * command to be gracefully completed by firmware.
2591 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba,
2592 phba->sli.mbox_active) * 1000) + jiffies;
2594 spin_unlock_irqrestore(&phba->hbalock, iflag);
2596 /* Wait for the outstnading mailbox command to complete */
2597 while (phba->sli.mbox_active) {
2598 /* Check active mailbox complete status every 2ms */
2599 msleep(2);
2600 if (time_after(jiffies, timeout)) {
2601 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
2602 "2813 Mgmt IO is Blocked %x "
2603 "- mbox cmd %x still active\n",
2604 phba->sli.sli_flag, actcmd);
2605 break;
2611 * lpfc_sli4_node_prep - Assign RPIs for active nodes.
2612 * @phba: pointer to lpfc hba data structure.
2614 * Allocate RPIs for all active remote nodes. This is needed whenever
2615 * an SLI4 adapter is reset and the driver is not unloading. Its purpose
2616 * is to fixup the temporary rpi assignments.
2618 void
2619 lpfc_sli4_node_prep(struct lpfc_hba *phba)
2621 struct lpfc_nodelist *ndlp, *next_ndlp;
2622 struct lpfc_vport **vports;
2623 int i;
2625 if (phba->sli_rev != LPFC_SLI_REV4)
2626 return;
2628 vports = lpfc_create_vport_work_array(phba);
2629 if (vports != NULL) {
2630 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
2631 if (vports[i]->load_flag & FC_UNLOADING)
2632 continue;
2634 list_for_each_entry_safe(ndlp, next_ndlp,
2635 &vports[i]->fc_nodes,
2636 nlp_listp) {
2637 if (NLP_CHK_NODE_ACT(ndlp))
2638 ndlp->nlp_rpi =
2639 lpfc_sli4_alloc_rpi(phba);
2643 lpfc_destroy_vport_work_array(phba, vports);
2647 * lpfc_online - Initialize and bring a HBA online
2648 * @phba: pointer to lpfc hba data structure.
2650 * This routine initializes the HBA and brings a HBA online. During this
2651 * process, the management interface is blocked to prevent user space access
2652 * to the HBA interfering with the driver initialization.
2654 * Return codes
2655 * 0 - successful
2656 * 1 - failed
2659 lpfc_online(struct lpfc_hba *phba)
2661 struct lpfc_vport *vport;
2662 struct lpfc_vport **vports;
2663 int i;
2664 bool vpis_cleared = false;
2666 if (!phba)
2667 return 0;
2668 vport = phba->pport;
2670 if (!(vport->fc_flag & FC_OFFLINE_MODE))
2671 return 0;
2673 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
2674 "0458 Bring Adapter online\n");
2676 lpfc_block_mgmt_io(phba, LPFC_MBX_WAIT);
2678 if (!lpfc_sli_queue_setup(phba)) {
2679 lpfc_unblock_mgmt_io(phba);
2680 return 1;
2683 if (phba->sli_rev == LPFC_SLI_REV4) {
2684 if (lpfc_sli4_hba_setup(phba)) { /* Initialize SLI4 HBA */
2685 lpfc_unblock_mgmt_io(phba);
2686 return 1;
2688 spin_lock_irq(&phba->hbalock);
2689 if (!phba->sli4_hba.max_cfg_param.vpi_used)
2690 vpis_cleared = true;
2691 spin_unlock_irq(&phba->hbalock);
2692 } else {
2693 if (lpfc_sli_hba_setup(phba)) { /* Initialize SLI2/SLI3 HBA */
2694 lpfc_unblock_mgmt_io(phba);
2695 return 1;
2699 vports = lpfc_create_vport_work_array(phba);
2700 if (vports != NULL) {
2701 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
2702 struct Scsi_Host *shost;
2703 shost = lpfc_shost_from_vport(vports[i]);
2704 spin_lock_irq(shost->host_lock);
2705 vports[i]->fc_flag &= ~FC_OFFLINE_MODE;
2706 if (phba->sli3_options & LPFC_SLI3_NPIV_ENABLED)
2707 vports[i]->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
2708 if (phba->sli_rev == LPFC_SLI_REV4) {
2709 vports[i]->fc_flag |= FC_VPORT_NEEDS_INIT_VPI;
2710 if ((vpis_cleared) &&
2711 (vports[i]->port_type !=
2712 LPFC_PHYSICAL_PORT))
2713 vports[i]->vpi = 0;
2715 spin_unlock_irq(shost->host_lock);
2718 lpfc_destroy_vport_work_array(phba, vports);
2720 lpfc_unblock_mgmt_io(phba);
2721 return 0;
2725 * lpfc_unblock_mgmt_io - Mark a HBA's management interface to be not blocked
2726 * @phba: pointer to lpfc hba data structure.
2728 * This routine marks a HBA's management interface as not blocked. Once the
2729 * HBA's management interface is marked as not blocked, all the user space
2730 * access to the HBA, whether they are from sysfs interface or libdfc
2731 * interface will be allowed. The HBA is set to block the management interface
2732 * when the driver prepares the HBA interface for online or offline and then
2733 * set to unblock the management interface afterwards.
2735 void
2736 lpfc_unblock_mgmt_io(struct lpfc_hba * phba)
2738 unsigned long iflag;
2740 spin_lock_irqsave(&phba->hbalock, iflag);
2741 phba->sli.sli_flag &= ~LPFC_BLOCK_MGMT_IO;
2742 spin_unlock_irqrestore(&phba->hbalock, iflag);
2746 * lpfc_offline_prep - Prepare a HBA to be brought offline
2747 * @phba: pointer to lpfc hba data structure.
2749 * This routine is invoked to prepare a HBA to be brought offline. It performs
2750 * unregistration login to all the nodes on all vports and flushes the mailbox
2751 * queue to make it ready to be brought offline.
2753 void
2754 lpfc_offline_prep(struct lpfc_hba *phba, int mbx_action)
2756 struct lpfc_vport *vport = phba->pport;
2757 struct lpfc_nodelist *ndlp, *next_ndlp;
2758 struct lpfc_vport **vports;
2759 struct Scsi_Host *shost;
2760 int i;
2762 if (vport->fc_flag & FC_OFFLINE_MODE)
2763 return;
2765 lpfc_block_mgmt_io(phba, mbx_action);
2767 lpfc_linkdown(phba);
2769 /* Issue an unreg_login to all nodes on all vports */
2770 vports = lpfc_create_vport_work_array(phba);
2771 if (vports != NULL) {
2772 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
2773 if (vports[i]->load_flag & FC_UNLOADING)
2774 continue;
2775 shost = lpfc_shost_from_vport(vports[i]);
2776 spin_lock_irq(shost->host_lock);
2777 vports[i]->vpi_state &= ~LPFC_VPI_REGISTERED;
2778 vports[i]->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
2779 vports[i]->fc_flag &= ~FC_VFI_REGISTERED;
2780 spin_unlock_irq(shost->host_lock);
2782 shost = lpfc_shost_from_vport(vports[i]);
2783 list_for_each_entry_safe(ndlp, next_ndlp,
2784 &vports[i]->fc_nodes,
2785 nlp_listp) {
2786 if (!NLP_CHK_NODE_ACT(ndlp))
2787 continue;
2788 if (ndlp->nlp_state == NLP_STE_UNUSED_NODE)
2789 continue;
2790 if (ndlp->nlp_type & NLP_FABRIC) {
2791 lpfc_disc_state_machine(vports[i], ndlp,
2792 NULL, NLP_EVT_DEVICE_RECOVERY);
2793 lpfc_disc_state_machine(vports[i], ndlp,
2794 NULL, NLP_EVT_DEVICE_RM);
2796 spin_lock_irq(shost->host_lock);
2797 ndlp->nlp_flag &= ~NLP_NPR_ADISC;
2798 spin_unlock_irq(shost->host_lock);
2800 * Whenever an SLI4 port goes offline, free the
2801 * RPI. Get a new RPI when the adapter port
2802 * comes back online.
2804 if (phba->sli_rev == LPFC_SLI_REV4)
2805 lpfc_sli4_free_rpi(phba, ndlp->nlp_rpi);
2806 lpfc_unreg_rpi(vports[i], ndlp);
2810 lpfc_destroy_vport_work_array(phba, vports);
2812 lpfc_sli_mbox_sys_shutdown(phba, mbx_action);
2816 * lpfc_offline - Bring a HBA offline
2817 * @phba: pointer to lpfc hba data structure.
2819 * This routine actually brings a HBA offline. It stops all the timers
2820 * associated with the HBA, brings down the SLI layer, and eventually
2821 * marks the HBA as in offline state for the upper layer protocol.
2823 void
2824 lpfc_offline(struct lpfc_hba *phba)
2826 struct Scsi_Host *shost;
2827 struct lpfc_vport **vports;
2828 int i;
2830 if (phba->pport->fc_flag & FC_OFFLINE_MODE)
2831 return;
2833 /* stop port and all timers associated with this hba */
2834 lpfc_stop_port(phba);
2835 vports = lpfc_create_vport_work_array(phba);
2836 if (vports != NULL)
2837 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++)
2838 lpfc_stop_vport_timers(vports[i]);
2839 lpfc_destroy_vport_work_array(phba, vports);
2840 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
2841 "0460 Bring Adapter offline\n");
2842 /* Bring down the SLI Layer and cleanup. The HBA is offline
2843 now. */
2844 lpfc_sli_hba_down(phba);
2845 spin_lock_irq(&phba->hbalock);
2846 phba->work_ha = 0;
2847 spin_unlock_irq(&phba->hbalock);
2848 vports = lpfc_create_vport_work_array(phba);
2849 if (vports != NULL)
2850 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
2851 shost = lpfc_shost_from_vport(vports[i]);
2852 spin_lock_irq(shost->host_lock);
2853 vports[i]->work_port_events = 0;
2854 vports[i]->fc_flag |= FC_OFFLINE_MODE;
2855 spin_unlock_irq(shost->host_lock);
2857 lpfc_destroy_vport_work_array(phba, vports);
2861 * lpfc_scsi_free - Free all the SCSI buffers and IOCBs from driver lists
2862 * @phba: pointer to lpfc hba data structure.
2864 * This routine is to free all the SCSI buffers and IOCBs from the driver
2865 * list back to kernel. It is called from lpfc_pci_remove_one to free
2866 * the internal resources before the device is removed from the system.
2868 static void
2869 lpfc_scsi_free(struct lpfc_hba *phba)
2871 struct lpfc_scsi_buf *sb, *sb_next;
2872 struct lpfc_iocbq *io, *io_next;
2874 spin_lock_irq(&phba->hbalock);
2876 /* Release all the lpfc_scsi_bufs maintained by this host. */
2878 spin_lock(&phba->scsi_buf_list_put_lock);
2879 list_for_each_entry_safe(sb, sb_next, &phba->lpfc_scsi_buf_list_put,
2880 list) {
2881 list_del(&sb->list);
2882 pci_pool_free(phba->lpfc_scsi_dma_buf_pool, sb->data,
2883 sb->dma_handle);
2884 kfree(sb);
2885 phba->total_scsi_bufs--;
2887 spin_unlock(&phba->scsi_buf_list_put_lock);
2889 spin_lock(&phba->scsi_buf_list_get_lock);
2890 list_for_each_entry_safe(sb, sb_next, &phba->lpfc_scsi_buf_list_get,
2891 list) {
2892 list_del(&sb->list);
2893 pci_pool_free(phba->lpfc_scsi_dma_buf_pool, sb->data,
2894 sb->dma_handle);
2895 kfree(sb);
2896 phba->total_scsi_bufs--;
2898 spin_unlock(&phba->scsi_buf_list_get_lock);
2900 /* Release all the lpfc_iocbq entries maintained by this host. */
2901 list_for_each_entry_safe(io, io_next, &phba->lpfc_iocb_list, list) {
2902 list_del(&io->list);
2903 kfree(io);
2904 phba->total_iocbq_bufs--;
2907 spin_unlock_irq(&phba->hbalock);
2911 * lpfc_sli4_xri_sgl_update - update xri-sgl sizing and mapping
2912 * @phba: pointer to lpfc hba data structure.
2914 * This routine first calculates the sizes of the current els and allocated
2915 * scsi sgl lists, and then goes through all sgls to updates the physical
2916 * XRIs assigned due to port function reset. During port initialization, the
2917 * current els and allocated scsi sgl lists are 0s.
2919 * Return codes
2920 * 0 - successful (for now, it always returns 0)
2923 lpfc_sli4_xri_sgl_update(struct lpfc_hba *phba)
2925 struct lpfc_sglq *sglq_entry = NULL, *sglq_entry_next = NULL;
2926 struct lpfc_scsi_buf *psb = NULL, *psb_next = NULL;
2927 uint16_t i, lxri, xri_cnt, els_xri_cnt, scsi_xri_cnt;
2928 LIST_HEAD(els_sgl_list);
2929 LIST_HEAD(scsi_sgl_list);
2930 int rc;
2933 * update on pci function's els xri-sgl list
2935 els_xri_cnt = lpfc_sli4_get_els_iocb_cnt(phba);
2936 if (els_xri_cnt > phba->sli4_hba.els_xri_cnt) {
2937 /* els xri-sgl expanded */
2938 xri_cnt = els_xri_cnt - phba->sli4_hba.els_xri_cnt;
2939 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
2940 "3157 ELS xri-sgl count increased from "
2941 "%d to %d\n", phba->sli4_hba.els_xri_cnt,
2942 els_xri_cnt);
2943 /* allocate the additional els sgls */
2944 for (i = 0; i < xri_cnt; i++) {
2945 sglq_entry = kzalloc(sizeof(struct lpfc_sglq),
2946 GFP_KERNEL);
2947 if (sglq_entry == NULL) {
2948 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
2949 "2562 Failure to allocate an "
2950 "ELS sgl entry:%d\n", i);
2951 rc = -ENOMEM;
2952 goto out_free_mem;
2954 sglq_entry->buff_type = GEN_BUFF_TYPE;
2955 sglq_entry->virt = lpfc_mbuf_alloc(phba, 0,
2956 &sglq_entry->phys);
2957 if (sglq_entry->virt == NULL) {
2958 kfree(sglq_entry);
2959 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
2960 "2563 Failure to allocate an "
2961 "ELS mbuf:%d\n", i);
2962 rc = -ENOMEM;
2963 goto out_free_mem;
2965 sglq_entry->sgl = sglq_entry->virt;
2966 memset(sglq_entry->sgl, 0, LPFC_BPL_SIZE);
2967 sglq_entry->state = SGL_FREED;
2968 list_add_tail(&sglq_entry->list, &els_sgl_list);
2970 spin_lock_irq(&phba->hbalock);
2971 list_splice_init(&els_sgl_list, &phba->sli4_hba.lpfc_sgl_list);
2972 spin_unlock_irq(&phba->hbalock);
2973 } else if (els_xri_cnt < phba->sli4_hba.els_xri_cnt) {
2974 /* els xri-sgl shrinked */
2975 xri_cnt = phba->sli4_hba.els_xri_cnt - els_xri_cnt;
2976 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
2977 "3158 ELS xri-sgl count decreased from "
2978 "%d to %d\n", phba->sli4_hba.els_xri_cnt,
2979 els_xri_cnt);
2980 spin_lock_irq(&phba->hbalock);
2981 list_splice_init(&phba->sli4_hba.lpfc_sgl_list, &els_sgl_list);
2982 spin_unlock_irq(&phba->hbalock);
2983 /* release extra els sgls from list */
2984 for (i = 0; i < xri_cnt; i++) {
2985 list_remove_head(&els_sgl_list,
2986 sglq_entry, struct lpfc_sglq, list);
2987 if (sglq_entry) {
2988 lpfc_mbuf_free(phba, sglq_entry->virt,
2989 sglq_entry->phys);
2990 kfree(sglq_entry);
2993 spin_lock_irq(&phba->hbalock);
2994 list_splice_init(&els_sgl_list, &phba->sli4_hba.lpfc_sgl_list);
2995 spin_unlock_irq(&phba->hbalock);
2996 } else
2997 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
2998 "3163 ELS xri-sgl count unchanged: %d\n",
2999 els_xri_cnt);
3000 phba->sli4_hba.els_xri_cnt = els_xri_cnt;
3002 /* update xris to els sgls on the list */
3003 sglq_entry = NULL;
3004 sglq_entry_next = NULL;
3005 list_for_each_entry_safe(sglq_entry, sglq_entry_next,
3006 &phba->sli4_hba.lpfc_sgl_list, list) {
3007 lxri = lpfc_sli4_next_xritag(phba);
3008 if (lxri == NO_XRI) {
3009 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
3010 "2400 Failed to allocate xri for "
3011 "ELS sgl\n");
3012 rc = -ENOMEM;
3013 goto out_free_mem;
3015 sglq_entry->sli4_lxritag = lxri;
3016 sglq_entry->sli4_xritag = phba->sli4_hba.xri_ids[lxri];
3020 * update on pci function's allocated scsi xri-sgl list
3022 phba->total_scsi_bufs = 0;
3024 /* maximum number of xris available for scsi buffers */
3025 phba->sli4_hba.scsi_xri_max = phba->sli4_hba.max_cfg_param.max_xri -
3026 els_xri_cnt;
3028 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
3029 "2401 Current allocated SCSI xri-sgl count:%d, "
3030 "maximum SCSI xri count:%d\n",
3031 phba->sli4_hba.scsi_xri_cnt,
3032 phba->sli4_hba.scsi_xri_max);
3034 spin_lock_irq(&phba->scsi_buf_list_get_lock);
3035 spin_lock(&phba->scsi_buf_list_put_lock);
3036 list_splice_init(&phba->lpfc_scsi_buf_list_get, &scsi_sgl_list);
3037 list_splice(&phba->lpfc_scsi_buf_list_put, &scsi_sgl_list);
3038 spin_unlock(&phba->scsi_buf_list_put_lock);
3039 spin_unlock_irq(&phba->scsi_buf_list_get_lock);
3041 if (phba->sli4_hba.scsi_xri_cnt > phba->sli4_hba.scsi_xri_max) {
3042 /* max scsi xri shrinked below the allocated scsi buffers */
3043 scsi_xri_cnt = phba->sli4_hba.scsi_xri_cnt -
3044 phba->sli4_hba.scsi_xri_max;
3045 /* release the extra allocated scsi buffers */
3046 for (i = 0; i < scsi_xri_cnt; i++) {
3047 list_remove_head(&scsi_sgl_list, psb,
3048 struct lpfc_scsi_buf, list);
3049 pci_pool_free(phba->lpfc_scsi_dma_buf_pool, psb->data,
3050 psb->dma_handle);
3051 kfree(psb);
3053 spin_lock_irq(&phba->scsi_buf_list_get_lock);
3054 phba->sli4_hba.scsi_xri_cnt -= scsi_xri_cnt;
3055 spin_unlock_irq(&phba->scsi_buf_list_get_lock);
3058 /* update xris associated to remaining allocated scsi buffers */
3059 psb = NULL;
3060 psb_next = NULL;
3061 list_for_each_entry_safe(psb, psb_next, &scsi_sgl_list, list) {
3062 lxri = lpfc_sli4_next_xritag(phba);
3063 if (lxri == NO_XRI) {
3064 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
3065 "2560 Failed to allocate xri for "
3066 "scsi buffer\n");
3067 rc = -ENOMEM;
3068 goto out_free_mem;
3070 psb->cur_iocbq.sli4_lxritag = lxri;
3071 psb->cur_iocbq.sli4_xritag = phba->sli4_hba.xri_ids[lxri];
3073 spin_lock_irq(&phba->scsi_buf_list_get_lock);
3074 spin_lock(&phba->scsi_buf_list_put_lock);
3075 list_splice_init(&scsi_sgl_list, &phba->lpfc_scsi_buf_list_get);
3076 INIT_LIST_HEAD(&phba->lpfc_scsi_buf_list_put);
3077 spin_unlock(&phba->scsi_buf_list_put_lock);
3078 spin_unlock_irq(&phba->scsi_buf_list_get_lock);
3080 return 0;
3082 out_free_mem:
3083 lpfc_free_els_sgl_list(phba);
3084 lpfc_scsi_free(phba);
3085 return rc;
3089 * lpfc_create_port - Create an FC port
3090 * @phba: pointer to lpfc hba data structure.
3091 * @instance: a unique integer ID to this FC port.
3092 * @dev: pointer to the device data structure.
3094 * This routine creates a FC port for the upper layer protocol. The FC port
3095 * can be created on top of either a physical port or a virtual port provided
3096 * by the HBA. This routine also allocates a SCSI host data structure (shost)
3097 * and associates the FC port created before adding the shost into the SCSI
3098 * layer.
3100 * Return codes
3101 * @vport - pointer to the virtual N_Port data structure.
3102 * NULL - port create failed.
3104 struct lpfc_vport *
3105 lpfc_create_port(struct lpfc_hba *phba, int instance, struct device *dev)
3107 struct lpfc_vport *vport;
3108 struct Scsi_Host *shost;
3109 int error = 0;
3111 if (dev != &phba->pcidev->dev)
3112 shost = scsi_host_alloc(&lpfc_vport_template,
3113 sizeof(struct lpfc_vport));
3114 else
3115 shost = scsi_host_alloc(&lpfc_template,
3116 sizeof(struct lpfc_vport));
3117 if (!shost)
3118 goto out;
3120 vport = (struct lpfc_vport *) shost->hostdata;
3121 vport->phba = phba;
3122 vport->load_flag |= FC_LOADING;
3123 vport->fc_flag |= FC_VPORT_NEEDS_REG_VPI;
3124 vport->fc_rscn_flush = 0;
3126 lpfc_get_vport_cfgparam(vport);
3127 shost->unique_id = instance;
3128 shost->max_id = LPFC_MAX_TARGET;
3129 shost->max_lun = vport->cfg_max_luns;
3130 shost->this_id = -1;
3131 shost->max_cmd_len = 16;
3132 if (phba->sli_rev == LPFC_SLI_REV4) {
3133 shost->dma_boundary =
3134 phba->sli4_hba.pc_sli4_params.sge_supp_len-1;
3135 shost->sg_tablesize = phba->cfg_sg_seg_cnt;
3139 * Set initial can_queue value since 0 is no longer supported and
3140 * scsi_add_host will fail. This will be adjusted later based on the
3141 * max xri value determined in hba setup.
3143 shost->can_queue = phba->cfg_hba_queue_depth - 10;
3144 if (dev != &phba->pcidev->dev) {
3145 shost->transportt = lpfc_vport_transport_template;
3146 vport->port_type = LPFC_NPIV_PORT;
3147 } else {
3148 shost->transportt = lpfc_transport_template;
3149 vport->port_type = LPFC_PHYSICAL_PORT;
3152 /* Initialize all internally managed lists. */
3153 INIT_LIST_HEAD(&vport->fc_nodes);
3154 INIT_LIST_HEAD(&vport->rcv_buffer_list);
3155 spin_lock_init(&vport->work_port_lock);
3157 init_timer(&vport->fc_disctmo);
3158 vport->fc_disctmo.function = lpfc_disc_timeout;
3159 vport->fc_disctmo.data = (unsigned long)vport;
3161 init_timer(&vport->fc_fdmitmo);
3162 vport->fc_fdmitmo.function = lpfc_fdmi_tmo;
3163 vport->fc_fdmitmo.data = (unsigned long)vport;
3165 init_timer(&vport->els_tmofunc);
3166 vport->els_tmofunc.function = lpfc_els_timeout;
3167 vport->els_tmofunc.data = (unsigned long)vport;
3169 init_timer(&vport->delayed_disc_tmo);
3170 vport->delayed_disc_tmo.function = lpfc_delayed_disc_tmo;
3171 vport->delayed_disc_tmo.data = (unsigned long)vport;
3173 error = scsi_add_host_with_dma(shost, dev, &phba->pcidev->dev);
3174 if (error)
3175 goto out_put_shost;
3177 spin_lock_irq(&phba->hbalock);
3178 list_add_tail(&vport->listentry, &phba->port_list);
3179 spin_unlock_irq(&phba->hbalock);
3180 return vport;
3182 out_put_shost:
3183 scsi_host_put(shost);
3184 out:
3185 return NULL;
3189 * destroy_port - destroy an FC port
3190 * @vport: pointer to an lpfc virtual N_Port data structure.
3192 * This routine destroys a FC port from the upper layer protocol. All the
3193 * resources associated with the port are released.
3195 void
3196 destroy_port(struct lpfc_vport *vport)
3198 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
3199 struct lpfc_hba *phba = vport->phba;
3201 lpfc_debugfs_terminate(vport);
3202 fc_remove_host(shost);
3203 scsi_remove_host(shost);
3205 spin_lock_irq(&phba->hbalock);
3206 list_del_init(&vport->listentry);
3207 spin_unlock_irq(&phba->hbalock);
3209 lpfc_cleanup(vport);
3210 return;
3214 * lpfc_get_instance - Get a unique integer ID
3216 * This routine allocates a unique integer ID from lpfc_hba_index pool. It
3217 * uses the kernel idr facility to perform the task.
3219 * Return codes:
3220 * instance - a unique integer ID allocated as the new instance.
3221 * -1 - lpfc get instance failed.
3224 lpfc_get_instance(void)
3226 int ret;
3228 ret = idr_alloc(&lpfc_hba_index, NULL, 0, 0, GFP_KERNEL);
3229 return ret < 0 ? -1 : ret;
3233 * lpfc_scan_finished - method for SCSI layer to detect whether scan is done
3234 * @shost: pointer to SCSI host data structure.
3235 * @time: elapsed time of the scan in jiffies.
3237 * This routine is called by the SCSI layer with a SCSI host to determine
3238 * whether the scan host is finished.
3240 * Note: there is no scan_start function as adapter initialization will have
3241 * asynchronously kicked off the link initialization.
3243 * Return codes
3244 * 0 - SCSI host scan is not over yet.
3245 * 1 - SCSI host scan is over.
3247 int lpfc_scan_finished(struct Scsi_Host *shost, unsigned long time)
3249 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
3250 struct lpfc_hba *phba = vport->phba;
3251 int stat = 0;
3253 spin_lock_irq(shost->host_lock);
3255 if (vport->load_flag & FC_UNLOADING) {
3256 stat = 1;
3257 goto finished;
3259 if (time >= msecs_to_jiffies(30 * 1000)) {
3260 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
3261 "0461 Scanning longer than 30 "
3262 "seconds. Continuing initialization\n");
3263 stat = 1;
3264 goto finished;
3266 if (time >= msecs_to_jiffies(15 * 1000) &&
3267 phba->link_state <= LPFC_LINK_DOWN) {
3268 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
3269 "0465 Link down longer than 15 "
3270 "seconds. Continuing initialization\n");
3271 stat = 1;
3272 goto finished;
3275 if (vport->port_state != LPFC_VPORT_READY)
3276 goto finished;
3277 if (vport->num_disc_nodes || vport->fc_prli_sent)
3278 goto finished;
3279 if (vport->fc_map_cnt == 0 && time < msecs_to_jiffies(2 * 1000))
3280 goto finished;
3281 if ((phba->sli.sli_flag & LPFC_SLI_MBOX_ACTIVE) != 0)
3282 goto finished;
3284 stat = 1;
3286 finished:
3287 spin_unlock_irq(shost->host_lock);
3288 return stat;
3292 * lpfc_host_attrib_init - Initialize SCSI host attributes on a FC port
3293 * @shost: pointer to SCSI host data structure.
3295 * This routine initializes a given SCSI host attributes on a FC port. The
3296 * SCSI host can be either on top of a physical port or a virtual port.
3298 void lpfc_host_attrib_init(struct Scsi_Host *shost)
3300 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
3301 struct lpfc_hba *phba = vport->phba;
3303 * Set fixed host attributes. Must done after lpfc_sli_hba_setup().
3306 fc_host_node_name(shost) = wwn_to_u64(vport->fc_nodename.u.wwn);
3307 fc_host_port_name(shost) = wwn_to_u64(vport->fc_portname.u.wwn);
3308 fc_host_supported_classes(shost) = FC_COS_CLASS3;
3310 memset(fc_host_supported_fc4s(shost), 0,
3311 sizeof(fc_host_supported_fc4s(shost)));
3312 fc_host_supported_fc4s(shost)[2] = 1;
3313 fc_host_supported_fc4s(shost)[7] = 1;
3315 lpfc_vport_symbolic_node_name(vport, fc_host_symbolic_name(shost),
3316 sizeof fc_host_symbolic_name(shost));
3318 fc_host_supported_speeds(shost) = 0;
3319 if (phba->lmt & LMT_16Gb)
3320 fc_host_supported_speeds(shost) |= FC_PORTSPEED_16GBIT;
3321 if (phba->lmt & LMT_10Gb)
3322 fc_host_supported_speeds(shost) |= FC_PORTSPEED_10GBIT;
3323 if (phba->lmt & LMT_8Gb)
3324 fc_host_supported_speeds(shost) |= FC_PORTSPEED_8GBIT;
3325 if (phba->lmt & LMT_4Gb)
3326 fc_host_supported_speeds(shost) |= FC_PORTSPEED_4GBIT;
3327 if (phba->lmt & LMT_2Gb)
3328 fc_host_supported_speeds(shost) |= FC_PORTSPEED_2GBIT;
3329 if (phba->lmt & LMT_1Gb)
3330 fc_host_supported_speeds(shost) |= FC_PORTSPEED_1GBIT;
3332 fc_host_maxframe_size(shost) =
3333 (((uint32_t) vport->fc_sparam.cmn.bbRcvSizeMsb & 0x0F) << 8) |
3334 (uint32_t) vport->fc_sparam.cmn.bbRcvSizeLsb;
3336 fc_host_dev_loss_tmo(shost) = vport->cfg_devloss_tmo;
3338 /* This value is also unchanging */
3339 memset(fc_host_active_fc4s(shost), 0,
3340 sizeof(fc_host_active_fc4s(shost)));
3341 fc_host_active_fc4s(shost)[2] = 1;
3342 fc_host_active_fc4s(shost)[7] = 1;
3344 fc_host_max_npiv_vports(shost) = phba->max_vpi;
3345 spin_lock_irq(shost->host_lock);
3346 vport->load_flag &= ~FC_LOADING;
3347 spin_unlock_irq(shost->host_lock);
3351 * lpfc_stop_port_s3 - Stop SLI3 device port
3352 * @phba: pointer to lpfc hba data structure.
3354 * This routine is invoked to stop an SLI3 device port, it stops the device
3355 * from generating interrupts and stops the device driver's timers for the
3356 * device.
3358 static void
3359 lpfc_stop_port_s3(struct lpfc_hba *phba)
3361 /* Clear all interrupt enable conditions */
3362 writel(0, phba->HCregaddr);
3363 readl(phba->HCregaddr); /* flush */
3364 /* Clear all pending interrupts */
3365 writel(0xffffffff, phba->HAregaddr);
3366 readl(phba->HAregaddr); /* flush */
3368 /* Reset some HBA SLI setup states */
3369 lpfc_stop_hba_timers(phba);
3370 phba->pport->work_port_events = 0;
3374 * lpfc_stop_port_s4 - Stop SLI4 device port
3375 * @phba: pointer to lpfc hba data structure.
3377 * This routine is invoked to stop an SLI4 device port, it stops the device
3378 * from generating interrupts and stops the device driver's timers for the
3379 * device.
3381 static void
3382 lpfc_stop_port_s4(struct lpfc_hba *phba)
3384 /* Reset some HBA SLI4 setup states */
3385 lpfc_stop_hba_timers(phba);
3386 phba->pport->work_port_events = 0;
3387 phba->sli4_hba.intr_enable = 0;
3391 * lpfc_stop_port - Wrapper function for stopping hba port
3392 * @phba: Pointer to HBA context object.
3394 * This routine wraps the actual SLI3 or SLI4 hba stop port routine from
3395 * the API jump table function pointer from the lpfc_hba struct.
3397 void
3398 lpfc_stop_port(struct lpfc_hba *phba)
3400 phba->lpfc_stop_port(phba);
3404 * lpfc_fcf_redisc_wait_start_timer - Start fcf rediscover wait timer
3405 * @phba: Pointer to hba for which this call is being executed.
3407 * This routine starts the timer waiting for the FCF rediscovery to complete.
3409 void
3410 lpfc_fcf_redisc_wait_start_timer(struct lpfc_hba *phba)
3412 unsigned long fcf_redisc_wait_tmo =
3413 (jiffies + msecs_to_jiffies(LPFC_FCF_REDISCOVER_WAIT_TMO));
3414 /* Start fcf rediscovery wait period timer */
3415 mod_timer(&phba->fcf.redisc_wait, fcf_redisc_wait_tmo);
3416 spin_lock_irq(&phba->hbalock);
3417 /* Allow action to new fcf asynchronous event */
3418 phba->fcf.fcf_flag &= ~(FCF_AVAILABLE | FCF_SCAN_DONE);
3419 /* Mark the FCF rediscovery pending state */
3420 phba->fcf.fcf_flag |= FCF_REDISC_PEND;
3421 spin_unlock_irq(&phba->hbalock);
3425 * lpfc_sli4_fcf_redisc_wait_tmo - FCF table rediscover wait timeout
3426 * @ptr: Map to lpfc_hba data structure pointer.
3428 * This routine is invoked when waiting for FCF table rediscover has been
3429 * timed out. If new FCF record(s) has (have) been discovered during the
3430 * wait period, a new FCF event shall be added to the FCOE async event
3431 * list, and then worker thread shall be waked up for processing from the
3432 * worker thread context.
3434 void
3435 lpfc_sli4_fcf_redisc_wait_tmo(unsigned long ptr)
3437 struct lpfc_hba *phba = (struct lpfc_hba *)ptr;
3439 /* Don't send FCF rediscovery event if timer cancelled */
3440 spin_lock_irq(&phba->hbalock);
3441 if (!(phba->fcf.fcf_flag & FCF_REDISC_PEND)) {
3442 spin_unlock_irq(&phba->hbalock);
3443 return;
3445 /* Clear FCF rediscovery timer pending flag */
3446 phba->fcf.fcf_flag &= ~FCF_REDISC_PEND;
3447 /* FCF rediscovery event to worker thread */
3448 phba->fcf.fcf_flag |= FCF_REDISC_EVT;
3449 spin_unlock_irq(&phba->hbalock);
3450 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
3451 "2776 FCF rediscover quiescent timer expired\n");
3452 /* wake up worker thread */
3453 lpfc_worker_wake_up(phba);
3457 * lpfc_sli4_parse_latt_fault - Parse sli4 link-attention link fault code
3458 * @phba: pointer to lpfc hba data structure.
3459 * @acqe_link: pointer to the async link completion queue entry.
3461 * This routine is to parse the SLI4 link-attention link fault code and
3462 * translate it into the base driver's read link attention mailbox command
3463 * status.
3465 * Return: Link-attention status in terms of base driver's coding.
3467 static uint16_t
3468 lpfc_sli4_parse_latt_fault(struct lpfc_hba *phba,
3469 struct lpfc_acqe_link *acqe_link)
3471 uint16_t latt_fault;
3473 switch (bf_get(lpfc_acqe_link_fault, acqe_link)) {
3474 case LPFC_ASYNC_LINK_FAULT_NONE:
3475 case LPFC_ASYNC_LINK_FAULT_LOCAL:
3476 case LPFC_ASYNC_LINK_FAULT_REMOTE:
3477 latt_fault = 0;
3478 break;
3479 default:
3480 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3481 "0398 Invalid link fault code: x%x\n",
3482 bf_get(lpfc_acqe_link_fault, acqe_link));
3483 latt_fault = MBXERR_ERROR;
3484 break;
3486 return latt_fault;
3490 * lpfc_sli4_parse_latt_type - Parse sli4 link attention type
3491 * @phba: pointer to lpfc hba data structure.
3492 * @acqe_link: pointer to the async link completion queue entry.
3494 * This routine is to parse the SLI4 link attention type and translate it
3495 * into the base driver's link attention type coding.
3497 * Return: Link attention type in terms of base driver's coding.
3499 static uint8_t
3500 lpfc_sli4_parse_latt_type(struct lpfc_hba *phba,
3501 struct lpfc_acqe_link *acqe_link)
3503 uint8_t att_type;
3505 switch (bf_get(lpfc_acqe_link_status, acqe_link)) {
3506 case LPFC_ASYNC_LINK_STATUS_DOWN:
3507 case LPFC_ASYNC_LINK_STATUS_LOGICAL_DOWN:
3508 att_type = LPFC_ATT_LINK_DOWN;
3509 break;
3510 case LPFC_ASYNC_LINK_STATUS_UP:
3511 /* Ignore physical link up events - wait for logical link up */
3512 att_type = LPFC_ATT_RESERVED;
3513 break;
3514 case LPFC_ASYNC_LINK_STATUS_LOGICAL_UP:
3515 att_type = LPFC_ATT_LINK_UP;
3516 break;
3517 default:
3518 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3519 "0399 Invalid link attention type: x%x\n",
3520 bf_get(lpfc_acqe_link_status, acqe_link));
3521 att_type = LPFC_ATT_RESERVED;
3522 break;
3524 return att_type;
3528 * lpfc_sli4_parse_latt_link_speed - Parse sli4 link-attention link speed
3529 * @phba: pointer to lpfc hba data structure.
3530 * @acqe_link: pointer to the async link completion queue entry.
3532 * This routine is to parse the SLI4 link-attention link speed and translate
3533 * it into the base driver's link-attention link speed coding.
3535 * Return: Link-attention link speed in terms of base driver's coding.
3537 static uint8_t
3538 lpfc_sli4_parse_latt_link_speed(struct lpfc_hba *phba,
3539 struct lpfc_acqe_link *acqe_link)
3541 uint8_t link_speed;
3543 switch (bf_get(lpfc_acqe_link_speed, acqe_link)) {
3544 case LPFC_ASYNC_LINK_SPEED_ZERO:
3545 case LPFC_ASYNC_LINK_SPEED_10MBPS:
3546 case LPFC_ASYNC_LINK_SPEED_100MBPS:
3547 link_speed = LPFC_LINK_SPEED_UNKNOWN;
3548 break;
3549 case LPFC_ASYNC_LINK_SPEED_1GBPS:
3550 link_speed = LPFC_LINK_SPEED_1GHZ;
3551 break;
3552 case LPFC_ASYNC_LINK_SPEED_10GBPS:
3553 link_speed = LPFC_LINK_SPEED_10GHZ;
3554 break;
3555 default:
3556 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3557 "0483 Invalid link-attention link speed: x%x\n",
3558 bf_get(lpfc_acqe_link_speed, acqe_link));
3559 link_speed = LPFC_LINK_SPEED_UNKNOWN;
3560 break;
3562 return link_speed;
3566 * lpfc_sli_port_speed_get - Get sli3 link speed code to link speed
3567 * @phba: pointer to lpfc hba data structure.
3569 * This routine is to get an SLI3 FC port's link speed in Mbps.
3571 * Return: link speed in terms of Mbps.
3573 uint32_t
3574 lpfc_sli_port_speed_get(struct lpfc_hba *phba)
3576 uint32_t link_speed;
3578 if (!lpfc_is_link_up(phba))
3579 return 0;
3581 switch (phba->fc_linkspeed) {
3582 case LPFC_LINK_SPEED_1GHZ:
3583 link_speed = 1000;
3584 break;
3585 case LPFC_LINK_SPEED_2GHZ:
3586 link_speed = 2000;
3587 break;
3588 case LPFC_LINK_SPEED_4GHZ:
3589 link_speed = 4000;
3590 break;
3591 case LPFC_LINK_SPEED_8GHZ:
3592 link_speed = 8000;
3593 break;
3594 case LPFC_LINK_SPEED_10GHZ:
3595 link_speed = 10000;
3596 break;
3597 case LPFC_LINK_SPEED_16GHZ:
3598 link_speed = 16000;
3599 break;
3600 default:
3601 link_speed = 0;
3603 return link_speed;
3607 * lpfc_sli4_port_speed_parse - Parse async evt link speed code to link speed
3608 * @phba: pointer to lpfc hba data structure.
3609 * @evt_code: asynchronous event code.
3610 * @speed_code: asynchronous event link speed code.
3612 * This routine is to parse the giving SLI4 async event link speed code into
3613 * value of Mbps for the link speed.
3615 * Return: link speed in terms of Mbps.
3617 static uint32_t
3618 lpfc_sli4_port_speed_parse(struct lpfc_hba *phba, uint32_t evt_code,
3619 uint8_t speed_code)
3621 uint32_t port_speed;
3623 switch (evt_code) {
3624 case LPFC_TRAILER_CODE_LINK:
3625 switch (speed_code) {
3626 case LPFC_EVT_CODE_LINK_NO_LINK:
3627 port_speed = 0;
3628 break;
3629 case LPFC_EVT_CODE_LINK_10_MBIT:
3630 port_speed = 10;
3631 break;
3632 case LPFC_EVT_CODE_LINK_100_MBIT:
3633 port_speed = 100;
3634 break;
3635 case LPFC_EVT_CODE_LINK_1_GBIT:
3636 port_speed = 1000;
3637 break;
3638 case LPFC_EVT_CODE_LINK_10_GBIT:
3639 port_speed = 10000;
3640 break;
3641 default:
3642 port_speed = 0;
3644 break;
3645 case LPFC_TRAILER_CODE_FC:
3646 switch (speed_code) {
3647 case LPFC_EVT_CODE_FC_NO_LINK:
3648 port_speed = 0;
3649 break;
3650 case LPFC_EVT_CODE_FC_1_GBAUD:
3651 port_speed = 1000;
3652 break;
3653 case LPFC_EVT_CODE_FC_2_GBAUD:
3654 port_speed = 2000;
3655 break;
3656 case LPFC_EVT_CODE_FC_4_GBAUD:
3657 port_speed = 4000;
3658 break;
3659 case LPFC_EVT_CODE_FC_8_GBAUD:
3660 port_speed = 8000;
3661 break;
3662 case LPFC_EVT_CODE_FC_10_GBAUD:
3663 port_speed = 10000;
3664 break;
3665 case LPFC_EVT_CODE_FC_16_GBAUD:
3666 port_speed = 16000;
3667 break;
3668 default:
3669 port_speed = 0;
3671 break;
3672 default:
3673 port_speed = 0;
3675 return port_speed;
3679 * lpfc_sli4_async_link_evt - Process the asynchronous FCoE link event
3680 * @phba: pointer to lpfc hba data structure.
3681 * @acqe_link: pointer to the async link completion queue entry.
3683 * This routine is to handle the SLI4 asynchronous FCoE link event.
3685 static void
3686 lpfc_sli4_async_link_evt(struct lpfc_hba *phba,
3687 struct lpfc_acqe_link *acqe_link)
3689 struct lpfc_dmabuf *mp;
3690 LPFC_MBOXQ_t *pmb;
3691 MAILBOX_t *mb;
3692 struct lpfc_mbx_read_top *la;
3693 uint8_t att_type;
3694 int rc;
3696 att_type = lpfc_sli4_parse_latt_type(phba, acqe_link);
3697 if (att_type != LPFC_ATT_LINK_DOWN && att_type != LPFC_ATT_LINK_UP)
3698 return;
3699 phba->fcoe_eventtag = acqe_link->event_tag;
3700 pmb = (LPFC_MBOXQ_t *)mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
3701 if (!pmb) {
3702 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
3703 "0395 The mboxq allocation failed\n");
3704 return;
3706 mp = kmalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
3707 if (!mp) {
3708 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
3709 "0396 The lpfc_dmabuf allocation failed\n");
3710 goto out_free_pmb;
3712 mp->virt = lpfc_mbuf_alloc(phba, 0, &mp->phys);
3713 if (!mp->virt) {
3714 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
3715 "0397 The mbuf allocation failed\n");
3716 goto out_free_dmabuf;
3719 /* Cleanup any outstanding ELS commands */
3720 lpfc_els_flush_all_cmd(phba);
3722 /* Block ELS IOCBs until we have done process link event */
3723 phba->sli.ring[LPFC_ELS_RING].flag |= LPFC_STOP_IOCB_EVENT;
3725 /* Update link event statistics */
3726 phba->sli.slistat.link_event++;
3728 /* Create lpfc_handle_latt mailbox command from link ACQE */
3729 lpfc_read_topology(phba, pmb, mp);
3730 pmb->mbox_cmpl = lpfc_mbx_cmpl_read_topology;
3731 pmb->vport = phba->pport;
3733 /* Keep the link status for extra SLI4 state machine reference */
3734 phba->sli4_hba.link_state.speed =
3735 lpfc_sli4_port_speed_parse(phba, LPFC_TRAILER_CODE_LINK,
3736 bf_get(lpfc_acqe_link_speed, acqe_link));
3737 phba->sli4_hba.link_state.duplex =
3738 bf_get(lpfc_acqe_link_duplex, acqe_link);
3739 phba->sli4_hba.link_state.status =
3740 bf_get(lpfc_acqe_link_status, acqe_link);
3741 phba->sli4_hba.link_state.type =
3742 bf_get(lpfc_acqe_link_type, acqe_link);
3743 phba->sli4_hba.link_state.number =
3744 bf_get(lpfc_acqe_link_number, acqe_link);
3745 phba->sli4_hba.link_state.fault =
3746 bf_get(lpfc_acqe_link_fault, acqe_link);
3747 phba->sli4_hba.link_state.logical_speed =
3748 bf_get(lpfc_acqe_logical_link_speed, acqe_link) * 10;
3750 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
3751 "2900 Async FC/FCoE Link event - Speed:%dGBit "
3752 "duplex:x%x LA Type:x%x Port Type:%d Port Number:%d "
3753 "Logical speed:%dMbps Fault:%d\n",
3754 phba->sli4_hba.link_state.speed,
3755 phba->sli4_hba.link_state.topology,
3756 phba->sli4_hba.link_state.status,
3757 phba->sli4_hba.link_state.type,
3758 phba->sli4_hba.link_state.number,
3759 phba->sli4_hba.link_state.logical_speed,
3760 phba->sli4_hba.link_state.fault);
3762 * For FC Mode: issue the READ_TOPOLOGY mailbox command to fetch
3763 * topology info. Note: Optional for non FC-AL ports.
3765 if (!(phba->hba_flag & HBA_FCOE_MODE)) {
3766 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
3767 if (rc == MBX_NOT_FINISHED)
3768 goto out_free_dmabuf;
3769 return;
3772 * For FCoE Mode: fill in all the topology information we need and call
3773 * the READ_TOPOLOGY completion routine to continue without actually
3774 * sending the READ_TOPOLOGY mailbox command to the port.
3776 /* Parse and translate status field */
3777 mb = &pmb->u.mb;
3778 mb->mbxStatus = lpfc_sli4_parse_latt_fault(phba, acqe_link);
3780 /* Parse and translate link attention fields */
3781 la = (struct lpfc_mbx_read_top *) &pmb->u.mb.un.varReadTop;
3782 la->eventTag = acqe_link->event_tag;
3783 bf_set(lpfc_mbx_read_top_att_type, la, att_type);
3784 bf_set(lpfc_mbx_read_top_link_spd, la,
3785 lpfc_sli4_parse_latt_link_speed(phba, acqe_link));
3787 /* Fake the the following irrelvant fields */
3788 bf_set(lpfc_mbx_read_top_topology, la, LPFC_TOPOLOGY_PT_PT);
3789 bf_set(lpfc_mbx_read_top_alpa_granted, la, 0);
3790 bf_set(lpfc_mbx_read_top_il, la, 0);
3791 bf_set(lpfc_mbx_read_top_pb, la, 0);
3792 bf_set(lpfc_mbx_read_top_fa, la, 0);
3793 bf_set(lpfc_mbx_read_top_mm, la, 0);
3795 /* Invoke the lpfc_handle_latt mailbox command callback function */
3796 lpfc_mbx_cmpl_read_topology(phba, pmb);
3798 return;
3800 out_free_dmabuf:
3801 kfree(mp);
3802 out_free_pmb:
3803 mempool_free(pmb, phba->mbox_mem_pool);
3807 * lpfc_sli4_async_fc_evt - Process the asynchronous FC link event
3808 * @phba: pointer to lpfc hba data structure.
3809 * @acqe_fc: pointer to the async fc completion queue entry.
3811 * This routine is to handle the SLI4 asynchronous FC event. It will simply log
3812 * that the event was received and then issue a read_topology mailbox command so
3813 * that the rest of the driver will treat it the same as SLI3.
3815 static void
3816 lpfc_sli4_async_fc_evt(struct lpfc_hba *phba, struct lpfc_acqe_fc_la *acqe_fc)
3818 struct lpfc_dmabuf *mp;
3819 LPFC_MBOXQ_t *pmb;
3820 int rc;
3822 if (bf_get(lpfc_trailer_type, acqe_fc) !=
3823 LPFC_FC_LA_EVENT_TYPE_FC_LINK) {
3824 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
3825 "2895 Non FC link Event detected.(%d)\n",
3826 bf_get(lpfc_trailer_type, acqe_fc));
3827 return;
3829 /* Keep the link status for extra SLI4 state machine reference */
3830 phba->sli4_hba.link_state.speed =
3831 lpfc_sli4_port_speed_parse(phba, LPFC_TRAILER_CODE_FC,
3832 bf_get(lpfc_acqe_fc_la_speed, acqe_fc));
3833 phba->sli4_hba.link_state.duplex = LPFC_ASYNC_LINK_DUPLEX_FULL;
3834 phba->sli4_hba.link_state.topology =
3835 bf_get(lpfc_acqe_fc_la_topology, acqe_fc);
3836 phba->sli4_hba.link_state.status =
3837 bf_get(lpfc_acqe_fc_la_att_type, acqe_fc);
3838 phba->sli4_hba.link_state.type =
3839 bf_get(lpfc_acqe_fc_la_port_type, acqe_fc);
3840 phba->sli4_hba.link_state.number =
3841 bf_get(lpfc_acqe_fc_la_port_number, acqe_fc);
3842 phba->sli4_hba.link_state.fault =
3843 bf_get(lpfc_acqe_link_fault, acqe_fc);
3844 phba->sli4_hba.link_state.logical_speed =
3845 bf_get(lpfc_acqe_fc_la_llink_spd, acqe_fc) * 10;
3846 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
3847 "2896 Async FC event - Speed:%dGBaud Topology:x%x "
3848 "LA Type:x%x Port Type:%d Port Number:%d Logical speed:"
3849 "%dMbps Fault:%d\n",
3850 phba->sli4_hba.link_state.speed,
3851 phba->sli4_hba.link_state.topology,
3852 phba->sli4_hba.link_state.status,
3853 phba->sli4_hba.link_state.type,
3854 phba->sli4_hba.link_state.number,
3855 phba->sli4_hba.link_state.logical_speed,
3856 phba->sli4_hba.link_state.fault);
3857 pmb = (LPFC_MBOXQ_t *)mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
3858 if (!pmb) {
3859 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
3860 "2897 The mboxq allocation failed\n");
3861 return;
3863 mp = kmalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
3864 if (!mp) {
3865 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
3866 "2898 The lpfc_dmabuf allocation failed\n");
3867 goto out_free_pmb;
3869 mp->virt = lpfc_mbuf_alloc(phba, 0, &mp->phys);
3870 if (!mp->virt) {
3871 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
3872 "2899 The mbuf allocation failed\n");
3873 goto out_free_dmabuf;
3876 /* Cleanup any outstanding ELS commands */
3877 lpfc_els_flush_all_cmd(phba);
3879 /* Block ELS IOCBs until we have done process link event */
3880 phba->sli.ring[LPFC_ELS_RING].flag |= LPFC_STOP_IOCB_EVENT;
3882 /* Update link event statistics */
3883 phba->sli.slistat.link_event++;
3885 /* Create lpfc_handle_latt mailbox command from link ACQE */
3886 lpfc_read_topology(phba, pmb, mp);
3887 pmb->mbox_cmpl = lpfc_mbx_cmpl_read_topology;
3888 pmb->vport = phba->pport;
3890 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
3891 if (rc == MBX_NOT_FINISHED)
3892 goto out_free_dmabuf;
3893 return;
3895 out_free_dmabuf:
3896 kfree(mp);
3897 out_free_pmb:
3898 mempool_free(pmb, phba->mbox_mem_pool);
3902 * lpfc_sli4_async_sli_evt - Process the asynchronous SLI link event
3903 * @phba: pointer to lpfc hba data structure.
3904 * @acqe_fc: pointer to the async SLI completion queue entry.
3906 * This routine is to handle the SLI4 asynchronous SLI events.
3908 static void
3909 lpfc_sli4_async_sli_evt(struct lpfc_hba *phba, struct lpfc_acqe_sli *acqe_sli)
3911 char port_name;
3912 char message[128];
3913 uint8_t status;
3914 struct lpfc_acqe_misconfigured_event *misconfigured;
3916 /* special case misconfigured event as it contains data for all ports */
3917 if ((bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf) !=
3918 LPFC_SLI_INTF_IF_TYPE_2) ||
3919 (bf_get(lpfc_trailer_type, acqe_sli) !=
3920 LPFC_SLI_EVENT_TYPE_MISCONFIGURED)) {
3921 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
3922 "2901 Async SLI event - Event Data1:x%08x Event Data2:"
3923 "x%08x SLI Event Type:%d\n",
3924 acqe_sli->event_data1, acqe_sli->event_data2,
3925 bf_get(lpfc_trailer_type, acqe_sli));
3926 return;
3929 port_name = phba->Port[0];
3930 if (port_name == 0x00)
3931 port_name = '?'; /* get port name is empty */
3933 misconfigured = (struct lpfc_acqe_misconfigured_event *)
3934 &acqe_sli->event_data1;
3936 /* fetch the status for this port */
3937 switch (phba->sli4_hba.lnk_info.lnk_no) {
3938 case LPFC_LINK_NUMBER_0:
3939 status = bf_get(lpfc_sli_misconfigured_port0,
3940 &misconfigured->theEvent);
3941 break;
3942 case LPFC_LINK_NUMBER_1:
3943 status = bf_get(lpfc_sli_misconfigured_port1,
3944 &misconfigured->theEvent);
3945 break;
3946 case LPFC_LINK_NUMBER_2:
3947 status = bf_get(lpfc_sli_misconfigured_port2,
3948 &misconfigured->theEvent);
3949 break;
3950 case LPFC_LINK_NUMBER_3:
3951 status = bf_get(lpfc_sli_misconfigured_port3,
3952 &misconfigured->theEvent);
3953 break;
3954 default:
3955 status = ~LPFC_SLI_EVENT_STATUS_VALID;
3956 break;
3959 switch (status) {
3960 case LPFC_SLI_EVENT_STATUS_VALID:
3961 return; /* no message if the sfp is okay */
3962 case LPFC_SLI_EVENT_STATUS_NOT_PRESENT:
3963 sprintf(message, "Optics faulted/incorrectly installed/not " \
3964 "installed - Reseat optics, if issue not "
3965 "resolved, replace.");
3966 break;
3967 case LPFC_SLI_EVENT_STATUS_WRONG_TYPE:
3968 sprintf(message,
3969 "Optics of two types installed - Remove one optic or " \
3970 "install matching pair of optics.");
3971 break;
3972 case LPFC_SLI_EVENT_STATUS_UNSUPPORTED:
3973 sprintf(message, "Incompatible optics - Replace with " \
3974 "compatible optics for card to function.");
3975 break;
3976 default:
3977 /* firmware is reporting a status we don't know about */
3978 sprintf(message, "Unknown event status x%02x", status);
3979 break;
3982 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
3983 "3176 Misconfigured Physical Port - "
3984 "Port Name %c %s\n", port_name, message);
3988 * lpfc_sli4_perform_vport_cvl - Perform clear virtual link on a vport
3989 * @vport: pointer to vport data structure.
3991 * This routine is to perform Clear Virtual Link (CVL) on a vport in
3992 * response to a CVL event.
3994 * Return the pointer to the ndlp with the vport if successful, otherwise
3995 * return NULL.
3997 static struct lpfc_nodelist *
3998 lpfc_sli4_perform_vport_cvl(struct lpfc_vport *vport)
4000 struct lpfc_nodelist *ndlp;
4001 struct Scsi_Host *shost;
4002 struct lpfc_hba *phba;
4004 if (!vport)
4005 return NULL;
4006 phba = vport->phba;
4007 if (!phba)
4008 return NULL;
4009 ndlp = lpfc_findnode_did(vport, Fabric_DID);
4010 if (!ndlp) {
4011 /* Cannot find existing Fabric ndlp, so allocate a new one */
4012 ndlp = mempool_alloc(phba->nlp_mem_pool, GFP_KERNEL);
4013 if (!ndlp)
4014 return 0;
4015 lpfc_nlp_init(vport, ndlp, Fabric_DID);
4016 /* Set the node type */
4017 ndlp->nlp_type |= NLP_FABRIC;
4018 /* Put ndlp onto node list */
4019 lpfc_enqueue_node(vport, ndlp);
4020 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
4021 /* re-setup ndlp without removing from node list */
4022 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
4023 if (!ndlp)
4024 return 0;
4026 if ((phba->pport->port_state < LPFC_FLOGI) &&
4027 (phba->pport->port_state != LPFC_VPORT_FAILED))
4028 return NULL;
4029 /* If virtual link is not yet instantiated ignore CVL */
4030 if ((vport != phba->pport) && (vport->port_state < LPFC_FDISC)
4031 && (vport->port_state != LPFC_VPORT_FAILED))
4032 return NULL;
4033 shost = lpfc_shost_from_vport(vport);
4034 if (!shost)
4035 return NULL;
4036 lpfc_linkdown_port(vport);
4037 lpfc_cleanup_pending_mbox(vport);
4038 spin_lock_irq(shost->host_lock);
4039 vport->fc_flag |= FC_VPORT_CVL_RCVD;
4040 spin_unlock_irq(shost->host_lock);
4042 return ndlp;
4046 * lpfc_sli4_perform_all_vport_cvl - Perform clear virtual link on all vports
4047 * @vport: pointer to lpfc hba data structure.
4049 * This routine is to perform Clear Virtual Link (CVL) on all vports in
4050 * response to a FCF dead event.
4052 static void
4053 lpfc_sli4_perform_all_vport_cvl(struct lpfc_hba *phba)
4055 struct lpfc_vport **vports;
4056 int i;
4058 vports = lpfc_create_vport_work_array(phba);
4059 if (vports)
4060 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++)
4061 lpfc_sli4_perform_vport_cvl(vports[i]);
4062 lpfc_destroy_vport_work_array(phba, vports);
4066 * lpfc_sli4_async_fip_evt - Process the asynchronous FCoE FIP event
4067 * @phba: pointer to lpfc hba data structure.
4068 * @acqe_link: pointer to the async fcoe completion queue entry.
4070 * This routine is to handle the SLI4 asynchronous fcoe event.
4072 static void
4073 lpfc_sli4_async_fip_evt(struct lpfc_hba *phba,
4074 struct lpfc_acqe_fip *acqe_fip)
4076 uint8_t event_type = bf_get(lpfc_trailer_type, acqe_fip);
4077 int rc;
4078 struct lpfc_vport *vport;
4079 struct lpfc_nodelist *ndlp;
4080 struct Scsi_Host *shost;
4081 int active_vlink_present;
4082 struct lpfc_vport **vports;
4083 int i;
4085 phba->fc_eventTag = acqe_fip->event_tag;
4086 phba->fcoe_eventtag = acqe_fip->event_tag;
4087 switch (event_type) {
4088 case LPFC_FIP_EVENT_TYPE_NEW_FCF:
4089 case LPFC_FIP_EVENT_TYPE_FCF_PARAM_MOD:
4090 if (event_type == LPFC_FIP_EVENT_TYPE_NEW_FCF)
4091 lpfc_printf_log(phba, KERN_ERR, LOG_FIP |
4092 LOG_DISCOVERY,
4093 "2546 New FCF event, evt_tag:x%x, "
4094 "index:x%x\n",
4095 acqe_fip->event_tag,
4096 acqe_fip->index);
4097 else
4098 lpfc_printf_log(phba, KERN_WARNING, LOG_FIP |
4099 LOG_DISCOVERY,
4100 "2788 FCF param modified event, "
4101 "evt_tag:x%x, index:x%x\n",
4102 acqe_fip->event_tag,
4103 acqe_fip->index);
4104 if (phba->fcf.fcf_flag & FCF_DISCOVERY) {
4106 * During period of FCF discovery, read the FCF
4107 * table record indexed by the event to update
4108 * FCF roundrobin failover eligible FCF bmask.
4110 lpfc_printf_log(phba, KERN_INFO, LOG_FIP |
4111 LOG_DISCOVERY,
4112 "2779 Read FCF (x%x) for updating "
4113 "roundrobin FCF failover bmask\n",
4114 acqe_fip->index);
4115 rc = lpfc_sli4_read_fcf_rec(phba, acqe_fip->index);
4118 /* If the FCF discovery is in progress, do nothing. */
4119 spin_lock_irq(&phba->hbalock);
4120 if (phba->hba_flag & FCF_TS_INPROG) {
4121 spin_unlock_irq(&phba->hbalock);
4122 break;
4124 /* If fast FCF failover rescan event is pending, do nothing */
4125 if (phba->fcf.fcf_flag & FCF_REDISC_EVT) {
4126 spin_unlock_irq(&phba->hbalock);
4127 break;
4130 /* If the FCF has been in discovered state, do nothing. */
4131 if (phba->fcf.fcf_flag & FCF_SCAN_DONE) {
4132 spin_unlock_irq(&phba->hbalock);
4133 break;
4135 spin_unlock_irq(&phba->hbalock);
4137 /* Otherwise, scan the entire FCF table and re-discover SAN */
4138 lpfc_printf_log(phba, KERN_INFO, LOG_FIP | LOG_DISCOVERY,
4139 "2770 Start FCF table scan per async FCF "
4140 "event, evt_tag:x%x, index:x%x\n",
4141 acqe_fip->event_tag, acqe_fip->index);
4142 rc = lpfc_sli4_fcf_scan_read_fcf_rec(phba,
4143 LPFC_FCOE_FCF_GET_FIRST);
4144 if (rc)
4145 lpfc_printf_log(phba, KERN_ERR, LOG_FIP | LOG_DISCOVERY,
4146 "2547 Issue FCF scan read FCF mailbox "
4147 "command failed (x%x)\n", rc);
4148 break;
4150 case LPFC_FIP_EVENT_TYPE_FCF_TABLE_FULL:
4151 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
4152 "2548 FCF Table full count 0x%x tag 0x%x\n",
4153 bf_get(lpfc_acqe_fip_fcf_count, acqe_fip),
4154 acqe_fip->event_tag);
4155 break;
4157 case LPFC_FIP_EVENT_TYPE_FCF_DEAD:
4158 phba->fcoe_cvl_eventtag = acqe_fip->event_tag;
4159 lpfc_printf_log(phba, KERN_ERR, LOG_FIP | LOG_DISCOVERY,
4160 "2549 FCF (x%x) disconnected from network, "
4161 "tag:x%x\n", acqe_fip->index, acqe_fip->event_tag);
4163 * If we are in the middle of FCF failover process, clear
4164 * the corresponding FCF bit in the roundrobin bitmap.
4166 spin_lock_irq(&phba->hbalock);
4167 if (phba->fcf.fcf_flag & FCF_DISCOVERY) {
4168 spin_unlock_irq(&phba->hbalock);
4169 /* Update FLOGI FCF failover eligible FCF bmask */
4170 lpfc_sli4_fcf_rr_index_clear(phba, acqe_fip->index);
4171 break;
4173 spin_unlock_irq(&phba->hbalock);
4175 /* If the event is not for currently used fcf do nothing */
4176 if (phba->fcf.current_rec.fcf_indx != acqe_fip->index)
4177 break;
4180 * Otherwise, request the port to rediscover the entire FCF
4181 * table for a fast recovery from case that the current FCF
4182 * is no longer valid as we are not in the middle of FCF
4183 * failover process already.
4185 spin_lock_irq(&phba->hbalock);
4186 /* Mark the fast failover process in progress */
4187 phba->fcf.fcf_flag |= FCF_DEAD_DISC;
4188 spin_unlock_irq(&phba->hbalock);
4190 lpfc_printf_log(phba, KERN_INFO, LOG_FIP | LOG_DISCOVERY,
4191 "2771 Start FCF fast failover process due to "
4192 "FCF DEAD event: evt_tag:x%x, fcf_index:x%x "
4193 "\n", acqe_fip->event_tag, acqe_fip->index);
4194 rc = lpfc_sli4_redisc_fcf_table(phba);
4195 if (rc) {
4196 lpfc_printf_log(phba, KERN_ERR, LOG_FIP |
4197 LOG_DISCOVERY,
4198 "2772 Issue FCF rediscover mabilbox "
4199 "command failed, fail through to FCF "
4200 "dead event\n");
4201 spin_lock_irq(&phba->hbalock);
4202 phba->fcf.fcf_flag &= ~FCF_DEAD_DISC;
4203 spin_unlock_irq(&phba->hbalock);
4205 * Last resort will fail over by treating this
4206 * as a link down to FCF registration.
4208 lpfc_sli4_fcf_dead_failthrough(phba);
4209 } else {
4210 /* Reset FCF roundrobin bmask for new discovery */
4211 lpfc_sli4_clear_fcf_rr_bmask(phba);
4213 * Handling fast FCF failover to a DEAD FCF event is
4214 * considered equalivant to receiving CVL to all vports.
4216 lpfc_sli4_perform_all_vport_cvl(phba);
4218 break;
4219 case LPFC_FIP_EVENT_TYPE_CVL:
4220 phba->fcoe_cvl_eventtag = acqe_fip->event_tag;
4221 lpfc_printf_log(phba, KERN_ERR, LOG_FIP | LOG_DISCOVERY,
4222 "2718 Clear Virtual Link Received for VPI 0x%x"
4223 " tag 0x%x\n", acqe_fip->index, acqe_fip->event_tag);
4225 vport = lpfc_find_vport_by_vpid(phba,
4226 acqe_fip->index);
4227 ndlp = lpfc_sli4_perform_vport_cvl(vport);
4228 if (!ndlp)
4229 break;
4230 active_vlink_present = 0;
4232 vports = lpfc_create_vport_work_array(phba);
4233 if (vports) {
4234 for (i = 0; i <= phba->max_vports && vports[i] != NULL;
4235 i++) {
4236 if ((!(vports[i]->fc_flag &
4237 FC_VPORT_CVL_RCVD)) &&
4238 (vports[i]->port_state > LPFC_FDISC)) {
4239 active_vlink_present = 1;
4240 break;
4243 lpfc_destroy_vport_work_array(phba, vports);
4246 if (active_vlink_present) {
4248 * If there are other active VLinks present,
4249 * re-instantiate the Vlink using FDISC.
4251 mod_timer(&ndlp->nlp_delayfunc,
4252 jiffies + msecs_to_jiffies(1000));
4253 shost = lpfc_shost_from_vport(vport);
4254 spin_lock_irq(shost->host_lock);
4255 ndlp->nlp_flag |= NLP_DELAY_TMO;
4256 spin_unlock_irq(shost->host_lock);
4257 ndlp->nlp_last_elscmd = ELS_CMD_FDISC;
4258 vport->port_state = LPFC_FDISC;
4259 } else {
4261 * Otherwise, we request port to rediscover
4262 * the entire FCF table for a fast recovery
4263 * from possible case that the current FCF
4264 * is no longer valid if we are not already
4265 * in the FCF failover process.
4267 spin_lock_irq(&phba->hbalock);
4268 if (phba->fcf.fcf_flag & FCF_DISCOVERY) {
4269 spin_unlock_irq(&phba->hbalock);
4270 break;
4272 /* Mark the fast failover process in progress */
4273 phba->fcf.fcf_flag |= FCF_ACVL_DISC;
4274 spin_unlock_irq(&phba->hbalock);
4275 lpfc_printf_log(phba, KERN_INFO, LOG_FIP |
4276 LOG_DISCOVERY,
4277 "2773 Start FCF failover per CVL, "
4278 "evt_tag:x%x\n", acqe_fip->event_tag);
4279 rc = lpfc_sli4_redisc_fcf_table(phba);
4280 if (rc) {
4281 lpfc_printf_log(phba, KERN_ERR, LOG_FIP |
4282 LOG_DISCOVERY,
4283 "2774 Issue FCF rediscover "
4284 "mabilbox command failed, "
4285 "through to CVL event\n");
4286 spin_lock_irq(&phba->hbalock);
4287 phba->fcf.fcf_flag &= ~FCF_ACVL_DISC;
4288 spin_unlock_irq(&phba->hbalock);
4290 * Last resort will be re-try on the
4291 * the current registered FCF entry.
4293 lpfc_retry_pport_discovery(phba);
4294 } else
4296 * Reset FCF roundrobin bmask for new
4297 * discovery.
4299 lpfc_sli4_clear_fcf_rr_bmask(phba);
4301 break;
4302 default:
4303 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
4304 "0288 Unknown FCoE event type 0x%x event tag "
4305 "0x%x\n", event_type, acqe_fip->event_tag);
4306 break;
4311 * lpfc_sli4_async_dcbx_evt - Process the asynchronous dcbx event
4312 * @phba: pointer to lpfc hba data structure.
4313 * @acqe_link: pointer to the async dcbx completion queue entry.
4315 * This routine is to handle the SLI4 asynchronous dcbx event.
4317 static void
4318 lpfc_sli4_async_dcbx_evt(struct lpfc_hba *phba,
4319 struct lpfc_acqe_dcbx *acqe_dcbx)
4321 phba->fc_eventTag = acqe_dcbx->event_tag;
4322 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
4323 "0290 The SLI4 DCBX asynchronous event is not "
4324 "handled yet\n");
4328 * lpfc_sli4_async_grp5_evt - Process the asynchronous group5 event
4329 * @phba: pointer to lpfc hba data structure.
4330 * @acqe_link: pointer to the async grp5 completion queue entry.
4332 * This routine is to handle the SLI4 asynchronous grp5 event. A grp5 event
4333 * is an asynchronous notified of a logical link speed change. The Port
4334 * reports the logical link speed in units of 10Mbps.
4336 static void
4337 lpfc_sli4_async_grp5_evt(struct lpfc_hba *phba,
4338 struct lpfc_acqe_grp5 *acqe_grp5)
4340 uint16_t prev_ll_spd;
4342 phba->fc_eventTag = acqe_grp5->event_tag;
4343 phba->fcoe_eventtag = acqe_grp5->event_tag;
4344 prev_ll_spd = phba->sli4_hba.link_state.logical_speed;
4345 phba->sli4_hba.link_state.logical_speed =
4346 (bf_get(lpfc_acqe_grp5_llink_spd, acqe_grp5)) * 10;
4347 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
4348 "2789 GRP5 Async Event: Updating logical link speed "
4349 "from %dMbps to %dMbps\n", prev_ll_spd,
4350 phba->sli4_hba.link_state.logical_speed);
4354 * lpfc_sli4_async_event_proc - Process all the pending asynchronous event
4355 * @phba: pointer to lpfc hba data structure.
4357 * This routine is invoked by the worker thread to process all the pending
4358 * SLI4 asynchronous events.
4360 void lpfc_sli4_async_event_proc(struct lpfc_hba *phba)
4362 struct lpfc_cq_event *cq_event;
4364 /* First, declare the async event has been handled */
4365 spin_lock_irq(&phba->hbalock);
4366 phba->hba_flag &= ~ASYNC_EVENT;
4367 spin_unlock_irq(&phba->hbalock);
4368 /* Now, handle all the async events */
4369 while (!list_empty(&phba->sli4_hba.sp_asynce_work_queue)) {
4370 /* Get the first event from the head of the event queue */
4371 spin_lock_irq(&phba->hbalock);
4372 list_remove_head(&phba->sli4_hba.sp_asynce_work_queue,
4373 cq_event, struct lpfc_cq_event, list);
4374 spin_unlock_irq(&phba->hbalock);
4375 /* Process the asynchronous event */
4376 switch (bf_get(lpfc_trailer_code, &cq_event->cqe.mcqe_cmpl)) {
4377 case LPFC_TRAILER_CODE_LINK:
4378 lpfc_sli4_async_link_evt(phba,
4379 &cq_event->cqe.acqe_link);
4380 break;
4381 case LPFC_TRAILER_CODE_FCOE:
4382 lpfc_sli4_async_fip_evt(phba, &cq_event->cqe.acqe_fip);
4383 break;
4384 case LPFC_TRAILER_CODE_DCBX:
4385 lpfc_sli4_async_dcbx_evt(phba,
4386 &cq_event->cqe.acqe_dcbx);
4387 break;
4388 case LPFC_TRAILER_CODE_GRP5:
4389 lpfc_sli4_async_grp5_evt(phba,
4390 &cq_event->cqe.acqe_grp5);
4391 break;
4392 case LPFC_TRAILER_CODE_FC:
4393 lpfc_sli4_async_fc_evt(phba, &cq_event->cqe.acqe_fc);
4394 break;
4395 case LPFC_TRAILER_CODE_SLI:
4396 lpfc_sli4_async_sli_evt(phba, &cq_event->cqe.acqe_sli);
4397 break;
4398 default:
4399 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
4400 "1804 Invalid asynchrous event code: "
4401 "x%x\n", bf_get(lpfc_trailer_code,
4402 &cq_event->cqe.mcqe_cmpl));
4403 break;
4405 /* Free the completion event processed to the free pool */
4406 lpfc_sli4_cq_event_release(phba, cq_event);
4411 * lpfc_sli4_fcf_redisc_event_proc - Process fcf table rediscovery event
4412 * @phba: pointer to lpfc hba data structure.
4414 * This routine is invoked by the worker thread to process FCF table
4415 * rediscovery pending completion event.
4417 void lpfc_sli4_fcf_redisc_event_proc(struct lpfc_hba *phba)
4419 int rc;
4421 spin_lock_irq(&phba->hbalock);
4422 /* Clear FCF rediscovery timeout event */
4423 phba->fcf.fcf_flag &= ~FCF_REDISC_EVT;
4424 /* Clear driver fast failover FCF record flag */
4425 phba->fcf.failover_rec.flag = 0;
4426 /* Set state for FCF fast failover */
4427 phba->fcf.fcf_flag |= FCF_REDISC_FOV;
4428 spin_unlock_irq(&phba->hbalock);
4430 /* Scan FCF table from the first entry to re-discover SAN */
4431 lpfc_printf_log(phba, KERN_INFO, LOG_FIP | LOG_DISCOVERY,
4432 "2777 Start post-quiescent FCF table scan\n");
4433 rc = lpfc_sli4_fcf_scan_read_fcf_rec(phba, LPFC_FCOE_FCF_GET_FIRST);
4434 if (rc)
4435 lpfc_printf_log(phba, KERN_ERR, LOG_FIP | LOG_DISCOVERY,
4436 "2747 Issue FCF scan read FCF mailbox "
4437 "command failed 0x%x\n", rc);
4441 * lpfc_api_table_setup - Set up per hba pci-device group func api jump table
4442 * @phba: pointer to lpfc hba data structure.
4443 * @dev_grp: The HBA PCI-Device group number.
4445 * This routine is invoked to set up the per HBA PCI-Device group function
4446 * API jump table entries.
4448 * Return: 0 if success, otherwise -ENODEV
4451 lpfc_api_table_setup(struct lpfc_hba *phba, uint8_t dev_grp)
4453 int rc;
4455 /* Set up lpfc PCI-device group */
4456 phba->pci_dev_grp = dev_grp;
4458 /* The LPFC_PCI_DEV_OC uses SLI4 */
4459 if (dev_grp == LPFC_PCI_DEV_OC)
4460 phba->sli_rev = LPFC_SLI_REV4;
4462 /* Set up device INIT API function jump table */
4463 rc = lpfc_init_api_table_setup(phba, dev_grp);
4464 if (rc)
4465 return -ENODEV;
4466 /* Set up SCSI API function jump table */
4467 rc = lpfc_scsi_api_table_setup(phba, dev_grp);
4468 if (rc)
4469 return -ENODEV;
4470 /* Set up SLI API function jump table */
4471 rc = lpfc_sli_api_table_setup(phba, dev_grp);
4472 if (rc)
4473 return -ENODEV;
4474 /* Set up MBOX API function jump table */
4475 rc = lpfc_mbox_api_table_setup(phba, dev_grp);
4476 if (rc)
4477 return -ENODEV;
4479 return 0;
4483 * lpfc_log_intr_mode - Log the active interrupt mode
4484 * @phba: pointer to lpfc hba data structure.
4485 * @intr_mode: active interrupt mode adopted.
4487 * This routine it invoked to log the currently used active interrupt mode
4488 * to the device.
4490 static void lpfc_log_intr_mode(struct lpfc_hba *phba, uint32_t intr_mode)
4492 switch (intr_mode) {
4493 case 0:
4494 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
4495 "0470 Enable INTx interrupt mode.\n");
4496 break;
4497 case 1:
4498 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
4499 "0481 Enabled MSI interrupt mode.\n");
4500 break;
4501 case 2:
4502 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
4503 "0480 Enabled MSI-X interrupt mode.\n");
4504 break;
4505 default:
4506 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
4507 "0482 Illegal interrupt mode.\n");
4508 break;
4510 return;
4514 * lpfc_enable_pci_dev - Enable a generic PCI device.
4515 * @phba: pointer to lpfc hba data structure.
4517 * This routine is invoked to enable the PCI device that is common to all
4518 * PCI devices.
4520 * Return codes
4521 * 0 - successful
4522 * other values - error
4524 static int
4525 lpfc_enable_pci_dev(struct lpfc_hba *phba)
4527 struct pci_dev *pdev;
4528 int bars = 0;
4530 /* Obtain PCI device reference */
4531 if (!phba->pcidev)
4532 goto out_error;
4533 else
4534 pdev = phba->pcidev;
4535 /* Select PCI BARs */
4536 bars = pci_select_bars(pdev, IORESOURCE_MEM);
4537 /* Enable PCI device */
4538 if (pci_enable_device_mem(pdev))
4539 goto out_error;
4540 /* Request PCI resource for the device */
4541 if (pci_request_selected_regions(pdev, bars, LPFC_DRIVER_NAME))
4542 goto out_disable_device;
4543 /* Set up device as PCI master and save state for EEH */
4544 pci_set_master(pdev);
4545 pci_try_set_mwi(pdev);
4546 pci_save_state(pdev);
4548 /* PCIe EEH recovery on powerpc platforms needs fundamental reset */
4549 if (pci_find_capability(pdev, PCI_CAP_ID_EXP))
4550 pdev->needs_freset = 1;
4552 return 0;
4554 out_disable_device:
4555 pci_disable_device(pdev);
4556 out_error:
4557 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
4558 "1401 Failed to enable pci device, bars:x%x\n", bars);
4559 return -ENODEV;
4563 * lpfc_disable_pci_dev - Disable a generic PCI device.
4564 * @phba: pointer to lpfc hba data structure.
4566 * This routine is invoked to disable the PCI device that is common to all
4567 * PCI devices.
4569 static void
4570 lpfc_disable_pci_dev(struct lpfc_hba *phba)
4572 struct pci_dev *pdev;
4573 int bars;
4575 /* Obtain PCI device reference */
4576 if (!phba->pcidev)
4577 return;
4578 else
4579 pdev = phba->pcidev;
4580 /* Select PCI BARs */
4581 bars = pci_select_bars(pdev, IORESOURCE_MEM);
4582 /* Release PCI resource and disable PCI device */
4583 pci_release_selected_regions(pdev, bars);
4584 pci_disable_device(pdev);
4585 /* Null out PCI private reference to driver */
4586 pci_set_drvdata(pdev, NULL);
4588 return;
4592 * lpfc_reset_hba - Reset a hba
4593 * @phba: pointer to lpfc hba data structure.
4595 * This routine is invoked to reset a hba device. It brings the HBA
4596 * offline, performs a board restart, and then brings the board back
4597 * online. The lpfc_offline calls lpfc_sli_hba_down which will clean up
4598 * on outstanding mailbox commands.
4600 void
4601 lpfc_reset_hba(struct lpfc_hba *phba)
4603 /* If resets are disabled then set error state and return. */
4604 if (!phba->cfg_enable_hba_reset) {
4605 phba->link_state = LPFC_HBA_ERROR;
4606 return;
4608 lpfc_offline_prep(phba, LPFC_MBX_WAIT);
4609 lpfc_offline(phba);
4610 lpfc_sli_brdrestart(phba);
4611 lpfc_online(phba);
4612 lpfc_unblock_mgmt_io(phba);
4616 * lpfc_sli_sriov_nr_virtfn_get - Get the number of sr-iov virtual functions
4617 * @phba: pointer to lpfc hba data structure.
4619 * This function enables the PCI SR-IOV virtual functions to a physical
4620 * function. It invokes the PCI SR-IOV api with the @nr_vfn provided to
4621 * enable the number of virtual functions to the physical function. As
4622 * not all devices support SR-IOV, the return code from the pci_enable_sriov()
4623 * API call does not considered as an error condition for most of the device.
4625 uint16_t
4626 lpfc_sli_sriov_nr_virtfn_get(struct lpfc_hba *phba)
4628 struct pci_dev *pdev = phba->pcidev;
4629 uint16_t nr_virtfn;
4630 int pos;
4632 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_SRIOV);
4633 if (pos == 0)
4634 return 0;
4636 pci_read_config_word(pdev, pos + PCI_SRIOV_TOTAL_VF, &nr_virtfn);
4637 return nr_virtfn;
4641 * lpfc_sli_probe_sriov_nr_virtfn - Enable a number of sr-iov virtual functions
4642 * @phba: pointer to lpfc hba data structure.
4643 * @nr_vfn: number of virtual functions to be enabled.
4645 * This function enables the PCI SR-IOV virtual functions to a physical
4646 * function. It invokes the PCI SR-IOV api with the @nr_vfn provided to
4647 * enable the number of virtual functions to the physical function. As
4648 * not all devices support SR-IOV, the return code from the pci_enable_sriov()
4649 * API call does not considered as an error condition for most of the device.
4652 lpfc_sli_probe_sriov_nr_virtfn(struct lpfc_hba *phba, int nr_vfn)
4654 struct pci_dev *pdev = phba->pcidev;
4655 uint16_t max_nr_vfn;
4656 int rc;
4658 max_nr_vfn = lpfc_sli_sriov_nr_virtfn_get(phba);
4659 if (nr_vfn > max_nr_vfn) {
4660 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
4661 "3057 Requested vfs (%d) greater than "
4662 "supported vfs (%d)", nr_vfn, max_nr_vfn);
4663 return -EINVAL;
4666 rc = pci_enable_sriov(pdev, nr_vfn);
4667 if (rc) {
4668 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
4669 "2806 Failed to enable sriov on this device "
4670 "with vfn number nr_vf:%d, rc:%d\n",
4671 nr_vfn, rc);
4672 } else
4673 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
4674 "2807 Successful enable sriov on this device "
4675 "with vfn number nr_vf:%d\n", nr_vfn);
4676 return rc;
4680 * lpfc_sli_driver_resource_setup - Setup driver internal resources for SLI3 dev.
4681 * @phba: pointer to lpfc hba data structure.
4683 * This routine is invoked to set up the driver internal resources specific to
4684 * support the SLI-3 HBA device it attached to.
4686 * Return codes
4687 * 0 - successful
4688 * other values - error
4690 static int
4691 lpfc_sli_driver_resource_setup(struct lpfc_hba *phba)
4693 struct lpfc_sli *psli;
4694 int rc;
4697 * Initialize timers used by driver
4700 /* Heartbeat timer */
4701 init_timer(&phba->hb_tmofunc);
4702 phba->hb_tmofunc.function = lpfc_hb_timeout;
4703 phba->hb_tmofunc.data = (unsigned long)phba;
4705 psli = &phba->sli;
4706 /* MBOX heartbeat timer */
4707 init_timer(&psli->mbox_tmo);
4708 psli->mbox_tmo.function = lpfc_mbox_timeout;
4709 psli->mbox_tmo.data = (unsigned long) phba;
4710 /* FCP polling mode timer */
4711 init_timer(&phba->fcp_poll_timer);
4712 phba->fcp_poll_timer.function = lpfc_poll_timeout;
4713 phba->fcp_poll_timer.data = (unsigned long) phba;
4714 /* Fabric block timer */
4715 init_timer(&phba->fabric_block_timer);
4716 phba->fabric_block_timer.function = lpfc_fabric_block_timeout;
4717 phba->fabric_block_timer.data = (unsigned long) phba;
4718 /* EA polling mode timer */
4719 init_timer(&phba->eratt_poll);
4720 phba->eratt_poll.function = lpfc_poll_eratt;
4721 phba->eratt_poll.data = (unsigned long) phba;
4723 /* Host attention work mask setup */
4724 phba->work_ha_mask = (HA_ERATT | HA_MBATT | HA_LATT);
4725 phba->work_ha_mask |= (HA_RXMASK << (LPFC_ELS_RING * 4));
4727 /* Get all the module params for configuring this host */
4728 lpfc_get_cfgparam(phba);
4729 if (phba->pcidev->device == PCI_DEVICE_ID_HORNET) {
4730 phba->menlo_flag |= HBA_MENLO_SUPPORT;
4731 /* check for menlo minimum sg count */
4732 if (phba->cfg_sg_seg_cnt < LPFC_DEFAULT_MENLO_SG_SEG_CNT)
4733 phba->cfg_sg_seg_cnt = LPFC_DEFAULT_MENLO_SG_SEG_CNT;
4736 if (!phba->sli.ring)
4737 phba->sli.ring = (struct lpfc_sli_ring *)
4738 kzalloc(LPFC_SLI3_MAX_RING *
4739 sizeof(struct lpfc_sli_ring), GFP_KERNEL);
4740 if (!phba->sli.ring)
4741 return -ENOMEM;
4744 * Since lpfc_sg_seg_cnt is module parameter, the sg_dma_buf_size
4745 * used to create the sg_dma_buf_pool must be dynamically calculated.
4748 /* Initialize the host templates the configured values. */
4749 lpfc_vport_template.sg_tablesize = phba->cfg_sg_seg_cnt;
4750 lpfc_template.sg_tablesize = phba->cfg_sg_seg_cnt;
4752 /* There are going to be 2 reserved BDEs: 1 FCP cmnd + 1 FCP rsp */
4753 if (phba->cfg_enable_bg) {
4755 * The scsi_buf for a T10-DIF I/O will hold the FCP cmnd,
4756 * the FCP rsp, and a BDE for each. Sice we have no control
4757 * over how many protection data segments the SCSI Layer
4758 * will hand us (ie: there could be one for every block
4759 * in the IO), we just allocate enough BDEs to accomidate
4760 * our max amount and we need to limit lpfc_sg_seg_cnt to
4761 * minimize the risk of running out.
4763 phba->cfg_sg_dma_buf_size = sizeof(struct fcp_cmnd) +
4764 sizeof(struct fcp_rsp) +
4765 (LPFC_MAX_SG_SEG_CNT * sizeof(struct ulp_bde64));
4767 if (phba->cfg_sg_seg_cnt > LPFC_MAX_SG_SEG_CNT_DIF)
4768 phba->cfg_sg_seg_cnt = LPFC_MAX_SG_SEG_CNT_DIF;
4770 /* Total BDEs in BPL for scsi_sg_list and scsi_sg_prot_list */
4771 phba->cfg_total_seg_cnt = LPFC_MAX_SG_SEG_CNT;
4772 } else {
4774 * The scsi_buf for a regular I/O will hold the FCP cmnd,
4775 * the FCP rsp, a BDE for each, and a BDE for up to
4776 * cfg_sg_seg_cnt data segments.
4778 phba->cfg_sg_dma_buf_size = sizeof(struct fcp_cmnd) +
4779 sizeof(struct fcp_rsp) +
4780 ((phba->cfg_sg_seg_cnt + 2) * sizeof(struct ulp_bde64));
4782 /* Total BDEs in BPL for scsi_sg_list */
4783 phba->cfg_total_seg_cnt = phba->cfg_sg_seg_cnt + 2;
4786 lpfc_printf_log(phba, KERN_INFO, LOG_INIT | LOG_FCP,
4787 "9088 sg_tablesize:%d dmabuf_size:%d total_bde:%d\n",
4788 phba->cfg_sg_seg_cnt, phba->cfg_sg_dma_buf_size,
4789 phba->cfg_total_seg_cnt);
4791 phba->max_vpi = LPFC_MAX_VPI;
4792 /* This will be set to correct value after config_port mbox */
4793 phba->max_vports = 0;
4796 * Initialize the SLI Layer to run with lpfc HBAs.
4798 lpfc_sli_setup(phba);
4799 lpfc_sli_queue_setup(phba);
4801 /* Allocate device driver memory */
4802 if (lpfc_mem_alloc(phba, BPL_ALIGN_SZ))
4803 return -ENOMEM;
4806 * Enable sr-iov virtual functions if supported and configured
4807 * through the module parameter.
4809 if (phba->cfg_sriov_nr_virtfn > 0) {
4810 rc = lpfc_sli_probe_sriov_nr_virtfn(phba,
4811 phba->cfg_sriov_nr_virtfn);
4812 if (rc) {
4813 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
4814 "2808 Requested number of SR-IOV "
4815 "virtual functions (%d) is not "
4816 "supported\n",
4817 phba->cfg_sriov_nr_virtfn);
4818 phba->cfg_sriov_nr_virtfn = 0;
4822 return 0;
4826 * lpfc_sli_driver_resource_unset - Unset drvr internal resources for SLI3 dev
4827 * @phba: pointer to lpfc hba data structure.
4829 * This routine is invoked to unset the driver internal resources set up
4830 * specific for supporting the SLI-3 HBA device it attached to.
4832 static void
4833 lpfc_sli_driver_resource_unset(struct lpfc_hba *phba)
4835 /* Free device driver memory allocated */
4836 lpfc_mem_free_all(phba);
4838 return;
4842 * lpfc_sli4_driver_resource_setup - Setup drvr internal resources for SLI4 dev
4843 * @phba: pointer to lpfc hba data structure.
4845 * This routine is invoked to set up the driver internal resources specific to
4846 * support the SLI-4 HBA device it attached to.
4848 * Return codes
4849 * 0 - successful
4850 * other values - error
4852 static int
4853 lpfc_sli4_driver_resource_setup(struct lpfc_hba *phba)
4855 struct lpfc_vector_map_info *cpup;
4856 struct lpfc_sli *psli;
4857 LPFC_MBOXQ_t *mboxq;
4858 int rc, i, hbq_count, max_buf_size;
4859 uint8_t pn_page[LPFC_MAX_SUPPORTED_PAGES] = {0};
4860 struct lpfc_mqe *mqe;
4861 int longs;
4863 /* Get all the module params for configuring this host */
4864 lpfc_get_cfgparam(phba);
4866 /* Before proceed, wait for POST done and device ready */
4867 rc = lpfc_sli4_post_status_check(phba);
4868 if (rc)
4869 return -ENODEV;
4872 * Initialize timers used by driver
4875 /* Heartbeat timer */
4876 init_timer(&phba->hb_tmofunc);
4877 phba->hb_tmofunc.function = lpfc_hb_timeout;
4878 phba->hb_tmofunc.data = (unsigned long)phba;
4879 init_timer(&phba->rrq_tmr);
4880 phba->rrq_tmr.function = lpfc_rrq_timeout;
4881 phba->rrq_tmr.data = (unsigned long)phba;
4883 psli = &phba->sli;
4884 /* MBOX heartbeat timer */
4885 init_timer(&psli->mbox_tmo);
4886 psli->mbox_tmo.function = lpfc_mbox_timeout;
4887 psli->mbox_tmo.data = (unsigned long) phba;
4888 /* Fabric block timer */
4889 init_timer(&phba->fabric_block_timer);
4890 phba->fabric_block_timer.function = lpfc_fabric_block_timeout;
4891 phba->fabric_block_timer.data = (unsigned long) phba;
4892 /* EA polling mode timer */
4893 init_timer(&phba->eratt_poll);
4894 phba->eratt_poll.function = lpfc_poll_eratt;
4895 phba->eratt_poll.data = (unsigned long) phba;
4896 /* FCF rediscover timer */
4897 init_timer(&phba->fcf.redisc_wait);
4898 phba->fcf.redisc_wait.function = lpfc_sli4_fcf_redisc_wait_tmo;
4899 phba->fcf.redisc_wait.data = (unsigned long)phba;
4902 * Control structure for handling external multi-buffer mailbox
4903 * command pass-through.
4905 memset((uint8_t *)&phba->mbox_ext_buf_ctx, 0,
4906 sizeof(struct lpfc_mbox_ext_buf_ctx));
4907 INIT_LIST_HEAD(&phba->mbox_ext_buf_ctx.ext_dmabuf_list);
4909 phba->max_vpi = LPFC_MAX_VPI;
4911 /* This will be set to correct value after the read_config mbox */
4912 phba->max_vports = 0;
4914 /* Program the default value of vlan_id and fc_map */
4915 phba->valid_vlan = 0;
4916 phba->fc_map[0] = LPFC_FCOE_FCF_MAP0;
4917 phba->fc_map[1] = LPFC_FCOE_FCF_MAP1;
4918 phba->fc_map[2] = LPFC_FCOE_FCF_MAP2;
4921 * For SLI4, instead of using ring 0 (LPFC_FCP_RING) for FCP commands
4922 * we will associate a new ring, for each FCP fastpath EQ/CQ/WQ tuple.
4924 if (!phba->sli.ring)
4925 phba->sli.ring = kzalloc(
4926 (LPFC_SLI3_MAX_RING + phba->cfg_fcp_io_channel) *
4927 sizeof(struct lpfc_sli_ring), GFP_KERNEL);
4928 if (!phba->sli.ring)
4929 return -ENOMEM;
4932 * It doesn't matter what family our adapter is in, we are
4933 * limited to 2 Pages, 512 SGEs, for our SGL.
4934 * There are going to be 2 reserved SGEs: 1 FCP cmnd + 1 FCP rsp
4936 max_buf_size = (2 * SLI4_PAGE_SIZE);
4937 if (phba->cfg_sg_seg_cnt > LPFC_MAX_SGL_SEG_CNT - 2)
4938 phba->cfg_sg_seg_cnt = LPFC_MAX_SGL_SEG_CNT - 2;
4941 * Since lpfc_sg_seg_cnt is module parameter, the sg_dma_buf_size
4942 * used to create the sg_dma_buf_pool must be dynamically calculated.
4945 if (phba->cfg_enable_bg) {
4947 * The scsi_buf for a T10-DIF I/O will hold the FCP cmnd,
4948 * the FCP rsp, and a SGE for each. Sice we have no control
4949 * over how many protection data segments the SCSI Layer
4950 * will hand us (ie: there could be one for every block
4951 * in the IO), we just allocate enough SGEs to accomidate
4952 * our max amount and we need to limit lpfc_sg_seg_cnt to
4953 * minimize the risk of running out.
4955 phba->cfg_sg_dma_buf_size = sizeof(struct fcp_cmnd) +
4956 sizeof(struct fcp_rsp) + max_buf_size;
4958 /* Total SGEs for scsi_sg_list and scsi_sg_prot_list */
4959 phba->cfg_total_seg_cnt = LPFC_MAX_SGL_SEG_CNT;
4961 if (phba->cfg_sg_seg_cnt > LPFC_MAX_SG_SLI4_SEG_CNT_DIF)
4962 phba->cfg_sg_seg_cnt = LPFC_MAX_SG_SLI4_SEG_CNT_DIF;
4963 } else {
4965 * The scsi_buf for a regular I/O will hold the FCP cmnd,
4966 * the FCP rsp, a SGE for each, and a SGE for up to
4967 * cfg_sg_seg_cnt data segments.
4969 phba->cfg_sg_dma_buf_size = sizeof(struct fcp_cmnd) +
4970 sizeof(struct fcp_rsp) +
4971 ((phba->cfg_sg_seg_cnt + 2) * sizeof(struct sli4_sge));
4973 /* Total SGEs for scsi_sg_list */
4974 phba->cfg_total_seg_cnt = phba->cfg_sg_seg_cnt + 2;
4976 * NOTE: if (phba->cfg_sg_seg_cnt + 2) <= 256 we only need
4977 * to post 1 page for the SGL.
4981 /* Initialize the host templates with the updated values. */
4982 lpfc_vport_template.sg_tablesize = phba->cfg_sg_seg_cnt;
4983 lpfc_template.sg_tablesize = phba->cfg_sg_seg_cnt;
4985 if (phba->cfg_sg_dma_buf_size <= LPFC_MIN_SG_SLI4_BUF_SZ)
4986 phba->cfg_sg_dma_buf_size = LPFC_MIN_SG_SLI4_BUF_SZ;
4987 else
4988 phba->cfg_sg_dma_buf_size =
4989 SLI4_PAGE_ALIGN(phba->cfg_sg_dma_buf_size);
4991 lpfc_printf_log(phba, KERN_INFO, LOG_INIT | LOG_FCP,
4992 "9087 sg_tablesize:%d dmabuf_size:%d total_sge:%d\n",
4993 phba->cfg_sg_seg_cnt, phba->cfg_sg_dma_buf_size,
4994 phba->cfg_total_seg_cnt);
4996 /* Initialize buffer queue management fields */
4997 hbq_count = lpfc_sli_hbq_count();
4998 for (i = 0; i < hbq_count; ++i)
4999 INIT_LIST_HEAD(&phba->hbqs[i].hbq_buffer_list);
5000 INIT_LIST_HEAD(&phba->rb_pend_list);
5001 phba->hbqs[LPFC_ELS_HBQ].hbq_alloc_buffer = lpfc_sli4_rb_alloc;
5002 phba->hbqs[LPFC_ELS_HBQ].hbq_free_buffer = lpfc_sli4_rb_free;
5005 * Initialize the SLI Layer to run with lpfc SLI4 HBAs.
5007 /* Initialize the Abort scsi buffer list used by driver */
5008 spin_lock_init(&phba->sli4_hba.abts_scsi_buf_list_lock);
5009 INIT_LIST_HEAD(&phba->sli4_hba.lpfc_abts_scsi_buf_list);
5010 /* This abort list used by worker thread */
5011 spin_lock_init(&phba->sli4_hba.abts_sgl_list_lock);
5014 * Initialize driver internal slow-path work queues
5017 /* Driver internel slow-path CQ Event pool */
5018 INIT_LIST_HEAD(&phba->sli4_hba.sp_cqe_event_pool);
5019 /* Response IOCB work queue list */
5020 INIT_LIST_HEAD(&phba->sli4_hba.sp_queue_event);
5021 /* Asynchronous event CQ Event work queue list */
5022 INIT_LIST_HEAD(&phba->sli4_hba.sp_asynce_work_queue);
5023 /* Fast-path XRI aborted CQ Event work queue list */
5024 INIT_LIST_HEAD(&phba->sli4_hba.sp_fcp_xri_aborted_work_queue);
5025 /* Slow-path XRI aborted CQ Event work queue list */
5026 INIT_LIST_HEAD(&phba->sli4_hba.sp_els_xri_aborted_work_queue);
5027 /* Receive queue CQ Event work queue list */
5028 INIT_LIST_HEAD(&phba->sli4_hba.sp_unsol_work_queue);
5030 /* Initialize extent block lists. */
5031 INIT_LIST_HEAD(&phba->sli4_hba.lpfc_rpi_blk_list);
5032 INIT_LIST_HEAD(&phba->sli4_hba.lpfc_xri_blk_list);
5033 INIT_LIST_HEAD(&phba->sli4_hba.lpfc_vfi_blk_list);
5034 INIT_LIST_HEAD(&phba->lpfc_vpi_blk_list);
5036 /* Initialize the driver internal SLI layer lists. */
5037 lpfc_sli_setup(phba);
5038 lpfc_sli_queue_setup(phba);
5040 /* Allocate device driver memory */
5041 rc = lpfc_mem_alloc(phba, SGL_ALIGN_SZ);
5042 if (rc)
5043 return -ENOMEM;
5045 /* IF Type 2 ports get initialized now. */
5046 if (bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf) ==
5047 LPFC_SLI_INTF_IF_TYPE_2) {
5048 rc = lpfc_pci_function_reset(phba);
5049 if (unlikely(rc))
5050 return -ENODEV;
5053 /* Create the bootstrap mailbox command */
5054 rc = lpfc_create_bootstrap_mbox(phba);
5055 if (unlikely(rc))
5056 goto out_free_mem;
5058 /* Set up the host's endian order with the device. */
5059 rc = lpfc_setup_endian_order(phba);
5060 if (unlikely(rc))
5061 goto out_free_bsmbx;
5063 /* Set up the hba's configuration parameters. */
5064 rc = lpfc_sli4_read_config(phba);
5065 if (unlikely(rc))
5066 goto out_free_bsmbx;
5068 /* IF Type 0 ports get initialized now. */
5069 if (bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf) ==
5070 LPFC_SLI_INTF_IF_TYPE_0) {
5071 rc = lpfc_pci_function_reset(phba);
5072 if (unlikely(rc))
5073 goto out_free_bsmbx;
5076 mboxq = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool,
5077 GFP_KERNEL);
5078 if (!mboxq) {
5079 rc = -ENOMEM;
5080 goto out_free_bsmbx;
5083 /* Get the Supported Pages if PORT_CAPABILITIES is supported by port. */
5084 lpfc_supported_pages(mboxq);
5085 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
5086 if (!rc) {
5087 mqe = &mboxq->u.mqe;
5088 memcpy(&pn_page[0], ((uint8_t *)&mqe->un.supp_pages.word3),
5089 LPFC_MAX_SUPPORTED_PAGES);
5090 for (i = 0; i < LPFC_MAX_SUPPORTED_PAGES; i++) {
5091 switch (pn_page[i]) {
5092 case LPFC_SLI4_PARAMETERS:
5093 phba->sli4_hba.pc_sli4_params.supported = 1;
5094 break;
5095 default:
5096 break;
5099 /* Read the port's SLI4 Parameters capabilities if supported. */
5100 if (phba->sli4_hba.pc_sli4_params.supported)
5101 rc = lpfc_pc_sli4_params_get(phba, mboxq);
5102 if (rc) {
5103 mempool_free(mboxq, phba->mbox_mem_pool);
5104 rc = -EIO;
5105 goto out_free_bsmbx;
5109 * Get sli4 parameters that override parameters from Port capabilities.
5110 * If this call fails, it isn't critical unless the SLI4 parameters come
5111 * back in conflict.
5113 rc = lpfc_get_sli4_parameters(phba, mboxq);
5114 if (rc) {
5115 if (phba->sli4_hba.extents_in_use &&
5116 phba->sli4_hba.rpi_hdrs_in_use) {
5117 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5118 "2999 Unsupported SLI4 Parameters "
5119 "Extents and RPI headers enabled.\n");
5120 goto out_free_bsmbx;
5123 mempool_free(mboxq, phba->mbox_mem_pool);
5124 /* Verify all the SLI4 queues */
5125 rc = lpfc_sli4_queue_verify(phba);
5126 if (rc)
5127 goto out_free_bsmbx;
5129 /* Create driver internal CQE event pool */
5130 rc = lpfc_sli4_cq_event_pool_create(phba);
5131 if (rc)
5132 goto out_free_bsmbx;
5134 /* Initialize sgl lists per host */
5135 lpfc_init_sgl_list(phba);
5137 /* Allocate and initialize active sgl array */
5138 rc = lpfc_init_active_sgl_array(phba);
5139 if (rc) {
5140 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5141 "1430 Failed to initialize sgl list.\n");
5142 goto out_destroy_cq_event_pool;
5144 rc = lpfc_sli4_init_rpi_hdrs(phba);
5145 if (rc) {
5146 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5147 "1432 Failed to initialize rpi headers.\n");
5148 goto out_free_active_sgl;
5151 /* Allocate eligible FCF bmask memory for FCF roundrobin failover */
5152 longs = (LPFC_SLI4_FCF_TBL_INDX_MAX + BITS_PER_LONG - 1)/BITS_PER_LONG;
5153 phba->fcf.fcf_rr_bmask = kzalloc(longs * sizeof(unsigned long),
5154 GFP_KERNEL);
5155 if (!phba->fcf.fcf_rr_bmask) {
5156 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5157 "2759 Failed allocate memory for FCF round "
5158 "robin failover bmask\n");
5159 rc = -ENOMEM;
5160 goto out_remove_rpi_hdrs;
5163 phba->sli4_hba.fcp_eq_hdl =
5164 kzalloc((sizeof(struct lpfc_fcp_eq_hdl) *
5165 phba->cfg_fcp_io_channel), GFP_KERNEL);
5166 if (!phba->sli4_hba.fcp_eq_hdl) {
5167 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5168 "2572 Failed allocate memory for "
5169 "fast-path per-EQ handle array\n");
5170 rc = -ENOMEM;
5171 goto out_free_fcf_rr_bmask;
5174 phba->sli4_hba.msix_entries = kzalloc((sizeof(struct msix_entry) *
5175 phba->cfg_fcp_io_channel), GFP_KERNEL);
5176 if (!phba->sli4_hba.msix_entries) {
5177 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5178 "2573 Failed allocate memory for msi-x "
5179 "interrupt vector entries\n");
5180 rc = -ENOMEM;
5181 goto out_free_fcp_eq_hdl;
5184 phba->sli4_hba.cpu_map = kzalloc((sizeof(struct lpfc_vector_map_info) *
5185 phba->sli4_hba.num_present_cpu),
5186 GFP_KERNEL);
5187 if (!phba->sli4_hba.cpu_map) {
5188 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5189 "3327 Failed allocate memory for msi-x "
5190 "interrupt vector mapping\n");
5191 rc = -ENOMEM;
5192 goto out_free_msix;
5194 if (lpfc_used_cpu == NULL) {
5195 lpfc_used_cpu = kzalloc((sizeof(uint16_t) * lpfc_present_cpu),
5196 GFP_KERNEL);
5197 if (!lpfc_used_cpu) {
5198 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5199 "3335 Failed allocate memory for msi-x "
5200 "interrupt vector mapping\n");
5201 kfree(phba->sli4_hba.cpu_map);
5202 rc = -ENOMEM;
5203 goto out_free_msix;
5205 for (i = 0; i < lpfc_present_cpu; i++)
5206 lpfc_used_cpu[i] = LPFC_VECTOR_MAP_EMPTY;
5209 /* Initialize io channels for round robin */
5210 cpup = phba->sli4_hba.cpu_map;
5211 rc = 0;
5212 for (i = 0; i < phba->sli4_hba.num_present_cpu; i++) {
5213 cpup->channel_id = rc;
5214 rc++;
5215 if (rc >= phba->cfg_fcp_io_channel)
5216 rc = 0;
5220 * Enable sr-iov virtual functions if supported and configured
5221 * through the module parameter.
5223 if (phba->cfg_sriov_nr_virtfn > 0) {
5224 rc = lpfc_sli_probe_sriov_nr_virtfn(phba,
5225 phba->cfg_sriov_nr_virtfn);
5226 if (rc) {
5227 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
5228 "3020 Requested number of SR-IOV "
5229 "virtual functions (%d) is not "
5230 "supported\n",
5231 phba->cfg_sriov_nr_virtfn);
5232 phba->cfg_sriov_nr_virtfn = 0;
5236 return 0;
5238 out_free_msix:
5239 kfree(phba->sli4_hba.msix_entries);
5240 out_free_fcp_eq_hdl:
5241 kfree(phba->sli4_hba.fcp_eq_hdl);
5242 out_free_fcf_rr_bmask:
5243 kfree(phba->fcf.fcf_rr_bmask);
5244 out_remove_rpi_hdrs:
5245 lpfc_sli4_remove_rpi_hdrs(phba);
5246 out_free_active_sgl:
5247 lpfc_free_active_sgl(phba);
5248 out_destroy_cq_event_pool:
5249 lpfc_sli4_cq_event_pool_destroy(phba);
5250 out_free_bsmbx:
5251 lpfc_destroy_bootstrap_mbox(phba);
5252 out_free_mem:
5253 lpfc_mem_free(phba);
5254 return rc;
5258 * lpfc_sli4_driver_resource_unset - Unset drvr internal resources for SLI4 dev
5259 * @phba: pointer to lpfc hba data structure.
5261 * This routine is invoked to unset the driver internal resources set up
5262 * specific for supporting the SLI-4 HBA device it attached to.
5264 static void
5265 lpfc_sli4_driver_resource_unset(struct lpfc_hba *phba)
5267 struct lpfc_fcf_conn_entry *conn_entry, *next_conn_entry;
5269 /* Free memory allocated for msi-x interrupt vector to CPU mapping */
5270 kfree(phba->sli4_hba.cpu_map);
5271 phba->sli4_hba.num_present_cpu = 0;
5272 phba->sli4_hba.num_online_cpu = 0;
5274 /* Free memory allocated for msi-x interrupt vector entries */
5275 kfree(phba->sli4_hba.msix_entries);
5277 /* Free memory allocated for fast-path work queue handles */
5278 kfree(phba->sli4_hba.fcp_eq_hdl);
5280 /* Free the allocated rpi headers. */
5281 lpfc_sli4_remove_rpi_hdrs(phba);
5282 lpfc_sli4_remove_rpis(phba);
5284 /* Free eligible FCF index bmask */
5285 kfree(phba->fcf.fcf_rr_bmask);
5287 /* Free the ELS sgl list */
5288 lpfc_free_active_sgl(phba);
5289 lpfc_free_els_sgl_list(phba);
5291 /* Free the completion queue EQ event pool */
5292 lpfc_sli4_cq_event_release_all(phba);
5293 lpfc_sli4_cq_event_pool_destroy(phba);
5295 /* Release resource identifiers. */
5296 lpfc_sli4_dealloc_resource_identifiers(phba);
5298 /* Free the bsmbx region. */
5299 lpfc_destroy_bootstrap_mbox(phba);
5301 /* Free the SLI Layer memory with SLI4 HBAs */
5302 lpfc_mem_free_all(phba);
5304 /* Free the current connect table */
5305 list_for_each_entry_safe(conn_entry, next_conn_entry,
5306 &phba->fcf_conn_rec_list, list) {
5307 list_del_init(&conn_entry->list);
5308 kfree(conn_entry);
5311 return;
5315 * lpfc_init_api_table_setup - Set up init api function jump table
5316 * @phba: The hba struct for which this call is being executed.
5317 * @dev_grp: The HBA PCI-Device group number.
5319 * This routine sets up the device INIT interface API function jump table
5320 * in @phba struct.
5322 * Returns: 0 - success, -ENODEV - failure.
5325 lpfc_init_api_table_setup(struct lpfc_hba *phba, uint8_t dev_grp)
5327 phba->lpfc_hba_init_link = lpfc_hba_init_link;
5328 phba->lpfc_hba_down_link = lpfc_hba_down_link;
5329 phba->lpfc_selective_reset = lpfc_selective_reset;
5330 switch (dev_grp) {
5331 case LPFC_PCI_DEV_LP:
5332 phba->lpfc_hba_down_post = lpfc_hba_down_post_s3;
5333 phba->lpfc_handle_eratt = lpfc_handle_eratt_s3;
5334 phba->lpfc_stop_port = lpfc_stop_port_s3;
5335 break;
5336 case LPFC_PCI_DEV_OC:
5337 phba->lpfc_hba_down_post = lpfc_hba_down_post_s4;
5338 phba->lpfc_handle_eratt = lpfc_handle_eratt_s4;
5339 phba->lpfc_stop_port = lpfc_stop_port_s4;
5340 break;
5341 default:
5342 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5343 "1431 Invalid HBA PCI-device group: 0x%x\n",
5344 dev_grp);
5345 return -ENODEV;
5346 break;
5348 return 0;
5352 * lpfc_setup_driver_resource_phase1 - Phase1 etup driver internal resources.
5353 * @phba: pointer to lpfc hba data structure.
5355 * This routine is invoked to set up the driver internal resources before the
5356 * device specific resource setup to support the HBA device it attached to.
5358 * Return codes
5359 * 0 - successful
5360 * other values - error
5362 static int
5363 lpfc_setup_driver_resource_phase1(struct lpfc_hba *phba)
5366 * Driver resources common to all SLI revisions
5368 atomic_set(&phba->fast_event_count, 0);
5369 spin_lock_init(&phba->hbalock);
5371 /* Initialize ndlp management spinlock */
5372 spin_lock_init(&phba->ndlp_lock);
5374 INIT_LIST_HEAD(&phba->port_list);
5375 INIT_LIST_HEAD(&phba->work_list);
5376 init_waitqueue_head(&phba->wait_4_mlo_m_q);
5378 /* Initialize the wait queue head for the kernel thread */
5379 init_waitqueue_head(&phba->work_waitq);
5381 /* Initialize the scsi buffer list used by driver for scsi IO */
5382 spin_lock_init(&phba->scsi_buf_list_get_lock);
5383 INIT_LIST_HEAD(&phba->lpfc_scsi_buf_list_get);
5384 spin_lock_init(&phba->scsi_buf_list_put_lock);
5385 INIT_LIST_HEAD(&phba->lpfc_scsi_buf_list_put);
5387 /* Initialize the fabric iocb list */
5388 INIT_LIST_HEAD(&phba->fabric_iocb_list);
5390 /* Initialize list to save ELS buffers */
5391 INIT_LIST_HEAD(&phba->elsbuf);
5393 /* Initialize FCF connection rec list */
5394 INIT_LIST_HEAD(&phba->fcf_conn_rec_list);
5396 return 0;
5400 * lpfc_setup_driver_resource_phase2 - Phase2 setup driver internal resources.
5401 * @phba: pointer to lpfc hba data structure.
5403 * This routine is invoked to set up the driver internal resources after the
5404 * device specific resource setup to support the HBA device it attached to.
5406 * Return codes
5407 * 0 - successful
5408 * other values - error
5410 static int
5411 lpfc_setup_driver_resource_phase2(struct lpfc_hba *phba)
5413 int error;
5415 /* Startup the kernel thread for this host adapter. */
5416 phba->worker_thread = kthread_run(lpfc_do_work, phba,
5417 "lpfc_worker_%d", phba->brd_no);
5418 if (IS_ERR(phba->worker_thread)) {
5419 error = PTR_ERR(phba->worker_thread);
5420 return error;
5423 return 0;
5427 * lpfc_unset_driver_resource_phase2 - Phase2 unset driver internal resources.
5428 * @phba: pointer to lpfc hba data structure.
5430 * This routine is invoked to unset the driver internal resources set up after
5431 * the device specific resource setup for supporting the HBA device it
5432 * attached to.
5434 static void
5435 lpfc_unset_driver_resource_phase2(struct lpfc_hba *phba)
5437 /* Stop kernel worker thread */
5438 kthread_stop(phba->worker_thread);
5442 * lpfc_free_iocb_list - Free iocb list.
5443 * @phba: pointer to lpfc hba data structure.
5445 * This routine is invoked to free the driver's IOCB list and memory.
5447 static void
5448 lpfc_free_iocb_list(struct lpfc_hba *phba)
5450 struct lpfc_iocbq *iocbq_entry = NULL, *iocbq_next = NULL;
5452 spin_lock_irq(&phba->hbalock);
5453 list_for_each_entry_safe(iocbq_entry, iocbq_next,
5454 &phba->lpfc_iocb_list, list) {
5455 list_del(&iocbq_entry->list);
5456 kfree(iocbq_entry);
5457 phba->total_iocbq_bufs--;
5459 spin_unlock_irq(&phba->hbalock);
5461 return;
5465 * lpfc_init_iocb_list - Allocate and initialize iocb list.
5466 * @phba: pointer to lpfc hba data structure.
5468 * This routine is invoked to allocate and initizlize the driver's IOCB
5469 * list and set up the IOCB tag array accordingly.
5471 * Return codes
5472 * 0 - successful
5473 * other values - error
5475 static int
5476 lpfc_init_iocb_list(struct lpfc_hba *phba, int iocb_count)
5478 struct lpfc_iocbq *iocbq_entry = NULL;
5479 uint16_t iotag;
5480 int i;
5482 /* Initialize and populate the iocb list per host. */
5483 INIT_LIST_HEAD(&phba->lpfc_iocb_list);
5484 for (i = 0; i < iocb_count; i++) {
5485 iocbq_entry = kzalloc(sizeof(struct lpfc_iocbq), GFP_KERNEL);
5486 if (iocbq_entry == NULL) {
5487 printk(KERN_ERR "%s: only allocated %d iocbs of "
5488 "expected %d count. Unloading driver.\n",
5489 __func__, i, LPFC_IOCB_LIST_CNT);
5490 goto out_free_iocbq;
5493 iotag = lpfc_sli_next_iotag(phba, iocbq_entry);
5494 if (iotag == 0) {
5495 kfree(iocbq_entry);
5496 printk(KERN_ERR "%s: failed to allocate IOTAG. "
5497 "Unloading driver.\n", __func__);
5498 goto out_free_iocbq;
5500 iocbq_entry->sli4_lxritag = NO_XRI;
5501 iocbq_entry->sli4_xritag = NO_XRI;
5503 spin_lock_irq(&phba->hbalock);
5504 list_add(&iocbq_entry->list, &phba->lpfc_iocb_list);
5505 phba->total_iocbq_bufs++;
5506 spin_unlock_irq(&phba->hbalock);
5509 return 0;
5511 out_free_iocbq:
5512 lpfc_free_iocb_list(phba);
5514 return -ENOMEM;
5518 * lpfc_free_sgl_list - Free a given sgl list.
5519 * @phba: pointer to lpfc hba data structure.
5520 * @sglq_list: pointer to the head of sgl list.
5522 * This routine is invoked to free a give sgl list and memory.
5524 void
5525 lpfc_free_sgl_list(struct lpfc_hba *phba, struct list_head *sglq_list)
5527 struct lpfc_sglq *sglq_entry = NULL, *sglq_next = NULL;
5529 list_for_each_entry_safe(sglq_entry, sglq_next, sglq_list, list) {
5530 list_del(&sglq_entry->list);
5531 lpfc_mbuf_free(phba, sglq_entry->virt, sglq_entry->phys);
5532 kfree(sglq_entry);
5537 * lpfc_free_els_sgl_list - Free els sgl list.
5538 * @phba: pointer to lpfc hba data structure.
5540 * This routine is invoked to free the driver's els sgl list and memory.
5542 static void
5543 lpfc_free_els_sgl_list(struct lpfc_hba *phba)
5545 LIST_HEAD(sglq_list);
5547 /* Retrieve all els sgls from driver list */
5548 spin_lock_irq(&phba->hbalock);
5549 list_splice_init(&phba->sli4_hba.lpfc_sgl_list, &sglq_list);
5550 spin_unlock_irq(&phba->hbalock);
5552 /* Now free the sgl list */
5553 lpfc_free_sgl_list(phba, &sglq_list);
5557 * lpfc_init_active_sgl_array - Allocate the buf to track active ELS XRIs.
5558 * @phba: pointer to lpfc hba data structure.
5560 * This routine is invoked to allocate the driver's active sgl memory.
5561 * This array will hold the sglq_entry's for active IOs.
5563 static int
5564 lpfc_init_active_sgl_array(struct lpfc_hba *phba)
5566 int size;
5567 size = sizeof(struct lpfc_sglq *);
5568 size *= phba->sli4_hba.max_cfg_param.max_xri;
5570 phba->sli4_hba.lpfc_sglq_active_list =
5571 kzalloc(size, GFP_KERNEL);
5572 if (!phba->sli4_hba.lpfc_sglq_active_list)
5573 return -ENOMEM;
5574 return 0;
5578 * lpfc_free_active_sgl - Free the buf that tracks active ELS XRIs.
5579 * @phba: pointer to lpfc hba data structure.
5581 * This routine is invoked to walk through the array of active sglq entries
5582 * and free all of the resources.
5583 * This is just a place holder for now.
5585 static void
5586 lpfc_free_active_sgl(struct lpfc_hba *phba)
5588 kfree(phba->sli4_hba.lpfc_sglq_active_list);
5592 * lpfc_init_sgl_list - Allocate and initialize sgl list.
5593 * @phba: pointer to lpfc hba data structure.
5595 * This routine is invoked to allocate and initizlize the driver's sgl
5596 * list and set up the sgl xritag tag array accordingly.
5599 static void
5600 lpfc_init_sgl_list(struct lpfc_hba *phba)
5602 /* Initialize and populate the sglq list per host/VF. */
5603 INIT_LIST_HEAD(&phba->sli4_hba.lpfc_sgl_list);
5604 INIT_LIST_HEAD(&phba->sli4_hba.lpfc_abts_els_sgl_list);
5606 /* els xri-sgl book keeping */
5607 phba->sli4_hba.els_xri_cnt = 0;
5609 /* scsi xri-buffer book keeping */
5610 phba->sli4_hba.scsi_xri_cnt = 0;
5614 * lpfc_sli4_init_rpi_hdrs - Post the rpi header memory region to the port
5615 * @phba: pointer to lpfc hba data structure.
5617 * This routine is invoked to post rpi header templates to the
5618 * port for those SLI4 ports that do not support extents. This routine
5619 * posts a PAGE_SIZE memory region to the port to hold up to
5620 * PAGE_SIZE modulo 64 rpi context headers. This is an initialization routine
5621 * and should be called only when interrupts are disabled.
5623 * Return codes
5624 * 0 - successful
5625 * -ERROR - otherwise.
5628 lpfc_sli4_init_rpi_hdrs(struct lpfc_hba *phba)
5630 int rc = 0;
5631 struct lpfc_rpi_hdr *rpi_hdr;
5633 INIT_LIST_HEAD(&phba->sli4_hba.lpfc_rpi_hdr_list);
5634 if (!phba->sli4_hba.rpi_hdrs_in_use)
5635 return rc;
5636 if (phba->sli4_hba.extents_in_use)
5637 return -EIO;
5639 rpi_hdr = lpfc_sli4_create_rpi_hdr(phba);
5640 if (!rpi_hdr) {
5641 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
5642 "0391 Error during rpi post operation\n");
5643 lpfc_sli4_remove_rpis(phba);
5644 rc = -ENODEV;
5647 return rc;
5651 * lpfc_sli4_create_rpi_hdr - Allocate an rpi header memory region
5652 * @phba: pointer to lpfc hba data structure.
5654 * This routine is invoked to allocate a single 4KB memory region to
5655 * support rpis and stores them in the phba. This single region
5656 * provides support for up to 64 rpis. The region is used globally
5657 * by the device.
5659 * Returns:
5660 * A valid rpi hdr on success.
5661 * A NULL pointer on any failure.
5663 struct lpfc_rpi_hdr *
5664 lpfc_sli4_create_rpi_hdr(struct lpfc_hba *phba)
5666 uint16_t rpi_limit, curr_rpi_range;
5667 struct lpfc_dmabuf *dmabuf;
5668 struct lpfc_rpi_hdr *rpi_hdr;
5669 uint32_t rpi_count;
5672 * If the SLI4 port supports extents, posting the rpi header isn't
5673 * required. Set the expected maximum count and let the actual value
5674 * get set when extents are fully allocated.
5676 if (!phba->sli4_hba.rpi_hdrs_in_use)
5677 return NULL;
5678 if (phba->sli4_hba.extents_in_use)
5679 return NULL;
5681 /* The limit on the logical index is just the max_rpi count. */
5682 rpi_limit = phba->sli4_hba.max_cfg_param.rpi_base +
5683 phba->sli4_hba.max_cfg_param.max_rpi - 1;
5685 spin_lock_irq(&phba->hbalock);
5687 * Establish the starting RPI in this header block. The starting
5688 * rpi is normalized to a zero base because the physical rpi is
5689 * port based.
5691 curr_rpi_range = phba->sli4_hba.next_rpi;
5692 spin_unlock_irq(&phba->hbalock);
5695 * The port has a limited number of rpis. The increment here
5696 * is LPFC_RPI_HDR_COUNT - 1 to account for the starting value
5697 * and to allow the full max_rpi range per port.
5699 if ((curr_rpi_range + (LPFC_RPI_HDR_COUNT - 1)) > rpi_limit)
5700 rpi_count = rpi_limit - curr_rpi_range;
5701 else
5702 rpi_count = LPFC_RPI_HDR_COUNT;
5704 if (!rpi_count)
5705 return NULL;
5707 * First allocate the protocol header region for the port. The
5708 * port expects a 4KB DMA-mapped memory region that is 4K aligned.
5710 dmabuf = kzalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
5711 if (!dmabuf)
5712 return NULL;
5714 dmabuf->virt = dma_alloc_coherent(&phba->pcidev->dev,
5715 LPFC_HDR_TEMPLATE_SIZE,
5716 &dmabuf->phys,
5717 GFP_KERNEL);
5718 if (!dmabuf->virt) {
5719 rpi_hdr = NULL;
5720 goto err_free_dmabuf;
5723 memset(dmabuf->virt, 0, LPFC_HDR_TEMPLATE_SIZE);
5724 if (!IS_ALIGNED(dmabuf->phys, LPFC_HDR_TEMPLATE_SIZE)) {
5725 rpi_hdr = NULL;
5726 goto err_free_coherent;
5729 /* Save the rpi header data for cleanup later. */
5730 rpi_hdr = kzalloc(sizeof(struct lpfc_rpi_hdr), GFP_KERNEL);
5731 if (!rpi_hdr)
5732 goto err_free_coherent;
5734 rpi_hdr->dmabuf = dmabuf;
5735 rpi_hdr->len = LPFC_HDR_TEMPLATE_SIZE;
5736 rpi_hdr->page_count = 1;
5737 spin_lock_irq(&phba->hbalock);
5739 /* The rpi_hdr stores the logical index only. */
5740 rpi_hdr->start_rpi = curr_rpi_range;
5741 list_add_tail(&rpi_hdr->list, &phba->sli4_hba.lpfc_rpi_hdr_list);
5744 * The next_rpi stores the next logical module-64 rpi value used
5745 * to post physical rpis in subsequent rpi postings.
5747 phba->sli4_hba.next_rpi += rpi_count;
5748 spin_unlock_irq(&phba->hbalock);
5749 return rpi_hdr;
5751 err_free_coherent:
5752 dma_free_coherent(&phba->pcidev->dev, LPFC_HDR_TEMPLATE_SIZE,
5753 dmabuf->virt, dmabuf->phys);
5754 err_free_dmabuf:
5755 kfree(dmabuf);
5756 return NULL;
5760 * lpfc_sli4_remove_rpi_hdrs - Remove all rpi header memory regions
5761 * @phba: pointer to lpfc hba data structure.
5763 * This routine is invoked to remove all memory resources allocated
5764 * to support rpis for SLI4 ports not supporting extents. This routine
5765 * presumes the caller has released all rpis consumed by fabric or port
5766 * logins and is prepared to have the header pages removed.
5768 void
5769 lpfc_sli4_remove_rpi_hdrs(struct lpfc_hba *phba)
5771 struct lpfc_rpi_hdr *rpi_hdr, *next_rpi_hdr;
5773 if (!phba->sli4_hba.rpi_hdrs_in_use)
5774 goto exit;
5776 list_for_each_entry_safe(rpi_hdr, next_rpi_hdr,
5777 &phba->sli4_hba.lpfc_rpi_hdr_list, list) {
5778 list_del(&rpi_hdr->list);
5779 dma_free_coherent(&phba->pcidev->dev, rpi_hdr->len,
5780 rpi_hdr->dmabuf->virt, rpi_hdr->dmabuf->phys);
5781 kfree(rpi_hdr->dmabuf);
5782 kfree(rpi_hdr);
5784 exit:
5785 /* There are no rpis available to the port now. */
5786 phba->sli4_hba.next_rpi = 0;
5790 * lpfc_hba_alloc - Allocate driver hba data structure for a device.
5791 * @pdev: pointer to pci device data structure.
5793 * This routine is invoked to allocate the driver hba data structure for an
5794 * HBA device. If the allocation is successful, the phba reference to the
5795 * PCI device data structure is set.
5797 * Return codes
5798 * pointer to @phba - successful
5799 * NULL - error
5801 static struct lpfc_hba *
5802 lpfc_hba_alloc(struct pci_dev *pdev)
5804 struct lpfc_hba *phba;
5806 /* Allocate memory for HBA structure */
5807 phba = kzalloc(sizeof(struct lpfc_hba), GFP_KERNEL);
5808 if (!phba) {
5809 dev_err(&pdev->dev, "failed to allocate hba struct\n");
5810 return NULL;
5813 /* Set reference to PCI device in HBA structure */
5814 phba->pcidev = pdev;
5816 /* Assign an unused board number */
5817 phba->brd_no = lpfc_get_instance();
5818 if (phba->brd_no < 0) {
5819 kfree(phba);
5820 return NULL;
5823 spin_lock_init(&phba->ct_ev_lock);
5824 INIT_LIST_HEAD(&phba->ct_ev_waiters);
5826 return phba;
5830 * lpfc_hba_free - Free driver hba data structure with a device.
5831 * @phba: pointer to lpfc hba data structure.
5833 * This routine is invoked to free the driver hba data structure with an
5834 * HBA device.
5836 static void
5837 lpfc_hba_free(struct lpfc_hba *phba)
5839 /* Release the driver assigned board number */
5840 idr_remove(&lpfc_hba_index, phba->brd_no);
5842 /* Free memory allocated with sli rings */
5843 kfree(phba->sli.ring);
5844 phba->sli.ring = NULL;
5846 kfree(phba);
5847 return;
5851 * lpfc_create_shost - Create hba physical port with associated scsi host.
5852 * @phba: pointer to lpfc hba data structure.
5854 * This routine is invoked to create HBA physical port and associate a SCSI
5855 * host with it.
5857 * Return codes
5858 * 0 - successful
5859 * other values - error
5861 static int
5862 lpfc_create_shost(struct lpfc_hba *phba)
5864 struct lpfc_vport *vport;
5865 struct Scsi_Host *shost;
5867 /* Initialize HBA FC structure */
5868 phba->fc_edtov = FF_DEF_EDTOV;
5869 phba->fc_ratov = FF_DEF_RATOV;
5870 phba->fc_altov = FF_DEF_ALTOV;
5871 phba->fc_arbtov = FF_DEF_ARBTOV;
5873 atomic_set(&phba->sdev_cnt, 0);
5874 vport = lpfc_create_port(phba, phba->brd_no, &phba->pcidev->dev);
5875 if (!vport)
5876 return -ENODEV;
5878 shost = lpfc_shost_from_vport(vport);
5879 phba->pport = vport;
5880 lpfc_debugfs_initialize(vport);
5881 /* Put reference to SCSI host to driver's device private data */
5882 pci_set_drvdata(phba->pcidev, shost);
5884 return 0;
5888 * lpfc_destroy_shost - Destroy hba physical port with associated scsi host.
5889 * @phba: pointer to lpfc hba data structure.
5891 * This routine is invoked to destroy HBA physical port and the associated
5892 * SCSI host.
5894 static void
5895 lpfc_destroy_shost(struct lpfc_hba *phba)
5897 struct lpfc_vport *vport = phba->pport;
5899 /* Destroy physical port that associated with the SCSI host */
5900 destroy_port(vport);
5902 return;
5906 * lpfc_setup_bg - Setup Block guard structures and debug areas.
5907 * @phba: pointer to lpfc hba data structure.
5908 * @shost: the shost to be used to detect Block guard settings.
5910 * This routine sets up the local Block guard protocol settings for @shost.
5911 * This routine also allocates memory for debugging bg buffers.
5913 static void
5914 lpfc_setup_bg(struct lpfc_hba *phba, struct Scsi_Host *shost)
5916 uint32_t old_mask;
5917 uint32_t old_guard;
5919 int pagecnt = 10;
5920 if (lpfc_prot_mask && lpfc_prot_guard) {
5921 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
5922 "1478 Registering BlockGuard with the "
5923 "SCSI layer\n");
5925 old_mask = lpfc_prot_mask;
5926 old_guard = lpfc_prot_guard;
5928 /* Only allow supported values */
5929 lpfc_prot_mask &= (SHOST_DIF_TYPE1_PROTECTION |
5930 SHOST_DIX_TYPE0_PROTECTION |
5931 SHOST_DIX_TYPE1_PROTECTION);
5932 lpfc_prot_guard &= (SHOST_DIX_GUARD_IP | SHOST_DIX_GUARD_CRC);
5934 /* DIF Type 1 protection for profiles AST1/C1 is end to end */
5935 if (lpfc_prot_mask == SHOST_DIX_TYPE1_PROTECTION)
5936 lpfc_prot_mask |= SHOST_DIF_TYPE1_PROTECTION;
5938 if (lpfc_prot_mask && lpfc_prot_guard) {
5939 if ((old_mask != lpfc_prot_mask) ||
5940 (old_guard != lpfc_prot_guard))
5941 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5942 "1475 Registering BlockGuard with the "
5943 "SCSI layer: mask %d guard %d\n",
5944 lpfc_prot_mask, lpfc_prot_guard);
5946 scsi_host_set_prot(shost, lpfc_prot_mask);
5947 scsi_host_set_guard(shost, lpfc_prot_guard);
5948 } else
5949 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5950 "1479 Not Registering BlockGuard with the SCSI "
5951 "layer, Bad protection parameters: %d %d\n",
5952 old_mask, old_guard);
5955 if (!_dump_buf_data) {
5956 while (pagecnt) {
5957 spin_lock_init(&_dump_buf_lock);
5958 _dump_buf_data =
5959 (char *) __get_free_pages(GFP_KERNEL, pagecnt);
5960 if (_dump_buf_data) {
5961 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
5962 "9043 BLKGRD: allocated %d pages for "
5963 "_dump_buf_data at 0x%p\n",
5964 (1 << pagecnt), _dump_buf_data);
5965 _dump_buf_data_order = pagecnt;
5966 memset(_dump_buf_data, 0,
5967 ((1 << PAGE_SHIFT) << pagecnt));
5968 break;
5969 } else
5970 --pagecnt;
5972 if (!_dump_buf_data_order)
5973 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
5974 "9044 BLKGRD: ERROR unable to allocate "
5975 "memory for hexdump\n");
5976 } else
5977 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
5978 "9045 BLKGRD: already allocated _dump_buf_data=0x%p"
5979 "\n", _dump_buf_data);
5980 if (!_dump_buf_dif) {
5981 while (pagecnt) {
5982 _dump_buf_dif =
5983 (char *) __get_free_pages(GFP_KERNEL, pagecnt);
5984 if (_dump_buf_dif) {
5985 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
5986 "9046 BLKGRD: allocated %d pages for "
5987 "_dump_buf_dif at 0x%p\n",
5988 (1 << pagecnt), _dump_buf_dif);
5989 _dump_buf_dif_order = pagecnt;
5990 memset(_dump_buf_dif, 0,
5991 ((1 << PAGE_SHIFT) << pagecnt));
5992 break;
5993 } else
5994 --pagecnt;
5996 if (!_dump_buf_dif_order)
5997 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
5998 "9047 BLKGRD: ERROR unable to allocate "
5999 "memory for hexdump\n");
6000 } else
6001 lpfc_printf_log(phba, KERN_ERR, LOG_BG,
6002 "9048 BLKGRD: already allocated _dump_buf_dif=0x%p\n",
6003 _dump_buf_dif);
6007 * lpfc_post_init_setup - Perform necessary device post initialization setup.
6008 * @phba: pointer to lpfc hba data structure.
6010 * This routine is invoked to perform all the necessary post initialization
6011 * setup for the device.
6013 static void
6014 lpfc_post_init_setup(struct lpfc_hba *phba)
6016 struct Scsi_Host *shost;
6017 struct lpfc_adapter_event_header adapter_event;
6019 /* Get the default values for Model Name and Description */
6020 lpfc_get_hba_model_desc(phba, phba->ModelName, phba->ModelDesc);
6023 * hba setup may have changed the hba_queue_depth so we need to
6024 * adjust the value of can_queue.
6026 shost = pci_get_drvdata(phba->pcidev);
6027 shost->can_queue = phba->cfg_hba_queue_depth - 10;
6028 if (phba->sli3_options & LPFC_SLI3_BG_ENABLED)
6029 lpfc_setup_bg(phba, shost);
6031 lpfc_host_attrib_init(shost);
6033 if (phba->cfg_poll & DISABLE_FCP_RING_INT) {
6034 spin_lock_irq(shost->host_lock);
6035 lpfc_poll_start_timer(phba);
6036 spin_unlock_irq(shost->host_lock);
6039 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
6040 "0428 Perform SCSI scan\n");
6041 /* Send board arrival event to upper layer */
6042 adapter_event.event_type = FC_REG_ADAPTER_EVENT;
6043 adapter_event.subcategory = LPFC_EVENT_ARRIVAL;
6044 fc_host_post_vendor_event(shost, fc_get_event_number(),
6045 sizeof(adapter_event),
6046 (char *) &adapter_event,
6047 LPFC_NL_VENDOR_ID);
6048 return;
6052 * lpfc_sli_pci_mem_setup - Setup SLI3 HBA PCI memory space.
6053 * @phba: pointer to lpfc hba data structure.
6055 * This routine is invoked to set up the PCI device memory space for device
6056 * with SLI-3 interface spec.
6058 * Return codes
6059 * 0 - successful
6060 * other values - error
6062 static int
6063 lpfc_sli_pci_mem_setup(struct lpfc_hba *phba)
6065 struct pci_dev *pdev;
6066 unsigned long bar0map_len, bar2map_len;
6067 int i, hbq_count;
6068 void *ptr;
6069 int error = -ENODEV;
6071 /* Obtain PCI device reference */
6072 if (!phba->pcidev)
6073 return error;
6074 else
6075 pdev = phba->pcidev;
6077 /* Set the device DMA mask size */
6078 if (pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) != 0
6079 || pci_set_consistent_dma_mask(pdev,DMA_BIT_MASK(64)) != 0) {
6080 if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32)) != 0
6081 || pci_set_consistent_dma_mask(pdev,DMA_BIT_MASK(32)) != 0) {
6082 return error;
6086 /* Get the bus address of Bar0 and Bar2 and the number of bytes
6087 * required by each mapping.
6089 phba->pci_bar0_map = pci_resource_start(pdev, 0);
6090 bar0map_len = pci_resource_len(pdev, 0);
6092 phba->pci_bar2_map = pci_resource_start(pdev, 2);
6093 bar2map_len = pci_resource_len(pdev, 2);
6095 /* Map HBA SLIM to a kernel virtual address. */
6096 phba->slim_memmap_p = ioremap(phba->pci_bar0_map, bar0map_len);
6097 if (!phba->slim_memmap_p) {
6098 dev_printk(KERN_ERR, &pdev->dev,
6099 "ioremap failed for SLIM memory.\n");
6100 goto out;
6103 /* Map HBA Control Registers to a kernel virtual address. */
6104 phba->ctrl_regs_memmap_p = ioremap(phba->pci_bar2_map, bar2map_len);
6105 if (!phba->ctrl_regs_memmap_p) {
6106 dev_printk(KERN_ERR, &pdev->dev,
6107 "ioremap failed for HBA control registers.\n");
6108 goto out_iounmap_slim;
6111 /* Allocate memory for SLI-2 structures */
6112 phba->slim2p.virt = dma_alloc_coherent(&pdev->dev,
6113 SLI2_SLIM_SIZE,
6114 &phba->slim2p.phys,
6115 GFP_KERNEL);
6116 if (!phba->slim2p.virt)
6117 goto out_iounmap;
6119 memset(phba->slim2p.virt, 0, SLI2_SLIM_SIZE);
6120 phba->mbox = phba->slim2p.virt + offsetof(struct lpfc_sli2_slim, mbx);
6121 phba->mbox_ext = (phba->slim2p.virt +
6122 offsetof(struct lpfc_sli2_slim, mbx_ext_words));
6123 phba->pcb = (phba->slim2p.virt + offsetof(struct lpfc_sli2_slim, pcb));
6124 phba->IOCBs = (phba->slim2p.virt +
6125 offsetof(struct lpfc_sli2_slim, IOCBs));
6127 phba->hbqslimp.virt = dma_alloc_coherent(&pdev->dev,
6128 lpfc_sli_hbq_size(),
6129 &phba->hbqslimp.phys,
6130 GFP_KERNEL);
6131 if (!phba->hbqslimp.virt)
6132 goto out_free_slim;
6134 hbq_count = lpfc_sli_hbq_count();
6135 ptr = phba->hbqslimp.virt;
6136 for (i = 0; i < hbq_count; ++i) {
6137 phba->hbqs[i].hbq_virt = ptr;
6138 INIT_LIST_HEAD(&phba->hbqs[i].hbq_buffer_list);
6139 ptr += (lpfc_hbq_defs[i]->entry_count *
6140 sizeof(struct lpfc_hbq_entry));
6142 phba->hbqs[LPFC_ELS_HBQ].hbq_alloc_buffer = lpfc_els_hbq_alloc;
6143 phba->hbqs[LPFC_ELS_HBQ].hbq_free_buffer = lpfc_els_hbq_free;
6145 memset(phba->hbqslimp.virt, 0, lpfc_sli_hbq_size());
6147 INIT_LIST_HEAD(&phba->rb_pend_list);
6149 phba->MBslimaddr = phba->slim_memmap_p;
6150 phba->HAregaddr = phba->ctrl_regs_memmap_p + HA_REG_OFFSET;
6151 phba->CAregaddr = phba->ctrl_regs_memmap_p + CA_REG_OFFSET;
6152 phba->HSregaddr = phba->ctrl_regs_memmap_p + HS_REG_OFFSET;
6153 phba->HCregaddr = phba->ctrl_regs_memmap_p + HC_REG_OFFSET;
6155 return 0;
6157 out_free_slim:
6158 dma_free_coherent(&pdev->dev, SLI2_SLIM_SIZE,
6159 phba->slim2p.virt, phba->slim2p.phys);
6160 out_iounmap:
6161 iounmap(phba->ctrl_regs_memmap_p);
6162 out_iounmap_slim:
6163 iounmap(phba->slim_memmap_p);
6164 out:
6165 return error;
6169 * lpfc_sli_pci_mem_unset - Unset SLI3 HBA PCI memory space.
6170 * @phba: pointer to lpfc hba data structure.
6172 * This routine is invoked to unset the PCI device memory space for device
6173 * with SLI-3 interface spec.
6175 static void
6176 lpfc_sli_pci_mem_unset(struct lpfc_hba *phba)
6178 struct pci_dev *pdev;
6180 /* Obtain PCI device reference */
6181 if (!phba->pcidev)
6182 return;
6183 else
6184 pdev = phba->pcidev;
6186 /* Free coherent DMA memory allocated */
6187 dma_free_coherent(&pdev->dev, lpfc_sli_hbq_size(),
6188 phba->hbqslimp.virt, phba->hbqslimp.phys);
6189 dma_free_coherent(&pdev->dev, SLI2_SLIM_SIZE,
6190 phba->slim2p.virt, phba->slim2p.phys);
6192 /* I/O memory unmap */
6193 iounmap(phba->ctrl_regs_memmap_p);
6194 iounmap(phba->slim_memmap_p);
6196 return;
6200 * lpfc_sli4_post_status_check - Wait for SLI4 POST done and check status
6201 * @phba: pointer to lpfc hba data structure.
6203 * This routine is invoked to wait for SLI4 device Power On Self Test (POST)
6204 * done and check status.
6206 * Return 0 if successful, otherwise -ENODEV.
6209 lpfc_sli4_post_status_check(struct lpfc_hba *phba)
6211 struct lpfc_register portsmphr_reg, uerrlo_reg, uerrhi_reg;
6212 struct lpfc_register reg_data;
6213 int i, port_error = 0;
6214 uint32_t if_type;
6216 memset(&portsmphr_reg, 0, sizeof(portsmphr_reg));
6217 memset(&reg_data, 0, sizeof(reg_data));
6218 if (!phba->sli4_hba.PSMPHRregaddr)
6219 return -ENODEV;
6221 /* Wait up to 30 seconds for the SLI Port POST done and ready */
6222 for (i = 0; i < 3000; i++) {
6223 if (lpfc_readl(phba->sli4_hba.PSMPHRregaddr,
6224 &portsmphr_reg.word0) ||
6225 (bf_get(lpfc_port_smphr_perr, &portsmphr_reg))) {
6226 /* Port has a fatal POST error, break out */
6227 port_error = -ENODEV;
6228 break;
6230 if (LPFC_POST_STAGE_PORT_READY ==
6231 bf_get(lpfc_port_smphr_port_status, &portsmphr_reg))
6232 break;
6233 msleep(10);
6237 * If there was a port error during POST, then don't proceed with
6238 * other register reads as the data may not be valid. Just exit.
6240 if (port_error) {
6241 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6242 "1408 Port Failed POST - portsmphr=0x%x, "
6243 "perr=x%x, sfi=x%x, nip=x%x, ipc=x%x, scr1=x%x, "
6244 "scr2=x%x, hscratch=x%x, pstatus=x%x\n",
6245 portsmphr_reg.word0,
6246 bf_get(lpfc_port_smphr_perr, &portsmphr_reg),
6247 bf_get(lpfc_port_smphr_sfi, &portsmphr_reg),
6248 bf_get(lpfc_port_smphr_nip, &portsmphr_reg),
6249 bf_get(lpfc_port_smphr_ipc, &portsmphr_reg),
6250 bf_get(lpfc_port_smphr_scr1, &portsmphr_reg),
6251 bf_get(lpfc_port_smphr_scr2, &portsmphr_reg),
6252 bf_get(lpfc_port_smphr_host_scratch, &portsmphr_reg),
6253 bf_get(lpfc_port_smphr_port_status, &portsmphr_reg));
6254 } else {
6255 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
6256 "2534 Device Info: SLIFamily=0x%x, "
6257 "SLIRev=0x%x, IFType=0x%x, SLIHint_1=0x%x, "
6258 "SLIHint_2=0x%x, FT=0x%x\n",
6259 bf_get(lpfc_sli_intf_sli_family,
6260 &phba->sli4_hba.sli_intf),
6261 bf_get(lpfc_sli_intf_slirev,
6262 &phba->sli4_hba.sli_intf),
6263 bf_get(lpfc_sli_intf_if_type,
6264 &phba->sli4_hba.sli_intf),
6265 bf_get(lpfc_sli_intf_sli_hint1,
6266 &phba->sli4_hba.sli_intf),
6267 bf_get(lpfc_sli_intf_sli_hint2,
6268 &phba->sli4_hba.sli_intf),
6269 bf_get(lpfc_sli_intf_func_type,
6270 &phba->sli4_hba.sli_intf));
6272 * Check for other Port errors during the initialization
6273 * process. Fail the load if the port did not come up
6274 * correctly.
6276 if_type = bf_get(lpfc_sli_intf_if_type,
6277 &phba->sli4_hba.sli_intf);
6278 switch (if_type) {
6279 case LPFC_SLI_INTF_IF_TYPE_0:
6280 phba->sli4_hba.ue_mask_lo =
6281 readl(phba->sli4_hba.u.if_type0.UEMASKLOregaddr);
6282 phba->sli4_hba.ue_mask_hi =
6283 readl(phba->sli4_hba.u.if_type0.UEMASKHIregaddr);
6284 uerrlo_reg.word0 =
6285 readl(phba->sli4_hba.u.if_type0.UERRLOregaddr);
6286 uerrhi_reg.word0 =
6287 readl(phba->sli4_hba.u.if_type0.UERRHIregaddr);
6288 if ((~phba->sli4_hba.ue_mask_lo & uerrlo_reg.word0) ||
6289 (~phba->sli4_hba.ue_mask_hi & uerrhi_reg.word0)) {
6290 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6291 "1422 Unrecoverable Error "
6292 "Detected during POST "
6293 "uerr_lo_reg=0x%x, "
6294 "uerr_hi_reg=0x%x, "
6295 "ue_mask_lo_reg=0x%x, "
6296 "ue_mask_hi_reg=0x%x\n",
6297 uerrlo_reg.word0,
6298 uerrhi_reg.word0,
6299 phba->sli4_hba.ue_mask_lo,
6300 phba->sli4_hba.ue_mask_hi);
6301 port_error = -ENODEV;
6303 break;
6304 case LPFC_SLI_INTF_IF_TYPE_2:
6305 /* Final checks. The port status should be clean. */
6306 if (lpfc_readl(phba->sli4_hba.u.if_type2.STATUSregaddr,
6307 &reg_data.word0) ||
6308 (bf_get(lpfc_sliport_status_err, &reg_data) &&
6309 !bf_get(lpfc_sliport_status_rn, &reg_data))) {
6310 phba->work_status[0] =
6311 readl(phba->sli4_hba.u.if_type2.
6312 ERR1regaddr);
6313 phba->work_status[1] =
6314 readl(phba->sli4_hba.u.if_type2.
6315 ERR2regaddr);
6316 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6317 "2888 Unrecoverable port error "
6318 "following POST: port status reg "
6319 "0x%x, port_smphr reg 0x%x, "
6320 "error 1=0x%x, error 2=0x%x\n",
6321 reg_data.word0,
6322 portsmphr_reg.word0,
6323 phba->work_status[0],
6324 phba->work_status[1]);
6325 port_error = -ENODEV;
6327 break;
6328 case LPFC_SLI_INTF_IF_TYPE_1:
6329 default:
6330 break;
6333 return port_error;
6337 * lpfc_sli4_bar0_register_memmap - Set up SLI4 BAR0 register memory map.
6338 * @phba: pointer to lpfc hba data structure.
6339 * @if_type: The SLI4 interface type getting configured.
6341 * This routine is invoked to set up SLI4 BAR0 PCI config space register
6342 * memory map.
6344 static void
6345 lpfc_sli4_bar0_register_memmap(struct lpfc_hba *phba, uint32_t if_type)
6347 switch (if_type) {
6348 case LPFC_SLI_INTF_IF_TYPE_0:
6349 phba->sli4_hba.u.if_type0.UERRLOregaddr =
6350 phba->sli4_hba.conf_regs_memmap_p + LPFC_UERR_STATUS_LO;
6351 phba->sli4_hba.u.if_type0.UERRHIregaddr =
6352 phba->sli4_hba.conf_regs_memmap_p + LPFC_UERR_STATUS_HI;
6353 phba->sli4_hba.u.if_type0.UEMASKLOregaddr =
6354 phba->sli4_hba.conf_regs_memmap_p + LPFC_UE_MASK_LO;
6355 phba->sli4_hba.u.if_type0.UEMASKHIregaddr =
6356 phba->sli4_hba.conf_regs_memmap_p + LPFC_UE_MASK_HI;
6357 phba->sli4_hba.SLIINTFregaddr =
6358 phba->sli4_hba.conf_regs_memmap_p + LPFC_SLI_INTF;
6359 break;
6360 case LPFC_SLI_INTF_IF_TYPE_2:
6361 phba->sli4_hba.u.if_type2.ERR1regaddr =
6362 phba->sli4_hba.conf_regs_memmap_p +
6363 LPFC_CTL_PORT_ER1_OFFSET;
6364 phba->sli4_hba.u.if_type2.ERR2regaddr =
6365 phba->sli4_hba.conf_regs_memmap_p +
6366 LPFC_CTL_PORT_ER2_OFFSET;
6367 phba->sli4_hba.u.if_type2.CTRLregaddr =
6368 phba->sli4_hba.conf_regs_memmap_p +
6369 LPFC_CTL_PORT_CTL_OFFSET;
6370 phba->sli4_hba.u.if_type2.STATUSregaddr =
6371 phba->sli4_hba.conf_regs_memmap_p +
6372 LPFC_CTL_PORT_STA_OFFSET;
6373 phba->sli4_hba.SLIINTFregaddr =
6374 phba->sli4_hba.conf_regs_memmap_p + LPFC_SLI_INTF;
6375 phba->sli4_hba.PSMPHRregaddr =
6376 phba->sli4_hba.conf_regs_memmap_p +
6377 LPFC_CTL_PORT_SEM_OFFSET;
6378 phba->sli4_hba.RQDBregaddr =
6379 phba->sli4_hba.conf_regs_memmap_p +
6380 LPFC_ULP0_RQ_DOORBELL;
6381 phba->sli4_hba.WQDBregaddr =
6382 phba->sli4_hba.conf_regs_memmap_p +
6383 LPFC_ULP0_WQ_DOORBELL;
6384 phba->sli4_hba.EQCQDBregaddr =
6385 phba->sli4_hba.conf_regs_memmap_p + LPFC_EQCQ_DOORBELL;
6386 phba->sli4_hba.MQDBregaddr =
6387 phba->sli4_hba.conf_regs_memmap_p + LPFC_MQ_DOORBELL;
6388 phba->sli4_hba.BMBXregaddr =
6389 phba->sli4_hba.conf_regs_memmap_p + LPFC_BMBX;
6390 break;
6391 case LPFC_SLI_INTF_IF_TYPE_1:
6392 default:
6393 dev_printk(KERN_ERR, &phba->pcidev->dev,
6394 "FATAL - unsupported SLI4 interface type - %d\n",
6395 if_type);
6396 break;
6401 * lpfc_sli4_bar1_register_memmap - Set up SLI4 BAR1 register memory map.
6402 * @phba: pointer to lpfc hba data structure.
6404 * This routine is invoked to set up SLI4 BAR1 control status register (CSR)
6405 * memory map.
6407 static void
6408 lpfc_sli4_bar1_register_memmap(struct lpfc_hba *phba)
6410 phba->sli4_hba.PSMPHRregaddr = phba->sli4_hba.ctrl_regs_memmap_p +
6411 LPFC_SLIPORT_IF0_SMPHR;
6412 phba->sli4_hba.ISRregaddr = phba->sli4_hba.ctrl_regs_memmap_p +
6413 LPFC_HST_ISR0;
6414 phba->sli4_hba.IMRregaddr = phba->sli4_hba.ctrl_regs_memmap_p +
6415 LPFC_HST_IMR0;
6416 phba->sli4_hba.ISCRregaddr = phba->sli4_hba.ctrl_regs_memmap_p +
6417 LPFC_HST_ISCR0;
6421 * lpfc_sli4_bar2_register_memmap - Set up SLI4 BAR2 register memory map.
6422 * @phba: pointer to lpfc hba data structure.
6423 * @vf: virtual function number
6425 * This routine is invoked to set up SLI4 BAR2 doorbell register memory map
6426 * based on the given viftual function number, @vf.
6428 * Return 0 if successful, otherwise -ENODEV.
6430 static int
6431 lpfc_sli4_bar2_register_memmap(struct lpfc_hba *phba, uint32_t vf)
6433 if (vf > LPFC_VIR_FUNC_MAX)
6434 return -ENODEV;
6436 phba->sli4_hba.RQDBregaddr = (phba->sli4_hba.drbl_regs_memmap_p +
6437 vf * LPFC_VFR_PAGE_SIZE +
6438 LPFC_ULP0_RQ_DOORBELL);
6439 phba->sli4_hba.WQDBregaddr = (phba->sli4_hba.drbl_regs_memmap_p +
6440 vf * LPFC_VFR_PAGE_SIZE +
6441 LPFC_ULP0_WQ_DOORBELL);
6442 phba->sli4_hba.EQCQDBregaddr = (phba->sli4_hba.drbl_regs_memmap_p +
6443 vf * LPFC_VFR_PAGE_SIZE + LPFC_EQCQ_DOORBELL);
6444 phba->sli4_hba.MQDBregaddr = (phba->sli4_hba.drbl_regs_memmap_p +
6445 vf * LPFC_VFR_PAGE_SIZE + LPFC_MQ_DOORBELL);
6446 phba->sli4_hba.BMBXregaddr = (phba->sli4_hba.drbl_regs_memmap_p +
6447 vf * LPFC_VFR_PAGE_SIZE + LPFC_BMBX);
6448 return 0;
6452 * lpfc_create_bootstrap_mbox - Create the bootstrap mailbox
6453 * @phba: pointer to lpfc hba data structure.
6455 * This routine is invoked to create the bootstrap mailbox
6456 * region consistent with the SLI-4 interface spec. This
6457 * routine allocates all memory necessary to communicate
6458 * mailbox commands to the port and sets up all alignment
6459 * needs. No locks are expected to be held when calling
6460 * this routine.
6462 * Return codes
6463 * 0 - successful
6464 * -ENOMEM - could not allocated memory.
6466 static int
6467 lpfc_create_bootstrap_mbox(struct lpfc_hba *phba)
6469 uint32_t bmbx_size;
6470 struct lpfc_dmabuf *dmabuf;
6471 struct dma_address *dma_address;
6472 uint32_t pa_addr;
6473 uint64_t phys_addr;
6475 dmabuf = kzalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
6476 if (!dmabuf)
6477 return -ENOMEM;
6480 * The bootstrap mailbox region is comprised of 2 parts
6481 * plus an alignment restriction of 16 bytes.
6483 bmbx_size = sizeof(struct lpfc_bmbx_create) + (LPFC_ALIGN_16_BYTE - 1);
6484 dmabuf->virt = dma_alloc_coherent(&phba->pcidev->dev,
6485 bmbx_size,
6486 &dmabuf->phys,
6487 GFP_KERNEL);
6488 if (!dmabuf->virt) {
6489 kfree(dmabuf);
6490 return -ENOMEM;
6492 memset(dmabuf->virt, 0, bmbx_size);
6495 * Initialize the bootstrap mailbox pointers now so that the register
6496 * operations are simple later. The mailbox dma address is required
6497 * to be 16-byte aligned. Also align the virtual memory as each
6498 * maibox is copied into the bmbx mailbox region before issuing the
6499 * command to the port.
6501 phba->sli4_hba.bmbx.dmabuf = dmabuf;
6502 phba->sli4_hba.bmbx.bmbx_size = bmbx_size;
6504 phba->sli4_hba.bmbx.avirt = PTR_ALIGN(dmabuf->virt,
6505 LPFC_ALIGN_16_BYTE);
6506 phba->sli4_hba.bmbx.aphys = ALIGN(dmabuf->phys,
6507 LPFC_ALIGN_16_BYTE);
6510 * Set the high and low physical addresses now. The SLI4 alignment
6511 * requirement is 16 bytes and the mailbox is posted to the port
6512 * as two 30-bit addresses. The other data is a bit marking whether
6513 * the 30-bit address is the high or low address.
6514 * Upcast bmbx aphys to 64bits so shift instruction compiles
6515 * clean on 32 bit machines.
6517 dma_address = &phba->sli4_hba.bmbx.dma_address;
6518 phys_addr = (uint64_t)phba->sli4_hba.bmbx.aphys;
6519 pa_addr = (uint32_t) ((phys_addr >> 34) & 0x3fffffff);
6520 dma_address->addr_hi = (uint32_t) ((pa_addr << 2) |
6521 LPFC_BMBX_BIT1_ADDR_HI);
6523 pa_addr = (uint32_t) ((phba->sli4_hba.bmbx.aphys >> 4) & 0x3fffffff);
6524 dma_address->addr_lo = (uint32_t) ((pa_addr << 2) |
6525 LPFC_BMBX_BIT1_ADDR_LO);
6526 return 0;
6530 * lpfc_destroy_bootstrap_mbox - Destroy all bootstrap mailbox resources
6531 * @phba: pointer to lpfc hba data structure.
6533 * This routine is invoked to teardown the bootstrap mailbox
6534 * region and release all host resources. This routine requires
6535 * the caller to ensure all mailbox commands recovered, no
6536 * additional mailbox comands are sent, and interrupts are disabled
6537 * before calling this routine.
6540 static void
6541 lpfc_destroy_bootstrap_mbox(struct lpfc_hba *phba)
6543 dma_free_coherent(&phba->pcidev->dev,
6544 phba->sli4_hba.bmbx.bmbx_size,
6545 phba->sli4_hba.bmbx.dmabuf->virt,
6546 phba->sli4_hba.bmbx.dmabuf->phys);
6548 kfree(phba->sli4_hba.bmbx.dmabuf);
6549 memset(&phba->sli4_hba.bmbx, 0, sizeof(struct lpfc_bmbx));
6553 * lpfc_sli4_read_config - Get the config parameters.
6554 * @phba: pointer to lpfc hba data structure.
6556 * This routine is invoked to read the configuration parameters from the HBA.
6557 * The configuration parameters are used to set the base and maximum values
6558 * for RPI's XRI's VPI's VFI's and FCFIs. These values also affect the resource
6559 * allocation for the port.
6561 * Return codes
6562 * 0 - successful
6563 * -ENOMEM - No available memory
6564 * -EIO - The mailbox failed to complete successfully.
6567 lpfc_sli4_read_config(struct lpfc_hba *phba)
6569 LPFC_MBOXQ_t *pmb;
6570 struct lpfc_mbx_read_config *rd_config;
6571 union lpfc_sli4_cfg_shdr *shdr;
6572 uint32_t shdr_status, shdr_add_status;
6573 struct lpfc_mbx_get_func_cfg *get_func_cfg;
6574 struct lpfc_rsrc_desc_fcfcoe *desc;
6575 char *pdesc_0;
6576 uint32_t desc_count;
6577 int length, i, rc = 0, rc2;
6579 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
6580 if (!pmb) {
6581 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
6582 "2011 Unable to allocate memory for issuing "
6583 "SLI_CONFIG_SPECIAL mailbox command\n");
6584 return -ENOMEM;
6587 lpfc_read_config(phba, pmb);
6589 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
6590 if (rc != MBX_SUCCESS) {
6591 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
6592 "2012 Mailbox failed , mbxCmd x%x "
6593 "READ_CONFIG, mbxStatus x%x\n",
6594 bf_get(lpfc_mqe_command, &pmb->u.mqe),
6595 bf_get(lpfc_mqe_status, &pmb->u.mqe));
6596 rc = -EIO;
6597 } else {
6598 rd_config = &pmb->u.mqe.un.rd_config;
6599 if (bf_get(lpfc_mbx_rd_conf_lnk_ldv, rd_config)) {
6600 phba->sli4_hba.lnk_info.lnk_dv = LPFC_LNK_DAT_VAL;
6601 phba->sli4_hba.lnk_info.lnk_tp =
6602 bf_get(lpfc_mbx_rd_conf_lnk_type, rd_config);
6603 phba->sli4_hba.lnk_info.lnk_no =
6604 bf_get(lpfc_mbx_rd_conf_lnk_numb, rd_config);
6605 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
6606 "3081 lnk_type:%d, lnk_numb:%d\n",
6607 phba->sli4_hba.lnk_info.lnk_tp,
6608 phba->sli4_hba.lnk_info.lnk_no);
6609 } else
6610 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
6611 "3082 Mailbox (x%x) returned ldv:x0\n",
6612 bf_get(lpfc_mqe_command, &pmb->u.mqe));
6613 phba->sli4_hba.extents_in_use =
6614 bf_get(lpfc_mbx_rd_conf_extnts_inuse, rd_config);
6615 phba->sli4_hba.max_cfg_param.max_xri =
6616 bf_get(lpfc_mbx_rd_conf_xri_count, rd_config);
6617 phba->sli4_hba.max_cfg_param.xri_base =
6618 bf_get(lpfc_mbx_rd_conf_xri_base, rd_config);
6619 phba->sli4_hba.max_cfg_param.max_vpi =
6620 bf_get(lpfc_mbx_rd_conf_vpi_count, rd_config);
6621 phba->sli4_hba.max_cfg_param.vpi_base =
6622 bf_get(lpfc_mbx_rd_conf_vpi_base, rd_config);
6623 phba->sli4_hba.max_cfg_param.max_rpi =
6624 bf_get(lpfc_mbx_rd_conf_rpi_count, rd_config);
6625 phba->sli4_hba.max_cfg_param.rpi_base =
6626 bf_get(lpfc_mbx_rd_conf_rpi_base, rd_config);
6627 phba->sli4_hba.max_cfg_param.max_vfi =
6628 bf_get(lpfc_mbx_rd_conf_vfi_count, rd_config);
6629 phba->sli4_hba.max_cfg_param.vfi_base =
6630 bf_get(lpfc_mbx_rd_conf_vfi_base, rd_config);
6631 phba->sli4_hba.max_cfg_param.max_fcfi =
6632 bf_get(lpfc_mbx_rd_conf_fcfi_count, rd_config);
6633 phba->sli4_hba.max_cfg_param.max_eq =
6634 bf_get(lpfc_mbx_rd_conf_eq_count, rd_config);
6635 phba->sli4_hba.max_cfg_param.max_rq =
6636 bf_get(lpfc_mbx_rd_conf_rq_count, rd_config);
6637 phba->sli4_hba.max_cfg_param.max_wq =
6638 bf_get(lpfc_mbx_rd_conf_wq_count, rd_config);
6639 phba->sli4_hba.max_cfg_param.max_cq =
6640 bf_get(lpfc_mbx_rd_conf_cq_count, rd_config);
6641 phba->lmt = bf_get(lpfc_mbx_rd_conf_lmt, rd_config);
6642 phba->sli4_hba.next_xri = phba->sli4_hba.max_cfg_param.xri_base;
6643 phba->vpi_base = phba->sli4_hba.max_cfg_param.vpi_base;
6644 phba->vfi_base = phba->sli4_hba.max_cfg_param.vfi_base;
6645 phba->max_vpi = (phba->sli4_hba.max_cfg_param.max_vpi > 0) ?
6646 (phba->sli4_hba.max_cfg_param.max_vpi - 1) : 0;
6647 phba->max_vports = phba->max_vpi;
6648 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
6649 "2003 cfg params Extents? %d "
6650 "XRI(B:%d M:%d), "
6651 "VPI(B:%d M:%d) "
6652 "VFI(B:%d M:%d) "
6653 "RPI(B:%d M:%d) "
6654 "FCFI(Count:%d)\n",
6655 phba->sli4_hba.extents_in_use,
6656 phba->sli4_hba.max_cfg_param.xri_base,
6657 phba->sli4_hba.max_cfg_param.max_xri,
6658 phba->sli4_hba.max_cfg_param.vpi_base,
6659 phba->sli4_hba.max_cfg_param.max_vpi,
6660 phba->sli4_hba.max_cfg_param.vfi_base,
6661 phba->sli4_hba.max_cfg_param.max_vfi,
6662 phba->sli4_hba.max_cfg_param.rpi_base,
6663 phba->sli4_hba.max_cfg_param.max_rpi,
6664 phba->sli4_hba.max_cfg_param.max_fcfi);
6667 if (rc)
6668 goto read_cfg_out;
6670 /* Reset the DFT_HBA_Q_DEPTH to the max xri */
6671 length = phba->sli4_hba.max_cfg_param.max_xri -
6672 lpfc_sli4_get_els_iocb_cnt(phba);
6673 if (phba->cfg_hba_queue_depth > length) {
6674 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
6675 "3361 HBA queue depth changed from %d to %d\n",
6676 phba->cfg_hba_queue_depth, length);
6677 phba->cfg_hba_queue_depth = length;
6680 if (bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf) !=
6681 LPFC_SLI_INTF_IF_TYPE_2)
6682 goto read_cfg_out;
6684 /* get the pf# and vf# for SLI4 if_type 2 port */
6685 length = (sizeof(struct lpfc_mbx_get_func_cfg) -
6686 sizeof(struct lpfc_sli4_cfg_mhdr));
6687 lpfc_sli4_config(phba, pmb, LPFC_MBOX_SUBSYSTEM_COMMON,
6688 LPFC_MBOX_OPCODE_GET_FUNCTION_CONFIG,
6689 length, LPFC_SLI4_MBX_EMBED);
6691 rc2 = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
6692 shdr = (union lpfc_sli4_cfg_shdr *)
6693 &pmb->u.mqe.un.sli4_config.header.cfg_shdr;
6694 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
6695 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
6696 if (rc2 || shdr_status || shdr_add_status) {
6697 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
6698 "3026 Mailbox failed , mbxCmd x%x "
6699 "GET_FUNCTION_CONFIG, mbxStatus x%x\n",
6700 bf_get(lpfc_mqe_command, &pmb->u.mqe),
6701 bf_get(lpfc_mqe_status, &pmb->u.mqe));
6702 goto read_cfg_out;
6705 /* search for fc_fcoe resrouce descriptor */
6706 get_func_cfg = &pmb->u.mqe.un.get_func_cfg;
6707 desc_count = get_func_cfg->func_cfg.rsrc_desc_count;
6709 pdesc_0 = (char *)&get_func_cfg->func_cfg.desc[0];
6710 desc = (struct lpfc_rsrc_desc_fcfcoe *)pdesc_0;
6711 length = bf_get(lpfc_rsrc_desc_fcfcoe_length, desc);
6712 if (length == LPFC_RSRC_DESC_TYPE_FCFCOE_V0_RSVD)
6713 length = LPFC_RSRC_DESC_TYPE_FCFCOE_V0_LENGTH;
6714 else if (length != LPFC_RSRC_DESC_TYPE_FCFCOE_V1_LENGTH)
6715 goto read_cfg_out;
6717 for (i = 0; i < LPFC_RSRC_DESC_MAX_NUM; i++) {
6718 desc = (struct lpfc_rsrc_desc_fcfcoe *)(pdesc_0 + length * i);
6719 if (LPFC_RSRC_DESC_TYPE_FCFCOE ==
6720 bf_get(lpfc_rsrc_desc_fcfcoe_type, desc)) {
6721 phba->sli4_hba.iov.pf_number =
6722 bf_get(lpfc_rsrc_desc_fcfcoe_pfnum, desc);
6723 phba->sli4_hba.iov.vf_number =
6724 bf_get(lpfc_rsrc_desc_fcfcoe_vfnum, desc);
6725 break;
6729 if (i < LPFC_RSRC_DESC_MAX_NUM)
6730 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
6731 "3027 GET_FUNCTION_CONFIG: pf_number:%d, "
6732 "vf_number:%d\n", phba->sli4_hba.iov.pf_number,
6733 phba->sli4_hba.iov.vf_number);
6734 else
6735 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
6736 "3028 GET_FUNCTION_CONFIG: failed to find "
6737 "Resrouce Descriptor:x%x\n",
6738 LPFC_RSRC_DESC_TYPE_FCFCOE);
6740 read_cfg_out:
6741 mempool_free(pmb, phba->mbox_mem_pool);
6742 return rc;
6746 * lpfc_setup_endian_order - Write endian order to an SLI4 if_type 0 port.
6747 * @phba: pointer to lpfc hba data structure.
6749 * This routine is invoked to setup the port-side endian order when
6750 * the port if_type is 0. This routine has no function for other
6751 * if_types.
6753 * Return codes
6754 * 0 - successful
6755 * -ENOMEM - No available memory
6756 * -EIO - The mailbox failed to complete successfully.
6758 static int
6759 lpfc_setup_endian_order(struct lpfc_hba *phba)
6761 LPFC_MBOXQ_t *mboxq;
6762 uint32_t if_type, rc = 0;
6763 uint32_t endian_mb_data[2] = {HOST_ENDIAN_LOW_WORD0,
6764 HOST_ENDIAN_HIGH_WORD1};
6766 if_type = bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf);
6767 switch (if_type) {
6768 case LPFC_SLI_INTF_IF_TYPE_0:
6769 mboxq = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool,
6770 GFP_KERNEL);
6771 if (!mboxq) {
6772 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6773 "0492 Unable to allocate memory for "
6774 "issuing SLI_CONFIG_SPECIAL mailbox "
6775 "command\n");
6776 return -ENOMEM;
6780 * The SLI4_CONFIG_SPECIAL mailbox command requires the first
6781 * two words to contain special data values and no other data.
6783 memset(mboxq, 0, sizeof(LPFC_MBOXQ_t));
6784 memcpy(&mboxq->u.mqe, &endian_mb_data, sizeof(endian_mb_data));
6785 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
6786 if (rc != MBX_SUCCESS) {
6787 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6788 "0493 SLI_CONFIG_SPECIAL mailbox "
6789 "failed with status x%x\n",
6790 rc);
6791 rc = -EIO;
6793 mempool_free(mboxq, phba->mbox_mem_pool);
6794 break;
6795 case LPFC_SLI_INTF_IF_TYPE_2:
6796 case LPFC_SLI_INTF_IF_TYPE_1:
6797 default:
6798 break;
6800 return rc;
6804 * lpfc_sli4_queue_verify - Verify and update EQ and CQ counts
6805 * @phba: pointer to lpfc hba data structure.
6807 * This routine is invoked to check the user settable queue counts for EQs and
6808 * CQs. after this routine is called the counts will be set to valid values that
6809 * adhere to the constraints of the system's interrupt vectors and the port's
6810 * queue resources.
6812 * Return codes
6813 * 0 - successful
6814 * -ENOMEM - No available memory
6816 static int
6817 lpfc_sli4_queue_verify(struct lpfc_hba *phba)
6819 int cfg_fcp_io_channel;
6820 uint32_t cpu;
6821 uint32_t i = 0;
6824 * Sanity check for configured queue parameters against the run-time
6825 * device parameters
6828 /* Sanity check on HBA EQ parameters */
6829 cfg_fcp_io_channel = phba->cfg_fcp_io_channel;
6831 /* It doesn't make sense to have more io channels then online CPUs */
6832 for_each_present_cpu(cpu) {
6833 if (cpu_online(cpu))
6834 i++;
6836 phba->sli4_hba.num_online_cpu = i;
6837 phba->sli4_hba.num_present_cpu = lpfc_present_cpu;
6839 if (i < cfg_fcp_io_channel) {
6840 lpfc_printf_log(phba,
6841 KERN_ERR, LOG_INIT,
6842 "3188 Reducing IO channels to match number of "
6843 "online CPUs: from %d to %d\n",
6844 cfg_fcp_io_channel, i);
6845 cfg_fcp_io_channel = i;
6848 if (cfg_fcp_io_channel >
6849 phba->sli4_hba.max_cfg_param.max_eq) {
6850 if (phba->sli4_hba.max_cfg_param.max_eq <
6851 LPFC_FCP_IO_CHAN_MIN) {
6852 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6853 "2574 Not enough EQs (%d) from the "
6854 "pci function for supporting FCP "
6855 "EQs (%d)\n",
6856 phba->sli4_hba.max_cfg_param.max_eq,
6857 phba->cfg_fcp_io_channel);
6858 goto out_error;
6860 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6861 "2575 Reducing IO channels to match number of "
6862 "available EQs: from %d to %d\n",
6863 cfg_fcp_io_channel,
6864 phba->sli4_hba.max_cfg_param.max_eq);
6865 cfg_fcp_io_channel = phba->sli4_hba.max_cfg_param.max_eq;
6868 /* The actual number of FCP event queues adopted */
6869 phba->cfg_fcp_io_channel = cfg_fcp_io_channel;
6871 /* Get EQ depth from module parameter, fake the default for now */
6872 phba->sli4_hba.eq_esize = LPFC_EQE_SIZE_4B;
6873 phba->sli4_hba.eq_ecount = LPFC_EQE_DEF_COUNT;
6875 /* Get CQ depth from module parameter, fake the default for now */
6876 phba->sli4_hba.cq_esize = LPFC_CQE_SIZE;
6877 phba->sli4_hba.cq_ecount = LPFC_CQE_DEF_COUNT;
6879 return 0;
6880 out_error:
6881 return -ENOMEM;
6885 * lpfc_sli4_queue_create - Create all the SLI4 queues
6886 * @phba: pointer to lpfc hba data structure.
6888 * This routine is invoked to allocate all the SLI4 queues for the FCoE HBA
6889 * operation. For each SLI4 queue type, the parameters such as queue entry
6890 * count (queue depth) shall be taken from the module parameter. For now,
6891 * we just use some constant number as place holder.
6893 * Return codes
6894 * 0 - successful
6895 * -ENOMEM - No availble memory
6896 * -EIO - The mailbox failed to complete successfully.
6899 lpfc_sli4_queue_create(struct lpfc_hba *phba)
6901 struct lpfc_queue *qdesc;
6902 int idx;
6905 * Create HBA Record arrays.
6907 if (!phba->cfg_fcp_io_channel)
6908 return -ERANGE;
6910 phba->sli4_hba.mq_esize = LPFC_MQE_SIZE;
6911 phba->sli4_hba.mq_ecount = LPFC_MQE_DEF_COUNT;
6912 phba->sli4_hba.wq_esize = LPFC_WQE_SIZE;
6913 phba->sli4_hba.wq_ecount = LPFC_WQE_DEF_COUNT;
6914 phba->sli4_hba.rq_esize = LPFC_RQE_SIZE;
6915 phba->sli4_hba.rq_ecount = LPFC_RQE_DEF_COUNT;
6917 phba->sli4_hba.hba_eq = kzalloc((sizeof(struct lpfc_queue *) *
6918 phba->cfg_fcp_io_channel), GFP_KERNEL);
6919 if (!phba->sli4_hba.hba_eq) {
6920 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6921 "2576 Failed allocate memory for "
6922 "fast-path EQ record array\n");
6923 goto out_error;
6926 phba->sli4_hba.fcp_cq = kzalloc((sizeof(struct lpfc_queue *) *
6927 phba->cfg_fcp_io_channel), GFP_KERNEL);
6928 if (!phba->sli4_hba.fcp_cq) {
6929 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6930 "2577 Failed allocate memory for fast-path "
6931 "CQ record array\n");
6932 goto out_error;
6935 phba->sli4_hba.fcp_wq = kzalloc((sizeof(struct lpfc_queue *) *
6936 phba->cfg_fcp_io_channel), GFP_KERNEL);
6937 if (!phba->sli4_hba.fcp_wq) {
6938 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6939 "2578 Failed allocate memory for fast-path "
6940 "WQ record array\n");
6941 goto out_error;
6945 * Since the first EQ can have multiple CQs associated with it,
6946 * this array is used to quickly see if we have a FCP fast-path
6947 * CQ match.
6949 phba->sli4_hba.fcp_cq_map = kzalloc((sizeof(uint16_t) *
6950 phba->cfg_fcp_io_channel), GFP_KERNEL);
6951 if (!phba->sli4_hba.fcp_cq_map) {
6952 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6953 "2545 Failed allocate memory for fast-path "
6954 "CQ map\n");
6955 goto out_error;
6959 * Create HBA Event Queues (EQs). The cfg_fcp_io_channel specifies
6960 * how many EQs to create.
6962 for (idx = 0; idx < phba->cfg_fcp_io_channel; idx++) {
6964 /* Create EQs */
6965 qdesc = lpfc_sli4_queue_alloc(phba, phba->sli4_hba.eq_esize,
6966 phba->sli4_hba.eq_ecount);
6967 if (!qdesc) {
6968 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6969 "0497 Failed allocate EQ (%d)\n", idx);
6970 goto out_error;
6972 phba->sli4_hba.hba_eq[idx] = qdesc;
6974 /* Create Fast Path FCP CQs */
6975 qdesc = lpfc_sli4_queue_alloc(phba, phba->sli4_hba.cq_esize,
6976 phba->sli4_hba.cq_ecount);
6977 if (!qdesc) {
6978 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6979 "0499 Failed allocate fast-path FCP "
6980 "CQ (%d)\n", idx);
6981 goto out_error;
6983 phba->sli4_hba.fcp_cq[idx] = qdesc;
6985 /* Create Fast Path FCP WQs */
6986 qdesc = lpfc_sli4_queue_alloc(phba, phba->sli4_hba.wq_esize,
6987 phba->sli4_hba.wq_ecount);
6988 if (!qdesc) {
6989 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6990 "0503 Failed allocate fast-path FCP "
6991 "WQ (%d)\n", idx);
6992 goto out_error;
6994 phba->sli4_hba.fcp_wq[idx] = qdesc;
6999 * Create Slow Path Completion Queues (CQs)
7002 /* Create slow-path Mailbox Command Complete Queue */
7003 qdesc = lpfc_sli4_queue_alloc(phba, phba->sli4_hba.cq_esize,
7004 phba->sli4_hba.cq_ecount);
7005 if (!qdesc) {
7006 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7007 "0500 Failed allocate slow-path mailbox CQ\n");
7008 goto out_error;
7010 phba->sli4_hba.mbx_cq = qdesc;
7012 /* Create slow-path ELS Complete Queue */
7013 qdesc = lpfc_sli4_queue_alloc(phba, phba->sli4_hba.cq_esize,
7014 phba->sli4_hba.cq_ecount);
7015 if (!qdesc) {
7016 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7017 "0501 Failed allocate slow-path ELS CQ\n");
7018 goto out_error;
7020 phba->sli4_hba.els_cq = qdesc;
7024 * Create Slow Path Work Queues (WQs)
7027 /* Create Mailbox Command Queue */
7029 qdesc = lpfc_sli4_queue_alloc(phba, phba->sli4_hba.mq_esize,
7030 phba->sli4_hba.mq_ecount);
7031 if (!qdesc) {
7032 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7033 "0505 Failed allocate slow-path MQ\n");
7034 goto out_error;
7036 phba->sli4_hba.mbx_wq = qdesc;
7039 * Create ELS Work Queues
7042 /* Create slow-path ELS Work Queue */
7043 qdesc = lpfc_sli4_queue_alloc(phba, phba->sli4_hba.wq_esize,
7044 phba->sli4_hba.wq_ecount);
7045 if (!qdesc) {
7046 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7047 "0504 Failed allocate slow-path ELS WQ\n");
7048 goto out_error;
7050 phba->sli4_hba.els_wq = qdesc;
7053 * Create Receive Queue (RQ)
7056 /* Create Receive Queue for header */
7057 qdesc = lpfc_sli4_queue_alloc(phba, phba->sli4_hba.rq_esize,
7058 phba->sli4_hba.rq_ecount);
7059 if (!qdesc) {
7060 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7061 "0506 Failed allocate receive HRQ\n");
7062 goto out_error;
7064 phba->sli4_hba.hdr_rq = qdesc;
7066 /* Create Receive Queue for data */
7067 qdesc = lpfc_sli4_queue_alloc(phba, phba->sli4_hba.rq_esize,
7068 phba->sli4_hba.rq_ecount);
7069 if (!qdesc) {
7070 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7071 "0507 Failed allocate receive DRQ\n");
7072 goto out_error;
7074 phba->sli4_hba.dat_rq = qdesc;
7076 return 0;
7078 out_error:
7079 lpfc_sli4_queue_destroy(phba);
7080 return -ENOMEM;
7084 * lpfc_sli4_queue_destroy - Destroy all the SLI4 queues
7085 * @phba: pointer to lpfc hba data structure.
7087 * This routine is invoked to release all the SLI4 queues with the FCoE HBA
7088 * operation.
7090 * Return codes
7091 * 0 - successful
7092 * -ENOMEM - No available memory
7093 * -EIO - The mailbox failed to complete successfully.
7095 void
7096 lpfc_sli4_queue_destroy(struct lpfc_hba *phba)
7098 int idx;
7100 if (phba->sli4_hba.hba_eq != NULL) {
7101 /* Release HBA event queue */
7102 for (idx = 0; idx < phba->cfg_fcp_io_channel; idx++) {
7103 if (phba->sli4_hba.hba_eq[idx] != NULL) {
7104 lpfc_sli4_queue_free(
7105 phba->sli4_hba.hba_eq[idx]);
7106 phba->sli4_hba.hba_eq[idx] = NULL;
7109 kfree(phba->sli4_hba.hba_eq);
7110 phba->sli4_hba.hba_eq = NULL;
7113 if (phba->sli4_hba.fcp_cq != NULL) {
7114 /* Release FCP completion queue */
7115 for (idx = 0; idx < phba->cfg_fcp_io_channel; idx++) {
7116 if (phba->sli4_hba.fcp_cq[idx] != NULL) {
7117 lpfc_sli4_queue_free(
7118 phba->sli4_hba.fcp_cq[idx]);
7119 phba->sli4_hba.fcp_cq[idx] = NULL;
7122 kfree(phba->sli4_hba.fcp_cq);
7123 phba->sli4_hba.fcp_cq = NULL;
7126 if (phba->sli4_hba.fcp_wq != NULL) {
7127 /* Release FCP work queue */
7128 for (idx = 0; idx < phba->cfg_fcp_io_channel; idx++) {
7129 if (phba->sli4_hba.fcp_wq[idx] != NULL) {
7130 lpfc_sli4_queue_free(
7131 phba->sli4_hba.fcp_wq[idx]);
7132 phba->sli4_hba.fcp_wq[idx] = NULL;
7135 kfree(phba->sli4_hba.fcp_wq);
7136 phba->sli4_hba.fcp_wq = NULL;
7139 /* Release FCP CQ mapping array */
7140 if (phba->sli4_hba.fcp_cq_map != NULL) {
7141 kfree(phba->sli4_hba.fcp_cq_map);
7142 phba->sli4_hba.fcp_cq_map = NULL;
7145 /* Release mailbox command work queue */
7146 if (phba->sli4_hba.mbx_wq != NULL) {
7147 lpfc_sli4_queue_free(phba->sli4_hba.mbx_wq);
7148 phba->sli4_hba.mbx_wq = NULL;
7151 /* Release ELS work queue */
7152 if (phba->sli4_hba.els_wq != NULL) {
7153 lpfc_sli4_queue_free(phba->sli4_hba.els_wq);
7154 phba->sli4_hba.els_wq = NULL;
7157 /* Release unsolicited receive queue */
7158 if (phba->sli4_hba.hdr_rq != NULL) {
7159 lpfc_sli4_queue_free(phba->sli4_hba.hdr_rq);
7160 phba->sli4_hba.hdr_rq = NULL;
7162 if (phba->sli4_hba.dat_rq != NULL) {
7163 lpfc_sli4_queue_free(phba->sli4_hba.dat_rq);
7164 phba->sli4_hba.dat_rq = NULL;
7167 /* Release ELS complete queue */
7168 if (phba->sli4_hba.els_cq != NULL) {
7169 lpfc_sli4_queue_free(phba->sli4_hba.els_cq);
7170 phba->sli4_hba.els_cq = NULL;
7173 /* Release mailbox command complete queue */
7174 if (phba->sli4_hba.mbx_cq != NULL) {
7175 lpfc_sli4_queue_free(phba->sli4_hba.mbx_cq);
7176 phba->sli4_hba.mbx_cq = NULL;
7179 return;
7183 * lpfc_sli4_queue_setup - Set up all the SLI4 queues
7184 * @phba: pointer to lpfc hba data structure.
7186 * This routine is invoked to set up all the SLI4 queues for the FCoE HBA
7187 * operation.
7189 * Return codes
7190 * 0 - successful
7191 * -ENOMEM - No available memory
7192 * -EIO - The mailbox failed to complete successfully.
7195 lpfc_sli4_queue_setup(struct lpfc_hba *phba)
7197 struct lpfc_sli *psli = &phba->sli;
7198 struct lpfc_sli_ring *pring;
7199 int rc = -ENOMEM;
7200 int fcp_eqidx, fcp_cqidx, fcp_wqidx;
7201 int fcp_cq_index = 0;
7202 uint32_t shdr_status, shdr_add_status;
7203 union lpfc_sli4_cfg_shdr *shdr;
7204 LPFC_MBOXQ_t *mboxq;
7205 uint32_t length;
7207 /* Check for dual-ULP support */
7208 mboxq = (LPFC_MBOXQ_t *)mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
7209 if (!mboxq) {
7210 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7211 "3249 Unable to allocate memory for "
7212 "QUERY_FW_CFG mailbox command\n");
7213 return -ENOMEM;
7215 length = (sizeof(struct lpfc_mbx_query_fw_config) -
7216 sizeof(struct lpfc_sli4_cfg_mhdr));
7217 lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_COMMON,
7218 LPFC_MBOX_OPCODE_QUERY_FW_CFG,
7219 length, LPFC_SLI4_MBX_EMBED);
7221 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
7223 shdr = (union lpfc_sli4_cfg_shdr *)
7224 &mboxq->u.mqe.un.sli4_config.header.cfg_shdr;
7225 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
7226 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
7227 if (shdr_status || shdr_add_status || rc) {
7228 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7229 "3250 QUERY_FW_CFG mailbox failed with status "
7230 "x%x add_status x%x, mbx status x%x\n",
7231 shdr_status, shdr_add_status, rc);
7232 if (rc != MBX_TIMEOUT)
7233 mempool_free(mboxq, phba->mbox_mem_pool);
7234 rc = -ENXIO;
7235 goto out_error;
7238 phba->sli4_hba.fw_func_mode =
7239 mboxq->u.mqe.un.query_fw_cfg.rsp.function_mode;
7240 phba->sli4_hba.ulp0_mode = mboxq->u.mqe.un.query_fw_cfg.rsp.ulp0_mode;
7241 phba->sli4_hba.ulp1_mode = mboxq->u.mqe.un.query_fw_cfg.rsp.ulp1_mode;
7242 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
7243 "3251 QUERY_FW_CFG: func_mode:x%x, ulp0_mode:x%x, "
7244 "ulp1_mode:x%x\n", phba->sli4_hba.fw_func_mode,
7245 phba->sli4_hba.ulp0_mode, phba->sli4_hba.ulp1_mode);
7247 if (rc != MBX_TIMEOUT)
7248 mempool_free(mboxq, phba->mbox_mem_pool);
7251 * Set up HBA Event Queues (EQs)
7254 /* Set up HBA event queue */
7255 if (phba->cfg_fcp_io_channel && !phba->sli4_hba.hba_eq) {
7256 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7257 "3147 Fast-path EQs not allocated\n");
7258 rc = -ENOMEM;
7259 goto out_error;
7261 for (fcp_eqidx = 0; fcp_eqidx < phba->cfg_fcp_io_channel; fcp_eqidx++) {
7262 if (!phba->sli4_hba.hba_eq[fcp_eqidx]) {
7263 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7264 "0522 Fast-path EQ (%d) not "
7265 "allocated\n", fcp_eqidx);
7266 rc = -ENOMEM;
7267 goto out_destroy_hba_eq;
7269 rc = lpfc_eq_create(phba, phba->sli4_hba.hba_eq[fcp_eqidx],
7270 (phba->cfg_fcp_imax / phba->cfg_fcp_io_channel));
7271 if (rc) {
7272 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7273 "0523 Failed setup of fast-path EQ "
7274 "(%d), rc = 0x%x\n", fcp_eqidx, rc);
7275 goto out_destroy_hba_eq;
7277 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
7278 "2584 HBA EQ setup: "
7279 "queue[%d]-id=%d\n", fcp_eqidx,
7280 phba->sli4_hba.hba_eq[fcp_eqidx]->queue_id);
7283 /* Set up fast-path FCP Response Complete Queue */
7284 if (!phba->sli4_hba.fcp_cq) {
7285 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7286 "3148 Fast-path FCP CQ array not "
7287 "allocated\n");
7288 rc = -ENOMEM;
7289 goto out_destroy_hba_eq;
7292 for (fcp_cqidx = 0; fcp_cqidx < phba->cfg_fcp_io_channel; fcp_cqidx++) {
7293 if (!phba->sli4_hba.fcp_cq[fcp_cqidx]) {
7294 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7295 "0526 Fast-path FCP CQ (%d) not "
7296 "allocated\n", fcp_cqidx);
7297 rc = -ENOMEM;
7298 goto out_destroy_fcp_cq;
7300 rc = lpfc_cq_create(phba, phba->sli4_hba.fcp_cq[fcp_cqidx],
7301 phba->sli4_hba.hba_eq[fcp_cqidx], LPFC_WCQ, LPFC_FCP);
7302 if (rc) {
7303 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7304 "0527 Failed setup of fast-path FCP "
7305 "CQ (%d), rc = 0x%x\n", fcp_cqidx, rc);
7306 goto out_destroy_fcp_cq;
7309 /* Setup fcp_cq_map for fast lookup */
7310 phba->sli4_hba.fcp_cq_map[fcp_cqidx] =
7311 phba->sli4_hba.fcp_cq[fcp_cqidx]->queue_id;
7313 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
7314 "2588 FCP CQ setup: cq[%d]-id=%d, "
7315 "parent seq[%d]-id=%d\n",
7316 fcp_cqidx,
7317 phba->sli4_hba.fcp_cq[fcp_cqidx]->queue_id,
7318 fcp_cqidx,
7319 phba->sli4_hba.hba_eq[fcp_cqidx]->queue_id);
7322 /* Set up fast-path FCP Work Queue */
7323 if (!phba->sli4_hba.fcp_wq) {
7324 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7325 "3149 Fast-path FCP WQ array not "
7326 "allocated\n");
7327 rc = -ENOMEM;
7328 goto out_destroy_fcp_cq;
7331 for (fcp_wqidx = 0; fcp_wqidx < phba->cfg_fcp_io_channel; fcp_wqidx++) {
7332 if (!phba->sli4_hba.fcp_wq[fcp_wqidx]) {
7333 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7334 "0534 Fast-path FCP WQ (%d) not "
7335 "allocated\n", fcp_wqidx);
7336 rc = -ENOMEM;
7337 goto out_destroy_fcp_wq;
7339 rc = lpfc_wq_create(phba, phba->sli4_hba.fcp_wq[fcp_wqidx],
7340 phba->sli4_hba.fcp_cq[fcp_wqidx],
7341 LPFC_FCP);
7342 if (rc) {
7343 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7344 "0535 Failed setup of fast-path FCP "
7345 "WQ (%d), rc = 0x%x\n", fcp_wqidx, rc);
7346 goto out_destroy_fcp_wq;
7349 /* Bind this WQ to the next FCP ring */
7350 pring = &psli->ring[MAX_SLI3_CONFIGURED_RINGS + fcp_wqidx];
7351 pring->sli.sli4.wqp = (void *)phba->sli4_hba.fcp_wq[fcp_wqidx];
7352 phba->sli4_hba.fcp_cq[fcp_wqidx]->pring = pring;
7354 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
7355 "2591 FCP WQ setup: wq[%d]-id=%d, "
7356 "parent cq[%d]-id=%d\n",
7357 fcp_wqidx,
7358 phba->sli4_hba.fcp_wq[fcp_wqidx]->queue_id,
7359 fcp_cq_index,
7360 phba->sli4_hba.fcp_cq[fcp_wqidx]->queue_id);
7363 * Set up Complete Queues (CQs)
7366 /* Set up slow-path MBOX Complete Queue as the first CQ */
7367 if (!phba->sli4_hba.mbx_cq) {
7368 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7369 "0528 Mailbox CQ not allocated\n");
7370 rc = -ENOMEM;
7371 goto out_destroy_fcp_wq;
7373 rc = lpfc_cq_create(phba, phba->sli4_hba.mbx_cq,
7374 phba->sli4_hba.hba_eq[0], LPFC_MCQ, LPFC_MBOX);
7375 if (rc) {
7376 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7377 "0529 Failed setup of slow-path mailbox CQ: "
7378 "rc = 0x%x\n", rc);
7379 goto out_destroy_fcp_wq;
7381 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
7382 "2585 MBX CQ setup: cq-id=%d, parent eq-id=%d\n",
7383 phba->sli4_hba.mbx_cq->queue_id,
7384 phba->sli4_hba.hba_eq[0]->queue_id);
7386 /* Set up slow-path ELS Complete Queue */
7387 if (!phba->sli4_hba.els_cq) {
7388 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7389 "0530 ELS CQ not allocated\n");
7390 rc = -ENOMEM;
7391 goto out_destroy_mbx_cq;
7393 rc = lpfc_cq_create(phba, phba->sli4_hba.els_cq,
7394 phba->sli4_hba.hba_eq[0], LPFC_WCQ, LPFC_ELS);
7395 if (rc) {
7396 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7397 "0531 Failed setup of slow-path ELS CQ: "
7398 "rc = 0x%x\n", rc);
7399 goto out_destroy_mbx_cq;
7401 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
7402 "2586 ELS CQ setup: cq-id=%d, parent eq-id=%d\n",
7403 phba->sli4_hba.els_cq->queue_id,
7404 phba->sli4_hba.hba_eq[0]->queue_id);
7407 * Set up all the Work Queues (WQs)
7410 /* Set up Mailbox Command Queue */
7411 if (!phba->sli4_hba.mbx_wq) {
7412 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7413 "0538 Slow-path MQ not allocated\n");
7414 rc = -ENOMEM;
7415 goto out_destroy_els_cq;
7417 rc = lpfc_mq_create(phba, phba->sli4_hba.mbx_wq,
7418 phba->sli4_hba.mbx_cq, LPFC_MBOX);
7419 if (rc) {
7420 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7421 "0539 Failed setup of slow-path MQ: "
7422 "rc = 0x%x\n", rc);
7423 goto out_destroy_els_cq;
7425 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
7426 "2589 MBX MQ setup: wq-id=%d, parent cq-id=%d\n",
7427 phba->sli4_hba.mbx_wq->queue_id,
7428 phba->sli4_hba.mbx_cq->queue_id);
7430 /* Set up slow-path ELS Work Queue */
7431 if (!phba->sli4_hba.els_wq) {
7432 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7433 "0536 Slow-path ELS WQ not allocated\n");
7434 rc = -ENOMEM;
7435 goto out_destroy_mbx_wq;
7437 rc = lpfc_wq_create(phba, phba->sli4_hba.els_wq,
7438 phba->sli4_hba.els_cq, LPFC_ELS);
7439 if (rc) {
7440 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7441 "0537 Failed setup of slow-path ELS WQ: "
7442 "rc = 0x%x\n", rc);
7443 goto out_destroy_mbx_wq;
7446 /* Bind this WQ to the ELS ring */
7447 pring = &psli->ring[LPFC_ELS_RING];
7448 pring->sli.sli4.wqp = (void *)phba->sli4_hba.els_wq;
7449 phba->sli4_hba.els_cq->pring = pring;
7451 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
7452 "2590 ELS WQ setup: wq-id=%d, parent cq-id=%d\n",
7453 phba->sli4_hba.els_wq->queue_id,
7454 phba->sli4_hba.els_cq->queue_id);
7457 * Create Receive Queue (RQ)
7459 if (!phba->sli4_hba.hdr_rq || !phba->sli4_hba.dat_rq) {
7460 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7461 "0540 Receive Queue not allocated\n");
7462 rc = -ENOMEM;
7463 goto out_destroy_els_wq;
7466 lpfc_rq_adjust_repost(phba, phba->sli4_hba.hdr_rq, LPFC_ELS_HBQ);
7467 lpfc_rq_adjust_repost(phba, phba->sli4_hba.dat_rq, LPFC_ELS_HBQ);
7469 rc = lpfc_rq_create(phba, phba->sli4_hba.hdr_rq, phba->sli4_hba.dat_rq,
7470 phba->sli4_hba.els_cq, LPFC_USOL);
7471 if (rc) {
7472 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7473 "0541 Failed setup of Receive Queue: "
7474 "rc = 0x%x\n", rc);
7475 goto out_destroy_fcp_wq;
7478 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
7479 "2592 USL RQ setup: hdr-rq-id=%d, dat-rq-id=%d "
7480 "parent cq-id=%d\n",
7481 phba->sli4_hba.hdr_rq->queue_id,
7482 phba->sli4_hba.dat_rq->queue_id,
7483 phba->sli4_hba.els_cq->queue_id);
7484 return 0;
7486 out_destroy_els_wq:
7487 lpfc_wq_destroy(phba, phba->sli4_hba.els_wq);
7488 out_destroy_mbx_wq:
7489 lpfc_mq_destroy(phba, phba->sli4_hba.mbx_wq);
7490 out_destroy_els_cq:
7491 lpfc_cq_destroy(phba, phba->sli4_hba.els_cq);
7492 out_destroy_mbx_cq:
7493 lpfc_cq_destroy(phba, phba->sli4_hba.mbx_cq);
7494 out_destroy_fcp_wq:
7495 for (--fcp_wqidx; fcp_wqidx >= 0; fcp_wqidx--)
7496 lpfc_wq_destroy(phba, phba->sli4_hba.fcp_wq[fcp_wqidx]);
7497 out_destroy_fcp_cq:
7498 for (--fcp_cqidx; fcp_cqidx >= 0; fcp_cqidx--)
7499 lpfc_cq_destroy(phba, phba->sli4_hba.fcp_cq[fcp_cqidx]);
7500 out_destroy_hba_eq:
7501 for (--fcp_eqidx; fcp_eqidx >= 0; fcp_eqidx--)
7502 lpfc_eq_destroy(phba, phba->sli4_hba.hba_eq[fcp_eqidx]);
7503 out_error:
7504 return rc;
7508 * lpfc_sli4_queue_unset - Unset all the SLI4 queues
7509 * @phba: pointer to lpfc hba data structure.
7511 * This routine is invoked to unset all the SLI4 queues with the FCoE HBA
7512 * operation.
7514 * Return codes
7515 * 0 - successful
7516 * -ENOMEM - No available memory
7517 * -EIO - The mailbox failed to complete successfully.
7519 void
7520 lpfc_sli4_queue_unset(struct lpfc_hba *phba)
7522 int fcp_qidx;
7524 /* Unset mailbox command work queue */
7525 lpfc_mq_destroy(phba, phba->sli4_hba.mbx_wq);
7526 /* Unset ELS work queue */
7527 lpfc_wq_destroy(phba, phba->sli4_hba.els_wq);
7528 /* Unset unsolicited receive queue */
7529 lpfc_rq_destroy(phba, phba->sli4_hba.hdr_rq, phba->sli4_hba.dat_rq);
7530 /* Unset FCP work queue */
7531 if (phba->sli4_hba.fcp_wq) {
7532 for (fcp_qidx = 0; fcp_qidx < phba->cfg_fcp_io_channel;
7533 fcp_qidx++)
7534 lpfc_wq_destroy(phba, phba->sli4_hba.fcp_wq[fcp_qidx]);
7536 /* Unset mailbox command complete queue */
7537 lpfc_cq_destroy(phba, phba->sli4_hba.mbx_cq);
7538 /* Unset ELS complete queue */
7539 lpfc_cq_destroy(phba, phba->sli4_hba.els_cq);
7540 /* Unset FCP response complete queue */
7541 if (phba->sli4_hba.fcp_cq) {
7542 for (fcp_qidx = 0; fcp_qidx < phba->cfg_fcp_io_channel;
7543 fcp_qidx++)
7544 lpfc_cq_destroy(phba, phba->sli4_hba.fcp_cq[fcp_qidx]);
7546 /* Unset fast-path event queue */
7547 if (phba->sli4_hba.hba_eq) {
7548 for (fcp_qidx = 0; fcp_qidx < phba->cfg_fcp_io_channel;
7549 fcp_qidx++)
7550 lpfc_eq_destroy(phba, phba->sli4_hba.hba_eq[fcp_qidx]);
7555 * lpfc_sli4_cq_event_pool_create - Create completion-queue event free pool
7556 * @phba: pointer to lpfc hba data structure.
7558 * This routine is invoked to allocate and set up a pool of completion queue
7559 * events. The body of the completion queue event is a completion queue entry
7560 * CQE. For now, this pool is used for the interrupt service routine to queue
7561 * the following HBA completion queue events for the worker thread to process:
7562 * - Mailbox asynchronous events
7563 * - Receive queue completion unsolicited events
7564 * Later, this can be used for all the slow-path events.
7566 * Return codes
7567 * 0 - successful
7568 * -ENOMEM - No available memory
7570 static int
7571 lpfc_sli4_cq_event_pool_create(struct lpfc_hba *phba)
7573 struct lpfc_cq_event *cq_event;
7574 int i;
7576 for (i = 0; i < (4 * phba->sli4_hba.cq_ecount); i++) {
7577 cq_event = kmalloc(sizeof(struct lpfc_cq_event), GFP_KERNEL);
7578 if (!cq_event)
7579 goto out_pool_create_fail;
7580 list_add_tail(&cq_event->list,
7581 &phba->sli4_hba.sp_cqe_event_pool);
7583 return 0;
7585 out_pool_create_fail:
7586 lpfc_sli4_cq_event_pool_destroy(phba);
7587 return -ENOMEM;
7591 * lpfc_sli4_cq_event_pool_destroy - Free completion-queue event free pool
7592 * @phba: pointer to lpfc hba data structure.
7594 * This routine is invoked to free the pool of completion queue events at
7595 * driver unload time. Note that, it is the responsibility of the driver
7596 * cleanup routine to free all the outstanding completion-queue events
7597 * allocated from this pool back into the pool before invoking this routine
7598 * to destroy the pool.
7600 static void
7601 lpfc_sli4_cq_event_pool_destroy(struct lpfc_hba *phba)
7603 struct lpfc_cq_event *cq_event, *next_cq_event;
7605 list_for_each_entry_safe(cq_event, next_cq_event,
7606 &phba->sli4_hba.sp_cqe_event_pool, list) {
7607 list_del(&cq_event->list);
7608 kfree(cq_event);
7613 * __lpfc_sli4_cq_event_alloc - Allocate a completion-queue event from free pool
7614 * @phba: pointer to lpfc hba data structure.
7616 * This routine is the lock free version of the API invoked to allocate a
7617 * completion-queue event from the free pool.
7619 * Return: Pointer to the newly allocated completion-queue event if successful
7620 * NULL otherwise.
7622 struct lpfc_cq_event *
7623 __lpfc_sli4_cq_event_alloc(struct lpfc_hba *phba)
7625 struct lpfc_cq_event *cq_event = NULL;
7627 list_remove_head(&phba->sli4_hba.sp_cqe_event_pool, cq_event,
7628 struct lpfc_cq_event, list);
7629 return cq_event;
7633 * lpfc_sli4_cq_event_alloc - Allocate a completion-queue event from free pool
7634 * @phba: pointer to lpfc hba data structure.
7636 * This routine is the lock version of the API invoked to allocate a
7637 * completion-queue event from the free pool.
7639 * Return: Pointer to the newly allocated completion-queue event if successful
7640 * NULL otherwise.
7642 struct lpfc_cq_event *
7643 lpfc_sli4_cq_event_alloc(struct lpfc_hba *phba)
7645 struct lpfc_cq_event *cq_event;
7646 unsigned long iflags;
7648 spin_lock_irqsave(&phba->hbalock, iflags);
7649 cq_event = __lpfc_sli4_cq_event_alloc(phba);
7650 spin_unlock_irqrestore(&phba->hbalock, iflags);
7651 return cq_event;
7655 * __lpfc_sli4_cq_event_release - Release a completion-queue event to free pool
7656 * @phba: pointer to lpfc hba data structure.
7657 * @cq_event: pointer to the completion queue event to be freed.
7659 * This routine is the lock free version of the API invoked to release a
7660 * completion-queue event back into the free pool.
7662 void
7663 __lpfc_sli4_cq_event_release(struct lpfc_hba *phba,
7664 struct lpfc_cq_event *cq_event)
7666 list_add_tail(&cq_event->list, &phba->sli4_hba.sp_cqe_event_pool);
7670 * lpfc_sli4_cq_event_release - Release a completion-queue event to free pool
7671 * @phba: pointer to lpfc hba data structure.
7672 * @cq_event: pointer to the completion queue event to be freed.
7674 * This routine is the lock version of the API invoked to release a
7675 * completion-queue event back into the free pool.
7677 void
7678 lpfc_sli4_cq_event_release(struct lpfc_hba *phba,
7679 struct lpfc_cq_event *cq_event)
7681 unsigned long iflags;
7682 spin_lock_irqsave(&phba->hbalock, iflags);
7683 __lpfc_sli4_cq_event_release(phba, cq_event);
7684 spin_unlock_irqrestore(&phba->hbalock, iflags);
7688 * lpfc_sli4_cq_event_release_all - Release all cq events to the free pool
7689 * @phba: pointer to lpfc hba data structure.
7691 * This routine is to free all the pending completion-queue events to the
7692 * back into the free pool for device reset.
7694 static void
7695 lpfc_sli4_cq_event_release_all(struct lpfc_hba *phba)
7697 LIST_HEAD(cqelist);
7698 struct lpfc_cq_event *cqe;
7699 unsigned long iflags;
7701 /* Retrieve all the pending WCQEs from pending WCQE lists */
7702 spin_lock_irqsave(&phba->hbalock, iflags);
7703 /* Pending FCP XRI abort events */
7704 list_splice_init(&phba->sli4_hba.sp_fcp_xri_aborted_work_queue,
7705 &cqelist);
7706 /* Pending ELS XRI abort events */
7707 list_splice_init(&phba->sli4_hba.sp_els_xri_aborted_work_queue,
7708 &cqelist);
7709 /* Pending asynnc events */
7710 list_splice_init(&phba->sli4_hba.sp_asynce_work_queue,
7711 &cqelist);
7712 spin_unlock_irqrestore(&phba->hbalock, iflags);
7714 while (!list_empty(&cqelist)) {
7715 list_remove_head(&cqelist, cqe, struct lpfc_cq_event, list);
7716 lpfc_sli4_cq_event_release(phba, cqe);
7721 * lpfc_pci_function_reset - Reset pci function.
7722 * @phba: pointer to lpfc hba data structure.
7724 * This routine is invoked to request a PCI function reset. It will destroys
7725 * all resources assigned to the PCI function which originates this request.
7727 * Return codes
7728 * 0 - successful
7729 * -ENOMEM - No available memory
7730 * -EIO - The mailbox failed to complete successfully.
7733 lpfc_pci_function_reset(struct lpfc_hba *phba)
7735 LPFC_MBOXQ_t *mboxq;
7736 uint32_t rc = 0, if_type;
7737 uint32_t shdr_status, shdr_add_status;
7738 uint32_t rdy_chk, num_resets = 0, reset_again = 0;
7739 union lpfc_sli4_cfg_shdr *shdr;
7740 struct lpfc_register reg_data;
7741 uint16_t devid;
7743 if_type = bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf);
7744 switch (if_type) {
7745 case LPFC_SLI_INTF_IF_TYPE_0:
7746 mboxq = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool,
7747 GFP_KERNEL);
7748 if (!mboxq) {
7749 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7750 "0494 Unable to allocate memory for "
7751 "issuing SLI_FUNCTION_RESET mailbox "
7752 "command\n");
7753 return -ENOMEM;
7756 /* Setup PCI function reset mailbox-ioctl command */
7757 lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_COMMON,
7758 LPFC_MBOX_OPCODE_FUNCTION_RESET, 0,
7759 LPFC_SLI4_MBX_EMBED);
7760 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
7761 shdr = (union lpfc_sli4_cfg_shdr *)
7762 &mboxq->u.mqe.un.sli4_config.header.cfg_shdr;
7763 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
7764 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status,
7765 &shdr->response);
7766 if (rc != MBX_TIMEOUT)
7767 mempool_free(mboxq, phba->mbox_mem_pool);
7768 if (shdr_status || shdr_add_status || rc) {
7769 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7770 "0495 SLI_FUNCTION_RESET mailbox "
7771 "failed with status x%x add_status x%x,"
7772 " mbx status x%x\n",
7773 shdr_status, shdr_add_status, rc);
7774 rc = -ENXIO;
7776 break;
7777 case LPFC_SLI_INTF_IF_TYPE_2:
7778 for (num_resets = 0;
7779 num_resets < MAX_IF_TYPE_2_RESETS;
7780 num_resets++) {
7781 reg_data.word0 = 0;
7782 bf_set(lpfc_sliport_ctrl_end, &reg_data,
7783 LPFC_SLIPORT_LITTLE_ENDIAN);
7784 bf_set(lpfc_sliport_ctrl_ip, &reg_data,
7785 LPFC_SLIPORT_INIT_PORT);
7786 writel(reg_data.word0, phba->sli4_hba.u.if_type2.
7787 CTRLregaddr);
7788 /* flush */
7789 pci_read_config_word(phba->pcidev,
7790 PCI_DEVICE_ID, &devid);
7792 * Poll the Port Status Register and wait for RDY for
7793 * up to 10 seconds. If the port doesn't respond, treat
7794 * it as an error. If the port responds with RN, start
7795 * the loop again.
7797 for (rdy_chk = 0; rdy_chk < 1000; rdy_chk++) {
7798 msleep(10);
7799 if (lpfc_readl(phba->sli4_hba.u.if_type2.
7800 STATUSregaddr, &reg_data.word0)) {
7801 rc = -ENODEV;
7802 goto out;
7804 if (bf_get(lpfc_sliport_status_rn, &reg_data))
7805 reset_again++;
7806 if (bf_get(lpfc_sliport_status_rdy, &reg_data))
7807 break;
7811 * If the port responds to the init request with
7812 * reset needed, delay for a bit and restart the loop.
7814 if (reset_again && (rdy_chk < 1000)) {
7815 msleep(10);
7816 reset_again = 0;
7817 continue;
7820 /* Detect any port errors. */
7821 if ((bf_get(lpfc_sliport_status_err, &reg_data)) ||
7822 (rdy_chk >= 1000)) {
7823 phba->work_status[0] = readl(
7824 phba->sli4_hba.u.if_type2.ERR1regaddr);
7825 phba->work_status[1] = readl(
7826 phba->sli4_hba.u.if_type2.ERR2regaddr);
7827 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7828 "2890 Port error detected during port "
7829 "reset(%d): wait_tmo:%d ms, "
7830 "port status reg 0x%x, "
7831 "error 1=0x%x, error 2=0x%x\n",
7832 num_resets, rdy_chk*10,
7833 reg_data.word0,
7834 phba->work_status[0],
7835 phba->work_status[1]);
7836 rc = -ENODEV;
7840 * Terminate the outer loop provided the Port indicated
7841 * ready within 10 seconds.
7843 if (rdy_chk < 1000)
7844 break;
7846 /* delay driver action following IF_TYPE_2 function reset */
7847 msleep(100);
7848 break;
7849 case LPFC_SLI_INTF_IF_TYPE_1:
7850 default:
7851 break;
7854 out:
7855 /* Catch the not-ready port failure after a port reset. */
7856 if (num_resets >= MAX_IF_TYPE_2_RESETS) {
7857 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7858 "3317 HBA not functional: IP Reset Failed "
7859 "after (%d) retries, try: "
7860 "echo fw_reset > board_mode\n", num_resets);
7861 rc = -ENODEV;
7864 return rc;
7868 * lpfc_sli4_pci_mem_setup - Setup SLI4 HBA PCI memory space.
7869 * @phba: pointer to lpfc hba data structure.
7871 * This routine is invoked to set up the PCI device memory space for device
7872 * with SLI-4 interface spec.
7874 * Return codes
7875 * 0 - successful
7876 * other values - error
7878 static int
7879 lpfc_sli4_pci_mem_setup(struct lpfc_hba *phba)
7881 struct pci_dev *pdev;
7882 unsigned long bar0map_len, bar1map_len, bar2map_len;
7883 int error = -ENODEV;
7884 uint32_t if_type;
7886 /* Obtain PCI device reference */
7887 if (!phba->pcidev)
7888 return error;
7889 else
7890 pdev = phba->pcidev;
7892 /* Set the device DMA mask size */
7893 if (pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) != 0
7894 || pci_set_consistent_dma_mask(pdev,DMA_BIT_MASK(64)) != 0) {
7895 if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32)) != 0
7896 || pci_set_consistent_dma_mask(pdev,DMA_BIT_MASK(32)) != 0) {
7897 return error;
7902 * The BARs and register set definitions and offset locations are
7903 * dependent on the if_type.
7905 if (pci_read_config_dword(pdev, LPFC_SLI_INTF,
7906 &phba->sli4_hba.sli_intf.word0)) {
7907 return error;
7910 /* There is no SLI3 failback for SLI4 devices. */
7911 if (bf_get(lpfc_sli_intf_valid, &phba->sli4_hba.sli_intf) !=
7912 LPFC_SLI_INTF_VALID) {
7913 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7914 "2894 SLI_INTF reg contents invalid "
7915 "sli_intf reg 0x%x\n",
7916 phba->sli4_hba.sli_intf.word0);
7917 return error;
7920 if_type = bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf);
7922 * Get the bus address of SLI4 device Bar regions and the
7923 * number of bytes required by each mapping. The mapping of the
7924 * particular PCI BARs regions is dependent on the type of
7925 * SLI4 device.
7927 if (pci_resource_start(pdev, PCI_64BIT_BAR0)) {
7928 phba->pci_bar0_map = pci_resource_start(pdev, PCI_64BIT_BAR0);
7929 bar0map_len = pci_resource_len(pdev, PCI_64BIT_BAR0);
7932 * Map SLI4 PCI Config Space Register base to a kernel virtual
7933 * addr
7935 phba->sli4_hba.conf_regs_memmap_p =
7936 ioremap(phba->pci_bar0_map, bar0map_len);
7937 if (!phba->sli4_hba.conf_regs_memmap_p) {
7938 dev_printk(KERN_ERR, &pdev->dev,
7939 "ioremap failed for SLI4 PCI config "
7940 "registers.\n");
7941 goto out;
7943 phba->pci_bar0_memmap_p = phba->sli4_hba.conf_regs_memmap_p;
7944 /* Set up BAR0 PCI config space register memory map */
7945 lpfc_sli4_bar0_register_memmap(phba, if_type);
7946 } else {
7947 phba->pci_bar0_map = pci_resource_start(pdev, 1);
7948 bar0map_len = pci_resource_len(pdev, 1);
7949 if (if_type == LPFC_SLI_INTF_IF_TYPE_2) {
7950 dev_printk(KERN_ERR, &pdev->dev,
7951 "FATAL - No BAR0 mapping for SLI4, if_type 2\n");
7952 goto out;
7954 phba->sli4_hba.conf_regs_memmap_p =
7955 ioremap(phba->pci_bar0_map, bar0map_len);
7956 if (!phba->sli4_hba.conf_regs_memmap_p) {
7957 dev_printk(KERN_ERR, &pdev->dev,
7958 "ioremap failed for SLI4 PCI config "
7959 "registers.\n");
7960 goto out;
7962 lpfc_sli4_bar0_register_memmap(phba, if_type);
7965 if ((if_type == LPFC_SLI_INTF_IF_TYPE_0) &&
7966 (pci_resource_start(pdev, PCI_64BIT_BAR2))) {
7968 * Map SLI4 if type 0 HBA Control Register base to a kernel
7969 * virtual address and setup the registers.
7971 phba->pci_bar1_map = pci_resource_start(pdev, PCI_64BIT_BAR2);
7972 bar1map_len = pci_resource_len(pdev, PCI_64BIT_BAR2);
7973 phba->sli4_hba.ctrl_regs_memmap_p =
7974 ioremap(phba->pci_bar1_map, bar1map_len);
7975 if (!phba->sli4_hba.ctrl_regs_memmap_p) {
7976 dev_printk(KERN_ERR, &pdev->dev,
7977 "ioremap failed for SLI4 HBA control registers.\n");
7978 goto out_iounmap_conf;
7980 phba->pci_bar2_memmap_p = phba->sli4_hba.ctrl_regs_memmap_p;
7981 lpfc_sli4_bar1_register_memmap(phba);
7984 if ((if_type == LPFC_SLI_INTF_IF_TYPE_0) &&
7985 (pci_resource_start(pdev, PCI_64BIT_BAR4))) {
7987 * Map SLI4 if type 0 HBA Doorbell Register base to a kernel
7988 * virtual address and setup the registers.
7990 phba->pci_bar2_map = pci_resource_start(pdev, PCI_64BIT_BAR4);
7991 bar2map_len = pci_resource_len(pdev, PCI_64BIT_BAR4);
7992 phba->sli4_hba.drbl_regs_memmap_p =
7993 ioremap(phba->pci_bar2_map, bar2map_len);
7994 if (!phba->sli4_hba.drbl_regs_memmap_p) {
7995 dev_printk(KERN_ERR, &pdev->dev,
7996 "ioremap failed for SLI4 HBA doorbell registers.\n");
7997 goto out_iounmap_ctrl;
7999 phba->pci_bar4_memmap_p = phba->sli4_hba.drbl_regs_memmap_p;
8000 error = lpfc_sli4_bar2_register_memmap(phba, LPFC_VF0);
8001 if (error)
8002 goto out_iounmap_all;
8005 return 0;
8007 out_iounmap_all:
8008 iounmap(phba->sli4_hba.drbl_regs_memmap_p);
8009 out_iounmap_ctrl:
8010 iounmap(phba->sli4_hba.ctrl_regs_memmap_p);
8011 out_iounmap_conf:
8012 iounmap(phba->sli4_hba.conf_regs_memmap_p);
8013 out:
8014 return error;
8018 * lpfc_sli4_pci_mem_unset - Unset SLI4 HBA PCI memory space.
8019 * @phba: pointer to lpfc hba data structure.
8021 * This routine is invoked to unset the PCI device memory space for device
8022 * with SLI-4 interface spec.
8024 static void
8025 lpfc_sli4_pci_mem_unset(struct lpfc_hba *phba)
8027 uint32_t if_type;
8028 if_type = bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf);
8030 switch (if_type) {
8031 case LPFC_SLI_INTF_IF_TYPE_0:
8032 iounmap(phba->sli4_hba.drbl_regs_memmap_p);
8033 iounmap(phba->sli4_hba.ctrl_regs_memmap_p);
8034 iounmap(phba->sli4_hba.conf_regs_memmap_p);
8035 break;
8036 case LPFC_SLI_INTF_IF_TYPE_2:
8037 iounmap(phba->sli4_hba.conf_regs_memmap_p);
8038 break;
8039 case LPFC_SLI_INTF_IF_TYPE_1:
8040 default:
8041 dev_printk(KERN_ERR, &phba->pcidev->dev,
8042 "FATAL - unsupported SLI4 interface type - %d\n",
8043 if_type);
8044 break;
8049 * lpfc_sli_enable_msix - Enable MSI-X interrupt mode on SLI-3 device
8050 * @phba: pointer to lpfc hba data structure.
8052 * This routine is invoked to enable the MSI-X interrupt vectors to device
8053 * with SLI-3 interface specs. The kernel function pci_enable_msix() is
8054 * called to enable the MSI-X vectors. Note that pci_enable_msix(), once
8055 * invoked, enables either all or nothing, depending on the current
8056 * availability of PCI vector resources. The device driver is responsible
8057 * for calling the individual request_irq() to register each MSI-X vector
8058 * with a interrupt handler, which is done in this function. Note that
8059 * later when device is unloading, the driver should always call free_irq()
8060 * on all MSI-X vectors it has done request_irq() on before calling
8061 * pci_disable_msix(). Failure to do so results in a BUG_ON() and a device
8062 * will be left with MSI-X enabled and leaks its vectors.
8064 * Return codes
8065 * 0 - successful
8066 * other values - error
8068 static int
8069 lpfc_sli_enable_msix(struct lpfc_hba *phba)
8071 int rc, i;
8072 LPFC_MBOXQ_t *pmb;
8074 /* Set up MSI-X multi-message vectors */
8075 for (i = 0; i < LPFC_MSIX_VECTORS; i++)
8076 phba->msix_entries[i].entry = i;
8078 /* Configure MSI-X capability structure */
8079 rc = pci_enable_msix(phba->pcidev, phba->msix_entries,
8080 ARRAY_SIZE(phba->msix_entries));
8081 if (rc) {
8082 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
8083 "0420 PCI enable MSI-X failed (%d)\n", rc);
8084 goto msi_fail_out;
8086 for (i = 0; i < LPFC_MSIX_VECTORS; i++)
8087 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
8088 "0477 MSI-X entry[%d]: vector=x%x "
8089 "message=%d\n", i,
8090 phba->msix_entries[i].vector,
8091 phba->msix_entries[i].entry);
8093 * Assign MSI-X vectors to interrupt handlers
8096 /* vector-0 is associated to slow-path handler */
8097 rc = request_irq(phba->msix_entries[0].vector,
8098 &lpfc_sli_sp_intr_handler, IRQF_SHARED,
8099 LPFC_SP_DRIVER_HANDLER_NAME, phba);
8100 if (rc) {
8101 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
8102 "0421 MSI-X slow-path request_irq failed "
8103 "(%d)\n", rc);
8104 goto msi_fail_out;
8107 /* vector-1 is associated to fast-path handler */
8108 rc = request_irq(phba->msix_entries[1].vector,
8109 &lpfc_sli_fp_intr_handler, IRQF_SHARED,
8110 LPFC_FP_DRIVER_HANDLER_NAME, phba);
8112 if (rc) {
8113 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
8114 "0429 MSI-X fast-path request_irq failed "
8115 "(%d)\n", rc);
8116 goto irq_fail_out;
8120 * Configure HBA MSI-X attention conditions to messages
8122 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
8124 if (!pmb) {
8125 rc = -ENOMEM;
8126 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
8127 "0474 Unable to allocate memory for issuing "
8128 "MBOX_CONFIG_MSI command\n");
8129 goto mem_fail_out;
8131 rc = lpfc_config_msi(phba, pmb);
8132 if (rc)
8133 goto mbx_fail_out;
8134 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
8135 if (rc != MBX_SUCCESS) {
8136 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX,
8137 "0351 Config MSI mailbox command failed, "
8138 "mbxCmd x%x, mbxStatus x%x\n",
8139 pmb->u.mb.mbxCommand, pmb->u.mb.mbxStatus);
8140 goto mbx_fail_out;
8143 /* Free memory allocated for mailbox command */
8144 mempool_free(pmb, phba->mbox_mem_pool);
8145 return rc;
8147 mbx_fail_out:
8148 /* Free memory allocated for mailbox command */
8149 mempool_free(pmb, phba->mbox_mem_pool);
8151 mem_fail_out:
8152 /* free the irq already requested */
8153 free_irq(phba->msix_entries[1].vector, phba);
8155 irq_fail_out:
8156 /* free the irq already requested */
8157 free_irq(phba->msix_entries[0].vector, phba);
8159 msi_fail_out:
8160 /* Unconfigure MSI-X capability structure */
8161 pci_disable_msix(phba->pcidev);
8162 return rc;
8166 * lpfc_sli_disable_msix - Disable MSI-X interrupt mode on SLI-3 device.
8167 * @phba: pointer to lpfc hba data structure.
8169 * This routine is invoked to release the MSI-X vectors and then disable the
8170 * MSI-X interrupt mode to device with SLI-3 interface spec.
8172 static void
8173 lpfc_sli_disable_msix(struct lpfc_hba *phba)
8175 int i;
8177 /* Free up MSI-X multi-message vectors */
8178 for (i = 0; i < LPFC_MSIX_VECTORS; i++)
8179 free_irq(phba->msix_entries[i].vector, phba);
8180 /* Disable MSI-X */
8181 pci_disable_msix(phba->pcidev);
8183 return;
8187 * lpfc_sli_enable_msi - Enable MSI interrupt mode on SLI-3 device.
8188 * @phba: pointer to lpfc hba data structure.
8190 * This routine is invoked to enable the MSI interrupt mode to device with
8191 * SLI-3 interface spec. The kernel function pci_enable_msi() is called to
8192 * enable the MSI vector. The device driver is responsible for calling the
8193 * request_irq() to register MSI vector with a interrupt the handler, which
8194 * is done in this function.
8196 * Return codes
8197 * 0 - successful
8198 * other values - error
8200 static int
8201 lpfc_sli_enable_msi(struct lpfc_hba *phba)
8203 int rc;
8205 rc = pci_enable_msi(phba->pcidev);
8206 if (!rc)
8207 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
8208 "0462 PCI enable MSI mode success.\n");
8209 else {
8210 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
8211 "0471 PCI enable MSI mode failed (%d)\n", rc);
8212 return rc;
8215 rc = request_irq(phba->pcidev->irq, lpfc_sli_intr_handler,
8216 IRQF_SHARED, LPFC_DRIVER_NAME, phba);
8217 if (rc) {
8218 pci_disable_msi(phba->pcidev);
8219 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
8220 "0478 MSI request_irq failed (%d)\n", rc);
8222 return rc;
8226 * lpfc_sli_disable_msi - Disable MSI interrupt mode to SLI-3 device.
8227 * @phba: pointer to lpfc hba data structure.
8229 * This routine is invoked to disable the MSI interrupt mode to device with
8230 * SLI-3 interface spec. The driver calls free_irq() on MSI vector it has
8231 * done request_irq() on before calling pci_disable_msi(). Failure to do so
8232 * results in a BUG_ON() and a device will be left with MSI enabled and leaks
8233 * its vector.
8235 static void
8236 lpfc_sli_disable_msi(struct lpfc_hba *phba)
8238 free_irq(phba->pcidev->irq, phba);
8239 pci_disable_msi(phba->pcidev);
8240 return;
8244 * lpfc_sli_enable_intr - Enable device interrupt to SLI-3 device.
8245 * @phba: pointer to lpfc hba data structure.
8247 * This routine is invoked to enable device interrupt and associate driver's
8248 * interrupt handler(s) to interrupt vector(s) to device with SLI-3 interface
8249 * spec. Depends on the interrupt mode configured to the driver, the driver
8250 * will try to fallback from the configured interrupt mode to an interrupt
8251 * mode which is supported by the platform, kernel, and device in the order
8252 * of:
8253 * MSI-X -> MSI -> IRQ.
8255 * Return codes
8256 * 0 - successful
8257 * other values - error
8259 static uint32_t
8260 lpfc_sli_enable_intr(struct lpfc_hba *phba, uint32_t cfg_mode)
8262 uint32_t intr_mode = LPFC_INTR_ERROR;
8263 int retval;
8265 if (cfg_mode == 2) {
8266 /* Need to issue conf_port mbox cmd before conf_msi mbox cmd */
8267 retval = lpfc_sli_config_port(phba, LPFC_SLI_REV3);
8268 if (!retval) {
8269 /* Now, try to enable MSI-X interrupt mode */
8270 retval = lpfc_sli_enable_msix(phba);
8271 if (!retval) {
8272 /* Indicate initialization to MSI-X mode */
8273 phba->intr_type = MSIX;
8274 intr_mode = 2;
8279 /* Fallback to MSI if MSI-X initialization failed */
8280 if (cfg_mode >= 1 && phba->intr_type == NONE) {
8281 retval = lpfc_sli_enable_msi(phba);
8282 if (!retval) {
8283 /* Indicate initialization to MSI mode */
8284 phba->intr_type = MSI;
8285 intr_mode = 1;
8289 /* Fallback to INTx if both MSI-X/MSI initalization failed */
8290 if (phba->intr_type == NONE) {
8291 retval = request_irq(phba->pcidev->irq, lpfc_sli_intr_handler,
8292 IRQF_SHARED, LPFC_DRIVER_NAME, phba);
8293 if (!retval) {
8294 /* Indicate initialization to INTx mode */
8295 phba->intr_type = INTx;
8296 intr_mode = 0;
8299 return intr_mode;
8303 * lpfc_sli_disable_intr - Disable device interrupt to SLI-3 device.
8304 * @phba: pointer to lpfc hba data structure.
8306 * This routine is invoked to disable device interrupt and disassociate the
8307 * driver's interrupt handler(s) from interrupt vector(s) to device with
8308 * SLI-3 interface spec. Depending on the interrupt mode, the driver will
8309 * release the interrupt vector(s) for the message signaled interrupt.
8311 static void
8312 lpfc_sli_disable_intr(struct lpfc_hba *phba)
8314 /* Disable the currently initialized interrupt mode */
8315 if (phba->intr_type == MSIX)
8316 lpfc_sli_disable_msix(phba);
8317 else if (phba->intr_type == MSI)
8318 lpfc_sli_disable_msi(phba);
8319 else if (phba->intr_type == INTx)
8320 free_irq(phba->pcidev->irq, phba);
8322 /* Reset interrupt management states */
8323 phba->intr_type = NONE;
8324 phba->sli.slistat.sli_intr = 0;
8326 return;
8330 * lpfc_find_next_cpu - Find next available CPU that matches the phys_id
8331 * @phba: pointer to lpfc hba data structure.
8333 * Find next available CPU to use for IRQ to CPU affinity.
8335 static int
8336 lpfc_find_next_cpu(struct lpfc_hba *phba, uint32_t phys_id)
8338 struct lpfc_vector_map_info *cpup;
8339 int cpu;
8341 cpup = phba->sli4_hba.cpu_map;
8342 for (cpu = 0; cpu < phba->sli4_hba.num_present_cpu; cpu++) {
8343 /* CPU must be online */
8344 if (cpu_online(cpu)) {
8345 if ((cpup->irq == LPFC_VECTOR_MAP_EMPTY) &&
8346 (lpfc_used_cpu[cpu] == LPFC_VECTOR_MAP_EMPTY) &&
8347 (cpup->phys_id == phys_id)) {
8348 return cpu;
8351 cpup++;
8355 * If we get here, we have used ALL CPUs for the specific
8356 * phys_id. Now we need to clear out lpfc_used_cpu and start
8357 * reusing CPUs.
8360 for (cpu = 0; cpu < phba->sli4_hba.num_present_cpu; cpu++) {
8361 if (lpfc_used_cpu[cpu] == phys_id)
8362 lpfc_used_cpu[cpu] = LPFC_VECTOR_MAP_EMPTY;
8365 cpup = phba->sli4_hba.cpu_map;
8366 for (cpu = 0; cpu < phba->sli4_hba.num_present_cpu; cpu++) {
8367 /* CPU must be online */
8368 if (cpu_online(cpu)) {
8369 if ((cpup->irq == LPFC_VECTOR_MAP_EMPTY) &&
8370 (cpup->phys_id == phys_id)) {
8371 return cpu;
8374 cpup++;
8376 return LPFC_VECTOR_MAP_EMPTY;
8380 * lpfc_sli4_set_affinity - Set affinity for HBA IRQ vectors
8381 * @phba: pointer to lpfc hba data structure.
8382 * @vectors: number of HBA vectors
8384 * Affinitize MSIX IRQ vectors to CPUs. Try to equally spread vector
8385 * affinization across multple physical CPUs (numa nodes).
8386 * In addition, this routine will assign an IO channel for each CPU
8387 * to use when issuing I/Os.
8389 static int
8390 lpfc_sli4_set_affinity(struct lpfc_hba *phba, int vectors)
8392 int i, idx, saved_chann, used_chann, cpu, phys_id;
8393 int max_phys_id, min_phys_id;
8394 int num_io_channel, first_cpu, chan;
8395 struct lpfc_vector_map_info *cpup;
8396 #ifdef CONFIG_X86
8397 struct cpuinfo_x86 *cpuinfo;
8398 #endif
8399 uint8_t chann[LPFC_FCP_IO_CHAN_MAX+1];
8401 /* If there is no mapping, just return */
8402 if (!phba->cfg_fcp_cpu_map)
8403 return 1;
8405 /* Init cpu_map array */
8406 memset(phba->sli4_hba.cpu_map, 0xff,
8407 (sizeof(struct lpfc_vector_map_info) *
8408 phba->sli4_hba.num_present_cpu));
8410 max_phys_id = 0;
8411 min_phys_id = 0xff;
8412 phys_id = 0;
8413 num_io_channel = 0;
8414 first_cpu = LPFC_VECTOR_MAP_EMPTY;
8416 /* Update CPU map with physical id and core id of each CPU */
8417 cpup = phba->sli4_hba.cpu_map;
8418 for (cpu = 0; cpu < phba->sli4_hba.num_present_cpu; cpu++) {
8419 #ifdef CONFIG_X86
8420 cpuinfo = &cpu_data(cpu);
8421 cpup->phys_id = cpuinfo->phys_proc_id;
8422 cpup->core_id = cpuinfo->cpu_core_id;
8423 #else
8424 /* No distinction between CPUs for other platforms */
8425 cpup->phys_id = 0;
8426 cpup->core_id = 0;
8427 #endif
8429 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
8430 "3328 CPU physid %d coreid %d\n",
8431 cpup->phys_id, cpup->core_id);
8433 if (cpup->phys_id > max_phys_id)
8434 max_phys_id = cpup->phys_id;
8435 if (cpup->phys_id < min_phys_id)
8436 min_phys_id = cpup->phys_id;
8437 cpup++;
8440 phys_id = min_phys_id;
8441 /* Now associate the HBA vectors with specific CPUs */
8442 for (idx = 0; idx < vectors; idx++) {
8443 cpup = phba->sli4_hba.cpu_map;
8444 cpu = lpfc_find_next_cpu(phba, phys_id);
8445 if (cpu == LPFC_VECTOR_MAP_EMPTY) {
8447 /* Try for all phys_id's */
8448 for (i = 1; i < max_phys_id; i++) {
8449 phys_id++;
8450 if (phys_id > max_phys_id)
8451 phys_id = min_phys_id;
8452 cpu = lpfc_find_next_cpu(phba, phys_id);
8453 if (cpu == LPFC_VECTOR_MAP_EMPTY)
8454 continue;
8455 goto found;
8458 /* Use round robin for scheduling */
8459 phba->cfg_fcp_io_sched = LPFC_FCP_SCHED_ROUND_ROBIN;
8460 chan = 0;
8461 cpup = phba->sli4_hba.cpu_map;
8462 for (i = 0; i < phba->sli4_hba.num_present_cpu; i++) {
8463 cpup->channel_id = chan;
8464 cpup++;
8465 chan++;
8466 if (chan >= phba->cfg_fcp_io_channel)
8467 chan = 0;
8470 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
8471 "3329 Cannot set affinity:"
8472 "Error mapping vector %d (%d)\n",
8473 idx, vectors);
8474 return 0;
8476 found:
8477 cpup += cpu;
8478 if (phba->cfg_fcp_cpu_map == LPFC_DRIVER_CPU_MAP)
8479 lpfc_used_cpu[cpu] = phys_id;
8481 /* Associate vector with selected CPU */
8482 cpup->irq = phba->sli4_hba.msix_entries[idx].vector;
8484 /* Associate IO channel with selected CPU */
8485 cpup->channel_id = idx;
8486 num_io_channel++;
8488 if (first_cpu == LPFC_VECTOR_MAP_EMPTY)
8489 first_cpu = cpu;
8491 /* Now affinitize to the selected CPU */
8492 i = irq_set_affinity_hint(phba->sli4_hba.msix_entries[idx].
8493 vector, get_cpu_mask(cpu));
8495 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
8496 "3330 Set Affinity: CPU %d channel %d "
8497 "irq %d (%x)\n",
8498 cpu, cpup->channel_id,
8499 phba->sli4_hba.msix_entries[idx].vector, i);
8501 /* Spread vector mapping across multple physical CPU nodes */
8502 phys_id++;
8503 if (phys_id > max_phys_id)
8504 phys_id = min_phys_id;
8508 * Finally fill in the IO channel for any remaining CPUs.
8509 * At this point, all IO channels have been assigned to a specific
8510 * MSIx vector, mapped to a specific CPU.
8511 * Base the remaining IO channel assigned, to IO channels already
8512 * assigned to other CPUs on the same phys_id.
8514 for (i = min_phys_id; i <= max_phys_id; i++) {
8516 * If there are no io channels already mapped to
8517 * this phys_id, just round robin thru the io_channels.
8518 * Setup chann[] for round robin.
8520 for (idx = 0; idx < phba->cfg_fcp_io_channel; idx++)
8521 chann[idx] = idx;
8523 saved_chann = 0;
8524 used_chann = 0;
8527 * First build a list of IO channels already assigned
8528 * to this phys_id before reassigning the same IO
8529 * channels to the remaining CPUs.
8531 cpup = phba->sli4_hba.cpu_map;
8532 cpu = first_cpu;
8533 cpup += cpu;
8534 for (idx = 0; idx < phba->sli4_hba.num_present_cpu;
8535 idx++) {
8536 if (cpup->phys_id == i) {
8538 * Save any IO channels that are
8539 * already mapped to this phys_id.
8541 if (cpup->irq != LPFC_VECTOR_MAP_EMPTY) {
8542 chann[saved_chann] =
8543 cpup->channel_id;
8544 saved_chann++;
8545 goto out;
8548 /* See if we are using round-robin */
8549 if (saved_chann == 0)
8550 saved_chann =
8551 phba->cfg_fcp_io_channel;
8553 /* Associate next IO channel with CPU */
8554 cpup->channel_id = chann[used_chann];
8555 num_io_channel++;
8556 used_chann++;
8557 if (used_chann == saved_chann)
8558 used_chann = 0;
8560 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
8561 "3331 Set IO_CHANN "
8562 "CPU %d channel %d\n",
8563 idx, cpup->channel_id);
8565 out:
8566 cpu++;
8567 if (cpu >= phba->sli4_hba.num_present_cpu) {
8568 cpup = phba->sli4_hba.cpu_map;
8569 cpu = 0;
8570 } else {
8571 cpup++;
8576 if (phba->sli4_hba.num_online_cpu != phba->sli4_hba.num_present_cpu) {
8577 cpup = phba->sli4_hba.cpu_map;
8578 for (idx = 0; idx < phba->sli4_hba.num_present_cpu; idx++) {
8579 if (cpup->channel_id == LPFC_VECTOR_MAP_EMPTY) {
8580 cpup->channel_id = 0;
8581 num_io_channel++;
8583 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
8584 "3332 Assign IO_CHANN "
8585 "CPU %d channel %d\n",
8586 idx, cpup->channel_id);
8588 cpup++;
8592 /* Sanity check */
8593 if (num_io_channel != phba->sli4_hba.num_present_cpu)
8594 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
8595 "3333 Set affinity mismatch:"
8596 "%d chann != %d cpus: %d vectors\n",
8597 num_io_channel, phba->sli4_hba.num_present_cpu,
8598 vectors);
8600 /* Enable using cpu affinity for scheduling */
8601 phba->cfg_fcp_io_sched = LPFC_FCP_SCHED_BY_CPU;
8602 return 1;
8607 * lpfc_sli4_enable_msix - Enable MSI-X interrupt mode to SLI-4 device
8608 * @phba: pointer to lpfc hba data structure.
8610 * This routine is invoked to enable the MSI-X interrupt vectors to device
8611 * with SLI-4 interface spec. The kernel function pci_enable_msix() is called
8612 * to enable the MSI-X vectors. Note that pci_enable_msix(), once invoked,
8613 * enables either all or nothing, depending on the current availability of
8614 * PCI vector resources. The device driver is responsible for calling the
8615 * individual request_irq() to register each MSI-X vector with a interrupt
8616 * handler, which is done in this function. Note that later when device is
8617 * unloading, the driver should always call free_irq() on all MSI-X vectors
8618 * it has done request_irq() on before calling pci_disable_msix(). Failure
8619 * to do so results in a BUG_ON() and a device will be left with MSI-X
8620 * enabled and leaks its vectors.
8622 * Return codes
8623 * 0 - successful
8624 * other values - error
8626 static int
8627 lpfc_sli4_enable_msix(struct lpfc_hba *phba)
8629 int vectors, rc, index;
8631 /* Set up MSI-X multi-message vectors */
8632 for (index = 0; index < phba->cfg_fcp_io_channel; index++)
8633 phba->sli4_hba.msix_entries[index].entry = index;
8635 /* Configure MSI-X capability structure */
8636 vectors = phba->cfg_fcp_io_channel;
8637 enable_msix_vectors:
8638 rc = pci_enable_msix(phba->pcidev, phba->sli4_hba.msix_entries,
8639 vectors);
8640 if (rc > 1) {
8641 vectors = rc;
8642 goto enable_msix_vectors;
8643 } else if (rc) {
8644 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
8645 "0484 PCI enable MSI-X failed (%d)\n", rc);
8646 goto msi_fail_out;
8649 /* Log MSI-X vector assignment */
8650 for (index = 0; index < vectors; index++)
8651 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
8652 "0489 MSI-X entry[%d]: vector=x%x "
8653 "message=%d\n", index,
8654 phba->sli4_hba.msix_entries[index].vector,
8655 phba->sli4_hba.msix_entries[index].entry);
8657 /* Assign MSI-X vectors to interrupt handlers */
8658 for (index = 0; index < vectors; index++) {
8659 memset(&phba->sli4_hba.handler_name[index], 0, 16);
8660 sprintf((char *)&phba->sli4_hba.handler_name[index],
8661 LPFC_DRIVER_HANDLER_NAME"%d", index);
8663 phba->sli4_hba.fcp_eq_hdl[index].idx = index;
8664 phba->sli4_hba.fcp_eq_hdl[index].phba = phba;
8665 atomic_set(&phba->sli4_hba.fcp_eq_hdl[index].fcp_eq_in_use, 1);
8666 rc = request_irq(phba->sli4_hba.msix_entries[index].vector,
8667 &lpfc_sli4_hba_intr_handler, IRQF_SHARED,
8668 (char *)&phba->sli4_hba.handler_name[index],
8669 &phba->sli4_hba.fcp_eq_hdl[index]);
8670 if (rc) {
8671 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
8672 "0486 MSI-X fast-path (%d) "
8673 "request_irq failed (%d)\n", index, rc);
8674 goto cfg_fail_out;
8678 if (vectors != phba->cfg_fcp_io_channel) {
8679 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
8680 "3238 Reducing IO channels to match number of "
8681 "MSI-X vectors, requested %d got %d\n",
8682 phba->cfg_fcp_io_channel, vectors);
8683 phba->cfg_fcp_io_channel = vectors;
8686 lpfc_sli4_set_affinity(phba, vectors);
8687 return rc;
8689 cfg_fail_out:
8690 /* free the irq already requested */
8691 for (--index; index >= 0; index--) {
8692 irq_set_affinity_hint(phba->sli4_hba.msix_entries[index].
8693 vector, NULL);
8694 free_irq(phba->sli4_hba.msix_entries[index].vector,
8695 &phba->sli4_hba.fcp_eq_hdl[index]);
8698 msi_fail_out:
8699 /* Unconfigure MSI-X capability structure */
8700 pci_disable_msix(phba->pcidev);
8701 return rc;
8705 * lpfc_sli4_disable_msix - Disable MSI-X interrupt mode to SLI-4 device
8706 * @phba: pointer to lpfc hba data structure.
8708 * This routine is invoked to release the MSI-X vectors and then disable the
8709 * MSI-X interrupt mode to device with SLI-4 interface spec.
8711 static void
8712 lpfc_sli4_disable_msix(struct lpfc_hba *phba)
8714 int index;
8716 /* Free up MSI-X multi-message vectors */
8717 for (index = 0; index < phba->cfg_fcp_io_channel; index++) {
8718 irq_set_affinity_hint(phba->sli4_hba.msix_entries[index].
8719 vector, NULL);
8720 free_irq(phba->sli4_hba.msix_entries[index].vector,
8721 &phba->sli4_hba.fcp_eq_hdl[index]);
8724 /* Disable MSI-X */
8725 pci_disable_msix(phba->pcidev);
8727 return;
8731 * lpfc_sli4_enable_msi - Enable MSI interrupt mode to SLI-4 device
8732 * @phba: pointer to lpfc hba data structure.
8734 * This routine is invoked to enable the MSI interrupt mode to device with
8735 * SLI-4 interface spec. The kernel function pci_enable_msi() is called
8736 * to enable the MSI vector. The device driver is responsible for calling
8737 * the request_irq() to register MSI vector with a interrupt the handler,
8738 * which is done in this function.
8740 * Return codes
8741 * 0 - successful
8742 * other values - error
8744 static int
8745 lpfc_sli4_enable_msi(struct lpfc_hba *phba)
8747 int rc, index;
8749 rc = pci_enable_msi(phba->pcidev);
8750 if (!rc)
8751 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
8752 "0487 PCI enable MSI mode success.\n");
8753 else {
8754 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
8755 "0488 PCI enable MSI mode failed (%d)\n", rc);
8756 return rc;
8759 rc = request_irq(phba->pcidev->irq, lpfc_sli4_intr_handler,
8760 IRQF_SHARED, LPFC_DRIVER_NAME, phba);
8761 if (rc) {
8762 pci_disable_msi(phba->pcidev);
8763 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
8764 "0490 MSI request_irq failed (%d)\n", rc);
8765 return rc;
8768 for (index = 0; index < phba->cfg_fcp_io_channel; index++) {
8769 phba->sli4_hba.fcp_eq_hdl[index].idx = index;
8770 phba->sli4_hba.fcp_eq_hdl[index].phba = phba;
8773 return 0;
8777 * lpfc_sli4_disable_msi - Disable MSI interrupt mode to SLI-4 device
8778 * @phba: pointer to lpfc hba data structure.
8780 * This routine is invoked to disable the MSI interrupt mode to device with
8781 * SLI-4 interface spec. The driver calls free_irq() on MSI vector it has
8782 * done request_irq() on before calling pci_disable_msi(). Failure to do so
8783 * results in a BUG_ON() and a device will be left with MSI enabled and leaks
8784 * its vector.
8786 static void
8787 lpfc_sli4_disable_msi(struct lpfc_hba *phba)
8789 free_irq(phba->pcidev->irq, phba);
8790 pci_disable_msi(phba->pcidev);
8791 return;
8795 * lpfc_sli4_enable_intr - Enable device interrupt to SLI-4 device
8796 * @phba: pointer to lpfc hba data structure.
8798 * This routine is invoked to enable device interrupt and associate driver's
8799 * interrupt handler(s) to interrupt vector(s) to device with SLI-4
8800 * interface spec. Depends on the interrupt mode configured to the driver,
8801 * the driver will try to fallback from the configured interrupt mode to an
8802 * interrupt mode which is supported by the platform, kernel, and device in
8803 * the order of:
8804 * MSI-X -> MSI -> IRQ.
8806 * Return codes
8807 * 0 - successful
8808 * other values - error
8810 static uint32_t
8811 lpfc_sli4_enable_intr(struct lpfc_hba *phba, uint32_t cfg_mode)
8813 uint32_t intr_mode = LPFC_INTR_ERROR;
8814 int retval, index;
8816 if (cfg_mode == 2) {
8817 /* Preparation before conf_msi mbox cmd */
8818 retval = 0;
8819 if (!retval) {
8820 /* Now, try to enable MSI-X interrupt mode */
8821 retval = lpfc_sli4_enable_msix(phba);
8822 if (!retval) {
8823 /* Indicate initialization to MSI-X mode */
8824 phba->intr_type = MSIX;
8825 intr_mode = 2;
8830 /* Fallback to MSI if MSI-X initialization failed */
8831 if (cfg_mode >= 1 && phba->intr_type == NONE) {
8832 retval = lpfc_sli4_enable_msi(phba);
8833 if (!retval) {
8834 /* Indicate initialization to MSI mode */
8835 phba->intr_type = MSI;
8836 intr_mode = 1;
8840 /* Fallback to INTx if both MSI-X/MSI initalization failed */
8841 if (phba->intr_type == NONE) {
8842 retval = request_irq(phba->pcidev->irq, lpfc_sli4_intr_handler,
8843 IRQF_SHARED, LPFC_DRIVER_NAME, phba);
8844 if (!retval) {
8845 /* Indicate initialization to INTx mode */
8846 phba->intr_type = INTx;
8847 intr_mode = 0;
8848 for (index = 0; index < phba->cfg_fcp_io_channel;
8849 index++) {
8850 phba->sli4_hba.fcp_eq_hdl[index].idx = index;
8851 phba->sli4_hba.fcp_eq_hdl[index].phba = phba;
8852 atomic_set(&phba->sli4_hba.fcp_eq_hdl[index].
8853 fcp_eq_in_use, 1);
8857 return intr_mode;
8861 * lpfc_sli4_disable_intr - Disable device interrupt to SLI-4 device
8862 * @phba: pointer to lpfc hba data structure.
8864 * This routine is invoked to disable device interrupt and disassociate
8865 * the driver's interrupt handler(s) from interrupt vector(s) to device
8866 * with SLI-4 interface spec. Depending on the interrupt mode, the driver
8867 * will release the interrupt vector(s) for the message signaled interrupt.
8869 static void
8870 lpfc_sli4_disable_intr(struct lpfc_hba *phba)
8872 /* Disable the currently initialized interrupt mode */
8873 if (phba->intr_type == MSIX)
8874 lpfc_sli4_disable_msix(phba);
8875 else if (phba->intr_type == MSI)
8876 lpfc_sli4_disable_msi(phba);
8877 else if (phba->intr_type == INTx)
8878 free_irq(phba->pcidev->irq, phba);
8880 /* Reset interrupt management states */
8881 phba->intr_type = NONE;
8882 phba->sli.slistat.sli_intr = 0;
8884 return;
8888 * lpfc_unset_hba - Unset SLI3 hba device initialization
8889 * @phba: pointer to lpfc hba data structure.
8891 * This routine is invoked to unset the HBA device initialization steps to
8892 * a device with SLI-3 interface spec.
8894 static void
8895 lpfc_unset_hba(struct lpfc_hba *phba)
8897 struct lpfc_vport *vport = phba->pport;
8898 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
8900 spin_lock_irq(shost->host_lock);
8901 vport->load_flag |= FC_UNLOADING;
8902 spin_unlock_irq(shost->host_lock);
8904 kfree(phba->vpi_bmask);
8905 kfree(phba->vpi_ids);
8907 lpfc_stop_hba_timers(phba);
8909 phba->pport->work_port_events = 0;
8911 lpfc_sli_hba_down(phba);
8913 lpfc_sli_brdrestart(phba);
8915 lpfc_sli_disable_intr(phba);
8917 return;
8921 * lpfc_sli4_xri_exchange_busy_wait - Wait for device XRI exchange busy
8922 * @phba: Pointer to HBA context object.
8924 * This function is called in the SLI4 code path to wait for completion
8925 * of device's XRIs exchange busy. It will check the XRI exchange busy
8926 * on outstanding FCP and ELS I/Os every 10ms for up to 10 seconds; after
8927 * that, it will check the XRI exchange busy on outstanding FCP and ELS
8928 * I/Os every 30 seconds, log error message, and wait forever. Only when
8929 * all XRI exchange busy complete, the driver unload shall proceed with
8930 * invoking the function reset ioctl mailbox command to the CNA and the
8931 * the rest of the driver unload resource release.
8933 static void
8934 lpfc_sli4_xri_exchange_busy_wait(struct lpfc_hba *phba)
8936 int wait_time = 0;
8937 int fcp_xri_cmpl = list_empty(&phba->sli4_hba.lpfc_abts_scsi_buf_list);
8938 int els_xri_cmpl = list_empty(&phba->sli4_hba.lpfc_abts_els_sgl_list);
8940 while (!fcp_xri_cmpl || !els_xri_cmpl) {
8941 if (wait_time > LPFC_XRI_EXCH_BUSY_WAIT_TMO) {
8942 if (!fcp_xri_cmpl)
8943 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
8944 "2877 FCP XRI exchange busy "
8945 "wait time: %d seconds.\n",
8946 wait_time/1000);
8947 if (!els_xri_cmpl)
8948 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
8949 "2878 ELS XRI exchange busy "
8950 "wait time: %d seconds.\n",
8951 wait_time/1000);
8952 msleep(LPFC_XRI_EXCH_BUSY_WAIT_T2);
8953 wait_time += LPFC_XRI_EXCH_BUSY_WAIT_T2;
8954 } else {
8955 msleep(LPFC_XRI_EXCH_BUSY_WAIT_T1);
8956 wait_time += LPFC_XRI_EXCH_BUSY_WAIT_T1;
8958 fcp_xri_cmpl =
8959 list_empty(&phba->sli4_hba.lpfc_abts_scsi_buf_list);
8960 els_xri_cmpl =
8961 list_empty(&phba->sli4_hba.lpfc_abts_els_sgl_list);
8966 * lpfc_sli4_hba_unset - Unset the fcoe hba
8967 * @phba: Pointer to HBA context object.
8969 * This function is called in the SLI4 code path to reset the HBA's FCoE
8970 * function. The caller is not required to hold any lock. This routine
8971 * issues PCI function reset mailbox command to reset the FCoE function.
8972 * At the end of the function, it calls lpfc_hba_down_post function to
8973 * free any pending commands.
8975 static void
8976 lpfc_sli4_hba_unset(struct lpfc_hba *phba)
8978 int wait_cnt = 0;
8979 LPFC_MBOXQ_t *mboxq;
8980 struct pci_dev *pdev = phba->pcidev;
8982 lpfc_stop_hba_timers(phba);
8983 phba->sli4_hba.intr_enable = 0;
8986 * Gracefully wait out the potential current outstanding asynchronous
8987 * mailbox command.
8990 /* First, block any pending async mailbox command from posted */
8991 spin_lock_irq(&phba->hbalock);
8992 phba->sli.sli_flag |= LPFC_SLI_ASYNC_MBX_BLK;
8993 spin_unlock_irq(&phba->hbalock);
8994 /* Now, trying to wait it out if we can */
8995 while (phba->sli.sli_flag & LPFC_SLI_MBOX_ACTIVE) {
8996 msleep(10);
8997 if (++wait_cnt > LPFC_ACTIVE_MBOX_WAIT_CNT)
8998 break;
9000 /* Forcefully release the outstanding mailbox command if timed out */
9001 if (phba->sli.sli_flag & LPFC_SLI_MBOX_ACTIVE) {
9002 spin_lock_irq(&phba->hbalock);
9003 mboxq = phba->sli.mbox_active;
9004 mboxq->u.mb.mbxStatus = MBX_NOT_FINISHED;
9005 __lpfc_mbox_cmpl_put(phba, mboxq);
9006 phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
9007 phba->sli.mbox_active = NULL;
9008 spin_unlock_irq(&phba->hbalock);
9011 /* Abort all iocbs associated with the hba */
9012 lpfc_sli_hba_iocb_abort(phba);
9014 /* Wait for completion of device XRI exchange busy */
9015 lpfc_sli4_xri_exchange_busy_wait(phba);
9017 /* Disable PCI subsystem interrupt */
9018 lpfc_sli4_disable_intr(phba);
9020 /* Disable SR-IOV if enabled */
9021 if (phba->cfg_sriov_nr_virtfn)
9022 pci_disable_sriov(pdev);
9024 /* Stop kthread signal shall trigger work_done one more time */
9025 kthread_stop(phba->worker_thread);
9027 /* Reset SLI4 HBA FCoE function */
9028 lpfc_pci_function_reset(phba);
9029 lpfc_sli4_queue_destroy(phba);
9031 /* Stop the SLI4 device port */
9032 phba->pport->work_port_events = 0;
9036 * lpfc_pc_sli4_params_get - Get the SLI4_PARAMS port capabilities.
9037 * @phba: Pointer to HBA context object.
9038 * @mboxq: Pointer to the mailboxq memory for the mailbox command response.
9040 * This function is called in the SLI4 code path to read the port's
9041 * sli4 capabilities.
9043 * This function may be be called from any context that can block-wait
9044 * for the completion. The expectation is that this routine is called
9045 * typically from probe_one or from the online routine.
9048 lpfc_pc_sli4_params_get(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
9050 int rc;
9051 struct lpfc_mqe *mqe;
9052 struct lpfc_pc_sli4_params *sli4_params;
9053 uint32_t mbox_tmo;
9055 rc = 0;
9056 mqe = &mboxq->u.mqe;
9058 /* Read the port's SLI4 Parameters port capabilities */
9059 lpfc_pc_sli4_params(mboxq);
9060 if (!phba->sli4_hba.intr_enable)
9061 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
9062 else {
9063 mbox_tmo = lpfc_mbox_tmo_val(phba, mboxq);
9064 rc = lpfc_sli_issue_mbox_wait(phba, mboxq, mbox_tmo);
9067 if (unlikely(rc))
9068 return 1;
9070 sli4_params = &phba->sli4_hba.pc_sli4_params;
9071 sli4_params->if_type = bf_get(if_type, &mqe->un.sli4_params);
9072 sli4_params->sli_rev = bf_get(sli_rev, &mqe->un.sli4_params);
9073 sli4_params->sli_family = bf_get(sli_family, &mqe->un.sli4_params);
9074 sli4_params->featurelevel_1 = bf_get(featurelevel_1,
9075 &mqe->un.sli4_params);
9076 sli4_params->featurelevel_2 = bf_get(featurelevel_2,
9077 &mqe->un.sli4_params);
9078 sli4_params->proto_types = mqe->un.sli4_params.word3;
9079 sli4_params->sge_supp_len = mqe->un.sli4_params.sge_supp_len;
9080 sli4_params->if_page_sz = bf_get(if_page_sz, &mqe->un.sli4_params);
9081 sli4_params->rq_db_window = bf_get(rq_db_window, &mqe->un.sli4_params);
9082 sli4_params->loopbk_scope = bf_get(loopbk_scope, &mqe->un.sli4_params);
9083 sli4_params->eq_pages_max = bf_get(eq_pages, &mqe->un.sli4_params);
9084 sli4_params->eqe_size = bf_get(eqe_size, &mqe->un.sli4_params);
9085 sli4_params->cq_pages_max = bf_get(cq_pages, &mqe->un.sli4_params);
9086 sli4_params->cqe_size = bf_get(cqe_size, &mqe->un.sli4_params);
9087 sli4_params->mq_pages_max = bf_get(mq_pages, &mqe->un.sli4_params);
9088 sli4_params->mqe_size = bf_get(mqe_size, &mqe->un.sli4_params);
9089 sli4_params->mq_elem_cnt = bf_get(mq_elem_cnt, &mqe->un.sli4_params);
9090 sli4_params->wq_pages_max = bf_get(wq_pages, &mqe->un.sli4_params);
9091 sli4_params->wqe_size = bf_get(wqe_size, &mqe->un.sli4_params);
9092 sli4_params->rq_pages_max = bf_get(rq_pages, &mqe->un.sli4_params);
9093 sli4_params->rqe_size = bf_get(rqe_size, &mqe->un.sli4_params);
9094 sli4_params->hdr_pages_max = bf_get(hdr_pages, &mqe->un.sli4_params);
9095 sli4_params->hdr_size = bf_get(hdr_size, &mqe->un.sli4_params);
9096 sli4_params->hdr_pp_align = bf_get(hdr_pp_align, &mqe->un.sli4_params);
9097 sli4_params->sgl_pages_max = bf_get(sgl_pages, &mqe->un.sli4_params);
9098 sli4_params->sgl_pp_align = bf_get(sgl_pp_align, &mqe->un.sli4_params);
9100 /* Make sure that sge_supp_len can be handled by the driver */
9101 if (sli4_params->sge_supp_len > LPFC_MAX_SGE_SIZE)
9102 sli4_params->sge_supp_len = LPFC_MAX_SGE_SIZE;
9104 return rc;
9108 * lpfc_get_sli4_parameters - Get the SLI4 Config PARAMETERS.
9109 * @phba: Pointer to HBA context object.
9110 * @mboxq: Pointer to the mailboxq memory for the mailbox command response.
9112 * This function is called in the SLI4 code path to read the port's
9113 * sli4 capabilities.
9115 * This function may be be called from any context that can block-wait
9116 * for the completion. The expectation is that this routine is called
9117 * typically from probe_one or from the online routine.
9120 lpfc_get_sli4_parameters(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
9122 int rc;
9123 struct lpfc_mqe *mqe = &mboxq->u.mqe;
9124 struct lpfc_pc_sli4_params *sli4_params;
9125 uint32_t mbox_tmo;
9126 int length;
9127 struct lpfc_sli4_parameters *mbx_sli4_parameters;
9130 * By default, the driver assumes the SLI4 port requires RPI
9131 * header postings. The SLI4_PARAM response will correct this
9132 * assumption.
9134 phba->sli4_hba.rpi_hdrs_in_use = 1;
9136 /* Read the port's SLI4 Config Parameters */
9137 length = (sizeof(struct lpfc_mbx_get_sli4_parameters) -
9138 sizeof(struct lpfc_sli4_cfg_mhdr));
9139 lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_COMMON,
9140 LPFC_MBOX_OPCODE_GET_SLI4_PARAMETERS,
9141 length, LPFC_SLI4_MBX_EMBED);
9142 if (!phba->sli4_hba.intr_enable)
9143 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
9144 else {
9145 mbox_tmo = lpfc_mbox_tmo_val(phba, mboxq);
9146 rc = lpfc_sli_issue_mbox_wait(phba, mboxq, mbox_tmo);
9148 if (unlikely(rc))
9149 return rc;
9150 sli4_params = &phba->sli4_hba.pc_sli4_params;
9151 mbx_sli4_parameters = &mqe->un.get_sli4_parameters.sli4_parameters;
9152 sli4_params->if_type = bf_get(cfg_if_type, mbx_sli4_parameters);
9153 sli4_params->sli_rev = bf_get(cfg_sli_rev, mbx_sli4_parameters);
9154 sli4_params->sli_family = bf_get(cfg_sli_family, mbx_sli4_parameters);
9155 sli4_params->featurelevel_1 = bf_get(cfg_sli_hint_1,
9156 mbx_sli4_parameters);
9157 sli4_params->featurelevel_2 = bf_get(cfg_sli_hint_2,
9158 mbx_sli4_parameters);
9159 if (bf_get(cfg_phwq, mbx_sli4_parameters))
9160 phba->sli3_options |= LPFC_SLI4_PHWQ_ENABLED;
9161 else
9162 phba->sli3_options &= ~LPFC_SLI4_PHWQ_ENABLED;
9163 sli4_params->sge_supp_len = mbx_sli4_parameters->sge_supp_len;
9164 sli4_params->loopbk_scope = bf_get(loopbk_scope, mbx_sli4_parameters);
9165 sli4_params->cqv = bf_get(cfg_cqv, mbx_sli4_parameters);
9166 sli4_params->mqv = bf_get(cfg_mqv, mbx_sli4_parameters);
9167 sli4_params->wqv = bf_get(cfg_wqv, mbx_sli4_parameters);
9168 sli4_params->rqv = bf_get(cfg_rqv, mbx_sli4_parameters);
9169 sli4_params->wqsize = bf_get(cfg_wqsize, mbx_sli4_parameters);
9170 sli4_params->sgl_pages_max = bf_get(cfg_sgl_page_cnt,
9171 mbx_sli4_parameters);
9172 sli4_params->sgl_pp_align = bf_get(cfg_sgl_pp_align,
9173 mbx_sli4_parameters);
9174 phba->sli4_hba.extents_in_use = bf_get(cfg_ext, mbx_sli4_parameters);
9175 phba->sli4_hba.rpi_hdrs_in_use = bf_get(cfg_hdrr, mbx_sli4_parameters);
9177 /* Make sure that sge_supp_len can be handled by the driver */
9178 if (sli4_params->sge_supp_len > LPFC_MAX_SGE_SIZE)
9179 sli4_params->sge_supp_len = LPFC_MAX_SGE_SIZE;
9181 return 0;
9185 * lpfc_pci_probe_one_s3 - PCI probe func to reg SLI-3 device to PCI subsystem.
9186 * @pdev: pointer to PCI device
9187 * @pid: pointer to PCI device identifier
9189 * This routine is to be called to attach a device with SLI-3 interface spec
9190 * to the PCI subsystem. When an Emulex HBA with SLI-3 interface spec is
9191 * presented on PCI bus, the kernel PCI subsystem looks at PCI device-specific
9192 * information of the device and driver to see if the driver state that it can
9193 * support this kind of device. If the match is successful, the driver core
9194 * invokes this routine. If this routine determines it can claim the HBA, it
9195 * does all the initialization that it needs to do to handle the HBA properly.
9197 * Return code
9198 * 0 - driver can claim the device
9199 * negative value - driver can not claim the device
9201 static int
9202 lpfc_pci_probe_one_s3(struct pci_dev *pdev, const struct pci_device_id *pid)
9204 struct lpfc_hba *phba;
9205 struct lpfc_vport *vport = NULL;
9206 struct Scsi_Host *shost = NULL;
9207 int error;
9208 uint32_t cfg_mode, intr_mode;
9210 /* Allocate memory for HBA structure */
9211 phba = lpfc_hba_alloc(pdev);
9212 if (!phba)
9213 return -ENOMEM;
9215 /* Perform generic PCI device enabling operation */
9216 error = lpfc_enable_pci_dev(phba);
9217 if (error)
9218 goto out_free_phba;
9220 /* Set up SLI API function jump table for PCI-device group-0 HBAs */
9221 error = lpfc_api_table_setup(phba, LPFC_PCI_DEV_LP);
9222 if (error)
9223 goto out_disable_pci_dev;
9225 /* Set up SLI-3 specific device PCI memory space */
9226 error = lpfc_sli_pci_mem_setup(phba);
9227 if (error) {
9228 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
9229 "1402 Failed to set up pci memory space.\n");
9230 goto out_disable_pci_dev;
9233 /* Set up phase-1 common device driver resources */
9234 error = lpfc_setup_driver_resource_phase1(phba);
9235 if (error) {
9236 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
9237 "1403 Failed to set up driver resource.\n");
9238 goto out_unset_pci_mem_s3;
9241 /* Set up SLI-3 specific device driver resources */
9242 error = lpfc_sli_driver_resource_setup(phba);
9243 if (error) {
9244 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
9245 "1404 Failed to set up driver resource.\n");
9246 goto out_unset_pci_mem_s3;
9249 /* Initialize and populate the iocb list per host */
9250 error = lpfc_init_iocb_list(phba, LPFC_IOCB_LIST_CNT);
9251 if (error) {
9252 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
9253 "1405 Failed to initialize iocb list.\n");
9254 goto out_unset_driver_resource_s3;
9257 /* Set up common device driver resources */
9258 error = lpfc_setup_driver_resource_phase2(phba);
9259 if (error) {
9260 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
9261 "1406 Failed to set up driver resource.\n");
9262 goto out_free_iocb_list;
9265 /* Get the default values for Model Name and Description */
9266 lpfc_get_hba_model_desc(phba, phba->ModelName, phba->ModelDesc);
9268 /* Create SCSI host to the physical port */
9269 error = lpfc_create_shost(phba);
9270 if (error) {
9271 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
9272 "1407 Failed to create scsi host.\n");
9273 goto out_unset_driver_resource;
9276 /* Configure sysfs attributes */
9277 vport = phba->pport;
9278 error = lpfc_alloc_sysfs_attr(vport);
9279 if (error) {
9280 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
9281 "1476 Failed to allocate sysfs attr\n");
9282 goto out_destroy_shost;
9285 shost = lpfc_shost_from_vport(vport); /* save shost for error cleanup */
9286 /* Now, trying to enable interrupt and bring up the device */
9287 cfg_mode = phba->cfg_use_msi;
9288 while (true) {
9289 /* Put device to a known state before enabling interrupt */
9290 lpfc_stop_port(phba);
9291 /* Configure and enable interrupt */
9292 intr_mode = lpfc_sli_enable_intr(phba, cfg_mode);
9293 if (intr_mode == LPFC_INTR_ERROR) {
9294 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
9295 "0431 Failed to enable interrupt.\n");
9296 error = -ENODEV;
9297 goto out_free_sysfs_attr;
9299 /* SLI-3 HBA setup */
9300 if (lpfc_sli_hba_setup(phba)) {
9301 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
9302 "1477 Failed to set up hba\n");
9303 error = -ENODEV;
9304 goto out_remove_device;
9307 /* Wait 50ms for the interrupts of previous mailbox commands */
9308 msleep(50);
9309 /* Check active interrupts on message signaled interrupts */
9310 if (intr_mode == 0 ||
9311 phba->sli.slistat.sli_intr > LPFC_MSIX_VECTORS) {
9312 /* Log the current active interrupt mode */
9313 phba->intr_mode = intr_mode;
9314 lpfc_log_intr_mode(phba, intr_mode);
9315 break;
9316 } else {
9317 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
9318 "0447 Configure interrupt mode (%d) "
9319 "failed active interrupt test.\n",
9320 intr_mode);
9321 /* Disable the current interrupt mode */
9322 lpfc_sli_disable_intr(phba);
9323 /* Try next level of interrupt mode */
9324 cfg_mode = --intr_mode;
9328 /* Perform post initialization setup */
9329 lpfc_post_init_setup(phba);
9331 /* Check if there are static vports to be created. */
9332 lpfc_create_static_vport(phba);
9334 return 0;
9336 out_remove_device:
9337 lpfc_unset_hba(phba);
9338 out_free_sysfs_attr:
9339 lpfc_free_sysfs_attr(vport);
9340 out_destroy_shost:
9341 lpfc_destroy_shost(phba);
9342 out_unset_driver_resource:
9343 lpfc_unset_driver_resource_phase2(phba);
9344 out_free_iocb_list:
9345 lpfc_free_iocb_list(phba);
9346 out_unset_driver_resource_s3:
9347 lpfc_sli_driver_resource_unset(phba);
9348 out_unset_pci_mem_s3:
9349 lpfc_sli_pci_mem_unset(phba);
9350 out_disable_pci_dev:
9351 lpfc_disable_pci_dev(phba);
9352 if (shost)
9353 scsi_host_put(shost);
9354 out_free_phba:
9355 lpfc_hba_free(phba);
9356 return error;
9360 * lpfc_pci_remove_one_s3 - PCI func to unreg SLI-3 device from PCI subsystem.
9361 * @pdev: pointer to PCI device
9363 * This routine is to be called to disattach a device with SLI-3 interface
9364 * spec from PCI subsystem. When an Emulex HBA with SLI-3 interface spec is
9365 * removed from PCI bus, it performs all the necessary cleanup for the HBA
9366 * device to be removed from the PCI subsystem properly.
9368 static void
9369 lpfc_pci_remove_one_s3(struct pci_dev *pdev)
9371 struct Scsi_Host *shost = pci_get_drvdata(pdev);
9372 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
9373 struct lpfc_vport **vports;
9374 struct lpfc_hba *phba = vport->phba;
9375 int i;
9376 int bars = pci_select_bars(pdev, IORESOURCE_MEM);
9378 spin_lock_irq(&phba->hbalock);
9379 vport->load_flag |= FC_UNLOADING;
9380 spin_unlock_irq(&phba->hbalock);
9382 lpfc_free_sysfs_attr(vport);
9384 /* Release all the vports against this physical port */
9385 vports = lpfc_create_vport_work_array(phba);
9386 if (vports != NULL)
9387 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
9388 if (vports[i]->port_type == LPFC_PHYSICAL_PORT)
9389 continue;
9390 fc_vport_terminate(vports[i]->fc_vport);
9392 lpfc_destroy_vport_work_array(phba, vports);
9394 /* Remove FC host and then SCSI host with the physical port */
9395 fc_remove_host(shost);
9396 scsi_remove_host(shost);
9397 lpfc_cleanup(vport);
9400 * Bring down the SLI Layer. This step disable all interrupts,
9401 * clears the rings, discards all mailbox commands, and resets
9402 * the HBA.
9405 /* HBA interrupt will be disabled after this call */
9406 lpfc_sli_hba_down(phba);
9407 /* Stop kthread signal shall trigger work_done one more time */
9408 kthread_stop(phba->worker_thread);
9409 /* Final cleanup of txcmplq and reset the HBA */
9410 lpfc_sli_brdrestart(phba);
9412 kfree(phba->vpi_bmask);
9413 kfree(phba->vpi_ids);
9415 lpfc_stop_hba_timers(phba);
9416 spin_lock_irq(&phba->hbalock);
9417 list_del_init(&vport->listentry);
9418 spin_unlock_irq(&phba->hbalock);
9420 lpfc_debugfs_terminate(vport);
9422 /* Disable SR-IOV if enabled */
9423 if (phba->cfg_sriov_nr_virtfn)
9424 pci_disable_sriov(pdev);
9426 /* Disable interrupt */
9427 lpfc_sli_disable_intr(phba);
9429 pci_set_drvdata(pdev, NULL);
9430 scsi_host_put(shost);
9433 * Call scsi_free before mem_free since scsi bufs are released to their
9434 * corresponding pools here.
9436 lpfc_scsi_free(phba);
9437 lpfc_mem_free_all(phba);
9439 dma_free_coherent(&pdev->dev, lpfc_sli_hbq_size(),
9440 phba->hbqslimp.virt, phba->hbqslimp.phys);
9442 /* Free resources associated with SLI2 interface */
9443 dma_free_coherent(&pdev->dev, SLI2_SLIM_SIZE,
9444 phba->slim2p.virt, phba->slim2p.phys);
9446 /* unmap adapter SLIM and Control Registers */
9447 iounmap(phba->ctrl_regs_memmap_p);
9448 iounmap(phba->slim_memmap_p);
9450 lpfc_hba_free(phba);
9452 pci_release_selected_regions(pdev, bars);
9453 pci_disable_device(pdev);
9457 * lpfc_pci_suspend_one_s3 - PCI func to suspend SLI-3 device for power mgmnt
9458 * @pdev: pointer to PCI device
9459 * @msg: power management message
9461 * This routine is to be called from the kernel's PCI subsystem to support
9462 * system Power Management (PM) to device with SLI-3 interface spec. When
9463 * PM invokes this method, it quiesces the device by stopping the driver's
9464 * worker thread for the device, turning off device's interrupt and DMA,
9465 * and bring the device offline. Note that as the driver implements the
9466 * minimum PM requirements to a power-aware driver's PM support for the
9467 * suspend/resume -- all the possible PM messages (SUSPEND, HIBERNATE, FREEZE)
9468 * to the suspend() method call will be treated as SUSPEND and the driver will
9469 * fully reinitialize its device during resume() method call, the driver will
9470 * set device to PCI_D3hot state in PCI config space instead of setting it
9471 * according to the @msg provided by the PM.
9473 * Return code
9474 * 0 - driver suspended the device
9475 * Error otherwise
9477 static int
9478 lpfc_pci_suspend_one_s3(struct pci_dev *pdev, pm_message_t msg)
9480 struct Scsi_Host *shost = pci_get_drvdata(pdev);
9481 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
9483 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
9484 "0473 PCI device Power Management suspend.\n");
9486 /* Bring down the device */
9487 lpfc_offline_prep(phba, LPFC_MBX_WAIT);
9488 lpfc_offline(phba);
9489 kthread_stop(phba->worker_thread);
9491 /* Disable interrupt from device */
9492 lpfc_sli_disable_intr(phba);
9494 /* Save device state to PCI config space */
9495 pci_save_state(pdev);
9496 pci_set_power_state(pdev, PCI_D3hot);
9498 return 0;
9502 * lpfc_pci_resume_one_s3 - PCI func to resume SLI-3 device for power mgmnt
9503 * @pdev: pointer to PCI device
9505 * This routine is to be called from the kernel's PCI subsystem to support
9506 * system Power Management (PM) to device with SLI-3 interface spec. When PM
9507 * invokes this method, it restores the device's PCI config space state and
9508 * fully reinitializes the device and brings it online. Note that as the
9509 * driver implements the minimum PM requirements to a power-aware driver's
9510 * PM for suspend/resume -- all the possible PM messages (SUSPEND, HIBERNATE,
9511 * FREEZE) to the suspend() method call will be treated as SUSPEND and the
9512 * driver will fully reinitialize its device during resume() method call,
9513 * the device will be set to PCI_D0 directly in PCI config space before
9514 * restoring the state.
9516 * Return code
9517 * 0 - driver suspended the device
9518 * Error otherwise
9520 static int
9521 lpfc_pci_resume_one_s3(struct pci_dev *pdev)
9523 struct Scsi_Host *shost = pci_get_drvdata(pdev);
9524 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
9525 uint32_t intr_mode;
9526 int error;
9528 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
9529 "0452 PCI device Power Management resume.\n");
9531 /* Restore device state from PCI config space */
9532 pci_set_power_state(pdev, PCI_D0);
9533 pci_restore_state(pdev);
9536 * As the new kernel behavior of pci_restore_state() API call clears
9537 * device saved_state flag, need to save the restored state again.
9539 pci_save_state(pdev);
9541 if (pdev->is_busmaster)
9542 pci_set_master(pdev);
9544 /* Startup the kernel thread for this host adapter. */
9545 phba->worker_thread = kthread_run(lpfc_do_work, phba,
9546 "lpfc_worker_%d", phba->brd_no);
9547 if (IS_ERR(phba->worker_thread)) {
9548 error = PTR_ERR(phba->worker_thread);
9549 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
9550 "0434 PM resume failed to start worker "
9551 "thread: error=x%x.\n", error);
9552 return error;
9555 /* Configure and enable interrupt */
9556 intr_mode = lpfc_sli_enable_intr(phba, phba->intr_mode);
9557 if (intr_mode == LPFC_INTR_ERROR) {
9558 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
9559 "0430 PM resume Failed to enable interrupt\n");
9560 return -EIO;
9561 } else
9562 phba->intr_mode = intr_mode;
9564 /* Restart HBA and bring it online */
9565 lpfc_sli_brdrestart(phba);
9566 lpfc_online(phba);
9568 /* Log the current active interrupt mode */
9569 lpfc_log_intr_mode(phba, phba->intr_mode);
9571 return 0;
9575 * lpfc_sli_prep_dev_for_recover - Prepare SLI3 device for pci slot recover
9576 * @phba: pointer to lpfc hba data structure.
9578 * This routine is called to prepare the SLI3 device for PCI slot recover. It
9579 * aborts all the outstanding SCSI I/Os to the pci device.
9581 static void
9582 lpfc_sli_prep_dev_for_recover(struct lpfc_hba *phba)
9584 struct lpfc_sli *psli = &phba->sli;
9585 struct lpfc_sli_ring *pring;
9587 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
9588 "2723 PCI channel I/O abort preparing for recovery\n");
9591 * There may be errored I/Os through HBA, abort all I/Os on txcmplq
9592 * and let the SCSI mid-layer to retry them to recover.
9594 pring = &psli->ring[psli->fcp_ring];
9595 lpfc_sli_abort_iocb_ring(phba, pring);
9599 * lpfc_sli_prep_dev_for_reset - Prepare SLI3 device for pci slot reset
9600 * @phba: pointer to lpfc hba data structure.
9602 * This routine is called to prepare the SLI3 device for PCI slot reset. It
9603 * disables the device interrupt and pci device, and aborts the internal FCP
9604 * pending I/Os.
9606 static void
9607 lpfc_sli_prep_dev_for_reset(struct lpfc_hba *phba)
9609 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
9610 "2710 PCI channel disable preparing for reset\n");
9612 /* Block any management I/Os to the device */
9613 lpfc_block_mgmt_io(phba, LPFC_MBX_WAIT);
9615 /* Block all SCSI devices' I/Os on the host */
9616 lpfc_scsi_dev_block(phba);
9618 /* Flush all driver's outstanding SCSI I/Os as we are to reset */
9619 lpfc_sli_flush_fcp_rings(phba);
9621 /* stop all timers */
9622 lpfc_stop_hba_timers(phba);
9624 /* Disable interrupt and pci device */
9625 lpfc_sli_disable_intr(phba);
9626 pci_disable_device(phba->pcidev);
9630 * lpfc_sli_prep_dev_for_perm_failure - Prepare SLI3 dev for pci slot disable
9631 * @phba: pointer to lpfc hba data structure.
9633 * This routine is called to prepare the SLI3 device for PCI slot permanently
9634 * disabling. It blocks the SCSI transport layer traffic and flushes the FCP
9635 * pending I/Os.
9637 static void
9638 lpfc_sli_prep_dev_for_perm_failure(struct lpfc_hba *phba)
9640 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
9641 "2711 PCI channel permanent disable for failure\n");
9642 /* Block all SCSI devices' I/Os on the host */
9643 lpfc_scsi_dev_block(phba);
9645 /* stop all timers */
9646 lpfc_stop_hba_timers(phba);
9648 /* Clean up all driver's outstanding SCSI I/Os */
9649 lpfc_sli_flush_fcp_rings(phba);
9653 * lpfc_io_error_detected_s3 - Method for handling SLI-3 device PCI I/O error
9654 * @pdev: pointer to PCI device.
9655 * @state: the current PCI connection state.
9657 * This routine is called from the PCI subsystem for I/O error handling to
9658 * device with SLI-3 interface spec. This function is called by the PCI
9659 * subsystem after a PCI bus error affecting this device has been detected.
9660 * When this function is invoked, it will need to stop all the I/Os and
9661 * interrupt(s) to the device. Once that is done, it will return
9662 * PCI_ERS_RESULT_NEED_RESET for the PCI subsystem to perform proper recovery
9663 * as desired.
9665 * Return codes
9666 * PCI_ERS_RESULT_CAN_RECOVER - can be recovered with reset_link
9667 * PCI_ERS_RESULT_NEED_RESET - need to reset before recovery
9668 * PCI_ERS_RESULT_DISCONNECT - device could not be recovered
9670 static pci_ers_result_t
9671 lpfc_io_error_detected_s3(struct pci_dev *pdev, pci_channel_state_t state)
9673 struct Scsi_Host *shost = pci_get_drvdata(pdev);
9674 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
9676 switch (state) {
9677 case pci_channel_io_normal:
9678 /* Non-fatal error, prepare for recovery */
9679 lpfc_sli_prep_dev_for_recover(phba);
9680 return PCI_ERS_RESULT_CAN_RECOVER;
9681 case pci_channel_io_frozen:
9682 /* Fatal error, prepare for slot reset */
9683 lpfc_sli_prep_dev_for_reset(phba);
9684 return PCI_ERS_RESULT_NEED_RESET;
9685 case pci_channel_io_perm_failure:
9686 /* Permanent failure, prepare for device down */
9687 lpfc_sli_prep_dev_for_perm_failure(phba);
9688 return PCI_ERS_RESULT_DISCONNECT;
9689 default:
9690 /* Unknown state, prepare and request slot reset */
9691 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
9692 "0472 Unknown PCI error state: x%x\n", state);
9693 lpfc_sli_prep_dev_for_reset(phba);
9694 return PCI_ERS_RESULT_NEED_RESET;
9699 * lpfc_io_slot_reset_s3 - Method for restarting PCI SLI-3 device from scratch.
9700 * @pdev: pointer to PCI device.
9702 * This routine is called from the PCI subsystem for error handling to
9703 * device with SLI-3 interface spec. This is called after PCI bus has been
9704 * reset to restart the PCI card from scratch, as if from a cold-boot.
9705 * During the PCI subsystem error recovery, after driver returns
9706 * PCI_ERS_RESULT_NEED_RESET, the PCI subsystem will perform proper error
9707 * recovery and then call this routine before calling the .resume method
9708 * to recover the device. This function will initialize the HBA device,
9709 * enable the interrupt, but it will just put the HBA to offline state
9710 * without passing any I/O traffic.
9712 * Return codes
9713 * PCI_ERS_RESULT_RECOVERED - the device has been recovered
9714 * PCI_ERS_RESULT_DISCONNECT - device could not be recovered
9716 static pci_ers_result_t
9717 lpfc_io_slot_reset_s3(struct pci_dev *pdev)
9719 struct Scsi_Host *shost = pci_get_drvdata(pdev);
9720 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
9721 struct lpfc_sli *psli = &phba->sli;
9722 uint32_t intr_mode;
9724 dev_printk(KERN_INFO, &pdev->dev, "recovering from a slot reset.\n");
9725 if (pci_enable_device_mem(pdev)) {
9726 printk(KERN_ERR "lpfc: Cannot re-enable "
9727 "PCI device after reset.\n");
9728 return PCI_ERS_RESULT_DISCONNECT;
9731 pci_restore_state(pdev);
9734 * As the new kernel behavior of pci_restore_state() API call clears
9735 * device saved_state flag, need to save the restored state again.
9737 pci_save_state(pdev);
9739 if (pdev->is_busmaster)
9740 pci_set_master(pdev);
9742 spin_lock_irq(&phba->hbalock);
9743 psli->sli_flag &= ~LPFC_SLI_ACTIVE;
9744 spin_unlock_irq(&phba->hbalock);
9746 /* Configure and enable interrupt */
9747 intr_mode = lpfc_sli_enable_intr(phba, phba->intr_mode);
9748 if (intr_mode == LPFC_INTR_ERROR) {
9749 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
9750 "0427 Cannot re-enable interrupt after "
9751 "slot reset.\n");
9752 return PCI_ERS_RESULT_DISCONNECT;
9753 } else
9754 phba->intr_mode = intr_mode;
9756 /* Take device offline, it will perform cleanup */
9757 lpfc_offline_prep(phba, LPFC_MBX_WAIT);
9758 lpfc_offline(phba);
9759 lpfc_sli_brdrestart(phba);
9761 /* Log the current active interrupt mode */
9762 lpfc_log_intr_mode(phba, phba->intr_mode);
9764 return PCI_ERS_RESULT_RECOVERED;
9768 * lpfc_io_resume_s3 - Method for resuming PCI I/O operation on SLI-3 device.
9769 * @pdev: pointer to PCI device
9771 * This routine is called from the PCI subsystem for error handling to device
9772 * with SLI-3 interface spec. It is called when kernel error recovery tells
9773 * the lpfc driver that it is ok to resume normal PCI operation after PCI bus
9774 * error recovery. After this call, traffic can start to flow from this device
9775 * again.
9777 static void
9778 lpfc_io_resume_s3(struct pci_dev *pdev)
9780 struct Scsi_Host *shost = pci_get_drvdata(pdev);
9781 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
9783 /* Bring device online, it will be no-op for non-fatal error resume */
9784 lpfc_online(phba);
9786 /* Clean up Advanced Error Reporting (AER) if needed */
9787 if (phba->hba_flag & HBA_AER_ENABLED)
9788 pci_cleanup_aer_uncorrect_error_status(pdev);
9792 * lpfc_sli4_get_els_iocb_cnt - Calculate the # of ELS IOCBs to reserve
9793 * @phba: pointer to lpfc hba data structure.
9795 * returns the number of ELS/CT IOCBs to reserve
9798 lpfc_sli4_get_els_iocb_cnt(struct lpfc_hba *phba)
9800 int max_xri = phba->sli4_hba.max_cfg_param.max_xri;
9802 if (phba->sli_rev == LPFC_SLI_REV4) {
9803 if (max_xri <= 100)
9804 return 10;
9805 else if (max_xri <= 256)
9806 return 25;
9807 else if (max_xri <= 512)
9808 return 50;
9809 else if (max_xri <= 1024)
9810 return 100;
9811 else if (max_xri <= 1536)
9812 return 150;
9813 else if (max_xri <= 2048)
9814 return 200;
9815 else
9816 return 250;
9817 } else
9818 return 0;
9822 * lpfc_write_firmware - attempt to write a firmware image to the port
9823 * @fw: pointer to firmware image returned from request_firmware.
9824 * @phba: pointer to lpfc hba data structure.
9827 static void
9828 lpfc_write_firmware(const struct firmware *fw, void *context)
9830 struct lpfc_hba *phba = (struct lpfc_hba *)context;
9831 char fwrev[FW_REV_STR_SIZE];
9832 struct lpfc_grp_hdr *image;
9833 struct list_head dma_buffer_list;
9834 int i, rc = 0;
9835 struct lpfc_dmabuf *dmabuf, *next;
9836 uint32_t offset = 0, temp_offset = 0;
9838 /* It can be null in no-wait mode, sanity check */
9839 if (!fw) {
9840 rc = -ENXIO;
9841 goto out;
9843 image = (struct lpfc_grp_hdr *)fw->data;
9845 INIT_LIST_HEAD(&dma_buffer_list);
9846 if ((be32_to_cpu(image->magic_number) != LPFC_GROUP_OJECT_MAGIC_NUM) ||
9847 (bf_get_be32(lpfc_grp_hdr_file_type, image) !=
9848 LPFC_FILE_TYPE_GROUP) ||
9849 (bf_get_be32(lpfc_grp_hdr_id, image) != LPFC_FILE_ID_GROUP) ||
9850 (be32_to_cpu(image->size) != fw->size)) {
9851 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
9852 "3022 Invalid FW image found. "
9853 "Magic:%x Type:%x ID:%x\n",
9854 be32_to_cpu(image->magic_number),
9855 bf_get_be32(lpfc_grp_hdr_file_type, image),
9856 bf_get_be32(lpfc_grp_hdr_id, image));
9857 rc = -EINVAL;
9858 goto release_out;
9860 lpfc_decode_firmware_rev(phba, fwrev, 1);
9861 if (strncmp(fwrev, image->revision, strnlen(image->revision, 16))) {
9862 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
9863 "3023 Updating Firmware, Current Version:%s "
9864 "New Version:%s\n",
9865 fwrev, image->revision);
9866 for (i = 0; i < LPFC_MBX_WR_CONFIG_MAX_BDE; i++) {
9867 dmabuf = kzalloc(sizeof(struct lpfc_dmabuf),
9868 GFP_KERNEL);
9869 if (!dmabuf) {
9870 rc = -ENOMEM;
9871 goto release_out;
9873 dmabuf->virt = dma_alloc_coherent(&phba->pcidev->dev,
9874 SLI4_PAGE_SIZE,
9875 &dmabuf->phys,
9876 GFP_KERNEL);
9877 if (!dmabuf->virt) {
9878 kfree(dmabuf);
9879 rc = -ENOMEM;
9880 goto release_out;
9882 list_add_tail(&dmabuf->list, &dma_buffer_list);
9884 while (offset < fw->size) {
9885 temp_offset = offset;
9886 list_for_each_entry(dmabuf, &dma_buffer_list, list) {
9887 if (temp_offset + SLI4_PAGE_SIZE > fw->size) {
9888 memcpy(dmabuf->virt,
9889 fw->data + temp_offset,
9890 fw->size - temp_offset);
9891 temp_offset = fw->size;
9892 break;
9894 memcpy(dmabuf->virt, fw->data + temp_offset,
9895 SLI4_PAGE_SIZE);
9896 temp_offset += SLI4_PAGE_SIZE;
9898 rc = lpfc_wr_object(phba, &dma_buffer_list,
9899 (fw->size - offset), &offset);
9900 if (rc)
9901 goto release_out;
9903 rc = offset;
9906 release_out:
9907 list_for_each_entry_safe(dmabuf, next, &dma_buffer_list, list) {
9908 list_del(&dmabuf->list);
9909 dma_free_coherent(&phba->pcidev->dev, SLI4_PAGE_SIZE,
9910 dmabuf->virt, dmabuf->phys);
9911 kfree(dmabuf);
9913 release_firmware(fw);
9914 out:
9915 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
9916 "3024 Firmware update done: %d.\n", rc);
9917 return;
9921 * lpfc_sli4_request_firmware_update - Request linux generic firmware upgrade
9922 * @phba: pointer to lpfc hba data structure.
9924 * This routine is called to perform Linux generic firmware upgrade on device
9925 * that supports such feature.
9928 lpfc_sli4_request_firmware_update(struct lpfc_hba *phba, uint8_t fw_upgrade)
9930 uint8_t file_name[ELX_MODEL_NAME_SIZE];
9931 int ret;
9932 const struct firmware *fw;
9934 /* Only supported on SLI4 interface type 2 for now */
9935 if (bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf) !=
9936 LPFC_SLI_INTF_IF_TYPE_2)
9937 return -EPERM;
9939 snprintf(file_name, ELX_MODEL_NAME_SIZE, "%s.grp", phba->ModelName);
9941 if (fw_upgrade == INT_FW_UPGRADE) {
9942 ret = request_firmware_nowait(THIS_MODULE, FW_ACTION_HOTPLUG,
9943 file_name, &phba->pcidev->dev,
9944 GFP_KERNEL, (void *)phba,
9945 lpfc_write_firmware);
9946 } else if (fw_upgrade == RUN_FW_UPGRADE) {
9947 ret = request_firmware(&fw, file_name, &phba->pcidev->dev);
9948 if (!ret)
9949 lpfc_write_firmware(fw, (void *)phba);
9950 } else {
9951 ret = -EINVAL;
9954 return ret;
9958 * lpfc_pci_probe_one_s4 - PCI probe func to reg SLI-4 device to PCI subsys
9959 * @pdev: pointer to PCI device
9960 * @pid: pointer to PCI device identifier
9962 * This routine is called from the kernel's PCI subsystem to device with
9963 * SLI-4 interface spec. When an Emulex HBA with SLI-4 interface spec is
9964 * presented on PCI bus, the kernel PCI subsystem looks at PCI device-specific
9965 * information of the device and driver to see if the driver state that it
9966 * can support this kind of device. If the match is successful, the driver
9967 * core invokes this routine. If this routine determines it can claim the HBA,
9968 * it does all the initialization that it needs to do to handle the HBA
9969 * properly.
9971 * Return code
9972 * 0 - driver can claim the device
9973 * negative value - driver can not claim the device
9975 static int
9976 lpfc_pci_probe_one_s4(struct pci_dev *pdev, const struct pci_device_id *pid)
9978 struct lpfc_hba *phba;
9979 struct lpfc_vport *vport = NULL;
9980 struct Scsi_Host *shost = NULL;
9981 int error, ret;
9982 uint32_t cfg_mode, intr_mode;
9983 int adjusted_fcp_io_channel;
9985 /* Allocate memory for HBA structure */
9986 phba = lpfc_hba_alloc(pdev);
9987 if (!phba)
9988 return -ENOMEM;
9990 /* Perform generic PCI device enabling operation */
9991 error = lpfc_enable_pci_dev(phba);
9992 if (error)
9993 goto out_free_phba;
9995 /* Set up SLI API function jump table for PCI-device group-1 HBAs */
9996 error = lpfc_api_table_setup(phba, LPFC_PCI_DEV_OC);
9997 if (error)
9998 goto out_disable_pci_dev;
10000 /* Set up SLI-4 specific device PCI memory space */
10001 error = lpfc_sli4_pci_mem_setup(phba);
10002 if (error) {
10003 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10004 "1410 Failed to set up pci memory space.\n");
10005 goto out_disable_pci_dev;
10008 /* Set up phase-1 common device driver resources */
10009 error = lpfc_setup_driver_resource_phase1(phba);
10010 if (error) {
10011 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10012 "1411 Failed to set up driver resource.\n");
10013 goto out_unset_pci_mem_s4;
10016 /* Set up SLI-4 Specific device driver resources */
10017 error = lpfc_sli4_driver_resource_setup(phba);
10018 if (error) {
10019 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10020 "1412 Failed to set up driver resource.\n");
10021 goto out_unset_pci_mem_s4;
10024 /* Initialize and populate the iocb list per host */
10026 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
10027 "2821 initialize iocb list %d.\n",
10028 phba->cfg_iocb_cnt*1024);
10029 error = lpfc_init_iocb_list(phba, phba->cfg_iocb_cnt*1024);
10031 if (error) {
10032 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10033 "1413 Failed to initialize iocb list.\n");
10034 goto out_unset_driver_resource_s4;
10037 INIT_LIST_HEAD(&phba->active_rrq_list);
10038 INIT_LIST_HEAD(&phba->fcf.fcf_pri_list);
10040 /* Set up common device driver resources */
10041 error = lpfc_setup_driver_resource_phase2(phba);
10042 if (error) {
10043 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10044 "1414 Failed to set up driver resource.\n");
10045 goto out_free_iocb_list;
10048 /* Get the default values for Model Name and Description */
10049 lpfc_get_hba_model_desc(phba, phba->ModelName, phba->ModelDesc);
10051 /* Create SCSI host to the physical port */
10052 error = lpfc_create_shost(phba);
10053 if (error) {
10054 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10055 "1415 Failed to create scsi host.\n");
10056 goto out_unset_driver_resource;
10059 /* Configure sysfs attributes */
10060 vport = phba->pport;
10061 error = lpfc_alloc_sysfs_attr(vport);
10062 if (error) {
10063 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10064 "1416 Failed to allocate sysfs attr\n");
10065 goto out_destroy_shost;
10068 shost = lpfc_shost_from_vport(vport); /* save shost for error cleanup */
10069 /* Now, trying to enable interrupt and bring up the device */
10070 cfg_mode = phba->cfg_use_msi;
10072 /* Put device to a known state before enabling interrupt */
10073 lpfc_stop_port(phba);
10074 /* Configure and enable interrupt */
10075 intr_mode = lpfc_sli4_enable_intr(phba, cfg_mode);
10076 if (intr_mode == LPFC_INTR_ERROR) {
10077 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10078 "0426 Failed to enable interrupt.\n");
10079 error = -ENODEV;
10080 goto out_free_sysfs_attr;
10082 /* Default to single EQ for non-MSI-X */
10083 if (phba->intr_type != MSIX)
10084 adjusted_fcp_io_channel = 1;
10085 else
10086 adjusted_fcp_io_channel = phba->cfg_fcp_io_channel;
10087 phba->cfg_fcp_io_channel = adjusted_fcp_io_channel;
10088 /* Set up SLI-4 HBA */
10089 if (lpfc_sli4_hba_setup(phba)) {
10090 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10091 "1421 Failed to set up hba\n");
10092 error = -ENODEV;
10093 goto out_disable_intr;
10096 /* Log the current active interrupt mode */
10097 phba->intr_mode = intr_mode;
10098 lpfc_log_intr_mode(phba, intr_mode);
10100 /* Perform post initialization setup */
10101 lpfc_post_init_setup(phba);
10103 /* check for firmware upgrade or downgrade */
10104 if (phba->cfg_request_firmware_upgrade)
10105 ret = lpfc_sli4_request_firmware_update(phba, INT_FW_UPGRADE);
10107 /* Check if there are static vports to be created. */
10108 lpfc_create_static_vport(phba);
10109 return 0;
10111 out_disable_intr:
10112 lpfc_sli4_disable_intr(phba);
10113 out_free_sysfs_attr:
10114 lpfc_free_sysfs_attr(vport);
10115 out_destroy_shost:
10116 lpfc_destroy_shost(phba);
10117 out_unset_driver_resource:
10118 lpfc_unset_driver_resource_phase2(phba);
10119 out_free_iocb_list:
10120 lpfc_free_iocb_list(phba);
10121 out_unset_driver_resource_s4:
10122 lpfc_sli4_driver_resource_unset(phba);
10123 out_unset_pci_mem_s4:
10124 lpfc_sli4_pci_mem_unset(phba);
10125 out_disable_pci_dev:
10126 lpfc_disable_pci_dev(phba);
10127 if (shost)
10128 scsi_host_put(shost);
10129 out_free_phba:
10130 lpfc_hba_free(phba);
10131 return error;
10135 * lpfc_pci_remove_one_s4 - PCI func to unreg SLI-4 device from PCI subsystem
10136 * @pdev: pointer to PCI device
10138 * This routine is called from the kernel's PCI subsystem to device with
10139 * SLI-4 interface spec. When an Emulex HBA with SLI-4 interface spec is
10140 * removed from PCI bus, it performs all the necessary cleanup for the HBA
10141 * device to be removed from the PCI subsystem properly.
10143 static void
10144 lpfc_pci_remove_one_s4(struct pci_dev *pdev)
10146 struct Scsi_Host *shost = pci_get_drvdata(pdev);
10147 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
10148 struct lpfc_vport **vports;
10149 struct lpfc_hba *phba = vport->phba;
10150 int i;
10152 /* Mark the device unloading flag */
10153 spin_lock_irq(&phba->hbalock);
10154 vport->load_flag |= FC_UNLOADING;
10155 spin_unlock_irq(&phba->hbalock);
10157 /* Free the HBA sysfs attributes */
10158 lpfc_free_sysfs_attr(vport);
10160 /* Release all the vports against this physical port */
10161 vports = lpfc_create_vport_work_array(phba);
10162 if (vports != NULL)
10163 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
10164 if (vports[i]->port_type == LPFC_PHYSICAL_PORT)
10165 continue;
10166 fc_vport_terminate(vports[i]->fc_vport);
10168 lpfc_destroy_vport_work_array(phba, vports);
10170 /* Remove FC host and then SCSI host with the physical port */
10171 fc_remove_host(shost);
10172 scsi_remove_host(shost);
10174 /* Perform cleanup on the physical port */
10175 lpfc_cleanup(vport);
10178 * Bring down the SLI Layer. This step disables all interrupts,
10179 * clears the rings, discards all mailbox commands, and resets
10180 * the HBA FCoE function.
10182 lpfc_debugfs_terminate(vport);
10183 lpfc_sli4_hba_unset(phba);
10185 spin_lock_irq(&phba->hbalock);
10186 list_del_init(&vport->listentry);
10187 spin_unlock_irq(&phba->hbalock);
10189 /* Perform scsi free before driver resource_unset since scsi
10190 * buffers are released to their corresponding pools here.
10192 lpfc_scsi_free(phba);
10194 lpfc_sli4_driver_resource_unset(phba);
10196 /* Unmap adapter Control and Doorbell registers */
10197 lpfc_sli4_pci_mem_unset(phba);
10199 /* Release PCI resources and disable device's PCI function */
10200 scsi_host_put(shost);
10201 lpfc_disable_pci_dev(phba);
10203 /* Finally, free the driver's device data structure */
10204 lpfc_hba_free(phba);
10206 return;
10210 * lpfc_pci_suspend_one_s4 - PCI func to suspend SLI-4 device for power mgmnt
10211 * @pdev: pointer to PCI device
10212 * @msg: power management message
10214 * This routine is called from the kernel's PCI subsystem to support system
10215 * Power Management (PM) to device with SLI-4 interface spec. When PM invokes
10216 * this method, it quiesces the device by stopping the driver's worker
10217 * thread for the device, turning off device's interrupt and DMA, and bring
10218 * the device offline. Note that as the driver implements the minimum PM
10219 * requirements to a power-aware driver's PM support for suspend/resume -- all
10220 * the possible PM messages (SUSPEND, HIBERNATE, FREEZE) to the suspend()
10221 * method call will be treated as SUSPEND and the driver will fully
10222 * reinitialize its device during resume() method call, the driver will set
10223 * device to PCI_D3hot state in PCI config space instead of setting it
10224 * according to the @msg provided by the PM.
10226 * Return code
10227 * 0 - driver suspended the device
10228 * Error otherwise
10230 static int
10231 lpfc_pci_suspend_one_s4(struct pci_dev *pdev, pm_message_t msg)
10233 struct Scsi_Host *shost = pci_get_drvdata(pdev);
10234 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
10236 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
10237 "2843 PCI device Power Management suspend.\n");
10239 /* Bring down the device */
10240 lpfc_offline_prep(phba, LPFC_MBX_WAIT);
10241 lpfc_offline(phba);
10242 kthread_stop(phba->worker_thread);
10244 /* Disable interrupt from device */
10245 lpfc_sli4_disable_intr(phba);
10246 lpfc_sli4_queue_destroy(phba);
10248 /* Save device state to PCI config space */
10249 pci_save_state(pdev);
10250 pci_set_power_state(pdev, PCI_D3hot);
10252 return 0;
10256 * lpfc_pci_resume_one_s4 - PCI func to resume SLI-4 device for power mgmnt
10257 * @pdev: pointer to PCI device
10259 * This routine is called from the kernel's PCI subsystem to support system
10260 * Power Management (PM) to device with SLI-4 interface spac. When PM invokes
10261 * this method, it restores the device's PCI config space state and fully
10262 * reinitializes the device and brings it online. Note that as the driver
10263 * implements the minimum PM requirements to a power-aware driver's PM for
10264 * suspend/resume -- all the possible PM messages (SUSPEND, HIBERNATE, FREEZE)
10265 * to the suspend() method call will be treated as SUSPEND and the driver
10266 * will fully reinitialize its device during resume() method call, the device
10267 * will be set to PCI_D0 directly in PCI config space before restoring the
10268 * state.
10270 * Return code
10271 * 0 - driver suspended the device
10272 * Error otherwise
10274 static int
10275 lpfc_pci_resume_one_s4(struct pci_dev *pdev)
10277 struct Scsi_Host *shost = pci_get_drvdata(pdev);
10278 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
10279 uint32_t intr_mode;
10280 int error;
10282 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
10283 "0292 PCI device Power Management resume.\n");
10285 /* Restore device state from PCI config space */
10286 pci_set_power_state(pdev, PCI_D0);
10287 pci_restore_state(pdev);
10290 * As the new kernel behavior of pci_restore_state() API call clears
10291 * device saved_state flag, need to save the restored state again.
10293 pci_save_state(pdev);
10295 if (pdev->is_busmaster)
10296 pci_set_master(pdev);
10298 /* Startup the kernel thread for this host adapter. */
10299 phba->worker_thread = kthread_run(lpfc_do_work, phba,
10300 "lpfc_worker_%d", phba->brd_no);
10301 if (IS_ERR(phba->worker_thread)) {
10302 error = PTR_ERR(phba->worker_thread);
10303 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10304 "0293 PM resume failed to start worker "
10305 "thread: error=x%x.\n", error);
10306 return error;
10309 /* Configure and enable interrupt */
10310 intr_mode = lpfc_sli4_enable_intr(phba, phba->intr_mode);
10311 if (intr_mode == LPFC_INTR_ERROR) {
10312 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10313 "0294 PM resume Failed to enable interrupt\n");
10314 return -EIO;
10315 } else
10316 phba->intr_mode = intr_mode;
10318 /* Restart HBA and bring it online */
10319 lpfc_sli_brdrestart(phba);
10320 lpfc_online(phba);
10322 /* Log the current active interrupt mode */
10323 lpfc_log_intr_mode(phba, phba->intr_mode);
10325 return 0;
10329 * lpfc_sli4_prep_dev_for_recover - Prepare SLI4 device for pci slot recover
10330 * @phba: pointer to lpfc hba data structure.
10332 * This routine is called to prepare the SLI4 device for PCI slot recover. It
10333 * aborts all the outstanding SCSI I/Os to the pci device.
10335 static void
10336 lpfc_sli4_prep_dev_for_recover(struct lpfc_hba *phba)
10338 struct lpfc_sli *psli = &phba->sli;
10339 struct lpfc_sli_ring *pring;
10341 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10342 "2828 PCI channel I/O abort preparing for recovery\n");
10344 * There may be errored I/Os through HBA, abort all I/Os on txcmplq
10345 * and let the SCSI mid-layer to retry them to recover.
10347 pring = &psli->ring[psli->fcp_ring];
10348 lpfc_sli_abort_iocb_ring(phba, pring);
10352 * lpfc_sli4_prep_dev_for_reset - Prepare SLI4 device for pci slot reset
10353 * @phba: pointer to lpfc hba data structure.
10355 * This routine is called to prepare the SLI4 device for PCI slot reset. It
10356 * disables the device interrupt and pci device, and aborts the internal FCP
10357 * pending I/Os.
10359 static void
10360 lpfc_sli4_prep_dev_for_reset(struct lpfc_hba *phba)
10362 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10363 "2826 PCI channel disable preparing for reset\n");
10365 /* Block any management I/Os to the device */
10366 lpfc_block_mgmt_io(phba, LPFC_MBX_NO_WAIT);
10368 /* Block all SCSI devices' I/Os on the host */
10369 lpfc_scsi_dev_block(phba);
10371 /* Flush all driver's outstanding SCSI I/Os as we are to reset */
10372 lpfc_sli_flush_fcp_rings(phba);
10374 /* stop all timers */
10375 lpfc_stop_hba_timers(phba);
10377 /* Disable interrupt and pci device */
10378 lpfc_sli4_disable_intr(phba);
10379 lpfc_sli4_queue_destroy(phba);
10380 pci_disable_device(phba->pcidev);
10384 * lpfc_sli4_prep_dev_for_perm_failure - Prepare SLI4 dev for pci slot disable
10385 * @phba: pointer to lpfc hba data structure.
10387 * This routine is called to prepare the SLI4 device for PCI slot permanently
10388 * disabling. It blocks the SCSI transport layer traffic and flushes the FCP
10389 * pending I/Os.
10391 static void
10392 lpfc_sli4_prep_dev_for_perm_failure(struct lpfc_hba *phba)
10394 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10395 "2827 PCI channel permanent disable for failure\n");
10397 /* Block all SCSI devices' I/Os on the host */
10398 lpfc_scsi_dev_block(phba);
10400 /* stop all timers */
10401 lpfc_stop_hba_timers(phba);
10403 /* Clean up all driver's outstanding SCSI I/Os */
10404 lpfc_sli_flush_fcp_rings(phba);
10408 * lpfc_io_error_detected_s4 - Method for handling PCI I/O error to SLI-4 device
10409 * @pdev: pointer to PCI device.
10410 * @state: the current PCI connection state.
10412 * This routine is called from the PCI subsystem for error handling to device
10413 * with SLI-4 interface spec. This function is called by the PCI subsystem
10414 * after a PCI bus error affecting this device has been detected. When this
10415 * function is invoked, it will need to stop all the I/Os and interrupt(s)
10416 * to the device. Once that is done, it will return PCI_ERS_RESULT_NEED_RESET
10417 * for the PCI subsystem to perform proper recovery as desired.
10419 * Return codes
10420 * PCI_ERS_RESULT_NEED_RESET - need to reset before recovery
10421 * PCI_ERS_RESULT_DISCONNECT - device could not be recovered
10423 static pci_ers_result_t
10424 lpfc_io_error_detected_s4(struct pci_dev *pdev, pci_channel_state_t state)
10426 struct Scsi_Host *shost = pci_get_drvdata(pdev);
10427 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
10429 switch (state) {
10430 case pci_channel_io_normal:
10431 /* Non-fatal error, prepare for recovery */
10432 lpfc_sli4_prep_dev_for_recover(phba);
10433 return PCI_ERS_RESULT_CAN_RECOVER;
10434 case pci_channel_io_frozen:
10435 /* Fatal error, prepare for slot reset */
10436 lpfc_sli4_prep_dev_for_reset(phba);
10437 return PCI_ERS_RESULT_NEED_RESET;
10438 case pci_channel_io_perm_failure:
10439 /* Permanent failure, prepare for device down */
10440 lpfc_sli4_prep_dev_for_perm_failure(phba);
10441 return PCI_ERS_RESULT_DISCONNECT;
10442 default:
10443 /* Unknown state, prepare and request slot reset */
10444 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10445 "2825 Unknown PCI error state: x%x\n", state);
10446 lpfc_sli4_prep_dev_for_reset(phba);
10447 return PCI_ERS_RESULT_NEED_RESET;
10452 * lpfc_io_slot_reset_s4 - Method for restart PCI SLI-4 device from scratch
10453 * @pdev: pointer to PCI device.
10455 * This routine is called from the PCI subsystem for error handling to device
10456 * with SLI-4 interface spec. It is called after PCI bus has been reset to
10457 * restart the PCI card from scratch, as if from a cold-boot. During the
10458 * PCI subsystem error recovery, after the driver returns
10459 * PCI_ERS_RESULT_NEED_RESET, the PCI subsystem will perform proper error
10460 * recovery and then call this routine before calling the .resume method to
10461 * recover the device. This function will initialize the HBA device, enable
10462 * the interrupt, but it will just put the HBA to offline state without
10463 * passing any I/O traffic.
10465 * Return codes
10466 * PCI_ERS_RESULT_RECOVERED - the device has been recovered
10467 * PCI_ERS_RESULT_DISCONNECT - device could not be recovered
10469 static pci_ers_result_t
10470 lpfc_io_slot_reset_s4(struct pci_dev *pdev)
10472 struct Scsi_Host *shost = pci_get_drvdata(pdev);
10473 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
10474 struct lpfc_sli *psli = &phba->sli;
10475 uint32_t intr_mode;
10477 dev_printk(KERN_INFO, &pdev->dev, "recovering from a slot reset.\n");
10478 if (pci_enable_device_mem(pdev)) {
10479 printk(KERN_ERR "lpfc: Cannot re-enable "
10480 "PCI device after reset.\n");
10481 return PCI_ERS_RESULT_DISCONNECT;
10484 pci_restore_state(pdev);
10487 * As the new kernel behavior of pci_restore_state() API call clears
10488 * device saved_state flag, need to save the restored state again.
10490 pci_save_state(pdev);
10492 if (pdev->is_busmaster)
10493 pci_set_master(pdev);
10495 spin_lock_irq(&phba->hbalock);
10496 psli->sli_flag &= ~LPFC_SLI_ACTIVE;
10497 spin_unlock_irq(&phba->hbalock);
10499 /* Configure and enable interrupt */
10500 intr_mode = lpfc_sli4_enable_intr(phba, phba->intr_mode);
10501 if (intr_mode == LPFC_INTR_ERROR) {
10502 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10503 "2824 Cannot re-enable interrupt after "
10504 "slot reset.\n");
10505 return PCI_ERS_RESULT_DISCONNECT;
10506 } else
10507 phba->intr_mode = intr_mode;
10509 /* Log the current active interrupt mode */
10510 lpfc_log_intr_mode(phba, phba->intr_mode);
10512 return PCI_ERS_RESULT_RECOVERED;
10516 * lpfc_io_resume_s4 - Method for resuming PCI I/O operation to SLI-4 device
10517 * @pdev: pointer to PCI device
10519 * This routine is called from the PCI subsystem for error handling to device
10520 * with SLI-4 interface spec. It is called when kernel error recovery tells
10521 * the lpfc driver that it is ok to resume normal PCI operation after PCI bus
10522 * error recovery. After this call, traffic can start to flow from this device
10523 * again.
10525 static void
10526 lpfc_io_resume_s4(struct pci_dev *pdev)
10528 struct Scsi_Host *shost = pci_get_drvdata(pdev);
10529 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
10532 * In case of slot reset, as function reset is performed through
10533 * mailbox command which needs DMA to be enabled, this operation
10534 * has to be moved to the io resume phase. Taking device offline
10535 * will perform the necessary cleanup.
10537 if (!(phba->sli.sli_flag & LPFC_SLI_ACTIVE)) {
10538 /* Perform device reset */
10539 lpfc_offline_prep(phba, LPFC_MBX_WAIT);
10540 lpfc_offline(phba);
10541 lpfc_sli_brdrestart(phba);
10542 /* Bring the device back online */
10543 lpfc_online(phba);
10546 /* Clean up Advanced Error Reporting (AER) if needed */
10547 if (phba->hba_flag & HBA_AER_ENABLED)
10548 pci_cleanup_aer_uncorrect_error_status(pdev);
10552 * lpfc_pci_probe_one - lpfc PCI probe func to reg dev to PCI subsystem
10553 * @pdev: pointer to PCI device
10554 * @pid: pointer to PCI device identifier
10556 * This routine is to be registered to the kernel's PCI subsystem. When an
10557 * Emulex HBA device is presented on PCI bus, the kernel PCI subsystem looks
10558 * at PCI device-specific information of the device and driver to see if the
10559 * driver state that it can support this kind of device. If the match is
10560 * successful, the driver core invokes this routine. This routine dispatches
10561 * the action to the proper SLI-3 or SLI-4 device probing routine, which will
10562 * do all the initialization that it needs to do to handle the HBA device
10563 * properly.
10565 * Return code
10566 * 0 - driver can claim the device
10567 * negative value - driver can not claim the device
10569 static int
10570 lpfc_pci_probe_one(struct pci_dev *pdev, const struct pci_device_id *pid)
10572 int rc;
10573 struct lpfc_sli_intf intf;
10575 if (pci_read_config_dword(pdev, LPFC_SLI_INTF, &intf.word0))
10576 return -ENODEV;
10578 if ((bf_get(lpfc_sli_intf_valid, &intf) == LPFC_SLI_INTF_VALID) &&
10579 (bf_get(lpfc_sli_intf_slirev, &intf) == LPFC_SLI_INTF_REV_SLI4))
10580 rc = lpfc_pci_probe_one_s4(pdev, pid);
10581 else
10582 rc = lpfc_pci_probe_one_s3(pdev, pid);
10584 return rc;
10588 * lpfc_pci_remove_one - lpfc PCI func to unreg dev from PCI subsystem
10589 * @pdev: pointer to PCI device
10591 * This routine is to be registered to the kernel's PCI subsystem. When an
10592 * Emulex HBA is removed from PCI bus, the driver core invokes this routine.
10593 * This routine dispatches the action to the proper SLI-3 or SLI-4 device
10594 * remove routine, which will perform all the necessary cleanup for the
10595 * device to be removed from the PCI subsystem properly.
10597 static void
10598 lpfc_pci_remove_one(struct pci_dev *pdev)
10600 struct Scsi_Host *shost = pci_get_drvdata(pdev);
10601 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
10603 switch (phba->pci_dev_grp) {
10604 case LPFC_PCI_DEV_LP:
10605 lpfc_pci_remove_one_s3(pdev);
10606 break;
10607 case LPFC_PCI_DEV_OC:
10608 lpfc_pci_remove_one_s4(pdev);
10609 break;
10610 default:
10611 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10612 "1424 Invalid PCI device group: 0x%x\n",
10613 phba->pci_dev_grp);
10614 break;
10616 return;
10620 * lpfc_pci_suspend_one - lpfc PCI func to suspend dev for power management
10621 * @pdev: pointer to PCI device
10622 * @msg: power management message
10624 * This routine is to be registered to the kernel's PCI subsystem to support
10625 * system Power Management (PM). When PM invokes this method, it dispatches
10626 * the action to the proper SLI-3 or SLI-4 device suspend routine, which will
10627 * suspend the device.
10629 * Return code
10630 * 0 - driver suspended the device
10631 * Error otherwise
10633 static int
10634 lpfc_pci_suspend_one(struct pci_dev *pdev, pm_message_t msg)
10636 struct Scsi_Host *shost = pci_get_drvdata(pdev);
10637 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
10638 int rc = -ENODEV;
10640 switch (phba->pci_dev_grp) {
10641 case LPFC_PCI_DEV_LP:
10642 rc = lpfc_pci_suspend_one_s3(pdev, msg);
10643 break;
10644 case LPFC_PCI_DEV_OC:
10645 rc = lpfc_pci_suspend_one_s4(pdev, msg);
10646 break;
10647 default:
10648 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10649 "1425 Invalid PCI device group: 0x%x\n",
10650 phba->pci_dev_grp);
10651 break;
10653 return rc;
10657 * lpfc_pci_resume_one - lpfc PCI func to resume dev for power management
10658 * @pdev: pointer to PCI device
10660 * This routine is to be registered to the kernel's PCI subsystem to support
10661 * system Power Management (PM). When PM invokes this method, it dispatches
10662 * the action to the proper SLI-3 or SLI-4 device resume routine, which will
10663 * resume the device.
10665 * Return code
10666 * 0 - driver suspended the device
10667 * Error otherwise
10669 static int
10670 lpfc_pci_resume_one(struct pci_dev *pdev)
10672 struct Scsi_Host *shost = pci_get_drvdata(pdev);
10673 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
10674 int rc = -ENODEV;
10676 switch (phba->pci_dev_grp) {
10677 case LPFC_PCI_DEV_LP:
10678 rc = lpfc_pci_resume_one_s3(pdev);
10679 break;
10680 case LPFC_PCI_DEV_OC:
10681 rc = lpfc_pci_resume_one_s4(pdev);
10682 break;
10683 default:
10684 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10685 "1426 Invalid PCI device group: 0x%x\n",
10686 phba->pci_dev_grp);
10687 break;
10689 return rc;
10693 * lpfc_io_error_detected - lpfc method for handling PCI I/O error
10694 * @pdev: pointer to PCI device.
10695 * @state: the current PCI connection state.
10697 * This routine is registered to the PCI subsystem for error handling. This
10698 * function is called by the PCI subsystem after a PCI bus error affecting
10699 * this device has been detected. When this routine is invoked, it dispatches
10700 * the action to the proper SLI-3 or SLI-4 device error detected handling
10701 * routine, which will perform the proper error detected operation.
10703 * Return codes
10704 * PCI_ERS_RESULT_NEED_RESET - need to reset before recovery
10705 * PCI_ERS_RESULT_DISCONNECT - device could not be recovered
10707 static pci_ers_result_t
10708 lpfc_io_error_detected(struct pci_dev *pdev, pci_channel_state_t state)
10710 struct Scsi_Host *shost = pci_get_drvdata(pdev);
10711 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
10712 pci_ers_result_t rc = PCI_ERS_RESULT_DISCONNECT;
10714 switch (phba->pci_dev_grp) {
10715 case LPFC_PCI_DEV_LP:
10716 rc = lpfc_io_error_detected_s3(pdev, state);
10717 break;
10718 case LPFC_PCI_DEV_OC:
10719 rc = lpfc_io_error_detected_s4(pdev, state);
10720 break;
10721 default:
10722 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10723 "1427 Invalid PCI device group: 0x%x\n",
10724 phba->pci_dev_grp);
10725 break;
10727 return rc;
10731 * lpfc_io_slot_reset - lpfc method for restart PCI dev from scratch
10732 * @pdev: pointer to PCI device.
10734 * This routine is registered to the PCI subsystem for error handling. This
10735 * function is called after PCI bus has been reset to restart the PCI card
10736 * from scratch, as if from a cold-boot. When this routine is invoked, it
10737 * dispatches the action to the proper SLI-3 or SLI-4 device reset handling
10738 * routine, which will perform the proper device reset.
10740 * Return codes
10741 * PCI_ERS_RESULT_RECOVERED - the device has been recovered
10742 * PCI_ERS_RESULT_DISCONNECT - device could not be recovered
10744 static pci_ers_result_t
10745 lpfc_io_slot_reset(struct pci_dev *pdev)
10747 struct Scsi_Host *shost = pci_get_drvdata(pdev);
10748 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
10749 pci_ers_result_t rc = PCI_ERS_RESULT_DISCONNECT;
10751 switch (phba->pci_dev_grp) {
10752 case LPFC_PCI_DEV_LP:
10753 rc = lpfc_io_slot_reset_s3(pdev);
10754 break;
10755 case LPFC_PCI_DEV_OC:
10756 rc = lpfc_io_slot_reset_s4(pdev);
10757 break;
10758 default:
10759 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10760 "1428 Invalid PCI device group: 0x%x\n",
10761 phba->pci_dev_grp);
10762 break;
10764 return rc;
10768 * lpfc_io_resume - lpfc method for resuming PCI I/O operation
10769 * @pdev: pointer to PCI device
10771 * This routine is registered to the PCI subsystem for error handling. It
10772 * is called when kernel error recovery tells the lpfc driver that it is
10773 * OK to resume normal PCI operation after PCI bus error recovery. When
10774 * this routine is invoked, it dispatches the action to the proper SLI-3
10775 * or SLI-4 device io_resume routine, which will resume the device operation.
10777 static void
10778 lpfc_io_resume(struct pci_dev *pdev)
10780 struct Scsi_Host *shost = pci_get_drvdata(pdev);
10781 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
10783 switch (phba->pci_dev_grp) {
10784 case LPFC_PCI_DEV_LP:
10785 lpfc_io_resume_s3(pdev);
10786 break;
10787 case LPFC_PCI_DEV_OC:
10788 lpfc_io_resume_s4(pdev);
10789 break;
10790 default:
10791 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10792 "1429 Invalid PCI device group: 0x%x\n",
10793 phba->pci_dev_grp);
10794 break;
10796 return;
10799 static struct pci_device_id lpfc_id_table[] = {
10800 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_VIPER,
10801 PCI_ANY_ID, PCI_ANY_ID, },
10802 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_FIREFLY,
10803 PCI_ANY_ID, PCI_ANY_ID, },
10804 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_THOR,
10805 PCI_ANY_ID, PCI_ANY_ID, },
10806 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_PEGASUS,
10807 PCI_ANY_ID, PCI_ANY_ID, },
10808 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_CENTAUR,
10809 PCI_ANY_ID, PCI_ANY_ID, },
10810 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_DRAGONFLY,
10811 PCI_ANY_ID, PCI_ANY_ID, },
10812 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_SUPERFLY,
10813 PCI_ANY_ID, PCI_ANY_ID, },
10814 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_RFLY,
10815 PCI_ANY_ID, PCI_ANY_ID, },
10816 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_PFLY,
10817 PCI_ANY_ID, PCI_ANY_ID, },
10818 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_NEPTUNE,
10819 PCI_ANY_ID, PCI_ANY_ID, },
10820 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_NEPTUNE_SCSP,
10821 PCI_ANY_ID, PCI_ANY_ID, },
10822 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_NEPTUNE_DCSP,
10823 PCI_ANY_ID, PCI_ANY_ID, },
10824 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_HELIOS,
10825 PCI_ANY_ID, PCI_ANY_ID, },
10826 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_HELIOS_SCSP,
10827 PCI_ANY_ID, PCI_ANY_ID, },
10828 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_HELIOS_DCSP,
10829 PCI_ANY_ID, PCI_ANY_ID, },
10830 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_BMID,
10831 PCI_ANY_ID, PCI_ANY_ID, },
10832 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_BSMB,
10833 PCI_ANY_ID, PCI_ANY_ID, },
10834 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_ZEPHYR,
10835 PCI_ANY_ID, PCI_ANY_ID, },
10836 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_HORNET,
10837 PCI_ANY_ID, PCI_ANY_ID, },
10838 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_ZEPHYR_SCSP,
10839 PCI_ANY_ID, PCI_ANY_ID, },
10840 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_ZEPHYR_DCSP,
10841 PCI_ANY_ID, PCI_ANY_ID, },
10842 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_ZMID,
10843 PCI_ANY_ID, PCI_ANY_ID, },
10844 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_ZSMB,
10845 PCI_ANY_ID, PCI_ANY_ID, },
10846 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_TFLY,
10847 PCI_ANY_ID, PCI_ANY_ID, },
10848 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_LP101,
10849 PCI_ANY_ID, PCI_ANY_ID, },
10850 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_LP10000S,
10851 PCI_ANY_ID, PCI_ANY_ID, },
10852 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_LP11000S,
10853 PCI_ANY_ID, PCI_ANY_ID, },
10854 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_LPE11000S,
10855 PCI_ANY_ID, PCI_ANY_ID, },
10856 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_SAT,
10857 PCI_ANY_ID, PCI_ANY_ID, },
10858 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_SAT_MID,
10859 PCI_ANY_ID, PCI_ANY_ID, },
10860 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_SAT_SMB,
10861 PCI_ANY_ID, PCI_ANY_ID, },
10862 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_SAT_DCSP,
10863 PCI_ANY_ID, PCI_ANY_ID, },
10864 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_SAT_SCSP,
10865 PCI_ANY_ID, PCI_ANY_ID, },
10866 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_SAT_S,
10867 PCI_ANY_ID, PCI_ANY_ID, },
10868 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_PROTEUS_VF,
10869 PCI_ANY_ID, PCI_ANY_ID, },
10870 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_PROTEUS_PF,
10871 PCI_ANY_ID, PCI_ANY_ID, },
10872 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_PROTEUS_S,
10873 PCI_ANY_ID, PCI_ANY_ID, },
10874 {PCI_VENDOR_ID_SERVERENGINE, PCI_DEVICE_ID_TIGERSHARK,
10875 PCI_ANY_ID, PCI_ANY_ID, },
10876 {PCI_VENDOR_ID_SERVERENGINE, PCI_DEVICE_ID_TOMCAT,
10877 PCI_ANY_ID, PCI_ANY_ID, },
10878 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_FALCON,
10879 PCI_ANY_ID, PCI_ANY_ID, },
10880 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_BALIUS,
10881 PCI_ANY_ID, PCI_ANY_ID, },
10882 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_LANCER_FC,
10883 PCI_ANY_ID, PCI_ANY_ID, },
10884 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_LANCER_FCOE,
10885 PCI_ANY_ID, PCI_ANY_ID, },
10886 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_LANCER_FC_VF,
10887 PCI_ANY_ID, PCI_ANY_ID, },
10888 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_LANCER_FCOE_VF,
10889 PCI_ANY_ID, PCI_ANY_ID, },
10890 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_SKYHAWK,
10891 PCI_ANY_ID, PCI_ANY_ID, },
10892 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_SKYHAWK_VF,
10893 PCI_ANY_ID, PCI_ANY_ID, },
10894 { 0 }
10897 MODULE_DEVICE_TABLE(pci, lpfc_id_table);
10899 static const struct pci_error_handlers lpfc_err_handler = {
10900 .error_detected = lpfc_io_error_detected,
10901 .slot_reset = lpfc_io_slot_reset,
10902 .resume = lpfc_io_resume,
10905 static struct pci_driver lpfc_driver = {
10906 .name = LPFC_DRIVER_NAME,
10907 .id_table = lpfc_id_table,
10908 .probe = lpfc_pci_probe_one,
10909 .remove = lpfc_pci_remove_one,
10910 .suspend = lpfc_pci_suspend_one,
10911 .resume = lpfc_pci_resume_one,
10912 .err_handler = &lpfc_err_handler,
10915 static const struct file_operations lpfc_mgmt_fop = {
10916 .owner = THIS_MODULE,
10919 static struct miscdevice lpfc_mgmt_dev = {
10920 .minor = MISC_DYNAMIC_MINOR,
10921 .name = "lpfcmgmt",
10922 .fops = &lpfc_mgmt_fop,
10926 * lpfc_init - lpfc module initialization routine
10928 * This routine is to be invoked when the lpfc module is loaded into the
10929 * kernel. The special kernel macro module_init() is used to indicate the
10930 * role of this routine to the kernel as lpfc module entry point.
10932 * Return codes
10933 * 0 - successful
10934 * -ENOMEM - FC attach transport failed
10935 * all others - failed
10937 static int __init
10938 lpfc_init(void)
10940 int cpu;
10941 int error = 0;
10943 printk(LPFC_MODULE_DESC "\n");
10944 printk(LPFC_COPYRIGHT "\n");
10946 error = misc_register(&lpfc_mgmt_dev);
10947 if (error)
10948 printk(KERN_ERR "Could not register lpfcmgmt device, "
10949 "misc_register returned with status %d", error);
10951 if (lpfc_enable_npiv) {
10952 lpfc_transport_functions.vport_create = lpfc_vport_create;
10953 lpfc_transport_functions.vport_delete = lpfc_vport_delete;
10955 lpfc_transport_template =
10956 fc_attach_transport(&lpfc_transport_functions);
10957 if (lpfc_transport_template == NULL)
10958 return -ENOMEM;
10959 if (lpfc_enable_npiv) {
10960 lpfc_vport_transport_template =
10961 fc_attach_transport(&lpfc_vport_transport_functions);
10962 if (lpfc_vport_transport_template == NULL) {
10963 fc_release_transport(lpfc_transport_template);
10964 return -ENOMEM;
10968 /* Initialize in case vector mapping is needed */
10969 lpfc_used_cpu = NULL;
10970 lpfc_present_cpu = 0;
10971 for_each_present_cpu(cpu)
10972 lpfc_present_cpu++;
10974 error = pci_register_driver(&lpfc_driver);
10975 if (error) {
10976 fc_release_transport(lpfc_transport_template);
10977 if (lpfc_enable_npiv)
10978 fc_release_transport(lpfc_vport_transport_template);
10981 return error;
10985 * lpfc_exit - lpfc module removal routine
10987 * This routine is invoked when the lpfc module is removed from the kernel.
10988 * The special kernel macro module_exit() is used to indicate the role of
10989 * this routine to the kernel as lpfc module exit point.
10991 static void __exit
10992 lpfc_exit(void)
10994 misc_deregister(&lpfc_mgmt_dev);
10995 pci_unregister_driver(&lpfc_driver);
10996 fc_release_transport(lpfc_transport_template);
10997 if (lpfc_enable_npiv)
10998 fc_release_transport(lpfc_vport_transport_template);
10999 if (_dump_buf_data) {
11000 printk(KERN_ERR "9062 BLKGRD: freeing %lu pages for "
11001 "_dump_buf_data at 0x%p\n",
11002 (1L << _dump_buf_data_order), _dump_buf_data);
11003 free_pages((unsigned long)_dump_buf_data, _dump_buf_data_order);
11006 if (_dump_buf_dif) {
11007 printk(KERN_ERR "9049 BLKGRD: freeing %lu pages for "
11008 "_dump_buf_dif at 0x%p\n",
11009 (1L << _dump_buf_dif_order), _dump_buf_dif);
11010 free_pages((unsigned long)_dump_buf_dif, _dump_buf_dif_order);
11012 kfree(lpfc_used_cpu);
11015 module_init(lpfc_init);
11016 module_exit(lpfc_exit);
11017 MODULE_LICENSE("GPL");
11018 MODULE_DESCRIPTION(LPFC_MODULE_DESC);
11019 MODULE_AUTHOR("Emulex Corporation - tech.support@emulex.com");
11020 MODULE_VERSION("0:" LPFC_DRIVER_VERSION);