1 /*******************************************************************
2 * This file is part of the Emulex Linux Device Driver for *
3 * Fibre Channel Host Bus Adapters. *
4 * Copyright (C) 2004-2009 Emulex. All rights reserved. *
5 * EMULEX and SLI are trademarks of Emulex. *
7 * Portions Copyright (C) 2004-2005 Christoph Hellwig *
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/kthread.h>
28 #include <linux/pci.h>
29 #include <linux/spinlock.h>
30 #include <linux/ctype.h>
32 #include <scsi/scsi.h>
33 #include <scsi/scsi_device.h>
34 #include <scsi/scsi_host.h>
35 #include <scsi/scsi_transport_fc.h>
40 #include "lpfc_sli4.h"
42 #include "lpfc_disc.h"
43 #include "lpfc_scsi.h"
45 #include "lpfc_logmsg.h"
46 #include "lpfc_crtn.h"
47 #include "lpfc_vport.h"
48 #include "lpfc_version.h"
51 unsigned long _dump_buf_data_order
;
53 unsigned long _dump_buf_dif_order
;
54 spinlock_t _dump_buf_lock
;
56 static void lpfc_get_hba_model_desc(struct lpfc_hba
*, uint8_t *, uint8_t *);
57 static int lpfc_post_rcv_buf(struct lpfc_hba
*);
58 static int lpfc_sli4_queue_create(struct lpfc_hba
*);
59 static void lpfc_sli4_queue_destroy(struct lpfc_hba
*);
60 static int lpfc_create_bootstrap_mbox(struct lpfc_hba
*);
61 static int lpfc_setup_endian_order(struct lpfc_hba
*);
62 static int lpfc_sli4_read_config(struct lpfc_hba
*);
63 static void lpfc_destroy_bootstrap_mbox(struct lpfc_hba
*);
64 static void lpfc_free_sgl_list(struct lpfc_hba
*);
65 static int lpfc_init_sgl_list(struct lpfc_hba
*);
66 static int lpfc_init_active_sgl_array(struct lpfc_hba
*);
67 static void lpfc_free_active_sgl(struct lpfc_hba
*);
68 static int lpfc_hba_down_post_s3(struct lpfc_hba
*phba
);
69 static int lpfc_hba_down_post_s4(struct lpfc_hba
*phba
);
70 static int lpfc_sli4_cq_event_pool_create(struct lpfc_hba
*);
71 static void lpfc_sli4_cq_event_pool_destroy(struct lpfc_hba
*);
72 static void lpfc_sli4_cq_event_release_all(struct lpfc_hba
*);
74 static struct scsi_transport_template
*lpfc_transport_template
= NULL
;
75 static struct scsi_transport_template
*lpfc_vport_transport_template
= NULL
;
76 static DEFINE_IDR(lpfc_hba_index
);
79 * lpfc_config_port_prep - Perform lpfc initialization prior to config port
80 * @phba: pointer to lpfc hba data structure.
82 * This routine will do LPFC initialization prior to issuing the CONFIG_PORT
83 * mailbox command. It retrieves the revision information from the HBA and
84 * collects the Vital Product Data (VPD) about the HBA for preparing the
85 * configuration of the HBA.
89 * -ERESTART - requests the SLI layer to reset the HBA and try again.
90 * Any other value - indicates an error.
93 lpfc_config_port_prep(struct lpfc_hba
*phba
)
95 lpfc_vpd_t
*vp
= &phba
->vpd
;
99 char *lpfc_vpd_data
= NULL
;
101 static char licensed
[56] =
102 "key unlock for use with gnu public licensed code only\0";
103 static int init_key
= 1;
105 pmb
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
107 phba
->link_state
= LPFC_HBA_ERROR
;
112 phba
->link_state
= LPFC_INIT_MBX_CMDS
;
114 if (lpfc_is_LC_HBA(phba
->pcidev
->device
)) {
116 uint32_t *ptext
= (uint32_t *) licensed
;
118 for (i
= 0; i
< 56; i
+= sizeof (uint32_t), ptext
++)
119 *ptext
= cpu_to_be32(*ptext
);
123 lpfc_read_nv(phba
, pmb
);
124 memset((char*)mb
->un
.varRDnvp
.rsvd3
, 0,
125 sizeof (mb
->un
.varRDnvp
.rsvd3
));
126 memcpy((char*)mb
->un
.varRDnvp
.rsvd3
, licensed
,
129 rc
= lpfc_sli_issue_mbox(phba
, pmb
, MBX_POLL
);
131 if (rc
!= MBX_SUCCESS
) {
132 lpfc_printf_log(phba
, KERN_ERR
, LOG_MBOX
,
133 "0324 Config Port initialization "
134 "error, mbxCmd x%x READ_NVPARM, "
136 mb
->mbxCommand
, mb
->mbxStatus
);
137 mempool_free(pmb
, phba
->mbox_mem_pool
);
140 memcpy(phba
->wwnn
, (char *)mb
->un
.varRDnvp
.nodename
,
142 memcpy(phba
->wwpn
, (char *)mb
->un
.varRDnvp
.portname
,
146 phba
->sli3_options
= 0x0;
148 /* Setup and issue mailbox READ REV command */
149 lpfc_read_rev(phba
, pmb
);
150 rc
= lpfc_sli_issue_mbox(phba
, pmb
, MBX_POLL
);
151 if (rc
!= MBX_SUCCESS
) {
152 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
153 "0439 Adapter failed to init, mbxCmd x%x "
154 "READ_REV, mbxStatus x%x\n",
155 mb
->mbxCommand
, mb
->mbxStatus
);
156 mempool_free( pmb
, phba
->mbox_mem_pool
);
162 * The value of rr must be 1 since the driver set the cv field to 1.
163 * This setting requires the FW to set all revision fields.
165 if (mb
->un
.varRdRev
.rr
== 0) {
167 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
168 "0440 Adapter failed to init, READ_REV has "
169 "missing revision information.\n");
170 mempool_free(pmb
, phba
->mbox_mem_pool
);
174 if (phba
->sli_rev
== 3 && !mb
->un
.varRdRev
.v3rsp
) {
175 mempool_free(pmb
, phba
->mbox_mem_pool
);
179 /* Save information as VPD data */
181 memcpy(&vp
->sli3Feat
, &mb
->un
.varRdRev
.sli3Feat
, sizeof(uint32_t));
182 vp
->rev
.sli1FwRev
= mb
->un
.varRdRev
.sli1FwRev
;
183 memcpy(vp
->rev
.sli1FwName
, (char*) mb
->un
.varRdRev
.sli1FwName
, 16);
184 vp
->rev
.sli2FwRev
= mb
->un
.varRdRev
.sli2FwRev
;
185 memcpy(vp
->rev
.sli2FwName
, (char *) mb
->un
.varRdRev
.sli2FwName
, 16);
186 vp
->rev
.biuRev
= mb
->un
.varRdRev
.biuRev
;
187 vp
->rev
.smRev
= mb
->un
.varRdRev
.smRev
;
188 vp
->rev
.smFwRev
= mb
->un
.varRdRev
.un
.smFwRev
;
189 vp
->rev
.endecRev
= mb
->un
.varRdRev
.endecRev
;
190 vp
->rev
.fcphHigh
= mb
->un
.varRdRev
.fcphHigh
;
191 vp
->rev
.fcphLow
= mb
->un
.varRdRev
.fcphLow
;
192 vp
->rev
.feaLevelHigh
= mb
->un
.varRdRev
.feaLevelHigh
;
193 vp
->rev
.feaLevelLow
= mb
->un
.varRdRev
.feaLevelLow
;
194 vp
->rev
.postKernRev
= mb
->un
.varRdRev
.postKernRev
;
195 vp
->rev
.opFwRev
= mb
->un
.varRdRev
.opFwRev
;
197 /* If the sli feature level is less then 9, we must
198 * tear down all RPIs and VPIs on link down if NPIV
201 if (vp
->rev
.feaLevelHigh
< 9)
202 phba
->sli3_options
|= LPFC_SLI3_VPORT_TEARDOWN
;
204 if (lpfc_is_LC_HBA(phba
->pcidev
->device
))
205 memcpy(phba
->RandomData
, (char *)&mb
->un
.varWords
[24],
206 sizeof (phba
->RandomData
));
208 /* Get adapter VPD information */
209 lpfc_vpd_data
= kmalloc(DMP_VPD_SIZE
, GFP_KERNEL
);
214 lpfc_dump_mem(phba
, pmb
, offset
);
215 rc
= lpfc_sli_issue_mbox(phba
, pmb
, MBX_POLL
);
217 if (rc
!= MBX_SUCCESS
) {
218 lpfc_printf_log(phba
, KERN_INFO
, LOG_INIT
,
219 "0441 VPD not present on adapter, "
220 "mbxCmd x%x DUMP VPD, mbxStatus x%x\n",
221 mb
->mbxCommand
, mb
->mbxStatus
);
222 mb
->un
.varDmp
.word_cnt
= 0;
224 /* dump mem may return a zero when finished or we got a
225 * mailbox error, either way we are done.
227 if (mb
->un
.varDmp
.word_cnt
== 0)
229 if (mb
->un
.varDmp
.word_cnt
> DMP_VPD_SIZE
- offset
)
230 mb
->un
.varDmp
.word_cnt
= DMP_VPD_SIZE
- offset
;
231 lpfc_sli_pcimem_bcopy(((uint8_t *)mb
) + DMP_RSP_OFFSET
,
232 lpfc_vpd_data
+ offset
,
233 mb
->un
.varDmp
.word_cnt
);
234 offset
+= mb
->un
.varDmp
.word_cnt
;
235 } while (mb
->un
.varDmp
.word_cnt
&& offset
< DMP_VPD_SIZE
);
236 lpfc_parse_vpd(phba
, lpfc_vpd_data
, offset
);
238 kfree(lpfc_vpd_data
);
240 mempool_free(pmb
, phba
->mbox_mem_pool
);
245 * lpfc_config_async_cmpl - Completion handler for config async event mbox cmd
246 * @phba: pointer to lpfc hba data structure.
247 * @pmboxq: pointer to the driver internal queue element for mailbox command.
249 * This is the completion handler for driver's configuring asynchronous event
250 * mailbox command to the device. If the mailbox command returns successfully,
251 * it will set internal async event support flag to 1; otherwise, it will
252 * set internal async event support flag to 0.
255 lpfc_config_async_cmpl(struct lpfc_hba
* phba
, LPFC_MBOXQ_t
* pmboxq
)
257 if (pmboxq
->u
.mb
.mbxStatus
== MBX_SUCCESS
)
258 phba
->temp_sensor_support
= 1;
260 phba
->temp_sensor_support
= 0;
261 mempool_free(pmboxq
, phba
->mbox_mem_pool
);
266 * lpfc_dump_wakeup_param_cmpl - dump memory mailbox command completion handler
267 * @phba: pointer to lpfc hba data structure.
268 * @pmboxq: pointer to the driver internal queue element for mailbox command.
270 * This is the completion handler for dump mailbox command for getting
271 * wake up parameters. When this command complete, the response contain
272 * Option rom version of the HBA. This function translate the version number
273 * into a human readable string and store it in OptionROMVersion.
276 lpfc_dump_wakeup_param_cmpl(struct lpfc_hba
*phba
, LPFC_MBOXQ_t
*pmboxq
)
279 uint32_t prog_id_word
;
281 /* character array used for decoding dist type. */
282 char dist_char
[] = "nabx";
284 if (pmboxq
->u
.mb
.mbxStatus
!= MBX_SUCCESS
) {
285 mempool_free(pmboxq
, phba
->mbox_mem_pool
);
289 prg
= (struct prog_id
*) &prog_id_word
;
291 /* word 7 contain option rom version */
292 prog_id_word
= pmboxq
->u
.mb
.un
.varWords
[7];
294 /* Decode the Option rom version word to a readable string */
296 dist
= dist_char
[prg
->dist
];
298 if ((prg
->dist
== 3) && (prg
->num
== 0))
299 sprintf(phba
->OptionROMVersion
, "%d.%d%d",
300 prg
->ver
, prg
->rev
, prg
->lev
);
302 sprintf(phba
->OptionROMVersion
, "%d.%d%d%c%d",
303 prg
->ver
, prg
->rev
, prg
->lev
,
305 mempool_free(pmboxq
, phba
->mbox_mem_pool
);
310 * lpfc_config_port_post - Perform lpfc initialization after config port
311 * @phba: pointer to lpfc hba data structure.
313 * This routine will do LPFC initialization after the CONFIG_PORT mailbox
314 * command call. It performs all internal resource and state setups on the
315 * port: post IOCB buffers, enable appropriate host interrupt attentions,
316 * ELS ring timers, etc.
320 * Any other value - error.
323 lpfc_config_port_post(struct lpfc_hba
*phba
)
325 struct lpfc_vport
*vport
= phba
->pport
;
326 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
329 struct lpfc_dmabuf
*mp
;
330 struct lpfc_sli
*psli
= &phba
->sli
;
331 uint32_t status
, timeout
;
335 spin_lock_irq(&phba
->hbalock
);
337 * If the Config port completed correctly the HBA is not
338 * over heated any more.
340 if (phba
->over_temp_state
== HBA_OVER_TEMP
)
341 phba
->over_temp_state
= HBA_NORMAL_TEMP
;
342 spin_unlock_irq(&phba
->hbalock
);
344 pmb
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
346 phba
->link_state
= LPFC_HBA_ERROR
;
351 /* Get login parameters for NID. */
352 lpfc_read_sparam(phba
, pmb
, 0);
354 if (lpfc_sli_issue_mbox(phba
, pmb
, MBX_POLL
) != MBX_SUCCESS
) {
355 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
356 "0448 Adapter failed init, mbxCmd x%x "
357 "READ_SPARM mbxStatus x%x\n",
358 mb
->mbxCommand
, mb
->mbxStatus
);
359 phba
->link_state
= LPFC_HBA_ERROR
;
360 mp
= (struct lpfc_dmabuf
*) pmb
->context1
;
361 mempool_free( pmb
, phba
->mbox_mem_pool
);
362 lpfc_mbuf_free(phba
, mp
->virt
, mp
->phys
);
367 mp
= (struct lpfc_dmabuf
*) pmb
->context1
;
369 memcpy(&vport
->fc_sparam
, mp
->virt
, sizeof (struct serv_parm
));
370 lpfc_mbuf_free(phba
, mp
->virt
, mp
->phys
);
372 pmb
->context1
= NULL
;
374 if (phba
->cfg_soft_wwnn
)
375 u64_to_wwn(phba
->cfg_soft_wwnn
,
376 vport
->fc_sparam
.nodeName
.u
.wwn
);
377 if (phba
->cfg_soft_wwpn
)
378 u64_to_wwn(phba
->cfg_soft_wwpn
,
379 vport
->fc_sparam
.portName
.u
.wwn
);
380 memcpy(&vport
->fc_nodename
, &vport
->fc_sparam
.nodeName
,
381 sizeof (struct lpfc_name
));
382 memcpy(&vport
->fc_portname
, &vport
->fc_sparam
.portName
,
383 sizeof (struct lpfc_name
));
385 /* Update the fc_host data structures with new wwn. */
386 fc_host_node_name(shost
) = wwn_to_u64(vport
->fc_nodename
.u
.wwn
);
387 fc_host_port_name(shost
) = wwn_to_u64(vport
->fc_portname
.u
.wwn
);
388 fc_host_max_npiv_vports(shost
) = phba
->max_vpi
;
390 /* If no serial number in VPD data, use low 6 bytes of WWNN */
391 /* This should be consolidated into parse_vpd ? - mr */
392 if (phba
->SerialNumber
[0] == 0) {
395 outptr
= &vport
->fc_nodename
.u
.s
.IEEE
[0];
396 for (i
= 0; i
< 12; i
++) {
398 j
= ((status
& 0xf0) >> 4);
400 phba
->SerialNumber
[i
] =
401 (char)((uint8_t) 0x30 + (uint8_t) j
);
403 phba
->SerialNumber
[i
] =
404 (char)((uint8_t) 0x61 + (uint8_t) (j
- 10));
408 phba
->SerialNumber
[i
] =
409 (char)((uint8_t) 0x30 + (uint8_t) j
);
411 phba
->SerialNumber
[i
] =
412 (char)((uint8_t) 0x61 + (uint8_t) (j
- 10));
416 lpfc_read_config(phba
, pmb
);
418 if (lpfc_sli_issue_mbox(phba
, pmb
, MBX_POLL
) != MBX_SUCCESS
) {
419 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
420 "0453 Adapter failed to init, mbxCmd x%x "
421 "READ_CONFIG, mbxStatus x%x\n",
422 mb
->mbxCommand
, mb
->mbxStatus
);
423 phba
->link_state
= LPFC_HBA_ERROR
;
424 mempool_free( pmb
, phba
->mbox_mem_pool
);
428 /* Reset the DFT_HBA_Q_DEPTH to the max xri */
429 if (phba
->cfg_hba_queue_depth
> (mb
->un
.varRdConfig
.max_xri
+1))
430 phba
->cfg_hba_queue_depth
=
431 (mb
->un
.varRdConfig
.max_xri
+ 1) -
432 lpfc_sli4_get_els_iocb_cnt(phba
);
434 phba
->lmt
= mb
->un
.varRdConfig
.lmt
;
436 /* Get the default values for Model Name and Description */
437 lpfc_get_hba_model_desc(phba
, phba
->ModelName
, phba
->ModelDesc
);
439 if ((phba
->cfg_link_speed
> LINK_SPEED_10G
)
440 || ((phba
->cfg_link_speed
== LINK_SPEED_1G
)
441 && !(phba
->lmt
& LMT_1Gb
))
442 || ((phba
->cfg_link_speed
== LINK_SPEED_2G
)
443 && !(phba
->lmt
& LMT_2Gb
))
444 || ((phba
->cfg_link_speed
== LINK_SPEED_4G
)
445 && !(phba
->lmt
& LMT_4Gb
))
446 || ((phba
->cfg_link_speed
== LINK_SPEED_8G
)
447 && !(phba
->lmt
& LMT_8Gb
))
448 || ((phba
->cfg_link_speed
== LINK_SPEED_10G
)
449 && !(phba
->lmt
& LMT_10Gb
))) {
450 /* Reset link speed to auto */
451 lpfc_printf_log(phba
, KERN_WARNING
, LOG_LINK_EVENT
,
452 "1302 Invalid speed for this board: "
453 "Reset link speed to auto: x%x\n",
454 phba
->cfg_link_speed
);
455 phba
->cfg_link_speed
= LINK_SPEED_AUTO
;
458 phba
->link_state
= LPFC_LINK_DOWN
;
460 /* Only process IOCBs on ELS ring till hba_state is READY */
461 if (psli
->ring
[psli
->extra_ring
].cmdringaddr
)
462 psli
->ring
[psli
->extra_ring
].flag
|= LPFC_STOP_IOCB_EVENT
;
463 if (psli
->ring
[psli
->fcp_ring
].cmdringaddr
)
464 psli
->ring
[psli
->fcp_ring
].flag
|= LPFC_STOP_IOCB_EVENT
;
465 if (psli
->ring
[psli
->next_ring
].cmdringaddr
)
466 psli
->ring
[psli
->next_ring
].flag
|= LPFC_STOP_IOCB_EVENT
;
468 /* Post receive buffers for desired rings */
469 if (phba
->sli_rev
!= 3)
470 lpfc_post_rcv_buf(phba
);
473 * Configure HBA MSI-X attention conditions to messages if MSI-X mode
475 if (phba
->intr_type
== MSIX
) {
476 rc
= lpfc_config_msi(phba
, pmb
);
478 mempool_free(pmb
, phba
->mbox_mem_pool
);
481 rc
= lpfc_sli_issue_mbox(phba
, pmb
, MBX_POLL
);
482 if (rc
!= MBX_SUCCESS
) {
483 lpfc_printf_log(phba
, KERN_ERR
, LOG_MBOX
,
484 "0352 Config MSI mailbox command "
485 "failed, mbxCmd x%x, mbxStatus x%x\n",
486 pmb
->u
.mb
.mbxCommand
,
487 pmb
->u
.mb
.mbxStatus
);
488 mempool_free(pmb
, phba
->mbox_mem_pool
);
493 spin_lock_irq(&phba
->hbalock
);
494 /* Initialize ERATT handling flag */
495 phba
->hba_flag
&= ~HBA_ERATT_HANDLED
;
497 /* Enable appropriate host interrupts */
498 status
= readl(phba
->HCregaddr
);
499 status
|= HC_MBINT_ENA
| HC_ERINT_ENA
| HC_LAINT_ENA
;
500 if (psli
->num_rings
> 0)
501 status
|= HC_R0INT_ENA
;
502 if (psli
->num_rings
> 1)
503 status
|= HC_R1INT_ENA
;
504 if (psli
->num_rings
> 2)
505 status
|= HC_R2INT_ENA
;
506 if (psli
->num_rings
> 3)
507 status
|= HC_R3INT_ENA
;
509 if ((phba
->cfg_poll
& ENABLE_FCP_RING_POLLING
) &&
510 (phba
->cfg_poll
& DISABLE_FCP_RING_INT
))
511 status
&= ~(HC_R0INT_ENA
);
513 writel(status
, phba
->HCregaddr
);
514 readl(phba
->HCregaddr
); /* flush */
515 spin_unlock_irq(&phba
->hbalock
);
517 /* Set up ring-0 (ELS) timer */
518 timeout
= phba
->fc_ratov
* 2;
519 mod_timer(&vport
->els_tmofunc
, jiffies
+ HZ
* timeout
);
520 /* Set up heart beat (HB) timer */
521 mod_timer(&phba
->hb_tmofunc
, jiffies
+ HZ
* LPFC_HB_MBOX_INTERVAL
);
522 phba
->hb_outstanding
= 0;
523 phba
->last_completion_time
= jiffies
;
524 /* Set up error attention (ERATT) polling timer */
525 mod_timer(&phba
->eratt_poll
, jiffies
+ HZ
* LPFC_ERATT_POLL_INTERVAL
);
527 lpfc_init_link(phba
, pmb
, phba
->cfg_topology
, phba
->cfg_link_speed
);
528 pmb
->mbox_cmpl
= lpfc_sli_def_mbox_cmpl
;
529 lpfc_set_loopback_flag(phba
);
530 rc
= lpfc_sli_issue_mbox(phba
, pmb
, MBX_NOWAIT
);
531 if (rc
!= MBX_SUCCESS
) {
532 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
533 "0454 Adapter failed to init, mbxCmd x%x "
534 "INIT_LINK, mbxStatus x%x\n",
535 mb
->mbxCommand
, mb
->mbxStatus
);
537 /* Clear all interrupt enable conditions */
538 writel(0, phba
->HCregaddr
);
539 readl(phba
->HCregaddr
); /* flush */
540 /* Clear all pending interrupts */
541 writel(0xffffffff, phba
->HAregaddr
);
542 readl(phba
->HAregaddr
); /* flush */
544 phba
->link_state
= LPFC_HBA_ERROR
;
546 mempool_free(pmb
, phba
->mbox_mem_pool
);
549 /* MBOX buffer will be freed in mbox compl */
550 pmb
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
551 lpfc_config_async(phba
, pmb
, LPFC_ELS_RING
);
552 pmb
->mbox_cmpl
= lpfc_config_async_cmpl
;
553 pmb
->vport
= phba
->pport
;
554 rc
= lpfc_sli_issue_mbox(phba
, pmb
, MBX_NOWAIT
);
556 if ((rc
!= MBX_BUSY
) && (rc
!= MBX_SUCCESS
)) {
557 lpfc_printf_log(phba
,
560 "0456 Adapter failed to issue "
561 "ASYNCEVT_ENABLE mbox status x%x \n.",
563 mempool_free(pmb
, phba
->mbox_mem_pool
);
566 /* Get Option rom version */
567 pmb
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
568 lpfc_dump_wakeup_param(phba
, pmb
);
569 pmb
->mbox_cmpl
= lpfc_dump_wakeup_param_cmpl
;
570 pmb
->vport
= phba
->pport
;
571 rc
= lpfc_sli_issue_mbox(phba
, pmb
, MBX_NOWAIT
);
573 if ((rc
!= MBX_BUSY
) && (rc
!= MBX_SUCCESS
)) {
574 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
, "0435 Adapter failed "
575 "to get Option ROM version status x%x\n.", rc
);
576 mempool_free(pmb
, phba
->mbox_mem_pool
);
583 * lpfc_hba_down_prep - Perform lpfc uninitialization prior to HBA reset
584 * @phba: pointer to lpfc HBA data structure.
586 * This routine will do LPFC uninitialization before the HBA is reset when
587 * bringing down the SLI Layer.
591 * Any other value - error.
594 lpfc_hba_down_prep(struct lpfc_hba
*phba
)
596 struct lpfc_vport
**vports
;
599 if (phba
->sli_rev
<= LPFC_SLI_REV3
) {
600 /* Disable interrupts */
601 writel(0, phba
->HCregaddr
);
602 readl(phba
->HCregaddr
); /* flush */
605 if (phba
->pport
->load_flag
& FC_UNLOADING
)
606 lpfc_cleanup_discovery_resources(phba
->pport
);
608 vports
= lpfc_create_vport_work_array(phba
);
610 for (i
= 0; i
<= phba
->max_vports
&&
611 vports
[i
] != NULL
; i
++)
612 lpfc_cleanup_discovery_resources(vports
[i
]);
613 lpfc_destroy_vport_work_array(phba
, vports
);
619 * lpfc_hba_down_post_s3 - Perform lpfc uninitialization after HBA reset
620 * @phba: pointer to lpfc HBA data structure.
622 * This routine will do uninitialization after the HBA is reset when bring
623 * down the SLI Layer.
627 * Any other value - error.
630 lpfc_hba_down_post_s3(struct lpfc_hba
*phba
)
632 struct lpfc_sli
*psli
= &phba
->sli
;
633 struct lpfc_sli_ring
*pring
;
634 struct lpfc_dmabuf
*mp
, *next_mp
;
635 LIST_HEAD(completions
);
638 if (phba
->sli3_options
& LPFC_SLI3_HBQ_ENABLED
)
639 lpfc_sli_hbqbuf_free_all(phba
);
641 /* Cleanup preposted buffers on the ELS ring */
642 pring
= &psli
->ring
[LPFC_ELS_RING
];
643 list_for_each_entry_safe(mp
, next_mp
, &pring
->postbufq
, list
) {
645 pring
->postbufq_cnt
--;
646 lpfc_mbuf_free(phba
, mp
->virt
, mp
->phys
);
651 spin_lock_irq(&phba
->hbalock
);
652 for (i
= 0; i
< psli
->num_rings
; i
++) {
653 pring
= &psli
->ring
[i
];
655 /* At this point in time the HBA is either reset or DOA. Either
656 * way, nothing should be on txcmplq as it will NEVER complete.
658 list_splice_init(&pring
->txcmplq
, &completions
);
659 pring
->txcmplq_cnt
= 0;
660 spin_unlock_irq(&phba
->hbalock
);
662 /* Cancel all the IOCBs from the completions list */
663 lpfc_sli_cancel_iocbs(phba
, &completions
, IOSTAT_LOCAL_REJECT
,
666 lpfc_sli_abort_iocb_ring(phba
, pring
);
667 spin_lock_irq(&phba
->hbalock
);
669 spin_unlock_irq(&phba
->hbalock
);
674 * lpfc_hba_down_post_s4 - Perform lpfc uninitialization after HBA reset
675 * @phba: pointer to lpfc HBA data structure.
677 * This routine will do uninitialization after the HBA is reset when bring
678 * down the SLI Layer.
682 * Any other value - error.
685 lpfc_hba_down_post_s4(struct lpfc_hba
*phba
)
687 struct lpfc_scsi_buf
*psb
, *psb_next
;
690 unsigned long iflag
= 0;
691 ret
= lpfc_hba_down_post_s3(phba
);
694 /* At this point in time the HBA is either reset or DOA. Either
695 * way, nothing should be on lpfc_abts_els_sgl_list, it needs to be
696 * on the lpfc_sgl_list so that it can either be freed if the
697 * driver is unloading or reposted if the driver is restarting
700 spin_lock_irq(&phba
->hbalock
); /* required for lpfc_sgl_list and */
702 /* abts_sgl_list_lock required because worker thread uses this
705 spin_lock(&phba
->sli4_hba
.abts_sgl_list_lock
);
706 list_splice_init(&phba
->sli4_hba
.lpfc_abts_els_sgl_list
,
707 &phba
->sli4_hba
.lpfc_sgl_list
);
708 spin_unlock(&phba
->sli4_hba
.abts_sgl_list_lock
);
709 /* abts_scsi_buf_list_lock required because worker thread uses this
712 spin_lock(&phba
->sli4_hba
.abts_scsi_buf_list_lock
);
713 list_splice_init(&phba
->sli4_hba
.lpfc_abts_scsi_buf_list
,
715 spin_unlock(&phba
->sli4_hba
.abts_scsi_buf_list_lock
);
716 spin_unlock_irq(&phba
->hbalock
);
718 list_for_each_entry_safe(psb
, psb_next
, &aborts
, list
) {
720 psb
->status
= IOSTAT_SUCCESS
;
722 spin_lock_irqsave(&phba
->scsi_buf_list_lock
, iflag
);
723 list_splice(&aborts
, &phba
->lpfc_scsi_buf_list
);
724 spin_unlock_irqrestore(&phba
->scsi_buf_list_lock
, iflag
);
729 * lpfc_hba_down_post - Wrapper func for hba down post routine
730 * @phba: pointer to lpfc HBA data structure.
732 * This routine wraps the actual SLI3 or SLI4 routine for performing
733 * uninitialization after the HBA is reset when bring down the SLI Layer.
737 * Any other value - error.
740 lpfc_hba_down_post(struct lpfc_hba
*phba
)
742 return (*phba
->lpfc_hba_down_post
)(phba
);
746 * lpfc_hb_timeout - The HBA-timer timeout handler
747 * @ptr: unsigned long holds the pointer to lpfc hba data structure.
749 * This is the HBA-timer timeout handler registered to the lpfc driver. When
750 * this timer fires, a HBA timeout event shall be posted to the lpfc driver
751 * work-port-events bitmap and the worker thread is notified. This timeout
752 * event will be used by the worker thread to invoke the actual timeout
753 * handler routine, lpfc_hb_timeout_handler. Any periodical operations will
754 * be performed in the timeout handler and the HBA timeout event bit shall
755 * be cleared by the worker thread after it has taken the event bitmap out.
758 lpfc_hb_timeout(unsigned long ptr
)
760 struct lpfc_hba
*phba
;
764 phba
= (struct lpfc_hba
*)ptr
;
766 /* Check for heart beat timeout conditions */
767 spin_lock_irqsave(&phba
->pport
->work_port_lock
, iflag
);
768 tmo_posted
= phba
->pport
->work_port_events
& WORKER_HB_TMO
;
770 phba
->pport
->work_port_events
|= WORKER_HB_TMO
;
771 spin_unlock_irqrestore(&phba
->pport
->work_port_lock
, iflag
);
773 /* Tell the worker thread there is work to do */
775 lpfc_worker_wake_up(phba
);
780 * lpfc_hb_mbox_cmpl - The lpfc heart-beat mailbox command callback function
781 * @phba: pointer to lpfc hba data structure.
782 * @pmboxq: pointer to the driver internal queue element for mailbox command.
784 * This is the callback function to the lpfc heart-beat mailbox command.
785 * If configured, the lpfc driver issues the heart-beat mailbox command to
786 * the HBA every LPFC_HB_MBOX_INTERVAL (current 5) seconds. At the time the
787 * heart-beat mailbox command is issued, the driver shall set up heart-beat
788 * timeout timer to LPFC_HB_MBOX_TIMEOUT (current 30) seconds and marks
789 * heart-beat outstanding state. Once the mailbox command comes back and
790 * no error conditions detected, the heart-beat mailbox command timer is
791 * reset to LPFC_HB_MBOX_INTERVAL seconds and the heart-beat outstanding
792 * state is cleared for the next heart-beat. If the timer expired with the
793 * heart-beat outstanding state set, the driver will put the HBA offline.
796 lpfc_hb_mbox_cmpl(struct lpfc_hba
* phba
, LPFC_MBOXQ_t
* pmboxq
)
798 unsigned long drvr_flag
;
800 spin_lock_irqsave(&phba
->hbalock
, drvr_flag
);
801 phba
->hb_outstanding
= 0;
802 spin_unlock_irqrestore(&phba
->hbalock
, drvr_flag
);
804 /* Check and reset heart-beat timer is necessary */
805 mempool_free(pmboxq
, phba
->mbox_mem_pool
);
806 if (!(phba
->pport
->fc_flag
& FC_OFFLINE_MODE
) &&
807 !(phba
->link_state
== LPFC_HBA_ERROR
) &&
808 !(phba
->pport
->load_flag
& FC_UNLOADING
))
809 mod_timer(&phba
->hb_tmofunc
,
810 jiffies
+ HZ
* LPFC_HB_MBOX_INTERVAL
);
815 * lpfc_hb_timeout_handler - The HBA-timer timeout handler
816 * @phba: pointer to lpfc hba data structure.
818 * This is the actual HBA-timer timeout handler to be invoked by the worker
819 * thread whenever the HBA timer fired and HBA-timeout event posted. This
820 * handler performs any periodic operations needed for the device. If such
821 * periodic event has already been attended to either in the interrupt handler
822 * or by processing slow-ring or fast-ring events within the HBA-timer
823 * timeout window (LPFC_HB_MBOX_INTERVAL), this handler just simply resets
824 * the timer for the next timeout period. If lpfc heart-beat mailbox command
825 * is configured and there is no heart-beat mailbox command outstanding, a
826 * heart-beat mailbox is issued and timer set properly. Otherwise, if there
827 * has been a heart-beat mailbox command outstanding, the HBA shall be put
831 lpfc_hb_timeout_handler(struct lpfc_hba
*phba
)
833 LPFC_MBOXQ_t
*pmboxq
;
834 struct lpfc_dmabuf
*buf_ptr
;
836 struct lpfc_sli
*psli
= &phba
->sli
;
837 LIST_HEAD(completions
);
839 if ((phba
->link_state
== LPFC_HBA_ERROR
) ||
840 (phba
->pport
->load_flag
& FC_UNLOADING
) ||
841 (phba
->pport
->fc_flag
& FC_OFFLINE_MODE
))
844 spin_lock_irq(&phba
->pport
->work_port_lock
);
846 if (time_after(phba
->last_completion_time
+ LPFC_HB_MBOX_INTERVAL
* HZ
,
848 spin_unlock_irq(&phba
->pport
->work_port_lock
);
849 if (!phba
->hb_outstanding
)
850 mod_timer(&phba
->hb_tmofunc
,
851 jiffies
+ HZ
* LPFC_HB_MBOX_INTERVAL
);
853 mod_timer(&phba
->hb_tmofunc
,
854 jiffies
+ HZ
* LPFC_HB_MBOX_TIMEOUT
);
857 spin_unlock_irq(&phba
->pport
->work_port_lock
);
859 if (phba
->elsbuf_cnt
&&
860 (phba
->elsbuf_cnt
== phba
->elsbuf_prev_cnt
)) {
861 spin_lock_irq(&phba
->hbalock
);
862 list_splice_init(&phba
->elsbuf
, &completions
);
863 phba
->elsbuf_cnt
= 0;
864 phba
->elsbuf_prev_cnt
= 0;
865 spin_unlock_irq(&phba
->hbalock
);
867 while (!list_empty(&completions
)) {
868 list_remove_head(&completions
, buf_ptr
,
869 struct lpfc_dmabuf
, list
);
870 lpfc_mbuf_free(phba
, buf_ptr
->virt
, buf_ptr
->phys
);
874 phba
->elsbuf_prev_cnt
= phba
->elsbuf_cnt
;
876 /* If there is no heart beat outstanding, issue a heartbeat command */
877 if (phba
->cfg_enable_hba_heartbeat
) {
878 if (!phba
->hb_outstanding
) {
879 pmboxq
= mempool_alloc(phba
->mbox_mem_pool
,GFP_KERNEL
);
881 mod_timer(&phba
->hb_tmofunc
,
882 jiffies
+ HZ
* LPFC_HB_MBOX_INTERVAL
);
886 lpfc_heart_beat(phba
, pmboxq
);
887 pmboxq
->mbox_cmpl
= lpfc_hb_mbox_cmpl
;
888 pmboxq
->vport
= phba
->pport
;
889 retval
= lpfc_sli_issue_mbox(phba
, pmboxq
, MBX_NOWAIT
);
891 if (retval
!= MBX_BUSY
&& retval
!= MBX_SUCCESS
) {
892 mempool_free(pmboxq
, phba
->mbox_mem_pool
);
893 mod_timer(&phba
->hb_tmofunc
,
894 jiffies
+ HZ
* LPFC_HB_MBOX_INTERVAL
);
897 mod_timer(&phba
->hb_tmofunc
,
898 jiffies
+ HZ
* LPFC_HB_MBOX_TIMEOUT
);
899 phba
->hb_outstanding
= 1;
903 * If heart beat timeout called with hb_outstanding set
904 * we need to take the HBA offline.
906 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
907 "0459 Adapter heartbeat failure, "
908 "taking this port offline.\n");
910 spin_lock_irq(&phba
->hbalock
);
911 psli
->sli_flag
&= ~LPFC_SLI_ACTIVE
;
912 spin_unlock_irq(&phba
->hbalock
);
914 lpfc_offline_prep(phba
);
916 lpfc_unblock_mgmt_io(phba
);
917 phba
->link_state
= LPFC_HBA_ERROR
;
918 lpfc_hba_down_post(phba
);
924 * lpfc_offline_eratt - Bring lpfc offline on hardware error attention
925 * @phba: pointer to lpfc hba data structure.
927 * This routine is called to bring the HBA offline when HBA hardware error
928 * other than Port Error 6 has been detected.
931 lpfc_offline_eratt(struct lpfc_hba
*phba
)
933 struct lpfc_sli
*psli
= &phba
->sli
;
935 spin_lock_irq(&phba
->hbalock
);
936 psli
->sli_flag
&= ~LPFC_SLI_ACTIVE
;
937 spin_unlock_irq(&phba
->hbalock
);
938 lpfc_offline_prep(phba
);
941 lpfc_reset_barrier(phba
);
942 spin_lock_irq(&phba
->hbalock
);
943 lpfc_sli_brdreset(phba
);
944 spin_unlock_irq(&phba
->hbalock
);
945 lpfc_hba_down_post(phba
);
946 lpfc_sli_brdready(phba
, HS_MBRDY
);
947 lpfc_unblock_mgmt_io(phba
);
948 phba
->link_state
= LPFC_HBA_ERROR
;
953 * lpfc_sli4_offline_eratt - Bring lpfc offline on SLI4 hardware error attention
954 * @phba: pointer to lpfc hba data structure.
956 * This routine is called to bring a SLI4 HBA offline when HBA hardware error
957 * other than Port Error 6 has been detected.
960 lpfc_sli4_offline_eratt(struct lpfc_hba
*phba
)
962 lpfc_offline_prep(phba
);
964 lpfc_sli4_brdreset(phba
);
965 lpfc_hba_down_post(phba
);
966 lpfc_sli4_post_status_check(phba
);
967 lpfc_unblock_mgmt_io(phba
);
968 phba
->link_state
= LPFC_HBA_ERROR
;
972 * lpfc_handle_deferred_eratt - The HBA hardware deferred error handler
973 * @phba: pointer to lpfc hba data structure.
975 * This routine is invoked to handle the deferred HBA hardware error
976 * conditions. This type of error is indicated by HBA by setting ER1
977 * and another ER bit in the host status register. The driver will
978 * wait until the ER1 bit clears before handling the error condition.
981 lpfc_handle_deferred_eratt(struct lpfc_hba
*phba
)
983 uint32_t old_host_status
= phba
->work_hs
;
984 struct lpfc_sli_ring
*pring
;
985 struct lpfc_sli
*psli
= &phba
->sli
;
987 /* If the pci channel is offline, ignore possible errors,
988 * since we cannot communicate with the pci card anyway.
990 if (pci_channel_offline(phba
->pcidev
)) {
991 spin_lock_irq(&phba
->hbalock
);
992 phba
->hba_flag
&= ~DEFER_ERATT
;
993 spin_unlock_irq(&phba
->hbalock
);
997 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
998 "0479 Deferred Adapter Hardware Error "
999 "Data: x%x x%x x%x\n",
1001 phba
->work_status
[0], phba
->work_status
[1]);
1003 spin_lock_irq(&phba
->hbalock
);
1004 psli
->sli_flag
&= ~LPFC_SLI_ACTIVE
;
1005 spin_unlock_irq(&phba
->hbalock
);
1009 * Firmware stops when it triggred erratt. That could cause the I/Os
1010 * dropped by the firmware. Error iocb (I/O) on txcmplq and let the
1011 * SCSI layer retry it after re-establishing link.
1013 pring
= &psli
->ring
[psli
->fcp_ring
];
1014 lpfc_sli_abort_iocb_ring(phba
, pring
);
1017 * There was a firmware error. Take the hba offline and then
1018 * attempt to restart it.
1020 lpfc_offline_prep(phba
);
1023 /* Wait for the ER1 bit to clear.*/
1024 while (phba
->work_hs
& HS_FFER1
) {
1026 phba
->work_hs
= readl(phba
->HSregaddr
);
1027 /* If driver is unloading let the worker thread continue */
1028 if (phba
->pport
->load_flag
& FC_UNLOADING
) {
1035 * This is to ptrotect against a race condition in which
1036 * first write to the host attention register clear the
1037 * host status register.
1039 if ((!phba
->work_hs
) && (!(phba
->pport
->load_flag
& FC_UNLOADING
)))
1040 phba
->work_hs
= old_host_status
& ~HS_FFER1
;
1042 spin_lock_irq(&phba
->hbalock
);
1043 phba
->hba_flag
&= ~DEFER_ERATT
;
1044 spin_unlock_irq(&phba
->hbalock
);
1045 phba
->work_status
[0] = readl(phba
->MBslimaddr
+ 0xa8);
1046 phba
->work_status
[1] = readl(phba
->MBslimaddr
+ 0xac);
1050 lpfc_board_errevt_to_mgmt(struct lpfc_hba
*phba
)
1052 struct lpfc_board_event_header board_event
;
1053 struct Scsi_Host
*shost
;
1055 board_event
.event_type
= FC_REG_BOARD_EVENT
;
1056 board_event
.subcategory
= LPFC_EVENT_PORTINTERR
;
1057 shost
= lpfc_shost_from_vport(phba
->pport
);
1058 fc_host_post_vendor_event(shost
, fc_get_event_number(),
1059 sizeof(board_event
),
1060 (char *) &board_event
,
1065 * lpfc_handle_eratt_s3 - The SLI3 HBA hardware error handler
1066 * @phba: pointer to lpfc hba data structure.
1068 * This routine is invoked to handle the following HBA hardware error
1070 * 1 - HBA error attention interrupt
1071 * 2 - DMA ring index out of range
1072 * 3 - Mailbox command came back as unknown
1075 lpfc_handle_eratt_s3(struct lpfc_hba
*phba
)
1077 struct lpfc_vport
*vport
= phba
->pport
;
1078 struct lpfc_sli
*psli
= &phba
->sli
;
1079 struct lpfc_sli_ring
*pring
;
1080 uint32_t event_data
;
1081 unsigned long temperature
;
1082 struct temp_event temp_event_data
;
1083 struct Scsi_Host
*shost
;
1085 /* If the pci channel is offline, ignore possible errors,
1086 * since we cannot communicate with the pci card anyway.
1088 if (pci_channel_offline(phba
->pcidev
)) {
1089 spin_lock_irq(&phba
->hbalock
);
1090 phba
->hba_flag
&= ~DEFER_ERATT
;
1091 spin_unlock_irq(&phba
->hbalock
);
1095 /* If resets are disabled then leave the HBA alone and return */
1096 if (!phba
->cfg_enable_hba_reset
)
1099 /* Send an internal error event to mgmt application */
1100 lpfc_board_errevt_to_mgmt(phba
);
1102 if (phba
->hba_flag
& DEFER_ERATT
)
1103 lpfc_handle_deferred_eratt(phba
);
1105 if (phba
->work_hs
& HS_FFER6
) {
1106 /* Re-establishing Link */
1107 lpfc_printf_log(phba
, KERN_INFO
, LOG_LINK_EVENT
,
1108 "1301 Re-establishing Link "
1109 "Data: x%x x%x x%x\n",
1111 phba
->work_status
[0], phba
->work_status
[1]);
1113 spin_lock_irq(&phba
->hbalock
);
1114 psli
->sli_flag
&= ~LPFC_SLI_ACTIVE
;
1115 spin_unlock_irq(&phba
->hbalock
);
1118 * Firmware stops when it triggled erratt with HS_FFER6.
1119 * That could cause the I/Os dropped by the firmware.
1120 * Error iocb (I/O) on txcmplq and let the SCSI layer
1121 * retry it after re-establishing link.
1123 pring
= &psli
->ring
[psli
->fcp_ring
];
1124 lpfc_sli_abort_iocb_ring(phba
, pring
);
1127 * There was a firmware error. Take the hba offline and then
1128 * attempt to restart it.
1130 lpfc_offline_prep(phba
);
1132 lpfc_sli_brdrestart(phba
);
1133 if (lpfc_online(phba
) == 0) { /* Initialize the HBA */
1134 lpfc_unblock_mgmt_io(phba
);
1137 lpfc_unblock_mgmt_io(phba
);
1138 } else if (phba
->work_hs
& HS_CRIT_TEMP
) {
1139 temperature
= readl(phba
->MBslimaddr
+ TEMPERATURE_OFFSET
);
1140 temp_event_data
.event_type
= FC_REG_TEMPERATURE_EVENT
;
1141 temp_event_data
.event_code
= LPFC_CRIT_TEMP
;
1142 temp_event_data
.data
= (uint32_t)temperature
;
1144 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
1145 "0406 Adapter maximum temperature exceeded "
1146 "(%ld), taking this port offline "
1147 "Data: x%x x%x x%x\n",
1148 temperature
, phba
->work_hs
,
1149 phba
->work_status
[0], phba
->work_status
[1]);
1151 shost
= lpfc_shost_from_vport(phba
->pport
);
1152 fc_host_post_vendor_event(shost
, fc_get_event_number(),
1153 sizeof(temp_event_data
),
1154 (char *) &temp_event_data
,
1155 SCSI_NL_VID_TYPE_PCI
1156 | PCI_VENDOR_ID_EMULEX
);
1158 spin_lock_irq(&phba
->hbalock
);
1159 phba
->over_temp_state
= HBA_OVER_TEMP
;
1160 spin_unlock_irq(&phba
->hbalock
);
1161 lpfc_offline_eratt(phba
);
1164 /* The if clause above forces this code path when the status
1165 * failure is a value other than FFER6. Do not call the offline
1166 * twice. This is the adapter hardware error path.
1168 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
1169 "0457 Adapter Hardware Error "
1170 "Data: x%x x%x x%x\n",
1172 phba
->work_status
[0], phba
->work_status
[1]);
1174 event_data
= FC_REG_DUMP_EVENT
;
1175 shost
= lpfc_shost_from_vport(vport
);
1176 fc_host_post_vendor_event(shost
, fc_get_event_number(),
1177 sizeof(event_data
), (char *) &event_data
,
1178 SCSI_NL_VID_TYPE_PCI
| PCI_VENDOR_ID_EMULEX
);
1180 lpfc_offline_eratt(phba
);
1186 * lpfc_handle_eratt_s4 - The SLI4 HBA hardware error handler
1187 * @phba: pointer to lpfc hba data structure.
1189 * This routine is invoked to handle the SLI4 HBA hardware error attention
1193 lpfc_handle_eratt_s4(struct lpfc_hba
*phba
)
1195 struct lpfc_vport
*vport
= phba
->pport
;
1196 uint32_t event_data
;
1197 struct Scsi_Host
*shost
;
1199 /* If the pci channel is offline, ignore possible errors, since
1200 * we cannot communicate with the pci card anyway.
1202 if (pci_channel_offline(phba
->pcidev
))
1204 /* If resets are disabled then leave the HBA alone and return */
1205 if (!phba
->cfg_enable_hba_reset
)
1208 /* Send an internal error event to mgmt application */
1209 lpfc_board_errevt_to_mgmt(phba
);
1211 /* For now, the actual action for SLI4 device handling is not
1212 * specified yet, just treated it as adaptor hardware failure
1214 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
1215 "0143 SLI4 Adapter Hardware Error Data: x%x x%x\n",
1216 phba
->work_status
[0], phba
->work_status
[1]);
1218 event_data
= FC_REG_DUMP_EVENT
;
1219 shost
= lpfc_shost_from_vport(vport
);
1220 fc_host_post_vendor_event(shost
, fc_get_event_number(),
1221 sizeof(event_data
), (char *) &event_data
,
1222 SCSI_NL_VID_TYPE_PCI
| PCI_VENDOR_ID_EMULEX
);
1224 lpfc_sli4_offline_eratt(phba
);
1228 * lpfc_handle_eratt - Wrapper func for handling hba error attention
1229 * @phba: pointer to lpfc HBA data structure.
1231 * This routine wraps the actual SLI3 or SLI4 hba error attention handling
1232 * routine from the API jump table function pointer from the lpfc_hba struct.
1236 * Any other value - error.
1239 lpfc_handle_eratt(struct lpfc_hba
*phba
)
1241 (*phba
->lpfc_handle_eratt
)(phba
);
1245 * lpfc_handle_latt - The HBA link event handler
1246 * @phba: pointer to lpfc hba data structure.
1248 * This routine is invoked from the worker thread to handle a HBA host
1249 * attention link event.
1252 lpfc_handle_latt(struct lpfc_hba
*phba
)
1254 struct lpfc_vport
*vport
= phba
->pport
;
1255 struct lpfc_sli
*psli
= &phba
->sli
;
1257 volatile uint32_t control
;
1258 struct lpfc_dmabuf
*mp
;
1261 pmb
= (LPFC_MBOXQ_t
*)mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
1264 goto lpfc_handle_latt_err_exit
;
1267 mp
= kmalloc(sizeof(struct lpfc_dmabuf
), GFP_KERNEL
);
1270 goto lpfc_handle_latt_free_pmb
;
1273 mp
->virt
= lpfc_mbuf_alloc(phba
, 0, &mp
->phys
);
1276 goto lpfc_handle_latt_free_mp
;
1279 /* Cleanup any outstanding ELS commands */
1280 lpfc_els_flush_all_cmd(phba
);
1282 psli
->slistat
.link_event
++;
1283 lpfc_read_la(phba
, pmb
, mp
);
1284 pmb
->mbox_cmpl
= lpfc_mbx_cmpl_read_la
;
1286 /* Block ELS IOCBs until we have processed this mbox command */
1287 phba
->sli
.ring
[LPFC_ELS_RING
].flag
|= LPFC_STOP_IOCB_EVENT
;
1288 rc
= lpfc_sli_issue_mbox (phba
, pmb
, MBX_NOWAIT
);
1289 if (rc
== MBX_NOT_FINISHED
) {
1291 goto lpfc_handle_latt_free_mbuf
;
1294 /* Clear Link Attention in HA REG */
1295 spin_lock_irq(&phba
->hbalock
);
1296 writel(HA_LATT
, phba
->HAregaddr
);
1297 readl(phba
->HAregaddr
); /* flush */
1298 spin_unlock_irq(&phba
->hbalock
);
1302 lpfc_handle_latt_free_mbuf
:
1303 phba
->sli
.ring
[LPFC_ELS_RING
].flag
&= ~LPFC_STOP_IOCB_EVENT
;
1304 lpfc_mbuf_free(phba
, mp
->virt
, mp
->phys
);
1305 lpfc_handle_latt_free_mp
:
1307 lpfc_handle_latt_free_pmb
:
1308 mempool_free(pmb
, phba
->mbox_mem_pool
);
1309 lpfc_handle_latt_err_exit
:
1310 /* Enable Link attention interrupts */
1311 spin_lock_irq(&phba
->hbalock
);
1312 psli
->sli_flag
|= LPFC_PROCESS_LA
;
1313 control
= readl(phba
->HCregaddr
);
1314 control
|= HC_LAINT_ENA
;
1315 writel(control
, phba
->HCregaddr
);
1316 readl(phba
->HCregaddr
); /* flush */
1318 /* Clear Link Attention in HA REG */
1319 writel(HA_LATT
, phba
->HAregaddr
);
1320 readl(phba
->HAregaddr
); /* flush */
1321 spin_unlock_irq(&phba
->hbalock
);
1322 lpfc_linkdown(phba
);
1323 phba
->link_state
= LPFC_HBA_ERROR
;
1325 lpfc_printf_log(phba
, KERN_ERR
, LOG_MBOX
,
1326 "0300 LATT: Cannot issue READ_LA: Data:%d\n", rc
);
1332 * lpfc_parse_vpd - Parse VPD (Vital Product Data)
1333 * @phba: pointer to lpfc hba data structure.
1334 * @vpd: pointer to the vital product data.
1335 * @len: length of the vital product data in bytes.
1337 * This routine parses the Vital Product Data (VPD). The VPD is treated as
1338 * an array of characters. In this routine, the ModelName, ProgramType, and
1339 * ModelDesc, etc. fields of the phba data structure will be populated.
1342 * 0 - pointer to the VPD passed in is NULL
1346 lpfc_parse_vpd(struct lpfc_hba
*phba
, uint8_t *vpd
, int len
)
1348 uint8_t lenlo
, lenhi
;
1358 lpfc_printf_log(phba
, KERN_INFO
, LOG_INIT
,
1359 "0455 Vital Product Data: x%x x%x x%x x%x\n",
1360 (uint32_t) vpd
[0], (uint32_t) vpd
[1], (uint32_t) vpd
[2],
1362 while (!finished
&& (index
< (len
- 4))) {
1363 switch (vpd
[index
]) {
1371 i
= ((((unsigned short)lenhi
) << 8) + lenlo
);
1380 Length
= ((((unsigned short)lenhi
) << 8) + lenlo
);
1381 if (Length
> len
- index
)
1382 Length
= len
- index
;
1383 while (Length
> 0) {
1384 /* Look for Serial Number */
1385 if ((vpd
[index
] == 'S') && (vpd
[index
+1] == 'N')) {
1392 phba
->SerialNumber
[j
++] = vpd
[index
++];
1396 phba
->SerialNumber
[j
] = 0;
1399 else if ((vpd
[index
] == 'V') && (vpd
[index
+1] == '1')) {
1400 phba
->vpd_flag
|= VPD_MODEL_DESC
;
1407 phba
->ModelDesc
[j
++] = vpd
[index
++];
1411 phba
->ModelDesc
[j
] = 0;
1414 else if ((vpd
[index
] == 'V') && (vpd
[index
+1] == '2')) {
1415 phba
->vpd_flag
|= VPD_MODEL_NAME
;
1422 phba
->ModelName
[j
++] = vpd
[index
++];
1426 phba
->ModelName
[j
] = 0;
1429 else if ((vpd
[index
] == 'V') && (vpd
[index
+1] == '3')) {
1430 phba
->vpd_flag
|= VPD_PROGRAM_TYPE
;
1437 phba
->ProgramType
[j
++] = vpd
[index
++];
1441 phba
->ProgramType
[j
] = 0;
1444 else if ((vpd
[index
] == 'V') && (vpd
[index
+1] == '4')) {
1445 phba
->vpd_flag
|= VPD_PORT
;
1452 phba
->Port
[j
++] = vpd
[index
++];
1482 * lpfc_get_hba_model_desc - Retrieve HBA device model name and description
1483 * @phba: pointer to lpfc hba data structure.
1484 * @mdp: pointer to the data structure to hold the derived model name.
1485 * @descp: pointer to the data structure to hold the derived description.
1487 * This routine retrieves HBA's description based on its registered PCI device
1488 * ID. The @descp passed into this function points to an array of 256 chars. It
1489 * shall be returned with the model name, maximum speed, and the host bus type.
1490 * The @mdp passed into this function points to an array of 80 chars. When the
1491 * function returns, the @mdp will be filled with the model name.
1494 lpfc_get_hba_model_desc(struct lpfc_hba
*phba
, uint8_t *mdp
, uint8_t *descp
)
1497 uint16_t dev_id
= phba
->pcidev
->device
;
1500 int oneConnect
= 0; /* default is not a oneConnect */
1505 } m
= {"<Unknown>", 0, ""};
1507 if (mdp
&& mdp
[0] != '\0'
1508 && descp
&& descp
[0] != '\0')
1511 if (phba
->lmt
& LMT_10Gb
)
1513 else if (phba
->lmt
& LMT_8Gb
)
1515 else if (phba
->lmt
& LMT_4Gb
)
1517 else if (phba
->lmt
& LMT_2Gb
)
1525 case PCI_DEVICE_ID_FIREFLY
:
1526 m
= (typeof(m
)){"LP6000", max_speed
, "PCI"};
1528 case PCI_DEVICE_ID_SUPERFLY
:
1529 if (vp
->rev
.biuRev
>= 1 && vp
->rev
.biuRev
<= 3)
1530 m
= (typeof(m
)){"LP7000", max_speed
, "PCI"};
1532 m
= (typeof(m
)){"LP7000E", max_speed
, "PCI"};
1534 case PCI_DEVICE_ID_DRAGONFLY
:
1535 m
= (typeof(m
)){"LP8000", max_speed
, "PCI"};
1537 case PCI_DEVICE_ID_CENTAUR
:
1538 if (FC_JEDEC_ID(vp
->rev
.biuRev
) == CENTAUR_2G_JEDEC_ID
)
1539 m
= (typeof(m
)){"LP9002", max_speed
, "PCI"};
1541 m
= (typeof(m
)){"LP9000", max_speed
, "PCI"};
1543 case PCI_DEVICE_ID_RFLY
:
1544 m
= (typeof(m
)){"LP952", max_speed
, "PCI"};
1546 case PCI_DEVICE_ID_PEGASUS
:
1547 m
= (typeof(m
)){"LP9802", max_speed
, "PCI-X"};
1549 case PCI_DEVICE_ID_THOR
:
1550 m
= (typeof(m
)){"LP10000", max_speed
, "PCI-X"};
1552 case PCI_DEVICE_ID_VIPER
:
1553 m
= (typeof(m
)){"LPX1000", max_speed
, "PCI-X"};
1555 case PCI_DEVICE_ID_PFLY
:
1556 m
= (typeof(m
)){"LP982", max_speed
, "PCI-X"};
1558 case PCI_DEVICE_ID_TFLY
:
1559 m
= (typeof(m
)){"LP1050", max_speed
, "PCI-X"};
1561 case PCI_DEVICE_ID_HELIOS
:
1562 m
= (typeof(m
)){"LP11000", max_speed
, "PCI-X2"};
1564 case PCI_DEVICE_ID_HELIOS_SCSP
:
1565 m
= (typeof(m
)){"LP11000-SP", max_speed
, "PCI-X2"};
1567 case PCI_DEVICE_ID_HELIOS_DCSP
:
1568 m
= (typeof(m
)){"LP11002-SP", max_speed
, "PCI-X2"};
1570 case PCI_DEVICE_ID_NEPTUNE
:
1571 m
= (typeof(m
)){"LPe1000", max_speed
, "PCIe"};
1573 case PCI_DEVICE_ID_NEPTUNE_SCSP
:
1574 m
= (typeof(m
)){"LPe1000-SP", max_speed
, "PCIe"};
1576 case PCI_DEVICE_ID_NEPTUNE_DCSP
:
1577 m
= (typeof(m
)){"LPe1002-SP", max_speed
, "PCIe"};
1579 case PCI_DEVICE_ID_BMID
:
1580 m
= (typeof(m
)){"LP1150", max_speed
, "PCI-X2"};
1582 case PCI_DEVICE_ID_BSMB
:
1583 m
= (typeof(m
)){"LP111", max_speed
, "PCI-X2"};
1585 case PCI_DEVICE_ID_ZEPHYR
:
1586 m
= (typeof(m
)){"LPe11000", max_speed
, "PCIe"};
1588 case PCI_DEVICE_ID_ZEPHYR_SCSP
:
1589 m
= (typeof(m
)){"LPe11000", max_speed
, "PCIe"};
1591 case PCI_DEVICE_ID_ZEPHYR_DCSP
:
1592 m
= (typeof(m
)){"LP2105", max_speed
, "PCIe"};
1595 case PCI_DEVICE_ID_ZMID
:
1596 m
= (typeof(m
)){"LPe1150", max_speed
, "PCIe"};
1598 case PCI_DEVICE_ID_ZSMB
:
1599 m
= (typeof(m
)){"LPe111", max_speed
, "PCIe"};
1601 case PCI_DEVICE_ID_LP101
:
1602 m
= (typeof(m
)){"LP101", max_speed
, "PCI-X"};
1604 case PCI_DEVICE_ID_LP10000S
:
1605 m
= (typeof(m
)){"LP10000-S", max_speed
, "PCI"};
1607 case PCI_DEVICE_ID_LP11000S
:
1608 m
= (typeof(m
)){"LP11000-S", max_speed
,
1611 case PCI_DEVICE_ID_LPE11000S
:
1612 m
= (typeof(m
)){"LPe11000-S", max_speed
,
1615 case PCI_DEVICE_ID_SAT
:
1616 m
= (typeof(m
)){"LPe12000", max_speed
, "PCIe"};
1618 case PCI_DEVICE_ID_SAT_MID
:
1619 m
= (typeof(m
)){"LPe1250", max_speed
, "PCIe"};
1621 case PCI_DEVICE_ID_SAT_SMB
:
1622 m
= (typeof(m
)){"LPe121", max_speed
, "PCIe"};
1624 case PCI_DEVICE_ID_SAT_DCSP
:
1625 m
= (typeof(m
)){"LPe12002-SP", max_speed
, "PCIe"};
1627 case PCI_DEVICE_ID_SAT_SCSP
:
1628 m
= (typeof(m
)){"LPe12000-SP", max_speed
, "PCIe"};
1630 case PCI_DEVICE_ID_SAT_S
:
1631 m
= (typeof(m
)){"LPe12000-S", max_speed
, "PCIe"};
1633 case PCI_DEVICE_ID_HORNET
:
1634 m
= (typeof(m
)){"LP21000", max_speed
, "PCIe"};
1637 case PCI_DEVICE_ID_PROTEUS_VF
:
1638 m
= (typeof(m
)) {"LPev12000", max_speed
, "PCIe IOV"};
1640 case PCI_DEVICE_ID_PROTEUS_PF
:
1641 m
= (typeof(m
)) {"LPev12000", max_speed
, "PCIe IOV"};
1643 case PCI_DEVICE_ID_PROTEUS_S
:
1644 m
= (typeof(m
)) {"LPemv12002-S", max_speed
, "PCIe IOV"};
1646 case PCI_DEVICE_ID_TIGERSHARK
:
1648 m
= (typeof(m
)) {"OCe10100-F", max_speed
, "PCIe"};
1651 m
= (typeof(m
)){ NULL
};
1655 if (mdp
&& mdp
[0] == '\0')
1656 snprintf(mdp
, 79,"%s", m
.name
);
1657 /* oneConnect hba requires special processing, they are all initiators
1658 * and we put the port number on the end
1660 if (descp
&& descp
[0] == '\0') {
1662 snprintf(descp
, 255,
1663 "Emulex OneConnect %s, FCoE Initiator, Port %s",
1667 snprintf(descp
, 255,
1668 "Emulex %s %d%s %s %s",
1669 m
.name
, m
.max_speed
,
1672 (GE
) ? "FCoE Adapter" :
1673 "Fibre Channel Adapter");
1678 * lpfc_post_buffer - Post IOCB(s) with DMA buffer descriptor(s) to a IOCB ring
1679 * @phba: pointer to lpfc hba data structure.
1680 * @pring: pointer to a IOCB ring.
1681 * @cnt: the number of IOCBs to be posted to the IOCB ring.
1683 * This routine posts a given number of IOCBs with the associated DMA buffer
1684 * descriptors specified by the cnt argument to the given IOCB ring.
1687 * The number of IOCBs NOT able to be posted to the IOCB ring.
1690 lpfc_post_buffer(struct lpfc_hba
*phba
, struct lpfc_sli_ring
*pring
, int cnt
)
1693 struct lpfc_iocbq
*iocb
;
1694 struct lpfc_dmabuf
*mp1
, *mp2
;
1696 cnt
+= pring
->missbufcnt
;
1698 /* While there are buffers to post */
1700 /* Allocate buffer for command iocb */
1701 iocb
= lpfc_sli_get_iocbq(phba
);
1703 pring
->missbufcnt
= cnt
;
1708 /* 2 buffers can be posted per command */
1709 /* Allocate buffer to post */
1710 mp1
= kmalloc(sizeof (struct lpfc_dmabuf
), GFP_KERNEL
);
1712 mp1
->virt
= lpfc_mbuf_alloc(phba
, MEM_PRI
, &mp1
->phys
);
1713 if (!mp1
|| !mp1
->virt
) {
1715 lpfc_sli_release_iocbq(phba
, iocb
);
1716 pring
->missbufcnt
= cnt
;
1720 INIT_LIST_HEAD(&mp1
->list
);
1721 /* Allocate buffer to post */
1723 mp2
= kmalloc(sizeof (struct lpfc_dmabuf
), GFP_KERNEL
);
1725 mp2
->virt
= lpfc_mbuf_alloc(phba
, MEM_PRI
,
1727 if (!mp2
|| !mp2
->virt
) {
1729 lpfc_mbuf_free(phba
, mp1
->virt
, mp1
->phys
);
1731 lpfc_sli_release_iocbq(phba
, iocb
);
1732 pring
->missbufcnt
= cnt
;
1736 INIT_LIST_HEAD(&mp2
->list
);
1741 icmd
->un
.cont64
[0].addrHigh
= putPaddrHigh(mp1
->phys
);
1742 icmd
->un
.cont64
[0].addrLow
= putPaddrLow(mp1
->phys
);
1743 icmd
->un
.cont64
[0].tus
.f
.bdeSize
= FCELSSIZE
;
1744 icmd
->ulpBdeCount
= 1;
1747 icmd
->un
.cont64
[1].addrHigh
= putPaddrHigh(mp2
->phys
);
1748 icmd
->un
.cont64
[1].addrLow
= putPaddrLow(mp2
->phys
);
1749 icmd
->un
.cont64
[1].tus
.f
.bdeSize
= FCELSSIZE
;
1751 icmd
->ulpBdeCount
= 2;
1754 icmd
->ulpCommand
= CMD_QUE_RING_BUF64_CN
;
1757 if (lpfc_sli_issue_iocb(phba
, pring
->ringno
, iocb
, 0) ==
1759 lpfc_mbuf_free(phba
, mp1
->virt
, mp1
->phys
);
1763 lpfc_mbuf_free(phba
, mp2
->virt
, mp2
->phys
);
1767 lpfc_sli_release_iocbq(phba
, iocb
);
1768 pring
->missbufcnt
= cnt
;
1771 lpfc_sli_ringpostbuf_put(phba
, pring
, mp1
);
1773 lpfc_sli_ringpostbuf_put(phba
, pring
, mp2
);
1775 pring
->missbufcnt
= 0;
1780 * lpfc_post_rcv_buf - Post the initial receive IOCB buffers to ELS ring
1781 * @phba: pointer to lpfc hba data structure.
1783 * This routine posts initial receive IOCB buffers to the ELS ring. The
1784 * current number of initial IOCB buffers specified by LPFC_BUF_RING0 is
1788 * 0 - success (currently always success)
1791 lpfc_post_rcv_buf(struct lpfc_hba
*phba
)
1793 struct lpfc_sli
*psli
= &phba
->sli
;
1795 /* Ring 0, ELS / CT buffers */
1796 lpfc_post_buffer(phba
, &psli
->ring
[LPFC_ELS_RING
], LPFC_BUF_RING0
);
1797 /* Ring 2 - FCP no buffers needed */
1802 #define S(N,V) (((V)<<(N))|((V)>>(32-(N))))
1805 * lpfc_sha_init - Set up initial array of hash table entries
1806 * @HashResultPointer: pointer to an array as hash table.
1808 * This routine sets up the initial values to the array of hash table entries
1812 lpfc_sha_init(uint32_t * HashResultPointer
)
1814 HashResultPointer
[0] = 0x67452301;
1815 HashResultPointer
[1] = 0xEFCDAB89;
1816 HashResultPointer
[2] = 0x98BADCFE;
1817 HashResultPointer
[3] = 0x10325476;
1818 HashResultPointer
[4] = 0xC3D2E1F0;
1822 * lpfc_sha_iterate - Iterate initial hash table with the working hash table
1823 * @HashResultPointer: pointer to an initial/result hash table.
1824 * @HashWorkingPointer: pointer to an working hash table.
1826 * This routine iterates an initial hash table pointed by @HashResultPointer
1827 * with the values from the working hash table pointeed by @HashWorkingPointer.
1828 * The results are putting back to the initial hash table, returned through
1829 * the @HashResultPointer as the result hash table.
1832 lpfc_sha_iterate(uint32_t * HashResultPointer
, uint32_t * HashWorkingPointer
)
1836 uint32_t A
, B
, C
, D
, E
;
1839 HashWorkingPointer
[t
] =
1841 HashWorkingPointer
[t
- 3] ^ HashWorkingPointer
[t
-
1843 HashWorkingPointer
[t
- 14] ^ HashWorkingPointer
[t
- 16]);
1844 } while (++t
<= 79);
1846 A
= HashResultPointer
[0];
1847 B
= HashResultPointer
[1];
1848 C
= HashResultPointer
[2];
1849 D
= HashResultPointer
[3];
1850 E
= HashResultPointer
[4];
1854 TEMP
= ((B
& C
) | ((~B
) & D
)) + 0x5A827999;
1855 } else if (t
< 40) {
1856 TEMP
= (B
^ C
^ D
) + 0x6ED9EBA1;
1857 } else if (t
< 60) {
1858 TEMP
= ((B
& C
) | (B
& D
) | (C
& D
)) + 0x8F1BBCDC;
1860 TEMP
= (B
^ C
^ D
) + 0xCA62C1D6;
1862 TEMP
+= S(5, A
) + E
+ HashWorkingPointer
[t
];
1868 } while (++t
<= 79);
1870 HashResultPointer
[0] += A
;
1871 HashResultPointer
[1] += B
;
1872 HashResultPointer
[2] += C
;
1873 HashResultPointer
[3] += D
;
1874 HashResultPointer
[4] += E
;
1879 * lpfc_challenge_key - Create challenge key based on WWPN of the HBA
1880 * @RandomChallenge: pointer to the entry of host challenge random number array.
1881 * @HashWorking: pointer to the entry of the working hash array.
1883 * This routine calculates the working hash array referred by @HashWorking
1884 * from the challenge random numbers associated with the host, referred by
1885 * @RandomChallenge. The result is put into the entry of the working hash
1886 * array and returned by reference through @HashWorking.
1889 lpfc_challenge_key(uint32_t * RandomChallenge
, uint32_t * HashWorking
)
1891 *HashWorking
= (*RandomChallenge
^ *HashWorking
);
1895 * lpfc_hba_init - Perform special handling for LC HBA initialization
1896 * @phba: pointer to lpfc hba data structure.
1897 * @hbainit: pointer to an array of unsigned 32-bit integers.
1899 * This routine performs the special handling for LC HBA initialization.
1902 lpfc_hba_init(struct lpfc_hba
*phba
, uint32_t *hbainit
)
1905 uint32_t *HashWorking
;
1906 uint32_t *pwwnn
= (uint32_t *) phba
->wwnn
;
1908 HashWorking
= kcalloc(80, sizeof(uint32_t), GFP_KERNEL
);
1912 HashWorking
[0] = HashWorking
[78] = *pwwnn
++;
1913 HashWorking
[1] = HashWorking
[79] = *pwwnn
;
1915 for (t
= 0; t
< 7; t
++)
1916 lpfc_challenge_key(phba
->RandomData
+ t
, HashWorking
+ t
);
1918 lpfc_sha_init(hbainit
);
1919 lpfc_sha_iterate(hbainit
, HashWorking
);
1924 * lpfc_cleanup - Performs vport cleanups before deleting a vport
1925 * @vport: pointer to a virtual N_Port data structure.
1927 * This routine performs the necessary cleanups before deleting the @vport.
1928 * It invokes the discovery state machine to perform necessary state
1929 * transitions and to release the ndlps associated with the @vport. Note,
1930 * the physical port is treated as @vport 0.
1933 lpfc_cleanup(struct lpfc_vport
*vport
)
1935 struct lpfc_hba
*phba
= vport
->phba
;
1936 struct lpfc_nodelist
*ndlp
, *next_ndlp
;
1939 if (phba
->link_state
> LPFC_LINK_DOWN
)
1940 lpfc_port_link_failure(vport
);
1942 list_for_each_entry_safe(ndlp
, next_ndlp
, &vport
->fc_nodes
, nlp_listp
) {
1943 if (!NLP_CHK_NODE_ACT(ndlp
)) {
1944 ndlp
= lpfc_enable_node(vport
, ndlp
,
1945 NLP_STE_UNUSED_NODE
);
1948 spin_lock_irq(&phba
->ndlp_lock
);
1949 NLP_SET_FREE_REQ(ndlp
);
1950 spin_unlock_irq(&phba
->ndlp_lock
);
1951 /* Trigger the release of the ndlp memory */
1955 spin_lock_irq(&phba
->ndlp_lock
);
1956 if (NLP_CHK_FREE_REQ(ndlp
)) {
1957 /* The ndlp should not be in memory free mode already */
1958 spin_unlock_irq(&phba
->ndlp_lock
);
1961 /* Indicate request for freeing ndlp memory */
1962 NLP_SET_FREE_REQ(ndlp
);
1963 spin_unlock_irq(&phba
->ndlp_lock
);
1965 if (vport
->port_type
!= LPFC_PHYSICAL_PORT
&&
1966 ndlp
->nlp_DID
== Fabric_DID
) {
1967 /* Just free up ndlp with Fabric_DID for vports */
1972 if (ndlp
->nlp_type
& NLP_FABRIC
)
1973 lpfc_disc_state_machine(vport
, ndlp
, NULL
,
1974 NLP_EVT_DEVICE_RECOVERY
);
1976 lpfc_disc_state_machine(vport
, ndlp
, NULL
,
1981 /* At this point, ALL ndlp's should be gone
1982 * because of the previous NLP_EVT_DEVICE_RM.
1983 * Lets wait for this to happen, if needed.
1985 while (!list_empty(&vport
->fc_nodes
)) {
1987 lpfc_printf_vlog(vport
, KERN_ERR
, LOG_DISCOVERY
,
1988 "0233 Nodelist not empty\n");
1989 list_for_each_entry_safe(ndlp
, next_ndlp
,
1990 &vport
->fc_nodes
, nlp_listp
) {
1991 lpfc_printf_vlog(ndlp
->vport
, KERN_ERR
,
1993 "0282 did:x%x ndlp:x%p "
1994 "usgmap:x%x refcnt:%d\n",
1995 ndlp
->nlp_DID
, (void *)ndlp
,
1998 &ndlp
->kref
.refcount
));
2003 /* Wait for any activity on ndlps to settle */
2009 * lpfc_stop_vport_timers - Stop all the timers associated with a vport
2010 * @vport: pointer to a virtual N_Port data structure.
2012 * This routine stops all the timers associated with a @vport. This function
2013 * is invoked before disabling or deleting a @vport. Note that the physical
2014 * port is treated as @vport 0.
2017 lpfc_stop_vport_timers(struct lpfc_vport
*vport
)
2019 del_timer_sync(&vport
->els_tmofunc
);
2020 del_timer_sync(&vport
->fc_fdmitmo
);
2021 lpfc_can_disctmo(vport
);
2026 * lpfc_stop_hba_timers - Stop all the timers associated with an HBA
2027 * @phba: pointer to lpfc hba data structure.
2029 * This routine stops all the timers associated with a HBA. This function is
2030 * invoked before either putting a HBA offline or unloading the driver.
2033 lpfc_stop_hba_timers(struct lpfc_hba
*phba
)
2035 lpfc_stop_vport_timers(phba
->pport
);
2036 del_timer_sync(&phba
->sli
.mbox_tmo
);
2037 del_timer_sync(&phba
->fabric_block_timer
);
2038 del_timer_sync(&phba
->eratt_poll
);
2039 del_timer_sync(&phba
->hb_tmofunc
);
2040 phba
->hb_outstanding
= 0;
2042 switch (phba
->pci_dev_grp
) {
2043 case LPFC_PCI_DEV_LP
:
2044 /* Stop any LightPulse device specific driver timers */
2045 del_timer_sync(&phba
->fcp_poll_timer
);
2047 case LPFC_PCI_DEV_OC
:
2048 /* Stop any OneConnect device sepcific driver timers */
2051 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
2052 "0297 Invalid device group (x%x)\n",
2060 * lpfc_block_mgmt_io - Mark a HBA's management interface as blocked
2061 * @phba: pointer to lpfc hba data structure.
2063 * This routine marks a HBA's management interface as blocked. Once the HBA's
2064 * management interface is marked as blocked, all the user space access to
2065 * the HBA, whether they are from sysfs interface or libdfc interface will
2066 * all be blocked. The HBA is set to block the management interface when the
2067 * driver prepares the HBA interface for online or offline.
2070 lpfc_block_mgmt_io(struct lpfc_hba
* phba
)
2072 unsigned long iflag
;
2074 spin_lock_irqsave(&phba
->hbalock
, iflag
);
2075 phba
->sli
.sli_flag
|= LPFC_BLOCK_MGMT_IO
;
2076 spin_unlock_irqrestore(&phba
->hbalock
, iflag
);
2080 * lpfc_online - Initialize and bring a HBA online
2081 * @phba: pointer to lpfc hba data structure.
2083 * This routine initializes the HBA and brings a HBA online. During this
2084 * process, the management interface is blocked to prevent user space access
2085 * to the HBA interfering with the driver initialization.
2092 lpfc_online(struct lpfc_hba
*phba
)
2094 struct lpfc_vport
*vport
;
2095 struct lpfc_vport
**vports
;
2100 vport
= phba
->pport
;
2102 if (!(vport
->fc_flag
& FC_OFFLINE_MODE
))
2105 lpfc_printf_log(phba
, KERN_WARNING
, LOG_INIT
,
2106 "0458 Bring Adapter online\n");
2108 lpfc_block_mgmt_io(phba
);
2110 if (!lpfc_sli_queue_setup(phba
)) {
2111 lpfc_unblock_mgmt_io(phba
);
2115 if (phba
->sli_rev
== LPFC_SLI_REV4
) {
2116 if (lpfc_sli4_hba_setup(phba
)) { /* Initialize SLI4 HBA */
2117 lpfc_unblock_mgmt_io(phba
);
2121 if (lpfc_sli_hba_setup(phba
)) { /* Initialize SLI2/SLI3 HBA */
2122 lpfc_unblock_mgmt_io(phba
);
2127 vports
= lpfc_create_vport_work_array(phba
);
2129 for (i
= 0; i
<= phba
->max_vports
&& vports
[i
] != NULL
; i
++) {
2130 struct Scsi_Host
*shost
;
2131 shost
= lpfc_shost_from_vport(vports
[i
]);
2132 spin_lock_irq(shost
->host_lock
);
2133 vports
[i
]->fc_flag
&= ~FC_OFFLINE_MODE
;
2134 if (phba
->sli3_options
& LPFC_SLI3_NPIV_ENABLED
)
2135 vports
[i
]->fc_flag
|= FC_VPORT_NEEDS_REG_VPI
;
2136 spin_unlock_irq(shost
->host_lock
);
2138 lpfc_destroy_vport_work_array(phba
, vports
);
2140 lpfc_unblock_mgmt_io(phba
);
2145 * lpfc_unblock_mgmt_io - Mark a HBA's management interface to be not blocked
2146 * @phba: pointer to lpfc hba data structure.
2148 * This routine marks a HBA's management interface as not blocked. Once the
2149 * HBA's management interface is marked as not blocked, all the user space
2150 * access to the HBA, whether they are from sysfs interface or libdfc
2151 * interface will be allowed. The HBA is set to block the management interface
2152 * when the driver prepares the HBA interface for online or offline and then
2153 * set to unblock the management interface afterwards.
2156 lpfc_unblock_mgmt_io(struct lpfc_hba
* phba
)
2158 unsigned long iflag
;
2160 spin_lock_irqsave(&phba
->hbalock
, iflag
);
2161 phba
->sli
.sli_flag
&= ~LPFC_BLOCK_MGMT_IO
;
2162 spin_unlock_irqrestore(&phba
->hbalock
, iflag
);
2166 * lpfc_offline_prep - Prepare a HBA to be brought offline
2167 * @phba: pointer to lpfc hba data structure.
2169 * This routine is invoked to prepare a HBA to be brought offline. It performs
2170 * unregistration login to all the nodes on all vports and flushes the mailbox
2171 * queue to make it ready to be brought offline.
2174 lpfc_offline_prep(struct lpfc_hba
* phba
)
2176 struct lpfc_vport
*vport
= phba
->pport
;
2177 struct lpfc_nodelist
*ndlp
, *next_ndlp
;
2178 struct lpfc_vport
**vports
;
2181 if (vport
->fc_flag
& FC_OFFLINE_MODE
)
2184 lpfc_block_mgmt_io(phba
);
2186 lpfc_linkdown(phba
);
2188 /* Issue an unreg_login to all nodes on all vports */
2189 vports
= lpfc_create_vport_work_array(phba
);
2190 if (vports
!= NULL
) {
2191 for (i
= 0; i
<= phba
->max_vports
&& vports
[i
] != NULL
; i
++) {
2192 struct Scsi_Host
*shost
;
2194 if (vports
[i
]->load_flag
& FC_UNLOADING
)
2196 vports
[i
]->vfi_state
&= ~LPFC_VFI_REGISTERED
;
2197 shost
= lpfc_shost_from_vport(vports
[i
]);
2198 list_for_each_entry_safe(ndlp
, next_ndlp
,
2199 &vports
[i
]->fc_nodes
,
2201 if (!NLP_CHK_NODE_ACT(ndlp
))
2203 if (ndlp
->nlp_state
== NLP_STE_UNUSED_NODE
)
2205 if (ndlp
->nlp_type
& NLP_FABRIC
) {
2206 lpfc_disc_state_machine(vports
[i
], ndlp
,
2207 NULL
, NLP_EVT_DEVICE_RECOVERY
);
2208 lpfc_disc_state_machine(vports
[i
], ndlp
,
2209 NULL
, NLP_EVT_DEVICE_RM
);
2211 spin_lock_irq(shost
->host_lock
);
2212 ndlp
->nlp_flag
&= ~NLP_NPR_ADISC
;
2213 spin_unlock_irq(shost
->host_lock
);
2214 lpfc_unreg_rpi(vports
[i
], ndlp
);
2218 lpfc_destroy_vport_work_array(phba
, vports
);
2220 lpfc_sli_mbox_sys_shutdown(phba
);
2224 * lpfc_offline - Bring a HBA offline
2225 * @phba: pointer to lpfc hba data structure.
2227 * This routine actually brings a HBA offline. It stops all the timers
2228 * associated with the HBA, brings down the SLI layer, and eventually
2229 * marks the HBA as in offline state for the upper layer protocol.
2232 lpfc_offline(struct lpfc_hba
*phba
)
2234 struct Scsi_Host
*shost
;
2235 struct lpfc_vport
**vports
;
2238 if (phba
->pport
->fc_flag
& FC_OFFLINE_MODE
)
2241 /* stop port and all timers associated with this hba */
2242 lpfc_stop_port(phba
);
2243 vports
= lpfc_create_vport_work_array(phba
);
2245 for (i
= 0; i
<= phba
->max_vports
&& vports
[i
] != NULL
; i
++)
2246 lpfc_stop_vport_timers(vports
[i
]);
2247 lpfc_destroy_vport_work_array(phba
, vports
);
2248 lpfc_printf_log(phba
, KERN_WARNING
, LOG_INIT
,
2249 "0460 Bring Adapter offline\n");
2250 /* Bring down the SLI Layer and cleanup. The HBA is offline
2252 lpfc_sli_hba_down(phba
);
2253 spin_lock_irq(&phba
->hbalock
);
2255 spin_unlock_irq(&phba
->hbalock
);
2256 vports
= lpfc_create_vport_work_array(phba
);
2258 for (i
= 0; i
<= phba
->max_vports
&& vports
[i
] != NULL
; i
++) {
2259 shost
= lpfc_shost_from_vport(vports
[i
]);
2260 spin_lock_irq(shost
->host_lock
);
2261 vports
[i
]->work_port_events
= 0;
2262 vports
[i
]->fc_flag
|= FC_OFFLINE_MODE
;
2263 spin_unlock_irq(shost
->host_lock
);
2265 lpfc_destroy_vport_work_array(phba
, vports
);
2269 * lpfc_scsi_free - Free all the SCSI buffers and IOCBs from driver lists
2270 * @phba: pointer to lpfc hba data structure.
2272 * This routine is to free all the SCSI buffers and IOCBs from the driver
2273 * list back to kernel. It is called from lpfc_pci_remove_one to free
2274 * the internal resources before the device is removed from the system.
2277 * 0 - successful (for now, it always returns 0)
2280 lpfc_scsi_free(struct lpfc_hba
*phba
)
2282 struct lpfc_scsi_buf
*sb
, *sb_next
;
2283 struct lpfc_iocbq
*io
, *io_next
;
2285 spin_lock_irq(&phba
->hbalock
);
2286 /* Release all the lpfc_scsi_bufs maintained by this host. */
2287 list_for_each_entry_safe(sb
, sb_next
, &phba
->lpfc_scsi_buf_list
, list
) {
2288 list_del(&sb
->list
);
2289 pci_pool_free(phba
->lpfc_scsi_dma_buf_pool
, sb
->data
,
2292 phba
->total_scsi_bufs
--;
2295 /* Release all the lpfc_iocbq entries maintained by this host. */
2296 list_for_each_entry_safe(io
, io_next
, &phba
->lpfc_iocb_list
, list
) {
2297 list_del(&io
->list
);
2299 phba
->total_iocbq_bufs
--;
2302 spin_unlock_irq(&phba
->hbalock
);
2308 * lpfc_create_port - Create an FC port
2309 * @phba: pointer to lpfc hba data structure.
2310 * @instance: a unique integer ID to this FC port.
2311 * @dev: pointer to the device data structure.
2313 * This routine creates a FC port for the upper layer protocol. The FC port
2314 * can be created on top of either a physical port or a virtual port provided
2315 * by the HBA. This routine also allocates a SCSI host data structure (shost)
2316 * and associates the FC port created before adding the shost into the SCSI
2320 * @vport - pointer to the virtual N_Port data structure.
2321 * NULL - port create failed.
2324 lpfc_create_port(struct lpfc_hba
*phba
, int instance
, struct device
*dev
)
2326 struct lpfc_vport
*vport
;
2327 struct Scsi_Host
*shost
;
2330 if (dev
!= &phba
->pcidev
->dev
)
2331 shost
= scsi_host_alloc(&lpfc_vport_template
,
2332 sizeof(struct lpfc_vport
));
2334 shost
= scsi_host_alloc(&lpfc_template
,
2335 sizeof(struct lpfc_vport
));
2339 vport
= (struct lpfc_vport
*) shost
->hostdata
;
2341 vport
->load_flag
|= FC_LOADING
;
2342 vport
->fc_flag
|= FC_VPORT_NEEDS_REG_VPI
;
2343 vport
->fc_rscn_flush
= 0;
2345 lpfc_get_vport_cfgparam(vport
);
2346 shost
->unique_id
= instance
;
2347 shost
->max_id
= LPFC_MAX_TARGET
;
2348 shost
->max_lun
= vport
->cfg_max_luns
;
2349 shost
->this_id
= -1;
2350 shost
->max_cmd_len
= 16;
2351 if (phba
->sli_rev
== LPFC_SLI_REV4
) {
2352 shost
->dma_boundary
= LPFC_SLI4_MAX_SEGMENT_SIZE
;
2353 shost
->sg_tablesize
= phba
->cfg_sg_seg_cnt
;
2357 * Set initial can_queue value since 0 is no longer supported and
2358 * scsi_add_host will fail. This will be adjusted later based on the
2359 * max xri value determined in hba setup.
2361 shost
->can_queue
= phba
->cfg_hba_queue_depth
- 10;
2362 if (dev
!= &phba
->pcidev
->dev
) {
2363 shost
->transportt
= lpfc_vport_transport_template
;
2364 vport
->port_type
= LPFC_NPIV_PORT
;
2366 shost
->transportt
= lpfc_transport_template
;
2367 vport
->port_type
= LPFC_PHYSICAL_PORT
;
2370 /* Initialize all internally managed lists. */
2371 INIT_LIST_HEAD(&vport
->fc_nodes
);
2372 INIT_LIST_HEAD(&vport
->rcv_buffer_list
);
2373 spin_lock_init(&vport
->work_port_lock
);
2375 init_timer(&vport
->fc_disctmo
);
2376 vport
->fc_disctmo
.function
= lpfc_disc_timeout
;
2377 vport
->fc_disctmo
.data
= (unsigned long)vport
;
2379 init_timer(&vport
->fc_fdmitmo
);
2380 vport
->fc_fdmitmo
.function
= lpfc_fdmi_tmo
;
2381 vport
->fc_fdmitmo
.data
= (unsigned long)vport
;
2383 init_timer(&vport
->els_tmofunc
);
2384 vport
->els_tmofunc
.function
= lpfc_els_timeout
;
2385 vport
->els_tmofunc
.data
= (unsigned long)vport
;
2387 error
= scsi_add_host(shost
, dev
);
2391 spin_lock_irq(&phba
->hbalock
);
2392 list_add_tail(&vport
->listentry
, &phba
->port_list
);
2393 spin_unlock_irq(&phba
->hbalock
);
2397 scsi_host_put(shost
);
2403 * destroy_port - destroy an FC port
2404 * @vport: pointer to an lpfc virtual N_Port data structure.
2406 * This routine destroys a FC port from the upper layer protocol. All the
2407 * resources associated with the port are released.
2410 destroy_port(struct lpfc_vport
*vport
)
2412 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
2413 struct lpfc_hba
*phba
= vport
->phba
;
2415 lpfc_debugfs_terminate(vport
);
2416 fc_remove_host(shost
);
2417 scsi_remove_host(shost
);
2419 spin_lock_irq(&phba
->hbalock
);
2420 list_del_init(&vport
->listentry
);
2421 spin_unlock_irq(&phba
->hbalock
);
2423 lpfc_cleanup(vport
);
2428 * lpfc_get_instance - Get a unique integer ID
2430 * This routine allocates a unique integer ID from lpfc_hba_index pool. It
2431 * uses the kernel idr facility to perform the task.
2434 * instance - a unique integer ID allocated as the new instance.
2435 * -1 - lpfc get instance failed.
2438 lpfc_get_instance(void)
2442 /* Assign an unused number */
2443 if (!idr_pre_get(&lpfc_hba_index
, GFP_KERNEL
))
2445 if (idr_get_new(&lpfc_hba_index
, NULL
, &instance
))
2451 * lpfc_scan_finished - method for SCSI layer to detect whether scan is done
2452 * @shost: pointer to SCSI host data structure.
2453 * @time: elapsed time of the scan in jiffies.
2455 * This routine is called by the SCSI layer with a SCSI host to determine
2456 * whether the scan host is finished.
2458 * Note: there is no scan_start function as adapter initialization will have
2459 * asynchronously kicked off the link initialization.
2462 * 0 - SCSI host scan is not over yet.
2463 * 1 - SCSI host scan is over.
2465 int lpfc_scan_finished(struct Scsi_Host
*shost
, unsigned long time
)
2467 struct lpfc_vport
*vport
= (struct lpfc_vport
*) shost
->hostdata
;
2468 struct lpfc_hba
*phba
= vport
->phba
;
2471 spin_lock_irq(shost
->host_lock
);
2473 if (vport
->load_flag
& FC_UNLOADING
) {
2477 if (time
>= 30 * HZ
) {
2478 lpfc_printf_log(phba
, KERN_INFO
, LOG_INIT
,
2479 "0461 Scanning longer than 30 "
2480 "seconds. Continuing initialization\n");
2484 if (time
>= 15 * HZ
&& phba
->link_state
<= LPFC_LINK_DOWN
) {
2485 lpfc_printf_log(phba
, KERN_INFO
, LOG_INIT
,
2486 "0465 Link down longer than 15 "
2487 "seconds. Continuing initialization\n");
2492 if (vport
->port_state
!= LPFC_VPORT_READY
)
2494 if (vport
->num_disc_nodes
|| vport
->fc_prli_sent
)
2496 if (vport
->fc_map_cnt
== 0 && time
< 2 * HZ
)
2498 if ((phba
->sli
.sli_flag
& LPFC_SLI_MBOX_ACTIVE
) != 0)
2504 spin_unlock_irq(shost
->host_lock
);
2509 * lpfc_host_attrib_init - Initialize SCSI host attributes on a FC port
2510 * @shost: pointer to SCSI host data structure.
2512 * This routine initializes a given SCSI host attributes on a FC port. The
2513 * SCSI host can be either on top of a physical port or a virtual port.
2515 void lpfc_host_attrib_init(struct Scsi_Host
*shost
)
2517 struct lpfc_vport
*vport
= (struct lpfc_vport
*) shost
->hostdata
;
2518 struct lpfc_hba
*phba
= vport
->phba
;
2520 * Set fixed host attributes. Must done after lpfc_sli_hba_setup().
2523 fc_host_node_name(shost
) = wwn_to_u64(vport
->fc_nodename
.u
.wwn
);
2524 fc_host_port_name(shost
) = wwn_to_u64(vport
->fc_portname
.u
.wwn
);
2525 fc_host_supported_classes(shost
) = FC_COS_CLASS3
;
2527 memset(fc_host_supported_fc4s(shost
), 0,
2528 sizeof(fc_host_supported_fc4s(shost
)));
2529 fc_host_supported_fc4s(shost
)[2] = 1;
2530 fc_host_supported_fc4s(shost
)[7] = 1;
2532 lpfc_vport_symbolic_node_name(vport
, fc_host_symbolic_name(shost
),
2533 sizeof fc_host_symbolic_name(shost
));
2535 fc_host_supported_speeds(shost
) = 0;
2536 if (phba
->lmt
& LMT_10Gb
)
2537 fc_host_supported_speeds(shost
) |= FC_PORTSPEED_10GBIT
;
2538 if (phba
->lmt
& LMT_8Gb
)
2539 fc_host_supported_speeds(shost
) |= FC_PORTSPEED_8GBIT
;
2540 if (phba
->lmt
& LMT_4Gb
)
2541 fc_host_supported_speeds(shost
) |= FC_PORTSPEED_4GBIT
;
2542 if (phba
->lmt
& LMT_2Gb
)
2543 fc_host_supported_speeds(shost
) |= FC_PORTSPEED_2GBIT
;
2544 if (phba
->lmt
& LMT_1Gb
)
2545 fc_host_supported_speeds(shost
) |= FC_PORTSPEED_1GBIT
;
2547 fc_host_maxframe_size(shost
) =
2548 (((uint32_t) vport
->fc_sparam
.cmn
.bbRcvSizeMsb
& 0x0F) << 8) |
2549 (uint32_t) vport
->fc_sparam
.cmn
.bbRcvSizeLsb
;
2551 /* This value is also unchanging */
2552 memset(fc_host_active_fc4s(shost
), 0,
2553 sizeof(fc_host_active_fc4s(shost
)));
2554 fc_host_active_fc4s(shost
)[2] = 1;
2555 fc_host_active_fc4s(shost
)[7] = 1;
2557 fc_host_max_npiv_vports(shost
) = phba
->max_vpi
;
2558 spin_lock_irq(shost
->host_lock
);
2559 vport
->load_flag
&= ~FC_LOADING
;
2560 spin_unlock_irq(shost
->host_lock
);
2564 * lpfc_stop_port_s3 - Stop SLI3 device port
2565 * @phba: pointer to lpfc hba data structure.
2567 * This routine is invoked to stop an SLI3 device port, it stops the device
2568 * from generating interrupts and stops the device driver's timers for the
2572 lpfc_stop_port_s3(struct lpfc_hba
*phba
)
2574 /* Clear all interrupt enable conditions */
2575 writel(0, phba
->HCregaddr
);
2576 readl(phba
->HCregaddr
); /* flush */
2577 /* Clear all pending interrupts */
2578 writel(0xffffffff, phba
->HAregaddr
);
2579 readl(phba
->HAregaddr
); /* flush */
2581 /* Reset some HBA SLI setup states */
2582 lpfc_stop_hba_timers(phba
);
2583 phba
->pport
->work_port_events
= 0;
2587 * lpfc_stop_port_s4 - Stop SLI4 device port
2588 * @phba: pointer to lpfc hba data structure.
2590 * This routine is invoked to stop an SLI4 device port, it stops the device
2591 * from generating interrupts and stops the device driver's timers for the
2595 lpfc_stop_port_s4(struct lpfc_hba
*phba
)
2597 /* Reset some HBA SLI4 setup states */
2598 lpfc_stop_hba_timers(phba
);
2599 phba
->pport
->work_port_events
= 0;
2600 phba
->sli4_hba
.intr_enable
= 0;
2601 /* Hard clear it for now, shall have more graceful way to wait later */
2602 phba
->sli
.sli_flag
&= ~LPFC_SLI_MBOX_ACTIVE
;
2606 * lpfc_stop_port - Wrapper function for stopping hba port
2607 * @phba: Pointer to HBA context object.
2609 * This routine wraps the actual SLI3 or SLI4 hba stop port routine from
2610 * the API jump table function pointer from the lpfc_hba struct.
2613 lpfc_stop_port(struct lpfc_hba
*phba
)
2615 phba
->lpfc_stop_port(phba
);
2619 * lpfc_sli4_remove_dflt_fcf - Remove the driver default fcf record from the port.
2620 * @phba: pointer to lpfc hba data structure.
2622 * This routine is invoked to remove the driver default fcf record from
2623 * the port. This routine currently acts on FCF Index 0.
2627 lpfc_sli_remove_dflt_fcf(struct lpfc_hba
*phba
)
2630 LPFC_MBOXQ_t
*mboxq
;
2631 struct lpfc_mbx_del_fcf_tbl_entry
*del_fcf_record
;
2632 uint32_t mbox_tmo
, req_len
;
2633 uint32_t shdr_status
, shdr_add_status
;
2635 mboxq
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
2637 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
2638 "2020 Failed to allocate mbox for ADD_FCF cmd\n");
2642 req_len
= sizeof(struct lpfc_mbx_del_fcf_tbl_entry
) -
2643 sizeof(struct lpfc_sli4_cfg_mhdr
);
2644 rc
= lpfc_sli4_config(phba
, mboxq
, LPFC_MBOX_SUBSYSTEM_FCOE
,
2645 LPFC_MBOX_OPCODE_FCOE_DELETE_FCF
,
2646 req_len
, LPFC_SLI4_MBX_EMBED
);
2648 * In phase 1, there is a single FCF index, 0. In phase2, the driver
2649 * supports multiple FCF indices.
2651 del_fcf_record
= &mboxq
->u
.mqe
.un
.del_fcf_entry
;
2652 bf_set(lpfc_mbx_del_fcf_tbl_count
, del_fcf_record
, 1);
2653 bf_set(lpfc_mbx_del_fcf_tbl_index
, del_fcf_record
,
2654 phba
->fcf
.fcf_indx
);
2656 if (!phba
->sli4_hba
.intr_enable
)
2657 rc
= lpfc_sli_issue_mbox(phba
, mboxq
, MBX_POLL
);
2659 mbox_tmo
= lpfc_mbox_tmo_val(phba
, MBX_SLI4_CONFIG
);
2660 rc
= lpfc_sli_issue_mbox_wait(phba
, mboxq
, mbox_tmo
);
2662 /* The IOCTL status is embedded in the mailbox subheader. */
2663 shdr_status
= bf_get(lpfc_mbox_hdr_status
,
2664 &del_fcf_record
->header
.cfg_shdr
.response
);
2665 shdr_add_status
= bf_get(lpfc_mbox_hdr_add_status
,
2666 &del_fcf_record
->header
.cfg_shdr
.response
);
2667 if (shdr_status
|| shdr_add_status
|| rc
!= MBX_SUCCESS
) {
2668 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
2669 "2516 DEL FCF of default FCF Index failed "
2670 "mbx status x%x, status x%x add_status x%x\n",
2671 rc
, shdr_status
, shdr_add_status
);
2673 if (rc
!= MBX_TIMEOUT
)
2674 mempool_free(mboxq
, phba
->mbox_mem_pool
);
2678 * lpfc_sli4_parse_latt_fault - Parse sli4 link-attention link fault code
2679 * @phba: pointer to lpfc hba data structure.
2680 * @acqe_link: pointer to the async link completion queue entry.
2682 * This routine is to parse the SLI4 link-attention link fault code and
2683 * translate it into the base driver's read link attention mailbox command
2686 * Return: Link-attention status in terms of base driver's coding.
2689 lpfc_sli4_parse_latt_fault(struct lpfc_hba
*phba
,
2690 struct lpfc_acqe_link
*acqe_link
)
2692 uint16_t latt_fault
;
2694 switch (bf_get(lpfc_acqe_link_fault
, acqe_link
)) {
2695 case LPFC_ASYNC_LINK_FAULT_NONE
:
2696 case LPFC_ASYNC_LINK_FAULT_LOCAL
:
2697 case LPFC_ASYNC_LINK_FAULT_REMOTE
:
2701 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
2702 "0398 Invalid link fault code: x%x\n",
2703 bf_get(lpfc_acqe_link_fault
, acqe_link
));
2704 latt_fault
= MBXERR_ERROR
;
2711 * lpfc_sli4_parse_latt_type - Parse sli4 link attention type
2712 * @phba: pointer to lpfc hba data structure.
2713 * @acqe_link: pointer to the async link completion queue entry.
2715 * This routine is to parse the SLI4 link attention type and translate it
2716 * into the base driver's link attention type coding.
2718 * Return: Link attention type in terms of base driver's coding.
2721 lpfc_sli4_parse_latt_type(struct lpfc_hba
*phba
,
2722 struct lpfc_acqe_link
*acqe_link
)
2726 switch (bf_get(lpfc_acqe_link_status
, acqe_link
)) {
2727 case LPFC_ASYNC_LINK_STATUS_DOWN
:
2728 case LPFC_ASYNC_LINK_STATUS_LOGICAL_DOWN
:
2729 att_type
= AT_LINK_DOWN
;
2731 case LPFC_ASYNC_LINK_STATUS_UP
:
2732 /* Ignore physical link up events - wait for logical link up */
2733 att_type
= AT_RESERVED
;
2735 case LPFC_ASYNC_LINK_STATUS_LOGICAL_UP
:
2736 att_type
= AT_LINK_UP
;
2739 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
2740 "0399 Invalid link attention type: x%x\n",
2741 bf_get(lpfc_acqe_link_status
, acqe_link
));
2742 att_type
= AT_RESERVED
;
2749 * lpfc_sli4_parse_latt_link_speed - Parse sli4 link-attention link speed
2750 * @phba: pointer to lpfc hba data structure.
2751 * @acqe_link: pointer to the async link completion queue entry.
2753 * This routine is to parse the SLI4 link-attention link speed and translate
2754 * it into the base driver's link-attention link speed coding.
2756 * Return: Link-attention link speed in terms of base driver's coding.
2759 lpfc_sli4_parse_latt_link_speed(struct lpfc_hba
*phba
,
2760 struct lpfc_acqe_link
*acqe_link
)
2764 switch (bf_get(lpfc_acqe_link_speed
, acqe_link
)) {
2765 case LPFC_ASYNC_LINK_SPEED_ZERO
:
2766 link_speed
= LA_UNKNW_LINK
;
2768 case LPFC_ASYNC_LINK_SPEED_10MBPS
:
2769 link_speed
= LA_UNKNW_LINK
;
2771 case LPFC_ASYNC_LINK_SPEED_100MBPS
:
2772 link_speed
= LA_UNKNW_LINK
;
2774 case LPFC_ASYNC_LINK_SPEED_1GBPS
:
2775 link_speed
= LA_1GHZ_LINK
;
2777 case LPFC_ASYNC_LINK_SPEED_10GBPS
:
2778 link_speed
= LA_10GHZ_LINK
;
2781 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
2782 "0483 Invalid link-attention link speed: x%x\n",
2783 bf_get(lpfc_acqe_link_speed
, acqe_link
));
2784 link_speed
= LA_UNKNW_LINK
;
2791 * lpfc_sli4_async_link_evt - Process the asynchronous link event
2792 * @phba: pointer to lpfc hba data structure.
2793 * @acqe_link: pointer to the async link completion queue entry.
2795 * This routine is to handle the SLI4 asynchronous link event.
2798 lpfc_sli4_async_link_evt(struct lpfc_hba
*phba
,
2799 struct lpfc_acqe_link
*acqe_link
)
2801 struct lpfc_dmabuf
*mp
;
2807 att_type
= lpfc_sli4_parse_latt_type(phba
, acqe_link
);
2808 if (att_type
!= AT_LINK_DOWN
&& att_type
!= AT_LINK_UP
)
2810 pmb
= (LPFC_MBOXQ_t
*)mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
2812 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
2813 "0395 The mboxq allocation failed\n");
2816 mp
= kmalloc(sizeof(struct lpfc_dmabuf
), GFP_KERNEL
);
2818 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
2819 "0396 The lpfc_dmabuf allocation failed\n");
2822 mp
->virt
= lpfc_mbuf_alloc(phba
, 0, &mp
->phys
);
2824 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
2825 "0397 The mbuf allocation failed\n");
2826 goto out_free_dmabuf
;
2829 /* Cleanup any outstanding ELS commands */
2830 lpfc_els_flush_all_cmd(phba
);
2832 /* Block ELS IOCBs until we have done process link event */
2833 phba
->sli
.ring
[LPFC_ELS_RING
].flag
|= LPFC_STOP_IOCB_EVENT
;
2835 /* Update link event statistics */
2836 phba
->sli
.slistat
.link_event
++;
2838 /* Create pseudo lpfc_handle_latt mailbox command from link ACQE */
2839 lpfc_read_la(phba
, pmb
, mp
);
2840 pmb
->vport
= phba
->pport
;
2842 /* Parse and translate status field */
2844 mb
->mbxStatus
= lpfc_sli4_parse_latt_fault(phba
, acqe_link
);
2846 /* Parse and translate link attention fields */
2847 la
= (READ_LA_VAR
*) &pmb
->u
.mb
.un
.varReadLA
;
2848 la
->eventTag
= acqe_link
->event_tag
;
2849 la
->attType
= att_type
;
2850 la
->UlnkSpeed
= lpfc_sli4_parse_latt_link_speed(phba
, acqe_link
);
2852 /* Fake the the following irrelvant fields */
2853 la
->topology
= TOPOLOGY_PT_PT
;
2854 la
->granted_AL_PA
= 0;
2860 /* Keep the link status for extra SLI4 state machine reference */
2861 phba
->sli4_hba
.link_state
.speed
=
2862 bf_get(lpfc_acqe_link_speed
, acqe_link
);
2863 phba
->sli4_hba
.link_state
.duplex
=
2864 bf_get(lpfc_acqe_link_duplex
, acqe_link
);
2865 phba
->sli4_hba
.link_state
.status
=
2866 bf_get(lpfc_acqe_link_status
, acqe_link
);
2867 phba
->sli4_hba
.link_state
.physical
=
2868 bf_get(lpfc_acqe_link_physical
, acqe_link
);
2869 phba
->sli4_hba
.link_state
.fault
=
2870 bf_get(lpfc_acqe_link_fault
, acqe_link
);
2872 /* Invoke the lpfc_handle_latt mailbox command callback function */
2873 lpfc_mbx_cmpl_read_la(phba
, pmb
);
2880 mempool_free(pmb
, phba
->mbox_mem_pool
);
2884 * lpfc_sli4_async_fcoe_evt - Process the asynchronous fcoe event
2885 * @phba: pointer to lpfc hba data structure.
2886 * @acqe_link: pointer to the async fcoe completion queue entry.
2888 * This routine is to handle the SLI4 asynchronous fcoe event.
2891 lpfc_sli4_async_fcoe_evt(struct lpfc_hba
*phba
,
2892 struct lpfc_acqe_fcoe
*acqe_fcoe
)
2894 uint8_t event_type
= bf_get(lpfc_acqe_fcoe_event_type
, acqe_fcoe
);
2897 switch (event_type
) {
2898 case LPFC_FCOE_EVENT_TYPE_NEW_FCF
:
2899 lpfc_printf_log(phba
, KERN_ERR
, LOG_DISCOVERY
,
2900 "2546 New FCF found index 0x%x tag 0x%x \n",
2901 acqe_fcoe
->fcf_index
,
2902 acqe_fcoe
->event_tag
);
2904 * If the current FCF is in discovered state,
2907 spin_lock_irq(&phba
->hbalock
);
2908 if (phba
->fcf
.fcf_flag
& FCF_DISCOVERED
) {
2909 spin_unlock_irq(&phba
->hbalock
);
2912 spin_unlock_irq(&phba
->hbalock
);
2914 /* Read the FCF table and re-discover SAN. */
2915 rc
= lpfc_sli4_read_fcf_record(phba
,
2916 LPFC_FCOE_FCF_GET_FIRST
);
2918 lpfc_printf_log(phba
, KERN_ERR
, LOG_DISCOVERY
,
2919 "2547 Read FCF record failed 0x%x\n",
2923 case LPFC_FCOE_EVENT_TYPE_FCF_TABLE_FULL
:
2924 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
2925 "2548 FCF Table full count 0x%x tag 0x%x \n",
2926 bf_get(lpfc_acqe_fcoe_fcf_count
, acqe_fcoe
),
2927 acqe_fcoe
->event_tag
);
2930 case LPFC_FCOE_EVENT_TYPE_FCF_DEAD
:
2931 lpfc_printf_log(phba
, KERN_ERR
, LOG_DISCOVERY
,
2932 "2549 FCF disconnected fron network index 0x%x"
2933 " tag 0x%x \n", acqe_fcoe
->fcf_index
,
2934 acqe_fcoe
->event_tag
);
2935 /* If the event is not for currently used fcf do nothing */
2936 if (phba
->fcf
.fcf_indx
!= acqe_fcoe
->fcf_index
)
2939 * Currently, driver support only one FCF - so treat this as
2942 lpfc_linkdown(phba
);
2943 /* Unregister FCF if no devices connected to it */
2944 lpfc_unregister_unused_fcf(phba
);
2948 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
2949 "0288 Unknown FCoE event type 0x%x event tag "
2950 "0x%x\n", event_type
, acqe_fcoe
->event_tag
);
2956 * lpfc_sli4_async_dcbx_evt - Process the asynchronous dcbx event
2957 * @phba: pointer to lpfc hba data structure.
2958 * @acqe_link: pointer to the async dcbx completion queue entry.
2960 * This routine is to handle the SLI4 asynchronous dcbx event.
2963 lpfc_sli4_async_dcbx_evt(struct lpfc_hba
*phba
,
2964 struct lpfc_acqe_dcbx
*acqe_dcbx
)
2966 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
2967 "0290 The SLI4 DCBX asynchronous event is not "
2972 * lpfc_sli4_async_event_proc - Process all the pending asynchronous event
2973 * @phba: pointer to lpfc hba data structure.
2975 * This routine is invoked by the worker thread to process all the pending
2976 * SLI4 asynchronous events.
2978 void lpfc_sli4_async_event_proc(struct lpfc_hba
*phba
)
2980 struct lpfc_cq_event
*cq_event
;
2982 /* First, declare the async event has been handled */
2983 spin_lock_irq(&phba
->hbalock
);
2984 phba
->hba_flag
&= ~ASYNC_EVENT
;
2985 spin_unlock_irq(&phba
->hbalock
);
2986 /* Now, handle all the async events */
2987 while (!list_empty(&phba
->sli4_hba
.sp_asynce_work_queue
)) {
2988 /* Get the first event from the head of the event queue */
2989 spin_lock_irq(&phba
->hbalock
);
2990 list_remove_head(&phba
->sli4_hba
.sp_asynce_work_queue
,
2991 cq_event
, struct lpfc_cq_event
, list
);
2992 spin_unlock_irq(&phba
->hbalock
);
2993 /* Process the asynchronous event */
2994 switch (bf_get(lpfc_trailer_code
, &cq_event
->cqe
.mcqe_cmpl
)) {
2995 case LPFC_TRAILER_CODE_LINK
:
2996 lpfc_sli4_async_link_evt(phba
,
2997 &cq_event
->cqe
.acqe_link
);
2999 case LPFC_TRAILER_CODE_FCOE
:
3000 lpfc_sli4_async_fcoe_evt(phba
,
3001 &cq_event
->cqe
.acqe_fcoe
);
3003 case LPFC_TRAILER_CODE_DCBX
:
3004 lpfc_sli4_async_dcbx_evt(phba
,
3005 &cq_event
->cqe
.acqe_dcbx
);
3008 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
3009 "1804 Invalid asynchrous event code: "
3010 "x%x\n", bf_get(lpfc_trailer_code
,
3011 &cq_event
->cqe
.mcqe_cmpl
));
3014 /* Free the completion event processed to the free pool */
3015 lpfc_sli4_cq_event_release(phba
, cq_event
);
3020 * lpfc_api_table_setup - Set up per hba pci-device group func api jump table
3021 * @phba: pointer to lpfc hba data structure.
3022 * @dev_grp: The HBA PCI-Device group number.
3024 * This routine is invoked to set up the per HBA PCI-Device group function
3025 * API jump table entries.
3027 * Return: 0 if success, otherwise -ENODEV
3030 lpfc_api_table_setup(struct lpfc_hba
*phba
, uint8_t dev_grp
)
3034 /* Set up lpfc PCI-device group */
3035 phba
->pci_dev_grp
= dev_grp
;
3037 /* The LPFC_PCI_DEV_OC uses SLI4 */
3038 if (dev_grp
== LPFC_PCI_DEV_OC
)
3039 phba
->sli_rev
= LPFC_SLI_REV4
;
3041 /* Set up device INIT API function jump table */
3042 rc
= lpfc_init_api_table_setup(phba
, dev_grp
);
3045 /* Set up SCSI API function jump table */
3046 rc
= lpfc_scsi_api_table_setup(phba
, dev_grp
);
3049 /* Set up SLI API function jump table */
3050 rc
= lpfc_sli_api_table_setup(phba
, dev_grp
);
3053 /* Set up MBOX API function jump table */
3054 rc
= lpfc_mbox_api_table_setup(phba
, dev_grp
);
3062 * lpfc_log_intr_mode - Log the active interrupt mode
3063 * @phba: pointer to lpfc hba data structure.
3064 * @intr_mode: active interrupt mode adopted.
3066 * This routine it invoked to log the currently used active interrupt mode
3069 static void lpfc_log_intr_mode(struct lpfc_hba
*phba
, uint32_t intr_mode
)
3071 switch (intr_mode
) {
3073 lpfc_printf_log(phba
, KERN_INFO
, LOG_INIT
,
3074 "0470 Enable INTx interrupt mode.\n");
3077 lpfc_printf_log(phba
, KERN_INFO
, LOG_INIT
,
3078 "0481 Enabled MSI interrupt mode.\n");
3081 lpfc_printf_log(phba
, KERN_INFO
, LOG_INIT
,
3082 "0480 Enabled MSI-X interrupt mode.\n");
3085 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
3086 "0482 Illegal interrupt mode.\n");
3093 * lpfc_enable_pci_dev - Enable a generic PCI device.
3094 * @phba: pointer to lpfc hba data structure.
3096 * This routine is invoked to enable the PCI device that is common to all
3101 * other values - error
3104 lpfc_enable_pci_dev(struct lpfc_hba
*phba
)
3106 struct pci_dev
*pdev
;
3109 /* Obtain PCI device reference */
3113 pdev
= phba
->pcidev
;
3114 /* Select PCI BARs */
3115 bars
= pci_select_bars(pdev
, IORESOURCE_MEM
);
3116 /* Enable PCI device */
3117 if (pci_enable_device_mem(pdev
))
3119 /* Request PCI resource for the device */
3120 if (pci_request_selected_regions(pdev
, bars
, LPFC_DRIVER_NAME
))
3121 goto out_disable_device
;
3122 /* Set up device as PCI master and save state for EEH */
3123 pci_set_master(pdev
);
3124 pci_try_set_mwi(pdev
);
3125 pci_save_state(pdev
);
3130 pci_disable_device(pdev
);
3136 * lpfc_disable_pci_dev - Disable a generic PCI device.
3137 * @phba: pointer to lpfc hba data structure.
3139 * This routine is invoked to disable the PCI device that is common to all
3143 lpfc_disable_pci_dev(struct lpfc_hba
*phba
)
3145 struct pci_dev
*pdev
;
3148 /* Obtain PCI device reference */
3152 pdev
= phba
->pcidev
;
3153 /* Select PCI BARs */
3154 bars
= pci_select_bars(pdev
, IORESOURCE_MEM
);
3155 /* Release PCI resource and disable PCI device */
3156 pci_release_selected_regions(pdev
, bars
);
3157 pci_disable_device(pdev
);
3158 /* Null out PCI private reference to driver */
3159 pci_set_drvdata(pdev
, NULL
);
3165 * lpfc_reset_hba - Reset a hba
3166 * @phba: pointer to lpfc hba data structure.
3168 * This routine is invoked to reset a hba device. It brings the HBA
3169 * offline, performs a board restart, and then brings the board back
3170 * online. The lpfc_offline calls lpfc_sli_hba_down which will clean up
3171 * on outstanding mailbox commands.
3174 lpfc_reset_hba(struct lpfc_hba
*phba
)
3176 /* If resets are disabled then set error state and return. */
3177 if (!phba
->cfg_enable_hba_reset
) {
3178 phba
->link_state
= LPFC_HBA_ERROR
;
3181 lpfc_offline_prep(phba
);
3183 lpfc_sli_brdrestart(phba
);
3185 lpfc_unblock_mgmt_io(phba
);
3189 * lpfc_sli_driver_resource_setup - Setup driver internal resources for SLI3 dev.
3190 * @phba: pointer to lpfc hba data structure.
3192 * This routine is invoked to set up the driver internal resources specific to
3193 * support the SLI-3 HBA device it attached to.
3197 * other values - error
3200 lpfc_sli_driver_resource_setup(struct lpfc_hba
*phba
)
3202 struct lpfc_sli
*psli
;
3205 * Initialize timers used by driver
3208 /* Heartbeat timer */
3209 init_timer(&phba
->hb_tmofunc
);
3210 phba
->hb_tmofunc
.function
= lpfc_hb_timeout
;
3211 phba
->hb_tmofunc
.data
= (unsigned long)phba
;
3214 /* MBOX heartbeat timer */
3215 init_timer(&psli
->mbox_tmo
);
3216 psli
->mbox_tmo
.function
= lpfc_mbox_timeout
;
3217 psli
->mbox_tmo
.data
= (unsigned long) phba
;
3218 /* FCP polling mode timer */
3219 init_timer(&phba
->fcp_poll_timer
);
3220 phba
->fcp_poll_timer
.function
= lpfc_poll_timeout
;
3221 phba
->fcp_poll_timer
.data
= (unsigned long) phba
;
3222 /* Fabric block timer */
3223 init_timer(&phba
->fabric_block_timer
);
3224 phba
->fabric_block_timer
.function
= lpfc_fabric_block_timeout
;
3225 phba
->fabric_block_timer
.data
= (unsigned long) phba
;
3226 /* EA polling mode timer */
3227 init_timer(&phba
->eratt_poll
);
3228 phba
->eratt_poll
.function
= lpfc_poll_eratt
;
3229 phba
->eratt_poll
.data
= (unsigned long) phba
;
3231 /* Host attention work mask setup */
3232 phba
->work_ha_mask
= (HA_ERATT
| HA_MBATT
| HA_LATT
);
3233 phba
->work_ha_mask
|= (HA_RXMASK
<< (LPFC_ELS_RING
* 4));
3235 /* Get all the module params for configuring this host */
3236 lpfc_get_cfgparam(phba
);
3238 * Since the sg_tablesize is module parameter, the sg_dma_buf_size
3239 * used to create the sg_dma_buf_pool must be dynamically calculated.
3240 * 2 segments are added since the IOCB needs a command and response bde.
3242 phba
->cfg_sg_dma_buf_size
= sizeof(struct fcp_cmnd
) +
3243 sizeof(struct fcp_rsp
) +
3244 ((phba
->cfg_sg_seg_cnt
+ 2) * sizeof(struct ulp_bde64
));
3246 if (phba
->cfg_enable_bg
) {
3247 phba
->cfg_sg_seg_cnt
= LPFC_MAX_SG_SEG_CNT
;
3248 phba
->cfg_sg_dma_buf_size
+=
3249 phba
->cfg_prot_sg_seg_cnt
* sizeof(struct ulp_bde64
);
3252 /* Also reinitialize the host templates with new values. */
3253 lpfc_vport_template
.sg_tablesize
= phba
->cfg_sg_seg_cnt
;
3254 lpfc_template
.sg_tablesize
= phba
->cfg_sg_seg_cnt
;
3256 phba
->max_vpi
= LPFC_MAX_VPI
;
3257 /* This will be set to correct value after config_port mbox */
3258 phba
->max_vports
= 0;
3261 * Initialize the SLI Layer to run with lpfc HBAs.
3263 lpfc_sli_setup(phba
);
3264 lpfc_sli_queue_setup(phba
);
3266 /* Allocate device driver memory */
3267 if (lpfc_mem_alloc(phba
, BPL_ALIGN_SZ
))
3274 * lpfc_sli_driver_resource_unset - Unset drvr internal resources for SLI3 dev
3275 * @phba: pointer to lpfc hba data structure.
3277 * This routine is invoked to unset the driver internal resources set up
3278 * specific for supporting the SLI-3 HBA device it attached to.
3281 lpfc_sli_driver_resource_unset(struct lpfc_hba
*phba
)
3283 /* Free device driver memory allocated */
3284 lpfc_mem_free_all(phba
);
3290 * lpfc_sli4_driver_resource_setup - Setup drvr internal resources for SLI4 dev
3291 * @phba: pointer to lpfc hba data structure.
3293 * This routine is invoked to set up the driver internal resources specific to
3294 * support the SLI-4 HBA device it attached to.
3298 * other values - error
3301 lpfc_sli4_driver_resource_setup(struct lpfc_hba
*phba
)
3303 struct lpfc_sli
*psli
;
3307 /* Before proceed, wait for POST done and device ready */
3308 rc
= lpfc_sli4_post_status_check(phba
);
3313 * Initialize timers used by driver
3316 /* Heartbeat timer */
3317 init_timer(&phba
->hb_tmofunc
);
3318 phba
->hb_tmofunc
.function
= lpfc_hb_timeout
;
3319 phba
->hb_tmofunc
.data
= (unsigned long)phba
;
3322 /* MBOX heartbeat timer */
3323 init_timer(&psli
->mbox_tmo
);
3324 psli
->mbox_tmo
.function
= lpfc_mbox_timeout
;
3325 psli
->mbox_tmo
.data
= (unsigned long) phba
;
3326 /* Fabric block timer */
3327 init_timer(&phba
->fabric_block_timer
);
3328 phba
->fabric_block_timer
.function
= lpfc_fabric_block_timeout
;
3329 phba
->fabric_block_timer
.data
= (unsigned long) phba
;
3330 /* EA polling mode timer */
3331 init_timer(&phba
->eratt_poll
);
3332 phba
->eratt_poll
.function
= lpfc_poll_eratt
;
3333 phba
->eratt_poll
.data
= (unsigned long) phba
;
3335 * We need to do a READ_CONFIG mailbox command here before
3336 * calling lpfc_get_cfgparam. For VFs this will report the
3337 * MAX_XRI, MAX_VPI, MAX_RPI, MAX_IOCB, and MAX_VFI settings.
3338 * All of the resources allocated
3339 * for this Port are tied to these values.
3341 /* Get all the module params for configuring this host */
3342 lpfc_get_cfgparam(phba
);
3343 phba
->max_vpi
= LPFC_MAX_VPI
;
3344 /* This will be set to correct value after the read_config mbox */
3345 phba
->max_vports
= 0;
3347 /* Program the default value of vlan_id and fc_map */
3348 phba
->valid_vlan
= 0;
3349 phba
->fc_map
[0] = LPFC_FCOE_FCF_MAP0
;
3350 phba
->fc_map
[1] = LPFC_FCOE_FCF_MAP1
;
3351 phba
->fc_map
[2] = LPFC_FCOE_FCF_MAP2
;
3354 * Since the sg_tablesize is module parameter, the sg_dma_buf_size
3355 * used to create the sg_dma_buf_pool must be dynamically calculated.
3356 * 2 segments are added since the IOCB needs a command and response bde.
3357 * To insure that the scsi sgl does not cross a 4k page boundary only
3358 * sgl sizes of 1k, 2k, 4k, and 8k are supported.
3359 * Table of sgl sizes and seg_cnt:
3360 * sgl size, sg_seg_cnt total seg
3365 * cmd(32) + rsp(160) + (52 * sizeof(sli4_sge)) = 1024
3366 * cmd(32) + rsp(160) + (116 * sizeof(sli4_sge)) = 2048
3367 * cmd(32) + rsp(160) + (244 * sizeof(sli4_sge)) = 4096
3368 * cmd(32) + rsp(160) + (500 * sizeof(sli4_sge)) = 8192
3370 if (phba
->cfg_sg_seg_cnt
<= LPFC_DEFAULT_SG_SEG_CNT
)
3371 phba
->cfg_sg_seg_cnt
= 50;
3372 else if (phba
->cfg_sg_seg_cnt
<= 114)
3373 phba
->cfg_sg_seg_cnt
= 114;
3374 else if (phba
->cfg_sg_seg_cnt
<= 242)
3375 phba
->cfg_sg_seg_cnt
= 242;
3377 phba
->cfg_sg_seg_cnt
= 498;
3379 phba
->cfg_sg_dma_buf_size
= sizeof(struct fcp_cmnd
)
3380 + sizeof(struct fcp_rsp
);
3381 phba
->cfg_sg_dma_buf_size
+=
3382 ((phba
->cfg_sg_seg_cnt
+ 2) * sizeof(struct sli4_sge
));
3384 /* Initialize buffer queue management fields */
3385 hbq_count
= lpfc_sli_hbq_count();
3386 for (i
= 0; i
< hbq_count
; ++i
)
3387 INIT_LIST_HEAD(&phba
->hbqs
[i
].hbq_buffer_list
);
3388 INIT_LIST_HEAD(&phba
->rb_pend_list
);
3389 phba
->hbqs
[LPFC_ELS_HBQ
].hbq_alloc_buffer
= lpfc_sli4_rb_alloc
;
3390 phba
->hbqs
[LPFC_ELS_HBQ
].hbq_free_buffer
= lpfc_sli4_rb_free
;
3393 * Initialize the SLI Layer to run with lpfc SLI4 HBAs.
3395 /* Initialize the Abort scsi buffer list used by driver */
3396 spin_lock_init(&phba
->sli4_hba
.abts_scsi_buf_list_lock
);
3397 INIT_LIST_HEAD(&phba
->sli4_hba
.lpfc_abts_scsi_buf_list
);
3398 /* This abort list used by worker thread */
3399 spin_lock_init(&phba
->sli4_hba
.abts_sgl_list_lock
);
3402 * Initialize dirver internal slow-path work queues
3405 /* Driver internel slow-path CQ Event pool */
3406 INIT_LIST_HEAD(&phba
->sli4_hba
.sp_cqe_event_pool
);
3407 /* Response IOCB work queue list */
3408 INIT_LIST_HEAD(&phba
->sli4_hba
.sp_rspiocb_work_queue
);
3409 /* Asynchronous event CQ Event work queue list */
3410 INIT_LIST_HEAD(&phba
->sli4_hba
.sp_asynce_work_queue
);
3411 /* Fast-path XRI aborted CQ Event work queue list */
3412 INIT_LIST_HEAD(&phba
->sli4_hba
.sp_fcp_xri_aborted_work_queue
);
3413 /* Slow-path XRI aborted CQ Event work queue list */
3414 INIT_LIST_HEAD(&phba
->sli4_hba
.sp_els_xri_aborted_work_queue
);
3415 /* Receive queue CQ Event work queue list */
3416 INIT_LIST_HEAD(&phba
->sli4_hba
.sp_unsol_work_queue
);
3418 /* Initialize the driver internal SLI layer lists. */
3419 lpfc_sli_setup(phba
);
3420 lpfc_sli_queue_setup(phba
);
3422 /* Allocate device driver memory */
3423 rc
= lpfc_mem_alloc(phba
, SGL_ALIGN_SZ
);
3427 /* Create the bootstrap mailbox command */
3428 rc
= lpfc_create_bootstrap_mbox(phba
);
3432 /* Set up the host's endian order with the device. */
3433 rc
= lpfc_setup_endian_order(phba
);
3435 goto out_free_bsmbx
;
3437 /* Set up the hba's configuration parameters. */
3438 rc
= lpfc_sli4_read_config(phba
);
3440 goto out_free_bsmbx
;
3442 /* Perform a function reset */
3443 rc
= lpfc_pci_function_reset(phba
);
3445 goto out_free_bsmbx
;
3447 /* Create all the SLI4 queues */
3448 rc
= lpfc_sli4_queue_create(phba
);
3450 goto out_free_bsmbx
;
3452 /* Create driver internal CQE event pool */
3453 rc
= lpfc_sli4_cq_event_pool_create(phba
);
3455 goto out_destroy_queue
;
3457 /* Initialize and populate the iocb list per host */
3458 rc
= lpfc_init_sgl_list(phba
);
3460 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
3461 "1400 Failed to initialize sgl list.\n");
3462 goto out_destroy_cq_event_pool
;
3464 rc
= lpfc_init_active_sgl_array(phba
);
3466 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
3467 "1430 Failed to initialize sgl list.\n");
3468 goto out_free_sgl_list
;
3471 rc
= lpfc_sli4_init_rpi_hdrs(phba
);
3473 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
3474 "1432 Failed to initialize rpi headers.\n");
3475 goto out_free_active_sgl
;
3478 phba
->sli4_hba
.fcp_eq_hdl
= kzalloc((sizeof(struct lpfc_fcp_eq_hdl
) *
3479 phba
->cfg_fcp_eq_count
), GFP_KERNEL
);
3480 if (!phba
->sli4_hba
.fcp_eq_hdl
) {
3481 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
3482 "2572 Failed allocate memory for fast-path "
3483 "per-EQ handle array\n");
3484 goto out_remove_rpi_hdrs
;
3487 phba
->sli4_hba
.msix_entries
= kzalloc((sizeof(struct msix_entry
) *
3488 phba
->sli4_hba
.cfg_eqn
), GFP_KERNEL
);
3489 if (!phba
->sli4_hba
.msix_entries
) {
3490 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
3491 "2573 Failed allocate memory for msi-x "
3492 "interrupt vector entries\n");
3493 goto out_free_fcp_eq_hdl
;
3498 out_free_fcp_eq_hdl
:
3499 kfree(phba
->sli4_hba
.fcp_eq_hdl
);
3500 out_remove_rpi_hdrs
:
3501 lpfc_sli4_remove_rpi_hdrs(phba
);
3502 out_free_active_sgl
:
3503 lpfc_free_active_sgl(phba
);
3505 lpfc_free_sgl_list(phba
);
3506 out_destroy_cq_event_pool
:
3507 lpfc_sli4_cq_event_pool_destroy(phba
);
3509 lpfc_sli4_queue_destroy(phba
);
3511 lpfc_destroy_bootstrap_mbox(phba
);
3513 lpfc_mem_free(phba
);
3518 * lpfc_sli4_driver_resource_unset - Unset drvr internal resources for SLI4 dev
3519 * @phba: pointer to lpfc hba data structure.
3521 * This routine is invoked to unset the driver internal resources set up
3522 * specific for supporting the SLI-4 HBA device it attached to.
3525 lpfc_sli4_driver_resource_unset(struct lpfc_hba
*phba
)
3527 struct lpfc_fcf_conn_entry
*conn_entry
, *next_conn_entry
;
3529 /* unregister default FCFI from the HBA */
3530 lpfc_sli4_fcfi_unreg(phba
, phba
->fcf
.fcfi
);
3532 /* Free the default FCR table */
3533 lpfc_sli_remove_dflt_fcf(phba
);
3535 /* Free memory allocated for msi-x interrupt vector entries */
3536 kfree(phba
->sli4_hba
.msix_entries
);
3538 /* Free memory allocated for fast-path work queue handles */
3539 kfree(phba
->sli4_hba
.fcp_eq_hdl
);
3541 /* Free the allocated rpi headers. */
3542 lpfc_sli4_remove_rpi_hdrs(phba
);
3543 lpfc_sli4_remove_rpis(phba
);
3545 /* Free the ELS sgl list */
3546 lpfc_free_active_sgl(phba
);
3547 lpfc_free_sgl_list(phba
);
3549 /* Free the SCSI sgl management array */
3550 kfree(phba
->sli4_hba
.lpfc_scsi_psb_array
);
3552 /* Free the SLI4 queues */
3553 lpfc_sli4_queue_destroy(phba
);
3555 /* Free the completion queue EQ event pool */
3556 lpfc_sli4_cq_event_release_all(phba
);
3557 lpfc_sli4_cq_event_pool_destroy(phba
);
3559 /* Reset SLI4 HBA FCoE function */
3560 lpfc_pci_function_reset(phba
);
3562 /* Free the bsmbx region. */
3563 lpfc_destroy_bootstrap_mbox(phba
);
3565 /* Free the SLI Layer memory with SLI4 HBAs */
3566 lpfc_mem_free_all(phba
);
3568 /* Free the current connect table */
3569 list_for_each_entry_safe(conn_entry
, next_conn_entry
,
3570 &phba
->fcf_conn_rec_list
, list
)
3577 * lpfc_init_api_table_setup - Set up init api fucntion jump table
3578 * @phba: The hba struct for which this call is being executed.
3579 * @dev_grp: The HBA PCI-Device group number.
3581 * This routine sets up the device INIT interface API function jump table
3584 * Returns: 0 - success, -ENODEV - failure.
3587 lpfc_init_api_table_setup(struct lpfc_hba
*phba
, uint8_t dev_grp
)
3590 case LPFC_PCI_DEV_LP
:
3591 phba
->lpfc_hba_down_post
= lpfc_hba_down_post_s3
;
3592 phba
->lpfc_handle_eratt
= lpfc_handle_eratt_s3
;
3593 phba
->lpfc_stop_port
= lpfc_stop_port_s3
;
3595 case LPFC_PCI_DEV_OC
:
3596 phba
->lpfc_hba_down_post
= lpfc_hba_down_post_s4
;
3597 phba
->lpfc_handle_eratt
= lpfc_handle_eratt_s4
;
3598 phba
->lpfc_stop_port
= lpfc_stop_port_s4
;
3601 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
3602 "1431 Invalid HBA PCI-device group: 0x%x\n",
3611 * lpfc_setup_driver_resource_phase1 - Phase1 etup driver internal resources.
3612 * @phba: pointer to lpfc hba data structure.
3614 * This routine is invoked to set up the driver internal resources before the
3615 * device specific resource setup to support the HBA device it attached to.
3619 * other values - error
3622 lpfc_setup_driver_resource_phase1(struct lpfc_hba
*phba
)
3625 * Driver resources common to all SLI revisions
3627 atomic_set(&phba
->fast_event_count
, 0);
3628 spin_lock_init(&phba
->hbalock
);
3630 /* Initialize ndlp management spinlock */
3631 spin_lock_init(&phba
->ndlp_lock
);
3633 INIT_LIST_HEAD(&phba
->port_list
);
3634 INIT_LIST_HEAD(&phba
->work_list
);
3635 init_waitqueue_head(&phba
->wait_4_mlo_m_q
);
3637 /* Initialize the wait queue head for the kernel thread */
3638 init_waitqueue_head(&phba
->work_waitq
);
3640 /* Initialize the scsi buffer list used by driver for scsi IO */
3641 spin_lock_init(&phba
->scsi_buf_list_lock
);
3642 INIT_LIST_HEAD(&phba
->lpfc_scsi_buf_list
);
3644 /* Initialize the fabric iocb list */
3645 INIT_LIST_HEAD(&phba
->fabric_iocb_list
);
3647 /* Initialize list to save ELS buffers */
3648 INIT_LIST_HEAD(&phba
->elsbuf
);
3650 /* Initialize FCF connection rec list */
3651 INIT_LIST_HEAD(&phba
->fcf_conn_rec_list
);
3657 * lpfc_setup_driver_resource_phase2 - Phase2 setup driver internal resources.
3658 * @phba: pointer to lpfc hba data structure.
3660 * This routine is invoked to set up the driver internal resources after the
3661 * device specific resource setup to support the HBA device it attached to.
3665 * other values - error
3668 lpfc_setup_driver_resource_phase2(struct lpfc_hba
*phba
)
3672 /* Startup the kernel thread for this host adapter. */
3673 phba
->worker_thread
= kthread_run(lpfc_do_work
, phba
,
3674 "lpfc_worker_%d", phba
->brd_no
);
3675 if (IS_ERR(phba
->worker_thread
)) {
3676 error
= PTR_ERR(phba
->worker_thread
);
3684 * lpfc_unset_driver_resource_phase2 - Phase2 unset driver internal resources.
3685 * @phba: pointer to lpfc hba data structure.
3687 * This routine is invoked to unset the driver internal resources set up after
3688 * the device specific resource setup for supporting the HBA device it
3692 lpfc_unset_driver_resource_phase2(struct lpfc_hba
*phba
)
3694 /* Stop kernel worker thread */
3695 kthread_stop(phba
->worker_thread
);
3699 * lpfc_free_iocb_list - Free iocb list.
3700 * @phba: pointer to lpfc hba data structure.
3702 * This routine is invoked to free the driver's IOCB list and memory.
3705 lpfc_free_iocb_list(struct lpfc_hba
*phba
)
3707 struct lpfc_iocbq
*iocbq_entry
= NULL
, *iocbq_next
= NULL
;
3709 spin_lock_irq(&phba
->hbalock
);
3710 list_for_each_entry_safe(iocbq_entry
, iocbq_next
,
3711 &phba
->lpfc_iocb_list
, list
) {
3712 list_del(&iocbq_entry
->list
);
3714 phba
->total_iocbq_bufs
--;
3716 spin_unlock_irq(&phba
->hbalock
);
3722 * lpfc_init_iocb_list - Allocate and initialize iocb list.
3723 * @phba: pointer to lpfc hba data structure.
3725 * This routine is invoked to allocate and initizlize the driver's IOCB
3726 * list and set up the IOCB tag array accordingly.
3730 * other values - error
3733 lpfc_init_iocb_list(struct lpfc_hba
*phba
, int iocb_count
)
3735 struct lpfc_iocbq
*iocbq_entry
= NULL
;
3739 /* Initialize and populate the iocb list per host. */
3740 INIT_LIST_HEAD(&phba
->lpfc_iocb_list
);
3741 for (i
= 0; i
< iocb_count
; i
++) {
3742 iocbq_entry
= kzalloc(sizeof(struct lpfc_iocbq
), GFP_KERNEL
);
3743 if (iocbq_entry
== NULL
) {
3744 printk(KERN_ERR
"%s: only allocated %d iocbs of "
3745 "expected %d count. Unloading driver.\n",
3746 __func__
, i
, LPFC_IOCB_LIST_CNT
);
3747 goto out_free_iocbq
;
3750 iotag
= lpfc_sli_next_iotag(phba
, iocbq_entry
);
3753 printk(KERN_ERR
"%s: failed to allocate IOTAG. "
3754 "Unloading driver.\n", __func__
);
3755 goto out_free_iocbq
;
3757 iocbq_entry
->sli4_xritag
= NO_XRI
;
3759 spin_lock_irq(&phba
->hbalock
);
3760 list_add(&iocbq_entry
->list
, &phba
->lpfc_iocb_list
);
3761 phba
->total_iocbq_bufs
++;
3762 spin_unlock_irq(&phba
->hbalock
);
3768 lpfc_free_iocb_list(phba
);
3774 * lpfc_free_sgl_list - Free sgl list.
3775 * @phba: pointer to lpfc hba data structure.
3777 * This routine is invoked to free the driver's sgl list and memory.
3780 lpfc_free_sgl_list(struct lpfc_hba
*phba
)
3782 struct lpfc_sglq
*sglq_entry
= NULL
, *sglq_next
= NULL
;
3783 LIST_HEAD(sglq_list
);
3786 spin_lock_irq(&phba
->hbalock
);
3787 list_splice_init(&phba
->sli4_hba
.lpfc_sgl_list
, &sglq_list
);
3788 spin_unlock_irq(&phba
->hbalock
);
3790 list_for_each_entry_safe(sglq_entry
, sglq_next
,
3792 list_del(&sglq_entry
->list
);
3793 lpfc_mbuf_free(phba
, sglq_entry
->virt
, sglq_entry
->phys
);
3795 phba
->sli4_hba
.total_sglq_bufs
--;
3797 rc
= lpfc_sli4_remove_all_sgl_pages(phba
);
3799 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
3800 "2005 Unable to deregister pages from HBA: %x", rc
);
3802 kfree(phba
->sli4_hba
.lpfc_els_sgl_array
);
3806 * lpfc_init_active_sgl_array - Allocate the buf to track active ELS XRIs.
3807 * @phba: pointer to lpfc hba data structure.
3809 * This routine is invoked to allocate the driver's active sgl memory.
3810 * This array will hold the sglq_entry's for active IOs.
3813 lpfc_init_active_sgl_array(struct lpfc_hba
*phba
)
3816 size
= sizeof(struct lpfc_sglq
*);
3817 size
*= phba
->sli4_hba
.max_cfg_param
.max_xri
;
3819 phba
->sli4_hba
.lpfc_sglq_active_list
=
3820 kzalloc(size
, GFP_KERNEL
);
3821 if (!phba
->sli4_hba
.lpfc_sglq_active_list
)
3827 * lpfc_free_active_sgl - Free the buf that tracks active ELS XRIs.
3828 * @phba: pointer to lpfc hba data structure.
3830 * This routine is invoked to walk through the array of active sglq entries
3831 * and free all of the resources.
3832 * This is just a place holder for now.
3835 lpfc_free_active_sgl(struct lpfc_hba
*phba
)
3837 kfree(phba
->sli4_hba
.lpfc_sglq_active_list
);
3841 * lpfc_init_sgl_list - Allocate and initialize sgl list.
3842 * @phba: pointer to lpfc hba data structure.
3844 * This routine is invoked to allocate and initizlize the driver's sgl
3845 * list and set up the sgl xritag tag array accordingly.
3849 * other values - error
3852 lpfc_init_sgl_list(struct lpfc_hba
*phba
)
3854 struct lpfc_sglq
*sglq_entry
= NULL
;
3858 els_xri_cnt
= lpfc_sli4_get_els_iocb_cnt(phba
);
3859 lpfc_printf_log(phba
, KERN_INFO
, LOG_SLI
,
3860 "2400 lpfc_init_sgl_list els %d.\n",
3862 /* Initialize and populate the sglq list per host/VF. */
3863 INIT_LIST_HEAD(&phba
->sli4_hba
.lpfc_sgl_list
);
3864 INIT_LIST_HEAD(&phba
->sli4_hba
.lpfc_abts_els_sgl_list
);
3866 /* Sanity check on XRI management */
3867 if (phba
->sli4_hba
.max_cfg_param
.max_xri
<= els_xri_cnt
) {
3868 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
3869 "2562 No room left for SCSI XRI allocation: "
3870 "max_xri=%d, els_xri=%d\n",
3871 phba
->sli4_hba
.max_cfg_param
.max_xri
,
3876 /* Allocate memory for the ELS XRI management array */
3877 phba
->sli4_hba
.lpfc_els_sgl_array
=
3878 kzalloc((sizeof(struct lpfc_sglq
*) * els_xri_cnt
),
3881 if (!phba
->sli4_hba
.lpfc_els_sgl_array
) {
3882 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
3883 "2401 Failed to allocate memory for ELS "
3884 "XRI management array of size %d.\n",
3889 /* Keep the SCSI XRI into the XRI management array */
3890 phba
->sli4_hba
.scsi_xri_max
=
3891 phba
->sli4_hba
.max_cfg_param
.max_xri
- els_xri_cnt
;
3892 phba
->sli4_hba
.scsi_xri_cnt
= 0;
3894 phba
->sli4_hba
.lpfc_scsi_psb_array
=
3895 kzalloc((sizeof(struct lpfc_scsi_buf
*) *
3896 phba
->sli4_hba
.scsi_xri_max
), GFP_KERNEL
);
3898 if (!phba
->sli4_hba
.lpfc_scsi_psb_array
) {
3899 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
3900 "2563 Failed to allocate memory for SCSI "
3901 "XRI management array of size %d.\n",
3902 phba
->sli4_hba
.scsi_xri_max
);
3903 kfree(phba
->sli4_hba
.lpfc_els_sgl_array
);
3907 for (i
= 0; i
< els_xri_cnt
; i
++) {
3908 sglq_entry
= kzalloc(sizeof(struct lpfc_sglq
), GFP_KERNEL
);
3909 if (sglq_entry
== NULL
) {
3910 printk(KERN_ERR
"%s: only allocated %d sgls of "
3911 "expected %d count. Unloading driver.\n",
3912 __func__
, i
, els_xri_cnt
);
3916 sglq_entry
->sli4_xritag
= lpfc_sli4_next_xritag(phba
);
3917 if (sglq_entry
->sli4_xritag
== NO_XRI
) {
3919 printk(KERN_ERR
"%s: failed to allocate XRI.\n"
3920 "Unloading driver.\n", __func__
);
3923 sglq_entry
->buff_type
= GEN_BUFF_TYPE
;
3924 sglq_entry
->virt
= lpfc_mbuf_alloc(phba
, 0, &sglq_entry
->phys
);
3925 if (sglq_entry
->virt
== NULL
) {
3927 printk(KERN_ERR
"%s: failed to allocate mbuf.\n"
3928 "Unloading driver.\n", __func__
);
3931 sglq_entry
->sgl
= sglq_entry
->virt
;
3932 memset(sglq_entry
->sgl
, 0, LPFC_BPL_SIZE
);
3934 /* The list order is used by later block SGL registraton */
3935 spin_lock_irq(&phba
->hbalock
);
3936 list_add_tail(&sglq_entry
->list
, &phba
->sli4_hba
.lpfc_sgl_list
);
3937 phba
->sli4_hba
.lpfc_els_sgl_array
[i
] = sglq_entry
;
3938 phba
->sli4_hba
.total_sglq_bufs
++;
3939 spin_unlock_irq(&phba
->hbalock
);
3944 kfree(phba
->sli4_hba
.lpfc_scsi_psb_array
);
3945 lpfc_free_sgl_list(phba
);
3950 * lpfc_sli4_init_rpi_hdrs - Post the rpi header memory region to the port
3951 * @phba: pointer to lpfc hba data structure.
3953 * This routine is invoked to post rpi header templates to the
3954 * HBA consistent with the SLI-4 interface spec. This routine
3955 * posts a PAGE_SIZE memory region to the port to hold up to
3956 * PAGE_SIZE modulo 64 rpi context headers.
3957 * No locks are held here because this is an initialization routine
3958 * called only from probe or lpfc_online when interrupts are not
3959 * enabled and the driver is reinitializing the device.
3963 * ENOMEM - No availble memory
3964 * EIO - The mailbox failed to complete successfully.
3967 lpfc_sli4_init_rpi_hdrs(struct lpfc_hba
*phba
)
3972 struct lpfc_rpi_hdr
*rpi_hdr
;
3974 INIT_LIST_HEAD(&phba
->sli4_hba
.lpfc_rpi_hdr_list
);
3977 * Provision an rpi bitmask range for discovery. The total count
3978 * is the difference between max and base + 1.
3980 rpi_count
= phba
->sli4_hba
.max_cfg_param
.rpi_base
+
3981 phba
->sli4_hba
.max_cfg_param
.max_rpi
- 1;
3983 longs
= ((rpi_count
) + BITS_PER_LONG
- 1) / BITS_PER_LONG
;
3984 phba
->sli4_hba
.rpi_bmask
= kzalloc(longs
* sizeof(unsigned long),
3986 if (!phba
->sli4_hba
.rpi_bmask
)
3989 rpi_hdr
= lpfc_sli4_create_rpi_hdr(phba
);
3991 lpfc_printf_log(phba
, KERN_ERR
, LOG_MBOX
| LOG_SLI
,
3992 "0391 Error during rpi post operation\n");
3993 lpfc_sli4_remove_rpis(phba
);
4001 * lpfc_sli4_create_rpi_hdr - Allocate an rpi header memory region
4002 * @phba: pointer to lpfc hba data structure.
4004 * This routine is invoked to allocate a single 4KB memory region to
4005 * support rpis and stores them in the phba. This single region
4006 * provides support for up to 64 rpis. The region is used globally
4010 * A valid rpi hdr on success.
4011 * A NULL pointer on any failure.
4013 struct lpfc_rpi_hdr
*
4014 lpfc_sli4_create_rpi_hdr(struct lpfc_hba
*phba
)
4016 uint16_t rpi_limit
, curr_rpi_range
;
4017 struct lpfc_dmabuf
*dmabuf
;
4018 struct lpfc_rpi_hdr
*rpi_hdr
;
4020 rpi_limit
= phba
->sli4_hba
.max_cfg_param
.rpi_base
+
4021 phba
->sli4_hba
.max_cfg_param
.max_rpi
- 1;
4023 spin_lock_irq(&phba
->hbalock
);
4024 curr_rpi_range
= phba
->sli4_hba
.next_rpi
;
4025 spin_unlock_irq(&phba
->hbalock
);
4028 * The port has a limited number of rpis. The increment here
4029 * is LPFC_RPI_HDR_COUNT - 1 to account for the starting value
4030 * and to allow the full max_rpi range per port.
4032 if ((curr_rpi_range
+ (LPFC_RPI_HDR_COUNT
- 1)) > rpi_limit
)
4036 * First allocate the protocol header region for the port. The
4037 * port expects a 4KB DMA-mapped memory region that is 4K aligned.
4039 dmabuf
= kzalloc(sizeof(struct lpfc_dmabuf
), GFP_KERNEL
);
4043 dmabuf
->virt
= dma_alloc_coherent(&phba
->pcidev
->dev
,
4044 LPFC_HDR_TEMPLATE_SIZE
,
4047 if (!dmabuf
->virt
) {
4049 goto err_free_dmabuf
;
4052 memset(dmabuf
->virt
, 0, LPFC_HDR_TEMPLATE_SIZE
);
4053 if (!IS_ALIGNED(dmabuf
->phys
, LPFC_HDR_TEMPLATE_SIZE
)) {
4055 goto err_free_coherent
;
4058 /* Save the rpi header data for cleanup later. */
4059 rpi_hdr
= kzalloc(sizeof(struct lpfc_rpi_hdr
), GFP_KERNEL
);
4061 goto err_free_coherent
;
4063 rpi_hdr
->dmabuf
= dmabuf
;
4064 rpi_hdr
->len
= LPFC_HDR_TEMPLATE_SIZE
;
4065 rpi_hdr
->page_count
= 1;
4066 spin_lock_irq(&phba
->hbalock
);
4067 rpi_hdr
->start_rpi
= phba
->sli4_hba
.next_rpi
;
4068 list_add_tail(&rpi_hdr
->list
, &phba
->sli4_hba
.lpfc_rpi_hdr_list
);
4071 * The next_rpi stores the next module-64 rpi value to post
4072 * in any subsequent rpi memory region postings.
4074 phba
->sli4_hba
.next_rpi
+= LPFC_RPI_HDR_COUNT
;
4075 spin_unlock_irq(&phba
->hbalock
);
4079 dma_free_coherent(&phba
->pcidev
->dev
, LPFC_HDR_TEMPLATE_SIZE
,
4080 dmabuf
->virt
, dmabuf
->phys
);
4087 * lpfc_sli4_remove_rpi_hdrs - Remove all rpi header memory regions
4088 * @phba: pointer to lpfc hba data structure.
4090 * This routine is invoked to remove all memory resources allocated
4091 * to support rpis. This routine presumes the caller has released all
4092 * rpis consumed by fabric or port logins and is prepared to have
4093 * the header pages removed.
4096 lpfc_sli4_remove_rpi_hdrs(struct lpfc_hba
*phba
)
4098 struct lpfc_rpi_hdr
*rpi_hdr
, *next_rpi_hdr
;
4100 list_for_each_entry_safe(rpi_hdr
, next_rpi_hdr
,
4101 &phba
->sli4_hba
.lpfc_rpi_hdr_list
, list
) {
4102 list_del(&rpi_hdr
->list
);
4103 dma_free_coherent(&phba
->pcidev
->dev
, rpi_hdr
->len
,
4104 rpi_hdr
->dmabuf
->virt
, rpi_hdr
->dmabuf
->phys
);
4105 kfree(rpi_hdr
->dmabuf
);
4109 phba
->sli4_hba
.next_rpi
= phba
->sli4_hba
.max_cfg_param
.rpi_base
;
4110 memset(phba
->sli4_hba
.rpi_bmask
, 0, sizeof(*phba
->sli4_hba
.rpi_bmask
));
4114 * lpfc_hba_alloc - Allocate driver hba data structure for a device.
4115 * @pdev: pointer to pci device data structure.
4117 * This routine is invoked to allocate the driver hba data structure for an
4118 * HBA device. If the allocation is successful, the phba reference to the
4119 * PCI device data structure is set.
4122 * pointer to @phba - sucessful
4125 static struct lpfc_hba
*
4126 lpfc_hba_alloc(struct pci_dev
*pdev
)
4128 struct lpfc_hba
*phba
;
4130 /* Allocate memory for HBA structure */
4131 phba
= kzalloc(sizeof(struct lpfc_hba
), GFP_KERNEL
);
4133 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
4134 "1417 Failed to allocate hba struct.\n");
4138 /* Set reference to PCI device in HBA structure */
4139 phba
->pcidev
= pdev
;
4141 /* Assign an unused board number */
4142 phba
->brd_no
= lpfc_get_instance();
4143 if (phba
->brd_no
< 0) {
4152 * lpfc_hba_free - Free driver hba data structure with a device.
4153 * @phba: pointer to lpfc hba data structure.
4155 * This routine is invoked to free the driver hba data structure with an
4159 lpfc_hba_free(struct lpfc_hba
*phba
)
4161 /* Release the driver assigned board number */
4162 idr_remove(&lpfc_hba_index
, phba
->brd_no
);
4169 * lpfc_create_shost - Create hba physical port with associated scsi host.
4170 * @phba: pointer to lpfc hba data structure.
4172 * This routine is invoked to create HBA physical port and associate a SCSI
4177 * other values - error
4180 lpfc_create_shost(struct lpfc_hba
*phba
)
4182 struct lpfc_vport
*vport
;
4183 struct Scsi_Host
*shost
;
4185 /* Initialize HBA FC structure */
4186 phba
->fc_edtov
= FF_DEF_EDTOV
;
4187 phba
->fc_ratov
= FF_DEF_RATOV
;
4188 phba
->fc_altov
= FF_DEF_ALTOV
;
4189 phba
->fc_arbtov
= FF_DEF_ARBTOV
;
4191 vport
= lpfc_create_port(phba
, phba
->brd_no
, &phba
->pcidev
->dev
);
4195 shost
= lpfc_shost_from_vport(vport
);
4196 phba
->pport
= vport
;
4197 lpfc_debugfs_initialize(vport
);
4198 /* Put reference to SCSI host to driver's device private data */
4199 pci_set_drvdata(phba
->pcidev
, shost
);
4205 * lpfc_destroy_shost - Destroy hba physical port with associated scsi host.
4206 * @phba: pointer to lpfc hba data structure.
4208 * This routine is invoked to destroy HBA physical port and the associated
4212 lpfc_destroy_shost(struct lpfc_hba
*phba
)
4214 struct lpfc_vport
*vport
= phba
->pport
;
4216 /* Destroy physical port that associated with the SCSI host */
4217 destroy_port(vport
);
4223 * lpfc_setup_bg - Setup Block guard structures and debug areas.
4224 * @phba: pointer to lpfc hba data structure.
4225 * @shost: the shost to be used to detect Block guard settings.
4227 * This routine sets up the local Block guard protocol settings for @shost.
4228 * This routine also allocates memory for debugging bg buffers.
4231 lpfc_setup_bg(struct lpfc_hba
*phba
, struct Scsi_Host
*shost
)
4234 if (lpfc_prot_mask
&& lpfc_prot_guard
) {
4235 lpfc_printf_log(phba
, KERN_INFO
, LOG_INIT
,
4236 "1478 Registering BlockGuard with the "
4238 scsi_host_set_prot(shost
, lpfc_prot_mask
);
4239 scsi_host_set_guard(shost
, lpfc_prot_guard
);
4241 if (!_dump_buf_data
) {
4243 spin_lock_init(&_dump_buf_lock
);
4245 (char *) __get_free_pages(GFP_KERNEL
, pagecnt
);
4246 if (_dump_buf_data
) {
4247 printk(KERN_ERR
"BLKGRD allocated %d pages for "
4248 "_dump_buf_data at 0x%p\n",
4249 (1 << pagecnt
), _dump_buf_data
);
4250 _dump_buf_data_order
= pagecnt
;
4251 memset(_dump_buf_data
, 0,
4252 ((1 << PAGE_SHIFT
) << pagecnt
));
4257 if (!_dump_buf_data_order
)
4258 printk(KERN_ERR
"BLKGRD ERROR unable to allocate "
4259 "memory for hexdump\n");
4261 printk(KERN_ERR
"BLKGRD already allocated _dump_buf_data=0x%p"
4262 "\n", _dump_buf_data
);
4263 if (!_dump_buf_dif
) {
4266 (char *) __get_free_pages(GFP_KERNEL
, pagecnt
);
4267 if (_dump_buf_dif
) {
4268 printk(KERN_ERR
"BLKGRD allocated %d pages for "
4269 "_dump_buf_dif at 0x%p\n",
4270 (1 << pagecnt
), _dump_buf_dif
);
4271 _dump_buf_dif_order
= pagecnt
;
4272 memset(_dump_buf_dif
, 0,
4273 ((1 << PAGE_SHIFT
) << pagecnt
));
4278 if (!_dump_buf_dif_order
)
4279 printk(KERN_ERR
"BLKGRD ERROR unable to allocate "
4280 "memory for hexdump\n");
4282 printk(KERN_ERR
"BLKGRD already allocated _dump_buf_dif=0x%p\n",
4287 * lpfc_post_init_setup - Perform necessary device post initialization setup.
4288 * @phba: pointer to lpfc hba data structure.
4290 * This routine is invoked to perform all the necessary post initialization
4291 * setup for the device.
4294 lpfc_post_init_setup(struct lpfc_hba
*phba
)
4296 struct Scsi_Host
*shost
;
4297 struct lpfc_adapter_event_header adapter_event
;
4299 /* Get the default values for Model Name and Description */
4300 lpfc_get_hba_model_desc(phba
, phba
->ModelName
, phba
->ModelDesc
);
4303 * hba setup may have changed the hba_queue_depth so we need to
4304 * adjust the value of can_queue.
4306 shost
= pci_get_drvdata(phba
->pcidev
);
4307 shost
->can_queue
= phba
->cfg_hba_queue_depth
- 10;
4308 if (phba
->sli3_options
& LPFC_SLI3_BG_ENABLED
)
4309 lpfc_setup_bg(phba
, shost
);
4311 lpfc_host_attrib_init(shost
);
4313 if (phba
->cfg_poll
& DISABLE_FCP_RING_INT
) {
4314 spin_lock_irq(shost
->host_lock
);
4315 lpfc_poll_start_timer(phba
);
4316 spin_unlock_irq(shost
->host_lock
);
4319 lpfc_printf_log(phba
, KERN_INFO
, LOG_INIT
,
4320 "0428 Perform SCSI scan\n");
4321 /* Send board arrival event to upper layer */
4322 adapter_event
.event_type
= FC_REG_ADAPTER_EVENT
;
4323 adapter_event
.subcategory
= LPFC_EVENT_ARRIVAL
;
4324 fc_host_post_vendor_event(shost
, fc_get_event_number(),
4325 sizeof(adapter_event
),
4326 (char *) &adapter_event
,
4332 * lpfc_sli_pci_mem_setup - Setup SLI3 HBA PCI memory space.
4333 * @phba: pointer to lpfc hba data structure.
4335 * This routine is invoked to set up the PCI device memory space for device
4336 * with SLI-3 interface spec.
4340 * other values - error
4343 lpfc_sli_pci_mem_setup(struct lpfc_hba
*phba
)
4345 struct pci_dev
*pdev
;
4346 unsigned long bar0map_len
, bar2map_len
;
4349 int error
= -ENODEV
;
4351 /* Obtain PCI device reference */
4355 pdev
= phba
->pcidev
;
4357 /* Set the device DMA mask size */
4358 if (pci_set_dma_mask(pdev
, DMA_BIT_MASK(64)) != 0)
4359 if (pci_set_dma_mask(pdev
, DMA_BIT_MASK(32)) != 0)
4362 /* Get the bus address of Bar0 and Bar2 and the number of bytes
4363 * required by each mapping.
4365 phba
->pci_bar0_map
= pci_resource_start(pdev
, 0);
4366 bar0map_len
= pci_resource_len(pdev
, 0);
4368 phba
->pci_bar2_map
= pci_resource_start(pdev
, 2);
4369 bar2map_len
= pci_resource_len(pdev
, 2);
4371 /* Map HBA SLIM to a kernel virtual address. */
4372 phba
->slim_memmap_p
= ioremap(phba
->pci_bar0_map
, bar0map_len
);
4373 if (!phba
->slim_memmap_p
) {
4374 dev_printk(KERN_ERR
, &pdev
->dev
,
4375 "ioremap failed for SLIM memory.\n");
4379 /* Map HBA Control Registers to a kernel virtual address. */
4380 phba
->ctrl_regs_memmap_p
= ioremap(phba
->pci_bar2_map
, bar2map_len
);
4381 if (!phba
->ctrl_regs_memmap_p
) {
4382 dev_printk(KERN_ERR
, &pdev
->dev
,
4383 "ioremap failed for HBA control registers.\n");
4384 goto out_iounmap_slim
;
4387 /* Allocate memory for SLI-2 structures */
4388 phba
->slim2p
.virt
= dma_alloc_coherent(&pdev
->dev
,
4392 if (!phba
->slim2p
.virt
)
4395 memset(phba
->slim2p
.virt
, 0, SLI2_SLIM_SIZE
);
4396 phba
->mbox
= phba
->slim2p
.virt
+ offsetof(struct lpfc_sli2_slim
, mbx
);
4397 phba
->pcb
= (phba
->slim2p
.virt
+ offsetof(struct lpfc_sli2_slim
, pcb
));
4398 phba
->IOCBs
= (phba
->slim2p
.virt
+
4399 offsetof(struct lpfc_sli2_slim
, IOCBs
));
4401 phba
->hbqslimp
.virt
= dma_alloc_coherent(&pdev
->dev
,
4402 lpfc_sli_hbq_size(),
4403 &phba
->hbqslimp
.phys
,
4405 if (!phba
->hbqslimp
.virt
)
4408 hbq_count
= lpfc_sli_hbq_count();
4409 ptr
= phba
->hbqslimp
.virt
;
4410 for (i
= 0; i
< hbq_count
; ++i
) {
4411 phba
->hbqs
[i
].hbq_virt
= ptr
;
4412 INIT_LIST_HEAD(&phba
->hbqs
[i
].hbq_buffer_list
);
4413 ptr
+= (lpfc_hbq_defs
[i
]->entry_count
*
4414 sizeof(struct lpfc_hbq_entry
));
4416 phba
->hbqs
[LPFC_ELS_HBQ
].hbq_alloc_buffer
= lpfc_els_hbq_alloc
;
4417 phba
->hbqs
[LPFC_ELS_HBQ
].hbq_free_buffer
= lpfc_els_hbq_free
;
4419 memset(phba
->hbqslimp
.virt
, 0, lpfc_sli_hbq_size());
4421 INIT_LIST_HEAD(&phba
->rb_pend_list
);
4423 phba
->MBslimaddr
= phba
->slim_memmap_p
;
4424 phba
->HAregaddr
= phba
->ctrl_regs_memmap_p
+ HA_REG_OFFSET
;
4425 phba
->CAregaddr
= phba
->ctrl_regs_memmap_p
+ CA_REG_OFFSET
;
4426 phba
->HSregaddr
= phba
->ctrl_regs_memmap_p
+ HS_REG_OFFSET
;
4427 phba
->HCregaddr
= phba
->ctrl_regs_memmap_p
+ HC_REG_OFFSET
;
4432 dma_free_coherent(&pdev
->dev
, SLI2_SLIM_SIZE
,
4433 phba
->slim2p
.virt
, phba
->slim2p
.phys
);
4435 iounmap(phba
->ctrl_regs_memmap_p
);
4437 iounmap(phba
->slim_memmap_p
);
4443 * lpfc_sli_pci_mem_unset - Unset SLI3 HBA PCI memory space.
4444 * @phba: pointer to lpfc hba data structure.
4446 * This routine is invoked to unset the PCI device memory space for device
4447 * with SLI-3 interface spec.
4450 lpfc_sli_pci_mem_unset(struct lpfc_hba
*phba
)
4452 struct pci_dev
*pdev
;
4454 /* Obtain PCI device reference */
4458 pdev
= phba
->pcidev
;
4460 /* Free coherent DMA memory allocated */
4461 dma_free_coherent(&pdev
->dev
, lpfc_sli_hbq_size(),
4462 phba
->hbqslimp
.virt
, phba
->hbqslimp
.phys
);
4463 dma_free_coherent(&pdev
->dev
, SLI2_SLIM_SIZE
,
4464 phba
->slim2p
.virt
, phba
->slim2p
.phys
);
4466 /* I/O memory unmap */
4467 iounmap(phba
->ctrl_regs_memmap_p
);
4468 iounmap(phba
->slim_memmap_p
);
4474 * lpfc_sli4_post_status_check - Wait for SLI4 POST done and check status
4475 * @phba: pointer to lpfc hba data structure.
4477 * This routine is invoked to wait for SLI4 device Power On Self Test (POST)
4478 * done and check status.
4480 * Return 0 if successful, otherwise -ENODEV.
4483 lpfc_sli4_post_status_check(struct lpfc_hba
*phba
)
4485 struct lpfc_register sta_reg
, uerrlo_reg
, uerrhi_reg
, scratchpad
;
4486 uint32_t onlnreg0
, onlnreg1
;
4487 int i
, port_error
= -ENODEV
;
4489 if (!phba
->sli4_hba
.STAregaddr
)
4492 /* With uncoverable error, log the error message and return error */
4493 onlnreg0
= readl(phba
->sli4_hba
.ONLINE0regaddr
);
4494 onlnreg1
= readl(phba
->sli4_hba
.ONLINE1regaddr
);
4495 if ((onlnreg0
!= LPFC_ONLINE_NERR
) || (onlnreg1
!= LPFC_ONLINE_NERR
)) {
4496 uerrlo_reg
.word0
= readl(phba
->sli4_hba
.UERRLOregaddr
);
4497 uerrhi_reg
.word0
= readl(phba
->sli4_hba
.UERRHIregaddr
);
4498 if (uerrlo_reg
.word0
|| uerrhi_reg
.word0
) {
4499 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
4500 "1422 HBA Unrecoverable error: "
4501 "uerr_lo_reg=0x%x, uerr_hi_reg=0x%x, "
4502 "online0_reg=0x%x, online1_reg=0x%x\n",
4503 uerrlo_reg
.word0
, uerrhi_reg
.word0
,
4504 onlnreg0
, onlnreg1
);
4509 /* Wait up to 30 seconds for the SLI Port POST done and ready */
4510 for (i
= 0; i
< 3000; i
++) {
4511 sta_reg
.word0
= readl(phba
->sli4_hba
.STAregaddr
);
4512 /* Encounter fatal POST error, break out */
4513 if (bf_get(lpfc_hst_state_perr
, &sta_reg
)) {
4514 port_error
= -ENODEV
;
4517 if (LPFC_POST_STAGE_ARMFW_READY
==
4518 bf_get(lpfc_hst_state_port_status
, &sta_reg
)) {
4526 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
4527 "1408 Failure HBA POST Status: sta_reg=0x%x, "
4528 "perr=x%x, sfi=x%x, nip=x%x, ipc=x%x, xrom=x%x, "
4529 "dl=x%x, pstatus=x%x\n", sta_reg
.word0
,
4530 bf_get(lpfc_hst_state_perr
, &sta_reg
),
4531 bf_get(lpfc_hst_state_sfi
, &sta_reg
),
4532 bf_get(lpfc_hst_state_nip
, &sta_reg
),
4533 bf_get(lpfc_hst_state_ipc
, &sta_reg
),
4534 bf_get(lpfc_hst_state_xrom
, &sta_reg
),
4535 bf_get(lpfc_hst_state_dl
, &sta_reg
),
4536 bf_get(lpfc_hst_state_port_status
, &sta_reg
));
4538 /* Log device information */
4539 scratchpad
.word0
= readl(phba
->sli4_hba
.SCRATCHPADregaddr
);
4540 lpfc_printf_log(phba
, KERN_INFO
, LOG_INIT
,
4541 "2534 Device Info: ChipType=0x%x, SliRev=0x%x, "
4542 "FeatureL1=0x%x, FeatureL2=0x%x\n",
4543 bf_get(lpfc_scratchpad_chiptype
, &scratchpad
),
4544 bf_get(lpfc_scratchpad_slirev
, &scratchpad
),
4545 bf_get(lpfc_scratchpad_featurelevel1
, &scratchpad
),
4546 bf_get(lpfc_scratchpad_featurelevel2
, &scratchpad
));
4552 * lpfc_sli4_bar0_register_memmap - Set up SLI4 BAR0 register memory map.
4553 * @phba: pointer to lpfc hba data structure.
4555 * This routine is invoked to set up SLI4 BAR0 PCI config space register
4559 lpfc_sli4_bar0_register_memmap(struct lpfc_hba
*phba
)
4561 phba
->sli4_hba
.UERRLOregaddr
= phba
->sli4_hba
.conf_regs_memmap_p
+
4562 LPFC_UERR_STATUS_LO
;
4563 phba
->sli4_hba
.UERRHIregaddr
= phba
->sli4_hba
.conf_regs_memmap_p
+
4564 LPFC_UERR_STATUS_HI
;
4565 phba
->sli4_hba
.ONLINE0regaddr
= phba
->sli4_hba
.conf_regs_memmap_p
+
4567 phba
->sli4_hba
.ONLINE1regaddr
= phba
->sli4_hba
.conf_regs_memmap_p
+
4569 phba
->sli4_hba
.SCRATCHPADregaddr
= phba
->sli4_hba
.conf_regs_memmap_p
+
4574 * lpfc_sli4_bar1_register_memmap - Set up SLI4 BAR1 register memory map.
4575 * @phba: pointer to lpfc hba data structure.
4577 * This routine is invoked to set up SLI4 BAR1 control status register (CSR)
4581 lpfc_sli4_bar1_register_memmap(struct lpfc_hba
*phba
)
4584 phba
->sli4_hba
.STAregaddr
= phba
->sli4_hba
.ctrl_regs_memmap_p
+
4586 phba
->sli4_hba
.ISRregaddr
= phba
->sli4_hba
.ctrl_regs_memmap_p
+
4588 phba
->sli4_hba
.IMRregaddr
= phba
->sli4_hba
.ctrl_regs_memmap_p
+
4590 phba
->sli4_hba
.ISCRregaddr
= phba
->sli4_hba
.ctrl_regs_memmap_p
+
4596 * lpfc_sli4_bar2_register_memmap - Set up SLI4 BAR2 register memory map.
4597 * @phba: pointer to lpfc hba data structure.
4598 * @vf: virtual function number
4600 * This routine is invoked to set up SLI4 BAR2 doorbell register memory map
4601 * based on the given viftual function number, @vf.
4603 * Return 0 if successful, otherwise -ENODEV.
4606 lpfc_sli4_bar2_register_memmap(struct lpfc_hba
*phba
, uint32_t vf
)
4608 if (vf
> LPFC_VIR_FUNC_MAX
)
4611 phba
->sli4_hba
.RQDBregaddr
= (phba
->sli4_hba
.drbl_regs_memmap_p
+
4612 vf
* LPFC_VFR_PAGE_SIZE
+ LPFC_RQ_DOORBELL
);
4613 phba
->sli4_hba
.WQDBregaddr
= (phba
->sli4_hba
.drbl_regs_memmap_p
+
4614 vf
* LPFC_VFR_PAGE_SIZE
+ LPFC_WQ_DOORBELL
);
4615 phba
->sli4_hba
.EQCQDBregaddr
= (phba
->sli4_hba
.drbl_regs_memmap_p
+
4616 vf
* LPFC_VFR_PAGE_SIZE
+ LPFC_EQCQ_DOORBELL
);
4617 phba
->sli4_hba
.MQDBregaddr
= (phba
->sli4_hba
.drbl_regs_memmap_p
+
4618 vf
* LPFC_VFR_PAGE_SIZE
+ LPFC_MQ_DOORBELL
);
4619 phba
->sli4_hba
.BMBXregaddr
= (phba
->sli4_hba
.drbl_regs_memmap_p
+
4620 vf
* LPFC_VFR_PAGE_SIZE
+ LPFC_BMBX
);
4625 * lpfc_create_bootstrap_mbox - Create the bootstrap mailbox
4626 * @phba: pointer to lpfc hba data structure.
4628 * This routine is invoked to create the bootstrap mailbox
4629 * region consistent with the SLI-4 interface spec. This
4630 * routine allocates all memory necessary to communicate
4631 * mailbox commands to the port and sets up all alignment
4632 * needs. No locks are expected to be held when calling
4637 * ENOMEM - could not allocated memory.
4640 lpfc_create_bootstrap_mbox(struct lpfc_hba
*phba
)
4643 struct lpfc_dmabuf
*dmabuf
;
4644 struct dma_address
*dma_address
;
4648 dmabuf
= kzalloc(sizeof(struct lpfc_dmabuf
), GFP_KERNEL
);
4653 * The bootstrap mailbox region is comprised of 2 parts
4654 * plus an alignment restriction of 16 bytes.
4656 bmbx_size
= sizeof(struct lpfc_bmbx_create
) + (LPFC_ALIGN_16_BYTE
- 1);
4657 dmabuf
->virt
= dma_alloc_coherent(&phba
->pcidev
->dev
,
4661 if (!dmabuf
->virt
) {
4665 memset(dmabuf
->virt
, 0, bmbx_size
);
4668 * Initialize the bootstrap mailbox pointers now so that the register
4669 * operations are simple later. The mailbox dma address is required
4670 * to be 16-byte aligned. Also align the virtual memory as each
4671 * maibox is copied into the bmbx mailbox region before issuing the
4672 * command to the port.
4674 phba
->sli4_hba
.bmbx
.dmabuf
= dmabuf
;
4675 phba
->sli4_hba
.bmbx
.bmbx_size
= bmbx_size
;
4677 phba
->sli4_hba
.bmbx
.avirt
= PTR_ALIGN(dmabuf
->virt
,
4678 LPFC_ALIGN_16_BYTE
);
4679 phba
->sli4_hba
.bmbx
.aphys
= ALIGN(dmabuf
->phys
,
4680 LPFC_ALIGN_16_BYTE
);
4683 * Set the high and low physical addresses now. The SLI4 alignment
4684 * requirement is 16 bytes and the mailbox is posted to the port
4685 * as two 30-bit addresses. The other data is a bit marking whether
4686 * the 30-bit address is the high or low address.
4687 * Upcast bmbx aphys to 64bits so shift instruction compiles
4688 * clean on 32 bit machines.
4690 dma_address
= &phba
->sli4_hba
.bmbx
.dma_address
;
4691 phys_addr
= (uint64_t)phba
->sli4_hba
.bmbx
.aphys
;
4692 pa_addr
= (uint32_t) ((phys_addr
>> 34) & 0x3fffffff);
4693 dma_address
->addr_hi
= (uint32_t) ((pa_addr
<< 2) |
4694 LPFC_BMBX_BIT1_ADDR_HI
);
4696 pa_addr
= (uint32_t) ((phba
->sli4_hba
.bmbx
.aphys
>> 4) & 0x3fffffff);
4697 dma_address
->addr_lo
= (uint32_t) ((pa_addr
<< 2) |
4698 LPFC_BMBX_BIT1_ADDR_LO
);
4703 * lpfc_destroy_bootstrap_mbox - Destroy all bootstrap mailbox resources
4704 * @phba: pointer to lpfc hba data structure.
4706 * This routine is invoked to teardown the bootstrap mailbox
4707 * region and release all host resources. This routine requires
4708 * the caller to ensure all mailbox commands recovered, no
4709 * additional mailbox comands are sent, and interrupts are disabled
4710 * before calling this routine.
4714 lpfc_destroy_bootstrap_mbox(struct lpfc_hba
*phba
)
4716 dma_free_coherent(&phba
->pcidev
->dev
,
4717 phba
->sli4_hba
.bmbx
.bmbx_size
,
4718 phba
->sli4_hba
.bmbx
.dmabuf
->virt
,
4719 phba
->sli4_hba
.bmbx
.dmabuf
->phys
);
4721 kfree(phba
->sli4_hba
.bmbx
.dmabuf
);
4722 memset(&phba
->sli4_hba
.bmbx
, 0, sizeof(struct lpfc_bmbx
));
4726 * lpfc_sli4_read_config - Get the config parameters.
4727 * @phba: pointer to lpfc hba data structure.
4729 * This routine is invoked to read the configuration parameters from the HBA.
4730 * The configuration parameters are used to set the base and maximum values
4731 * for RPI's XRI's VPI's VFI's and FCFIs. These values also affect the resource
4732 * allocation for the port.
4736 * ENOMEM - No availble memory
4737 * EIO - The mailbox failed to complete successfully.
4740 lpfc_sli4_read_config(struct lpfc_hba
*phba
)
4743 struct lpfc_mbx_read_config
*rd_config
;
4746 pmb
= (LPFC_MBOXQ_t
*) mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
4748 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
4749 "2011 Unable to allocate memory for issuing "
4750 "SLI_CONFIG_SPECIAL mailbox command\n");
4754 lpfc_read_config(phba
, pmb
);
4756 rc
= lpfc_sli_issue_mbox(phba
, pmb
, MBX_POLL
);
4757 if (rc
!= MBX_SUCCESS
) {
4758 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
4759 "2012 Mailbox failed , mbxCmd x%x "
4760 "READ_CONFIG, mbxStatus x%x\n",
4761 bf_get(lpfc_mqe_command
, &pmb
->u
.mqe
),
4762 bf_get(lpfc_mqe_status
, &pmb
->u
.mqe
));
4765 rd_config
= &pmb
->u
.mqe
.un
.rd_config
;
4766 phba
->sli4_hba
.max_cfg_param
.max_xri
=
4767 bf_get(lpfc_mbx_rd_conf_xri_count
, rd_config
);
4768 phba
->sli4_hba
.max_cfg_param
.xri_base
=
4769 bf_get(lpfc_mbx_rd_conf_xri_base
, rd_config
);
4770 phba
->sli4_hba
.max_cfg_param
.max_vpi
=
4771 bf_get(lpfc_mbx_rd_conf_vpi_count
, rd_config
);
4772 phba
->sli4_hba
.max_cfg_param
.vpi_base
=
4773 bf_get(lpfc_mbx_rd_conf_vpi_base
, rd_config
);
4774 phba
->sli4_hba
.max_cfg_param
.max_rpi
=
4775 bf_get(lpfc_mbx_rd_conf_rpi_count
, rd_config
);
4776 phba
->sli4_hba
.max_cfg_param
.rpi_base
=
4777 bf_get(lpfc_mbx_rd_conf_rpi_base
, rd_config
);
4778 phba
->sli4_hba
.max_cfg_param
.max_vfi
=
4779 bf_get(lpfc_mbx_rd_conf_vfi_count
, rd_config
);
4780 phba
->sli4_hba
.max_cfg_param
.vfi_base
=
4781 bf_get(lpfc_mbx_rd_conf_vfi_base
, rd_config
);
4782 phba
->sli4_hba
.max_cfg_param
.max_fcfi
=
4783 bf_get(lpfc_mbx_rd_conf_fcfi_count
, rd_config
);
4784 phba
->sli4_hba
.max_cfg_param
.fcfi_base
=
4785 bf_get(lpfc_mbx_rd_conf_fcfi_base
, rd_config
);
4786 phba
->sli4_hba
.max_cfg_param
.max_eq
=
4787 bf_get(lpfc_mbx_rd_conf_eq_count
, rd_config
);
4788 phba
->sli4_hba
.max_cfg_param
.max_rq
=
4789 bf_get(lpfc_mbx_rd_conf_rq_count
, rd_config
);
4790 phba
->sli4_hba
.max_cfg_param
.max_wq
=
4791 bf_get(lpfc_mbx_rd_conf_wq_count
, rd_config
);
4792 phba
->sli4_hba
.max_cfg_param
.max_cq
=
4793 bf_get(lpfc_mbx_rd_conf_cq_count
, rd_config
);
4794 phba
->lmt
= bf_get(lpfc_mbx_rd_conf_lmt
, rd_config
);
4795 phba
->sli4_hba
.next_xri
= phba
->sli4_hba
.max_cfg_param
.xri_base
;
4796 phba
->vpi_base
= phba
->sli4_hba
.max_cfg_param
.vpi_base
;
4797 phba
->vfi_base
= phba
->sli4_hba
.max_cfg_param
.vfi_base
;
4798 phba
->sli4_hba
.next_rpi
= phba
->sli4_hba
.max_cfg_param
.rpi_base
;
4799 phba
->max_vpi
= phba
->sli4_hba
.max_cfg_param
.max_vpi
;
4800 phba
->max_vports
= phba
->max_vpi
;
4801 lpfc_printf_log(phba
, KERN_INFO
, LOG_SLI
,
4802 "2003 cfg params XRI(B:%d M:%d), "
4806 "FCFI(B:%d M:%d)\n",
4807 phba
->sli4_hba
.max_cfg_param
.xri_base
,
4808 phba
->sli4_hba
.max_cfg_param
.max_xri
,
4809 phba
->sli4_hba
.max_cfg_param
.vpi_base
,
4810 phba
->sli4_hba
.max_cfg_param
.max_vpi
,
4811 phba
->sli4_hba
.max_cfg_param
.vfi_base
,
4812 phba
->sli4_hba
.max_cfg_param
.max_vfi
,
4813 phba
->sli4_hba
.max_cfg_param
.rpi_base
,
4814 phba
->sli4_hba
.max_cfg_param
.max_rpi
,
4815 phba
->sli4_hba
.max_cfg_param
.fcfi_base
,
4816 phba
->sli4_hba
.max_cfg_param
.max_fcfi
);
4818 mempool_free(pmb
, phba
->mbox_mem_pool
);
4820 /* Reset the DFT_HBA_Q_DEPTH to the max xri */
4821 if (phba
->cfg_hba_queue_depth
> (phba
->sli4_hba
.max_cfg_param
.max_xri
))
4822 phba
->cfg_hba_queue_depth
=
4823 phba
->sli4_hba
.max_cfg_param
.max_xri
;
4828 * lpfc_dev_endian_order_setup - Notify the port of the host's endian order.
4829 * @phba: pointer to lpfc hba data structure.
4831 * This routine is invoked to setup the host-side endian order to the
4832 * HBA consistent with the SLI-4 interface spec.
4836 * ENOMEM - No availble memory
4837 * EIO - The mailbox failed to complete successfully.
4840 lpfc_setup_endian_order(struct lpfc_hba
*phba
)
4842 LPFC_MBOXQ_t
*mboxq
;
4844 uint32_t endian_mb_data
[2] = {HOST_ENDIAN_LOW_WORD0
,
4845 HOST_ENDIAN_HIGH_WORD1
};
4847 mboxq
= (LPFC_MBOXQ_t
*) mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
4849 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
4850 "0492 Unable to allocate memory for issuing "
4851 "SLI_CONFIG_SPECIAL mailbox command\n");
4856 * The SLI4_CONFIG_SPECIAL mailbox command requires the first two
4857 * words to contain special data values and no other data.
4859 memset(mboxq
, 0, sizeof(LPFC_MBOXQ_t
));
4860 memcpy(&mboxq
->u
.mqe
, &endian_mb_data
, sizeof(endian_mb_data
));
4861 rc
= lpfc_sli_issue_mbox(phba
, mboxq
, MBX_POLL
);
4862 if (rc
!= MBX_SUCCESS
) {
4863 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
4864 "0493 SLI_CONFIG_SPECIAL mailbox failed with "
4870 mempool_free(mboxq
, phba
->mbox_mem_pool
);
4875 * lpfc_sli4_queue_create - Create all the SLI4 queues
4876 * @phba: pointer to lpfc hba data structure.
4878 * This routine is invoked to allocate all the SLI4 queues for the FCoE HBA
4879 * operation. For each SLI4 queue type, the parameters such as queue entry
4880 * count (queue depth) shall be taken from the module parameter. For now,
4881 * we just use some constant number as place holder.
4885 * ENOMEM - No availble memory
4886 * EIO - The mailbox failed to complete successfully.
4889 lpfc_sli4_queue_create(struct lpfc_hba
*phba
)
4891 struct lpfc_queue
*qdesc
;
4892 int fcp_eqidx
, fcp_cqidx
, fcp_wqidx
;
4893 int cfg_fcp_wq_count
;
4894 int cfg_fcp_eq_count
;
4897 * Sanity check for confiugred queue parameters against the run-time
4901 /* Sanity check on FCP fast-path WQ parameters */
4902 cfg_fcp_wq_count
= phba
->cfg_fcp_wq_count
;
4903 if (cfg_fcp_wq_count
>
4904 (phba
->sli4_hba
.max_cfg_param
.max_wq
- LPFC_SP_WQN_DEF
)) {
4905 cfg_fcp_wq_count
= phba
->sli4_hba
.max_cfg_param
.max_wq
-
4907 if (cfg_fcp_wq_count
< LPFC_FP_WQN_MIN
) {
4908 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
4909 "2581 Not enough WQs (%d) from "
4910 "the pci function for supporting "
4912 phba
->sli4_hba
.max_cfg_param
.max_wq
,
4913 phba
->cfg_fcp_wq_count
);
4916 lpfc_printf_log(phba
, KERN_WARNING
, LOG_INIT
,
4917 "2582 Not enough WQs (%d) from the pci "
4918 "function for supporting the requested "
4919 "FCP WQs (%d), the actual FCP WQs can "
4920 "be supported: %d\n",
4921 phba
->sli4_hba
.max_cfg_param
.max_wq
,
4922 phba
->cfg_fcp_wq_count
, cfg_fcp_wq_count
);
4924 /* The actual number of FCP work queues adopted */
4925 phba
->cfg_fcp_wq_count
= cfg_fcp_wq_count
;
4927 /* Sanity check on FCP fast-path EQ parameters */
4928 cfg_fcp_eq_count
= phba
->cfg_fcp_eq_count
;
4929 if (cfg_fcp_eq_count
>
4930 (phba
->sli4_hba
.max_cfg_param
.max_eq
- LPFC_SP_EQN_DEF
)) {
4931 cfg_fcp_eq_count
= phba
->sli4_hba
.max_cfg_param
.max_eq
-
4933 if (cfg_fcp_eq_count
< LPFC_FP_EQN_MIN
) {
4934 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
4935 "2574 Not enough EQs (%d) from the "
4936 "pci function for supporting FCP "
4938 phba
->sli4_hba
.max_cfg_param
.max_eq
,
4939 phba
->cfg_fcp_eq_count
);
4942 lpfc_printf_log(phba
, KERN_WARNING
, LOG_INIT
,
4943 "2575 Not enough EQs (%d) from the pci "
4944 "function for supporting the requested "
4945 "FCP EQs (%d), the actual FCP EQs can "
4946 "be supported: %d\n",
4947 phba
->sli4_hba
.max_cfg_param
.max_eq
,
4948 phba
->cfg_fcp_eq_count
, cfg_fcp_eq_count
);
4950 /* It does not make sense to have more EQs than WQs */
4951 if (cfg_fcp_eq_count
> phba
->cfg_fcp_wq_count
) {
4952 lpfc_printf_log(phba
, KERN_WARNING
, LOG_INIT
,
4953 "2593 The number of FCP EQs (%d) is more "
4954 "than the number of FCP WQs (%d), take "
4955 "the number of FCP EQs same as than of "
4956 "WQs (%d)\n", cfg_fcp_eq_count
,
4957 phba
->cfg_fcp_wq_count
,
4958 phba
->cfg_fcp_wq_count
);
4959 cfg_fcp_eq_count
= phba
->cfg_fcp_wq_count
;
4961 /* The actual number of FCP event queues adopted */
4962 phba
->cfg_fcp_eq_count
= cfg_fcp_eq_count
;
4963 /* The overall number of event queues used */
4964 phba
->sli4_hba
.cfg_eqn
= phba
->cfg_fcp_eq_count
+ LPFC_SP_EQN_DEF
;
4967 * Create Event Queues (EQs)
4970 /* Get EQ depth from module parameter, fake the default for now */
4971 phba
->sli4_hba
.eq_esize
= LPFC_EQE_SIZE_4B
;
4972 phba
->sli4_hba
.eq_ecount
= LPFC_EQE_DEF_COUNT
;
4974 /* Create slow path event queue */
4975 qdesc
= lpfc_sli4_queue_alloc(phba
, phba
->sli4_hba
.eq_esize
,
4976 phba
->sli4_hba
.eq_ecount
);
4978 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
4979 "0496 Failed allocate slow-path EQ\n");
4982 phba
->sli4_hba
.sp_eq
= qdesc
;
4984 /* Create fast-path FCP Event Queue(s) */
4985 phba
->sli4_hba
.fp_eq
= kzalloc((sizeof(struct lpfc_queue
*) *
4986 phba
->cfg_fcp_eq_count
), GFP_KERNEL
);
4987 if (!phba
->sli4_hba
.fp_eq
) {
4988 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
4989 "2576 Failed allocate memory for fast-path "
4990 "EQ record array\n");
4991 goto out_free_sp_eq
;
4993 for (fcp_eqidx
= 0; fcp_eqidx
< phba
->cfg_fcp_eq_count
; fcp_eqidx
++) {
4994 qdesc
= lpfc_sli4_queue_alloc(phba
, phba
->sli4_hba
.eq_esize
,
4995 phba
->sli4_hba
.eq_ecount
);
4997 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
4998 "0497 Failed allocate fast-path EQ\n");
4999 goto out_free_fp_eq
;
5001 phba
->sli4_hba
.fp_eq
[fcp_eqidx
] = qdesc
;
5005 * Create Complete Queues (CQs)
5008 /* Get CQ depth from module parameter, fake the default for now */
5009 phba
->sli4_hba
.cq_esize
= LPFC_CQE_SIZE
;
5010 phba
->sli4_hba
.cq_ecount
= LPFC_CQE_DEF_COUNT
;
5012 /* Create slow-path Mailbox Command Complete Queue */
5013 qdesc
= lpfc_sli4_queue_alloc(phba
, phba
->sli4_hba
.cq_esize
,
5014 phba
->sli4_hba
.cq_ecount
);
5016 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
5017 "0500 Failed allocate slow-path mailbox CQ\n");
5018 goto out_free_fp_eq
;
5020 phba
->sli4_hba
.mbx_cq
= qdesc
;
5022 /* Create slow-path ELS Complete Queue */
5023 qdesc
= lpfc_sli4_queue_alloc(phba
, phba
->sli4_hba
.cq_esize
,
5024 phba
->sli4_hba
.cq_ecount
);
5026 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
5027 "0501 Failed allocate slow-path ELS CQ\n");
5028 goto out_free_mbx_cq
;
5030 phba
->sli4_hba
.els_cq
= qdesc
;
5032 /* Create slow-path Unsolicited Receive Complete Queue */
5033 qdesc
= lpfc_sli4_queue_alloc(phba
, phba
->sli4_hba
.cq_esize
,
5034 phba
->sli4_hba
.cq_ecount
);
5036 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
5037 "0502 Failed allocate slow-path USOL RX CQ\n");
5038 goto out_free_els_cq
;
5040 phba
->sli4_hba
.rxq_cq
= qdesc
;
5042 /* Create fast-path FCP Completion Queue(s), one-to-one with EQs */
5043 phba
->sli4_hba
.fcp_cq
= kzalloc((sizeof(struct lpfc_queue
*) *
5044 phba
->cfg_fcp_eq_count
), GFP_KERNEL
);
5045 if (!phba
->sli4_hba
.fcp_cq
) {
5046 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
5047 "2577 Failed allocate memory for fast-path "
5048 "CQ record array\n");
5049 goto out_free_rxq_cq
;
5051 for (fcp_cqidx
= 0; fcp_cqidx
< phba
->cfg_fcp_eq_count
; fcp_cqidx
++) {
5052 qdesc
= lpfc_sli4_queue_alloc(phba
, phba
->sli4_hba
.cq_esize
,
5053 phba
->sli4_hba
.cq_ecount
);
5055 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
5056 "0499 Failed allocate fast-path FCP "
5057 "CQ (%d)\n", fcp_cqidx
);
5058 goto out_free_fcp_cq
;
5060 phba
->sli4_hba
.fcp_cq
[fcp_cqidx
] = qdesc
;
5063 /* Create Mailbox Command Queue */
5064 phba
->sli4_hba
.mq_esize
= LPFC_MQE_SIZE
;
5065 phba
->sli4_hba
.mq_ecount
= LPFC_MQE_DEF_COUNT
;
5067 qdesc
= lpfc_sli4_queue_alloc(phba
, phba
->sli4_hba
.mq_esize
,
5068 phba
->sli4_hba
.mq_ecount
);
5070 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
5071 "0505 Failed allocate slow-path MQ\n");
5072 goto out_free_fcp_cq
;
5074 phba
->sli4_hba
.mbx_wq
= qdesc
;
5077 * Create all the Work Queues (WQs)
5079 phba
->sli4_hba
.wq_esize
= LPFC_WQE_SIZE
;
5080 phba
->sli4_hba
.wq_ecount
= LPFC_WQE_DEF_COUNT
;
5082 /* Create slow-path ELS Work Queue */
5083 qdesc
= lpfc_sli4_queue_alloc(phba
, phba
->sli4_hba
.wq_esize
,
5084 phba
->sli4_hba
.wq_ecount
);
5086 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
5087 "0504 Failed allocate slow-path ELS WQ\n");
5088 goto out_free_mbx_wq
;
5090 phba
->sli4_hba
.els_wq
= qdesc
;
5092 /* Create fast-path FCP Work Queue(s) */
5093 phba
->sli4_hba
.fcp_wq
= kzalloc((sizeof(struct lpfc_queue
*) *
5094 phba
->cfg_fcp_wq_count
), GFP_KERNEL
);
5095 if (!phba
->sli4_hba
.fcp_wq
) {
5096 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
5097 "2578 Failed allocate memory for fast-path "
5098 "WQ record array\n");
5099 goto out_free_els_wq
;
5101 for (fcp_wqidx
= 0; fcp_wqidx
< phba
->cfg_fcp_wq_count
; fcp_wqidx
++) {
5102 qdesc
= lpfc_sli4_queue_alloc(phba
, phba
->sli4_hba
.wq_esize
,
5103 phba
->sli4_hba
.wq_ecount
);
5105 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
5106 "0503 Failed allocate fast-path FCP "
5107 "WQ (%d)\n", fcp_wqidx
);
5108 goto out_free_fcp_wq
;
5110 phba
->sli4_hba
.fcp_wq
[fcp_wqidx
] = qdesc
;
5114 * Create Receive Queue (RQ)
5116 phba
->sli4_hba
.rq_esize
= LPFC_RQE_SIZE
;
5117 phba
->sli4_hba
.rq_ecount
= LPFC_RQE_DEF_COUNT
;
5119 /* Create Receive Queue for header */
5120 qdesc
= lpfc_sli4_queue_alloc(phba
, phba
->sli4_hba
.rq_esize
,
5121 phba
->sli4_hba
.rq_ecount
);
5123 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
5124 "0506 Failed allocate receive HRQ\n");
5125 goto out_free_fcp_wq
;
5127 phba
->sli4_hba
.hdr_rq
= qdesc
;
5129 /* Create Receive Queue for data */
5130 qdesc
= lpfc_sli4_queue_alloc(phba
, phba
->sli4_hba
.rq_esize
,
5131 phba
->sli4_hba
.rq_ecount
);
5133 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
5134 "0507 Failed allocate receive DRQ\n");
5135 goto out_free_hdr_rq
;
5137 phba
->sli4_hba
.dat_rq
= qdesc
;
5142 lpfc_sli4_queue_free(phba
->sli4_hba
.hdr_rq
);
5143 phba
->sli4_hba
.hdr_rq
= NULL
;
5145 for (--fcp_wqidx
; fcp_wqidx
>= 0; fcp_wqidx
--) {
5146 lpfc_sli4_queue_free(phba
->sli4_hba
.fcp_wq
[fcp_wqidx
]);
5147 phba
->sli4_hba
.fcp_wq
[fcp_wqidx
] = NULL
;
5149 kfree(phba
->sli4_hba
.fcp_wq
);
5151 lpfc_sli4_queue_free(phba
->sli4_hba
.els_wq
);
5152 phba
->sli4_hba
.els_wq
= NULL
;
5154 lpfc_sli4_queue_free(phba
->sli4_hba
.mbx_wq
);
5155 phba
->sli4_hba
.mbx_wq
= NULL
;
5157 for (--fcp_cqidx
; fcp_cqidx
>= 0; fcp_cqidx
--) {
5158 lpfc_sli4_queue_free(phba
->sli4_hba
.fcp_cq
[fcp_cqidx
]);
5159 phba
->sli4_hba
.fcp_cq
[fcp_cqidx
] = NULL
;
5161 kfree(phba
->sli4_hba
.fcp_cq
);
5163 lpfc_sli4_queue_free(phba
->sli4_hba
.rxq_cq
);
5164 phba
->sli4_hba
.rxq_cq
= NULL
;
5166 lpfc_sli4_queue_free(phba
->sli4_hba
.els_cq
);
5167 phba
->sli4_hba
.els_cq
= NULL
;
5169 lpfc_sli4_queue_free(phba
->sli4_hba
.mbx_cq
);
5170 phba
->sli4_hba
.mbx_cq
= NULL
;
5172 for (--fcp_eqidx
; fcp_eqidx
>= 0; fcp_eqidx
--) {
5173 lpfc_sli4_queue_free(phba
->sli4_hba
.fp_eq
[fcp_eqidx
]);
5174 phba
->sli4_hba
.fp_eq
[fcp_eqidx
] = NULL
;
5176 kfree(phba
->sli4_hba
.fp_eq
);
5178 lpfc_sli4_queue_free(phba
->sli4_hba
.sp_eq
);
5179 phba
->sli4_hba
.sp_eq
= NULL
;
5185 * lpfc_sli4_queue_destroy - Destroy all the SLI4 queues
5186 * @phba: pointer to lpfc hba data structure.
5188 * This routine is invoked to release all the SLI4 queues with the FCoE HBA
5193 * ENOMEM - No availble memory
5194 * EIO - The mailbox failed to complete successfully.
5197 lpfc_sli4_queue_destroy(struct lpfc_hba
*phba
)
5201 /* Release mailbox command work queue */
5202 lpfc_sli4_queue_free(phba
->sli4_hba
.mbx_wq
);
5203 phba
->sli4_hba
.mbx_wq
= NULL
;
5205 /* Release ELS work queue */
5206 lpfc_sli4_queue_free(phba
->sli4_hba
.els_wq
);
5207 phba
->sli4_hba
.els_wq
= NULL
;
5209 /* Release FCP work queue */
5210 for (fcp_qidx
= 0; fcp_qidx
< phba
->cfg_fcp_wq_count
; fcp_qidx
++)
5211 lpfc_sli4_queue_free(phba
->sli4_hba
.fcp_wq
[fcp_qidx
]);
5212 kfree(phba
->sli4_hba
.fcp_wq
);
5213 phba
->sli4_hba
.fcp_wq
= NULL
;
5215 /* Release unsolicited receive queue */
5216 lpfc_sli4_queue_free(phba
->sli4_hba
.hdr_rq
);
5217 phba
->sli4_hba
.hdr_rq
= NULL
;
5218 lpfc_sli4_queue_free(phba
->sli4_hba
.dat_rq
);
5219 phba
->sli4_hba
.dat_rq
= NULL
;
5221 /* Release unsolicited receive complete queue */
5222 lpfc_sli4_queue_free(phba
->sli4_hba
.rxq_cq
);
5223 phba
->sli4_hba
.rxq_cq
= NULL
;
5225 /* Release ELS complete queue */
5226 lpfc_sli4_queue_free(phba
->sli4_hba
.els_cq
);
5227 phba
->sli4_hba
.els_cq
= NULL
;
5229 /* Release mailbox command complete queue */
5230 lpfc_sli4_queue_free(phba
->sli4_hba
.mbx_cq
);
5231 phba
->sli4_hba
.mbx_cq
= NULL
;
5233 /* Release FCP response complete queue */
5234 for (fcp_qidx
= 0; fcp_qidx
< phba
->cfg_fcp_eq_count
; fcp_qidx
++)
5235 lpfc_sli4_queue_free(phba
->sli4_hba
.fcp_cq
[fcp_qidx
]);
5236 kfree(phba
->sli4_hba
.fcp_cq
);
5237 phba
->sli4_hba
.fcp_cq
= NULL
;
5239 /* Release fast-path event queue */
5240 for (fcp_qidx
= 0; fcp_qidx
< phba
->cfg_fcp_eq_count
; fcp_qidx
++)
5241 lpfc_sli4_queue_free(phba
->sli4_hba
.fp_eq
[fcp_qidx
]);
5242 kfree(phba
->sli4_hba
.fp_eq
);
5243 phba
->sli4_hba
.fp_eq
= NULL
;
5245 /* Release slow-path event queue */
5246 lpfc_sli4_queue_free(phba
->sli4_hba
.sp_eq
);
5247 phba
->sli4_hba
.sp_eq
= NULL
;
5253 * lpfc_sli4_queue_setup - Set up all the SLI4 queues
5254 * @phba: pointer to lpfc hba data structure.
5256 * This routine is invoked to set up all the SLI4 queues for the FCoE HBA
5261 * ENOMEM - No availble memory
5262 * EIO - The mailbox failed to complete successfully.
5265 lpfc_sli4_queue_setup(struct lpfc_hba
*phba
)
5268 int fcp_eqidx
, fcp_cqidx
, fcp_wqidx
;
5269 int fcp_cq_index
= 0;
5272 * Set up Event Queues (EQs)
5275 /* Set up slow-path event queue */
5276 if (!phba
->sli4_hba
.sp_eq
) {
5277 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
5278 "0520 Slow-path EQ not allocated\n");
5281 rc
= lpfc_eq_create(phba
, phba
->sli4_hba
.sp_eq
,
5284 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
5285 "0521 Failed setup of slow-path EQ: "
5289 lpfc_printf_log(phba
, KERN_INFO
, LOG_INIT
,
5290 "2583 Slow-path EQ setup: queue-id=%d\n",
5291 phba
->sli4_hba
.sp_eq
->queue_id
);
5293 /* Set up fast-path event queue */
5294 for (fcp_eqidx
= 0; fcp_eqidx
< phba
->cfg_fcp_eq_count
; fcp_eqidx
++) {
5295 if (!phba
->sli4_hba
.fp_eq
[fcp_eqidx
]) {
5296 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
5297 "0522 Fast-path EQ (%d) not "
5298 "allocated\n", fcp_eqidx
);
5299 goto out_destroy_fp_eq
;
5301 rc
= lpfc_eq_create(phba
, phba
->sli4_hba
.fp_eq
[fcp_eqidx
],
5302 phba
->cfg_fcp_imax
);
5304 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
5305 "0523 Failed setup of fast-path EQ "
5306 "(%d), rc = 0x%x\n", fcp_eqidx
, rc
);
5307 goto out_destroy_fp_eq
;
5309 lpfc_printf_log(phba
, KERN_INFO
, LOG_INIT
,
5310 "2584 Fast-path EQ setup: "
5311 "queue[%d]-id=%d\n", fcp_eqidx
,
5312 phba
->sli4_hba
.fp_eq
[fcp_eqidx
]->queue_id
);
5316 * Set up Complete Queues (CQs)
5319 /* Set up slow-path MBOX Complete Queue as the first CQ */
5320 if (!phba
->sli4_hba
.mbx_cq
) {
5321 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
5322 "0528 Mailbox CQ not allocated\n");
5323 goto out_destroy_fp_eq
;
5325 rc
= lpfc_cq_create(phba
, phba
->sli4_hba
.mbx_cq
, phba
->sli4_hba
.sp_eq
,
5326 LPFC_MCQ
, LPFC_MBOX
);
5328 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
5329 "0529 Failed setup of slow-path mailbox CQ: "
5331 goto out_destroy_fp_eq
;
5333 lpfc_printf_log(phba
, KERN_INFO
, LOG_INIT
,
5334 "2585 MBX CQ setup: cq-id=%d, parent eq-id=%d\n",
5335 phba
->sli4_hba
.mbx_cq
->queue_id
,
5336 phba
->sli4_hba
.sp_eq
->queue_id
);
5338 /* Set up slow-path ELS Complete Queue */
5339 if (!phba
->sli4_hba
.els_cq
) {
5340 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
5341 "0530 ELS CQ not allocated\n");
5342 goto out_destroy_mbx_cq
;
5344 rc
= lpfc_cq_create(phba
, phba
->sli4_hba
.els_cq
, phba
->sli4_hba
.sp_eq
,
5345 LPFC_WCQ
, LPFC_ELS
);
5347 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
5348 "0531 Failed setup of slow-path ELS CQ: "
5350 goto out_destroy_mbx_cq
;
5352 lpfc_printf_log(phba
, KERN_INFO
, LOG_INIT
,
5353 "2586 ELS CQ setup: cq-id=%d, parent eq-id=%d\n",
5354 phba
->sli4_hba
.els_cq
->queue_id
,
5355 phba
->sli4_hba
.sp_eq
->queue_id
);
5357 /* Set up slow-path Unsolicited Receive Complete Queue */
5358 if (!phba
->sli4_hba
.rxq_cq
) {
5359 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
5360 "0532 USOL RX CQ not allocated\n");
5361 goto out_destroy_els_cq
;
5363 rc
= lpfc_cq_create(phba
, phba
->sli4_hba
.rxq_cq
, phba
->sli4_hba
.sp_eq
,
5364 LPFC_RCQ
, LPFC_USOL
);
5366 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
5367 "0533 Failed setup of slow-path USOL RX CQ: "
5369 goto out_destroy_els_cq
;
5371 lpfc_printf_log(phba
, KERN_INFO
, LOG_INIT
,
5372 "2587 USL CQ setup: cq-id=%d, parent eq-id=%d\n",
5373 phba
->sli4_hba
.rxq_cq
->queue_id
,
5374 phba
->sli4_hba
.sp_eq
->queue_id
);
5376 /* Set up fast-path FCP Response Complete Queue */
5377 for (fcp_cqidx
= 0; fcp_cqidx
< phba
->cfg_fcp_eq_count
; fcp_cqidx
++) {
5378 if (!phba
->sli4_hba
.fcp_cq
[fcp_cqidx
]) {
5379 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
5380 "0526 Fast-path FCP CQ (%d) not "
5381 "allocated\n", fcp_cqidx
);
5382 goto out_destroy_fcp_cq
;
5384 rc
= lpfc_cq_create(phba
, phba
->sli4_hba
.fcp_cq
[fcp_cqidx
],
5385 phba
->sli4_hba
.fp_eq
[fcp_cqidx
],
5386 LPFC_WCQ
, LPFC_FCP
);
5388 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
5389 "0527 Failed setup of fast-path FCP "
5390 "CQ (%d), rc = 0x%x\n", fcp_cqidx
, rc
);
5391 goto out_destroy_fcp_cq
;
5393 lpfc_printf_log(phba
, KERN_INFO
, LOG_INIT
,
5394 "2588 FCP CQ setup: cq[%d]-id=%d, "
5395 "parent eq[%d]-id=%d\n",
5397 phba
->sli4_hba
.fcp_cq
[fcp_cqidx
]->queue_id
,
5399 phba
->sli4_hba
.fp_eq
[fcp_cqidx
]->queue_id
);
5403 * Set up all the Work Queues (WQs)
5406 /* Set up Mailbox Command Queue */
5407 if (!phba
->sli4_hba
.mbx_wq
) {
5408 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
5409 "0538 Slow-path MQ not allocated\n");
5410 goto out_destroy_fcp_cq
;
5412 rc
= lpfc_mq_create(phba
, phba
->sli4_hba
.mbx_wq
,
5413 phba
->sli4_hba
.mbx_cq
, LPFC_MBOX
);
5415 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
5416 "0539 Failed setup of slow-path MQ: "
5418 goto out_destroy_fcp_cq
;
5420 lpfc_printf_log(phba
, KERN_INFO
, LOG_INIT
,
5421 "2589 MBX MQ setup: wq-id=%d, parent cq-id=%d\n",
5422 phba
->sli4_hba
.mbx_wq
->queue_id
,
5423 phba
->sli4_hba
.mbx_cq
->queue_id
);
5425 /* Set up slow-path ELS Work Queue */
5426 if (!phba
->sli4_hba
.els_wq
) {
5427 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
5428 "0536 Slow-path ELS WQ not allocated\n");
5429 goto out_destroy_mbx_wq
;
5431 rc
= lpfc_wq_create(phba
, phba
->sli4_hba
.els_wq
,
5432 phba
->sli4_hba
.els_cq
, LPFC_ELS
);
5434 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
5435 "0537 Failed setup of slow-path ELS WQ: "
5437 goto out_destroy_mbx_wq
;
5439 lpfc_printf_log(phba
, KERN_INFO
, LOG_INIT
,
5440 "2590 ELS WQ setup: wq-id=%d, parent cq-id=%d\n",
5441 phba
->sli4_hba
.els_wq
->queue_id
,
5442 phba
->sli4_hba
.els_cq
->queue_id
);
5444 /* Set up fast-path FCP Work Queue */
5445 for (fcp_wqidx
= 0; fcp_wqidx
< phba
->cfg_fcp_wq_count
; fcp_wqidx
++) {
5446 if (!phba
->sli4_hba
.fcp_wq
[fcp_wqidx
]) {
5447 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
5448 "0534 Fast-path FCP WQ (%d) not "
5449 "allocated\n", fcp_wqidx
);
5450 goto out_destroy_fcp_wq
;
5452 rc
= lpfc_wq_create(phba
, phba
->sli4_hba
.fcp_wq
[fcp_wqidx
],
5453 phba
->sli4_hba
.fcp_cq
[fcp_cq_index
],
5456 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
5457 "0535 Failed setup of fast-path FCP "
5458 "WQ (%d), rc = 0x%x\n", fcp_wqidx
, rc
);
5459 goto out_destroy_fcp_wq
;
5461 lpfc_printf_log(phba
, KERN_INFO
, LOG_INIT
,
5462 "2591 FCP WQ setup: wq[%d]-id=%d, "
5463 "parent cq[%d]-id=%d\n",
5465 phba
->sli4_hba
.fcp_wq
[fcp_wqidx
]->queue_id
,
5467 phba
->sli4_hba
.fcp_cq
[fcp_cq_index
]->queue_id
);
5468 /* Round robin FCP Work Queue's Completion Queue assignment */
5469 fcp_cq_index
= ((fcp_cq_index
+ 1) % phba
->cfg_fcp_eq_count
);
5473 * Create Receive Queue (RQ)
5475 if (!phba
->sli4_hba
.hdr_rq
|| !phba
->sli4_hba
.dat_rq
) {
5476 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
5477 "0540 Receive Queue not allocated\n");
5478 goto out_destroy_fcp_wq
;
5480 rc
= lpfc_rq_create(phba
, phba
->sli4_hba
.hdr_rq
, phba
->sli4_hba
.dat_rq
,
5481 phba
->sli4_hba
.rxq_cq
, LPFC_USOL
);
5483 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
5484 "0541 Failed setup of Receive Queue: "
5486 goto out_destroy_fcp_wq
;
5488 lpfc_printf_log(phba
, KERN_INFO
, LOG_INIT
,
5489 "2592 USL RQ setup: hdr-rq-id=%d, dat-rq-id=%d "
5490 "parent cq-id=%d\n",
5491 phba
->sli4_hba
.hdr_rq
->queue_id
,
5492 phba
->sli4_hba
.dat_rq
->queue_id
,
5493 phba
->sli4_hba
.rxq_cq
->queue_id
);
5497 for (--fcp_wqidx
; fcp_wqidx
>= 0; fcp_wqidx
--)
5498 lpfc_wq_destroy(phba
, phba
->sli4_hba
.fcp_wq
[fcp_wqidx
]);
5499 lpfc_wq_destroy(phba
, phba
->sli4_hba
.els_wq
);
5501 lpfc_mq_destroy(phba
, phba
->sli4_hba
.mbx_wq
);
5503 for (--fcp_cqidx
; fcp_cqidx
>= 0; fcp_cqidx
--)
5504 lpfc_cq_destroy(phba
, phba
->sli4_hba
.fcp_cq
[fcp_cqidx
]);
5505 lpfc_cq_destroy(phba
, phba
->sli4_hba
.rxq_cq
);
5507 lpfc_cq_destroy(phba
, phba
->sli4_hba
.els_cq
);
5509 lpfc_cq_destroy(phba
, phba
->sli4_hba
.mbx_cq
);
5511 for (--fcp_eqidx
; fcp_eqidx
>= 0; fcp_eqidx
--)
5512 lpfc_eq_destroy(phba
, phba
->sli4_hba
.fp_eq
[fcp_eqidx
]);
5513 lpfc_eq_destroy(phba
, phba
->sli4_hba
.sp_eq
);
5519 * lpfc_sli4_queue_unset - Unset all the SLI4 queues
5520 * @phba: pointer to lpfc hba data structure.
5522 * This routine is invoked to unset all the SLI4 queues with the FCoE HBA
5527 * ENOMEM - No availble memory
5528 * EIO - The mailbox failed to complete successfully.
5531 lpfc_sli4_queue_unset(struct lpfc_hba
*phba
)
5535 /* Unset mailbox command work queue */
5536 lpfc_mq_destroy(phba
, phba
->sli4_hba
.mbx_wq
);
5537 /* Unset ELS work queue */
5538 lpfc_wq_destroy(phba
, phba
->sli4_hba
.els_wq
);
5539 /* Unset unsolicited receive queue */
5540 lpfc_rq_destroy(phba
, phba
->sli4_hba
.hdr_rq
, phba
->sli4_hba
.dat_rq
);
5541 /* Unset FCP work queue */
5542 for (fcp_qidx
= 0; fcp_qidx
< phba
->cfg_fcp_wq_count
; fcp_qidx
++)
5543 lpfc_wq_destroy(phba
, phba
->sli4_hba
.fcp_wq
[fcp_qidx
]);
5544 /* Unset mailbox command complete queue */
5545 lpfc_cq_destroy(phba
, phba
->sli4_hba
.mbx_cq
);
5546 /* Unset ELS complete queue */
5547 lpfc_cq_destroy(phba
, phba
->sli4_hba
.els_cq
);
5548 /* Unset unsolicited receive complete queue */
5549 lpfc_cq_destroy(phba
, phba
->sli4_hba
.rxq_cq
);
5550 /* Unset FCP response complete queue */
5551 for (fcp_qidx
= 0; fcp_qidx
< phba
->cfg_fcp_eq_count
; fcp_qidx
++)
5552 lpfc_cq_destroy(phba
, phba
->sli4_hba
.fcp_cq
[fcp_qidx
]);
5553 /* Unset fast-path event queue */
5554 for (fcp_qidx
= 0; fcp_qidx
< phba
->cfg_fcp_eq_count
; fcp_qidx
++)
5555 lpfc_eq_destroy(phba
, phba
->sli4_hba
.fp_eq
[fcp_qidx
]);
5556 /* Unset slow-path event queue */
5557 lpfc_eq_destroy(phba
, phba
->sli4_hba
.sp_eq
);
5561 * lpfc_sli4_cq_event_pool_create - Create completion-queue event free pool
5562 * @phba: pointer to lpfc hba data structure.
5564 * This routine is invoked to allocate and set up a pool of completion queue
5565 * events. The body of the completion queue event is a completion queue entry
5566 * CQE. For now, this pool is used for the interrupt service routine to queue
5567 * the following HBA completion queue events for the worker thread to process:
5568 * - Mailbox asynchronous events
5569 * - Receive queue completion unsolicited events
5570 * Later, this can be used for all the slow-path events.
5574 * -ENOMEM - No availble memory
5577 lpfc_sli4_cq_event_pool_create(struct lpfc_hba
*phba
)
5579 struct lpfc_cq_event
*cq_event
;
5582 for (i
= 0; i
< (4 * phba
->sli4_hba
.cq_ecount
); i
++) {
5583 cq_event
= kmalloc(sizeof(struct lpfc_cq_event
), GFP_KERNEL
);
5585 goto out_pool_create_fail
;
5586 list_add_tail(&cq_event
->list
,
5587 &phba
->sli4_hba
.sp_cqe_event_pool
);
5591 out_pool_create_fail
:
5592 lpfc_sli4_cq_event_pool_destroy(phba
);
5597 * lpfc_sli4_cq_event_pool_destroy - Free completion-queue event free pool
5598 * @phba: pointer to lpfc hba data structure.
5600 * This routine is invoked to free the pool of completion queue events at
5601 * driver unload time. Note that, it is the responsibility of the driver
5602 * cleanup routine to free all the outstanding completion-queue events
5603 * allocated from this pool back into the pool before invoking this routine
5604 * to destroy the pool.
5607 lpfc_sli4_cq_event_pool_destroy(struct lpfc_hba
*phba
)
5609 struct lpfc_cq_event
*cq_event
, *next_cq_event
;
5611 list_for_each_entry_safe(cq_event
, next_cq_event
,
5612 &phba
->sli4_hba
.sp_cqe_event_pool
, list
) {
5613 list_del(&cq_event
->list
);
5619 * __lpfc_sli4_cq_event_alloc - Allocate a completion-queue event from free pool
5620 * @phba: pointer to lpfc hba data structure.
5622 * This routine is the lock free version of the API invoked to allocate a
5623 * completion-queue event from the free pool.
5625 * Return: Pointer to the newly allocated completion-queue event if successful
5628 struct lpfc_cq_event
*
5629 __lpfc_sli4_cq_event_alloc(struct lpfc_hba
*phba
)
5631 struct lpfc_cq_event
*cq_event
= NULL
;
5633 list_remove_head(&phba
->sli4_hba
.sp_cqe_event_pool
, cq_event
,
5634 struct lpfc_cq_event
, list
);
5639 * lpfc_sli4_cq_event_alloc - Allocate a completion-queue event from free pool
5640 * @phba: pointer to lpfc hba data structure.
5642 * This routine is the lock version of the API invoked to allocate a
5643 * completion-queue event from the free pool.
5645 * Return: Pointer to the newly allocated completion-queue event if successful
5648 struct lpfc_cq_event
*
5649 lpfc_sli4_cq_event_alloc(struct lpfc_hba
*phba
)
5651 struct lpfc_cq_event
*cq_event
;
5652 unsigned long iflags
;
5654 spin_lock_irqsave(&phba
->hbalock
, iflags
);
5655 cq_event
= __lpfc_sli4_cq_event_alloc(phba
);
5656 spin_unlock_irqrestore(&phba
->hbalock
, iflags
);
5661 * __lpfc_sli4_cq_event_release - Release a completion-queue event to free pool
5662 * @phba: pointer to lpfc hba data structure.
5663 * @cq_event: pointer to the completion queue event to be freed.
5665 * This routine is the lock free version of the API invoked to release a
5666 * completion-queue event back into the free pool.
5669 __lpfc_sli4_cq_event_release(struct lpfc_hba
*phba
,
5670 struct lpfc_cq_event
*cq_event
)
5672 list_add_tail(&cq_event
->list
, &phba
->sli4_hba
.sp_cqe_event_pool
);
5676 * lpfc_sli4_cq_event_release - Release a completion-queue event to free pool
5677 * @phba: pointer to lpfc hba data structure.
5678 * @cq_event: pointer to the completion queue event to be freed.
5680 * This routine is the lock version of the API invoked to release a
5681 * completion-queue event back into the free pool.
5684 lpfc_sli4_cq_event_release(struct lpfc_hba
*phba
,
5685 struct lpfc_cq_event
*cq_event
)
5687 unsigned long iflags
;
5688 spin_lock_irqsave(&phba
->hbalock
, iflags
);
5689 __lpfc_sli4_cq_event_release(phba
, cq_event
);
5690 spin_unlock_irqrestore(&phba
->hbalock
, iflags
);
5694 * lpfc_sli4_cq_event_release_all - Release all cq events to the free pool
5695 * @phba: pointer to lpfc hba data structure.
5697 * This routine is to free all the pending completion-queue events to the
5698 * back into the free pool for device reset.
5701 lpfc_sli4_cq_event_release_all(struct lpfc_hba
*phba
)
5704 struct lpfc_cq_event
*cqe
;
5705 unsigned long iflags
;
5707 /* Retrieve all the pending WCQEs from pending WCQE lists */
5708 spin_lock_irqsave(&phba
->hbalock
, iflags
);
5709 /* Pending FCP XRI abort events */
5710 list_splice_init(&phba
->sli4_hba
.sp_fcp_xri_aborted_work_queue
,
5712 /* Pending ELS XRI abort events */
5713 list_splice_init(&phba
->sli4_hba
.sp_els_xri_aborted_work_queue
,
5715 /* Pending asynnc events */
5716 list_splice_init(&phba
->sli4_hba
.sp_asynce_work_queue
,
5718 spin_unlock_irqrestore(&phba
->hbalock
, iflags
);
5720 while (!list_empty(&cqelist
)) {
5721 list_remove_head(&cqelist
, cqe
, struct lpfc_cq_event
, list
);
5722 lpfc_sli4_cq_event_release(phba
, cqe
);
5727 * lpfc_pci_function_reset - Reset pci function.
5728 * @phba: pointer to lpfc hba data structure.
5730 * This routine is invoked to request a PCI function reset. It will destroys
5731 * all resources assigned to the PCI function which originates this request.
5735 * ENOMEM - No availble memory
5736 * EIO - The mailbox failed to complete successfully.
5739 lpfc_pci_function_reset(struct lpfc_hba
*phba
)
5741 LPFC_MBOXQ_t
*mboxq
;
5743 uint32_t shdr_status
, shdr_add_status
;
5744 union lpfc_sli4_cfg_shdr
*shdr
;
5746 mboxq
= (LPFC_MBOXQ_t
*) mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
5748 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
5749 "0494 Unable to allocate memory for issuing "
5750 "SLI_FUNCTION_RESET mailbox command\n");
5754 /* Set up PCI function reset SLI4_CONFIG mailbox-ioctl command */
5755 lpfc_sli4_config(phba
, mboxq
, LPFC_MBOX_SUBSYSTEM_COMMON
,
5756 LPFC_MBOX_OPCODE_FUNCTION_RESET
, 0,
5757 LPFC_SLI4_MBX_EMBED
);
5758 rc
= lpfc_sli_issue_mbox(phba
, mboxq
, MBX_POLL
);
5759 shdr
= (union lpfc_sli4_cfg_shdr
*)
5760 &mboxq
->u
.mqe
.un
.sli4_config
.header
.cfg_shdr
;
5761 shdr_status
= bf_get(lpfc_mbox_hdr_status
, &shdr
->response
);
5762 shdr_add_status
= bf_get(lpfc_mbox_hdr_add_status
, &shdr
->response
);
5763 if (rc
!= MBX_TIMEOUT
)
5764 mempool_free(mboxq
, phba
->mbox_mem_pool
);
5765 if (shdr_status
|| shdr_add_status
|| rc
) {
5766 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
5767 "0495 SLI_FUNCTION_RESET mailbox failed with "
5768 "status x%x add_status x%x, mbx status x%x\n",
5769 shdr_status
, shdr_add_status
, rc
);
5776 * lpfc_sli4_send_nop_mbox_cmds - Send sli-4 nop mailbox commands
5777 * @phba: pointer to lpfc hba data structure.
5778 * @cnt: number of nop mailbox commands to send.
5780 * This routine is invoked to send a number @cnt of NOP mailbox command and
5781 * wait for each command to complete.
5783 * Return: the number of NOP mailbox command completed.
5786 lpfc_sli4_send_nop_mbox_cmds(struct lpfc_hba
*phba
, uint32_t cnt
)
5788 LPFC_MBOXQ_t
*mboxq
;
5789 int length
, cmdsent
;
5792 uint32_t shdr_status
, shdr_add_status
;
5793 union lpfc_sli4_cfg_shdr
*shdr
;
5796 lpfc_printf_log(phba
, KERN_WARNING
, LOG_INIT
,
5797 "2518 Requested to send 0 NOP mailbox cmd\n");
5801 mboxq
= (LPFC_MBOXQ_t
*)mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
5803 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
5804 "2519 Unable to allocate memory for issuing "
5805 "NOP mailbox command\n");
5809 /* Set up NOP SLI4_CONFIG mailbox-ioctl command */
5810 length
= (sizeof(struct lpfc_mbx_nop
) -
5811 sizeof(struct lpfc_sli4_cfg_mhdr
));
5812 lpfc_sli4_config(phba
, mboxq
, LPFC_MBOX_SUBSYSTEM_COMMON
,
5813 LPFC_MBOX_OPCODE_NOP
, length
, LPFC_SLI4_MBX_EMBED
);
5815 mbox_tmo
= lpfc_mbox_tmo_val(phba
, MBX_SLI4_CONFIG
);
5816 for (cmdsent
= 0; cmdsent
< cnt
; cmdsent
++) {
5817 if (!phba
->sli4_hba
.intr_enable
)
5818 rc
= lpfc_sli_issue_mbox(phba
, mboxq
, MBX_POLL
);
5820 rc
= lpfc_sli_issue_mbox_wait(phba
, mboxq
, mbox_tmo
);
5821 if (rc
== MBX_TIMEOUT
)
5823 /* Check return status */
5824 shdr
= (union lpfc_sli4_cfg_shdr
*)
5825 &mboxq
->u
.mqe
.un
.sli4_config
.header
.cfg_shdr
;
5826 shdr_status
= bf_get(lpfc_mbox_hdr_status
, &shdr
->response
);
5827 shdr_add_status
= bf_get(lpfc_mbox_hdr_add_status
,
5829 if (shdr_status
|| shdr_add_status
|| rc
) {
5830 lpfc_printf_log(phba
, KERN_WARNING
, LOG_INIT
,
5831 "2520 NOP mailbox command failed "
5832 "status x%x add_status x%x mbx "
5833 "status x%x\n", shdr_status
,
5834 shdr_add_status
, rc
);
5839 if (rc
!= MBX_TIMEOUT
)
5840 mempool_free(mboxq
, phba
->mbox_mem_pool
);
5846 * lpfc_sli4_fcfi_unreg - Unregister fcfi to device
5847 * @phba: pointer to lpfc hba data structure.
5850 * This routine is invoked to unregister a FCFI from device.
5853 lpfc_sli4_fcfi_unreg(struct lpfc_hba
*phba
, uint16_t fcfi
)
5858 unsigned long flags
;
5860 mbox
= mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
5865 lpfc_unreg_fcfi(mbox
, fcfi
);
5867 if (!phba
->sli4_hba
.intr_enable
)
5868 rc
= lpfc_sli_issue_mbox(phba
, mbox
, MBX_POLL
);
5870 mbox_tmo
= lpfc_mbox_tmo_val(phba
, MBX_SLI4_CONFIG
);
5871 rc
= lpfc_sli_issue_mbox_wait(phba
, mbox
, mbox_tmo
);
5873 if (rc
!= MBX_TIMEOUT
)
5874 mempool_free(mbox
, phba
->mbox_mem_pool
);
5875 if (rc
!= MBX_SUCCESS
)
5876 lpfc_printf_log(phba
, KERN_ERR
, LOG_SLI
,
5877 "2517 Unregister FCFI command failed "
5878 "status %d, mbxStatus x%x\n", rc
,
5879 bf_get(lpfc_mqe_status
, &mbox
->u
.mqe
));
5881 spin_lock_irqsave(&phba
->hbalock
, flags
);
5882 /* Mark the FCFI is no longer registered */
5883 phba
->fcf
.fcf_flag
&=
5884 ~(FCF_AVAILABLE
| FCF_REGISTERED
| FCF_DISCOVERED
);
5885 spin_unlock_irqrestore(&phba
->hbalock
, flags
);
5890 * lpfc_sli4_pci_mem_setup - Setup SLI4 HBA PCI memory space.
5891 * @phba: pointer to lpfc hba data structure.
5893 * This routine is invoked to set up the PCI device memory space for device
5894 * with SLI-4 interface spec.
5898 * other values - error
5901 lpfc_sli4_pci_mem_setup(struct lpfc_hba
*phba
)
5903 struct pci_dev
*pdev
;
5904 unsigned long bar0map_len
, bar1map_len
, bar2map_len
;
5905 int error
= -ENODEV
;
5907 /* Obtain PCI device reference */
5911 pdev
= phba
->pcidev
;
5913 /* Set the device DMA mask size */
5914 if (pci_set_dma_mask(pdev
, DMA_BIT_MASK(64)) != 0)
5915 if (pci_set_dma_mask(pdev
, DMA_BIT_MASK(32)) != 0)
5918 /* Get the bus address of SLI4 device Bar0, Bar1, and Bar2 and the
5919 * number of bytes required by each mapping. They are actually
5920 * mapping to the PCI BAR regions 1, 2, and 4 by the SLI4 device.
5922 phba
->pci_bar0_map
= pci_resource_start(pdev
, LPFC_SLI4_BAR0
);
5923 bar0map_len
= pci_resource_len(pdev
, LPFC_SLI4_BAR0
);
5925 phba
->pci_bar1_map
= pci_resource_start(pdev
, LPFC_SLI4_BAR1
);
5926 bar1map_len
= pci_resource_len(pdev
, LPFC_SLI4_BAR1
);
5928 phba
->pci_bar2_map
= pci_resource_start(pdev
, LPFC_SLI4_BAR2
);
5929 bar2map_len
= pci_resource_len(pdev
, LPFC_SLI4_BAR2
);
5931 /* Map SLI4 PCI Config Space Register base to a kernel virtual addr */
5932 phba
->sli4_hba
.conf_regs_memmap_p
=
5933 ioremap(phba
->pci_bar0_map
, bar0map_len
);
5934 if (!phba
->sli4_hba
.conf_regs_memmap_p
) {
5935 dev_printk(KERN_ERR
, &pdev
->dev
,
5936 "ioremap failed for SLI4 PCI config registers.\n");
5940 /* Map SLI4 HBA Control Register base to a kernel virtual address. */
5941 phba
->sli4_hba
.ctrl_regs_memmap_p
=
5942 ioremap(phba
->pci_bar1_map
, bar1map_len
);
5943 if (!phba
->sli4_hba
.ctrl_regs_memmap_p
) {
5944 dev_printk(KERN_ERR
, &pdev
->dev
,
5945 "ioremap failed for SLI4 HBA control registers.\n");
5946 goto out_iounmap_conf
;
5949 /* Map SLI4 HBA Doorbell Register base to a kernel virtual address. */
5950 phba
->sli4_hba
.drbl_regs_memmap_p
=
5951 ioremap(phba
->pci_bar2_map
, bar2map_len
);
5952 if (!phba
->sli4_hba
.drbl_regs_memmap_p
) {
5953 dev_printk(KERN_ERR
, &pdev
->dev
,
5954 "ioremap failed for SLI4 HBA doorbell registers.\n");
5955 goto out_iounmap_ctrl
;
5958 /* Set up BAR0 PCI config space register memory map */
5959 lpfc_sli4_bar0_register_memmap(phba
);
5961 /* Set up BAR1 register memory map */
5962 lpfc_sli4_bar1_register_memmap(phba
);
5964 /* Set up BAR2 register memory map */
5965 error
= lpfc_sli4_bar2_register_memmap(phba
, LPFC_VF0
);
5967 goto out_iounmap_all
;
5972 iounmap(phba
->sli4_hba
.drbl_regs_memmap_p
);
5974 iounmap(phba
->sli4_hba
.ctrl_regs_memmap_p
);
5976 iounmap(phba
->sli4_hba
.conf_regs_memmap_p
);
5982 * lpfc_sli4_pci_mem_unset - Unset SLI4 HBA PCI memory space.
5983 * @phba: pointer to lpfc hba data structure.
5985 * This routine is invoked to unset the PCI device memory space for device
5986 * with SLI-4 interface spec.
5989 lpfc_sli4_pci_mem_unset(struct lpfc_hba
*phba
)
5991 struct pci_dev
*pdev
;
5993 /* Obtain PCI device reference */
5997 pdev
= phba
->pcidev
;
5999 /* Free coherent DMA memory allocated */
6001 /* Unmap I/O memory space */
6002 iounmap(phba
->sli4_hba
.drbl_regs_memmap_p
);
6003 iounmap(phba
->sli4_hba
.ctrl_regs_memmap_p
);
6004 iounmap(phba
->sli4_hba
.conf_regs_memmap_p
);
6010 * lpfc_sli_enable_msix - Enable MSI-X interrupt mode on SLI-3 device
6011 * @phba: pointer to lpfc hba data structure.
6013 * This routine is invoked to enable the MSI-X interrupt vectors to device
6014 * with SLI-3 interface specs. The kernel function pci_enable_msix() is
6015 * called to enable the MSI-X vectors. Note that pci_enable_msix(), once
6016 * invoked, enables either all or nothing, depending on the current
6017 * availability of PCI vector resources. The device driver is responsible
6018 * for calling the individual request_irq() to register each MSI-X vector
6019 * with a interrupt handler, which is done in this function. Note that
6020 * later when device is unloading, the driver should always call free_irq()
6021 * on all MSI-X vectors it has done request_irq() on before calling
6022 * pci_disable_msix(). Failure to do so results in a BUG_ON() and a device
6023 * will be left with MSI-X enabled and leaks its vectors.
6027 * other values - error
6030 lpfc_sli_enable_msix(struct lpfc_hba
*phba
)
6035 /* Set up MSI-X multi-message vectors */
6036 for (i
= 0; i
< LPFC_MSIX_VECTORS
; i
++)
6037 phba
->msix_entries
[i
].entry
= i
;
6039 /* Configure MSI-X capability structure */
6040 rc
= pci_enable_msix(phba
->pcidev
, phba
->msix_entries
,
6041 ARRAY_SIZE(phba
->msix_entries
));
6043 lpfc_printf_log(phba
, KERN_INFO
, LOG_INIT
,
6044 "0420 PCI enable MSI-X failed (%d)\n", rc
);
6047 for (i
= 0; i
< LPFC_MSIX_VECTORS
; i
++)
6048 lpfc_printf_log(phba
, KERN_INFO
, LOG_INIT
,
6049 "0477 MSI-X entry[%d]: vector=x%x "
6051 phba
->msix_entries
[i
].vector
,
6052 phba
->msix_entries
[i
].entry
);
6054 * Assign MSI-X vectors to interrupt handlers
6057 /* vector-0 is associated to slow-path handler */
6058 rc
= request_irq(phba
->msix_entries
[0].vector
,
6059 &lpfc_sli_sp_intr_handler
, IRQF_SHARED
,
6060 LPFC_SP_DRIVER_HANDLER_NAME
, phba
);
6062 lpfc_printf_log(phba
, KERN_WARNING
, LOG_INIT
,
6063 "0421 MSI-X slow-path request_irq failed "
6068 /* vector-1 is associated to fast-path handler */
6069 rc
= request_irq(phba
->msix_entries
[1].vector
,
6070 &lpfc_sli_fp_intr_handler
, IRQF_SHARED
,
6071 LPFC_FP_DRIVER_HANDLER_NAME
, phba
);
6074 lpfc_printf_log(phba
, KERN_WARNING
, LOG_INIT
,
6075 "0429 MSI-X fast-path request_irq failed "
6081 * Configure HBA MSI-X attention conditions to messages
6083 pmb
= (LPFC_MBOXQ_t
*) mempool_alloc(phba
->mbox_mem_pool
, GFP_KERNEL
);
6087 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
6088 "0474 Unable to allocate memory for issuing "
6089 "MBOX_CONFIG_MSI command\n");
6092 rc
= lpfc_config_msi(phba
, pmb
);
6095 rc
= lpfc_sli_issue_mbox(phba
, pmb
, MBX_POLL
);
6096 if (rc
!= MBX_SUCCESS
) {
6097 lpfc_printf_log(phba
, KERN_WARNING
, LOG_MBOX
,
6098 "0351 Config MSI mailbox command failed, "
6099 "mbxCmd x%x, mbxStatus x%x\n",
6100 pmb
->u
.mb
.mbxCommand
, pmb
->u
.mb
.mbxStatus
);
6104 /* Free memory allocated for mailbox command */
6105 mempool_free(pmb
, phba
->mbox_mem_pool
);
6109 /* Free memory allocated for mailbox command */
6110 mempool_free(pmb
, phba
->mbox_mem_pool
);
6113 /* free the irq already requested */
6114 free_irq(phba
->msix_entries
[1].vector
, phba
);
6117 /* free the irq already requested */
6118 free_irq(phba
->msix_entries
[0].vector
, phba
);
6121 /* Unconfigure MSI-X capability structure */
6122 pci_disable_msix(phba
->pcidev
);
6127 * lpfc_sli_disable_msix - Disable MSI-X interrupt mode on SLI-3 device.
6128 * @phba: pointer to lpfc hba data structure.
6130 * This routine is invoked to release the MSI-X vectors and then disable the
6131 * MSI-X interrupt mode to device with SLI-3 interface spec.
6134 lpfc_sli_disable_msix(struct lpfc_hba
*phba
)
6138 /* Free up MSI-X multi-message vectors */
6139 for (i
= 0; i
< LPFC_MSIX_VECTORS
; i
++)
6140 free_irq(phba
->msix_entries
[i
].vector
, phba
);
6142 pci_disable_msix(phba
->pcidev
);
6148 * lpfc_sli_enable_msi - Enable MSI interrupt mode on SLI-3 device.
6149 * @phba: pointer to lpfc hba data structure.
6151 * This routine is invoked to enable the MSI interrupt mode to device with
6152 * SLI-3 interface spec. The kernel function pci_enable_msi() is called to
6153 * enable the MSI vector. The device driver is responsible for calling the
6154 * request_irq() to register MSI vector with a interrupt the handler, which
6155 * is done in this function.
6159 * other values - error
6162 lpfc_sli_enable_msi(struct lpfc_hba
*phba
)
6166 rc
= pci_enable_msi(phba
->pcidev
);
6168 lpfc_printf_log(phba
, KERN_INFO
, LOG_INIT
,
6169 "0462 PCI enable MSI mode success.\n");
6171 lpfc_printf_log(phba
, KERN_INFO
, LOG_INIT
,
6172 "0471 PCI enable MSI mode failed (%d)\n", rc
);
6176 rc
= request_irq(phba
->pcidev
->irq
, lpfc_sli_intr_handler
,
6177 IRQF_SHARED
, LPFC_DRIVER_NAME
, phba
);
6179 pci_disable_msi(phba
->pcidev
);
6180 lpfc_printf_log(phba
, KERN_WARNING
, LOG_INIT
,
6181 "0478 MSI request_irq failed (%d)\n", rc
);
6187 * lpfc_sli_disable_msi - Disable MSI interrupt mode to SLI-3 device.
6188 * @phba: pointer to lpfc hba data structure.
6190 * This routine is invoked to disable the MSI interrupt mode to device with
6191 * SLI-3 interface spec. The driver calls free_irq() on MSI vector it has
6192 * done request_irq() on before calling pci_disable_msi(). Failure to do so
6193 * results in a BUG_ON() and a device will be left with MSI enabled and leaks
6197 lpfc_sli_disable_msi(struct lpfc_hba
*phba
)
6199 free_irq(phba
->pcidev
->irq
, phba
);
6200 pci_disable_msi(phba
->pcidev
);
6205 * lpfc_sli_enable_intr - Enable device interrupt to SLI-3 device.
6206 * @phba: pointer to lpfc hba data structure.
6208 * This routine is invoked to enable device interrupt and associate driver's
6209 * interrupt handler(s) to interrupt vector(s) to device with SLI-3 interface
6210 * spec. Depends on the interrupt mode configured to the driver, the driver
6211 * will try to fallback from the configured interrupt mode to an interrupt
6212 * mode which is supported by the platform, kernel, and device in the order
6214 * MSI-X -> MSI -> IRQ.
6218 * other values - error
6221 lpfc_sli_enable_intr(struct lpfc_hba
*phba
, uint32_t cfg_mode
)
6223 uint32_t intr_mode
= LPFC_INTR_ERROR
;
6226 if (cfg_mode
== 2) {
6227 /* Need to issue conf_port mbox cmd before conf_msi mbox cmd */
6228 retval
= lpfc_sli_config_port(phba
, LPFC_SLI_REV3
);
6230 /* Now, try to enable MSI-X interrupt mode */
6231 retval
= lpfc_sli_enable_msix(phba
);
6233 /* Indicate initialization to MSI-X mode */
6234 phba
->intr_type
= MSIX
;
6240 /* Fallback to MSI if MSI-X initialization failed */
6241 if (cfg_mode
>= 1 && phba
->intr_type
== NONE
) {
6242 retval
= lpfc_sli_enable_msi(phba
);
6244 /* Indicate initialization to MSI mode */
6245 phba
->intr_type
= MSI
;
6250 /* Fallback to INTx if both MSI-X/MSI initalization failed */
6251 if (phba
->intr_type
== NONE
) {
6252 retval
= request_irq(phba
->pcidev
->irq
, lpfc_sli_intr_handler
,
6253 IRQF_SHARED
, LPFC_DRIVER_NAME
, phba
);
6255 /* Indicate initialization to INTx mode */
6256 phba
->intr_type
= INTx
;
6264 * lpfc_sli_disable_intr - Disable device interrupt to SLI-3 device.
6265 * @phba: pointer to lpfc hba data structure.
6267 * This routine is invoked to disable device interrupt and disassociate the
6268 * driver's interrupt handler(s) from interrupt vector(s) to device with
6269 * SLI-3 interface spec. Depending on the interrupt mode, the driver will
6270 * release the interrupt vector(s) for the message signaled interrupt.
6273 lpfc_sli_disable_intr(struct lpfc_hba
*phba
)
6275 /* Disable the currently initialized interrupt mode */
6276 if (phba
->intr_type
== MSIX
)
6277 lpfc_sli_disable_msix(phba
);
6278 else if (phba
->intr_type
== MSI
)
6279 lpfc_sli_disable_msi(phba
);
6280 else if (phba
->intr_type
== INTx
)
6281 free_irq(phba
->pcidev
->irq
, phba
);
6283 /* Reset interrupt management states */
6284 phba
->intr_type
= NONE
;
6285 phba
->sli
.slistat
.sli_intr
= 0;
6291 * lpfc_sli4_enable_msix - Enable MSI-X interrupt mode to SLI-4 device
6292 * @phba: pointer to lpfc hba data structure.
6294 * This routine is invoked to enable the MSI-X interrupt vectors to device
6295 * with SLI-4 interface spec. The kernel function pci_enable_msix() is called
6296 * to enable the MSI-X vectors. Note that pci_enable_msix(), once invoked,
6297 * enables either all or nothing, depending on the current availability of
6298 * PCI vector resources. The device driver is responsible for calling the
6299 * individual request_irq() to register each MSI-X vector with a interrupt
6300 * handler, which is done in this function. Note that later when device is
6301 * unloading, the driver should always call free_irq() on all MSI-X vectors
6302 * it has done request_irq() on before calling pci_disable_msix(). Failure
6303 * to do so results in a BUG_ON() and a device will be left with MSI-X
6304 * enabled and leaks its vectors.
6308 * other values - error
6311 lpfc_sli4_enable_msix(struct lpfc_hba
*phba
)
6315 /* Set up MSI-X multi-message vectors */
6316 for (index
= 0; index
< phba
->sli4_hba
.cfg_eqn
; index
++)
6317 phba
->sli4_hba
.msix_entries
[index
].entry
= index
;
6319 /* Configure MSI-X capability structure */
6320 rc
= pci_enable_msix(phba
->pcidev
, phba
->sli4_hba
.msix_entries
,
6321 phba
->sli4_hba
.cfg_eqn
);
6323 lpfc_printf_log(phba
, KERN_INFO
, LOG_INIT
,
6324 "0484 PCI enable MSI-X failed (%d)\n", rc
);
6327 /* Log MSI-X vector assignment */
6328 for (index
= 0; index
< phba
->sli4_hba
.cfg_eqn
; index
++)
6329 lpfc_printf_log(phba
, KERN_INFO
, LOG_INIT
,
6330 "0489 MSI-X entry[%d]: vector=x%x "
6331 "message=%d\n", index
,
6332 phba
->sli4_hba
.msix_entries
[index
].vector
,
6333 phba
->sli4_hba
.msix_entries
[index
].entry
);
6335 * Assign MSI-X vectors to interrupt handlers
6338 /* The first vector must associated to slow-path handler for MQ */
6339 rc
= request_irq(phba
->sli4_hba
.msix_entries
[0].vector
,
6340 &lpfc_sli4_sp_intr_handler
, IRQF_SHARED
,
6341 LPFC_SP_DRIVER_HANDLER_NAME
, phba
);
6343 lpfc_printf_log(phba
, KERN_WARNING
, LOG_INIT
,
6344 "0485 MSI-X slow-path request_irq failed "
6349 /* The rest of the vector(s) are associated to fast-path handler(s) */
6350 for (index
= 1; index
< phba
->sli4_hba
.cfg_eqn
; index
++) {
6351 phba
->sli4_hba
.fcp_eq_hdl
[index
- 1].idx
= index
- 1;
6352 phba
->sli4_hba
.fcp_eq_hdl
[index
- 1].phba
= phba
;
6353 rc
= request_irq(phba
->sli4_hba
.msix_entries
[index
].vector
,
6354 &lpfc_sli4_fp_intr_handler
, IRQF_SHARED
,
6355 LPFC_FP_DRIVER_HANDLER_NAME
,
6356 &phba
->sli4_hba
.fcp_eq_hdl
[index
- 1]);
6358 lpfc_printf_log(phba
, KERN_WARNING
, LOG_INIT
,
6359 "0486 MSI-X fast-path (%d) "
6360 "request_irq failed (%d)\n", index
, rc
);
6368 /* free the irq already requested */
6369 for (--index
; index
>= 1; index
--)
6370 free_irq(phba
->sli4_hba
.msix_entries
[index
- 1].vector
,
6371 &phba
->sli4_hba
.fcp_eq_hdl
[index
- 1]);
6373 /* free the irq already requested */
6374 free_irq(phba
->sli4_hba
.msix_entries
[0].vector
, phba
);
6377 /* Unconfigure MSI-X capability structure */
6378 pci_disable_msix(phba
->pcidev
);
6383 * lpfc_sli4_disable_msix - Disable MSI-X interrupt mode to SLI-4 device
6384 * @phba: pointer to lpfc hba data structure.
6386 * This routine is invoked to release the MSI-X vectors and then disable the
6387 * MSI-X interrupt mode to device with SLI-4 interface spec.
6390 lpfc_sli4_disable_msix(struct lpfc_hba
*phba
)
6394 /* Free up MSI-X multi-message vectors */
6395 free_irq(phba
->sli4_hba
.msix_entries
[0].vector
, phba
);
6397 for (index
= 1; index
< phba
->sli4_hba
.cfg_eqn
; index
++)
6398 free_irq(phba
->sli4_hba
.msix_entries
[index
].vector
,
6399 &phba
->sli4_hba
.fcp_eq_hdl
[index
- 1]);
6401 pci_disable_msix(phba
->pcidev
);
6407 * lpfc_sli4_enable_msi - Enable MSI interrupt mode to SLI-4 device
6408 * @phba: pointer to lpfc hba data structure.
6410 * This routine is invoked to enable the MSI interrupt mode to device with
6411 * SLI-4 interface spec. The kernel function pci_enable_msi() is called
6412 * to enable the MSI vector. The device driver is responsible for calling
6413 * the request_irq() to register MSI vector with a interrupt the handler,
6414 * which is done in this function.
6418 * other values - error
6421 lpfc_sli4_enable_msi(struct lpfc_hba
*phba
)
6425 rc
= pci_enable_msi(phba
->pcidev
);
6427 lpfc_printf_log(phba
, KERN_INFO
, LOG_INIT
,
6428 "0487 PCI enable MSI mode success.\n");
6430 lpfc_printf_log(phba
, KERN_INFO
, LOG_INIT
,
6431 "0488 PCI enable MSI mode failed (%d)\n", rc
);
6435 rc
= request_irq(phba
->pcidev
->irq
, lpfc_sli4_intr_handler
,
6436 IRQF_SHARED
, LPFC_DRIVER_NAME
, phba
);
6438 pci_disable_msi(phba
->pcidev
);
6439 lpfc_printf_log(phba
, KERN_WARNING
, LOG_INIT
,
6440 "0490 MSI request_irq failed (%d)\n", rc
);
6443 for (index
= 0; index
< phba
->cfg_fcp_eq_count
; index
++) {
6444 phba
->sli4_hba
.fcp_eq_hdl
[index
].idx
= index
;
6445 phba
->sli4_hba
.fcp_eq_hdl
[index
].phba
= phba
;
6452 * lpfc_sli4_disable_msi - Disable MSI interrupt mode to SLI-4 device
6453 * @phba: pointer to lpfc hba data structure.
6455 * This routine is invoked to disable the MSI interrupt mode to device with
6456 * SLI-4 interface spec. The driver calls free_irq() on MSI vector it has
6457 * done request_irq() on before calling pci_disable_msi(). Failure to do so
6458 * results in a BUG_ON() and a device will be left with MSI enabled and leaks
6462 lpfc_sli4_disable_msi(struct lpfc_hba
*phba
)
6464 free_irq(phba
->pcidev
->irq
, phba
);
6465 pci_disable_msi(phba
->pcidev
);
6470 * lpfc_sli4_enable_intr - Enable device interrupt to SLI-4 device
6471 * @phba: pointer to lpfc hba data structure.
6473 * This routine is invoked to enable device interrupt and associate driver's
6474 * interrupt handler(s) to interrupt vector(s) to device with SLI-4
6475 * interface spec. Depends on the interrupt mode configured to the driver,
6476 * the driver will try to fallback from the configured interrupt mode to an
6477 * interrupt mode which is supported by the platform, kernel, and device in
6479 * MSI-X -> MSI -> IRQ.
6483 * other values - error
6486 lpfc_sli4_enable_intr(struct lpfc_hba
*phba
, uint32_t cfg_mode
)
6488 uint32_t intr_mode
= LPFC_INTR_ERROR
;
6491 if (cfg_mode
== 2) {
6492 /* Preparation before conf_msi mbox cmd */
6495 /* Now, try to enable MSI-X interrupt mode */
6496 retval
= lpfc_sli4_enable_msix(phba
);
6498 /* Indicate initialization to MSI-X mode */
6499 phba
->intr_type
= MSIX
;
6505 /* Fallback to MSI if MSI-X initialization failed */
6506 if (cfg_mode
>= 1 && phba
->intr_type
== NONE
) {
6507 retval
= lpfc_sli4_enable_msi(phba
);
6509 /* Indicate initialization to MSI mode */
6510 phba
->intr_type
= MSI
;
6515 /* Fallback to INTx if both MSI-X/MSI initalization failed */
6516 if (phba
->intr_type
== NONE
) {
6517 retval
= request_irq(phba
->pcidev
->irq
, lpfc_sli4_intr_handler
,
6518 IRQF_SHARED
, LPFC_DRIVER_NAME
, phba
);
6520 /* Indicate initialization to INTx mode */
6521 phba
->intr_type
= INTx
;
6523 for (index
= 0; index
< phba
->cfg_fcp_eq_count
;
6525 phba
->sli4_hba
.fcp_eq_hdl
[index
].idx
= index
;
6526 phba
->sli4_hba
.fcp_eq_hdl
[index
].phba
= phba
;
6534 * lpfc_sli4_disable_intr - Disable device interrupt to SLI-4 device
6535 * @phba: pointer to lpfc hba data structure.
6537 * This routine is invoked to disable device interrupt and disassociate
6538 * the driver's interrupt handler(s) from interrupt vector(s) to device
6539 * with SLI-4 interface spec. Depending on the interrupt mode, the driver
6540 * will release the interrupt vector(s) for the message signaled interrupt.
6543 lpfc_sli4_disable_intr(struct lpfc_hba
*phba
)
6545 /* Disable the currently initialized interrupt mode */
6546 if (phba
->intr_type
== MSIX
)
6547 lpfc_sli4_disable_msix(phba
);
6548 else if (phba
->intr_type
== MSI
)
6549 lpfc_sli4_disable_msi(phba
);
6550 else if (phba
->intr_type
== INTx
)
6551 free_irq(phba
->pcidev
->irq
, phba
);
6553 /* Reset interrupt management states */
6554 phba
->intr_type
= NONE
;
6555 phba
->sli
.slistat
.sli_intr
= 0;
6561 * lpfc_unset_hba - Unset SLI3 hba device initialization
6562 * @phba: pointer to lpfc hba data structure.
6564 * This routine is invoked to unset the HBA device initialization steps to
6565 * a device with SLI-3 interface spec.
6568 lpfc_unset_hba(struct lpfc_hba
*phba
)
6570 struct lpfc_vport
*vport
= phba
->pport
;
6571 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
6573 spin_lock_irq(shost
->host_lock
);
6574 vport
->load_flag
|= FC_UNLOADING
;
6575 spin_unlock_irq(shost
->host_lock
);
6577 lpfc_stop_hba_timers(phba
);
6579 phba
->pport
->work_port_events
= 0;
6581 lpfc_sli_hba_down(phba
);
6583 lpfc_sli_brdrestart(phba
);
6585 lpfc_sli_disable_intr(phba
);
6591 * lpfc_sli4_unset_hba - Unset SLI4 hba device initialization.
6592 * @phba: pointer to lpfc hba data structure.
6594 * This routine is invoked to unset the HBA device initialization steps to
6595 * a device with SLI-4 interface spec.
6598 lpfc_sli4_unset_hba(struct lpfc_hba
*phba
)
6600 struct lpfc_vport
*vport
= phba
->pport
;
6601 struct Scsi_Host
*shost
= lpfc_shost_from_vport(vport
);
6603 spin_lock_irq(shost
->host_lock
);
6604 vport
->load_flag
|= FC_UNLOADING
;
6605 spin_unlock_irq(shost
->host_lock
);
6607 phba
->pport
->work_port_events
= 0;
6609 lpfc_sli4_hba_down(phba
);
6611 lpfc_sli4_disable_intr(phba
);
6617 * lpfc_sli4_hba_unset - Unset the fcoe hba
6618 * @phba: Pointer to HBA context object.
6620 * This function is called in the SLI4 code path to reset the HBA's FCoE
6621 * function. The caller is not required to hold any lock. This routine
6622 * issues PCI function reset mailbox command to reset the FCoE function.
6623 * At the end of the function, it calls lpfc_hba_down_post function to
6624 * free any pending commands.
6627 lpfc_sli4_hba_unset(struct lpfc_hba
*phba
)
6630 LPFC_MBOXQ_t
*mboxq
;
6632 lpfc_stop_hba_timers(phba
);
6633 phba
->sli4_hba
.intr_enable
= 0;
6636 * Gracefully wait out the potential current outstanding asynchronous
6640 /* First, block any pending async mailbox command from posted */
6641 spin_lock_irq(&phba
->hbalock
);
6642 phba
->sli
.sli_flag
|= LPFC_SLI_ASYNC_MBX_BLK
;
6643 spin_unlock_irq(&phba
->hbalock
);
6644 /* Now, trying to wait it out if we can */
6645 while (phba
->sli
.sli_flag
& LPFC_SLI_MBOX_ACTIVE
) {
6647 if (++wait_cnt
> LPFC_ACTIVE_MBOX_WAIT_CNT
)
6650 /* Forcefully release the outstanding mailbox command if timed out */
6651 if (phba
->sli
.sli_flag
& LPFC_SLI_MBOX_ACTIVE
) {
6652 spin_lock_irq(&phba
->hbalock
);
6653 mboxq
= phba
->sli
.mbox_active
;
6654 mboxq
->u
.mb
.mbxStatus
= MBX_NOT_FINISHED
;
6655 __lpfc_mbox_cmpl_put(phba
, mboxq
);
6656 phba
->sli
.sli_flag
&= ~LPFC_SLI_MBOX_ACTIVE
;
6657 phba
->sli
.mbox_active
= NULL
;
6658 spin_unlock_irq(&phba
->hbalock
);
6661 /* Tear down the queues in the HBA */
6662 lpfc_sli4_queue_unset(phba
);
6664 /* Disable PCI subsystem interrupt */
6665 lpfc_sli4_disable_intr(phba
);
6667 /* Stop kthread signal shall trigger work_done one more time */
6668 kthread_stop(phba
->worker_thread
);
6670 /* Stop the SLI4 device port */
6671 phba
->pport
->work_port_events
= 0;
6675 * lpfc_pci_probe_one_s3 - PCI probe func to reg SLI-3 device to PCI subsystem.
6676 * @pdev: pointer to PCI device
6677 * @pid: pointer to PCI device identifier
6679 * This routine is to be called to attach a device with SLI-3 interface spec
6680 * to the PCI subsystem. When an Emulex HBA with SLI-3 interface spec is
6681 * presented on PCI bus, the kernel PCI subsystem looks at PCI device-specific
6682 * information of the device and driver to see if the driver state that it can
6683 * support this kind of device. If the match is successful, the driver core
6684 * invokes this routine. If this routine determines it can claim the HBA, it
6685 * does all the initialization that it needs to do to handle the HBA properly.
6688 * 0 - driver can claim the device
6689 * negative value - driver can not claim the device
6691 static int __devinit
6692 lpfc_pci_probe_one_s3(struct pci_dev
*pdev
, const struct pci_device_id
*pid
)
6694 struct lpfc_hba
*phba
;
6695 struct lpfc_vport
*vport
= NULL
;
6697 uint32_t cfg_mode
, intr_mode
;
6699 /* Allocate memory for HBA structure */
6700 phba
= lpfc_hba_alloc(pdev
);
6704 /* Perform generic PCI device enabling operation */
6705 error
= lpfc_enable_pci_dev(phba
);
6707 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
6708 "1401 Failed to enable pci device.\n");
6712 /* Set up SLI API function jump table for PCI-device group-0 HBAs */
6713 error
= lpfc_api_table_setup(phba
, LPFC_PCI_DEV_LP
);
6715 goto out_disable_pci_dev
;
6717 /* Set up SLI-3 specific device PCI memory space */
6718 error
= lpfc_sli_pci_mem_setup(phba
);
6720 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
6721 "1402 Failed to set up pci memory space.\n");
6722 goto out_disable_pci_dev
;
6725 /* Set up phase-1 common device driver resources */
6726 error
= lpfc_setup_driver_resource_phase1(phba
);
6728 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
6729 "1403 Failed to set up driver resource.\n");
6730 goto out_unset_pci_mem_s3
;
6733 /* Set up SLI-3 specific device driver resources */
6734 error
= lpfc_sli_driver_resource_setup(phba
);
6736 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
6737 "1404 Failed to set up driver resource.\n");
6738 goto out_unset_pci_mem_s3
;
6741 /* Initialize and populate the iocb list per host */
6742 error
= lpfc_init_iocb_list(phba
, LPFC_IOCB_LIST_CNT
);
6744 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
6745 "1405 Failed to initialize iocb list.\n");
6746 goto out_unset_driver_resource_s3
;
6749 /* Set up common device driver resources */
6750 error
= lpfc_setup_driver_resource_phase2(phba
);
6752 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
6753 "1406 Failed to set up driver resource.\n");
6754 goto out_free_iocb_list
;
6757 /* Create SCSI host to the physical port */
6758 error
= lpfc_create_shost(phba
);
6760 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
6761 "1407 Failed to create scsi host.\n");
6762 goto out_unset_driver_resource
;
6765 /* Configure sysfs attributes */
6766 vport
= phba
->pport
;
6767 error
= lpfc_alloc_sysfs_attr(vport
);
6769 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
6770 "1476 Failed to allocate sysfs attr\n");
6771 goto out_destroy_shost
;
6774 /* Now, trying to enable interrupt and bring up the device */
6775 cfg_mode
= phba
->cfg_use_msi
;
6777 /* Put device to a known state before enabling interrupt */
6778 lpfc_stop_port(phba
);
6779 /* Configure and enable interrupt */
6780 intr_mode
= lpfc_sli_enable_intr(phba
, cfg_mode
);
6781 if (intr_mode
== LPFC_INTR_ERROR
) {
6782 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
6783 "0431 Failed to enable interrupt.\n");
6785 goto out_free_sysfs_attr
;
6787 /* SLI-3 HBA setup */
6788 if (lpfc_sli_hba_setup(phba
)) {
6789 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
6790 "1477 Failed to set up hba\n");
6792 goto out_remove_device
;
6795 /* Wait 50ms for the interrupts of previous mailbox commands */
6797 /* Check active interrupts on message signaled interrupts */
6798 if (intr_mode
== 0 ||
6799 phba
->sli
.slistat
.sli_intr
> LPFC_MSIX_VECTORS
) {
6800 /* Log the current active interrupt mode */
6801 phba
->intr_mode
= intr_mode
;
6802 lpfc_log_intr_mode(phba
, intr_mode
);
6805 lpfc_printf_log(phba
, KERN_INFO
, LOG_INIT
,
6806 "0447 Configure interrupt mode (%d) "
6807 "failed active interrupt test.\n",
6809 /* Disable the current interrupt mode */
6810 lpfc_sli_disable_intr(phba
);
6811 /* Try next level of interrupt mode */
6812 cfg_mode
= --intr_mode
;
6816 /* Perform post initialization setup */
6817 lpfc_post_init_setup(phba
);
6819 /* Check if there are static vports to be created. */
6820 lpfc_create_static_vport(phba
);
6825 lpfc_unset_hba(phba
);
6826 out_free_sysfs_attr
:
6827 lpfc_free_sysfs_attr(vport
);
6829 lpfc_destroy_shost(phba
);
6830 out_unset_driver_resource
:
6831 lpfc_unset_driver_resource_phase2(phba
);
6833 lpfc_free_iocb_list(phba
);
6834 out_unset_driver_resource_s3
:
6835 lpfc_sli_driver_resource_unset(phba
);
6836 out_unset_pci_mem_s3
:
6837 lpfc_sli_pci_mem_unset(phba
);
6838 out_disable_pci_dev
:
6839 lpfc_disable_pci_dev(phba
);
6841 lpfc_hba_free(phba
);
6846 * lpfc_pci_remove_one_s3 - PCI func to unreg SLI-3 device from PCI subsystem.
6847 * @pdev: pointer to PCI device
6849 * This routine is to be called to disattach a device with SLI-3 interface
6850 * spec from PCI subsystem. When an Emulex HBA with SLI-3 interface spec is
6851 * removed from PCI bus, it performs all the necessary cleanup for the HBA
6852 * device to be removed from the PCI subsystem properly.
6854 static void __devexit
6855 lpfc_pci_remove_one_s3(struct pci_dev
*pdev
)
6857 struct Scsi_Host
*shost
= pci_get_drvdata(pdev
);
6858 struct lpfc_vport
*vport
= (struct lpfc_vport
*) shost
->hostdata
;
6859 struct lpfc_vport
**vports
;
6860 struct lpfc_hba
*phba
= vport
->phba
;
6862 int bars
= pci_select_bars(pdev
, IORESOURCE_MEM
);
6864 spin_lock_irq(&phba
->hbalock
);
6865 vport
->load_flag
|= FC_UNLOADING
;
6866 spin_unlock_irq(&phba
->hbalock
);
6868 lpfc_free_sysfs_attr(vport
);
6870 /* Release all the vports against this physical port */
6871 vports
= lpfc_create_vport_work_array(phba
);
6873 for (i
= 1; i
<= phba
->max_vports
&& vports
[i
] != NULL
; i
++)
6874 fc_vport_terminate(vports
[i
]->fc_vport
);
6875 lpfc_destroy_vport_work_array(phba
, vports
);
6877 /* Remove FC host and then SCSI host with the physical port */
6878 fc_remove_host(shost
);
6879 scsi_remove_host(shost
);
6880 lpfc_cleanup(vport
);
6883 * Bring down the SLI Layer. This step disable all interrupts,
6884 * clears the rings, discards all mailbox commands, and resets
6888 /* HBA interrupt will be diabled after this call */
6889 lpfc_sli_hba_down(phba
);
6890 /* Stop kthread signal shall trigger work_done one more time */
6891 kthread_stop(phba
->worker_thread
);
6892 /* Final cleanup of txcmplq and reset the HBA */
6893 lpfc_sli_brdrestart(phba
);
6895 lpfc_stop_hba_timers(phba
);
6896 spin_lock_irq(&phba
->hbalock
);
6897 list_del_init(&vport
->listentry
);
6898 spin_unlock_irq(&phba
->hbalock
);
6900 lpfc_debugfs_terminate(vport
);
6902 /* Disable interrupt */
6903 lpfc_sli_disable_intr(phba
);
6905 pci_set_drvdata(pdev
, NULL
);
6906 scsi_host_put(shost
);
6909 * Call scsi_free before mem_free since scsi bufs are released to their
6910 * corresponding pools here.
6912 lpfc_scsi_free(phba
);
6913 lpfc_mem_free_all(phba
);
6915 dma_free_coherent(&pdev
->dev
, lpfc_sli_hbq_size(),
6916 phba
->hbqslimp
.virt
, phba
->hbqslimp
.phys
);
6918 /* Free resources associated with SLI2 interface */
6919 dma_free_coherent(&pdev
->dev
, SLI2_SLIM_SIZE
,
6920 phba
->slim2p
.virt
, phba
->slim2p
.phys
);
6922 /* unmap adapter SLIM and Control Registers */
6923 iounmap(phba
->ctrl_regs_memmap_p
);
6924 iounmap(phba
->slim_memmap_p
);
6926 lpfc_hba_free(phba
);
6928 pci_release_selected_regions(pdev
, bars
);
6929 pci_disable_device(pdev
);
6933 * lpfc_pci_suspend_one_s3 - PCI func to suspend SLI-3 device for power mgmnt
6934 * @pdev: pointer to PCI device
6935 * @msg: power management message
6937 * This routine is to be called from the kernel's PCI subsystem to support
6938 * system Power Management (PM) to device with SLI-3 interface spec. When
6939 * PM invokes this method, it quiesces the device by stopping the driver's
6940 * worker thread for the device, turning off device's interrupt and DMA,
6941 * and bring the device offline. Note that as the driver implements the
6942 * minimum PM requirements to a power-aware driver's PM support for the
6943 * suspend/resume -- all the possible PM messages (SUSPEND, HIBERNATE, FREEZE)
6944 * to the suspend() method call will be treated as SUSPEND and the driver will
6945 * fully reinitialize its device during resume() method call, the driver will
6946 * set device to PCI_D3hot state in PCI config space instead of setting it
6947 * according to the @msg provided by the PM.
6950 * 0 - driver suspended the device
6954 lpfc_pci_suspend_one_s3(struct pci_dev
*pdev
, pm_message_t msg
)
6956 struct Scsi_Host
*shost
= pci_get_drvdata(pdev
);
6957 struct lpfc_hba
*phba
= ((struct lpfc_vport
*)shost
->hostdata
)->phba
;
6959 lpfc_printf_log(phba
, KERN_INFO
, LOG_INIT
,
6960 "0473 PCI device Power Management suspend.\n");
6962 /* Bring down the device */
6963 lpfc_offline_prep(phba
);
6965 kthread_stop(phba
->worker_thread
);
6967 /* Disable interrupt from device */
6968 lpfc_sli_disable_intr(phba
);
6970 /* Save device state to PCI config space */
6971 pci_save_state(pdev
);
6972 pci_set_power_state(pdev
, PCI_D3hot
);
6978 * lpfc_pci_resume_one_s3 - PCI func to resume SLI-3 device for power mgmnt
6979 * @pdev: pointer to PCI device
6981 * This routine is to be called from the kernel's PCI subsystem to support
6982 * system Power Management (PM) to device with SLI-3 interface spec. When PM
6983 * invokes this method, it restores the device's PCI config space state and
6984 * fully reinitializes the device and brings it online. Note that as the
6985 * driver implements the minimum PM requirements to a power-aware driver's
6986 * PM for suspend/resume -- all the possible PM messages (SUSPEND, HIBERNATE,
6987 * FREEZE) to the suspend() method call will be treated as SUSPEND and the
6988 * driver will fully reinitialize its device during resume() method call,
6989 * the device will be set to PCI_D0 directly in PCI config space before
6990 * restoring the state.
6993 * 0 - driver suspended the device
6997 lpfc_pci_resume_one_s3(struct pci_dev
*pdev
)
6999 struct Scsi_Host
*shost
= pci_get_drvdata(pdev
);
7000 struct lpfc_hba
*phba
= ((struct lpfc_vport
*)shost
->hostdata
)->phba
;
7004 lpfc_printf_log(phba
, KERN_INFO
, LOG_INIT
,
7005 "0452 PCI device Power Management resume.\n");
7007 /* Restore device state from PCI config space */
7008 pci_set_power_state(pdev
, PCI_D0
);
7009 pci_restore_state(pdev
);
7010 if (pdev
->is_busmaster
)
7011 pci_set_master(pdev
);
7013 /* Startup the kernel thread for this host adapter. */
7014 phba
->worker_thread
= kthread_run(lpfc_do_work
, phba
,
7015 "lpfc_worker_%d", phba
->brd_no
);
7016 if (IS_ERR(phba
->worker_thread
)) {
7017 error
= PTR_ERR(phba
->worker_thread
);
7018 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
7019 "0434 PM resume failed to start worker "
7020 "thread: error=x%x.\n", error
);
7024 /* Configure and enable interrupt */
7025 intr_mode
= lpfc_sli_enable_intr(phba
, phba
->intr_mode
);
7026 if (intr_mode
== LPFC_INTR_ERROR
) {
7027 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
7028 "0430 PM resume Failed to enable interrupt\n");
7031 phba
->intr_mode
= intr_mode
;
7033 /* Restart HBA and bring it online */
7034 lpfc_sli_brdrestart(phba
);
7037 /* Log the current active interrupt mode */
7038 lpfc_log_intr_mode(phba
, phba
->intr_mode
);
7044 * lpfc_io_error_detected_s3 - Method for handling SLI-3 device PCI I/O error
7045 * @pdev: pointer to PCI device.
7046 * @state: the current PCI connection state.
7048 * This routine is called from the PCI subsystem for I/O error handling to
7049 * device with SLI-3 interface spec. This function is called by the PCI
7050 * subsystem after a PCI bus error affecting this device has been detected.
7051 * When this function is invoked, it will need to stop all the I/Os and
7052 * interrupt(s) to the device. Once that is done, it will return
7053 * PCI_ERS_RESULT_NEED_RESET for the PCI subsystem to perform proper recovery
7057 * PCI_ERS_RESULT_NEED_RESET - need to reset before recovery
7058 * PCI_ERS_RESULT_DISCONNECT - device could not be recovered
7060 static pci_ers_result_t
7061 lpfc_io_error_detected_s3(struct pci_dev
*pdev
, pci_channel_state_t state
)
7063 struct Scsi_Host
*shost
= pci_get_drvdata(pdev
);
7064 struct lpfc_hba
*phba
= ((struct lpfc_vport
*)shost
->hostdata
)->phba
;
7065 struct lpfc_sli
*psli
= &phba
->sli
;
7066 struct lpfc_sli_ring
*pring
;
7068 if (state
== pci_channel_io_perm_failure
) {
7069 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
7070 "0472 PCI channel I/O permanent failure\n");
7071 /* Block all SCSI devices' I/Os on the host */
7072 lpfc_scsi_dev_block(phba
);
7073 /* Clean up all driver's outstanding SCSI I/Os */
7074 lpfc_sli_flush_fcp_rings(phba
);
7075 return PCI_ERS_RESULT_DISCONNECT
;
7078 pci_disable_device(pdev
);
7080 * There may be I/Os dropped by the firmware.
7081 * Error iocb (I/O) on txcmplq and let the SCSI layer
7082 * retry it after re-establishing link.
7084 pring
= &psli
->ring
[psli
->fcp_ring
];
7085 lpfc_sli_abort_iocb_ring(phba
, pring
);
7087 /* Disable interrupt */
7088 lpfc_sli_disable_intr(phba
);
7090 /* Request a slot reset. */
7091 return PCI_ERS_RESULT_NEED_RESET
;
7095 * lpfc_io_slot_reset_s3 - Method for restarting PCI SLI-3 device from scratch.
7096 * @pdev: pointer to PCI device.
7098 * This routine is called from the PCI subsystem for error handling to
7099 * device with SLI-3 interface spec. This is called after PCI bus has been
7100 * reset to restart the PCI card from scratch, as if from a cold-boot.
7101 * During the PCI subsystem error recovery, after driver returns
7102 * PCI_ERS_RESULT_NEED_RESET, the PCI subsystem will perform proper error
7103 * recovery and then call this routine before calling the .resume method
7104 * to recover the device. This function will initialize the HBA device,
7105 * enable the interrupt, but it will just put the HBA to offline state
7106 * without passing any I/O traffic.
7109 * PCI_ERS_RESULT_RECOVERED - the device has been recovered
7110 * PCI_ERS_RESULT_DISCONNECT - device could not be recovered
7112 static pci_ers_result_t
7113 lpfc_io_slot_reset_s3(struct pci_dev
*pdev
)
7115 struct Scsi_Host
*shost
= pci_get_drvdata(pdev
);
7116 struct lpfc_hba
*phba
= ((struct lpfc_vport
*)shost
->hostdata
)->phba
;
7117 struct lpfc_sli
*psli
= &phba
->sli
;
7120 dev_printk(KERN_INFO
, &pdev
->dev
, "recovering from a slot reset.\n");
7121 if (pci_enable_device_mem(pdev
)) {
7122 printk(KERN_ERR
"lpfc: Cannot re-enable "
7123 "PCI device after reset.\n");
7124 return PCI_ERS_RESULT_DISCONNECT
;
7127 pci_restore_state(pdev
);
7128 if (pdev
->is_busmaster
)
7129 pci_set_master(pdev
);
7131 spin_lock_irq(&phba
->hbalock
);
7132 psli
->sli_flag
&= ~LPFC_SLI_ACTIVE
;
7133 spin_unlock_irq(&phba
->hbalock
);
7135 /* Configure and enable interrupt */
7136 intr_mode
= lpfc_sli_enable_intr(phba
, phba
->intr_mode
);
7137 if (intr_mode
== LPFC_INTR_ERROR
) {
7138 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
7139 "0427 Cannot re-enable interrupt after "
7141 return PCI_ERS_RESULT_DISCONNECT
;
7143 phba
->intr_mode
= intr_mode
;
7145 /* Take device offline; this will perform cleanup */
7147 lpfc_sli_brdrestart(phba
);
7149 /* Log the current active interrupt mode */
7150 lpfc_log_intr_mode(phba
, phba
->intr_mode
);
7152 return PCI_ERS_RESULT_RECOVERED
;
7156 * lpfc_io_resume_s3 - Method for resuming PCI I/O operation on SLI-3 device.
7157 * @pdev: pointer to PCI device
7159 * This routine is called from the PCI subsystem for error handling to device
7160 * with SLI-3 interface spec. It is called when kernel error recovery tells
7161 * the lpfc driver that it is ok to resume normal PCI operation after PCI bus
7162 * error recovery. After this call, traffic can start to flow from this device
7166 lpfc_io_resume_s3(struct pci_dev
*pdev
)
7168 struct Scsi_Host
*shost
= pci_get_drvdata(pdev
);
7169 struct lpfc_hba
*phba
= ((struct lpfc_vport
*)shost
->hostdata
)->phba
;
7175 * lpfc_sli4_get_els_iocb_cnt - Calculate the # of ELS IOCBs to reserve
7176 * @phba: pointer to lpfc hba data structure.
7178 * returns the number of ELS/CT IOCBs to reserve
7181 lpfc_sli4_get_els_iocb_cnt(struct lpfc_hba
*phba
)
7183 int max_xri
= phba
->sli4_hba
.max_cfg_param
.max_xri
;
7185 if (phba
->sli_rev
== LPFC_SLI_REV4
) {
7188 else if (max_xri
<= 256)
7190 else if (max_xri
<= 512)
7192 else if (max_xri
<= 1024)
7201 * lpfc_pci_probe_one_s4 - PCI probe func to reg SLI-4 device to PCI subsys
7202 * @pdev: pointer to PCI device
7203 * @pid: pointer to PCI device identifier
7205 * This routine is called from the kernel's PCI subsystem to device with
7206 * SLI-4 interface spec. When an Emulex HBA with SLI-4 interface spec is
7207 * presented on PCI bus, the kernel PCI subsystem looks at PCI device-specific
7208 * information of the device and driver to see if the driver state that it
7209 * can support this kind of device. If the match is successful, the driver
7210 * core invokes this routine. If this routine determines it can claim the HBA,
7211 * it does all the initialization that it needs to do to handle the HBA
7215 * 0 - driver can claim the device
7216 * negative value - driver can not claim the device
7218 static int __devinit
7219 lpfc_pci_probe_one_s4(struct pci_dev
*pdev
, const struct pci_device_id
*pid
)
7221 struct lpfc_hba
*phba
;
7222 struct lpfc_vport
*vport
= NULL
;
7224 uint32_t cfg_mode
, intr_mode
;
7227 /* Allocate memory for HBA structure */
7228 phba
= lpfc_hba_alloc(pdev
);
7232 /* Perform generic PCI device enabling operation */
7233 error
= lpfc_enable_pci_dev(phba
);
7235 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
7236 "1409 Failed to enable pci device.\n");
7240 /* Set up SLI API function jump table for PCI-device group-1 HBAs */
7241 error
= lpfc_api_table_setup(phba
, LPFC_PCI_DEV_OC
);
7243 goto out_disable_pci_dev
;
7245 /* Set up SLI-4 specific device PCI memory space */
7246 error
= lpfc_sli4_pci_mem_setup(phba
);
7248 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
7249 "1410 Failed to set up pci memory space.\n");
7250 goto out_disable_pci_dev
;
7253 /* Set up phase-1 common device driver resources */
7254 error
= lpfc_setup_driver_resource_phase1(phba
);
7256 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
7257 "1411 Failed to set up driver resource.\n");
7258 goto out_unset_pci_mem_s4
;
7261 /* Set up SLI-4 Specific device driver resources */
7262 error
= lpfc_sli4_driver_resource_setup(phba
);
7264 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
7265 "1412 Failed to set up driver resource.\n");
7266 goto out_unset_pci_mem_s4
;
7269 /* Initialize and populate the iocb list per host */
7270 error
= lpfc_init_iocb_list(phba
,
7271 phba
->sli4_hba
.max_cfg_param
.max_xri
);
7273 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
7274 "1413 Failed to initialize iocb list.\n");
7275 goto out_unset_driver_resource_s4
;
7278 /* Set up common device driver resources */
7279 error
= lpfc_setup_driver_resource_phase2(phba
);
7281 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
7282 "1414 Failed to set up driver resource.\n");
7283 goto out_free_iocb_list
;
7286 /* Create SCSI host to the physical port */
7287 error
= lpfc_create_shost(phba
);
7289 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
7290 "1415 Failed to create scsi host.\n");
7291 goto out_unset_driver_resource
;
7294 /* Configure sysfs attributes */
7295 vport
= phba
->pport
;
7296 error
= lpfc_alloc_sysfs_attr(vport
);
7298 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
7299 "1416 Failed to allocate sysfs attr\n");
7300 goto out_destroy_shost
;
7303 /* Now, trying to enable interrupt and bring up the device */
7304 cfg_mode
= phba
->cfg_use_msi
;
7306 /* Put device to a known state before enabling interrupt */
7307 lpfc_stop_port(phba
);
7308 /* Configure and enable interrupt */
7309 intr_mode
= lpfc_sli4_enable_intr(phba
, cfg_mode
);
7310 if (intr_mode
== LPFC_INTR_ERROR
) {
7311 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
7312 "0426 Failed to enable interrupt.\n");
7314 goto out_free_sysfs_attr
;
7316 /* Set up SLI-4 HBA */
7317 if (lpfc_sli4_hba_setup(phba
)) {
7318 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
7319 "1421 Failed to set up hba\n");
7321 goto out_disable_intr
;
7324 /* Send NOP mbx cmds for non-INTx mode active interrupt test */
7326 mcnt
= lpfc_sli4_send_nop_mbox_cmds(phba
,
7329 /* Check active interrupts received only for MSI/MSI-X */
7330 if (intr_mode
== 0 ||
7331 phba
->sli
.slistat
.sli_intr
>= LPFC_ACT_INTR_CNT
) {
7332 /* Log the current active interrupt mode */
7333 phba
->intr_mode
= intr_mode
;
7334 lpfc_log_intr_mode(phba
, intr_mode
);
7337 lpfc_printf_log(phba
, KERN_INFO
, LOG_INIT
,
7338 "0451 Configure interrupt mode (%d) "
7339 "failed active interrupt test.\n",
7341 /* Unset the preivous SLI-4 HBA setup */
7342 lpfc_sli4_unset_hba(phba
);
7343 /* Try next level of interrupt mode */
7344 cfg_mode
= --intr_mode
;
7347 /* Perform post initialization setup */
7348 lpfc_post_init_setup(phba
);
7353 lpfc_sli4_disable_intr(phba
);
7354 out_free_sysfs_attr
:
7355 lpfc_free_sysfs_attr(vport
);
7357 lpfc_destroy_shost(phba
);
7358 out_unset_driver_resource
:
7359 lpfc_unset_driver_resource_phase2(phba
);
7361 lpfc_free_iocb_list(phba
);
7362 out_unset_driver_resource_s4
:
7363 lpfc_sli4_driver_resource_unset(phba
);
7364 out_unset_pci_mem_s4
:
7365 lpfc_sli4_pci_mem_unset(phba
);
7366 out_disable_pci_dev
:
7367 lpfc_disable_pci_dev(phba
);
7369 lpfc_hba_free(phba
);
7374 * lpfc_pci_remove_one_s4 - PCI func to unreg SLI-4 device from PCI subsystem
7375 * @pdev: pointer to PCI device
7377 * This routine is called from the kernel's PCI subsystem to device with
7378 * SLI-4 interface spec. When an Emulex HBA with SLI-4 interface spec is
7379 * removed from PCI bus, it performs all the necessary cleanup for the HBA
7380 * device to be removed from the PCI subsystem properly.
7382 static void __devexit
7383 lpfc_pci_remove_one_s4(struct pci_dev
*pdev
)
7385 struct Scsi_Host
*shost
= pci_get_drvdata(pdev
);
7386 struct lpfc_vport
*vport
= (struct lpfc_vport
*) shost
->hostdata
;
7387 struct lpfc_vport
**vports
;
7388 struct lpfc_hba
*phba
= vport
->phba
;
7391 /* Mark the device unloading flag */
7392 spin_lock_irq(&phba
->hbalock
);
7393 vport
->load_flag
|= FC_UNLOADING
;
7394 spin_unlock_irq(&phba
->hbalock
);
7396 /* Free the HBA sysfs attributes */
7397 lpfc_free_sysfs_attr(vport
);
7399 /* Release all the vports against this physical port */
7400 vports
= lpfc_create_vport_work_array(phba
);
7402 for (i
= 1; i
<= phba
->max_vports
&& vports
[i
] != NULL
; i
++)
7403 fc_vport_terminate(vports
[i
]->fc_vport
);
7404 lpfc_destroy_vport_work_array(phba
, vports
);
7406 /* Remove FC host and then SCSI host with the physical port */
7407 fc_remove_host(shost
);
7408 scsi_remove_host(shost
);
7410 /* Perform cleanup on the physical port */
7411 lpfc_cleanup(vport
);
7414 * Bring down the SLI Layer. This step disables all interrupts,
7415 * clears the rings, discards all mailbox commands, and resets
7416 * the HBA FCoE function.
7418 lpfc_debugfs_terminate(vport
);
7419 lpfc_sli4_hba_unset(phba
);
7421 spin_lock_irq(&phba
->hbalock
);
7422 list_del_init(&vport
->listentry
);
7423 spin_unlock_irq(&phba
->hbalock
);
7425 /* Call scsi_free before lpfc_sli4_driver_resource_unset since scsi
7426 * buffers are released to their corresponding pools here.
7428 lpfc_scsi_free(phba
);
7429 lpfc_sli4_driver_resource_unset(phba
);
7431 /* Unmap adapter Control and Doorbell registers */
7432 lpfc_sli4_pci_mem_unset(phba
);
7434 /* Release PCI resources and disable device's PCI function */
7435 scsi_host_put(shost
);
7436 lpfc_disable_pci_dev(phba
);
7438 /* Finally, free the driver's device data structure */
7439 lpfc_hba_free(phba
);
7445 * lpfc_pci_suspend_one_s4 - PCI func to suspend SLI-4 device for power mgmnt
7446 * @pdev: pointer to PCI device
7447 * @msg: power management message
7449 * This routine is called from the kernel's PCI subsystem to support system
7450 * Power Management (PM) to device with SLI-4 interface spec. When PM invokes
7451 * this method, it quiesces the device by stopping the driver's worker
7452 * thread for the device, turning off device's interrupt and DMA, and bring
7453 * the device offline. Note that as the driver implements the minimum PM
7454 * requirements to a power-aware driver's PM support for suspend/resume -- all
7455 * the possible PM messages (SUSPEND, HIBERNATE, FREEZE) to the suspend()
7456 * method call will be treated as SUSPEND and the driver will fully
7457 * reinitialize its device during resume() method call, the driver will set
7458 * device to PCI_D3hot state in PCI config space instead of setting it
7459 * according to the @msg provided by the PM.
7462 * 0 - driver suspended the device
7466 lpfc_pci_suspend_one_s4(struct pci_dev
*pdev
, pm_message_t msg
)
7468 struct Scsi_Host
*shost
= pci_get_drvdata(pdev
);
7469 struct lpfc_hba
*phba
= ((struct lpfc_vport
*)shost
->hostdata
)->phba
;
7471 lpfc_printf_log(phba
, KERN_INFO
, LOG_INIT
,
7472 "0298 PCI device Power Management suspend.\n");
7474 /* Bring down the device */
7475 lpfc_offline_prep(phba
);
7477 kthread_stop(phba
->worker_thread
);
7479 /* Disable interrupt from device */
7480 lpfc_sli4_disable_intr(phba
);
7482 /* Save device state to PCI config space */
7483 pci_save_state(pdev
);
7484 pci_set_power_state(pdev
, PCI_D3hot
);
7490 * lpfc_pci_resume_one_s4 - PCI func to resume SLI-4 device for power mgmnt
7491 * @pdev: pointer to PCI device
7493 * This routine is called from the kernel's PCI subsystem to support system
7494 * Power Management (PM) to device with SLI-4 interface spac. When PM invokes
7495 * this method, it restores the device's PCI config space state and fully
7496 * reinitializes the device and brings it online. Note that as the driver
7497 * implements the minimum PM requirements to a power-aware driver's PM for
7498 * suspend/resume -- all the possible PM messages (SUSPEND, HIBERNATE, FREEZE)
7499 * to the suspend() method call will be treated as SUSPEND and the driver
7500 * will fully reinitialize its device during resume() method call, the device
7501 * will be set to PCI_D0 directly in PCI config space before restoring the
7505 * 0 - driver suspended the device
7509 lpfc_pci_resume_one_s4(struct pci_dev
*pdev
)
7511 struct Scsi_Host
*shost
= pci_get_drvdata(pdev
);
7512 struct lpfc_hba
*phba
= ((struct lpfc_vport
*)shost
->hostdata
)->phba
;
7516 lpfc_printf_log(phba
, KERN_INFO
, LOG_INIT
,
7517 "0292 PCI device Power Management resume.\n");
7519 /* Restore device state from PCI config space */
7520 pci_set_power_state(pdev
, PCI_D0
);
7521 pci_restore_state(pdev
);
7522 if (pdev
->is_busmaster
)
7523 pci_set_master(pdev
);
7525 /* Startup the kernel thread for this host adapter. */
7526 phba
->worker_thread
= kthread_run(lpfc_do_work
, phba
,
7527 "lpfc_worker_%d", phba
->brd_no
);
7528 if (IS_ERR(phba
->worker_thread
)) {
7529 error
= PTR_ERR(phba
->worker_thread
);
7530 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
7531 "0293 PM resume failed to start worker "
7532 "thread: error=x%x.\n", error
);
7536 /* Configure and enable interrupt */
7537 intr_mode
= lpfc_sli4_enable_intr(phba
, phba
->intr_mode
);
7538 if (intr_mode
== LPFC_INTR_ERROR
) {
7539 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
7540 "0294 PM resume Failed to enable interrupt\n");
7543 phba
->intr_mode
= intr_mode
;
7545 /* Restart HBA and bring it online */
7546 lpfc_sli_brdrestart(phba
);
7549 /* Log the current active interrupt mode */
7550 lpfc_log_intr_mode(phba
, phba
->intr_mode
);
7556 * lpfc_io_error_detected_s4 - Method for handling PCI I/O error to SLI-4 device
7557 * @pdev: pointer to PCI device.
7558 * @state: the current PCI connection state.
7560 * This routine is called from the PCI subsystem for error handling to device
7561 * with SLI-4 interface spec. This function is called by the PCI subsystem
7562 * after a PCI bus error affecting this device has been detected. When this
7563 * function is invoked, it will need to stop all the I/Os and interrupt(s)
7564 * to the device. Once that is done, it will return PCI_ERS_RESULT_NEED_RESET
7565 * for the PCI subsystem to perform proper recovery as desired.
7568 * PCI_ERS_RESULT_NEED_RESET - need to reset before recovery
7569 * PCI_ERS_RESULT_DISCONNECT - device could not be recovered
7571 static pci_ers_result_t
7572 lpfc_io_error_detected_s4(struct pci_dev
*pdev
, pci_channel_state_t state
)
7574 return PCI_ERS_RESULT_NEED_RESET
;
7578 * lpfc_io_slot_reset_s4 - Method for restart PCI SLI-4 device from scratch
7579 * @pdev: pointer to PCI device.
7581 * This routine is called from the PCI subsystem for error handling to device
7582 * with SLI-4 interface spec. It is called after PCI bus has been reset to
7583 * restart the PCI card from scratch, as if from a cold-boot. During the
7584 * PCI subsystem error recovery, after the driver returns
7585 * PCI_ERS_RESULT_NEED_RESET, the PCI subsystem will perform proper error
7586 * recovery and then call this routine before calling the .resume method to
7587 * recover the device. This function will initialize the HBA device, enable
7588 * the interrupt, but it will just put the HBA to offline state without
7589 * passing any I/O traffic.
7592 * PCI_ERS_RESULT_RECOVERED - the device has been recovered
7593 * PCI_ERS_RESULT_DISCONNECT - device could not be recovered
7595 static pci_ers_result_t
7596 lpfc_io_slot_reset_s4(struct pci_dev
*pdev
)
7598 return PCI_ERS_RESULT_RECOVERED
;
7602 * lpfc_io_resume_s4 - Method for resuming PCI I/O operation to SLI-4 device
7603 * @pdev: pointer to PCI device
7605 * This routine is called from the PCI subsystem for error handling to device
7606 * with SLI-4 interface spec. It is called when kernel error recovery tells
7607 * the lpfc driver that it is ok to resume normal PCI operation after PCI bus
7608 * error recovery. After this call, traffic can start to flow from this device
7612 lpfc_io_resume_s4(struct pci_dev
*pdev
)
7618 * lpfc_pci_probe_one - lpfc PCI probe func to reg dev to PCI subsystem
7619 * @pdev: pointer to PCI device
7620 * @pid: pointer to PCI device identifier
7622 * This routine is to be registered to the kernel's PCI subsystem. When an
7623 * Emulex HBA device is presented on PCI bus, the kernel PCI subsystem looks
7624 * at PCI device-specific information of the device and driver to see if the
7625 * driver state that it can support this kind of device. If the match is
7626 * successful, the driver core invokes this routine. This routine dispatches
7627 * the action to the proper SLI-3 or SLI-4 device probing routine, which will
7628 * do all the initialization that it needs to do to handle the HBA device
7632 * 0 - driver can claim the device
7633 * negative value - driver can not claim the device
7635 static int __devinit
7636 lpfc_pci_probe_one(struct pci_dev
*pdev
, const struct pci_device_id
*pid
)
7641 if (pci_read_config_word(pdev
, PCI_DEVICE_ID
, &dev_id
))
7645 case PCI_DEVICE_ID_TIGERSHARK
:
7646 rc
= lpfc_pci_probe_one_s4(pdev
, pid
);
7649 rc
= lpfc_pci_probe_one_s3(pdev
, pid
);
7656 * lpfc_pci_remove_one - lpfc PCI func to unreg dev from PCI subsystem
7657 * @pdev: pointer to PCI device
7659 * This routine is to be registered to the kernel's PCI subsystem. When an
7660 * Emulex HBA is removed from PCI bus, the driver core invokes this routine.
7661 * This routine dispatches the action to the proper SLI-3 or SLI-4 device
7662 * remove routine, which will perform all the necessary cleanup for the
7663 * device to be removed from the PCI subsystem properly.
7665 static void __devexit
7666 lpfc_pci_remove_one(struct pci_dev
*pdev
)
7668 struct Scsi_Host
*shost
= pci_get_drvdata(pdev
);
7669 struct lpfc_hba
*phba
= ((struct lpfc_vport
*)shost
->hostdata
)->phba
;
7671 switch (phba
->pci_dev_grp
) {
7672 case LPFC_PCI_DEV_LP
:
7673 lpfc_pci_remove_one_s3(pdev
);
7675 case LPFC_PCI_DEV_OC
:
7676 lpfc_pci_remove_one_s4(pdev
);
7679 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
7680 "1424 Invalid PCI device group: 0x%x\n",
7688 * lpfc_pci_suspend_one - lpfc PCI func to suspend dev for power management
7689 * @pdev: pointer to PCI device
7690 * @msg: power management message
7692 * This routine is to be registered to the kernel's PCI subsystem to support
7693 * system Power Management (PM). When PM invokes this method, it dispatches
7694 * the action to the proper SLI-3 or SLI-4 device suspend routine, which will
7695 * suspend the device.
7698 * 0 - driver suspended the device
7702 lpfc_pci_suspend_one(struct pci_dev
*pdev
, pm_message_t msg
)
7704 struct Scsi_Host
*shost
= pci_get_drvdata(pdev
);
7705 struct lpfc_hba
*phba
= ((struct lpfc_vport
*)shost
->hostdata
)->phba
;
7708 switch (phba
->pci_dev_grp
) {
7709 case LPFC_PCI_DEV_LP
:
7710 rc
= lpfc_pci_suspend_one_s3(pdev
, msg
);
7712 case LPFC_PCI_DEV_OC
:
7713 rc
= lpfc_pci_suspend_one_s4(pdev
, msg
);
7716 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
7717 "1425 Invalid PCI device group: 0x%x\n",
7725 * lpfc_pci_resume_one - lpfc PCI func to resume dev for power management
7726 * @pdev: pointer to PCI device
7728 * This routine is to be registered to the kernel's PCI subsystem to support
7729 * system Power Management (PM). When PM invokes this method, it dispatches
7730 * the action to the proper SLI-3 or SLI-4 device resume routine, which will
7731 * resume the device.
7734 * 0 - driver suspended the device
7738 lpfc_pci_resume_one(struct pci_dev
*pdev
)
7740 struct Scsi_Host
*shost
= pci_get_drvdata(pdev
);
7741 struct lpfc_hba
*phba
= ((struct lpfc_vport
*)shost
->hostdata
)->phba
;
7744 switch (phba
->pci_dev_grp
) {
7745 case LPFC_PCI_DEV_LP
:
7746 rc
= lpfc_pci_resume_one_s3(pdev
);
7748 case LPFC_PCI_DEV_OC
:
7749 rc
= lpfc_pci_resume_one_s4(pdev
);
7752 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
7753 "1426 Invalid PCI device group: 0x%x\n",
7761 * lpfc_io_error_detected - lpfc method for handling PCI I/O error
7762 * @pdev: pointer to PCI device.
7763 * @state: the current PCI connection state.
7765 * This routine is registered to the PCI subsystem for error handling. This
7766 * function is called by the PCI subsystem after a PCI bus error affecting
7767 * this device has been detected. When this routine is invoked, it dispatches
7768 * the action to the proper SLI-3 or SLI-4 device error detected handling
7769 * routine, which will perform the proper error detected operation.
7772 * PCI_ERS_RESULT_NEED_RESET - need to reset before recovery
7773 * PCI_ERS_RESULT_DISCONNECT - device could not be recovered
7775 static pci_ers_result_t
7776 lpfc_io_error_detected(struct pci_dev
*pdev
, pci_channel_state_t state
)
7778 struct Scsi_Host
*shost
= pci_get_drvdata(pdev
);
7779 struct lpfc_hba
*phba
= ((struct lpfc_vport
*)shost
->hostdata
)->phba
;
7780 pci_ers_result_t rc
= PCI_ERS_RESULT_DISCONNECT
;
7782 switch (phba
->pci_dev_grp
) {
7783 case LPFC_PCI_DEV_LP
:
7784 rc
= lpfc_io_error_detected_s3(pdev
, state
);
7786 case LPFC_PCI_DEV_OC
:
7787 rc
= lpfc_io_error_detected_s4(pdev
, state
);
7790 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
7791 "1427 Invalid PCI device group: 0x%x\n",
7799 * lpfc_io_slot_reset - lpfc method for restart PCI dev from scratch
7800 * @pdev: pointer to PCI device.
7802 * This routine is registered to the PCI subsystem for error handling. This
7803 * function is called after PCI bus has been reset to restart the PCI card
7804 * from scratch, as if from a cold-boot. When this routine is invoked, it
7805 * dispatches the action to the proper SLI-3 or SLI-4 device reset handling
7806 * routine, which will perform the proper device reset.
7809 * PCI_ERS_RESULT_RECOVERED - the device has been recovered
7810 * PCI_ERS_RESULT_DISCONNECT - device could not be recovered
7812 static pci_ers_result_t
7813 lpfc_io_slot_reset(struct pci_dev
*pdev
)
7815 struct Scsi_Host
*shost
= pci_get_drvdata(pdev
);
7816 struct lpfc_hba
*phba
= ((struct lpfc_vport
*)shost
->hostdata
)->phba
;
7817 pci_ers_result_t rc
= PCI_ERS_RESULT_DISCONNECT
;
7819 switch (phba
->pci_dev_grp
) {
7820 case LPFC_PCI_DEV_LP
:
7821 rc
= lpfc_io_slot_reset_s3(pdev
);
7823 case LPFC_PCI_DEV_OC
:
7824 rc
= lpfc_io_slot_reset_s4(pdev
);
7827 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
7828 "1428 Invalid PCI device group: 0x%x\n",
7836 * lpfc_io_resume - lpfc method for resuming PCI I/O operation
7837 * @pdev: pointer to PCI device
7839 * This routine is registered to the PCI subsystem for error handling. It
7840 * is called when kernel error recovery tells the lpfc driver that it is
7841 * OK to resume normal PCI operation after PCI bus error recovery. When
7842 * this routine is invoked, it dispatches the action to the proper SLI-3
7843 * or SLI-4 device io_resume routine, which will resume the device operation.
7846 lpfc_io_resume(struct pci_dev
*pdev
)
7848 struct Scsi_Host
*shost
= pci_get_drvdata(pdev
);
7849 struct lpfc_hba
*phba
= ((struct lpfc_vport
*)shost
->hostdata
)->phba
;
7851 switch (phba
->pci_dev_grp
) {
7852 case LPFC_PCI_DEV_LP
:
7853 lpfc_io_resume_s3(pdev
);
7855 case LPFC_PCI_DEV_OC
:
7856 lpfc_io_resume_s4(pdev
);
7859 lpfc_printf_log(phba
, KERN_ERR
, LOG_INIT
,
7860 "1429 Invalid PCI device group: 0x%x\n",
7867 static struct pci_device_id lpfc_id_table
[] = {
7868 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_VIPER
,
7869 PCI_ANY_ID
, PCI_ANY_ID
, },
7870 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_FIREFLY
,
7871 PCI_ANY_ID
, PCI_ANY_ID
, },
7872 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_THOR
,
7873 PCI_ANY_ID
, PCI_ANY_ID
, },
7874 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_PEGASUS
,
7875 PCI_ANY_ID
, PCI_ANY_ID
, },
7876 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_CENTAUR
,
7877 PCI_ANY_ID
, PCI_ANY_ID
, },
7878 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_DRAGONFLY
,
7879 PCI_ANY_ID
, PCI_ANY_ID
, },
7880 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_SUPERFLY
,
7881 PCI_ANY_ID
, PCI_ANY_ID
, },
7882 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_RFLY
,
7883 PCI_ANY_ID
, PCI_ANY_ID
, },
7884 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_PFLY
,
7885 PCI_ANY_ID
, PCI_ANY_ID
, },
7886 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_NEPTUNE
,
7887 PCI_ANY_ID
, PCI_ANY_ID
, },
7888 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_NEPTUNE_SCSP
,
7889 PCI_ANY_ID
, PCI_ANY_ID
, },
7890 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_NEPTUNE_DCSP
,
7891 PCI_ANY_ID
, PCI_ANY_ID
, },
7892 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_HELIOS
,
7893 PCI_ANY_ID
, PCI_ANY_ID
, },
7894 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_HELIOS_SCSP
,
7895 PCI_ANY_ID
, PCI_ANY_ID
, },
7896 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_HELIOS_DCSP
,
7897 PCI_ANY_ID
, PCI_ANY_ID
, },
7898 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_BMID
,
7899 PCI_ANY_ID
, PCI_ANY_ID
, },
7900 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_BSMB
,
7901 PCI_ANY_ID
, PCI_ANY_ID
, },
7902 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_ZEPHYR
,
7903 PCI_ANY_ID
, PCI_ANY_ID
, },
7904 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_HORNET
,
7905 PCI_ANY_ID
, PCI_ANY_ID
, },
7906 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_ZEPHYR_SCSP
,
7907 PCI_ANY_ID
, PCI_ANY_ID
, },
7908 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_ZEPHYR_DCSP
,
7909 PCI_ANY_ID
, PCI_ANY_ID
, },
7910 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_ZMID
,
7911 PCI_ANY_ID
, PCI_ANY_ID
, },
7912 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_ZSMB
,
7913 PCI_ANY_ID
, PCI_ANY_ID
, },
7914 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_TFLY
,
7915 PCI_ANY_ID
, PCI_ANY_ID
, },
7916 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_LP101
,
7917 PCI_ANY_ID
, PCI_ANY_ID
, },
7918 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_LP10000S
,
7919 PCI_ANY_ID
, PCI_ANY_ID
, },
7920 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_LP11000S
,
7921 PCI_ANY_ID
, PCI_ANY_ID
, },
7922 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_LPE11000S
,
7923 PCI_ANY_ID
, PCI_ANY_ID
, },
7924 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_SAT
,
7925 PCI_ANY_ID
, PCI_ANY_ID
, },
7926 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_SAT_MID
,
7927 PCI_ANY_ID
, PCI_ANY_ID
, },
7928 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_SAT_SMB
,
7929 PCI_ANY_ID
, PCI_ANY_ID
, },
7930 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_SAT_DCSP
,
7931 PCI_ANY_ID
, PCI_ANY_ID
, },
7932 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_SAT_SCSP
,
7933 PCI_ANY_ID
, PCI_ANY_ID
, },
7934 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_SAT_S
,
7935 PCI_ANY_ID
, PCI_ANY_ID
, },
7936 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_PROTEUS_VF
,
7937 PCI_ANY_ID
, PCI_ANY_ID
, },
7938 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_PROTEUS_PF
,
7939 PCI_ANY_ID
, PCI_ANY_ID
, },
7940 {PCI_VENDOR_ID_EMULEX
, PCI_DEVICE_ID_PROTEUS_S
,
7941 PCI_ANY_ID
, PCI_ANY_ID
, },
7942 {PCI_VENDOR_ID_SERVERENGINE
, PCI_DEVICE_ID_TIGERSHARK
,
7943 PCI_ANY_ID
, PCI_ANY_ID
, },
7947 MODULE_DEVICE_TABLE(pci
, lpfc_id_table
);
7949 static struct pci_error_handlers lpfc_err_handler
= {
7950 .error_detected
= lpfc_io_error_detected
,
7951 .slot_reset
= lpfc_io_slot_reset
,
7952 .resume
= lpfc_io_resume
,
7955 static struct pci_driver lpfc_driver
= {
7956 .name
= LPFC_DRIVER_NAME
,
7957 .id_table
= lpfc_id_table
,
7958 .probe
= lpfc_pci_probe_one
,
7959 .remove
= __devexit_p(lpfc_pci_remove_one
),
7960 .suspend
= lpfc_pci_suspend_one
,
7961 .resume
= lpfc_pci_resume_one
,
7962 .err_handler
= &lpfc_err_handler
,
7966 * lpfc_init - lpfc module initialization routine
7968 * This routine is to be invoked when the lpfc module is loaded into the
7969 * kernel. The special kernel macro module_init() is used to indicate the
7970 * role of this routine to the kernel as lpfc module entry point.
7974 * -ENOMEM - FC attach transport failed
7975 * all others - failed
7982 printk(LPFC_MODULE_DESC
"\n");
7983 printk(LPFC_COPYRIGHT
"\n");
7985 if (lpfc_enable_npiv
) {
7986 lpfc_transport_functions
.vport_create
= lpfc_vport_create
;
7987 lpfc_transport_functions
.vport_delete
= lpfc_vport_delete
;
7989 lpfc_transport_template
=
7990 fc_attach_transport(&lpfc_transport_functions
);
7991 if (lpfc_transport_template
== NULL
)
7993 if (lpfc_enable_npiv
) {
7994 lpfc_vport_transport_template
=
7995 fc_attach_transport(&lpfc_vport_transport_functions
);
7996 if (lpfc_vport_transport_template
== NULL
) {
7997 fc_release_transport(lpfc_transport_template
);
8001 error
= pci_register_driver(&lpfc_driver
);
8003 fc_release_transport(lpfc_transport_template
);
8004 if (lpfc_enable_npiv
)
8005 fc_release_transport(lpfc_vport_transport_template
);
8012 * lpfc_exit - lpfc module removal routine
8014 * This routine is invoked when the lpfc module is removed from the kernel.
8015 * The special kernel macro module_exit() is used to indicate the role of
8016 * this routine to the kernel as lpfc module exit point.
8021 pci_unregister_driver(&lpfc_driver
);
8022 fc_release_transport(lpfc_transport_template
);
8023 if (lpfc_enable_npiv
)
8024 fc_release_transport(lpfc_vport_transport_template
);
8025 if (_dump_buf_data
) {
8026 printk(KERN_ERR
"BLKGRD freeing %lu pages for _dump_buf_data "
8028 (1L << _dump_buf_data_order
), _dump_buf_data
);
8029 free_pages((unsigned long)_dump_buf_data
, _dump_buf_data_order
);
8032 if (_dump_buf_dif
) {
8033 printk(KERN_ERR
"BLKGRD freeing %lu pages for _dump_buf_dif "
8035 (1L << _dump_buf_dif_order
), _dump_buf_dif
);
8036 free_pages((unsigned long)_dump_buf_dif
, _dump_buf_dif_order
);
8040 module_init(lpfc_init
);
8041 module_exit(lpfc_exit
);
8042 MODULE_LICENSE("GPL");
8043 MODULE_DESCRIPTION(LPFC_MODULE_DESC
);
8044 MODULE_AUTHOR("Emulex Corporation - tech.support@emulex.com");
8045 MODULE_VERSION("0:" LPFC_DRIVER_VERSION
);