the PBDE optimizations aren't supported in all firmware revs.

Make to optimizations configurable in case there's a side
effect on old firmware.

Signed-off-by: Dick Kennedy <dick.kenn...@broadcom.com>
Signed-off-by: James Smart <james.sm...@broadcom.com>
---
 drivers/scsi/lpfc/lpfc.h       |  3 +--
 drivers/scsi/lpfc/lpfc_attr.c  | 10 ++++++++++
 drivers/scsi/lpfc/lpfc_init.c  | 22 +++++++---------------
 drivers/scsi/lpfc/lpfc_nvme.c  |  8 ++++----
 drivers/scsi/lpfc/lpfc_nvmet.c | 23 +++++++++++++----------
 drivers/scsi/lpfc/lpfc_scsi.c  | 14 +++++++++++---
 drivers/scsi/lpfc/lpfc_sli.c   |  8 ++++----
 7 files changed, 50 insertions(+), 38 deletions(-)

diff --git a/drivers/scsi/lpfc/lpfc.h b/drivers/scsi/lpfc/lpfc.h
index 20b249a649dd..fc580a9b2bae 100644
--- a/drivers/scsi/lpfc/lpfc.h
+++ b/drivers/scsi/lpfc/lpfc.h
@@ -840,8 +840,7 @@ struct lpfc_hba {
 #define LPFC_ENABLE_FCP  1
 #define LPFC_ENABLE_NVME 2
 #define LPFC_ENABLE_BOTH 3
-       uint32_t nvme_embed_pbde;
-       uint32_t fcp_embed_pbde;
+       uint32_t cfg_enable_pbde;
        uint32_t io_channel_irqs;       /* number of irqs for io channels */
        struct nvmet_fc_target_port *targetport;
        lpfc_vpd_t vpd;         /* vital product data */
diff --git a/drivers/scsi/lpfc/lpfc_attr.c b/drivers/scsi/lpfc/lpfc_attr.c
index 3b839237ab50..ec537052bec4 100644
--- a/drivers/scsi/lpfc/lpfc_attr.c
+++ b/drivers/scsi/lpfc/lpfc_attr.c
@@ -5387,6 +5387,14 @@ LPFC_BBCR_ATTR_RW(enable_bbcr, 1, 0, 1, "Enable BBC 
Recovery");
  */
 LPFC_ATTR_RW(enable_dpp, 1, 0, 1, "Enable Direct Packet Push");
 
+/*
+ * lpfc_enable_pbde: Enable PBDE on PRISM - G7
+ *       0  = PBDE on G7 disabled
+ *       1  = PBDE on G7 enabled (default)
+ * Value range is [0,1]. Default value is 1
+ */
+LPFC_ATTR_R(enable_pbde, 1, 0, 1, "Enable PBDE support on PRISM");
+
 struct device_attribute *lpfc_hba_attrs[] = {
        &dev_attr_nvme_info,
        &dev_attr_bg_info,
@@ -5498,6 +5506,7 @@ struct device_attribute *lpfc_hba_attrs[] = {
        &dev_attr_lpfc_enable_mds_diags,
        &dev_attr_lpfc_enable_bbcr,
        &dev_attr_lpfc_enable_dpp,
+       &dev_attr_lpfc_enable_pbde,
        NULL,
 };
 
@@ -6520,6 +6529,7 @@ lpfc_get_cfgparam(struct lpfc_hba *phba)
        lpfc_nvme_io_channel_init(phba, lpfc_nvme_io_channel);
        lpfc_enable_bbcr_init(phba, lpfc_enable_bbcr);
        lpfc_enable_dpp_init(phba, lpfc_enable_dpp);
+       lpfc_enable_pbde_init(phba, lpfc_enable_pbde);
 
        if (phba->sli_rev != LPFC_SLI_REV4) {
                /* NVME only supported on SLI4 */
diff --git a/drivers/scsi/lpfc/lpfc_init.c b/drivers/scsi/lpfc/lpfc_init.c
index 139a8baa6e4c..1bbf56efa07c 100644
--- a/drivers/scsi/lpfc/lpfc_init.c
+++ b/drivers/scsi/lpfc/lpfc_init.c
@@ -10672,18 +10672,10 @@ lpfc_get_sli4_parameters(struct lpfc_hba *phba, 
LPFC_MBOXQ_t *mboxq)
                phba->cfg_enable_fc4_type = LPFC_ENABLE_FCP;
        }
 
-       /* Only embed PBDE for if_type 6 */
-       if (bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf) ==
-           LPFC_SLI_INTF_IF_TYPE_6) {
-               phba->fcp_embed_pbde = 1;
-               phba->nvme_embed_pbde = 1;
-       }
-
-       /* PBDE support requires xib be set */
-       if (!bf_get(cfg_xib, mbx_sli4_parameters)) {
-               phba->fcp_embed_pbde = 0;
-               phba->nvme_embed_pbde = 0;
-       }
+       /* Only embed PBDE for if_type 6, PBDE support requires xib be set */
+       if ((bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf) !=
+           LPFC_SLI_INTF_IF_TYPE_6) || (!bf_get(cfg_xib, mbx_sli4_parameters)))
+               phba->cfg_enable_pbde = 0;
 
        /*
         * To support Suppress Response feature we must satisfy 3 conditions.
@@ -10717,10 +10709,10 @@ lpfc_get_sli4_parameters(struct lpfc_hba *phba, 
LPFC_MBOXQ_t *mboxq)
                phba->fcp_embed_io = 0;
 
        lpfc_printf_log(phba, KERN_INFO, LOG_INIT | LOG_NVME,
-                       "6422 XIB %d: FCP %d %d NVME %d %d %d %d\n",
+                       "6422 XIB %d PBDE %d: FCP %d NVME %d %d %d\n",
                        bf_get(cfg_xib, mbx_sli4_parameters),
-                       phba->fcp_embed_pbde, phba->fcp_embed_io,
-                       phba->nvme_support, phba->nvme_embed_pbde,
+                       phba->cfg_enable_pbde,
+                       phba->fcp_embed_io, phba->nvme_support,
                        phba->cfg_nvme_embed_cmd, phba->cfg_suppress_rsp);
 
        if ((bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf) ==
diff --git a/drivers/scsi/lpfc/lpfc_nvme.c b/drivers/scsi/lpfc/lpfc_nvme.c
index ada5a2aaee82..4cc6783b6a9f 100644
--- a/drivers/scsi/lpfc/lpfc_nvme.c
+++ b/drivers/scsi/lpfc/lpfc_nvme.c
@@ -1279,6 +1279,8 @@ lpfc_nvme_prep_io_cmd(struct lpfc_vport *vport,
        /* Word 9 */
        bf_set(wqe_reqtag, &wqe->generic.wqe_com, pwqeq->iotag);
 
+       /* Words 13 14 15 are for PBDE support */
+
        pwqeq->vport = vport;
        return 0;
 }
