]> git.hungrycats.org Git - linux/commitdiff
scsi: ufs: Introduce UFSHCD_QUIRK_PRDT_BYTE_GRAN quirk
authorAlim Akhtar <alim.akhtar@samsung.com>
Thu, 28 May 2020 01:16:52 +0000 (06:46 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 26 Aug 2020 09:42:20 +0000 (11:42 +0200)
[ Upstream commit 26f968d7de823ba4974a8f25c8bd8ee2df6ab74b ]

Some UFS host controllers like Exynos uses granularities of PRDT length and
offset as bytes, whereas others use actual segment count.

Link: https://lore.kernel.org/r/20200528011658.71590-5-alim.akhtar@samsung.com
Reviewed-by: Avri Altman <avri.altman@wdc.com>
Signed-off-by: Kiwoong Kim <kwmad.kim@samsung.com>
Signed-off-by: Alim Akhtar <alim.akhtar@samsung.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/scsi/ufs/ufshcd.c
drivers/scsi/ufs/ufshcd.h

index 38201177953275a4c07913256a59b58f19be3a35..4d5e8f6a314388c7497e413355a6fe42df2bcf14 100644 (file)
@@ -2158,8 +2158,14 @@ static int ufshcd_map_sg(struct ufs_hba *hba, struct ufshcd_lrb *lrbp)
                return sg_segments;
 
        if (sg_segments) {
-               lrbp->utr_descriptor_ptr->prd_table_length =
-                       cpu_to_le16((u16)sg_segments);
+
+               if (hba->quirks & UFSHCD_QUIRK_PRDT_BYTE_GRAN)
+                       lrbp->utr_descriptor_ptr->prd_table_length =
+                               cpu_to_le16((sg_segments *
+                                       sizeof(struct ufshcd_sg_entry)));
+               else
+                       lrbp->utr_descriptor_ptr->prd_table_length =
+                               cpu_to_le16((u16) (sg_segments));
 
                prd_table = (struct ufshcd_sg_entry *)lrbp->ucd_prdt_ptr;
 
@@ -3505,11 +3511,21 @@ static void ufshcd_host_memory_configure(struct ufs_hba *hba)
                                cpu_to_le32(upper_32_bits(cmd_desc_element_addr));
 
                /* Response upiu and prdt offset should be in double words */
-               utrdlp[i].response_upiu_offset =
-                       cpu_to_le16(response_offset >> 2);
-               utrdlp[i].prd_table_offset = cpu_to_le16(prdt_offset >> 2);
-               utrdlp[i].response_upiu_length =
-                       cpu_to_le16(ALIGNED_UPIU_SIZE >> 2);
+               if (hba->quirks & UFSHCD_QUIRK_PRDT_BYTE_GRAN) {
+                       utrdlp[i].response_upiu_offset =
+                               cpu_to_le16(response_offset);
+                       utrdlp[i].prd_table_offset =
+                               cpu_to_le16(prdt_offset);
+                       utrdlp[i].response_upiu_length =
+                               cpu_to_le16(ALIGNED_UPIU_SIZE);
+               } else {
+                       utrdlp[i].response_upiu_offset =
+                               cpu_to_le16(response_offset >> 2);
+                       utrdlp[i].prd_table_offset =
+                               cpu_to_le16(prdt_offset >> 2);
+                       utrdlp[i].response_upiu_length =
+                               cpu_to_le16(ALIGNED_UPIU_SIZE >> 2);
+               }
 
                ufshcd_init_lrb(hba, &hba->lrb[i], i);
        }
index 99dc0ca311899e42272cc9bf99c73f1437e496a3..b3b2d09d8fff370ee1b55b2ff2ca325272a9259f 100644 (file)
@@ -535,6 +535,12 @@ enum ufshcd_quirks {
         * enabled via HCE register.
         */
        UFSHCI_QUIRK_BROKEN_HCE                         = 1 << 8,
+
+       /*
+        * This quirk needs to be enabled if the host controller regards
+        * resolution of the values of PRDTO and PRDTL in UTRD as byte.
+        */
+       UFSHCD_QUIRK_PRDT_BYTE_GRAN                     = 1 << 9,
 };
 
 enum ufshcd_caps {