aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/lpfc/lpfc_init.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/scsi/lpfc/lpfc_init.c')
-rw-r--r--drivers/scsi/lpfc/lpfc_init.c5626
1 files changed, 5049 insertions, 577 deletions
diff --git a/drivers/scsi/lpfc/lpfc_init.c b/drivers/scsi/lpfc/lpfc_init.c
index 86d1bdcbf2d8..fc67cc65c63b 100644
--- a/drivers/scsi/lpfc/lpfc_init.c
+++ b/drivers/scsi/lpfc/lpfc_init.c
@@ -1,7 +1,7 @@
1/******************************************************************* 1/*******************************************************************
2 * This file is part of the Emulex Linux Device Driver for * 2 * This file is part of the Emulex Linux Device Driver for *
3 * Fibre Channel Host Bus Adapters. * 3 * Fibre Channel Host Bus Adapters. *
4 * Copyright (C) 2004-2008 Emulex. All rights reserved. * 4 * Copyright (C) 2004-2009 Emulex. All rights reserved. *
5 * EMULEX and SLI are trademarks of Emulex. * 5 * EMULEX and SLI are trademarks of Emulex. *
6 * www.emulex.com * 6 * www.emulex.com *
7 * Portions Copyright (C) 2004-2005 Christoph Hellwig * 7 * Portions Copyright (C) 2004-2005 Christoph Hellwig *
@@ -34,8 +34,10 @@
34#include <scsi/scsi_host.h> 34#include <scsi/scsi_host.h>
35#include <scsi/scsi_transport_fc.h> 35#include <scsi/scsi_transport_fc.h>
36 36
37#include "lpfc_hw4.h"
37#include "lpfc_hw.h" 38#include "lpfc_hw.h"
38#include "lpfc_sli.h" 39#include "lpfc_sli.h"
40#include "lpfc_sli4.h"
39#include "lpfc_nl.h" 41#include "lpfc_nl.h"
40#include "lpfc_disc.h" 42#include "lpfc_disc.h"
41#include "lpfc_scsi.h" 43#include "lpfc_scsi.h"
@@ -51,9 +53,23 @@ char *_dump_buf_dif;
51unsigned long _dump_buf_dif_order; 53unsigned long _dump_buf_dif_order;
52spinlock_t _dump_buf_lock; 54spinlock_t _dump_buf_lock;
53 55
54static int lpfc_parse_vpd(struct lpfc_hba *, uint8_t *, int);
55static void lpfc_get_hba_model_desc(struct lpfc_hba *, uint8_t *, uint8_t *); 56static void lpfc_get_hba_model_desc(struct lpfc_hba *, uint8_t *, uint8_t *);
56static int lpfc_post_rcv_buf(struct lpfc_hba *); 57static int lpfc_post_rcv_buf(struct lpfc_hba *);
58static int lpfc_sli4_queue_create(struct lpfc_hba *);
59static void lpfc_sli4_queue_destroy(struct lpfc_hba *);
60static int lpfc_create_bootstrap_mbox(struct lpfc_hba *);
61static int lpfc_setup_endian_order(struct lpfc_hba *);
62static int lpfc_sli4_read_config(struct lpfc_hba *);
63static void lpfc_destroy_bootstrap_mbox(struct lpfc_hba *);
64static void lpfc_free_sgl_list(struct lpfc_hba *);
65static int lpfc_init_sgl_list(struct lpfc_hba *);
66static int lpfc_init_active_sgl_array(struct lpfc_hba *);
67static void lpfc_free_active_sgl(struct lpfc_hba *);
68static int lpfc_hba_down_post_s3(struct lpfc_hba *phba);
69static int lpfc_hba_down_post_s4(struct lpfc_hba *phba);
70static int lpfc_sli4_cq_event_pool_create(struct lpfc_hba *);
71static void lpfc_sli4_cq_event_pool_destroy(struct lpfc_hba *);
72static void lpfc_sli4_cq_event_release_all(struct lpfc_hba *);
57 73
58static struct scsi_transport_template *lpfc_transport_template = NULL; 74static struct scsi_transport_template *lpfc_transport_template = NULL;
59static struct scsi_transport_template *lpfc_vport_transport_template = NULL; 75static struct scsi_transport_template *lpfc_vport_transport_template = NULL;
@@ -92,7 +108,7 @@ lpfc_config_port_prep(struct lpfc_hba *phba)
92 return -ENOMEM; 108 return -ENOMEM;
93 } 109 }
94 110
95 mb = &pmb->mb; 111 mb = &pmb->u.mb;
96 phba->link_state = LPFC_INIT_MBX_CMDS; 112 phba->link_state = LPFC_INIT_MBX_CMDS;
97 113
98 if (lpfc_is_LC_HBA(phba->pcidev->device)) { 114 if (lpfc_is_LC_HBA(phba->pcidev->device)) {
@@ -205,6 +221,11 @@ lpfc_config_port_prep(struct lpfc_hba *phba)
205 mb->mbxCommand, mb->mbxStatus); 221 mb->mbxCommand, mb->mbxStatus);
206 mb->un.varDmp.word_cnt = 0; 222 mb->un.varDmp.word_cnt = 0;
207 } 223 }
224 /* dump mem may return a zero when finished or we got a
225 * mailbox error, either way we are done.
226 */
227 if (mb->un.varDmp.word_cnt == 0)
228 break;
208 if (mb->un.varDmp.word_cnt > DMP_VPD_SIZE - offset) 229 if (mb->un.varDmp.word_cnt > DMP_VPD_SIZE - offset)
209 mb->un.varDmp.word_cnt = DMP_VPD_SIZE - offset; 230 mb->un.varDmp.word_cnt = DMP_VPD_SIZE - offset;
210 lpfc_sli_pcimem_bcopy(((uint8_t *)mb) + DMP_RSP_OFFSET, 231 lpfc_sli_pcimem_bcopy(((uint8_t *)mb) + DMP_RSP_OFFSET,
@@ -233,7 +254,7 @@ out_free_mbox:
233static void 254static void
234lpfc_config_async_cmpl(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmboxq) 255lpfc_config_async_cmpl(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmboxq)
235{ 256{
236 if (pmboxq->mb.mbxStatus == MBX_SUCCESS) 257 if (pmboxq->u.mb.mbxStatus == MBX_SUCCESS)
237 phba->temp_sensor_support = 1; 258 phba->temp_sensor_support = 1;
238 else 259 else
239 phba->temp_sensor_support = 0; 260 phba->temp_sensor_support = 0;
@@ -260,7 +281,7 @@ lpfc_dump_wakeup_param_cmpl(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmboxq)
260 /* character array used for decoding dist type. */ 281 /* character array used for decoding dist type. */
261 char dist_char[] = "nabx"; 282 char dist_char[] = "nabx";
262 283
263 if (pmboxq->mb.mbxStatus != MBX_SUCCESS) { 284 if (pmboxq->u.mb.mbxStatus != MBX_SUCCESS) {
264 mempool_free(pmboxq, phba->mbox_mem_pool); 285 mempool_free(pmboxq, phba->mbox_mem_pool);
265 return; 286 return;
266 } 287 }
@@ -268,7 +289,7 @@ lpfc_dump_wakeup_param_cmpl(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmboxq)
268 prg = (struct prog_id *) &prog_id_word; 289 prg = (struct prog_id *) &prog_id_word;
269 290
270 /* word 7 contain option rom version */ 291 /* word 7 contain option rom version */
271 prog_id_word = pmboxq->mb.un.varWords[7]; 292 prog_id_word = pmboxq->u.mb.un.varWords[7];
272 293
273 /* Decode the Option rom version word to a readable string */ 294 /* Decode the Option rom version word to a readable string */
274 if (prg->dist < 4) 295 if (prg->dist < 4)
@@ -325,7 +346,7 @@ lpfc_config_port_post(struct lpfc_hba *phba)
325 phba->link_state = LPFC_HBA_ERROR; 346 phba->link_state = LPFC_HBA_ERROR;
326 return -ENOMEM; 347 return -ENOMEM;
327 } 348 }
328 mb = &pmb->mb; 349 mb = &pmb->u.mb;
329 350
330 /* Get login parameters for NID. */ 351 /* Get login parameters for NID. */
331 lpfc_read_sparam(phba, pmb, 0); 352 lpfc_read_sparam(phba, pmb, 0);
@@ -364,6 +385,7 @@ lpfc_config_port_post(struct lpfc_hba *phba)
364 /* Update the fc_host data structures with new wwn. */ 385 /* Update the fc_host data structures with new wwn. */
365 fc_host_node_name(shost) = wwn_to_u64(vport->fc_nodename.u.wwn); 386 fc_host_node_name(shost) = wwn_to_u64(vport->fc_nodename.u.wwn);
366 fc_host_port_name(shost) = wwn_to_u64(vport->fc_portname.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;
367 389
368 /* If no serial number in VPD data, use low 6 bytes of WWNN */ 390 /* If no serial number in VPD data, use low 6 bytes of WWNN */
369 /* This should be consolidated into parse_vpd ? - mr */ 391 /* This should be consolidated into parse_vpd ? - mr */
@@ -406,7 +428,8 @@ lpfc_config_port_post(struct lpfc_hba *phba)
406 /* Reset the DFT_HBA_Q_DEPTH to the max xri */ 428 /* Reset the DFT_HBA_Q_DEPTH to the max xri */
407 if (phba->cfg_hba_queue_depth > (mb->un.varRdConfig.max_xri+1)) 429 if (phba->cfg_hba_queue_depth > (mb->un.varRdConfig.max_xri+1))
408 phba->cfg_hba_queue_depth = 430 phba->cfg_hba_queue_depth =
409 mb->un.varRdConfig.max_xri + 1; 431 (mb->un.varRdConfig.max_xri + 1) -
432 lpfc_sli4_get_els_iocb_cnt(phba);
410 433
411 phba->lmt = mb->un.varRdConfig.lmt; 434 phba->lmt = mb->un.varRdConfig.lmt;
412 435
@@ -460,17 +483,18 @@ lpfc_config_port_post(struct lpfc_hba *phba)
460 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX, 483 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX,
461 "0352 Config MSI mailbox command " 484 "0352 Config MSI mailbox command "
462 "failed, mbxCmd x%x, mbxStatus x%x\n", 485 "failed, mbxCmd x%x, mbxStatus x%x\n",
463 pmb->mb.mbxCommand, pmb->mb.mbxStatus); 486 pmb->u.mb.mbxCommand,
487 pmb->u.mb.mbxStatus);
464 mempool_free(pmb, phba->mbox_mem_pool); 488 mempool_free(pmb, phba->mbox_mem_pool);
465 return -EIO; 489 return -EIO;
466 } 490 }
467 } 491 }
468 492
493 spin_lock_irq(&phba->hbalock);
469 /* Initialize ERATT handling flag */ 494 /* Initialize ERATT handling flag */
470 phba->hba_flag &= ~HBA_ERATT_HANDLED; 495 phba->hba_flag &= ~HBA_ERATT_HANDLED;
471 496
472 /* Enable appropriate host interrupts */ 497 /* Enable appropriate host interrupts */
473 spin_lock_irq(&phba->hbalock);
474 status = readl(phba->HCregaddr); 498 status = readl(phba->HCregaddr);
475 status |= HC_MBINT_ENA | HC_ERINT_ENA | HC_LAINT_ENA; 499 status |= HC_MBINT_ENA | HC_ERINT_ENA | HC_LAINT_ENA;
476 if (psli->num_rings > 0) 500 if (psli->num_rings > 0)
@@ -571,16 +595,20 @@ lpfc_hba_down_prep(struct lpfc_hba *phba)
571{ 595{
572 struct lpfc_vport **vports; 596 struct lpfc_vport **vports;
573 int i; 597 int i;
574 /* Disable interrupts */ 598
575 writel(0, phba->HCregaddr); 599 if (phba->sli_rev <= LPFC_SLI_REV3) {
576 readl(phba->HCregaddr); /* flush */ 600 /* Disable interrupts */
601 writel(0, phba->HCregaddr);
602 readl(phba->HCregaddr); /* flush */
603 }
577 604
578 if (phba->pport->load_flag & FC_UNLOADING) 605 if (phba->pport->load_flag & FC_UNLOADING)
579 lpfc_cleanup_discovery_resources(phba->pport); 606 lpfc_cleanup_discovery_resources(phba->pport);
580 else { 607 else {
581 vports = lpfc_create_vport_work_array(phba); 608 vports = lpfc_create_vport_work_array(phba);
582 if (vports != NULL) 609 if (vports != NULL)
583 for(i = 0; i <= phba->max_vpi && vports[i] != NULL; i++) 610 for (i = 0; i <= phba->max_vports &&
611 vports[i] != NULL; i++)
584 lpfc_cleanup_discovery_resources(vports[i]); 612 lpfc_cleanup_discovery_resources(vports[i]);
585 lpfc_destroy_vport_work_array(phba, vports); 613 lpfc_destroy_vport_work_array(phba, vports);
586 } 614 }
@@ -588,7 +616,7 @@ lpfc_hba_down_prep(struct lpfc_hba *phba)
588} 616}
589 617
590/** 618/**
591 * lpfc_hba_down_post - Perform lpfc uninitialization after HBA reset 619 * lpfc_hba_down_post_s3 - Perform lpfc uninitialization after HBA reset
592 * @phba: pointer to lpfc HBA data structure. 620 * @phba: pointer to lpfc HBA data structure.
593 * 621 *
594 * This routine will do uninitialization after the HBA is reset when bring 622 * This routine will do uninitialization after the HBA is reset when bring
@@ -598,8 +626,8 @@ lpfc_hba_down_prep(struct lpfc_hba *phba)
598 * 0 - sucess. 626 * 0 - sucess.
599 * Any other value - error. 627 * Any other value - error.
600 **/ 628 **/
601int 629static int
602lpfc_hba_down_post(struct lpfc_hba *phba) 630lpfc_hba_down_post_s3(struct lpfc_hba *phba)
603{ 631{
604 struct lpfc_sli *psli = &phba->sli; 632 struct lpfc_sli *psli = &phba->sli;
605 struct lpfc_sli_ring *pring; 633 struct lpfc_sli_ring *pring;
@@ -642,6 +670,77 @@ lpfc_hba_down_post(struct lpfc_hba *phba)
642 670
643 return 0; 671 return 0;
644} 672}
673/**
674 * lpfc_hba_down_post_s4 - Perform lpfc uninitialization after HBA reset
675 * @phba: pointer to lpfc HBA data structure.
676 *
677 * This routine will do uninitialization after the HBA is reset when bring
678 * down the SLI Layer.
679 *
680 * Return codes
681 * 0 - sucess.
682 * Any other value - error.
683 **/
684static int
685lpfc_hba_down_post_s4(struct lpfc_hba *phba)
686{
687 struct lpfc_scsi_buf *psb, *psb_next;
688 LIST_HEAD(aborts);
689 int ret;
690 unsigned long iflag = 0;
691 ret = lpfc_hba_down_post_s3(phba);
692 if (ret)
693 return ret;
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
698 * the port.
699 */
700 spin_lock_irq(&phba->hbalock); /* required for lpfc_sgl_list and */
701 /* scsl_buf_list */
702 /* abts_sgl_list_lock required because worker thread uses this
703 * list.
704 */
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
710 * list.
711 */
712 spin_lock(&phba->sli4_hba.abts_scsi_buf_list_lock);
713 list_splice_init(&phba->sli4_hba.lpfc_abts_scsi_buf_list,
714 &aborts);
715 spin_unlock(&phba->sli4_hba.abts_scsi_buf_list_lock);
716 spin_unlock_irq(&phba->hbalock);
717
718 list_for_each_entry_safe(psb, psb_next, &aborts, list) {
719 psb->pCmd = NULL;
720 psb->status = IOSTAT_SUCCESS;
721 }
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);
725 return 0;
726}
727
728/**
729 * lpfc_hba_down_post - Wrapper func for hba down post routine
730 * @phba: pointer to lpfc HBA data structure.
731 *
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.
734 *
735 * Return codes
736 * 0 - sucess.
737 * Any other value - error.
738 **/
739int
740lpfc_hba_down_post(struct lpfc_hba *phba)
741{
742 return (*phba->lpfc_hba_down_post)(phba);
743}
645 744
646/** 745/**
647 * lpfc_hb_timeout - The HBA-timer timeout handler 746 * lpfc_hb_timeout - The HBA-timer timeout handler
@@ -809,7 +908,7 @@ lpfc_hb_timeout_handler(struct lpfc_hba *phba)
809 "taking this port offline.\n"); 908 "taking this port offline.\n");
810 909
811 spin_lock_irq(&phba->hbalock); 910 spin_lock_irq(&phba->hbalock);
812 psli->sli_flag &= ~LPFC_SLI2_ACTIVE; 911 psli->sli_flag &= ~LPFC_SLI_ACTIVE;
813 spin_unlock_irq(&phba->hbalock); 912 spin_unlock_irq(&phba->hbalock);
814 913
815 lpfc_offline_prep(phba); 914 lpfc_offline_prep(phba);
@@ -834,13 +933,15 @@ lpfc_offline_eratt(struct lpfc_hba *phba)
834 struct lpfc_sli *psli = &phba->sli; 933 struct lpfc_sli *psli = &phba->sli;
835 934
836 spin_lock_irq(&phba->hbalock); 935 spin_lock_irq(&phba->hbalock);
837 psli->sli_flag &= ~LPFC_SLI2_ACTIVE; 936 psli->sli_flag &= ~LPFC_SLI_ACTIVE;
838 spin_unlock_irq(&phba->hbalock); 937 spin_unlock_irq(&phba->hbalock);
839 lpfc_offline_prep(phba); 938 lpfc_offline_prep(phba);
840 939
841 lpfc_offline(phba); 940 lpfc_offline(phba);
842 lpfc_reset_barrier(phba); 941 lpfc_reset_barrier(phba);
942 spin_lock_irq(&phba->hbalock);
843 lpfc_sli_brdreset(phba); 943 lpfc_sli_brdreset(phba);
944 spin_unlock_irq(&phba->hbalock);
844 lpfc_hba_down_post(phba); 945 lpfc_hba_down_post(phba);
845 lpfc_sli_brdready(phba, HS_MBRDY); 946 lpfc_sli_brdready(phba, HS_MBRDY);
846 lpfc_unblock_mgmt_io(phba); 947 lpfc_unblock_mgmt_io(phba);
@@ -849,6 +950,25 @@ lpfc_offline_eratt(struct lpfc_hba *phba)
849} 950}
850 951
851/** 952/**
953 * lpfc_sli4_offline_eratt - Bring lpfc offline on SLI4 hardware error attention
954 * @phba: pointer to lpfc hba data structure.
955 *
956 * This routine is called to bring a SLI4 HBA offline when HBA hardware error
957 * other than Port Error 6 has been detected.
958 **/
959static void
960lpfc_sli4_offline_eratt(struct lpfc_hba *phba)
961{
962 lpfc_offline_prep(phba);
963 lpfc_offline(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;
969}
970
971/**
852 * lpfc_handle_deferred_eratt - The HBA hardware deferred error handler 972 * lpfc_handle_deferred_eratt - The HBA hardware deferred error handler
853 * @phba: pointer to lpfc hba data structure. 973 * @phba: pointer to lpfc hba data structure.
854 * 974 *
@@ -864,6 +984,16 @@ lpfc_handle_deferred_eratt(struct lpfc_hba *phba)
864 struct lpfc_sli_ring *pring; 984 struct lpfc_sli_ring *pring;
865 struct lpfc_sli *psli = &phba->sli; 985 struct lpfc_sli *psli = &phba->sli;
866 986
987 /* If the pci channel is offline, ignore possible errors,
988 * since we cannot communicate with the pci card anyway.
989 */
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);
994 return;
995 }
996
867 lpfc_printf_log(phba, KERN_ERR, LOG_INIT, 997 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
868 "0479 Deferred Adapter Hardware Error " 998 "0479 Deferred Adapter Hardware Error "
869 "Data: x%x x%x x%x\n", 999 "Data: x%x x%x x%x\n",
@@ -871,7 +1001,7 @@ lpfc_handle_deferred_eratt(struct lpfc_hba *phba)
871 phba->work_status[0], phba->work_status[1]); 1001 phba->work_status[0], phba->work_status[1]);
872 1002
873 spin_lock_irq(&phba->hbalock); 1003 spin_lock_irq(&phba->hbalock);
874 psli->sli_flag &= ~LPFC_SLI2_ACTIVE; 1004 psli->sli_flag &= ~LPFC_SLI_ACTIVE;
875 spin_unlock_irq(&phba->hbalock); 1005 spin_unlock_irq(&phba->hbalock);
876 1006
877 1007
@@ -909,13 +1039,30 @@ lpfc_handle_deferred_eratt(struct lpfc_hba *phba)
909 if ((!phba->work_hs) && (!(phba->pport->load_flag & FC_UNLOADING))) 1039 if ((!phba->work_hs) && (!(phba->pport->load_flag & FC_UNLOADING)))
910 phba->work_hs = old_host_status & ~HS_FFER1; 1040 phba->work_hs = old_host_status & ~HS_FFER1;
911 1041
1042 spin_lock_irq(&phba->hbalock);
912 phba->hba_flag &= ~DEFER_ERATT; 1043 phba->hba_flag &= ~DEFER_ERATT;
1044 spin_unlock_irq(&phba->hbalock);
913 phba->work_status[0] = readl(phba->MBslimaddr + 0xa8); 1045 phba->work_status[0] = readl(phba->MBslimaddr + 0xa8);
914 phba->work_status[1] = readl(phba->MBslimaddr + 0xac); 1046 phba->work_status[1] = readl(phba->MBslimaddr + 0xac);
915} 1047}
916 1048
1049static void
1050lpfc_board_errevt_to_mgmt(struct lpfc_hba *phba)
1051{
1052 struct lpfc_board_event_header board_event;
1053 struct Scsi_Host *shost;
1054
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,
1061 LPFC_NL_VENDOR_ID);
1062}
1063
917/** 1064/**
918 * lpfc_handle_eratt - The HBA hardware error handler 1065 * lpfc_handle_eratt_s3 - The SLI3 HBA hardware error handler
919 * @phba: pointer to lpfc hba data structure. 1066 * @phba: pointer to lpfc hba data structure.
920 * 1067 *
921 * This routine is invoked to handle the following HBA hardware error 1068 * This routine is invoked to handle the following HBA hardware error
@@ -924,8 +1071,8 @@ lpfc_handle_deferred_eratt(struct lpfc_hba *phba)
924 * 2 - DMA ring index out of range 1071 * 2 - DMA ring index out of range
925 * 3 - Mailbox command came back as unknown 1072 * 3 - Mailbox command came back as unknown
926 **/ 1073 **/
927void 1074static void
928lpfc_handle_eratt(struct lpfc_hba *phba) 1075lpfc_handle_eratt_s3(struct lpfc_hba *phba)
929{ 1076{
930 struct lpfc_vport *vport = phba->pport; 1077 struct lpfc_vport *vport = phba->pport;
931 struct lpfc_sli *psli = &phba->sli; 1078 struct lpfc_sli *psli = &phba->sli;
@@ -934,24 +1081,23 @@ lpfc_handle_eratt(struct lpfc_hba *phba)
934 unsigned long temperature; 1081 unsigned long temperature;
935 struct temp_event temp_event_data; 1082 struct temp_event temp_event_data;
936 struct Scsi_Host *shost; 1083 struct Scsi_Host *shost;
937 struct lpfc_board_event_header board_event;
938 1084
939 /* If the pci channel is offline, ignore possible errors, 1085 /* If the pci channel is offline, ignore possible errors,
940 * since we cannot communicate with the pci card anyway. */ 1086 * since we cannot communicate with the pci card anyway.
941 if (pci_channel_offline(phba->pcidev)) 1087 */
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);
942 return; 1092 return;
1093 }
1094
943 /* If resets are disabled then leave the HBA alone and return */ 1095 /* If resets are disabled then leave the HBA alone and return */
944 if (!phba->cfg_enable_hba_reset) 1096 if (!phba->cfg_enable_hba_reset)
945 return; 1097 return;
946 1098
947 /* Send an internal error event to mgmt application */ 1099 /* Send an internal error event to mgmt application */
948 board_event.event_type = FC_REG_BOARD_EVENT; 1100 lpfc_board_errevt_to_mgmt(phba);
949 board_event.subcategory = LPFC_EVENT_PORTINTERR;
950 shost = lpfc_shost_from_vport(phba->pport);
951 fc_host_post_vendor_event(shost, fc_get_event_number(),
952 sizeof(board_event),
953 (char *) &board_event,
954 LPFC_NL_VENDOR_ID);
955 1101
956 if (phba->hba_flag & DEFER_ERATT) 1102 if (phba->hba_flag & DEFER_ERATT)
957 lpfc_handle_deferred_eratt(phba); 1103 lpfc_handle_deferred_eratt(phba);
@@ -965,7 +1111,7 @@ lpfc_handle_eratt(struct lpfc_hba *phba)
965 phba->work_status[0], phba->work_status[1]); 1111 phba->work_status[0], phba->work_status[1]);
966 1112
967 spin_lock_irq(&phba->hbalock); 1113 spin_lock_irq(&phba->hbalock);
968 psli->sli_flag &= ~LPFC_SLI2_ACTIVE; 1114 psli->sli_flag &= ~LPFC_SLI_ACTIVE;
969 spin_unlock_irq(&phba->hbalock); 1115 spin_unlock_irq(&phba->hbalock);
970 1116
971 /* 1117 /*
@@ -1037,6 +1183,65 @@ lpfc_handle_eratt(struct lpfc_hba *phba)
1037} 1183}
1038 1184
1039/** 1185/**
1186 * lpfc_handle_eratt_s4 - The SLI4 HBA hardware error handler
1187 * @phba: pointer to lpfc hba data structure.
1188 *
1189 * This routine is invoked to handle the SLI4 HBA hardware error attention
1190 * conditions.
1191 **/
1192static void
1193lpfc_handle_eratt_s4(struct lpfc_hba *phba)
1194{
1195 struct lpfc_vport *vport = phba->pport;
1196 uint32_t event_data;
1197 struct Scsi_Host *shost;
1198
1199 /* If the pci channel is offline, ignore possible errors, since
1200 * we cannot communicate with the pci card anyway.
1201 */
1202 if (pci_channel_offline(phba->pcidev))
1203 return;
1204 /* If resets are disabled then leave the HBA alone and return */
1205 if (!phba->cfg_enable_hba_reset)
1206 return;
1207
1208 /* Send an internal error event to mgmt application */
1209 lpfc_board_errevt_to_mgmt(phba);
1210
1211 /* For now, the actual action for SLI4 device handling is not
1212 * specified yet, just treated it as adaptor hardware failure
1213 */
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]);
1217
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);
1223
1224 lpfc_sli4_offline_eratt(phba);
1225}
1226
1227/**
1228 * lpfc_handle_eratt - Wrapper func for handling hba error attention
1229 * @phba: pointer to lpfc HBA data structure.
1230 *
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.
1233 *
1234 * Return codes
1235 * 0 - sucess.
1236 * Any other value - error.
1237 **/
1238void
1239lpfc_handle_eratt(struct lpfc_hba *phba)
1240{
1241 (*phba->lpfc_handle_eratt)(phba);
1242}
1243
1244/**
1040 * lpfc_handle_latt - The HBA link event handler 1245 * lpfc_handle_latt - The HBA link event handler
1041 * @phba: pointer to lpfc hba data structure. 1246 * @phba: pointer to lpfc hba data structure.
1042 * 1247 *
@@ -1137,7 +1342,7 @@ lpfc_handle_latt_err_exit:
1137 * 0 - pointer to the VPD passed in is NULL 1342 * 0 - pointer to the VPD passed in is NULL
1138 * 1 - success 1343 * 1 - success
1139 **/ 1344 **/
1140static int 1345int
1141lpfc_parse_vpd(struct lpfc_hba *phba, uint8_t *vpd, int len) 1346lpfc_parse_vpd(struct lpfc_hba *phba, uint8_t *vpd, int len)
1142{ 1347{
1143 uint8_t lenlo, lenhi; 1348 uint8_t lenlo, lenhi;
@@ -1292,6 +1497,7 @@ lpfc_get_hba_model_desc(struct lpfc_hba *phba, uint8_t *mdp, uint8_t *descp)
1292 uint16_t dev_id = phba->pcidev->device; 1497 uint16_t dev_id = phba->pcidev->device;
1293 int max_speed; 1498 int max_speed;
1294 int GE = 0; 1499 int GE = 0;
1500 int oneConnect = 0; /* default is not a oneConnect */
1295 struct { 1501 struct {
1296 char * name; 1502 char * name;
1297 int max_speed; 1503 int max_speed;
@@ -1437,6 +1643,10 @@ lpfc_get_hba_model_desc(struct lpfc_hba *phba, uint8_t *mdp, uint8_t *descp)
1437 case PCI_DEVICE_ID_PROTEUS_S: 1643 case PCI_DEVICE_ID_PROTEUS_S:
1438 m = (typeof(m)) {"LPemv12002-S", max_speed, "PCIe IOV"}; 1644 m = (typeof(m)) {"LPemv12002-S", max_speed, "PCIe IOV"};
1439 break; 1645 break;
1646 case PCI_DEVICE_ID_TIGERSHARK:
1647 oneConnect = 1;
1648 m = (typeof(m)) {"OCe10100-F", max_speed, "PCIe"};
1649 break;
1440 default: 1650 default:
1441 m = (typeof(m)){ NULL }; 1651 m = (typeof(m)){ NULL };
1442 break; 1652 break;
@@ -1444,13 +1654,24 @@ lpfc_get_hba_model_desc(struct lpfc_hba *phba, uint8_t *mdp, uint8_t *descp)
1444 1654
1445 if (mdp && mdp[0] == '\0') 1655 if (mdp && mdp[0] == '\0')
1446 snprintf(mdp, 79,"%s", m.name); 1656 snprintf(mdp, 79,"%s", m.name);
1447 if (descp && descp[0] == '\0') 1657 /* oneConnect hba requires special processing, they are all initiators
1448 snprintf(descp, 255, 1658 * and we put the port number on the end
1449 "Emulex %s %d%s %s %s", 1659 */
1450 m.name, m.max_speed, 1660 if (descp && descp[0] == '\0') {
1451 (GE) ? "GE" : "Gb", 1661 if (oneConnect)
1452 m.bus, 1662 snprintf(descp, 255,
1453 (GE) ? "FCoE Adapter" : "Fibre Channel Adapter"); 1663 "Emulex OneConnect %s, FCoE Initiator, Port %s",
1664 m.name,
1665 phba->Port);
1666 else
1667 snprintf(descp, 255,
1668 "Emulex %s %d%s %s %s",
1669 m.name, m.max_speed,
1670 (GE) ? "GE" : "Gb",
1671 m.bus,
1672 (GE) ? "FCoE Adapter" :
1673 "Fibre Channel Adapter");
1674 }
1454} 1675}
1455 1676
1456/** 1677/**
@@ -1533,7 +1754,8 @@ lpfc_post_buffer(struct lpfc_hba *phba, struct lpfc_sli_ring *pring, int cnt)
1533 icmd->ulpCommand = CMD_QUE_RING_BUF64_CN; 1754 icmd->ulpCommand = CMD_QUE_RING_BUF64_CN;
1534 icmd->ulpLe = 1; 1755 icmd->ulpLe = 1;
1535 1756
1536 if (lpfc_sli_issue_iocb(phba, pring, iocb, 0) == IOCB_ERROR) { 1757 if (lpfc_sli_issue_iocb(phba, pring->ringno, iocb, 0) ==
1758 IOCB_ERROR) {
1537 lpfc_mbuf_free(phba, mp1->virt, mp1->phys); 1759 lpfc_mbuf_free(phba, mp1->virt, mp1->phys);
1538 kfree(mp1); 1760 kfree(mp1);
1539 cnt++; 1761 cnt++;
@@ -1761,7 +1983,6 @@ lpfc_cleanup(struct lpfc_vport *vport)
1761 * Lets wait for this to happen, if needed. 1983 * Lets wait for this to happen, if needed.
1762 */ 1984 */
1763 while (!list_empty(&vport->fc_nodes)) { 1985 while (!list_empty(&vport->fc_nodes)) {
1764
1765 if (i++ > 3000) { 1986 if (i++ > 3000) {
1766 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY, 1987 lpfc_printf_vlog(vport, KERN_ERR, LOG_DISCOVERY,
1767 "0233 Nodelist not empty\n"); 1988 "0233 Nodelist not empty\n");
@@ -1782,7 +2003,6 @@ lpfc_cleanup(struct lpfc_vport *vport)
1782 /* Wait for any activity on ndlps to settle */ 2003 /* Wait for any activity on ndlps to settle */
1783 msleep(10); 2004 msleep(10);
1784 } 2005 }
1785 return;
1786} 2006}
1787 2007
1788/** 2008/**
@@ -1803,22 +2023,36 @@ lpfc_stop_vport_timers(struct lpfc_vport *vport)
1803} 2023}
1804 2024
1805/** 2025/**
1806 * lpfc_stop_phba_timers - Stop all the timers associated with an HBA 2026 * lpfc_stop_hba_timers - Stop all the timers associated with an HBA
1807 * @phba: pointer to lpfc hba data structure. 2027 * @phba: pointer to lpfc hba data structure.
1808 * 2028 *
1809 * This routine stops all the timers associated with a HBA. This function is 2029 * This routine stops all the timers associated with a HBA. This function is
1810 * invoked before either putting a HBA offline or unloading the driver. 2030 * invoked before either putting a HBA offline or unloading the driver.
1811 **/ 2031 **/
1812static void 2032void
1813lpfc_stop_phba_timers(struct lpfc_hba *phba) 2033lpfc_stop_hba_timers(struct lpfc_hba *phba)
1814{ 2034{
1815 del_timer_sync(&phba->fcp_poll_timer);
1816 lpfc_stop_vport_timers(phba->pport); 2035 lpfc_stop_vport_timers(phba->pport);
1817 del_timer_sync(&phba->sli.mbox_tmo); 2036 del_timer_sync(&phba->sli.mbox_tmo);
1818 del_timer_sync(&phba->fabric_block_timer); 2037 del_timer_sync(&phba->fabric_block_timer);
1819 phba->hb_outstanding = 0;
1820 del_timer_sync(&phba->hb_tmofunc);
1821 del_timer_sync(&phba->eratt_poll); 2038 del_timer_sync(&phba->eratt_poll);
2039 del_timer_sync(&phba->hb_tmofunc);
2040 phba->hb_outstanding = 0;
2041
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);
2046 break;
2047 case LPFC_PCI_DEV_OC:
2048 /* Stop any OneConnect device sepcific driver timers */
2049 break;
2050 default:
2051 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
2052 "0297 Invalid device group (x%x)\n",
2053 phba->pci_dev_grp);
2054 break;
2055 }
1822 return; 2056 return;
1823} 2057}
1824 2058
@@ -1878,14 +2112,21 @@ lpfc_online(struct lpfc_hba *phba)
1878 return 1; 2112 return 1;
1879 } 2113 }
1880 2114
1881 if (lpfc_sli_hba_setup(phba)) { /* Initialize the HBA */ 2115 if (phba->sli_rev == LPFC_SLI_REV4) {
1882 lpfc_unblock_mgmt_io(phba); 2116 if (lpfc_sli4_hba_setup(phba)) { /* Initialize SLI4 HBA */
1883 return 1; 2117 lpfc_unblock_mgmt_io(phba);
2118 return 1;
2119 }
2120 } else {
2121 if (lpfc_sli_hba_setup(phba)) { /* Initialize SLI2/SLI3 HBA */
2122 lpfc_unblock_mgmt_io(phba);
2123 return 1;
2124 }
1884 } 2125 }
1885 2126
1886 vports = lpfc_create_vport_work_array(phba); 2127 vports = lpfc_create_vport_work_array(phba);
1887 if (vports != NULL) 2128 if (vports != NULL)
1888 for(i = 0; i <= phba->max_vpi && vports[i] != NULL; i++) { 2129 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
1889 struct Scsi_Host *shost; 2130 struct Scsi_Host *shost;
1890 shost = lpfc_shost_from_vport(vports[i]); 2131 shost = lpfc_shost_from_vport(vports[i]);
1891 spin_lock_irq(shost->host_lock); 2132 spin_lock_irq(shost->host_lock);
@@ -1947,11 +2188,12 @@ lpfc_offline_prep(struct lpfc_hba * phba)
1947 /* Issue an unreg_login to all nodes on all vports */ 2188 /* Issue an unreg_login to all nodes on all vports */
1948 vports = lpfc_create_vport_work_array(phba); 2189 vports = lpfc_create_vport_work_array(phba);
1949 if (vports != NULL) { 2190 if (vports != NULL) {
1950 for(i = 0; i <= phba->max_vpi && vports[i] != NULL; i++) { 2191 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
1951 struct Scsi_Host *shost; 2192 struct Scsi_Host *shost;
1952 2193
1953 if (vports[i]->load_flag & FC_UNLOADING) 2194 if (vports[i]->load_flag & FC_UNLOADING)
1954 continue; 2195 continue;
2196 vports[i]->vfi_state &= ~LPFC_VFI_REGISTERED;
1955 shost = lpfc_shost_from_vport(vports[i]); 2197 shost = lpfc_shost_from_vport(vports[i]);
1956 list_for_each_entry_safe(ndlp, next_ndlp, 2198 list_for_each_entry_safe(ndlp, next_ndlp,
1957 &vports[i]->fc_nodes, 2199 &vports[i]->fc_nodes,
@@ -1975,7 +2217,7 @@ lpfc_offline_prep(struct lpfc_hba * phba)
1975 } 2217 }
1976 lpfc_destroy_vport_work_array(phba, vports); 2218 lpfc_destroy_vport_work_array(phba, vports);
1977 2219
1978 lpfc_sli_flush_mbox_queue(phba); 2220 lpfc_sli_mbox_sys_shutdown(phba);
1979} 2221}
1980 2222
1981/** 2223/**
@@ -1996,11 +2238,11 @@ lpfc_offline(struct lpfc_hba *phba)
1996 if (phba->pport->fc_flag & FC_OFFLINE_MODE) 2238 if (phba->pport->fc_flag & FC_OFFLINE_MODE)
1997 return; 2239 return;
1998 2240
1999 /* stop all timers associated with this hba */ 2241 /* stop port and all timers associated with this hba */
2000 lpfc_stop_phba_timers(phba); 2242 lpfc_stop_port(phba);
2001 vports = lpfc_create_vport_work_array(phba); 2243 vports = lpfc_create_vport_work_array(phba);
2002 if (vports != NULL) 2244 if (vports != NULL)
2003 for(i = 0; i <= phba->max_vpi && vports[i] != NULL; i++) 2245 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++)
2004 lpfc_stop_vport_timers(vports[i]); 2246 lpfc_stop_vport_timers(vports[i]);
2005 lpfc_destroy_vport_work_array(phba, vports); 2247 lpfc_destroy_vport_work_array(phba, vports);
2006 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT, 2248 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
@@ -2013,7 +2255,7 @@ lpfc_offline(struct lpfc_hba *phba)
2013 spin_unlock_irq(&phba->hbalock); 2255 spin_unlock_irq(&phba->hbalock);
2014 vports = lpfc_create_vport_work_array(phba); 2256 vports = lpfc_create_vport_work_array(phba);
2015 if (vports != NULL) 2257 if (vports != NULL)
2016 for(i = 0; i <= phba->max_vpi && vports[i] != NULL; i++) { 2258 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++) {
2017 shost = lpfc_shost_from_vport(vports[i]); 2259 shost = lpfc_shost_from_vport(vports[i]);
2018 spin_lock_irq(shost->host_lock); 2260 spin_lock_irq(shost->host_lock);
2019 vports[i]->work_port_events = 0; 2261 vports[i]->work_port_events = 0;
@@ -2106,6 +2348,10 @@ lpfc_create_port(struct lpfc_hba *phba, int instance, struct device *dev)
2106 shost->max_lun = vport->cfg_max_luns; 2348 shost->max_lun = vport->cfg_max_luns;
2107 shost->this_id = -1; 2349 shost->this_id = -1;
2108 shost->max_cmd_len = 16; 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;
2354 }
2109 2355
2110 /* 2356 /*
2111 * Set initial can_queue value since 0 is no longer supported and 2357 * Set initial can_queue value since 0 is no longer supported and
@@ -2123,6 +2369,7 @@ lpfc_create_port(struct lpfc_hba *phba, int instance, struct device *dev)
2123 2369
2124 /* Initialize all internally managed lists. */ 2370 /* Initialize all internally managed lists. */
2125 INIT_LIST_HEAD(&vport->fc_nodes); 2371 INIT_LIST_HEAD(&vport->fc_nodes);
2372 INIT_LIST_HEAD(&vport->rcv_buffer_list);
2126 spin_lock_init(&vport->work_port_lock); 2373 spin_lock_init(&vport->work_port_lock);
2127 2374
2128 init_timer(&vport->fc_disctmo); 2375 init_timer(&vport->fc_disctmo);
@@ -2314,15 +2561,3462 @@ void lpfc_host_attrib_init(struct Scsi_Host *shost)
2314} 2561}
2315 2562
2316/** 2563/**
2317 * lpfc_enable_msix - Enable MSI-X interrupt mode 2564 * lpfc_stop_port_s3 - Stop SLI3 device port
2565 * @phba: pointer to lpfc hba data structure.
2566 *
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
2569 * device.
2570 **/
2571static void
2572lpfc_stop_port_s3(struct lpfc_hba *phba)
2573{
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 */
2580
2581 /* Reset some HBA SLI setup states */
2582 lpfc_stop_hba_timers(phba);
2583 phba->pport->work_port_events = 0;
2584}
2585
2586/**
2587 * lpfc_stop_port_s4 - Stop SLI4 device port
2588 * @phba: pointer to lpfc hba data structure.
2589 *
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
2592 * device.
2593 **/
2594static void
2595lpfc_stop_port_s4(struct lpfc_hba *phba)
2596{
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;
2603}
2604
2605/**
2606 * lpfc_stop_port - Wrapper function for stopping hba port
2607 * @phba: Pointer to HBA context object.
2608 *
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.
2611 **/
2612void
2613lpfc_stop_port(struct lpfc_hba *phba)
2614{
2615 phba->lpfc_stop_port(phba);
2616}
2617
2618/**
2619 * lpfc_sli4_remove_dflt_fcf - Remove the driver default fcf record from the port.
2620 * @phba: pointer to lpfc hba data structure.
2621 *
2622 * This routine is invoked to remove the driver default fcf record from
2623 * the port. This routine currently acts on FCF Index 0.
2624 *
2625 **/
2626void
2627lpfc_sli_remove_dflt_fcf(struct lpfc_hba *phba)
2628{
2629 int rc = 0;
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;
2634
2635 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
2636 if (!mboxq) {
2637 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
2638 "2020 Failed to allocate mbox for ADD_FCF cmd\n");
2639 return;
2640 }
2641
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);
2647 /*
2648 * In phase 1, there is a single FCF index, 0. In phase2, the driver
2649 * supports multiple FCF indices.
2650 */
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);
2655
2656 if (!phba->sli4_hba.intr_enable)
2657 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
2658 else {
2659 mbox_tmo = lpfc_mbox_tmo_val(phba, MBX_SLI4_CONFIG);
2660 rc = lpfc_sli_issue_mbox_wait(phba, mboxq, mbox_tmo);
2661 }
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);
2672 }
2673 if (rc != MBX_TIMEOUT)
2674 mempool_free(mboxq, phba->mbox_mem_pool);
2675}
2676
2677/**
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.
2681 *
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
2684 * status.
2685 *
2686 * Return: Link-attention status in terms of base driver's coding.
2687 **/
2688static uint16_t
2689lpfc_sli4_parse_latt_fault(struct lpfc_hba *phba,
2690 struct lpfc_acqe_link *acqe_link)
2691{
2692 uint16_t latt_fault;
2693
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:
2698 latt_fault = 0;
2699 break;
2700 default:
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;
2705 break;
2706 }
2707 return latt_fault;
2708}
2709
2710/**
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.
2714 *
2715 * This routine is to parse the SLI4 link attention type and translate it
2716 * into the base driver's link attention type coding.
2717 *
2718 * Return: Link attention type in terms of base driver's coding.
2719 **/
2720static uint8_t
2721lpfc_sli4_parse_latt_type(struct lpfc_hba *phba,
2722 struct lpfc_acqe_link *acqe_link)
2723{
2724 uint8_t att_type;
2725
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;
2730 break;
2731 case LPFC_ASYNC_LINK_STATUS_UP:
2732 /* Ignore physical link up events - wait for logical link up */
2733 att_type = AT_RESERVED;
2734 break;
2735 case LPFC_ASYNC_LINK_STATUS_LOGICAL_UP:
2736 att_type = AT_LINK_UP;
2737 break;
2738 default:
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;
2743 break;
2744 }
2745 return att_type;
2746}
2747
2748/**
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.
2752 *
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.
2755 *
2756 * Return: Link-attention link speed in terms of base driver's coding.
2757 **/
2758static uint8_t
2759lpfc_sli4_parse_latt_link_speed(struct lpfc_hba *phba,
2760 struct lpfc_acqe_link *acqe_link)
2761{
2762 uint8_t link_speed;
2763
2764 switch (bf_get(lpfc_acqe_link_speed, acqe_link)) {
2765 case LPFC_ASYNC_LINK_SPEED_ZERO:
2766 link_speed = LA_UNKNW_LINK;
2767 break;
2768 case LPFC_ASYNC_LINK_SPEED_10MBPS:
2769 link_speed = LA_UNKNW_LINK;
2770 break;
2771 case LPFC_ASYNC_LINK_SPEED_100MBPS:
2772 link_speed = LA_UNKNW_LINK;
2773 break;
2774 case LPFC_ASYNC_LINK_SPEED_1GBPS:
2775 link_speed = LA_1GHZ_LINK;
2776 break;
2777 case LPFC_ASYNC_LINK_SPEED_10GBPS:
2778 link_speed = LA_10GHZ_LINK;
2779 break;
2780 default:
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;
2785 break;
2786 }
2787 return link_speed;
2788}
2789
2790/**
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.
2794 *
2795 * This routine is to handle the SLI4 asynchronous link event.
2796 **/
2797static void
2798lpfc_sli4_async_link_evt(struct lpfc_hba *phba,
2799 struct lpfc_acqe_link *acqe_link)
2800{
2801 struct lpfc_dmabuf *mp;
2802 LPFC_MBOXQ_t *pmb;
2803 MAILBOX_t *mb;
2804 READ_LA_VAR *la;
2805 uint8_t att_type;
2806
2807 att_type = lpfc_sli4_parse_latt_type(phba, acqe_link);
2808 if (att_type != AT_LINK_DOWN && att_type != AT_LINK_UP)
2809 return;
2810 pmb = (LPFC_MBOXQ_t *)mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
2811 if (!pmb) {
2812 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
2813 "0395 The mboxq allocation failed\n");
2814 return;
2815 }
2816 mp = kmalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
2817 if (!mp) {
2818 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
2819 "0396 The lpfc_dmabuf allocation failed\n");
2820 goto out_free_pmb;
2821 }
2822 mp->virt = lpfc_mbuf_alloc(phba, 0, &mp->phys);
2823 if (!mp->virt) {
2824 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
2825 "0397 The mbuf allocation failed\n");
2826 goto out_free_dmabuf;
2827 }
2828
2829 /* Cleanup any outstanding ELS commands */
2830 lpfc_els_flush_all_cmd(phba);
2831
2832 /* Block ELS IOCBs until we have done process link event */
2833 phba->sli.ring[LPFC_ELS_RING].flag |= LPFC_STOP_IOCB_EVENT;
2834
2835 /* Update link event statistics */
2836 phba->sli.slistat.link_event++;
2837
2838 /* Create pseudo lpfc_handle_latt mailbox command from link ACQE */
2839 lpfc_read_la(phba, pmb, mp);
2840 pmb->vport = phba->pport;
2841
2842 /* Parse and translate status field */
2843 mb = &pmb->u.mb;
2844 mb->mbxStatus = lpfc_sli4_parse_latt_fault(phba, acqe_link);
2845
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);
2851
2852 /* Fake the the following irrelvant fields */
2853 la->topology = TOPOLOGY_PT_PT;
2854 la->granted_AL_PA = 0;
2855 la->il = 0;
2856 la->pb = 0;
2857 la->fa = 0;
2858 la->mm = 0;
2859
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);
2871
2872 /* Invoke the lpfc_handle_latt mailbox command callback function */
2873 lpfc_mbx_cmpl_read_la(phba, pmb);
2874
2875 return;
2876
2877out_free_dmabuf:
2878 kfree(mp);
2879out_free_pmb:
2880 mempool_free(pmb, phba->mbox_mem_pool);
2881}
2882
2883/**
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.
2887 *
2888 * This routine is to handle the SLI4 asynchronous fcoe event.
2889 **/
2890static void
2891lpfc_sli4_async_fcoe_evt(struct lpfc_hba *phba,
2892 struct lpfc_acqe_fcoe *acqe_fcoe)
2893{
2894 uint8_t event_type = bf_get(lpfc_acqe_fcoe_event_type, acqe_fcoe);
2895 int rc;
2896
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);
2903 /*
2904 * If the current FCF is in discovered state,
2905 * do nothing.
2906 */
2907 spin_lock_irq(&phba->hbalock);
2908 if (phba->fcf.fcf_flag & FCF_DISCOVERED) {
2909 spin_unlock_irq(&phba->hbalock);
2910 break;
2911 }
2912 spin_unlock_irq(&phba->hbalock);
2913
2914 /* Read the FCF table and re-discover SAN. */
2915 rc = lpfc_sli4_read_fcf_record(phba,
2916 LPFC_FCOE_FCF_GET_FIRST);
2917 if (rc)
2918 lpfc_printf_log(phba, KERN_ERR, LOG_DISCOVERY,
2919 "2547 Read FCF record failed 0x%x\n",
2920 rc);
2921 break;
2922
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);
2928 break;
2929
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)
2937 break;
2938 /*
2939 * Currently, driver support only one FCF - so treat this as
2940 * a link down.
2941 */
2942 lpfc_linkdown(phba);
2943 /* Unregister FCF if no devices connected to it */
2944 lpfc_unregister_unused_fcf(phba);
2945 break;
2946
2947 default:
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);
2951 break;
2952 }
2953}
2954
2955/**
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.
2959 *
2960 * This routine is to handle the SLI4 asynchronous dcbx event.
2961 **/
2962static void
2963lpfc_sli4_async_dcbx_evt(struct lpfc_hba *phba,
2964 struct lpfc_acqe_dcbx *acqe_dcbx)
2965{
2966 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
2967 "0290 The SLI4 DCBX asynchronous event is not "
2968 "handled yet\n");
2969}
2970
2971/**
2972 * lpfc_sli4_async_event_proc - Process all the pending asynchronous event
2973 * @phba: pointer to lpfc hba data structure.
2974 *
2975 * This routine is invoked by the worker thread to process all the pending
2976 * SLI4 asynchronous events.
2977 **/
2978void lpfc_sli4_async_event_proc(struct lpfc_hba *phba)
2979{
2980 struct lpfc_cq_event *cq_event;
2981
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);
2998 break;
2999 case LPFC_TRAILER_CODE_FCOE:
3000 lpfc_sli4_async_fcoe_evt(phba,
3001 &cq_event->cqe.acqe_fcoe);
3002 break;
3003 case LPFC_TRAILER_CODE_DCBX:
3004 lpfc_sli4_async_dcbx_evt(phba,
3005 &cq_event->cqe.acqe_dcbx);
3006 break;
3007 default:
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));
3012 break;
3013 }
3014 /* Free the completion event processed to the free pool */
3015 lpfc_sli4_cq_event_release(phba, cq_event);
3016 }
3017}
3018
3019/**
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.
3023 *
3024 * This routine is invoked to set up the per HBA PCI-Device group function
3025 * API jump table entries.
3026 *
3027 * Return: 0 if success, otherwise -ENODEV
3028 **/
3029int
3030lpfc_api_table_setup(struct lpfc_hba *phba, uint8_t dev_grp)
3031{
3032 int rc;
3033
3034 /* Set up lpfc PCI-device group */
3035 phba->pci_dev_grp = dev_grp;
3036
3037 /* The LPFC_PCI_DEV_OC uses SLI4 */
3038 if (dev_grp == LPFC_PCI_DEV_OC)
3039 phba->sli_rev = LPFC_SLI_REV4;
3040
3041 /* Set up device INIT API function jump table */
3042 rc = lpfc_init_api_table_setup(phba, dev_grp);
3043 if (rc)
3044 return -ENODEV;
3045 /* Set up SCSI API function jump table */
3046 rc = lpfc_scsi_api_table_setup(phba, dev_grp);
3047 if (rc)
3048 return -ENODEV;
3049 /* Set up SLI API function jump table */
3050 rc = lpfc_sli_api_table_setup(phba, dev_grp);
3051 if (rc)
3052 return -ENODEV;
3053 /* Set up MBOX API function jump table */
3054 rc = lpfc_mbox_api_table_setup(phba, dev_grp);
3055 if (rc)
3056 return -ENODEV;
3057
3058 return 0;
3059}
3060
3061/**
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.
3065 *
3066 * This routine it invoked to log the currently used active interrupt mode
3067 * to the device.
3068 **/
3069static void lpfc_log_intr_mode(struct lpfc_hba *phba, uint32_t intr_mode)
3070{
3071 switch (intr_mode) {
3072 case 0:
3073 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
3074 "0470 Enable INTx interrupt mode.\n");
3075 break;
3076 case 1:
3077 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
3078 "0481 Enabled MSI interrupt mode.\n");
3079 break;
3080 case 2:
3081 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
3082 "0480 Enabled MSI-X interrupt mode.\n");
3083 break;
3084 default:
3085 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3086 "0482 Illegal interrupt mode.\n");
3087 break;
3088 }
3089 return;
3090}
3091
3092/**
3093 * lpfc_enable_pci_dev - Enable a generic PCI device.
3094 * @phba: pointer to lpfc hba data structure.
3095 *
3096 * This routine is invoked to enable the PCI device that is common to all
3097 * PCI devices.
3098 *
3099 * Return codes
3100 * 0 - sucessful
3101 * other values - error
3102 **/
3103static int
3104lpfc_enable_pci_dev(struct lpfc_hba *phba)
3105{
3106 struct pci_dev *pdev;
3107 int bars;
3108
3109 /* Obtain PCI device reference */
3110 if (!phba->pcidev)
3111 goto out_error;
3112 else
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))
3118 goto out_error;
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);
3126
3127 return 0;
3128
3129out_disable_device:
3130 pci_disable_device(pdev);
3131out_error:
3132 return -ENODEV;
3133}
3134
3135/**
3136 * lpfc_disable_pci_dev - Disable a generic PCI device.
3137 * @phba: pointer to lpfc hba data structure.
3138 *
3139 * This routine is invoked to disable the PCI device that is common to all
3140 * PCI devices.
3141 **/
3142static void
3143lpfc_disable_pci_dev(struct lpfc_hba *phba)
3144{
3145 struct pci_dev *pdev;
3146 int bars;
3147
3148 /* Obtain PCI device reference */
3149 if (!phba->pcidev)
3150 return;
3151 else
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);
3160
3161 return;
3162}
3163
3164/**
3165 * lpfc_reset_hba - Reset a hba
3166 * @phba: pointer to lpfc hba data structure.
3167 *
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.
3172 **/
3173void
3174lpfc_reset_hba(struct lpfc_hba *phba)
3175{
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;
3179 return;
3180 }
3181 lpfc_offline_prep(phba);
3182 lpfc_offline(phba);
3183 lpfc_sli_brdrestart(phba);
3184 lpfc_online(phba);
3185 lpfc_unblock_mgmt_io(phba);
3186}
3187
3188/**
3189 * lpfc_sli_driver_resource_setup - Setup driver internal resources for SLI3 dev.
3190 * @phba: pointer to lpfc hba data structure.
3191 *
3192 * This routine is invoked to set up the driver internal resources specific to
3193 * support the SLI-3 HBA device it attached to.
3194 *
3195 * Return codes
3196 * 0 - sucessful
3197 * other values - error
3198 **/
3199static int
3200lpfc_sli_driver_resource_setup(struct lpfc_hba *phba)
3201{
3202 struct lpfc_sli *psli;
3203
3204 /*
3205 * Initialize timers used by driver
3206 */
3207
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;
3212
3213 psli = &phba->sli;
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;
3230
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));
3234
3235 /* Get all the module params for configuring this host */
3236 lpfc_get_cfgparam(phba);
3237 /*
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.
3241 */
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));
3245
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);
3250 }
3251
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;
3255
3256 phba->max_vpi = LPFC_MAX_VPI;
3257 /* This will be set to correct value after config_port mbox */
3258 phba->max_vports = 0;
3259
3260 /*
3261 * Initialize the SLI Layer to run with lpfc HBAs.
3262 */
3263 lpfc_sli_setup(phba);
3264 lpfc_sli_queue_setup(phba);
3265
3266 /* Allocate device driver memory */
3267 if (lpfc_mem_alloc(phba, BPL_ALIGN_SZ))
3268 return -ENOMEM;
3269
3270 return 0;
3271}
3272
3273/**
3274 * lpfc_sli_driver_resource_unset - Unset drvr internal resources for SLI3 dev
3275 * @phba: pointer to lpfc hba data structure.
3276 *
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.
3279 **/
3280static void
3281lpfc_sli_driver_resource_unset(struct lpfc_hba *phba)
3282{
3283 /* Free device driver memory allocated */
3284 lpfc_mem_free_all(phba);
3285
3286 return;
3287}
3288
3289/**
3290 * lpfc_sli4_driver_resource_setup - Setup drvr internal resources for SLI4 dev
3291 * @phba: pointer to lpfc hba data structure.
3292 *
3293 * This routine is invoked to set up the driver internal resources specific to
3294 * support the SLI-4 HBA device it attached to.
3295 *
3296 * Return codes
3297 * 0 - sucessful
3298 * other values - error
3299 **/
3300static int
3301lpfc_sli4_driver_resource_setup(struct lpfc_hba *phba)
3302{
3303 struct lpfc_sli *psli;
3304 int rc;
3305 int i, hbq_count;
3306
3307 /* Before proceed, wait for POST done and device ready */
3308 rc = lpfc_sli4_post_status_check(phba);
3309 if (rc)
3310 return -ENODEV;
3311
3312 /*
3313 * Initialize timers used by driver
3314 */
3315
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;
3320
3321 psli = &phba->sli;
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;
3334 /*
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.
3340 */
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;
3346
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;
3352
3353 /*
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
3361 * 1k 50 52
3362 * 2k 114 116
3363 * 4k 242 244
3364 * 8k 498 500
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
3369 */
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;
3376 else
3377 phba->cfg_sg_seg_cnt = 498;
3378
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));
3383
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;
3391
3392 /*
3393 * Initialize the SLI Layer to run with lpfc SLI4 HBAs.
3394 */
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);
3400
3401 /*
3402 * Initialize dirver internal slow-path work queues
3403 */
3404
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);
3417
3418 /* Initialize the driver internal SLI layer lists. */
3419 lpfc_sli_setup(phba);
3420 lpfc_sli_queue_setup(phba);
3421
3422 /* Allocate device driver memory */
3423 rc = lpfc_mem_alloc(phba, SGL_ALIGN_SZ);
3424 if (rc)
3425 return -ENOMEM;
3426
3427 /* Create the bootstrap mailbox command */
3428 rc = lpfc_create_bootstrap_mbox(phba);
3429 if (unlikely(rc))
3430 goto out_free_mem;
3431
3432 /* Set up the host's endian order with the device. */
3433 rc = lpfc_setup_endian_order(phba);
3434 if (unlikely(rc))
3435 goto out_free_bsmbx;
3436
3437 /* Set up the hba's configuration parameters. */
3438 rc = lpfc_sli4_read_config(phba);
3439 if (unlikely(rc))
3440 goto out_free_bsmbx;
3441
3442 /* Perform a function reset */
3443 rc = lpfc_pci_function_reset(phba);
3444 if (unlikely(rc))
3445 goto out_free_bsmbx;
3446
3447 /* Create all the SLI4 queues */
3448 rc = lpfc_sli4_queue_create(phba);
3449 if (rc)
3450 goto out_free_bsmbx;
3451
3452 /* Create driver internal CQE event pool */
3453 rc = lpfc_sli4_cq_event_pool_create(phba);
3454 if (rc)
3455 goto out_destroy_queue;
3456
3457 /* Initialize and populate the iocb list per host */
3458 rc = lpfc_init_sgl_list(phba);
3459 if (rc) {
3460 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3461 "1400 Failed to initialize sgl list.\n");
3462 goto out_destroy_cq_event_pool;
3463 }
3464 rc = lpfc_init_active_sgl_array(phba);
3465 if (rc) {
3466 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3467 "1430 Failed to initialize sgl list.\n");
3468 goto out_free_sgl_list;
3469 }
3470
3471 rc = lpfc_sli4_init_rpi_hdrs(phba);
3472 if (rc) {
3473 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3474 "1432 Failed to initialize rpi headers.\n");
3475 goto out_free_active_sgl;
3476 }
3477
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;
3485 }
3486
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;
3494 }
3495
3496 return rc;
3497
3498out_free_fcp_eq_hdl:
3499 kfree(phba->sli4_hba.fcp_eq_hdl);
3500out_remove_rpi_hdrs:
3501 lpfc_sli4_remove_rpi_hdrs(phba);
3502out_free_active_sgl:
3503 lpfc_free_active_sgl(phba);
3504out_free_sgl_list:
3505 lpfc_free_sgl_list(phba);
3506out_destroy_cq_event_pool:
3507 lpfc_sli4_cq_event_pool_destroy(phba);
3508out_destroy_queue:
3509 lpfc_sli4_queue_destroy(phba);
3510out_free_bsmbx:
3511 lpfc_destroy_bootstrap_mbox(phba);
3512out_free_mem:
3513 lpfc_mem_free(phba);
3514 return rc;
3515}
3516
3517/**
3518 * lpfc_sli4_driver_resource_unset - Unset drvr internal resources for SLI4 dev
3519 * @phba: pointer to lpfc hba data structure.
3520 *
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.
3523 **/
3524static void
3525lpfc_sli4_driver_resource_unset(struct lpfc_hba *phba)
3526{
3527 struct lpfc_fcf_conn_entry *conn_entry, *next_conn_entry;
3528
3529 /* unregister default FCFI from the HBA */
3530 lpfc_sli4_fcfi_unreg(phba, phba->fcf.fcfi);
3531
3532 /* Free the default FCR table */
3533 lpfc_sli_remove_dflt_fcf(phba);
3534
3535 /* Free memory allocated for msi-x interrupt vector entries */
3536 kfree(phba->sli4_hba.msix_entries);
3537
3538 /* Free memory allocated for fast-path work queue handles */
3539 kfree(phba->sli4_hba.fcp_eq_hdl);
3540
3541 /* Free the allocated rpi headers. */
3542 lpfc_sli4_remove_rpi_hdrs(phba);
3543 lpfc_sli4_remove_rpis(phba);
3544
3545 /* Free the ELS sgl list */
3546 lpfc_free_active_sgl(phba);
3547 lpfc_free_sgl_list(phba);
3548
3549 /* Free the SCSI sgl management array */
3550 kfree(phba->sli4_hba.lpfc_scsi_psb_array);
3551
3552 /* Free the SLI4 queues */
3553 lpfc_sli4_queue_destroy(phba);
3554
3555 /* Free the completion queue EQ event pool */
3556 lpfc_sli4_cq_event_release_all(phba);
3557 lpfc_sli4_cq_event_pool_destroy(phba);
3558
3559 /* Reset SLI4 HBA FCoE function */
3560 lpfc_pci_function_reset(phba);
3561
3562 /* Free the bsmbx region. */
3563 lpfc_destroy_bootstrap_mbox(phba);
3564
3565 /* Free the SLI Layer memory with SLI4 HBAs */
3566 lpfc_mem_free_all(phba);
3567
3568 /* Free the current connect table */
3569 list_for_each_entry_safe(conn_entry, next_conn_entry,
3570 &phba->fcf_conn_rec_list, list)
3571 kfree(conn_entry);
3572
3573 return;
3574}
3575
3576/**
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.
3580 *
3581 * This routine sets up the device INIT interface API function jump table
3582 * in @phba struct.
3583 *
3584 * Returns: 0 - success, -ENODEV - failure.
3585 **/
3586int
3587lpfc_init_api_table_setup(struct lpfc_hba *phba, uint8_t dev_grp)
3588{
3589 switch (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;
3594 break;
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;
3599 break;
3600 default:
3601 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3602 "1431 Invalid HBA PCI-device group: 0x%x\n",
3603 dev_grp);
3604 return -ENODEV;
3605 break;
3606 }
3607 return 0;
3608}
3609
3610/**
3611 * lpfc_setup_driver_resource_phase1 - Phase1 etup driver internal resources.
3612 * @phba: pointer to lpfc hba data structure.
3613 *
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.
3616 *
3617 * Return codes
3618 * 0 - sucessful
3619 * other values - error
3620 **/
3621static int
3622lpfc_setup_driver_resource_phase1(struct lpfc_hba *phba)
3623{
3624 /*
3625 * Driver resources common to all SLI revisions
3626 */
3627 atomic_set(&phba->fast_event_count, 0);
3628 spin_lock_init(&phba->hbalock);
3629
3630 /* Initialize ndlp management spinlock */
3631 spin_lock_init(&phba->ndlp_lock);
3632
3633 INIT_LIST_HEAD(&phba->port_list);
3634 INIT_LIST_HEAD(&phba->work_list);
3635 init_waitqueue_head(&phba->wait_4_mlo_m_q);
3636
3637 /* Initialize the wait queue head for the kernel thread */
3638 init_waitqueue_head(&phba->work_waitq);
3639
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);
3643
3644 /* Initialize the fabric iocb list */
3645 INIT_LIST_HEAD(&phba->fabric_iocb_list);
3646
3647 /* Initialize list to save ELS buffers */
3648 INIT_LIST_HEAD(&phba->elsbuf);
3649
3650 /* Initialize FCF connection rec list */
3651 INIT_LIST_HEAD(&phba->fcf_conn_rec_list);
3652
3653 return 0;
3654}
3655
3656/**
3657 * lpfc_setup_driver_resource_phase2 - Phase2 setup driver internal resources.
3658 * @phba: pointer to lpfc hba data structure.
3659 *
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.
3662 *
3663 * Return codes
3664 * 0 - sucessful
3665 * other values - error
3666 **/
3667static int
3668lpfc_setup_driver_resource_phase2(struct lpfc_hba *phba)
3669{
3670 int error;
3671
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);
3677 return error;
3678 }
3679
3680 return 0;
3681}
3682
3683/**
3684 * lpfc_unset_driver_resource_phase2 - Phase2 unset driver internal resources.
3685 * @phba: pointer to lpfc hba data structure.
3686 *
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
3689 * attached to.
3690 **/
3691static void
3692lpfc_unset_driver_resource_phase2(struct lpfc_hba *phba)
3693{
3694 /* Stop kernel worker thread */
3695 kthread_stop(phba->worker_thread);
3696}
3697
3698/**
3699 * lpfc_free_iocb_list - Free iocb list.
3700 * @phba: pointer to lpfc hba data structure.
3701 *
3702 * This routine is invoked to free the driver's IOCB list and memory.
3703 **/
3704static void
3705lpfc_free_iocb_list(struct lpfc_hba *phba)
3706{
3707 struct lpfc_iocbq *iocbq_entry = NULL, *iocbq_next = NULL;
3708
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);
3713 kfree(iocbq_entry);
3714 phba->total_iocbq_bufs--;
3715 }
3716 spin_unlock_irq(&phba->hbalock);
3717
3718 return;
3719}
3720
3721/**
3722 * lpfc_init_iocb_list - Allocate and initialize iocb list.
3723 * @phba: pointer to lpfc hba data structure.
3724 *
3725 * This routine is invoked to allocate and initizlize the driver's IOCB
3726 * list and set up the IOCB tag array accordingly.
3727 *
3728 * Return codes
3729 * 0 - sucessful
3730 * other values - error
3731 **/
3732static int
3733lpfc_init_iocb_list(struct lpfc_hba *phba, int iocb_count)
3734{
3735 struct lpfc_iocbq *iocbq_entry = NULL;
3736 uint16_t iotag;
3737 int i;
3738
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;
3748 }
3749
3750 iotag = lpfc_sli_next_iotag(phba, iocbq_entry);
3751 if (iotag == 0) {
3752 kfree(iocbq_entry);
3753 printk(KERN_ERR "%s: failed to allocate IOTAG. "
3754 "Unloading driver.\n", __func__);
3755 goto out_free_iocbq;
3756 }
3757 iocbq_entry->sli4_xritag = NO_XRI;
3758
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);
3763 }
3764
3765 return 0;
3766
3767out_free_iocbq:
3768 lpfc_free_iocb_list(phba);
3769
3770 return -ENOMEM;
3771}
3772
3773/**
3774 * lpfc_free_sgl_list - Free sgl list.
3775 * @phba: pointer to lpfc hba data structure.
3776 *
3777 * This routine is invoked to free the driver's sgl list and memory.
3778 **/
3779static void
3780lpfc_free_sgl_list(struct lpfc_hba *phba)
3781{
3782 struct lpfc_sglq *sglq_entry = NULL, *sglq_next = NULL;
3783 LIST_HEAD(sglq_list);
3784 int rc = 0;
3785
3786 spin_lock_irq(&phba->hbalock);
3787 list_splice_init(&phba->sli4_hba.lpfc_sgl_list, &sglq_list);
3788 spin_unlock_irq(&phba->hbalock);
3789
3790 list_for_each_entry_safe(sglq_entry, sglq_next,
3791 &sglq_list, list) {
3792 list_del(&sglq_entry->list);
3793 lpfc_mbuf_free(phba, sglq_entry->virt, sglq_entry->phys);
3794 kfree(sglq_entry);
3795 phba->sli4_hba.total_sglq_bufs--;
3796 }
3797 rc = lpfc_sli4_remove_all_sgl_pages(phba);
3798 if (rc) {
3799 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
3800 "2005 Unable to deregister pages from HBA: %x", rc);
3801 }
3802 kfree(phba->sli4_hba.lpfc_els_sgl_array);
3803}
3804
3805/**
3806 * lpfc_init_active_sgl_array - Allocate the buf to track active ELS XRIs.
3807 * @phba: pointer to lpfc hba data structure.
3808 *
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.
3811 **/
3812static int
3813lpfc_init_active_sgl_array(struct lpfc_hba *phba)
3814{
3815 int size;
3816 size = sizeof(struct lpfc_sglq *);
3817 size *= phba->sli4_hba.max_cfg_param.max_xri;
3818
3819 phba->sli4_hba.lpfc_sglq_active_list =
3820 kzalloc(size, GFP_KERNEL);
3821 if (!phba->sli4_hba.lpfc_sglq_active_list)
3822 return -ENOMEM;
3823 return 0;
3824}
3825
3826/**
3827 * lpfc_free_active_sgl - Free the buf that tracks active ELS XRIs.
3828 * @phba: pointer to lpfc hba data structure.
3829 *
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.
3833 **/
3834static void
3835lpfc_free_active_sgl(struct lpfc_hba *phba)
3836{
3837 kfree(phba->sli4_hba.lpfc_sglq_active_list);
3838}
3839
3840/**
3841 * lpfc_init_sgl_list - Allocate and initialize sgl list.
3842 * @phba: pointer to lpfc hba data structure.
3843 *
3844 * This routine is invoked to allocate and initizlize the driver's sgl
3845 * list and set up the sgl xritag tag array accordingly.
3846 *
3847 * Return codes
3848 * 0 - sucessful
3849 * other values - error
3850 **/
3851static int
3852lpfc_init_sgl_list(struct lpfc_hba *phba)
3853{
3854 struct lpfc_sglq *sglq_entry = NULL;
3855 int i;
3856 int els_xri_cnt;
3857
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",
3861 els_xri_cnt);
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);
3865
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,
3872 els_xri_cnt);
3873 return -ENOMEM;
3874 }
3875
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),
3879 GFP_KERNEL);
3880
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",
3885 els_xri_cnt);
3886 return -ENOMEM;
3887 }
3888
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;
3893
3894 phba->sli4_hba.lpfc_scsi_psb_array =
3895 kzalloc((sizeof(struct lpfc_scsi_buf *) *
3896 phba->sli4_hba.scsi_xri_max), GFP_KERNEL);
3897
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);
3904 return -ENOMEM;
3905 }
3906
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);
3913 goto out_free_mem;
3914 }
3915
3916 sglq_entry->sli4_xritag = lpfc_sli4_next_xritag(phba);
3917 if (sglq_entry->sli4_xritag == NO_XRI) {
3918 kfree(sglq_entry);
3919 printk(KERN_ERR "%s: failed to allocate XRI.\n"
3920 "Unloading driver.\n", __func__);
3921 goto out_free_mem;
3922 }
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) {
3926 kfree(sglq_entry);
3927 printk(KERN_ERR "%s: failed to allocate mbuf.\n"
3928 "Unloading driver.\n", __func__);
3929 goto out_free_mem;
3930 }
3931 sglq_entry->sgl = sglq_entry->virt;
3932 memset(sglq_entry->sgl, 0, LPFC_BPL_SIZE);
3933
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);
3940 }
3941 return 0;
3942
3943out_free_mem:
3944 kfree(phba->sli4_hba.lpfc_scsi_psb_array);
3945 lpfc_free_sgl_list(phba);
3946 return -ENOMEM;
3947}
3948
3949/**
3950 * lpfc_sli4_init_rpi_hdrs - Post the rpi header memory region to the port
2318 * @phba: pointer to lpfc hba data structure. 3951 * @phba: pointer to lpfc hba data structure.
2319 * 3952 *
2320 * This routine is invoked to enable the MSI-X interrupt vectors. The kernel 3953 * This routine is invoked to post rpi header templates to the
2321 * function pci_enable_msix() is called to enable the MSI-X vectors. Note that 3954 * HBA consistent with the SLI-4 interface spec. This routine
2322 * pci_enable_msix(), once invoked, enables either all or nothing, depending 3955 * posts a PAGE_SIZE memory region to the port to hold up to
2323 * on the current availability of PCI vector resources. The device driver is 3956 * PAGE_SIZE modulo 64 rpi context headers.
2324 * responsible for calling the individual request_irq() to register each MSI-X 3957 * No locks are held here because this is an initialization routine
2325 * vector with a interrupt handler, which is done in this function. Note that 3958 * called only from probe or lpfc_online when interrupts are not
3959 * enabled and the driver is reinitializing the device.
3960 *
3961 * Return codes
3962 * 0 - sucessful
3963 * ENOMEM - No availble memory
3964 * EIO - The mailbox failed to complete successfully.
3965 **/
3966int
3967lpfc_sli4_init_rpi_hdrs(struct lpfc_hba *phba)
3968{
3969 int rc = 0;
3970 int longs;
3971 uint16_t rpi_count;
3972 struct lpfc_rpi_hdr *rpi_hdr;
3973
3974 INIT_LIST_HEAD(&phba->sli4_hba.lpfc_rpi_hdr_list);
3975
3976 /*
3977 * Provision an rpi bitmask range for discovery. The total count
3978 * is the difference between max and base + 1.
3979 */
3980 rpi_count = phba->sli4_hba.max_cfg_param.rpi_base +
3981 phba->sli4_hba.max_cfg_param.max_rpi - 1;
3982
3983 longs = ((rpi_count) + BITS_PER_LONG - 1) / BITS_PER_LONG;
3984 phba->sli4_hba.rpi_bmask = kzalloc(longs * sizeof(unsigned long),
3985 GFP_KERNEL);
3986 if (!phba->sli4_hba.rpi_bmask)
3987 return -ENOMEM;
3988
3989 rpi_hdr = lpfc_sli4_create_rpi_hdr(phba);
3990 if (!rpi_hdr) {
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);
3994 rc = -ENODEV;
3995 }
3996
3997 return rc;
3998}
3999
4000/**
4001 * lpfc_sli4_create_rpi_hdr - Allocate an rpi header memory region
4002 * @phba: pointer to lpfc hba data structure.
4003 *
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
4007 * by the device.
4008 *
4009 * Returns:
4010 * A valid rpi hdr on success.
4011 * A NULL pointer on any failure.
4012 **/
4013struct lpfc_rpi_hdr *
4014lpfc_sli4_create_rpi_hdr(struct lpfc_hba *phba)
4015{
4016 uint16_t rpi_limit, curr_rpi_range;
4017 struct lpfc_dmabuf *dmabuf;
4018 struct lpfc_rpi_hdr *rpi_hdr;
4019
4020 rpi_limit = phba->sli4_hba.max_cfg_param.rpi_base +
4021 phba->sli4_hba.max_cfg_param.max_rpi - 1;
4022
4023 spin_lock_irq(&phba->hbalock);
4024 curr_rpi_range = phba->sli4_hba.next_rpi;
4025 spin_unlock_irq(&phba->hbalock);
4026
4027 /*
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.
4031 */
4032 if ((curr_rpi_range + (LPFC_RPI_HDR_COUNT - 1)) > rpi_limit)
4033 return NULL;
4034
4035 /*
4036 * First allocate the protocol header region for the port. The
4037 * port expects a 4KB DMA-mapped memory region that is 4K aligned.
4038 */
4039 dmabuf = kzalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
4040 if (!dmabuf)
4041 return NULL;
4042
4043 dmabuf->virt = dma_alloc_coherent(&phba->pcidev->dev,
4044 LPFC_HDR_TEMPLATE_SIZE,
4045 &dmabuf->phys,
4046 GFP_KERNEL);
4047 if (!dmabuf->virt) {
4048 rpi_hdr = NULL;
4049 goto err_free_dmabuf;
4050 }
4051
4052 memset(dmabuf->virt, 0, LPFC_HDR_TEMPLATE_SIZE);
4053 if (!IS_ALIGNED(dmabuf->phys, LPFC_HDR_TEMPLATE_SIZE)) {
4054 rpi_hdr = NULL;
4055 goto err_free_coherent;
4056 }
4057
4058 /* Save the rpi header data for cleanup later. */
4059 rpi_hdr = kzalloc(sizeof(struct lpfc_rpi_hdr), GFP_KERNEL);
4060 if (!rpi_hdr)
4061 goto err_free_coherent;
4062
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);
4069
4070 /*
4071 * The next_rpi stores the next module-64 rpi value to post
4072 * in any subsequent rpi memory region postings.
4073 */
4074 phba->sli4_hba.next_rpi += LPFC_RPI_HDR_COUNT;
4075 spin_unlock_irq(&phba->hbalock);
4076 return rpi_hdr;
4077
4078 err_free_coherent:
4079 dma_free_coherent(&phba->pcidev->dev, LPFC_HDR_TEMPLATE_SIZE,
4080 dmabuf->virt, dmabuf->phys);
4081 err_free_dmabuf:
4082 kfree(dmabuf);
4083 return NULL;
4084}
4085
4086/**
4087 * lpfc_sli4_remove_rpi_hdrs - Remove all rpi header memory regions
4088 * @phba: pointer to lpfc hba data structure.
4089 *
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.
4094 **/
4095void
4096lpfc_sli4_remove_rpi_hdrs(struct lpfc_hba *phba)
4097{
4098 struct lpfc_rpi_hdr *rpi_hdr, *next_rpi_hdr;
4099
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);
4106 kfree(rpi_hdr);
4107 }
4108
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));
4111}
4112
4113/**
4114 * lpfc_hba_alloc - Allocate driver hba data structure for a device.
4115 * @pdev: pointer to pci device data structure.
4116 *
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.
4120 *
4121 * Return codes
4122 * pointer to @phba - sucessful
4123 * NULL - error
4124 **/
4125static struct lpfc_hba *
4126lpfc_hba_alloc(struct pci_dev *pdev)
4127{
4128 struct lpfc_hba *phba;
4129
4130 /* Allocate memory for HBA structure */
4131 phba = kzalloc(sizeof(struct lpfc_hba), GFP_KERNEL);
4132 if (!phba) {
4133 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
4134 "1417 Failed to allocate hba struct.\n");
4135 return NULL;
4136 }
4137
4138 /* Set reference to PCI device in HBA structure */
4139 phba->pcidev = pdev;
4140
4141 /* Assign an unused board number */
4142 phba->brd_no = lpfc_get_instance();
4143 if (phba->brd_no < 0) {
4144 kfree(phba);
4145 return NULL;
4146 }
4147
4148 return phba;
4149}
4150
4151/**
4152 * lpfc_hba_free - Free driver hba data structure with a device.
4153 * @phba: pointer to lpfc hba data structure.
4154 *
4155 * This routine is invoked to free the driver hba data structure with an
4156 * HBA device.
4157 **/
4158static void
4159lpfc_hba_free(struct lpfc_hba *phba)
4160{
4161 /* Release the driver assigned board number */
4162 idr_remove(&lpfc_hba_index, phba->brd_no);
4163
4164 kfree(phba);
4165 return;
4166}
4167
4168/**
4169 * lpfc_create_shost - Create hba physical port with associated scsi host.
4170 * @phba: pointer to lpfc hba data structure.
4171 *
4172 * This routine is invoked to create HBA physical port and associate a SCSI
4173 * host with it.
4174 *
4175 * Return codes
4176 * 0 - sucessful
4177 * other values - error
4178 **/
4179static int
4180lpfc_create_shost(struct lpfc_hba *phba)
4181{
4182 struct lpfc_vport *vport;
4183 struct Scsi_Host *shost;
4184
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;
4190
4191 vport = lpfc_create_port(phba, phba->brd_no, &phba->pcidev->dev);
4192 if (!vport)
4193 return -ENODEV;
4194
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);
4200
4201 return 0;
4202}
4203
4204/**
4205 * lpfc_destroy_shost - Destroy hba physical port with associated scsi host.
4206 * @phba: pointer to lpfc hba data structure.
4207 *
4208 * This routine is invoked to destroy HBA physical port and the associated
4209 * SCSI host.
4210 **/
4211static void
4212lpfc_destroy_shost(struct lpfc_hba *phba)
4213{
4214 struct lpfc_vport *vport = phba->pport;
4215
4216 /* Destroy physical port that associated with the SCSI host */
4217 destroy_port(vport);
4218
4219 return;
4220}
4221
4222/**
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.
4226 *
4227 * This routine sets up the local Block guard protocol settings for @shost.
4228 * This routine also allocates memory for debugging bg buffers.
4229 **/
4230static void
4231lpfc_setup_bg(struct lpfc_hba *phba, struct Scsi_Host *shost)
4232{
4233 int pagecnt = 10;
4234 if (lpfc_prot_mask && lpfc_prot_guard) {
4235 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
4236 "1478 Registering BlockGuard with the "
4237 "SCSI layer\n");
4238 scsi_host_set_prot(shost, lpfc_prot_mask);
4239 scsi_host_set_guard(shost, lpfc_prot_guard);
4240 }
4241 if (!_dump_buf_data) {
4242 while (pagecnt) {
4243 spin_lock_init(&_dump_buf_lock);
4244 _dump_buf_data =
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));
4253 break;
4254 } else
4255 --pagecnt;
4256 }
4257 if (!_dump_buf_data_order)
4258 printk(KERN_ERR "BLKGRD ERROR unable to allocate "
4259 "memory for hexdump\n");
4260 } else
4261 printk(KERN_ERR "BLKGRD already allocated _dump_buf_data=0x%p"
4262 "\n", _dump_buf_data);
4263 if (!_dump_buf_dif) {
4264 while (pagecnt) {
4265 _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));
4274 break;
4275 } else
4276 --pagecnt;
4277 }
4278 if (!_dump_buf_dif_order)
4279 printk(KERN_ERR "BLKGRD ERROR unable to allocate "
4280 "memory for hexdump\n");
4281 } else
4282 printk(KERN_ERR "BLKGRD already allocated _dump_buf_dif=0x%p\n",
4283 _dump_buf_dif);
4284}
4285
4286/**
4287 * lpfc_post_init_setup - Perform necessary device post initialization setup.
4288 * @phba: pointer to lpfc hba data structure.
4289 *
4290 * This routine is invoked to perform all the necessary post initialization
4291 * setup for the device.
4292 **/
4293static void
4294lpfc_post_init_setup(struct lpfc_hba *phba)
4295{
4296 struct Scsi_Host *shost;
4297 struct lpfc_adapter_event_header adapter_event;
4298
4299 /* Get the default values for Model Name and Description */
4300 lpfc_get_hba_model_desc(phba, phba->ModelName, phba->ModelDesc);
4301
4302 /*
4303 * hba setup may have changed the hba_queue_depth so we need to
4304 * adjust the value of can_queue.
4305 */
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);
4310
4311 lpfc_host_attrib_init(shost);
4312
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);
4317 }
4318
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,
4327 LPFC_NL_VENDOR_ID);
4328 return;
4329}
4330
4331/**
4332 * lpfc_sli_pci_mem_setup - Setup SLI3 HBA PCI memory space.
4333 * @phba: pointer to lpfc hba data structure.
4334 *
4335 * This routine is invoked to set up the PCI device memory space for device
4336 * with SLI-3 interface spec.
4337 *
4338 * Return codes
4339 * 0 - sucessful
4340 * other values - error
4341 **/
4342static int
4343lpfc_sli_pci_mem_setup(struct lpfc_hba *phba)
4344{
4345 struct pci_dev *pdev;
4346 unsigned long bar0map_len, bar2map_len;
4347 int i, hbq_count;
4348 void *ptr;
4349 int error = -ENODEV;
4350
4351 /* Obtain PCI device reference */
4352 if (!phba->pcidev)
4353 return error;
4354 else
4355 pdev = phba->pcidev;
4356
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)
4360 return error;
4361
4362 /* Get the bus address of Bar0 and Bar2 and the number of bytes
4363 * required by each mapping.
4364 */
4365 phba->pci_bar0_map = pci_resource_start(pdev, 0);
4366 bar0map_len = pci_resource_len(pdev, 0);
4367
4368 phba->pci_bar2_map = pci_resource_start(pdev, 2);
4369 bar2map_len = pci_resource_len(pdev, 2);
4370
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");
4376 goto out;
4377 }
4378
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;
4385 }
4386
4387 /* Allocate memory for SLI-2 structures */
4388 phba->slim2p.virt = dma_alloc_coherent(&pdev->dev,
4389 SLI2_SLIM_SIZE,
4390 &phba->slim2p.phys,
4391 GFP_KERNEL);
4392 if (!phba->slim2p.virt)
4393 goto out_iounmap;
4394
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));
4400
4401 phba->hbqslimp.virt = dma_alloc_coherent(&pdev->dev,
4402 lpfc_sli_hbq_size(),
4403 &phba->hbqslimp.phys,
4404 GFP_KERNEL);
4405 if (!phba->hbqslimp.virt)
4406 goto out_free_slim;
4407
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));
4415 }
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;
4418
4419 memset(phba->hbqslimp.virt, 0, lpfc_sli_hbq_size());
4420
4421 INIT_LIST_HEAD(&phba->rb_pend_list);
4422
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;
4428
4429 return 0;
4430
4431out_free_slim:
4432 dma_free_coherent(&pdev->dev, SLI2_SLIM_SIZE,
4433 phba->slim2p.virt, phba->slim2p.phys);
4434out_iounmap:
4435 iounmap(phba->ctrl_regs_memmap_p);
4436out_iounmap_slim:
4437 iounmap(phba->slim_memmap_p);
4438out:
4439 return error;
4440}
4441
4442/**
4443 * lpfc_sli_pci_mem_unset - Unset SLI3 HBA PCI memory space.
4444 * @phba: pointer to lpfc hba data structure.
4445 *
4446 * This routine is invoked to unset the PCI device memory space for device
4447 * with SLI-3 interface spec.
4448 **/
4449static void
4450lpfc_sli_pci_mem_unset(struct lpfc_hba *phba)
4451{
4452 struct pci_dev *pdev;
4453
4454 /* Obtain PCI device reference */
4455 if (!phba->pcidev)
4456 return;
4457 else
4458 pdev = phba->pcidev;
4459
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);
4465
4466 /* I/O memory unmap */
4467 iounmap(phba->ctrl_regs_memmap_p);
4468 iounmap(phba->slim_memmap_p);
4469
4470 return;
4471}
4472
4473/**
4474 * lpfc_sli4_post_status_check - Wait for SLI4 POST done and check status
4475 * @phba: pointer to lpfc hba data structure.
4476 *
4477 * This routine is invoked to wait for SLI4 device Power On Self Test (POST)
4478 * done and check status.
4479 *
4480 * Return 0 if successful, otherwise -ENODEV.
4481 **/
4482int
4483lpfc_sli4_post_status_check(struct lpfc_hba *phba)
4484{
4485 struct lpfc_register sta_reg, uerrlo_reg, uerrhi_reg, scratchpad;
4486 uint32_t onlnreg0, onlnreg1;
4487 int i, port_error = -ENODEV;
4488
4489 if (!phba->sli4_hba.STAregaddr)
4490 return -ENODEV;
4491
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);
4505 }
4506 return -ENODEV;
4507 }
4508
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;
4515 break;
4516 }
4517 if (LPFC_POST_STAGE_ARMFW_READY ==
4518 bf_get(lpfc_hst_state_port_status, &sta_reg)) {
4519 port_error = 0;
4520 break;
4521 }
4522 msleep(10);
4523 }
4524
4525 if (port_error)
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));
4537
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));
4547
4548 return port_error;
4549}
4550
4551/**
4552 * lpfc_sli4_bar0_register_memmap - Set up SLI4 BAR0 register memory map.
4553 * @phba: pointer to lpfc hba data structure.
4554 *
4555 * This routine is invoked to set up SLI4 BAR0 PCI config space register
4556 * memory map.
4557 **/
4558static void
4559lpfc_sli4_bar0_register_memmap(struct lpfc_hba *phba)
4560{
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 +
4566 LPFC_ONLINE0;
4567 phba->sli4_hba.ONLINE1regaddr = phba->sli4_hba.conf_regs_memmap_p +
4568 LPFC_ONLINE1;
4569 phba->sli4_hba.SCRATCHPADregaddr = phba->sli4_hba.conf_regs_memmap_p +
4570 LPFC_SCRATCHPAD;
4571}
4572
4573/**
4574 * lpfc_sli4_bar1_register_memmap - Set up SLI4 BAR1 register memory map.
4575 * @phba: pointer to lpfc hba data structure.
4576 *
4577 * This routine is invoked to set up SLI4 BAR1 control status register (CSR)
4578 * memory map.
4579 **/
4580static void
4581lpfc_sli4_bar1_register_memmap(struct lpfc_hba *phba)
4582{
4583
4584 phba->sli4_hba.STAregaddr = phba->sli4_hba.ctrl_regs_memmap_p +
4585 LPFC_HST_STATE;
4586 phba->sli4_hba.ISRregaddr = phba->sli4_hba.ctrl_regs_memmap_p +
4587 LPFC_HST_ISR0;
4588 phba->sli4_hba.IMRregaddr = phba->sli4_hba.ctrl_regs_memmap_p +
4589 LPFC_HST_IMR0;
4590 phba->sli4_hba.ISCRregaddr = phba->sli4_hba.ctrl_regs_memmap_p +
4591 LPFC_HST_ISCR0;
4592 return;
4593}
4594
4595/**
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
4599 *
4600 * This routine is invoked to set up SLI4 BAR2 doorbell register memory map
4601 * based on the given viftual function number, @vf.
4602 *
4603 * Return 0 if successful, otherwise -ENODEV.
4604 **/
4605static int
4606lpfc_sli4_bar2_register_memmap(struct lpfc_hba *phba, uint32_t vf)
4607{
4608 if (vf > LPFC_VIR_FUNC_MAX)
4609 return -ENODEV;
4610
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);
4621 return 0;
4622}
4623
4624/**
4625 * lpfc_create_bootstrap_mbox - Create the bootstrap mailbox
4626 * @phba: pointer to lpfc hba data structure.
4627 *
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
4633 * this routine.
4634 *
4635 * Return codes
4636 * 0 - sucessful
4637 * ENOMEM - could not allocated memory.
4638 **/
4639static int
4640lpfc_create_bootstrap_mbox(struct lpfc_hba *phba)
4641{
4642 uint32_t bmbx_size;
4643 struct lpfc_dmabuf *dmabuf;
4644 struct dma_address *dma_address;
4645 uint32_t pa_addr;
4646 uint64_t phys_addr;
4647
4648 dmabuf = kzalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
4649 if (!dmabuf)
4650 return -ENOMEM;
4651
4652 /*
4653 * The bootstrap mailbox region is comprised of 2 parts
4654 * plus an alignment restriction of 16 bytes.
4655 */
4656 bmbx_size = sizeof(struct lpfc_bmbx_create) + (LPFC_ALIGN_16_BYTE - 1);
4657 dmabuf->virt = dma_alloc_coherent(&phba->pcidev->dev,
4658 bmbx_size,
4659 &dmabuf->phys,
4660 GFP_KERNEL);
4661 if (!dmabuf->virt) {
4662 kfree(dmabuf);
4663 return -ENOMEM;
4664 }
4665 memset(dmabuf->virt, 0, bmbx_size);
4666
4667 /*
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.
4673 */
4674 phba->sli4_hba.bmbx.dmabuf = dmabuf;
4675 phba->sli4_hba.bmbx.bmbx_size = bmbx_size;
4676
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);
4681
4682 /*
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.
4689 */
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);
4695
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);
4699 return 0;
4700}
4701
4702/**
4703 * lpfc_destroy_bootstrap_mbox - Destroy all bootstrap mailbox resources
4704 * @phba: pointer to lpfc hba data structure.
4705 *
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.
4711 *
4712 **/
4713static void
4714lpfc_destroy_bootstrap_mbox(struct lpfc_hba *phba)
4715{
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);
4720
4721 kfree(phba->sli4_hba.bmbx.dmabuf);
4722 memset(&phba->sli4_hba.bmbx, 0, sizeof(struct lpfc_bmbx));
4723}
4724
4725/**
4726 * lpfc_sli4_read_config - Get the config parameters.
4727 * @phba: pointer to lpfc hba data structure.
4728 *
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.
4733 *
4734 * Return codes
4735 * 0 - sucessful
4736 * ENOMEM - No availble memory
4737 * EIO - The mailbox failed to complete successfully.
4738 **/
4739static int
4740lpfc_sli4_read_config(struct lpfc_hba *phba)
4741{
4742 LPFC_MBOXQ_t *pmb;
4743 struct lpfc_mbx_read_config *rd_config;
4744 uint32_t rc = 0;
4745
4746 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4747 if (!pmb) {
4748 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
4749 "2011 Unable to allocate memory for issuing "
4750 "SLI_CONFIG_SPECIAL mailbox command\n");
4751 return -ENOMEM;
4752 }
4753
4754 lpfc_read_config(phba, pmb);
4755
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));
4763 rc = -EIO;
4764 } else {
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), "
4803 "VPI(B:%d M:%d) "
4804 "VFI(B:%d M:%d) "
4805 "RPI(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);
4817 }
4818 mempool_free(pmb, phba->mbox_mem_pool);
4819
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;
4824 return rc;
4825}
4826
4827/**
4828 * lpfc_dev_endian_order_setup - Notify the port of the host's endian order.
4829 * @phba: pointer to lpfc hba data structure.
4830 *
4831 * This routine is invoked to setup the host-side endian order to the
4832 * HBA consistent with the SLI-4 interface spec.
4833 *
4834 * Return codes
4835 * 0 - sucessful
4836 * ENOMEM - No availble memory
4837 * EIO - The mailbox failed to complete successfully.
4838 **/
4839static int
4840lpfc_setup_endian_order(struct lpfc_hba *phba)
4841{
4842 LPFC_MBOXQ_t *mboxq;
4843 uint32_t rc = 0;
4844 uint32_t endian_mb_data[2] = {HOST_ENDIAN_LOW_WORD0,
4845 HOST_ENDIAN_HIGH_WORD1};
4846
4847 mboxq = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4848 if (!mboxq) {
4849 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
4850 "0492 Unable to allocate memory for issuing "
4851 "SLI_CONFIG_SPECIAL mailbox command\n");
4852 return -ENOMEM;
4853 }
4854
4855 /*
4856 * The SLI4_CONFIG_SPECIAL mailbox command requires the first two
4857 * words to contain special data values and no other data.
4858 */
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 "
4865 "status x%x\n",
4866 rc);
4867 rc = -EIO;
4868 }
4869
4870 mempool_free(mboxq, phba->mbox_mem_pool);
4871 return rc;
4872}
4873
4874/**
4875 * lpfc_sli4_queue_create - Create all the SLI4 queues
4876 * @phba: pointer to lpfc hba data structure.
4877 *
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.
4882 *
4883 * Return codes
4884 * 0 - sucessful
4885 * ENOMEM - No availble memory
4886 * EIO - The mailbox failed to complete successfully.
4887 **/
4888static int
4889lpfc_sli4_queue_create(struct lpfc_hba *phba)
4890{
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;
4895
4896 /*
4897 * Sanity check for confiugred queue parameters against the run-time
4898 * device parameters
4899 */
4900
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 -
4906 LPFC_SP_WQN_DEF;
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 "
4911 "FCP WQs (%d)\n",
4912 phba->sli4_hba.max_cfg_param.max_wq,
4913 phba->cfg_fcp_wq_count);
4914 goto out_error;
4915 }
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);
4923 }
4924 /* The actual number of FCP work queues adopted */
4925 phba->cfg_fcp_wq_count = cfg_fcp_wq_count;
4926
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 -
4932 LPFC_SP_EQN_DEF;
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 "
4937 "EQs (%d)\n",
4938 phba->sli4_hba.max_cfg_param.max_eq,
4939 phba->cfg_fcp_eq_count);
4940 goto out_error;
4941 }
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);
4949 }
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;
4960 }
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;
4965
4966 /*
4967 * Create Event Queues (EQs)
4968 */
4969
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;
4973
4974 /* Create slow path event queue */
4975 qdesc = lpfc_sli4_queue_alloc(phba, phba->sli4_hba.eq_esize,
4976 phba->sli4_hba.eq_ecount);
4977 if (!qdesc) {
4978 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
4979 "0496 Failed allocate slow-path EQ\n");
4980 goto out_error;
4981 }
4982 phba->sli4_hba.sp_eq = qdesc;
4983
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;
4992 }
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);
4996 if (!qdesc) {
4997 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
4998 "0497 Failed allocate fast-path EQ\n");
4999 goto out_free_fp_eq;
5000 }
5001 phba->sli4_hba.fp_eq[fcp_eqidx] = qdesc;
5002 }
5003
5004 /*
5005 * Create Complete Queues (CQs)
5006 */
5007
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;
5011
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);
5015 if (!qdesc) {
5016 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5017 "0500 Failed allocate slow-path mailbox CQ\n");
5018 goto out_free_fp_eq;
5019 }
5020 phba->sli4_hba.mbx_cq = qdesc;
5021
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);
5025 if (!qdesc) {
5026 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5027 "0501 Failed allocate slow-path ELS CQ\n");
5028 goto out_free_mbx_cq;
5029 }
5030 phba->sli4_hba.els_cq = qdesc;
5031
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);
5035 if (!qdesc) {
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;
5039 }
5040 phba->sli4_hba.rxq_cq = qdesc;
5041
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;
5050 }
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);
5054 if (!qdesc) {
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;
5059 }
5060 phba->sli4_hba.fcp_cq[fcp_cqidx] = qdesc;
5061 }
5062
5063 /* Create Mailbox Command Queue */
5064 phba->sli4_hba.mq_esize = LPFC_MQE_SIZE;
5065 phba->sli4_hba.mq_ecount = LPFC_MQE_DEF_COUNT;
5066
5067 qdesc = lpfc_sli4_queue_alloc(phba, phba->sli4_hba.mq_esize,
5068 phba->sli4_hba.mq_ecount);
5069 if (!qdesc) {
5070 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5071 "0505 Failed allocate slow-path MQ\n");
5072 goto out_free_fcp_cq;
5073 }
5074 phba->sli4_hba.mbx_wq = qdesc;
5075
5076 /*
5077 * Create all the Work Queues (WQs)
5078 */
5079 phba->sli4_hba.wq_esize = LPFC_WQE_SIZE;
5080 phba->sli4_hba.wq_ecount = LPFC_WQE_DEF_COUNT;
5081
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);
5085 if (!qdesc) {
5086 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5087 "0504 Failed allocate slow-path ELS WQ\n");
5088 goto out_free_mbx_wq;
5089 }
5090 phba->sli4_hba.els_wq = qdesc;
5091
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;
5100 }
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);
5104 if (!qdesc) {
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;
5109 }
5110 phba->sli4_hba.fcp_wq[fcp_wqidx] = qdesc;
5111 }
5112
5113 /*
5114 * Create Receive Queue (RQ)
5115 */
5116 phba->sli4_hba.rq_esize = LPFC_RQE_SIZE;
5117 phba->sli4_hba.rq_ecount = LPFC_RQE_DEF_COUNT;
5118
5119 /* Create Receive Queue for header */
5120 qdesc = lpfc_sli4_queue_alloc(phba, phba->sli4_hba.rq_esize,
5121 phba->sli4_hba.rq_ecount);
5122 if (!qdesc) {
5123 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5124 "0506 Failed allocate receive HRQ\n");
5125 goto out_free_fcp_wq;
5126 }
5127 phba->sli4_hba.hdr_rq = qdesc;
5128
5129 /* Create Receive Queue for data */
5130 qdesc = lpfc_sli4_queue_alloc(phba, phba->sli4_hba.rq_esize,
5131 phba->sli4_hba.rq_ecount);
5132 if (!qdesc) {
5133 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5134 "0507 Failed allocate receive DRQ\n");
5135 goto out_free_hdr_rq;
5136 }
5137 phba->sli4_hba.dat_rq = qdesc;
5138
5139 return 0;
5140
5141out_free_hdr_rq:
5142 lpfc_sli4_queue_free(phba->sli4_hba.hdr_rq);
5143 phba->sli4_hba.hdr_rq = NULL;
5144out_free_fcp_wq:
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;
5148 }
5149 kfree(phba->sli4_hba.fcp_wq);
5150out_free_els_wq:
5151 lpfc_sli4_queue_free(phba->sli4_hba.els_wq);
5152 phba->sli4_hba.els_wq = NULL;
5153out_free_mbx_wq:
5154 lpfc_sli4_queue_free(phba->sli4_hba.mbx_wq);
5155 phba->sli4_hba.mbx_wq = NULL;
5156out_free_fcp_cq:
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;
5160 }
5161 kfree(phba->sli4_hba.fcp_cq);
5162out_free_rxq_cq:
5163 lpfc_sli4_queue_free(phba->sli4_hba.rxq_cq);
5164 phba->sli4_hba.rxq_cq = NULL;
5165out_free_els_cq:
5166 lpfc_sli4_queue_free(phba->sli4_hba.els_cq);
5167 phba->sli4_hba.els_cq = NULL;
5168out_free_mbx_cq:
5169 lpfc_sli4_queue_free(phba->sli4_hba.mbx_cq);
5170 phba->sli4_hba.mbx_cq = NULL;
5171out_free_fp_eq:
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;
5175 }
5176 kfree(phba->sli4_hba.fp_eq);
5177out_free_sp_eq:
5178 lpfc_sli4_queue_free(phba->sli4_hba.sp_eq);
5179 phba->sli4_hba.sp_eq = NULL;
5180out_error:
5181 return -ENOMEM;
5182}
5183
5184/**
5185 * lpfc_sli4_queue_destroy - Destroy all the SLI4 queues
5186 * @phba: pointer to lpfc hba data structure.
5187 *
5188 * This routine is invoked to release all the SLI4 queues with the FCoE HBA
5189 * operation.
5190 *
5191 * Return codes
5192 * 0 - sucessful
5193 * ENOMEM - No availble memory
5194 * EIO - The mailbox failed to complete successfully.
5195 **/
5196static void
5197lpfc_sli4_queue_destroy(struct lpfc_hba *phba)
5198{
5199 int fcp_qidx;
5200
5201 /* Release mailbox command work queue */
5202 lpfc_sli4_queue_free(phba->sli4_hba.mbx_wq);
5203 phba->sli4_hba.mbx_wq = NULL;
5204
5205 /* Release ELS work queue */
5206 lpfc_sli4_queue_free(phba->sli4_hba.els_wq);
5207 phba->sli4_hba.els_wq = NULL;
5208
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;
5214
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;
5220
5221 /* Release unsolicited receive complete queue */
5222 lpfc_sli4_queue_free(phba->sli4_hba.rxq_cq);
5223 phba->sli4_hba.rxq_cq = NULL;
5224
5225 /* Release ELS complete queue */
5226 lpfc_sli4_queue_free(phba->sli4_hba.els_cq);
5227 phba->sli4_hba.els_cq = NULL;
5228
5229 /* Release mailbox command complete queue */
5230 lpfc_sli4_queue_free(phba->sli4_hba.mbx_cq);
5231 phba->sli4_hba.mbx_cq = NULL;
5232
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;
5238
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;
5244
5245 /* Release slow-path event queue */
5246 lpfc_sli4_queue_free(phba->sli4_hba.sp_eq);
5247 phba->sli4_hba.sp_eq = NULL;
5248
5249 return;
5250}
5251
5252/**
5253 * lpfc_sli4_queue_setup - Set up all the SLI4 queues
5254 * @phba: pointer to lpfc hba data structure.
5255 *
5256 * This routine is invoked to set up all the SLI4 queues for the FCoE HBA
5257 * operation.
5258 *
5259 * Return codes
5260 * 0 - sucessful
5261 * ENOMEM - No availble memory
5262 * EIO - The mailbox failed to complete successfully.
5263 **/
5264int
5265lpfc_sli4_queue_setup(struct lpfc_hba *phba)
5266{
5267 int rc = -ENOMEM;
5268 int fcp_eqidx, fcp_cqidx, fcp_wqidx;
5269 int fcp_cq_index = 0;
5270
5271 /*
5272 * Set up Event Queues (EQs)
5273 */
5274
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");
5279 goto out_error;
5280 }
5281 rc = lpfc_eq_create(phba, phba->sli4_hba.sp_eq,
5282 LPFC_SP_DEF_IMAX);
5283 if (rc) {
5284 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5285 "0521 Failed setup of slow-path EQ: "
5286 "rc = 0x%x\n", rc);
5287 goto out_error;
5288 }
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);
5292
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;
5300 }
5301 rc = lpfc_eq_create(phba, phba->sli4_hba.fp_eq[fcp_eqidx],
5302 phba->cfg_fcp_imax);
5303 if (rc) {
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;
5308 }
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);
5313 }
5314
5315 /*
5316 * Set up Complete Queues (CQs)
5317 */
5318
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;
5324 }
5325 rc = lpfc_cq_create(phba, phba->sli4_hba.mbx_cq, phba->sli4_hba.sp_eq,
5326 LPFC_MCQ, LPFC_MBOX);
5327 if (rc) {
5328 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5329 "0529 Failed setup of slow-path mailbox CQ: "
5330 "rc = 0x%x\n", rc);
5331 goto out_destroy_fp_eq;
5332 }
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);
5337
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;
5343 }
5344 rc = lpfc_cq_create(phba, phba->sli4_hba.els_cq, phba->sli4_hba.sp_eq,
5345 LPFC_WCQ, LPFC_ELS);
5346 if (rc) {
5347 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5348 "0531 Failed setup of slow-path ELS CQ: "
5349 "rc = 0x%x\n", rc);
5350 goto out_destroy_mbx_cq;
5351 }
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);
5356
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;
5362 }
5363 rc = lpfc_cq_create(phba, phba->sli4_hba.rxq_cq, phba->sli4_hba.sp_eq,
5364 LPFC_RCQ, LPFC_USOL);
5365 if (rc) {
5366 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5367 "0533 Failed setup of slow-path USOL RX CQ: "
5368 "rc = 0x%x\n", rc);
5369 goto out_destroy_els_cq;
5370 }
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);
5375
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;
5383 }
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);
5387 if (rc) {
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;
5392 }
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",
5396 fcp_cqidx,
5397 phba->sli4_hba.fcp_cq[fcp_cqidx]->queue_id,
5398 fcp_cqidx,
5399 phba->sli4_hba.fp_eq[fcp_cqidx]->queue_id);
5400 }
5401
5402 /*
5403 * Set up all the Work Queues (WQs)
5404 */
5405
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;
5411 }
5412 rc = lpfc_mq_create(phba, phba->sli4_hba.mbx_wq,
5413 phba->sli4_hba.mbx_cq, LPFC_MBOX);
5414 if (rc) {
5415 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5416 "0539 Failed setup of slow-path MQ: "
5417 "rc = 0x%x\n", rc);
5418 goto out_destroy_fcp_cq;
5419 }
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);
5424
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;
5430 }
5431 rc = lpfc_wq_create(phba, phba->sli4_hba.els_wq,
5432 phba->sli4_hba.els_cq, LPFC_ELS);
5433 if (rc) {
5434 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5435 "0537 Failed setup of slow-path ELS WQ: "
5436 "rc = 0x%x\n", rc);
5437 goto out_destroy_mbx_wq;
5438 }
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);
5443
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;
5451 }
5452 rc = lpfc_wq_create(phba, phba->sli4_hba.fcp_wq[fcp_wqidx],
5453 phba->sli4_hba.fcp_cq[fcp_cq_index],
5454 LPFC_FCP);
5455 if (rc) {
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;
5460 }
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",
5464 fcp_wqidx,
5465 phba->sli4_hba.fcp_wq[fcp_wqidx]->queue_id,
5466 fcp_cq_index,
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);
5470 }
5471
5472 /*
5473 * Create Receive Queue (RQ)
5474 */
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;
5479 }
5480 rc = lpfc_rq_create(phba, phba->sli4_hba.hdr_rq, phba->sli4_hba.dat_rq,
5481 phba->sli4_hba.rxq_cq, LPFC_USOL);
5482 if (rc) {
5483 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5484 "0541 Failed setup of Receive Queue: "
5485 "rc = 0x%x\n", rc);
5486 goto out_destroy_fcp_wq;
5487 }
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);
5494 return 0;
5495
5496out_destroy_fcp_wq:
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);
5500out_destroy_mbx_wq:
5501 lpfc_mq_destroy(phba, phba->sli4_hba.mbx_wq);
5502out_destroy_fcp_cq:
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);
5506out_destroy_els_cq:
5507 lpfc_cq_destroy(phba, phba->sli4_hba.els_cq);
5508out_destroy_mbx_cq:
5509 lpfc_cq_destroy(phba, phba->sli4_hba.mbx_cq);
5510out_destroy_fp_eq:
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);
5514out_error:
5515 return rc;
5516}
5517
5518/**
5519 * lpfc_sli4_queue_unset - Unset all the SLI4 queues
5520 * @phba: pointer to lpfc hba data structure.
5521 *
5522 * This routine is invoked to unset all the SLI4 queues with the FCoE HBA
5523 * operation.
5524 *
5525 * Return codes
5526 * 0 - sucessful
5527 * ENOMEM - No availble memory
5528 * EIO - The mailbox failed to complete successfully.
5529 **/
5530void
5531lpfc_sli4_queue_unset(struct lpfc_hba *phba)
5532{
5533 int fcp_qidx;
5534
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);
5558}
5559
5560/**
5561 * lpfc_sli4_cq_event_pool_create - Create completion-queue event free pool
5562 * @phba: pointer to lpfc hba data structure.
5563 *
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.
5571 *
5572 * Return codes
5573 * 0 - sucessful
5574 * -ENOMEM - No availble memory
5575 **/
5576static int
5577lpfc_sli4_cq_event_pool_create(struct lpfc_hba *phba)
5578{
5579 struct lpfc_cq_event *cq_event;
5580 int i;
5581
5582 for (i = 0; i < (4 * phba->sli4_hba.cq_ecount); i++) {
5583 cq_event = kmalloc(sizeof(struct lpfc_cq_event), GFP_KERNEL);
5584 if (!cq_event)
5585 goto out_pool_create_fail;
5586 list_add_tail(&cq_event->list,
5587 &phba->sli4_hba.sp_cqe_event_pool);
5588 }
5589 return 0;
5590
5591out_pool_create_fail:
5592 lpfc_sli4_cq_event_pool_destroy(phba);
5593 return -ENOMEM;
5594}
5595
5596/**
5597 * lpfc_sli4_cq_event_pool_destroy - Free completion-queue event free pool
5598 * @phba: pointer to lpfc hba data structure.
5599 *
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.
5605 **/
5606static void
5607lpfc_sli4_cq_event_pool_destroy(struct lpfc_hba *phba)
5608{
5609 struct lpfc_cq_event *cq_event, *next_cq_event;
5610
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);
5614 kfree(cq_event);
5615 }
5616}
5617
5618/**
5619 * __lpfc_sli4_cq_event_alloc - Allocate a completion-queue event from free pool
5620 * @phba: pointer to lpfc hba data structure.
5621 *
5622 * This routine is the lock free version of the API invoked to allocate a
5623 * completion-queue event from the free pool.
5624 *
5625 * Return: Pointer to the newly allocated completion-queue event if successful
5626 * NULL otherwise.
5627 **/
5628struct lpfc_cq_event *
5629__lpfc_sli4_cq_event_alloc(struct lpfc_hba *phba)
5630{
5631 struct lpfc_cq_event *cq_event = NULL;
5632
5633 list_remove_head(&phba->sli4_hba.sp_cqe_event_pool, cq_event,
5634 struct lpfc_cq_event, list);
5635 return cq_event;
5636}
5637
5638/**
5639 * lpfc_sli4_cq_event_alloc - Allocate a completion-queue event from free pool
5640 * @phba: pointer to lpfc hba data structure.
5641 *
5642 * This routine is the lock version of the API invoked to allocate a
5643 * completion-queue event from the free pool.
5644 *
5645 * Return: Pointer to the newly allocated completion-queue event if successful
5646 * NULL otherwise.
5647 **/
5648struct lpfc_cq_event *
5649lpfc_sli4_cq_event_alloc(struct lpfc_hba *phba)
5650{
5651 struct lpfc_cq_event *cq_event;
5652 unsigned long iflags;
5653
5654 spin_lock_irqsave(&phba->hbalock, iflags);
5655 cq_event = __lpfc_sli4_cq_event_alloc(phba);
5656 spin_unlock_irqrestore(&phba->hbalock, iflags);
5657 return cq_event;
5658}
5659
5660/**
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.
5664 *
5665 * This routine is the lock free version of the API invoked to release a
5666 * completion-queue event back into the free pool.
5667 **/
5668void
5669__lpfc_sli4_cq_event_release(struct lpfc_hba *phba,
5670 struct lpfc_cq_event *cq_event)
5671{
5672 list_add_tail(&cq_event->list, &phba->sli4_hba.sp_cqe_event_pool);
5673}
5674
5675/**
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.
5679 *
5680 * This routine is the lock version of the API invoked to release a
5681 * completion-queue event back into the free pool.
5682 **/
5683void
5684lpfc_sli4_cq_event_release(struct lpfc_hba *phba,
5685 struct lpfc_cq_event *cq_event)
5686{
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);
5691}
5692
5693/**
5694 * lpfc_sli4_cq_event_release_all - Release all cq events to the free pool
5695 * @phba: pointer to lpfc hba data structure.
5696 *
5697 * This routine is to free all the pending completion-queue events to the
5698 * back into the free pool for device reset.
5699 **/
5700static void
5701lpfc_sli4_cq_event_release_all(struct lpfc_hba *phba)
5702{
5703 LIST_HEAD(cqelist);
5704 struct lpfc_cq_event *cqe;
5705 unsigned long iflags;
5706
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,
5711 &cqelist);
5712 /* Pending ELS XRI abort events */
5713 list_splice_init(&phba->sli4_hba.sp_els_xri_aborted_work_queue,
5714 &cqelist);
5715 /* Pending asynnc events */
5716 list_splice_init(&phba->sli4_hba.sp_asynce_work_queue,
5717 &cqelist);
5718 spin_unlock_irqrestore(&phba->hbalock, iflags);
5719
5720 while (!list_empty(&cqelist)) {
5721 list_remove_head(&cqelist, cqe, struct lpfc_cq_event, list);
5722 lpfc_sli4_cq_event_release(phba, cqe);
5723 }
5724}
5725
5726/**
5727 * lpfc_pci_function_reset - Reset pci function.
5728 * @phba: pointer to lpfc hba data structure.
5729 *
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.
5732 *
5733 * Return codes
5734 * 0 - sucessful
5735 * ENOMEM - No availble memory
5736 * EIO - The mailbox failed to complete successfully.
5737 **/
5738int
5739lpfc_pci_function_reset(struct lpfc_hba *phba)
5740{
5741 LPFC_MBOXQ_t *mboxq;
5742 uint32_t rc = 0;
5743 uint32_t shdr_status, shdr_add_status;
5744 union lpfc_sli4_cfg_shdr *shdr;
5745
5746 mboxq = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5747 if (!mboxq) {
5748 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5749 "0494 Unable to allocate memory for issuing "
5750 "SLI_FUNCTION_RESET mailbox command\n");
5751 return -ENOMEM;
5752 }
5753
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);
5770 rc = -ENXIO;
5771 }
5772 return rc;
5773}
5774
5775/**
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.
5779 *
5780 * This routine is invoked to send a number @cnt of NOP mailbox command and
5781 * wait for each command to complete.
5782 *
5783 * Return: the number of NOP mailbox command completed.
5784 **/
5785static int
5786lpfc_sli4_send_nop_mbox_cmds(struct lpfc_hba *phba, uint32_t cnt)
5787{
5788 LPFC_MBOXQ_t *mboxq;
5789 int length, cmdsent;
5790 uint32_t mbox_tmo;
5791 uint32_t rc = 0;
5792 uint32_t shdr_status, shdr_add_status;
5793 union lpfc_sli4_cfg_shdr *shdr;
5794
5795 if (cnt == 0) {
5796 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
5797 "2518 Requested to send 0 NOP mailbox cmd\n");
5798 return cnt;
5799 }
5800
5801 mboxq = (LPFC_MBOXQ_t *)mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5802 if (!mboxq) {
5803 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5804 "2519 Unable to allocate memory for issuing "
5805 "NOP mailbox command\n");
5806 return 0;
5807 }
5808
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);
5814
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);
5819 else
5820 rc = lpfc_sli_issue_mbox_wait(phba, mboxq, mbox_tmo);
5821 if (rc == MBX_TIMEOUT)
5822 break;
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,
5828 &shdr->response);
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);
5835 break;
5836 }
5837 }
5838
5839 if (rc != MBX_TIMEOUT)
5840 mempool_free(mboxq, phba->mbox_mem_pool);
5841
5842 return cmdsent;
5843}
5844
5845/**
5846 * lpfc_sli4_fcfi_unreg - Unregister fcfi to device
5847 * @phba: pointer to lpfc hba data structure.
5848 * @fcfi: fcf index.
5849 *
5850 * This routine is invoked to unregister a FCFI from device.
5851 **/
5852void
5853lpfc_sli4_fcfi_unreg(struct lpfc_hba *phba, uint16_t fcfi)
5854{
5855 LPFC_MBOXQ_t *mbox;
5856 uint32_t mbox_tmo;
5857 int rc;
5858 unsigned long flags;
5859
5860 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5861
5862 if (!mbox)
5863 return;
5864
5865 lpfc_unreg_fcfi(mbox, fcfi);
5866
5867 if (!phba->sli4_hba.intr_enable)
5868 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
5869 else {
5870 mbox_tmo = lpfc_mbox_tmo_val(phba, MBX_SLI4_CONFIG);
5871 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
5872 }
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));
5880 else {
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);
5886 }
5887}
5888
5889/**
5890 * lpfc_sli4_pci_mem_setup - Setup SLI4 HBA PCI memory space.
5891 * @phba: pointer to lpfc hba data structure.
5892 *
5893 * This routine is invoked to set up the PCI device memory space for device
5894 * with SLI-4 interface spec.
5895 *
5896 * Return codes
5897 * 0 - sucessful
5898 * other values - error
5899 **/
5900static int
5901lpfc_sli4_pci_mem_setup(struct lpfc_hba *phba)
5902{
5903 struct pci_dev *pdev;
5904 unsigned long bar0map_len, bar1map_len, bar2map_len;
5905 int error = -ENODEV;
5906
5907 /* Obtain PCI device reference */
5908 if (!phba->pcidev)
5909 return error;
5910 else
5911 pdev = phba->pcidev;
5912
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)
5916 return error;
5917
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.
5921 */
5922 phba->pci_bar0_map = pci_resource_start(pdev, LPFC_SLI4_BAR0);
5923 bar0map_len = pci_resource_len(pdev, LPFC_SLI4_BAR0);
5924
5925 phba->pci_bar1_map = pci_resource_start(pdev, LPFC_SLI4_BAR1);
5926 bar1map_len = pci_resource_len(pdev, LPFC_SLI4_BAR1);
5927
5928 phba->pci_bar2_map = pci_resource_start(pdev, LPFC_SLI4_BAR2);
5929 bar2map_len = pci_resource_len(pdev, LPFC_SLI4_BAR2);
5930
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");
5937 goto out;
5938 }
5939
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;
5947 }
5948
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;
5956 }
5957
5958 /* Set up BAR0 PCI config space register memory map */
5959 lpfc_sli4_bar0_register_memmap(phba);
5960
5961 /* Set up BAR1 register memory map */
5962 lpfc_sli4_bar1_register_memmap(phba);
5963
5964 /* Set up BAR2 register memory map */
5965 error = lpfc_sli4_bar2_register_memmap(phba, LPFC_VF0);
5966 if (error)
5967 goto out_iounmap_all;
5968
5969 return 0;
5970
5971out_iounmap_all:
5972 iounmap(phba->sli4_hba.drbl_regs_memmap_p);
5973out_iounmap_ctrl:
5974 iounmap(phba->sli4_hba.ctrl_regs_memmap_p);
5975out_iounmap_conf:
5976 iounmap(phba->sli4_hba.conf_regs_memmap_p);
5977out:
5978 return error;
5979}
5980
5981/**
5982 * lpfc_sli4_pci_mem_unset - Unset SLI4 HBA PCI memory space.
5983 * @phba: pointer to lpfc hba data structure.
5984 *
5985 * This routine is invoked to unset the PCI device memory space for device
5986 * with SLI-4 interface spec.
5987 **/
5988static void
5989lpfc_sli4_pci_mem_unset(struct lpfc_hba *phba)
5990{
5991 struct pci_dev *pdev;
5992
5993 /* Obtain PCI device reference */
5994 if (!phba->pcidev)
5995 return;
5996 else
5997 pdev = phba->pcidev;
5998
5999 /* Free coherent DMA memory allocated */
6000
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);
6005
6006 return;
6007}
6008
6009/**
6010 * lpfc_sli_enable_msix - Enable MSI-X interrupt mode on SLI-3 device
6011 * @phba: pointer to lpfc hba data structure.
6012 *
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
2326 * later when device is unloading, the driver should always call free_irq() 6020 * later when device is unloading, the driver should always call free_irq()
2327 * on all MSI-X vectors it has done request_irq() on before calling 6021 * on all MSI-X vectors it has done request_irq() on before calling
2328 * pci_disable_msix(). Failure to do so results in a BUG_ON() and a device 6022 * pci_disable_msix(). Failure to do so results in a BUG_ON() and a device
@@ -2333,7 +6027,7 @@ void lpfc_host_attrib_init(struct Scsi_Host *shost)
2333 * other values - error 6027 * other values - error
2334 **/ 6028 **/
2335static int 6029static int
2336lpfc_enable_msix(struct lpfc_hba *phba) 6030lpfc_sli_enable_msix(struct lpfc_hba *phba)
2337{ 6031{
2338 int rc, i; 6032 int rc, i;
2339 LPFC_MBOXQ_t *pmb; 6033 LPFC_MBOXQ_t *pmb;
@@ -2349,20 +6043,21 @@ lpfc_enable_msix(struct lpfc_hba *phba)
2349 lpfc_printf_log(phba, KERN_INFO, LOG_INIT, 6043 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
2350 "0420 PCI enable MSI-X failed (%d)\n", rc); 6044 "0420 PCI enable MSI-X failed (%d)\n", rc);
2351 goto msi_fail_out; 6045 goto msi_fail_out;
2352 } else 6046 }
2353 for (i = 0; i < LPFC_MSIX_VECTORS; i++) 6047 for (i = 0; i < LPFC_MSIX_VECTORS; i++)
2354 lpfc_printf_log(phba, KERN_INFO, LOG_INIT, 6048 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
2355 "0477 MSI-X entry[%d]: vector=x%x " 6049 "0477 MSI-X entry[%d]: vector=x%x "
2356 "message=%d\n", i, 6050 "message=%d\n", i,
2357 phba->msix_entries[i].vector, 6051 phba->msix_entries[i].vector,
2358 phba->msix_entries[i].entry); 6052 phba->msix_entries[i].entry);
2359 /* 6053 /*
2360 * Assign MSI-X vectors to interrupt handlers 6054 * Assign MSI-X vectors to interrupt handlers
2361 */ 6055 */
2362 6056
2363 /* vector-0 is associated to slow-path handler */ 6057 /* vector-0 is associated to slow-path handler */
2364 rc = request_irq(phba->msix_entries[0].vector, &lpfc_sp_intr_handler, 6058 rc = request_irq(phba->msix_entries[0].vector,
2365 IRQF_SHARED, LPFC_SP_DRIVER_HANDLER_NAME, phba); 6059 &lpfc_sli_sp_intr_handler, IRQF_SHARED,
6060 LPFC_SP_DRIVER_HANDLER_NAME, phba);
2366 if (rc) { 6061 if (rc) {
2367 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT, 6062 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
2368 "0421 MSI-X slow-path request_irq failed " 6063 "0421 MSI-X slow-path request_irq failed "
@@ -2371,8 +6066,9 @@ lpfc_enable_msix(struct lpfc_hba *phba)
2371 } 6066 }
2372 6067
2373 /* vector-1 is associated to fast-path handler */ 6068 /* vector-1 is associated to fast-path handler */
2374 rc = request_irq(phba->msix_entries[1].vector, &lpfc_fp_intr_handler, 6069 rc = request_irq(phba->msix_entries[1].vector,
2375 IRQF_SHARED, LPFC_FP_DRIVER_HANDLER_NAME, phba); 6070 &lpfc_sli_fp_intr_handler, IRQF_SHARED,
6071 LPFC_FP_DRIVER_HANDLER_NAME, phba);
2376 6072
2377 if (rc) { 6073 if (rc) {
2378 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT, 6074 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
@@ -2401,7 +6097,7 @@ lpfc_enable_msix(struct lpfc_hba *phba)
2401 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX, 6097 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX,
2402 "0351 Config MSI mailbox command failed, " 6098 "0351 Config MSI mailbox command failed, "
2403 "mbxCmd x%x, mbxStatus x%x\n", 6099 "mbxCmd x%x, mbxStatus x%x\n",
2404 pmb->mb.mbxCommand, pmb->mb.mbxStatus); 6100 pmb->u.mb.mbxCommand, pmb->u.mb.mbxStatus);
2405 goto mbx_fail_out; 6101 goto mbx_fail_out;
2406 } 6102 }
2407 6103
@@ -2428,14 +6124,14 @@ msi_fail_out:
2428} 6124}
2429 6125
2430/** 6126/**
2431 * lpfc_disable_msix - Disable MSI-X interrupt mode 6127 * lpfc_sli_disable_msix - Disable MSI-X interrupt mode on SLI-3 device.
2432 * @phba: pointer to lpfc hba data structure. 6128 * @phba: pointer to lpfc hba data structure.
2433 * 6129 *
2434 * This routine is invoked to release the MSI-X vectors and then disable the 6130 * This routine is invoked to release the MSI-X vectors and then disable the
2435 * MSI-X interrupt mode. 6131 * MSI-X interrupt mode to device with SLI-3 interface spec.
2436 **/ 6132 **/
2437static void 6133static void
2438lpfc_disable_msix(struct lpfc_hba *phba) 6134lpfc_sli_disable_msix(struct lpfc_hba *phba)
2439{ 6135{
2440 int i; 6136 int i;
2441 6137
@@ -2444,23 +6140,26 @@ lpfc_disable_msix(struct lpfc_hba *phba)
2444 free_irq(phba->msix_entries[i].vector, phba); 6140 free_irq(phba->msix_entries[i].vector, phba);
2445 /* Disable MSI-X */ 6141 /* Disable MSI-X */
2446 pci_disable_msix(phba->pcidev); 6142 pci_disable_msix(phba->pcidev);
6143
6144 return;
2447} 6145}
2448 6146
2449/** 6147/**
2450 * lpfc_enable_msi - Enable MSI interrupt mode 6148 * lpfc_sli_enable_msi - Enable MSI interrupt mode on SLI-3 device.
2451 * @phba: pointer to lpfc hba data structure. 6149 * @phba: pointer to lpfc hba data structure.
2452 * 6150 *
2453 * This routine is invoked to enable the MSI interrupt mode. The kernel 6151 * This routine is invoked to enable the MSI interrupt mode to device with
2454 * function pci_enable_msi() is called to enable the MSI vector. The 6152 * SLI-3 interface spec. The kernel function pci_enable_msi() is called to
2455 * device driver is responsible for calling the request_irq() to register 6153 * enable the MSI vector. The device driver is responsible for calling the
2456 * MSI vector with a interrupt the handler, which is done in this function. 6154 * request_irq() to register MSI vector with a interrupt the handler, which
6155 * is done in this function.
2457 * 6156 *
2458 * Return codes 6157 * Return codes
2459 * 0 - sucessful 6158 * 0 - sucessful
2460 * other values - error 6159 * other values - error
2461 */ 6160 */
2462static int 6161static int
2463lpfc_enable_msi(struct lpfc_hba *phba) 6162lpfc_sli_enable_msi(struct lpfc_hba *phba)
2464{ 6163{
2465 int rc; 6164 int rc;
2466 6165
@@ -2474,7 +6173,7 @@ lpfc_enable_msi(struct lpfc_hba *phba)
2474 return rc; 6173 return rc;
2475 } 6174 }
2476 6175
2477 rc = request_irq(phba->pcidev->irq, lpfc_intr_handler, 6176 rc = request_irq(phba->pcidev->irq, lpfc_sli_intr_handler,
2478 IRQF_SHARED, LPFC_DRIVER_NAME, phba); 6177 IRQF_SHARED, LPFC_DRIVER_NAME, phba);
2479 if (rc) { 6178 if (rc) {
2480 pci_disable_msi(phba->pcidev); 6179 pci_disable_msi(phba->pcidev);
@@ -2485,17 +6184,17 @@ lpfc_enable_msi(struct lpfc_hba *phba)
2485} 6184}
2486 6185
2487/** 6186/**
2488 * lpfc_disable_msi - Disable MSI interrupt mode 6187 * lpfc_sli_disable_msi - Disable MSI interrupt mode to SLI-3 device.
2489 * @phba: pointer to lpfc hba data structure. 6188 * @phba: pointer to lpfc hba data structure.
2490 * 6189 *
2491 * This routine is invoked to disable the MSI interrupt mode. The driver 6190 * This routine is invoked to disable the MSI interrupt mode to device with
2492 * calls free_irq() on MSI vector it has done request_irq() on before 6191 * SLI-3 interface spec. The driver calls free_irq() on MSI vector it has
2493 * calling pci_disable_msi(). Failure to do so results in a BUG_ON() and 6192 * done request_irq() on before calling pci_disable_msi(). Failure to do so
2494 * a device will be left with MSI enabled and leaks its vector. 6193 * results in a BUG_ON() and a device will be left with MSI enabled and leaks
6194 * its vector.
2495 */ 6195 */
2496
2497static void 6196static void
2498lpfc_disable_msi(struct lpfc_hba *phba) 6197lpfc_sli_disable_msi(struct lpfc_hba *phba)
2499{ 6198{
2500 free_irq(phba->pcidev->irq, phba); 6199 free_irq(phba->pcidev->irq, phba);
2501 pci_disable_msi(phba->pcidev); 6200 pci_disable_msi(phba->pcidev);
@@ -2503,80 +6202,298 @@ lpfc_disable_msi(struct lpfc_hba *phba)
2503} 6202}
2504 6203
2505/** 6204/**
2506 * lpfc_log_intr_mode - Log the active interrupt mode 6205 * lpfc_sli_enable_intr - Enable device interrupt to SLI-3 device.
2507 * @phba: pointer to lpfc hba data structure. 6206 * @phba: pointer to lpfc hba data structure.
2508 * @intr_mode: active interrupt mode adopted.
2509 * 6207 *
2510 * This routine it invoked to log the currently used active interrupt mode 6208 * This routine is invoked to enable device interrupt and associate driver's
2511 * to the device. 6209 * interrupt handler(s) to interrupt vector(s) to device with SLI-3 interface
2512 */ 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
6213 * of:
6214 * MSI-X -> MSI -> IRQ.
6215 *
6216 * Return codes
6217 * 0 - sucessful
6218 * other values - error
6219 **/
6220static uint32_t
6221lpfc_sli_enable_intr(struct lpfc_hba *phba, uint32_t cfg_mode)
6222{
6223 uint32_t intr_mode = LPFC_INTR_ERROR;
6224 int retval;
6225
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);
6229 if (!retval) {
6230 /* Now, try to enable MSI-X interrupt mode */
6231 retval = lpfc_sli_enable_msix(phba);
6232 if (!retval) {
6233 /* Indicate initialization to MSI-X mode */
6234 phba->intr_type = MSIX;
6235 intr_mode = 2;
6236 }
6237 }
6238 }
6239
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);
6243 if (!retval) {
6244 /* Indicate initialization to MSI mode */
6245 phba->intr_type = MSI;
6246 intr_mode = 1;
6247 }
6248 }
6249
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);
6254 if (!retval) {
6255 /* Indicate initialization to INTx mode */
6256 phba->intr_type = INTx;
6257 intr_mode = 0;
6258 }
6259 }
6260 return intr_mode;
6261}
6262
6263/**
6264 * lpfc_sli_disable_intr - Disable device interrupt to SLI-3 device.
6265 * @phba: pointer to lpfc hba data structure.
6266 *
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.
6271 **/
2513static void 6272static void
2514lpfc_log_intr_mode(struct lpfc_hba *phba, uint32_t intr_mode) 6273lpfc_sli_disable_intr(struct lpfc_hba *phba)
2515{ 6274{
2516 switch (intr_mode) { 6275 /* Disable the currently initialized interrupt mode */
2517 case 0: 6276 if (phba->intr_type == MSIX)
2518 lpfc_printf_log(phba, KERN_INFO, LOG_INIT, 6277 lpfc_sli_disable_msix(phba);
2519 "0470 Enable INTx interrupt mode.\n"); 6278 else if (phba->intr_type == MSI)
2520 break; 6279 lpfc_sli_disable_msi(phba);
2521 case 1: 6280 else if (phba->intr_type == INTx)
6281 free_irq(phba->pcidev->irq, phba);
6282
6283 /* Reset interrupt management states */
6284 phba->intr_type = NONE;
6285 phba->sli.slistat.sli_intr = 0;
6286
6287 return;
6288}
6289
6290/**
6291 * lpfc_sli4_enable_msix - Enable MSI-X interrupt mode to SLI-4 device
6292 * @phba: pointer to lpfc hba data structure.
6293 *
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.
6305 *
6306 * Return codes
6307 * 0 - sucessful
6308 * other values - error
6309 **/
6310static int
6311lpfc_sli4_enable_msix(struct lpfc_hba *phba)
6312{
6313 int rc, index;
6314
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;
6318
6319 /* Configure MSI-X capability structure */
6320 rc = pci_enable_msix(phba->pcidev, phba->sli4_hba.msix_entries,
6321 phba->sli4_hba.cfg_eqn);
6322 if (rc) {
2522 lpfc_printf_log(phba, KERN_INFO, LOG_INIT, 6323 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
2523 "0481 Enabled MSI interrupt mode.\n"); 6324 "0484 PCI enable MSI-X failed (%d)\n", rc);
2524 break; 6325 goto msi_fail_out;
2525 case 2: 6326 }
6327 /* Log MSI-X vector assignment */
6328 for (index = 0; index < phba->sli4_hba.cfg_eqn; index++)
2526 lpfc_printf_log(phba, KERN_INFO, LOG_INIT, 6329 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
2527 "0480 Enabled MSI-X interrupt mode.\n"); 6330 "0489 MSI-X entry[%d]: vector=x%x "
2528 break; 6331 "message=%d\n", index,
2529 default: 6332 phba->sli4_hba.msix_entries[index].vector,
2530 lpfc_printf_log(phba, KERN_ERR, LOG_INIT, 6333 phba->sli4_hba.msix_entries[index].entry);
2531 "0482 Illegal interrupt mode.\n"); 6334 /*
2532 break; 6335 * Assign MSI-X vectors to interrupt handlers
6336 */
6337
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);
6342 if (rc) {
6343 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
6344 "0485 MSI-X slow-path request_irq failed "
6345 "(%d)\n", rc);
6346 goto msi_fail_out;
2533 } 6347 }
2534 return; 6348
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]);
6357 if (rc) {
6358 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
6359 "0486 MSI-X fast-path (%d) "
6360 "request_irq failed (%d)\n", index, rc);
6361 goto cfg_fail_out;
6362 }
6363 }
6364
6365 return rc;
6366
6367cfg_fail_out:
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]);
6372
6373 /* free the irq already requested */
6374 free_irq(phba->sli4_hba.msix_entries[0].vector, phba);
6375
6376msi_fail_out:
6377 /* Unconfigure MSI-X capability structure */
6378 pci_disable_msix(phba->pcidev);
6379 return rc;
2535} 6380}
2536 6381
6382/**
6383 * lpfc_sli4_disable_msix - Disable MSI-X interrupt mode to SLI-4 device
6384 * @phba: pointer to lpfc hba data structure.
6385 *
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.
6388 **/
2537static void 6389static void
2538lpfc_stop_port(struct lpfc_hba *phba) 6390lpfc_sli4_disable_msix(struct lpfc_hba *phba)
2539{ 6391{
2540 /* Clear all interrupt enable conditions */ 6392 int index;
2541 writel(0, phba->HCregaddr);
2542 readl(phba->HCregaddr); /* flush */
2543 /* Clear all pending interrupts */
2544 writel(0xffffffff, phba->HAregaddr);
2545 readl(phba->HAregaddr); /* flush */
2546 6393
2547 /* Reset some HBA SLI setup states */ 6394 /* Free up MSI-X multi-message vectors */
2548 lpfc_stop_phba_timers(phba); 6395 free_irq(phba->sli4_hba.msix_entries[0].vector, phba);
2549 phba->pport->work_port_events = 0; 6396
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]);
6400 /* Disable MSI-X */
6401 pci_disable_msix(phba->pcidev);
6402
6403 return;
6404}
6405
6406/**
6407 * lpfc_sli4_enable_msi - Enable MSI interrupt mode to SLI-4 device
6408 * @phba: pointer to lpfc hba data structure.
6409 *
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.
6415 *
6416 * Return codes
6417 * 0 - sucessful
6418 * other values - error
6419 **/
6420static int
6421lpfc_sli4_enable_msi(struct lpfc_hba *phba)
6422{
6423 int rc, index;
2550 6424
6425 rc = pci_enable_msi(phba->pcidev);
6426 if (!rc)
6427 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
6428 "0487 PCI enable MSI mode success.\n");
6429 else {
6430 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
6431 "0488 PCI enable MSI mode failed (%d)\n", rc);
6432 return rc;
6433 }
6434
6435 rc = request_irq(phba->pcidev->irq, lpfc_sli4_intr_handler,
6436 IRQF_SHARED, LPFC_DRIVER_NAME, phba);
6437 if (rc) {
6438 pci_disable_msi(phba->pcidev);
6439 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
6440 "0490 MSI request_irq failed (%d)\n", rc);
6441 }
6442
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;
6446 }
6447
6448 return rc;
6449}
6450
6451/**
6452 * lpfc_sli4_disable_msi - Disable MSI interrupt mode to SLI-4 device
6453 * @phba: pointer to lpfc hba data structure.
6454 *
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
6459 * its vector.
6460 **/
6461static void
6462lpfc_sli4_disable_msi(struct lpfc_hba *phba)
6463{
6464 free_irq(phba->pcidev->irq, phba);
6465 pci_disable_msi(phba->pcidev);
2551 return; 6466 return;
2552} 6467}
2553 6468
2554/** 6469/**
2555 * lpfc_enable_intr - Enable device interrupt 6470 * lpfc_sli4_enable_intr - Enable device interrupt to SLI-4 device
2556 * @phba: pointer to lpfc hba data structure. 6471 * @phba: pointer to lpfc hba data structure.
2557 * 6472 *
2558 * This routine is invoked to enable device interrupt and associate driver's 6473 * This routine is invoked to enable device interrupt and associate driver's
2559 * interrupt handler(s) to interrupt vector(s). Depends on the interrupt 6474 * interrupt handler(s) to interrupt vector(s) to device with SLI-4
2560 * mode configured to the driver, the driver will try to fallback from the 6475 * interface spec. Depends on the interrupt mode configured to the driver,
2561 * configured interrupt mode to an interrupt mode which is supported by the 6476 * the driver will try to fallback from the configured interrupt mode to an
2562 * platform, kernel, and device in the order of: MSI-X -> MSI -> IRQ. 6477 * interrupt mode which is supported by the platform, kernel, and device in
6478 * the order of:
6479 * MSI-X -> MSI -> IRQ.
2563 * 6480 *
2564 * Return codes 6481 * Return codes
2565 * 0 - sucessful 6482 * 0 - sucessful
2566 * other values - error 6483 * other values - error
2567 **/ 6484 **/
2568static uint32_t 6485static uint32_t
2569lpfc_enable_intr(struct lpfc_hba *phba, uint32_t cfg_mode) 6486lpfc_sli4_enable_intr(struct lpfc_hba *phba, uint32_t cfg_mode)
2570{ 6487{
2571 uint32_t intr_mode = LPFC_INTR_ERROR; 6488 uint32_t intr_mode = LPFC_INTR_ERROR;
2572 int retval; 6489 int retval, index;
2573 6490
2574 if (cfg_mode == 2) { 6491 if (cfg_mode == 2) {
2575 /* Need to issue conf_port mbox cmd before conf_msi mbox cmd */ 6492 /* Preparation before conf_msi mbox cmd */
2576 retval = lpfc_sli_config_port(phba, 3); 6493 retval = 0;
2577 if (!retval) { 6494 if (!retval) {
2578 /* Now, try to enable MSI-X interrupt mode */ 6495 /* Now, try to enable MSI-X interrupt mode */
2579 retval = lpfc_enable_msix(phba); 6496 retval = lpfc_sli4_enable_msix(phba);
2580 if (!retval) { 6497 if (!retval) {
2581 /* Indicate initialization to MSI-X mode */ 6498 /* Indicate initialization to MSI-X mode */
2582 phba->intr_type = MSIX; 6499 phba->intr_type = MSIX;
@@ -2587,7 +6504,7 @@ lpfc_enable_intr(struct lpfc_hba *phba, uint32_t cfg_mode)
2587 6504
2588 /* Fallback to MSI if MSI-X initialization failed */ 6505 /* Fallback to MSI if MSI-X initialization failed */
2589 if (cfg_mode >= 1 && phba->intr_type == NONE) { 6506 if (cfg_mode >= 1 && phba->intr_type == NONE) {
2590 retval = lpfc_enable_msi(phba); 6507 retval = lpfc_sli4_enable_msi(phba);
2591 if (!retval) { 6508 if (!retval) {
2592 /* Indicate initialization to MSI mode */ 6509 /* Indicate initialization to MSI mode */
2593 phba->intr_type = MSI; 6510 phba->intr_type = MSI;
@@ -2597,34 +6514,39 @@ lpfc_enable_intr(struct lpfc_hba *phba, uint32_t cfg_mode)
2597 6514
2598 /* Fallback to INTx if both MSI-X/MSI initalization failed */ 6515 /* Fallback to INTx if both MSI-X/MSI initalization failed */
2599 if (phba->intr_type == NONE) { 6516 if (phba->intr_type == NONE) {
2600 retval = request_irq(phba->pcidev->irq, lpfc_intr_handler, 6517 retval = request_irq(phba->pcidev->irq, lpfc_sli4_intr_handler,
2601 IRQF_SHARED, LPFC_DRIVER_NAME, phba); 6518 IRQF_SHARED, LPFC_DRIVER_NAME, phba);
2602 if (!retval) { 6519 if (!retval) {
2603 /* Indicate initialization to INTx mode */ 6520 /* Indicate initialization to INTx mode */
2604 phba->intr_type = INTx; 6521 phba->intr_type = INTx;
2605 intr_mode = 0; 6522 intr_mode = 0;
6523 for (index = 0; index < phba->cfg_fcp_eq_count;
6524 index++) {
6525 phba->sli4_hba.fcp_eq_hdl[index].idx = index;
6526 phba->sli4_hba.fcp_eq_hdl[index].phba = phba;
6527 }
2606 } 6528 }
2607 } 6529 }
2608 return intr_mode; 6530 return intr_mode;
2609} 6531}
2610 6532
2611/** 6533/**
2612 * lpfc_disable_intr - Disable device interrupt 6534 * lpfc_sli4_disable_intr - Disable device interrupt to SLI-4 device
2613 * @phba: pointer to lpfc hba data structure. 6535 * @phba: pointer to lpfc hba data structure.
2614 * 6536 *
2615 * This routine is invoked to disable device interrupt and disassociate the 6537 * This routine is invoked to disable device interrupt and disassociate
2616 * driver's interrupt handler(s) from interrupt vector(s). Depending on the 6538 * the driver's interrupt handler(s) from interrupt vector(s) to device
2617 * interrupt mode, the driver will release the interrupt vector(s) for the 6539 * with SLI-4 interface spec. Depending on the interrupt mode, the driver
2618 * message signaled interrupt. 6540 * will release the interrupt vector(s) for the message signaled interrupt.
2619 **/ 6541 **/
2620static void 6542static void
2621lpfc_disable_intr(struct lpfc_hba *phba) 6543lpfc_sli4_disable_intr(struct lpfc_hba *phba)
2622{ 6544{
2623 /* Disable the currently initialized interrupt mode */ 6545 /* Disable the currently initialized interrupt mode */
2624 if (phba->intr_type == MSIX) 6546 if (phba->intr_type == MSIX)
2625 lpfc_disable_msix(phba); 6547 lpfc_sli4_disable_msix(phba);
2626 else if (phba->intr_type == MSI) 6548 else if (phba->intr_type == MSI)
2627 lpfc_disable_msi(phba); 6549 lpfc_sli4_disable_msi(phba);
2628 else if (phba->intr_type == INTx) 6550 else if (phba->intr_type == INTx)
2629 free_irq(phba->pcidev->irq, phba); 6551 free_irq(phba->pcidev->irq, phba);
2630 6552
@@ -2636,263 +6558,233 @@ lpfc_disable_intr(struct lpfc_hba *phba)
2636} 6558}
2637 6559
2638/** 6560/**
2639 * lpfc_pci_probe_one - lpfc PCI probe func to register device to PCI subsystem 6561 * lpfc_unset_hba - Unset SLI3 hba device initialization
2640 * @pdev: pointer to PCI device 6562 * @phba: pointer to lpfc hba data structure.
2641 * @pid: pointer to PCI device identifier
2642 *
2643 * This routine is to be registered to the kernel's PCI subsystem. When an
2644 * Emulex HBA is presented in PCI bus, the kernel PCI subsystem looks at
2645 * PCI device-specific information of the device and driver to see if the
2646 * driver state that it can support this kind of device. If the match is
2647 * successful, the driver core invokes this routine. If this routine
2648 * determines it can claim the HBA, it does all the initialization that it
2649 * needs to do to handle the HBA properly.
2650 * 6563 *
2651 * Return code 6564 * This routine is invoked to unset the HBA device initialization steps to
2652 * 0 - driver can claim the device 6565 * a device with SLI-3 interface spec.
2653 * negative value - driver can not claim the device
2654 **/ 6566 **/
2655static int __devinit 6567static void
2656lpfc_pci_probe_one(struct pci_dev *pdev, const struct pci_device_id *pid) 6568lpfc_unset_hba(struct lpfc_hba *phba)
2657{ 6569{
2658 struct lpfc_vport *vport = NULL; 6570 struct lpfc_vport *vport = phba->pport;
2659 struct lpfc_hba *phba; 6571 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2660 struct lpfc_sli *psli;
2661 struct lpfc_iocbq *iocbq_entry = NULL, *iocbq_next = NULL;
2662 struct Scsi_Host *shost = NULL;
2663 void *ptr;
2664 unsigned long bar0map_len, bar2map_len;
2665 int error = -ENODEV, retval;
2666 int i, hbq_count;
2667 uint16_t iotag;
2668 uint32_t cfg_mode, intr_mode;
2669 int bars = pci_select_bars(pdev, IORESOURCE_MEM);
2670 struct lpfc_adapter_event_header adapter_event;
2671
2672 if (pci_enable_device_mem(pdev))
2673 goto out;
2674 if (pci_request_selected_regions(pdev, bars, LPFC_DRIVER_NAME))
2675 goto out_disable_device;
2676
2677 phba = kzalloc(sizeof (struct lpfc_hba), GFP_KERNEL);
2678 if (!phba)
2679 goto out_release_regions;
2680 6572
2681 atomic_set(&phba->fast_event_count, 0); 6573 spin_lock_irq(shost->host_lock);
2682 spin_lock_init(&phba->hbalock); 6574 vport->load_flag |= FC_UNLOADING;
6575 spin_unlock_irq(shost->host_lock);
2683 6576
2684 /* Initialize ndlp management spinlock */ 6577 lpfc_stop_hba_timers(phba);
2685 spin_lock_init(&phba->ndlp_lock);
2686 6578
2687 phba->pcidev = pdev; 6579 phba->pport->work_port_events = 0;
2688 6580
2689 /* Assign an unused board number */ 6581 lpfc_sli_hba_down(phba);
2690 if ((phba->brd_no = lpfc_get_instance()) < 0)
2691 goto out_free_phba;
2692 6582
2693 INIT_LIST_HEAD(&phba->port_list); 6583 lpfc_sli_brdrestart(phba);
2694 init_waitqueue_head(&phba->wait_4_mlo_m_q);
2695 /*
2696 * Get all the module params for configuring this host and then
2697 * establish the host.
2698 */
2699 lpfc_get_cfgparam(phba);
2700 phba->max_vpi = LPFC_MAX_VPI;
2701 6584
2702 /* Initialize timers used by driver */ 6585 lpfc_sli_disable_intr(phba);
2703 init_timer(&phba->hb_tmofunc);
2704 phba->hb_tmofunc.function = lpfc_hb_timeout;
2705 phba->hb_tmofunc.data = (unsigned long)phba;
2706 6586
2707 psli = &phba->sli; 6587 return;
2708 init_timer(&psli->mbox_tmo); 6588}
2709 psli->mbox_tmo.function = lpfc_mbox_timeout;
2710 psli->mbox_tmo.data = (unsigned long) phba;
2711 init_timer(&phba->fcp_poll_timer);
2712 phba->fcp_poll_timer.function = lpfc_poll_timeout;
2713 phba->fcp_poll_timer.data = (unsigned long) phba;
2714 init_timer(&phba->fabric_block_timer);
2715 phba->fabric_block_timer.function = lpfc_fabric_block_timeout;
2716 phba->fabric_block_timer.data = (unsigned long) phba;
2717 init_timer(&phba->eratt_poll);
2718 phba->eratt_poll.function = lpfc_poll_eratt;
2719 phba->eratt_poll.data = (unsigned long) phba;
2720 6589
2721 pci_set_master(pdev); 6590/**
2722 pci_save_state(pdev); 6591 * lpfc_sli4_unset_hba - Unset SLI4 hba device initialization.
2723 pci_try_set_mwi(pdev); 6592 * @phba: pointer to lpfc hba data structure.
6593 *
6594 * This routine is invoked to unset the HBA device initialization steps to
6595 * a device with SLI-4 interface spec.
6596 **/
6597static void
6598lpfc_sli4_unset_hba(struct lpfc_hba *phba)
6599{
6600 struct lpfc_vport *vport = phba->pport;
6601 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
2724 6602
2725 if (pci_set_dma_mask(phba->pcidev, DMA_BIT_MASK(64)) != 0) 6603 spin_lock_irq(shost->host_lock);
2726 if (pci_set_dma_mask(phba->pcidev, DMA_BIT_MASK(32)) != 0) 6604 vport->load_flag |= FC_UNLOADING;
2727 goto out_idr_remove; 6605 spin_unlock_irq(shost->host_lock);
2728 6606
2729 /* 6607 phba->pport->work_port_events = 0;
2730 * Get the bus address of Bar0 and Bar2 and the number of bytes
2731 * required by each mapping.
2732 */
2733 phba->pci_bar0_map = pci_resource_start(phba->pcidev, 0);
2734 bar0map_len = pci_resource_len(phba->pcidev, 0);
2735 6608
2736 phba->pci_bar2_map = pci_resource_start(phba->pcidev, 2); 6609 lpfc_sli4_hba_down(phba);
2737 bar2map_len = pci_resource_len(phba->pcidev, 2);
2738 6610
2739 /* Map HBA SLIM to a kernel virtual address. */ 6611 lpfc_sli4_disable_intr(phba);
2740 phba->slim_memmap_p = ioremap(phba->pci_bar0_map, bar0map_len);
2741 if (!phba->slim_memmap_p) {
2742 error = -ENODEV;
2743 dev_printk(KERN_ERR, &pdev->dev,
2744 "ioremap failed for SLIM memory.\n");
2745 goto out_idr_remove;
2746 }
2747 6612
2748 /* Map HBA Control Registers to a kernel virtual address. */ 6613 return;
2749 phba->ctrl_regs_memmap_p = ioremap(phba->pci_bar2_map, bar2map_len); 6614}
2750 if (!phba->ctrl_regs_memmap_p) {
2751 error = -ENODEV;
2752 dev_printk(KERN_ERR, &pdev->dev,
2753 "ioremap failed for HBA control registers.\n");
2754 goto out_iounmap_slim;
2755 }
2756 6615
2757 /* Allocate memory for SLI-2 structures */ 6616/**
2758 phba->slim2p.virt = dma_alloc_coherent(&phba->pcidev->dev, 6617 * lpfc_sli4_hba_unset - Unset the fcoe hba
2759 SLI2_SLIM_SIZE, 6618 * @phba: Pointer to HBA context object.
2760 &phba->slim2p.phys, 6619 *
2761 GFP_KERNEL); 6620 * This function is called in the SLI4 code path to reset the HBA's FCoE
2762 if (!phba->slim2p.virt) 6621 * function. The caller is not required to hold any lock. This routine
2763 goto out_iounmap; 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.
6625 **/
6626static void
6627lpfc_sli4_hba_unset(struct lpfc_hba *phba)
6628{
6629 int wait_cnt = 0;
6630 LPFC_MBOXQ_t *mboxq;
2764 6631
2765 memset(phba->slim2p.virt, 0, SLI2_SLIM_SIZE); 6632 lpfc_stop_hba_timers(phba);
2766 phba->mbox = phba->slim2p.virt + offsetof(struct lpfc_sli2_slim, mbx); 6633 phba->sli4_hba.intr_enable = 0;
2767 phba->pcb = (phba->slim2p.virt + offsetof(struct lpfc_sli2_slim, pcb));
2768 phba->IOCBs = (phba->slim2p.virt +
2769 offsetof(struct lpfc_sli2_slim, IOCBs));
2770 6634
2771 phba->hbqslimp.virt = dma_alloc_coherent(&phba->pcidev->dev, 6635 /*
2772 lpfc_sli_hbq_size(), 6636 * Gracefully wait out the potential current outstanding asynchronous
2773 &phba->hbqslimp.phys, 6637 * mailbox command.
2774 GFP_KERNEL); 6638 */
2775 if (!phba->hbqslimp.virt)
2776 goto out_free_slim;
2777 6639
2778 hbq_count = lpfc_sli_hbq_count(); 6640 /* First, block any pending async mailbox command from posted */
2779 ptr = phba->hbqslimp.virt; 6641 spin_lock_irq(&phba->hbalock);
2780 for (i = 0; i < hbq_count; ++i) { 6642 phba->sli.sli_flag |= LPFC_SLI_ASYNC_MBX_BLK;
2781 phba->hbqs[i].hbq_virt = ptr; 6643 spin_unlock_irq(&phba->hbalock);
2782 INIT_LIST_HEAD(&phba->hbqs[i].hbq_buffer_list); 6644 /* Now, trying to wait it out if we can */
2783 ptr += (lpfc_hbq_defs[i]->entry_count * 6645 while (phba->sli.sli_flag & LPFC_SLI_MBOX_ACTIVE) {
2784 sizeof(struct lpfc_hbq_entry)); 6646 msleep(10);
6647 if (++wait_cnt > LPFC_ACTIVE_MBOX_WAIT_CNT)
6648 break;
2785 } 6649 }
2786 phba->hbqs[LPFC_ELS_HBQ].hbq_alloc_buffer = lpfc_els_hbq_alloc; 6650 /* Forcefully release the outstanding mailbox command if timed out */
2787 phba->hbqs[LPFC_ELS_HBQ].hbq_free_buffer = lpfc_els_hbq_free; 6651 if (phba->sli.sli_flag & LPFC_SLI_MBOX_ACTIVE) {
2788 6652 spin_lock_irq(&phba->hbalock);
2789 memset(phba->hbqslimp.virt, 0, lpfc_sli_hbq_size()); 6653 mboxq = phba->sli.mbox_active;
2790 6654 mboxq->u.mb.mbxStatus = MBX_NOT_FINISHED;
2791 INIT_LIST_HEAD(&phba->hbqbuf_in_list); 6655 __lpfc_mbox_cmpl_put(phba, mboxq);
2792 6656 phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
2793 /* Initialize the SLI Layer to run with lpfc HBAs. */ 6657 phba->sli.mbox_active = NULL;
2794 lpfc_sli_setup(phba); 6658 spin_unlock_irq(&phba->hbalock);
2795 lpfc_sli_queue_setup(phba);
2796
2797 retval = lpfc_mem_alloc(phba);
2798 if (retval) {
2799 error = retval;
2800 goto out_free_hbqslimp;
2801 } 6659 }
2802 6660
2803 /* Initialize and populate the iocb list per host. */ 6661 /* Tear down the queues in the HBA */
2804 INIT_LIST_HEAD(&phba->lpfc_iocb_list); 6662 lpfc_sli4_queue_unset(phba);
2805 for (i = 0; i < LPFC_IOCB_LIST_CNT; i++) {
2806 iocbq_entry = kzalloc(sizeof(struct lpfc_iocbq), GFP_KERNEL);
2807 if (iocbq_entry == NULL) {
2808 printk(KERN_ERR "%s: only allocated %d iocbs of "
2809 "expected %d count. Unloading driver.\n",
2810 __func__, i, LPFC_IOCB_LIST_CNT);
2811 error = -ENOMEM;
2812 goto out_free_iocbq;
2813 }
2814 6663
2815 iotag = lpfc_sli_next_iotag(phba, iocbq_entry); 6664 /* Disable PCI subsystem interrupt */
2816 if (iotag == 0) { 6665 lpfc_sli4_disable_intr(phba);
2817 kfree (iocbq_entry);
2818 printk(KERN_ERR "%s: failed to allocate IOTAG. "
2819 "Unloading driver.\n",
2820 __func__);
2821 error = -ENOMEM;
2822 goto out_free_iocbq;
2823 }
2824 6666
2825 spin_lock_irq(&phba->hbalock); 6667 /* Stop kthread signal shall trigger work_done one more time */
2826 list_add(&iocbq_entry->list, &phba->lpfc_iocb_list); 6668 kthread_stop(phba->worker_thread);
2827 phba->total_iocbq_bufs++;
2828 spin_unlock_irq(&phba->hbalock);
2829 }
2830 6669
2831 /* Initialize HBA structure */ 6670 /* Stop the SLI4 device port */
2832 phba->fc_edtov = FF_DEF_EDTOV; 6671 phba->pport->work_port_events = 0;
2833 phba->fc_ratov = FF_DEF_RATOV; 6672}
2834 phba->fc_altov = FF_DEF_ALTOV;
2835 phba->fc_arbtov = FF_DEF_ARBTOV;
2836 6673
2837 INIT_LIST_HEAD(&phba->work_list); 6674/**
2838 phba->work_ha_mask = (HA_ERATT | HA_MBATT | HA_LATT); 6675 * lpfc_pci_probe_one_s3 - PCI probe func to reg SLI-3 device to PCI subsystem.
2839 phba->work_ha_mask |= (HA_RXMASK << (LPFC_ELS_RING * 4)); 6676 * @pdev: pointer to PCI device
6677 * @pid: pointer to PCI device identifier
6678 *
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.
6686 *
6687 * Return code
6688 * 0 - driver can claim the device
6689 * negative value - driver can not claim the device
6690 **/
6691static int __devinit
6692lpfc_pci_probe_one_s3(struct pci_dev *pdev, const struct pci_device_id *pid)
6693{
6694 struct lpfc_hba *phba;
6695 struct lpfc_vport *vport = NULL;
6696 int error;
6697 uint32_t cfg_mode, intr_mode;
2840 6698
2841 /* Initialize the wait queue head for the kernel thread */ 6699 /* Allocate memory for HBA structure */
2842 init_waitqueue_head(&phba->work_waitq); 6700 phba = lpfc_hba_alloc(pdev);
6701 if (!phba)
6702 return -ENOMEM;
2843 6703
2844 /* Startup the kernel thread for this host adapter. */ 6704 /* Perform generic PCI device enabling operation */
2845 phba->worker_thread = kthread_run(lpfc_do_work, phba, 6705 error = lpfc_enable_pci_dev(phba);
2846 "lpfc_worker_%d", phba->brd_no); 6706 if (error) {
2847 if (IS_ERR(phba->worker_thread)) { 6707 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
2848 error = PTR_ERR(phba->worker_thread); 6708 "1401 Failed to enable pci device.\n");
2849 goto out_free_iocbq; 6709 goto out_free_phba;
2850 } 6710 }
2851 6711
2852 /* Initialize the list of scsi buffers used by driver for scsi IO. */ 6712 /* Set up SLI API function jump table for PCI-device group-0 HBAs */
2853 spin_lock_init(&phba->scsi_buf_list_lock); 6713 error = lpfc_api_table_setup(phba, LPFC_PCI_DEV_LP);
2854 INIT_LIST_HEAD(&phba->lpfc_scsi_buf_list); 6714 if (error)
6715 goto out_disable_pci_dev;
2855 6716
2856 /* Initialize list of fabric iocbs */ 6717 /* Set up SLI-3 specific device PCI memory space */
2857 INIT_LIST_HEAD(&phba->fabric_iocb_list); 6718 error = lpfc_sli_pci_mem_setup(phba);
6719 if (error) {
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;
6723 }
2858 6724
2859 /* Initialize list to save ELS buffers */ 6725 /* Set up phase-1 common device driver resources */
2860 INIT_LIST_HEAD(&phba->elsbuf); 6726 error = lpfc_setup_driver_resource_phase1(phba);
6727 if (error) {
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;
6731 }
2861 6732
2862 vport = lpfc_create_port(phba, phba->brd_no, &phba->pcidev->dev); 6733 /* Set up SLI-3 specific device driver resources */
2863 if (!vport) 6734 error = lpfc_sli_driver_resource_setup(phba);
2864 goto out_kthread_stop; 6735 if (error) {
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;
6739 }
2865 6740
2866 shost = lpfc_shost_from_vport(vport); 6741 /* Initialize and populate the iocb list per host */
2867 phba->pport = vport; 6742 error = lpfc_init_iocb_list(phba, LPFC_IOCB_LIST_CNT);
2868 lpfc_debugfs_initialize(vport); 6743 if (error) {
6744 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6745 "1405 Failed to initialize iocb list.\n");
6746 goto out_unset_driver_resource_s3;
6747 }
2869 6748
2870 pci_set_drvdata(pdev, shost); 6749 /* Set up common device driver resources */
6750 error = lpfc_setup_driver_resource_phase2(phba);
6751 if (error) {
6752 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6753 "1406 Failed to set up driver resource.\n");
6754 goto out_free_iocb_list;
6755 }
2871 6756
2872 phba->MBslimaddr = phba->slim_memmap_p; 6757 /* Create SCSI host to the physical port */
2873 phba->HAregaddr = phba->ctrl_regs_memmap_p + HA_REG_OFFSET; 6758 error = lpfc_create_shost(phba);
2874 phba->CAregaddr = phba->ctrl_regs_memmap_p + CA_REG_OFFSET; 6759 if (error) {
2875 phba->HSregaddr = phba->ctrl_regs_memmap_p + HS_REG_OFFSET; 6760 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
2876 phba->HCregaddr = phba->ctrl_regs_memmap_p + HC_REG_OFFSET; 6761 "1407 Failed to create scsi host.\n");
6762 goto out_unset_driver_resource;
6763 }
2877 6764
2878 /* Configure sysfs attributes */ 6765 /* Configure sysfs attributes */
2879 if (lpfc_alloc_sysfs_attr(vport)) { 6766 vport = phba->pport;
6767 error = lpfc_alloc_sysfs_attr(vport);
6768 if (error) {
2880 lpfc_printf_log(phba, KERN_ERR, LOG_INIT, 6769 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
2881 "1476 Failed to allocate sysfs attr\n"); 6770 "1476 Failed to allocate sysfs attr\n");
2882 error = -ENOMEM; 6771 goto out_destroy_shost;
2883 goto out_destroy_port;
2884 } 6772 }
2885 6773
6774 /* Now, trying to enable interrupt and bring up the device */
2886 cfg_mode = phba->cfg_use_msi; 6775 cfg_mode = phba->cfg_use_msi;
2887 while (true) { 6776 while (true) {
6777 /* Put device to a known state before enabling interrupt */
6778 lpfc_stop_port(phba);
2888 /* Configure and enable interrupt */ 6779 /* Configure and enable interrupt */
2889 intr_mode = lpfc_enable_intr(phba, cfg_mode); 6780 intr_mode = lpfc_sli_enable_intr(phba, cfg_mode);
2890 if (intr_mode == LPFC_INTR_ERROR) { 6781 if (intr_mode == LPFC_INTR_ERROR) {
2891 lpfc_printf_log(phba, KERN_ERR, LOG_INIT, 6782 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
2892 "0426 Failed to enable interrupt.\n"); 6783 "0431 Failed to enable interrupt.\n");
6784 error = -ENODEV;
2893 goto out_free_sysfs_attr; 6785 goto out_free_sysfs_attr;
2894 } 6786 }
2895 /* HBA SLI setup */ 6787 /* SLI-3 HBA setup */
2896 if (lpfc_sli_hba_setup(phba)) { 6788 if (lpfc_sli_hba_setup(phba)) {
2897 lpfc_printf_log(phba, KERN_ERR, LOG_INIT, 6789 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
2898 "1477 Failed to set up hba\n"); 6790 "1477 Failed to set up hba\n");
@@ -2902,185 +6794,65 @@ lpfc_pci_probe_one(struct pci_dev *pdev, const struct pci_device_id *pid)
2902 6794
2903 /* Wait 50ms for the interrupts of previous mailbox commands */ 6795 /* Wait 50ms for the interrupts of previous mailbox commands */
2904 msleep(50); 6796 msleep(50);
2905 /* Check active interrupts received */ 6797 /* Check active interrupts on message signaled interrupts */
2906 if (phba->sli.slistat.sli_intr > LPFC_MSIX_VECTORS) { 6798 if (intr_mode == 0 ||
6799 phba->sli.slistat.sli_intr > LPFC_MSIX_VECTORS) {
2907 /* Log the current active interrupt mode */ 6800 /* Log the current active interrupt mode */
2908 phba->intr_mode = intr_mode; 6801 phba->intr_mode = intr_mode;
2909 lpfc_log_intr_mode(phba, intr_mode); 6802 lpfc_log_intr_mode(phba, intr_mode);
2910 break; 6803 break;
2911 } else { 6804 } else {
2912 lpfc_printf_log(phba, KERN_INFO, LOG_INIT, 6805 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
2913 "0451 Configure interrupt mode (%d) " 6806 "0447 Configure interrupt mode (%d) "
2914 "failed active interrupt test.\n", 6807 "failed active interrupt test.\n",
2915 intr_mode); 6808 intr_mode);
2916 if (intr_mode == 0) {
2917 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
2918 "0479 Failed to enable "
2919 "interrupt.\n");
2920 error = -ENODEV;
2921 goto out_remove_device;
2922 }
2923 /* Stop HBA SLI setups */
2924 lpfc_stop_port(phba);
2925 /* Disable the current interrupt mode */ 6809 /* Disable the current interrupt mode */
2926 lpfc_disable_intr(phba); 6810 lpfc_sli_disable_intr(phba);
2927 /* Try next level of interrupt mode */ 6811 /* Try next level of interrupt mode */
2928 cfg_mode = --intr_mode; 6812 cfg_mode = --intr_mode;
2929 } 6813 }
2930 } 6814 }
2931 6815
2932 /* 6816 /* Perform post initialization setup */
2933 * hba setup may have changed the hba_queue_depth so we need to adjust 6817 lpfc_post_init_setup(phba);
2934 * the value of can_queue.
2935 */
2936 shost->can_queue = phba->cfg_hba_queue_depth - 10;
2937 if (phba->sli3_options & LPFC_SLI3_BG_ENABLED) {
2938
2939 if (lpfc_prot_mask && lpfc_prot_guard) {
2940 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
2941 "1478 Registering BlockGuard with the "
2942 "SCSI layer\n");
2943 6818
2944 scsi_host_set_prot(shost, lpfc_prot_mask); 6819 /* Check if there are static vports to be created. */
2945 scsi_host_set_guard(shost, lpfc_prot_guard); 6820 lpfc_create_static_vport(phba);
2946 }
2947 }
2948
2949 if (!_dump_buf_data) {
2950 int pagecnt = 10;
2951 while (pagecnt) {
2952 spin_lock_init(&_dump_buf_lock);
2953 _dump_buf_data =
2954 (char *) __get_free_pages(GFP_KERNEL, pagecnt);
2955 if (_dump_buf_data) {
2956 printk(KERN_ERR "BLKGRD allocated %d pages for "
2957 "_dump_buf_data at 0x%p\n",
2958 (1 << pagecnt), _dump_buf_data);
2959 _dump_buf_data_order = pagecnt;
2960 memset(_dump_buf_data, 0, ((1 << PAGE_SHIFT)
2961 << pagecnt));
2962 break;
2963 } else {
2964 --pagecnt;
2965 }
2966
2967 }
2968
2969 if (!_dump_buf_data_order)
2970 printk(KERN_ERR "BLKGRD ERROR unable to allocate "
2971 "memory for hexdump\n");
2972
2973 } else {
2974 printk(KERN_ERR "BLKGRD already allocated _dump_buf_data=0x%p"
2975 "\n", _dump_buf_data);
2976 }
2977
2978
2979 if (!_dump_buf_dif) {
2980 int pagecnt = 10;
2981 while (pagecnt) {
2982 _dump_buf_dif =
2983 (char *) __get_free_pages(GFP_KERNEL, pagecnt);
2984 if (_dump_buf_dif) {
2985 printk(KERN_ERR "BLKGRD allocated %d pages for "
2986 "_dump_buf_dif at 0x%p\n",
2987 (1 << pagecnt), _dump_buf_dif);
2988 _dump_buf_dif_order = pagecnt;
2989 memset(_dump_buf_dif, 0, ((1 << PAGE_SHIFT)
2990 << pagecnt));
2991 break;
2992 } else {
2993 --pagecnt;
2994 }
2995
2996 }
2997
2998 if (!_dump_buf_dif_order)
2999 printk(KERN_ERR "BLKGRD ERROR unable to allocate "
3000 "memory for hexdump\n");
3001
3002 } else {
3003 printk(KERN_ERR "BLKGRD already allocated _dump_buf_dif=0x%p\n",
3004 _dump_buf_dif);
3005 }
3006
3007 lpfc_host_attrib_init(shost);
3008
3009 if (phba->cfg_poll & DISABLE_FCP_RING_INT) {
3010 spin_lock_irq(shost->host_lock);
3011 lpfc_poll_start_timer(phba);
3012 spin_unlock_irq(shost->host_lock);
3013 }
3014
3015 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
3016 "0428 Perform SCSI scan\n");
3017 /* Send board arrival event to upper layer */
3018 adapter_event.event_type = FC_REG_ADAPTER_EVENT;
3019 adapter_event.subcategory = LPFC_EVENT_ARRIVAL;
3020 fc_host_post_vendor_event(shost, fc_get_event_number(),
3021 sizeof(adapter_event),
3022 (char *) &adapter_event,
3023 LPFC_NL_VENDOR_ID);
3024 6821
3025 return 0; 6822 return 0;
3026 6823
3027out_remove_device: 6824out_remove_device:
3028 spin_lock_irq(shost->host_lock); 6825 lpfc_unset_hba(phba);
3029 vport->load_flag |= FC_UNLOADING;
3030 spin_unlock_irq(shost->host_lock);
3031 lpfc_stop_phba_timers(phba);
3032 phba->pport->work_port_events = 0;
3033 lpfc_disable_intr(phba);
3034 lpfc_sli_hba_down(phba);
3035 lpfc_sli_brdrestart(phba);
3036out_free_sysfs_attr: 6826out_free_sysfs_attr:
3037 lpfc_free_sysfs_attr(vport); 6827 lpfc_free_sysfs_attr(vport);
3038out_destroy_port: 6828out_destroy_shost:
3039 destroy_port(vport); 6829 lpfc_destroy_shost(phba);
3040out_kthread_stop: 6830out_unset_driver_resource:
3041 kthread_stop(phba->worker_thread); 6831 lpfc_unset_driver_resource_phase2(phba);
3042out_free_iocbq: 6832out_free_iocb_list:
3043 list_for_each_entry_safe(iocbq_entry, iocbq_next, 6833 lpfc_free_iocb_list(phba);
3044 &phba->lpfc_iocb_list, list) { 6834out_unset_driver_resource_s3:
3045 kfree(iocbq_entry); 6835 lpfc_sli_driver_resource_unset(phba);
3046 phba->total_iocbq_bufs--; 6836out_unset_pci_mem_s3:
3047 } 6837 lpfc_sli_pci_mem_unset(phba);
3048 lpfc_mem_free(phba); 6838out_disable_pci_dev:
3049out_free_hbqslimp: 6839 lpfc_disable_pci_dev(phba);
3050 dma_free_coherent(&pdev->dev, lpfc_sli_hbq_size(),
3051 phba->hbqslimp.virt, phba->hbqslimp.phys);
3052out_free_slim:
3053 dma_free_coherent(&pdev->dev, SLI2_SLIM_SIZE,
3054 phba->slim2p.virt, phba->slim2p.phys);
3055out_iounmap:
3056 iounmap(phba->ctrl_regs_memmap_p);
3057out_iounmap_slim:
3058 iounmap(phba->slim_memmap_p);
3059out_idr_remove:
3060 idr_remove(&lpfc_hba_index, phba->brd_no);
3061out_free_phba: 6840out_free_phba:
3062 kfree(phba); 6841 lpfc_hba_free(phba);
3063out_release_regions:
3064 pci_release_selected_regions(pdev, bars);
3065out_disable_device:
3066 pci_disable_device(pdev);
3067out:
3068 pci_set_drvdata(pdev, NULL);
3069 if (shost)
3070 scsi_host_put(shost);
3071 return error; 6842 return error;
3072} 6843}
3073 6844
3074/** 6845/**
3075 * lpfc_pci_remove_one - lpfc PCI func to unregister device from PCI subsystem 6846 * lpfc_pci_remove_one_s3 - PCI func to unreg SLI-3 device from PCI subsystem.
3076 * @pdev: pointer to PCI device 6847 * @pdev: pointer to PCI device
3077 * 6848 *
3078 * This routine is to be registered to the kernel's PCI subsystem. When an 6849 * This routine is to be called to disattach a device with SLI-3 interface
3079 * Emulex HBA is removed from PCI bus, it performs all the necessary cleanup 6850 * spec from PCI subsystem. When an Emulex HBA with SLI-3 interface spec is
3080 * for the HBA device to be removed from the PCI subsystem properly. 6851 * removed from PCI bus, it performs all the necessary cleanup for the HBA
6852 * device to be removed from the PCI subsystem properly.
3081 **/ 6853 **/
3082static void __devexit 6854static void __devexit
3083lpfc_pci_remove_one(struct pci_dev *pdev) 6855lpfc_pci_remove_one_s3(struct pci_dev *pdev)
3084{ 6856{
3085 struct Scsi_Host *shost = pci_get_drvdata(pdev); 6857 struct Scsi_Host *shost = pci_get_drvdata(pdev);
3086 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata; 6858 struct lpfc_vport *vport = (struct lpfc_vport *) shost->hostdata;
@@ -3098,7 +6870,7 @@ lpfc_pci_remove_one(struct pci_dev *pdev)
3098 /* Release all the vports against this physical port */ 6870 /* Release all the vports against this physical port */
3099 vports = lpfc_create_vport_work_array(phba); 6871 vports = lpfc_create_vport_work_array(phba);
3100 if (vports != NULL) 6872 if (vports != NULL)
3101 for (i = 1; i <= phba->max_vpi && vports[i] != NULL; i++) 6873 for (i = 1; i <= phba->max_vports && vports[i] != NULL; i++)
3102 fc_vport_terminate(vports[i]->fc_vport); 6874 fc_vport_terminate(vports[i]->fc_vport);
3103 lpfc_destroy_vport_work_array(phba, vports); 6875 lpfc_destroy_vport_work_array(phba, vports);
3104 6876
@@ -3120,7 +6892,7 @@ lpfc_pci_remove_one(struct pci_dev *pdev)
3120 /* Final cleanup of txcmplq and reset the HBA */ 6892 /* Final cleanup of txcmplq and reset the HBA */
3121 lpfc_sli_brdrestart(phba); 6893 lpfc_sli_brdrestart(phba);
3122 6894
3123 lpfc_stop_phba_timers(phba); 6895 lpfc_stop_hba_timers(phba);
3124 spin_lock_irq(&phba->hbalock); 6896 spin_lock_irq(&phba->hbalock);
3125 list_del_init(&vport->listentry); 6897 list_del_init(&vport->listentry);
3126 spin_unlock_irq(&phba->hbalock); 6898 spin_unlock_irq(&phba->hbalock);
@@ -3128,7 +6900,7 @@ lpfc_pci_remove_one(struct pci_dev *pdev)
3128 lpfc_debugfs_terminate(vport); 6900 lpfc_debugfs_terminate(vport);
3129 6901
3130 /* Disable interrupt */ 6902 /* Disable interrupt */
3131 lpfc_disable_intr(phba); 6903 lpfc_sli_disable_intr(phba);
3132 6904
3133 pci_set_drvdata(pdev, NULL); 6905 pci_set_drvdata(pdev, NULL);
3134 scsi_host_put(shost); 6906 scsi_host_put(shost);
@@ -3138,7 +6910,7 @@ lpfc_pci_remove_one(struct pci_dev *pdev)
3138 * corresponding pools here. 6910 * corresponding pools here.
3139 */ 6911 */
3140 lpfc_scsi_free(phba); 6912 lpfc_scsi_free(phba);
3141 lpfc_mem_free(phba); 6913 lpfc_mem_free_all(phba);
3142 6914
3143 dma_free_coherent(&pdev->dev, lpfc_sli_hbq_size(), 6915 dma_free_coherent(&pdev->dev, lpfc_sli_hbq_size(),
3144 phba->hbqslimp.virt, phba->hbqslimp.phys); 6916 phba->hbqslimp.virt, phba->hbqslimp.phys);
@@ -3151,36 +6923,35 @@ lpfc_pci_remove_one(struct pci_dev *pdev)
3151 iounmap(phba->ctrl_regs_memmap_p); 6923 iounmap(phba->ctrl_regs_memmap_p);
3152 iounmap(phba->slim_memmap_p); 6924 iounmap(phba->slim_memmap_p);
3153 6925
3154 idr_remove(&lpfc_hba_index, phba->brd_no); 6926 lpfc_hba_free(phba);
3155
3156 kfree(phba);
3157 6927
3158 pci_release_selected_regions(pdev, bars); 6928 pci_release_selected_regions(pdev, bars);
3159 pci_disable_device(pdev); 6929 pci_disable_device(pdev);
3160} 6930}
3161 6931
3162/** 6932/**
3163 * lpfc_pci_suspend_one - lpfc PCI func to suspend device for power management 6933 * lpfc_pci_suspend_one_s3 - PCI func to suspend SLI-3 device for power mgmnt
3164 * @pdev: pointer to PCI device 6934 * @pdev: pointer to PCI device
3165 * @msg: power management message 6935 * @msg: power management message
3166 * 6936 *
3167 * This routine is to be registered to the kernel's PCI subsystem to support 6937 * This routine is to be called from the kernel's PCI subsystem to support
3168 * system Power Management (PM). When PM invokes this method, it quiesces the 6938 * system Power Management (PM) to device with SLI-3 interface spec. When
3169 * device by stopping the driver's worker thread for the device, turning off 6939 * PM invokes this method, it quiesces the device by stopping the driver's
3170 * device's interrupt and DMA, and bring the device offline. Note that as the 6940 * worker thread for the device, turning off device's interrupt and DMA,
3171 * driver implements the minimum PM requirements to a power-aware driver's PM 6941 * and bring the device offline. Note that as the driver implements the
3172 * support for suspend/resume -- all the possible PM messages (SUSPEND, 6942 * minimum PM requirements to a power-aware driver's PM support for the
3173 * HIBERNATE, FREEZE) to the suspend() method call will be treated as SUSPEND 6943 * suspend/resume -- all the possible PM messages (SUSPEND, HIBERNATE, FREEZE)
3174 * and the driver will fully reinitialize its device during resume() method 6944 * to the suspend() method call will be treated as SUSPEND and the driver will
3175 * call, the driver will set device to PCI_D3hot state in PCI config space 6945 * fully reinitialize its device during resume() method call, the driver will
3176 * instead of setting it according to the @msg provided by the PM. 6946 * set device to PCI_D3hot state in PCI config space instead of setting it
6947 * according to the @msg provided by the PM.
3177 * 6948 *
3178 * Return code 6949 * Return code
3179 * 0 - driver suspended the device 6950 * 0 - driver suspended the device
3180 * Error otherwise 6951 * Error otherwise
3181 **/ 6952 **/
3182static int 6953static int
3183lpfc_pci_suspend_one(struct pci_dev *pdev, pm_message_t msg) 6954lpfc_pci_suspend_one_s3(struct pci_dev *pdev, pm_message_t msg)
3184{ 6955{
3185 struct Scsi_Host *shost = pci_get_drvdata(pdev); 6956 struct Scsi_Host *shost = pci_get_drvdata(pdev);
3186 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba; 6957 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
@@ -3194,7 +6965,7 @@ lpfc_pci_suspend_one(struct pci_dev *pdev, pm_message_t msg)
3194 kthread_stop(phba->worker_thread); 6965 kthread_stop(phba->worker_thread);
3195 6966
3196 /* Disable interrupt from device */ 6967 /* Disable interrupt from device */
3197 lpfc_disable_intr(phba); 6968 lpfc_sli_disable_intr(phba);
3198 6969
3199 /* Save device state to PCI config space */ 6970 /* Save device state to PCI config space */
3200 pci_save_state(pdev); 6971 pci_save_state(pdev);
@@ -3204,25 +6975,26 @@ lpfc_pci_suspend_one(struct pci_dev *pdev, pm_message_t msg)
3204} 6975}
3205 6976
3206/** 6977/**
3207 * lpfc_pci_resume_one - lpfc PCI func to resume device for power management 6978 * lpfc_pci_resume_one_s3 - PCI func to resume SLI-3 device for power mgmnt
3208 * @pdev: pointer to PCI device 6979 * @pdev: pointer to PCI device
3209 * 6980 *
3210 * This routine is to be registered to the kernel's PCI subsystem to support 6981 * This routine is to be called from the kernel's PCI subsystem to support
3211 * system Power Management (PM). When PM invokes this method, it restores 6982 * system Power Management (PM) to device with SLI-3 interface spec. When PM
3212 * the device's PCI config space state and fully reinitializes the device 6983 * invokes this method, it restores the device's PCI config space state and
3213 * and brings it online. Note that as the driver implements the minimum PM 6984 * fully reinitializes the device and brings it online. Note that as the
3214 * requirements to a power-aware driver's PM for suspend/resume -- all 6985 * driver implements the minimum PM requirements to a power-aware driver's
3215 * the possible PM messages (SUSPEND, HIBERNATE, FREEZE) to the suspend() 6986 * PM for suspend/resume -- all the possible PM messages (SUSPEND, HIBERNATE,
3216 * method call will be treated as SUSPEND and the driver will fully 6987 * FREEZE) to the suspend() method call will be treated as SUSPEND and the
3217 * reinitialize its device during resume() method call, the device will be 6988 * driver will fully reinitialize its device during resume() method call,
3218 * set to PCI_D0 directly in PCI config space before restoring the state. 6989 * the device will be set to PCI_D0 directly in PCI config space before
6990 * restoring the state.
3219 * 6991 *
3220 * Return code 6992 * Return code
3221 * 0 - driver suspended the device 6993 * 0 - driver suspended the device
3222 * Error otherwise 6994 * Error otherwise
3223 **/ 6995 **/
3224static int 6996static int
3225lpfc_pci_resume_one(struct pci_dev *pdev) 6997lpfc_pci_resume_one_s3(struct pci_dev *pdev)
3226{ 6998{
3227 struct Scsi_Host *shost = pci_get_drvdata(pdev); 6999 struct Scsi_Host *shost = pci_get_drvdata(pdev);
3228 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba; 7000 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
@@ -3250,7 +7022,7 @@ lpfc_pci_resume_one(struct pci_dev *pdev)
3250 } 7022 }
3251 7023
3252 /* Configure and enable interrupt */ 7024 /* Configure and enable interrupt */
3253 intr_mode = lpfc_enable_intr(phba, phba->intr_mode); 7025 intr_mode = lpfc_sli_enable_intr(phba, phba->intr_mode);
3254 if (intr_mode == LPFC_INTR_ERROR) { 7026 if (intr_mode == LPFC_INTR_ERROR) {
3255 lpfc_printf_log(phba, KERN_ERR, LOG_INIT, 7027 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3256 "0430 PM resume Failed to enable interrupt\n"); 7028 "0430 PM resume Failed to enable interrupt\n");
@@ -3269,23 +7041,24 @@ lpfc_pci_resume_one(struct pci_dev *pdev)
3269} 7041}
3270 7042
3271/** 7043/**
3272 * lpfc_io_error_detected - Driver method for handling PCI I/O error detected 7044 * lpfc_io_error_detected_s3 - Method for handling SLI-3 device PCI I/O error
3273 * @pdev: pointer to PCI device. 7045 * @pdev: pointer to PCI device.
3274 * @state: the current PCI connection state. 7046 * @state: the current PCI connection state.
3275 * 7047 *
3276 * This routine is registered to the PCI subsystem for error handling. This 7048 * This routine is called from the PCI subsystem for I/O error handling to
3277 * function is called by the PCI subsystem after a PCI bus error affecting 7049 * device with SLI-3 interface spec. This function is called by the PCI
3278 * this device has been detected. When this function is invoked, it will 7050 * subsystem after a PCI bus error affecting this device has been detected.
3279 * need to stop all the I/Os and interrupt(s) to the device. Once that is 7051 * When this function is invoked, it will need to stop all the I/Os and
3280 * done, it will return PCI_ERS_RESULT_NEED_RESET for the PCI subsystem to 7052 * interrupt(s) to the device. Once that is done, it will return
3281 * perform proper recovery as desired. 7053 * PCI_ERS_RESULT_NEED_RESET for the PCI subsystem to perform proper recovery
7054 * as desired.
3282 * 7055 *
3283 * Return codes 7056 * Return codes
3284 * PCI_ERS_RESULT_NEED_RESET - need to reset before recovery 7057 * PCI_ERS_RESULT_NEED_RESET - need to reset before recovery
3285 * PCI_ERS_RESULT_DISCONNECT - device could not be recovered 7058 * PCI_ERS_RESULT_DISCONNECT - device could not be recovered
3286 **/ 7059 **/
3287static pci_ers_result_t lpfc_io_error_detected(struct pci_dev *pdev, 7060static pci_ers_result_t
3288 pci_channel_state_t state) 7061lpfc_io_error_detected_s3(struct pci_dev *pdev, pci_channel_state_t state)
3289{ 7062{
3290 struct Scsi_Host *shost = pci_get_drvdata(pdev); 7063 struct Scsi_Host *shost = pci_get_drvdata(pdev);
3291 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba; 7064 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
@@ -3312,30 +7085,32 @@ static pci_ers_result_t lpfc_io_error_detected(struct pci_dev *pdev,
3312 lpfc_sli_abort_iocb_ring(phba, pring); 7085 lpfc_sli_abort_iocb_ring(phba, pring);
3313 7086
3314 /* Disable interrupt */ 7087 /* Disable interrupt */
3315 lpfc_disable_intr(phba); 7088 lpfc_sli_disable_intr(phba);
3316 7089
3317 /* Request a slot reset. */ 7090 /* Request a slot reset. */
3318 return PCI_ERS_RESULT_NEED_RESET; 7091 return PCI_ERS_RESULT_NEED_RESET;
3319} 7092}
3320 7093
3321/** 7094/**
3322 * lpfc_io_slot_reset - Restart a PCI device from scratch 7095 * lpfc_io_slot_reset_s3 - Method for restarting PCI SLI-3 device from scratch.
3323 * @pdev: pointer to PCI device. 7096 * @pdev: pointer to PCI device.
3324 * 7097 *
3325 * This routine is registered to the PCI subsystem for error handling. This is 7098 * This routine is called from the PCI subsystem for error handling to
3326 * called after PCI bus has been reset to restart the PCI card from scratch, 7099 * device with SLI-3 interface spec. This is called after PCI bus has been
3327 * as if from a cold-boot. During the PCI subsystem error recovery, after the 7100 * reset to restart the PCI card from scratch, as if from a cold-boot.
3328 * driver returns PCI_ERS_RESULT_NEED_RESET, the PCI subsystem will perform 7101 * During the PCI subsystem error recovery, after driver returns
3329 * proper error recovery and then call this routine before calling the .resume 7102 * PCI_ERS_RESULT_NEED_RESET, the PCI subsystem will perform proper error
3330 * method to recover the device. This function will initialize the HBA device, 7103 * recovery and then call this routine before calling the .resume method
3331 * enable the interrupt, but it will just put the HBA to offline state without 7104 * to recover the device. This function will initialize the HBA device,
3332 * passing any I/O traffic. 7105 * enable the interrupt, but it will just put the HBA to offline state
7106 * without passing any I/O traffic.
3333 * 7107 *
3334 * Return codes 7108 * Return codes
3335 * PCI_ERS_RESULT_RECOVERED - the device has been recovered 7109 * PCI_ERS_RESULT_RECOVERED - the device has been recovered
3336 * PCI_ERS_RESULT_DISCONNECT - device could not be recovered 7110 * PCI_ERS_RESULT_DISCONNECT - device could not be recovered
3337 */ 7111 */
3338static pci_ers_result_t lpfc_io_slot_reset(struct pci_dev *pdev) 7112static pci_ers_result_t
7113lpfc_io_slot_reset_s3(struct pci_dev *pdev)
3339{ 7114{
3340 struct Scsi_Host *shost = pci_get_drvdata(pdev); 7115 struct Scsi_Host *shost = pci_get_drvdata(pdev);
3341 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba; 7116 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
@@ -3354,11 +7129,11 @@ static pci_ers_result_t lpfc_io_slot_reset(struct pci_dev *pdev)
3354 pci_set_master(pdev); 7129 pci_set_master(pdev);
3355 7130
3356 spin_lock_irq(&phba->hbalock); 7131 spin_lock_irq(&phba->hbalock);
3357 psli->sli_flag &= ~LPFC_SLI2_ACTIVE; 7132 psli->sli_flag &= ~LPFC_SLI_ACTIVE;
3358 spin_unlock_irq(&phba->hbalock); 7133 spin_unlock_irq(&phba->hbalock);
3359 7134
3360 /* Configure and enable interrupt */ 7135 /* Configure and enable interrupt */
3361 intr_mode = lpfc_enable_intr(phba, phba->intr_mode); 7136 intr_mode = lpfc_sli_enable_intr(phba, phba->intr_mode);
3362 if (intr_mode == LPFC_INTR_ERROR) { 7137 if (intr_mode == LPFC_INTR_ERROR) {
3363 lpfc_printf_log(phba, KERN_ERR, LOG_INIT, 7138 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3364 "0427 Cannot re-enable interrupt after " 7139 "0427 Cannot re-enable interrupt after "
@@ -3378,20 +7153,715 @@ static pci_ers_result_t lpfc_io_slot_reset(struct pci_dev *pdev)
3378} 7153}
3379 7154
3380/** 7155/**
3381 * lpfc_io_resume - Resume PCI I/O operation 7156 * lpfc_io_resume_s3 - Method for resuming PCI I/O operation on SLI-3 device.
3382 * @pdev: pointer to PCI device 7157 * @pdev: pointer to PCI device
3383 * 7158 *
3384 * This routine is registered to the PCI subsystem for error handling. It is 7159 * This routine is called from the PCI subsystem for error handling to device
3385 * called when kernel error recovery tells the lpfc driver that it is ok to 7160 * with SLI-3 interface spec. It is called when kernel error recovery tells
3386 * resume normal PCI operation after PCI bus error recovery. After this call, 7161 * the lpfc driver that it is ok to resume normal PCI operation after PCI bus
3387 * traffic can start to flow from this device again. 7162 * error recovery. After this call, traffic can start to flow from this device
7163 * again.
3388 */ 7164 */
3389static void lpfc_io_resume(struct pci_dev *pdev) 7165static void
7166lpfc_io_resume_s3(struct pci_dev *pdev)
7167{
7168 struct Scsi_Host *shost = pci_get_drvdata(pdev);
7169 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
7170
7171 lpfc_online(phba);
7172}
7173
7174/**
7175 * lpfc_sli4_get_els_iocb_cnt - Calculate the # of ELS IOCBs to reserve
7176 * @phba: pointer to lpfc hba data structure.
7177 *
7178 * returns the number of ELS/CT IOCBs to reserve
7179 **/
7180int
7181lpfc_sli4_get_els_iocb_cnt(struct lpfc_hba *phba)
7182{
7183 int max_xri = phba->sli4_hba.max_cfg_param.max_xri;
7184
7185 if (phba->sli_rev == LPFC_SLI_REV4) {
7186 if (max_xri <= 100)
7187 return 4;
7188 else if (max_xri <= 256)
7189 return 8;
7190 else if (max_xri <= 512)
7191 return 16;
7192 else if (max_xri <= 1024)
7193 return 32;
7194 else
7195 return 48;
7196 } else
7197 return 0;
7198}
7199
7200/**
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
7204 *
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
7212 * properly.
7213 *
7214 * Return code
7215 * 0 - driver can claim the device
7216 * negative value - driver can not claim the device
7217 **/
7218static int __devinit
7219lpfc_pci_probe_one_s4(struct pci_dev *pdev, const struct pci_device_id *pid)
7220{
7221 struct lpfc_hba *phba;
7222 struct lpfc_vport *vport = NULL;
7223 int error;
7224 uint32_t cfg_mode, intr_mode;
7225 int mcnt;
7226
7227 /* Allocate memory for HBA structure */
7228 phba = lpfc_hba_alloc(pdev);
7229 if (!phba)
7230 return -ENOMEM;
7231
7232 /* Perform generic PCI device enabling operation */
7233 error = lpfc_enable_pci_dev(phba);
7234 if (error) {
7235 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7236 "1409 Failed to enable pci device.\n");
7237 goto out_free_phba;
7238 }
7239
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);
7242 if (error)
7243 goto out_disable_pci_dev;
7244
7245 /* Set up SLI-4 specific device PCI memory space */
7246 error = lpfc_sli4_pci_mem_setup(phba);
7247 if (error) {
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;
7251 }
7252
7253 /* Set up phase-1 common device driver resources */
7254 error = lpfc_setup_driver_resource_phase1(phba);
7255 if (error) {
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;
7259 }
7260
7261 /* Set up SLI-4 Specific device driver resources */
7262 error = lpfc_sli4_driver_resource_setup(phba);
7263 if (error) {
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;
7267 }
7268
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);
7272 if (error) {
7273 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7274 "1413 Failed to initialize iocb list.\n");
7275 goto out_unset_driver_resource_s4;
7276 }
7277
7278 /* Set up common device driver resources */
7279 error = lpfc_setup_driver_resource_phase2(phba);
7280 if (error) {
7281 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7282 "1414 Failed to set up driver resource.\n");
7283 goto out_free_iocb_list;
7284 }
7285
7286 /* Create SCSI host to the physical port */
7287 error = lpfc_create_shost(phba);
7288 if (error) {
7289 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7290 "1415 Failed to create scsi host.\n");
7291 goto out_unset_driver_resource;
7292 }
7293
7294 /* Configure sysfs attributes */
7295 vport = phba->pport;
7296 error = lpfc_alloc_sysfs_attr(vport);
7297 if (error) {
7298 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7299 "1416 Failed to allocate sysfs attr\n");
7300 goto out_destroy_shost;
7301 }
7302
7303 /* Now, trying to enable interrupt and bring up the device */
7304 cfg_mode = phba->cfg_use_msi;
7305 while (true) {
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");
7313 error = -ENODEV;
7314 goto out_free_sysfs_attr;
7315 }
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");
7320 error = -ENODEV;
7321 goto out_disable_intr;
7322 }
7323
7324 /* Send NOP mbx cmds for non-INTx mode active interrupt test */
7325 if (intr_mode != 0)
7326 mcnt = lpfc_sli4_send_nop_mbox_cmds(phba,
7327 LPFC_ACT_INTR_CNT);
7328
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);
7335 break;
7336 }
7337 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
7338 "0451 Configure interrupt mode (%d) "
7339 "failed active interrupt test.\n",
7340 intr_mode);
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;
7345 }
7346
7347 /* Perform post initialization setup */
7348 lpfc_post_init_setup(phba);
7349
7350 return 0;
7351
7352out_disable_intr:
7353 lpfc_sli4_disable_intr(phba);
7354out_free_sysfs_attr:
7355 lpfc_free_sysfs_attr(vport);
7356out_destroy_shost:
7357 lpfc_destroy_shost(phba);
7358out_unset_driver_resource:
7359 lpfc_unset_driver_resource_phase2(phba);
7360out_free_iocb_list:
7361 lpfc_free_iocb_list(phba);
7362out_unset_driver_resource_s4:
7363 lpfc_sli4_driver_resource_unset(phba);
7364out_unset_pci_mem_s4:
7365 lpfc_sli4_pci_mem_unset(phba);
7366out_disable_pci_dev:
7367 lpfc_disable_pci_dev(phba);
7368out_free_phba:
7369 lpfc_hba_free(phba);
7370 return error;
7371}
7372
7373/**
7374 * lpfc_pci_remove_one_s4 - PCI func to unreg SLI-4 device from PCI subsystem
7375 * @pdev: pointer to PCI device
7376 *
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.
7381 **/
7382static void __devexit
7383lpfc_pci_remove_one_s4(struct pci_dev *pdev)
7384{
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;
7389 int i;
7390
7391 /* Mark the device unloading flag */
7392 spin_lock_irq(&phba->hbalock);
7393 vport->load_flag |= FC_UNLOADING;
7394 spin_unlock_irq(&phba->hbalock);
7395
7396 /* Free the HBA sysfs attributes */
7397 lpfc_free_sysfs_attr(vport);
7398
7399 /* Release all the vports against this physical port */
7400 vports = lpfc_create_vport_work_array(phba);
7401 if (vports != NULL)
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);
7405
7406 /* Remove FC host and then SCSI host with the physical port */
7407 fc_remove_host(shost);
7408 scsi_remove_host(shost);
7409
7410 /* Perform cleanup on the physical port */
7411 lpfc_cleanup(vport);
7412
7413 /*
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.
7417 */
7418 lpfc_debugfs_terminate(vport);
7419 lpfc_sli4_hba_unset(phba);
7420
7421 spin_lock_irq(&phba->hbalock);
7422 list_del_init(&vport->listentry);
7423 spin_unlock_irq(&phba->hbalock);
7424
7425 /* Call scsi_free before lpfc_sli4_driver_resource_unset since scsi
7426 * buffers are released to their corresponding pools here.
7427 */
7428 lpfc_scsi_free(phba);
7429 lpfc_sli4_driver_resource_unset(phba);
7430
7431 /* Unmap adapter Control and Doorbell registers */
7432 lpfc_sli4_pci_mem_unset(phba);
7433
7434 /* Release PCI resources and disable device's PCI function */
7435 scsi_host_put(shost);
7436 lpfc_disable_pci_dev(phba);
7437
7438 /* Finally, free the driver's device data structure */
7439 lpfc_hba_free(phba);
7440
7441 return;
7442}
7443
7444/**
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
7448 *
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.
7460 *
7461 * Return code
7462 * 0 - driver suspended the device
7463 * Error otherwise
7464 **/
7465static int
7466lpfc_pci_suspend_one_s4(struct pci_dev *pdev, pm_message_t msg)
3390{ 7467{
3391 struct Scsi_Host *shost = pci_get_drvdata(pdev); 7468 struct Scsi_Host *shost = pci_get_drvdata(pdev);
3392 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba; 7469 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
3393 7470
7471 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
7472 "0298 PCI device Power Management suspend.\n");
7473
7474 /* Bring down the device */
7475 lpfc_offline_prep(phba);
7476 lpfc_offline(phba);
7477 kthread_stop(phba->worker_thread);
7478
7479 /* Disable interrupt from device */
7480 lpfc_sli4_disable_intr(phba);
7481
7482 /* Save device state to PCI config space */
7483 pci_save_state(pdev);
7484 pci_set_power_state(pdev, PCI_D3hot);
7485
7486 return 0;
7487}
7488
7489/**
7490 * lpfc_pci_resume_one_s4 - PCI func to resume SLI-4 device for power mgmnt
7491 * @pdev: pointer to PCI device
7492 *
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
7502 * state.
7503 *
7504 * Return code
7505 * 0 - driver suspended the device
7506 * Error otherwise
7507 **/
7508static int
7509lpfc_pci_resume_one_s4(struct pci_dev *pdev)
7510{
7511 struct Scsi_Host *shost = pci_get_drvdata(pdev);
7512 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
7513 uint32_t intr_mode;
7514 int error;
7515
7516 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
7517 "0292 PCI device Power Management resume.\n");
7518
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);
7524
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);
7533 return error;
7534 }
7535
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");
7541 return -EIO;
7542 } else
7543 phba->intr_mode = intr_mode;
7544
7545 /* Restart HBA and bring it online */
7546 lpfc_sli_brdrestart(phba);
3394 lpfc_online(phba); 7547 lpfc_online(phba);
7548
7549 /* Log the current active interrupt mode */
7550 lpfc_log_intr_mode(phba, phba->intr_mode);
7551
7552 return 0;
7553}
7554
7555/**
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.
7559 *
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.
7566 *
7567 * Return codes
7568 * PCI_ERS_RESULT_NEED_RESET - need to reset before recovery
7569 * PCI_ERS_RESULT_DISCONNECT - device could not be recovered
7570 **/
7571static pci_ers_result_t
7572lpfc_io_error_detected_s4(struct pci_dev *pdev, pci_channel_state_t state)
7573{
7574 return PCI_ERS_RESULT_NEED_RESET;
7575}
7576
7577/**
7578 * lpfc_io_slot_reset_s4 - Method for restart PCI SLI-4 device from scratch
7579 * @pdev: pointer to PCI device.
7580 *
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.
7590 *
7591 * Return codes
7592 * PCI_ERS_RESULT_RECOVERED - the device has been recovered
7593 * PCI_ERS_RESULT_DISCONNECT - device could not be recovered
7594 */
7595static pci_ers_result_t
7596lpfc_io_slot_reset_s4(struct pci_dev *pdev)
7597{
7598 return PCI_ERS_RESULT_RECOVERED;
7599}
7600
7601/**
7602 * lpfc_io_resume_s4 - Method for resuming PCI I/O operation to SLI-4 device
7603 * @pdev: pointer to PCI device
7604 *
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
7609 * again.
7610 **/
7611static void
7612lpfc_io_resume_s4(struct pci_dev *pdev)
7613{
7614 return;
7615}
7616
7617/**
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
7621 *
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
7629 * properly.
7630 *
7631 * Return code
7632 * 0 - driver can claim the device
7633 * negative value - driver can not claim the device
7634 **/
7635static int __devinit
7636lpfc_pci_probe_one(struct pci_dev *pdev, const struct pci_device_id *pid)
7637{
7638 int rc;
7639 uint16_t dev_id;
7640
7641 if (pci_read_config_word(pdev, PCI_DEVICE_ID, &dev_id))
7642 return -ENODEV;
7643
7644 switch (dev_id) {
7645 case PCI_DEVICE_ID_TIGERSHARK:
7646 rc = lpfc_pci_probe_one_s4(pdev, pid);
7647 break;
7648 default:
7649 rc = lpfc_pci_probe_one_s3(pdev, pid);
7650 break;
7651 }
7652 return rc;
7653}
7654
7655/**
7656 * lpfc_pci_remove_one - lpfc PCI func to unreg dev from PCI subsystem
7657 * @pdev: pointer to PCI device
7658 *
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.
7664 **/
7665static void __devexit
7666lpfc_pci_remove_one(struct pci_dev *pdev)
7667{
7668 struct Scsi_Host *shost = pci_get_drvdata(pdev);
7669 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
7670
7671 switch (phba->pci_dev_grp) {
7672 case LPFC_PCI_DEV_LP:
7673 lpfc_pci_remove_one_s3(pdev);
7674 break;
7675 case LPFC_PCI_DEV_OC:
7676 lpfc_pci_remove_one_s4(pdev);
7677 break;
7678 default:
7679 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7680 "1424 Invalid PCI device group: 0x%x\n",
7681 phba->pci_dev_grp);
7682 break;
7683 }
7684 return;
7685}
7686
7687/**
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
7691 *
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.
7696 *
7697 * Return code
7698 * 0 - driver suspended the device
7699 * Error otherwise
7700 **/
7701static int
7702lpfc_pci_suspend_one(struct pci_dev *pdev, pm_message_t msg)
7703{
7704 struct Scsi_Host *shost = pci_get_drvdata(pdev);
7705 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
7706 int rc = -ENODEV;
7707
7708 switch (phba->pci_dev_grp) {
7709 case LPFC_PCI_DEV_LP:
7710 rc = lpfc_pci_suspend_one_s3(pdev, msg);
7711 break;
7712 case LPFC_PCI_DEV_OC:
7713 rc = lpfc_pci_suspend_one_s4(pdev, msg);
7714 break;
7715 default:
7716 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7717 "1425 Invalid PCI device group: 0x%x\n",
7718 phba->pci_dev_grp);
7719 break;
7720 }
7721 return rc;
7722}
7723
7724/**
7725 * lpfc_pci_resume_one - lpfc PCI func to resume dev for power management
7726 * @pdev: pointer to PCI device
7727 *
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.
7732 *
7733 * Return code
7734 * 0 - driver suspended the device
7735 * Error otherwise
7736 **/
7737static int
7738lpfc_pci_resume_one(struct pci_dev *pdev)
7739{
7740 struct Scsi_Host *shost = pci_get_drvdata(pdev);
7741 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
7742 int rc = -ENODEV;
7743
7744 switch (phba->pci_dev_grp) {
7745 case LPFC_PCI_DEV_LP:
7746 rc = lpfc_pci_resume_one_s3(pdev);
7747 break;
7748 case LPFC_PCI_DEV_OC:
7749 rc = lpfc_pci_resume_one_s4(pdev);
7750 break;
7751 default:
7752 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7753 "1426 Invalid PCI device group: 0x%x\n",
7754 phba->pci_dev_grp);
7755 break;
7756 }
7757 return rc;
7758}
7759
7760/**
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.
7764 *
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.
7770 *
7771 * Return codes
7772 * PCI_ERS_RESULT_NEED_RESET - need to reset before recovery
7773 * PCI_ERS_RESULT_DISCONNECT - device could not be recovered
7774 **/
7775static pci_ers_result_t
7776lpfc_io_error_detected(struct pci_dev *pdev, pci_channel_state_t state)
7777{
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;
7781
7782 switch (phba->pci_dev_grp) {
7783 case LPFC_PCI_DEV_LP:
7784 rc = lpfc_io_error_detected_s3(pdev, state);
7785 break;
7786 case LPFC_PCI_DEV_OC:
7787 rc = lpfc_io_error_detected_s4(pdev, state);
7788 break;
7789 default:
7790 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7791 "1427 Invalid PCI device group: 0x%x\n",
7792 phba->pci_dev_grp);
7793 break;
7794 }
7795 return rc;
7796}
7797
7798/**
7799 * lpfc_io_slot_reset - lpfc method for restart PCI dev from scratch
7800 * @pdev: pointer to PCI device.
7801 *
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.
7807 *
7808 * Return codes
7809 * PCI_ERS_RESULT_RECOVERED - the device has been recovered
7810 * PCI_ERS_RESULT_DISCONNECT - device could not be recovered
7811 **/
7812static pci_ers_result_t
7813lpfc_io_slot_reset(struct pci_dev *pdev)
7814{
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;
7818
7819 switch (phba->pci_dev_grp) {
7820 case LPFC_PCI_DEV_LP:
7821 rc = lpfc_io_slot_reset_s3(pdev);
7822 break;
7823 case LPFC_PCI_DEV_OC:
7824 rc = lpfc_io_slot_reset_s4(pdev);
7825 break;
7826 default:
7827 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7828 "1428 Invalid PCI device group: 0x%x\n",
7829 phba->pci_dev_grp);
7830 break;
7831 }
7832 return rc;
7833}
7834
7835/**
7836 * lpfc_io_resume - lpfc method for resuming PCI I/O operation
7837 * @pdev: pointer to PCI device
7838 *
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.
7844 **/
7845static void
7846lpfc_io_resume(struct pci_dev *pdev)
7847{
7848 struct Scsi_Host *shost = pci_get_drvdata(pdev);
7849 struct lpfc_hba *phba = ((struct lpfc_vport *)shost->hostdata)->phba;
7850
7851 switch (phba->pci_dev_grp) {
7852 case LPFC_PCI_DEV_LP:
7853 lpfc_io_resume_s3(pdev);
7854 break;
7855 case LPFC_PCI_DEV_OC:
7856 lpfc_io_resume_s4(pdev);
7857 break;
7858 default:
7859 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7860 "1429 Invalid PCI device group: 0x%x\n",
7861 phba->pci_dev_grp);
7862 break;
7863 }
7864 return;
3395} 7865}
3396 7866
3397static struct pci_device_id lpfc_id_table[] = { 7867static struct pci_device_id lpfc_id_table[] = {
@@ -3469,6 +7939,8 @@ static struct pci_device_id lpfc_id_table[] = {
3469 PCI_ANY_ID, PCI_ANY_ID, }, 7939 PCI_ANY_ID, PCI_ANY_ID, },
3470 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_PROTEUS_S, 7940 {PCI_VENDOR_ID_EMULEX, PCI_DEVICE_ID_PROTEUS_S,
3471 PCI_ANY_ID, PCI_ANY_ID, }, 7941 PCI_ANY_ID, PCI_ANY_ID, },
7942 {PCI_VENDOR_ID_SERVERENGINE, PCI_DEVICE_ID_TIGERSHARK,
7943 PCI_ANY_ID, PCI_ANY_ID, },
3472 { 0 } 7944 { 0 }
3473}; 7945};
3474 7946
@@ -3486,7 +7958,7 @@ static struct pci_driver lpfc_driver = {
3486 .probe = lpfc_pci_probe_one, 7958 .probe = lpfc_pci_probe_one,
3487 .remove = __devexit_p(lpfc_pci_remove_one), 7959 .remove = __devexit_p(lpfc_pci_remove_one),
3488 .suspend = lpfc_pci_suspend_one, 7960 .suspend = lpfc_pci_suspend_one,
3489 .resume = lpfc_pci_resume_one, 7961 .resume = lpfc_pci_resume_one,
3490 .err_handler = &lpfc_err_handler, 7962 .err_handler = &lpfc_err_handler,
3491}; 7963};
3492 7964