@@ -1378,7 +1380,7 @@ lpfc_nvme_prep_io_dma(struct lpfc_vport *vport,
                        data_sg = sg_next(data_sg);
                        sgl++;
                }
-               if (phba->nvme_embed_pbde) {
+               if (phba->cfg_enable_pbde) {
                        /* Use PBDE support for first SGL only, offset == 0 */
                        /* Words 13-15 */
                        bde = (struct ulp_bde64 *)
@@ -1394,10 +1396,8 @@ lpfc_nvme_prep_io_dma(struct lpfc_vport *vport,
                        memset(&wqe->words[13], 0, (sizeof(uint32_t) * 3));
                        bf_set(wqe_pbde, &wqe->generic.wqe_com, 0);
                }
-       } else {
-               bf_set(wqe_pbde, &wqe->generic.wqe_com, 0);
-               memset(&wqe->words[13], 0, (sizeof(uint32_t) * 3));
 
+       } else {
                /* For this clause to be valid, the payload_length
                 * and sg_cnt must zero.
                 */
diff --git a/drivers/scsi/lpfc/lpfc_nvmet.c b/drivers/scsi/lpfc/lpfc_nvmet.c
index 102c970a00e6..3330973bd9c5 100644
--- a/drivers/scsi/lpfc/lpfc_nvmet.c
+++ b/drivers/scsi/lpfc/lpfc_nvmet.c
@@ -2493,7 +2493,7 @@ lpfc_nvmet_prep_fcp_wqe(struct lpfc_hba *phba,
                        bf_set(wqe_xc, &wqe->fcp_treceive.wqe_com, 0);
 
                /* Word 11 - set pbde later */
-               if (phba->nvme_embed_pbde) {
+               if (phba->cfg_enable_pbde) {
                        do_pbde = 1;
                } else {
                        bf_set(wqe_pbde, &wqe->fcp_treceive.wqe_com, 0);
@@ -2608,16 +2608,19 @@ lpfc_nvmet_prep_fcp_wqe(struct lpfc_hba *phba,
                        bf_set(lpfc_sli4_sge_last, sgl, 1);
                sgl->word2 = cpu_to_le32(sgl->word2);
                sgl->sge_len = cpu_to_le32(cnt);
-               if (do_pbde && i == 0) {
+               if (i == 0) {
                        bde = (struct ulp_bde64 *)&wqe->words[13];
-                       memset(bde, 0, sizeof(struct ulp_bde64));
-                       /* Words 13-15  (PBDE)*/
-                       bde->addrLow = sgl->addr_lo;
-                       bde->addrHigh = sgl->addr_hi;
-                       bde->tus.f.bdeSize =
-                               le32_to_cpu(sgl->sge_len);
-                       bde->tus.f.bdeFlags = BUFF_TYPE_BDE_64;
-                       bde->tus.w = cpu_to_le32(bde->tus.w);
+                       if (do_pbde) {
+                               /* Words 13-15  (PBDE)*/
+                               bde->addrLow = sgl->addr_lo;
+                               bde->addrHigh = sgl->addr_hi;
+                               bde->tus.f.bdeSize =
+                                       le32_to_cpu(sgl->sge_len);
+                               bde->tus.f.bdeFlags = BUFF_TYPE_BDE_64;
+                               bde->tus.w = cpu_to_le32(bde->tus.w);
+                       } else {
+                               memset(bde, 0, sizeof(struct ulp_bde64));
+                       }
                }
                sgl++;
                ctxp->offset += cnt;
diff --git a/drivers/scsi/lpfc/lpfc_scsi.c b/drivers/scsi/lpfc/lpfc_scsi.c
index a94fb9f8bb44..c31c43f43553 100644
--- a/drivers/scsi/lpfc/lpfc_scsi.c
+++ b/drivers/scsi/lpfc/lpfc_scsi.c
@@ -3311,12 +3311,13 @@ lpfc_scsi_prep_dma_buf_s4(struct lpfc_hba *phba, struct 
lpfc_scsi_buf *lpfc_cmd)
                }
                /*
                 * Setup the first Payload BDE. For FCoE we just key off
-                * Performance Hints, for FC we utilize fcp_embed_pbde.
+                * Performance Hints, for FC we use lpfc_enable_pbde.
+                * We populate words 13-15 of IOCB/WQE.
                 */
                if ((phba->sli3_options & LPFC_SLI4_PERFH_ENABLED) ||
-                   phba->fcp_embed_pbde) {
+                   phba->cfg_enable_pbde) {
                        bde = (struct ulp_bde64 *)
-                                       &(iocb_cmd->unsli3.sli3Words[5]);
+                               &(iocb_cmd->unsli3.sli3Words[5]);
                        bde->addrLow = first_data_sgl->addr_lo;
                        bde->addrHigh = first_data_sgl->addr_hi;
                        bde->tus.f.bdeSize =
@@ -3330,6 +3331,13 @@ lpfc_scsi_prep_dma_buf_s4(struct lpfc_hba *phba, struct 
lpfc_scsi_buf *lpfc_cmd)
                sgl->word2 = le32_to_cpu(sgl->word2);
                bf_set(lpfc_sli4_sge_last, sgl, 1);
                sgl->word2 = cpu_to_le32(sgl->word2);
+
+               if ((phba->sli3_options & LPFC_SLI4_PERFH_ENABLED) ||
+                   phba->cfg_enable_pbde) {
+                       bde = (struct ulp_bde64 *)
+                               &(iocb_cmd->unsli3.sli3Words[5]);
+                       memset(bde, 0, (sizeof(uint32_t) * 3));
+               }
        }
 
        /*
diff --git a/drivers/scsi/lpfc/lpfc_sli.c b/drivers/scsi/lpfc/lpfc_sli.c
index 74547f437813..3299913876ce 100644
--- a/drivers/scsi/lpfc/lpfc_sli.c
+++ b/drivers/scsi/lpfc/lpfc_sli.c
@@ -9123,8 +9123,8 @@ lpfc_sli4_iocb2wqe(struct lpfc_hba *phba, struct 
lpfc_iocbq *iocbq,
                }
                /* Note, word 10 is already initialized to 0 */
 
-               /* Don't set PBDE for Perf hints, just fcp_embed_pbde */
-               if (phba->fcp_embed_pbde)
+               /* Don't set PBDE for Perf hints, just lpfc_enable_pbde */
+               if (phba->cfg_enable_pbde)
                        bf_set(wqe_pbde, &wqe->fcp_iwrite.wqe_com, 1);
                else
                        bf_set(wqe_pbde, &wqe->fcp_iwrite.wqe_com, 0);
@@ -9187,8 +9187,8 @@ lpfc_sli4_iocb2wqe(struct lpfc_hba *phba, struct 
lpfc_iocbq *iocbq,
                }
                /* Note, word 10 is already initialized to 0 */
 
-               /* Don't set PBDE for Perf hints, just fcp_embed_pbde */
-               if (phba->fcp_embed_pbde)
+               /* Don't set PBDE for Perf hints, just lpfc_enable_pbde */
+               if (phba->cfg_enable_pbde)
                        bf_set(wqe_pbde, &wqe->fcp_iread.wqe_com, 1);
                else
                        bf_set(wqe_pbde, &wqe->fcp_iread.wqe_com, 0);
-- 
2.13.1

Reply via email to