Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 52c58556 authored by Sujit Reddy Thumma's avatar Sujit Reddy Thumma
Browse files

scsi: ufs-msm: Enable 64-bit addressing support quirk



MSM UFS host controller advertises CAP.64AS bit as zero
even though it can adress upto 36 bits.

Change-Id: Ia8edd9ede3cc5e8358775d1efca5451cc3559773
Signed-off-by: default avatarSujit Reddy Thumma <sthumma@codeaurora.org>
parent e7156491
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1322,7 +1322,8 @@ static void msm_ufs_advertise_quirks(struct ufs_hba *hba)
	if ((major == 0x1) && (minor == 0x001) && (step == 0x0000))
		hba->quirks |= (UFSHCD_QUIRK_BROKEN_INTR_AGGR
			      | UFSHCD_QUIRK_BROKEN_HIBERN8
			      | UFSHCD_QUIRK_BROKEN_VER_REG_1_1);
			      | UFSHCD_QUIRK_BROKEN_VER_REG_1_1
			      | UFSHCD_QUIRK_BROKEN_CAP_64_BIT_0);
}

/**